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
bf378008b0725596a47504f121b3a0141c092258
227c32f7a5991c0ce2de069dd1f0448c1e6949fb
/PlantUML/FrameworkCustomizer/FrameworkCustomizer_Activity_customizeA.puml
f488923ac2aa78f15588944208543b9ff252d980
[]
no_license
ShisatoYano/SLAMDesignUML
2b3af745ecf8ff1b88845e248a72c589fe9aa1ba
bb8678908952205d1fdc2ea5e49c9ca752e123b9
refs/heads/master
2022-11-25T17:49:03.514885
2020-08-02T00:27:38
2020-08-02T00:27:38
261,206,484
0
0
null
null
null
null
UTF-8
PlantUML
false
false
493
puml
@startuml (*) --> "pcmap = &pcmapBS" --> "RefScanMaker *rsm = &rsmBS DataAssociator *dass = &dassLS CostFunction *cfunc = &cfuncED PoseOptimizer *popt = &poptSD LoopDetector *lpd = &lpdDM" --> "popt->setCostFunction(cfunc)" --> "poest.setDataAssociator(dass) poest.setPoseOptimizer(popt)" --> "pfu.setDataAssociator(dass)" --> "smat.setPointCloudMap(pcmap) smat.setRefScanMaker(rsm)" --> "sfront->setLoopDetector(lpd) sfront->setPointCloudMap(pcmap) sfront->setDgCheck(false)" -->(*) @enduml
false
true
false
false
uml-unknown
bd8bc99682c15cb074146876454f332136b89ae4
fee773dcb1a932315c9ca25ff2ca58587eb5c8fa
/demo4-statemachine/resources/statemachine-imposters.puml
d57d0a6a24f439f1ad698d49922af99090efc990
[]
no_license
domahidizoltan/presentation-this-is-not-a-pipe
c3cc687151eb44384dda32871fe679bf41e7f948
720bbc8ff7a9e5edebb19247cf4766fcc8b540ac
refs/heads/master
2020-04-17T05:31:18.654564
2019-03-16T05:55:14
2019-03-16T05:55:14
166,283,117
0
0
null
null
null
null
UTF-8
PlantUML
false
false
580
puml
@startuml actor :User: frame Application { component endpoints [ /start/{id} /stop/{id} /send-mail/{id} ] } frame Mountebank { component mountebank component startStopImposter [ HTTP:9000 /start/{id} /stop/{id} ] component mailImposter [ SMTP:587 ] [startStopImposter] <-down- [mountebank] [mailImposter] <-up- [mountebank] } User -> [endpoints] : " " [endpoints] <-> [startStopImposter] : " Start/Stop machine " [endpoints] -> [mailImposter] : "Send email " @enduml
false
true
false
false
sequence
4cf4cc50897002c30df8f3d134d888534bfbf933
6ee68c10cc14f6a8f0655513d86234ade7c9d908
/uml/state-diagram.plantuml
0d3d121572068328acf23d35c387f0c4fdedc625
[]
no_license
sand-head/funky-chat
9e9e268638002ba62a26f3f3eb7bcaf28bf1ed05
485e80d83c3a78dc1a906372b9fcca3a01a20052
refs/heads/main
2023-04-14T21:30:02.640758
2021-04-23T19:35:00
2021-04-23T19:35:00
339,269,239
0
0
null
2021-04-02T03:58:50
2021-02-16T02:56:10
C#
UTF-8
PlantUML
false
false
1,796
plantuml
@startuml State Transition Diagram state Server { state "Server Socket" as server_socket <<entryPoint>> state "Starting" as server_starting server_starting : Essential services (like name generation) are started server_starting : Socket is created and bound state "Listening" as server_listening server_listening : Socket listens for incoming connections state "Connecting" as server_connecting server_connecting : Server handshakes with Client state fork_state <<fork>> state "Connected" as server_connected { server_connected : A new socket is made for client communication server_connected : Messages are sent to/received from client state "New Socket" as new_socket <<entryPoint>> state "Send Message" as server_send [*] --> server_send : If Message\nReceived } [*] --> server_starting server_starting --> server_listening server_listening --> server_connecting : On Client\nConnection server_connecting --> fork_state fork_state --> server_listening fork_state --> server_connected } state Client { state "Client Socket" as client_socket <<entryPoint>> state "Starting" as client_starting client_starting : Socket is created and bound state "Connecting" as client_connecting client_connecting : Client attempts to connect to server socket state "Connected" as client_connected client_connected : Messages are sent to/received from server [*] --> client_starting client_starting --> client_connecting client_connecting --> client_connected : Success client_connected --> client_connected : New Message Recieved } client_connecting -[dotted]-> server_socket client_connected -[dotted]-> new_socket : Message sent from\nclient to server server_send -[dotted]-> client_socket : Message sent from\nserver to client
false
true
false
false
sequence
a81b2b9fc728face7ca91aca954b9c7e6c314805
9ddf59611cd4a6ed640d8f2adec09887cc260143
/app/src/main/java/com/example/androidximalayafm/utils/utils.plantuml
84fd3cb375b3a51191281149a6a27294222e8b01
[]
no_license
413180794/androidXiMaLaYaFM
3de3128163bf78467b1eb152c41c7f46f8377c5d
d17fe7488fc7e21ae937c8d2f7ac95067ce5cc80
refs/heads/master
2023-01-19T02:33:29.992822
2020-11-23T02:11:00
2020-11-23T02:11:00
271,422,992
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,526
plantuml
@startuml title __UTILS's Class Diagram__\n namespace com.example.androidximalayafm { namespace utils { class com.example.androidximalayafm.utils.Constants { {static} + COUNT_DEFAULT : int {static} + COUNT_RECOMMEND : int } } } namespace com.example.androidximalayafm { namespace utils { class com.example.androidximalayafm.utils.FragmentCreator { {static} + INDEX_HISTORY : int {static} + INDEX_RECOMMEND : int {static} + INDEX_SUBSCRIPTION : int {static} + PAGR_COUNT : int {static} - sCache : Map<Integer, BaseFragment> {static} + getFragment() } } } namespace com.example.androidximalayafm { namespace utils { class com.example.androidximalayafm.utils.ImageBlur { {static} + makeBlur() {static} - RGB565toARGB888() {static} - blurRenderScript() } } } namespace com.example.androidximalayafm { namespace utils { class com.example.androidximalayafm.utils.LogUtil { {static} + sIsRelease : boolean {static} + sTAG : String {static} + d() {static} + e() {static} + i() {static} + init() {static} + v() {static} + w() } } } 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
ce2dcd5ef3492db7226cbf8484a83b57a3569040
baf18fbf9ad3fbc94fc7e7aa22c1daec5dce57ce
/ProyectoTDP/src/EntitiesVisitor/EntitiesVisitor.puml
0df1bf589db2bcc6ca14b2c4a0aab6b95e2b6b5d
[]
no_license
Nicolas-Guasch/Proyecto-TDP
9dc37086538f8f7b96cd2cad2981b0176a858439
0e2e0bc65790cf9a8c615163bcd0f3c84bcd3327
refs/heads/master
2020-03-26T09:52:51.608125
2018-11-30T01:31:33
2018-11-30T01:31:33
144,770,001
1
0
null
null
null
null
UTF-8
PlantUML
false
false
5,920
puml
@startuml package EntitiesVisitor{ class VisitorEntity{ +visit( playerShip: PlayerShip) +visit( enemyShip: EnemyShip) +visit( otherShip: OtherShip) +visit( barricadeEnem: BarricadeEnem) +visit( barricadeBoth: BarricadeBoth) +visit( playerBullet: PlayerBullet) +visit( enemyBullet: EnemyBullet) +visit( fireShield: FireShield) +visit( weaponReward: WeaponReward) +visit( genericReward: GenericReward) +visit( shipBoss: ShipBoss) } VisitorEntity <|-up---- BarricadeBothVisitor VisitorEntity <|-up--- BarricadeEnemVisitor VisitorEntity <|-up-- BossVisitor VisitorEntity <|-up- EnemiesCounter VisitorEntity <|-up-- EnemyBulletVisitor VisitorEntity <|-up--- EnemyVisitor VisitorEntity <|-up-- FireShieldEffect VisitorEntity <|-up-- ForceVisitor VisitorEntity <|-up- FreezeVisitor VisitorEntity <|-up- GetEnemies VisitorEntity <|-up- GetEnemiesAndBarricades VisitorEntity <|-up---- PlayerBulletVisitor VisitorEntity <|-up--- Pusher VisitorEntity <|-up- PlayerVisitor VisitorEntity <|-up-- SoloSupportVisitor VisitorEntity <|-up--- VisitorHealPotion VisitorEntity <|-up- VisitorShieldFireReward VisitorEntity <|-up-- WeaponRewardVisitor VisitorEntity <|-up---- WeaponSwitch class BarricadeBothVisitor{ -transform : ITransform +BarricadeBothVisitor(transform:ITransform) -getRepulsion(repulsor,repulsado,repulsor_top,repulsado_top : IVector2) - bounce(quiet,traveller : ITransform) +visit( playerBullet: PlayerBullet)++ +visit( enemyBullet: EnemyBullet)++ } BossVisitor "-shipBoss" o-- "1"ShipBoss class BossVisitor{ +visit( barricadeBoth: BarricadeBoth)++ +visit( playerShip: PlayerShip)++ -getRepulsion(repulsor,repulsado,repulsor_top,repulsado_top : IVector2) +BossVisitor(shipBoss : ShipBoss) } class EnemiesCounter{ -count:int EnemiesCounter() +visit( enemyShip: EnemyShip)++ +getCount():int } EnemyBullet "1" --o "bullet" EnemyBulletVisitor class EnemyBulletVisitor{ +visit( barricadeBoth: BarricadeBoth)++ +visit( playerShip: PlayerShip)++ EnemyBulletVisitor(enemyBullet : EnemyBullet) } EnemyShip "1" --o "ship" EnemyVisitor class EnemyVisitor{ EnemyVisitor(ship:EnemyShip) +visit( playerShip: PlayerShip)++ +visit( playerBullet: PlayerBullet)++ +visit( barricadeBoth: BarricadeBoth)++ -bounce(bouncePoint:IVector2) } EntityData "1" --o "mydata" FireShieldEffect class FireShieldEffect{ +visit( enemyShip: EnemyShip)++ +visit( enemyBullet : EnemyBullet)++ } Entity "1" --o "ent" ForceVisitor class ForceVisitor{ +setEntity(entity : Entity) +visit(playerShip : PlayerShip)++ } Entity "1" --o "entity" PlayerBulletVisitor class PlayerBulletVisitor{ +PlayerBulletVisitor(bullet : Entity) +visit(shipBoss : ShipBoss)++ +visit(enemyShip : EnemyShip)++ +visit(ent : BarricadeBoth)++ +visit(ent : BarricadeEnem)++ } Entity "0..*" --o "col" GetEnemiesAndBarricades class GetEnemiesAndBarricades{ +GetEnemiesAndBarricades(col [Entity]) +visit(enemyShip : EnemyShip)++ +visit(ent : BarricadeBoth)++ +visit(ent : BarricadeEnem)++ } EnemyShip "0..*" --o "collector" GetEnemies class GetEnemies{ +GetEnemies(collector [EnemyShip]) +visit(enemyShip : EnemyShip)++ } ITransform "1" --o "centerPoint" FreezeVisitor class FreezeVisitor{ -time,ratio : float +FreezeVisitor(time:float, centerPoint:ITransform , ratio:float) +visit(enemyShip : EnemyShip)++ +visit(ship : ShipBoss)++ -precondition(ship:Entity):boolean -reactive(ship:ShipBoss) -reactive(ship:EnemyShip) } class PlayerVisitor{ +visit(enemyShip : EnemyShip)++ +visit(enemyBullet : EnemyBullet)++ } class Pusher{ -ratio : float -centerPoint : IVector2 +Pusher(ratio:float, centerPoint:IVector2) +visit(enemyShip : EnemyShip)++ +visit(barricade : BarricadeEnem)++ +visit(barricade : BarricadeBoth)++ +visit(bullet : EnemyBullet)++ - effect(Entity ent) } Entity "1" --o "entity" SoloSupportVisitor Ship "1" --o "ship" SoloSupportVisitor class SoloSupportVisitor{ +visit(player:PlayerShip)++ +setEntity(entity:Entity) -createHanSolo() -getData() -getBehaviour() -getRenderer() -getWeapons() -onPosition():boolean -reactive():void } class WeaponSwitch{ -active:boolean +WeaponSwitch(active:boolean) +visit(playerShip:PlayerShip)++ +visit(enemyShip:EnemyShip)++ } Weapon "1" --o "weapon" WeaponRewardVisitor Entity "1" --o "related" WeaponRewardVisitor class WeaponRewardVisitor{ +WeaponRewardVisitor(weapon:Weapon,entity:Entity) +visit(playerShip:PlayerShip)++ } Entity "1" --o "mine" VisitorShieldFireReward FireShieldMaker "1" --o "mine" VisitorShieldFireReward class VisitorShieldFireReward{ +VisitorShieldFireReward() +setEntity(ent:Entity) +visit(playerShip : PlayerShip)++ } Entity "1" --o "reward" VisitorHealPotion class VisitorHealPotion{ -potion:float = 100 +VisitorHealPotion() +setReward(rew:Entity) +visit(playerShip : PlayerShip)++ } Weapon "1" --o "weapon" WeaponRewardVisitor Entity "1" --o "related" WeaponRewardVisitor class WeaponRewardVisitor{ WeaponRewardVisitor() +visit(playerShip : PlayerShip)++ } } @enduml
false
true
false
false
sequence
25ee4be22a3e7a40d939789ddeca2eb406f27afc
2693d030625caed927184a1356c6d236849e510d
/src/plantuml/bulk-search.puml
b9fd6710dce11ec5007177de4d21c87a38439040
[]
no_license
department-of-veterans-affairs/health-apis-bulk-fhir
eb61a4377a592bbdcdc2c48fff2a8e8e01c68499
0713e96c0fdcb85e76ad7561790405e7c3fd628c
refs/heads/master
2021-10-07T22:57:42.179717
2021-09-23T16:11:53
2021-09-23T16:11:53
216,890,828
1
1
null
2021-09-23T16:11:54
2019-10-22T19:12:50
Java
UTF-8
PlantUML
false
false
1,236
puml
@startuml skinparam handwritten true 'skinparam monochrome true skinparam { shadowing false ArrowFontColor #888 ArrowColor steelblue ActorBorderColor steelblue ActorBackgroundColor white RectangleBackgroundColor white DatabaseBackgroundColor white RectangleBorderColor<<namespace>> #ddd } hide <<namespace>> stereotype allow_mixing actor "Consumer" as public rectangle "API Gateway" as alb rectangle data-query as dqns <<namespace>> { rectangle "kong" as dqk rectangle "data-query" as dq } database "Datamart" as datamart rectangle bulk-fhir as tibns <<namespace>> { rectangle "kong" as tibk rectangle "The Incredible Bulk" as tib rectangle "timer" as timer } database "S3 Anonymized Files" as tibs database "Publication State" as tibdb public -(0- alb alb -(0- dqk : .../Patient dqk -(0- dq : "/Patient\n/internal/bulk/Patient" dq -- datamart alb -(0- tibk : ".../Patient/$export\n.../bulk/{id}\n .../bulk/publication/{id}/file/{file}" tibk -(0- tib : " /Patient/$export\n /bulk/status/{id}" tib -(0- dqk : /internal/bulk/Patient tib -left-> tibs : <<write>> tibk <-- tibs : <<read>>\n.../s3/{id}/{file} tib -- tibdb timer -left(0- tibk : /internal/publication dqns -[hidden]left-- tibns @enduml
false
true
false
false
sequence
5e6b1ebb8c71b33b84fb8c6858d05501471e55f6
61f77755f3ca65fa0a0dfbbdc51137e01ded03fc
/design_model/src/main/java/example/designpattern/structural/decorator/decorator pattern.puml
a2492bc36cc44a930a899d13e75bac0a662a5adf
[]
no_license
lyszhen3/myWeb
670e02a585ea3193f6c388b9cea37969a94792dc
c1543ec5f48d84e6c6481a95e54b84f04654b323
refs/heads/master
2023-07-11T02:29:33.530130
2019-02-25T01:39:29
2019-02-25T01:39:29
78,835,228
0
1
null
2022-12-16T04:38:41
2017-01-13T09:31:45
Java
UTF-8
PlantUML
false
false
731
puml
@startuml abstract class Component{ +{abstract} void display(); } class ComponentDecorator{ -Component component; +ComponentDecorator(Component component); +void display(); } class Window{ +void display(); } class TextBox{ +void display(); } class ListBox{ +void display(); } class ScrollBarDecorator{ +ScrollBarDecorator(Component); +void display(); +void setScrollBar(); } class BlackBorderDecorator{ +BlackBorderDecorator(Component); +void display(); +void setBlackBorder(); } ComponentDecorator -right--|>Component ComponentDecorator o-right-->Component Window -up-|>Component TextBox -up-|>Component ListBox -up-|>Component ScrollBarDecorator -up-|>ComponentDecorator BlackBorderDecorator -up-|>ComponentDecorator @enduml
false
true
false
false
class
52c22a5c207a7889ce4dda32a5ff3c05ecff66e7
3a24eb09d2f93ea041f7ebf5ea5b41d68c6e1b28
/img/architecture-diagram.plantuml
eb2920efd4a1e0ad66363c460ebe56189843664f
[]
no_license
pereirao/mtr-database-php
a7ab061819ea9b8216cb46d057201f7fc18e0870
348c9c995ef52ba9b1229275dbfa5c3a8a2d48f6
refs/heads/main
2023-06-30T09:53:20.664705
2021-08-05T04:59:48
2021-08-05T04:59:48
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
487
plantuml
@startuml package "IP .101" { component "Agent" as agent component "Dashboard" as dashboard database "Database" as db Interface "HTTP" as http dashboard -right- http agent -right-> db dashboard <-left- db } package "IP .102" { component "Agent" as agent2 } package "IP .103" { component "Agent" as agent3 component "Dashboard" as dashboard2 Interface "HTTP" as http2 dashboard2 -right- http2 } agent2 -down-> db agent3 -up-> db dashboard2 <-up- db @enduml
false
true
false
false
sequence
443e0ecd5c933ae8490d44a2a5b59223f51a393d
e44b9cd5cb9b48a1c86b0852b2c593bcc742c3b1
/src/td1/exercice1.puml
8c6b3670aab2c765f76afbd59f2e0cadcff308fa
[]
no_license
Sayoden/COO
e4436614a832c4f122cc005909ad96460159310d
dca32c89c55fdc471a229b47f98a6d7c964cafbc
refs/heads/master
2023-05-06T12:50:18.174146
2021-05-28T09:22:28
2021-05-28T09:22:28
352,588,307
0
0
null
null
null
null
UTF-8
PlantUML
false
false
487
puml
--- title: TD1 --- # Diagramme de cas d'utilisation ```plantuml @startuml skinparam actorStyle hollow left to right direction :Enseignant_responsable: as a1 :Enseignant: as a2 :Eleve: as a3 rectangle Etablissement{ (Visualiser planning salles) as v1 (Réserver) as c1 (Réserver salle) as c2 (Réserver matérielle) as c3 (Modifier les réservation matérielle)as c4 c1<|--c2 c1<|--c3 a3--v1 a2--c1 a1--c4 } a2<|-up-a1 a3<|-up-a2 @enduml
false
true
true
false
class
8aa3b5d16d4b791d3d93bfa5cf340697ff38269c
efcc00356e396c447c427b7a28b3b423bfecbbac
/src/maybankRestapiClassDiagram.puml
f928adc1c4588fc9204ea0798e932dc7eb4e2736
[]
no_license
jamesyjava/maybank
0b8f525ff433d67f120469140d664b53f116df30
04e18d69aa568ce29ba9e124d876205be5bbf1bc
refs/heads/master
2023-04-14T08:18:39.720696
2021-04-21T11:05:07
2021-04-21T11:05:07
359,877,906
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,746
puml
@startuml 'https://plantuml.com/class-diagram class Transaction { +id : int +accountNumber : string +trx_amount : double +description : string +trxDate : LocalDate +trxTime : LocalTime +customerId : int } interface TransactionRepository { +findByCustomerId(customerId: int, pageable: Pageable): Page<Transaction> +findByAccountNumber(accountNumber: string, pageable: Pageable): Page<Transaction> +findByDescription(description: string, pageable: Pageable): Page<Transaction> } class TransactionModelAssembler { +toModel(transaction: Transaction): EntityModel<Transaction> +toModel(transaction: Transaction, pageable: Pageable): EntityModel<Transaction> } class TransactionController { transactionRepository TransactionRepository transactionModelAssembler TransactionModelAssembler pagedResourcesAssembler PagedResourcesAssembler<Transaction> +TransactionController(transactionRepository: TransactionRepository, transactionModelAssembler: TransactionModelAssembler) +all(pageable: Pageable): ResponseEntity +findByCustomerId(pageable: Pageable, customerId: int): ResponseEntity +findByAccountNumber(pageable: Pageable, accountNumber: string): ResponseEntity +findByDescription(pageable: Pageable, description: string): ResponseEntity +one(id: long): EntityModel<Transaction> } class TransactionNotFoundException{ +TransactionNotFoundException(): void +TransactionNotFoundException(message: string): void } Transaction <|--TransactionRepository TransactionNotFoundException <|-- TransactionController TransactionModelAssembler <|-- TransactionController TransactionRepository <|-- TransactionController @enduml
false
true
false
false
class
cc8cdf0d8ea45690b0fbda1a71338959923d42b3
f4e746d7627fa2f2c1d91f40f73018d49587b40b
/src/Models/ResetManager/ResetManager.puml
b3fcf1273ed3ebda6410b1d0ad8b2bdf52fc1405
[]
no_license
ui-package/table-component
cd428ce66e972bd3d2a7bed1fa47efa0e8f8194f
a5705a8428cc4561362e01d74800051f85a53b56
refs/heads/master
2021-05-13T23:04:39.299701
2018-03-21T07:14:54
2018-03-21T07:14:54
116,505,364
0
0
null
null
null
null
UTF-8
PlantUML
false
false
410
puml
@startuml interface RenderManagerInterface { {abstract} reRenderView() } interface ResetManagerInterface { {abstract} reload() } class ResetManager { table: RenderManagerInterface reload() } ResetManagerInterface <|.. ResetManager RenderManagerInterface <-o ResetManager note left on link table.reRenderView()W end note ResetManager <-- CLIENT note left on link reset.reload() end note @enduml
false
true
false
false
class
57319d2575f71bd42bccb99d547a9c4d6c5761e4
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.postprocessing@2.3.0/PostProcessing/Runtime/Effects/ChromaticAberration.puml
924baaa28da3b58c945869808ccb4c9fb5226dd0
[]
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
695
puml
@startuml class ChromaticAberration <<sealed>> { + <<override>> IsEnabledAndSupported(context:PostProcessRenderContext) : bool } class ChromaticAberrationRenderer <<sealed>> { + <<override>> Render(context:PostProcessRenderContext) : void + <<override>> Release() : void } class "PostProcessEffectRenderer`1"<T> { } PostProcessEffectSettings <|-- ChromaticAberration ChromaticAberration o-> "spectralLut" TextureParameter ChromaticAberration o-> "intensity" FloatParameter ChromaticAberration o-> "fastMode" BoolParameter "PostProcessEffectRenderer`1" "<ChromaticAberration>" <|-- ChromaticAberrationRenderer ChromaticAberrationRenderer --> "m_InternalSpectralLut" Texture2D @enduml
false
true
false
false
class
5902a7326594a260ebf50c283ac943151ac7cba9
7c2a17fd3d19a13fb71558f79900a2908de98c58
/docs/uml-class-diagrams/middleware02/test/MiddlewareCommDatabaseInterfaceImplementationTests/MiddlewareCommDatabaseInterfaceImplementationTests.puml
9421ddfe4c83d851f9d083137785773582c42219
[]
no_license
casher-ou/csi-3370-software-project
483b1add9fbab8349f30009eecc123c884bdcc7b
629fb9cce10429c2b80bd1ad33ab898d1466883b
refs/heads/main
2023-01-22T00:44:50.062944
2020-11-29T23:00:50
2020-11-29T23:00:50
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
263
puml
@startuml MiddlewareCommDatabaseInterfaceImplementationTests package edu.oakland.test.middleware02 { class MiddlewareCommDatabaseInterfaceImplementationTests { + void rfidInIsRfidOut() + void databaseCommInterfaceIsNotNull() } } @enduml
false
true
false
false
class
79097a60357d1c073e90a925c751d86ea2780c7c
bcb7fd9ec9e69e52780b27da867b8055dfdc043c
/src/lattice/ImplicationalSystemReaderText.iuml
c5b43f58acbf1f985651f86b836fadabbee63e19
[ "CECILL-B" ]
permissive
vanthonguyen/lattice-sequence
2e962d089b0053ba90332932fe3881dfe8ec71ac
72ebfe551ef013da521b81121e3f98164b2a00bf
refs/heads/master
2020-04-15T07:22:32.920465
2015-02-01T17:33:59
2015-02-01T17:33:59
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
349
iuml
package lattice { class ImplicationalSystemReaderText { -{static}ImplicationalSystemReaderText instance +void read(ImplicationalSystem system, BufferedReader file) +{static}ImplicationalSystemReaderText getInstance() +{static}void register() } ImplicationalSystemReader <|-- ImplicationalSystemReaderText }
false
true
false
false
class
4d596fc13eea27877a1293839bd4b1b4ac0b24bb
52f48cb2f08262f5066af749c882c60eae770858
/diag-estructural.puml
d0f8d8ff10081e8bbe1ce97620cde5637020502e
[]
no_license
eterX/challenge
57a9492d943d0dd93a2a5db888f474157c9c18ad
d5324e42ca4ec2b8ac7cc95430dff5f88b5b9a81
refs/heads/master
2021-07-12T22:47:32.583006
2017-10-18T10:21:00
2017-10-18T10:21:00
104,831,220
0
0
null
null
null
null
UTF-8
PlantUML
false
false
455
puml
@startuml interface HTTP node PC/phone { [browser] - HTTP } node svr { interface Actionlib package "WebSvr" { HTTP - [Monitor Interface] [Monitor Interface] - Actionlib : < progress } package "Operator Interface" { [path_requester] Actionlib - [path_requester] : < progress } package "ROSnode" { [turtleSim] [ActionlibSvr] } Actionlib - [ActionlibSvr] : > commands } @enduml
false
true
false
false
class
3a2d92dd364f20542f86657c11ccd25f456d2e04
8b75e5ddf32d25065a06d758ef156ccad2172ecd
/src/main/java/ex42/ex42 Diagram.puml
29a3e5cb5801b48ee8c307f272b0f3ad01ffe5e9
[]
no_license
gibs0nnn/gibson-cop3330-assignment3
010da22a6ce9dcafbb1837c587cc49c15051551f
d8bedeedc26a5f45ef30109362cc79df0c47e426
refs/heads/master
2023-08-24T05:23:10.029331
2021-10-12T03:14:57
2021-10-12T03:14:57
416,165,933
0
0
null
null
null
null
UTF-8
PlantUML
false
false
304
puml
@startuml class App { +{static}void main(String[] args) +{static}ArrayList fileReader(String fileName): userInfo +{static}ArrayList organizeData(ArrayList<String> data): organizedData +{static}String getSpaces(int letters): spaces +{static}void displayData(ArrayList data) } @enduml
false
true
false
false
class
b622ac4be86987c59fd1bf59aaba20464d121b57
aefb1807676f66cc46e45071b3deb1969e682322
/SELAIN SISTEM/UML/SEQUENCE/kepala/TolakSPTBKD.puml
cf71bc3acd12d304a8dbac73868beca3c5f3976a
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
kurniado729/sistem_kp
f456f7a22392f99c117797370c9a8d70c96b0df4
c77c7bc9aa28fe414be3254880112dbffb4b2ab2
refs/heads/master
2023-02-01T21:00:47.861038
2019-12-20T18:52:46
2019-12-20T18:52:46
220,038,247
0
1
MIT
2023-02-01T02:14:20
2019-11-06T16:12:42
HTML
UTF-8
PlantUML
false
false
882
puml
@startuml autonumber hide footbox title Menolak SPT BKD Actor Kepala boundary Dashboard_V boundary SPTBKD_V control Admin_C control SuratPerintahTugas_C Entity SuratPerintahTugas_E Admin_C --> Dashboard_V: load->view() Dashboard_V --> Kepala: Halaman Dashboard Kepala --> Dashboard_V: klik menu Persetujuan SPT BKD Dashboard_V --> SuratPerintahTugas_C: index() SuratPerintahTugas_C --> SuratPerintahTugas_E: SuratPerintahTugas_E --> SuratPerintahTugas_C: SuratPerintahTugas_C --> SPTBKD_V: load->view() SPTBKD_V --> Kepala: Halaman Persetujuan SPT BKD Kepala --> SPTBKD_V: klik tombol tolak SPT BKD SPTBKD_V --> SuratPerintahTugas_C: rejectbkd() SuratPerintahTugas_C --> SuratPerintahTugas_E: SuratPerintahTugas_E --> SuratPerintahTugas_C: SuratPerintahTugas_C --> SPTBKD_V: load->view() SPTBKD_V --> Kepala: Halaman Persetujuan SPT BKD @enduml
false
true
false
false
sequence
43ae720feefcb9fc536474da0c61b1505b6f120e
319f583d7631ef30056b27f7ea0421733089e103
/src/main/java/ex41/NameSorter.puml
e631c5c3ce323bb592b7383a2493301f3cc5fae8
[]
no_license
rydohg/doherty-cop3330-assignment3
2384ed5c3bb13e4fad6adfce338fb36581074d76
507abb24289bfe1e741e9530e516a5e4342101aa
refs/heads/master
2023-06-05T13:11:55.058743
2021-06-21T03:01:36
2021-06-21T03:01:36
378,782,691
0
0
null
null
null
null
UTF-8
PlantUML
false
false
168
puml
@startuml class NameSorter { ArrayList<String> names sort(ArrayList<String> names) } class FileOps { readFile() writeFile() } NameSorter <-- FileOps @enduml
false
true
false
false
class
4cc51aad6b0545f4c82d4da3364f9c5008fd3bba
4a1a6be8879fefa4087c54ba04a360a93209c822
/Software/Software.plantuml
10631ab28500b866715c5afc34cc6b17a4ccd147
[]
no_license
PeterSigmund12/Sudoku-Master
6958759caba43dac5cf2e44e1d2da13102a3893a
7a88b2e06f0ada2fb91d167e753f1860547454b8
refs/heads/main
2023-06-24T08:57:25.153022
2021-07-20T08:03:48
2021-07-20T08:03:48
347,006,452
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,770
plantuml
@startuml title __SOFTWARE's Class Diagram__\n namespace at.jku.se.controller { namespace HighScore { class at.jku.se.controller.HighScore.CalculateScore { } } } namespace at.jku.se.controller { namespace HighScore { class at.jku.se.controller.HighScore.CreateHighScoreObject { } } } namespace at.jku.se.controller { class at.jku.se.controller.HighScoreBoardController { } } namespace at.jku.se.controller { class at.jku.se.controller.HighScoreBoardControllerT { } } namespace at.jku.se.controller { class at.jku.se.controller.LoadGameController { } } namespace at.jku.se.controller { class at.jku.se.controller.MainMenueController { } } namespace at.jku.se.controller { class at.jku.se.controller.NewGameController { } } namespace at.jku.se.controller { class at.jku.se.controller.PlayfieldController { } } namespace at.jku.se.controller { class at.jku.se.controller.SudokuHelper { } } namespace at.jku.se.sudokumaster { class at.jku.se.sudokumaster.AnchorPoint { } } namespace at.jku.se.sudokumaster { class at.jku.se.sudokumaster.CalculateScoreTest { } } namespace at.jku.se.sudokumaster { class at.jku.se.sudokumaster.Cell { } } namespace at.jku.se.sudokumaster { class at.jku.se.sudokumaster.SimpleBoard { } } namespace at.jku.se.sudokumaster { class at.jku.se.sudokumaster.SimpleSolver { } } namespace at.jku.se.sudokumaster { class at.jku.se.sudokumaster.SimpleSolverTest { } } namespace at.jku.se.sudokumaster { class at.jku.se.sudokumaster.SudokuMaster { } } namespace at.jku.se.utility { class at.jku.se.utility.HighScoreObject { } } namespace at.jku.se.utility { class at.jku.se.utility.NewScreen { } } namespace at.jku.se.utility { class at.jku.se.utility.NewScreenDropDown { } } at.jku.se.controller.HighScoreBoardController .up.|> javafx.fxml.Initializable at.jku.se.controller.HighScoreBoardControllerT .up.|> javafx.fxml.Initializable at.jku.se.controller.LoadGameController .up.|> javafx.fxml.Initializable at.jku.se.controller.MainMenueController .up.|> javafx.fxml.Initializable at.jku.se.controller.NewGameController .up.|> javafx.fxml.Initializable at.jku.se.controller.PlayfieldController o-- at.jku.se.controller.SudokuHelper : h at.jku.se.sudokumaster.SudokuMaster -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
bec72c387fd674042d39b852943f82eaee171a79
14f10ea1e96e8bd4a4f21d5fb206a124a46a9f42
/p10-miage-m1-mapc-td4.plantuml
2ac58eefab721986efdf5a0f8c985b4f810cb20e
[]
no_license
jestin-g/p10-miage-m1-mapc-td4
2cdd11827671c19a3e8d86a9984126119fc4a515
8cc2239a760026088a6a0e026bccf0d0ce6ca785
refs/heads/master
2023-01-18T23:47:55.421046
2020-11-10T16:29:26
2020-11-10T16:29:26
311,718,930
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,244
plantuml
@startuml title __P10-MIAGE-M1-MAPC-TD4's Class Diagram__\n namespace dispenser1 { class dispenser1.Demo { } } namespace dispenser1 { class dispenser1.DrinkDispenser { } } namespace dispenser1 { class dispenser1.State { } } namespace dispenser1 { class dispenser1.StateReadyToServe { } } namespace dispenser1 { class dispenser1.StateWaitingForMoney { } } namespace dispenser2 { class dispenser2.Demo { } } namespace dispenser2 { class dispenser2.DrinkDispenser { } } namespace dispenser2 { class dispenser2.State { } } namespace dispenser2 { class dispenser2.StateReadyToServe { } } namespace dispenser2 { class dispenser2.StateWaitingForMoney { } } namespace war { interface war.Attack { } } namespace war { class war.Cannon { } } namespace war { class war.Demo { } } namespace war { class war.Drive { } } namespace war { class war.Firegun { } } namespace war { class war.Fly { } } namespace war { class war.Missile { } } namespace war { interface war.Movements { } } namespace war { class war.Run { } } namespace war { class war.SMG { } } namespace war { class war.Unit { } } dispenser1.DrinkDispenser o-- dispenser1.State : state dispenser1.StateReadyToServe -up-|> dispenser1.State dispenser1.StateWaitingForMoney -up-|> dispenser1.State dispenser2.DrinkDispenser o-- dispenser2.State : state dispenser2.StateReadyToServe -up-|> dispenser2.State dispenser2.StateWaitingForMoney -up-|> dispenser2.State war.Cannon .up.|> war.Attack war.Drive .up.|> war.Movements war.Firegun .up.|> war.Attack war.Fly .up.|> war.Movements war.Missile .up.|> war.Attack war.Run .up.|> war.Movements war.SMG .up.|> war.Attack war.Unit o-- war.Movements : moves war.Unit o-- war.Attack : stuff 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
7e22ec21da1f06633f188fb5b3d81c7d862f87a3
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Control/Data-Coordinator/Data-Exchange/Physical.puml
53cd0e4cf7a212b5088ab964255fbfdffa6c1966
[]
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
445
puml
@startuml rectangle "Diagram TBD" @enduml package "Control/Data Coordinator/Data Exchange" #lightblue { interface CLI interface Web interface REST folder bin #ffffff { component binName } folder appName #ffffff { component sails.io component sailsjs } folder uService1 #ffffff { component micro } } CLI -- binName binName -- REST Web -- sailsjs Web -- REST REST -- sailsjs Web -- sails.io REST -- micro
false
true
false
false
class
98cf4ab07b67b38fe11ca41f1dcbd6a5928c9c83
9522e945919518debdde400e4896dd9d45be3ff8
/docs/UML/BuyStockSequence.puml
68e4ac5952728ef4ccbf75c4a8bcaa866be0bec6
[]
no_license
AY2021S1-CS2113-T16-3/tp
d3a447af126522aa6e05c2e9b847bb96a8f6c04d
936f8b423d846b4688c1807c9eb059801162b581
refs/heads/master
2023-01-11T17:54:46.670067
2020-11-08T14:13:36
2020-11-08T14:13:36
300,200,418
0
4
null
2020-11-08T14:13:37
2020-10-01T08:13:56
Java
UTF-8
PlantUML
false
false
1,722
puml
@startuml participant ":Controller" as Controller participant ":StockPriceFetcher" as StockPriceFetcher participant ":PortfolioManager" as PortfolioManager participant ":Portfolio" as Portfolio participant ":Wallet" as Wallet participant ":Transaction" as Transaction participant ":Stock" as Stock [-> Controller : buyStock(symbol, quantity) activate Controller Controller -> StockPriceFetcher : fetchLatestPrice(symbol) activate StockPriceFetcher StockPriceFetcher --> Controller : price deactivate StockPriceFetcher Controller -> PortfolioManager : buyStock(symbol, quantity, price) activate PortfolioManager PortfolioManager -> Portfolio : buyStock(symbol, quantity, price) activate Portfolio Portfolio -> Wallet : buyStock(quantity, price) activate Wallet Wallet --> Portfolio : deactivate Wallet create Transaction Portfolio -> Transaction : new Transaction(quantity, price, time) activate Transaction Transaction --> Portfolio : transaction deactivate Transaction alt stock not in portfolio create Stock Portfolio -> Stock : new Stock(symbol) activate Stock Stock --> Portfolio deactivate Stock Portfolio -> Stock : addTransaction(transaction) activate Stock Stock --> Portfolio : deactivate Stock else stock already exist in portfolio Portfolio -> Stock : addTransaction(transaction) activate Stock Stock --> Portfolio : deactivate Stock end Portfolio --> PortfolioManager : deactivate Portfolio PortfolioManager -> PortfolioManager : save() activate PortfolioManager PortfolioManager --> PortfolioManager : deactivate PortfolioManager PortfolioManager --> Controller : deactivate PortfolioManager [<--Controller deactivate Controller @enduml
false
true
false
false
sequence
70321a9275bf1fdbe7af5598ae334e27c6be5c4b
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/DuplicateStandalonePriceScopeError.puml
90805ba4ff146bcdd4402444a6048f53f8c06a6e
[]
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
815
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 DuplicateStandalonePriceScopeError [[DuplicateStandalonePriceScopeError.svg]] extends ErrorObject { code: String message: String conflictingStandalonePrice: [[StandalonePriceReference.svg StandalonePriceReference]] sku: String currency: String country: String customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]] channel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] validFrom: DateTime validUntil: DateTime } interface ErrorObject [[ErrorObject.svg]] { code: String message: String } @enduml
false
true
false
false
class
e287b8628e7b926f01dae8a22c9f027ef1f3efcd
fa0d51fcf71279feeef4ebdb93567e78cd8ce80b
/src/main/resources/uml/main_class_diagram.puml
255c23097c5a9c69e13e425242719c66c24b651c
[]
no_license
gwwang/oop-metrics
5a595da1085200102d36d52f42906cd96584f568
38c8ee957dbc6e57511e335a4175718b09f5f21e
refs/heads/master
2021-01-01T20:38:55.885232
2017-10-06T04:04:26
2017-10-06T04:04:26
98,906,921
0
0
null
null
null
null
UTF-8
PlantUML
false
false
638
puml
@startuml class Simulator class Configuration class RandomStringService class RandomStringServiceClient interface Metrics interface MetricsFactory interface MetricsReporter interface MetricsReporterFactory MetricsFactory --> Metrics Simulator --> Configuration Simulator --> RandomStringServiceClient Simulator --> MetricsReporter Simulator --> MetricsFactory Simulator --> Metrics Configuration --> RandomStringServiceClient Configuration --> RandomStringService Configuration --> MetricsReporterFactory Configuration --> MetricsFactory Configuration --> MetricsReporter RandomStringServiceClient --> RandomStringService @enduml
false
true
false
false
class
5674b9295d1a58f937b6b5bf50841eedd2d5437e
1af73bef966991b60d1a1105b8a2ad6c0dca9d34
/doc/sub_client_short_disconnect.plantuml
5c037be0679764d136f140fbd2e1866412a17267
[ "BSD-3-Clause" ]
permissive
Vivian-2012/paf
825735d12fb09055721d966a176df8868bc41b91
1029c810974968d085b82e806fec46ec2a6de2ae
refs/heads/master
2023-08-23T03:40:14.069165
2021-10-22T08:04:46
2021-10-22T08:09:35
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,533
plantuml
@startuml participant "App A" as app_a << App >> participant "Lib A" as lib_a << PAF Library >> participant "Socket A" as sock_a << XCM Connection Socket >> participant "Server" as server << PAF Server >> participant "Socket B" as sock_b << XCM Connection Socket >> participant "Lib B" as lib_b << PAF Library >> participant "App B" as app_b << App >> app_a -> lib_a: Create Context app_a -> lib_a: Publish 0x4711 {'name': 'foo'} lib_a -> sock_a: Connect sock_a -> server: Establish TLS/TCP lib_a -> server: Protocol Hello lib_a -> server: Protocol Publish 0x4711 {'name': 'foo'} app_b -> lib_b: Create Context lib_b -> sock_b: Connect sock_b -> server: Establish TLS/TCP lib_b -> server: Protocol Hello app_b -> lib_b: Subscribe (name=foo) lib_b -> server: Protocol Subscribe (name=foo) server -> lib_b: Protocol Match: Appeared: 0x4711 {'name': 'foo'} lib_b -> app_b: Match Callback: Appeared: 0x4711 {'name': 'foo'} ... sock_b <-> server: Network Connectivity Lost ... sock_b -> lib_b: Connection Timed Out/Reset lib_b -> lib_b: Install Retry Timer (250 ms) lib_b -> lib_b: Install Orphan Timeout Timer (TTL) ... lib_b -> sock_b: Connect sock_b -> lib_b: Network is Unreachable ... lib_b -> sock_b: Connect sock_b -> server: Establish TLS/TCP lib_b -> server: Protocol Hello lib_b -> server: Protocol Subscribe (name=foo) server -> lib_b: Protocol Match: Appeared: 0x4711 {'name': 'foo'} lib_b -> lib_: Uninstall Orphan Timer note right: The application is not notified,since\nthis service is known and unchanged. @enduml
false
true
false
false
sequence
914078bff13f842c059fb6418dc879579fea13a8
961f5d9b3805e9905273778e4938b96640fb6293
/monads/monad-1.puml
3abb912a46364e4e11ab4d44efd94b9d316c695e
[ "MIT" ]
permissive
RodrigoMattosoSilveira/chess-tournament-swiss
bc60511ab9d301b38f3ca17f8c330e6fc4d002e7
1a19a3afb0664db7e5cb20bad287ee83bfd27e00
refs/heads/master
2023-07-09T00:11:16.254076
2021-07-30T22:50:55
2021-07-30T22:50:55
328,517,226
0
0
MIT
2021-01-12T03:41:28
2021-01-11T01:26:49
null
UTF-8
PlantUML
false
false
918
puml
@startuml participant "client: Client" as client participant "router: CommonRoutesConfig" as router participant "middleware: UserMiddleware" as middleware participant "controller: UserController" as controller participant "service: UserService" as service participant "dao: UserDao" as dao activate client activate router activate middleware activate controller activate service activate dao note over client: TD issues a user HTTP CRUD client->router: submit request router->middleware: Route the request middleware->middleware: validate request alt invalid middleware->client: return HTTP status=400, validation errors else valid middleware->controller: route it fwd controller->service: apply data logic service->dao: apply business logic dao->dao: execute datastore operation end group @enduml
false
true
false
false
sequence
5cd5e6670316fa6b651b02e774da1d6b9a3751ab
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProjectChangeNameAction.puml
f82042a772142e8d64d4d4c8c379e86fa6689414
[]
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
438
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 ProjectChangeNameAction [[ProjectChangeNameAction.svg]] extends ProjectUpdateAction { action: String name: String } interface ProjectUpdateAction [[ProjectUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
a60774ada9bc3c2b21cbfc620838606a43028fe2
29e499c7049d725de515d0f0294f765b6bbb4dc3
/DesignPattern/src/com/ilike/memento/Originator.puml
e22fee9f7687cbb63230e199e6afffb10d85c07e
[]
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
246
puml
@startuml class Originator class Memento class Caretaker class Client Memento <-- Originator Caretaker o--Memento Client <-- Originator Client <-- Memento class Memento{ String state; } class Caretaker{ List<Memento> mementos; } @enduml
false
true
false
false
class
7d1d3617854e45158711d89b4123e02284990a09
ea8df3c7306a15dcfe74e7faaa1c1b782a76ea83
/arc-core/src/main/resources/documentation/class-diagram-services.puml
c2533b6530fba900b8251f327d3a8848311c167a
[ "MIT" ]
permissive
InseeFr/ARC
0d1569bca2d1b0e26f57a2f7d2847b90b6fe04f6
7bfff28d86a6b4e728d1dc0e3872ac15ab8b87aa
refs/heads/master
2023-09-01T00:32:19.872539
2023-08-22T07:15:27
2023-08-22T07:15:27
187,840,296
13
8
MIT
2023-04-25T14:45:36
2019-05-21T13:12:52
Java
UTF-8
PlantUML
false
false
4,355
puml
@startuml hide empty members abstract class AbstractService [[java:fr.insee.arc.core.service.AbstractService]] { } interface IApiService [[java:fr.insee.arc.core.service.IApiService]] { } interface IDbConstant [[java:fr.insee.arc.core.model.IDbConstant]] { } interface IConstanteNumerique [[java:fr.insee.siera.textutils.IConstanteNumerique]] { } abstract class AbstractPhaseService [[java:fr.insee.arc.core.service.AbstractPhaseService]] { } interface IPhaseService [[java:fr.insee.arc.core.service.IPhaseService]] { } abstract class "AbstractThreadRunnerService<T extends AbstractThreadService>" as AbstractThreadRunnerService_AbstractThreadService_ [[java:fr.insee.arc.core.service.AbstractThreadRunnerService]] { } class ApiChargementService [[java:fr.insee.arc.core.service.ApiChargementService]] { } interface IApiServiceWithoutOutputTable [[java:fr.insee.arc.core.service.IApiServiceWithoutOutputTable]] { } class ApiControleService [[java:fr.insee.arc.core.service.ApiControleService]] { } interface IApiServiceWithOutputTable [[java:fr.insee.arc.core.service.IApiServiceWithOutput]] { } class ApiFiltrageService [[java:fr.insee.arc.core.service.ApiFiltrageService]] { } class ApiIdentificationService [[java:fr.insee.arc.core.service.ApiIdentificationService]] { } class ApiInitialisationService [[java:fr.insee.arc.core.service.ApiInitialisationService]] { } class ApiNormageService [[java:fr.insee.arc.core.service.ApiNormageService]] { } class ApiReceptionService [[java:fr.insee.arc.core.service.ApiReceptionService]] { } class MappingService [[java:fr.insee.arc.core.service.mapping.MappingService]] { } package Thread <<Rectangle>> { abstract class AbstractThreadService [[java:fr.insee.arc.core.service.thread.AbstractThreadService]] { } interface Runnable [[java:java.lang.Runnable]] { } class ThreadChargementService [[java:fr.insee.arc.core.service.thread.ThreadChargementService]] { } class ThreadControleService [[java:fr.insee.arc.core.service.thread.ThreadControleervice]]{ } class ThreadFiltrageService [[java:fr.insee.arc.core.service.thread.ThreadFiltrageService]]{ } class ThreadIdentificationService [[java:fr.insee.arc.core.service.thread.ThreadIdentificationService]]{ } class ThreadMappingService [[java:fr.insee.arc.core.service.thread.ThreadMappingService]]{ } class ThreadNormageService [[java:fr.insee.arc.core.service.thread.ThreadNormageService]]{ } interface IRulesUserService [[java:fr.insee.arc.core.service.thread.IRulesUserService]] { } } AbstractService <|-- AbstractPhaseService IApiService <|.. AbstractService IDbConstant <|.. AbstractService IConstanteNumerique <|.. AbstractService IPhaseService <|.. AbstractPhaseService AbstractService <|-- AbstractThreadService Runnable <|.. AbstractThreadService AbstractPhaseService <|-- AbstractThreadRunnerService_AbstractThreadService_ AbstractThreadRunnerService_AbstractThreadService_ <|-- ApiChargementService IApiServiceWithOutputTable <|.up. ApiChargementService AbstractThreadRunnerService_AbstractThreadService_ <|-- ApiControleService IApiServiceWithOutputTable <|.up. ApiControleService AbstractThreadRunnerService_AbstractThreadService_ <|-- ApiFiltrageService IApiServiceWithOutputTable <|.up. ApiFiltrageService AbstractThreadRunnerService_AbstractThreadService_ <|-- ApiIdentificationService IApiServiceWithoutOutputTable <|.up. ApiIdentificationService IApiServiceWithoutOutputTable <|.up. ApiInitialisationService IApiServiceWithoutOutputTable <|.up. ApiReceptionService AbstractPhaseService <|-- ApiInitialisationService AbstractThreadRunnerService_AbstractThreadService_ <|-- ApiNormageService IApiServiceWithOutputTable <|.up. ApiNormageService AbstractPhaseService <|-- ApiReceptionService AbstractThreadRunnerService_AbstractThreadService_ <|-- MappingService IApiServiceWithOutputTable <|.up. MappingService AbstractThreadService <|-right- ThreadChargementService AbstractThreadService <|-- ThreadControleService AbstractThreadService <|-- ThreadFiltrageService AbstractThreadService <|-- ThreadIdentificationService AbstractThreadService <|-- ThreadMappingService AbstractThreadService <|-- ThreadNormageService IRulesUserService <|.. ThreadNormageService IRulesUserService <|.. ThreadFiltrageService AbstractThreadRunnerService_AbstractThreadService_ -right->"1..*" AbstractThreadService : lance @enduml
false
true
false
false
sequence
7e03b761011663e7f4493b50d43979d84321a9e3
277448f6e83236a8a92eb44ece7d004c2a212f85
/docs/diagrams/ArchitechtureSequence.puml
83f327cfa0b02f9894bdd20ad5f13edd1cd06379
[]
no_license
Lee-Juntong/tp
73ac82cd30fd0159a60d6b5bb7aad8879551f323
a30ee327c31ccc7e5a57cdec65afd9a6e5e2e59d
refs/heads/master
2023-01-09T11:30:11.655268
2020-11-13T06:06:45
2020-11-13T06:06:45
300,521,331
0
0
null
2020-11-13T04:07:05
2020-10-02T06:25:15
Java
UTF-8
PlantUML
false
false
433
puml
@startuml @startuml Actor User User -> ui : "edit 1" activate ui ui -> logic : readCommand("edit 1") activate logic logic -> model :execute(1) activate model model -> logic deactivate model logic -> storage : activate storage storage -> storage : Save to file activate storage storage --> storage deactivate storage storage --> logic deactivate storage logic --> ui deactivate logic ui--> user deactivate ui @enduml @enduml
false
true
false
false
usecase
9014cf10b9b06c0082561977f2268f961e84798a
d2c96f969cd4a57d2fef25280205e11be26a64b4
/de.gematik.ti.utils/src/main/java/de/gematik/ti/utils/streams/exceptions/exceptions.plantuml
c2157d98bb708edbd3361b76606f4501049dd10e
[ "Apache-2.0" ]
permissive
gematik/ref-Ti-Utils
cfe9a03769e801529bf652528828083f0cc767b1
be995beba79613c5242be9c5388952c7816782e5
refs/heads/master
2022-01-15T08:47:41.366276
2022-01-07T07:23:43
2022-01-07T07:23:43
232,986,325
1
0
null
null
null
null
UTF-8
PlantUML
false
false
602
plantuml
@startuml title __EXCEPTIONS's Class Diagram__\n namespace de.gematik.ti.utils.streams { namespace exceptions { class de.gematik.ti.utils.streams.exceptions.StreamRuntimeException { + StreamRuntimeException() + StreamRuntimeException() + StreamRuntimeException() + StreamRuntimeException() + StreamRuntimeException() } } } 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
40f8a58a3c9ad5a06fe85cd0a0044f0e4d2d3a76
6f9566c44e5057a4c32a39985b713e7715e6cffa
/uml/snenglish/user.plantuml
b49e4391004b02163758334a7ba36da7a16b1921
[]
no_license
Alexander-Zyurkalov/MakePhrases
e1ffd9e61a83c14265ae5a62923cb3e813ccf115
332428a45105780c080a02c378477c5253e0e24e
refs/heads/master
2020-03-28T11:19:49.916959
2018-12-01T18:43:08
2018-12-01T18:43:08
148,202,580
0
0
null
null
null
null
UTF-8
PlantUML
false
false
275
plantuml
@startuml package SNEnglish{ class User{ id account_name } class UsersEnglishWords{ id user_id english_word_id } User "*" --o "*" EnglishWord: has_many (User,EnglishWord) .. UsersEnglishWords } @enduml
false
true
false
false
class
0282c3d26b3eae3004f5394fd1a48416a230d1f2
de0aea976255b18123dfb3ff5cd037f198b6d2fb
/src/test/java/be/tomcools/advancedtestingpatterns/full-view.puml
132fabbc10035cbbdb586337daaedd8deb2f23a6
[]
no_license
MahatmaFatalError/AdvancedTestingPatterns
fb0fb39881c284fe365570c5c609b3e32c806f0a
7c574c0138c332a70d924ffbc79e53ff69cae7b1
refs/heads/master
2023-02-22T14:10:24.363528
2021-01-26T13:06:24
2021-01-26T13:06:24
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
261
puml
@startuml cloud { [Velo Service] as velo } package "IN OUR CONTROL" { database Database package "Spring Boot" { [Spring Boot Service] <--> Database [Spring Boot Service] <--> velo: Sync every 30 seconds } } HTTP --> [Spring Boot Service]: REST API @enduml
false
true
false
false
sequence
1407c54c7526059703cb976d1dbbfcf4ed757d0e
ee05ebec709569bf4144cf7f7fc28592be2023f7
/docs/design/db/ruinsdb.puml
6d13c7aa4bca043bdff16b38fe3e8060dbde4ed1
[ "MIT" ]
permissive
canonn-science/CanonnApi
35bbe3b20cf08eaee7eb1a90a5319b927d60c584
f3c9d6d3a2d426a42bebd701765d47ac00374e9e
refs/heads/master
2021-06-30T22:56:24.874421
2017-07-03T19:15:53
2017-07-03T19:15:53
82,414,162
3
2
null
2017-07-23T10:42:45
2017-02-18T20:30:12
C#
UTF-8
PlantUML
false
false
2,708
puml
@startuml object artifact artifact : id = INT artifact : name = VARCHAR(50) artifact : created = DATETIME artifact : updated = DATETIME object codex_category codex_category : id = INT codex_category : artifact_id = INT codex_category : name = VARCHAR(50) codex_category : created = DATETIME codex_category : updated = DATETIME codex_category "0..1" -- "1" artifact object codex_data codex_data : id = INT codex_data : category_id, INT codex_data : entry_number = INT codex_data : artifact_id = INT codex_data : text = TEXT codex_data : created = DATETIME codex_data : updated = DATETIME codex_data "1..n" -- "1" codex_category codex_data "0..n" -- "0..1" artifact object ruin_type ruin_type : id = INT ruin_type : name = VARCHAR(50) ruin_type : created = DATETIME ruin_type : updated = DATETIME object obelisk_group obelisk_group : id = INT obelisk_group : ruintype_id = INT obelisk_group : name = VARCHAR(50) obelisk_group : count = INT obelisk_group : created = DATETIME obelisk_group : updated = DATETIME obelisk_group "0..n" -- "1" ruin_type object obelisk obelisk : id = INT obelisk : obeliskgroup_id = INT obelisk : number = INT obelisk : is_broken = BOOL obelisk : is_verified = BOOL obelisk : codexdata_id = INT obelisk : created = DATETIME obelisk : updated = DATETIME obelisk "1..n" -- "1" obelisk_group obelisk "0..1" -- "0..1" codex_data object system system : id = INT system : name = VARCHAR(150) system : edsm_coord_x = FLOAT system : edsm_coord_y = FLOAT system : edsm_coord_z = FLOAT system : edsm_coord_updated = DATETIME system : edsm_ext_id = INT (id from EDSM) system : eddb_ext_id = INT (id from EDDB) system : created = DATETIME system : updated = DATETIME object body body : id = INT body : system_id = INT body : name = VARCHAR(150) body : distance = INT (from EDSM) body : edsm_ext_id = INT (id from EDSM) body : eddb_ext_id = INT (id from EDDB) body : created = DATETIME body : updated = DATETIME body "0..n" -- "1" system object ruin_site ruin_site : id = INT ruin_site : body_id = INT ruin_site : latitude = DECIMAL(6,4) ruin_site : longitude = DECIMAL(7,4) ruin_site : ruintype_id = INT ruin_site : created = DATETIME ruin_site : updated = DATETIME ruin_site "0..n" -- "1" body ruin_site "0..n" -- "1" ruin_type object ruinsite_obeliskgroups ruinsite_obeliskgroups : ruinsite_id = INT ruinsite_obeliskgroups : obeliskgroup_id = INT ruinsite_obeliskgroups "0..n" -- "1" ruin_site ruinsite_obeliskgroups "0..n" -- "1" obelisk_group object ruinsite_activeobelisks ruinsite_activeobelisks : ruinsite_id = INT ruinsite_activeobelisks : obelisk_id = INT ruinsite_activeobelisks "0..n" -- "1" ruin_site ruinsite_activeobelisks "0..n" -- "1" obelisk @enduml
false
true
false
false
class
52e374feb3ec21ebfed0983defdf7544a58c9882
e9a509d407c67748b61f877a61c661d6b8f7b68c
/doc/class.puml
7a54cc640072f0c27625cdaca19a3acd86e35335
[ "MIT" ]
permissive
FuSoftware/Mirapol
bca0072dec1c9914d4fc1037311365e6ee856320
eedd36a33360e637f93d02d8f4a01baa589b3179
refs/heads/master
2020-03-26T02:09:26.070991
2018-08-12T15:45:48
2018-08-12T15:45:48
144,398,958
1
0
null
null
null
null
UTF-8
PlantUML
false
false
890
puml
@startuml package vendor { class jQuery << (L,#FF7700) >> class Marked << (L,#FF7700) >> } package Mirapol{ package Logic{ class StoryFormat{ } class Story{ string name string ifid string[] styles string[] scripts Passages[] passages Macros[] macros } class Passage{ Story parent string name string source HTMLNode[] hooks html build() void show() void hide() } class Macro{ } } package Interface{ class UI{ } } } StoryFormat ... Marked StoryFormat ... jQuery Story ... jQuery Passage ... Marked Passage ... jQuery StoryFormat *-- "1" Story Story "1" *-- "many" Passage Story "1" *-- "many" Macro @enduml
false
true
false
false
class
28e2e7d8693e73663e3541d091002ef4a2444e57
ee5915cdc264c73f29afcfffb75825256a58bc0a
/src/main/java/es/ull/ull.plantuml
ce5b5bc90a430f4b6821dd5d1bd440adb4a0a88a
[]
no_license
SamuelFumeroHdez/TwitterObserver
eb612dd1f7f0111c0efeb7b61f6971074aaa5616
eaf27d54353c902f74de4c9b24512119a4dfff0a
refs/heads/main
2023-08-25T01:29:46.834998
2021-11-09T10:17:00
2021-11-09T10:17:00
323,710,480
0
0
null
null
null
null
UTF-8
PlantUML
false
false
630
plantuml
@startuml title __ULL's Class Diagram__\n namespace es.ull { class es.ull.VentanaPrincipal { + VentanaPrincipal() {static} + main() } } es.ull.VentanaPrincipal -up-|> javax.swing.JFrame es.ull.VentanaPrincipal o-- es.ull.views.VistaCovid : vistaCovid es.ull.VentanaPrincipal o-- es.ull.views.VistaTwitter : vistaTwitter es.ull.VentanaPrincipal o-- es.ull.views.VistaWeather : vistaWeather 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
76a8803ad4d02da34654a3f4420563c5b819fa53
5800614831fe34568bc7083d979c33b3af0fca57
/doc/uml/0_ListUseCases.puml
d421ac81c3f11e15dd8f331d03495a5b0c19aff4
[]
no_license
BapPerraud/oc_dapython_pr4
895d084cced0e78450cb51dfd4b54e4644434727
a40e99753a72bef83228abe70a00b60521635012
refs/heads/master
2020-04-15T07:29:02.312768
2019-01-06T22:23:09
2019-01-06T22:23:09
164,495,328
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,577
puml
@startuml 0_ListUseCases title <u>Liste des cas d'utilisation</u> 'Create 'Read 'Update 'Delete skinparam package { backgroundColor<<Commandes>> Gold backgroundColor<<Pizza_Recette>> Tomato backgroundColor<<ingredients_stock>> OliveDrab } skinparam rectangle{ backgroundColor White } ' COMMANDES package Commandes <<Commandes>> { left to right direction rectangle Create_C { (créer une commande) AS CREATE_CMD } rectangle Read_C { (voir l'etat d'une commande) AS SHOW_STATE_CMD (lister les commades) AS LIST_CMD } rectangle Update_C { (modifier l'état d'une commande) AS MODIFY_STATE_CMD (payer en ligne) AS PAY_ONLINE_CMD (payer sur place) AS PAY_STORE_CMD (annuler une commande) AS CANCEL_CMD } rectangle Delete_C { } } ' RECETTE package Pizza_Recette <<Pizza_Recette>> { rectangle Ceate_R { (rédiger une recette) AS CREATE_RECIPE } rectangle Read_R { (consulter la liste des recettes) AS LIST_RECIPE (consulter une recette) AS SHOW_RECIPE (vérifier la disponibilité d'une pizza) AS AVAIL_RECIPE } rectangle Update_R { (modifier une recette) AS MODIFY_RECIPE } rectangle Delete_R { (supprimer une recette) AS DEL_RECIPE } } ' INGREDIENTS package ingrédients_stock <<ingredients_stock>> { rectangle Create_S{ (créer un ingrédient) AS CREATE_ITEM } rectangle Read_S { (consulter la liste d'ingrédients) AS LIST_ITEM (consulter le stock d'ingrédient) AS SHOW_ITEM } rectangle Update_S { (définir le stock) AS SET_ITEN } rectangle Delete_S{ } } ' 'COMMANDES ' (créer une commande) AS CREATE_CMD ' (lister les commades) AS LIST_CMD ' (voir l'etat d'une commande) AS SHOW_STATE_CMD ' (modifier l'état d'une commande) AS MODIFY_STATE_CMD ' (payer en ligne) AS PAY_ONLINE_CMD ' (payer sur place) AS PAY_STORE_CMD ' (annuler une commande) AS CANCEL_CMD ' ' RECETTE ' (rédiger une recette) AS CREATE_RECIPE ' (consulter la liste des recettes) AS LIST_RECIPE ' (consulter une recette) AS SHOW_RECIPE ' (vérifier la disponibilité d'une pizza) AS AVAIL_RECIPE ' (modifier une recette) AS MODIFY_RECIPE ' (supprimer une recette) AS DEL_RECIPE ' ' INGREDIENTS ' (créer un ingrédient) AS CREATE_ITEM ' (consulter la liste d'ingrédients) AS LIST_ITEM ' (consulter le stock d'ingrédient) AS SHOW_ITEM ' (définir le stock) AS SET_ITEN @enduml
false
true
true
false
uml-unknown
e0bf1714de9f1a6c87dc01330a427c11dd5a892e
705261cab29d30d45e00b02933f9c7ab8f309119
/docs/design/domain-model/data-mapper.puml
8c0f2b3ccc2c1ed9e59e4490049f904c32620fe1
[ "Apache-2.0" ]
permissive
gauravchug/open-kilda
c1fc2de126fa09e67e21f12be47b0892b0d19c18
a6ac3343a29f8934d2f872d8d50f9cc45584e273
refs/heads/develop
2023-08-30T21:42:27.346545
2019-04-09T13:59:43
2019-04-09T13:59:43
131,945,988
2
0
Apache-2.0
2023-08-24T19:52:00
2018-05-03T05:30:29
Java
UTF-8
PlantUML
false
false
1,493
puml
@startuml title Sample of Domain Model with DataMapper pattern actor FL box "Transport Layer" #Orange participant Kafka participant Storm end box box "Service Layer" #LightYellow participant SwitchService end box box "Domain Model Layer" #LightBlue participant Switch end box box "Database Layer" #LightGreen participant SwitchDataMapper participant DB end box == Create Switch == FL -> Kafka : switch added Kafka -> Storm Storm -> SwitchService activate SwitchService create Switch SwitchService -> Switch : create Switch SwitchService <- Switch SwitchService -> SwitchDataMapper : save(Switch) activate SwitchDataMapper SwitchDataMapper -> DB : create entity in DB SwitchDataMapper <- DB SwitchService <- SwitchDataMapper deactivate SwitchDataMapper deactivate SwitchService == Update Switch == FL -> Kafka : switch changed Kafka -> Storm Storm -> SwitchService activate SwitchService SwitchService -> SwitchDataMapper : getSwitchById activate SwitchDataMapper SwitchDataMapper -> DB : get entity from DB SwitchDataMapper <- DB SwitchDataMapper -> SwitchDataMapper: Map data from DB to Domain Object SwitchService <- SwitchDataMapper : return Switch deactivate SwitchDataMapper SwitchService -> SwitchService : update Switch state SwitchService -> SwitchDataMapper : save(Switch) activate SwitchDataMapper SwitchDataMapper -> DB : update entity in DB SwitchDataMapper <- DB SwitchService <- SwitchDataMapper deactivate SwitchDataMapper deactivate SwitchService @enduml
false
true
false
false
usecase
931e12079207b69aca5fb61c1c6f7c3cb90ab951
d63903de82e08feae773eb5bb37d46083c3ebf89
/target/classes/uml/kynamic.puml
936fb77f74f82f102015c2a0e1889145d4bd5b43
[]
no_license
ZCQ520/micro_enterprise_oa
35dd03372a0b91c53fd44b75679ca601d5c42709
fe1f77036bdeb064a848834ecf11f9ee35364ce0
refs/heads/master
2021-09-14T10:47:09.653709
2018-05-12T07:47:59
2018-05-12T07:47:59
107,938,216
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,411
puml
@startuml class KynamicController interface KynamicService class KynamicServiceImpl interface KynamicMapper KynamicController --|> KynamicService KynamicService <-- KynamicServiceImpl KynamicServiceImpl --|> KynamicMapper class KynamicController{ KynamicService kynamicService String list(Model model) String showCurrentNodeList(Model model, Kynamic kynamic) List<Kynamic> showKynamicTree() String saveUI(Model model, String currentPath, Integer pid) String addOrUpdateFolder(Model model,Kynamic kynamic) String addUI(Model model, String currentPath, Integer pid) String uploadFile(Model model, Kynamic kynamic, MultipartFile resource) String addUI(Model model, String currentPath, Kynamic kynamic) String fileAttribution(Model model, String currentPath, Kynamic kynamic) String updateFileDesc(Kynamic kynamic) String renameFileUI(Model model, Kynamic kynamic) String renameFolderUI(Model model, Kynamic kynamic) String renameKynamic(Model model, Kynamic kynamic, String oldName) String deleteNode(Model model, Kynamic kynamic) ResponseEntity<byte[]> deleteNode(Kynamic kynamic) } interface KynamicService{ List<Kynamic> getAllKynamic() Integer saveKynamic(Kynamic kynamic) boolean deleteKynamicById(Integer id) void updateKynamic(Integer id, String name) List<KynamicDTO> getRootKynamicList() List<KynamicDTO> getCurrentNodeList(Integer pid) String getCurrentPathById(Integer id) Kynamic getKynamicById(Integer id) Kynamic getRootKynamic() void addOrUpdateKynamic(Kynamic kynamic) void updateFileKynamic(Kynamic kynamic) boolean updateKynamicName(Kynamic kynamic) } class KynamicServiceImpl{ KynamicMapper kynamicMapper List<Kynamic> getAllKynamic() Integer saveKynamic(Kynamic kynamic) boolean deleteKynamicById(Integer id) void updateKynamic(Integer id, String name) List<KynamicDTO> getRootKynamicList() List<KynamicDTO> getCurrentNodeList(Integer pid) String getCurrentPathById(Integer id) Kynamic getKynamicById(Integer id) Kynamic getRootKynamic() void addOrUpdateKynamic(Kynamic kynamic) void updateFileKynamic(Kynamic kynamic) boolean updateKynamicName(Kynamic kynamic) private List<KynamicDTO> getKynamicDTOList(List<Kynamic> kynamicList) } interface KynamicMapper{ Kynamic getRoot() List<Kynamic> getKynamicListByPid(Integer pid) List<Kynamic> getKynamicFolderListByPid(Integer pid) List<Kynamic> getKynamicFileListByPid(Integer pid) Kynamic getKynamicByMap(Map<String, Object> map) } @enduml
false
true
false
false
class
50ede237b0a7f76e8e9c5ca564c05850278d7432
4d5a06fd943002161cbc4969033382b2165bd727
/samples/Hello World.puml
3a9b2601d5347fa6050b3404643c4a5381e8e252
[ "MIT" ]
permissive
NicoJuicy/Azure-PlantUML
7ff338f2d1a8c31980635ea50cc915128f4d1643
fd46c4c5b3999b7c289f1bb755adc59cdbf82aaf
refs/heads/master
2023-01-27T12:43:15.583259
2023-01-02T12:27:45
2023-01-02T12:27:45
239,044,077
0
0
MIT
2023-01-18T17:19:27
2020-02-08T00:04:26
null
UTF-8
PlantUML
false
false
521
puml
@startuml Hello World !pragma revision 1 !define AzurePuml https://raw.githubusercontent.com/plantuml-stdlib/Azure-PlantUML/master/dist !includeurl AzurePuml/AzureCommon.puml !includeurl AzurePuml/Databases/all.puml !includeurl AzurePuml/Compute/AzureFunction.puml actor "Person" as personAlias AzureFunction(functionAlias, "Label", "Technology", "Optional Description") AzureCosmosDb(cosmosDbAlias, "Label", "Technology", "Optional Description") personAlias --> functionAlias functionAlias --> cosmosDbAlias @enduml
false
true
false
false
usecase
d5b872f32849bbd6b1738982a1564cdde40b1c7e
95db096f36828b7124792f7ce52368a58783e9e9
/docs/javadocs/soen6441riskgame/utils/map/package-summary.puml
66bceb6d181eb0e7d821e79bcfffa0e774380ce3
[]
no_license
huntertran/soen6441-riskgame
81af179068618a3870b14ef46cf51ea65c31ac6b
f6605e3c5bdd3346f65288c96de6d169faa47f00
refs/heads/master
2023-06-22T21:10:32.772010
2021-03-31T21:48:30
2021-04-02T03:19:34
209,664,319
2
1
null
2023-06-14T22:29:59
2019-09-19T23:16:40
Java
UTF-8
PlantUML
false
false
1,887
puml
@startuml skinparam svgLinkTarget _parent skinparam linetype ortho package soen6441riskgame.utils.map [[../../../soen6441riskgame/utils/map/package-summary.html{soen6441riskgame.utils.map}]] #lightyellow { } interface "<b><size:14>ConquestMapReadable</b>" as soen6441riskgame.utils.map.ConquestMapReadable [[../../../soen6441riskgame/utils/map/ConquestMapReadable.html{soen6441riskgame.utils.map.ConquestMapReadable}]] { } hide soen6441riskgame.utils.map.ConquestMapReadable fields hide soen6441riskgame.utils.map.ConquestMapReadable methods interface "<b><size:14>DominationMapReadable</b>" as soen6441riskgame.utils.map.DominationMapReadable [[../../../soen6441riskgame/utils/map/DominationMapReadable.html{soen6441riskgame.utils.map.DominationMapReadable}]] { } hide soen6441riskgame.utils.map.DominationMapReadable fields hide soen6441riskgame.utils.map.DominationMapReadable methods interface "<b><size:14>MapReadable</b>" as soen6441riskgame.utils.map.MapReadable [[../../../soen6441riskgame/utils/map/MapReadable.html{soen6441riskgame.utils.map.MapReadable}]] { } hide soen6441riskgame.utils.map.MapReadable fields hide soen6441riskgame.utils.map.MapReadable methods class "<b><size:14>MapReaderAdapter</b>" as soen6441riskgame.utils.map.MapReaderAdapter [[../../../soen6441riskgame/utils/map/MapReaderAdapter.html{soen6441riskgame.utils.map.MapReaderAdapter}]] { } hide soen6441riskgame.utils.map.MapReaderAdapter fields hide soen6441riskgame.utils.map.MapReaderAdapter methods soen6441riskgame.utils.map.ConquestMapReadable --|> soen6441riskgame.utils.map.MapReadable soen6441riskgame.utils.map.DominationMapReadable --|> soen6441riskgame.utils.map.MapReadable soen6441riskgame.utils.map.MapReaderAdapter ..|> soen6441riskgame.utils.map.DominationMapReadable soen6441riskgame.utils.map.MapReaderAdapter ..|> soen6441riskgame.utils.map.ConquestMapReadable @enduml
false
true
false
false
class
78da40144aa611e4fccf3436fbb92180fba644a0
ca013075cc64e307300f4f39a45727ed389563b8
/en-diagram/src/test/java/com/g2forge/enigma/diagram/plantuml/model/klass/stereotypes.puml
c40851b098aa87919d776be6528e7149ef2d714a
[ "Apache-2.0" ]
permissive
g2forge/enigma
6032e09ac347f1ef07853664a04412983b4b4423
dcd5cbee7664c60334cff9b69502dd0850d8e662
refs/heads/master
2022-07-21T12:47:16.635047
2022-06-30T00:19:27
2022-06-30T00:19:27
113,804,682
1
1
Apache-2.0
2022-06-30T00:19:28
2017-12-11T02:51:51
Java
UTF-8
PlantUML
false
false
96
puml
class Object << general >> class System << (S,#FF7700) Singleton >> class Date << (D,orchid) >>
false
true
false
false
class
6f046b11c790f3e2e389417df5827d65067ddc01
dcaf0113e81f2883beff505020ec4b941e22ffc6
/uml/tp_lab_rab_1.puml
9bbe5df46068f1d70b65593b10cf7fcce1440fa5
[]
no_license
8785496/tp_lab_rab_1
15018e9073389910258924833e5c46870cfa2c87
afab11a29d92d844541ae7e59a7416d93e09a820
refs/heads/master
2021-01-18T05:13:35.173991
2017-04-04T12:38:04
2017-04-04T12:38:04
84,278,618
0
0
null
null
null
null
UTF-8
PlantUML
false
false
759
puml
@startuml class App { - GraphDelete *graph - void InitFromMatrix(char *fname) - void InitFromList(char *fname) - void InitFromStream() - void Find(int) + void Init(int *argc, char **argv) } class GraphBase { # vector<vector<int>> list # bool ValidateMatrix(int m, int n, int **matrix) # bool ValidateList(vector<vector<int>> &list) + GraphBase(int m, int n, int **matrix) + GraphBase(vector<vector<int>> &list) } class GraphWrite { + string ToString() } class GraphFind { + int Find(int, vector<int> &path) } class GraphDelete { + void Del(int index) } GraphBase <|-- GraphWrite GraphWrite <|-- GraphFind GraphFind <|-- GraphDelete App *- GraphDelete @enduml
false
true
false
false
class
706141f042fd96602ae0f8b80d6eeba55b5db2f6
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StandalonePriceStagedChangesAppliedMessagePayload.puml
eceb84482267ca0649346dcd8cb09e3789aa30e5
[]
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
525
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 StandalonePriceStagedChangesAppliedMessagePayload [[StandalonePriceStagedChangesAppliedMessagePayload.svg]] extends MessagePayload { type: String stagedChanges: [[StagedStandalonePrice.svg StagedStandalonePrice]] } interface MessagePayload [[MessagePayload.svg]] { type: String } @enduml
false
true
false
false
class
54c03699ecd367c3497b9c579205b354ce6fb9c0
e6a585dfa5292761773d2d523832eef2b49e8e9d
/docs/diagrams/Delete_Reco_Sequence.puml
5eae24b2880671c304fa393ec3d46c17f6cd46f7
[]
no_license
AY2021S2-CS2113T-F08-3/tp
82d8b49f18290b6e0d37f1aaa77b711455ace50f
27db5d4a86be5478fc4e8258997fb8c83257cec6
refs/heads/master
2023-04-14T04:07:25.089995
2021-04-12T16:53:53
2021-04-12T16:53:53
344,644,739
0
4
null
2021-04-12T15:56:05
2021-03-05T00:12:02
Java
UTF-8
PlantUML
false
false
996
puml
@startuml Delete_Reco_Sequence_Diagram !define LIGHTBLUE !includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml skinparam style strictuml participant Ui #Turquoise participant Parser #PaleGreen participant Commands #PaleGreen participant RecommendationList #Gold activate Ui #Turquoise Ui -> Parser : determineCommand('delete title') activate Parser #PaleGreen Parser -> Commands : delete(title) activate Commands #PaleGreen Commands -> RecommendationList : deleteRecommendation(title) activate RecommendationList #Gold alt missing title RecommendationList --> Ui : missing title else recommendation does not exist RecommendationList --> Ui : invalid title else recommendation exists RecommendationList -> RecommendationList : remove recommendation end RecommendationList --> Commands deactivate RecommendationList Commands --> Parser deactivate Commands Parser --> Ui deactivate Parser @enduml
false
true
false
false
sequence
f13da5cc69e96ffe39b728add82e503e2b0160c8
dc147c1a9cf9a1579db5af35375fbbc0900ba706
/Project/Documents/EndSequenceHardware.puml
6ab489db517f96efbafc08b1f68e1f64f7df8f65
[]
no_license
nus-wira/CG2271
a10d244b9a6084fb9f69eff11c9b85a8236a238d
88b7a5c7a06a87796ae062a0ccdd36217b148adf
refs/heads/master
2023-02-09T17:41:56.332520
2021-05-11T09:36:16
2021-05-11T09:36:16
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
458
puml
@startuml autoactivate on actor User box Hardware participant ":MobileApp" as app participant ":BT06" as BT participant ":FRDM-KL25" as FRDM participant ":Buzzer" as buzzer end box box Software participant ":main" as main end box User -> app : "End" app -> BT : sends 0x41 ('A') BT -> FRDM : 0x41 FRDM -> main : NVIC_IRQHandler() main -> FRDM FRDM -> buzzer : drive buzzer --> FRDM FRDM --> main main --> FRDM FRDM --> BT BT --> app app --> User @enduml
false
true
false
false
usecase
4f9755688d7b7fa4d346e8e1968ea28a4ed7542e
6404a20d88472dc6e4fba1fd93dee31122429ff9
/docs/diagrams/ReportArchitectureSummary.puml
3f9a9612adcfb47bb2781cf9afc276f72a895aa0
[ "MIT" ]
permissive
litone01/RepoSense
d23e146bcfaeda3d67c517d6962d1705b6664bfb
3b569cc6f25eed225ddafb89d580f759a4ef2fd7
refs/heads/master
2023-07-10T08:05:25.741892
2021-08-12T05:07:36
2021-08-12T05:07:36
373,574,884
0
0
MIT
2021-06-20T10:02:41
2021-06-03T16:33:18
null
UTF-8
PlantUML
false
false
736
puml
@startuml hide footbox skinparam monochrome true skinparam Shadowing false Participant ":Main\n(window.app)" as main Participant ":Summary\n(v_summary.js)" as summary Participant ":API\n(api.js)" as api Participant ":Ramp\n(v_ramp.js)" as ramp -> main : page load activate main loop repo in summary.json main -> api : loadCommits(repo) activate api api --> main deactivate api end main -> summary : get summary view activate summary summary -> main : get filter params activate main main --> summary : window.hashParams deactivate main create ramp summary -> ramp : get ramp view activate ramp ramp --> summary : ramp view deactivate ramp summary --> main : summary view deactivate summary <-- main deactivate main @enduml
false
true
false
false
sequence
f3be149e7b7b80a6df3d4cd36cbc011f79f4f5dd
d827540cbf464c3c09194c3022598f94043a04f8
/puml-diagrams/cd_RT.puml
f7dc040d10d58e6410cc4163ad12226c6f697d78
[]
no_license
gliasphaltatori/pagopa-specifichepagamenti-docs
25f671a585e50a68a02291378ac28f0767b14866
49c30c276bff9109f36e598f9678b94b58a9a997
refs/heads/master
2023-04-30T21:55:52.268768
2021-05-11T08:08:00
2021-05-11T08:08:00
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
387
puml
@startuml title Relationships - Class Diagram class RT { } class RPT class Dominio{ } class Soggetto { } class PSP { } class EC { } class Pagamento { } RT *-- Soggetto : soggettoVersante RT *-- Soggetto : soggettoPagatore RT *-- Dominio : dominio RT *-- EC : enteBeneficiario RT *-- PSP : istitutoAttestante RT *-- Pagamento : datiPagamento RT o-- RPT : richiesta @enduml
false
true
false
false
class
2ffd18dd25c7474dc8773f08de0a3f734f66f251
dedb4508c600a75d8fc61dbd1d4bf5279a3fee18
/app_in_studio/android/app/src/main/java/app/swust/edu/cn/app_in_studio/app_in_studio.plantuml
b9ac7abb0a3bcebd252b244ff057e6b7b26eb081
[]
no_license
likping/baidu_disk
f734ddfd6a44b05d2dc41420b1a64ab8a8aa5839
ef13d68cd4aba23f73c66476b6912c49241e1a06
refs/heads/master
2022-10-23T01:27:27.800032
2020-06-10T07:09:23
2020-06-10T07:09:23
267,245,354
0
0
null
null
null
null
UTF-8
PlantUML
false
false
389
plantuml
@startuml title __APP_IN_STUDIO's Class Diagram__\n namespace app.swust.edu.cn.app_in_studio { class app.swust.edu.cn.app_in_studio.MainActivity { # onCreate() } } 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
c81643f6ae8ff228d7e8abcd8277a992ae220ace
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ShippingMethodPagedQueryResponse.puml
40ad012a4217c916be44d12384609e63d63d6c70
[]
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
434
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 ShippingMethodPagedQueryResponse [[ShippingMethodPagedQueryResponse.svg]] { limit: Long count: Long total: Long offset: Long results: [[ShippingMethod.svg List<ShippingMethod>]] } @enduml
false
true
false
false
class
e178490fc05214d2a1fb55a4b22f703b0f1d5fde
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.collab-proxy@1.2.16/Editor/Collab/Views/BuildStatusButton.puml
b42b9ac428f331344af0fb2a0d0aeb6eb7cdb7dc
[]
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
279
puml
@startuml class BuildStatusButton { + BuildStatusButton(clickEvent:Action) + BuildStatusButton(clickEvent:Action, state:BuildState, failures:int) } Button <|-- BuildStatusButton BuildStatusButton o-> "labelElement" Label BuildStatusButton o-> "iconElement" Image @enduml
false
true
false
false
class
8e21342b25748641b1a260f3f7f74af507bee376
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ParcelDraft.puml
f1f5a44966f701f411aa1b7c35042d00f12f65ad
[]
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,673
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 ParcelDraft [[ParcelDraft.svg]] { key: String measurements: [[ParcelMeasurements.svg ParcelMeasurements]] trackingData: [[TrackingData.svg TrackingData]] items: [[DeliveryItem.svg List<DeliveryItem>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface StagedOrderAddDeliveryAction [[StagedOrderAddDeliveryAction.svg]] { action: String deliveryKey: String shippingKey: String items: [[DeliveryItem.svg List<DeliveryItem>]] address: [[BaseAddress.svg BaseAddress]] parcels: [[ParcelDraft.svg List<ParcelDraft>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface DeliveryDraft [[DeliveryDraft.svg]] { key: String items: [[DeliveryItem.svg List<DeliveryItem>]] parcels: [[ParcelDraft.svg List<ParcelDraft>]] address: [[AddressDraft.svg AddressDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface OrderAddDeliveryAction [[OrderAddDeliveryAction.svg]] { action: String deliveryKey: String shippingKey: String items: [[DeliveryItem.svg List<DeliveryItem>]] address: [[BaseAddress.svg BaseAddress]] parcels: [[ParcelDraft.svg List<ParcelDraft>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } ParcelDraft --> StagedOrderAddDeliveryAction #green;text:green : "parcels" ParcelDraft --> DeliveryDraft #green;text:green : "parcels" ParcelDraft --> OrderAddDeliveryAction #green;text:green : "parcels" @enduml
false
true
false
false
sequence
463a2212c69994e4e8728bf310f4614b203a58fd
068db56ea5a78e90199fa88eb982fb0a30437ce6
/diagram/sequence/GetProduct.plantuml
1503875e7178671aabf3404868d769dbf10a2030
[]
no_license
egorzakharovv/kurs
b53ffd3922430e1d79f48a972428a8d8e9756fdd
9efc06507c93ddcaf8d9a52ef14ef2ca494d7837
refs/heads/main
2023-03-15T02:06:05.247239
2021-03-09T16:57:12
2021-03-09T16:57:12
346,078,482
1
0
null
null
null
null
UTF-8
PlantUML
false
false
215
plantuml
@startuml GetProduct actor User User -> ProductsTable : get product alt 2XX request ProductsTable -> User : return Product object else 4XX request ProductsTable -> User : return ERROR message end @enduml
false
true
false
false
sequence
6a83d55680777f7b0a328ecf6c6211f983239703
3281be818638127209884e1d6dca2a6d530bfbfa
/diagramas/ejemplo_secuencia_1.puml
3e0b389afd0d8d30ee7a51158dfd565cd7c656fe
[ "MIT" ]
permissive
M-Picco/algo3_proyecto_base_tp2
d1bbcbb0e09ae7446a3198021b8aea9d6d399530
7a533cb79149a464e62d5a032d8531c5c953686b
refs/heads/master
2022-04-10T15:29:31.444894
2020-03-09T23:27:43
2020-03-09T23:29:02
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
234
puml
@startuml hide footbox actor Alan Alan -> MaquinaDeCafe: prepararCafeConLecheEnVaso: unVaso MaquinaDeCafe -> HacedorDeCafeComun: servirCafeEnVaso: unVaso MaquinaDeCafe -> ServidorDeLecheDeAlmendra: servirLecheEnVaso: unVaso @enduml
false
true
false
false
sequence
78645e79aa71a5835342567c580946556c9c188c
28285a8f944c0fde1209e943890e795f1f7961d7
/src/main/java/structure/bridge/Bridge.puml
ab380e0f6fe3f0bb0624d7166d8538b303936275
[]
no_license
shaoneng111/design-pattern
94496017f52eb86cf249a92090176df89e188ab1
298cbd0b5218c99adbd2fdd49c16ab6087246cfd
refs/heads/master
2021-06-28T16:31:29.374241
2020-09-29T11:09:33
2020-09-29T11:09:33
156,365,576
0
0
null
null
null
null
UTF-8
PlantUML
false
false
724
puml
@startuml class Abstraction { {field} -plmp : Implementor* {method} operation() : void {method} <<construct>> Abstraction(Implementor*) : void } class RefinedAbstraction { {method} operation() : void {method} <<construct>> Abstraction(Implementor*) : void } class Implementor { {method} +OperationImpl() : void } class ImplementorA { {method} +OperationImpl() : void } class ImplementorB { {method} +OperationImpl() : void } class Client { } RefinedAbstraction -up-|> Abstraction ImplementorA -up-|> Implementor ImplementorB -up-|> Implementor Abstraction .left.o Implementor Client .right.> Abstraction note as n1 pImp -> OperationImpl() end note Abstraction .up. n1 @enduml
false
true
false
false
class
981f4cf20b38269ef882b8dc55c09e2ac87f81b6
581fd86a528d39fb01b06ffe0f09b92aab4936ec
/multimedia/webrtc/fingerprint.puml
6e7abdf0c1a2a3dbb87c77b22c1cf6bbb3d799ed
[]
no_license
leewoody/nickli_doc
f37650b55ccca57f0613d704d5d13b2e43662487
9632e288c13ddbe262bf810e23df64e8abeea2b3
refs/heads/master
2023-03-21T12:03:13.072042
2021-03-07T12:53:01
2021-03-07T12:53:01
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
10,341
puml
@startuml WebRTC Fingerprint hide footbox skinparam { ' defaultFontName Abyssinica SIL Shadowing false backgroundColor white NoteFontColor #Black NoteFontSize 16 NoteTextAlignment left NoteBackgroundColor transparent NoteColor transparent NoteBorderThickness 0 NoteBorderColor transparent NoteBorderThickness 0 NoteShadowing false ParticipantPadding 0 BoxPadding 20 dpi 96 ClassBackgroundColor transparent ClassHeaderBackgroundColor lightLightGreen ClassStereotypeFontColor transparent SequenceBoxBordercolor sienna SequenceBoxFontSize 24 SequenceBoxFontColor Black SequenceBoxBackgroundColor WhiteSmoke SequenceLifeLineBackgroundColor WhiteSmoke SequenceMessageAlignment center SequenceGroupHeaderFontColor White SequenceGroupHeaderFontSize 20 SequenceGroupBackgroundColor DarkOliveLightGreen SequenceGroupBodyBackgroundColor transparent SequenceGroupBorderThickness 4 SequenceGroupBorderColor DarkOliveLightGreen ' transparent sequence { ParticipantBackgroundColor WhiteSmoke ParticipantBorderColor Gray ParticipantFontStyle Bold ParticipantFontSize 12 ParticipantPadding 0 LifeLineBorderColor DimGray ArrowColor Black ArrowThickness 0.8 ColorArrowSeparationSpace 30 } } ' participant PhysicalSocketServer ' participant SocketDispatcher ' participant AsyncUDPSocket ' participant AllocationSequence ' participant UDPPort ' participant ProxyConnection participant P2PTransportChannel participant PeerConnection participant JsepSessionDescription participant webrtc_sdp participant TransportDescription participant SSLFingerprint participant JsepTransport participant DtlsTransport ->PeerConnection:SetRemoteDescription() activate PeerConnection PeerConnection->PeerConnection:SetRemoteDescription() note left:**network_thread_** activate PeerConnection PeerConnection->PeerConnection:JavaToNativeSessionDescription() activate PeerConnection PeerConnection->PeerConnection:CreateSessionDescription() activate PeerConnection PeerConnection-->JsepSessionDescription:new PeerConnection->webrtc_sdp:SdpDeserialize() deactivate PeerConnection deactivate PeerConnection activate webrtc_sdp webrtc_sdp-->TransportDescription:new webrtc_sdp->webrtc_sdp:ParseSessionDescription() activate webrtc_sdp webrtc_sdp-->TransportDescription:**PARESE fingerprint** note right:**STRING** deactivate webrtc_sdp webrtc_sdp->webrtc_sdp:ParseMediaDescription() activate webrtc_sdp webrtc_sdp->webrtc_sdp:ParseContentDescription() note left:**kMediaTypeVideo** activate webrtc_sdp webrtc_sdp->webrtc_sdp:ParseContent() activate webrtc_sdp webrtc_sdp-->SSLFingerprint:new webrtc_sdp->webrtc_sdp:ParseFingerprintAttribute() activate webrtc_sdp webrtc_sdp-->SSLFingerprint:**Initialize** deactivate webrtc_sdp deactivate webrtc_sdp deactivate webrtc_sdp deactivate webrtc_sdp activate SSLFingerprint SSLFingerprint-->o TransportDescription:identity_fingerprint deactivate SSLFingerprint webrtc_sdp->JsepSessionDescription:Initialize() webrtc_sdp->JsepSessionDescription:AddCandidate() deactivate webrtc_sdp PeerConnection->PeerConnection:DoSetRemoteDescription() activate PeerConnection PeerConnection->PeerConnection:ApplyRemoteDescription() activate PeerConnection JsepSessionDescription-->o PeerConnection:pending_remote_description_ deactivate PeerConnection deactivate PeerConnection deactivate PeerConnection PeerConnection->PeerConnection:ApplyDescription_n() activate PeerConnection PeerConnection->JsepTransport:SetRemoteJsepTransportDescription() deactivate PeerConnection deactivate PeerConnection activate JsepTransport JsepTransport->JsepTransport:NegotiateAndSetDtlsParameters() activate JsepTransport JsepTransport->JsepTransport:SetNegotiatedDtlsParameters() activate JsepTransport JsepTransport->DtlsTransport:SetRemoteFingerprint() deactivate JsepTransport deactivate JsepTransport deactivate JsepTransport activate DtlsTransport DtlsTransport->OpenSSLStreamAdapter:SetPeerCertificateDigest() deactivate DtlsTransport activate OpenSSLStreamAdapter SSLFingerprint-->o OpenSSLStreamAdapter:peer_certificate_digest_value_ deactivate OpenSSLStreamAdapter ->P2PTransportChannel:RequestSortAndStateUpdate() activate P2PTransportChannel P2PTransportChannel-->P2PTransportChannel:SortConnectionsAndUpdateState() note left:**INVOKE** activate P2PTransportChannel P2PTransportChannel->P2PTransportChannel:UpdateState() activate P2PTransportChannel P2PTransportChannel->P2PTransportChannel:SetWritable() activate P2PTransportChannel P2PTransportChannel-->DtlsTransport:SignalWritableState() deactivate P2PTransportChannel deactivate P2PTransportChannel deactivate P2PTransportChannel deactivate P2PTransportChannel activate DtlsTransport DtlsTransport->DtlsTransport:OnWritableState() activate DtlsTransport DtlsTransport->DtlsTransport:MaybeStartDtls() activate DtlsTransport DtlsTransport->OpenSSLStreamAdapter:StartSSL() deactivate DtlsTransport deactivate DtlsTransport deactivate DtlsTransport activate OpenSSLStreamAdapter OpenSSLStreamAdapter->OpenSSLStreamAdapter:BeginSSL() activate OpenSSLStreamAdapter OpenSSLStreamAdapter->OpenSSLStreamAdapter:SSL_new() activate OpenSSLStreamAdapter deactivate OpenSSLStreamAdapter OpenSSLStreamAdapter->OpenSSLStreamAdapter:ContinueSSL() note left:**Will Not OK...** activate OpenSSLStreamAdapter ' -->PhysicalSocketServer:**PACKAET** ' PhysicalSocketServer->SocketDispatcher:OnEvent() ' deactivate PhysicalSocketServer ' activate SocketDispatcher ' SocketDispatcher-->AsyncUDPSocket:SignalReadEvent() ' deactivate SocketDispatcher ' activate AsyncUDPSocket ' AsyncUDPSocket->AsyncUDPSocket:OnReadEvent() ' activate AsyncUDPSocket ' AsyncUDPSocket-->AllocationSequence:SignalReadPacket() ' deactivate AsyncUDPSocket ' deactivate AsyncUDPSocket ' activate AllocationSequence ' AllocationSequence->AllocationSequence:OnReadPacket() ' activate AllocationSequence ' AllocationSequence->UDPPort:HandleIncomingPacket() ' deactivate AllocationSequence ' deactivate AllocationSequence ' activate UDPPort ' UDPPort->UDPPort:OnReadPacket() ' activate UDPPort ' UDPPort->ProxyConnection:OnReadPacket() ' deactivate UDPPort ' deactivate UDPPort ' activate ProxyConnection ' ProxyConnection -->P2PTransportChannel:SignalReadPacket() deactivate ProxyConnection activate P2PTransportChannel P2PTransportChannel->P2PTransportChannel:OnReadPacket() activate P2PTransportChannel P2PTransportChannel-->DtlsTransport:SignalReadPacket() deactivate P2PTransportChannel deactivate P2PTransportChannel activate DtlsTransport DtlsTransport->DtlsTransport:OnReadPacket() note left:**DTLS_TRANSPORT_CONNECTED** DtlsTransport->DtlsTransport:HandleDtlsPacket() activate DtlsTransport DtlsTransport->StreamInterfaceChannel:OnPacketReceived() deactivate DtlsTransport deactivate DtlsTransport activate StreamInterfaceChannel StreamInterfaceChannel-->OpenSSLStreamAdapter:SignalEvent() deactivate StreamInterfaceChannel activate OpenSSLStreamAdapter OpenSSLStreamAdapter->OpenSSLStreamAdapter:OnEvent() activate OpenSSLStreamAdapter OpenSSLStreamAdapter->OpenSSLStreamAdapter:ContinueSSL() ' activate OpenSSLStreamAdapter deactivate OpenSSLStreamAdapter deactivate OpenSSLStreamAdapter OpenSSLStreamAdapter->ssl_lib:SSL_accept() deactivate OpenSSLStreamAdapter deactivate OpenSSLStreamAdapter deactivate OpenSSLStreamAdapter activate ssl_lib ssl_lib->ssl_lib:SSL_set_accept_state() ssl_lib->ssl_lib:SSL_ssl_server_handshake() activate ssl_lib ssl_lib->ssl_lib:ssl_run_handshake() activate ssl_lib note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_start_accept** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_read_client_hello** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_select_certificate** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_select_parameters** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_send_server_hello** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_send_server_certificate** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_send_server_key_exchange** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_send_server_hello_done** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_read_client_certificate** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_verify_client_certificate** activate ssl_lib ssl_lib->ssl_lib:do_verify_client_certificate() activate ssl_lib ssl_lib->ssl_lib:ssl_verify_peer_cert() activate ssl_lib ssl_lib->ssl_lib:session_verify_cert_chain() activate ssl_lib ssl_lib->ssl_lib:app_verify_callback() activate ssl_lib ssl_lib-->OpenSSLStreamAdapter:SSLVerifyCallback() deactivate ssl_lib deactivate ssl_lib deactivate ssl_lib deactivate ssl_lib deactivate ssl_lib activate OpenSSLStreamAdapter OpenSSLStreamAdapter->OpenSSLStreamAdapter:VerifyPeerCertificate() activate OpenSSLStreamAdapter OpenSSLStreamAdapter--> SSLFingerprint:**COMPARE** deactivate OpenSSLStreamAdapter deactivate OpenSSLStreamAdapter note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_read_client_key_exchange** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_read_change_cipher_spec** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_process_change_cipher_spec** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_read_next_proto** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_read_channel_id** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_read_client_finished** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_send_server_finished** note over ssl_lib:**...*** ssl_lib->ssl_lib:ssl_server_handshake() note left:**state12_finish_server_handshake** activate ssl_lib deactivate ssl_lib deactivate ssl_lib deactivate ssl_lib deactivate ssl_lib @enduml
false
true
false
false
sequence
6c84aa7e411a4bf95ba343c59d5e620c78f24183
c11f5643d266acb543cd5e98d688abab0b1a896b
/test/state.puml
8b36409e85072d69450e83fcd63432bce48b569d
[ "MIT" ]
permissive
raccy/language-plantuml
be65551e4446f606135ca622c67227c88ea07d6d
962a6f2f86be4c0ce53b81b4f7eb3e1d1d50e304
refs/heads/master
2021-01-18T23:27:10.643221
2017-01-22T05:51:22
2017-01-22T05:51:22
27,618,594
6
5
null
2017-01-22T05:51:23
2014-12-06T02:01:54
CoffeeScript
UTF-8
PlantUML
false
false
2,482
puml
@startuml [*] --> State1 State1 --> [*] State1: this is a string State1 : this is another string State1 -> State2 State2 --> [*] @enduml @startuml [*] -up-> First First -right-> Second Second --> Third Third -left-> Last @enduml @startuml state foo note "This is a floating note" as N1 @enduml @startuml scale 350 width [*] --> NotShooting state NotShooting { [*] --> Idle Idle --> Configuring : EvConfig Configuring --> Idle : EvConfig } state Configuring { [*] --> NewValueSelection NewValueSelection --> NewValuePreview : EvNewValue NewValuePreview --> NewValueSelection : EvNewValueRejected NewValuePreview --> NewValueSelection : EvNewValueSaved state NewValuePreview { State1 -> State2 } } @enduml @startuml scale 600 width [*] -> State1 State1 --> State2 : Succeeded State1 --> [*] : Aborted State2 --> State3 : Succeeded State2 --> [*] : Aborted state State3 { state "Accumulate Enough Data\nLong State Name" as long1 long1 : Just a test [*] --> long1 long1 --> long1 : New Data long1 --> ProcessData : Enough Data } State3 --> State3 : Failed State3 --> [*] : Succeeded / Save Result State3 --> [*] : Aborted @enduml @startuml [*] --> Active state Active { [*] -> NumLockOff NumLockOff --> NumLockOn : EvNumLockPressed NumLockOn --> NumLockOff : EvNumLockPressed || [*] -> CapsLockOff CapsLockOff --> CapsLockOn : EvCapsLockPressed CapsLockOn --> CapsLockOff : EvCapsLockPressed -- [*] -> ScrollLockOff ScrollLockOff --> ScrollLockOn : EvCapsLockPressed ScrollLockOn --> ScrollLockOff : EvCapsLockPressed } @enduml @startuml [*] --> NotShooting state "Not Shooting State" as NotShooting { state "Idle mode" as Idle state "Configuring mode" as Configuring [*] --> Idle Idle --> Configuring : EvConfig Configuring --> Idle : EvConfig } note right of NotShooting : This is a note on a composite state @enduml @startuml skinparam backgroundColor LightYellow skinparam state { StartColor MediumBlue EndColor Red BackgroundColor Peru BackgroundColor<<Warning>> Olive BorderColor Gray FontName Impact } [*] --> NotShooting state "Not Shooting State" as NotShooting { state "Idle mode" as Idle <<Warning>> state "Configuring mode" as Configuring [*] --> Idle Idle --> Configuring : EvConfig Configuring --> Idle : EvConfig } NotShooting --> [*] @enduml
false
true
false
false
sequence
221e8d1321a27d885c34ea57aa57eb56d5f01aea
06307aab2235e509902d6395f837c1b4b3d67c5e
/docs/source/UML/ScanQRCodeUseCase.puml
a5e82068d65cdb66ed63ac282e1bedfa07a70952
[ "MIT" ]
permissive
jallman112/Food-Pantry-Inventory
8f7b22703932e631c06177ebec3486440c615884
3607703f2f57200b53f7e54bbcdf6d9a41f1c10b
refs/heads/master
2022-12-11T03:20:07.489814
2021-03-22T05:59:29
2021-03-22T05:59:29
196,875,886
0
0
MIT
2022-11-22T07:40:52
2019-07-14T19:35:10
Python
UTF-8
PlantUML
false
false
559
puml
@startuml (Warehouse\nInventory\nSystem) as (Use) User -> (Scan QR Code) User --> (Use) note right of (Use) The response from the Warehouse System determines the next screen presented. end note note as N3 Label includes a QR code and a box number. end note (Scan QR Code) .. N3 N3 ..(Use) (Use) .. (New Box) (Use) .. (Existing Empty Box) (Use) .. (Existing Filled Box) (New Box) .. (Checkin) (Existing Empty Box) .. (Checkin) (Existing Filled Box) .. (Checkout) (Existing Filled Box) .. (Move Box) (Existing Filled Box) .. (Consume Box) @enduml
false
true
false
false
uml-unknown
3715d863432fbc0b530fc303c94d6552ebd47031
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Items/ITimelineItem.puml
80885b45bd3aeae1ff2359326a5d64dba8dfa410
[]
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
910
puml
@startuml interface ITimelineItem { start : double <<get>> <<set>> end : double <<get>> duration : double <<get>> IsCompatibleWithTrack(track:TrackAsset) : bool Delete() : void CloneTo(parent:TrackAsset, time:double) : ITimelineItem PushUndo(operation:string) : void } interface ITrimmable { SetStart(time:double) : void SetEnd(time:double, affectTimeScale:bool) : void TrimStart(time:double) : void TrimEnd(time:double) : void } interface IBlendable { supportsBlending : bool <<get>> hasLeftBlend : bool <<get>> hasRightBlend : bool <<get>> leftBlendDuration : double <<get>> rightBlendDuration : double <<get>> } class "IEquatable`1"<T> { } "IEquatable`1" "<ITimelineItem>" <|-- ITimelineItem ITimelineItem --> "parentTrack" TrackAsset ITimelineItem --> "gui" TimelineItemGUI ITimelineItem <|-- ITrimmable ITimelineItem <|-- IBlendable @enduml
false
true
false
false
class
8fc44ef2f94ede853687719f3bf5e7b3b4b2be8a
2f155271d292d377036fa1f443bf6ad4635f3469
/sequence_diagram/importAudio.puml
e2f7154fb4db3ec59fa7673d0aa2b90fe26639f2
[]
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
655
puml
@startuml actor User User -> MenuItem: Click activate MenuItem activate Editor MenuItem -> MenuItem: clickHandler activate EventEmitter MenuItem -> EventEmitter: emit('MENU_IMPORT') deactivate Editor deactivate MenuItem EventEmitter -> AudioController: selectFile() activate AudioController AudioController -> AudioController: handleFile() AudioController -> LibraryAction: addAudio() deactivate AudioController deactivate EventEmitter User -> Editor: audioFileDropHandler () activate Editor Editor -> AudioController: handleFile() activate AudioController AudioController -> LibraryAction: addAudio() deactivate AudioController deactivate Editor @enduml
false
true
false
false
usecase
e021f9b69e65523fb67a0a949d350870c6de9e5b
0d4c542524d4218b7f68187c155d5d7e117afc83
/Tests/fixtures/puml/square/simple-workflow-nomarking.puml
31e3b40061faca777c2b33a8b4a8fe1801645783
[ "MIT" ]
permissive
rsumner31/workflow-2
e062ed0fbb414980874b73325627fa36d7312185
8d6c010f06170d5b194cff3e7bffc4a19d433bb6
refs/heads/master
2020-04-11T05:01:10.961883
2018-03-08T02:54:14
2018-03-08T02:54:14
124,325,862
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,216
puml
@startuml allow_mixing sprite $sf_logo [81x20/16z] { hPNRaYiX24K1xwBo_tyx6-qaCtDEJ-KXLYMTLbp0HWcHZr3KRDJ8z94HG3jZn4_mijbQ2ryJoFePtXLWA_qxyGy19DpdY_10z11ZAbGjFHRwcEbcKx5-wqsV yIMo8StMCHKh8ZUxnEwrZiwRAUOvy1lLcPQF4lEFAjhzMd5WOAqvKflS0Enx8PbihiSYXM8ClGVAseIWTAjCgVSAcnYbQG79xKFsZ0VnDCNc7AVBoPSMcTsX UnrujbYjjz0NnsObkTgnmolqJD4QgGUYTQiNe8eIjtx4b6Vv8nPGpncn3NJ8Geo9W9VW2wGACm_JzgIO8A8KXr2jUBCVGEAAJSZ6JUlsNnmOzmIYti9G7bjL 8InaHM9G40NkwTG7OxrggvNIejA8AZuqyWjOzTIKi-wwYvjeHYesSWuPiTGDN5THzkYLU4MD5r2_0PDhG7LIUG33z5HtM6CP3icyWEVOS61sD_2ZsBfJdbVA qM53XHDUwhY0TAwPug3OG9NonRFhO8ynF3I4unuAMDHmSrXH57V1RGvl9jafuZF9ZhqjWOEh98y0tUYGsUxkBSllIyBdT2oM5Fn2-ut-fzsq_cQNuL6Uvwqr knh4RrvOKzxZfLV3s0rs_R_1SdYt3VxeQ1_y2_W2 } title SimpleDiagram skinparam titleBorderRoundCorner 15 skinparam titleBorderThickness 2 skinparam state { BackgroundColor<<initial>> #87b741 BackgroundColor<<marked>> #3887C6 BorderColor #3887C6 BorderColor<<marked>> Black FontColor<<marked>> White } skinparam agent { BackgroundColor #ffffff BorderColor #3887C6 } state a <<initial>> state b state c agent t1 agent t2 a --> t1 t1 --> b b --> t2 t2 --> c footer \nGenerated by <$sf_logo> **Workflow Component** and **PlantUML** @enduml
false
true
false
false
state
c99ff8ca7d5bcf5df18e235aba56d1faa0f3d04b
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Control/ControlTrack.puml
9cb8b504dfe35841dde9d8c5ae7f116d1e666751
[]
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
70
puml
@startuml class ControlTrack { } TrackAsset <|-- ControlTrack @enduml
false
true
false
false
class
32e750204962a61d19a793f01f1d51d7688cfaa6
51c4c0c5f531b020f0b4080f3e5b8df2df05d2d5
/Gremlin/Gremlin_Attack.puml
bd4d58bc620e7b65f02e2123cc6af4d462a31fdd
[]
no_license
lindison/plantuml_stuff
ab06b9afa60213e9387982d557290f6577013238
bd2c17d9a392a58f11430f91a782fda1bb8ed8bf
refs/heads/master
2023-03-11T12:06:29.791360
2021-02-24T16:58:09
2021-02-24T16:58:09
339,778,824
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,794
puml
@startuml header Gremlin attack workflow title Gremlin manual attack workflow autonumber actor Developer actor Observer box "Internal" #LightBlue participant Developer participant Observer participant Hypothesis end box group Create Hypothesis Developer ->o Hypothesis: Create a hypothesis end == Run Attacks == group Log into Gremlin App Developer ->o app.gremlin.com box "app.gremlin.com" #LightGreen participant app.gremlin.com participant SelectTargets participant SelectAttacks participant RunAttacks end box app.gremlin.com ->o Developer: Show Available Targets note right: show the target that can be attacked group Create and Run Attacks Developer ->o SelectTargets group Select Targets SelectTargets ->o SelectAttacks SelectAttacks ->o RunAttacks end group Run Attacks RunAttacks ->o OutputResults OutputResults ->o Observer note right: Observer to record results \n of the attacks end group Record results Observer ->o app.gremlin.com app.gremlin.com ->o Observer {end} Observer ->o Developer: notify Developer of results note right: Results have been recorded end end end == Analyze Results == group Analyze results Developer ->o app.gremlin.com app.gremlin.com ->o AnalyzeResults: Read recorded results in Gremlin dashboard AnalyzeResults ->o Developer: Create new hypothesis and test again end box "Internal" #LightBlue participant OutputResults participant AnalyzeResults end box @enduml
false
true
false
false
sequence
133d539bf4d6bc045672ae77ebaf78fefddf8afd
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/Money.puml
0a2763574b2b56533af37fa5db12011846266624
[]
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
22,953
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 Money [[Money.svg]] { centAmount: Long currencyCode: String } interface CentPrecisionMoney [[CentPrecisionMoney.svg]] { centAmount: Long currencyCode: String type: [[MoneyType.svg MoneyType]] fractionDigits: Integer } interface CentPrecisionMoneyDraft [[CentPrecisionMoneyDraft.svg]] { centAmount: Long currencyCode: String type: [[MoneyType.svg MoneyType]] fractionDigits: Integer } interface HighPrecisionMoney [[HighPrecisionMoney.svg]] { centAmount: Long currencyCode: String type: [[MoneyType.svg MoneyType]] fractionDigits: Integer preciseAmount: Long } interface HighPrecisionMoneyDraft [[HighPrecisionMoneyDraft.svg]] { centAmount: Long currencyCode: String type: [[MoneyType.svg MoneyType]] fractionDigits: Integer preciseAmount: Long } interface CartDiscountValueAbsoluteDraft [[CartDiscountValueAbsoluteDraft.svg]] { type: String money: [[Money.svg List<Money>]] } interface ProductDiscountValueAbsoluteDraft [[ProductDiscountValueAbsoluteDraft.svg]] { type: String money: [[Money.svg List<Money>]] } interface CustomLineItemDraft [[CustomLineItemDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] key: String quantity: Long money: [[Money.svg Money]] slug: String taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] priceMode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]] } interface ExternalLineItemTotalPrice [[ExternalLineItemTotalPrice.svg]] { price: [[Money.svg Money]] totalPrice: [[Money.svg Money]] } interface ExternalTaxAmountDraft [[ExternalTaxAmountDraft.svg]] { totalGross: [[Money.svg Money]] taxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] } interface LineItemDraft [[LineItemDraft.svg]] { key: String productId: String variantId: Long sku: String quantity: Long addedAt: DateTime distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] perMethodExternalTaxRate: [[MethodExternalTaxRateDraft.svg List<MethodExternalTaxRateDraft>]] inventoryMode: [[InventoryMode.svg InventoryMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface TaxPortionDraft [[TaxPortionDraft.svg]] { name: String rate: Double amount: [[Money.svg Money]] } interface TaxedPriceDraft [[TaxedPriceDraft.svg]] { totalNet: [[Money.svg Money]] totalGross: [[Money.svg Money]] taxPortions: [[TaxPortionDraft.svg List<TaxPortionDraft>]] } interface CartAddCustomLineItemAction [[CartAddCustomLineItemAction.svg]] { action: String money: [[Money.svg Money]] name: [[LocalizedString.svg LocalizedString]] key: String quantity: Long slug: String taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] priceMode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]] } interface CartAddLineItemAction [[CartAddLineItemAction.svg]] { action: String key: String productId: String variantId: Long sku: String quantity: Long addedAt: DateTime distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] inventoryMode: [[InventoryMode.svg InventoryMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface CartChangeCustomLineItemMoneyAction [[CartChangeCustomLineItemMoneyAction.svg]] { action: String customLineItemId: String customLineItemKey: String money: [[Money.svg Money]] } interface CartChangeLineItemQuantityAction [[CartChangeLineItemQuantityAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] } interface CartRemoveLineItemAction [[CartRemoveLineItemAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] shippingDetailsToRemove: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface CartSetCartTotalTaxAction [[CartSetCartTotalTaxAction.svg]] { action: String externalTotalGross: [[Money.svg Money]] externalTaxPortions: [[TaxPortionDraft.svg List<TaxPortionDraft>]] } interface CartSetLineItemPriceAction [[CartSetLineItemPriceAction.svg]] { action: String lineItemId: String lineItemKey: String externalPrice: [[Money.svg Money]] } interface DiscountedPriceDraft [[DiscountedPriceDraft.svg]] { value: [[Money.svg Money]] discount: [[ProductDiscountReference.svg ProductDiscountReference]] } interface PriceDraft [[PriceDraft.svg]] { key: String value: [[Money.svg Money]] country: String customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]] channel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] validFrom: DateTime validUntil: DateTime discounted: [[DiscountedPriceDraft.svg DiscountedPriceDraft]] tiers: [[PriceTierDraft.svg List<PriceTierDraft>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface PriceTierDraft [[PriceTierDraft.svg]] { minimumQuantity: Long value: [[Money.svg Money]] } interface QueryPrice [[QueryPrice.svg]] { id: String value: [[Money.svg Money]] country: String customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] channel: [[ChannelReference.svg ChannelReference]] validFrom: DateTime validUntil: DateTime discounted: [[DiscountedPriceDraft.svg DiscountedPriceDraft]] custom: [[CustomFields.svg CustomFields]] tiers: [[PriceTierDraft.svg List<PriceTierDraft>]] } interface MyPaymentDraft [[MyPaymentDraft.svg]] { amountPlanned: [[Money.svg Money]] paymentMethodInfo: [[PaymentMethodInfo.svg PaymentMethodInfo]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] transaction: [[MyTransactionDraft.svg MyTransactionDraft]] } interface MyTransactionDraft [[MyTransactionDraft.svg]] { timestamp: DateTime type: [[TransactionType.svg TransactionType]] amount: [[Money.svg Money]] interactionId: String custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface MyCartChangeLineItemQuantityAction [[MyCartChangeLineItemQuantityAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] } interface MyCartRemoveLineItemAction [[MyCartRemoveLineItemAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] shippingDetailsToRemove: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface MyPaymentChangeAmountPlannedAction [[MyPaymentChangeAmountPlannedAction.svg]] { action: String amount: [[Money.svg Money]] } interface OrderLineItemDiscountSetMessage [[OrderLineItemDiscountSetMessage.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]] lineItemId: String lineItemKey: String discountedPricePerQuantity: [[DiscountedLineItemPriceForQuantity.svg List<DiscountedLineItemPriceForQuantity>]] totalPrice: [[Money.svg Money]] taxedPrice: [[TaxedItemPrice.svg TaxedItemPrice]] taxedPricePortions: [[MethodTaxedPrice.svg List<MethodTaxedPrice>]] } interface StandalonePriceValueChangedMessage [[StandalonePriceValueChangedMessage.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]] value: [[Money.svg Money]] staged: Boolean oldValue: [[Money.svg Money]] } interface OrderLineItemDiscountSetMessagePayload [[OrderLineItemDiscountSetMessagePayload.svg]] { type: String lineItemId: String lineItemKey: String discountedPricePerQuantity: [[DiscountedLineItemPriceForQuantity.svg List<DiscountedLineItemPriceForQuantity>]] totalPrice: [[Money.svg Money]] taxedPrice: [[TaxedItemPrice.svg TaxedItemPrice]] taxedPricePortions: [[MethodTaxedPrice.svg List<MethodTaxedPrice>]] } interface StandalonePriceValueChangedMessagePayload [[StandalonePriceValueChangedMessagePayload.svg]] { type: String value: [[Money.svg Money]] staged: Boolean oldValue: [[Money.svg Money]] } interface StagedOrderAddCustomLineItemAction [[StagedOrderAddCustomLineItemAction.svg]] { action: String money: [[Money.svg Money]] name: [[LocalizedString.svg LocalizedString]] key: String quantity: Long slug: String taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] priceMode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface StagedOrderAddLineItemAction [[StagedOrderAddLineItemAction.svg]] { action: String key: String productId: String variantId: Long sku: String quantity: Long addedAt: DateTime distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] inventoryMode: [[InventoryMode.svg InventoryMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface StagedOrderChangeCustomLineItemMoneyAction [[StagedOrderChangeCustomLineItemMoneyAction.svg]] { action: String customLineItemId: String customLineItemKey: String money: [[Money.svg Money]] } interface StagedOrderChangeLineItemQuantityAction [[StagedOrderChangeLineItemQuantityAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] } interface StagedOrderRemoveLineItemAction [[StagedOrderRemoveLineItemAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] shippingDetailsToRemove: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface StagedOrderSetLineItemPriceAction [[StagedOrderSetLineItemPriceAction.svg]] { action: String lineItemId: String lineItemKey: String externalPrice: [[Money.svg Money]] } interface StagedOrderSetOrderTotalTaxAction [[StagedOrderSetOrderTotalTaxAction.svg]] { action: String externalTotalGross: [[Money.svg Money]] externalTaxPortions: [[TaxPortionDraft.svg List<TaxPortionDraft>]] } interface CustomLineItemImportDraft [[CustomLineItemImportDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] key: String slug: String quantity: Long money: [[Money.svg Money]] taxRate: [[TaxRate.svg TaxRate]] taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] priceMode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] state: [[ItemState.svg List<ItemState>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface DiscountedLineItemPriceDraft [[DiscountedLineItemPriceDraft.svg]] { value: [[Money.svg Money]] includedDiscounts: [[DiscountedLineItemPortion.svg List<DiscountedLineItemPortion>]] } interface OrderImportDraft [[OrderImportDraft.svg]] { orderNumber: String purchaseOrderNumber: String customerId: String customerEmail: String customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]] businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]] store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] lineItems: [[LineItemImportDraft.svg List<LineItemImportDraft>]] customLineItems: [[CustomLineItemImportDraft.svg List<CustomLineItemImportDraft>]] totalPrice: [[Money.svg Money]] taxedPrice: [[TaxedPriceDraft.svg TaxedPriceDraft]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] billingAddress: [[BaseAddress.svg BaseAddress]] shippingAddress: [[BaseAddress.svg BaseAddress]] itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]] shippingInfo: [[ShippingInfoImportDraft.svg ShippingInfoImportDraft]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] paymentState: [[PaymentState.svg PaymentState]] shipmentState: [[ShipmentState.svg ShipmentState]] orderState: [[OrderState.svg OrderState]] state: [[StateReference.svg StateReference]] country: String origin: [[CartOrigin.svg CartOrigin]] completedAt: DateTime custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface ShippingInfoImportDraft [[ShippingInfoImportDraft.svg]] { shippingMethodName: String price: [[Money.svg Money]] shippingRate: [[ShippingRateDraft.svg ShippingRateDraft]] taxRate: [[TaxRate.svg TaxRate]] taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]] deliveries: [[DeliveryDraft.svg List<DeliveryDraft>]] discountedPrice: [[DiscountedLineItemPriceDraft.svg DiscountedLineItemPriceDraft]] shippingMethodState: [[ShippingMethodState.svg ShippingMethodState]] } interface PaymentDraft [[PaymentDraft.svg]] { customer: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]] anonymousId: String externalId: String interfaceId: String amountPlanned: [[Money.svg Money]] amountAuthorized: [[Money.svg Money]] authorizedUntil: String amountPaid: [[Money.svg Money]] amountRefunded: [[Money.svg Money]] paymentMethodInfo: [[PaymentMethodInfo.svg PaymentMethodInfo]] paymentStatus: [[PaymentStatusDraft.svg PaymentStatusDraft]] transactions: [[TransactionDraft.svg List<TransactionDraft>]] interfaceInteractions: [[CustomFieldsDraft.svg List<CustomFieldsDraft>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] key: String } interface TransactionDraft [[TransactionDraft.svg]] { timestamp: DateTime type: [[TransactionType.svg TransactionType]] amount: [[Money.svg Money]] interactionId: String state: [[TransactionState.svg TransactionState]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface PaymentChangeAmountPlannedAction [[PaymentChangeAmountPlannedAction.svg]] { action: String amount: [[Money.svg Money]] } interface CartClassificationTier [[CartClassificationTier.svg]] { type: [[ShippingRateTierType.svg ShippingRateTierType]] value: String price: [[Money.svg Money]] isMatching: Boolean } interface CartScoreTier [[CartScoreTier.svg]] { type: [[ShippingRateTierType.svg ShippingRateTierType]] score: Integer price: [[Money.svg Money]] priceFunction: [[PriceFunction.svg PriceFunction]] isMatching: Boolean } interface CartValueTier [[CartValueTier.svg]] { type: [[ShippingRateTierType.svg ShippingRateTierType]] minimumCentAmount: Long price: [[Money.svg Money]] isMatching: Boolean } interface ShippingRateDraft [[ShippingRateDraft.svg]] { price: [[Money.svg Money]] freeAbove: [[Money.svg Money]] tiers: [[ShippingRatePriceTier.svg List<ShippingRatePriceTier>]] } interface StandalonePriceDraft [[StandalonePriceDraft.svg]] { key: String sku: String value: [[Money.svg Money]] country: String customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]] channel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] validFrom: DateTime validUntil: DateTime tiers: [[PriceTierDraft.svg List<PriceTierDraft>]] discounted: [[DiscountedPriceDraft.svg DiscountedPriceDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] staged: [[StagedPriceDraft.svg StagedPriceDraft]] active: Boolean } interface StandalonePriceChangeValueAction [[StandalonePriceChangeValueAction.svg]] { action: String value: [[Money.svg Money]] staged: Boolean } Money --> CentPrecisionMoney #blue;text:blue : "type : centPrecision" Money --> CentPrecisionMoneyDraft #blue;text:blue : "type : centPrecision" Money --> HighPrecisionMoney #blue;text:blue : "type : highPrecision" Money --> HighPrecisionMoneyDraft #blue;text:blue : "type : highPrecision" Money --> CartDiscountValueAbsoluteDraft #green;text:green : "money" Money --> ProductDiscountValueAbsoluteDraft #green;text:green : "money" Money --> CustomLineItemDraft #green;text:green : "money" Money --> ExternalLineItemTotalPrice #green;text:green : "price" Money --> ExternalLineItemTotalPrice #green;text:green : "totalPrice" Money --> ExternalTaxAmountDraft #green;text:green : "totalGross" Money --> LineItemDraft #green;text:green : "externalPrice" Money --> TaxPortionDraft #green;text:green : "amount" Money --> TaxedPriceDraft #green;text:green : "totalNet" Money --> TaxedPriceDraft #green;text:green : "totalGross" Money --> CartAddCustomLineItemAction #green;text:green : "money" Money --> CartAddLineItemAction #green;text:green : "externalPrice" Money --> CartChangeCustomLineItemMoneyAction #green;text:green : "money" Money --> CartChangeLineItemQuantityAction #green;text:green : "externalPrice" Money --> CartRemoveLineItemAction #green;text:green : "externalPrice" Money --> CartSetCartTotalTaxAction #green;text:green : "externalTotalGross" Money --> CartSetLineItemPriceAction #green;text:green : "externalPrice" Money --> DiscountedPriceDraft #green;text:green : "value" Money --> PriceDraft #green;text:green : "value" Money --> PriceTierDraft #green;text:green : "value" Money --> QueryPrice #green;text:green : "value" Money --> MyPaymentDraft #green;text:green : "amountPlanned" Money --> MyTransactionDraft #green;text:green : "amount" Money --> MyCartChangeLineItemQuantityAction #green;text:green : "externalPrice" Money --> MyCartRemoveLineItemAction #green;text:green : "externalPrice" Money --> MyPaymentChangeAmountPlannedAction #green;text:green : "amount" Money --> OrderLineItemDiscountSetMessage #green;text:green : "totalPrice" Money --> StandalonePriceValueChangedMessage #green;text:green : "value" Money --> StandalonePriceValueChangedMessage #green;text:green : "oldValue" Money --> OrderLineItemDiscountSetMessagePayload #green;text:green : "totalPrice" Money --> StandalonePriceValueChangedMessagePayload #green;text:green : "value" Money --> StandalonePriceValueChangedMessagePayload #green;text:green : "oldValue" Money --> StagedOrderAddCustomLineItemAction #green;text:green : "money" Money --> StagedOrderAddLineItemAction #green;text:green : "externalPrice" Money --> StagedOrderChangeCustomLineItemMoneyAction #green;text:green : "money" Money --> StagedOrderChangeLineItemQuantityAction #green;text:green : "externalPrice" Money --> StagedOrderRemoveLineItemAction #green;text:green : "externalPrice" Money --> StagedOrderSetLineItemPriceAction #green;text:green : "externalPrice" Money --> StagedOrderSetOrderTotalTaxAction #green;text:green : "externalTotalGross" Money --> CustomLineItemImportDraft #green;text:green : "money" Money --> DiscountedLineItemPriceDraft #green;text:green : "value" Money --> OrderImportDraft #green;text:green : "totalPrice" Money --> ShippingInfoImportDraft #green;text:green : "price" Money --> PaymentDraft #green;text:green : "amountPlanned" Money --> PaymentDraft #green;text:green : "amountAuthorized" Money --> PaymentDraft #green;text:green : "amountPaid" Money --> PaymentDraft #green;text:green : "amountRefunded" Money --> TransactionDraft #green;text:green : "amount" Money --> PaymentChangeAmountPlannedAction #green;text:green : "amount" Money --> CartClassificationTier #green;text:green : "price" Money --> CartScoreTier #green;text:green : "price" Money --> CartValueTier #green;text:green : "price" Money --> ShippingRateDraft #green;text:green : "price" Money --> ShippingRateDraft #green;text:green : "freeAbove" Money --> StandalonePriceDraft #green;text:green : "value" Money --> StandalonePriceChangeValueAction #green;text:green : "value" @enduml
false
true
false
false
sequence
b2da0a2d71ea544a019a184e3d857fc0726d326f
3c74f15950bd77d3bd52220e9d2972f769e54bc0
/Diagramme/Klassen/TinyTasksKit/Worker/Preferences/ScalarPreference.puml
65cd199a33226fc689d68b7311175bf030f8f86d
[]
no_license
Louis9902/Sosse19-SE
eff56539eed3e27e24342341356228ce5de7bd7c
6c146a6808781acbc6bf4e43157e2294013e65a3
refs/heads/master
2020-05-03T20:59:21.361284
2019-06-20T16:01:10
2019-06-20T16:01:10
178,814,946
2
0
null
2019-06-11T15:17:16
2019-04-01T08:05:57
C#
UTF-8
PlantUML
false
false
725
puml
@startuml class "ScalarPreference"<T> { - <<readonly>> provider : IPreferenceProvider + ScalarPreference(preferences:IPreferenceProvider, name:string, value:T) + DataType : PreferenceDataType <<get>> + Visible : bool <<get>> = true + HasDefaultValue : bool <<get>> + HasValueSet : bool <<get>> + Complete : bool <<get>> + Name : string <<get>> + Value : T <<get>> <<set>> + ValueType : Type <<get>> + ToView() : string + FromView(line:string) : void + ToggleVisibility() : ScalarPreference<T> + UpdateDataType(dataType:PreferenceDataType) : ScalarPreference<T> - {static} TryParseValue(input:string, result:TTo) : bool } IPreference <|.. "ScalarPreference" @enduml
false
true
false
false
class
a0ac3ec305b79b4c2fc132a4cfd39fcb0e0ecd78
f5b72a7234e76da9268a9a0f67aed163403208be
/Design/usecases.plantuml
8c178402595851c25650631f6df4248fc727b543
[]
no_license
CiaranWelsh/km_test
d80fa60940e52d006ff193c74c74b32ab77fca17
b07721ca17ed346b86e3da050903abb3b0aeb425
refs/heads/master
2022-12-01T03:42:39.846005
2020-08-12T10:06:00
2020-08-12T10:06:00
286,962,006
0
0
null
2020-08-12T08:39:48
2020-08-12T08:39:47
null
UTF-8
PlantUML
false
false
1,773
plantuml
@startuml left to right direction actor SBMLTool as sbml_tool actor BackgroundTool as bgtool actor UITool as uitool sbml_tool <|-- bgtool note on link "isDerivedFrom" end note sbml_tool <|-- uitool bgtool --> km_static bgtool --> km_verifiy uitool --> km_validate note top of bgtool In analogy to "Private". These happen behind the scenes and user doesn't know they are happening end note note bottom of uitool In analogy to "public". Users must proactively use these tools. end note package km_static { (parameters initialized) as init (warnings when parameters are 0) (Others?) } package km_verifiy { (trajectories tending to infinity) (negative simulation values) (Large time steps) as lts (Single time step) } note left of lts { Large time steps combined with oscillatory trajectories ? } package km_validate { (greater than at time t) (greater than at times between [start time, end time]) (less than at time t) (less than at times between [start time, end time]) (A is always greater than B) (max[A] > B at time t) as func (min[A] > B at time t) (max[A] > max[B]) (max[A] > min[B]) (average[A] > Average[B]) (DTW[A, B] < DTW[A, C]) as dtw } note right of dtw { DTW - dynamic time warping i.e. the DTW distance between A and B is less than (i.e. more similar to) the distance between A and C. - fastdtw is a python package for this. } note right of func { These are basically functions. More generally, we could provide a means of users to provide their own functions } 'SbmlTool --> km_static 'SbmlTool --> km_verifiy ' --> km_validate @enduml
false
true
false
false
usecase
1c9a6aa007f2c3eda305c8921fc201406e06d12c
87b13699a92fe26bd2974254727e6859f3ae32f3
/src/csheets/userstories/ipc03_01/search_on_another_instance/i130419/sequence_diagram.puml
6704bd524f4e3899efe099186447cc09a25fe627
[]
no_license
1130348/Confusao
62e06a3428e4455807b6b247c52d9f94b95fa2c1
4fa082ace786a61c0868e6ff8f08ac2497fbabd3
refs/heads/master
2020-03-25T00:25:42.003519
2015-06-26T14:16:24
2015-06-26T14:16:24
143,185,136
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,124
puml
@startuml doc-files/sequence_diagram.png actor Sender as user participant "dialog : SearchOnAnotherInstanceDialog" as said participant "SearchOnAnotherInstanceController" as saic participant "<<Service>>\nNetworkService" as net participant "SearchOnAnotherInstanceClient" as soaic participant "repwat : ReportWatch" as repWat participant "<<Service>>\nReportCreater" as repCrea participant "SearchOnAnotherInstanceServer" as serv participant "repoEve : ReportEvent" as repoEve user -> said : searchActionPerformed() said -> saic : sendSearchRequest(address, workbookName) saic -> net : sendSearchRequest(address, workbookName) net -> soaic : create() net -> soaic : sendWorkbookName(address, workbookName) == Wait response to request == serv -> serv : socket.accept() serv -> repoEve : create(workbook) serv -> serv : setChanged() serv -> serv : notifyObservers(repoEve) serv -> repWat : update() repWat -> repoEve : workbook = getWorkbook() repWat -> repCrea : createResume(workbook) repWat -> repWat : setChanged() repWat -> repWat : notifyObservers(strResume) repWat -> said : update() said -> said : showResume() @enduml
false
true
false
false
usecase
50300eacf4f7c9e9f3f1a32794e924ed8546b3f3
4fb7e3ef2b429c6343e78f487da054b04491061c
/app/src/main/java/Diagrams/Package diagram.puml
0661d99dfef12c9c3826454c8de55d08a1054114
[]
no_license
Kayu/COEN390
cf36d113f9f27946f5a07979e32451da46f48d04
adb807ebe6c1ce3430328eff29fa2ef0110fe5e0
refs/heads/master
2016-08-12T19:29:35.302950
2016-04-14T22:00:38
2016-04-14T22:00:38
53,161,179
0
0
null
null
null
null
UTF-8
PlantUML
false
false
156
puml
@startuml package "Controller"{ } package "Model"{ } package "Service"{ } Controller -->Model:uses Controller-->Service:uses Model-->Service:uses @enduml
false
true
false
false
sequence
d52fbf189fb10c50859d22cc64d9ebcdf0d206b7
0db2a1b3f42bc02382a3ef4dcc292a327aa574e0
/documents/version_1/diagrammes/sequence/creerEntree.puml
36d9930886ef76bad794dc28be2b3661cf5204f3
[]
no_license
arnoux23u-IUTNC/2021_COO_Zeldiablo
9d872fbaf107b05f02c5d1a5bc4f4bc3c314b94e
2b44e0479eacb3114f897d82bc57372a89ae68af
refs/heads/main
2023-09-02T13:52:01.393111
2021-11-15T21:47:07
2021-11-15T21:47:07
368,554,956
0
1
null
null
null
null
UTF-8
PlantUML
false
false
140
puml
@startuml title "Création d'une entrée" participant "l1 : Labyrinthe" as l activate l create Porte l --> Porte: new Porte(2, 5) @enduml
false
true
true
false
sequence
928d66662df2e6a77f712aaaa6fe0452977c3a3c
e7aab27dc3b56328c92d783d7fa8fce12d8ac544
/kapitler/media/uml-class-konvertering.puml
627987ad422193e07c098df3dd33ed238f49faf1
[]
no_license
petterreinholdtsen/noark5-tjenestegrensesnitt-standard
855019a61c8679a8119549e2824fa32ecc669e66
4673ba7134d83a6992bba6f9036c521c7ae1897f
refs/heads/master
2023-06-11T12:08:52.134764
2023-03-05T11:05:21
2023-03-05T11:05:21
160,586,219
0
0
null
null
null
null
UTF-8
PlantUML
false
false
452
puml
@startuml skinparam nodesep 100 hide circle class Arkivstruktur.Konvertering { +systemID : SystemID [0..1] +konvertertDato : datetime +konvertertAv : string +konvertertFraFormat : Format +konvertertTilFormat : Format +konverteringsverktoey : string [0..1] +konverteringskommentar : string [0..1] } class Arkivstruktur.Dokumentobjekt <Arkivenhet> { } Arkivstruktur.Dokumentobjekt o-- "konvertering 0..*" Arkivstruktur.Konvertering @enduml
false
true
false
false
class
8823743f64f2507e030ada6380b4a6cd975147f6
a79120c6f60221e3f09847e4a77605ea06a24afa
/app/src/main/java/de/dhbw/game/settings/settings.plantuml
b721160dc70f0f4443e6e842157c851218b88449
[]
no_license
niwa99/Tower-Defense
c6e9e5b1f6cec98a91a1ff9ff894d5bf071ad728
e3c502fdf2e22099f68a04209933b5c9d1a5acdc
refs/heads/master
2020-08-07T13:38:17.006168
2020-07-02T08:36:46
2020-07-02T08:36:46
213,471,531
0
1
null
null
null
null
UTF-8
PlantUML
false
false
827
plantuml
@startuml title __SETTINGS's Class Diagram__\n namespace de.dhbw { namespace game { namespace settings { interface de.dhbw.game.settings.ISettingsManager { {abstract} + toggle() } } } } namespace de.dhbw { namespace game { namespace settings { enum Settings { ANIMATIONS INGAME_SOUND MUSIC } } } } namespace de.dhbw { namespace game { namespace settings { class de.dhbw.game.settings.SettingsToggleButton { + SettingsToggleButton() } } } } 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
4805db076ff5144f799ad692eec44da740d82c32
462b9598f08a48ab835f0b189d4d344560965227
/src/main/java/csheets/worklog/n1121060/sprint3/core03_2_class_diagram.puml
d9bfebb3a59e170f90a9b478f7cde4c717ccd920
[]
no_license
VitorMascarenhas/LAPR4-2016
19f5593b98b81763f77021fb04278ed231337028
e53a5a46c0e09fbc155fb91f2010d50532de85d2
refs/heads/master
2020-03-19T10:31:05.321699
2018-06-06T19:49:19
2018-06-06T19:49:19
136,027,190
0
0
null
null
null
null
UTF-8
PlantUML
false
false
542
puml
@startuml doc-files/core03_2_classDiagram.png class PopupHandler extends MouseAdapter class SpreadsheetTable extends Grid class SpreadSheetPopupHandler extends PopupHandler class CellRangeSort { +sort() +sort(int columnIndex) } class CustomSortAction extends FocusOwnerAction class CustomSortDialog extends JDialog class SubMenu extends JPopupMenu CustomSortAction *-- CustomSortDialog PopupHandler *--SubMenu SpreadsheetTable*--SpreadSheetPopupHandler SubMenu *-- CustomSortAction CustomSortDialog *-- CellRangeSort @enduml
false
true
false
false
class
fd931de08f7f7a74675ca4eec862bec64d6fbf0a
4ef2a0d7b50e772e235e40bf33c1313a11e1d23a
/app/docs/asciidoc/models/Register.puml
f3d798107c01c4652550355abcb5206cb4ca1ed0
[ "Apache-2.0" ]
permissive
SefkanTas/Sonofy
4cb768b9eed72f2e133c2ec5b814c70352f39b4c
f4d7875d5c4ed996ec9ecc7fdf15ea75706af23a
refs/heads/master
2023-03-27T03:41:36.030113
2021-03-27T20:14:31
2021-03-27T20:14:31
297,685,348
3
5
Apache-2.0
2021-03-27T20:14:32
2020-09-22T15:04:53
Java
UTF-8
PlantUML
false
false
1,050
puml
@startuml actor User as g participant "::RegisterActivity " as act participant "registerViewModel :RegisterViewModel " as register participant "myAuth::FirebaseUser " as user participant "::FirebaseFirestore " as base g -> act : Faire à une inscription activate act g-> act : Enter Prenom, Pseudo, Email, Mdp act -> act : if(name.isEmpty()) : false act --> g : Veuillez saisir votre nom g-> act : Enter Nom activate user act -> user : onCreate(Bundle savedInstanceState) activate base user -> base : getInstance().collection("Users") base --> user : utilisateur ok deactivate base user --> act : utilisateur créé deactivate user act --> g : Nouvel utilisateur créé avec succès avec ID deactivate act g -> act : Faire à une inscription ( même adresse mail) activate act activate user act -> user: createUserWithEmailAndPassword(email,mdp) activate base user -> base : getInstance().collection("Users") base --> user : utilisateur existant deactivate base user --> act : false act --> g : Création d'un nouvel utilisateur échouée @enduml
false
true
true
false
usecase
f4aedba8a6e60df7866f428a89612bd8bdff28ba
5bda871fceb094fb9925872cf46794a7bb523678
/src/main/java/state/examples/classic/classic.plantuml
690583b565c7ced6cde6cc4c75dc3dad2974fc06
[]
no_license
jestin-g/java-design-pattern
9ec3526091fd4a5b795b035e3d6ae54a064e9ed2
da908b77cced2e25640f68f22d4bccda88e1321e
refs/heads/master
2023-02-11T14:12:52.417590
2021-01-06T16:48:53
2021-01-06T16:48:53
307,839,152
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,425
plantuml
@startuml title __CLASSIC's Class Diagram__\n namespace state.examples.classic { class state.examples.classic.BrokenState { + BrokenState() + fix() + off() + on() } } namespace state.examples.classic { class state.examples.classic.ClassicStateDemo { {static} + main() } } namespace state.examples.classic { class state.examples.classic.LightSwitch { + LightSwitch() + fix() + off() + on() + setState() } } namespace state.examples.classic { class state.examples.classic.OffState { + OffState() + on() } } namespace state.examples.classic { class state.examples.classic.OnState { + OnState() + off() } } namespace state.examples.classic { class state.examples.classic.State { + fix() + off() + on() } } state.examples.classic.BrokenState -up-|> state.examples.classic.State state.examples.classic.LightSwitch o-- state.examples.classic.State : state state.examples.classic.OffState -up-|> state.examples.classic.State state.examples.classic.OnState -up-|> state.examples.classic.State 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
state
67a1e081793812d732896a83fdc0344033a7beae
537eb58d242bc58d27cb07cf3b17db0efcd0b961
/docs/spec/hypertext-state.puml
544bc45541e13b5dbfe6e9a5ba791cb4d98f9a81
[]
no_license
dhh1128/intent
abff09c3058e617f66402dc66695a5c032302a90
12c11df9bb748ca71f125eabf65e6a20e9c5ac2f
refs/heads/main
2022-07-20T23:05:55.378883
2022-07-08T09:59:01
2022-07-08T09:59:01
13,664,751
2
1
null
null
null
null
UTF-8
PlantUML
false
false
771
puml
@startuml hide empty description [*] --> token: open [ state token token: next_is (clickable) token: explicit ID (null) token: URL (null) token: params[] (empty) state pipe <<choice>> state at <<choice>> state c <<choice>> state d <<choice>> token --> [*]: close ] token --> at: @ token --> closing: slash\nif 1st char token --> pipe: pipe token --> token: [a-z0-9]\nspace tab token --> explicit_id: colon ref: token.next_is = URL ref --> token ref --> param: semicolon closing --> [*]: close ] closing --> error: other error --> [*] explicit_id: push token as ID explicit_id --> token param: push param param --> token pipe --> error: else pipe --> token: next_is = URL\n(next_is=>clickable) at --> error: else at --> token: first char\n(next_is=>URL) @enduml
false
true
false
false
sequence
2d59c5c8f9f539a29800d2fd55c009912d6ead4a
af360ccdadedd63bc7bbabc9adc3d2a68926485c
/docs/diagrams/UndoRedoState1.puml
f7b799151a2808a844680618692e9b2d00b6600c
[ "MIT" ]
permissive
JQChong/tp
f4381d2377136ef11e3a78f79d2a161ac750fd49
f7a9c991a958c75a403c60786052399729edfaaf
refs/heads/master
2023-03-31T21:29:24.063256
2021-04-12T14:18:36
2021-04-12T14:18:36
338,991,090
0
0
NOASSERTION
2021-02-18T15:06:17
2021-02-15T06:52:41
Java
UTF-8
PlantUML
false
false
625
puml
@startuml skinparam ClassFontColor #000000 skinparam ClassBorderColor #000000 title After command "delete 5" package States <<rectangle>> { object "__pair2:AddressBookCommandPair__" as State3 State3 : currentCommand = "delete 5" object "__ab2:AddressBook__" as ab2 object "__pair1:AddressBookCommandPair__" as State2 State2 : currentCommand = "delete 5" object "__ab1:AddressBook__" as ab1 object "__pair0:AddressBookCommandPair__" as State1 State1 : currentCommand = "" object "__ab0:AddressBook__" as ab0 } State3 -- ab2 State2 -- ab1 State1 -- ab0 hide ab2 hide State3 @end
false
true
false
false
class
9d3af8df50f455426dab9c5bb0f7ee44e7b61845
4a8a121f8ca65ad2a042ef6fad9a547634ad8e51
/docs/ref-arch/chatbots/chatbots-ref-arch.puml
9d0f559b7179ed2d185cf7803e789a82a63fb4a7
[]
no_license
sundarsrd/writings
40e1664003d0312be17ddd373e3c443189f2adc0
8fa4900812c27acc082a0ab599f48c27b7b1dab6
refs/heads/master
2023-05-29T17:40:11.135647
2023-05-28T15:46:41
2023-05-28T15:46:41
122,180,604
0
1
null
2022-12-06T19:30:00
2018-02-20T09:54:54
null
UTF-8
PlantUML
false
false
3,426
puml
@startuml ' reference links ' http://plantuml.com/ditaa ' https://github.com/gboersma/uml-java-doclet ' skinparam { handwritten true backgroundColor transparent monochrome true shadowing true } hide footbox Title A Reference Architecture for Chat Bots actor "Customers" as cust participant "chat bot application\n(web, mobile, kiosk)" as app_chat_bot participant "Identity Service @ API Gateway\n" as svc_idty participant "accounts helper bot\n" as acct_bot database "logdb" as db_log participant "account service\n(vertx verticles)" as svc_acct note over cust Security is to be covered later & not part of this flow! We'll assume that every user is identified by an auth token / JWT, and every message to the chat bot is sent along with the token! .... Note: There can be 1000s of customers trying to chat with the account bot @ the same time! The chat bot needs to be highly scalable. --- basic functions are - connect - bot greets user & awaits for questions / commands - disconnect - help - - get balance for accounts - get last transaction - get last n transactions === enhancements: - bot can speak out the account balances using AWS polly end note ==V1 : Simple Version using restful APIs & an aggregator service acting as the bot + set of underlying services to process & return data\nSpring Boot or NGnix + Lua== cust -> app_chat_bot : launch bot & connect (w credentials) app_chat_bot -> svc_idty : auth (credentials) svc_idty --> app_chat_bot : auth-token (limited validity ~10mins) app_chat_bot -> acct_bot : start session (w auth-token as key) acct_bot -> db_log : log (auth-token, userid, start_session, timestamp) acct_bot --> app_chat_bot : return greetings app_chat_bot --> cust : display greetings note over app_chat_bot The chat bot app. is stateful & maintains the request/response, & displays it on screen. end note cust -> app_chat_bot : "show my account balances" loop "Retry n times, with a circuit breaker" app_chat_bot -> acct_bot : "show my account balances", auth-token acct_bot -> svc_idty : validate auth-token svc_idty --> acct_bot : auth. result, user_id (if successful) acct_bot -> acct_bot : parse & validate text;\nget verbs ("show"), nouns ("account, balance");\ndiscover service using noun\nmap verbs to service actions ("show -> get");map "my" to user_id acct_bot -> db_log : log (auth-token, userid, chat text, timestamp) acct_bot -> svc_acct : HTTP GET /accounts/*/balance/{user_id} svc_acct --> acct_bot : return balance for all customer accounts as a collection acct_bot -> db_log : log (auth-token, userid, result, timestamp) acct_bot --> app_chat_bot : "your account balances are : " + customer account balance collection [] end app_chat_bot --> cust : display result text note over acct_bot The chat bot (optionally) keeps track of the session. Otherwise, it just forwards the req. to the underlying service. ---- Primarily, it implements a DSL, parses & validates the user input. ---- Every message from the user is parsed, the nouns (services/resources) & verbs (actions) are separated and the nouns are used as keys to discover services & the actions are mapped to equivalent HTTP verbs and executed. end note ==V2 : Using CQRS== ==V3 : Using VERTX & Eventbus w HTTP 2.0 Streams== @enduml
false
true
false
false
usecase
0a714f36f3a5333b5925691b0043935ac0548b90
b19e1cd9af26a9f3cb65823e1a7885ce278337fe
/documentation/productSchema/ip/internetAccess/MEF 139 resources/media/InfoModelAdvancedInternetAccess.puml
69e0e35e8139908fafadcbc8cd394356067b32bd
[ "Apache-2.0" ]
permissive
MEF-GIT/MEF-LSO-Sonata-SDK
969c3717fba3fffa009bf3a5de65337b2caccaaf
6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f
refs/heads/working-draft
2023-07-07T02:17:11.649855
2023-06-23T09:30:18
2023-06-23T09:30:18
90,886,429
33
32
Apache-2.0
2023-01-05T23:58:23
2017-05-10T16:38:08
null
UTF-8
PlantUML
false
false
798
puml
@startuml skinparam { ClassBackgroundColor White ClassBorderColor Black } rectangle "Product: Advanced Internet Access IPVC" { class AdvancedInternetAccessIpvc { } AdvancedInternetAccessIpvc *-d->"1" AdvancedIaIpvcEndPoint : ipvcEndPoint } rectangle "Product: IP UNI" { class IpUni { } AdvancedIaIpvcEndPoint "0..*" o-r-> "1" IpUni : CONNECTS_TO_IPUNI } rectangle "Product: IP UNI Access Link" { class IpUniAccessLink { } IpUniAccessLink "0..*" o-l-> "1" IpUni : PART_OF_IPUNI } rectangle "Product: Ethernet UNI Access Link Trunk" { class EthernetUniAccessLinkTrunk { } IpUniAccessLink "0..*" o-r-> "1" EthernetUniAccessLinkTrunk : CARRIED_OVER_TRUNK } EthernetUniAccessLinkTrunk "0..*" o-d-> "1" RelatedPlaceRefOrValue : INSTALL_LOCATION @enduml
false
true
false
false
sequence
9b60a69cd0d89a51d03c7e8c081f9f18a731d00e
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/MyBusinessUnitAddAddressAction.puml
1741aacebb48793a4a2261e721da6200aed343cc
[]
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
501
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 MyBusinessUnitAddAddressAction [[MyBusinessUnitAddAddressAction.svg]] extends MyBusinessUnitUpdateAction { action: String address: [[BaseAddress.svg BaseAddress]] } interface MyBusinessUnitUpdateAction [[MyBusinessUnitUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
afa4fa858ab43d7ad73d66d467b7fda7f4a7a58f
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/AttributeNumberType.puml
9c77b1e23bb2f7a29b9dfcd98b2ab5087eb7dc10
[]
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
391
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 AttributeNumberType [[AttributeNumberType.svg]] extends AttributeType { name: String } interface AttributeType [[AttributeType.svg]] { name: String } @enduml
false
true
false
false
class
e7f1eb4c4f0199cbdd5e5d32e2c8a0f2464063cb
9735593c0c7c9f71651b174ec0dfc02753a2d0b2
/src/main/java/designpatterns/observer/concreteExample_dbObserver.puml
808a0f101054d5fd2d486943d753aaa55ad1488c
[]
no_license
pepe00486/DesignPatterns
cbfbe5b7b1435e6791e496db646646c27beb73e3
d57000a580947bf67f433cc08936a5c6c8a6c1a5
refs/heads/main
2023-02-10T14:41:04.246343
2021-01-10T22:13:16
2021-01-10T22:13:16
326,499,753
0
0
null
null
null
null
UTF-8
PlantUML
false
false
561
puml
@startuml title Observer Pattern interface Client{ update() : void } interface DB{ add(Client): void remove(Client): void notifyClients(): void } class DBClient{ -username : String +buildDBClient(DB : DB) +update() : void } class DBCommunication{ +List<Client> +add(Client): void +remove(Client): void +notifyClients(): void } class DBMock { -username : String -dbCommunication : DB +getUsername() : String +setUsername() : String } DBClient ..|> Client DBCommunication ..|> DB DBCommunication --o "0..*" Client @enduml
false
true
false
false
class
97254e6804c9f24b389d57f89124c7c7cf7562a3
8cf018eb6de40017601592f1f125ea67d5de7086
/docs/Solution/Service-Stack/Connected-Car-Cloud/Streaming-Engine/UserInteraction.puml
8e2dd08c88bfacafd93a28b4dee2407866f2a6dc
[]
no_license
CAADE/ADC
bec251477e457a9ee4eca673fdab04b65c4290f5
a81ba7532e7092ab564bcb30f8ec36bab3b71d0b
refs/heads/master
2021-06-23T22:20:00.239150
2019-04-03T05:15:20
2019-04-03T05:15:20
104,887,854
5
0
null
null
null
null
UTF-8
PlantUML
false
false
101
puml
@startuml actor User User -> "Service-Stack/Connected-Car-Cloud/Streaming-Engine": UseCase @enduml
false
true
false
false
sequence
aab137e9cbe0fd77d55ccfaba5c7d9d6ebb016a0
bd0f0707bf60aa5ab5f1d1c8cdbffb8afa0c31fe
/Final Project/Milestone3/src/model/model.plantuml
c61ce1a5f5187b471fc76e937e7116cbfa016361
[]
no_license
beatahejno/CIS357
dc39cdbf582186e8c4913dd491a3512ebe684a9a
1f0e17a52ad7de6db8a3761d99707983d70d0301
refs/heads/main
2023-04-30T20:23:44.468678
2021-05-24T21:35:59
2021-05-24T21:35:59
370,490,523
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,366
plantuml
@startuml title Library Management System\n namespace model { class model.Book { - ID : int - ISBN : String - author : String {static} - booksAdded : int - genre : String - name : String - publisher : String - year : long + Book() + equals() + getAuthor() + getGenre() + getID() + getISBN() + getName() + getPublisher() + getYear() + setAuthor() + setGenre() + setISBN() + setName() + setPublisher() + setYear() } } namespace model { class model.Library { + books : ArrayList<Book> + msgLog : ArrayList<String> + transactions : ArrayList<Transaction> + users : ArrayList<User> - MAX_BOOK_LIMIT : int - MAX_LOAN_DAYS : int + Library() + addBook() + addTransaction() + addUser() + collectFine() + getBook() + getBorrowCount() + getDueDate() + getUser() + isAvailable() + issueBook() + printResults() + returnBook() + searchBook() - computeFine() } } namespace model { class model.Transaction { - bookID : int - issueDate : Date - status : boolean - userID : int + Transaction() + getBookID() + getIssueDate() + getUserID() + isStatus() + setBookID() + setIssueDate() + setStatus() + setUserID() } } namespace model { class model.User { - ID : int - address : String - balance : double - dateOfBirth : LocalDate - email : String - isStudent : boolean - name : String {static} - usersAdded : int + User() + getAddress() + getBalance() + getDateOfBirth() + getEmail() + getID() + getName() + getStudent() + setAddress() + setBalance() + setDateOfBirth() + setEmail() + setName() + setStudent() } } model.Library "1" *-- "many" model.Book : contains model.Library "1" *-- "many" model.User : contains model.Library "1" *-- "many" model.Transaction : contains @enduml
false
true
false
false
class
0c15e686ca56702f041245d26ea7ff9391c34ca5
2b2acc58e16343190688ed460b26386980bb2b20
/Documents/UC9/UC9_SSD.puml
c092e142aac1098c3ab2359fc28df96d97bc3e9f
[]
no_license
1190452/LAPR3
0ca11285a3e85f93b5d687a0e10caef6f62a9577
e641d35f6524fde900beb3683937fc697af3b325
refs/heads/master
2023-05-11T07:45:02.636516
2021-01-31T17:06:37
2021-01-31T17:06:37
372,571,407
0
0
null
null
null
null
UTF-8
PlantUML
false
false
524
puml
@startuml autonumber actor "Administrator" as Admin activate Admin Admin -> ":System" : chooses to remove a medicine activate ":System" ":System" --> Admin : requestes the id of the medicine to be removed deactivate ":System" Admin -> ":System" : enters the id activate ":System" ":System" --> Admin : presents the medicine and asks for confirmation deactivate ":System" Admin -> ":System" : confirms activate ":System" ":System" --> Admin : success removing the medicine deactivate ":System" @enduml
false
true
false
false
sequence
f57d2ba9d1e11a4eee31495dd26d91d85de26fb7
e720adf59653548a476e8fd3f28713fd7fbe7991
/sql/database.puml
206f9be4b1dbf4610a7dcd8ee0f4a1f6a5346c44
[]
no_license
corsidrive/tss2020php-crud-media-player
426f7fa6d12927800647b479986bf31898ac364e
a587cdcff9296045b21415e1407f5f6953da6a76
refs/heads/master
2022-11-14T06:30:42.416562
2020-07-03T16:17:46
2020-07-03T16:17:46
261,969,302
0
0
null
null
null
null
UTF-8
PlantUML
false
false
559
puml
@startuml Artist "1"--"n" Album Album "1"--"n" Song Genre "1" -- "n" Song Artist "1"--"n" Song Playlist "n" --"n" "Song" class Song { - song_id : int - filename : varchar - title : varchar - dataformat : varchar - trackNumber : int - playtime_seconds : float } class Album { - album_id : int - name : varchar - year : year } class Genre { - name:varchar - code: int } class Artist { - name : varchar } @enduml ' http://www.dol.unina.it:8445/idea/cnipa_ipovedenti/unica/modulo5/lezione6.html
false
true
false
false
class
370f880d3e00a2b73951c7c3f8fd8641a76619cb
aefb1807676f66cc46e45071b3deb1969e682322
/SELAIN SISTEM/UML/SEQUENCE/pemberitahuan/adminintrator bka/PemberitahuanSuratBKA.puml
36bb721e1ff3478e8c9a592ba086533b3ebac9c4
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
kurniado729/sistem_kp
f456f7a22392f99c117797370c9a8d70c96b0df4
c77c7bc9aa28fe414be3254880112dbffb4b2ab2
refs/heads/master
2023-02-01T21:00:47.861038
2019-12-20T18:52:46
2019-12-20T18:52:46
220,038,247
0
1
MIT
2023-02-01T02:14:20
2019-11-06T16:12:42
HTML
UTF-8
PlantUML
false
false
533
puml
@startuml autonumber hide footbox title Pemberitahuan Surat BKA Actor AdministratorBKA boundary Dashborad_V boundary SuratBKA_V control Admin_C control BKA_C Entity SuratDisposisi_E Admin_C --> Dashborad_V: load->view() Dashborad_V --> AdministratorBKA: Halaman Dashborad AdministratorBKA --> Dashborad_V: klik tombol pemberitahuan Dashborad_V --> BKA_C: index() BKA_C --> SuratDisposisi_E: SuratDisposisi_E --> BKA_C: BKA_C --> SuratBKA_V: load->view() SuratBKA_V --> AdministratorBKA: Halaman Surat BKA @enduml
false
true
false
false
sequence
d326308768845bcd01641a9d03817b2cc8f5dc22
f307970b839abfefbcd59b5aec6d5f871a961f72
/src/main/java/com/slas/service/service.plantuml
b7769fde3edf352dadd39e0788d60e92b9d093fb
[]
no_license
atanuroy911/SLAS_WEB
f27cd49c8dee735432c9521b77e21db14c1a27b4
d6dcf31ec7a1d6bc592afdd3bfa6d3841ab21d5e
refs/heads/main
2023-03-05T06:24:00.145938
2021-02-20T00:08:03
2021-02-20T00:08:03
335,622,112
0
0
null
null
null
null
UTF-8
PlantUML
false
false
492
plantuml
@startuml title __SERVICE's Class Diagram__\n namespace java{ namespace com.slas { namespace service { class com.slas.service.ImageService { {static} - LOGGER : Logger + generateQRCode() + purgeCache() } } } } 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
1de629d576ae7bea204b9535201b737c15351bc6
2d1f14fa6841cb69a96c9498579192efa81ee9ea
/uml.puml
8dc7e9248aabea9dbc57746b606d3c13dbc21afc
[ "MIT" ]
permissive
codegym-vn/pf-java-course-management
bcde6080ced4138c737a5a8e571b359099fb016c
0df8033a6dfd722cb49e286c02c57cb9a07fa933
refs/heads/master
2021-04-27T07:39:05.062783
2018-08-23T10:52:08
2018-08-23T10:52:08
122,637,819
0
0
null
null
null
null
UTF-8
PlantUML
false
false
315
puml
@startuml class Course { - name: String - students: String[] - studentsCount: int + <<constructor>> Course(name: String) + getName(): String + addStudent(student: String): void + removeStudent(student: String): void + getStudents(): String[] + getStudentsCount(): int } @enduml
false
true
false
false
class
731822fb6f8992e177f36483e5dda38076b6e525
1ac0a5cf0a74b207d7cdac817f81b15f452f494c
/Livrables/Diagrammes/Composants/UML/Line.plantuml
87a48615f541ef4d8f7e1da1cca8bd66a8a6e05b
[ "MIT" ]
permissive
HugoLA1/Projet-programmation-systeme
1f143b71a52871ca3536b30d78592c29f19aae97
5262fa64cd862283078346b4f8a2aa69246d47d6
refs/heads/master
2020-06-01T10:33:49.688170
2018-12-13T13:22:55
2018-12-13T13:22:55
190,750,176
0
0
null
null
null
null
UTF-8
PlantUML
false
false
141
plantuml
@startuml class Line { + tables : List<Table> <<get>> <<set>> + posX : int + posY : int + Line(posX:int, posY:int) } @enduml
false
true
false
false
class
5c0585a0fa68aeb9f10e23fe8f54c5582b5020c1
58888f3b87438efd34e7ab4389d7fc74cf1c4f7d
/src/main/java/org/rikh/rikh.plantuml
a4ded2ed72352233b2f430a171ced4f78ce66da4
[ "MIT" ]
permissive
mrikh/javafx-poker
10542ee0914e10eb1d9c217f83018f5342a6a0f3
a0172321eca11079a912a9e01c191826854715a2
refs/heads/master
2022-12-15T04:33:47.492310
2020-09-03T23:21:13
2020-09-03T23:21:13
292,700,349
0
0
null
null
null
null
UTF-8
PlantUML
false
false
855
plantuml
@startuml title __RIKH's Class Diagram__\n namespace org.rikh { namespace org.rikh { class org.rikh.App { - height : double - width : double {static} + main() + start() - clearButtons() - clearMessages() - commonLayoutChangeUpdate() - dealerTokenBet() - reset() - setupBetting() - setupButton() - setupGoFirstButtons() - startDiscard() } } } namespace org.rikh { namespace org.rikh { class org.rikh.SystemInfo { {static} + javaVersion() {static} + javafxVersion() } } } org.rikh.App -up-|> javafx.application.Application org.rikh.App o-- org.rikh.controller.PokerController : controller org.rikh.App o-- org.rikh.views.PokerPane : pane @enduml
false
true
false
false
class
b0b4635fe6033ef1e410362275fb4ae9f3271c9d
c60a8fb67fedcbae08755d8125d97468a8aca24d
/Projet de UML Reverse/documents/trash/plantuml/io/parser_class.puml
39d37ba033f738c234e26f3fdad689f306d59ded
[ "Apache-2.0" ]
permissive
BelkhousNabil/Projets-Informatiques
6be114f6a8dbcf978ef67daffb1394ee023255cf
47ffd6526bb66ae263c34725fe2b515b751127bb
refs/heads/master
2021-01-17T07:12:08.050466
2017-02-26T17:03:56
2017-02-26T17:03:56
54,788,129
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,914
puml
@startuml title Diagramme de classes du paquet umlreverse.model.io package umlreverse.model.io { interface IDiagramLoader { +IDiagram loadDiagramFromJava(File javaInput) +IDiagram loadDiagramFromPlantUML(File input) +IDiagram loadDiagramFromPlantUML(File input, File style) +void applyStyle(IDiagram diagram, File style) } interface IDiagramSaver { +void saveDiagram(File output) +void saveDiagram(File output, File style) +void saveStyle(File style) } class PlantUMLClassFactory { -IStyleParser styleParser -IPlantUMLClassParser diagParser -IJavaClassParser javaParser -IDiagram diagram } IDiagramLoader <|.. PlantUMLClassFactory interface IParser<D extends IDiagram> { +File getFile() +D getDiagram() +void setFile(File file) +void setDiagram(D diagram) } abstract AbstractParser<D extends IDiagram> { -File file -D diagram } IParser <|--- AbstractParser interface IStyleParser { +IDiagram getDiagram() +void applyStyle() } PlantUMLClassFactory "0..1" <--* "1..1" IStyleParser IParser <|-- IStyleParser class StyleParser { -IDiagram diagram } IStyleParser <|... StyleParser AbstractParser <|-- StyleParser interface IPlantUMLClassParser { +IClassDiagram getDiagram() +void setDiagram(IPlantUMLClass diagram) +void loadDiagram() } PlantUMLClassFactory "0..1" <--* "1..1" IPlantUMLClassParser IParser <|-- IPlantUMLClassParser class PlantUMLClassParser { -IClassDiagram diagram } IPlantUMLClassParser <|... PlantUMLClassParser AbstractParser <|-- PlantUMLClassParser interface IJavaClassParser { +IClassDiagram getDiagram() +void setDiagram(IPlantUMLClass diagram) +void parseJava() } PlantUMLClassFactory "0..1" <--* "1..1" IJavaClassParser IParser <|-- IJavaClassParser class JavaClassParser { -IClassDiagram diagram } IJavaClassParser <|... JavaClassParser AbstractParser <|-- JavaClassParser } @enduml
false
true
false
false
class
759a7de931903ab34b339ef5194a03076d9a19ef
0a1b666bbfcf86cd092f6fb34e6e1aa904c1936a
/uml/Application.puml
3b6fdbf71cc3d60f5f3cf1b7be70824541df69db
[]
no_license
Awesome-wolf-101/ashby-5057-a5
1ed140db7a91eec2a497720abce238c1740d4e6e
c8fe606b482af6bdb22577ab297bf53a9066126b
refs/heads/master
2023-07-05T10:40:56.648760
2021-07-26T03:59:42
2021-07-26T03:59:42
387,586,088
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,083
puml
@startuml 'https://plantuml.com/sequence-diagram class App{ +main() +start() } class Item{ - String Value - String SerialNumber - String Name +isValue() +setValue() +getSerialNumber() +setSerialNumber() +getName() +setName() } class InventoryManagerController{ -ObservableList<Item> items -public TableView InventoryManagerTableView; -public TableColumn ValueTableColumn; -public TableColumn SerialNumberTableColumn; -public TableColumn NameTableColumn; -public TextField AddItemNewValueTextField; -public TextField AddItemNewSerialNumberTextField; -public TextField AddItemNewNameTextField; -public TextField SearchTextField; -public TextField SaveInventoryAsPathNameTextField; -public TextField SaveInventoryAsFileNameTextField; -public TextField LoadAListPathNameTextField; -public TextField LoadAListFileNameTextField; -public Button RemoveItemButton; -public Button SortButton; -public Button SearchButton; -public ComboBox SortByComboBox; -public ComboBox SearchByComboBox; -public ComboBox SaveInventoryAsComboBox; +initialize() +AddItemButtonClicked() +SortButtonClicked() +RemoveItemButtonClicked() +ValueTableColumnEditted() +SerialNumberTableColumnEditted() +NameTableColumnEditted() +SearchButtonClicked() +SaveInventoryButtonClicked() +LoadAListButtonClicked() +ShowAllInventoryItemsClicked() +addAnItem() +sortListByValue() +sortListByName() +sortListBySerialNumber() +checkNameLength() +checkSerialNumberLength() +checkValue() +doesSerialNumberAlreadyExist() +deleteAnItem() +putDataToHTMLString() +putDataToTSVString() +putDataToJsonString() +searchByName() +searchBySerialNumber() +putDataToHTMLFile() +putDataToTSVFile() +putDataToJsonFile() +loadAnHTMLList() +makeFileReader() +loadAnTxtList() +getLastString() +loadAJSONList() } App -- InventoryManagerController InventoryManagerController -- Item @enduml
false
true
false
false
class
d8e0fc995526b8cb2db96ad53c6c34a4cfcd60a7
aa9620300bc8488f53437e0f5faab824225aab73
/ibex_pres/ibex_class_diagram_pandas.plantuml
2e42d4e932748ac95bf06256c619f5a37687f40e
[ "BSD-3-Clause" ]
permissive
atavory/atavory.github.io
94daa1b05141ff5c6e9ebfb5055fc87cfd333ca3
43d98b45150411d83ab75a92a6d4ab9226927ef0
refs/heads/master
2021-01-19T06:15:43.197765
2019-11-18T10:58:38
2019-11-18T10:58:38
100,634,235
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,255
plantuml
@startuml skinparam monochrome true skinparam shadowing false skinparam package { FontColor #777777 BorderColor lightgrey } skinparam rectangle { FontColor<<pandas>> black FontColor<<numpy>> grey BorderColor<<pandas>> black BorderColor<<numpy>> grey } package "Plotting" as Plotting { rectangle seaborn<<pandas>> rectangle bokeh<<pandas>> rectangle matplotlib<<numpy>> } package "Machine Learning" { rectangle sklearn<<numpy>> rectangle ibex<<pandas>> #grey } package "Data Structures" { rectangle numpy<<numpy>> rectangle pandas<<pandas>> } [sklearn] -[#grey]> [numpy] : <color grey>interfaced by</color> [matplotlib] -[#grey]> [numpy] : <color grey>interfaced by</color> pandas ..[#black]> [numpy] : <color black>implemented over</color> seaborn -[#black]> pandas : <color black>interfaced by</color> [bokeh] -[#black]> pandas : <color black>interfaced by</color> [seaborn] ..[#black]-> [matplotlib] : <color black>implemented over</color> ibex -[#black]> pandas : <color black>interfaced by</color> ibex ..[#black]-> [sklearn] : implemented over @enduml
false
true
false
false
sequence
6d71a464360906d279ac1f347f1a11115d691932
0dcb0e0941d8b31fbdb46bb506b58774b7b5ed8f
/src/main/java/ex44/ex44.puml
8bed2919f0359a251bcbcf0fc70eaae94b27b1b7
[]
no_license
magdasobrino/Sobrino-AlmanzarCOP3330-Assignment3
8ba8770a796ce3dc47026b47ffe041cc5994ed63
5269495e276ed3b1353e6ba2f39e0626f2a57ee6
refs/heads/master
2023-08-19T12:00:16.496353
2021-10-12T03:14:51
2021-10-12T03:14:51
416,165,015
0
0
null
null
null
null
UTF-8
PlantUML
false
false
127
puml
@startuml 'https://plantuml.com/sequence-diagram class Product { seeker getProduct getDirectory getOutput getInput } @enduml
false
true
false
false
class
ceadb876c68f81f8b692e0cf55a2dd617600170a
91121941161e80905bab81f72b11fb3665d4f927
/PCV06-10-1.plantuml
9f8d7e23b99a1b5b9ba19a6e190802537e1e4896
[]
no_license
rastaman10/PCV06-10
83d833735f23f3b3adc1e57515b08c4e6bd74288
915677771d1cf990ae62903a7da43c9559f3ecac
refs/heads/master
2022-04-26T13:03:32.233871
2020-04-22T00:26:35
2020-04-22T00:26:35
257,718,449
0
0
null
2020-04-22T00:26:39
2020-04-21T21:20:11
null
UTF-8
PlantUML
false
false
600
plantuml
@startuml entity Empresa usecase Producto usecase VentaProducto usecase Ingreso usecase Vende usecase Distribuye usecase Parte cloud App cloud Cat.Producto cloud Precio actor SocioA actor SocioB actor Cliente Empresa --|> Producto: <<include>> Producto ..> VentaProducto : <<extends>> VentaProducto ..> Ingreso : Genera Producto -->App : Soporte App -->Cat.Producto App -->Precio App -- Cliente : es consultada por Empresa --*SocioA : tiene SocioA -->Vende SocioA -->Distribuye Empresa --*SocioB : tiene SocioA --> Producto : retira SocioB --> Parte : retira Parte -->Ingreso : de @enduml
false
true
false
false
usecase
fb492cb0a5ef3ad9509ad7fce040dc1eb9ca374b
7ef2fd3ad4edc90e2cdc6c62c15e5f8f90049376
/Exercises/UML Data Modeling/1.puml
9461158c5bf39a7337bca1717e67c3222aba9df3
[]
no_license
Educorreia932/FEUP-BDAD
cd3ddcf69ca62009c64d00e356c62513656e37ea
99d2707bebe37936d9bce1cbc67fe4711d6008f9
refs/heads/master
2023-04-02T07:53:51.431585
2021-04-13T09:59:02
2021-04-13T09:59:02
239,628,126
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,495
puml
@startuml Exercício 1 skinparam Linetype ortho class PaisOrigem { sigla nome } class Marca { nome pontos } class Carro { peso potencia velocidade_maxima id } class Piloto { nome morada data_nascimento pontos } class Corrida { data voltas id } class Circuito { nome local } class Desistencia { volta motivo } class Classificacao { posicao_partida posicao_chegada } Carro "1" -- "1..*" Piloto Carro "1..*" -- "1" Marca PaisOrigem "1" -- "*" Marca PaisOrigem "1" -- "*" Circuito PaisOrigem -- Piloto Corrida "1..2" -- "1" Circuito Corrida -- Piloto (Corrida, Piloto) .. Desistencia Corrida -- Piloto (Corrida, Piloto) .. Classificacao note top of PaisOrigem : PaisOrigem(<u>sigla</u>, nome) note bottom of Piloto : Piloto(<u>nome</u>, <u>data_nascimento</u>, pontos, morada, siglaPais -> PaisOrigem, idCarro -> Carro) note top of Classificacao : CorridaPiloto(<u>nomePiloto</u> -> Piloto, <u>idCorrida</u> -> Corrida, posicaoPartida, posicaoChegada) note bottom of Desistencia : Desistencia(<u>idPiloto</u> -> Piloto, <u>idCorrida</u> -> Corrida, volta, motivo) note bottom of Circuito : Circuito(<u>nome</u>, local, <u>paisSigla</u>->paisOrigem) note bottom of Carro : Carro(<u>id</u>, potencia, peso, velocidade_maxima, nomeMarca -> Marca) note left of Corrida : Corrida(<u>id</u>, data, voltas, circuit -> Circuito) note top of Marca : Marca(id, nome, pontos, pais_sigla -> paisOrigem) @enduml
false
true
true
false
class
f740118ed6f4d90aca9e137ccfcece82749cdb29
28cc353b960282035a9d030fbc9a1e8ce8491876
/document/diagrams/blog/list_blogs.puml
067efd99ab28d1205a11bd20a82072cfe55ff4c8
[ "MIT" ]
permissive
hataketsu/PetStore4
39b107ab004d16c23076a4d5ab24b81c9bc0d8de
479b0709e7d9f202b6fa90adf8a6c4a874681fa3
refs/heads/master
2020-03-19T17:09:25.162293
2019-12-26T16:26:31
2019-12-26T16:26:31
136,746,560
0
0
null
null
null
null
UTF-8
PlantUML
false
false
756
puml
@startuml actor Admin boundary list_blogs_view control BlogController entity BlogModel Admin -> list_blogs_view : yêu cầu xem danh sách bài viết activate Admin activate list_blogs_view list_blogs_view -> BlogController: gửi yêu cầu deactivate list_blogs_view activate BlogController BlogController -> BlogController : kiểm tra dữ liệu BlogController -> BlogModel : lấy danh sách bài viết activate BlogModel BlogModel --> BlogController : trả danh sách bài viết deactivate BlogModel BlogController --> list_blogs_view: trả kết qủa danh sách bài viết deactivate BlogController activate list_blogs_view list_blogs_view --> Admin: Hiển thị danh sách bài viết deactivate list_blogs_view deactivate Admin @enduml
false
true
true
false
sequence
262496d1c9194cd648051635d61447d7046ca58b
9c2656bc6ca5ce7c55f321fc8139a888dc374c3a
/Source/Mediator/Example/non-mediator.puml
5acb86a319fe294922e72a9168d229170e418173
[]
no_license
lemonlyue/DesignPatterns
53cedffdcfa2f7d47e20d0e21fadf135bdf6fdf1
28a73f5cc454e62b352b4d3c8e41731cbe4abee5
refs/heads/main
2023-07-07T23:59:26.434424
2021-08-08T15:37:18
2021-08-08T15:37:18
356,506,176
0
0
null
null
null
null
UTF-8
PlantUML
false
false
371
puml
@startuml 'https://plantuml.com/class-diagram class Purchase class Sale class Stock Sale <|-- Purchase Stock <|-- Purchase Purchase <|-- Sale Stock <|-- Sale Sale <|-- Stock Purchase <|-- Stock class Purchase { refuseBuy() buy() } class Stock { Array[] $productStock increase() decrease() getStock() clearStock() } class Sale { getSales() sell() offSale() } @enduml
false
true
false
false
class
b8f7ba166606cc344c43ea9bbea86627d6343a01
dd3daa8aef55201585aad5cdd02b2f8f68418d80
/uml/ListController.puml
14fadd9de9ca3a716fde556e39f989568b65325f
[]
no_license
rodriguezA3/Rodriguez-cop3330-assignment4
a5e42305365dd594f7e625b450dd7125f2b6cd38
6f4fddae7131559012bb04c3ba9ffd2be11056eb
refs/heads/master
2023-08-27T03:54:40.163580
2021-11-02T03:49:41
2021-11-02T03:49:41
423,698,699
0
0
null
null
null
null
UTF-8
PlantUML
false
false
239
puml
@startuml class ListController{ +FXML TextField listName +FXML Button addListButton +addListHandler() } class LocalList{ +String listName +String listDescription +ListView() } LocalList <|-- ListController @enduml
false
true
false
false
class
2cf00f7287416022453da2854464267b80dbb956
88f8e9df6277662ab92e1f88a38b15cc727cea9b
/structurizr-export/test/unit/com/structurizr/io/plantuml/structurizr/36141-Components.puml
cce2f1d127e7424882ea1f6e478b49e6317796be
[ "Apache-2.0" ]
permissive
brunofigalves/java-extensions
103d0c62bba1fe6718bc5285093c0b1d3851ac1d
17779a49d0d48f90e05309999ffac8394f6c1257
refs/heads/master
2023-06-14T14:46:21.600324
2021-06-28T06:56:37
2021-06-28T06:56:37
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,530
puml
@startuml title Internet Banking System - API Application - Components top to bottom direction skinparam { shadowing false arrowFontSize 10 defaultTextAlignment center wrapWidth 200 maxMessageSize 100 PackageBorderColor<<group>> #cccccc PackageFontColor<<group>> #cccccc } hide stereotype skinparam rectangle<<30>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5d82a8 } skinparam database<<21>> { BackgroundColor #438dd5 FontColor #ffffff BorderColor #2e6295 } skinparam rectangle<<34>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5d82a8 } skinparam rectangle<<6>> { BackgroundColor #999999 FontColor #ffffff BorderColor #6b6b6b } skinparam rectangle<<4>> { BackgroundColor #999999 FontColor #ffffff BorderColor #6b6b6b } skinparam rectangle<<33>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5d82a8 } skinparam rectangle<<18>> { BackgroundColor #438dd5 FontColor #ffffff BorderColor #2e6295 } skinparam rectangle<<31>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5d82a8 } skinparam rectangle<<32>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5d82a8 } skinparam rectangle<<29>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5d82a8 } skinparam rectangle<<17>> { BackgroundColor #438dd5 FontColor #ffffff BorderColor #2e6295 } 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 rectangle "==Single-Page Application\n<size:10>[Container: JavaScript and Angular]</size>\n\nProvides all of the Internet banking functionality to customers via their web browser." <<17>> as 17 rectangle "==E-mail System\n<size:10>[Software System]</size>\n\nThe internal Microsoft Exchange e-mail system." <<6>> as 6 rectangle "==Mobile App\n<size:10>[Container: Xamarin]</size>\n\nProvides a limited subset of the Internet banking functionality to customers via their mobile device." <<18>> as 18 database "==Database\n<size:10>[Container: Oracle Database Schema]</size>\n\nStores user registration information, hashed authentication credentials, access logs, etc." <<21>> as 21 package "API Application\n[Container: Java and Spring MVC]" <<20>> { skinparam PackageBorderColor<<20>> #444444 skinparam PackageFontColor<<20>> #444444 rectangle "==Sign In Controller\n<size:10>[Component: Spring MVC Rest Controller]</size>\n\nAllows users to sign in to the Internet Banking System." <<29>> as 29 rectangle "==Accounts Summary Controller\n<size:10>[Component: Spring MVC Rest Controller]</size>\n\nProvides customers with a summary of their bank accounts." <<30>> as 30 rectangle "==Reset Password Controller\n<size:10>[Component: Spring MVC Rest Controller]</size>\n\nAllows users to reset their passwords with a single use URL." <<31>> as 31 rectangle "==Security Component\n<size:10>[Component: Spring Bean]</size>\n\nProvides functionality related to signing in, changing passwords, etc." <<32>> as 32 rectangle "==Mainframe Banking System Facade\n<size:10>[Component: Spring Bean]</size>\n\nA facade onto the mainframe banking system." <<33>> as 33 rectangle "==E-mail Component\n<size:10>[Component: Spring Bean]</size>\n\nSends e-mails to users." <<34>> as 34 } 17 .[#707070,thickness=2].> 29 : "<color:#707070>Makes API calls to\n<color:#707070><size:8>[JSON/HTTPS]</size>" 17 .[#707070,thickness=2].> 31 : "<color:#707070>Makes API calls to\n<color:#707070><size:8>[JSON/HTTPS]</size>" 17 .[#707070,thickness=2].> 30 : "<color:#707070>Makes API calls to\n<color:#707070><size:8>[JSON/HTTPS]</size>" 18 .[#707070,thickness=2].> 29 : "<color:#707070>Makes API calls to\n<color:#707070><size:8>[JSON/HTTPS]</size>" 18 .[#707070,thickness=2].> 31 : "<color:#707070>Makes API calls to\n<color:#707070><size:8>[JSON/HTTPS]</size>" 18 .[#707070,thickness=2].> 30 : "<color:#707070>Makes API calls to\n<color:#707070><size:8>[JSON/HTTPS]</size>" 29 .[#707070,thickness=2].> 32 : "<color:#707070>Uses" 30 .[#707070,thickness=2].> 33 : "<color:#707070>Uses" 31 .[#707070,thickness=2].> 32 : "<color:#707070>Uses" 31 .[#707070,thickness=2].> 34 : "<color:#707070>Uses" 32 .[#707070,thickness=2].> 21 : "<color:#707070>Reads from and writes to\n<color:#707070><size:8>[JDBC]</size>" 33 .[#707070,thickness=2].> 4 : "<color:#707070>Uses\n<color:#707070><size:8>[XML/HTTPS]</size>" 34 .[#707070,thickness=2].> 6 : "<color:#707070>Sends e-mail using" @enduml
false
true
false
false
sequence