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
3835ae7a625c76df4e661604120b99a39bd871e9
ef4f9913b31c7ce6c913c8adcced062c0d5db5f9
/design-patterns/codebase/src/main/resources/uml/state/poblem-class-diagram.puml
4389a27b42a11a3ade8b145fa52fe16aa387a420
[]
no_license
lzbair/OO-Paradigm
5061211c6af19612c9d8185493898441fb92257b
ddc653bd0fe17807bcd7fd6030bb3e6b05239d99
refs/heads/master
2023-06-27T14:54:19.349718
2023-02-21T09:53:06
2023-02-21T09:53:06
238,396,539
0
1
null
2023-06-14T22:49:02
2020-02-05T07:55:12
Java
UTF-8
PlantUML
false
false
122
puml
-@startuml package http { class HTTP class HTTPExchange } package ftp { class FTP class FTPExchange } @enduml
false
true
false
false
class
63ec232dc424da688b6e10d68cc49ceadf8a9f80
d8a580600f00a1d68e9e07e0904e224f836b8e6c
/app/diagram/AlbumDemoUMLDiagram.plantuml
9ed53e86fa4f1f79445d7f84cb6c3950984112b9
[]
no_license
chandanyad/android-album-demo
a7561bf297d05593a7bd57344af874cffe9ef48c
db395388fb18e217264fdffa0e3477ca6a324062
refs/heads/master
2020-05-25T06:58:05.036549
2019-05-22T15:05:10
2019-05-22T15:05:10
187,674,728
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,265
plantuml
@startuml '------ Domain -------' package Domain { interface AlbumServiceContract { + getAlbumList(): Observable<List<Album>> } class AlbumService { - repoContract: AlbumRepoContract } AlbumServiceContract <|.. AlbumService AlbumPresenter *-- AlbumServiceContract AlbumRepoContract *-- AlbumService class Album { + userId: String + id: String + title: String } interface AlbumRepoContract { + getAlbums(): Observable<List<Album>> } } package UI { '------ View -------' interface ViewContract { + updateAlbumList(viewModel: AlbumViewModel) + onFetchComplete() + onError() } class AlbumViewModel { + albumList: List<Album> } class AlbumActivity ViewContract <|.. AlbumActivity AlbumActivity *-- PresenterContract '------ Presenter -------' interface PresenterContract { + getAlbums() } class AlbumPresenter PresenterContract <|.. AlbumPresenter } '------ Infastructure -------' package Infastructure { class AlbumRepo { - localDataSourceContract: AlbumDataSourceContract - remoteDataSourceContract: AlbumDataSourceContract } AlbumRepoContract <|.. AlbumRepo AlbumRepo *-- AlbumDataSourceContract interface AlbumDataSourceContract { + getAlbums(): Observable<List<Album>> + saveAlbums(albumList: List<Album>) } '------ Local Data source -------' package Local { class AlbumLocalDS { - realm: Realm } AlbumDataSourceContract <|.. AlbumLocalDS class ROAlbum{ + userId: String + id: String + title: String + lastSyncDate : Date } } '------ Remote Data source -------' package Remote { class AlbumRemoteDS { - api: AlbumApi } AlbumDataSourceContract <|.. AlbumRemoteDS AlbumRemoteDS *-- AlbumApi interface AlbumApi { + fetchAlbums(): Observable<List<AlbumResponse>> } class AlbumResponse{ + userId: String + id: String + title: String } } } @enduml
false
true
false
false
class
249ba9b60642e1b3d8a6de0e1e43ffb74fecaf5e
8c59fbc94a2ba7fa9a12c10991fe334cda0df128
/metrics/web/docs/features/user_profile_theme/diagrams/user_profile_theme_data_class.puml
aea53602763c9ed90296530696e3c7002790765c
[ "Apache-2.0" ]
permissive
solid-vovabeloded/flank-dashboard
7e952fa1399585d3f15cae2ed2cab435fb82df3f
15dae0c40823cc12886a1bb0c087442c0697ac89
refs/heads/master
2023-07-11T19:54:58.430004
2021-08-06T10:29:26
2021-08-06T10:29:26
389,593,827
0
0
Apache-2.0
2021-07-26T10:33:52
2021-07-26T10:25:59
null
UTF-8
PlantUML
false
false
835
puml
@startuml user_profile_domain_class package auth.data { package repository { class FirebaseUserRepository {} } package model { class UserProfileData { factory fromJson() } } } package auth.domain.entities { class UserProfile { id : String selectedTheme: ThemeType } } package core.src.data.model { interface DataModel { Map<String, dynamic> toJson() } } package auth.domain.repository { class UserRepository { ... Future<void> createUserProfile() Stream<UserProfile> userProfileStream() Future<void> updateUserProfile() } } FirebaseUserRepository ..|> UserRepository UserProfileData ..|> DataModel UserProfileData --|> UserProfile FirebaseUserRepository --> UserProfileData : uses @enduml
false
true
false
false
sequence
6d3fa9b2e9070048371b249e2688b373acb01276
4691acca4e62da71a857385cffce2b6b4aef3bb3
/patterns-modules/intercepting-filter/src/main/resources/intercepting_filter.puml
b06b822323c87b2aa6e53382373998d2a032e21b
[ "MIT" ]
permissive
lor6/tutorials
800f2e48d7968c047407bbd8a61b47be7ec352f2
e993db2c23d559d503b8bf8bc27aab0847224593
refs/heads/master
2023-05-29T06:17:47.980938
2023-05-19T08:37:45
2023-05-19T08:37:45
145,218,314
7
11
MIT
2018-08-18T12:29:20
2018-08-18T12:29:19
null
UTF-8
PlantUML
false
false
338
puml
@startuml scale 1.5 class Client class FilterManager interface FilterChain interface "Filter 1" interface "Filter 2" interface "Filter 3" Client .right.-- FilterManager FilterManager .right.-- Target FilterManager -- FilterChain FilterChain .right.-- "Filter 3" FilterChain .right.-- "Filter 2" FilterChain .right.-- "Filter 1" @enduml
false
true
false
false
class
3c3aa851e29d682f96811e7e454180f5e2ae86fc
83bec850817e3deb2a33a5ab2527784a976338b3
/log210-contenu/S20213/assets/mdd-registre-vente-paiement.puml
776b5e252f5fdbf06e4b97c8cafa03b21d382056
[]
no_license
yvanross/github-action-learning-larman-mdd
df8fb1907a84046ce0ed3b62ea555fd3b12655ad
e0195b3344ecdfaa934e788e839e8758453bc4ca
refs/heads/main
2023-08-30T10:22:28.071260
2021-11-11T15:29:27
2021-11-11T15:29:27
304,116,705
0
0
null
2020-10-15T01:32:37
2020-10-14T19:34:03
JavaScript
UTF-8
PlantUML
false
false
178
puml
@startuml mdd-registre-vente-paiement class Registre class Vente class Paiement Registre "1"--"*" Vente: sont capturés dans < Vente "1" -- "1" Paiement: est payée par > @enduml
false
true
true
false
class
260804fbe230051bd3c7c116e1dfc64b596e3ee1
3a2168e2e4ce104465aa21d3dec8950fbd0ab3d4
/seq_lq_blade.puml
943402ff0297776db38084d9842e96fb8a83b753
[]
no_license
nmehta2002/exp
ee20f4f33769e45cbdf1da4ba5869090aaa3187c
69ab76155edc0aff33a5293bb465da8c33f8d468
refs/heads/master
2020-04-07T08:02:37.855322
2018-11-21T14:07:25
2018-11-21T14:07:25
158,198,592
0
0
null
null
null
null
UTF-8
PlantUML
false
false
621
puml
@startuml UI -> Backend : New Live Query Sensor -> Backend : Checkin (LQ timestamp) Backend -> Sensor : Checkin Response hint LQ Sensor -> LQ_Blade : Notify LQ_Blade -> Backend : HTTP GET (livequery/requests) Backend -> LQ_Blade : HTTP GET Reply (Batch of live queries) loop (for each livequery) create osqueryi LQ_Blade -> osqueryi : livequery LQ_Blade -> Backend : HTTP Post (livequery/{requestId}/results end Sensor -> Backend : Checkin (New LQ timestamp) participant osqueryi order 50 participant LQ_Blade order 40 participant Sensor order 30 participant Backend order 20 participant UI order 10 @enduml
false
true
false
false
sequence
cfe4fb436f10587c3895b05ed5db162adf52d3d7
8619c47c2afdedd0ad4c2d7356fed6335684e1d2
/rapport/waveDiagram.puml
5d1d0db45feb0c30974c7fa20b21f9856ebf6799
[]
no_license
fdemoor/prog1p3
0ccc5413f56e60bcbb158ebc47c584554b55e786
dee4521ff8dc9bc8021166038e4871305e2db403
refs/heads/master
2021-01-10T12:13:19.721276
2015-12-12T20:13:17
2015-12-12T20:13:17
46,337,228
0
0
null
null
null
null
UTF-8
PlantUML
false
false
133
puml
@startuml class Random class Model Model *-- "1" Random Random : nextInt() Model : beeWave() Model : tunnelEntrances @enduml
false
true
false
false
class
87e6e0378a78f15d3035d7f577d5353a9e985753
9623791303908fef9f52edc019691abebad9e719
/src/cn/shui/learning_plan/beike/model/model.plantuml
a1b9e7b2499bb0e08e67f9c6d7cb291b5075b6db
[]
no_license
shuile/LeetCode
8b816b84071a5338db1161ac541437564574f96a
4c12a838a0a895f8efcfbac09e1392c510595535
refs/heads/master
2023-08-17T04:53:37.617226
2023-08-15T16:18:46
2023-08-15T16:18:46
146,776,927
0
0
null
null
null
null
UTF-8
PlantUML
false
false
943
plantuml
@startuml title __MODEL's Class Diagram__\n namespace cn.shui.learning_plan.beike.model { class cn.shui.learning_plan.beike.model.ListNode { + val : int + ListNode() + ListNode() + ListNode() } } namespace cn.shui.learning_plan.beike.model { class cn.shui.learning_plan.beike.model.TreeNode { + val : int + TreeNode() + TreeNode() + TreeNode() } } cn.shui.learning_plan.beike.model.ListNode o-- cn.shui.learning_plan.beike.model.ListNode : next cn.shui.learning_plan.beike.model.TreeNode o-- cn.shui.learning_plan.beike.model.TreeNode : left cn.shui.learning_plan.beike.model.TreeNode o-- cn.shui.learning_plan.beike.model.TreeNode : right 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
aabcf99cd9cc42104e0e82c6736f3bc60d58364b
54a847abd787d41df61ccbb7e1085c57e9b61acd
/tst/d/inp/test2.puml
a37ad0cfa910ec16f22c3d2abc360a9554675a75
[ "MIT" ]
permissive
bondden/esf-puml
ebe9de820924c654eecffb2a784f7b6274fc3220
f8325ef4bf93fb97477029c30833f9501ebf319f
refs/heads/master
2020-04-06T13:28:44.006809
2016-09-16T05:41:38
2016-09-16T05:41:38
44,272,453
5
3
null
2017-05-27T11:38:51
2015-10-14T19:50:56
JavaScript
UTF-8
PlantUML
false
false
537
puml
@startuml !define BG DarkSlateGrey skinparam { BackgroundColor BG default { Font { Color LightGrey } BorderColor LightGrey } class { BackgroundColor BG BorderColor LightGrey ArrowColor LightGrey } legend { BackgroundColor BG BorderColor BG } } header Test Project end header title Test 2\n class Basic { +pubParam +pvtParam +getPvtParam() } class Fnc extends Basic { +setPvtParam(parVal) } legend right = Legend This is a test diagram end legend footer © bondden 2014 end footer @enduml
false
true
true
false
class
ef6d629099897c9eb2f212e250b751d21f342563
c84d9d85a5b7784e70190b66ca421f4d93e1e250
/docs/diagrams/MarkStateRecordClassDiagram.puml
0b5f8ec7c1eed3eb63988cdb8e4b49c59dc92723
[ "MIT" ]
permissive
AY1920S1-CS2103T-T13-4/main
35bcc39e36283ee8a56b4df8376bdae5496d068c
b9e96701e2db4aa4d05f0fe8549e853e2f9975c8
refs/heads/master
2020-07-23T06:04:03.198729
2020-01-19T09:45:12
2020-01-19T09:45:12
207,463,015
0
8
NOASSERTION
2020-01-19T09:45:14
2019-09-10T04:09:31
Java
UTF-8
PlantUML
false
false
398
puml
@startuml hide circle skinparam arrowThickness 1.1 Interface ReadOnlyMark <<Interface>> ReadOnlyMark <|.. Mark Mark <|-- VersionedMark VersionedMark *-down- "*" MarkStateRecord MarkStateRecord *- "1" ReadOnlyMark class MarkStateRecord { String record getState() getRecord() } class VersionedMark { saveMark(string record) undoMark(int step) redoMark(int step } @enduml
false
true
false
false
class
e1ab241014f7b8395218d7ef23cf2ff79e558e26
573fd3fb5867c0f26fb2906f0478b234956e713f
/docs/architecture/document-storage/document-storage-deployment-diagram.puml
ab768996d6ee9c2a348b9f06feffab014aaffc34
[ "Apache-2.0" ]
permissive
RafaelAPB/blockchain-integration-framework
65cd73a7115069d343da7d269db45918710a7bbd
89d5102496adfe98a542a373e805dc38ecb8f269
refs/heads/main
2023-08-07T02:19:05.864116
2023-04-12T00:41:07
2023-04-14T07:37:08
241,220,244
5
0
Apache-2.0
2023-05-24T02:04:39
2020-02-17T22:22:43
TypeScript
UTF-8
PlantUML
false
false
2,010
puml
@startuml Document Storage Deployment Diagram title Hyperledger Cactus\nDocument Storage Deployment Diagram ' skinparam Linetype ortho skinparam sequenceArrowThickness 3 skinparam roundcorner 5 skinparam maxmessagesize 30 skinparam sequenceParticipant underline !include <tupadr3/common> !include <tupadr3/font-awesome/database> frame "Hyperledger Cactus" <<software deployment>> #LightCyan { package "pkg-cmd-api-server" as pkgcmdapiserver #LightGreen { component "/api/v1/identity/add-credential\n<<REST API Endpoint>>" as addcredentialendpoint component "/api/v1/document-storage/ingest\n<<REST API Endpoint>>" as ingestendpoint } package "pkg-identity" as pkgidentity #LightGreen { component "IdentityService\n<<class>>" as identityservice } package "pkg-keychain" as pkgkeychain #LightGreen { component "KeychainService\n<<class>>" as keychainservice } together { package "pkg-tracing" as pkgtracing #LightGreen { component "CactusTracer\n<<class>>" as cactustracer } package "pkg-audit" as pkgaudit #LightGreen { component "CactusAuditLogger\n<<class>>" as cactusauditlogger } } package "pkg-document-storage" as pkgdocumentstorage #LightGreen { component "IngestServiceV1\n<<class>>" as ingestservicev1 component "OpenDistroESPlugin\n<<class>>" as opendistroesplugin } } frame "Document Storage Backend" <<software deployment>> as dsb #LightCyan { node "Open Distro for\nElasticSearch" as odfes #LightGray { FA_DATABASE(db1,"",database,white) #RoyalBlue } } note bottom of ingestservicev1 API server uses endpoint logic of document-store end note ingestendpoint .up.> ingestservicev1 ingestservicev1 .down.> opendistroesplugin opendistroesplugin .down.> dsb addcredentialendpoint .down.> pkgidentity identityservice .down.> pkgkeychain keychainservice ..down.> pkgaudit keychainservice ..down.> pkgtracing cactustracer .up.> ingestendpoint #RoyalBlue cactusauditlogger .up.> ingestendpoint #RoyalBlue @enduml
false
true
false
false
component
5cd0e8b1777c744f1cb88fb875de134213e08ee9
87cde44ffb99a6e47f70b11faf6e18a6e395e0c7
/src/main/java/ex43/ex43.puml
db871e751715aef18777ac734ad2ba6a0f5a6660
[]
no_license
ajdahcode/bagarra-COP3330-assignment3
a61b44c455def5602477c7efde27363afe59d778
bc1c88ceba738a9083527ed033e55c595eab1387
refs/heads/master
2023-08-22T03:03:11.699932
2021-10-12T04:03:25
2021-10-12T04:03:25
416,169,837
0
0
null
null
null
null
UTF-8
PlantUML
false
false
118
puml
@startuml class createdir{ Site Author FolderJS FolderCSS } scn <- file createdir <- scn file <- template @enduml
false
true
false
false
class
fd381dd441712b25aae2f525441c2e96f886720b
5bdbd6738fe541bd2e09ee38cdcf8e5396e969e4
/hadoop/src/mr2/secure-mapreduce2-14-blk-tkn.puml
1532ce49eeb8de3d9960adf7408a6f67efdf08e4
[]
no_license
kminder/puml
a788960884f2cabea5ff3daf05818716c0c28489
bc65fc266143105da327d94e1fc6a91677093412
refs/heads/master
2021-01-20T06:25:50.168990
2013-06-18T17:20:54
2013-06-18T17:20:54
10,411,289
0
1
null
null
null
null
UTF-8
PlantUML
false
false
819
puml
@startuml title Secure Map Reduce 2 - Block Access Token Flow autonumber 'hide footbox participant "Client\n(c)" as C participant "Resource\nManager\n(rm)" as RM participant "History\nServer\n(hs)" as HS participant "Node\nManager\n(nm)" as NM participant "Shuffle\nHandler\n(ss)" as SS participant "Application\nMaster\n(am)" as AM participant "Client\nService\n(cs)" as CS participant "Application\nContainer\n(ac)" as AC #red participant "Task\n(t)" as T #orange participant "File\nSystem\n(fs)" as FS participant "Name\nNode\n(nn)" as NN participant "Data\nNode\n(dn)" as DN participant "Kerberos\nKDC" as KDC 'note over C,DN #green: QUESTION ? == Bootstrap == == Job Definition == == Job Submission == == Job Initiation == == Map Task Execution == == Reduce Task Execution == == Job Completion == @enduml
false
true
false
false
sequence
67bad8080992dff6b0f485aeb95f6d25da28e678
7a1d90175f78470e0b54d5431d12c21132d826ff
/docs/connector/connector-invite.puml
9148b84b7a21e3a4ae50ab166970fd7c848a6b68
[ "Apache-2.0", "CC-BY-3.0" ]
permissive
reTHINK-project/dev-hyperty
bc4a17625fd2ad4f29f220413682570882a115d2
04dcfdb817161ad58ce13878be392f9b6d3ac3df
refs/heads/master
2020-12-03T03:47:35.106591
2019-07-02T15:44:32
2019-07-02T15:44:32
56,135,123
0
3
Apache-2.0
2019-05-23T10:16:43
2016-04-13T08:37:48
JavaScript
UTF-8
PlantUML
false
false
1,114
puml
@startuml autonumber participant "App" as app participant "WRTC\nAPI" as wrtcAPI participant "Connector\nHyperty" as voiceH participant "Connection\nController" as connCtrl participant "Connection\nData Object" as Conn participant "Message Factory" as msgF participant "Syncher" as sync participant "Message BUS" as bus app -> voiceH : addListener( callback ) note over voiceH App listener to receive incoming connection requests end note newpage app -> voiceH : connect( bobHypertyURL, options ) group Connection Invite Bob voiceH -> wrtcAPI : get CommResources\n(incl SDP) voiceH <-- wrtcAPI : return CommResources\n(incl SDP) voiceH -> sync : create\n( connectionObjSchema, CommResources, bobHypertyURL ) create Conn sync -> Conn : new() sync -> sync : Object.observe( Connection ) sync -> bus : postMessage( createConnectionObjectReqMsg ) ... sync <- bus : postMessage( createConnectionObjectResOkMsg ) voiceH <-- sync : return ConnectionDataObject end group create connCtrl voiceH -> connCtrl : new( ConnectionDataObject ) app <-- voiceH : return ConnectionController @enduml
false
true
false
false
sequence
27ef444dc950fe1a92ee37137f1e7f5bf32bd5b1
83a1a7f2e85781a5e910591c60cb84d31c233c11
/conception/diag_classe_package_game.plantuml
70f7e6b382c398db4a8c35e72667627912453ce8
[]
no_license
AntoineCourtil/CAD2018_Laraclette
3590a7649826eeab47083c0ea79f8b62393ae781
ab0fc5eb473758a2bbc2241853bfa6d2de5a33b5
refs/heads/master
2021-05-09T14:42:38.996159
2018-04-26T13:29:49
2018-04-26T13:29:49
119,071,004
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,328
plantuml
@startuml title Diagramme de classe du package game package game { enum Cmd { ARROW_LEFT, ARROW_RIGHT, ARROW_UP, ARROW_DOWN, ENTER } enum GameState { MENU RUNNING, EPOCH_CHOOSE, RESUME_GAME } class Game { - gameState : GameState - painter : Painter + evolve(cmd : Cmd, click Point2D) - evolveRunning(cmd : Cmd, click Point2D) - evolveMenu(cmd : Cmd, click Point2D) - evolveEpochChoose(cmd : Cmd, click Point2D) - evolveResumeGame(cmd : Cmd, click Point2D) - playerChooseBoat(pos : Point2D) - playerShoot(pos : Point2D) } Game --"1" modele.BatailleNavale Game ..> engine.Game class Painter { - drawMenu() - drawEpochChoose() - drawRunning() - drawResumeGame() } Painter ..> engine.GamePainter Painter -- "1" modele.BatailleNavale class Controller { - commandeEnCours : Cmd - clickEnCours : Point2D + keyPressed(e : KeyEvent) + mouseClicked(e : MouseEvent) } Controller ..> engine.GameController } package engine { interface GameController interface GamePainter interface Game } package modele { class BatailleNavale } @enduml
false
true
false
false
class
fb9161117dd7c2037358cf88511d75c0fb03b99e
d658077b97f29ee990ee9fb828d8c94934477628
/src/test/resources/classdiagrams/skinning-1.puml
e4f9f12d66db7b8a7ec441074607635994163838
[ "Apache-2.0" ]
permissive
verhage/plantuml-parser
7fd40e8591c1548c5c417a0facf806e8c246a8b0
c792da387dd0a05b9737c69d3454d1f0d3a797a3
refs/heads/master
2022-11-12T02:36:14.941532
2020-07-05T20:29:27
2020-07-05T20:29:27
277,164,332
0
0
null
null
null
null
UTF-8
PlantUML
false
false
237
puml
@startuml skinparam class { BackgroundColor PaleGreen ArrowColor SeaGreen BorderColor SpringGreen } skinparam stereotypeCBackgroundColor YellowGreen Class01 "1" *-- "many" Class02 : contains Class03 o-- Class04 : aggregation @enduml
false
true
false
false
class
5f72580f1bf006bd7dae550fa4b4d63cbdc5c4e1
a4750e0d70ea76001971df4511c7bde543c04a96
/TD1.2.2.plantuml
ac0ef45e3fef9f996fe6f4c3c4747903be660fff
[ "MIT" ]
permissive
IUT-Blagnac/bcoo-NicolasIUT
39019a72749beae52fb54429537391559322b2e4
a8cf846d6d34addaac8771a69e5a70b2ebec1af5
refs/heads/main
2023-03-28T07:33:31.038455
2021-03-31T13:41:04
2021-03-31T13:41:04
335,633,635
0
0
null
null
null
null
UTF-8
PlantUML
false
false
457
plantuml
@startuml TD1.2.2 V1 '-------------------------------- ' Parametres pour le dessin '-------------------------------- hide circle hide empty members hide empty methods '-------------------------------- class OrdiPortable { prixAchat valeurActuelle } class Clavier { type } class Touche { valeur } class Proprietaire { nom prenom } Proprietaire "1" -- "1..*" OrdiPortable OrdiPortable "1" -- "1" Clavier Touche "*" -- "1" Clavier @enduml
false
true
false
false
class
23342055057c44c3d6ef4d780392a72e4c9a293f
be6f3c2838e9be8dce8f8ac10de1ce485d030eaa
/docs/internals/phpdocumentor3/components/php.puml
db9d92279c4d8c867f1665f8a192b8ebb521fd13
[ "MIT" ]
permissive
zonuexe/phpDocumentor2-ja
79718326856fba3945ea16ed26eb023b87c3c9fe
aa085f2f10878f0b856cb1d673b5784e115145f9
refs/heads/doc/ja-translation
2021-08-09T12:55:10.460481
2016-08-18T16:15:50
2016-08-18T16:15:50
65,297,906
0
1
MIT
2021-01-25T14:35:51
2016-08-09T13:38:24
PHP
UTF-8
PlantUML
false
false
4,602
puml
@startuml namespace Reflection { class Fqsen interface Element { + getFqsen() : Fqsen + getName() : string } Element o-> Fqsen namespace Php { class DocBlock note bottom The DocBlock and related classes are described in the Class Diagram for the DocBlock Reflection component. end note class Visibility { + __construct(string $visibility) + __toString() } class Project<<Aggregate Root>> { + getFiles() : File[] + addFile(File $file) + getRootNamespace() : Namespace + getNamespaces() : Namespace[] + addNamespace(Namespace $namespace) } interface ProjectFactoryStrategy { + matches(object $data) : boolean + create(object $data, ProjectFactory $factory) : Reflection.Element } note left The ProjectFactory is provided with the create method because we are building a tree and this means that this is a recursive process. For example: a Class factory strategy will invoke the factory to create its members. end note class ProjectFactory { + __construct($strategies) + create(string[] $files) : Project + update(Project $project, string[] $files) : Project } class File implements Reflection.Element { } class Namespace_ implements Reflection.Element { } class Constant implements Reflection.Element { } class Function_ implements Reflection.Element { } class Class_ implements Reflection.Element { } class Interface_ implements Reflection.Element { } class Trait_ implements Reflection.Element { } class ClassConstant implements Reflection.Element { } class Property implements Reflection.Element { } class Method implements Reflection.Element { } class Argument { } namespace Factory { class File { } class Namespace_ { } class Constant { } class Function_ { } class Class_ { } class Interface_ { } class Trait_ { } class ClassConstant { } class Property { } class Method { } class Argument { } } Project - ProjectFactory Project o--> File Project o--> Namespace_ ProjectFactory o--> ProjectFactoryStrategy ProjectFactoryStrategy <|-- .Reflection.Php.Factory.File ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Namespace_ ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Constant ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Function_ ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Class_ ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Interface_ ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Trait_ ProjectFactoryStrategy <|-- .Reflection.Php.Factory.ClassConstant ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Property ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Method ProjectFactoryStrategy <|-- .Reflection.Php.Factory.Argument File o--> Function_ File o--> Constant File o--> Class_ File o--> Interface_ File o--> Trait_ Namespace_ o--> Function_ Namespace_ o--> Constant Namespace_ o--> Class_ Namespace_ o--> Interface_ Namespace_ o--> Trait_ Class_ o--> Method Class_ o--> Property Class_ o--> ClassConstant Interface_ o--> Method Interface_ o--> ClassConstant Trait_ o--> Method Trait_ o--> Property Function_ o--> Argument Method o--> Argument Class_ o--> .Reflection.Php.DocBlock Interface_ o--> .Reflection.Php.DocBlock Trait_ o--> .Reflection.Php.DocBlock Function_ o--> .Reflection.Php.DocBlock Constant o--> .Reflection.Php.DocBlock ClassConstant o--> .Reflection.Php.DocBlock Property o--> .Reflection.Php.DocBlock Method o--> .Reflection.Php.DocBlock Method o--> .Reflection.Php.Visibility Property o--> .Reflection.Php.Visibility } } @enduml
false
true
false
false
class
bfd3f130e08fb438af6eb748825495660195b99f
c7144af16e76ac5765e3c5c212eb1fa515ea8f6c
/DesignPattern/ClassDiagram/class-diagram_2-1-1.puml
8b1733bcf5796ddc487db437936d2c5c8b42ced5
[]
no_license
JungInBaek/TIL
de183dc4e42bb1e7ff1a88a7d79ec33088644334
4043c68213ec8955eaeb570e11e7d2fd9bf85924
refs/heads/main
2023-08-22T02:15:41.238631
2021-10-06T13:55:45
2021-10-06T13:55:45
399,660,120
4
0
null
null
null
null
UTF-8
PlantUML
false
false
154
puml
@startuml Coffee <|-- Espresso class Coffee { -String name +String getName() +void setName(String name) +void display() } class Espresso @enduml
false
true
false
false
class
3d22590afea882e0d923179b1253f96b94238c20
4e22d261d7dcf5fe2731d77ba3cfb47c5568977c
/Documentation/Source/Breakdown/Engine/TempestEngine/Messaging/Message-Class.iuml
46a0da5d9a3cb5eec712cff370b8958a5f4953f9
[]
no_license
SeraphinaMJ/Reformed
2d7424d6d38d1cfaf8d385fade474a27c02103a5
8563d35ab2b80ca403b3b57ad80db1173504cf55
refs/heads/master
2023-04-06T00:40:34.223840
2021-05-06T11:25:51
2021-05-06T11:25:51
364,884,928
0
0
null
null
null
null
UTF-8
PlantUML
false
false
63
iuml
namespace Communications { class Message }
false
true
false
false
class
4cdd7653a2d87fcf89334c870f187891d8c0cd84
172251b9015b574f5332b8f93ca20301cbb650df
/springboot-mybatis-demo2/aop代理对象生成过程分析.puml
ba9090f76db6fbde5872bc8f24d23e890049aca6
[]
no_license
niepugithub/springboot
43245dc37d0ae14d0486aa2a68b0545595bf839b
00cffd56c7dae4278423120f18d4c061eccece6b
refs/heads/master
2022-12-22T07:52:50.392121
2020-02-27T08:42:50
2020-02-27T08:42:50
144,867,647
0
0
null
2022-12-16T03:28:52
2018-08-15T15:02:09
Java
UTF-8
PlantUML
false
false
199
puml
@startuml Actor actor Alice -> Bob: Authentication Request Bob --> Alice: Authentication Response Alice -> Bob: Another authentication Request Alice <-- Bob: another authentication Response @enduml
false
true
false
false
sequence
8c26a3f75f53d678ea65daca19be32183348e6cb
19bc9c3bc394a731bd46908339671ec42b610bab
/uml_diagrams/overallArchitectureDiagram.puml
360d6718ceebec831b956d35c86c51d36b04eb51
[ "MIT" ]
permissive
lordnodd/index_zero_trafficsystem
434ae2593630cf2c0a20320d2380095a918a1abb
eea740965fbf4a0bb8e9e84dc14b38bd52b17319
refs/heads/master
2021-06-11T13:35:57.927145
2016-03-30T23:34:01
2016-03-30T23:34:01
178,351,371
0
0
MIT
2021-04-10T11:58:53
2019-03-29T07:05:42
Java
UTF-8
PlantUML
false
false
676
puml
@startuml 'initial version - this diagram has no additional features to emerge later yet. 'later should add: map import/export, etc. package "Simulator" { [CLIControlInterface] [SimulationEngine] [IOSubsystem] [Map] [RulesLawsPhysics] [Vehicles] CLIControlInterface-->SimulationEngine SimulationEngine-->Map SimulationEngine-->IOSubsystem Map-->RulesLawsPhysics Map->Vehicles } package "Graphical UI" { [ControlUI] [RenderingEngine] ControlUI-->RenderingEngine } [LogSystem] package "Common" { [DataFormat] [DataSerialization] IOSubsystem-->DataFormat SimulationEngine-->LogSystem ControlUI-->DataFormat ControlUI-->LogSystem DataFormat-left->DataSerialization } @enduml
false
true
false
false
uml-unknown
3e45e1596ca337e566397b78488f267f63eb722c
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderSetItemShippingAddressCustomTypeAction.puml
ebfbcd1697211678551d47ffc5b04b2393a04c88
[]
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
592
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 OrderSetItemShippingAddressCustomTypeAction [[OrderSetItemShippingAddressCustomTypeAction.svg]] extends OrderUpdateAction { action: String addressKey: String type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]] fields: [[FieldContainer.svg FieldContainer]] } interface OrderUpdateAction [[OrderUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
9f93fa49053fdde3f948c21f7e07b643f6016968
89da02861e433bbb67bc1fc907ab4b8d7d2cdf02
/deployment_diagram.plantuml
984978e3923102aca29ad9e8324f5727e24925c1
[]
no_license
Flared/teleproxy
da7f5824d78742340a88383ccb464ac5d5cbd246
0510c244b2a7beeb46d016336143eb8936623626
refs/heads/main
2023-03-27T17:52:44.552741
2021-03-24T02:35:24
2021-03-24T02:35:24
340,999,042
11
1
null
2021-03-19T14:58:54
2021-02-21T20:39:41
Shell
UTF-8
PlantUML
false
false
893
plantuml
@startuml package "Your Laptop" { [teleproxy] [telepresence local] [kubectl config] package "Cluster A - Minikube" { [telepresence incluster] [client pod] } } package "Cluster B - Remote" { [target pod] } [telepresence incluster] --> [telepresence local] [telepresence local] -> [teleproxy] [teleproxy] --> [target pod] [teleproxy] --> [kubectl config] [client pod] --> [telepresence incluster] note left of [telepresence incluster] Replaces source_deployment. (someservice in our example) endnote note left of [telepresence local]: Receives traffic from telepresence incluster. note right of [teleproxy] Runs `kubectl port-forward` and mounts your local kubectl config. (files & env vars) endnote note right of [client pod] Normally uses source_deployment but now using the replacement pod without noticing. endnote @enduml
false
true
false
false
uml-unknown
f4ca0a5597a2cbd03abe01923605c9da1c936f41
188aa3bd1c4fc0a88cab9726c2f2299f147e70d8
/docs/UC_02/UC02_SD.puml
ed163c8d2844f261981f53f7931f879d151c7528
[]
no_license
botelho-io/lapr2-2020-g029
c6a3c15bace1145c94c0495ac5f8ce54b7be478c
1834bf842e5ae1f94d20ab61dad8e8124fc9f61b
refs/heads/master
2023-08-17T00:53:42.364156
2020-06-14T22:29:10
2020-06-14T22:29:10
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,984
puml
@startuml autonumber 'hide footbox actor Collaborator as C participant ":CreatingTaskUI" as UI participant ":CreatingTaskController" as CTRL participant "AppPOE" as _APPOE participant "app\n:AppPOE" as APPOE participant "sessao\n:SessionUser" as SESSAO participant ":APP" as APP participant "rorgs:Regist\nOrganization" as RORGS participant "org\n:Organization" as ORG participant "lt\n:TaskList" as LTASKS participant "tarefa\n:Task" as TAREFA activate C C -> UI : stars the crating of a new task activate UI UI --> C : request the task data (i.e. id, description, durationInHours, costPerHourOfJuniorEur, category) deactivate UI C -> UI : enters the requested data activate UI UI -> CTRL : newTask(id, description, durationInHours, costPerHourOfJuniorEur, category) activate CTRL CTRL -> _APPOE: app = getInstance() activate _APPOE ||| deactivate _APPOE CTRL -> APPOE: sessao = getSessaoAtual() activate APPOE ||| deactivate APPOE CTRL -> SESSAO: email = getEmailUser() activate SESSAO deactivate SESSAO CTRL -> APP: rorgs = getRegistOrganization() activate APP deactivate APP CTRL -> RORGS: org = getOrganizacaoByEmailUser(email) activate RORGS deactivate RORGS CTRL -> ORG: lt = getTasklist() activate ORG deactivate ORG CTRL -> LTASKS: task=newTask(id, description, durationInHours, costPerHourOfJuniorEur, category) activate LTASKS LTASKS --> TASK**: create(id, description, durationInHours, costPerHourOfJuniorEur, category) LTASKS -> LTASKS: validatesTask(task) UI --> C: validates and presents the data to the collaborator, asking him to confirm it deactivate LTASKS deactivate CTRL deactivate UI C -> UI : confirms the data activate UI UI -> CTRL : registTask() activate CTRL CTRL -> LTASKS : registTask(task) activate LTASKS LTASKS -> LTASKS: validatesTask(task) LTASKS -> LTASKS: addTask(task) UI --> C : records the data and informs the collaborator of the success of the operation. deactivate LTASKS deactivate CTRL deactivate UI deactivate C @enduml
false
true
false
false
usecase
441d8f9e520b5a324710d3fe6f24db7a549e7666
ada58b08512f0390c1bf1a31f63defcac442d58b
/kj-repo-doc/src/main/java/com/kj/repo/doc/logger/logback_init.puml
b4880eddf0aab92a16b0bb9509964c514def5690
[]
no_license
Kuojian21/kj-repo
a508e83325f6cab9a2acba550d07f4515f9d2ca9
5ae4ff95fd843d69317e471ac20345fdbe109cbe
refs/heads/master
2022-12-21T11:50:21.906395
2021-10-04T23:24:50
2021-10-04T23:24:50
149,978,220
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,455
puml
@startuml Invoker -> LoggerContext:<init> activate LoggerContext LoggerContext --> Invoker deactivate LoggerContext Invoker -> ContextInitializer:<init>(LoggerContext) activate ContextInitializer ContextInitializer --> Invoker deactivate ContextInitializer Invoker -> ContextInitializer:autoConfig activate ContextInitializer ContextInitializer -> ContextInitializer:findURLOfDefaultConfigurationFile activate ContextInitializer deactivate ContextInitializer ContextInitializer -> ContextInitializer:configureByResource activate ContextInitializer ContextInitializer -> JoranConfigurator activate JoranConfigurator JoranConfigurator --> ContextInitializer deactivate JoranConfigurator ContextInitializer -> JoranConfigurator:setContext activate JoranConfigurator JoranConfigurator --> ContextInitializer deactivate JoranConfigurator ContextInitializer -> JoranConfigurator:doConfigure activate JoranConfigurator JoranConfigurator -> SaxEventRecorder:recordEvents SaxEventRecorder --> JoranConfigurator:saxEventList JoranConfigurator -> Interpreter:<init> Interpreter --> JoranConfigurator loop JoranConfigurator -> Interpreter:play(SaxEvent) activate Interpreter alt logger Interpreter -> LoggerAction:begin activate LoggerAction LoggerAction -> LoggerContext:getLogger activate LoggerContext LoggerContext -> Logger:createChildByName activate Logger Logger --> LoggerContext deactivate Logger LoggerContext --> LoggerAction deactivate LoggerContext LoggerAction --> Interpreter deactivate LoggerAction Interpreter -> LoggerAction:end activate LoggerAction LoggerAction --> Interpreter deactivate LoggerAction end Interpreter --> JoranConfigurator deactivate Interpreter end JoranConfigurator --> ContextInitializer deactivate JoranConfigurator deactivate ContextInitializer ContextInitializer --> Invoker deactivate ContextInitializer Invoker -> LoggerContext:getLogger activate LoggerContext LoggerContext --> Invoker deactivate LoggerContext @enduml
false
true
false
false
sequence
5cba85c74a31b919e0fbf43597ee2321d5021865
8abe619f29b522a7a25ee5812733053ba6da30ab
/src/UML/Przypadki_Uzycia.puml
23b30043513d75b5d3f7f1f639da2e05a2739c1c
[]
no_license
MaciejSawicki/Forex-study-project
1e77433fd615a19f2096fbc5c714e33292b340cb
e4f923fdb5b922b9710f2d08599583613d2ebdc9
refs/heads/master
2022-12-10T22:41:28.026954
2020-09-25T15:20:47
2020-09-25T15:20:47
297,472,396
0
0
null
null
null
null
UTF-8
PlantUML
false
false
296
puml
@startuml User --> (Create account) User --> (Modify account) User --> (Delete account) User --> (Charge account) User --> (Withdraw money) User --> (Login) User --> (Buy asset) User --> (Sell asset) User --> (Specify amount of buying/selling asset) User --> (Get transactions history) @enduml
false
true
false
false
uml-unknown
30dc7f12e87eddc403685fc475372125ffce603f
31ada35ddca56eed3d4129f523f14c54ab6ad53a
/waso/diagrammes de séquence système/DSS004 - CU004.puml
12bee4e353c78fbc865c1a40466cd7094b51bc66
[]
no_license
if-h4102/pld-mars
1bf9ed3559fee98db4cdc2f0fae3be02f61a445c
6593c98343b5081c71562ab1bbfb058bf032b3c2
refs/heads/master
2021-01-10T23:03:59.242002
2016-11-02T00:52:36
2016-11-02T00:52:36
70,428,298
0
0
null
null
null
null
UTF-8
PlantUML
false
false
322
puml
@startuml actor "Utilisateur" participant "Interface" participant "Système" Utilisateur -> Interface: ConsulterDossierClient Interface -> Système: SM004: consulterDossierClient(clientId) activate Système Interface <<-- Système: Client, List<Personne>, List<Segment>\nAgence, Conseiller deactivate Système @enduml
false
true
true
false
usecase
ba81ee955c53473a54ef58e6ea68e934d9eb312c
5154f1f50574e5238ba9fd189a1c52693eea8763
/docs/plantuml/FoI.puml
c3310d8a6e1b4cdc6d61c96ea95079170f8ffe70
[ "MIT" ]
permissive
darkar5555/HIT2GAPOnt
04cdf08c6d4803c17d026b2b42d238c1fc8c9776
8b663ad8162debf72b946e2a1c103975c92b76bb
refs/heads/master
2020-06-04T12:01:36.330677
2019-03-21T09:36:40
2019-03-21T09:36:40
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
8,728
puml
@startuml scale 0.5 skinparam class { ArrowColor DarkBlue ArrowFontColor DarkBlue BackgroundColor LightBlue BorderColor DarkGrey } skinparam dpi 300 skinparam stereotypeCBackgroundColor Wheat skinparam classAttributeFontColor Green /' Definition of the Feature of interest classes '/ class FeatureOfInterest <<ssn>> class Observation <<ssn>> { externalStorageID xsd:string } class MobileBuildingApplianceLocationObservation <<hit2gap>> class IfcBuilding <<ifc>> class IfcElement <<ifc>> class IfcSpatialElement <<h2gifc4>> class Microgrid <<ontomg>> class IfcSpatialStructureElement <<ifc>>{ hasSpatialStructureCapacity: xsd:double; } class IfcBuildingElement <<ifc>> class IfcElementComponent <<ifc>> class IfcDistributionControlElement <<ifc>> class IfcDistributionFlowElement <<ifc>> class IfcZone <<ifc>> class IfcSpatialZone <<h2gifc4>> class IfcFlowInstrument <<ifc4>> class IfcFlowInstrumentType <<ifc>> class IfcElectricalFlowStorageDevice <<ifc4>> class IfcElectricalFlowStorageDeviceType <<ifc>> class IfcTank <<ifc4>> class IfcTankType <<ifc>> class IfcSensor <<ifc4>> class IfcSensorType <<ifc>> class IfcProtectiveDeviceTrippingUnit <<h2gifc4>> class IfcUnitaryControlElement <<h2gifc4>> class IfcFlowTerminal <<ifc>> class IfcFlowStorageDevice <<ifc>> class IfcFlowTreatmentDevice <<ifc>> class IfcEnergyConversionDevice <<ifc>> { hasSetPoint xsd:boolean } class IfcFlowController <<ifc>> class IfcFlowMovingDevice <<ifc>> class BuildingAppliance <<hit2gap>> class BuildingType <<hit2gap>> class StaticBuildingAppliance <<hit2gap>> class MobileBuildingAppliance <<hit2gap>> class Monitoring <<hit2gap>> class Wereable <<hit2gap>> class Smartwatch <<hit2gap>> class Smartphone <<hit2gap>> class Meter <<hit2gap>> class IfcActuator <<ifc4>> class IfcActuatorType <<ifc>> class IfcAlarm <<ifc4>> class IfcAlarmType <<ifc>> class IfcController <<ifc4>> class IfcControllerType <<ifc>> class ELBranch <<ontomg>> class EnergyStorage <<ontomg>> class BranchController <<ontomg>> /' Building types class definition '/ class Agricultural <<hit2gap>> class Commercial <<hit2gap>> class Residential <<hit2gap>> class Educational <<hit2gap>> class Industrial <<hit2gap>> class Religious <<hit2gap>> class Public <<hit2gap>> class Transports <<hit2gap>> /' Building Zones types definition '/ class Room <<hit2gap>> class Floor <<hit2gap>> class OpenSpace <<hit2gap>> class Desk <<hit2gap>> class Subterranean <<hit2gap>> class Ground <<hit2gap>> class IfcDistributionElement <<ifc>> class DistributionElementState <<hit2gap>> class DiscreteState <<hit2gap>> class ContinousState <<hit2gap>> class IfcBuildingStorey <<ifc>> class IfcSite <<ifc>> class IfcSpace <<ifc>> class SpaceCapacity <<hit2gap>> class Orientation <<hit2gap>> class North <<(I,orchid),hit2gap>> class South <<(I,orchid),hit2gap>> class West <<(I,orchid),hit2gap>> class East <<(I,orchid),hit2gap>> class North_East <<(I,orchid),hit2gap>> class North_West <<(I,orchid),hit2gap>> class South_East <<(I,orchid),hit2gap>> class South_West <<(I,orchid),hit2gap>> /' Definition of the types of Physical Medium '/ class PhysicalMedium <<hit2gap>> class Oil <<hit2gap>> class Gas <<hit2gap>> class Water <<hit2gap>> class Air <<hit2gap>> class Steam <<hit2gap>> class Radiation <<hit2gap>> /' Definition of the types of FoIs '/ FeatureOfInterest <|-- IfcBuilding FeatureOfInterest <|-- BuildingAppliance FeatureOfInterest <|-- IfcElement FeatureOfInterest <|-- Microgrid FeatureOfInterest <|-- IfcSpatialElement IfcSpatialStructureElement <|-- IfcBuilding IfcSpatialElement <|-- IfcSpatialStructureElement IfcSpatialElement <|-- IfcSpatialZone IfcSpatialStructureElement --> SpaceCapacity: hit2gap:hasCapacity IfcSpatialStructureElement <|-- IfcBuildingStorey IfcSpatialStructureElement <|-- IfcSite IfcSpatialStructureElement <|-- IfcSpace IfcBuilding -->IfcSpatialZone: hit2gap:contains IfcSpatialZone --> IfcElement: hit2gap:contains IfcSite --> IfcSite: hit2gap:contains IfcSite --> IfcBuilding: hit2gap:contains IfcBuilding --> IfcBuilding: hit2gap:contains IfcBuildingStorey -->IfcSpace: hit2gap:contains IfcZone -->IfcZone: hit2gap:contains IfcZone -->IfcSpace: hit2gap:contains IfcBuilding -->IfcSpace: hit2gap:contains IfcBuilding --> IfcBuildingStorey: hit2gap:contains IfcSite --> Orientation: hit2gap:hasOrientation IfcBuilding --> Orientation: hit2gap:hasOrientation Orientation..[#orchid] North Orientation..[#orchid] South Orientation..[#orchid] West Orientation..[#orchid] East Orientation..[#orchid] North_East Orientation..[#orchid] North_West Orientation..[#orchid] South_East Orientation..[#orchid] South_West IfcElement <|-- IfcDistributionElement IfcElement <|-- IfcBuildingElement IfcElement <|-- IfcElementComponent IfcDistributionElement <|-- IfcDistributionControlElement IfcDistributionElement <|-- IfcDistributionFlowElement IfcDistributionFlowElement <|-- IfcFlowStorageDevice IfcDistributionFlowElement <|-- IfcFlowMovingDevice IfcDistributionFlowElement <|-- IfcFlowController IfcDistributionFlowElement <|-- IfcFlowTerminal IfcDistributionFlowElement <|-- IfcFlowTreatmentDevice IfcDistributionFlowElement <|-- IfcEnergyConversionDevice IfcDistributionElement --> DistributionElementState: hit2gap:hasState DistributionElementState <|-- ContinousState DistributionElementState <|-- DiscreteState IfcDistributionElement --> IfcBuildingElement: hit2gap:contains BuildingType <|-- Agricultural BuildingType <|-- Commercial BuildingType <|-- Residential BuildingType <|-- Educational BuildingType <|-- Industrial BuildingType <|-- Religious BuildingType <|-- Public BuildingType <|-- Transports IfcBuilding --> BuildingType: hit2gap:hasType BuildingAppliance <|-- StaticBuildingAppliance BuildingAppliance <|-- MobileBuildingAppliance StaticBuildingAppliance <|-- IfcFlowTerminal StaticBuildingAppliance <|-- Monitoring MobileBuildingAppliance <|-- Wereable BuildingAppliance --> BuildingAppliance: hit2gap:contains StaticBuildingAppliance --> IfcZone: hit2gap:isLocatedIn Monitoring --> BuildingAppliance: hit2gap:MeasureInputOutput IfcEnergyConversionDevice --> IfcZone: hit2gap:InputOutput StaticBuildingAppliance <|-- IfcFlowStorageDevice IfcFlowStorageDevice <|-- IfcElectricalFlowStorageDevice IfcFlowStorageDevice <|-- IfcTank StaticBuildingAppliance <|-- IfcFlowMovingDevice StaticBuildingAppliance <|-- IfcFlowController StaticBuildingAppliance <|-- IfcFlowTreatmentDevice StaticBuildingAppliance <|-- IfcEnergyConversionDevice Observation <|-- MobileBuildingApplianceLocationObservation MobileBuildingAppliance --> MobileBuildingApplianceLocationObservation: hit2gap:wasLocated BranchController <|-- IfcFlowController EnergyStorage <|-- IfcElectricalFlowStorageDevice ELBranch <|-- IfcFlowMovingDevice ELBranch <|-- IfcEnergyConversionDevice Wereable <|-- Smartwatch Wereable <|-- Smartphone Monitoring <|-- IfcSensor Monitoring <|-- IfcActuator Monitoring <|-- IfcAlarm Monitoring <|-- Meter IfcSpace <|-- Office IfcSpace <|-- CirculationArea IfcSpace <|-- WetArea IfcSpace <|-- ConferenceRoom IfcSpace <|-- Balcony IfcSpace <|-- Kitchen IfcSpace <|-- Toilets IfcSpace <|-- Bathroom IfcSpace <|-- RestRoom IfcSpace <|-- Canteen IfcSpace <|-- Cafeteria IfcSpace <|-- Room IfcSpace <|-- Desk IfcSpace <|-- OpenSpace IfcBuildingStorey <|-- Floor Floor <|-- Subterranean Floor <|-- Ground IfcDistributionElement <|-- IfcDistributionControlElement IfcDistributionControlElement <|-- IfcActuator IfcDistributionControlElement <|-- IfcAlarm IfcDistributionControlElement <|-- IfcController IfcDistributionControlElement <|-- IfcFlowInstrument IfcDistributionControlElement <|-- IfcProtectiveDeviceTrippingUnit IfcDistributionControlElement <|-- IfcSensor IfcDistributionControlElement <|-- IfcUnitaryControlElement PhysicalMedium <|-- Oil PhysicalMedium <|-- Gas PhysicalMedium <|-- Water PhysicalMedium <|-- Air PhysicalMedium <|-- Steam PhysicalMedium <|-- Radiation IfcFlowMovingDevice --> PhysicalMedium: hit2gap:transports IfcEnergyConversionDevice --> PhysicalMedium: hit2gap:consumes IfcEnergyConversionDevice --> PhysicalMedium: hit2gap:produces IfcFlowStorageDevice --> PhysicalMedium: hit2gap:stores IfcFlowController --> PhysicalMedium: hit2gap:controls IfcFlowTerminal --> PhysicalMedium: hit2gap:consumes IfcFlowInstrument --> IfcFlowInstrumentType: owl:equivalentClass IfcSensor --> IfcSensorType: owl:equivalentClass IfcActuator --> IfcActuatorType: owl:equivalentClass IfcAlarm --> IfcAlarmType: owl:equivalentClass IfcController --> IfcControllerType: owl:equivalentClass IfcElectricalFlowStorageDevice --> IfcElectricalFlowStorageDeviceType: owl:equivalentClass IfcTank --> IfcTankType: owl:equivalentClass @enduml
false
true
false
false
sequence
113d16c38410d248e9acac69cbc14369dc21fa42
ceac919769f874c588298e428ea1f657889ee27f
/BurgerStep2.puml
2f8e58682f9cd0a23dc4d4c0ff0424be77e5b43e
[]
no_license
aissatoubarryfab/TdBurger
22fcc77bf879826ab1eb6a148d6c4991db718e4c
36fc11c27c6235f82e482d5a603b328179e43b47
refs/heads/master
2023-08-14T02:31:07.072407
2021-09-21T10:41:08
2021-09-21T10:41:08
408,178,794
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,405
puml
@startuml classdiagram package Step2.api{ package money{ interface Product { price(): double } } package food{ interface Food100g{ calorie100g():double } } package Restauration{ interface FoodProduct extends Product,Food100g{ hasUniquePrice():bool } interface WeightedFoodProduct extends FoodProduct{ weight():double calorie():double } } package burger { enum FoodType implements FoodProduct { BEEF, WHITEFISH,BURGER, BARBECUE, BEARNAISE, DEEPFRIENDONIONS, CHEDDAR,TOMATO + price(): double +calorie100g():double +hasUniquePrice():bool } class Ingredient implements WeightedFoodProduct{ -weight:double +this(type:FoodType,weight:double) +calorie100g():double +weight():double +calorie():double +price():double +hasUniquePrice():bool } Ingredient *--> "-type" FoodType class Burger implements WeightedFoodProduct { - name: string + this(name: string, items: List<Ingredient>) + weight(): double + price(): double +calorie():double +calorie100g():double +hasUniquePrice():bool } Burger *-> "-items *" Ingredient } } @enduml
false
true
false
false
class
897210da0edecc16f668ca4be450fc08fa0481fa
326f0532299d6efcaec59d5a2cc95c31d9af9ef2
/src/com/atguigu/singleton/type8/type8.plantuml
49852180b3b2bac7aed512ec78677f5d0667205f
[]
no_license
srefp/design_pattern
4b45ceb0808a8ae98a007bc5b0e01825693dcf7b
b7ff2d80172c55848b8f59530da6ccca477dfd24
refs/heads/main
2023-01-19T06:12:14.495913
2020-11-24T08:48:53
2020-11-24T08:48:53
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
531
plantuml
@startuml title __TYPE8's Class Diagram__\n namespace com.atguigu.singleton { namespace type8 { enum Singleton { INSTANCE } } } namespace com.atguigu.singleton { namespace type8 { class com.atguigu.singleton.type8.SingletonTest08 { {static} + main() } } } 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
56daabf0b37d913a8544634a31236e9f47f84020
ba4b4d2d8b12e5c22a878d02ef409caadcd4febb
/kie-pmml-trusty/Architecture.puml
054fa3217390f90a8ae985fd751b3a74ca0c4ff7
[ "Apache-2.0" ]
permissive
7vqinqiwei/drools
2758e63a2dc0df3caee6026c87717d3c6220f128
2210d82035f7d5c4eb46fa3e16ddf6dfcd18bdd2
refs/heads/master
2021-06-16T09:13:42.144910
2021-03-01T08:49:11
2021-03-01T08:49:11
168,125,013
0
0
Apache-2.0
2021-03-01T08:49:13
2019-01-29T09:12:29
Java
UTF-8
PlantUML
false
false
2,006
puml
@startuml 'default top to bottom direction package "PMML Module" { component api [ PMML API This component defines API common to all PMML submodules ] package "PMML Library" { /'component library_marshaller [ PMML Marshaller This component is only responsible of plain marshalling/unmarshalling, generating kie-agnostic objects. It may also be an already existing library (jpmml ?) ]'/ component library_api [ PMML Library API Defines common objects shared by both Compiler and model Model implementations, to decouple them ] component library_compiler [ PMML Library Compiler Translate original PMML model to the objects that will be stored inside kie knowledge base ] } package "PMML Models" { component implementations [ PMML Model implementations For every "model" there will be a specific module, to have them easily replaceable/pluggable. Compiler will invoke them, if they are available in the classpath. ] } package "PMML Runtime" { component runtime_api [ PMML Runtime API This component defines API specific fo Kie runtime environment ] component runtime_assembler [ PMML Runtime Assembler Store objects created by compiler inside kie knowledge base ] component runtime_core [ PMML Runtime Core Read objects from kie knowledge base and use them to calculate PMML result based on input data ] } /'library_compiler --> marshaller : use'/ library_api .> api : depends runtime_api .> api : depends library_compiler ..> library_api : depends implementations .> library_api : depends library_compiler -> implementations : use runtime_core .> runtime_api : depends runtime_assembler -> library_compiler : use runtime_assembler .> runtime_api : depends } @enduml
false
true
false
false
sequence
2d124301ff719c69ec45e8fc432799f1a2372900
49201c6059aff7268f202bb61942cc3eb7ba462b
/ticketErrorHandling-class.puml
5b27fe9f2fbb1bd4f5497a89bded14b7debeee9a
[]
no_license
OzBenDev/designs
fdc614d5ceff22e14600d1614c7b206aec375a70
d22aa7238f080312bb9bded8ac77676cc5e630fd
refs/heads/master
2023-08-07T14:00:41.829442
2021-09-14T13:14:47
2021-09-14T13:14:47
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,157
puml
@startuml Class EventsViewModel observation abstract class EventsViewModel extends ViewModel { - val event = SingleLiveData<Event>() - val postRequest = SingleLiveData<Pair<StatementRequest, OnDataResponse<*>>>() + val onEvent: SingleLiveData<Event> + val onPostRequest: SingleLiveData<android.util.Pair<StatementRequest, OnDataResponse<*>>> + fun onEventCall(eventCall: Event) } class BaseChatHandler { + fun uploadFile() } class BaseChatUIHandler extends BaseChatHandler{ + fun <reified MODEL: EventsViewModel> observeLiveEvents() } class TicketViewModel extends EventsViewModel { - var filePathCallback + var filePath + fun setFilePathCallback(ValueCallback<Uri[]> filePathCallback) } class ArticleViewModel extends EventsViewModel BotChatUIHandler "creates" --down> TicketFragment TicketFragment "creates" --down> TicketViewModel BotChatUIHandler *--> BotChatHandler class BotChatHandler extends BaseChatHandler { + override fun uploadFile() } class BotChatUIHandler extends BaseChatUIHandler { + override fun uploadFile() } BotChatUIHandler "\nobserves" <|-.-.-.-|> TicketViewModel @enduml
false
true
false
false
class
c5d5665872999e37a3343093a3180a805d306163
0451c8ba480721dd4f116d8d1c989fc941bf91f8
/personalFinanceManagement/src/main/java/switch2019/project/controllerLayer/cli/US001AreSiblingsSD.puml
8dee4fa6b8a14d022f72af87b67ab7a0f73ec93b
[]
no_license
mleitaoribeiro/DevOpsMaven
ee8eac2ea35a3818a4480c7ee57c305f9f8938e3
c8e4bcb36dfd765a08f8b9140d3b60a260734ae1
refs/heads/master
2023-01-01T13:37:18.143028
2020-07-02T16:16:52
2020-07-02T16:16:52
304,918,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,430
puml
@startuml skinparam DefaultFontSize 20 participant ":Test" participant "controller:US001AreSiblingsController" participant "service:US001AreSiblingsService" participant "personRepo:PersonRepository" participant "person1:Person" == Act == ":Test" -> "controller:US001AreSiblingsController" : siblings = areSiblings(personEmail1, personEmail2) activate "controller:US001AreSiblingsController" #FFBBBB "controller:US001AreSiblingsController"-> "service:US001AreSiblingsService" : siblings = areSiblings\n(personEmail1, personEmail2) activate "service:US001AreSiblingsService" #FFBBBB "service:US001AreSiblingsService" -> "personRepo:PersonRepository" : person1: findPersonByEmail(personEmail1) activate "personRepo:PersonRepository" #FFBBBB "service:US001AreSiblingsService" -> "personRepo:PersonRepository" : person2: findPersonByEmail(personEmail2) deactivate "personRepo:PersonRepository" #FFBBBB "service:US001AreSiblingsService" -> "person1:Person" : validSibling = isSibling(person2) activate "person1:Person" #FFBBBB "person1:Person" -> "person1:Person" : personExistsOnSiblingsList(person2) "person1:Person" -> "person1:Person" : checkSameFather(person2) "person1:Person" -> "person1:Person" : checkSameMother(person2) deactivate "person1:Person" deactivate "service:US001AreSiblingsService" deactivate "controller:US001AreSiblingsController" == Assert == ":Test" -> ":Test" : assertTrue(siblings) @enduml
false
true
false
false
sequence
df1ae371aa4188b998a41fa17e569bc426bf799f
7ff58fc7228a274ae37dece9893ae2e15b596c93
/docs/source/pic/src/creds-reset.puml
b1fac61766d1717dbaf534efd3c237c6bb52b6b7
[ "Apache-2.0" ]
permissive
ianco/von_anchor
b6e5f0491118c5816a19fcff8e5df4608222637f
ec19cda85a934307d5338858bc4fb323306e5b21
refs/heads/master
2020-03-28T09:58:49.068532
2020-02-11T17:36:46
2020-02-11T17:36:46
148,073,549
0
0
Apache-2.0
2018-09-09T23:11:51
2018-09-09T23:11:51
null
UTF-8
PlantUML
false
false
1,284
puml
@startuml /' Copyright 2017-2019 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. '/ skinparam ParticipantPadding 20 skinparam BoxPadding 20 title Credentials Reset Sequence box "Indy" #LightBlue participant "Ledger" as ledger endbox actor "Holder-Prover\n(The Org Book)\nVON Anchor" as oban actor "Actuator" as ator === CREDENTIALS RESET SEQUENCE == note over ledger, ator All VON anchor service wrapper APIs are up Schema, cred defs are on ledger Cred load sequence has stored creds at Holder-Prover VON anchor endnote ator --> oban: call creds_reset() group creds_reset() implements oban -> oban: reset wallet, link secret oban --> ator: OK end @enduml
false
true
false
false
usecase
7d1fa1336f8909b379d6ec8228a7575d5f9731f9
f2b3f0970d1b8c52a9cec82be4107ffe1f33a8a2
/lei20_21_s4_2dk_03/docs/USE_CASES/UC22-2105#30/SD.puml
85c7cd0ef7374c50e16f57c5a873d6ebfa7823cd
[ "MIT" ]
permissive
antoniodanielbf-isep/LAPR4-2021
b98ed96809e4726957ede0904b4265825a1083c6
f665064e65cc4f917514c10950af833f053c9b3b
refs/heads/main
2023-05-31T14:29:45.364395
2021-06-20T17:55:26
2021-06-20T17:55:26
378,706,704
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,854
puml
@startuml autonumber actor "NivelBootstrapper" as BOOT participant "servicoBuilder:ServicoBuilder" as SBUILD <<builder>> participant "colaboradorBuilder:ColaboradorBuilder" as CBUILD <<builder>> participant "catController:CriarCatalogoController" as CCONTR <<controller>> participant "newUser:SystemUser" as SYSUSER <<domain>> participant "etiqueta:Etiqueta" as ETI <<domain>> participant "nivel:Nivel" as NIV <<domain>> participant "colaborador:Colaborador" as COL <<domain>> participant "catDTO:CatalogoServicoDTO" as CDTO <<dto>> participant "catalogo:CatalogoServico" as CAT <<domain>> participant "serv:Servico" as SER <<domain>> database NivelRepository as NREPO <<repository>> database ServicoRepository as SREPO <<repository>> database UserRepository as UREPO <<repository>> database ColaboradorRepository as CREPO <<repository>> database CatalogoServicoRepository as CSREPO <<repository>> BOOT -> NREPO** : create() activate NREPO BOOT -> SREPO** : create() activate SREPO BOOT -> UREPO** : create() activate UREPO BOOT -> CREPO** : create() activate CREPO BOOT -> CSREPO** : create() activate CSREPO BOOT -> ETI** : create("Etiqueta") activate ETI ETI --> BOOT : etiqueta deactivate ETI BOOT -> NIV** : create("Etiqueta", "cor", valor, "objetivo", "designacao") activate NIV NIV --> BOOT : nivel deactivate NIV BOOT -> NREPO : save(nivel) BOOT -> SYSUSER** : create(RESPONSAVEL_RECURSOS_HUMANOS, POWERUSER_A1, "First Name", "Last Name", "Email", roles) activate SYSUSER SYSUSER --> BOOT : newUser deactivate SYSUSER BOOT -> UREPO : save(newUser) deactivate UREPO BOOT -> CBUILD** : create() activate CBUILD BOOT -> CBUILD : withSystemUser(newUser) BOOT -> CBUILD : withMecanographicNumber("1234759") BOOT -> CBUILD : withNomeCurto("Nome Curto") BOOT -> CBUILD : withNomeCompleto("Nome Completo") BOOT -> CBUILD : withContactoColaborador(122456789) BOOT -> CBUILD : withDataNascimento(ano, mes, dia) BOOT -> CBUILD : withEmailColaborador("Email") BOOT -> CBUILD : withLocalResidenciaColaborador("Distrito", "Concelho") BOOT -> CBUILD : build() CBUILD --> BOOT : colaborador deactivate CBUILD BOOT -> CREPO : save(colaborador) deactivate CREPO BOOT -> CDTO** : create("ID", "DescBreve", "DescComp", "Titulo", criterioAcessoCatalogo, "1234759") activate CDTO CDTO --> BOOT : catDTO deactivate CDTO BOOT -> CCONTR** : create() activate CCONTR BOOT -> CCONTR : adicionarCatalogoServico(catDTO) deactivate CCONTR BOOT -> CSREPO : ofIdentity(Identificador) CSREPO --> BOOT : catalogo BOOT -> NREPO : ofIdentity(etiqueta) NREPO --> BOOT : nivel1 BOOT -> CAT : addNivel(nivel1) activate CAT deactivate CAT BOOT -> NIV : addCatalogo(catalogo) activate NIV deactivate NIV BOOT -> NREPO : save(nivel1) BOOT -> CSREPO : save(catalogo) deactivate CSREPO BOOT -> SBUILD** : create() activate SBUILD BOOT -> SBUILD : withCodigoUnicoServico("Code") BOOT -> SBUILD : withTituloServico("Titulo") BOOT -> SBUILD : withKeyWords(keyWords) BOOT -> SBUILD : withDescricaoBreveServico("DescBreve") BOOT -> SBUILD : withDescricaoCompletaServico("DescComp") BOOT -> SBUILD : withObjetivoServico("Objetivo") BOOT -> SBUILD : withCatalogoServico(catalogo) BOOT -> SBUILD : build() SBUILD --> BOOT : novoServico deactivate SBUILD BOOT -> SREPO : save(novoServico) BOOT -> SREPO : ofIdentity(CodigoUnicoServico) SREPO --> BOOT : serv BOOT -> NREPO : ofIdentity(etiqueta) NREPO --> BOOT : nivel2 BOOT -> SER : associarNivel(nivel2) activate SER deactivate SER BOOT -> NIV : addServico(serv) activate NIV deactivate NIV BOOT -> NREPO : save(nivel1) deactivate NREPO BOOT -> SREPO : save(serv) deactivate SREPO @enduml
false
true
false
false
usecase
ecb669fd77c4fcfed6a13bc5ff0235e96add2b40
5bdc19e7ff1d6880ca51c600fb9edc3943a3c4b5
/doc/plantuml/src/class_diagrams/execute_playback_iteration1.puml
e67ac17cba0e6101126badcffcb6013388d99e5f
[]
no_license
Warwolt/tr2k_drum_machine
1a8e617137ed8c6d23856bf490c18f0067979564
430e9a3199b16807a6e88860d80c1ec4fd826fa9
refs/heads/master
2022-04-08T10:36:54.567422
2020-02-24T22:30:07
2020-02-24T22:30:07
192,423,856
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,261
puml
@startuml skinparam linetype ortho title Execute Playback \n(Iteration 1) ''' Class definitions ''' Package "Domain" { Package "Playback" { class PlaybackTimingManager { addSubscriber(PlaybackTimingSubscriber) handlePlayback() } interface PlaybackTimingSubscriber { handlePlaybackStep() } interface TempoTimer { setTempo(BeatsPerMinute) start() stop() clear() playbackStepIsDue() : Boolean } class TempoTimer16Bit { setTempo(BeatsPerMinute) start() stop() clear() countPulse() playbackStepIsDue() : Boolean } class LedBlinker { handlePlaybackStep() } } } Package "HardwareAbstractionLayer" { interface Timer16Bit { setPeriod(Integer) setPrescaler(PrescaleOption) start() stop() clear() } } Package "Drivers" { class GpioPin { set() clear() } class Timer1 { enablePeriodicInterrupts() setPeriod(Integer) setPrescaler(PrescaleOption) start() stop() clear() } } ''' Class relations ''' PlaybackTimingManager --> TempoTimer PlaybackTimingManager --> PlaybackTimingSubscriber TempoTimer <|-- TempoTimer16Bit TempoTimer16Bit --> Timer16Bit Timer16Bit <|.. Timer1 PlaybackTimingSubscriber <|.. LedBlinker LedBlinker --> GpioPin @enduml
false
true
false
false
class
0625f22bc6b9cd7f50409b0d8c81658b4e29f954
eafc0d148dffcc37d83976752713dca064e3aa1b
/docs/docker-compose/diagrams/docker-compose-components.puml
7bd10881c956b763babd503dcc0c3fedf8c890e7
[ "Apache-2.0" ]
permissive
sirReeall/acs-deployment
417fe451aa94efc7b3e907c9097aee406da51a2c
3931e882297cf4453aad8745503401b0bd39ca8b
refs/heads/master
2022-12-19T03:03:10.933979
2020-08-17T15:13:46
2020-08-17T15:13:46
277,750,248
0
1
Apache-2.0
2020-07-07T07:41:32
2020-07-07T07:41:31
null
UTF-8
PlantUML
false
false
1,075
puml
@startuml Title: Docker Compose Deployment Overview skinparam componentStyle uml2 skinparam linetype ortho skinparam rectangle { BorderStyle dashed FontSize 15 FontStyle none } actor Client node "Docker Compose" { component "NGINX proxy" as proxy #lightgrey component "Alfresco Digital Workspace" as adw #lightgrey component "Alfresco Content Services" as acs #lightgrey component "Alfresco Search Services" as ass #lightgrey component "PostgreSQL" as psql #lightgrey component "Alfresco Share" as share #lightgrey rectangle "Alfresco Transform Service" { component "Transform Router" as tr #lightgrey component "Shared File Store" as sfs #lightgrey component "ActiveMQ" as amq #lightgrey component "Transform Core" as tcore #lightgrey } } Client --> proxy proxy --> acs proxy --> share proxy --> adw acs <-left-> ass acs --> psql acs --> tcore acs --> sfs acs <-left-> amq tr --> tcore tr <-left-> amq tcore --> sfs share --> acs center footer Copyright 2020 Alfresco Software Inc @enduml
false
true
false
false
sequence
f143abbf484d39eaa3ae1f637ddae69242fb598c
dc1ab7aeb88cc2c5e8f45ee02eb0eb750ef83d3b
/diagrama de paquetes.puml
00ba20dafd1617526af0ba27dbdee346d294287f
[ "MIT" ]
permissive
valva-ro/Algo3-TP2-AlgoBlocks
7ab70e1dd725f38ec82453795b6050b11a531322
66e06fe503b1869c6efeef0f42ede261f78137f8
refs/heads/master
2023-03-19T21:56:44.880279
2021-03-05T00:13:52
2021-03-05T00:13:52
319,808,536
3
0
MIT
2021-03-04T21:20:38
2020-12-09T01:35:18
Java
UTF-8
PlantUML
false
false
347
puml
@startuml 'https://plantuml.com/component-diagram package modelo { [bloques] [dibujo] [direcciones] } package vista { [botones] [sectores] [ventanas] } package controlador { [clicks] [drags] } [botones] ..> [clicks] : access [botones] ..> [drags] : access modelo ..> vista modelo ..> controlador vista ..> modelo @enduml
false
true
false
false
class
170654aadd6e2a80c81e3fb7873419d89d5f62de
0496d40d0e7a44184665671cca35b315f7fc5067
/WealthHierarchy.puml
e6b143fd90ca1a49d103782f90ecefc678caca58
[]
no_license
andrewstanton1/csm10j-Hw02
9358645da7700fe94bda55cd160461ce1f51672b
1e30cc1f32721798a8984d8a4e2c123fbfce45fd
refs/heads/master
2016-08-12T05:09:03.766885
2015-11-10T10:12:55
2015-11-10T10:12:55
45,882,729
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,816
puml
@startuml annotation java.lang.Override class InterfaceDesign.BankAccount{ double holding String name BankAccount(String name, double holding) getAssetValue() toString() } class InterfaceDesign.Bond{ String name int quantity double price Bond(String name, int quantity, double price) getAssetValue() toString() } class InterfaceDesign.Car{ String name double price double financed Car(String name, double price, double financed) getAssetValue() getDebtAmount() toString() } class InterfaceDesign.House{ String name double marketValue double mortage House(String name, double market, double mortgage) getAssetValue() getDebtAmount() toString() } class InterfaceDesign.Stock{ String name int quantity double price Stock(String name, int quantity, double price) getAssetValue() toString() } class InterfaceDesign.Wealth{ List assetList List debtList Wealth() addAsset(Asset debt) getNetWorth() getTotalAssets() getTotalDebts() getAssetSummary() toString() } class java.util.ArrayList class java.util.List interface InterfaceDesign.Asset{ getAssetValue() } interface InterfaceDesign.Debt{ getDebtAmount() } InterfaceDesign.BankAccount ..> java.lang.Override InterfaceDesign.BankAccount --|> InterfaceDesign.Asset InterfaceDesign.Bond ..> java.lang.Override InterfaceDesign.Bond --|> InterfaceDesign.Asset InterfaceDesign.Car ..> java.lang.Override InterfaceDesign.Car --|> InterfaceDesign.Asset InterfaceDesign.Car --|> InterfaceDesign.Debt InterfaceDesign.House ..> java.lang.Override InterfaceDesign.House --|> InterfaceDesign.Asset InterfaceDesign.House --|> InterfaceDesign.Debt InterfaceDesign.Stock ..> java.lang.Override InterfaceDesign.Stock --|> InterfaceDesign.Asset InterfaceDesign.Wealth ..> java.lang.Override InterfaceDesign.Wealth ..> java.util.ArrayList InterfaceDesign.Wealth ..> java.util.List @enduml
false
true
false
false
class
546e54cfcceb676f0ecbf52c7f9ca7c953b91da8
dc92e0e6a6a8e3989d49e52d47395154c45766c7
/docs/yamz-sequence.plantuml
d8f74ff90716ca5c5690589252cacc16dd2d6d96
[]
no_license
brettviren/yamz
53899d430d2ae46735b7e03c7657ef14a457cf74
449feabc4fecb9ee02dd21321913af62af8b9d19
refs/heads/master
2023-03-01T07:28:15.669713
2021-02-04T21:57:41
2021-02-04T21:57:41
314,381,659
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,976
plantuml
@startuml !pragma teoz true box "App A\n main thread" participant "main()" as main end box box "App A client thread\n(eg appfwk module worker thread)" participant "app code" as app participant "yamz::Client 1" as yc1 participant "yamz::Client 2" as yc2 end box box "App A (ysA)\n server thread" participant "yamz::Server ysA" as ysA end box box "App B (ysB)\n server thread" participant "yamz::Server ysB" as ysB end box box "App C (ysC)\n server thread" participant "yamz::Server ysC" as ysC end box group Start yamz server internal to app main -> ysA : ctor("expect two clients") main -> ysA : start() activate ysA end main -> app : ctor() activate app group Construct clients which make requests app -> yc1 : ctor(cfg) activate yc1 & yc1 -> ysA : connect yc1 -> yc1 : make ports yc1 -> yc1 : do binds yc1 -> ysA : msg:request(ysB)\nnumber 1/2 app -> yc2 : ctor(cfg) activate yc2 & yc2 -> ysA : connect yc2 -> yc2 : make ports yc2 -> yc2 : do binds yc2 -> ysA : msg:request(ysB,ysC)\nnumber 2/2 & ysA -> ysA : online() activate ysA end ysB -> ysB : online activate ysB group Server replies to client driven by peers, app polls client to process queues ysB <-> ysA : Zyre ENTER ysB/ysA ysA --> yc1 : msg:reply(ysB connects)\nqueue ysA --> yc2 : msg:reply(ysB connects)\nqueue & app -> app : work app -> yc1 : poll() & yc1 -> yc1 : connect(ysB) app -> app : work app -> yc1 : poll() & yc1 -> yc1 : noop & ysC -> ysC : online activate ysC ysC <-> ysA : Zyre ENTER ysC/ysA ysC <-> ysB : Zyre ENTER ysC/ysB & ysA --> yc2 : msg:reply(ysC connects)\nqueue ysB -> ysA : Zyre EXIT ysB & ysB -> ysC : Zyre EXIT ysB destroy ysB ysA --> yc1 : msg:reply(ysB disconnects)\nqueue ysA --> yc2 : msg:reply(ysB disconnects)\nqueue & app -> app : work app -> yc2 : poll() & yc2 -> yc2 : connect(ysB) yc2 -> yc2 : connect(ysC) yc2 -> yc2 : disconnect(ysB) @enduml
false
true
false
false
sequence
fe726ec170efac786e39cbe7387dc2df91e50d0c
d5da244bd37acd495fc309fecb80905c0d972412
/docs/uml/packages-overview.puml
7271e68209c745c4339fa5bd94c50c40d42d65c7
[]
no_license
demurgos/pld-agile
f3c9e63d458b66a258479915408be5ef5753648b
d98c6ab00a10f4500817864677546d6f5816645a
refs/heads/master
2021-01-11T03:07:13.476939
2016-10-20T16:26:12
2016-10-20T16:26:12
70,149,700
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,435
puml
@startuml package services { package xml { class Parser { } } package tsp { abstract class TspSolver { } class BasicTspSolver { } class AdvancedTspSolver { } class WayPointIterator { } } } package models { class CityMap { } class DeliveryGraph { } class StreetSection { } class Intersection { } abstract class AbstractWayPoint { } class DeliveryAddress { } class Warehouse { } class Planning { } class DeliveryRequest { } class Route { } } package components { package application { abstract MainControllerState { } class WaitOpenCityMapState { } class WaitOpenDeliveryRequestState { } class ReadyState { } class ComputingPlanningState { } class MainController { } } package mapcanvas { class MapCanvasController { } } package planningdetails { class PlanningDetails { } class PlanningDetailsItem { } } } MainController -up-> Parser MainController -down-> CityMap MainController -down-> Planning MainController -down-> DeliveryRequest MainController -up-> tsp @enduml
false
true
false
false
class
6457486c28d3dddc56e248aa9a676e39f64a2cdd
227c32f7a5991c0ce2de069dd1f0448c1e6949fb
/PlantUML/CovarianceCalculator/CovarianceCalculator_Activity_calJuk.puml
36625ea242d9e9008f784d5ba3b58e2c9751e967
[]
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
202
puml
@startuml /' input1: double th input2: double dt input3: Matrix<double, 3, 2> &Juk '/ (*) --> "double cs = cos(th) double sn = sin(th) Juk << dt * cs, 0, dt * sn, 0 0, dt" --> (*) @enduml
false
true
false
false
class
090dfd38bd637a3d76db1e92a6c596e6e587c9f2
3181f0204640dfd0f7db084c7d55ba3ab1b47dac
/uml/magiworld.puml
9c1003a3a5493fa18d4bc474aa4268892e40ba79
[]
no_license
docteurmabuse/MagiWorld
c4043bca7c16b6ff2d00c662a23f5690383fa9a5
5c7a4dae85b52b098ebbd3e87c65a17e5b39f201
refs/heads/master
2020-07-31T15:22:32.159666
2019-09-26T07:29:41
2019-09-26T07:29:41
210,652,643
0
0
null
null
null
null
UTF-8
PlantUML
false
false
544
puml
@startuml class Player{ displayCharacterCreation() askCharacterClass } class Character{ private int level private int constitution private int strength private int dexterity private int intelligence private String characterClass } class Warrior { } class Magician class Thieve interface Spell { private String basicSpell private string specialSpell } Character <|-- Warrior Character <|-- Magician Character <|-- Thieve Warrior <|-- Spell Magician <|-- Spell Thieve <|-- Spell class ArrayList { Object[] elementData size() } @enduml
false
true
false
false
class
d03598805d8929f31b07191dc7b751dbfdf8e491
2c2b6b4b4ae12a6fe7e29a829b44ab51b841d6f1
/ExampleTest/Resources/shopping_example.puml
3ceaf5a7f21c993cf2e53b90888cd32b119226ca
[ "Apache-2.0" ]
permissive
TNG/ArchUnitNET
5759c0af44a4f75ff1a3bc00513e35057e42deaf
2ee281de1baffd66c66d39ffce66f327fa9e3c1f
refs/heads/main
2023-08-15T07:45:48.035257
2023-07-25T09:40:36
2023-07-25T09:40:36
198,763,782
611
47
Apache-2.0
2023-09-08T17:57:04
2019-07-25T05:32:43
C#
UTF-8
PlantUML
false
false
1,022
puml
@startuml skinparam componentStyle uml2 skinparam component { BorderColor #grey BackgroundColor #white } [Addresses] <<ExampleTest.PlantUml.Addresses.*>> [Customers] <<ExampleTest.PlantUml.Customers.*>> [Orders] <<ExampleTest.PlantUml.Orders.*>> [Products] <<ExampleTest.PlantUml.Product.*>> [Product Catalog] <<ExampleTest.PlantUml.Catalog.*>> as catalog [Product Import] <<ExampleTest.PlantUml.Importer.*>> as import ' Could be some random comment [XML] <<ExampleTest.PlantUml.XML.Processor.*>> <<xampleTest.PlantUml.XML.Types.*>> as xml [Addresses] --> catalog [Orders] ---> [Customers] : is placed by [Orders] --> [Products] [Orders] --> [Addresses] [Customers] --> [Addresses] [Customers] --> [Products] [Customers] --> [Orders] [Products] <--[#green]- catalog [Products] --> [Customers] [Products] --> [Orders] catalog --> [Orders] import -left-> catalog : parse products import --> xml import --> [Customers] note top on link #lightgreen: is responsible for translating XML to csharp classes @enduml
false
true
true
false
sequence
91f3164f425e5b5512a56113110e66fc517b1472
a751888fd29a1b92bb32ef7d272d3e72f664ed30
/src/design/available-propagators-class-diagram.puml
f788eea7d8c09c54deb49cfe9ac5093f4a095328
[ "Apache-2.0", "MIT", "EPL-1.0" ]
permissive
petrushy/Orekit
b532c7db85c992d85b5ac3d858d18d656e2b8c46
1f8ff45caf82e0e7e85f8cf9fd4f41c3ba379443
refs/heads/develop
2023-08-16T11:37:43.709083
2023-07-18T20:13:14
2023-07-18T20:13:14
42,349,064
10
2
Apache-2.0
2023-07-21T14:54:14
2015-09-12T07:39:56
Java
UTF-8
PlantUML
false
false
4,508
puml
' Copyright 2002-2022 CS GROUP ' Licensed to CS GROUP (CS) under one or more ' contributor license agreements. See the NOTICE file distributed with ' this work for additional information regarding copyright ownership. ' CS licenses this file to You under the Apache License, Version 2.0 ' (the "License"); you may not use this file except in compliance with ' the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, software ' distributed under the License is distributed on an "AS IS" BASIS, ' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ' See the License for the specific language governing permissions and ' limitations under the License. @startuml skinparam svek true skinparam ClassBackgroundColor #F3EFEB/CCC9C5 skinparam ClassArrowColor #691616 skinparam ClassBorderColor #691616 skinparam NoteBackgroundColor #F3EFEB skinparam NoteBorderColor #691616 skinparam NoteFontColor #691616 skinparam ClassFontSize 11 skinparam PackageFontSize 12 skinparam linetype ortho package org.orekit #ECEBD8 { package utils #DDEBD8 { interface PVCoordinatesProvider { +PVCoordinates getPVCoordinates(AbsoluteDate date, Frame frame) } } package propagation #DDEBD8 { interface Propagator { +StepHandlerMultiplexer getMultiplexer() +void clearStepHandlers() +void setStepHandler(double h, OrekitFixedStepHandler handler) +void setStepHandler(OrekitStepHandler handler) +SpacecraftState getInitialState() +void resetInitialState(SpacecraftState state) +void addEventDetector(EventDetector detector) +Collection<EventDetector> getEventsDetectors() +void clearEventsDetectors() +AttitudeProvider getAttitudeProvider() +void setAttitudeProvider(AttitudeProvider attitudeProvider) +MatricesHarvester setupMatricesComputation(String stmName, RealMatrix initialStm, DoubleArrayDictionary initialJacobianColumns) +Frame getFrame() +SpacecraftState propagate(AbsoluteDate target) +SpacecraftState propagate(AbsoluteDate start, AbsoluteDate target) } interface BoundedPropagator { +AbsoluteDate getMinDate() +AbsoluteDate getMaxDate() } abstract class AbstractPropagator { } PVCoordinatesProvider <|.. Propagator Propagator <|.. AbstractPropagator Propagator <|.. BoundedPropagator package analytical #CBDBC8 { abstract class AbstractAnalyticalPropagator { +PVCoordinatesProvider getPvProvider() +void addAdditionalStateProvider(AdditionalStateProvider additionalStateProvider) } AbstractPropagator <|-- AbstractAnalyticalPropagator AbstractAnalyticalPropagator <|-- AdapterPropagator AbstractAnalyticalPropagator <|-- BrouwerLyddanePropagator AbstractAnalyticalPropagator <|-- EcksteinHechlerPropagator AbstractAnalyticalPropagator <|-- GLONASSAnalyticalPropagator AbstractAnalyticalPropagator <|-- KeplerianPropagator AbstractAnalyticalPropagator <|-- Ephemeris BoundedPropagator <|.. Ephemeris package tle #CCCCC7 { AbstractAnalyticalPropagator <|-- TLEPropagator } package gnss #CCCCC7 { AbstractAnalyticalPropagator <|-- GNSSPropagator } } package integration #CBDBC8 { abstract class AbstractIntegratedPropagator { +void setIntegrator(FirstOrderIntegrator integrator) +void addAdditionalDerivativesProvider(AdditionalDerivativesProvider provider) +void setInitialAdditionalState(String name, double[] addState) } BoundedPropagator <|.. IntegratedEphemeris IntegratedEphemeris --|> AbstractAnalyticalPropagator AbstractIntegratedPropagator o--> IntegratedEphemeris : creates AbstractPropagator <|-- AbstractIntegratedPropagator } package semianalytical #CBDBC8 { package dsst #CCCCC7 { DSSTPropagator --|> AbstractIntegratedPropagator } } package numerical #CBDBC8 { NumericalPropagator --|> AbstractIntegratedPropagator GLONASSNumericalPropagator --|> AbstractIntegratedPropagator } } @enduml
false
true
false
false
sequence
bfaac2849181dd2acfa4c5c8d40881f088a2a6cc
a67acc47ca52a776aaddbbeac607904063eb0fa3
/src/Diagramas/Batalla/Seleccion de criatura y despliegue.puml
71625fb312350fb26bf5894bdc0f15832368a694
[]
no_license
Rhadamys/ddm-usach
0d9109f9f45c462905b5f248f16a7f4df11b8948
47333ca11189a4cb56c9e5d30b89fb6d71e568f4
refs/heads/master
2020-04-06T04:11:42.325941
2016-07-05T23:36:15
2016-07-05T23:36:15
59,068,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
959
puml
@startuml hide footbox title Seleccion de criatura y despliegue actor jugador as j participant SubVistaSeleccionCriatura as visCria participant SubVistaSeleccionDesplieque as visDes participant ControladorBatalla as contB participant Accion as accion activate contB activate visCria j -> visCria:click en alguna criatura visCria --> contB contB -> contB :seleccionarCriaturaAInvocar() activate contB deactivate contB contB -> visCria :dispose () visCria --> contB deactivate visCria contB -> accion:setCriaturaAinvocar() activate accion accion --> contB deactivate accion contB -> contB:mostrarVistaSeleccionarDespliegue() activate contB deactivate contB contB -> visDes: setVisible(true) activate visDes visDes --> j :muestra al jugador los despliegues j -> visDes:selecciona un despliegue visDes --> contB contB -> contB:carmbiarDespliegue() activate contB deactivate contB contB -> visDes:setVisible(false) visDes --> contB deactivate visDes @enduml
false
true
false
false
usecase
5d4a199b5d4f58a9019dbc09f130b70ee2e7b40b
4e22d261d7dcf5fe2731d77ba3cfb47c5568977c
/Documentation/Source/Breakdown/EngineInterfaces/ExternalWindowInterface-Class.iuml
636e7baad8ae10c241dfe9bec5341166659814c8
[]
no_license
SeraphinaMJ/Reformed
2d7424d6d38d1cfaf8d385fade474a27c02103a5
8563d35ab2b80ca403b3b57ad80db1173504cf55
refs/heads/master
2023-04-06T00:40:34.223840
2021-05-06T11:25:51
2021-05-06T11:25:51
364,884,928
0
0
null
null
null
null
UTF-8
PlantUML
false
false
188
iuml
namespace External { interface ExternalWindowInterface { +HandleProcessEvents() +HandleResizeRequest() +HandleQuitRequest() } }
false
true
false
false
class
07a7d01d4ee9a10bb8df2d011c64acfca397ca37
e3ebf221091ee30de418c963f078ccdd732eaa8c
/docs/modular/modules2.puml
c7d7cb8dfe50d66a17e8d25a24b18b1a63c942dc
[ "Apache-2.0" ]
permissive
valb3r/datasafe
97d9826bb2bc6a478abc56ad30848fcaad8f259a
1b91e90128e2411339a9b904bb92144879b155bb
refs/heads/develop
2020-05-31T16:55:05.487855
2019-06-05T13:00:08
2019-06-05T13:00:08
190,393,370
0
1
Apache-2.0
2019-10-07T09:51:59
2019-06-05T12:48:13
Java
UTF-8
PlantUML
false
false
609
puml
@startuml class DocusafeServices DocusafeServices -- Inbox DocusafeServices -- Private DocusafeServices -- Profile Inbox -- ListInbox Inbox -- ReadFromInbox Inbox -- WriteToInbox Private -- ListPrivate Private -- ReadFromPrivate Private -- WriteToPrivate Profile -- ProfileRetrievalService Profile -- ProfileRegistrationService Profile -- ProfileRemovalService Profile -- KeyStoreModule Profile -- DFSModule Profile -- "Serde (se/deserialization)" Inbox -- CredentialsModule Private -- CredentialsModule Private -- DocumentModule Inbox -- DocumentModule DocumentModule -- CMSEncryptionModule @enduml
false
true
false
false
class
d1df60187f75b1aab8b82b678830b9f77ef05710
ca0a47ab46b3f7a5c5bfaa2c7c4bf078e3646c32
/PlantUML/src/i2cDriver.plantuml
26368c6595a91ec18075b18e279b7eadf7b4f8e5
[]
no_license
LasseKrarup/Laser-Tag-Project
4ea4b496c2e59c54512c4275247bf1bf3f452c5f
07510f50a6c98d9ffb59550b63838435da25ca4a
refs/heads/master
2021-07-14T09:54:43.202288
2019-06-26T11:41:30
2019-06-26T11:41:30
171,651,265
4
0
null
2020-07-07T04:42:06
2019-02-20T10:22:59
HTML
UTF-8
PlantUML
false
false
2,735
plantuml
@startuml i2cDriver-sequence skinparam { monochrome true dpi 300 padding 5 sequenceMessageAlign center packageStyle frame shadowing false 'backgroundColor transparent } mainframe **sd** i2c_driver - slave read requests ' participant RPiApp ' participant i2c_driver ' participant i2cSenderThread ' participant i2cReceiverThread ' participant interrupt_module loop until interrupt i2cReaderThread -> interrupt_module : Read activate i2cReaderThread activate interrupt_module end interrupt_module --> i2cReaderThread deactivate interrupt_module i2cReaderThread -> SenderMsgQueue : I2C_SLAVE_REQ deactivate i2cReaderThread loop true i2cSenderThread -> SenderMsgQueue : pop activate i2cSenderThread activate SenderMsgQueue SenderMsgQueue --> i2cSenderThread : Message deactivate SenderMsgQueue opt ID=I2C_SLAVE_REQ i2cSenderThread -> i2cdev : read activate i2cdev i2cdev --> i2cSenderThread : data deactivate i2cdev i2cSenderThread -> i2cSenderThread : place in dataqueue i2cSenderThread -> i2cSenderThread : set data-ready flag deactivate i2cSenderThread end end @enduml @startuml i2cDriver-receive skinparam { monochrome true dpi 300 padding 5 sequenceMessageAlign center packageStyle frame shadowing false 'backgroundColor transparent } mainframe **activity** i2c_driver - receive byte start :Open "/dev/i2c-1"; :Set slave address; :Read 1 byte; :Close file descriptor; :Return byte; stop @enduml @startuml i2c_driver.hpp hide circle skinparam { monochrome true dpi 300 padding 5 sequenceMessageAlign center packageStyle frame shadowing false classAttributeIconSize 0 'backgroundColor transparent } class i2cDriver { +i2cDriver(int slaveAddress) +~i2cDriver() +send(char &buf): void +receive(): char +getDataReadyFlag(): unsigned char -dataQueue: std::queue<char> -i2cReaderEventHandler(void *): static void * -i2cSenderEventHandler(void *): static void * -i2cReaderThread: pthread_t -i2cSenderThread: pthread_t -i2cSenderMsgQ: MsgQueue -i2cSendByte(char byte): void -i2cReceiveByte(): char -dataReadyFlag: unsigned char -slaveAddress: int } @enduml @startuml i2cDriver-send skinparam { monochrome true dpi 300 padding 5 sequenceMessageAlign center packageStyle frame shadowing false 'backgroundColor transparent } mainframe **activity** i2c_driver - send byte start :Open "/dev/i2c-1"; :Set slave address; :Send 1 byte; :Close file descriptor; stop @enduml
false
true
false
false
sequence
5473bd2d3ebb128b2361ab0d0b3f24d49988a5ee
c69a4c4bf8190b1d121dbf52beb72870964a43eb
/docs/archive/scratch/auth-server-regisrtation.puml
14c6ed2c0641fdb1dbe44ee40e5cbfd8c5f91676
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
kleyow/pisp
98bc352ef03a5125c35456f422c78c1d2462e519
bf6917f6a0f0066af38b8894b25619261cf4e7af
refs/heads/master
2023-06-27T23:04:05.046890
2020-10-20T02:52:13
2020-10-20T02:52:13
268,942,351
0
0
NOASSERTION
2020-06-03T01:00:48
2020-06-03T01:00:48
null
UTF-8
PlantUML
false
false
10,017
puml
@startuml Auth Server Registration !define MS(x) <font:Consolas>x</font> ' Participants participant PISP box Mojaloop participant Switch participant Auth end box participant DFSP autonumber 1 "<b>REG-#</b>" PISP -> Switch: ""POST /consents/123/registerCredential""\nRegister credential for an existing consent. note over Switch RegisterCredentialRequest { credentialType: FIDO } end note activate PISP activate Switch Switch --> PISP: ""202 Accepted"" deactivate PISP Switch -> Auth: ""POST /consents/123/registerCredential""\nCan you generate a challenge? note over Auth RegisterCredentialRequest { credentialType: FIDO } end note activate Auth Auth --> Switch: ""202 Accepted"" deactivate Switch Auth -> Auth: Generate a challenge and save it. Auth -> Switch: ""PUT /consents/123""\nSure, here's the consent (I added a challenge). activate Switch note over Switch Consent { id: 123, participantId: DFSP A, authToken: null, consentStatus: PENDING, scopes: null, credential: { credentialType: FIDO, credentialStatus: PENDING, challenge: { payload: base64(...), signature: null }, payload: null, } } end note deactivate Auth Switch -> PISP: ""PUT /consents/123""\nHere's the consent and challenge. activate PISP note over PISP Consent { id: 123, participantId: DFSP A, authToken: null, consentStatus: PENDING, scopes: null, credential: { credentialType: FIDO, credentialStatus: PENDING, challenge: { payload: base64(...), signature: null }, payload: null, } } end note return ""200 OK"" deactivate Switch ... note over PISP, Switch: Here we use the FIDO API to generate a credential and sign the challenge. PISP -> Switch: ""PUT /consents/123""\nI signed the challenge. Here's the credential and DFSP auth token. activate PISP activate Switch note over Switch Consent { id: 123, participantId: DFSP A, **authToken: "abcd", ~/~/ This is new and should be evaluated.** consentStatus: PENDING, scopes: null, credential: { id: 5678, credentialType: FIDO, credentialStatus: PENDING, // ~/~/ Output only. The PISP doesn't update this.// challenge: { payload: base64(...), **signature: base64(...), ~/~/ This is new and should be evaluated...** }, **payload: base64(...), ~/~/ against this (also new).** } } end note Switch --> PISP: ""202 Accepted"" deactivate PISP Switch -> DFSP: ""PUT /consents/123""\nCan you verify the auth token on this consent? activate DFSP note over DFSP Consent { id: 123, participantId: DFSP A, **authToken: "abcd", // ~/~/ This should be evaluated now.//** consentStatus: PENDING, scopes: null, credential: { id: 5678, credentialType: FIDO, credentialStatus: PENDING, challenge: { payload: base64(...), signature: base64(...), // ~/~/ This not yet evaluated...// }, payload: base64(...), // ~/~/ against this. (Also new)// } } end note DFSP --> Switch: ""202 Accepted"" deactivate Switch DFSP -> DFSP: Verify auth token in the consent. DFSP -> Switch: ""PUT /consents/123""\nToken is OK. I updated the consent with scopes. activate Switch note over Switch Consent { id: 123, participantId: DFSP A, authToken: "abcd", **consentStatus: ACTIVE, ~/~/ This is new!** **scopes: { ~/~/ This is new! They make the consent actually work.** // ~/~/ These are unique IDs for accounts. They MUST NOT be real account numbers.// balanceInquiry: 12345-67890, sendTransfer: 12345-67890, sendTransfer: 77777-38937, }, credential: { id: 5678, credentialType: FIDO, credentialStatus: PENDING, challenge: { payload: base64(...), signature: base64(...), // ~/~/ This is still not yet evaluated...// }, payload: base64(...), // ~/~/ against this.// } } end note Switch --> DFSP: ""200 OK"" deactivate DFSP Switch -> Auth: ""PUT /consents/123""\nConsent has a credential and signed challenge.\nPlease validate? activate Auth note over Auth Consent { id: 123, participantId: DFSP A, authToken: "abcd", consentStatus: ACTIVE, scopes: { balanceInquiry: 12345-67890, sendTransfer: 12345-67890, }, credential: { id: 5678, credentialType: FIDO, credentialStatus: PENDING, challenge: { payload: base64(...), **signature: base64(...), // ~/~/ This should be evaluated now...//** }, **payload: base64(...), // ~/~/ against this.//** } } end note Auth --> Switch: ""202 Accepted"" deactivate Switch Auth -> Auth: Validate the signature against the challenge. Auth -> Switch: ""PUT /consents/123""\nConsent looks OK. Marking as active. activate Switch note over Switch Consent { id: 123, participantId: DFSP A, authToken: "abcd", consentStatus: ACTIVE, scopes: { balanceInquiry: 12345-67890, sendTransfer: 12345-67890, }, credential: { id: 5678, credentialType: FIDO, **credentialStatus: ACTIVE, // ~/~/ This is new!//** challenge: { payload: base64(...), signature: base64(...), }, payload: base64(...), } } end note Switch --> Auth: ""200 OK"" deactivate Auth Switch -> PISP: ""PUT /consents/123""\nThe consent is all ready. activate PISP note over PISP Consent { id: 123, participantId: DFSP A, authToken: "abcd", consentStatus: ACTIVE, scopes: { balanceInquiry: 12345-67890, sendTransfer: 12345-67890, }, credential: { id: 5678, credentialType: FIDO, **credentialStatus: ACTIVE, // ~/~/ This is new!//** challenge: { payload: base64(...), signature: base64(...), }, payload: base64(...), } } end note return ""200 OK"" Switch -> DFSP: ""PUT /consents/123""\nThe consent is all ready. activate DFSP note over DFSP Consent { id: 123, participantId: DFSP A, authToken: "abcd", consentStatus: ACTIVE, scopes: { balanceInquiry: 12345-67890, sendTransfer: 12345-67890, }, credential: { id: 5678, credentialType: FIDO, **credentialStatus: ACTIVE, // ~/~/ This is new!//** challenge: { payload: base64(...), signature: base64(...), }, payload: base64(...), } } end note return ""200 OK"" @enduml
false
true
false
false
sequence
12380e3819ea590555f5a7a4274c35a0c24f8c54
c821aaa424690dc6a301bb0b3d16097f4c1c9201
/MTADroneService_server/DroneService/src/main/java/MTADroneService/DroneService/application/controller/controller.plantuml
b39673a7ad993aa94aa31fd91020707bd9122a25
[]
no_license
chiritagabriela/MTADroneService
ed962aeeaf5ebbb9168d12e6ef0411803e28cfc0
4f058ad18287a13c3cfd355fd4dd31d32b514e38
refs/heads/main
2023-08-04T14:02:09.408859
2021-09-03T08:00:52
2021-09-03T08:00:52
313,899,222
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,620
plantuml
@startuml title __CONTROLLER's Class Diagram__\n namespace MTADroneService.DroneService.application { namespace controller { class MTADroneService.DroneService.application.controller.CommunicationController { ~ droneService : DroneService ~ logger : Logger ~ missionDAO : MissionDAO ~ missionService : MissionService + getCoordinatesToGo() + getImage() + getStatus() + getVideoURL() + handleFileUpload() + setVideoURL() + storeCurrentLocation() + updateMissionStatus() } } } namespace MTADroneService.DroneService.application { namespace controller { class MTADroneService.DroneService.application.controller.DroneController { ~ droneDAO : DroneDAO ~ droneService : DroneService ~ logger : Logger ~ modelMapper : ModelMapper ~ getCurrentPosition() } } } namespace MTADroneService.DroneService.application { namespace controller { class MTADroneService.DroneService.application.controller.MissionController { ~ logger : Logger - droneService : DroneService - missionService : MissionService - modelMapper : ModelMapper - userDAO : UserDAO + getAllMissions() + getMissionDetails() } } } namespace MTADroneService.DroneService.application { namespace controller { class MTADroneService.DroneService.application.controller.ServiceController { ~ logger : Logger ~ serviceService : ServiceService + createDeliveryMission() + createSearchMission() + createSurveilMission() } } } namespace MTADroneService.DroneService.application { namespace controller { class MTADroneService.DroneService.application.controller.TokenController { ~ logger : Logger ~ tokenService : TokenService + validateToken() } } } namespace MTADroneService.DroneService.application { namespace controller { class MTADroneService.DroneService.application.controller.UserController { ~ logger : Logger ~ userService : UserService {static} - UNKNOWN_USERNAME_OR_BAD_PASSWORD : String + createUser() + loginUser() } } } 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
b87c5147bd64f4c93f496485e589cdd49f9d4eed
94d9a832c87bbde5af7ca68608b370aa9b0ac350
/docs/classes.puml
3b57d8f2e8a929c1707b2c88821ee67b1a2b024e
[]
no_license
chengengliu/swen90013-bp
9fbd427be641b3856311d3bd67ff00acd2478743
e0bd7ec23db81693594b91e69364f1d202d33d48
refs/heads/master
2022-11-14T04:57:05.923993
2020-07-09T07:39:18
2020-07-09T07:39:18
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,801
puml
@startuml classes namespace org { namespace apromore { namespace service { namespace FileImporterLogic { namespace impl { class FileImporterLogicImpl class TransactionImpl class Select { - String column - String as + Select(String column) + Select(String column, String as) } class Concatenate { - String[] columns - String delimiter - String newColumnName + Concatenate(String[] columns, String delimiter, String newColumnName) } class If { - String condition - String true - String false + If(String condition, String true, String false) } class Join { - String file - String joinKey1 - String joinKey2 + Join(JoinType joinType, String file, String joinKey1, String joinKey2) } FileImporterLogicImpl ..|> org.apromore.service.FileImporterLogic.FileImporterLogic TransactionImpl ..|> org.apromore.service.FileImporterLogic.Transaction Select ..|> org.apromore.service.FileImporterLogic.Statement Concatenate ..|> org.apromore.service.FileImporterLogic.Statement If ..|> org.apromore.service.FileImporterLogic.Statement Join ..|> org.apromore.service.FileImporterLogic.Statement Join --* "1" org.apromore.service.FileImporterLogic.JoinType : - joinType } interface Statement { + String toString() } enum JoinType { LEFT INNER RIGHT FULL_OUTER } interface Transaction { - String file - String[] selectedColumns + Transaction(String file) + Transaction join(JoinType joinType, String file) + Transaction select(String column) + Transaction select(String column, String as) + Transaction order(String[] columns) + Transaction if(String condition, String true, String false) + Transaction concatenate(String[] columns, String delimiter, String newColumnName) + Transaction where(String column, Comparison comparison, String value) + ResultSet execute() } interface FileImporterLogic { + String[][] getSnippet(Transaction transaction, int rows) + void exportFiles(Transaction transaction) } Transaction --* "*" "Statement" : + statements } } namespace plugin { namespace portal { namespace FileImporterPortal { namespace impl { class FileUploadServiceImpl class FileExporterServiceImpl FileUploadServiceImpl ..|> org.apromore.plugin.portal.FileImporterPortal.FileUploadService FileExporterServiceImpl ..|> org.apromore.plugin.portal.FileImporterPortal.FileExporterService FileExporterServiceImpl --* "1" org.apromore.service.FileImporterLogic.FileImporterLogic : - fileImporterLogic } class FileUploadViewModel { + void init() + void onFileUpload() } interface FileUploadService { + void writeFiles(Media[] media) } class FileExporterViewModel { + void init() + void onFileImport() } interface FileExporterService { + void getSnippet(Operation[] operations) + void importFiles(Media[] media, Operation[] operations) } FileUploadViewModel --* "1" FileUploadService : - fileUploadService FileExporterViewModel --* "1" FileExporterService : - fileExporterService } } } } } @enduml
false
true
false
false
activity
c839e7d85718dd3fa320f512a92c6dccf805d401
57785491f41c3b00d04dfa10c88140496f33ad29
/doc/pic/src/boot.bcrag.puml
20700aaf898eca48b5885ef82dcc3d14ee896bcb
[ "Apache-2.0" ]
permissive
panickervinod/von_base
34c69335edd8a5a87306069645a39978381ef746
88defe8b961fd0a76b00bcf9f7bc3323dc116f85
refs/heads/master
2021-08-22T16:15:56.633601
2017-11-30T16:31:35
2017-11-30T16:31:35
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,781
puml
@startuml /' Copyright 2017 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. '/ skinparam ParticipantPadding 20 skinparam BaloxPadding 20 title BC Registrar Agent Boot Sequence box "Indy" #LightBlue participant "Ledger" as ledger endbox actor "Trust Anchor\n(Origin)\nAgent" as tag actor "Issuer\n(BC Registrar)\nAgent" as bcrag === BOOTSTRAP == note over ledger, bcrag Trust anchor agent service wrapper API is up endnote bcrag -> tag: get DID tag --> bcrag: trust anchor DID bcrag -> ledger: Look up own nym alt Nym present ledger --> bcrag: nym else Nym not present bcrag -[#blue]> tag: POST <agent-nym-send> tag -[#blue]> ledger: send Issuer nym ledger --[#blue]> tag: Issuer nym tag --[#blue]> bcrag: Issuer nym end bcrag -> ledger: Look up endpoint attribution alt Endpoint attribution present ledger --> bcrag: agent endpoint else Endpoint attribution not present bcrag -[#blue]> ledger: send agent endpoint ledger --[#blue]> bcrag: agent endpoint end bcrag -> ledger: look up schema ledger --> bcrag: schema bcrag -> bcrag: cache schema bcrag -> ledger: send claim definition ledger --> bcrag: returns @enduml
false
true
false
false
usecase
fbf13a247ed2746976305a22634438b400f6a791
18a71728b7801d914abdd7d00ac65325a4f2fc22
/baseStation/doc/robot_sequence_diagram.plantuml
3c82781285c829cbb010c46fc73cf15866d04564
[ "WTFPL" ]
permissive
olgam4/GLO-3013_Pain
1fd08edee2195fdb2f0fb9f610fc4d3499c43557
6e05d123a24deae7dda646df535844a158ef5cc0
refs/heads/master
2020-05-17T11:52:22.773733
2019-04-26T21:28:02
2019-04-26T21:28:02
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
688
plantuml
@startuml participant "robotWatcher" as watcher [-> watcher : run() activate watcher loop while True participant socket watcher -> socket : recv() activate socket socket --> watcher : message deactivate socket alt message = "position" participant RobotPositionService as position watcher -> position : update() activate position note right of position : sequence detailled in\n previous diagram position --> watcher deactivate position watcher -> position : get_position() activate position position --> watcher : position deactivate position watcher -> socket : send(position) activate socket socket --> watcher deactivate socket end end watcher -->[ deactivate watcher @enduml
false
true
false
false
sequence
80b7cf0adeafa7233453a2a671a89e7837f59708
e30845c4d0895cfaf7b5480f77b20129188d62b2
/src/main/java/ex41/ex41.puml
0915330b0d1144ecdb9b6ba6e7c56507a8dd421d
[]
no_license
Stevenortiz97/ortiz-cop3330-assignment3
82fd6dc7ad474ddcddaf195441a6527d130a3351
7cd75a4cf6538e00357b4a88c1c5030195c8ae85
refs/heads/master
2023-05-27T10:45:09.328974
2021-06-21T04:02:44
2021-06-21T04:02:44
378,793,800
0
0
null
null
null
null
UTF-8
PlantUML
false
false
125
puml
@startuml class ex41 { - list: ArrayList # i: int + main (): void - readFile(): ArrayList - createFile(): void } @enduml
false
true
false
false
class
7bc6349928c1dc45887a24039c0c0911daff527c
f19c648ae8f17a1b1c7e6290617e374fe2b4b401
/Diagramas de estados/empleado/modificar_empleado.puml
df36e2149bbab0fe6ffc2b356dba5fe59f57725d
[]
no_license
Helado-obscuro/diagramas-4
9562a6b6cafa8c443fa2967cab953aa9769ce64f
92e322b17f768525650c0497b7b6fe80a0b55c4e
refs/heads/master
2021-01-15T16:36:06.283496
2017-08-08T17:05:05
2017-08-08T17:05:05
99,713,725
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,078
puml
@startuml scale 600 width scale 900 height [*] -> Esperando Esperando --> Creando : se crea nueva modificación Creando --> Validando : se valida información Validando : validando la información Validando -> Enviando : Correcto Enviando --> Consultando : Correcto Validando --> [*] : Cancelado state Consultando { state "Procesando" as long1 long1 : reune y valida la info [*] --> long1 long1 --> long1 : Nueva info long1 --> Buscando Buscando : Buscando la info Buscando -> [*] : no encontrado Buscando --> Reuniendo : correcto Reuniendo : se reune la info para mostrarla Reuniendo -->[*] : informacón lista } Consultando --> Modificando :correcto state Modificando { state "Validando" as long2 long2 : validacion contra duplicados [*] --> long2 long2 --> long2 : Nueva info long2 --> Insertando : se inserta Insertando : inserta la nueva informacióon Insertando -> Revisando Revisando : checa la integridad de datos Revisando --> [*] } Modificando --> Mostrando Mostrando : muestra la info recogida Mostrando --> [*] @enduml
false
true
true
false
sequence
99066c0f2b130eaf6ec40216485dd171fdba4624
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderPaymentStateChangedMessagePayload.puml
3f8c740953112514ff7936d41d6e289dbc806156
[]
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
554
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 OrderPaymentStateChangedMessagePayload [[OrderPaymentStateChangedMessagePayload.svg]] extends OrderMessagePayload { type: String paymentState: [[PaymentState.svg PaymentState]] oldPaymentState: [[PaymentState.svg PaymentState]] } interface OrderMessagePayload [[OrderMessagePayload.svg]] { type: String } @enduml
false
true
false
false
class
590c8fde8051c396e46aab5c37a639511e01bd30
d3f921b9e488b1d7e2fa86d01a2e6855219b1d05
/fdv.key.access/src/main/java/de/gematik/ti/epa/fdv/key/access/control/access.plantuml
b15a36b1823f35c3e30304c41ec4a681d52642ff
[ "Apache-2.0" ]
permissive
gematik/ref-ePA-FdV-Modul
d50e244d781702b95a9a31dc4efee09765546d79
2c6aba13f01c4fb959424342a5fa8ce1660ffad4
refs/heads/master
2022-01-19T20:31:23.703274
2022-01-07T07:24:03
2022-01-07T07:24:03
239,501,237
2
1
null
null
null
null
UTF-8
PlantUML
false
false
398
plantuml
@startuml title __ACCESS's Class Diagram__\n namespace de.gematik.ti.epa.fdv.key.access.control { class de.gematik.ti.epa.fdv.key.access.control.DummyClass { + doSome() } } 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
acf4787516772e031ea7da1117e2c7646727b20b
b59d6af89f3506c55a7e683b3db2a3a873935bbc
/diagrams/SearchByCategory.puml
d4732518ca2d17f09361d30255d95755f8ff95e4
[]
no_license
paulsouter/policyComparerV1
07b583dfc61360620bfe1b40f255e32e3e3458f2
ad92225379d649d98c90a540ec879e22801a8936
refs/heads/main
2023-05-03T18:33:33.890011
2021-05-24T00:47:27
2021-05-24T00:47:27
370,188,650
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,290
puml
@startuml ' style tweaks to make the diagram a little more readable skinparam { Style strictuml RoundCorner 8 Sequence { ' make activations yellow too LifeLineBackgroundColor #FDFDCD ' make stereotypes less ugly Stereotype { Font { Size 11 Style plain } } } DatabaseBorderColor #A80036 } title search by category (using DB DAO) actor User as user participant "Administration" as main << main >> participant "MainMenu" as menu << frame >> participant "ViewProducts" as dialog << dialog >> participant "DatabaseManager" as dao << DAO >> participant "SimpleListModel\n:model" as model participant "ValidationHelper" as validation<<helper>> participant "Product" as product << domain >> database "Database" as db main++ create menu main -> menu : « construct » user -> menu : clicks 'View Products' menu++ create dialog menu -> dialog : « construct » dialog++ create dao dialog -> dao : « construct » dialog -> dao++ : getCategories() dao -> db++ : select distinct category from product return ResultSet return categories dialog -> dao++ : getProducts() dao -> db++ : select all products return ResultSet create product dao -> product : <<construct>> product++ return product return products create model dialog -> model : « construct » dialog -> model++ : updateItems(categories) model-- dialog -> model++ : updateItems(products) model-- dialog -> dialog : cmbCategory.setModel(model) note left : categories now\nin combobox dialog -> dialog : produts.setModel(model) note left : products now\nin list create validation dialog -> validation : << construct >> dialog -> validation++ : addTypeFormatter(searchTxt, "", Integer.class) validation-- dialog-- user -> dialog++ : enters product details into category components dialog-- user -> dialog++ : clicks 'search' button dialog -> dialog : get details entered\ninto the search components dialog -> dao++ : filterSearch(category) dao -> dao : copy category \ninto PreparedStatement dao -> db++ : select all products with that catogory return resultSet create product dao -> product : <<construct>> product++ return product return products db-- dao-- dialog -> dialog : produts.setModel(model) note left : products now\nin list @enduml
false
true
true
false
usecase
044a326f3f3c5c76cc1b5aa9ebfe655d9e221c7f
228ac315467160c470c89315fdda71b80b5abbe6
/theNewSysMLKaosDomainModelingLanguage/solutions/Saturn/Event_B_Models/Saturn_5.puml
71b15d35c990153c8eb0f398cef7e13d62999986
[]
no_license
stuenofotso/SysML_KAOS_Domain_Model_Parser
96622ae078ad8aae30b8e9ff97fe6a3e1646625e
c54fe95ca968c0bc61f3a470fed009665d845c7c
refs/heads/master
2021-06-20T06:37:55.399363
2019-08-07T11:55:12
2019-08-07T11:55:12
98,421,447
3
2
null
null
null
null
UTF-8
PlantUML
false
false
556
puml
@startuml skinparam class { BackgroundColor<<association>> Darkorange BackgroundColor<<concept>> Snow } package Saturn_4 <<Folder>> { } package Saturn_5 <<Folder>> { class Implementation_Set <<concept>> <<enumeration>> { } object Distributed <<individual>> Implementation_Set *-- Distributed : individualOf object Centralised <<individual>> Implementation_Set *-- Centralised : individualOf object Implementation <<individual>> <<variable>> Implementation_Set *-- Implementation : individualOf } Saturn_4 <|-- Saturn_5 @enduml
false
true
false
false
class
3a24c8cd605ef3f895789fd0ddd585ecd9cbb511
2d364119b91651fee014c2e60777583aa618701a
/exercices_rdcu/1-demarer-ouvrir-caisse.puml
f07ed06f3b76f18ecfe951a2bdae9c16ff7b467b
[]
no_license
bnel-inc/plantuml-examples
d7a462ab39e25b77ec3bab2c75bcb6df4bd4d0ee
3e86b4fa8747240efda25e66529f7b1e4a4be6ff
refs/heads/master
2023-03-01T18:31:24.401126
2021-02-04T15:54:51
2021-02-04T15:54:51
328,886,082
0
0
null
null
null
null
UTF-8
PlantUML
false
false
436
puml
@startuml skinparam style strictuml skinparam sequence { MessageAlign center } title Ouvrir Caisse <I>Exercice RDCU</i>\nLOG210-01 C. Fuhrman\n Vincent Audette participant ":Registre" as rg participant "mp:MisePlateau" as mp [-> rg : démarrerOuvrirCaisse() note right: **Contrôleur** parce que Registre est un equipement rg -> mp **: mp = create() note right of rg : **Créateur** fais que Registre agrège MisePlateau @enduml
false
true
true
false
sequence
c985829929faf201c217266504c2da3d77e02587
1fa78caa225ab245bcbf45a8f37c0ae0456699bb
/docs/diagrams/StorageClassDiagram.puml
f58a6f396d46beb2f338452a83f1bad42199cc2d
[]
no_license
AY2021S2-CS2113T-W09-1/tp
4fc8be000ca7413ef1fcf6792df8964c9d56dc80
f6b64fca1af322a0af026b665f5f4a576cf4a768
refs/heads/master
2023-04-01T13:54:23.209787
2021-04-12T15:46:53
2021-04-12T15:46:53
343,957,852
0
5
null
2021-04-12T15:46:54
2021-03-03T00:58:58
Java
UTF-8
PlantUML
false
false
541
puml
@startuml 'https://plantuml.com/sequence-diagram skinparam classAttributeIconSize 0 hide circle class Storage { - recordList: ArrayList <Record> - creditScoreReturnedLoansMap: HashMap - dataFilePath: Path + saveData(:RecordList, :CreditScoreReturnedLoansMap) + loadFile() + getRecordListData() + getMapData() } note "Private methods are omitted." as N1 class AddCommand { } class ReturnCommand { } class RemoveCommand { } Storage"1" <-- Finux Storage"1" <-- AddCommand Storage"1" <-- ReturnCommand Storage"1" <-- RemoveCommand @enduml
false
true
false
false
class
a643d38c8f5f35d8d4ef3235ab24f9930473061a
ca0a47ab46b3f7a5c5bfaa2c7c4bf078e3646c32
/PlantUML/src/GUIsdUpdateHigscore.plantuml
3f1d5120e33283d4d022fff46033b5adccfeb251
[]
no_license
LasseKrarup/Laser-Tag-Project
4ea4b496c2e59c54512c4275247bf1bf3f452c5f
07510f50a6c98d9ffb59550b63838435da25ca4a
refs/heads/master
2021-07-14T09:54:43.202288
2019-06-26T11:41:30
2019-06-26T11:41:30
171,651,265
4
0
null
2020-07-07T04:42:06
2019-02-20T10:22:59
HTML
UTF-8
PlantUML
false
false
818
plantuml
@startuml GUIsdUpdateHighscore skinparam { monochrome true dpi 300 padding 5 packageStyle rectangle packageStyle frame shadowing false } hide footbox mainframe **sd** GUI - Update high score participant Electron participant "Main Window" as main participant "React App" as react participant "WebSocket Client" as ws participant "PlayerList" as players activate Electron Electron -> main++: create deactivate Electron main -> react++: render DOM deactivate main react -> players--: render ... [->ws: Player ID and new score activate ws ws -> react ++: ID and new score deactivate ws react -> react: update state react -> players++: render deactivate react players -> players --: sort and update list @enduml
false
true
false
false
sequence
77c63ad7f358a3128cdb27235b2ae3c545123062
e025f7f5f80709163d37e676fab1031fe50215ff
/BehavioralPatterns/ChainOfResponsibility/src/main/resources/cor4.puml
7edea3e68d4502cf6246afa6aab17948ca9bfd23
[]
no_license
solitarysp/Example-Learn-Design-Patterns
b08108cdd08389000a85cf46ed0206dad02eb43d
7bf0bcf11ba6b42baca7d394eaf041f4d14a40a7
refs/heads/master
2021-06-18T21:11:12.834002
2021-02-03T08:16:48
2021-02-03T08:16:48
137,770,677
0
0
null
2020-10-21T03:26:53
2018-06-18T15:31:54
Java
UTF-8
PlantUML
false
false
1,598
puml
@startuml class Main{ + main(String[] args) } class OrderService{ + void order(OrderEntity orderEntity) } class BaseValidateOrderProcessor{ + NextLambda nextLambda; + ErrorLambda errorLambda; + boolean checkUserProcessor(OrderEntity orderEntity) + void validate(OrderEntity orderEntity) } class TokenValidateProcess extends BaseValidateOrderProcessor { + boolean checkUserProcessor(OrderEntity orderEntity) } class NumberOrderValidateProcess extends BaseValidateOrderProcessor{ + boolean checkUserProcessor(OrderEntity orderEntity) } Main --> OrderService : 1: Gọi đến OrderService OrderService --> BaseValidateOrderProcessor : 2: gọi đến TokenValidateProcess để validate token \n thông qua method validate() trong BaseValidateOrderProcessor BaseValidateOrderProcessor --> TokenValidateProcess : 3: gọi đến TokenValidateProcess \n để validate token TokenValidateProcess --> BaseValidateOrderProcessor : 4: TokenValidateProcess trả lại kết quả validate token cho BaseValidateOrderProcessor BaseValidateOrderProcessor --> NumberOrderValidateProcess : 5: gọi đến NumberOrderValidateProcess \n để validate number NumberOrderValidateProcess --> BaseValidateOrderProcessor : 6: NumberOrderValidateProcess \n trả lại kết quả validate number cho BaseValidateOrderProcessor BaseValidateOrderProcessor --> OrderService : 7 BaseValidateOrderProcessor cố gắng gọi đến \n trình xử lý tiếp theo nhưng không có để gọi. \n BaseValidateOrderProcessor trả về kết quả thông qua nextLambda @enduml
false
true
true
false
sequence
14642641f6ab8c383debbc528964bc2b069aecec
d86302c394a15a2084445799f7ee73d2990e8e2a
/junit5uml/doc/how_intellij_selects_tests/intellij_selects_single_test.puml
910feeab07551f71511acccf7af922fc67c85a9e
[]
no_license
haihanyin/sourcecodeuml
4eed7a0b1531669370b2430ca38d6268151c8556
865726c9cddc5cecc84caf34f0bf992eb277d68a
refs/heads/master
2022-11-23T03:13:14.528701
2019-07-29T20:56:43
2019-07-29T20:56:43
196,833,125
0
0
null
2022-11-16T11:52:23
2019-07-14T12:20:55
Java
UTF-8
PlantUML
false
false
396
puml
@startuml IdeaTestRunner --> Junit5IdeaTestRunner: startRunnerWithArgs("org..SimpleTest,sayHello") Junit5IdeaTestRunner --> MethodSelectorResolver: resolve test method MethodSelectorResolver --> JupiterEngineDescriptor: initiates JupiterEngineDescriptor --> ClassTestDescriptor: add class SimpleTest as child ClassTestDescriptor --> TestMethodTestDescriptor: add method runTest as child @enduml
false
true
false
false
sequence
dd43cceff3bec50bd86cd195d1e5af4ab06f5ea1
605cac101260b1b451322b94580c7dc340bea17a
/malokhvii-eduard/malokhvii05/doc/plantuml/ua/khpi/oop/malokhvii05/util/algorithms/search/AbstractSearchAlgorithm.puml
ec53a7b7ca5251d6993ab97e65803cdc57f8a42d
[ "MIT" ]
permissive
P-Kalin/kit26a
fb229a10ad20488eacbd0bd573c45c1c4f057413
2904ab619ee48d5d781fa3d531c95643d4d4e17a
refs/heads/master
2021-08-30T06:07:46.806421
2017-12-16T09:56:41
2017-12-16T09:56:41
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
295
puml
@startuml abstract class AbstractSearchAlgorithm<T> { #lastFoundIndex: int +AbstractSearchAlgorithm(Comparator<T>) +getLastFoundIndex(): int #indexNotFound(): int +isNull(): boolean #isValidArray(Array<T>): boolean } @enduml
false
true
false
false
class
9948fed09834623ed7e4e860779443631f5e7a6d
a751888fd29a1b92bb32ef7d272d3e72f664ed30
/src/design/orbit-determination-overview-class-diagram.puml
d717a3561d63295a1bbea4da53fe7e3594993da8
[ "Apache-2.0", "MIT", "EPL-1.0" ]
permissive
petrushy/Orekit
b532c7db85c992d85b5ac3d858d18d656e2b8c46
1f8ff45caf82e0e7e85f8cf9fd4f41c3ba379443
refs/heads/develop
2023-08-16T11:37:43.709083
2023-07-18T20:13:14
2023-07-18T20:13:14
42,349,064
10
2
Apache-2.0
2023-07-21T14:54:14
2015-09-12T07:39:56
Java
UTF-8
PlantUML
false
false
2,544
puml
' Copyright 2002-2022 CS GROUP ' Licensed to CS GROUP (CS) under one or more ' contributor license agreements. See the NOTICE file distributed with ' this work for additional information regarding copyright ownership. ' CS licenses this file to You under the Apache License, Version 2.0 ' (the "License"); you may not use this file except in compliance with ' the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, software ' distributed under the License is distributed on an "AS IS" BASIS, ' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ' See the License for the specific language governing permissions and ' limitations under the License. @startuml skinparam svek true skinparam ClassBackgroundColor #F3EFEB/CCC9C5 skinparam ClassArrowColor #691616 skinparam ClassBorderColor #691616 skinparam NoteBackgroundColor #F3EFEB skinparam NoteBorderColor #691616 skinparam NoteFontColor #691616 skinparam ClassFontSize 11 skinparam PackageFontSize 12 skinparam linetype ortho package org.hipparchus #ECEBD8 { interface LeastSquaresProblem } package org.orekit #ECEBD8 { package estimation #DDEBD8 { package measurements #CBDBC8 { class EstimatedMeasurement interface ObservedMeasurement { +estimate(state) } ObservedMeasurement --> EstimatedMeasurement } package leastsquares #CBDBC8 { class MeasurementHandler class ODProblem class BatchLSEstimator { +addMeasurement(measurement) +getOrbitalParametersDrivers() +getPropagatorsParametersDrivers() +getMeasurementsParametersDrivers() +setObserver(observer) +estimate() } class SequentialBatchLSEstimator ODProblem *--> MeasurementHandler SequentialBatchLSEstimator -right-|> BatchLSEstimator BatchLSEstimator *-right-> ODProblem LeastSquaresProblem <|.. ODProblem ODProblem --> EstimatedMeasurement MeasurementHandler o--> ObservedMeasurement } package propagation #DDEBD8 { interface Propagator MeasurementHandler <-- Propagator : triggers Propagator <-- ODProblem : run } } } @enduml
false
true
false
false
class
854a606c18df9cd7c8ca9955069738a383101f5c
5bdc19e7ff1d6880ca51c600fb9edc3943a3c4b5
/doc/plantuml/src/sequence_diagrams/february2020/stop_playback.puml
901c90b2d0498d4ef5ad394f896edb3c73d1135a
[]
no_license
Warwolt/tr2k_drum_machine
1a8e617137ed8c6d23856bf490c18f0067979564
430e9a3199b16807a6e88860d80c1ec4fd826fa9
refs/heads/master
2022-04-08T10:36:54.567422
2020-02-24T22:30:07
2020-02-24T22:30:07
192,423,856
0
0
null
null
null
null
UTF-8
PlantUML
false
false
264
puml
@startuml title Stop Playback -> PlaybackControlView: update() PlaybackControlView -> StopButton: justPressed() StopButton --> PlaybackControlView: true PlaybackControlView -> PlaybackController: stopPlayback() PlaybackController -> TempoTimer: stop() @enduml
false
true
false
false
sequence
14209de29e9c313d764000c48c64c8aac43c3795
1bb644f3d6c13f3cd59e536bf76bd5b55ab40588
/src/main/resources/geym/dg/ch10/convert.plantuml
eaea3df6ff8384e7aa22855ef3f8fa857808cd88
[]
no_license
xenron/sandbox-dev-spring
e1c9aef4d3b7ca65f432046069a452a2961b184b
2133e7743536f4bdb25530b2c9b1a5c15241a68e
refs/heads/master
2021-01-19T09:00:26.948551
2017-04-12T09:38:51
2017-04-12T09:38:51
87,710,934
0
0
null
null
null
null
UTF-8
PlantUML
false
false
151
plantuml
@startuml interface Converter interface ConverterRegistry DefaultConversionService -|> ConverterRegistry DefaultConversionService *-- Converter @enduml
false
true
false
false
class
678b99d44f0ce3349263fdcd1773e2108bb52e60
f90c39ffff44a5a39493336c9c18331db8f8760f
/docs/useCaseView/MoveFromTableauToFoundation.plantuml
f71e7cbdcffaad008e608f659bd975f1b34251db
[]
no_license
Sertinell/klondike
e60d49defc893f459218c491a084e1872fddaa44
7c10f627fda6caf8b1ddc9e2cd6a59b218f34c53
refs/heads/master
2023-04-11T08:18:00.482272
2021-04-22T12:46:28
2021-04-22T12:46:28
338,658,308
0
9
null
2021-04-22T12:46:29
2021-02-13T19:59:43
null
UTF-8
PlantUML
false
false
657
plantuml
@startuml Player Moves Card from Tableau to Foundation state choice1 <<choice>> state choice2 <<choice>> state choice3 <<choice>> hide empty description state "Player select card to Move from a Tableau" as 1 state "Player select a Foundation as destination" as 2 state "Board is updated" as 3 state "OpenGame" as 0 0 -down-> 1 1 -down-> choice1 choice1 -down-> 2 choice1 -right-> ShowError : Selected card cannot be move 2-down-> choice2 choice2 -right-> ShowError : Card.Color != Foundation.Color choice2 -down-> 3 3-down-> choice3 choice3 -right-> Win: All foundations complete choice3 --> OpenGame: Foundation not complete ShowError -up-> 0 @enduml
false
true
false
false
sequence
751129735386f41881f07b14ba9ead4f58685947
326f0532299d6efcaec59d5a2cc95c31d9af9ef2
/src/com/atguigu/adapter/objectadapter/objectadapter.plantuml
47bdffc2333cd81bfe584294fd10bb52a2ee2dd6
[]
no_license
srefp/design_pattern
4b45ceb0808a8ae98a007bc5b0e01825693dcf7b
b7ff2d80172c55848b8f59530da6ccca477dfd24
refs/heads/main
2023-01-19T06:12:14.495913
2020-11-24T08:48:53
2020-11-24T08:48:53
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,216
plantuml
@startuml title __OBJECTADAPTER's Class Diagram__\n namespace com.atguigu.adapter.objectadapter { class com.atguigu.adapter.objectadapter.Client { {static} + main() } } namespace com.atguigu.adapter.objectadapter { interface com.atguigu.adapter.objectadapter.IVoltage5V { {abstract} + output5V() } } namespace com.atguigu.adapter.objectadapter { class com.atguigu.adapter.objectadapter.Phone { + charming() } } namespace com.atguigu.adapter.objectadapter { class com.atguigu.adapter.objectadapter.Voltage220V { + output220V() } } namespace com.atguigu.adapter.objectadapter { class com.atguigu.adapter.objectadapter.VoltageAdapter { + VoltageAdapter() + output5V() } } com.atguigu.adapter.objectadapter.VoltageAdapter .up.|> com.atguigu.adapter.objectadapter.IVoltage5V com.atguigu.adapter.objectadapter.VoltageAdapter o-- com.atguigu.adapter.objectadapter.Voltage220V : voltage220V 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
7ce5bcca2f90e82bf90e0b8e4e597ce71a2e756a
eaffff63c2b45bcc99cffa6d87bd9d2940ad648a
/src/main/java/com/nanyin/pattern/command/command.puml
7dc256cf44aa2a1b19a6c6d35400abd22cc904b9
[]
no_license
welnercruisen/design-patterns
ef1d2d186118200e45fdab0029578b3887efab30
c3ddc86098d22660ed2b34f5bf8e9df557b8f616
refs/heads/master
2023-03-19T15:28:50.536812
2020-10-07T04:38:45
2020-10-07T04:38:45
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
392
puml
@startuml interface Command{ excute():void } class AttackCommand{ - soldier:Soldier + excute():void } 'class RetreatCommand{ '- soldier:Soldier '+ excute():void '} class Soldier{ attack():void retreat():void } class King{ - command:Command + invoke(Command):void + action():void } Command <|.. AttackCommand Soldier <-- AttackCommand King --> Command App --> King App --> Soldier @enduml
false
true
false
false
class
350b969a035d76c223c4c31224045032301e96a3
b9aa2932773ba8791cc12a65c1e21ba0d12002a2
/iot-coldchain-network/model-formatted.puml
228c9e897af78c744475a3bd8589b93eaf81b816
[ "Apache-2.0" ]
permissive
donbr/developerWorks
1223dea72ec8c7795bf35b9aabf91454e9b4cbd7
9f1eaeebd4580ee1d53ce9a06a1456d7d2d7c6ab
refs/heads/master
2020-03-20T18:46:14.702874
2018-07-28T20:29:52
2018-07-28T20:29:52
126,726,869
0
0
null
null
null
null
UTF-8
PlantUML
false
false
11,776
puml
@startuml composer 'default top to bottom direction '** Auto generated content, any changes may be lost **' !define DATE %date[EEE, MMM d, ''yy 'at' HH:mm]% skinparam titleBackgroundColor LightYellow skinparam titleBorderThickness 0.5 skinparam titleBorderRoundCorner 6 skinparam titleFontColor Black skinparam titleFontSize 18 title Business Network Definition for IOT Coldchain end title class org.acme.shipping.perishable.ShipmentTransaction << (T,yellow) >> { + Shipment shipment } org.acme.shipping.perishable.ShipmentTransaction --|> org.hyperledger.composer.system.Transaction class org.acme.shipping.perishable.TemperatureReading << (T,yellow) >> { + Double centigrade } org.acme.shipping.perishable.TemperatureReading --|> org.acme.shipping.perishable.ShipmentTransaction class org.acme.shipping.perishable.GpsReading << (T,yellow) >> { + String readingTime + String readingDate + String latitude + CompassDirection latitudeDir + String longitude + CompassDirection longitudeDir } org.acme.shipping.perishable.GpsReading --|> org.acme.shipping.perishable.ShipmentTransaction class org.acme.shipping.perishable.ShipmentReceived << (T,yellow) >> { + DateTime receivedDateTime } org.acme.shipping.perishable.ShipmentReceived --|> org.acme.shipping.perishable.ShipmentTransaction class org.acme.shipping.perishable.ShipmentPacked << (T,yellow) >> { } org.acme.shipping.perishable.ShipmentPacked --|> org.acme.shipping.perishable.ShipmentTransaction class org.acme.shipping.perishable.ShipmentPickup << (T,yellow) >> { } org.acme.shipping.perishable.ShipmentPickup --|> org.acme.shipping.perishable.ShipmentTransaction class org.acme.shipping.perishable.ShipmentLoaded << (T,yellow) >> { } org.acme.shipping.perishable.ShipmentLoaded --|> org.acme.shipping.perishable.ShipmentTransaction class org.acme.shipping.perishable.Shipment << (A,green) >> { + String shipmentId + ProductType type + ShipmentStatus status + Long unitCount + Contract contract + TemperatureReading[] temperatureReadings + GpsReading[] gpsReadings + ShipmentPacked shipmentPacked + ShipmentPickup shipmentPickup + ShipmentLoaded shipmentLoaded + ShipmentReceived shipmentReceived } org.acme.shipping.perishable.Shipment --|> org.hyperledger.composer.system.Asset class org.acme.shipping.perishable.Contract << (A,green) >> { + String contractId + Grower grower + Shipper shipper + Importer importer + DateTime arrivalDateTime + Double unitPrice + Double minTemperature + Double maxTemperature + Double minPenaltyFactor + Double maxPenaltyFactor } org.acme.shipping.perishable.Contract --|> org.hyperledger.composer.system.Asset class org.acme.shipping.perishable.Address { + String city + String country + String street + String zip } class org.acme.shipping.perishable.Business << (P,lightblue) >> { + String email + Address address + Double accountBalance } org.acme.shipping.perishable.Business --|> org.hyperledger.composer.system.Participant class org.acme.shipping.perishable.Grower << (P,lightblue) >> { } org.acme.shipping.perishable.Grower --|> org.acme.shipping.perishable.Business class org.acme.shipping.perishable.Shipper << (P,lightblue) >> { } org.acme.shipping.perishable.Shipper --|> org.acme.shipping.perishable.Business class org.acme.shipping.perishable.Importer << (P,lightblue) >> { } org.acme.shipping.perishable.Importer --|> org.acme.shipping.perishable.Business class org.acme.shipping.perishable.IoTDevice << (P,lightblue) >> { + String deviceId } org.acme.shipping.perishable.IoTDevice --|> org.hyperledger.composer.system.Participant class org.acme.shipping.perishable.TemperatureSensor << (P,lightblue) >> { } org.acme.shipping.perishable.TemperatureSensor --|> org.acme.shipping.perishable.IoTDevice class org.acme.shipping.perishable.GpsSensor << (P,lightblue) >> { } org.acme.shipping.perishable.GpsSensor --|> org.acme.shipping.perishable.IoTDevice class org.acme.shipping.perishable.SetupDemo << (T,yellow) >> { } org.acme.shipping.perishable.SetupDemo --|> org.hyperledger.composer.system.Transaction newpage 'left to right direction class org.acme.shipping.perishable.TemperatureThresholdEvent { + String message + Double temperature + Shipment shipment } org.acme.shipping.perishable.TemperatureThresholdEvent --|> org.hyperledger.composer.system.Event class org.acme.shipping.perishable.ShipmentInPortEvent { + String message + Shipment shipment } org.acme.shipping.perishable.ShipmentInPortEvent --|> org.hyperledger.composer.system.Event class org.acme.shipping.perishable.ShipmentPackedEvent { + String message + Shipment shipment } org.acme.shipping.perishable.ShipmentPackedEvent --|> org.hyperledger.composer.system.Event class org.acme.shipping.perishable.ShipmentPickupEvent { + String message + Shipment shipment } org.acme.shipping.perishable.ShipmentPickupEvent --|> org.hyperledger.composer.system.Event class org.acme.shipping.perishable.ShipmentLoadedEvent { + String message + Shipment shipment } org.acme.shipping.perishable.ShipmentLoadedEvent --|> org.hyperledger.composer.system.Event class org.acme.shipping.perishable.ShipmentReceivedEvent { + String message + Shipment shipment } org.acme.shipping.perishable.ShipmentReceivedEvent --|> org.hyperledger.composer.system.Event class iot-coldchain-network@0.1.13 << (N,brown) >> { + void instantiateModelForTesting(org.acme.shipping.perishable.SetupDemo) + void receiveShipment(org.acme.shipping.perishable.ShipmentReceived) + void temperatureReading(org.acme.shipping.perishable.TemperatureReading) + void gpsReading(org.acme.shipping.perishable.GpsReading) + void packShipment(org.acme.shipping.perishable.ShipmentPacked) + void pickupShipment(org.acme.shipping.perishable.ShipmentPickup) + void loadShipment(org.acme.shipping.perishable.ShipmentLoaded) } newpage class org.acme.shipping.perishable.ProductType << (E,grey) >> { + BANANAS + APPLES + PEARS + PEACHES + COFFEE } class org.acme.shipping.perishable.ShipmentStatus << (E,grey) >> { + CREATED + IN_TRANSIT + ARRIVED } class org.acme.shipping.perishable.CompassDirection << (E,grey) >> { + N + S + E + W } newpage class org.hyperledger.composer.system.Asset << (A,green) >> { } class org.hyperledger.composer.system.Participant << (P,lightblue) >> { } class org.hyperledger.composer.system.Transaction << (T,yellow) >> { + String transactionId + DateTime timestamp } class org.hyperledger.composer.system.Event { + String eventId + DateTime timestamp } class org.hyperledger.composer.system.Registry << (A,green) >> { + String registryId + String name + String type + Boolean system } org.hyperledger.composer.system.Registry --|> org.hyperledger.composer.system.Asset class org.hyperledger.composer.system.AssetRegistry << (A,green) >> { } org.hyperledger.composer.system.AssetRegistry --|> org.hyperledger.composer.system.Registry class org.hyperledger.composer.system.ParticipantRegistry << (A,green) >> { } org.hyperledger.composer.system.ParticipantRegistry --|> org.hyperledger.composer.system.Registry class org.hyperledger.composer.system.TransactionRegistry << (A,green) >> { } org.hyperledger.composer.system.TransactionRegistry --|> org.hyperledger.composer.system.Registry class org.hyperledger.composer.system.Network << (A,green) >> { + String networkId + String runtimeVersion } org.hyperledger.composer.system.Network --|> org.hyperledger.composer.system.Asset class org.hyperledger.composer.system.NetworkAdmin << (P,lightblue) >> { + String participantId } org.hyperledger.composer.system.NetworkAdmin --|> org.hyperledger.composer.system.Participant class org.hyperledger.composer.system.HistorianRecord << (A,green) >> { + String transactionId + String transactionType + Transaction transactionInvoked + Participant participantInvoking + Identity identityUsed + Event[] eventsEmitted + DateTime transactionTimestamp } org.hyperledger.composer.system.HistorianRecord --|> org.hyperledger.composer.system.Asset class org.hyperledger.composer.system.RegistryTransaction << (T,yellow) >> { + Registry targetRegistry } org.hyperledger.composer.system.RegistryTransaction --|> org.hyperledger.composer.system.Transaction class org.hyperledger.composer.system.AssetTransaction << (T,yellow) >> { + Asset[] resources } org.hyperledger.composer.system.AssetTransaction --|> org.hyperledger.composer.system.RegistryTransaction class org.hyperledger.composer.system.ParticipantTransaction << (T,yellow) >> { + Participant[] resources } org.hyperledger.composer.system.ParticipantTransaction --|> org.hyperledger.composer.system.RegistryTransaction class org.hyperledger.composer.system.AddAsset << (T,yellow) >> { } org.hyperledger.composer.system.AddAsset --|> org.hyperledger.composer.system.AssetTransaction class org.hyperledger.composer.system.UpdateAsset << (T,yellow) >> { } org.hyperledger.composer.system.UpdateAsset --|> org.hyperledger.composer.system.AssetTransaction class org.hyperledger.composer.system.RemoveAsset << (T,yellow) >> { + String[] resourceIds } org.hyperledger.composer.system.RemoveAsset --|> org.hyperledger.composer.system.AssetTransaction class org.hyperledger.composer.system.AddParticipant << (T,yellow) >> { } org.hyperledger.composer.system.AddParticipant --|> org.hyperledger.composer.system.ParticipantTransaction class org.hyperledger.composer.system.UpdateParticipant << (T,yellow) >> { } org.hyperledger.composer.system.UpdateParticipant --|> org.hyperledger.composer.system.ParticipantTransaction class org.hyperledger.composer.system.RemoveParticipant << (T,yellow) >> { + String[] resourceIds } org.hyperledger.composer.system.RemoveParticipant --|> org.hyperledger.composer.system.ParticipantTransaction class org.hyperledger.composer.system.IdentityState << (E,grey) >> { + ISSUED + BOUND + ACTIVATED + REVOKED } class org.hyperledger.composer.system.Identity << (A,green) >> { + String identityId + String name + String issuer + String certificate + IdentityState state + Participant participant } org.hyperledger.composer.system.Identity --|> org.hyperledger.composer.system.Asset class org.hyperledger.composer.system.IssueIdentity << (T,yellow) >> { + Participant participant + String identityName } org.hyperledger.composer.system.IssueIdentity --|> org.hyperledger.composer.system.Transaction class org.hyperledger.composer.system.BindIdentity << (T,yellow) >> { + Participant participant + String certificate } org.hyperledger.composer.system.BindIdentity --|> org.hyperledger.composer.system.Transaction class org.hyperledger.composer.system.ActivateCurrentIdentity << (T,yellow) >> { } org.hyperledger.composer.system.ActivateCurrentIdentity --|> org.hyperledger.composer.system.Transaction class org.hyperledger.composer.system.RevokeIdentity << (T,yellow) >> { + Identity identity } org.hyperledger.composer.system.RevokeIdentity --|> org.hyperledger.composer.system.Transaction class org.hyperledger.composer.system.StartBusinessNetwork << (T,yellow) >> { + String logLevel + Transaction[] bootstrapTransactions } org.hyperledger.composer.system.StartBusinessNetwork --|> org.hyperledger.composer.system.Transaction class org.hyperledger.composer.system.ResetBusinessNetwork << (T,yellow) >> { } org.hyperledger.composer.system.ResetBusinessNetwork --|> org.hyperledger.composer.system.Transaction class org.hyperledger.composer.system.SetLogLevel << (T,yellow) >> { + String newLogLevel } org.hyperledger.composer.system.SetLogLevel --|> org.hyperledger.composer.system.Transaction right footer DATE @enduml
false
true
false
false
class
9d1f077bca3393a5fa9684f2338f1f80ea6a1c00
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StandalonePriceExternalDiscountSetMessage.puml
2b2ae18438af9522402d609557e0ca2e8adae801
[]
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,219
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 StandalonePriceExternalDiscountSetMessage [[StandalonePriceExternalDiscountSetMessage.svg]] extends Message { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] discounted: [[DiscountedPrice.svg DiscountedPrice]] } interface Message [[Message.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] } @enduml
false
true
false
false
class
3eccdfd5d3edf5449ad29a4ee0b2cb58021ad081
9a62387f0a42d03516a30a102073583252f7bcf0
/src/models/interaction/remote_sender.puml
01cdfac48683c0669707ce98e6555f0c0d7a19f7
[]
no_license
alem0lars/middleware
2fb6b155632398a42bcfbf3cff58da6ee5b5d746
8a07ea08fae004c9ed9652d824f5ad71246ef8b9
refs/heads/master
2021-01-22T20:34:41.038007
2012-12-27T21:16:29
2012-12-27T21:16:29
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,803
puml
@startuml skinparam sequenceLifeLineBorderColor black skinparam sequenceArrowColor black skinparam sequenceActorBorderColor black skinparam sequenceLifeLineBorderColor black skinparam sequenceParticipantBorderColor black skinparam sequenceBoxLineColor black hide footbox title Interactions - Sender (remote) participant "<u>observableEndpoint : ObservableEndpoint</u>" as ObservableEndpoint participant "<u>: RemoteSender</u>" as RemSend participant "<u>: ITranscoder</u>" as Transcoder participant "<u>: RemoteSenderImplementorProxy</u>" as RemSendImplProxy participant "<u>: RemoteSenderImplementor</u>" as RemSendImpl activate ObservableEndpoint ObservableEndpoint -> RemSend ++ : publish(observableEndpoint, token) : void RemSend -> RemSend ++ : send(token) : void RemSend -> Transcoder ++ : tokenData = encode(token) RemSend <<-- Transcoder -- RemSend -> RemSendImplProxy ++ : send(tokenData) : void alt !isImplementorStarted RemSendImplProxy -> RemSendImpl ** : <<create>> activate RemSendImpl RemSendImplProxy <<-- RemSendImpl -- end alt ! sendDenied RemSendImplProxy -> RemSendImplProxy ++ : applyQosPolicies() : void RemSendImplProxy <<-- RemSendImplProxy -- RemSendImplProxy -> RemSendImpl ++ : send(tokenData) RemSendImpl ->>] : send(tokenData) RemSendImplProxy <<-- RemSendImpl -- RemSendImplProxy -> RemSendImplProxy ++ : cleanupReceive() : void RemSendImplProxy <<-- RemSendImplProxy -- end RemSend <<-- RemSendImplProxy -- RemSend <<-- RemSend -- ObservableEndpoint <<-- RemSend -- deactivate ObservableEndpoint @enduml
false
true
false
false
sequence
6665279de44529fac074b61b22df4205f0e17bd8
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ChannelUpdate.puml
0242e0e8066812e9f3f3416170f24b4f235c8d95
[]
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
359
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 ChannelUpdate [[ChannelUpdate.svg]] { version: Long actions: [[ChannelUpdateAction.svg List<ChannelUpdateAction>]] } @enduml
false
true
false
false
class
b4cf4d854c7fa5ee977f0dd0e9093e18521cb373
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.puml
bc2feed89d9dd5bec20248e396e8d48fe3ed1c29
[]
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
485
puml
@startuml class TMP_UiFrameRateCounter { + UpdateInterval : float = 5.0f Awake() : void Start() : void Update() : void Set_FrameCounter_Position(anchor_position:FpsCounterAnchorPositions) : void } enum FpsCounterAnchorPositions { TopLeft, BottomLeft, TopRight, BottomRight, } MonoBehaviour <|-- TMP_UiFrameRateCounter TMP_UiFrameRateCounter o-> "AnchorPosition" FpsCounterAnchorPositions TMP_UiFrameRateCounter +-- FpsCounterAnchorPositions @enduml
false
true
false
false
class
12653a1bd8941f196ee79617c61015e2286c7e29
79086ca37b19a70fa722218f3bfe50a6e06b3333
/UML/ClassDiagram.puml
b91de176e4e39a07af6165fefac7fee03161115a
[]
no_license
M-a-x-i-m-i-l-i-a-n/CardTrading
2e598b6d09dad4ce2e8216200410861be455ac8e
d405d7e6aa10b2dc571c62415f03e933f23eb93c
refs/heads/master
2023-08-25T19:58:51.851916
2021-10-28T12:11:04
2021-10-28T12:11:04
411,668,876
0
0
null
null
null
null
UTF-8
PlantUML
false
false
985
puml
@startuml 'https://plantuml.com/class-diagram abstract class AbstractList abstract AbstractCollection interface List interface Collection List <|-- AbstractList Collection <|-- AbstractCollection Collection <|- List AbstractCollection <|- AbstractList AbstractList <|-- ArrayList class ArrayList { Object[] elementData size() } enum TimeUnit { DAYS HOURS MINUTES } @enduml @startuml class User{ String username String password Card[] stack Card[5] deck int coins int elo void manageDeck() } abstract class Card{ enum elementType int dmg String name } class spellCard{ } class monsterCard{ enum type } class Server{ void main() } class Client{ void main() bool register() bool login() void printOptions() } class LoginHandler{ bool checkLoginData() bool register() } class GameHandler{ } User -- Card Card <|-- spellCard Card <|-- monsterCard Server -- LoginHandler Server -- GameHandler @enduml
false
true
false
false
class
a3c7dd0b860f453210017b789427b6a7dc5b5a8d
62de719e261fac67d2a2bc347a98be5515b48948
/docs/red/1161018/sp2/design.puml
1fbe2d3422289cb7aabf4ebff5039ad459c32cf2
[]
no_license
raulcorreia7/isep_lapr4_17_18
82672fca46e433856d52b3839e3739fa53b8f52c
79217fa01912657da37ef6cdb1a05194dd2f5110
refs/heads/master
2020-04-15T17:52:21.964106
2019-01-09T17:13:14
2019-01-09T17:13:14
164,891,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,380
puml
@startuml design.png skinparam handwritten true skinparam monochrome true skinparam packageStyle rect skinparam defaultFontName FG Virgil skinparam shadowing false actor User boundary WorkbookView control WorkbookView control GWT control AsyncCallback box "NSheets Client" participant WorkbookView end box box "Server" participant SearchServiceImpl end box box "NSheets shared" participant SearchServiceAsync participant SearchController participant SearchByRegularExpression end box box "OTHER" participant GWT participant AsyncCallback end box User -> WorkbookView : click Search And Replace button WorkbookView --> User : ask for regex and word to replace. User -> WorkbookView : inserts information + filter paramaters. WorkbookView -> GWT : create(SearchService.class) WorkbookView -> AsyncCallback : create() loop for SpreadSheet currentSpreadSheet : currentWorkbook loop for Cell currentCell : currentSpreadSheet WorkbookView -> SearchServiceImpl : matchByPattern(regex, cell.content()) SearchServiceImpl -> SearchController : create(regex, content) SearchServiceImpl -> SearchController : matchByPattern() SearchController -> SearchByRegularExpression : search(regex, content) SearchController -> WorkbookView : shouldReplace? WorkbookView --> User : asks to replace User -> WorkbookView : answers. end end WorkbookView -> User : show output in text area @enduml
false
true
false
false
usecase
d1ec8b4538fa7ad65351b84fbe99ead60e0e84ff
f49acdbc93a9cfbae1e4dc913968c04bd859aa5b
/doc/emfviews-object-diagram.iuml
1de7cab0d867ef602d1f0be855ffb1c36073026a
[]
no_license
fmdkdd/monoge
2c4fb542e6db9ec23402d3bae7fe798ed5a83c55
4e3cd7e2988942bef8a2e9bf1d3f3e08d815694a
refs/heads/master
2021-01-19T03:11:21.806777
2019-09-16T15:56:17
2019-09-16T15:56:17
87,309,263
0
0
null
null
null
null
UTF-8
PlantUML
false
false
10,657
iuml
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ' Object diagram for EMFViews.core ' ' These are all the relevant objects in the heap created by EMFViews after ' EView.load(). (Made on commit 076c71909692d4f984f7e86fd30363076bd7dfe3) ' ' Arrow semantics: ' A o-- B := A has B as attribute ' A o--o B := A has B as attribute, and B has A as attribute ' A --> B := A creates B (but does not hold B as attribute) ' A ..> B := A holds a weak reference to B (HashMap nodes) @startuml /' Theming '/ title Object diagram for EView.load() set namespaceseparator none skinparam shadowing false skinparam classAttributeIconSize 0 skinparam class { BackgroundColor<<EMF>> #f0f0f0 BorderColor<<EMF>> #cdcdcd BackgroundColor<<Java>> #f0f0f0 BorderColor<<Java>> #cdcdcd BackgroundColor #fff BorderColor #aaa } skinparam packageBorderColor #888 skinparam stereotype { CBackgroundColor #fff ABackgroundColor #fff IBackgroundColor #fff } skinparam arrow { Color #333 FontColor #333 FontSize 11 } skinparam note { BackgroundColor #fff BorderColor #aaa } hide class circle hide class methods '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ' EView objects ' ' Numbers after the class name refer to the object ID reported by the Eclipse ' debugger for a single run. These numbers tend to change every run, but they ' were useful in establishing the relationships. class EView/83 { uri: resources/views/minimal/view.eview } class Properties/104 <<Java>> { weavingModel: "resources/views/minimal/weaving.xmi" contributingModels: "resources/models/minimal.xmi" viewpoint: "resources/viewpoints/minimal/viewpoint.eviewpoint" } class ResourceSetImpl/122 <<EMF>> { resources: [] } class Viewpoint/113 { uri: resources/viewpoints/minimal/viewpoint.eviewpoint matchingModel: "" contributingMetamodels: "resources/metamodels/minimalref.ecore" } class Properties/381 <<Java>> { matchingModel: "" weavingModel: "resources/viewpoints/minimal/weaving.xmi" contributingMetamodels: "resources/metamodels/minimalref.ecore" } class ResourceSetImpl/448 <<EMF>> { } class EPackageRegistryImpl/471 <<EMF>> { delegateRegistry: EPackage.Registry.INSTANCE } class EPackageImpl/384 <<EMF>> { name: "minimalref" nsURI: http://inria.fr/atlanmod/emfviews/tests/minimalref } class EClassImpl/396 <<EMF>> { name: "A" } class EReferenceImpl/414 <<EMF>> { name: "manyB" lowerBound: 0 upperBound: -1 } class EClassImpl/397 <<EMF>> { name: "B" } class EReferenceImpl/417 <<EMF>> { name: "parentA" lowerBound: 0 upperBound: 1 } class EPackageImpl/505 <<EMF>> { name: "minimalref" nsURI: http://inria.fr/atlanmod/emfviews/tests/minimalref } class EClassImpl/173 <<EMF>> { name: "A" } class EReferenceImpl/453 <<EMF>> { name: "manyB" lowerBound: 0 upperBound: -1 } class EClassImpl/189 <<EMF>> { name: "B" } class EReferenceImpl/259 <<EMF>> { name: "parentA" lowerBound: 0 upperBound: 1 } class ResourceSetImpl/519 <<EMF>> { } class XMIResourceImpl/449 <<EMF>> { uri: resources/viewpoints/minimal/weaving.xmi } class VirtualLinksImpl/527 { } class LinkedElementImpl/540 { name: "manyB" elementRef: "minimalref.A.manyB" modelRef: "http://inria.fr/atlanmod/emfviews/tests/minimalref" } class FilterImpl/548 { name: "manyB" } class EPackageRegistryImpl/672 <<EMF>> { } class EPackageImpl/212 <<EMF>> { name: "minimalref" nsURI: http://inria.fr/atlanmod/emfviews/tests/minimalref } class EClassImpl/167 <<EMF>> { name: "A" } class EReferenceImpl/345 <<EMF>> { name: "manyB" lowerBound: 0 upperBound: -1 } class EClassImpl/188 <<EMF>> { name: "B" } class EReferenceImpl/256 <<EMF>> { name: "parentA" lowerBound: 0 upperBound: 1 } class HashMap/150 <<Java>> { } class HashMap$Node/163 <<Java>> { } class HashMap$Node/165 <<Java>> { } class HashMap/151 <<Java>> { } class HashMap$Node/254 <<Java>> { } class XMIResourceImpl/678 <<EMF>> { uri: resources/models/minimal.xmi } class DynamicEObjectImpl/586 <<EMF>> { } class DynamicEObjectImpl/604 <<EMF>> { } class DynamicEObjectImpl/609 <<EMF>> { } class ResourceSetImpl/663 <<EMF>> { } class XMIResourceImpl/656 <<EMF>> { uri: resources/models/weaving.xmi } class VirtualLinksImpl/578 { linkedElements: null virtualLinks: null } class EStoreEPropertiesHolderImpl/621 <<EMF>> { } class EStoreEPropertiesHolderImpl/651 <<EMF>> { } class EStoreEPropertiesHolderImpl/641 <<EMF>> { } class HashMap/577 <<Java>> { } class HashMap$Node/582 <<Java>> { } class HashMap$Node/583 <<Java>> { } class HashMap$Node/584 <<Java>> { } '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ' EView relationships "EView/83" o-- "Properties/104" : properties "EView/83" o-- "ResourceSetImpl/122" : virtualResourceSet "EView/83" o-- "Viewpoint/113" "Viewpoint/113" o-- "Properties/381" : properties "Viewpoint/113" o-- "ResourceSetImpl/448" : virtualResourceSet "Viewpoint/113" o-- "EPackageImpl/384" : contributingEPackages "EPackageImpl/384" o-- "EClassImpl/396" : eClassifiers[0] "EPackageImpl/384" o-- "EClassImpl/397" : eClassifiers[1] "EClassImpl/396" o-- "EReferenceImpl/414" : eStructuralFeatures[0] "EClassImpl/397" o-- "EReferenceImpl/417" : eStructuralFeatures[0] "EReferenceImpl/414" o-o "EReferenceImpl/417" : eOpposite "ResourceSetImpl/448" o-- "EPackageRegistryImpl/471" : packageRegistry "EPackageRegistryImpl/471" o-- "EPackageImpl/505" : "http://inria.fr/emfviews/tests/minimalref" "EPackageImpl/505" o-- "EClassImpl/173" : eClassifiers[0] "EPackageImpl/505" o-- "EClassImpl/189" : eClassifiers[1] /' "EClassImpl/173" o-- "EReferenceImpl/453" : eStructuralFeatures[0] '/ "EClassImpl/189" o-- "EReferenceImpl/259" : eStructuralFeatures[0] /' "EReferenceImpl/453" o-o "EReferenceImpl/259" : eOpposite '/ "Viewpoint/113" --> "ResourceSetImpl/519" : loadWeavingModel() "ResourceSetImpl/519" o-- "XMIResourceImpl/449" : resources[0] "Viewpoint/113" o-- "XMIResourceImpl/449" : weavingModelResource "XMIResourceImpl/449" o-- "VirtualLinksImpl/527" : contents[0] "VirtualLinksImpl/527" o-- "LinkedElementImpl/540" : linkedElements[0] "VirtualLinksImpl/527" o-- "FilterImpl/548" : virtualLinks[0] "FilterImpl/548" o- "LinkedElementImpl/540" : filteredElement "Viewpoint/113" o-- "EReferenceImpl/453" : hiddenAttributes[0] "Viewpoint/113" o-- "VirtualContents/447" : virtualContents "VirtualContents/447" o-- "EPackageImpl/505" : subLists[0][0] "ResourceSetImpl/122" o-- "EPackageRegistryImpl/672" : packageRegistry "EPackageRegistryImpl/672" o-- "EPackageImpl/212" : "http://inria.fr/emfviews/tests/minimalref" "EPackageImpl/212" o-- "EClassImpl/167" : eClassifiers[0] "EPackageImpl/212" o-- "EClassImpl/188" : eClassifiers[1] "EClassImpl/167" o-- "EReferenceImpl/345" : eStructuralFeatures[0] "EClassImpl/188" o-- "EReferenceImpl/256" : eStructuralFeatures[0] "EReferenceImpl/345" o-o "EReferenceImpl/256" : eOpposite "EView/83" "metamodelManager" o--o "virtualModel" "MetamodelManager/102" "MetamodelManager/102" o-- "Viewpoint/113" : viewpoint "MetamodelManager/102" o-- "EPackageImpl/212" : contributingMetamodels[0] "MetamodelManager/102" o-- "HashMap/150" : concreteToVirtualClass "HashMap/150" o-- "HashMap$Node/163" "HashMap/150" o-- "HashMap$Node/165" "HashMap$Node/163" ..> "EClassImpl/167" : key "HashMap$Node/163" ..> "EClassImpl/173" : value "HashMap$Node/165" ..> "EClassImpl/188" : key "HashMap$Node/165" ..> "EClassImpl/189" : value "MetamodelManager/102" o-- "HashMap/151" : concreteToVirtualFeature /' "MetamodelManager/102" o-- HashMap : virtualToConcreteFeature '/ "HashMap/151" o-- "HashMap$Node/254" "HashMap$Node/254" o-- "EReferenceImpl/256" : key "HashMap$Node/254" o-- "EReferenceImpl/259" : value "ResourceSetImpl/122" o-- "XMIResourceImpl/678" : resources[0] "XMIResourceImpl/678" o-- "DynamicEObjectImpl/586" : contents[0] "XMIResourceImpl/678" o-- "DynamicEObjectImpl/604" : contents[0] "XMIResourceImpl/678" o-- "DynamicEObjectImpl/609" : contents[0] "DynamicEObjectImpl/586" o-- "EClassImpl/167" : eClass "DynamicEObjectImpl/604" o-- "EClassImpl/188" : eClass "DynamicEObjectImpl/609" o-- "EClassImpl/188" : eClass "EView/83" "vLinkManager" o--o "virtualModel" "VirtualLinkManager/125" "VirtualLinkManager/125" --> "ResourceSetImpl/663" "ResourceSetImpl/663" o-- "XMIResourceImpl/656" : resources[0] "XMIResourceImpl/656" o-- "VirtualLinksImpl/578" : contents[0] "VirtualLinkManager/125" o-- "VirtualLinksImpl/578" : weavingModel "VirtualLinkManager/125" --> LinksProjector : initialize() LinksProjector o-- "EView/83" : virtualModel "VirtualLinkManager/125" o-- "HashMap/577" : virtualLinks "HashMap/577" o-- "HashMap$Node/582" "HashMap$Node/582" ..> "DynamicEObjectImpl/586" : key "HashMap$Node/582" ..> "ReproduceElementImpl/589" : value "ReproduceElementImpl/589" o-- "DynamicEObjectImpl/586" : concreteElement "ReproduceElementImpl/589" o-- "EStoreEPropertiesHolderImpl/621" : eProperties "EStoreEPropertiesHolderImpl/621" o-- "EClassImpl/173" : eClass "EStoreEPropertiesHolderImpl/621" o-- "EView/83" : eResource "ReproduceElementImpl/589" o-- "ReproduceRule/623" : translationRule "ReproduceElementImpl/589" o-- "ReproduceRule/623" : eStore "HashMap/577" o-- "HashMap$Node/583" "HashMap$Node/583" ..> "DynamicEObjectImpl/604" : key "HashMap$Node/583" ..> "ReproduceElementImpl/605" : value "ReproduceElementImpl/605" o-- "DynamicEObjectImpl/604" : concreteElement "ReproduceElementImpl/605" o-- "EStoreEPropertiesHolderImpl/651" : eProperties "EStoreEPropertiesHolderImpl/651" o-- "EClassImpl/189" : eClass "EStoreEPropertiesHolderImpl/651" o-- "EView/83" : eResource "ReproduceElementImpl/605" o-- "ReproduceRule/623" : translationRule "ReproduceElementImpl/605" o-- "ReproduceRule/623" : eStore "HashMap/577" o-- "HashMap$Node/584" "HashMap$Node/584" ..> "DynamicEObjectImpl/609" : key "HashMap$Node/584" ..> "ReproduceElementImpl/610" : value "ReproduceElementImpl/610" o-- "DynamicEObjectImpl/609" : concreteElement "ReproduceElementImpl/610" o-- "EStoreEPropertiesHolderImpl/641" : eProperties "EStoreEPropertiesHolderImpl/641" o-- "EClassImpl/189" : eClass "EStoreEPropertiesHolderImpl/641" o-- "EView/83" : eResource "ReproduceElementImpl/610" o-- "ReproduceRule/623" : translationRule "ReproduceElementImpl/610" o-- "ReproduceRule/623" : eStore "EView/83" o-- "VirtualContents/117" : virtualContents "VirtualContents/117" o-- "ReproduceElementImpl/589" : sublists[0][0] "VirtualContents/117" o-- "ReproduceElementImpl/610" : sublists[0][1] "VirtualContents/117" o-- "ReproduceElementImpl/605" : sublists[0][2] @enduml
false
true
false
false
sequence
21149d00c8e7f0a11dfb4f48665ef8fc0a6130f5
042b522e8f6e05d7c8edda35106abf9b0b32d10d
/gha/src/hu.bme.mit.mcmec.model2uppaal/src/main/java/hu/bme/mit/mcmec/model2uppaal/model2uppaal.plantuml
36c732cfc3dd2b12dd8240c16d0507a5af4926b4
[]
no_license
leventeBajczi/prog3
c5a3024c58f2e964f1b809feb6fc5f03756a1a5d
23cd59006c03331deb7b33ce1e389df2dd350e4b
refs/heads/master
2020-03-28T02:34:29.312264
2018-11-03T21:32:47
2018-11-03T21:32:47
147,580,561
0
1
null
null
null
null
UTF-8
PlantUML
false
false
689
plantuml
@startuml title __MODEL2UPPAAL's Class Diagram__\n package hu.bme.mit.mcmec.model2uppaal { class Model2Uppaal { - xtaSystem : XtaSystem - inputStream : InputStream - issueMap : Map<String, List<String>> - queryMap : Map<String, List<List<String>>> {static} + transform() - run() - buildQueryList() - locationFitsInstruction() - getNameFromIssue() - writeQuery() - hasDuplicates() } } 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
3bce4c422f3f59f9747e30c2394bb06121199d51
f18ba1fbeb7f8d6149aff64633f9c77a92cfc936
/assignments/v.kuleykin/TP2/src/Weapons/impl/impl.plantuml
a0b146c16d4d62c50881c3da66b32cb1962c0c84
[]
no_license
kzvdar42/InnopolisDesignPatterns
c34a728b7964f22a6b774a4616b7ac9515ae6263
b1042e76875c9ccf69017e20edcea4b9e7b5682b
refs/heads/master
2021-02-07T05:17:54.245396
2020-04-19T22:40:48
2020-04-19T22:40:48
243,987,548
0
0
null
2020-02-29T14:54:34
2020-02-29T14:54:34
null
UTF-8
PlantUML
false
false
1,050
plantuml
@startuml title __IMPL's Class Diagram__\n namespace Weapons { namespace impl { class Weapons.impl.Bow { {static} - instance : Bow {static} + getInstance() + getWeaponName() - Bow() } } } namespace Weapons { namespace impl { class Weapons.impl.Dagger { {static} - instance : Dagger {static} + getInstance() + getWeaponName() - Dagger() } } } namespace Weapons { namespace impl { class Weapons.impl.Sword { {static} - instance : Sword {static} + getInstance() + getWeaponName() - Sword() } } } Weapons.impl.Bow .up.|> Weapons.WeaponBehavior Weapons.impl.Dagger .up.|> Weapons.WeaponBehavior Weapons.impl.Sword .up.|> Weapons.WeaponBehavior 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
64dcf3e60e1dc0b23e636411c32726d41e37be43
d99de6ff8918486d43d15354bd0610426840a559
/src/main/java/ejercicioPatronesEmergencias/UML.puml
2a8f37621de3a5418e998bdab9b37a4d38d443b1
[]
no_license
jumpering/DesignPatterns
9ea2c999900a83417267030bac22b03b183ab23d
340e661444af4bf0c793972b79b2529d43bccb2a
refs/heads/main
2023-02-21T20:41:55.915181
2021-01-23T22:31:53
2021-01-23T22:31:53
260,456,695
0
0
null
null
null
null
UTF-8
PlantUML
false
false
452
puml
@startuml Enum TiposBases{ SERVICIO ADMINISTRATIVA } BaseCreador <|-down- BaseServicioCreador BaseCreador <|-down- BaseAdministrativaCreador Base <|-down- BaseServicio Base <|-down- BaseAdministrativa BaseServicioCreador ..> BaseServicio BaseAdministrativaCreador ..> BaseAdministrativa Escenario *--> GestorBases GestorBases *--> BaseCreador Escenario ..> TiposBases Escenario ..> BaseServicioCreador Escenario ..> BaseAdministrativaCreador @enduml
false
true
false
false
class
0d02b14c1d1f99aff1ddf4cbc163207f589ad7b0
92fb24dc611ccaab1098d25343e3d1e9256045b8
/designpattern/src/main/java/com/xicheng/designpattern/proxy/staticproxy/staticproxy.puml
b7f5cf9056b6a22dc80c656cb7b46182a1690474
[]
no_license
xianhaiGitHub/woodencottage
23813b4d2f788b979d70464ca67ff08044b6d3c7
7059cbe208a05461a93aff69b2364cc3ac6afa6a
refs/heads/master
2020-06-05T16:31:46.521528
2019-05-09T05:06:59
2019-05-09T05:06:59
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
175
puml
@startuml class RealStar interface Star class Main Star <|-- ProxyStar Star <|-- RealStar class ProxyStar { RealStar realStar; } class Main { Star star; } @enduml
false
true
false
false
class
90309213f81618cf68fbf05f49e83af187a9b10c
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/CustomFieldStringType.puml
616d9cf80f2663101955b93e3a0de709c822a448
[]
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
383
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 CustomFieldStringType [[CustomFieldStringType.svg]] extends FieldType { name: String } interface FieldType [[FieldType.svg]] { name: String } @enduml
false
true
false
false
class
278c5f5c4086c2a706e6a8f9ffc8d852a0f6e03a
39e3dd2dc707b0ef2a7379b6555b0435380cdbac
/results/design/ParallelBZ2Reader.puml
1f057f5c56fcad30bc4e1c3c5b1a28d8dc16c05c
[ "Apache-2.0", "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mxmlnkn/indexed_bzip2
271da201b1c9733faa98f1a76192175c5f87a923
8d7219fba205277bdd1528bf0ff7b9d023789184
refs/heads/master
2023-08-16T15:47:47.331586
2023-08-06T18:45:46
2023-08-06T18:45:58
225,161,274
52
3
null
null
null
null
UTF-8
PlantUML
false
false
19,918
puml
@startuml ' bluegray cerulean-outline crt-amber materia-outline mimeograph cyborg !theme crt-amber '!pragma svek_trace on /' generate in your local folder two intermediate files: foo.dot : intermediate file in "dot" language provided to GraphViz foo.svg : intermediate result file which is going to be parsed by PlantUML to retrieve element positions. '/ 'skinparam backgroundColor #121212 skinparam backgroundColor #000000 /' Use the UML symbols +-#~ for visibility instead of PlantUML-specific icons '/ skinparam classAttributeIconSize 0 set namespaceSeparator :: hide empty hide members 'left to right direction ' Only takes more space vertically, does not reduce width :/ 'top to bottom direction skinparam linetype ortho 'skinparam linetype polyline /' "linetype ortho" looks the best imo, but it does not work at all with arrow labels as they are place too far away to be meaningful. Same bug applies to polyline. See: https://forum.plantuml.net/1608/is-it-possible-to-only-use-straight-lines-in-a-class-diagram https://crashedmind.github.io/PlantUMLHitchhikersGuide/layout/layout.html#linetype-polyline-ortho https://github.com/plantuml/plantuml/issues/149 '/ together { abstract class FileReader { '+~FileReader() +{abstract} closed() : bool {query} +{abstract} eof() : bool {query} +{abstract} seekable() : bool {query} +{abstract} fileno() : int {query} +{abstract} seek(long long int offset, int origin) : size_t +{abstract} size() : size_t {query} +{abstract} tell() : size_t {query} +{abstract} close() : void } class BitReader { -{static} determineFileSize(int fileNumber) : size_t -{static} determineSeekable(int fileNumber) : size_t +{static} fdFilePath(int fileDescriptor) : std::string .. +BitReader(std::string filePath) +BitReader(int fileDescriptor) +BitReader(const uint8_t* buffer, size_t size, uint8_t offsetBits) +BitReader(std::vector<uint8_t>&& buffer, uint8_t offsetBits) +BitReader(BitReader&& other) +BitReader(const BitReader& other) '+~BitReader() +read(char* outputBuffer, size_t nBytesToRead) : size_t +seek(long long int offsetBits, int origin) : size_t -seekInternal(long long int offsetBits, int origin) : size_t +read(uint8_t bitsWanted) : uint32_t +read() : uint32_t +read64(uint8_t bitsWanted) : uint64_t +close() : void -readSafe(uint8_t) : uint32_t -init() : void -refillBuffer() : void .. queries .. +fp() : FILE* {query} +closed() : bool {query} +eof() : bool {query} +seekable() : bool {query} +fileno() : int {query} +size() : size_t {query} +tell() : size_t {query} +buffer() : std::vector<std::uint8_t>& {query} -- -{static} nLowestBitsSet(uint8_t nBitsSet) : T -{static} nLowestBitsSet() : T +{static} NO_FILE : int +{static} IOBUF_SIZE : size_t .. -m_filePath : std::string +m_readBitsCount : size_t -m_fileDescriptor : int -m_lastReadSuccessful : bool -m_inbuf : std::vector<uint8_t> +m_inbufBits : uint32_t -m_inbufPos : uint32_t +m_inbufBitCount : uint8_t -m_offsetBits : uint8_t -m_file : unique_file_ptr } class NamedFileReader { } class SharedFileReader { } class PythonFileReader { } FileReader <|-- BZ2ReaderInterface FileReader <|-- BitReader FileReader <|-- NamedFileReader FileReader <|-- SharedFileReader FileReader <|-- PythonFileReader SharedFileReader *-- FileReader BitReader *-- SharedFileReader abstract class BZ2ReaderInterface { '+~BZ2ReaderInterface() +{abstract} blockOffsetsComplete() : bool {query} +{abstract} read(const int outputFileDescriptor, char* const outputBuffer, const size_t nBytesToRead) : size_t +{abstract} tellCompressed() : size_t {query} +{abstract} availableBlockOffsets() : std::map<size_t , size_t> {query} +{abstract} blockOffsets() : std::map<size_t , size_t> +{abstract} setBlockOffsets(std::map<size_t, size_t> offsets) : void } } namespace bzip2 { class Block { +Block() +Block(Block& &) +Block(BitReader& bitReader) +operator=(Block& &) : Block& +bitReader() : BitReader& +eof() : bool {query} +eos() : bool {query} +readBlockData() : void .. -getBits() : uint32_t -getBits(uint8_t nBits) : uint32_t -readBlockHeader() : void -- +bwdata : BurrowsWheelerTransformData +isRandomized : bool +groupCount : int +encodedOffsetInBits : size_t +encodedSizeInBits : size_t +groups : std::array<GroupData, MAX_GROUPS> +selectors : std::array<char, 32768> +mtfSymbol : std::array<uint8_t, 256> +symbolToByte : std::array<uint8_t, 256> +selectors_used : uint16_t +magicBytes : uint64_t +symbolCount : unsigned int .. -m_bitReader : BitReader* -m_atEndOfFile : bool -m_atEndOfStream : bool } class BurrowsWheelerTransformData { +prepare() : void +decodeBlock(const uint32_t nMaxBytesToDecode, char* outputBuffer) : uint32_t -- +writeCount : int +writeCurrent : int +writePos : int +writeRun : int +byteCount : std::array<int, 256> +dbuf : std::vector<uint32_t> +dataCRC : uint32_t +headerCRC : uint32_t +origPtr : uint32_t } class GroupData { +limit : std::array<int, MAX_HUFCODE_BITS + 1> +base : std::array<int, MAX_HUFCODE_BITS> +permute : std::array<uint16_t, MAX_SYMBOLS> +maxLen : uint8_t +minLen : uint8_t } Block *-- GroupData Block +--- BurrowsWheelerTransformData Block o--- ::BitReader } /' class BZ2Reader { +BZ2Reader(const std::string& filePath) +BZ2Reader(int fileDescriptor) +BZ2Reader(const char* bz2Data, const size_t size) -readBlockHeader(size_t bitsOffset) : BlockHeader +blockOffsetsComplete() : bool {query} +closed() : bool {query} +eof() : bool {query} +seekable() : bool {query} +fileno() : int {query} -decodeStream(int outputFileDescriptor, char* outputBuffer, size_t nMaxBytesToDecode) : size_t -flushOutputBuffer(int outputFileDescriptor, char* outputBuffer, size_t maxBytesToFlush) : size_t +read(const int outputFileDescriptor, char* const outputBuffer, const size_t nBytesToRead) : size_t +seek(long long int offset, int origin) : size_t +size() : size_t {query} +tell() : size_t {query} +tellCompressed() : size_t {query} +{static} IOBUF_SIZE : static constexpr size_t +availableBlockOffsets() : std::map<size_t , size_t> {query} +blockOffsets() : std::map<size_t , size_t> +crc() : uint32_t {query} +close() : void #readBzip2Header() : void +setBlockOffsets(std::map<size_t, size_t> offsets) : void -- #m_bitReader : BitReader -m_lastHeader : Block #m_atEndOfFile : bool #m_blockToDataOffsetsComplete : bool #m_currentPosition : size_t -m_decodedBufferPos : size_t -m_decodedBytesCount : size_t #m_blockToDataOffsets : std::map<size_t, size_t> -m_decodedBuffer : std::vector<char> #m_calculatedStreamCRC : uint32_t #m_streamCRC : uint32_t #m_blockSize100k : uint8_t } BZ2ReaderInterface <|-- BZ2Reader BZ2Reader *--- BitReader BZ2Reader *-- bzip2::Block '/ together { namespace CacheStrategy { abstract class CacheStrategy <Index> { '+~CacheStrategy() +{abstract} evict() : std::optional<Index> +{abstract} touch(Index index) : void } class LeastRecentlyUsed <Index> { +LeastRecentlyUsed() +evict() : std::optional<Index> +touch(Index index) : void -- -m_lastUsage : std::map<Index, size_t> } CacheStrategy <|-- LeastRecentlyUsed } class Cache <Key, Value, CacheStrategy> { +Cache(size_t maxCacheSize) +test(const Key& key) : bool {query} +capacity() : size_t {query} +hits() : size_t {query} +misses() : size_t {query} +size() : size_t {query} +get(const Key& key) : std::optional<Value> +insert(Key key, Value value) : void +resetStatistics() : void +touch(const Key& key) : void -- -m_cacheStrategy : CacheStrategy -m_hits : size_t -m_misses : size_t -m_maxCacheSize : size_t const -m_cache : std::map<Key, Value> } Cache *-- CacheStrategy::CacheStrategy } class JoiningThread { +JoiningThread(T_Args&& ... args) +JoiningThread(JoiningThread& &) '+~JoiningThread() +joinable() : bool {query} +get_id() : std::thread::id {query} +join() : void -- -m_thread : std::thread } namespace ThreadPool { class ThreadPool { +ThreadPool(unsigned int nThreads) +future<decltype(std::declval<T_Functor>( ) ( ) )>submitTask ( T_Functor task) '+~ThreadPool() +size() : size_t {query} +unprocessedTasksCount() : size_t {query} -workerMain() : void -- -m_mutex : mutable std::mutex -m_threadPoolRunning : std::atomic<bool> -m_pingWorkers : std::condition_variable -m_tasks : std::deque<PackagedTaskWrapper> -m_threads : std::vector<JoiningThread> } class PackagedTaskWrapper { +PackagedTaskWrapper(T_Functor&& functor) +operator()() : void -- -m_impl : std::unique_ptr<BaseFunctor> } abstract class BaseFunctor { '+~BaseFunctor() +{abstract} operator()() : void } class SpecializedFunctor <Functor> { +SpecializedFunctor(T_Functor&& functor) +operator()() : void -- -m_functor : T_Functor } ThreadPool +-- PackagedTaskWrapper PackagedTaskWrapper +-- BaseFunctor PackagedTaskWrapper +-- SpecializedFunctor BaseFunctor <|-- SpecializedFunctor ThreadPool *--- "1..*" ::JoiningThread } together { class BitStringFinder <bitStringSize : uint8_t> { +BitStringFinder(BitStringFinder& &) +BitStringFinder(std::string const& filePath, uint64_t bitStringToFind, size_t fileBufferSizeBytes) +BitStringFinder(int fileDescriptor, uint64_t bitStringToFind, size_t fileBufferSizeBytes) +BitStringFinder(const char* buffer, size_t size, uint64_t bitStringToFind) #BitStringFinder(uint64_t bitStringToFind, size_t fileBufferSizeBytes, std::string const& filePath) '+~BitStringFinder() +{static} createdShiftedBitStringLUT(uint64_t bitString, bool includeLastFullyShifted) : ShiftedLUTTable +eof() : bool {query} +seekable() : bool {query} #m_fileChunksInBytes : const size_t #m_bitStringToFind : const uint64_t #m_movingBitsToKeep : const uint8_t #m_movingBytesToKeep : const uint8_t #m_file : const unique_file_ptr +{static} mask(uint8_t length) : constexpr T +find() : size_t +{static} findBitString(const uint8_t* buffer, size_t bufferSize, uint64_t bitString, uint8_t firstBitsToIgnore) : size_t #m_bufferBitsRead : size_t #m_nTotalBytesRead : size_t #refillBuffer() : size_t +{static} fdFilePath(int fileDescriptor) : std::string #m_buffer : std::vector<char> #m_movingWindow : uint64_t } class ParallelBitStringFinder <bitStringSize : uint8_t> { +ParallelBitStringFinder(std::string const& filePath, uint64_t bitStringToFind, size_t parallelization, size_t requestedBytes, size_t fileBufferSizeBytes) +ParallelBitStringFinder(int fileDescriptor, uint64_t bitStringToFind, size_t parallelization, size_t requestedBytes, size_t fileBufferSizeBytes) +ParallelBitStringFinder(const char* buffer, size_t size, uint64_t bitStringToFind) +~ParallelBitStringFinder() -{static} chunkSize(size_t const fileBufferSizeBytes, size_t const requestedBytes, size_t const parallelization) : constexpr size_t +find() : size_t -{static} workerMain(char const* const buffer, size_t const bufferSizeInBytes, uint8_t const firstBitsToIgnore, uint64_t const bitStringToFind, size_t const bitOffsetToAdd, ThreadResults result) : void -- -m_threadPool : ThreadPool -m_requestedBytes : const size_t -m_threadResults : std::list<ThreadResults> } BitStringFinder <|-- ParallelBitStringFinder BitStringFinder *-- FileReader ParallelBitStringFinder *--- ThreadPool::ThreadPool ParallelBitStringFinder *-- FileReader class ThreadResults { +changed : std::condition_variable +future : std::future<void> +mutex : std::mutex +foundOffsets : std::queue<size_t> } } /' class ThreadSafeOutput { +ThreadSafeOutput() +string() {query} +operator<<(const T& value) : ThreadSafeOutput& +str() : std::string {query} -- -m_out : std::stringstream } '/ ParallelBitStringFinder +-- ThreadResults namespace FetchingStrategy { class FetchNext { -{static} MEMORY_SIZE : static constexpr size_t +prefetch(size_t maxAmountToPrefetch) : std::vector<size_t> {query} +fetch(size_t index) : void -- -m_lastFetched : std::optional<size_t> } class FetchNextSmart { -{static} MEMORY_SIZE : static constexpr size_t +prefetch(size_t maxAmountToPrefetch) : std::vector<size_t> {query} +fetch(size_t index) : void -- -m_previousIndexes : std::deque<size_t> } abstract class FetchingStrategy { '+~FetchingStrategy() +{abstract} prefetch(size_t maxAmountToPrefetch) : std::vector<size_t> {query} +{abstract} fetch(size_t index) : void } FetchingStrategy <|-- FetchNext FetchingStrategy <|--- FetchNextSmart } namespace ParallelBZ2Reader{ class StreamedResults <Value> { +results() : ResultsView {query} +finalized() : bool {query} +size() : size_t {query} +get(size_t position, double timeoutInSeconds) : std::optional<Value> {query} +finalize(std::optional<size_t> resultsCount) : void +push(Value value) : void +setResults(deque<Value> results) : void -- -m_results : deque<Value> -m_changed : mutable std::condition_variable -m_mutex : mutable std::mutex -m_finalized : std::atomic<bool> } class ResultsView { +ResultsView(deque<Value> results, std::mutex* mutex) +results() : Values& {query} -- -m_results : deque<Value> -m_lock : std::scoped_lock<std::mutex>const } StreamedResults +-- ResultsView ' class BlockFetcher <template<typename FetchingStrategy=FetchingStrategy::FetchNextSmart>> { class BlockFetcher <FetchingStrategy> { +BlockFetcher(BitReader bitReader, std::shared_ptr<BlockFinder> blockFinder, size_t parallelization) ' +~BlockFetcher() +readBlockHeader(size_t blockOffset) : BlockHeaderData {query} +get(size_t blockOffset, std::optional<size_t> dataBlockIndex) : std::shared_ptr<BlockData> .. -decodeBlock(size_t blockOffset) : BlockData {query} -- -m_cache : Cache<size_t, std::shared_ptr<BlockData>> -m_fetchingStrategy : FetchingStrategy -m_threadPool : ThreadPool -m_bitReader : const BitReader -m_parallelization : const size_t -m_blockFinder : const std::shared_ptr<BlockFinder> -m_analyticsMutex : mutable std::mutex -m_cancelThreadsCondition : std::condition_variable -m_prefetching : std::map<size_t, std::future<BlockData>> -m_blockSize100k : uint8_t } class BlockFinder { +BlockFinder(int fileDescriptor, size_t parallelization) +BlockFinder(char const* buffer, size_t size, size_t parallelization) +BlockFinder(std::string const& filePath, size_t parallelization) ' +~BlockFinder() +finalized() : bool {query} +find(size_t encodedBlockOffsetInBits) : size_t {query} +size() : size_t {query} +get(size_t blockNumber, double timeoutInSeconds) : std::optional<size_t> +finalize(std::optional<size_t> blockCount) : void +setBlockOffsets(StreamedResults<size_t>::Values blockOffsets) : void +startThreads() : void +stopThreads() : void .. -blockFinderMain() : void -- -m_bitStringFinder : std::unique_ptr<BitStringFinder> -m_blockFinder : std::unique_ptr<JoiningThread> -m_blockOffsets : StreamedResults<size_t> -m_prefetchCount : const size_t -m_mutex : mutable std::mutex -m_changed : std::condition_variable } 'BlockFinder *--- "1" ::ParallelBitStringFinder BlockFinder *--- ::ParallelBitStringFinder : <<bind>> \n <bitStringSize -> bzip2::MAGIC_BITS_SIZE> BlockFinder *-- ::JoiningThread BlockFinder *-- StreamedResults BlockFinder *--- ::SharedFileReader ' : <<bind>> \n <Value -> size_t> class BlockMap { +BlockMap() +findDataOffset(size_t dataOffset) : BlockInfo {query} +finalized() : bool {query} +dataBlockCount() : size_t {query} +blockOffsets() : std::map<size_t , size_t> {query} +back() : std::pair<size_t , size_t> {query} +finalize() : void +push(size_t encodedBlockOffset, size_t encodedSize, size_t decodedSize) : void +setBlockOffsets(std::map<size_t, size_t>const& blockOffsets) : void -- -m_mutex : mutable std::mutex -m_eosBlocks : std::vector<size_t> -m_blockToDataOffsets : std::vector<std::pair<size_t, size_t>> } class BlockData { +data : std::vector<uint8_t> } class BlockHeaderData { } class BlockInfo { +contains(size_t dataOffset) : bool {query} } BlockFetcher *--- ::BitReader BlockFetcher *-- BlockFinder BlockFetcher *--- ::Cache BlockFetcher *--- ::FetchingStrategy::FetchingStrategy BlockFetcher *--- ::ThreadPool::ThreadPool BlockFetcher +-- BlockData BlockFetcher +-- BlockHeaderData BlockFetcher -left--> ::bzip2::Block BlockMap +-- BlockInfo class ParallelBZ2Reader { +ParallelBZ2Reader(int fileDescriptor, size_t parallelization) +ParallelBZ2Reader(const char* bz2Data, const size_t size, size_t parallelization) +ParallelBZ2Reader(const std::string& filePath, size_t parallelization) +blockOffsetsComplete() : bool {query} +closed() : bool {query} +eof() : bool {query} +seekable() : bool {query} +fileno() : int {query} +read(const int outputFileDescriptor, char* const outputBuffer, const size_t nBytesToRead) : size_t +seek(long long int offset, int origin) : size_t +size() : size_t {query} +tell() : size_t {query} +tellCompressed() : size_t {query} +availableBlockOffsets() : std::map<size_t , size_t> {query} +blockOffsets() : std::map<size_t , size_t> +close() : void +joinThreads() : void +setBlockOffsets(std::map<size_t, size_t> offsets) : void .. -blockFetcher() : BlockFetcher& -blockFinder() : BlockFinder& -writeResult(int const outputFileDescriptor, char* const outputBuffer, char const* const dataToWrite, size_t const dataToWriteSize) : size_t -setBlockFinderOffsets(const std::map<size_t, size_t>& offsets) : void -- -m_bitReader : BitReader -m_atEndOfFile : bool -m_currentPosition : size_t -m_fetcherParallelization : size_t const -m_startBlockFinder : std::function<std::shared_ptr<BlockFinder>(void)> -m_blockFinder : std::shared_ptr<BlockFinder> -m_blockFetcher : std::unique_ptr<BlockFetcher> } ::BZ2ReaderInterface <|-- ParallelBZ2Reader ParallelBZ2Reader *--- ::BitReader ParallelBZ2Reader *-- BlockFetcher ParallelBZ2Reader *-- BlockFinder ParallelBZ2Reader *-- BlockMap } /' Layouting tricks '/ @enduml
false
true
false
false
sequence
ddb285838ed800ee1f25063f36bc202419a9f319
f2893b3141066418b72f1348da6d6285de2512c6
/modelViewPresenter/presentationModel/withDoubleDispatching/docs/diagrams/src/paquetes.plantuml
080ecacc656d9b130aa42cd7f28b8975a3e528ce
[]
no_license
x-USantaTecla-game-connect4/java.swing.socket.sql
26f8028451aab3c8e5c26db1b1509e6e84108b0d
28dcc3879d782ace1752c2970d314498ee50b243
refs/heads/master
2023-09-01T11:43:43.053572
2021-10-16T16:19:50
2021-10-16T16:19:50
417,161,784
0
1
null
null
null
null
UTF-8
PlantUML
false
false
15,361
plantuml
@startuml paqueteTicTacToe class View as "tictactoe.views.\nView" {} class Logic as "tictactoe.controllers.\nLogic" {} class Controller as "tictactoe.controllers.\nController" class tictactoe.ConsoleTicTacToe{ # createView(): View + {static} main(String[]) } tictactoe.TicTacToe <|-down- tictactoe.ConsoleTicTacToe tictactoe.ConsoleTicTacToe .down.> View class tictactoe.GraphicsTicTacToe{ # createView(): View + {static} main(String[]) } tictactoe.TicTacToe <|-down- tictactoe.GraphicsTicTacToe tictactoe.GraphicsTicTacToe .down.> View class tictactoe.TicTacToe{ # TicTacToe() # {abstract} createView(): View # play() } tictactoe.TicTacToe *-down-> View tictactoe.TicTacToe *-down-> Logic tictactoe.TicTacToe .down.> Controller @enduml @startuml paqueteTicTacToeViews class Error as "tictactoe.types.\nError" {} interface ControllersVisitor as "tictactoe.controllers.\nControllersVisitor" class tictactoe.views.ErrorView{ + {static} MESSAGES: String[] + ErrorView(Error) } tictactoe.views.ErrorView *-down-> Error enum tictactoe.views.Message{ + TITTLE + NUMBER_PLAYERS + SEPARATOR + VERTICAL_LINE_LEFT + VERTICAL_LINE_CENTERED + VERTICAL_LINE_RIGHT + ENTER_COORDINATE_TO_PUT + ENTER_COORDINATE_TO_REMOVE + COORDINATE_TO_PUT + COORDINATE_TO_REMOVE + COORDINATE_TO_MOVE + PLAYER_WIN + RESUME - message: String - Message(String) + getMessage(): String } abstract class tictactoe.views.View { + interact(Controller) } tictactoe.views.View .up.|> ControllersVisitor @enduml @startuml paqueteTicTacToeViewsConsole abstract class View as "tictactoe.views.\nView" class Error as "tictactoe.models.\nError" {} class Coordinate as "tictactoe.models.\nCoordinate" {} class Console as "usantatecla.utils.\nConsole" {} class Controller as "tictactoe.controllers.\nController" {} class PlayController as "tictactoe.controllers.\nPlayController" {} class ResumeController as "tictactoe.controllers.\nResumeController" {} class YesNoDialog as "usantatecla.utils.\nYesNoDialog" {} class StartController as "tictactoe.controllers.\nStartController" {} class LimitedIntDialog as "usantatecla.utils.\nLimitedIntDialog" {} class Token as "tictactoe.types.\nToken" {} class Message as "tictactoe.views.\nMessage" {} class ErrorView as "tictactoe.views.\nErrorView" {} class tictactoe.views.console.ConsoleView{ + ConsoleView() + visit(StartController) + visit(PlayController) + visit(StartController) } tictactoe.views.console.ConsoleView -up-|> View tictactoe.views.console.ConsoleView *-down-> tictactoe.views.console.StartView tictactoe.views.console.ConsoleView *-down-> tictactoe.views.console.PlayView tictactoe.views.console.ConsoleView *-down-> tictactoe.views.console.ResumeView tictactoe.views.console.ConsoleView .down.> StartController tictactoe.views.console.ConsoleView .down.> PlayController tictactoe.views.console.ConsoleView .down.> ResumeController class tictactoe.views.console.CoordinateView { + CoordinateView(PlayController) + read(String): Coordinate } tictactoe.views.console.CoordinateView *-down-> PlayController tictactoe.views.console.CoordinateView .down.> Console tictactoe.views.console.CoordinateView .down.> Error tictactoe.views.console.CoordinateView .down.> Coordinate tictactoe.views.console.CoordinateView .down.> tictactoe.views.console.ErrorView class tictactoe.views.console.ErrorView{ ~ ErrorView(Error) ~ writeln() } tictactoe.views.console.ErrorView .down.> Error tictactoe.views.console.ErrorView .down.> Console ErrorView <|-down- tictactoe.views.console.ErrorView class tictactoe.views.console.BoardView{ ~ BoardView(Controller) ~ write() } tictactoe.views.console.BoardView *-down-> Controller tictactoe.views.console.BoardView .down.> Console tictactoe.views.console.BoardView .down.> Coordinate tictactoe.views.console.BoardView .down.> Message tictactoe.views.console.BoardView .down.> tictactoe.views.console.TokenView class tictactoe.views.console.PlayView{ ~ interact(PlayController) - put(PlayController) - move(PlayController) } tictactoe.views.console.PlayView .down.> PlayController tictactoe.views.console.PlayView .down.> Coordinate tictactoe.views.console.PlayView .down.> Message tictactoe.views.console.PlayView .down.> Error tictactoe.views.console.PlayView .down.> Console tictactoe.views.console.PlayView .down.> tictactoe.views.console.BoardView tictactoe.views.console.PlayView .down.> tictactoe.views.console.TokenView tictactoe.views.console.PlayView .down.> tictactoe.views.console.ErrorView tictactoe.views.console.PlayView .down.> tictactoe.views.console.CoordinateView class tictactoe.views.console.ResumeView{ ~ interact(ResumeController): boolean } tictactoe.views.console.ResumeView .down.> ResumeController tictactoe.views.console.ResumeView .down.> Message tictactoe.views.console.ResumeView .down.> YesNoDialog class tictactoe.views.console.StartView{ ~ interact(StartController) } tictactoe.views.console.StartView .down.> StartController tictactoe.views.console.StartView .down.> Console tictactoe.views.console.StartView .down.> Message tictactoe.views.console.StartView .down.> LimitedIntDialog tictactoe.views.console.StartView .down.> tictactoe.views.console.BoardView class tictactoe.views.console.TokenView{ ~ TokenView(Token) ~ write() } tictactoe.views.console.StartView *-down-> Token tictactoe.views.console.StartView .down.> Console @enduml @startuml paqueteTicTacToeViewsGraphics class View as "tictactoe.views.View" {} class StartController as "tictactoe.controllers.\nStartController" {} class PlayController as "tictactoe.controllers.\nPlayController" {} class ResumeController as "tictactoe.controllers.\nResumeController" {} class tictactoe.views.graphics.GraphicsView{ + visit(StartController) + visit(PlayController) + visit(ResumeController) } tictactoe.views.graphics.GraphicsView .down.> StartController tictactoe.views.graphics.GraphicsView .down.> PlayController tictactoe.views.graphics.GraphicsView .down.> ResumeController View <|-down- tictactoe.views.graphics.GraphicsView @enduml @startuml paqueteTicTacToeModels class ConcreteCoordinate as "usantatecla.utils.\nConcreteCoordinate" {} class Direction as "usantatecla.utils.\nDirection" {} class Error as "tictactoe.types.\nError" {} class Token as "tictactoe.types.\nToken" {} class tictactoe.models.Board{ + Board() - Board(Board) ~ copy(): Board ~ getToken(Coordinate): Token ~ put(Coordinate, Token) ~ move(Coordinate, Coordinate) ~ isCompleted(): boolean ~ isOccupied(Coordinate, Token): boolean ~ isEmpty(Coordinate): boolean ~ isTicTacToe(Token): boolean - getCoordinates(Token): List<Coordinate> + equals(Object): boolean } tictactoe.models.Board *-down-> "*" Token tictactoe.models.Board .down.> tictactoe.models.Coordinate tictactoe.models.Board .down.> Direction class tictactoe.models.Coordinate{ ~ {static} NULL_COORDINATE: Coordinate + {static} DIMENSION: int + Coordinate() + Coordinate(int, int) + isNull(): boolean + getDirection(Coordinate): Direction - inInverseDiagonal(): boolean + random() } ConcreteCoordinate <|-down- tictactoe.models.Coordinate tictactoe.models.Coordinate .down.> Direction class tictactoe.models.Game{ + Game() + reset() + setUsers(int) + isBoardComplete(): boolean + isUser(): boolean + put(Coordinate): Error + move(Coordinate, Coordinate): Error + next(Error) + isTicTacToe(): boolean + getToken(Coordinate): Token + getToken(): Token + getMaxPlayers(): int + equals(Object): boolean } tictactoe.models.Game *-down-> tictactoe.models.Board tictactoe.models.Game *-down-> tictactoe.models.Turn tictactoe.models.Game .down.> tictactoe.models.Coordinate tictactoe.models.Game .down.> Error tictactoe.models.Game .down.> Token class tictactoe.models.Player{ ~ Player(Token, Board) ~ put(Coordinate): Error ~ move(Coordinate, Coordinate): Error ~ getToken(): Token + copy(Board): Player + equals(Object): boolean } tictactoe.models.Player *-down-> Token tictactoe.models.Player *-down-> tictactoe.models.Board tictactoe.models.Player .down.> tictactoe.models.Coordinate tictactoe.models.Player .down.> Error class tictactoe.models.State{ + State() + reset() + next() + getValueState(): StateValue } tictactoe.models.State *-down-> tictactoe.models.StateValue enum tictactoe.models.StateValue{ + INITIAL + IN_GAME + RESUME + EXIT } class tictactoe.models.Turn{ + {static} NUMBER_PLAYERS: int - active: int - users: int ~ Turn(Board) + Turn(Turn, Board) + copy(Board): Turn ~ setUsers(int) ~ set(int) ~ next() ~ isUser(): boolean ~ put(Coordinate): Error ~ getPlayer(): Player ~ move(Coordinate, Coordinate): Error ~ getToken(): Token + equals(Object): boolean } tictactoe.models.Turn *-down-> "*" tictactoe.models.Player tictactoe.models.Turn *-down-> tictactoe.models.Board tictactoe.models.Turn .down.-> Token tictactoe.models.Turn .down.-> tictactoe.models.Coordinate tictactoe.models.Turn .down.-> Error @enduml @startuml paqueteTypes class ClosedInterval as "usantatecla.utils.\nClosedInterval" {} enum tictactoe.types.Error{ + NOT_EMPTY + NOT_OWNER + SAME_COORDINATES + NOT_VALID + NULL + isNull(): boolean } enum tictactoe.types.Token{ + X + O + NULL + isNull(): boolean + {static} get(int): Token + toString(): String } tictactoe.types.Token .down.> ClosedInterval @enduml @startuml paqueteTicTacToeControllers class Game as "tictactoe.models.\nGame" {} class Coordinate as "tictactoe.models.\nCoordinate" {} class Error as "tictactoe.types.\nError" {} class Token as "tictactoe.types.\nToken" {} class State as "tictactoe.models.\nState" {} class StateValue as "tictactoe.models.\nStateValue" {} class ClosedInterval as "usantatecla.utils.\nClosedInterval" {} abstract class tictactoe.controllers.Controller{ ~ Controller(Game,State) + getToken(Coordinate): Token + next() + {abstract} accept(ControllersVisitor) } tictactoe.controllers.Controller *-down-> Game tictactoe.controllers.Controller *-down-> State tictactoe.controllers.Controller .down.> Coordinate tictactoe.controllers.Controller .down.> Token tictactoe.controllers.Controller .down.> tictactoe.controllers.ControllersVisitor interface tictactoe.controllers.ControllersVisitor{ ~ visit(StartController) ~ visit(PlayController) ~ visit(ResumeController) } class tictactoe.controllers.Logic{ + Logic() + getController(): Controller } tictactoe.controllers.Logic *-down-> Game tictactoe.controllers.Logic *-down-> State tictactoe.controllers.Logic *-down-> StateValue tictactoe.controllers.Logic *-down-> "*"tictactoe.controllers.Controller class tictactoe.controllers.PlayController{ + PlayController(Game,State) + isBoardComplete(): boolean + isTicTacToe(): boolean + getToken(): Token + isUser(): boolean + isValidCoordinate(Coordinate): Error + getRandomCoordinate(): Coordinate + put(Coordinate): Error + move(Coordinate,Coordinate): Error + accept(ControllersVisitor) } tictactoe.controllers.Controller <|-down- tictactoe.controllers.PlayController tictactoe.controllers.PlayController .down.> Coordinate tictactoe.controllers.PlayController .down.> Error tictactoe.controllers.PlayController .down.> Game tictactoe.controllers.PlayController .down.> Token tictactoe.controllers.PlayController .down.> State tictactoe.controllers.PlayController .down.> ClosedInterval tictactoe.controllers.PlayController .down.> tictactoe.controllers.ControllersVisitor class tictactoe.controllers.ResumeController{ + ResumeController(Game,State) + resume() + accept(ControllersVisitor) } tictactoe.controllers.Controller <|-down- tictactoe.controllers.ResumeController tictactoe.controllers.ResumeController .down.> Game tictactoe.controllers.ResumeController .down.> State tictactoe.controllers.ResumeController .down.> tictactoe.controllers.ControllersVisitor class tictactoe.controllers.StartController{ + StartController(Game,State) + setUsers(int) + getMaxPlayers(): int + accept(ControllersVisitor) } tictactoe.controllers.Controller <|-down- tictactoe.controllers.StartController tictactoe.controllers.StartController .down.> Game tictactoe.controllers.StartController .down.> State tictactoe.controllers.StartController .down.> tictactoe.controllers.ControllersVisitor @enduml @startuml paqueteUtils class BufferedReader as "java.io.BufferedReader"{} class usantatecla.utils.models.ClosedInterval{ - min: int - max: int + ClosedInterval(int,int) + isIncluded(int): boolean + toString(): String } class usantatecla.utils.models.ConcreteCoordinate{ # row: int # column: int - {static} ROW: String - {static} COLUMN: String # ConcreteCoordinate() # ConcreteCoordinate(int,int) + isNull(): boolean + getDirection(Coordinate): Direction + inHorizontal(Coordinate): boolean + inVertical(Coordinate): boolean + inMainDiagonal(): boolean # read(String) + getRow(): int + getColumn(): int + hashCode(): int + equals(Object): boolean + toString(): String } usantatecla.utils.models.Coordinate <|-down- usantatecla.utils.models.ConcreteCoordinate usantatecla.utils.models.ConcreteCoordinate .down.> usantatecla.utils.models.Direction usantatecla.utils.models.ConcreteCoordinate .down.> usantatecla.utils.views.Console class usantatecla.utils.views.Console{ - {static} console: Console + {static} instance(): Console - readString(String): String + readString(): String + readInt(String): int ~ readChar(String): char + writeln() + write(String) + write(int) + writeln(String) + writeln(int) + write(char) - writeError(String) } usantatecla.utils.views.Console *-down-> BufferedReader interface usantatecla.utils.models.Coordinate{ ~ isNull(): boolean ~ getDirection(Coordinate): Direction ~ inHorizontal(Coordinate): boolean ~ inVertical(Coordinate): boolean ~ inMainDiagonal(): boolean } usantatecla.utils.models.Coordinate .down.> usantatecla.utils.models.Direction enum usantatecla.utils.models.Direction{ VERTICAL HORIZONTAL MAIN_DIAGONAL INVERSE_DIAGONAL NULL } class usantatecla.utils.LimitedIntDialog{ - LIMITS: ClosedInterval - {static} ERROR_MESSAGE: String + LimitedIntDialog(int,int) + read(String): int } usantatecla.utils.LimitedIntDialog *-down-> usantatecla.utils.models.ClosedInterval usantatecla.utils.LimitedIntDialog .down.> usantatecla.utils.views.Console class usantatecla.utils.models.NullCoordinate{ - {static} instance: NullCoordinate + {static} instance(): Coordinate + isNull(): boolean + getDirection(Coordinate): Direction + inHorizontal(Coordinate): boolean + inVertical(Coordinate): boolean + inMainDiagonal(): boolean + hashCode(): int + equals(Object): boolean + toString(): String } usantatecla.utils.models.Coordinate <|-down- usantatecla.utils.models.NullCoordinate usantatecla.utils.models.NullCoordinate .down.> usantatecla.utils.models.Direction class usantatecla.utils.views.YesNoDialog{ - {static} AFIRMATIVE: char - {static} NEGATIVE: char - {static} SUFFIX: String - {static} MESSAGE: String - answer: char + read(String): boolean - isAffirmative(): boolean - getAnswer(): char - isNegative(): boolean } usantatecla.utils.views.YesNoDialog .down.> usantatecla.utils.views.Console @enduml
false
true
false
false
class
bc69d6224f0237b957786e83bf29c8e8d925df6c
8476308b8fb5efa2b72d90c4e9c4a4ddb79246a2
/BO4E-dotnet/BO/LogObject/LogObject.puml
738953653bea3c8b2e4bdf3984a99bbc8ccb0c13
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
hf-fvesely/BO4E-dotnet
2ed93a22304fd2e0174a42e39f16955f4d0c2186
2cae31f3112fdd264c7b46393a08ba32a6c9c0a7
refs/heads/master
2023-03-08T01:29:08.360681
2020-12-15T21:22:17
2020-12-15T21:22:17
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
198
puml
@startuml class LogObject { + Id : string <<get>> <<set>> + DateTimeOffset : DateTimeOffset <<get>> <<set>> + LogMessage : string <<get>> <<set>> } BusinessObject <|-- LogObject @enduml
false
true
false
false
class
6c5dc4ea9e04eba210ee5464d13f96d40dddece8
1e3dba3f02025ce0e7ff066565f56eeb516bcea0
/docs/SprintB/US_9/UC9_CD.puml
84c8b2241f2c47294d5d1be0db82a903b0943c6a
[]
no_license
RuiRioPina/ManyLabs
1e3f413a08ef6ed2ad35b0326f992fef2808a4c7
4ef550952a81c0ce24b47dd85b3062e0c32df05b
refs/heads/master
2023-06-10T21:37:15.884362
2021-06-20T21:44:38
2021-06-20T21:44:38
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,291
puml
@startuml skinparam classAttributeIconSize 0 class Company { -String designation +getParameterCategoryStore() +getTestTypeStore() } class TestTypeStore { +createTestType(code, description, collectingMethod, parameterCategories) +validateTestType(tt) +saveTestType(tt) -addTestType(tt) } class ParameterCategoryStore { +getParameterCategories() +getParameterCategoryByCode(parameterCategoryCode) } class TestType { -String code -String description -String collectingMethod -List<ParameterCategory> parameterCategories +TestType(code, description, collectingMethod, parameterCategories) } class ParameterCategory { -String code -String name +ParameterCategory(code, name) } class CreateTestTypeUI { } class CreateTestTypeController { +getParameterCategories() +createTestType(code, description, collectingMethod, parameterCategoryCodes) +saveTestType() } CreateTestTypeUI ..> CreateTestTypeController CreateTestTypeController ..> Company Company "1" --> "1" TestTypeStore : uses Company "1" --> "1" ParameterCategoryStore : uses TestTypeStore "1" --> "*" TestType : conducts ParameterCategoryStore "1" --> "1" ParameterCategory : adopts TestType "*" --> "1..*" ParameterCategory : have @enduml
false
true
false
false
sequence
df7f0d990a0dc5c6d93052bb48a7e8e4c85b4ac0
5296702956daa313c36df4bb12a97a6cf3547527
/src/main/javadoc/resources/fr/kbertet/lattice/io/ContextWriterFactory.iuml
365c755f84aa68b9b55cf4287f974cb8b8386ea7
[ "CECILL-B" ]
permissive
JeanFrancoisViaud/java-lattices
c76184e9092e78aee10d91e1151ae27d8414b805
8b849295557752f599512712d2855b9e90b40799
refs/heads/master
2021-01-18T15:32:51.708817
2014-10-25T16:41:55
2014-10-25T16:41:55
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
363
iuml
package fr.kbertet.lattice.io { class ContextWriterFactory { -{static}HashMap<String, ContextWriter> writers +{static}ContextWriter register(ContextWriter writer, String extension) +{static}ContextWriter unregister(String extension) +{static}ContextWriter get(String extension) } ContextWriterFactory o-- ContextWriter }
false
true
false
false
class
cdd7de3ea91fdf3e709d33dfb88c5716104e1345
6c369b570f222c894964989ee63b706c69e8174d
/docs/dev/rental_video/core_model.puml
72790b4d69e8c79d651752545840d3609a9b2af4
[]
no_license
k2works/etude_for_rails
f74eae1844a9430d3c81047203ffc5d384e995ed
e728291c99ad4e34f144deedc44617bb796ac275
refs/heads/master
2021-01-20T01:46:29.373716
2018-04-26T08:53:20
2018-04-26T08:53:20
89,328,180
0
0
null
2017-06-08T02:25:58
2017-04-25T07:00:29
HTML
UTF-8
PlantUML
false
false
800
puml
@startuml Movie "1"<-u- Rental Rental "*"<-l- "1"Customer Movie "*"-r->"1"Price Price <|-d- ChildrenPrice Price <|-d- RegularPrice Price <|-d- NewReleasePrice DefaultPrice <|-u- RegularPrice DefaultPrice <|-u- ChildrenPrice class Movie { - title charge(days_rented) frequent_renter_points(days_rented) } class Rental { - days_rented charge(days_rented) frequent_renter_points(days_rented) } class Customer { - name statement() html_statement() total_charge() total_frequent_renter_points() } interface Price<<protocol>> { charge(days_rented) } class NewReleasePrice { charge(days_rented) frequent_renter_points(days_rented) } class RegularPrice { charge(days_rented) } class ChildrenPrice { charge(days_rented) } class DefaultPrice<<module>> { frequent_renter_points(days_rented) } @enduml
false
true
false
false
class
c38246cb57d9c4ee9289051a6aab6e4ea2b0713d
7658a6afe423ee752a621096f3b142ad7133277d
/aws/Database-RDS.puml
4faffe657b74503cb95bb193d4248217e070baf8
[]
no_license
sky0621/try-plantuml
9bf1812c4ccd2c05a40a3253356f354efff92b9d
efb79c54685bfcc649da7840ed6cebb302c046ec
refs/heads/master
2020-04-22T13:38:33.556631
2019-10-02T15:13:27
2019-10-02T15:13:27
170,415,988
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,818
puml
@startuml !define AWSPUML https://raw.githubusercontent.com/milo-minderbinder/AWS-PlantUML/release/18-2-22/dist !includeurl AWSPUML/common.puml !includeurl AWSPUML/Database/AmazonRDS/AmazonRDS.puml !includeurl AWSPUML/Database/AmazonRDS/DBinstance/DBinstance.puml !includeurl AWSPUML/Database/AmazonRDS/MSSQLinstance/MSSQLinstance.puml !includeurl AWSPUML/Database/AmazonRDS/MSSQLinstancealternate/MSSQLinstancealternate.puml !includeurl AWSPUML/Database/AmazonRDS/MySQLDBinstance/MySQLDBinstance.puml !includeurl AWSPUML/Database/AmazonRDS/MySQLinstancealternate/MySQLinstancealternate.puml !includeurl AWSPUML/Database/AmazonRDS/OracleDBinstancealternate/OracleDBinstancealternate.puml !includeurl AWSPUML/Database/AmazonRDS/PIOP/PIOP.puml !includeurl AWSPUML/Database/AmazonRDS/PostgreSQLinstance/PostgreSQLinstance.puml !includeurl AWSPUML/Database/AmazonRDS/SQLmaster/SQLmaster.puml !includeurl AWSPUML/Database/AmazonRDS/SQLslave/SQLslave.puml !includeurl AWSPUML/Database/AmazonRDS/instancereadreplica/instancereadreplica.puml !includeurl AWSPUML/Database/AmazonRDS/instancestandby/instancestandby.puml !includeurl AWSPUML/Database/AmazonRDS/oracleDBinstance/oracleDBinstance.puml package "Database" { AMAZONRDS("AMAZONRDS") { DBINSTANCE("DBINSTANCE") MSSQLINSTANCE("MSSQLINSTANCE") MSSQLINSTANCEALTERNATE("MSSQLINSTANCEALTERNATE") MYSQLDBINSTANCE("MYSQLDBINSTANCE") MYSQLINSTANCEALTERNATE("MYSQLINSTANCEALTERNATE") ORACLEDBINSTANCEALTERNATE("ORACLEDBINSTANCEALTERNATE") PIOP("PIOP") POSTGRESQLINSTANCE("POSTGRESQLINSTANCE") SQLMASTER("SQLMASTER") SQLSLAVE("SQLSLAVE") INSTANCEREADREPLICA("INSTANCEREADREPLICA") INSTANCESTANDBY("INSTANCESTANDBY") ORACLEDBINSTANCE("ORACLEDBINSTANCE") } } @enduml
false
true
false
false
uml-unknown
7037751076c2f7792f7e99788972c5d880e0dff0
7ad14424dfa18563dc0aacfb1c7c800fe2839e3e
/butterfly/uml/uml.puml
66b7f7aeb0a582b506d5210a66a9252d85161bf8
[]
no_license
dstack-group/PoC
cf1e324bdf7637b1ddd55db434954a762f5402c2
0b7007538c49d3412668c57cf7d31c8a53ddafa7
refs/heads/master
2020-04-27T09:35:32.612254
2019-03-05T09:32:10
2019-03-05T09:32:10
174,221,343
0
0
null
null
null
null
UTF-8
PlantUML
false
false
368
puml
@startuml skinparam classAttributeIconSize 0 class WebhookHandler.Builder { -route : String -method : {GET, POST} -exceptionConsumer : Consumer<Exception> +setRoute() : WebhookHandler.Builder +create() : WebhookHandler } WebhookHandler <|-- ArrayList WebhookHandler : WebhookHandler() ArrayList : Object[] elementData ArrayList : size() @enduml
false
true
false
false
class
b02c0869649da59bc51e67bd5d377c581ab702a0
10e74372d9da3bfd37018d8f87c38c1e99aa2447
/blockcanary.puml
df5a4fc26d673734e9361e509bf8e522082832e1
[ "Apache-2.0" ]
permissive
TheFlower/blockcanary
2dedff8a6a9a6207fe1cac19e9c056f249485121
a61a6c634f64b81a0bbec7bf6a566d1d3fcb5863
refs/heads/master
2021-01-17T06:02:50.947542
2017-06-14T10:31:50
2017-06-14T10:31:50
50,321,810
1
0
null
2016-01-25T02:54:51
2016-01-25T02:54:50
Java
UTF-8
PlantUML
false
false
803
puml
@startuml participant DemoApplication participant BlockCanary participant BlockCanaryContext participant BlockCanaryCore DemoApplication -> BlockCanary : 1: install(Context, BlockCanaryContext) BlockCanary -> AppBlockCanaryContext : 2: new AppBlockCanaryContext() AppBlockCanaryContext -> BlockCanaryContext : 3: new BlockCanaryContext() BlockCanary -> BlockCanaryContext : 4: init(Context, BlockCanaryContext) BlockCanary -> BlockCanary : 5: get() BlockCanary -> BlockCanary : 6: new BlockCanary() BlockCanary -> BlockCanaryCore : 7: setIBlockCanaryContext(IBlockCanaryContext) BlockCanary -> BlockCanaryCore : 8: get() BlockCanaryCore -> BlockCanaryCore : 9: new BlockCanaryCore() BlockCanary -> BlockCanary : 10: initNotification() DemoApplication -> BlockCanary : 11: start() @enduml
false
true
false
false
sequence
14e576ba10dbcce86e1a386e84bc6a6b7a75b479
70b6b3086d64939b4bd08cf8aad93ac5283cf1ac
/uml-meta-model-extensions/scala.profile.operation.puml
7edf4e360bae1c37b1008b0d059b4bb7472efee1
[ "MIT" ]
permissive
tizuck/scala-uml-diagrams
4a9d35e54a0f6fb3ef753e46eb59e81d7c42a26b
c5c432132bff9df7ab60352f0e715583d9d51973
refs/heads/main
2023-03-01T02:44:15.288794
2021-02-03T22:26:55
2021-02-03T22:26:55
306,687,367
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,467
puml
@startuml package Scala <<profile>> { class Operation <<metaclass>> abstract class AccessModifierElement { isObjectPrivate : boolean isClassPrivate : boolean isQualifiedPrivate : boolean privateAccessQualid : String isObjectProtected : boolean isQualifiedProtected : boolean protectedAccessQualid : String } abstract class ModifierElement { isFinal : boolean isImplicit : boolean isInline : boolean isLazy : boolean isOpaque : boolean isOpen : boolean isOverride : boolean isSealed : boolean } class Def <<stereotype>> class Ctor <<stereotype>> { pos : Int [0..1] } class Annotated <<stereotype>> { annotations:String [1..*] } Operation <-- Def Operation <-- Annotated Operation <-- Ctor Def --|> ModifierElement Def --|> AccessModifierElement Ctor --|> AccessModifierElement } hide circle hide <<metaclass>> members hide methods hide Def members skinparam defaultFontName Source Code Pro skinparam ClassStereotypeFontColor #1b1f23 skinparam class { BackgroundColor White BorderColor #1b1f23 ArrowColor #1b1f23 FontColor #6f42c1 } skinparam note { BackgroundColor White BorderColor #1b1f23 ArrowColor #1b1f23 FontColor #d73a49 } skinparam stereotype { FontColor #d73a49 } @enduml
false
true
false
false
class
747f0261e1f6230c357aef3a25194cf855a111e5
9ed6ae246ef51a3bfca4d5265ccccf44ca3de222
/DiagramaSecuenciaReportarMenorExtraviado.puml
8ba76e7e09b18373aa51106dfab63a5ef466bff3
[]
no_license
hhg01/Alerta-Amber
1d8fb80d2a88b6779c036d1a056d0aa79447f12e
4a0a426ba0600d374523110208167c4366a2fa13
refs/heads/master
2021-05-12T01:33:24.941298
2018-02-07T16:55:32
2018-02-07T16:55:32
117,562,003
0
0
null
null
null
null
UTF-8
PlantUML
false
false
13,079
puml
@startuml title Diagrama de Secuencia "Reportar Menor Extraviado" Actor Usuario box "SmartCDMX" #ff4081 participant ModuloExtraviodeMenor end box box "Cloud appcelerator" #LightBlue participant apiExtravioDeMenor database DB participant apiCloudAppc end box participant apiC5 Actor Usuarios_de_SmartCDMX activate Usuario Usuario->ModuloExtraviodeMenor:Selecciona el Módulo "Extravío de Menor" activate ModuloExtraviodeMenor note left:El usuario ya esta \ndentro de la aplicación \nSmartCDMX ModuloExtraviodeMenor-->Usuario:Muestra formulario para ingresar datos del menor extraviado Usuario->ModuloExtraviodeMenor:Ingresa los datos requeridos para buscar al menor de edad y oprime "Enviar" note left:Datos a ingresar:\n\n*Fotografía(imagen)\n*Nombre(s)\n*Apellidos\n*Fecha de nacimiento\n*Fecha de los Hechos\n*Género\n*Nacionalidad\n*Cabello\n*Color de cabello\n*Color de ojos\n*estatura(cm)\n*peso(kg)\n*Señas particulares\n*Lugar de los Hechos\n*Descripción de los hechos\n\nInformación del denunciante:\n*Nombre completo\n*Parentesco\n*teléfono ModuloExtraviodeMenor->ModuloExtraviodeMenor:Validar los Datos \nIngresados activate ModuloExtraviodeMenor note left: Los datos obligatorios son:\nFotografía,Nombre(s),apellidos,fecha de nacimiento\nFecha de los hechos, género,señas particulares.\n\ny datos del denunciante: Nombre,apellido,teléfono group Datos Validos ModuloExtraviodeMenor->apiExtravioDeMenor:POST https://ac7ad0ddc76ca13d5af57c69f96c597f966cca9d.cloudapp-enterprise.appcelerator.com/api/reporteExtravioDeMenor deactivate ModuloExtraviodeMenor activate apiExtravioDeMenor apiExtravioDeMenor->apiExtravioDeMenor: Validar datos note right: verifica que los datos enviados correspondan al tipo de dato \ny que los campos obligatorios no vengan vacios respecto a \nla base de datos activate apiExtravioDeMenor apiExtravioDeMenor->DB:Insert(Fotografía,Nombre(s),Apellidos,Fecha de nacimiento,Fecha de los Hechos,Género,Nacionalidad,\nCabello,Color de cabello,Color de ojos,estatura(cm),peso(kg),Señas particulares,Lugar de los Hechos,\nDescripción de los hechos,Nombre_contacto,Parentesco_contacto,teléfono_contacto) activate DB alt Error en el Insert DB-->apiExtravioDeMenor:Error activate DB else Los datos enviados no corresponden con el tipo de la base de datos apiExtravioDeMenor-->ModuloExtraviodeMenor:Response({"code":400}) Usuario<--ModuloExtraviodeMenor:Muestra alert "Datos inválidos" note left:Contenido del alert \nTitulo: "Datos inválidos"\nMensaje: "Error al guardar los \ndatos, Verificalos porfavor"\nBotón: "Aceptar" Usuario->ModuloExtraviodeMenor:El usuario presiona el botón "Aceptar" del alert Usuario<--ModuloExtraviodeMenor:cierra el alert else Error con el Servidor apiExtravioDeMenor-->ModuloExtraviodeMenor:Response({"code":500}) note left:Al recibir el codigo 500 los datos \nse reenvían despues de 5 minutos ModuloExtraviodeMenor->ModuloExtraviodeMenor:reenvioDatos500() activate ModuloExtraviodeMenor ModuloExtraviodeMenor->apiExtravioDeMenor:POST https://ac7ad0ddc76ca13d5af57c69f96c597f966cca9d.cloudapp-enterprise.appcelerator.com/api/reporteExtravioDeMenor deactivate ModuloExtraviodeMenor apiExtravioDeMenor->DB:Insert(Fotografía,Nombre(s),Apellidos,Fecha de nacimiento,Fecha de los Hechos,Género,Nacionalidad,\nCabello,Color de cabello,Color de ojos,estatura(cm),peso(kg),Señas particulares,Lugar de los Hechos,\nDescripción de los hechos,Nombre_contacto,Parentesco_contacto,teléfono_contacto) else Tiempo de respuesta del Servidor agotado apiExtravioDeMenor-->ModuloExtraviodeMenor:Response({"code":504}) note left:Al recibir el codigo 504 los \ndatos se reenvían inmediatamente\n\n*Solo se intentara 2 veces de lo \ncontrario se tratara como error con el Servidor ModuloExtraviodeMenor->ModuloExtraviodeMenor:reenvioDatos504() activate ModuloExtraviodeMenor ModuloExtraviodeMenor->apiExtravioDeMenor:POST https://ac7ad0ddc76ca13d5af57c69f96c597f966cca9d.cloudapp-enterprise.appcelerator.com/api/reporteExtravioDeMenor deactivate ModuloExtraviodeMenor apiExtravioDeMenor->DB:Insert(Fotografía,Nombre(s),Apellidos,Fecha de nacimiento,Fecha de los Hechos,Género,Nacionalidad,\nCabello,Color de cabello,Color de ojos,estatura(cm),peso(kg),Señas particulares,Lugar de los Hechos,\nDescripción de los hechos,Nombre_contacto,Parentesco_contacto,teléfono_contacto) end DB-->apiExtravioDeMenor:Successfully deactivate DB deactivate DB apiExtravioDeMenor->apiCloudAppc: iniciarSesion() activate apiCloudAppc alt Error al Iniciar Sesión para enviar Push apiExtravioDeMenor<--apiCloudAppc: error activate apiCloudAppc apiExtravioDeMenor-->ModuloExtraviodeMenor:Response({"code":401}) note left:*Solo se intentara 1 veces de lo \ncontrario se mantiene el insert pero \nno se envia la push activate ModuloExtraviodeMenor ModuloExtraviodeMenor->apiCloudAppc: iniciarSesion() deactivate ModuloExtraviodeMenor end apiExtravioDeMenor<--apiCloudAppc: success deactivate apiCloudAppc deactivate apiCloudAppc apiExtravioDeMenor->apiExtravioDeMenor: enviarPushNotifications() note left:Como se envian las push se espeficica en otro\n diagrama de secuencia(diagramaSecuenciaEnvioPush) activate apiExtravioDeMenor apiExtravioDeMenor->Usuarios_de_SmartCDMX:Envio de Push Notifications activate Usuarios_de_SmartCDMX alt Error apiExtravioDeMenor<--Usuarios_de_SmartCDMX: Error activate Usuarios_de_SmartCDMX apiExtravioDeMenor-->ModuloExtraviodeMenor:Response({"code":500}) ModuloExtraviodeMenor->apiExtravioDeMenor:enviarPushNotifications() note left:*Solo se intentara 1 veces de lo \ncontrario se mantiene el insert pero \nno se envia la push apiExtravioDeMenor->Usuarios_de_SmartCDMX:Envio de Push Notifications end apiExtravioDeMenor<--Usuarios_de_SmartCDMX: Success deactivate apiExtravioDeMenor deactivate apiExtravioDeMenor apiExtravioDeMenor->apiC5:enviarDatosApiC5() note left:El envio de datos a C5 se realiza independiente \na lo que contesto tanto la api al ingresar datos a \nla base de datos y la respuesta de las push activate apiC5 alt Error con apiC5 apiC5-->apiExtravioDeMenor:Response({"code":500}) activate apiC5 apiExtravioDeMenor-->ModuloExtraviodeMenor:Response({"code":500}) note left:Al recibir el codigo 500 los datos \nse reenvían despues de 5 minutos activate ModuloExtraviodeMenor ModuloExtraviodeMenor->apiExtravioDeMenor:reenvioDatosC5() deactivate ModuloExtraviodeMenor apiExtravioDeMenor->apiC5:enviarDatosApiC5() end apiC5-->apiExtravioDeMenor:Response({"code":200}) note right:Los datos enviados son: \nFotografía(imagen),Nombre(s),Apellidos,Fecha de nacimiento\nFecha de los Hechos,Género,Nacionalidad,Cabello,Color de cabello\nColor de ojos,estatura(cm),peso(kg),Señas particulares,Lugar de los Hechos\nDescripción de los hechos\n\nInformación del denunciante:\nNombre completo,Parentesco,teléfono deactivate apiC5 deactivate apiC5 apiExtravioDeMenor-->ModuloExtraviodeMenor:Response({"code":200}) alt Tipos de Mensaje respecto a las Respuestas de las apis else Error del Servidor, sin Push Notifications, con envío a C5 Usuario<--ModuloExtraviodeMenor:Muestra alert "Procesando Datos" note left:Contenido del alert \nTitulo: "Procesando Datos"\nMensaje: "Fue Notificada la Policia \ny se esta procesando para avisar \na los Usuarios de SmartCDMX"\nBotón: "Aceptar" Usuario->ModuloExtraviodeMenor:El usuario presiona el botón "Aceptar" del alert Usuario<--ModuloExtraviodeMenor:cierra el alert else Insert correcto, sin Push Notifications, con envío a C5 Usuario<--ModuloExtraviodeMenor:Muestra alert "Datos Procesados" note left:Contenido del alert \nTitulo: "Datos Procesados"\nMensaje: "Fue Notificada la Policia \ny tu alerta esta guardada en SmartCDMX \npara que sus Usuarios la puedan ver"\nBotón: "Aceptar" Usuario->ModuloExtraviodeMenor:El usuario presiona el botón "Aceptar" del alert Usuario<--ModuloExtraviodeMenor:cierra el alert else Insert correcto, con Push Notifications, sin envío a C5 Usuario<--ModuloExtraviodeMenor:Muestra alert "Datos Guardados" note left:Contenido del alert \nTitulo: "Datos Guardados"\nMensaje: "Los Usuarios de SmartCDMX fueron Notificados \ny te estan ayudando, aunque ocurrio un error al contactar \na la policia"\nBotónes: "Reintentar, Cancelar" group event: Botón Reintentar Usuario->ModuloExtraviodeMenor:Oprime el botón "Reintentar" ModuloExtraviodeMenor->apiExtravioDeMenor:reenvioDatosC5() else Botón Cancelar Usuario->ModuloExtraviodeMenor:Oprime el botón "Reintentar" ModuloExtraviodeMenor-->Usuario:Cierra el alert end else Insert correcto, sin Push Notifications, sin envío a C5 Usuario<--ModuloExtraviodeMenor:Muestra alert "Datos Guardados" note left:Contenido del alert \nTitulo: "Datos Guardados"\nMensaje: "Tu alerta esta guardada en SmartCDMX \npara que sus Usuarios la puedan ver, \naunque ocurrio un error al contactar a la policia"\nBotónes: "Reintentar, Cancelar" group event: Botón Reintentar Usuario->ModuloExtraviodeMenor:Oprime el botón "Reintentar" ModuloExtraviodeMenor->apiExtravioDeMenor:reenvioDatosC5() else Botón Cancelar Usuario->ModuloExtraviodeMenor:Oprime el botón "Reintentar" ModuloExtraviodeMenor-->Usuario:Cierra el alert end else Error del Servidor, sin Push Notifications, sin envío a C5 ModuloExtraviodeMenor-->Usuario:Muestra un alert de Error en el envío de Datos note left:Contenido del alert \nTitulo: "Error"\nMensaje: "Existen Errores de RED, Ya sea \ncon tu dispositivo o los servicios"\nBotónes: "Reintentar, Cancelar" group event: Botón Reintentar Usuario->ModuloExtraviodeMenor:Oprime el botón "Reintentar" ModuloExtraviodeMenor->apiExtravioDeMenor:POST https://ac7ad0ddc76ca13d5af57c69f96c597f966cca9d.cloudapp-enterprise.appcelerator.com/api/reporteExtravioDeMenor else Botón Cancelar Usuario->ModuloExtraviodeMenor:Oprime el botón "Reintentar" ModuloExtraviodeMenor-->Usuario:Cierra el alert end end deactivate apiExtravioDeMenor ModuloExtraviodeMenor-->Usuario:Muestra un alert de confirmación en el envío de Datos note left:Contenido del alert \nTitulo: "Datos Enviados"\nMensaje: "Tu Alerta fue enviada con Exito a la\nPolicia y los Usuarios de SmartCDMX"\nBotón: "Aceptar" Usuario->ModuloExtraviodeMenor:Oprime el botón 'Aceptar' del Alert ModuloExtraviodeMenor-->Usuario:Cierra el alert else Datos invàlidos Usuario<--ModuloExtraviodeMenor:Muestra alert "Datos inválidos" note left:Contenido del alert \nTitulo: "Datos inválidos"\nMensaje: "Corrige los siguientes datos:"\n*Mostrara el nombre de los campos a corregir\nBotón: "Aceptar" Usuario->ModuloExtraviodeMenor:El usuario presiona el botón "Aceptar" del alert Usuario<--ModuloExtraviodeMenor:cierra el alert note left: El formulario mantiene los datos correctos\n que ingreso anteriormente y se borrarán\n los datos incorrectos end alt Lista de Alertas Usuario->ModuloExtraviodeMenor:Oprime el botón "Lista de Alertas" ModuloExtraviodeMenor-->Usuario:Muestra la Ventana con la Lista de Desaparecidos Usuario->ModuloExtraviodeMenor:Selecciona y Oprime el Nombre de algun Desaparecido note right:La Ventana "Información Completa"\nmuestra toda la Información del Desaparecido ModuloExtraviodeMenor-->Usuario:Muestra la Ventana "Información Completa" group event: Botón Reintentar Usuario->ModuloExtraviodeMenor:Oprime el botón "Enviar Notificación" ModuloExtraviodeMenor-->Usuario:Muestra la Ventana "Aportacion de Información" Usuario->ModuloExtraviodeMenor:Ingresa alguna Información de los Hechos y oprime enviar ModuloExtraviodeMenor->apiExtravioDeMenor:PUT https://ac7ad0ddc76ca13d5af57c69f96c597f966cca9d.cloudapp-enterprise.appcelerator.com/api/reporteExtravioDeMenor activate apiExtravioDeMenor note right:Los Datos a actualizar son:\n*Descripción de los Hechos\n*Lugar de los Hechos\nEsta ultima como referencia del\nultimo paradero del desaparecido apiExtravioDeMenor->DB:Update(Lugar de los Hechos, Descripción de los hechos) activate DB note left:Todo el proceso del Update es similar al POST,\ndebe actualizar la base de datos, enviar las Push\nNotifications y avisar a C5\n\nSi existen errores se debe resolver igual que en\nel POST anterior junto con sus posibles mensajes deactivate DB end end @enduml
false
true
true
false
usecase
3c9c6e86ab20128935d9549c390f4e79b00174e3
f843c9d5922c2ef92cc3ca50f20f44184ed27ef8
/src/main/java/Memento/TutotrialPoint/README.puml
a7b373d7e4d40c3c076e33fec6068bffbb0f83da
[]
no_license
yvanross/LOG121-GOF-exemples
c80a4d1b29f0b953e4666e100a82d4fde1923bea
7cff56d019b40901ed54b85a62d69317cf61da59
refs/heads/master
2023-05-04T07:39:48.742354
2021-05-21T13:43:50
2021-05-21T13:43:50
261,219,115
2
25
null
2021-01-25T22:44:14
2020-05-04T15:11:44
Java
UTF-8
PlantUML
false
false
361
puml
@startuml Diagramme de classe class Memento { getState(): String } class Originator { setState(String state): void getState(): State saveStatToMememto(): Memento getStateFromMemento(Memento memento): void } class CareTaker{ add(Memento memento): void get(Int index): Memento } CareTaker *-left-> "*" Memento : own Originator -> Memento @enduml
false
true
false
false
sequence
c639aa44bda7ab7e583018e7900d6ed5b5061a48
644b7bb773b84596a2de4d31a0603284d9562e56
/redux/interfaces/saga.iuml
69dec90f9a9112772f48996db07f2d1aac6ab5f0
[]
no_license
M9k/Marvin-Uml
e62d17245cf493d53f0b80f633a47be8ec44569e
0fe9bc36f947535ae4397181ccf8c85291244a87
refs/heads/master
2021-04-15T17:44:22.461549
2018-05-10T07:52:19
2018-05-10T07:52:19
126,618,685
0
0
null
null
null
null
UTF-8
PlantUML
false
false
206
iuml
interface Saga{ + void handler() -- purpouse -- classes inherited by this interface achieve asyncronus connection with external apis and notify the retrived data to the app via ducks' actions }
false
true
false
false
class
999a369cabc4a59fab2fdd0cb8ba8bcaeef65262
c3287e91ce0ebce396cd3966de3d2f7d90131c20
/Plantuml/DAL/Exceptions/DALRepositoryCommandException.puml
56466fa578142d972cb5e3246684ee4b28b11322
[]
no_license
kretmatt/SWE2-Tourplanner
497ec2e888112bd3d67a0f2b97e7c1e8e0348371
f064500ae5b913b00671f358a586011affcdaf00
refs/heads/main
2023-05-12T11:48:29.605417
2021-06-06T21:53:11
2021-06-06T21:53:11
341,115,114
0
0
null
null
null
null
UTF-8
PlantUML
false
false
262
puml
@startuml class DALRepositoryCommandException { + DALRepositoryCommandException() + DALRepositoryCommandException(message:string) + DALRepositoryCommandException(message:string, inner:Exception) } Exception <|-- DALRepositoryCommandException @enduml
false
true
false
false
class