blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
227
content_id
stringlengths
40
40
detected_licenses
listlengths
0
28
license_type
stringclasses
2 values
repo_name
stringlengths
6
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
61 values
visit_date
timestamp[us]date
2015-08-14 10:26:58
2023-09-06 07:53:38
revision_date
timestamp[us]date
2011-01-31 21:28:29
2023-09-05 14:54:58
committer_date
timestamp[us]date
2011-01-31 21:28:29
2023-09-05 14:54:58
github_id
int64
206k
631M
star_events_count
int64
0
108k
fork_events_count
int64
0
34.4k
gha_license_id
stringclasses
13 values
gha_event_created_at
timestamp[us]date
2012-08-01 17:54:24
2023-09-14 21:57:05
gha_created_at
timestamp[us]date
2009-05-21 02:09:00
2023-04-21 10:18:22
gha_language
stringclasses
79 values
src_encoding
stringclasses
12 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
8
1.29M
extension
stringclasses
17 values
code
stringlengths
8
1.29M
non_uml
bool
1 class
uml
bool
1 class
has_non_ascii
bool
2 classes
has_non_latin
bool
1 class
uml_subtype
stringclasses
10 values
c961addbacb17544036bf7a5243235f3df7d8833
f6e8d9ffb0fbe22f284a9771933ad71a3538ac49
/Diagrams/SequenceDiagrams/seq-reject-2.2.0.a.plantuml
533be691ecb6ed0f55ed203cd44f9ea8c0156c6a
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
mDuo13/docs-1
2b734c7d927e6e7c9714320c6c3c5ef2b49d76b5
b2b18663510b0bc92a3c8e8768adc8be0e21cd91
refs/heads/master
2020-04-30T13:06:06.901776
2019-03-14T11:26:50
2019-03-14T11:26:50
176,845,744
0
0
null
2019-03-21T01:31:09
2019-03-21T01:31:08
null
UTF-8
PlantUML
false
false
6,732
plantuml
/'***** License -------------- Copyright © 2017 Bill & Melinda Gates Foundation The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Contributors -------------- This is the official list of the Mojaloop project contributors for this file. Names of the original copyright holders (individuals or organizations) should be listed with a '*' in the first column. People who have contributed from an organization can be listed under the organization that actually holds the copyright for their contributions (see the Gates Foundation organization for an example). Those individuals should have their names indented and be marked with a '-'. Email address can be added optionally within square brackets <email>. * Gates Foundation - Name Surname <name.surname@gatesfoundation.com> * Sam Kummary <sam@modusbox.com> -------------- ******'/ @startuml ' declate title title 2.2.0.a. DFSP2 sends a PUT call on /error end-point for a Transfer request autonumber ' Actor Keys: ' boundary - APIs/Interfaces, etc ' collections - Kafka Topics ' control - Kafka Consumers ' entity - Database Access Objects ' database - Database Persistance Store ' declare actors actor "DFSP1\nPayer" as DFSP1 actor "DFSP2\nPayee" as DFSP2 boundary "ML API Adapter" as MLAPI control "ML API Notification Event Handler" as NOTIFY_HANDLER boundary "Central Service API" as CSAPI collections "Fulfil-Topic" as TOPIC_FULFIL control "Fulfil Event Handler" as FULF_HANDLER collections "topic-transfer-position" as TOPIC_TRANSFER_POSITION control "Position Event Handler" as POS_HANDLER collections "Notification-Topic" as TOPIC_NOTIFICATIONS box "Financial Service Providers" #lightGray participant DFSP1 participant DFSP2 end box box "ML API Adapter Service" #LightBlue participant MLAPI participant NOTIFY_HANDLER end box box "Central Service" #LightYellow participant CSAPI participant TOPIC_FULFIL participant FULF_HANDLER participant TOPIC_TRANSFER_POSITION participant POS_HANDLER participant TOPIC_NOTIFICATIONS end box ' start flow activate NOTIFY_HANDLER activate FULF_HANDLER activate POS_HANDLER group DFSP2 sends a Fulfil Success Transfer request DFSP2 <-> DFSP2: During processing of an incoming\nPOST /transfers request, some processing\nerror occurred and an Error callback is made note right of DFSP2 #yellow Headers - transferHeaders: { Content-Length: <Content-Length>, Content-Type: <Content-Type>, Date: <Date>, X-Forwarded-For: <X-Forwarded-For>, FSPIOP-Source: <FSPIOP-Source>, FSPIOP-Destination: <FSPIOP-Destination>, FSPIOP-Encryption: <FSPIOP-Encryption>, FSPIOP-Signature: <FSPIOP-Signature>, FSPIOP-URI: <FSPIOP-URI>, FSPIOP-HTTP-Method: <FSPIOP-HTTP-Method> } Payload - errorMessage: { errorInformation { "errorCode": <errorCode>, "errorDescription": <errorDescription> "extensionList": { "extension": [ { "key": <string>, "value": <string> } ] } } } end note DFSP2 -> MLAPI: PUT - /transfers/<ID>/error activate MLAPI MLAPI -> MLAPI: Validate incoming originator matching Payee\n<color #FF0000><b>Error codes:</b> 3000-3002, 3100-3107</color> note right of MLAPI #yellow Message: { id: <ID>, from: <transferHeaders.FSPIOP-Source>, to: <transferHeaders.FSPIOP-Destination>, type: application/json, content: { headers: <transferHeaders>, payload: <errorMessage> }, metadata: { event: { id: <uuid>, type: fulfil, action: abort, createdAt: <timestamp>, state: { status: "success", code: 0 } } } } end note MLAPI -> TOPIC_FULFIL: Route & Publish Abort/Reject event for Payee\n<color #FF0000><b>Error code:</b> 2003</color> activate TOPIC_FULFIL TOPIC_FULFIL <-> TOPIC_FULFIL: Ensure event is replicated as configured (ACKS=all)\n<color #FF0000><b>Error code:</b> 2003</color> TOPIC_FULFIL --> MLAPI: Respond replication acknowledgements have been received deactivate TOPIC_FULFIL MLAPI --> DFSP2: Respond HTTP - 200 (OK) deactivate MLAPI TOPIC_FULFIL <- FULF_HANDLER: Consume message ref over TOPIC_FULFIL, TOPIC_TRANSFER_POSITION: Fulfil Handler Consume (Reject/Abort) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-reject-2.2.1.svg 2.2.1.]]} \n FULF_HANDLER -> TOPIC_TRANSFER_POSITION: Produce message ||| TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume message ref over TOPIC_TRANSFER_POSITION, TOPIC_NOTIFICATIONS: Position Handler Consume (Abort) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-position-1.3.3-abort.svg seq-position-1.3.3-abort]]} \n POS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message ||| TOPIC_NOTIFICATIONS <- NOTIFY_HANDLER: Consume message opt action == 'abort' ||| ref over DFSP1, TOPIC_NOTIFICATIONS: Send notification to Participant (Payer) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-prepare-1.1.4.a.svg 1.1.4.a.]]} \n NOTIFY_HANDLER -> DFSP1: Send callback notification end ||| TOPIC_NOTIFICATIONS <- NOTIFY_HANDLER: Consume message opt action == 'abort' ||| ref over DFSP2, TOPIC_NOTIFICATIONS: Send notification to Participant (Payee) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-prepare-1.1.4.a.svg 1.1.4.a.]]} \n NOTIFY_HANDLER -> DFSP2: Send callback notification end ||| end deactivate POS_HANDLER deactivate FULF_HANDLER deactivate NOTIFY_HANDLER @enduml
false
true
true
false
usecase
472bd61fcdffaa4b431687797aa6f1489384015c
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/MessagePagedQueryResponse.puml
3d8b07d6171c6114fb464bc742e56a9da856e738
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
406
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface MessagePagedQueryResponse [[MessagePagedQueryResponse.svg]] { limit: Long count: Long total: Long offset: Long results: [[Message.svg List<Message>]] } @enduml
false
true
false
false
class
475ed34952bfcfdef79d0b566d1c87c44a9ea6e7
651036ebd767bdf052e448b4fbf9b443219a5d1e
/report/images/objstorage_old.iuml
6790fccae57a0ae4bcf644c8edcd3a3eb863fbc7
[]
no_license
qcampos/swh-report
c0c6f8f039425ac84460bd436dfb60fd29bc77f3
17a9240dc3c43f7ba19a4c1d9562127fe1f6ff2c
refs/heads/master
2021-03-22T04:27:49.723489
2016-09-12T09:11:11
2016-09-12T09:11:11
66,589,749
0
0
null
null
null
null
UTF-8
PlantUML
false
false
191
iuml
class ObjStorage { +id: add(bytes, [obj_id]) +bytes: get(obj_id) +bool: contains(obj_id) +check(obj_id) -str: path -int: depth -int: slicing_length }
false
true
false
false
class
dfbf2ec6e8883ca64aa6169fbccc4d143be3318e
372e13940be1f116c671dbb746617a331f06899e
/Assets/TPPackages/com.cocoplay.core/Documentation-/puml/Editor/Menu/FindReferencesInProject.puml
ad2402a3cfa5bb3a83cb389deb32ae2795b0487b
[]
no_license
guolifeng2018/CIGA-Game-Jam
797734576510e27b5c5cee2eb17c1444f51d258c
fcd03e5579bef3bffe2cb51f52ba11a49a9cc02d
refs/heads/master
2022-12-10T19:21:15.522141
2020-08-16T10:06:23
2020-08-16T10:06:23
285,986,041
0
0
null
null
null
null
UTF-8
PlantUML
false
false
51
puml
@startuml class FindProject <<static>> { } @enduml
false
true
false
false
class
604728129f656c52241e0c015686cbb86cd69157
71f45437edf85e5baaa6d08fba003c9c23474b40
/diagramas/components.puml
de2b7a8087af28553c24bcc54c69f24711457f54
[]
no_license
caiopsouza/puchealth
e3916fa373d4d1ce555d124e6f1c14ef0a073f77
32966cd9746ac9db21ebb473a155fc0a8719c786
refs/heads/master
2023-07-10T06:09:36.475527
2021-08-09T13:17:02
2021-08-09T13:17:02
378,430,069
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,787
puml
@startuml Diagrama de componentes 'left to right direction 'skinparam linetype ortho package "HTML" as html { [Módulo da Página principal] <<HTML>> as pagina [Módulo de autenticação\ne criação de conta] <<HTML>> as auth [Módulo de agenda] <<HTML>> as agenda [Módulo de agendamento] <<HTML>> as agendamento [Módulo de estabelecimentos] <<HTML>> as estabelecimentos [Módulo de relatórios] <<HTML>> as relatorios [Módulo de especialidades] <<HTML>> as especialidades [Módulo de procedimentos] <<HTML>> as procedimentos [Módulo de usuários] <<HTML>> as usuarios [Módulo de codigo de doenças] <<HTML>> as doencas [Módulo de ações publicitárias] <<HTML>> as acoes [Módulo de leitos] <<HTML>> as leitos note right of relatorios Relatórios periódicos Relatórios de procedimentos Relatórios de internações Prontuário Cartão de vacinação Estoque de medicamentos end note } package "Interface" as interface { [SPA] <<React>> as react [Gerenciamento de estado] <<Redux>> as redux [Estilo de páginas] <<Bootstrap>> as bootstrap } html ..> interface : use package "API" as api { [API Rest] <<.NET Core>> as dotnet [Autenticação e Autorização] <<JWT>> as jwt [Log da aplicação] <<Serilog>> as serilog } interface ..> api : use package "Entrega" as entrega { [Servidor da aplicação] <<IIS Express>> as server [Hospedagem] <<Microsoft Azure>> as azure [Deploy e integração contínua] <<Github actions>> as gactions [Dependências e build] <<Nuget>> as nuget } entrega ..> interface : use entrega ..> api : use package "Dados" as dados { [Banco de dados] <<Postgre>> as postgre [E-mail] <<Smtp>> as smtp [Cache] <<MemoryCache>> as memoryCache } api ..> dados : use @enduml
false
true
true
false
class
b614d74e934f6fdf1ed8ed3602180c061b8490a5
b1ddd0098167d1fb3ce8abd25abb962c7aa335dc
/docs/userGuide/diagrams/archimate.puml
0a8ddf939b26dc5cf8213d7ada90a213184c5af9
[ "MIT" ]
permissive
MarkBind/markbind
d4e2155354a6471e5aee2fd66f7e00c94553100b
34493ccfe0f71f051f28b7ec8102851e39d27f47
refs/heads/master
2023-09-01T01:08:57.170045
2023-08-28T10:31:52
2023-08-28T10:31:52
78,425,531
119
146
MIT
2023-09-10T15:05:46
2017-01-09T12:10:30
HTML
UTF-8
PlantUML
false
false
1,941
puml
@startuml sprite $bProcess jar:archimate/business-process sprite $aService jar:archimate/application-service sprite $aComponent jar:archimate/application-component archimate #Business "Handle claim" as HC <<business-process>> archimate #Business "Capture Information" as CI <<business-process>> archimate #Business "Notify\nAdditional Stakeholders" as NAS <<business-process>> archimate #Business "Validate" as V <<business-process>> archimate #Business "Investigate" as I <<business-process>> archimate #Business "Pay" as P <<business-process>> HC *-down- CI HC *-down- NAS HC *-down- V HC *-down- I HC *-down- P CI -right->> NAS NAS -right->> V V -right->> I I -right->> P archimate #APPLICATION "Scanning" as scanning <<application-service>> archimate #APPLICATION "Customer admnistration" as customerAdministration <<application-service>> archimate #APPLICATION "Claims admnistration" as claimsAdministration <<application-service>> archimate #APPLICATION Printing <<application-service>> archimate #APPLICATION Payment <<application-service>> scanning -up-> CI customerAdministration -up-> CI claimsAdministration -up-> NAS claimsAdministration -up-> V claimsAdministration -up-> I Payment -up-> P Printing -up-> V Printing -up-> P archimate #APPLICATION "Document\nManagement\nSystem" as DMS <<application-component>> archimate #APPLICATION "General\nCRM\nSystem" as CRM <<application-component>> archimate #APPLICATION "Home & Away\nPolicy\nAdministration" as HAPA <<application-component>> archimate #APPLICATION "Home & Away\nFinancial\nAdministration" as HFPA <<application-component>> DMS .up.|> scanning DMS .up.|> Printing CRM .up.|> customerAdministration HAPA .up.|> claimsAdministration HFPA .up.|> Payment legend left Example from the "Archisurance case study" (OpenGroup). See == <$bProcess> :business process == <$aService> : application service == <$aComponent> : application component endlegend @enduml
false
true
false
false
uml-unknown
1e4632da9e45579c827cc4cc488d03390b4fa050
2f155271d292d377036fa1f443bf6ad4635f3469
/sequence_diagram/export.puml
263a6cd6a8a6605bacb1fa7f2b9eff33b8260021
[]
no_license
austudio-team/austudio-uml-graph
1519a4589469e943a11d899d743d023b3f42b584
e22788d17814ae3e61703e0daf414f60bab2b25c
refs/heads/master
2021-03-03T09:13:02.261657
2020-03-29T17:54:45
2020-03-29T17:54:45
245,948,897
1
0
null
null
null
null
UTF-8
PlantUML
false
false
576
puml
@startuml actor User User -> MenuItem: Click activate MenuItem MenuItem -> MenuItem: clickHandler activate EventEmitter MenuItem -> EventEmitter: emit('MENU_EXPORT') deactivate MenuItem EventEmitter -> AudioController: export() deactivate EventEmitter activate AudioController AudioController -> AudioController: generateAudioBlob() AudioController -> Browser: URL.createObjectURL(AudioArrayBuffer) AudioController <-- Browser: AudioBufferUrl: string AudioController -> Browser: HTMLAnchorElement.click() deactivate AudioController Browser --> User: Save file dialog @enduml
false
true
false
false
usecase
5138b084de4ca42859db0e421001b8eda97fba84
46c1d86d2af6f7c88acc49f8666856d19a7bab5a
/documentation/calsses.puml
88ff877d6826d5be51d3ad7819f01cd33fd52254
[]
no_license
stefanandy/VendingMachine
f338d07c020014ad4aba8768618409e63fe26ec2
d48165cef67319c3c00ffae01c7bc3419b7c0bf6
refs/heads/master
2022-11-12T14:24:56.005406
2020-06-30T16:38:01
2020-06-30T16:38:01
276,154,708
0
0
null
null
null
null
UTF-8
PlantUML
false
false
593
puml
@startuml class Pay Pay --|>PayByCoin Pay --|>PayByBill Pay --|>PayByCreditCard class GiveChange GiveChange--*CalculateChange class VerifyTransaction VerifyTransaction--|>VerifyTransactionByCoin VerifyTransaction--|>VerifyTransactionByCash VerifyTransaction--|>VerifyTransactionByCreditCard PayByCoin--*VerifyTransactionByCoin PayByBill--*VerifyTransactionByCash PayByCreditCard--*VerifyTransactionByCreditCard class SelectProduct GiveProdcut--*SelectProduct GiveProdcut--*VerifyTransactionByCoin GiveProdcut--*VerifyTransactionByCash GiveProdcut--*VerifyTransactionByCreditCard @enduml
false
true
false
false
class
8246534e1feebf0cc4b3c6b2038161e7dcf8b640
41f0b31b86edc1561e19ffc7f50350e18d7a985c
/generated/structurizr/structurizr-SystemContext.puml
6aa4555b528b8f24781640ebe5dd056f35f8603a
[]
no_license
codersparks-old/wiki-plantuml-test
8c464d2107d8de1736f891272999a6d53ec11575
09791abc62f6d68126da9512ce118cc7c31dbecf
refs/heads/main
2023-01-25T02:44:45.418528
2020-12-10T11:48:40
2020-12-10T11:48:40
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,490
puml
@startuml(id=SystemContext) title Internet Banking System - System Context skinparam { shadowing false arrowFontSize 10 defaultTextAlignment center wrapWidth 200 maxMessageSize 100 } hide stereotype top to bottom direction skinparam rectangle<<1>> { BackgroundColor #08427b FontColor #ffffff BorderColor #052E56 } skinparam rectangle<<4>> { BackgroundColor #999999 FontColor #ffffff BorderColor #6B6B6B } skinparam rectangle<<5>> { BackgroundColor #999999 FontColor #ffffff BorderColor #6B6B6B } skinparam rectangle<<7>> { BackgroundColor #1168bd FontColor #ffffff BorderColor #0B4884 } rectangle "==Personal Banking Customer\n<size:10>[Person]</size>\n\nA customer of the bank, with personal bank accounts." <<1>> as 1 package "Big Bank plc" { rectangle "==E-mail System\n<size:10>[Software System]</size>\n\nThe internal Microsoft Exchange e-mail system" <<5>> as 5 rectangle "==Internet Banking System\n<size:10>[Software System]</size>\n\nAllows customers to view information about their bank accounts, and make payments." <<7>> as 7 rectangle "==Mainframe Banking System\n<size:10>[Software System]</size>\n\nStores all of the core banking information about customers, accounts, transactions, etc." <<4>> as 4 } 5 .[#707070].> 1 : "Sends e-mails to" 7 .[#707070].> 5 : "Sends e-mail using" 7 .[#707070].> 4 : "Gets account information from, and makes payments using" 1 .[#707070].> 7 : "Views account balances, and makes payments using" @enduml
false
true
false
false
uml-unknown
7da45eb561267dd9b947ada2595f00fe8849f6cf
c3287e91ce0ebce396cd3966de3d2f7d90131c20
/Plantuml/UI/ViewModels/CreateUpdateTourLogViewModel.puml
da0e101a3371b86138875c033a0cbce0df2ac4fe
[]
no_license
kretmatt/SWE2-Tourplanner
497ec2e888112bd3d67a0f2b97e7c1e8e0348371
f064500ae5b913b00671f358a586011affcdaf00
refs/heads/main
2023-05-12T11:48:29.605417
2021-06-06T21:53:11
2021-06-06T21:53:11
341,115,114
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,112
puml
@startuml class CreateUpdateTourLogViewModel { + <<event>> CloseRequested : EventHandler<DialogCloseRequestedEventArgs> + Distance : double <<get>> <<set>> + Temperature : double <<get>> <<set>> + Rating : double <<get>> <<set>> + Report : string <<get>> <<set>> + ConfirmButtonMessage : string <<get>> + HeadingMessage : string <<get>> + CreateUpdateTourLogViewModel(tourLog:TourLog) } class "IEnumerable`1"<T> { } BaseViewModel <|-- CreateUpdateTourLogViewModel IDialogRequestClose <|-- CreateUpdateTourLogViewModel CreateUpdateTourLogViewModel --> "tourLog" TourLog CreateUpdateTourLogViewModel --> "StartDate" DateTime CreateUpdateTourLogViewModel --> "EndDate" DateTime CreateUpdateTourLogViewModel --> "Weather" EWeather CreateUpdateTourLogViewModel --> "TravelMethod" ETravelMethod CreateUpdateTourLogViewModel --> "WeatherTypes<EWeather>" "IEnumerable`1" CreateUpdateTourLogViewModel --> "TravelMethods<ETravelMethod>" "IEnumerable`1" CreateUpdateTourLogViewModel --> "ExitCommand" ICommand CreateUpdateTourLogViewModel --> "ConductCreateUpdateCommand" ICommand @enduml
false
true
false
false
class
c540e7d371b29fcbe8a883f667b9151bacc9a133
ea978cfe70d18702342391c596f9446e92c9864d
/Inventory_Classes.puml
abb9c06c1bd836f187de18f7ab09f97aa8c61dc2
[]
no_license
afortier12/Fiix_Custom_Mobile
5efb22bc687b215ec308d33aba5f16cb39f6042c
703ea51598fdad88a3b80212f21f9f598c18140e
refs/heads/master
2022-12-10T05:39:21.419577
2020-08-28T20:29:03
2020-08-28T20:29:03
268,574,994
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,137
puml
@startuml interface PartController{ } class Part{ int partID String name String upcCode String make String model int : addPart() int : findPart() int : checkPart() } interface StorageController{ int : checkPart(Part part) int : checkLocation(int trayID,int shelfID,int binID int : addPart(Part part,int trayID,int shelfID,int binID) Storage : getLocation(int trayID,int shelfID,int binID) int : updateStorage() } class Storage{ List<Tray> trays int currentStock int requiredQty int : findPart(Part part) int : checkLocation(int tray,int shelf,int bin) int : addPart(Part part,int trayID,int shelfID,int binID) Location : getLocation(int trayID,int shelfID,int binID) int : updateStorage(int tray, int shelf, int bin) } class Location{ int trayID int shelfID int binID } class Tray{ List<Shelf> shelves int : getID() } class Shelf{ List<Bin> bins int : getID() } class Bin{ List<Part> parts int : getID() } Part -|> PartController Storage -|> StorageController Storage "1" *-- "many" Tray : contains Tray "1" *-- "many" Shelf : contains Shelf "1" *-- "many" Bin : contains Bin "1" *-- "many" Part : contains @enduml
false
true
false
false
class
9f73ca0803de4da485bc58f538362b4f1d660ed7
0c4947dd88f0571925ba65e79fd2ea6c6f35cdda
/src/main/java/cn/MessageSource.puml
07fb842e6206d2f998b0c451ba555feeb95445d3
[]
no_license
zou2561789/springuml
e31ad444152730d961a37d900951f1a1d3dd9609
15a505af77591b3e08a091dda2382940e8e6c48e
refs/heads/master
2020-05-05T08:10:03.561315
2019-06-15T10:36:34
2019-06-15T10:36:34
179,853,364
1
0
null
null
null
null
UTF-8
PlantUML
false
false
674
puml
@startuml class ResourceBundleMessageSource{ } abstract class AbstractResourceBasedMessageSource{ } abstract class AbstractMessageSource{ } abstract class MessageSourceSupport{ } interface HierarchicalMessageSource{ void setParentMessageSource(@Nullable MessageSource parent) MessageSource getParentMessageSource() } ResourceBundleMessageSource --|> AbstractResourceBasedMessageSource AbstractResourceBasedMessageSource --|> AbstractMessageSource AbstractMessageSource --|> MessageSourceSupport AbstractMessageSource ..|> HierarchicalMessageSource ResourceBundleMessageSource --|>AbstractResourceBasedMessageSource HierarchicalMessageSource --|>MessageSource @enduml
false
true
false
false
class
c8546702beed6eb9d17b8d9d4240efbb2a0cb9c2
e778c50fb529563a0106509e3635959099a00924
/Conception/Diagrams/plantUml/Use Cases/UC8-FundProject.puml
6f81c002bc6f6639b4f781d185eb002d93a430c0
[]
no_license
joelemenyu20/Sahem
cc07c7172dbaec42199510089f7d372b91a8508f
1f3ecf0b5fb67d2f74d11f679a6cfad99d9a04ff
refs/heads/master
2023-05-07T03:17:02.861896
2020-07-21T05:45:26
2020-07-21T05:45:26
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
510
puml
@startuml FundingProject left to right direction skinparam packageStyle rectangle actor Creator as A3 << Human >> ' actor Project as A9 << DataBase >> actor Project as A8 << Database >> actor PaymentInterface as A7 << Interface >> ' usecase (UC4-ShareToSocialMedia) as UC4 ' A1 -- (UC4) ' (UC4) -- A6 rectangle ProjectFunding { usecase (UC8-FundProject) as UC8 usecase (UC31-PayFund) as UC31 A3 -- (UC8) (UC8) -- A8 A3 -- (UC31) (UC31) -- A7 (UC8) .> (UC31) : include } @enduml
false
true
false
false
usecase
d5edaf5aaa90102c143ddca1a0e7d45da253a3a9
c9d49168edc406499204f69721424bb6deded5fd
/Modelo/Consulta.plantuml
2ef7647c27728870b1962511606a7f92ee6f9dda
[ "MIT" ]
permissive
JonatasAfonso/poc-consultorio-comum
1d2880314bacbf7809f59c2d76c8619e73bf6253
936a507ec888eb978abfdbf44c7cb4fe30a3633d
refs/heads/main
2023-03-12T19:39:26.314301
2021-02-26T12:35:39
2021-02-26T12:35:39
342,554,404
0
0
null
null
null
null
UTF-8
PlantUML
false
false
112
plantuml
@startuml class Consulta { Id : Guid PacienteId : Guid MedicoId : Guid DataHora : DateTime } @enduml
false
true
false
false
class
801425fe55216a3097071523b04a48a0b0364dc2
c083168b4255af019262677c09ac0883d199b532
/kapitler/media/uml-arkivstruktur-klassifikasjon.puml
f2851d8e3a11acb7a70b22452b7585213c871b53
[]
no_license
gra-moore/noark5-tjenestegrensesnitt-standard
270f7088898ff0c5fa809b42297cfc56f829eeaa
0c3936475ce40ab41793b61aee5c4dcdff9c791d
refs/heads/master
2020-05-22T18:37:59.814751
2019-05-13T11:10:23
2019-05-13T11:10:23
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,029
puml
@startuml skinparam classAttributeIconSize 0 skinparam nodesep 210 class Arkivstruktur.Arkivdel <Arkivenhet> class Arkivstruktur.Klassifikasjonssystem <Arkivenhet> { +klassifikasjonstype : Klassifikasjonstype [0..1] +tittel : string +beskrivelse : string [0..1] +avsluttetDato : datetime [0..1] +avsluttetAv : string [0..1] +referanseAvsluttetAv : SystemID [0..1] -- Arkivenhet -- +systemID : SystemID [0..1] +oppdatertDato : datetime [0..1] +opprettetDato : datetime [0..1] +opprettetAv : string [0..1] +oppdatertAv : string [0..1] +referanseOppdatertAv : SystemID [0..1] +referanseOpprettetAv : SystemID [0..1] } class Arkivstruktur.Klasse <Arkivenhet> { +klasseID : string +tittel : string +beskrivelse : string [0..1] +noekkelord : string [0..*] +avsluttetDato : datetime [0..1] +avsluttetAv : string [0..1] +referanseAvsluttetAv : SystemID [0..1] +skjerming : Skjerming [0..1] +kassasjon : Kassasjon [0..1] -- Arkivenhet -- +systemID : SystemID [0..1] +oppdatertDato : datetime [0..1] +opprettetDato : datetime [0..1] +opprettetAv : string [0..1] +oppdatertAv : string [0..1] +referanseOppdatertAv : SystemID [0..1] +referanseOpprettetAv : SystemID [0..1] } class Arkivstruktur.Mappe <Arkivenhet> class Sakarkiv.Saksmappe <Mappe> Arkivstruktur.Klassifikasjonssystem "+klassifikasjonssystem 0..1" <-o "+arkivdel 1..*" Arkivstruktur.Arkivdel Arkivstruktur.Klassifikasjonssystem "+sekundaerklassifikasjonssystem 0..1" <-o Arkivstruktur.Arkivdel Arkivstruktur.Klassifikasjonssystem "+klassifikasjonssystem 0..1" <--o "+klasse 0..*" Arkivstruktur.Klasse Arkivstruktur.Klasse o--> "+underklasse" Arkivstruktur.Klasse Arkivstruktur.Klasse "+klasse 0..1" o--> "+mappe 0..*\n" Arkivstruktur.Mappe Arkivstruktur.Arkivdel "+arkivdel 0..1" o--> "+mappe 0..*" Arkivstruktur.Mappe Arkivstruktur.Mappe o--> "+undermappe 0..*" Arkivstruktur.Mappe Arkivstruktur.Mappe <|-- Sakarkiv.Saksmappe Arkivstruktur.Klasse "+sekundaerklassifikasjon 0..*" <--o Sakarkiv.Saksmappe @enduml
false
true
false
false
class
6b8966ad5af57fae7c240ea8dfb545783e3f45f9
6fc63e8dbdd726b32eb0500e1d16abf6d5d09935
/uml/StartAndMain.puml
451572aff80f6a6527eebc855f0bc20d76e34d50
[]
no_license
averyreyna/Task-Tracker
ba8796811853b0ebb8eeb095ee576f9cd2152c89
67ea4a561bd228a22f603337c81f225b060b986e
refs/heads/master
2023-09-03T12:27:46.293408
2021-11-16T04:56:54
2021-11-16T04:56:54
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
173
puml
@startuml 'https://plantuml.com/class-diagram' class StartAndMain { fxmlLoader : FXMLLoader scene : Stage + start (Stage stage) + {static} main() } @enduml
false
true
false
false
class
620351fd0ce74519e237ea73b75c203f05918817
c3679277db13cee150496904963ef5d624c1d144
/test/src/main/java/com/gaga/pumlTest/class/TestCase1.puml
5f037e7c115ce6819939fb981d58faaf10bd9f67
[]
no_license
jialiu123/dataTodata
1d7f392bc8e9df53d7ac21023b94f0fe4ce069c3
56702a45afe8f1a6b199c45a9c744594ab96c2cd
refs/heads/master
2023-03-12T21:40:29.489302
2021-03-03T00:51:41
2021-03-03T00:51:41
293,486,188
1
0
null
null
null
null
UTF-8
PlantUML
false
false
142
puml
@startuml Class01 <|-- Class02 Class03 *-- Class04 Class05 o-- Class06 Class07 .. Class08 Class09 -- Class10 ClassTest1 <|-- Class22 @enduml
false
true
false
false
class
d95ef7f43d4ef11ab1bdb8347d2493186c289882
7db4f12f597c81bba9cb48cbd6e4171390e6cb93
/diagramme.puml
7c102aaa32e234ea5e472129a471d02c7b4abb6c
[]
no_license
HyperionSuperNova/CppBoardGames
89b521d5a15d6519d3ec23801fbe719891df7590
5fa005120938bbd983801c3dc2b95dbaa6a2c196
refs/heads/master
2020-04-07T16:34:55.010446
2019-01-10T15:52:55
2019-01-10T15:52:55
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
6,033
puml
@startuml abstract Plateau{ - int dimension - Case * cases + Plateau(int dimension) + virtual ~Plateau() + int getDimension() const + void setDimension(int) + virtual Case getCase(int) const + virtual void setCase(int, Pion*) + virtual const void move(int i_src, int j_src, int i_dst, int j_dst) + void setCases(int, Pion&) + friend std::ostream &operator<<(std::ostream &, const Plateau &) } class Case{ - int x - int y - Pion *pion - friend class boost::serialization::access - void serialize(Archive &ar, const unsigned int version) + Case() + Case(int ii, int jj) + Pion *getPion() + void setPion(Pion &) + bool isEmpty() + friend std:: ostream&operator<<(std:: ostream&, const Case &) } enum Couleur{ null BLANC NOIR } class Pion{ - std::string name - std::string img - Couleur color + Pion() + Pion(const std::string &name) + Pion(const std::string &name, const std::string &img, Couleur c) + void setNom(std::string) + void setImg(std::string) + Couleur getColor() + std::string getNom() + std::string getImg() + friend std::ostream &operator<<(std::ostream &os, const Pion &pion) } abstract PlateauCombinatoireAbstrait{ + PlateauCombinatoireAbstrait(int dimension) } abstract class PlateauDamier{ # bool anglais # int scoreJ1 # int scoreJ2 # std::vector<tuple*> posCase # friend class boost::serialization::access + int turn + void affichageVainqueur() + void ajoutePosCase(tuple*) + virtual const bool kingMove(int, int,int, int, Couleur) = 0 + explicit PlateauDamier(int dimension) + const void initialize() + const bool pionMove(int i_src, int j_src, int i_dst, int j_dst, Couleur c, bool) + const bool posOk(int i_src, int j_src, int i_dst, int j_dst) + std::tuple<int,int> nbCasetoCoord(int) + const void lectureFichierTest() + bool bot() + const void playerTurn() + const void playerTurn2() + void help(Couleur) + const void launcher() + const void singlePlayer() + const void twoPlayer() + const bool pionSelect(int i_src,int j_src,Couleur c) + friend std::ostream &operator<<(std::ostream &os, const PlateauDamier &damier) } class PlateauDamierInternational{ + PlateauDamierInternational() + const bool kingMove(int i_src, int j_src,int i_dst, int j_dst, Couleur c) + void save() + void load() } class PlateauDamierAnglais{ + PlateauDamierAnglais() + const bool kingMove(int i_src, int j_src, int i_dst, int j_dst, Couleur c) } class PlateauEchiquier{ - std::tuple<int,char>alpha[8] - std::tuple<int, int, std::string>joueur1[16] - std::tuple<int, int, std::string>joueur2[16] - std::string ordiPiece[16] - std::tuple<int, int>coord - std::tuple<int,int,std::string>dernier_mouv[2] - std::string piece_bouffee - bool les2RoisontSurLePlateau + PlateauEchiquier() + friend std::ostream &operator<<(std::ostream &os, const PlateauEchiquier &echiquier) + bool mouvement_pion(std::string, bool) + bool mouvement_tour(std::string, bool) + bool mouvement_cavalier(std::string, bool) + bool mouvement_fou(std::string, bool) + bool mouvement_dame(std::string, bool) + bool mouvement_roi(std::string, bool) + bool mouvement(std::string,bool, std::string) + bool roiEStEnEchec(bool) + bool roiEstSurDiagonaleDeFou(bool) + bool roiEstSurCaseCavalier(bool) + bool roiACotePion(bool) + std::tuple<int,int> ouEstCavalier(int, int, bool) + std::tuple<int,int> ouEstFou(int,int,bool) + std::tuple<int,int> ouEstTour(int, int, bool) + std::tuple<int,int> ouEstRoi(int, int, bool) + std::tuple<int,int> ouEstDame(int, int, bool) + std::string quelleImage(std::string, bool) + std::string helpCavalier(bool) + std::string helpTour(bool) + std::string helpFou(bool) + std::string helpPion(bool) + std::string helpDame(bool) + std::string helpRoi(bool) + std::string help(bool) + void posOrdiPiece() + bool tourPeutElleYAller(int, int, int, int) + int getEquivalenceAlpha(char) + char getEquivalenceNum(int) + void pionDetruit(int, int, bool) + void launchEchiquier(bool) } class PlateauStratego{ - std::tuple<int, std::string> pions[12] - std::tuple<int, std::string> img[12] - int joueur1[12] - int joueur2[12] + PlateauStratego() + friend std::ostream &operator<<(std::ostream &os, const PlateauStratego &stratego) + bool mouvement_eclaireur(int , int, int, int, bool, bool) + bool mouvement_autre(int, int, int, int, bool, bool) + bool estPlusFortQue(Pion p1, Pion p2) + bool mettrePionJoueurSurPlateau(bool) + void cacherPieceJoueur(bool) + void revelerUnePiece(int, int) + void mettrePionOrdiSurPlateau(bool) + int getNbrBombe(bool joueur) + int getNbrDrapeau(bool joueur) + int getNbrEspion(bool joueur) + int getNbrEclaireur(bool joueur) + int getNbrDemineur(bool joueur) + int getNbrSergent(bool joueur) + int getNbrLieutenant(bool joueur) + int getNbrCapitaine(bool joueur) + int getNbrCommandant(bool joueur) + int getNbrColonnel(bool joueur) + int getNbrGeneral(bool joueur) + int getNbrMarechal(bool joueur) + bool queBombeEtDrapeau(bool joueur) + bool pieceEstdeplacable(int, int) + std::vector <std::tuple<int, int>> getLigneColonne() + std::string help(bool joueur) + int renvoiePionsNbr(std::string) + void launchStratego(bool) + const void lectureFichierTest() + void scoreFinPartie() } Plateau <|-- PlateauCombinatoireAbstrait Plateau <|-- PlateauStratego PlateauCombinatoireAbstrait <|-- PlateauEchiquier PlateauCombinatoireAbstrait <|-- PlateauDamier PlateauDamier <|-- PlateauDamierInternational PlateauDamier <|-- PlateauDamierAnglais Case <-- Pion Plateau <-- Case @enduml
false
true
false
false
class
1f0d603a95bd689588b9ebcb2f7d0851862948ca
b2377dbb97354ebb11f18337fae7a5deb10e9fd1
/docs/UseCases/Manage-Infrastructure/Add-Compute-Island.puml
a55bf23056fa43bf946f59c24bbd8f1c3b9813c0
[]
no_license
CAADE/H2C
634e94afdd5302232d234aa7abefcfc61a24ea8e
91227f94a60c8e3285c24333da340c06a51afa9d
refs/heads/master
2021-03-27T18:25:35.652782
2018-06-01T21:58:49
2018-06-01T21:58:49
83,159,772
0
0
null
null
null
null
UTF-8
PlantUML
false
false
162
puml
@startuml Actor "actorName" as A box "Manage-Infrastructure" #lightblue participant "Heterogenous_Hyper_Cloud" as S A -> S : Add-Compute-Island end box @enduml
false
true
false
false
sequence
674adb6f731131a3e424eacaecd45e70269c8376
c0d12651e064b1e60c8564961e962cd11065bced
/examples/gcp-sequence-diagram-example.puml
797abb8290d44153c777924486bf23cf3c0fb248
[]
no_license
xmobe/GCP-C4-PlantUML
2ed05df8d79c0c91550a4294b9f83d15fe2dbc01
d83b11c87b42910958d26c0207802e17c45d6037
refs/heads/master
2022-12-03T07:52:37.628456
2020-08-23T09:44:39
2020-08-23T09:44:39
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,187
puml
@startuml GCP Sequence Diagram !define GCPPuml https://raw.githubusercontent.com/gamma-data/GCP-C4-PlantUML/master/templates !includeurl GCPPuml/GCPCommon.puml !includeurl GCPPuml/Networking/CloudLoadBalancing.puml !includeurl GCPPuml/Networking/CloudDNS.puml !includeurl GCPPuml/Compute/ComputeEngine.puml !includeurl GCPPuml/Storage/CloudStorage.puml !includeurl GCPPuml/Databases/CloudSQL.puml actor User as user participant "<color:#0072C6><$CloudDNSParticipant></color>\nDNS Zone\nCloud DNS" as dns participant "<color:#0072C6><$CloudLoadBalancingParticipant></color>\nL7 Load Balancer\nCloud Load Balancing" as clb participant "<color:#0072C6><$ComputeEngineParticipant></color>\nContent Server\nCompute Engine Instance" as vm participant "<color:#0072C6><$CloudStorageParticipant></color>\nStatic Assets\nCloud Storage Bucket" as gcs participant "<color:#0072C6><$CloudSQLParticipant></color>\nDynamic Content\nCloud SQL Database" as csql user -> dns: get IP address for load balancer dns -> user: << IP address >> user -> clb: make content request clb -> vm: pass request to vm vm -> gcs: get static content vm -> csql: get dynamic content vm -> user: return content @enduml
false
true
false
false
sequence
0c9596837d3d70bd2ab708c1fc56e1a5d55d89f7
49201c6059aff7268f202bb61942cc3eb7ba462b
/inputViewClick.puml
83bc947b01dbaf94343d5d24f0b30c569bbfb242
[]
no_license
OzBenDev/designs
fdc614d5ceff22e14600d1614c7b206aec375a70
d22aa7238f080312bb9bded8ac77676cc5e630fd
refs/heads/master
2023-08-07T14:00:41.829442
2021-09-14T13:14:47
2021-09-14T13:14:47
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,019
puml
@startuml participant ChatAutocompleteView participant ReadoutSendView participant InternalSendView participant User User -> ChatAutocompleteView: Clicks On the input view User -> ChatAutocompleteView: starts typing group #PowderBlue text.isNotEmpty ChatAutocompleteView -> ReadoutSendView: setState(State.Send) rnote over ChatAutocompleteView, ReadoutSendView #Gold State Send endrnote ChatAutocompleteView -> ChatAutocompleteView: enable keyboard input User -> ChatAutocompleteView: text input by keyboard User -> InternalSendView: Clicks on Send InternalSendView -> ReadoutSendView: onSendClicked ReadoutSendView -> ChatAutocompleteView: onSendClicked ReadoutSendView -> ReadoutSendView: setState(State.None) rnote over ChatAutocompleteView, ReadoutSendView #Gold State None endrnote ChatAutocompleteView -> ChatAutocompleteView: onSendInput(text) ChatAutocompleteView -> ChatAutocompleteView: onSendInput.invoke(text) end @enduml
false
true
false
false
sequence
7752c689b7eb3e36514c2de8099f825982571ac0
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
/build/empty@0.5.0.puml
a5e09f73d905d0616229e29f6271bb3599ff4a60
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "CC-BY-4.0" ]
permissive
accordproject/cicero-template-library
737586850933daac2fbff2ff8b2d60dd50526b80
35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea
refs/heads/main
2023-04-27T01:07:05.932361
2022-08-26T13:02:59
2022-08-26T13:02:59
109,224,687
77
149
Apache-2.0
2023-04-20T21:43:00
2017-11-02T06:11:37
HTML
UTF-8
PlantUML
false
false
465
puml
@startuml class org.accordproject.empty.EmptyClause << (A,green) >> { } org.accordproject.empty.EmptyClause --|> org.accordproject.cicero.contract.AccordClause class org.accordproject.empty.EmptyRequest << (T,yellow) >> { } org.accordproject.empty.EmptyRequest --|> org.accordproject.cicero.runtime.Request class org.accordproject.empty.EmptyResponse << (T,yellow) >> { } org.accordproject.empty.EmptyResponse --|> org.accordproject.cicero.runtime.Response @enduml
false
true
false
false
class
108b396112fce519645e9541bb68153eeca4ee6d
9c667c105e3e4726808d66b0d2b5060e646deb21
/PlantUML/ClassDesign_short.puml
bae21be2ffdfdf8624db3e7cddee08e53e487837
[]
no_license
AlexKOrSo/AP_Kaufmann-Mende
d2f957855d0213a37b450d12dad02ea29655ac31
99498f2a393b18f3416ee333aea0f28f47da6a61
refs/heads/main
2023-06-26T14:19:47.118406
2021-07-27T12:58:03
2021-07-27T12:58:03
382,697,318
1
1
null
2021-07-27T12:58:04
2021-07-03T19:43:34
C#
UTF-8
PlantUML
false
false
878
puml
class Dataset{ +PathIDs: string +PathLabels: string +MaxItems: ulong +Label: string +LabelName: string +findLabels(searchString: string):Dictionary<String,String> +getIDs(searchString: string):List<String> +Dataset() +Dataset(PathIDs: string, PathLabels: string) +Dataset(PathIDs: string, PathLabels: string,MaxItems: ulong) } class DownloadManager{ +{static} downloadAllFiles(IDs: List<string>,path: string):int +{static} downloadFile(ID: string, path: string):int } class ModelBuilder{ } class CategorizedImage{ +LabeledAs: string +Path: string +FileName: string -- +CategorizedImage() } class HTMLTools{ +{static} ProcessedImages: List<CategorizedImage> -- +MakeResultsFile(Path: string): void } class ModelInput{ } class ModelOutput{ } class ConsumeModel{ } CategorizedImage "N" -- "1" HTMLTools
false
true
false
false
class
0192422d3ca975f41aa32144775f92228549911b
06dd890ab21e10669d860540bd0e5c39efa4069a
/sample-service/docs/price-creation-trigger.puml
913ad68fa2203072d6f7f0f4933c2061fa725c1a
[]
no_license
ckhurram/spring-boot-docker-k8s
f01b2f3f508c5e3d68ec602437f70c29303265f1
45c474062522db65824b8e5e583a32065f31df66
refs/heads/master
2023-04-30T13:25:39.778966
2023-04-15T15:17:15
2023-04-15T15:17:15
93,404,539
0
0
null
null
null
null
UTF-8
PlantUML
false
false
861
puml
@startuml 'https://plantuml.com/sequence-diagram autonumber actor PriceCreationAnalyst as analyst participant priceTriggerPage as webPage participant PriceCreationService as pcs participant RVService as rvs participant GraphQL as gql database PriceCreation as pdb analyst -> webPage: enter PNO12, market, modelYear and discount webPage -> pcs: calls triggerPriceCreation(PNO12, market, modelYear, discount) pcs -> pcs: validate request pcs --> webPage: SUCCESS webPage --> analyst: SUCCESS pcs -> rvs: getRV data (pno12, mileage, duration, modelYear, salesDate) rvs --> pcs: RV percentage pcs -> gql: getCarKey(pno12, modelYear, market) gql --> pcs: CarKey JSON object pcs -> gql: CarByCarKey to get pricing data gql --> pcs: car MSRP pcs -> pcs: calculate price using formulas pcs -> pdb: Store price document for PNO12, market, modelYear as a key @enduml
false
true
false
false
usecase
2b5d5dc4bc94a6534a2e6ed221cccca3debb79af
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.puml
4e7633c988b17768948b86a2540cde254707d603
[]
no_license
TakanoVineYard/AMHH
215a7c47049df08c5635b501e74f85137b9e985b
68887a313587a2934fb4ceb2994cbc2a2191d6a3
refs/heads/master
2023-01-13T02:08:02.787083
2020-11-17T14:51:57
2020-11-17T14:51:57
303,631,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
223
puml
@startuml class ExitPlayMode { + ExpectDomainReload : bool <<get>> + ExpectedPlaymodeState : bool <<get>> + ExitPlayMode() + Perform() : IEnumerator } IEditModeTestYieldInstruction <|-- ExitPlayMode @enduml
false
true
false
false
class
904d4e6fca6ceb0c7c2be644dab5f84dc4debbb1
9b4db5933b8160e7a3cfc12b937fa3fa42dbdd7b
/src/pers/caijx/builder/Builder1.puml
f004d6f839ee3ff5cf008fa5aad2b7ab08077742
[]
no_license
SmileCJX/DesignPattern
73014d9bf34b52d4089a605e980e9ee8ee0558ba
7c5b234d76efd424820e0b1a5521e885dd606bcd
refs/heads/master
2020-08-05T08:35:19.258006
2019-12-03T01:25:06
2019-12-03T01:25:06
212,466,258
0
0
null
null
null
null
UTF-8
PlantUML
false
false
346
puml
@startuml abstract class AbstractHouse AbstractHouse : +bulidBasic(): void AbstractHouse : +buildWalls(): void AbstractHouse : +roofed(): void AbstractHouse : +build(): void class CommonHouse class HighBuilding AbstractHouse <|-- CommonHouse AbstractHouse <|-- HighBuilding class Client Client ..> CommonHouse Client ..> HighBuilding @enduml
false
true
false
false
class
f3fc134f53a7890ad02774bd9263a13a06f24d16
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderSetCustomerEmailAction.puml
252da15a60f20a15c1caab417ac8b79778b323c5
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
441
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface OrderSetCustomerEmailAction [[OrderSetCustomerEmailAction.svg]] extends OrderUpdateAction { action: String email: String } interface OrderUpdateAction [[OrderUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
c8132265fd3abe4f643a07e3d06a322e6c3da15d
608c7301bf1eaed2b79855fd8030b15e4fc0d4aa
/docs/uml/sequence_diagram/pursuit.puml
b8231ac9fbbf7fc6d344c9bbe9a949704a24f7e5
[]
no_license
mehmetrizaoz/autonomous_steering_agents
48d0fbba36eafd081c78b825687d156bb02a5764
5d901252f66b68bfcaf48dd7da6145b1bdc462f0
refs/heads/master
2023-05-15T07:28:49.473767
2021-06-14T10:43:48
2021-06-14T10:43:48
356,524,673
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,245
puml
@startuml actor actor as user participant graphics as view participant agent as agent participant behavior as steeringBehavior participant pursuit as pr user -> pr: user defines scenario activate pr activate view activate agent activate steeringBehavior note left: anytime user -> view: set mouse position loop triggered with 20ms periodic prent loop for all agents alt if agent is gazelle pr -> view: request mouse position view --> pr: gives mouse position pr -> agent: set agent target position pr -> steeringBehavior: request seek force for target pos. steeringBehavior --> pr: gives seek force pr -> agent: set force else agent is lion pr -> steeringBehavior: request pursuing force steeringBehavior --> pr: gives pursuing force pr -> agent: set force end pr -> agent:set arrive behavior end agent -> agent: calculates next position pr -> view: draw agents pr -> view: draw title pr -> view: refresh end user -> view: stop program deactivate pr deactivate view deactivate agent deactivate steeringBehavior @enduml
false
true
false
false
sequence
ead6ef0ec138060eaeb14b85adcf90b3afb34b6d
c85d255daca76e76b7073e0a288849be195b214e
/app/src/main/java/com/architectica/socialcomponents/main/post/createPost/createPost.plantuml
1b543598ee9415e2d731766bf966ed5513c09c93
[ "Apache-2.0" ]
permissive
AryaAshish/Archcrony
75bb4646d938b2da11721aff0dde11ad49f4a357
3cf972c48e900d513d53ebed857373741c1969b5
refs/heads/master
2020-04-29T12:34:32.168647
2019-08-01T12:56:05
2019-08-01T12:56:05
176,141,477
1
3
Apache-2.0
2019-08-01T12:56:06
2019-03-17T18:16:12
Java
UTF-8
PlantUML
false
false
1,668
plantuml
@startuml title __CREATEPOST's Class Diagram__\n namespace com.architectica.socialcomponents { namespace main.post { namespace createPost { class com.architectica.socialcomponents.main.post.createPost.CreatePostActivity { {static} + CREATE_NEW_POST_REQUEST : int + createPresenter() + onCreateOptionsMenu() + onOptionsItemSelected() } } } } namespace com.architectica.socialcomponents { namespace main.post { namespace createPost { class com.architectica.socialcomponents.main.post.createPost.CreatePostPresenter { + CreatePostPresenter() # getSaveFailMessage() # isImageRequired() # savePost() } } } } namespace com.architectica.socialcomponents { namespace main.post { namespace createPost { interface com.architectica.socialcomponents.main.post.createPost.CreatePostView { } } } } com.architectica.socialcomponents.main.post.createPost.CreatePostActivity .up.|> com.architectica.socialcomponents.main.post.createPost.CreatePostView com.architectica.socialcomponents.main.post.createPost.CreatePostActivity -up-|> com.architectica.socialcomponents.main.post.BaseCreatePostActivity com.architectica.socialcomponents.main.post.createPost.CreatePostPresenter -up-|> com.architectica.socialcomponents.main.post.BaseCreatePostPresenter right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
39d49823c52ba5e3aff223f545ebcc696fb0efae
e1f415544b4e4ed4a5fec0cacfc3d779537660de
/docs/diagrams/RemovalBasedClassDiagram.puml
405e9965cc21652079da2d647940fa7fe6213f43
[ "MIT" ]
permissive
ongch00/main
f37fab4361bf58913846509ee07bcee4ebf4e8d3
6385c9ab2cf3544714e888db9290d4775beb6eb9
refs/heads/master
2021-01-08T07:18:17.591976
2020-04-13T14:58:39
2020-04-13T14:58:39
241,953,008
0
0
NOASSERTION
2020-02-20T17:56:52
2020-02-20T17:56:51
null
UTF-8
PlantUML
false
false
2,135
puml
@startuml hide circle hide empty members skinparam classAttributeIconSize 0 !define ABSTRACT &#123;abstract&#125; 'Class Command as "{abstract}\nCommand" { ' + execute(Model model): CommandResult \t ABSTRACT '} Class InternshipDiaryParser { } note "generateLazyCommand() creates a lazy function\nthat will construct the appropriate command\n(e.g. DeleteCommand) based on the\ncommandWord attribute." as lazyCommandNote RemovalBasedCommand .. lazyCommandNote RemovalBasedCommand .[hidden]. lazyCommandNote class Parser <<interface>> { } Class ArchiveCommand { {static} + COMMAND_WORD: String = "archive" } Class UnarchiveCommand { {static} + COMMAND_WORD: String = "unarchive" } Class DeleteCommand { {static} + COMMAND_WORD: String = "delete" } Class RemovalBasedCommand { - commandWord: String - executionType: RemovalBasedCommandExecutionType + execute(model: Model): CommandResult - generateLazyCommand(): Function<Index, Command> - executeByIndex(model: Model, lazyCommand: Function<Index, Command>): CommandResult - executeByIndices(model: Model, lazyCommand: Function<Index, Command>): CommandResult - executeByField(model: Model, lazyCommand: Function<Index, Command>): CommandResult } Class RemovalBasedCommandExecutionTypeParser implements Parser { - commandWord: String + parse(args: String): RemovalBasedCommand - commandByIndex(args: String): RemovalBasedCommand - commandByIndices(args: String): RemovalBasedCommand - commandByField(args: String): RemovalBasedCommand } enum RemovalBasedCommandExecutionType <<enumeration>> { BY_INDEX BY_INDICES BY_FIELD getExecutionType(args: String, argMultimap: ArgumentMultimap) } InternshipDiaryParser .left.> RemovalBasedCommandExecutionTypeParser RemovalBasedCommandExecutionTypeParser .left.> RemovalBasedCommand RemovalBasedCommandExecutionTypeParser .down.> RemovalBasedCommandExecutionType RemovalBasedCommand .down.> RemovalBasedCommandExecutionType RemovalBasedCommand .up.> ArchiveCommand RemovalBasedCommand .up.> UnarchiveCommand RemovalBasedCommand .up.> DeleteCommand @enduml
false
true
false
false
class
df75eff831498fc1c00eb0d7611a0c65be832055
d7d2a8a78c08e7d4ab0e9f1afbd30c2304a4baef
/FinalProject/Diagrams/DEntities.puml
2162371013884a6b10d9ffea20c743a781eb8dbe
[]
no_license
hectorgastaminza/comit
3639892dc865979a84acd738e8e975df9e2f7ace
24362fe12467506c19db4df3b7749e37f7647181
refs/heads/master
2020-03-20T02:08:37.560667
2018-08-02T01:26:26
2018-08-02T01:26:26
137,100,666
0
0
null
null
null
null
UTF-8
PlantUML
false
false
542
puml
@startuml class User { LoginName Password } class Device { MsgTopic } class Place { Description } class MqttConnectionConfiguration{ String brokerHost; // mqtt.dioty.co Int brokerPort; // 1883 Int brokerWebSocketsPort; // (Optional) 8080 String userId; // (Optional) hectorgastaminza@gmail.com String password; // (Optional) 67b9ee69 String rootTopic; // (Optional) "/hectorgastaminza@gmail.com/" } User -right- MqttConnectionConfiguration User -down- Place Place - Place User -down- Device Place -left- Device @enduml
false
true
false
false
class
099811d6eb81ee7917dbb54d269476237224eb82
1c62e6ad04d679c073059c3c25cb9be592d73791
/plantuml/behavioral/strategy.puml
f5fabe079bb4db623c312ae2412a9fab79da8e4e
[ "Unlicense" ]
permissive
skr-mams/java-design-patterns
d6c507b2cbd9a4724f3045fb998f329eebd729ca
5bea71a0a52160fc7f4348dc596c46c0b407c7f1
refs/heads/main
2023-08-22T12:35:33.091377
2021-09-20T21:47:10
2021-09-20T21:47:10
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
460
puml
@startuml interface CompressionFormat { void compress(List<File> files) } class Compressor { void setCompressionFormat(CompressionFormat compressionFormat) void compress(List<File> files) } RarCompression -u-|> CompressionFormat ZipCompression -u-|> CompressionFormat Compressor *-d-> CompressionFormat note "Estrategia" as NoteEstrategia CompressionFormat ..l.. NoteEstrategia note "Contexto" as NoteContexto Compressor ..l.. NoteContexto @enduml
false
true
false
false
class
938ddb6fe098ec396410da7738a9b9185cd99d35
ef47ee6d9594ab5f17ede6a09df4337977005e6d
/src/main/java/AD/SW11/HelloPlantUML.puml
82b8de6cb89c9be54e6915e5013c7b1e0f4b5d2d
[ "Apache-2.0" ]
permissive
GutManuel85/HSLU_AD
f990a4524ca5e41417eb3a04a6b9f365b6ffd3fa
a55709c296283c79f29a0ab033d3e3b758aefde4
refs/heads/main
2023-03-02T07:36:06.287677
2021-02-13T20:24:50
2021-02-13T20:24:50
338,660,681
0
0
null
null
null
null
UTF-8
PlantUML
false
false
358
puml
@startuml abstract class AbstractList abstract class Neu abstract AbstractCollection interface List interface Collection List <|.AbstractList Collection <|-- AbstractCollection Collection <- List AbstractCollection <|- AbstractList AbstractList <|-- ArrayList class ArrayList { Object[] elementData size() } enum TimeUnit { DAYS HOURS MINUTES } @enduml
false
true
false
false
class
301a9b4f1460b01114b31a4e053b5fae1ec2f417
d3041cf51b2dd9a46b8c309151fd18e4fa8633eb
/docs/puml/routersequencediagram.puml
25e87c6989caa8efbf88b240e544c0388016b285
[]
no_license
AY2021S2-CS2113T-T09-2/tp
06e70bc7d7d14db76f258d914f82a0ac845e0f49
db579dae196f350b79272d99ffe91dbcbc7cafa4
refs/heads/master
2023-03-28T21:39:51.497537
2021-04-16T15:18:52
2021-04-16T15:18:52
344,310,358
0
5
null
2021-04-16T15:18:53
2021-03-04T01:12:28
Java
UTF-8
PlantUML
false
false
1,829
puml
@startuml hide footbox participant ":NUSMaze" participant "command:GoCommand" participant "ui:RouterUi" participant "blockAlias:BlockAlias" ":NUSMaze"-> "command:GoCommand" : execute() activate "command:GoCommand" "command:GoCommand" -> "ui:RouterUi": getRoutingInfo() activate "ui:RouterUi" "ui:RouterUi" --> "command:GoCommand": deactivate "ui:RouterUi" "command:GoCommand" -> "blockAlias:BlockAlias": changeAliasToBlock(String, String) activate "blockAlias:BlockAlias" return "command:GoCommand" -> "nusMap:NusMap": checkIfValidBlock(String) activate "nusMap:NusMap" return deactivate "blockAlias:BlockAlias" create ":Router" "command:GoCommand" -> ":Router" : execute() activate ":Router" ":Router" -> ":Router" : findShortestRoute activate ":Router" ":Router" -> "nusMap:NusMap" : resetVisitedFlag activate "nusMap:NusMap" "nusMap:NusMap" -> ":Block" : setAsNotVisited activate ":Block" ":Block" --> "nusMap:NusMap" deactivate ":Block" "nusMap:NusMap" --> ":Router" deactivate "nusMap:NusMap" ":Router" -> "nusMap:NusMap" : getBlock activate "nusMap:NusMap" "nusMap:NusMap" --> ":Router" deactivate "nusMap:NusMap" ":Router" -> "nusMap:NusMap" : getBlock activate "nusMap:NusMap" "nusMap:NusMap" --> ":Router" deactivate "nusMap:NusMap" ":Router" -> ":Router" : bfs activate ":Router" ":Router" -> ":Block" : setAsVisited activate ":Block" ":Block" --> ":Router" deactivate ":Block" deactivate "nusMap:NusMap" deactivate ":Block" ":Router" --> ":Router" deactivate ":Router" ":Router" --> ":Router" deactivate ":Router" ":Router" -> ":Router" : getRouteAsString activate ":Router" ":Router" --> ":Router" deactivate ":Router" ":Router" --> "command:GoCommand" deactivate ":Router" "command:GoCommand" -> "ui:RouterUi": showMessageWithDivider(String) activate "ui:RouterUi" return "command:GoCommand" --> ":NUSMaze" @enduml
false
true
false
false
sequence
7a6c7f0df567840a9168e5d512693ec06b2ecccf
17fe0f5df5b8d1ad7ab001775c37cf6c9ca3084e
/iterator/uml.puml
634681a2be7b97ad2881a4df238e53617b8b8ece
[]
no_license
lazy3311/design_patterns
a91c86a17aeb8bda3564c2f4db2cd8f5774b63ea
f8da613ecf14d9f47fac67d1efafbafe6156f0b1
refs/heads/master
2022-12-09T20:32:13.457813
2020-09-11T09:25:31
2020-09-11T09:25:31
286,716,509
0
0
null
null
null
null
UTF-8
PlantUML
false
false
792
puml
@startuml iterator !define DARKORANGE !includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml abstract class IterableCollection <<SongsCollection>> { + {abstract} create_iterator(); } abstract class Iterator <<Iterator>> { + {abstract} has_next(); + {abstract} next(); } class ConcreateCollection <<SongsOf80s, SongsOf90s>>{ + create_iterator(); } class ConcreateIterator <<StaticArrayIterator, DynamicArrayIterator>>{ + has_next(); + next(); } allow_mixing rectangle Client #DarkOliveGreen Client --> IterableCollection Client --> Iterator IterableCollection <|-- ConcreateCollection Iterator <|-- ConcreateIterator ConcreateCollection .left.> ConcreateIterator : <<create>> ConcreateCollection <-- ConcreateIterator @enduml
false
true
false
false
class
7895b7e38669889a55d68bd7ff37d70f27a8c687
ed006f8e98c20dfd1fe16065e9037b6c8efc511d
/doc/design/diagrams/logging/logger_runtime_replacement.puml
b030fdd7daa68d5d6d19dbc918ea0d251c786e8b
[ "Apache-2.0", "BSD-3-Clause", "MIT", "LicenseRef-scancode-generic-export-compliance" ]
permissive
phongt/iceoryx
939343855cc4bbe1610ce7c7ed504539a943f795
efc697cf67a8bc8aedf3d123e2c9df582a5aeb83
refs/heads/master
2023-07-26T03:36:03.492954
2023-07-19T08:29:19
2023-07-19T08:29:19
237,723,029
0
0
Apache-2.0
2023-07-21T19:33:59
2020-02-02T05:23:34
C++
UTF-8
PlantUML
false
false
963
puml
@startuml participant User participant MyLogger << static >> participant Logger << static >> participant "logger : Logger" as loggerInstance participant "myLogger : MyLogger" as myLoggerInstance User -> MyLogger ++ : init MyLogger -> myLoggerInstance ** MyLogger -> Logger ++ : setActiveLogger(&myLogger) Logger -> Logger ++ : activeLogger(&myLogger) note left Logger the static pointer to the active logger will be set to myLogger end note Logger -> loggerInstance ** note over loggerInstance calling activeLogger without parameter will create this anyway (e.g. by logging before calling initLogger) so there is no need to to make it more complicated by branching end note return return MyLogger -> Logger ++ : init Logger -> Logger ++ : get Logger -> Logger ++ : activeLogger() return return Logger -> loggerInstance ++ : initLoggerInternal loggerInstance -> myLoggerInstance ++ : initLogger return return return return @enduml
false
true
false
false
sequence
aa30cc152638cfcf6257238137b3338a06db73a5
a3769b4806d0b48bfaf25aaa7b56fa46671e78c2
/app/src/main/java/com/myapp/organizeteam/organizeteam.plantuml
1dbb71f59dc52e5714b082e05fe0e2755ebd4937
[]
no_license
ofekgani/OrganizeTeam
6197e777b897f3c43c0e1987555e42aa4c374356
684b01601133fcf17313a3ed44c51ca6fda1f0d7
refs/heads/master
2023-06-04T17:23:47.310007
2021-06-23T00:51:45
2021-06-23T00:51:45
292,112,888
0
0
null
null
null
null
UTF-8
PlantUML
false
false
12,900
plantuml
@startuml title __ORGANIZETEAM's Class Diagram__\n namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.CreateAccountActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.CreateMeetingActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.CreatePostActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.CreateRoleActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.CreateTaskActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.CreateTeamActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.MainActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.MeetingActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.MeetingListActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.ResponsesListActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.RoleInformationActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.RoleSelectionActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.SelectTeamActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.SettingsActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.SubmissionActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.SubmitAssignmentActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.SubmitsListActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.TaskListActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.TaskReplyActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.TeamPageActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.UserInformationActivity { } } namespace com.myapp.organizeteam.Activities { class com.myapp.organizeteam.Activities.UserSelectionActivity { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.JoinRequestCard { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.JoinToTeamFragment { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.MeetingsListAdapter { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.MyStepperAdapter { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.PostsListAdapter { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.RolesListAdapter { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.RolesListAdapterRel { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.RolesUsersListAdapterRel { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.TasksListAdapter { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.TeamListAdapter { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.UsersListAdapter { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.UsersListAdapterRel { } } namespace com.myapp.organizeteam.Adapters { class com.myapp.organizeteam.Adapters.UsersRequestsListAdapterRel { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.ActivityTransition { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.ConstantNames { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.Date { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.Hour { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.InputManagement { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.Meeting { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.Mission { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.Post { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.Role { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.Submitter { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.Team { } } namespace com.myapp.organizeteam.Core { class com.myapp.organizeteam.Core.User { } } namespace com.myapp.organizeteam.DataManagement { class com.myapp.organizeteam.DataManagement.Authorization { } } namespace com.myapp.organizeteam.DataManagement { class com.myapp.organizeteam.DataManagement.DataExtraction { } } namespace com.myapp.organizeteam.DataManagement { interface com.myapp.organizeteam.DataManagement.DataListener { } } namespace com.myapp.organizeteam.DataManagement { class com.myapp.organizeteam.DataManagement.DataPass { } } namespace com.myapp.organizeteam.DataManagement { interface com.myapp.organizeteam.DataManagement.IRegister { } } namespace com.myapp.organizeteam.DataManagement { interface com.myapp.organizeteam.DataManagement.ISavable { } } namespace com.myapp.organizeteam.Dialogs { class com.myapp.organizeteam.Dialogs.RequestJoinDialog { } } namespace com.myapp.organizeteam.Dialogs { class com.myapp.organizeteam.Dialogs.TaskDialog { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.MeetingsFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.ParticipantsFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.PostsFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.RollsListFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.StepFiveRegisterFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.StepFourRegisterFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.StepOneRegisterFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.StepThreeRegisterFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.StepTwoRegisterFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.TasksFragment { } } namespace com.myapp.organizeteam.Fragments { class com.myapp.organizeteam.Fragments.UsersListFragment { } } namespace com.myapp.organizeteam.MyService { interface com.myapp.organizeteam.MyService.APIService { } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Client { } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Data { } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.MeetingAlarmReceiver { } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.MyFirebaseMessagingService { } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Notification { } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Sender { } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.TaskAlarmReceiver { } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Token { } } namespace com.myapp.organizeteam.Resources { class com.myapp.organizeteam.Resources.FileManage { } } namespace com.myapp.organizeteam.Resources { class com.myapp.organizeteam.Resources.Loading { } } namespace com.myapp.organizeteam.Resources { class com.myapp.organizeteam.Resources.OpenMenu { } } namespace com.myapp.organizeteam.Resources { class com.myapp.organizeteam.Resources.Stepper { } } namespace com.myapp.organizeteam.Resources { class com.myapp.organizeteam.Resources.Transformation { } } com.myapp.organizeteam.Activities.CreateAccountActivity .up.|> StepperLayout.StepperListener com.myapp.organizeteam.Activities.CreateRoleActivity .up.|> AdapterView.OnItemSelectedListener com.myapp.organizeteam.Activities.RoleSelectionActivity .up.|> RolesListAdapter.RoleSelectedListener com.myapp.organizeteam.Activities.SelectTeamActivity .up.|> AdapterView.OnItemClickListener com.myapp.organizeteam.Activities.SelectTeamActivity .up.|> RequestJoinDialog.DialogListener com.myapp.organizeteam.Activities.TeamPageActivity .up.|> NavigationView.OnNavigationItemSelectedListener com.myapp.organizeteam.Activities.TeamPageActivity .up.|> PostsListAdapter.AdapterListener com.myapp.organizeteam.Activities.TeamPageActivity .up.|> UsersRequestsListAdapterRel.AdapterListener com.myapp.organizeteam.Activities.UserSelectionActivity .up.|> UsersListAdapter.UserSelectedListener com.myapp.organizeteam.Adapters.PostsListAdapter o-- com.myapp.organizeteam.Adapters.PostsListAdapter.AdapterListener : listener com.myapp.organizeteam.Adapters.RolesListAdapter o-- com.myapp.organizeteam.Adapters.RolesListAdapter.RoleSelectedListener : listener com.myapp.organizeteam.Adapters.RolesUsersListAdapterRel o-- com.myapp.organizeteam.Adapters.RolesUsersListAdapterRel.RecycleViewClickListener : listener com.myapp.organizeteam.Adapters.UsersListAdapter o-- com.myapp.organizeteam.Adapters.UsersListAdapter.UserSelectedListener : listener com.myapp.organizeteam.Adapters.UsersListAdapterRel o-- com.myapp.organizeteam.Adapters.UsersListAdapterRel.RecycleViewClickListener : listener com.myapp.organizeteam.Adapters.UsersRequestsListAdapterRel o-- com.myapp.organizeteam.Adapters.UsersRequestsListAdapterRel.AdapterListener : listener com.myapp.organizeteam.Core.Date .up.|> java.io.Serializable com.myapp.organizeteam.Core.Hour .up.|> java.io.Serializable com.myapp.organizeteam.Core.Meeting .up.|> Serializable com.myapp.organizeteam.Core.Mission .up.|> Serializable com.myapp.organizeteam.Core.Post .up.|> Serializable com.myapp.organizeteam.Core.Role .up.|> java.io.Serializable com.myapp.organizeteam.Core.Submitter .up.|> Serializable com.myapp.organizeteam.Core.Team .up.|> java.io.Serializable com.myapp.organizeteam.Core.User .up.|> java.io.Serializable com.myapp.organizeteam.Dialogs.RequestJoinDialog o-- com.myapp.organizeteam.Dialogs.RequestJoinDialog.DialogListener : listener com.myapp.organizeteam.Fragments.StepFiveRegisterFragment .up.|> Step com.myapp.organizeteam.Fragments.StepFourRegisterFragment .up.|> Step com.myapp.organizeteam.Fragments.StepOneRegisterFragment .up.|> Step com.myapp.organizeteam.Fragments.StepThreeRegisterFragment .up.|> Step com.myapp.organizeteam.Fragments.StepTwoRegisterFragment .up.|> Step com.myapp.organizeteam.MyService.Data .up.|> java.io.Serializable com.myapp.organizeteam.MyService.Token .up.|> java.io.Serializable right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
cef110cc646ca05b8e9cb794eca73b40b22c29f6
e025f7f5f80709163d37e676fab1031fe50215ff
/BehavioralPatterns/ChainOfResponsibility/src/main/resources/problem2.puml
d3f533539db717bf8b2c2c43d43c1a95cf9a1f53
[]
no_license
solitarysp/Example-Learn-Design-Patterns
b08108cdd08389000a85cf46ed0206dad02eb43d
7bf0bcf11ba6b42baca7d394eaf041f4d14a40a7
refs/heads/master
2021-06-18T21:11:12.834002
2021-02-03T08:16:48
2021-02-03T08:16:48
137,770,677
0
0
null
2020-10-21T03:26:53
2018-06-18T15:31:54
Java
UTF-8
PlantUML
false
false
878
puml
@startuml class Main{ + main(String[] args) } class OrderService{ + boolean order(OrderEntity orderEntity) } class TokenValidateProcess{ + boolean tokenValidate(String token) } class NumberOrderValidateProcess{ + boolean numberOrderValidate(Integer numberOrder) } Main --> OrderService : 1: Gọi đến OrderService OrderService --> TokenValidateProcess : 2: gọi đến TokenValidateProcess để validate token TokenValidateProcess --> NumberOrderValidateProcess : 3: TokenValidateProcess sẽ gọi đến \n NumberOrderValidateProcess để validate number order NumberOrderValidateProcess --> TokenValidateProcess : 4: trả lại kết quả cho TokenValidateProcess TokenValidateProcess --> OrderService : 5: trả lại kết quả cho OrderService, và tiếp tục sử lý logic OrderService --> Main : 6: trả lại kết quả cho Main @enduml
false
true
true
false
sequence
df9048020c9f145bbd7d211d35dfdf014f64cee6
af4761e34df2036a7b519bc492f96197d351e727
/src/_diagrams/community_erd_2.plantuml
8d10b7fbf792f10245573b6651bf218595430152
[]
no_license
ylansegal/blog
f92da9bb1ad65c95d6dd3a1e3cff78efcc5b250b
32cb9d5c3ee47f8b0ca4c369853bc5088926ee1d
refs/heads/master
2023-08-16T17:58:22.354548
2023-08-12T20:02:53
2023-08-12T20:02:53
5,498,384
0
0
null
2022-12-26T21:05:40
2012-08-21T17:23:05
HTML
UTF-8
PlantUML
false
false
1,475
plantuml
@startuml hide circle skinparam linetype ortho entity "Person" as person { *id : number <<generated> } entity "Program" as program { *id : number <<generated>> } entity "ProgramParticipant" as program_participant { *id : number <<generated>> -- program_id : foreign_key participant_id : foreign_key (person) } entity "SignatureRequirement" as signature_requirement { *id : number <<generated>> } entity "ProgramSignatureRequirement" as program_signature_requirement { *id : number <<generated>> -- program_id : foreign_key signature_requirement_id : foreign_key } entity "Signature" as signature { *id : number <<generated>> -- signature_requirement_id : foreign_key participant_id : foreign_key (person) } entity "Household" as household { *id : number <<generated>> } entity "HouseholdPeople" as household_people { *id : number <<generated>> -- household_id : foreign_key person_id : foreign_key } abstract "MissingSignature" as missing_signature { signature_requirement_id : foreign_key participant_id : foreign_key (person) } program }o--|| program_participant program_participant }o--|| person signature_requirement }o--|| program_signature_requirement program }o--|| program_signature_requirement signature_requirement }o--|| signature signature_requirement }o--|| missing_signature person }o--|| signature person }o--|| missing_signature household }o--|| household_people person }o--|| household_people @enduml
false
true
false
false
sequence
bfabcc5eebb8f359687982f3ceefad68c5c935c3
d3f921b9e488b1d7e2fa86d01a2e6855219b1d05
/docs/plantuml/ESH/handler.plantuml
b4c5ccf0eb688bae6f53f411c85f3cf68d9fc4dc
[ "Apache-2.0" ]
permissive
gematik/ref-ePA-FdV-Modul
d50e244d781702b95a9a31dc4efee09765546d79
2c6aba13f01c4fb959424342a5fa8ce1660ffad4
refs/heads/master
2022-01-19T20:31:23.703274
2022-01-07T07:24:03
2022-01-07T07:24:03
239,501,237
2
1
null
null
null
null
UTF-8
PlantUML
false
false
341
plantuml
@startuml namespace de.gematik.ti.epa.fdv.session.handler { class de.gematik.ti.epa.fdv.session.handler.ServiceLocalizerLoader { {static} - instance : ServiceLocalizerLoader {static} + getInstance() + getServices() + serviceLocalizerAvailable() - ServiceLocalizerLoader() } } @enduml
false
true
false
false
class
0ef67f37703738c6fb2f1316f092f195bd93244a
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderCustomFieldAddedMessagePayload.puml
eac45ce9e38d7e97361e05f684036dd719f5e3d7
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
491
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface OrderCustomFieldAddedMessagePayload [[OrderCustomFieldAddedMessagePayload.svg]] extends OrderMessagePayload { type: String name: String value: [[Object.svg Object]] } interface OrderMessagePayload [[OrderMessagePayload.svg]] { type: String } @enduml
false
true
false
false
class
a62141ff1c368ac23dce3021c9bfab527683ecbd
237de7ba3a5c942577b6c5bdebc77a6c223c330a
/Brawndo/src/main/Vehicule/Vehicule.plantuml
a4677b493c75337696869edce48c1b3e0079c1a0
[]
no_license
FlorianPaumier/Uqac_POO_Avanced
00a5b0b4d1fd7cfe7f44700299e13edbd2afdd21
3ee6d79c2439e4909d0a6e2856fc247140db431b
refs/heads/master
2023-08-23T03:45:25.499048
2021-10-13T21:06:22
2021-10-13T21:06:22
407,205,303
0
0
null
2021-10-06T21:49:17
2021-09-16T14:52:45
Java
UTF-8
PlantUML
false
false
1,456
plantuml
@startuml title __VEHICULE's Class Diagram__\n namespace main { namespace Vehicule { class main.Vehicule.Car { + Car() } } } namespace main { namespace Vehicule { class main.Vehicule.Moto { + Moto() } } } namespace main { namespace Vehicule { class main.Vehicule.Truck { + Truck() } } } namespace main { namespace Vehicule { class main.Vehicule.VehicleController { - vehicles : ArrayList<Vehicle> + VehicleController() + move() - generateAccident() - moveOneVehicle() } } } namespace main { namespace Vehicule { class main.Vehicule.VehicleFactory { - id : int - maxVehicle : int - tick : int - timer : int - vehiclesClass : ArrayList<Class<? extends Vehicle>> + VehicleFactory() + generate() + getTick() - generateVehicule() } } } main.Vehicule.Car -up-|> main.Interface.Vehicle main.Vehicule.Moto -up-|> main.Interface.Vehicle main.Vehicule.Truck -up-|> main.Interface.Vehicle main.Vehicule.VehicleFactory .up.|> main.Interface.Factory right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
dfb1666fe26a508f001ac89f0dde17d6a4e1b8f4
338a7020ba19ad7cbea94faca4695598a5e0e564
/doc/GestorFiguras.puml
e24937543b3a8459f43dbcdf49f45630e4e1291c
[]
no_license
meschoyez/FigurasAvanzadas
1ebcc5586195a0fe5b15386b179911467e97a3bc
ef1894c00ea0d08d7921be700066a3add44a8eed
refs/heads/master
2023-08-25T14:51:27.139914
2021-10-28T00:03:54
2021-10-28T00:03:54
297,661,922
0
1
null
null
null
null
UTF-8
PlantUML
false
false
614
puml
@startuml GestorFiguras skinparam ClassAttributeIconSize 0 hide circle class HerramientaDeAzar { + HerramientaDeAzar() + getFiguraAleatoria() : FiguraGeometrica } class GestorFiguras #LightPink { - HerramientaDeAzar generador - List<FiguraGeometrica> figuras + GestorFiguras() + agregarFiguraAleatoria() + crearFigurasAleatoriamente(Integer cantidad) + listarFigurasColeccionadas() + listarFigurasOrdenadas() + listarFigurasSegunDistanciaAlOrigen() } HerramientaDeAzar --> GestorFiguras HerramientaDeAzar --> FiguraGeometrica GestorFiguras -> FiguraGeometrica @enduml
false
true
false
false
class
afa7e6147d1ccd3a56c6da9ede36c2a5c5d423e8
49c820ef974af10a38431d267de6e5df24e1c6a7
/Class Diagram.puml
8b633ed6b1c239f6761a4643ce3d50d5a5dd9cdf
[]
no_license
Aseev-Sergey/Prototype
1fb1f0617a6d79386e6478d0b14da24599f7464e
14095fee9daa642a2bfbbd958a089d9585578a47
refs/heads/main
2023-06-03T02:52:42.217758
2021-06-13T09:24:34
2021-06-13T09:24:34
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
377
puml
@startuml package sample <<Folder>>{ package Nodes <<Folder>>{ abstract class Node implements java.lang.Cloneable class Arrows extends Node class Begin extends Node class End extends Node class Solution extends Node class Operation extends Node } class Main extends javafx.application.Application class Controller implements javafx.fxml.Initializable } @enduml
false
true
false
false
class
3d8bc59e25b855b586eef69d8110c24ba2a73103
f9a71f11f47c0e47838e5e7fd9afd8a0037ac746
/src/main/java/edu/miu/simpleshop/Main.puml
6ff8f6c86ff9310b2f0aa4392729d2dd80583639
[]
no_license
nberta/SimpleOnlineShop
6b9003d1cefbb502578581bf85d7e888bfe3d91a
8aa8c2eacea95b24508a6290eea021ff9da23147
refs/heads/Hanna
2022-12-28T18:59:36.122923
2020-07-17T18:05:25
2020-07-17T18:05:25
301,458,208
0
0
null
2020-10-05T15:40:42
2020-10-05T15:39:39
JavaScript
UTF-8
PlantUML
false
false
2,263
puml
@startuml class User{ -id: Long -username: String -password: String -email: String -role: Role } class Admin { -id: Long - } class Product { -id:Long -quantity:int -name: String -price: Price -description: Description -productImage: Multipart -isConfirmed:Boolean } class Buyer { -id: long -int: gainPoints -productReviews: ProductReview -follows: Follow -orders: Order } class Follow{ -id: long -seller: Seller -buyer: Buyer } class Seller { -id: Long -products: Product -follows: Follow -orders: Order } class Order { -id: long -category: Category -payment: Payment -date: Date -shippingAddress: Address -orderLines: OrderLine } class Address { -id: long -street:String -city:String -zip:String -state:String } class CartItem { -id: long -products: Product -quantity: int } class ShoppingCart { -id: long -cartItems: CartItem -buyer: Buyer } class ProductReview { -id: Long -product: Product -buyer: Buyer -comment: String -rating: int -isConfirmed: Boolean } class BillingInfo { -id: long -billingAddress: Address -orderNumber: Long -cardNumber: Long -date: Date } class OrderLine { -id: long -order: Order -product: Product -quantity: int } class Category{ -id: long -products: Product -name: String } enum Role{ ADMIN BUYER SELLER } enum OrderStatus{ CREATED SHIPPED DELIVERED CANCELLED } User -- Buyer User -- Seller User -left- Admin Seller -- Order Order -- BillingInfo Payment -- Address Address -- Buyer Buyer -right- Follow Follow -- Seller Buyer -- ShoppingCart Product -- ProductReview Buyer -- ProductReview Order -- OrderLine OrderLine -- Product Product -- Category Seller -- Product Product -- CartItem CartItem -- ShoppingCart OrderLine -..> CartItem ' 'Entry "1" -- "1..*" Block 'Block -- Section 'Entry "1" <-- "1..*" Student 'Student "0..*" -- "0..*" Section 'Student "0..1" -- "0..*" Transcript 'Transcript --> Course 'Section --> Course 'Faculty --> Course 'Course -left-> Specialization 'Faculty --> Section 'Faculty --> Specialization @enduml
false
true
false
false
class
856b31120e31e89f63612b9e646e2fadf0e5ec2f
83a587c3c0059d7928d0d82a0b98cddea5e483c2
/asciidocs/plantuml/usecase.puml
c0254fbfad55aa78e0047d43876d4b040ae9a81e
[]
no_license
2122-5ahitm-sew/01-microproject-thoefler
076302e3ea26b81d51770121ad5c48168987047a
a73ec96e83bd975b478d37e94ef2bb66c68c3533
refs/heads/master
2023-08-25T18:56:49.412621
2021-10-18T18:40:07
2021-10-18T18:40:07
408,422,857
0
0
null
null
null
null
UTF-8
PlantUML
false
false
452
puml
@startuml left to right direction actor "Label Manager" as lm package "Plattenlabel" { usecase "Neuen Artist anlegen" as uc1 usecase "Neuveröffentlichungen bei Artists hinzufügen" as uc2 usecase "Albumrelease hinzufügen" as uc21 usecase "Singlerelease hinzufügen" as uc22 usecase "Tour anlegen" as uc3 usecase "Konzerte anlegen" as uc4 } lm --> uc1 lm --> uc2 uc2 --> uc21 uc2 --> uc22 lm --> uc3 lm --> uc4 @enduml
false
true
true
false
usecase
191909d66e6afa8b1ba3528f72bd2be9b1ea9671
326f0532299d6efcaec59d5a2cc95c31d9af9ef2
/src/com/atguigu/proxy/staticproxy/staticproxy.plantuml
69a47d3b289f1f4bb1bad9f3a6596c06f7834854
[]
no_license
srefp/design_pattern
4b45ceb0808a8ae98a007bc5b0e01825693dcf7b
b7ff2d80172c55848b8f59530da6ccca477dfd24
refs/heads/main
2023-01-19T06:12:14.495913
2020-11-24T08:48:53
2020-11-24T08:48:53
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,112
plantuml
@startuml title __STATICPROXY's Class Diagram__\n namespace com.atguigu.proxy.staticproxy { class com.atguigu.proxy.staticproxy.Client { {static} + main() } } namespace com.atguigu.proxy.staticproxy { interface com.atguigu.proxy.staticproxy.ITeacherDao { {abstract} + teach() } } namespace com.atguigu.proxy.staticproxy { class com.atguigu.proxy.staticproxy.TeacherDao { + teach() } } namespace com.atguigu.proxy.staticproxy { class com.atguigu.proxy.staticproxy.TeacherDaoProxy { + TeacherDaoProxy() + teach() } } com.atguigu.proxy.staticproxy.TeacherDao .up.|> com.atguigu.proxy.staticproxy.ITeacherDao com.atguigu.proxy.staticproxy.TeacherDaoProxy .up.|> com.atguigu.proxy.staticproxy.ITeacherDao com.atguigu.proxy.staticproxy.TeacherDaoProxy o-- com.atguigu.proxy.staticproxy.ITeacherDao : target right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
123d029d41101954f86ce6bd253bf813c2e22184
a3b87d39d98fb335338009552804e0b0afa9b59a
/src/sample/sample.plantuml
e231120a256bb60f0bbf728abb1428778b1a0d13
[]
no_license
zOrOjUrO/jfxProjects-newsApp
67fcff7c8cc3b696f5fa8662173ea8f0dffa671b
bdceee2331dc4c4956ecc94f016e402a0467b1ea
refs/heads/main
2023-07-08T12:04:06.979058
2021-08-13T17:46:43
2021-08-13T17:46:43
395,739,591
4
0
null
null
null
null
UTF-8
PlantUML
false
false
436
plantuml
@startuml title __SAMPLE's Class Diagram__\n namespace sample { class sample.Main { {static} + main() + start() - gommaConfirmation() } } sample.Main -up-|> javafx.application.Application right footer /' PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com '/ endfooter @enduml
false
true
false
false
class
d64aeb94f464125b2eeae3ce32c84a99a06b7651
5c13c6d446ea52d1cfbe7809c1ecd58b1327235a
/UML.puml
b6d059331cdabea21d6a1e4985a7fc74a67db097
[]
no_license
mlbrashear/ToDo-List-Outline
24905641fbedc39ec17ec717d489f9045e930189
6583183e604728c3e80783f92fe518969e1fcdd7
refs/heads/master
2023-08-29T00:44:36.747575
2021-10-23T07:41:52
2021-10-23T07:41:52
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
714
puml
@startuml 'https://plantuml.com/class-diagram abstract class ToDoApplication abstract class ToDoController { AddButton RemoveButton SaveAllButton LoadButton AddToListButton RemoveFromListButton EditDescButton EditTitleButton EditDateButton SaveButton CompletedButton IncompletedButton } abstract class List { addItem removeItem editTitle editDesc editDate showComplete showIncomplete save } abstract class AddList { add } abstract class LoadList { load } abstract class SaveAllLists { saveAll } abstract class RemoveList { remove } ToDoApplication <|-- ToDoController ToDoController <|-- List AddButton <|-- AddList LoadButton <|-- LoadList SaveAllButton <|-- SaveAllLists RemoveButton <|-- RemoveList @enduml
false
true
false
false
class
2571845bfd5b48419afaed3cb8868404b9a817d1
29e499c7049d725de515d0f0294f765b6bbb4dc3
/DesignPattern/out/production/DesignPattern/com/ilike/uml/composition/Person.puml
c9f526b4bd4b4527e044227ad34ef18465088654
[]
no_license
dongyuancaizi/designPatternLearning
70dddd9d156fd3d4e9c07bb4f94f76820b625308
1fbde529b073b9a205bffd90607574754d6aac50
refs/heads/master
2020-07-04T05:13:23.384529
2019-11-19T13:09:10
2019-11-19T13:09:10
202,167,833
0
0
null
null
null
null
UTF-8
PlantUML
false
false
134
puml
@startuml class IDCard class Head class Person Person *--Head Person o--IDCard class Person{ IDCard idCard; Head head; } @enduml
false
true
false
false
class
6965ae31d7f4f5f48e8d153615bd77532732d80b
f4a46c301b674dfe96a4318ab0346acb0a78c8f8
/Farm Frenzy.puml
110886094381515d031f445a83585aa412794b5e
[]
no_license
mahdiheidari721/Project
9c677606f9fabadaf9a9c5da8d73977bfe81ebce
87379b6c28e8e3d23050c9c49967fe68a929c943
refs/heads/main
2023-05-06T20:20:37.470509
2021-05-28T09:27:59
2021-05-28T09:27:59
371,648,527
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,788
puml
@startuml 'https://plantuml.com/class-diagram class Animal{ int X_position; int Y_position; void RandomWalk(){}; void Voice(){}; void WorkToDo(){}; boolean Live; int SizaInWareHouse; } class AnimalIncubator extends Labratory{ } class Bank { int Coin; void Buy(){}; void Sell(){}; } class Cage { int Level; void TimeToDo(){}; void WorkToDo(){}; } class CakeBakery extends Labratory{ } class CookieBakery extends Labratory{ } class DefenderAnimal extends Animal{ void WorkToDo() } class DomesticAnimal extends Animal{ void Eating(){}; void NeedWater(){}; void FindGrass(){}; } class EggPowderPlant extends Labratory{ } class Farm { void PutGrass(){}; } class Grass { int X_position; int Y_position; int MaxPower; void Power(){}; } class Helicopter extends TransformVehicle{ void TypeOfWork() void TimeToDo() void Voice() } class Hen extends DomesticAnimal{ void WorkToDo() super.WorkToDo(); } class Labratory { int X_Positin; int Y_Position; int Level; void WorkToDo(){}; void TimeToDo(){}; int InitialPrice(){ return this.Level; }; } class Lion extends WildAnimal { void WorkToDo() } class Motor extends TransformVehicle{ void TypeOfWork() void TimeToDo() void Voice() } class Product { // one Arraylist for each of the products includes egg,feather,wool,lion,bear,cake,cookie,powder1,powder2 } class Shop { int X_position; int Y_position; int HenCounter; int OstrichCounter; //TODO } class Spinnery extends Labratory{ } class TransformVehicle { int Capacity; int X_Positin; int Y_Position; void TypeOfWork(){}; void TimeToDo(){}; void Voice(){}; } class WareHouse { int Level; static final int Capacity = 200; int CapacityCounter; ArrayList<Product> Product=new ArrayList<>(); ArrayList<Product> RecentlySold=new ArrayList<>(); boolean CanSellOrStore(){ return true; }; void Sell(){}; } class WeavingFactory extends Labratory{ } class WildAnimal extends Animal { void RandomX_Y(){}; void Attack(){}; void BreakingCage(){}; } class Sheep extends DomesticAnimal{ } class Ostrich extends DomesticAnimal{ } class Dog extends DefenderAnimal{ } class Cow extends DomesticAnimal{ } class Cat extends DefenderAnimal{ } class Bear extends WildAnimal{ } WareHouse *-- Bank WareHouse *-- Product Product *-- Bank Bank *-- WareHouse Product *-- WareHouse Bank *-- Product Farm *-- Grass WildAnimal *-- Cage Product *-- Shop Bank *-- Shop @enduml
false
true
false
false
class
067dac7d1a4e26f34b12705592ac4d67927d0e8f
34acd2aa8d51295c0c4289e43e8961f5e23b5a08
/PlantUML/raw/ElCazador.Worker/Modules/Servers/SMBServer.puml
3aef4ac362a2ec0b3b70dc13ebef4334371d521c
[]
no_license
fisboger/Thesis
a6887e195c7daa8317abe3167de1676420173e33
4746126f69da615c641380fd7a33c863f2fedee3
refs/heads/master
2020-04-03T15:18:08.671739
2019-02-07T11:17:06
2019-02-07T11:17:06
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
882
puml
@startuml class SMBServer { - {static} mre : ManualResetEvent - Socket : Socket <<get>> <<set>> + IsEnabled : bool <<get>> + SMBServer(controller:IWorkerController) + <<async>> Run() : Task + <<async>> Stop() : Task - <<async>> StartSocket() : Task - <<async>> AcceptCallback(asyncResult:IAsyncResult) : Task - <<async>> ReadCallback(asyncResult:IAsyncResult) : Task - <<async>> ParseHash(packet:SMBPacket) : Task - <<async>> NegotiateSMB1ToSMB2Response(packet:SMBPacket) : Task - <<async>> NegotiateResponse(packet:SMBPacket) : Task - <<async>> NegotiateNTLMResponse(packet:SMBPacket) : Task - <<async>> SendAccessDenied(packet:SMBPacket) : Task - <<async>> Send(handler:Socket, data:byte[]) : Task - <<async>> SendCallback(ar:IAsyncResult) : Task } BaseModule <|-- SMBServer IPersistantModule <|-- SMBServer @enduml
false
true
false
false
class
ea55fb3e1bb90eb60f9e05d36c32a7f7ae6c15d7
2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8
/CleanSheets/src/main/java/csheets/worklog/n1130523/sprint3/crm_contacts_with_tags_analysis_ssd.puml
6791a8257feb834c1526aa5e3a899bb809ddd0e5
[]
no_license
ABCurado/University-Projects
7fb32b588f2c7fbe384ca947d25928b8d702d667
6c9475f5ef5604955bc21bb4f8b1d113a344d7ab
refs/heads/master
2021-01-12T05:25:21.614584
2017-01-03T15:29:00
2017-01-03T15:29:00
77,926,226
1
3
null
null
null
null
UTF-8
PlantUML
false
false
1,067
puml
@startuml doc-files/crm_contacts_with_tags_analysis_ssd.png alt add User -> System: selects button "Associated tags to contacts" User <-- System: shows all contacts User -> System: selects a contact to add tag User -> System: insert tag name User <-- System: confirms? User -> System: informs success of operation else edit User -> System: selects button "Edit contact of Specific tag" User <-- System: asks for the tag User -> System: The user write a specific tag User -> System: insert tag name User <-- System: shows a list with all contacts with the specific tag User -> System: The user edits contact if he wants User <-- System: confirms? User -> System: informs success of operation else delete tag User -> System: selects button "Delete tag of specific contact" User -> System: The user write a specific tag User <-- System: shows a list with all contacts with the specific tag User -> System: selects a contact and the tag that he wants eliminate and press button to delete the tag. User <-- System: validates and imforms success of operation. end @enduml
false
true
false
false
sequence
3477f38ecaf7dfbb8a3f41e1f360db6cda147dbd
0854491daf9cdc4eec02cb0266e984a490ddc101
/game-of-thrones/uml/processor.plantuml
dd91c77866fab85a3af8565faef2bbfeac7b138c
[]
no_license
charantej224/game-of-thrones
7cfffba19e5f6137922fbfa36b49aba647ca4ac9
69348d6cae6b14da037b86118471f09988917e7a
refs/heads/master
2020-05-15T03:37:03.060951
2019-04-23T05:40:11
2019-04-23T05:40:11
182,070,674
0
1
null
2019-04-21T23:30:04
2019-04-18T10:53:37
Java
UTF-8
PlantUML
false
false
2,400
plantuml
@startuml title __PROCESSOR's Class Diagram__\n package com.thrones.of.game { package com.thrones.of.game.processor { class CharacterSelector { - housesModelMap : Map<String, HousesModel> - helpProperties : Properties + selectPlayerCharacterHouse() + selectEnemyCharacterHouse() + selectEnemyCharacter() + selectCharacter() + selectHouse() } } } package com.thrones.of.game { package com.thrones.of.game.processor { class CommandHelper { - helptext : Properties - patternProperties : Properties + listCommands() + canUseCommands() } } } package com.thrones.of.game { package com.thrones.of.game.processor { class EntryProcessor { - helpProperties : Properties + registerPlayer() + deregisterPlayer() + startNewGame() } } } package com.thrones.of.game { package com.thrones.of.game.processor { class ExitProcessor { ~ helpProperties : Properties + quitGame() } } } package com.thrones.of.game { package com.thrones.of.game.processor { class FightModuleProcessor { - helpProperties : Properties + fightEnemy() + fightEnemy() + handleComms() + checkGameStatus() + precheckSelectedWeapon() } } } package com.thrones.of.game { package com.thrones.of.game.processor { class GameExplorer { - helpProperties : Properties + exploreHouse() + getInfo() + getmyWeapons() + playerProfile() } } } CharacterSelector o-- Session : session CharacterSelector o-- ApplicationConfiguration : applicationConfiguration EntryProcessor o-- GameValidator : validator EntryProcessor o-- ApplicationConfiguration : applicationConfiguration EntryProcessor o-- Session : session ExitProcessor o-- Session : session FightModuleProcessor o-- Session : session GameExplorer o-- ApplicationConfiguration : applicationConfiguration GameExplorer o-- Session : session right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
ba282a27de6dc65238abe62da9f16d7db38338c8
83147b64e04741de0403ef88b6c9aeba85d05361
/docs/Iteracao2/DUC.puml
5092191b98e6e27b10b1a03b22f962d1bb2a28ff
[]
no_license
antoniodanielbf-isep/ESOFT-2020
3af037382ecf70f5b25448765e841a8733cc3968
a1bcfcbb7951b58afcc9c1f663265091dde3926e
refs/heads/main
2023-06-04T23:48:29.068810
2021-06-20T18:18:38
2021-06-20T18:18:38
378,711,541
0
0
null
null
null
null
UTF-8
PlantUML
false
false
705
puml
@startuml usecase UC1 as "UC1 - Registar Organização" usecase UC2 as "UC2 - Definir Área de Atividade" usecase UC3 as "UC3 - Definir Categoria (de Tarefa)" usecase UC4 as "UC4 - Especificar Competência Técnica" usecase UC5 as "UC5 - Especificar Colaborador de Organização" usecase UC6 as "UC6 - Especificar Tarefa" actor "Utilizador Não Registado" as UNR actor "Administrativo" as ADM actor "Gestor de Organização" as GO actor "Colaborador de Organização" as CO actor "Freelancer" as FRL left to right direction UNR -->(UC1) ADM -->(UC2) ADM -->(UC3) ADM -->(UC4) GO -->(UC5) CO --> (UC6) note right of (FRL) Ator identificado mas ainda sem casos de uso concretos end note @enduml
false
true
true
false
usecase
f246bbc66db1f9bcfc4136655f1deca78dca91cd
0ce0ba4aea801c3567528a51185e921ad610912f
/design/api.sequence.puml
5f276c5cf0f422a44f4d0fd1714f139c851f954c
[]
no_license
JPBlancoDB/csv-importer
71e65dd508fffb25591ee851e8f34fa60757f18e
0af813d67b292cbc8c7a5c1aabcc33c845d8f74c
refs/heads/master
2020-05-19T14:22:46.835174
2019-05-17T21:21:50
2019-05-17T21:21:50
185,058,575
1
1
null
null
null
null
UTF-8
PlantUML
false
false
1,080
puml
@startuml "WebApi Sequence" actor User participant Controller participant Validator participant ImporterService participant JobsService database Sql participant CloudStorageService database AzureBlobStorage participant QueueService queue ServiceBus User->Controller: import csv Controller->Validator: validate request activate Validator Validator-->Controller: return ValidationResult destroy Validator activate ImporterService Controller->ImporterService: start process ImporterService->>JobsService: create job: status = created JobsService->Sql: store new job ImporterService->>CloudStorageService: upload csv file CloudStorageService->CloudStorageService: rename file with uuid CloudStorageService->>AzureBlobStorage: upload file ImporterService->>QueueService: publish job QueueService->>ServiceBus: send message: job ServiceBus-->QueueService: ok QueueService-->ImporterService: ok ImporterService->>JobsService: update job: status = queued ImporterService-->Controller: return job destroy ImporterService Controller-->User: return 202 with job information @enduml
false
true
false
false
sequence
3603abf65c26ae20bb17cfbf322b185366e685ad
662400cd7070b36349d445b3d63e17fcd0c28834
/uml/app.plantuml
52a45c5ccc57c91bf49b71b03db6c62971aadb7e
[]
no_license
marciogualtieri/alien-tracker
1e305d5970486ef7b1b34b6b1e069c8e36ae7a37
8a07f096021b7182019e6dc8397a2c46d8fdbd8a
refs/heads/main
2023-06-17T01:48:08.618650
2021-07-05T16:43:17
2021-07-05T16:43:17
383,076,465
0
0
null
null
null
null
UTF-8
PlantUML
false
false
890
plantuml
@startuml interface Representation Representation : numpy.array value() class TextRepresentation implements Representation class TextFileRepresentation extends TextRepresentation interface Detector Detector : float: score(invader: Representation, shingle: Shingle) class SimpleDetector implements Detector class Shingle { Tuple[int, int] : row_index_range Tuple[int, int] col_index_range numpy.array : contents Any : empty_value } interface Renderer Renderer : render(screen: Representation, detections: List[numpy.array]) class StandardOutputRenderer implements Renderer class Tracker Tracker : List[numpy.array] get_detection_masks(invaders: List[Representation]) class App App : run() App --* Tracker App --* Renderer Tracker --* "many" Representation Tracker --* Detector Tracker --* "many" Shingle Renderer --* Representation @enduml
false
true
false
false
class
6adb5c54dc45b4f9873a922f56109eb29ae95bb4
96d48952312778fe2c57b273f826bd9bd6d2396c
/Sample/Class/Visibility.puml
1408f9291f67d92472f11f57013cd54cb6115da5
[ "Apache-2.0" ]
permissive
MathB/PlantUML-NB
d757f6ef77f749eda5e6e9998ee6a3f7f25133eb
2a63699858c5074714fca3af286ae542a32142bd
refs/heads/master
2021-01-10T16:19:50.268639
2014-06-02T06:51:59
2014-06-02T06:51:59
44,731,558
1
1
null
null
null
null
UTF-8
PlantUML
false
false
140
puml
@startuml skinparam classAttributeIconSize 0 class Dummy { -field1 #field2 ~method1() +method2() } @enduml
false
true
false
false
class
bfc7379d0f6c346a19e67abad5be4c1f2b2e69c4
535dca469320dec5b0a348ab927bf887fe5672b0
/src/main/java/UML/AddProductsNewDao.puml
33763a9b4d650dec7eab818b02312ae87a91c0c6
[]
no_license
Camaz993/Info202Project
b13f4a7d1c864685c9e033880f6c963186aa1bbf
7a43c35b37fb1782166ea39b616fdb86eb620b12
refs/heads/master
2023-01-09T23:04:29.538283
2020-11-05T07:41:30
2020-11-05T07:41:30
310,222,521
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,873
puml
@startuml ' style tweaks to make the diagram a little more readable skinparam { Style strictuml RoundCorner 8 Sequence { ' make activations yellow too LifeLineBackgroundColor #FDFDCD ' make stereotypes less ugly Stereotype { Font { Size 11 Style plain } } } DatabaseBorderColor #A80036 } title Add New Product (using DB DAO) actor User as user participant "Administration" as main << main >> participant "MainMenu" as menu << frame >> participant "ProductEditor" as dialog << dialog >> participant "ProductDatabaseDAO" as dao << DAO >> participant "SimpleListModel\n:model" as model participant "Product\n:product" as product << domain >> database "Database" as db main++ create menu main -> menu : « construct » user -> menu : clicks 'Add New Product' menu++ create dialog menu -> dialog : « construct » dialog++ create dao dialog -> dao : « construct » dialog -> dao++ : getCategories() dao -> db++ : select distinct category from product return ResultSet dao -> dao : extract categories\nfrom ResultSet return categories create model dialog -> model : « construct » dialog -> model++ : updateItems(categories) model-- dialog -> dialog : cmbCategory.setModel(model) note left : categories now\nin combobox dialog-- user -> dialog++ : enters product details into input components dialog-- user -> dialog++ : clicks 'Save' button create product dialog -> product : « construct » dialog -> dialog : get details entered\ninto input components dialog -> product++ : set fields to entered details product-- dialog -> dao++ : save(product) dao -> dao : copy product details\ninto PreparedStatement dao -> db++ : merge into product (...) values (...) db-- dao-- dialog -> dialog : dispose() dialog --> menu : menu regains focus destroy dialog @enduml
false
true
true
false
usecase
f004f22b500ff9eeda6864bfe57ea3238c34833d
57967ee1d4a8d2d58ae7d6cad38769d6e03d0493
/spring-boot-demo/src/design/classes.puml
2e41d87d0382f2ae03664852617592683ca2cd01
[]
no_license
miranlau/springboot_swagger_oauth
3ae43238e36452db943f8691e7f82ed1245b061f
9c3422008690b5851b6ef39938dd5a8ccd90743e
refs/heads/master
2021-06-22T19:16:18.019225
2019-11-29T02:47:57
2019-11-29T02:47:57
224,764,271
0
0
null
2021-06-04T22:04:30
2019-11-29T02:44:48
Java
UTF-8
PlantUML
false
false
1,314
puml
@startuml top to bottom direction package com.tieto.tni.rest.controller { abstract class BaseController class AlarmController } package com.tieto.tni.rest.entity { class Alarm enum AlarmStatus enum AlarmSeverity } package com.tieto.tni.rest.service { interface AlarmService class AlarmServiceImpl } package com.tieto.tni.rest.mapper { interface AlarmMapper } package com.tieto.tni.rest.exception { class ServiceException } package com.tieto.tni.rest.docs { class SwaggerConfig } package com.tieto.tni.rest.security { class SecurityConfig } package com.tieto.tni.rest.log { class TraceLoggingAspect } package com.tieto.tni.rest.util { class DateFormatter class JwtTokenUtil } class ResponseEntity BaseController <|-- AlarmController AlarmService <|-- AlarmServiceImpl ResponseEntity .. AlarmController AlarmStatus .. AlarmServiceImpl AlarmSeverity .. AlarmServiceImpl Alarm .. AlarmServiceImpl Alarm .. AlarmController AlarmServiceImpl .. AlarmController AlarmMapper .. AlarmServiceImpl ServiceException .. AlarmServiceImpl AlarmController -[hidden]- SwaggerConfig AlarmController -[hidden]- SecurityConfig AlarmController -[hidden]- TraceLoggingAspect AlarmController -[hidden]- DateFormatter ServiceException -[hidden]- AlarmService @enduml
false
true
false
false
class
829297329b39a5a2cda8e48d7f3a098511c1a793
438418cd05a82943f97001f8045ed447848aaee8
/comiot/Diagrams/DDeviceServer.puml
8d58d075035e3e06c0b1f600a65a6f422bd4d5af
[]
no_license
hectorgastaminza/comiot
5b2ace3d2640566470cb8f4cde1cd8ef31693e93
450fb500a23336e3d98e31389b780b9ff04a6220
refs/heads/master
2020-03-25T01:27:45.979382
2018-09-12T04:04:52
2018-09-12T04:04:52
143,239,210
0
0
null
null
null
null
UTF-8
PlantUML
false
false
697
puml
@startuml class UserModel{ } class User{ username password } class Database{ } class RestServer{ } class DeviceServer{ SendRequest() ProcessClientResponse() RefreshEndPoint() RefreshPersistentData() } class AppConnection { connect() disconnect() send() receive() } class Place { placeID name description } class Device { deviceID placeID name description } class MqttConnectionConfiguration{ brokerHost brokerPort userId password } UserModel o-- User User o-- MqttConnectionConfiguration AppConnection -- MqttConnectionConfiguration UserModel o-- Database UserModel -- RestServer User o-- DeviceServer DeviceServer o-- AppConnection DeviceServer o-- Place Place o-- Device @enduml
false
true
false
false
class
94719c46d85dd739f0864e134be9dcf334b9a7cb
a264b0d4981ffdd64f97003d07fd5d36c7a089b6
/kapitler/media/uml-mappestrukturen-diagram.puml
2076712257376b01678b4831a766081cb22e243f
[ "CC0-1.0" ]
permissive
arkivverket/noark5-standard
6c71c1cbdaf935be99a6adc8006bd0b9ac79b888
1b3ef973f8074b8d125ad8ee9810f0daae463e53
refs/heads/master
2023-06-24T14:18:57.198908
2023-06-10T15:06:32
2023-06-10T15:06:44
232,571,397
3
4
NOASSERTION
2022-12-15T13:33:50
2020-01-08T13:38:24
Python
UTF-8
PlantUML
false
false
2,410
puml
@startuml scale max 4096 width skinparam nodesep 100 hide circle class gradering { <b>gradering</b> <b>graderingsdato</b> <b>gradertAv</b> nedgraderingsdato nedgradertAv } class skjerming { <b>tilgangsrestriksjon</b> <b>skjermingshjemmel</b> <b>skjermingMetadata</b> skjermingDokument skjermingsvarighet skjermingOpphoererDato } class kassasjon { <b>kassasjonsvedtak</b> kassasjonshjemmel <b>bevaringstid</b> <b>kassasjonsdato</b> } class part { partID <b>partNavn</b> <b>partRolle</b> postadresse postnummer poststed land epostadresse telefonnummer kontaktperson virksomhetsspesifikkeMetadata } class kryssreferanse { referanseTilKlasse referanseTilMappe referanseTilRegistrering } class merknad { <b>merkandstekst</b> merknadstype <b>merknadsdato</b> <b>merknadRegistrertAv</b> } class mappe { <b>systemID</b> <b>mappeID</b> <b>tittel</b> offentligTittel beskrivelse noekkelord dokumentmedium oppbevaringssted <b>opprettetDato</b> <b>opprettetAv</b> <b>avsluttetDato</b> <b>avsluttetAv</b> referanseArkivdel virksomhetsspesifikkeMetadata } class moetedeltager { <b>moetedeltagerNavn</b> moetedeltagerFunksjon } class moetemappe { <b>moetenummer</b> <b>utvalg</b> <b>moetedato</b> moetested referanseForrigeMoete referanseNesteMoete } class saksmappe { <b>saksaar</b> <b>sakssekvensnummer</b> <b>saksdato</b> <b>administrativEnhet</b> <b>saksansvarlig</b> journalenhet <b>saksstatus</b> utlaantDato utlaantTil referanseSekdundaerKlassifikasjon } class presedens { <b>presedensDato</b> <b>opprettetDato</b> <b>opprettetAv</b> avsluttetDato avsluttetAv <b>tittel</b> beskrivelse presedensHjemmel <b>rettskildefaktor</b> presedensGodkjentDato presedensGodkjentAv presedensstatus } class arkivdel class klasse class registrering arkivdel "1" o--> "0..*" mappe klasse "0..1" o--> "0..*" mappe gradering "0..1" <--o "0..*" mappe skjerming "0..1" <-o "0..*" mappe kassasjon "0..1" <-o "0..*" mappe part "0..*" <--o "0..*" mappe mappe "0..1" o--> "0..1" kryssreferanse mappe "0..*" o--> "0..1" merknad mappe "0..1" o-> "0..*" mappe : undermappe registrering "0..*" <--o "0..1" mappe constraint on links: enten/eller moetedeltager "0..*" <--o "1..*" moetemappe mappe <-- moetemappe mappe <-- saksmappe saksmappe "0..*" o-> "0..*" presedens @enduml
false
true
false
false
sequence
c0984b8967bfb940c66c7b85bbe56269f50bd45f
b2beb1c05af957bd4c94b82fc6fd0f9e22bda169
/docs/310and313media/AuthFlow1.plantuml
3124df0a32e2a4f221f53e6b4a1b2bf1b8f4daa2
[ "CC-BY-4.0", "MIT", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference" ]
permissive
stadlar/IST-FUT-FMTH
a5bbe79ea47b24a96ec348a8bdfc6d4f2e5fbab3
c4ea6b6bc254d7469e61302fed12146dbcbfe0b0
refs/heads/master
2023-07-19T18:34:31.370467
2023-02-01T08:34:20
2023-02-01T08:34:20
190,380,317
15
15
CC-BY-4.0
2023-08-30T13:44:59
2019-06-05T11:12:55
TeX
UTF-8
PlantUML
false
false
1,634
plantuml
@startuml skinparam monochrome true <style> note { fontsize 7 backgroundcolor white shadowing 0 linecolor transparent } </style> skinparam sequence { ParticipantFontName Arial ParticipantFontSize 8 ArrowFontName Arial ArrowFontSize 8 SequenceDividerFontName Arial SequenceDividerFontSize 8 SequenceBoxFontName Arial SequenceBoxFontSize 8 SequenceGroupFontName Arial SequenceGroupFontSize 8 ActorFontSize 9 ActorFontName Arial NoteFontName Arial } autonumber actor User participant "Accounting\nSystem" as ERP User -> ERP: Initiates payments ERP -> IOBWS ++ : POST: Payment-Initiation Request note right: Validate \n 1. eIDAS certificate \n 2. Request syntax \n 3. Client role \n 4. Semantics alt failure ERP <- IOBWS : Payment-Initiation Response (NOK) note right of ERP: http Codes: 400, 401, 403 note over ERP: END else success ERP <- IOBWS -- : Payment-Initiation Response note right of ERP ASPSP-SCA-Approach: IOBWS http Codes: 201 (Created) endnote ERP -> IOBWS ++: PUT: Start Authorization Resource (with Confirmation) note right: Validate \n 1. eIDAS certificate \n 2. Request syntax \n 3. Client role \n 4. Semantics note right of ERP Body: confirmationCode endnote ERP <- IOBWS --: Authorisation Response note right of ERP http Codes: 200 Transaction Status Payment initiated. endnote end alt optional status check ERP -> IOBWS ++: GET: Payment-Status Request note right: Validate \n 1. eIDAS certificate \n 2. Request syntax \n 3. Semantics ERP <- IOBWS --: Payment-Status Response note right of ERP http Statuscode: 200 (OK) – ACCC endnote end @enduml
false
true
true
false
usecase
66a78dce8e04e19c4b6c53899cae6649377f36e5
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Control/Telemetry/Telemetry-Producer/UserInteraction.puml
d5bad6970e5cca802b09a17accc3fad80ca4c229
[]
no_license
CAADE/edgeville
fd0053d749c259029ef4c7791210663ace87be21
6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65
refs/heads/master
2020-03-28T06:11:31.554585
2019-05-02T17:37:03
2019-05-02T17:37:03
147,819,682
0
0
null
null
null
null
UTF-8
PlantUML
false
false
181
puml
@startuml rectangle "Diagram TBD" @enduml actor User User -> "Telemetry/Telemetry Producer": UseCase "Telemetry/Telemetry Producer" -> bin: bin-name() bin -> sailsjs: bin/name()
false
true
false
false
sequence
264e465e702479f6fa722e27e185011e6921b134
bb46ea9cb4da8de2b842abb50f886ff393021d95
/docs/entities.plantuml
8f33f73157e0aa93a6fd713b7cb8de7aa53f9369
[ "Apache-2.0" ]
permissive
API-market/machinomy
6a853490fd9600742fa522000cd2ab5ff6c37882
a7f08e8002912f530972f74f64fc174ec640fdc3
refs/heads/dev
2021-04-28T18:31:16.941650
2018-03-20T23:57:16
2018-03-20T23:57:16
121,874,145
0
0
Apache-2.0
2018-03-23T18:21:18
2018-02-17T17:04:34
TypeScript
UTF-8
PlantUML
false
false
520
plantuml
@startuml hide empty members skinparam monochrome true skinparam defaultFontName PT Sans skinparam shadowing false skinparam dpi 96 class Payment { channelId: ChannelId amount: Amount signature: Signature } class Channel { id: ChannelId sender: Address receiver: Address value: Amount state: ChannelState } class Token { value: string expiration: DateTime } enum ChannelState { Open Settling Settled } class Amount { } class Address { } class ChannelId { } class Signature { } @enduml
false
true
false
false
state
d4424dfd0783a0bfc0d932f55526f8fc31d585e1
8dbb7963228f3bd1552bbe3186202cc036173724
/uml/app.puml
88e52770f5ff6adf56288ca044ece68b21e008dc
[]
no_license
jcassarly/SmartCards
8e227a68267f7d8e97b6fc3679898d8618243774
c5dc3b6a6d8b08f1bdbe6e52518551cf24b69842
refs/heads/master
2022-04-25T21:51:13.836601
2020-05-01T18:55:58
2020-05-01T18:55:58
237,028,262
1
0
null
null
null
null
UTF-8
PlantUML
false
false
854
puml
@startuml hide empty description state user as "User" state app as "Application" state shuffle as "User chooses Shuffle" shuffle : App makes deck change that shuffle : shuffles the cards in the deck state connect as "User chooses\nEstablish Connection to the Pi" state edit as "User Chooses Edit Deck" edit : Can add cards to the deck (in any spot) edit : Can move cards from the discard to the deck state once_done as "Once the user finishes\neditting a deck" state pi_feedback as "Feedback from the Pi" pi_feedback : see the bluetooth sequence pi_feedback : diagram for information on pi_feedback : how the Pi and App exchange pi_feedback : info on deck changes user --> app app --> shuffle app --> connect app --> edit shuffle --> once_done connect --> pi_feedback edit --> once_done once_done --> pi_feedback pi_feedback --> app @enduml
false
true
false
false
state
fb20b05906fa3f31607df0a74b31be940306a0ee
3d02493ef03cd6b6bdf1049da8beed48216fa762
/diagramas/Maquina de estados/codigo/dre_ME.puml
730cfb3cfb08eda2031aad29e4bb0fd0792af60c
[]
no_license
ArturoBurela/Residencias
482e88f891cd601a6d95ae983ee8e46aa74ee0fd
53fc532a0d971834ac0930b46f23a79ecc2fadcb
refs/heads/master
2021-08-22T16:51:13.452307
2017-11-30T17:45:03
2017-11-30T17:45:03
110,843,664
1
2
null
2017-11-22T16:21:24
2017-11-15T14:26:26
Java
UTF-8
PlantUML
false
false
237
puml
[*] --> Inicio Inicio : Seleccionar prefecto responsable Rúbrica: Completar las ponderaciones de la rúbrica Terminar : Registrar la información Inicio --> Rúbrica: Completar Rúbrica--> Terminar : almacenar Terminar --> [*] @enduml
false
true
true
false
sequence
c87e8cd7c01077c18673eb4164032e2b1bd6eb83
44d3a5b91c083d58bfd0eefc0d5a39c5ac6e197f
/demo/src/main/java/com/example/demo/PlantUML/ClassTest.puml
5d1ebf2755345072783e58031d67095e5d8793e0
[]
no_license
GeminiG/MyDemo
96f8a2b880083c4d56a76a047761401cc7a70519
820f21258386ab28c260a140e336818d67a1cbf2
refs/heads/main
2023-01-31T22:17:24.186325
2020-12-12T16:28:46
2020-12-12T16:28:46
320,872,683
0
0
null
null
null
null
UTF-8
PlantUML
false
false
305
puml
@startuml interface Machine Machine <|-- Car Driver - Car : drives > Car *-- Wheel : have 4 > Car -- Person : < owns Driver : String driverLicence Driver : start() Driver : stop() Driver : {abstract} changeDriverLicenceLevel() enum DriverLicence { C1 C2 C3 D F } @enduml
false
true
false
false
class
0b3982de0cdc9aa0e016f9de0d4fa3f6c295c33f
8853e94131e479363ca4252e041fad54d168dfff
/de-identification.puml
1d05ff821b6540b03b394db4f2f90b18c720a6e8
[]
no_license
gammastudios/gcp-data-tokenisation-as-a-service
abea518d84fd92d5501a9836ddc3b1369876aa1b
60e34cc6bb8e93d045d3f57c27e0df9ffb19b5f3
refs/heads/master
2023-07-24T11:07:41.598840
2020-06-22T01:25:24
2020-06-22T01:25:24
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,380
puml
@startuml title Simple GCP Tokenisation Service - De-Identification actor User participant "Token Service" << cloud_function >> participant "DeIdentification Cache" << memorystore >> participant "DeIdentification Store" << datastore >> participant "ReIdentification Cache" << memorystore >> participant "ReIdentification Store" << datastore >> alt cache hit User -> "Token Service": deidentify(natural_key) activate "Token Service" "Token Service" -> "DeIdentification Cache": get_token(natural_key, from_cache) note right : [ natural_key, token ] "Token Service" <- "DeIdentification Cache": << token >> User <- "Token Service": << token >> end alt cache miss User -> "Token Service": deidentify(natural_key) "Token Service" -> "DeIdentification Cache": get_token(natural_key, from_cache) "Token Service" <- "DeIdentification Cache": << cache miss >> "Token Service" -> "DeIdentification Store": get_token(natural_key, from_store) note right : [ natural_key, token ] "Token Service" <- "DeIdentification Store": << token >> "Token Service" --> "DeIdentification Cache": put_token(natural_key, token, to_cache) User <- "Token Service": << token >> end alt store miss User -> "Token Service": deidentify(natural_key) "Token Service" -> "DeIdentification Cache": get_token(natural_key, from_cache) "Token Service" <- "DeIdentification Cache": << cache miss >> "Token Service" -> "DeIdentification Store": get_token(natural_key, from_store) "Token Service" <- "DeIdentification Store": << store miss >> alt generate_token "Token Service" -> "Token Service": token=generate_token(natural_key) note left generate random token matching natural key data type end note end "Token Service" -> "DeIdentification Store": put_token(natural_key, token, to_deid_store) "Token Service" -> "ReIdentification Store": put_token(natural_key, token, to_reid_store) note right : [ token, natural_key ] "Token Service" --> "DeIdentification Cache": put_token(natural_key, token, to_deid_cache) "Token Service" --> "ReIdentification Cache": put_token(natural_key, token, to_reid_cache) note right : [ token, natural_key ] User <- "Token Service": << token >> deactivate "Token Service" end @enduml
false
true
false
false
usecase
3fffb05a54092c521794e3349621d940eff3fd5e
91678f027f1da807dfe4c113028f331f458c3a3d
/src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-framework-webhook.puml
b549101e210c2d429062e55bce0d3d0525397ea6
[ "MIT", "LicenseRef-scancode-generic-cla" ]
permissive
amtee/platform
fd4b863a98c4302a26782486d173c437dfa98baa
3518811b02bcfb746abb8553ae8e5ac6f15338c0
refs/heads/trunk
2023-08-20T03:41:00.473175
2021-09-27T11:20:36
2021-09-27T11:20:36
410,864,620
1
0
MIT
2022-02-06T18:56:01
2021-09-27T11:54:21
null
UTF-8
PlantUML
false
false
1,194
puml
@startuml ' uncomment the line below if you're using computer with a retina display ' skinparam dpi 300 !define Table(name,desc) class name as "desc" << (T,#FFAAAA) >> !define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >> !define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >> ' we use bold for primary key ' green color for unique ' and underscore for not_null !define primary_key(x) <b>x</b> !define unique(x) <color:green>x</color> !define not_null(x) <u>x</u> ' other tags available: ' <i></i> ' <back:COLOR></color>, where color is a color name or html color code ' (#FFAACC) ' see: http://plantuml.com/classes.html#More hide methods hide stereotypes hide empty members skinparam backgroundColor #FFFFFF ' entities Table(ShopwareCoreFrameworkWebhookWebhookDefinition, "webhook\n(__EMPTY__)") { primary_key(id) id not_null(name) string not_null(eventName) string not_null(url) string appId foreignKey not_null(createdAt) createdAt updatedAt updatedAt } ForeignTable(ShopwareCoreFrameworkAppAppDefinition, "app") { } ' relationshipd ShopwareCoreFrameworkWebhookWebhookDefinition --> ShopwareCoreFrameworkAppAppDefinition @enduml
false
true
false
false
uml-unknown
220b7916fc1d2ac22e44a1dce3e5d7f727f504ff
f265a6cf1a3269c1c07446b2869fb3a8c80d28fb
/src/main/java/com/example/apns/PushNotification/controller/controller.plantuml
10bb404fc36d5259ee1bc5dc430470ec334bb93a
[]
no_license
alokkulkarni/PushNotification
92e08cc40a8550f2aee68fb50ace2fb48d9f90e5
348067139783fde691c213bff6f456e1915c3964
refs/heads/master
2021-07-07T01:29:41.986413
2020-09-12T06:27:06
2020-09-12T06:27:06
184,802,314
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,701
plantuml
@startuml title __CONTROLLER's Class Diagram__\n package com.example.apns.PushNotification { package com.example.apns.PushNotification.controller { class NotificationController { {static} - PUSH_TOPIC : String - apnsClient : ApnsClient - filePath : String + NotificationController() + sendNotification() + getNotifications() + updateNotificationStatus() + createDeviceDetails() + updateDeviceDetails() - getDeviceDetails() - buildClient() - notification() - captureDeviceDetails() - updateDevice() - saveNotification() + clearTokens() + clearExpiredNotifications() + setNotificationsAsExpired() } } } package com.example.apns.PushNotification { package com.example.apns.PushNotification.controller { class RemoteConfigController { + RemoteConfigController() + getRemoteActiveConfigs() + createRemoteConfig() + updateConfigStatus() - upsertRemoteConfig() - setConfigResponse() } } } NotificationController o-- DeviceRepository : deviceRepository NotificationController o-- NotificationRepository : notificationRepository NotificationController o-- InAppNotificationPriorityRepository : inAppNotificationPriorityRepository RemoteConfigController o-- RemoteConfigRepository : remoteConfigRepository right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
47b92843c836b34007723f82c18e5bf43f261dc1
49201c6059aff7268f202bb61942cc3eb7ba462b
/sequence SDK.puml
349159e953af3e04faa0ffecbc7df953fc68935f
[]
no_license
OzBenDev/designs
fdc614d5ceff22e14600d1614c7b206aec375a70
d22aa7238f080312bb9bded8ac77676cc5e630fd
refs/heads/master
2023-08-07T14:00:41.829442
2021-09-14T13:14:47
2021-09-14T13:14:47
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,349
puml
@startuml participant ViewController_Fragment participant UIElementController participant Adapter participant ViewHolder participant TextTagHandler participant DownloadController ViewController_Fragment -> UIElementController: create ViewController_Fragment -> Adapter: create(UIElementController) Adapter -> ViewHolder: Create group inside the onBind Adapter -> ViewHolder: Update(postUpdateCallback) end ViewHolder -> TextTagHandler: getSpannedHtmlWithImages(data, ... , \nUIElementController.downloaderFunction(position), postUpdateCallback) group ImageGetter TextTagHandler -> DownloadController: downloaderFunction.invoke(imageUrl) group #LightBlue handleRequest is a function that sends the request \nto the DataManager handleRequest and returns a callback(Drawable) DownloadController -> DataManager: fetchData <T> DataManager --> DownloadController: onResponse (t: T) end DownloadController -> TextTagHandler: callback(Drawable) TextTagHandler -> TextTagHandler: insert the imageUrl into the article TextTagHandler --> ViewHolder: postUpdateCallback.invoke(position) end ViewHolder -> UIElementController: postUpdateCallback(position) UIElementController -> ViewController_Fragment: onImageLoad(position) ViewController_Fragment -> Adapter: notifyItemChanged(position) @enduml
false
true
false
false
sequence
9412d1a6a19f8ae44fd95ed80e1a3107ca59d8b2
d6709a3c3b347b6f40c62a0fc0a361cb6a431ec1
/use-case-diagram/Homework/Lab-submit/60030007/foodOrder.puml
8bf3efd3c89ee19b59bf1327e727e6bd0fa60294
[]
no_license
OOAD007/PlantUML-Labs
6b6f180d09535cc18e55e5a6a4d303db529d2a04
7b39132a0ce81928598806b1543baf2fc7220931
refs/heads/master
2022-05-21T20:38:14.934646
2020-04-23T17:34:18
2020-04-23T17:34:18
256,772,800
0
0
null
2020-04-18T14:23:40
2020-04-18T14:23:39
null
UTF-8
PlantUML
false
false
593
puml
@startuml foodOrder actor customer actor supervisor left to right direction skinparam Shadowing false skinparam actor{ FontColor Yellowgreen BackgroundColor Yellowgreen BorderColor Yellowgreen } skinparam rectangle{ FontColor Yellowgreen BorderColor Yellowgreen } skinparam usecase { FontColor White ArrowColor SteelBlue BackgroundColor SteelBlue BorderColor SteelBlue } rectangle "Online Food shop order subsystem"{ customer -- (Select items) customer -- (make order) (check order)--supervisor (make purchase order)-- supervisor } @enduml
false
true
false
false
usecase
edc00abd40f37730de7cb484eb653c6d0cba1ce5
59e8f9d430e815ba8d7b7efae85bad26cba97af3
/_stash/msa전환/3.puml
01cfc0be86a16f71e8781afd64fc97de17cd078c
[ "MIT" ]
permissive
glqdlt/glqdlt.github.io
76bc5e9b0bad9f48239bd7b1e9bef8c581fdb49e
c9579e99c5390a6c02a8d34cc808a66ad0c977dc
refs/heads/master
2022-08-27T08:49:24.914469
2022-08-05T06:45:11
2022-08-05T06:45:11
92,659,599
0
0
null
null
null
null
UTF-8
PlantUML
false
false
518
puml
@startuml package PC_GAME_A as 1{ [A_GAME_SERVER] interface A_GAME_CLIENT database A_MSSQL{ [PROCEDURE_A] #orange } [A_CMS] [A_WEB_SERVICE] } package MOBILE_GAME_B as 2{ [B_GAME_SERVER] interface B_GAME_CLIENT database B_MYSQL{ [PROCEDURE_B] #orange } [B_CMS] [B_WEB_SERVICE] } PROCEDURE_A -- B_GAME_SERVER PROCEDURE_A -- A_GAME_SERVER PROCEDURE_A - A_WEB_SERVICE PROCEDURE_A -- A_CMS PROCEDURE_B -- B_GAME_SERVER @enduml
false
true
false
false
sequence
97f23428367e16751a30390ed65f5671fb0e050f
a9babf19a7d4d589e2f9960a4cbeb9cdffabfb39
/movies-data/docs/MoviesUseCase-Sequence-Diagram.puml
d3dc1718a4a43f74753f047654b3f34260822ac3
[ "Apache-2.0" ]
permissive
kshitij-chaudhari/android-movies-app
42f7c1c81a6ce047a159c8cb208a9a630cd5ab41
4523eb5b8c99c14ee03d8817321428275261337e
refs/heads/main
2023-07-10T03:45:17.515462
2021-08-15T20:38:33
2021-08-15T20:38:33
347,138,906
1
1
null
null
null
null
UTF-8
PlantUML
false
false
1,562
puml
@startuml 'https://plantuml.com/sequence-diagram 'autonumber activate MoviesUseCase MoviesUseCase -> MoviesRepository : fetchPopularMovies() activate MoviesRepository 'Fetch From Remote MoviesRepository -> MoviesRemoteDataSource : fetchPopularMovies() activate MoviesRemoteDataSource MoviesRemoteDataSource -> MoviesService : fetchPopularMovies() activate MoviesService MoviesRemoteDataSource <-- MoviesService : Flow<Response<Movie>> deactivate MoviesService MoviesRepository <-- MoviesRemoteDataSource : Flow<Response<Movie>> deactivate MoviesRemoteDataSource 'Store In Local MoviesRepository -> MoviesLocalDataSource : storePopularMovies() activate MoviesLocalDataSource MoviesLocalDataSource -> MoviesDAO : storeMovies() activate MoviesDAO deactivate MoviesDAO deactivate MoviesLocalDataSource 'Fetch from DB MoviesRepository -> MoviesLocalDataSource : fetchPopularMovies() activate MoviesLocalDataSource MoviesLocalDataSource -> MoviesDAO : fetchPopularMovies() activate MoviesDAO MoviesLocalDataSource <-- MoviesDAO : Flow<List<Movie>> deactivate MoviesDAO MoviesRepository <-- MoviesLocalDataSource : Flow<List<Movie>> deactivate MoviesLocalDataSource MoviesUseCase <-- MoviesRepository : Flow<Response<Movie>> deactivate MoviesRepository deactivate MoviesUseCase @enduml
false
true
false
false
sequence
45d6d105969e7d6e0db1df9cdb344544fb220237
d975ba90a37d227caa0f1b7a6c9702356c6fd903
/uml/extras/clearpath/RVO.iuml
53655d06db49a5817b771bac8f80ae79e9564553
[]
no_license
MinhNghiaD/Airplug-ClearPath
2beea0ff94574e19251700202862f25d3003c266
da5625da3744254a95fa30f395d11c8f7f7863ea
refs/heads/master
2022-11-12T17:13:37.167323
2020-06-17T06:35:10
2020-06-17T06:35:10
255,916,966
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,121
iuml
@startuml(id=rvoline) class ClearPath::Line { +explicit Line() +Line(const std::vector<double>&,\n\tconst std::vector<double>&) ==ATTRIBUTES== +std::vector<double> point +std::vector<double> direction } @enduml @startuml(id=rvo) class ClearPath::RVO { ==FUNCTIONS== +{static} double vectorProduct(const std::vector<double>&,\n\tconst std::vector<double>&) +{static} std::vector<double> vectorSubstract(const std::vector<double>&,\n\tstd::vector<double>&) +{static} double det2D(const std::vector<double>&,\n\tstd::vector<double>&) +{static} std::vector<double> scalarProduct(std::vector<double>, double) +{static} int checkCollision(const std::vector<Line>&,\n\t double,\n\t const std::vector<double>&,\n\t bool,\n\t std::vector<double>&) +{static} std::vector<double> collisionFreeVelocity(const std::vector<Line>&,\n\t int,\n\t double,\n\t int,\n\t std::vector<double>&) -{static} bool avoidCollisionWithLine(std::vector<Line>&,\n\t int,\n\t double,\n\t const std::vector<double>&,\n\t bool,\n\t std::vector<double>&) ==ATTRIBUTES== -{static} const double EPSILON = 0.00001 } @enduml
false
true
false
false
class
2caa6c7f572de5426fda4ec96bb9b3966f8e44ed
7dd54edd3bbdde0089b166058e1d1b98df1c64ad
/src/client/bean/bean.plantuml
ba7a5af6d2712703ed8ef242d64fce87a8a1e712
[]
no_license
hungkien05/Tank-Socket-Java
796002c3887c664941c6392006698fc9b134100f
ac1f705a2fd95a9b91c08c10e5b24858e9b99f86
refs/heads/main
2023-05-31T08:14:59.696580
2021-06-23T05:41:14
2021-06-23T05:41:14
379,490,852
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,971
plantuml
@startuml title __BEAN's Class Diagram__\n namespace client.bean { enum Dir { D L LD LU R RD RU STOP U } } namespace client.bean { class client.bean.Explode { - diameters : int[] - live : boolean - step : int - x : int - y : int + Explode() + draw() } } namespace client.bean { class client.bean.Missile { {static} + HEIGHT : int {static} + WIDTH : int {static} + XSPEED : int {static} + YSPEED : int ~ changeColor : int {static} - ID : int - good : boolean - id : int - live : boolean - tankId : int - x : int - y : int + Missile() + Missile() + draw() + getDir() + getId() + getRect() + getTankId() + getX() + getY() + hitObstacle() + hitTank() + hitTanks() + isGood() + isLive() + setDir() + setGood() + setId() + setLive() + setTankId() + setX() + setY() - move() } } namespace client.bean { class client.bean.Obstacle { - live : boolean - step : int - x1 : int - x2 : int - y1 : int - y2 : int + Obstacle() + blockTank() + checkTank() + draw() + getRect() } } namespace client.bean { class client.bean.Tank { {static} + HEIGHT : int {static} + WIDTH : int {static} + XSPEED : int {static} + YSPEED : int + id : int - bD : boolean - bL : boolean - bR : boolean - bU : boolean - good : boolean {static} - imgs : Image[] - live : boolean {static} - map : Map<String, Image> {static} - tk : Toolkit - x : int - y : int + Tank() + Tank() + draw() + getDir() + getPtDir() + getRect() + getX() + getY() + isGood() + isLive() + keyPressed() + keyReleased() + setDir() + setGood() + setLive() + setPtDir() + setX() + setY() - fire() - locateDirection() - move() } } client.bean.Explode o-- client.client.TankClient : tc client.bean.Missile o-- client.bean.Dir : dir client.bean.Missile o-- client.client.TankClient : tc client.bean.Obstacle o-- client.client.TankClient : tc client.bean.Tank o-- client.bean.Dir : dir client.bean.Tank o-- client.bean.Dir : ptDir client.bean.Tank o-- client.client.TankClient : tc right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
activity
de6ddc3367849678ac8576221ab08ebfd8c6e408
a08307073b81a594154a842f5ef87508df391d1c
/class diagrams/main/engine/utils/utils.plantuml
e8a1312d77b41ab93f7aa8daf27368e3ba98adb0
[]
no_license
AlexisDel/Colt-Express
c99050ae00feefcb62faee50faa1ba124a5de380
96402eddae52b181f01575492eda6e497b1a0979
refs/heads/master
2023-05-25T04:27:02.337566
2021-06-14T14:28:04
2021-06-14T14:28:04
376,847,116
0
0
null
null
null
null
UTF-8
PlantUML
false
false
882
plantuml
@startuml title __UTILS's Class Diagram__\n namespace main { namespace engine { namespace utils { enum Action { MOVE_DOWN MOVE_LEFT MOVE_RIGHT MOVE_UP ROB SHOOT_DOWN SHOOT_LEFT SHOOT_RIGHT SHOOT_UP } } } } namespace main { namespace engine { namespace utils { enum Direction { DOWN LEFT RIGHT UP } } } } namespace main { namespace engine { namespace utils { enum GameState { ACTION PLANNING } } } } right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
08782bf9664e448bfe24a84e9b19c0f1d96e0044
86a3a7f68a26bf947a96c34a6b008dc98e48c575
/lapr2-2020-g041/docs/UC10/SD_calculateDeviationP.puml
8fdf11d3ef2969b509c7d7d53375398f34cfe84e
[ "MIT" ]
permissive
GJordao12/ISEP-LAPR2
7f01f7fe4036f17a4a76f0595e80564c2dda7b3c
0c537d1cf57f627f98e42b6f1b7e100f49ff2d15
refs/heads/master
2023-08-17T10:59:19.469307
2021-10-02T16:27:19
2021-10-02T16:27:19
272,283,723
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,101
puml
@startuml autonumber participant "org:Organization" as OR participant "trans:PaymentTransactionList" as TLIST participant "m_ListPay:List<PaymentTransaction>" as LIST participant "transaction:PaymentTransaction" as TRA participant "freel:Freelancer" as FREEL participant "free:Freelancer" as FREE [o-> OR: calculateDeviationP(free, mean) activate OR OR -> OR : deviation = 0 OR -> OR : counter = 0 OR -> OR : trans = getPaymentTransactionList() OR -> TLIST : m_ListPay = getPaymentTransactions() activate TLIST deactivate TLIST loop [ For each Transaction ] OR -> LIST : transaction = get(i) activate LIST deactivate LIST OR -> TRA : freel = getFreelancer() activate TRA deactivate TRA OR -> FREEL : idFreel = getId() activate FREEL deactivate FREEL OR -> FREE : idFree = getId() activate FREE deactivate FREE opt [ idFree.equals(idFreel) ] OR -> TRA : value = getValue() activate TRA deactivate TRA OR -> OR : deviation = (value-mean)^2 + deviation OR -> OR : counter++ end end loop OR -> OR : deviation = Math.sqrt(deviation / counter) <-- OR : deviation deactivate OR @enduml
false
true
false
false
sequence
41d226feb08fb9003de3edaaf89576c3c39fd546
66189c5ec1fd3d87a5db4f281fb8eee547b62011
/com/zx/bridge/bridge.puml
22832b20c6f5afcfd31596810829e78235acd878
[]
no_license
Jcduhdt/DesignPattern
27168347a85ab79a0976d2ef3ce6e8687bd01ddd
501635e4eebba510ae3d1bb26ebfdaccf76beb8c
refs/heads/master
2021-02-17T20:03:58.951599
2020-03-15T08:34:11
2020-03-15T08:34:11
245,124,068
0
0
null
null
null
null
UTF-8
PlantUML
false
false
285
puml
@startuml class Client class Phone{ brand:Brand } interface Brand{ call():void } class FoldedPhone class UpRightPhone class Vivo class XiaoMi Client ..> Phone Client ..> Brand Phone o-- Brand Phone <|-- FoldedPhone Phone <|-- UpRightPhone Brand <|-- Vivo Brand <|-- XiaoMi @enduml
false
true
false
false
class
b7cd40ada9b330685667738c403fb84927328b50
84dbfc8df17a0a3f9d6382d781ba13dd616b93dd
/rapport/UML_6/proxy/ObjetInterface.puml
67134eef6dcc98693a6368fb94c54f60f675add8
[ "MIT" ]
permissive
C-Rio/Simulation_monde
ca20856ca68b3f96555304736bc1f2b58cd4ae02
99e118c3782eea332f064abe7600fbb1b5c6006d
refs/heads/master
2022-10-28T23:39:17.566527
2022-10-09T17:22:35
2022-10-09T17:22:35
253,203,756
0
0
null
null
null
null
UTF-8
PlantUML
false
false
90
puml
@startuml abstract Class ObjetInterface { + {abstract} void : méthode() } @enduml
false
true
true
false
class
8cfaa11c3ceff7042ecee8fb1796d9f9b484759c
dcca4c0aa19e3085bd37640a52b07fa02396b1d8
/3.Structural Design Patterns/1.Adapter/src/main/resources/diagram/AdapterJournalDevClassDiagram.puml
b9ef7a3df4ca3d7d0c185521deeda1da354d307f
[]
no_license
drronidz/design-patterns-java-maven
8df24c5bdd021dd45018faf3937b767609e880eb
aa580cd4cc6caa25a418a71bd5af06f86bd354a6
refs/heads/main
2023-07-15T15:26:04.451482
2021-08-25T23:45:35
2021-08-25T23:45:35
392,855,046
1
0
null
null
null
null
UTF-8
PlantUML
false
false
756
puml
@startuml 'https://plantuml.com/class-diagram class Socket <<Java Class>> { + Socket() + getVolt() : Volt } interface SocketAdapter <<Java Interface>> { + get120Volt() : Volt + get12Volt() : Volt + get3Volt() : Volt } class SocketClassAdapter <<Java Class>> { + SocketClassAdapter() + get120Volt() : Volt + get12Volt() : Volt + get3Volt() : Volt - convertVolt(Volt,int) : Volt } class SocketObjectAdapter <<Java Class>> { + SocketObjectAdapter() + get120Volt() : Volt + get12Volt() : Volt + get3Volt() : Volt - convertVolt(Volt,int) : Volt } Socket <|-- SocketClassAdapter SocketObjectAdapter --> Socket SocketAdapter <|.. SocketClassAdapter SocketAdapter <|.. SocketObjectAdapter @enduml
false
true
false
false
class
9d47335d5700b6f8c49e31490f0260785f935372
d37dc5cf4589ad26abe9249aee9b1a172ea0678a
/src/Factory/Factory.plantuml
e9d4e95e4f7b34bffb68a217c377ed1b85812d02
[]
no_license
pagedidier/2019-MCR-Labo1c
d3fca2e3c49d66ec8ffde938db0382c80b3aac31
619173d79b7e92db838419bb4acd8ec88292d157
refs/heads/master
2020-04-29T19:40:04.146981
2019-03-26T14:14:08
2019-03-26T14:14:08
176,362,872
0
0
null
null
null
null
UTF-8
PlantUML
false
false
943
plantuml
@startuml title __FACTORY's Class Diagram__\n package Factory { abstract class BouncerFactory { {abstract} + createCircle() {abstract} + createSquare() } } package Factory { class EmptyBouncerFactory { {static} - instance : EmptyBouncerFactory - EmptyBouncerFactory() {static} + getInstance() + createCircle() + createSquare() } } package Factory { class FilledBouncerFactory { {static} - instance : FilledBouncerFactory - FilledBouncerFactory() {static} + getInstance() + createCircle() + createSquare() } } EmptyBouncerFactory -up-|> BouncerFactory FilledBouncerFactory -up-|> BouncerFactory right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
eff32123854fdf7bf2fac3f068f08bf8b361eb42
c38d094ae6b1195a496adb219fba2c9071d1d376
/docs/uml-mm/internal_elev_sequence_receive_and_distribute.iuml
67643657da4cfa94d3e67891af853f2519da4fc6
[]
no_license
erlendb/TTK4145-Sanntidsprogrammering
2c9b78bc73b29592726d7a27c5a9943de57fe83c
ba45c876fdcd222b6ab269314579c60801c36177
refs/heads/master
2022-04-24T22:25:16.926136
2020-04-23T09:37:51
2020-04-23T09:37:51
272,784,173
0
0
null
null
null
null
UTF-8
PlantUML
false
false
679
iuml
@startuml Internal elevator sequence !pragma teoz true title Receives new order, another elevator has lowest cost participant Elevator participant Distributor participant Network participant Watchdog Distributor <- Elevator: msg new_order Distributor -> Elevator: get_cost() Distributor -> Network: broadcast_cost_request() Distributor <-- Elevator: Response Distributor <-- Network: Response Distributor -> Watchdog: set_timer() Distributor -> Network: broadcast_order() Distributor <-- Network: Response Distributor -> Elevator: set_lamp() Distributor <- Network: msg order_finished Distributor -> Watchdog: clear_timer() Distributor -> Elevator: clear_lamp() @enduml
false
true
false
false
sequence
26ef9cde33d63ebf35172afbd536bbb4073709f7
c4f16fe69635f6714a8986e9649165d51d17150d
/Muehlespiel/src/Klassendiagramm.puml
52495fee7dc96c45742ba22100d8ebe789b56744
[]
no_license
Shokikan/Muehlespiel_v1.1
3f05ebc1b9508f674b9146f8760879d969e5d727
90a40c6fabc5c0afa54c7b5f1b9038dd5c526850
refs/heads/main
2023-04-21T16:34:38.193964
2021-05-05T07:03:59
2021-05-05T07:03:59
346,617,549
0
0
null
null
null
null
UTF-8
PlantUML
false
false
217
puml
@startuml class Controller { } class Spieler { + Steingrau : + setzte() : void } class Spielfeld { } class Spielregeln { + setzten() : void + zug() : void + springen() : void } @enduml
false
true
false
false
class
e3bd4f1f559a2463f7f380aa684c311bf11b0e42
ea5ece269b206585bfa6dfc66c4c0183c41b96ae
/flow.puml
a3b3e0e221414008c54a841116d4248ae2d3b805
[ "MIT" ]
permissive
netpyoung/nf.state-flow
797c95c91f47494cb86d440f8fe27166f082cebf
17b0f1fcc4958033be5934e7578df50e50432adf
refs/heads/master
2020-03-14T18:18:33.812334
2018-05-03T16:06:31
2018-05-03T16:06:31
131,738,574
0
0
null
null
null
null
UTF-8
PlantUML
false
false
206
puml
@startuml actor -> (rake) (rake) --> (NF.CLI.StateMachine.Exe) (input.ss) --> (NF.CLI.StateMachine.Exe) (NF.CLI.StateMachine.Exe) --> (Unity) : .cs (NF.CLI.StateMachine.Exe) --> (uml) : .puml @enduml
false
true
false
false
usecase
28320c3d1a21486b6578f6517fe5bd79cd710d1f
94dba241318957952430596f87177728b3cd0611
/doc/Diagramas/Diagramas_Secuencia/MultipleChoiceClasico/MultipleChoiceClasicoConOpcionesCorrectas.puml
ca6fa36329c0ab9e4dd034777213677b8f73eba1
[ "MIT" ]
permissive
diegosanchez/TP2
8a8ed478ea6cabca8c53787163b3076d2fffbad0
1650035bf76c5c4044ff8fdfb0ecbd3b57806df1
refs/heads/master
2022-11-25T07:36:52.092998
2020-07-30T18:00:13
2020-07-30T18:00:13
285,419,187
0
0
MIT
2020-08-05T22:37:43
2020-08-05T22:37:42
null
UTF-8
PlantUML
false
false
955
puml
@startuml title Multiple Choice Clasico asigna puntaje con todas las opciones correctas seleccionadas hide footbox kahoot-> "ronda: Ronda" as ronda : responder(jugador: Jugador, opcionesSeleccionadas: List<Opcion>) activate ronda ronda-> "multipleChoiceClasico: Preguntable" as MCclasico: establecerPuntuacion(opciones: List<Opcion>) activate MCclasico MCclasico-> "opciones: List<Opcion>" as listaOpciones : contarOpcionesCorrectas(opciones) activate listaOpciones MCclasico <-- listaOpciones : cantidadDeOpcionesCorrectas deactivate listaOpciones MCclasico->MCclasico : contarOpcionesCorrectas(this.opciones) activate MCclasico MCclasico-->MCclasico : cantidadDeOpcionesCorrectas deactivate MCclasico ronda <-- MCclasico: puntaje: Int deactivate MCclasico ronda-> "jugador: Jugador" as jugador : sumarPuntos(puntaje: Int) deactivate ronda jugador-> jugador: puntos += puntaje @enduml
false
true
false
false
sequence
4a790d945cd5b931d8d3aca5ac7ad9d355ba8d80
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StoreNameSetMessage.puml
7dc9135b3e5cbee5bbbcf75701b58098161c6570
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
1,235
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface StoreNameSetMessage [[StoreNameSetMessage.svg]] extends Message { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] name: [[LocalizedString.svg LocalizedString]] nameAllLocales: [[LocalizedString.svg List<LocalizedString>]] } interface Message [[Message.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] } @enduml
false
true
false
false
class
51aa8d4316db704ac10d8ffaad09022f7a1aa7f2
9e750ca1e85bbda66ffd579094555c7aedce4c1f
/assets/uml/generator-spec.plantuml
4253fcfb24fb18a0a3550b17a6e58814747fd828
[ "MIT" ]
permissive
BernhardSchiffer/13-map-reduce-collect
764a1d9eab61183e2455e273b8af8125f339d062
f6bfbab6a934088a6e6f0d6a6465c59f1f89e9f4
refs/heads/master
2020-11-25T21:14:53.657815
2020-04-17T19:28:56
2020-04-17T19:28:56
228,850,696
0
0
MIT
2019-12-18T13:54:06
2019-12-18T13:54:05
null
UTF-8
PlantUML
false
false
984
plantuml
@startuml GeneratorSpec package de.thro.inf.prg3.a13.tweets { +class TweetStreamFactory { -{static}instance: TweetStreamFactory +{static}getInstance(): TweetStreamFactory +isOnlineAvailable(): boolean +getTweetsStream(tweetSource: TweetSource): Stream<Tweet> } +enum TweetSource { ONLINE, OFFLINE } package generators { +interface TweetStreamGenerator { getTweetStream(): Stream<Tweet> } +class OnlineTweetStreamGenerator implements TweetStreamGenerator { } +class OfflineTweetStreamGenerator implements TweetStreamGenerator { } } TweetStreamFactory --> OnlineTweetStreamGenerator: Instantiates and returns TweetStreamFactory --> OfflineTweetStreamGenerator: Instantiates and returns } @enduml
false
true
false
false
sequence
f7cb083f8410619f617164d84e31f0db84683d0c
af85987a1d1c83f29672ac0d9862a565c413d465
/doc/4c/1.1 EDM context.plantuml
c49e5995973a9e1a843d551b272ab19475520f99
[]
no_license
PSI-Polska/aaas-java6
bff2459fc98c9852306fe78d859d9eebc64a61dc
adc652e4b2ea91d6a199e870c780bf11c0b14211
refs/heads/master
2020-03-24T23:39:24.051357
2018-08-01T07:11:42
2018-08-01T07:11:42
143,147,531
0
0
null
null
null
null
UTF-8
PlantUML
false
false
343
plantuml
@startuml skinparam dpi 200 skinparam backgroundColor transparent title EDM/PSImarket Context actor User actor BusinessAnalyst as BA component PSIProduct as PSI <<PSImarket>> component RStudio as rstdio component AAAS as 3as component Engine as engine <<R>> User <--> PSI BA <--> rstdio PSI <--> 3as rstdio <--> 3as 3as <--> engine @enduml
false
true
false
false
sequence
6bec1d27f71b562d31d5ee3d2f1e5667d12c0c82
e49567ea3e4e5a6e5c7e988a46e8175f6a39857f
/uml/LoadItems.puml
d75f8472b74c70e2690a25b734737e76b4359545
[]
no_license
mate-gam/Gamero-cop3330-assignment4
c5405940b3dd352731beb8b376734cf138d48d57
47193a255453dca6d73f4dd6bd2a2f5f3624cb50
refs/heads/master
2023-09-05T09:42:47.978569
2021-11-01T23:29:04
2021-11-01T23:29:04
423,345,539
0
0
null
null
null
null
UTF-8
PlantUML
false
false
171
puml
@startuml class LoadItems{ String CSVText == .. Get File Text Format .. + String getCSVFileText() .. Set File Text FortMate .. + void setCSVText(String csvText) } @enduml
false
true
false
false
class
b5086b13cf13399305b43c7e54b94d42c726713b
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StagedQuoteCreatedMessagePayload.puml
3b6587048a2ec6e65835b6b30edf7985e0366be6
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
469
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface StagedQuoteCreatedMessagePayload [[StagedQuoteCreatedMessagePayload.svg]] extends MessagePayload { type: String stagedQuote: [[StagedQuote.svg StagedQuote]] } interface MessagePayload [[MessagePayload.svg]] { type: String } @enduml
false
true
false
false
class
b5ae3859d2576fca36807209c2f35da130165f2b
4a6a389449fa439db1565a83b4a392f72d3cc9f6
/doc/UseCase.plantuml
ab509c39dceb20db3fa096e6dec7c8bdc02056fa
[]
no_license
zabila/ConsoleBattleship
5c5ac453bc8810a9ec11ee3a4916b0494772d8f7
b4cc06e3e3890a825a5febee82b0d5a53b199ef3
refs/heads/master
2023-06-23T18:30:36.264498
2017-06-22T18:30:03
2017-06-22T18:30:03
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
116
plantuml
@startuml scale max 1024*768 actor Player Player -- (Shot) Player -- (Pause) Player -- (Show statistics) @enduml
false
true
false
false
usecase
11e08ae7411b392b68e282f99f7a0891a28e514e
f7cbd1bbf9534a5bf2529f4a704adcec6b3aafa2
/diagrams/welcomeMessage.puml
3af13767244ff970476ba7a6615407a7621a7769
[]
no_license
AY2122S1-CS2113T-F14-3/tp
cbe08bd0acafd839c68eb062c73f1425f5ed7b36
4dfe1a9649049d037aba9fe67908a82564f983ab
refs/heads/master
2023-08-27T11:53:12.522530
2021-11-12T11:57:49
2021-11-12T11:57:49
412,351,373
0
6
null
2021-11-12T11:57:50
2021-10-01T06:15:19
Java
UTF-8
PlantUML
false
false
86
puml
@startuml 'https://plantuml.com/sequence-diagram participant "welcomeMesage" @enduml
false
true
false
false
sequence
c49884a71e523b356266326b04fca66d13d8586f
1ea55d3a19fcf2c83963b97cea7d15cf2de4f48d
/docs/flow.puml
d9fce59fcda339595a02664a936ed6c5584b0f74
[ "MIT" ]
permissive
mhhollomon/gcp-site-redeploy-function
7f5453e08209c00a9387316c88dcd5a2fff180fd
673af100e4a92548e79614474551bc333b0449d0
refs/heads/master
2020-11-24T17:12:45.251693
2020-09-30T14:53:45
2020-09-30T14:53:45
228,266,953
1
0
MIT
2023-09-04T00:56:16
2019-12-15T23:20:08
JavaScript
UTF-8
PlantUML
false
false
606
puml
@startuml actor user participant GitHub participant SendGrid collections Firebase box "Google Cloud Platform" database bucket as "Cloud Storage" participant function as "Cloud Function" control job as "Scheduler Job" end box user -> GitHub : push content GitHub -> Firebase : deploy GitHub -> bucket : update == Time passes == job -> function : publish function -> bucket : get timestamp bucket -> function : return timestamp function -> GitHub : request redeploy GitHub -> Firebase : deploy GitHub -> bucket : update function -> SendGrid : sendmail api SendGrid -> user : email @enduml
false
true
false
false
sequence
eed048d55df652f3986e76efb3228b8130848948
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Extensions/TrackExtensions.puml
1dfc19afe1b2ce3cd7cc6fe0f0c55c9ddb39af94
[]
no_license
TakanoVineYard/AMHH
215a7c47049df08c5635b501e74f85137b9e985b
68887a313587a2934fb4ceb2994cbc2a2191d6a3
refs/heads/master
2023-01-13T02:08:02.787083
2020-11-17T14:51:57
2020-11-17T14:51:57
303,631,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
182
puml
@startuml class TrackAssetExtensions <<static>> { + {static} GetGroup(asset:TrackAsset) : GroupTrack + {static} SetGroup(asset:TrackAsset, group:GroupTrack) : void } @enduml
false
true
false
false
class
dca620b4d9dc97dd5c54c4d037f38192ec3dd62e
34afe8ccb444b0c7c009b413b4ef3843889c2c26
/versioned_docs/_version-v1.24.x/images/api-mediation/apiml-components.plantuml
0f57d73b1b6bc6fbfb27d55ac0c2cc70d58b8dce
[ "LicenseRef-scancode-dco-1.1", "CC-BY-4.0" ]
permissive
zowe/docs-site
ba3a2a547a330c29a5b175a9e16341ff2eda3981
9bdfa3ccacf53d3f7c28e0e0220267631afbf5da
refs/heads/master
2023-08-31T06:00:52.483979
2023-08-30T16:56:27
2023-08-30T16:56:27
143,049,506
70
190
CC-BY-4.0
2023-09-14T19:15:02
2018-07-31T18:03:07
JavaScript
UTF-8
PlantUML
false
false
903
plantuml
@startuml archimate #business "User" as user <<business-actor>> archimate #application "API Client" as apiClient <<application-component>> archimate #technology "Gateway Service" as GW <<service>> archimate #orange "Discovery Service" as DS <<service>> archimate #technology "API Catalog" as AC <<service>> archimate #application "API Service" as apiService <<application-service>> archimate #orange "Authentication Service" as AAS <<service>> apiClient --> GW: accesses API service\n via GW AC -up-> DS: registers GW --> DS: registers GW --> apiService: routes requests GW --> AC: routes requests apiService -up-> DS: registers apiService -up-> GW: accesses API service\nvia GW user --> GW: accesses API services\nand catalog via GW user --> apiClient: user services via API clients apiService -> AAS: user authentication\nand authorization AC -> AAS: user authentication\nand authorization @enduml
false
true
false
false
sequence
48f7e6afd28b420923c7dcac1beb471d145e90f2
feb745c21b3d48338d55cbba2a22a8f4beb6f494
/oia/armando-moviles/diagrama.plantuml
ee1faf86012a6017ca96f77873e17b9e4602e7c0
[]
no_license
MarcoVitangeli/workspace
073c0a6cb042d8e8b72a6f211e94b21ca8f6f4c8
ff49963be3bbd7f6d3395ae40ee48ce952fac42b
refs/heads/master
2023-06-19T05:38:53.512411
2021-07-17T14:15:00
2021-07-17T14:15:00
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
714
plantuml
@startuml package "java.lang" { class RuntimeException class FileNotFoundException class IOException } package "moviles" { Artesano "1" o-- "*" Movil: -moviles ArmandoMoviles - Archivo: usa > Archivo o-- Artesano: artesano class Archivo { - nombre: String + Archivo(nombre: String) + procesarArchivoIn() + generarArchivoOut() } class Artesano { - cantVarillas: int - pesoTotal: int - colgantes: Map<Integer, Integer> + getCantVarillas(): int + getPesoTotal(): int + construirMovil(peso: int): void } class ArmandoMoviles { {static} + main(args: String[]) } class Movil { - peso1: int - peso2: int + Movil(peso1: int, peso2: int) + getPesoTotal():int } } @enduml
false
true
false
false
class
000746086e45dff918fbcd9013b3a38652f70e55
9cccabca8eff25502a735f8fe4ceff3a09b4c444
/slide/res/uml/architecture-design-client.puml
74f658a7b37066ff280b31bae4f5c4fbd9b972ba
[ "CC-BY-SA-3.0", "CC-BY-SA-4.0", "Apache-2.0" ]
permissive
NiccoMlt/protelis-web-thesis
1d077bf8180c415789d52f4a7bb9e5c67d470bb3
49bf1e3a3b89df55f0a4176bb4c3b3a14941d497
refs/heads/master
2020-12-23T14:02:23.293073
2020-03-23T19:14:45
2020-03-23T19:14:45
237,173,330
0
0
Apache-2.0
2020-03-11T13:34:43
2020-01-30T08:51:15
TeX
UTF-8
PlantUML
false
false
678
puml
@startuml "architecture-design-client" skinparam { linetype ortho monochrome true ArrowColor black backgroundColor transparent classBackgroundColor transparent ' style strictuml actorBackgroundColor transparent componentBackgroundColor transparent padding 5 } left to right direction ' actor :user: as user component [client] as react { database "Store" as store { component [editorSlice] as editor component [execSlice] as canvas } component [UI] as ui component [Middleware] as mw editor --> mw mw -up-> canvas } ' user --> ui ui --> editor ui <-- editor ui <-- canvas @enduml
false
true
false
false
sequence
f0430c8b0b415a784206a760d43182a900befaf0
998c7f0c66cfd6c0aed9636a526df154d1b0faab
/PlantUML Diagrams/diagram41.puml
79e3ea33d19258f180e8296d44423e31aaee23df
[]
no_license
reyfundora/fundora-cop3330-assignment3
074338c969d17354121660d7a042715e01a46d02
0c54c6de87bb099437d320ded80b1417b7f57e9d
refs/heads/master
2023-06-09T20:27:53.374781
2021-06-21T03:01:28
2021-06-21T03:01:28
376,903,039
0
0
null
null
null
null
UTF-8
PlantUML
false
false
835
puml
@startuml 'https://plantuml.com/sequence-diagram class Read_file { Reads the input file and saves it to a String array. == input = new File ("exercise41_input.txt") file_read = new Scanner(input) -- String[] data =for loop return data; } class Lines_in_Input { Function that returns how many lines in file for use in loops. == int line_num LineNumberReader line_r =while loop return line_num } class Alphabetize { Organizes String array alphabetically. == Arrays.sort(data); return data; } class Write_File { Creates an output file and writes to it == FileWriter output = "exercise41_output.txt" output.write = "Total of 7 names" =for loop output.close } class Main { Write_File(); } Read_file o--> Lines_in_Input Read_file o--> Alphabetize Alphabetize o--> Write_File Write_File o--> Lines_in_Input Write_File o--> Main @enduml
false
true
false
false
class