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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b11e871c27414bea8acbfb98ad981fa54770e609 | 3ca9e58bcb43c7a06b42770e03482244b09c1df8 | /uml/tuya/os/state/StatSdk.puml | 4e7ba89f24492c3f60427e6b9123b60013b033b2 | [
"Apache-2.0"
] | permissive | yufns/uml | 3abca774ef5787d27d09bb3fe0981c86df0e60c3 | 0173ce1a8138b6e88ed39f08c9c42b22a38c880a | refs/heads/master | 2021-11-10T17:50:18.612839 | 2021-10-25T06:56:02 | 2021-10-25T06:56:02 | 145,532,139 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 60 | puml | @startuml
class TuyaStatSdk
class AnalysisManager
@enduml | false | true | false | false | class |
13805884a817f270d7e669de7f2c3b8e06f0d143 | 9d73eeb275f99bf279eb3a54574b54e67d25895f | /src/main/java/ex42/ex42.puml | 2df0924adf8e1d59e0effbc54722685620e07f8f | [] | no_license | rodriguezA3/rodriguez-cop3330-assignment3 | 336b4e50331393958f296f84200ae4bf54139fb0 | 3bab60c0fb0b322fc900842f2ab1dd7d21740033 | refs/heads/master | 2023-08-25T12:54:31.360964 | 2021-10-12T03:53:51 | 2021-10-12T03:53:51 | 416,174,744 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 581 | puml | @startuml
'https://plantuml.com/sequence-diagram
class paresData
{
-list:ArrayList<String>
-arr: String[]
+main()
+array=createParseData()object
+print=PrintAnswer()object
}
class createParseData
{
+get_Arraylist():ArrayList<String>
+createArray(ArrayList<String>):String[]
}
class printAnswer
{
+printArray(String[])
}
paresData "use createParseData to create an arrayList, and String array from the input file"---createParseData
paresData "use printAnswer to split the array into first, last names, salru and print them"---printAnswer
@enduml | false | true | false | false | class |
f2ed5444a6dd785aa62721b606ceac5b0e2d598a | f0d77e8c9412ba90cf1f11f892a09a2ed17aa5c0 | /uml/toDo_UML.puml | 06983a2c25caa05855721a42a76465fd1c2a9d6d | [] | no_license | C-Gagne/gagne-cop3330-assignment4 | a084523f3f2d2f3922adbce152568e29886a4167 | 540d0e9aef7a25028fa47a60e8efdc2171e810bd | refs/heads/master | 2023-06-08T16:17:44.919068 | 2021-07-05T01:43:24 | 2021-07-05T01:43:24 | 382,984,815 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,990 | puml | @startuml
'https://plantuml.com/class-diagram
class ToDo {
main()
start()
}
class ToDo_Controller
{
saveListOfToDo(ActionEvent clickSaveList)
loadListOfToDO(ActionEvent clickLoadList)
createNewList(ActionEvent clickCreateNewList)
deleteList(ActionEvent clickDeleteList)
changeTitleCellEvent(CellEditEvent editedCell)
goToList(ActionEvent clickGoToList)
}
class ToDoList_Controller
{
initialize()
changeDescriptionCellEvent(CellEditEvent editedCell)
changeDueDateCellEvent(CellEditEvent editedCell)
saveToDoFile(ActionEvent clickedSaveFile)
loadToDoFile(ActionEvent clickedLoadFile)
addItemToList(ActionEvent clickedAddItem)
removeItemFromList(ActionEvent clickedRemoveItem)
backToListOfToDo(ActionEvent clickedBackButton)
}
class UserInput
{
getUserInput()
return userFileName
}
class SaveFile
{
public void writeSingleToDoExcel(String userFileName)
public void writeListToDoExcel(String userFileName)
}
class LoadFile
{
writeSingleToDoExcel(String userFileName)
writeListToDoExcel(String userFileName)
}
class List_of_Entries
{
Map<String, List<Entry>> listOfEntries;
String title;
setListEntries(Map<String, List<Entry>> list_Entries)
Map<String, List<Entry>> getEntries()
return listOfEntries;
}
class Entry
{
SimpleBooleanProperty status;
LocalDate dueDate;
SimpleStringProperty description;
}
class DatePickerCell
{
DatePickerCell(ObservableList<List_of_Entries> dueDateEntry)
updateDueDate(Date dueDate, boolean empty)
createDatePicker()
}
javaFX.Application <|-- ToDo
ToDo <|-- ToDo_Controller
ToDo_Controller <-> ToDoList_Controller
ToDo_Controller <-- SaveFile
SaveFile <-- UserInput
ToDo_Controller <-- LoadFile
LoadFile <-- UserInput
ToDo_Controller <-- List_of_Entries
List_of_Entries *-- Entry
ToDoList_Controller <-- SaveFile
ToDoList_Controller <-- LoadFile
DatePickerCell --|> ToDoList_Controller
@enduml | false | true | false | false | class |
eadd5f00a5ecd5583fbf27ca54d77d8e61ba2479 | f9c341a0793f4aa76bd53a9a5e3191f0c17eb4e7 | /backend/src/main/java/com/engineer/lrogozinski/dto/dto.plantuml | ceb5ee52caac710a7b50b9b578fbc03d3df0dc4f | [] | no_license | LukaszRogozinski/SkillParty | 930f16e59bddb0280faa61ac4b76cc59d0a677e0 | a917e77bd000431faa06028b8fd5dd9fb706eb90 | refs/heads/master | 2020-03-30T12:42:46.963493 | 2019-01-27T19:03:01 | 2019-01-27T19:03:01 | 151,236,325 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,809 | plantuml | @startuml
title __DTO's Class Diagram__\n
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class AccountDto {
- id : Integer
- username : String
- password : String
+ AccountDto()
+ getId()
+ getUsername()
+ getPassword()
+ getUserdata()
+ setId()
+ setUsername()
+ setPassword()
+ setUserdata()
+ equals()
+ hashCode()
# canEqual()
+ toString()
+ AccountDto()
{static} + builder()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class AccountDtoBuilder {
- id : Integer
- username : String
- password : String
~ AccountDtoBuilder()
+ id()
+ username()
+ password()
+ userdata()
+ build()
+ toString()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class EventCategoryDto {
- name : String
+ EventCategoryDto()
+ getName()
+ setName()
+ equals()
+ hashCode()
# canEqual()
+ toString()
+ EventCategoryDto()
{static} + builder()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class EventCategoryDtoBuilder {
- name : String
~ EventCategoryDtoBuilder()
+ name()
+ build()
+ toString()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class EventDto {
- id : Integer
- name : String
- description : String
- avaliableQuantity : Integer
- price : Integer
- averageVote : Double
- token : String
- eventCategory : String
- imageUrl : String
+ EventDto()
+ getId()
+ getName()
+ getDescription()
+ getAvaliableQuantity()
+ getPrice()
+ getAverageVote()
+ getToken()
+ getEventCategory()
+ getImageUrl()
+ setId()
+ setName()
+ setDescription()
+ setAvaliableQuantity()
+ setPrice()
+ setAverageVote()
+ setToken()
+ setEventCategory()
+ setImageUrl()
+ equals()
+ hashCode()
# canEqual()
+ toString()
+ EventDto()
{static} + builder()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class EventDtoBuilder {
- id : Integer
- name : String
- description : String
- avaliableQuantity : Integer
- price : Integer
- averageVote : Double
- token : String
- eventCategory : String
- imageUrl : String
~ EventDtoBuilder()
+ id()
+ name()
+ description()
+ avaliableQuantity()
+ price()
+ averageVote()
+ token()
+ eventCategory()
+ imageUrl()
+ build()
+ toString()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class UserDataDto {
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class UserInfo {
- username : String
- name : String
- surname : String
- email : String
- city : String
- street : String
- houseNo : Integer
- flatNo : Integer
- averageVote : Double
- favouriteCategories : List<String>
+ UserInfo()
+ getUsername()
+ getName()
+ getSurname()
+ getEmail()
+ getCity()
+ getStreet()
+ getHouseNo()
+ getFlatNo()
+ getAverageVote()
+ getFavouriteCategories()
+ setUsername()
+ setName()
+ setSurname()
+ setEmail()
+ setCity()
+ setStreet()
+ setHouseNo()
+ setFlatNo()
+ setAverageVote()
+ setFavouriteCategories()
+ equals()
+ hashCode()
# canEqual()
+ toString()
+ UserInfo()
{static} + builder()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.dto {
class UserInfoBuilder {
- username : String
- name : String
- surname : String
- email : String
- city : String
- street : String
- houseNo : Integer
- flatNo : Integer
- averageVote : Double
- favouriteCategories : List<String>
~ UserInfoBuilder()
+ username()
+ name()
+ surname()
+ email()
+ city()
+ street()
+ houseNo()
+ flatNo()
+ averageVote()
+ favouriteCategories()
+ build()
+ toString()
}
}
}
AccountDto o-- UserData : userdata
AccountDto +-down- AccountDtoBuilder
AccountDtoBuilder o-- UserData : userdata
EventCategoryDto +-down- EventCategoryDtoBuilder
EventDto +-down- EventDtoBuilder
UserInfo +-down- UserInfoBuilder
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 |
07cd5f34e2111f409a9793b689c050e3329f0181 | dc01dbc16556236214d634f4bbbd24b31be27902 | /UML/Robustheitsdiagramm.plantuml | 2cfdb234fc199ac02d1784b04b29023793b97ee3 | [] | no_license | c-odenk/DigitalesParkhaus | 6fdd725fa0a86c852b0c2ba697e8d3be505837af | 324261ecb8ee0a6f505daaa368511172c675f6c0 | refs/heads/master | 2022-12-27T10:10:53.457045 | 2020-10-08T21:32:13 | 2020-10-08T21:32:13 | 299,742,183 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 748 | plantuml |
@startuml
frame "rd Parkhaussystem" {
actor Kunde as K
actor Manager as M
rectangle Parkhaus {
boundary EinfahrtMaske as EM
boundary AusfahrtMaske as AM
control EinweiserCtrl as EC
control BezahlungCtrl as BC
entity Einweiser as E
entity Bezahlung as B
EC .> E : <<use>>
EM <.d. EC : <<weise ein>>
AM <.d. EC : <<fahre raus>>
AM <. BC : <<use>>
BC .> B : <<berechne>>
}
rectangle Dashboard {
boundary StatMaske as SM
boundary AenderungsMaske as CM
control AenderungCtrl as CC
control StatCtrl as SC
entity Aenderung as C
entity Stats as S
SM <. SC : <<use>>
SC .> S : <<zeige an>>
CM <.d. CC : <<use>>
CC .l.> C : <<aendere>>
}
K --> EM
K --> AM
M --> SM
M --> CM
}
@enduml | false | true | false | false | sequence |
8a23c2760cf82382690502f6cec64da9d2fe1a83 | 8e864bbeb79413d5688e5f17f0f2caec5ce27a34 | /system-design.puml | 34413047d7689c8c2d0658f178883b1ebcef5db4 | [] | no_license | rezarahman795/kotlin-restful | 8461469dc7415b5422a2c42e7aeea6af13a12cb0 | 1aa47732ea5eaf5e4b9919dc06f8bfb59f1b042a | refs/heads/master | 2023-02-04T07:32:44.976065 | 2020-12-22T17:24:44 | 2020-12-22T17:24:44 | 323,690,611 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 318 | puml | @startuml
actor "Users" as user
node "Kotlin Restful API"{
component "Controller" as controller
component "Service" as service
component "Repository" as repository
}
database "PostgresSQL" as database
user <-->controller
controller <--> service
service <-->repository
repository <-->database
@enduml | false | true | false | false | sequence |
b236d8eea709b2dd17d62051ed6bc993b14aa10e | 8807241e723a5c552f70817336989da0f15efe37 | /src/main/java/oop/example/Ex43/Ex43_UML.puml | aab0351ac605290b088c006882f8210a3867243e | [] | no_license | Kmullens1/mullens-cop3330-assignment3 | 2c1c1d612edb0b7839bc426d08cf74441a41900a | 5bb28dbc4c1e0861ee4d7f3db3981122c8c50005 | refs/heads/master | 2023-08-04T09:01:52.611560 | 2021-09-20T04:17:45 | 2021-09-20T04:17:45 | 377,706,754 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 609 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Ex43{
- String siteName
- String author
- String responseJava
- String responseCSS
+ main()
+ readUserInput()
}
class CreateHTMLFile{
- String siteName
- String author
+ htmlFile()
}
class CreateJavaSFolder{
- String responseJava
- String siteName
+ checkUserResponse()
+ javaScriptFolder()
}
class CreateCSSFolder{
- String responseCSS
- String siteName
+ checkUserResponse()
+ cssFolder()
}
Ex43 -- CreateJavaSFolder
Ex43 -- CreateCSSFolder
Ex43 -- CreateHTMLFile
@enduml | false | true | false | false | class |
af334716f6f4e3d767defb07042f32f28bb0d6da | 844665d08d1be5dacc41d8495725d881c68dba71 | /Conferencias/Conferencia 5_ Patrones de Diseño en la Programación Modular/MultiModuleApp/null_object/src/cu/datys/null_object/spi/class-diagram.puml | 917f3f894a3a50a2d4bbfc8a18f7106ceb5da5d0 | [
"MIT"
] | permissive | alexescalonafernandez/curso-patrones-diseno | ec1cf0a993707d78c294208e04604a3a0ffd164e | f586e27791e1281087df6cc137da87f407179e65 | refs/heads/master | 2021-01-25T13:35:26.659206 | 2018-03-02T20:18:06 | 2018-03-02T20:18:06 | 123,588,331 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 806 | puml | @startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam packageFontSize 18
skinparam classStereotypeFontSize 18
skinparam titleFontColor #5cb85c
'skinparam titleFontColor #FFFFFF
'skinparam titleFontSize 32
Title Module null_object: cu.datys.null_object.spi package
interface NullObject {
+ default boolean isNull()
}
interface NullObjectFactory {
+ boolean accept(Class nullable)
+ NullObject create()
}
interface NullObjectFactoryProvider #FEFF99 {
+ NullObjectFactory getFactory(Class nullable)
}
NullObjectFactoryProvider --> NullObjectFactory: provides
NullObjectFactory --> NullObject: create
note right of NullObject::is
return false;
end note
@enduml | false | true | false | false | sequence |
7e17bc02e4889babbe60b89db029d60c9f8dec74 | 7847fd2d7b5a7a21a2f83416befa95e32d482347 | /docs/architecture/system-high-level.puml | 2e3a62a9ed79305978cf301f8351d879abb05225 | [
"Apache-2.0"
] | permissive | cyprianno/mailblackbox | 9ea5956ca13395445726b8f37922b3a7d14f215e | 2a23afd227b8b4662b5498dc88193b6958ed5035 | refs/heads/master | 2020-04-06T04:47:09.698014 | 2017-04-01T00:31:16 | 2017-04-01T00:31:16 | 82,966,008 | 0 | 0 | null | 2017-03-02T00:56:44 | 2017-02-23T19:59:20 | null | UTF-8 | PlantUML | false | false | 609 | puml | @startuml
package "System Configuration" {
[Configuration server]
}
database "MySQL" {
}
package "Entry Point" {
[NGINX]
}
package "Base server" {
[NGINX] --> [Mailbox app]
[Mailbox app]
[Mailbox app] --> MySQL
[Mailbox app] <--> Queue
[Mailbox app] --> [Configuration server]
}
cloud "Queue" {
[ActiveMQ]
}
node "Workers" {
Queue <--> [Mailbox worker] : 1..*
[Mailbox worker] --> [postfix]
[Mailbox worker] --> [Configuration server]
}
Incomming_HTTP_HTTPS - [NGINX]
Outgoing_HTTP_HTTPS <--- [Mailbox app]
[Mailbox worker] <--- IMAP
[postfix] -> SMTP
@enduml | false | true | false | false | sequence |
0190a1b0e7d8ae302e84bf2b072428c1b36eb0dc | bdd433c3af2f10384f0a4fb06a6354b51a70750e | /plantuml/Sequence Diagrams/Design/IndledendeSekvensDiagram.puml | dd5fbb7c783d4329ca1ea5a3d7883ac9c839d740 | [] | no_license | I4PRJ4/I4PRJ4-plantuml | d6188b60011e5a5f6f3cf7853393cba43996dfbf | 2b528f0a911917d5ee61a6d0051d46ea59282c5a | refs/heads/master | 2023-05-14T13:43:29.403199 | 2021-06-03T10:33:59 | 2021-06-03T10:33:59 | 348,710,373 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,268 | puml | @startuml Indledende sekvens diagram
mainframe **sd** Indledende Sekvens Diagram
hide footbox
actor Studerende as stud
boundary ":DegreesViewIndex" as degreesindex
control ":DegreesController" as degreescont
boundary ":CoursesViewIndex" as coursesindex
control ":CoursesController" as coursescont
control ":TipsController" as tipscont
boundary ":TipsViewIndex" as tipsindex
boundary ":DegreeRepository" as degreesrepo
boundary ":CourseRepository" as coursesrepo
boundary ":TipsRepository" as tipsrepo
database ":DatabaseContext" as db
/'entity TipsModel as tipsmodel'/
stud -> degreescont: http GET Index()
Activate degreescont
degreescont -> degreesrepo: GetDegrees()
Activate degreesrepo
degreesrepo -> db++: LINQ Query
db --> degreesrepo--: List<Degree>
degreesrepo --> degreescont: List<Degree>
Deactivate degreesrepo
degreescont -> degreesindex: View(List<Degree>)
activate degreesindex
degreesindex --> degreescont: DegreeView
deactivate degreesindex
degreescont --> stud: http Response
Deactivate degreescont
stud -> degreescont: http POST Redirect(int, string)
Activate degreescont
degreescont -> coursescont: Index(int)
Deactivate degreescont
Activate coursescont
coursescont -> coursesrepo: FindCourses(int)
Activate coursesrepo
coursesrepo -> db++: LINQ Query
db --> coursesrepo--: List<Course>
coursesrepo --> coursescont: List<Course>
Deactivate coursesrepo
coursescont -> coursesindex: View(List<Course>)
activate coursesindex
coursesindex --> coursescont: CourseView
deactivate coursesindex
coursescont --> stud: http Response
Deactivate coursescont
Deactivate coursescont
stud -> coursescont: http POST Redirect(int, string)
Activate coursescont
coursescont -> tipscont: Index(int)
Deactivate coursescont
Activate tipscont
tipscont -> tipsrepo: GetTips(int, string)
Activate tipsrepo
tipsrepo -> db++ : LINQ Query
db --> tipsrepo--: List<Tip>
tipsrepo --> tipscont: List<Tip>
Deactivate tipsrepo
tipscont -> tipsindex: View(List<Tip>)
activate tipsindex
tipsindex --> tipscont: TipView
deactivate tipsindex
tipscont --> stud: http Response
Deactivate tipscont
Deactivate tipscont
@enduml | false | true | false | false | usecase |
ab77f7cbc308fddff614c8822f00726cab152e5d | 4e22d261d7dcf5fe2731d77ba3cfb47c5568977c | /Documentation/Source/Breakdown/Engine/TempestEngine/Input/GamepadInputAdapter-Class.iuml | e063cbb6ff3815529b141cf26d6ba9efc0dcdb02 | [] | 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 | 107 | iuml | namespace InputSystem {
class GamepadInputAdapter {
+UpdateState()
}
}
| false | true | false | false | class |
a4c24f7d2178d590be985ebf32447ad7a050138b | 6e43c89d67e8f3edcfea7d99aa87b09e47680b80 | /Homework2/Homework2.puml | 5d9c90a7bf4bf9790626de0d3389c23a7bedf7a7 | [] | no_license | SteveTsao/DesignPattern | 9fe82d94b6550e0c8501f7eff28fbf13aa57bbfe | 4879a9b9102877143d0e45bc01500a04b1e032d1 | refs/heads/master | 2021-09-12T23:20:23.307109 | 2018-04-22T15:20:17 | 2018-04-22T15:20:17 | 114,538,275 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 359 | puml | @startuml
class Clock {
-onTick
}
abstract class AbstractProxy {
+publish
}
class ProxyObservable {
+publish
+subscribe
+unsubscribe
}
abstract class AbstractSubscriber {
+notify
}
class DigitalClock {
-right
+update
}
Clock .> AbstractProxy
AbstractProxy <|-- ProxyObservable
AbstractSubscriber <|-- DigitalClock
@enduml | false | true | false | false | class |
e7c5b216bdf67d606dd6b19da8dc5c7f6d771c37 | d99806bb17e4a22325f775539981c6b7799b9d16 | /docs/red/1161292/sp2/domainModel.puml | f97cbe3a867bd4570efb8064c0177c7129dac2b3 | [] | no_license | Fuel4us/GWTFinalProject | 3d0e1194f142cfcbdfc3d24f37a7537ff3a30dfb | b6c2f6add1687ca7800a9ec243edbe067ca6090c | refs/heads/master | 2020-03-21T19:47:13.534718 | 2018-06-28T05:33:43 | 2018-06-28T05:33:43 | 138,969,901 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 213 | puml | @startuml
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
hide empty methods
class User << (E,yellow) >> {
}
@enduml | false | true | false | false | class |
36aa189b097e4c474a5ffb90cd39562bae2429cc | aa9620300bc8488f53437e0f5faab824225aab73 | /reweighting_2017/grid_search_cv_nmf_random_forest_regressor.plantuml | 452ed54d3d3096630897946ebdfa3daf38b6e609 | [
"BSD-3-Clause"
] | permissive | atavory/atavory.github.io | 94daa1b05141ff5c6e9ebfb5055fc87cfd333ca3 | 43d98b45150411d83ab75a92a6d4ab9226927ef0 | refs/heads/master | 2021-01-19T06:15:43.197765 | 2019-11-18T10:58:38 | 2019-11-18T10:58:38 | 100,634,235 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 278 | plantuml | @startuml
skinparam monochrome true
skinparam shadowing false
left to right direction
skinparam rectangle {
BorderColor grey
}
rectangle X
rectangle GridSearchCV {
rectangle NMF
rectangle RandomForestRegressor
}
X --> NMF
NMF --> RandomForestRegressor
@enduml
| false | true | false | false | uml-unknown |
a85f827bc38e640f8fc8cd6284a7c7e12058aa3a | 19de0597a5790bab6ff021899b4479506ae0829a | /uml/skeleton_seq_diagrams/build from recipe/build_robot.plantuml | 3ad20253313cde1d98a84a04afba09db49a307be | [] | no_license | bbucsy/projlab_holy_oil | e703a3ac579555a6c62f91051d7fbb5572c88d30 | a1c4e9b953e7f7c22dabbd935abb461f9cacd409 | refs/heads/master | 2023-05-02T06:22:36.234536 | 2021-05-09T09:46:04 | 2021-05-09T09:46:04 | 342,634,410 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,412 | plantuml | @startuml
skinparam SequenceLifeLineBackgroundColor LightYellow
title "Settler build robot"
actor User as US
participant "s: Settler" as settler
participant "onAsteroid: Asteroid" as onAsteroid
participant ": RobotRecipe" as robotRecipe
US -> settler ++ : CraftRobot()
settler -> robotRecipe ++ : Craft(s, onAsteroid)
participant "coal: Coal" as coal
robotRecipe -> coal ** : ctor()
participant "uranium: Uranium" as uranium
robotRecipe -> uranium ** : ctor()
participant "iron: Iron" as iron
robotRecipe -> iron ** : ctor()
participant "bill: BillOfMaterial" as bill
robotRecipe -> bill ** : ctor(iron, uranium, coal)
actor Tester as TESTER
robotRecipe -> TESTER ++ : What does this settler have? <<Input>
TESTER --> robotRecipe -- : storage
participant "storage: PlayerStorage" as storage
robotRecipe -> storage ++ : HasEnoughOf(bill)
storage --> robotRecipe -- : hasEnough
alt hasEnough
robotRecipe -> storage ++ : RemoveBill(bill)
storage --> robotRecipe --
participant "r: Robot" as robot
robotRecipe -> robot ** : ctor()
robotRecipe -> onAsteroid ++ : AddCrewmate(robot)
onAsteroid --> robotRecipe --
robotRecipe -> robot ++ : Move(onAsteroid)
robot --> robotRecipe --
participant ": AIController" as controller
robotRecipe -> controller ++ : AddRobot(robot)
controller --> robotRecipe --
end
robotRecipe --> settler --
settler --> US --
@enduml | false | true | false | false | usecase |
bbc2ee9a435f75d9b01cd53ccbe8889eeb231f62 | 694fd70b693c9670161b2492ece407123bf11cad | /plantuml/spring/practice-jpa-association-mapping-12.plantuml | 86f744bce5970eb0d94dceae8a899850c72017e9 | [
"CC-BY-3.0-US",
"BSD-3-Clause",
"WTFPL",
"GPL-1.0-or-later",
"MIT",
"OFL-1.1"
] | permissive | windowforsun/blog | 4a341a9780b8454a9449c177f189ca304569031b | b0bce013f060f04a42dfa7ef385dbeea1644fdab | refs/heads/master | 2023-09-04T03:17:39.674741 | 2023-08-21T14:39:37 | 2023-08-21T14:39:37 | 170,632,539 | 0 | 1 | MIT | 2023-09-05T17:48:27 | 2019-02-14T05:26:51 | HTML | UTF-8 | PlantUML | false | false | 978 | plantuml | @startuml
!define table(x) class x << (T,#FFAAAA) >>
!define primary_key(x) <b><color:#b8861b><&key></color> x</b>
!define foreign_key(x) <color:#aaaaaa><&key></color> x
hide methods
hide stereotypes
'skinparam linetype ortho
'skinparam linetype polyline
entity (Member) {
primary_key(id)
name
}
entity (Team) {
primary_key(id)
name
teamMembers
}
entity (TeamMember) {
primary_key(id)
team
member
timestamp
}
Team "1" <-down- "*" TeamMember
Team "1" ..> "*" TeamMember
Member "1" <-up- "*" TeamMember
table(MEMBER) {
primary_key(ID) <<PK>>
NAME
}
table(TEAM) {
primary_key(ID) <<PK>>
NAME
}
table(TEAM_MEMBER) {
primary_key(ID) <<PK>>
foreign_key(TEAM_ID) <<FK>>
foreign_key(MEMBER_ID) <<FK>>
timestamp
}
TEAM ||--o{ TEAM_MEMBER
TEAM_MEMBER }o--|| MEMBER
TeamMember -right-> TEAM_MEMBER :id -> ID
Member -[hidden]right- MEMBER :rrrrrrrrrrrrrrrrrrrr
Team --> TEAM_MEMBER :id -> TEAM_ID
Member -up-> TEAM_MEMBER :id -> MEMBER_ID
@enduml | false | true | false | false | sequence |
3b1ba5d701db9e10a97409ab49621789c8034db1 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.puml | 4b743f25033feb55e698ba40aa67d3f12d2b6e28 | [] | 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 | 152 | puml | @startuml
class LegacyPlayerRunTask {
+ <<override>> Execute(testJobData:TestJobData) : IEnumerator
}
TestTaskBase <|-- LegacyPlayerRunTask
@enduml
| false | true | false | false | class |
d9edb1bcdc431cf2b11c887327d17e555a26667d | cea7fd40d30d2f7510d0c58bdab70ef624f13568 | /src/main/java/ex41/App.puml | 0fb9d43eadcbf05efe2028791ee8252f01354569 | [] | no_license | faizatucf/Ahmed-cop3330-assignment3 | 2ee9c12262133b961d727f4c952e6c8a27970bbb | 1afd969fea823ca1319f07b91cede2078bdc256c | refs/heads/main | 2023-08-23T11:24:18.220835 | 2021-10-08T18:23:52 | 2021-10-08T18:23:52 | 415,086,611 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 201 | puml | @startuml
class App {
+output(out:String):void
+outputString(result:ArrayList<String>):void
+sort(filenamein:String ,filenameout:String):ArrayList<String>
+main(String [] args):void
}
@enduml | false | true | false | false | class |
651c539fe8f63ec055bbd4f6a5d0bb962d1ac66f | 0022c671a1f29a101140bad8e4523e43f892ce92 | /spring-security/DefaultMethodSecurityExpressionHandler#filter.puml | c3e6ce02e1b4abfbf23826a8655fbf286cf0ff87 | [] | no_license | gujian0302/spring-puml | 7430167b52fe1aaa5399b6befe3436b911033063 | 6984fd426a6f1a933db3eeeef61646b0f77ccfef | refs/heads/main | 2023-04-11T08:54:01.627212 | 2021-04-12T06:42:11 | 2021-04-12T06:42:11 | 357,085,696 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 248 | puml | @startuml
Actor -> DefaultMethodSecurityExpressionHandler: filter
ExpressionBasedPostInvocationAdvice ->ExpressionBasedPostInvocationAdvice: filterCollection
ExpressionBasedPostInvocationAdvice -> ExpressionUtils: evaluateAsBoolean
return
@enduml | false | true | false | false | sequence |
84c9a07569c6b7280f1a87482ae260a97e39554e | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/auth/ForgotPassword.puml | c72858647fb3d02c62dcf974191887fc19a92084 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 896 | puml | @startuml
autonumber
hide footbox
title Forgot Password Aktor
Actor Aktor
boundary Login_V
boundary ForgotPassword_V
control Auth_C
Entity User_E
Auth_C --> Login_V: load->view()
Login_V --> Aktor: Halaman Login
Aktor --> Login_V: klik forgot password
Login_V --> Auth_C: forgotpassword()
Auth_C --> ForgotPassword_V: load->view()
ForgotPassword_V --> Aktor: Halaman Dashboard
Aktor --> ForgotPassword_V: Mengisi Inputan
note right of Aktor
Inputan email
end note
ForgotPassword_V --> Auth_C: forgotpassword()
Auth_C --> User_E:
alt isValid() case
User_E --> Auth_C: isValid()
Auth_C --> ForgotPassword_V: load->view()
ForgotPassword_V --> Aktor: Halaman Forgot Password
else isInvalid() case
User_E --> Auth_C: isInvalid()
Auth_C --> ForgotPassword_V: load->view()
ForgotPassword_V --> Aktor: Halaman Forgot Password
end
@enduml | false | true | false | false | sequence |
897ed89350de793571b3f7bd0986b292ed9969b5 | 74cb674dc7b9c3f65f6ab08fc5ad3a43c3bf12d3 | /Offline 2/Problem 1/src/component/hardware/storage/storage.plantuml | a7b1d170e899597698f43860df36894c85eb404b | [] | no_license | zarif98sjs/CSE-308-Software-Engineering | a9759bbee2ea0647eae2ea677d08741293a1cc14 | 515015a40c10d916d5089f11784b4ff75319fcbd | refs/heads/main | 2023-06-27T05:57:00.443594 | 2021-07-28T13:57:32 | 2021-07-28T13:57:32 | 344,690,362 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 801 | plantuml | @startuml
title __STORAGE's Class Diagram__\n
namespace component.hardware.storage {
class component.hardware.storage.BuiltInStorage {
+ toString()
}
}
namespace component.hardware.storage {
class component.hardware.storage.SDCard {
+ toString()
}
}
namespace component.hardware.storage {
interface component.hardware.storage.Storage {
{abstract} + toString()
}
}
component.hardware.storage.BuiltInStorage .up.|> component.hardware.storage.Storage
component.hardware.storage.SDCard .up.|> component.hardware.storage.Storage
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 |
405d23087e724dd45e64b88d6c8700080b418256 | dad5d984313a3ae0b71b5363ad782a146a76b6d2 | /source/plantuml/designPattern/AbstractFactory.puml | 4a2909b413b119a48ec52d600ddca3b1688168aa | [] | no_license | florianley/florianley.github.io | 330191fdf04a25f2c453770fa7df2f04f8da5300 | f1a9e498368ea48f3431d526b8bd97d1e3935efe | refs/heads/master | 2023-02-28T14:01:03.612522 | 2021-02-09T19:30:46 | 2021-02-09T19:30:46 | 305,364,958 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,596 | puml | @startuml
skinparam participant {
BorderColor Black
BorderThickness 1
FontName Helvetica
FontSize 13
BackgroundColor 0066A1
HeaderBackgroundColor 0066A1
AttributeFontColor black
FontColor White
FontStyle bold
}
skinparam sequence {
ArrowColor Black
GroupBackgroundColor 0066A1
GroupHeaderFontColor White
LifeLineBorderColor Black
LifeLineBackgroundColor White
FontColor red
}
skinparam class {
ArrowColor Black
BackgroundColor transparent
GroupHeaderFontColor White
BorderColor Black
LifeLineBackgroundColor White
FontColor Black
}
skinparam note {
BackgroundColor transparent
FontColor 3284B3
BorderColor black
}
interface ComputerAbstractFactory{
{method} + createComputer(): Computer
}
abstract class Computer{
+ abstract String getRAM()
+ abstract String getHDD()
+ abstract String getCPU()
}
class PC{
- String ram
- String hdd
- String cpu
+ getRam()
+ getHDD()
+ getCPU()
}
class ComputerFactory{
+ static Computer getComputer()
}
class Server{
- String ram
- String hdd
- String cpu
+ getRam()
+ getHDD()
+ getCPU()
}
class ServerFactory{
- String ram
- String hdd
- String cpu
+ Computer createComputer()
}
class PCFactory{
- String ram
- String hdd
- String cpu
+ Computer createComputer()
}
class Client{
}
Computer <|-- PC
Computer <|-- Server
Client --> ComputerFactory
ComputerAbstractFactory <|.. PCFactory
ComputerAbstractFactory <|.. ServerFactory
Client --> ComputerAbstractFactory
ServerFactory --> Server
PCFactory --> PC
ComputerFactory --> Computer
@enduml | false | true | false | false | class |
321d26bee1a55fb3945b46895e3de89868e5f2c6 | f0a43ed6a7dba2cc3efdfbf7414ff0b0c8d36fd6 | /_src/iti44pixv3.plantuml | 5374f9fd3066d55f2c6cc35ac1ecbba0f9da2c64 | [
"MIT",
"GPL-1.0-or-later",
"WTFPL",
"CC-BY-3.0-US",
"BSD-3-Clause",
"OFL-1.1"
] | permissive | oehf/ipf-docs | 178fe1e3fe079afede58fd25fe93a360234a273a | 3a8ea98c86b3405f6571cb23b4da44a726a8fbf4 | refs/heads/master | 2023-08-30T06:25:52.374023 | 2023-08-29T14:34:33 | 2023-08-29T14:34:33 | 158,552,584 | 0 | 3 | MIT | 2022-03-30T07:48:51 | 2018-11-21T13:31:43 | HTML | UTF-8 | PlantUML | false | false | 515 | plantuml | @startuml
hide footbox
participant "Patient Identity\nSource" as PIS
participant "Patient Identifier\nCross-Reference Manager" as MPI
PIS -> MPI : Patient Registry Record Added PRPA_IN201301UV02 \nPatient Registry Record Updated PRPA_IN201302UV02
activate MPI
MPI --> PIS : Send Application Acknowledgement MCCI_MT000300UV01
deactivate MPI
|||
PIS -> MPI : Patient Registry Duplicates Resolved PRPA_IN201304UV02
activate MPI
MPI --> PIS : Send Application Acknowledgement MCCI_MT000300UV01
deactivate MPI
@enduml | false | true | false | false | sequence |
170f6a07c05110401b922d555b8bbea90cffcd81 | 462b9598f08a48ab835f0b189d4d344560965227 | /src/main/java/csheets/worklog/n1950689/sprint2/ipc02_1_analysis_find_workbook_SD.puml | aed72c072804879848e9a7ea2dad5b4066479f67 | [] | no_license | VitorMascarenhas/LAPR4-2016 | 19f5593b98b81763f77021fb04278ed231337028 | e53a5a46c0e09fbc155fb91f2010d50532de85d2 | refs/heads/master | 2020-03-19T10:31:05.321699 | 2018-06-06T19:49:19 | 2018-06-06T19:49:19 | 136,027,190 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,406 | puml | @startuml doc-files/ipc02_1_analysis_find_workbook_SD.png
actor User
participant "<<analysis>>\nExtensionSearchWorkbookUI" as ESWUI
participant "<<analysis>>\n<<observer>>\nExtensionSearchWorkbookController" as ESWCtrl
participant "<<analysis>>\n<<observerable>>\nSearchExtension" as SE
participant "path : Path" as p
participant "f : File" as f
participant "Spreadsheet" as Ss
User -> ESWUI : initiate search workbook extension
activate ESWUI
ESWUI --> User : ask search root directory
User -> ESWUI : insert search root directory
create ESWCtrl
ESWUI -> ESWCtrl : create()
ESWUI -> ESWCtrl : searchWorkbook(rootDir)
activate ESWCtrl
ESWCtrl -> SE : searchExtension(rootDir)
activate SE
create p
SE -> p : create()
SE -> p : toFile()
activate p
create f
p -> f : create()
p --> SE : f
deactivate p
SE --> ESWUI : f
deactivate SE
deactivate ESWCtrl
ESWUI --> User : show file found
ESWUI --> User : search complete
opt File selected
User -> ESWUI : select file
ESWUI -> ESWCtrl : loadWorkBook(f)
activate ESWCtrl
ESWCtrl -> Ss : load(f)
ESWCtrl --> ESWUI : update workbook loaded
deactivate ESWCtrl
ESWUI --> User : show opened Workbook
deactivate ESWUI
end
@enduml
| false | true | false | false | usecase |
f965c8d5a03c4ca490378cca7c3b572243880a1c | 4beec2545e0bc9ae7f36905f46459521726e4747 | /asciidocs/plantuml/Motel.puml | b85ccafeb0899c6561a477745c6918f8b7a11ebc | [] | no_license | 2122-4ahif-syp/01-cld-hotel-christophhandel | 4dd1d15be9d09eb76de47e3a9278930c1fd5898c | da57be5124d318c29332773c07f7ac68781fb1ca | refs/heads/master | 2023-08-22T23:31:17.561355 | 2021-10-11T08:32:49 | 2021-10-11T08:32:49 | 415,830,025 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 913 | puml | @startuml
class Zimmer{
nummer: int
personen: int
}
class Kategorie{
id: int
bezeichnung: String
}
class Mitarbeiter{
-svnr: String
-name: String
-adresse: String
}
class Raumpfleger{
}
class Betreuer{
-fach: String
}
class Kunde{
-kundennr: int
-name: String
-adresse: String
}
class Buchung{
-von: LocalDate
-bis: LocalDate
}
class Leistungspaket{
-bezeichnung: String
-preis: int
-anzahl: int
}
Leistungspaket--|>Basispaket
Leistungspaket-|>Luxuspaket
Leistungspaket->Betreuer
Mitarbeiter-->Betreuer
Mitarbeiter -|>Raumpfleger
Kunde"1"<-"*"Buchung
Zimmer"1"<--"*"Buchung
Raumpfleger-->Zimmer
Raumpfleger - Zimmer
(Raumpfleger,Zimmer).. x
Luxuspaket"1"<--"1..*"Basispaket
Buchung"1" <- "*"Leistungspaket
(Buchung,Leistungspaket)..y
(Leistungspaket,Betreuer)..z
Kategorie"1"<--"*"Zimmer
@enduml | false | true | false | false | class |
ae1e6a00b019635b8d58f49244849039c4603db8 | 4fa442659db4fb069a434994d60f980896105c2d | /overcomplicated-tictactoe/overcomplicated-tictactoe-diagram.plantuml | cc82e426670b7f7a4f021366bde0ae96298f4a63 | [] | no_license | CodecoolGlobal/overcomplicated-tic-tac-toe-java-SzajlerIndira | 3d20d1e2caf9cca02cc0ae9d548e30f2576613f1 | 7a9f66e81f0f88aca71c706187832729f515d5a0 | refs/heads/master | 2020-05-02T20:16:30.722160 | 2019-05-13T12:47:40 | 2019-05-13T12:47:40 | 178,185,890 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,731 | plantuml | @startuml
title Overcomplicated TicTacToe gaming system - Component Diagram
package "Front End" {
component [Web Interface] as GUI
}
database "PostgreSQL\n" as DB {
}
cloud "\nInternet\n" as Internet {
}
cloud "\nLocal network\nor\nlocalhost\n" as localhost {
}
node "Web server" as WebServer{
[GameController]
[Data Access] as DA
interface "Routes" as Routes
interface "Game Model" as Game
}
package "Services" as services{
node "funfact-service" as funfact {
interface "API" as FunFactAPI
[Business Logic] as FunFactLogic
cloud "Magic" as FunFactMagic
}
node "comics-service" as comic {
interface "API" as ComicAPI
[Business Logic] as ComicLogic
cloud "Magic" as ComicMagic
}
node "avatar-service" as avatar {
interface "API" as AvatarAPI
[Business Logic] as AvatarLogic
cloud "Magic" as AvatarMagic
}
node "tictactoe-ai-service" as ai {
interface "API" as aiAPI
[Business Logic] as aiLogic
cloud "Magic" as aiMagic
}
}
WebServer -[hidden]left- services
localhost -[hidden]left- WebServer
funfact -[hidden]down- comic
comic -[hidden]down- avatar
avatar -[hidden]down- ai
GUI -down-> Internet
Internet -down-( Routes
GameController -up- Routes
GameController <-left- localhost
localhost -left-( FunFactAPI
FunFactAPI -left- FunFactLogic
FunFactLogic -left- FunFactMagic
localhost -left-( ComicAPI
ComicAPI -left- ComicLogic
ComicLogic -left- ComicMagic
localhost -left-( AvatarAPI
AvatarAPI -left- AvatarLogic
AvatarLogic -left- AvatarMagic
localhost -left-( aiAPI
aiAPI -left- aiLogic
aiLogic -left- aiMagic
DA -up- Game
GameController -right- Game
DA .. DB
@enduml
| false | true | false | false | sequence |
8ddba036bd05c2b08711bf2c4a23ea712f50fa14 | 3ea02aab5d9a15def695d50ffd9c538a0b4e5173 | /test/regression/type-inlineProperty.puml | 0c8f3702366cab314fdeced5286e56480193900e | [] | no_license | VladimirAlexiev/rdf2rml | cd6a3c7c27dd3ce30214c852b4b0d9291464b461 | 29d7f21c9ed3defd5d6a64a02a5e18315d30b559 | refs/heads/master | 2023-06-09T10:08:02.313163 | 2023-06-07T11:25:10 | 2023-06-07T11:25:10 | 158,509,814 | 35 | 5 | null | 2023-05-30T12:54:05 | 2018-11-21T07:44:42 | Perl | UTF-8 | PlantUML | false | false | 263 | puml | @startuml
hide empty methods
hide empty attributes
hide circle
skinparam classAttributeIconSize 0
class nom_history_123 as "nom:history_123"
nom_history_123 : ppt_history:resourceType skos:Concept
class nom_21942 as "nom:21942"
nom_21942 : a skos:Concept
@enduml
| false | true | false | false | class |
9aaec33b1f75dbc90e51ac8863cd0bfc5a5ed310 | fe4eb6697e791df152d0c98645cb4dd417d0b4fd | /docs/uml/LoadDataSequenceDiagram.puml | ff5cec16b7cb3cd3231d99aee4ffeb5f640dadeb | [] | no_license | AY2021S2-CS2113T-F08-1/tp | 181794879f60fe98692cb30145839758cef4781c | 6e9a5418c1ca45d8ba09ff9a612013251e7417f4 | refs/heads/master | 2023-04-10T04:08:56.690286 | 2021-04-16T14:43:44 | 2021-04-16T14:43:44 | 340,670,502 | 0 | 6 | null | 2021-04-16T13:07:08 | 2021-02-20T14:13:17 | Java | UTF-8 | PlantUML | false | false | 1,422 | puml | @startuml
hide footbox
participant ":Storage" as Storage
participant ":Scanner" as Scanner
participant ":Module" as Module
participant ":Assignment" as Assignment
participant ":Lesson" as Lesson
participant ":Student" as Student
participant ":Data" as Data
[-> Storage : loadData()
activate Storage
Storage -> Scanner **
activate Scanner
Scanner --> Storage
deactivate Scanner
Storage -> Data **
activate Data
Data --> Storage
deactivate Data
loop for all Module
Storage -> Storage : loadModule()
activate Storage
Storage -> Module **
activate Module
Module --> Storage
deactivate Module
loop for all Assignment
ref over Storage, Assignment : loadAssignment()
Storage -> Module : addAssignment()
activate Module
Module --> Storage
deactivate Module
end
loop for all Lesson
ref over Storage, Lesson : loadLesson()
Storage -> Module : addLesson()
activate Module
Module --> Storage
deactivate Module
end
loop for all Student
ref over Storage, Student : loadStudent()
Storage -> Module : addStudent()
activate Module
Module --> Storage
deactivate Module
end
Storage --> Storage
deactivate Storage
end
deactivate Module
Storage -> Data : addModule()
activate Data
Data --> Storage
deactivate Data
[<-- Storage : Data
deactivate Storage
@enduml | false | true | false | false | sequence |
dddd6f5d6cf6977a30a53e2c151bfe8cbff0ef27 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartDiscountValueFixed.puml | ac57bf09230ea04ba005ac17632ecfdd0f1634a6 | [] | 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 | 456 | 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 CartDiscountValueFixed [[CartDiscountValueFixed.svg]] extends CartDiscountValue {
type: String
money: [[TypedMoney.svg List<TypedMoney>]]
}
interface CartDiscountValue [[CartDiscountValue.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
c099622f7deda5883d6d3e668315fa170f3d9f2c | 36552cffcb29aaaf1964d786c7ad6630c696caee | /db/noodle-db.puml | adffa2a4f9eba6e248e56c6b7c1f4a713cd3c4bb | [] | no_license | noodle-2d/noodle-doc | 85c2185a44abd2182b95f25cfcd6a6d77f9638a4 | 0cd7a1c3cc48fac4c5c38a1297d91a2e140bd6df | refs/heads/master | 2020-03-28T13:17:47.600735 | 2018-10-27T21:07:23 | 2018-10-27T21:07:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,301 | puml | @startuml
' Definitions
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
!define Enum(name,desc) class name as "desc" << (E,#3CB371) >>
!define pk(x) <b>x</b>
!define uq(x) <color:green>x</color>
!define nn(x) <u>x</u>
hide methods
hide stereotypes
' Entities
Table(account, "account") {
pk(id) SERIAL
uq(nn(login)) VARCHAR[50]
nn(password_hash) VARCHAR[100]
nn(name) VARCHAR[100]
nn(last_login_date) TIMESTAMPTZ
nn(registration_date) TIMESTAMPTZ
}
Table(list, "list") {
pk(id) SERIAL
nn(title) VARCHAR[100]
nn(index) INTEGER
nn(account_id) INTEGER
}
Table(task, "task") {
pk(id) BIGSERIAL
nn(title) VARCHAR[400]
nn(description) VARCHAR[2000]
nn(status) task_status
parent_task_id BIGINT
nn(has_children) BOOLEAN
nn(list_id) INTEGER
nn(index) INTEGER
nn(creation_date) TIMESTAMPTZ
start_date TIMESTAMPTZ
end_date TIMESTAMPTZ
planning_date TIMESTAMPTZ
deadline TIMESTAMPTZ
}
Enum(task_status, "task_status") {
TO_DO
IN_PROGRESS
DONE
}
Table(tag, "tag") {
pk(id) SERIAL
nn(name) VARCHAR[100]
nn(task_id) INTEGER
}
' Relationships
account "1" --> "0..N" list : account_id
list "1" --> "0..N" task : list_id
task "1" --> "0..N" task : parent_task_id
task -- task_status : status
task "1" --> "0..N" tag : task_id
@enduml
| false | true | false | false | sequence |
4c25a7425d07ca06b100c58459a13ef3f707adac | da686c74fdf2e68a82fc8d9962350d96c03dd857 | /docs/uml/Data Model.puml | 459fa25f9a7ee4a27bbada5efba9d667f6faad6c | [] | no_license | SilencyDev/TodoList-sf5 | 5fca4db7c20b55487419c3719798b3b5b77b98c7 | 44b03eac3d05b78366052354855dec48cf568d3b | refs/heads/master | 2023-01-20T08:22:21.428754 | 2020-11-30T21:28:11 | 2020-11-30T21:28:11 | 309,464,799 | 0 | 1 | null | 2020-11-30T21:28:12 | 2020-11-02T18:48:06 | PHP | UTF-8 | PlantUML | false | false | 437 | puml | @startuml Data model
rectangle "Data model" {
Class Task {
{field} title: String
{field} content: String
{field} createdAt: Datetime
{field} user: User
{field} isDone: Bool
}
Class User {
{field} username: String
{field} password: String
{field} email: String
{field} roles: Json
{field} tasks: Task
}
}
Task "Many" -- "One" User
@enduml | false | true | false | false | class |
3937072232a62a49e75e8450bd2edae381f0fde7 | 68c023f37ff9757bb11ebf2393b88c8b32ea4607 | /docs/design/flow-loop/flow-loop-delete-fsm.puml | 53352a197c603699da74fef6f7abf46b8d4db0f6 | [
"Apache-2.0"
] | permissive | andriidovhan/open-kilda | b4593553b5e3790bbc56c8636ff63ad09ebb4b8a | f05da45a9d2e75c3da85963b205ce438a8f6f327 | refs/heads/master | 2021-06-26T14:30:49.387956 | 2020-10-29T16:13:48 | 2020-10-29T16:13:48 | 169,898,879 | 0 | 0 | Apache-2.0 | 2019-02-09T18:27:17 | 2019-02-09T18:27:17 | null | UTF-8 | PlantUML | false | false | 890 | puml | @startuml
hide empty description
title Flow loop delete FSM
[*] -d-> INITIALIZED
INITIALIZED --> FLOW_VALIDATED : NEXT
INITIALIZED --> FINISHED_WITH_ERROR : TIMEOUT
FLOW_VALIDATED --> FLOW_LOOP_REMOVED : NEXT
FLOW_VALIDATED --> FLOW_STATUS_REVERTED : TIMEOUT/ERROR
FLOW_LOOP_REMOVED --> DELETING_LOOP_RULES : NEXT
FLOW_LOOP_REMOVED --> FLOW_STATUS_REVERTED : TIMEOUT/ERROR
DELETING_LOOP_RULES --> DELETING_LOOP_RULES : RESPONSE_RECEIVED/ERROR_RECEIVED
DELETING_LOOP_RULES --> LOOP_RULES_DELETED : RULES_DELETED
DELETING_LOOP_RULES --> FLOW_LOOP_REMOVED : TIMEOUT/ERROR
LOOP_RULES_DELETED --> FLOW_STATUS_UPDATED : NEXT
LOOP_RULES_DELETED --> FLOW_STATUS_REVERTED : TIMEOUT/ERROR
FLOW_STATUS_UPDATED --> FINISHED : NEXT
FLOW_STATUS_UPDATED --> FINISHED_WITH_ERROR : ERROR
FLOW_STATUS_REVERTED --> FINISHED_WITH_ERROR : NEXT/ERROR
FINISHED --> [*]
FINISHED_WITH_ERROR --> [*]
@enduml | false | true | false | false | sequence |
f1e377f267cb0cdbcc09d3cbc06f0c339f872dac | 996001a7af8adff163b8425821145f33ae66f741 | /practise/diagrams/Domain.puml | 2b09f31bc8b296d5637ff79ae1f7dffaec57e774 | [] | no_license | veronikagolovnina/SBTTraineeship | 35f228d2ed7bcc86e855696e7772e450d801b995 | b13647d21e2a32440c2236a49ba346c354691ffe | refs/heads/master | 2021-01-21T08:43:58.732387 | 2016-05-14T08:23:41 | 2016-05-14T08:23:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,200 | puml | @startuml
class User {
Long id
String firstName
String middleName
String lastName
UserGroup userGroup
}
note top of User
|= user |
| id |
| first_name |
| middle_name |
| last_name |
| group_id |
end note
class UserGroup {
Long id
String groupName
}
note top of UserGroup
|= user_group |
| id |
| group_name |
end note
User "many" --> "1" UserGroup
class SystemLog {
Long id
String code
String message
Date dateTime
User user
}
note top of SystemLog
|= system_log |
| id |
| code |
| message |
| date_time |
| user_id |
end note
class Question {
Long id
List<Answer> answers
AnswerType answerType (single, multiple)
TestChapter testChapter
String text
Test test
}
note top of Question
|= question |
| id |
| answer_type |
| test_chapter_id |
| text |
| test_id |
end note
Question "many" --> "1" TestChapter
Question "1" <--> "many" Answer
class Answer {
Long id
Question question
String text
Boolean isRight
}
note top of Answer
|= answer |
| id |
| question_id |
| text |
| is_right |
end note
class Result {
User user
TestRun testRun
Question question
Answer answer
}
note top of Result
|= result |
| id |
| user_id |
| test_run_id |
| question_id |
| answer_id |
end note
class Test {
String title
String description
List<Question> questions
}
note top of Test
|= test |
| id |
| title |
| description |
end note
Question "many" <-- "many" Test
note right on link
| test_question |
| question_id |
| test_id |
end note
class TestChapter {
Long id
String title
Integer position
}
note top of TestChapter
|= test_chapter |
| id |
| title |
| position |
end note
class TestRun {
TestRunStatus testRunStatus (NEW, COMPLETED)
User user
Test test
}
note top of TestRun
|= test_run |
| id |
| test_run_status |
| user_id |
| test_id |
end note
TestRun "many" --> "1" Test
TestRun "many" --> "1" User
Result "many" --> "1" User
Result "many" --> "1" TestRun
Result "many" --> "1" Question
@enduml | false | true | false | false | class |
bef8d709b09dae68943569deda1812066e333e9b | 17ecc978790b01e5b6f9925a5fd3044cc2f19a9a | /test-plantuml.txt | cbfd0769cb742119d9f923e8f5ea707f26ede084 | [] | no_license | bartvanderwal/spotitube | 9b01d826bf6b5496c6503fdfb5e7a7d5857d93a4 | 78d96ffc2c00a93f312db5765f5d6b89fd793e01 | refs/heads/master | 2023-03-18T06:03:47.531595 | 2023-03-14T16:24:03 | 2023-03-14T16:24:03 | 462,714,318 | 0 | 0 | null | 2022-02-23T11:54:35 | 2022-02-23T11:54:34 | null | UTF-8 | PlantUML | false | false | 1,003 | txt | @startuml
actor gebruiker as "Gebruiker"
participant frontend as "Frontend"
participant "loginController: LoginController" as loginController
participant "loginService: LoginService" as loginService
gebruiker -> frontend: Get frontend landingspage
frontend -> gebruiker: Toon loginscherm
gebruiker -> frontend: login
frontend -> loginController: login(password, user, url)
loginController -> loginService: POST\ncheck(user, password)
alt match
loginService -> loginController: true
loginController -> frontend: 200 (token)
frontend -> frontend: store token in localStorage
frontend -> frontend: ga naar Startscherm
frontend -> gebruiker: Toon sytartscherm skeleton
else ongeldige credentials
loginService -> loginController: false
loginController -> frontend: 401 Unauthorized
frontend -> gebruiker: Inlog mislukt
gebruiker -> frontend: Opnieuw proberen...
end
frontend -> playlistController: getPlaylists() etc.
@enduml
| false | true | false | false | usecase |
821040411d23af326e2bb7d1749d073d627ad85d | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.puml | ecaf452e26b635b4b835aa9592bd9b3d2770bd05 | [] | 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 | 183 | puml | @startuml
interface ITestListCacheData {
}
class "List`1"<T> {
}
ITestListCacheData --> "platforms<TestPlatform>" "List`1"
ITestListCacheData --> "cachedData<ITest>" "List`1"
@enduml
| false | true | false | false | class |
dce733b7dee5f78c1f1a327d23cf1a17d186f274 | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/administrator/addsubmenu.puml | a18ede2442914d31ea288cb4f45918c54a1c4a4a | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 1,264 | puml | @startuml
autonumber
hide footbox
title Menambah Submenu
Actor Administrator
boundary Dashboard_V
boundary Submenu_V
boundary AddSubmenu_V
control Admin_C
control Menu_C
Entity Submenu_E
Admin_C --> Dashboard_V: load->view()
Dashboard_V --> Administrator: Halaman Dashboard
Administrator --> Dashboard_V: klik menu Submenu management
Dashboard_V --> Menu_C: Submenu()
Menu_C --> Submenu_E:
Submenu_E --> Menu_C:
Menu_C --> Submenu_V: load->view()
Submenu_V --> Administrator: Halaman Submenu management
Administrator --> Submenu_V: klik tombol AddSubmenu
Submenu_V --> Menu_C: AddSubmenu()
Menu_C --> AddSubmenu_V: load->view()
AddSubmenu_V --> Administrator: Halaman AddSubmenu
Administrator --> AddSubmenu_V: Mengisi Inputan dan klik tombol add
note right of Administrator
Inputan title, menu, url, icon dan status active
end note
AddSubmenu_V --> Menu_C: AddSubmenu()
Menu_C --> Submenu_E:
alt isValid() case
Submenu_E --> Menu_C: isValid()
Menu_C --> Submenu_V: load->view()
Submenu_V --> Administrator: Halaman Submenu
else isInvalid() case
Submenu_E --> Menu_C: isInValid()
Menu_C --> AddSubmenu_V: load->view()
AddSubmenu_V --> Administrator: Halaman Add Submenu
end
@enduml | false | true | false | false | sequence |
144c27a2d85e89d313478f86663afcaa4bf35dfe | 5a8fafc1af19d5eb6730c0da83db05e0db76d388 | /compile-files.puml | 93ea005261c33a8cb022085806c0842ec049a2e5 | [] | no_license | LuisFajardoF/Diagramas-PUML | d041fcc7be377b5692a864c726d3cdcb19f3be2b | 4b886eefbd2207de708e056767a0a185851efc7f | refs/heads/master | 2023-03-29T01:22:24.559466 | 2021-04-13T17:39:58 | 2021-04-13T17:39:58 | 340,369,399 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,444 | puml | @startuml
scale 1260 * 840
rectangle "Archivo de compilación: CMakeLists.txt" {
usecase CompileTools as "
**Etapa 1**
===
Ejecutar herramientas
....
flex, bison, treecc
"
usecase Compiler as "
**Etapa 2**
===
Ejecutar compilador de C++
....
g++
"
usecase Executable as "
**Archivo ejecutable**
===
md2tex
"
(CompileTools) -[#DeepSkyBlue]--> (Compiler)
(Compiler) -[#DeepSkyBlue]--> (Executable)
}
rectangle "archivos de código generado" {
(ast.h)
(ast.cpp) ....> (ast.h)
(ast.cpp)
(lexer.cpp)
(parser.h) ....> (ast.h)
(parser.cpp) ....> (parser.h)
}
rectangle "archivos de entrada de flex, bison y treecc" {
(lexer.l) -[#blue]---> (lexer.cpp)
(parser.y) -[#blue]---> (parser.h)
(parser.y) -[#blue]---> (parser.cpp)
(ast.tc) -[#blue]---> (ast.cpp)
(ast.tc) -[#blue]---> (ast.h)
(CompileTools) --[#green]--> (lexer.l) : flex
(CompileTools) --[#green]--> (parser.y) : bison
(CompileTools) --[#green]--> (ast.tc) : treecc
}
rectangle "archivos de código fuente" {
(main.h) ...> (lexer.h)
(main.cpp) ...> (main.h)
(lexer.h) ...> (parser.h)
(parser.cpp) ...> (lexer.h)
(lexer.cpp) ...> (lexer.h)
(ast.cpp) ...> (gen_latex.h)
(gen_latex.cpp) ...> (gen_latex.h)
(gen_latex.h) ...> (gen_table.h)
(gen_latex.h) ...> (gen_list.h)
(gen_latex.h) ...> (gen_bib.h)
(gen_bib.cpp) ...> (gen_bib.h)
(gen_bib.h)
(gen_list.cpp) ...> (gen_list.h)
(gen_list.h)
(gen_table.cpp) ...> (gen_table.h)
(gen_table.h)
(Compiler) --[#DarkOrange]--> (gen_bib.cpp) : g++
(Compiler) --[#DarkOrange]--> (gen_list.cpp) : g++
(Compiler) --[#DarkOrange]--> (gen_table.cpp) : g++
(Compiler) --[#DarkOrange]--> (gen_latex.cpp) : g++
(Compiler) --[#DarkOrange]--> (ast.cpp) : g++
(Compiler) --[#DarkOrange]--> (parser.cpp) : g++
(Compiler) --[#DarkOrange]--> (lexer.cpp) : g++
(Compiler) --[#DarkOrange]--> (main.cpp) : g++
}
@enduml | false | true | true | false | usecase |
67384e1d974a6d62d48247f0c2bbbbac7662c1aa | 43fe9cd1612880f4dd1e7ce29e66e3ffd88112d4 | /docs/book/src/images/runtime-sdk-topology-mutation.plantuml | ce7290c5487d7b0462bbc0ab179e414cc7ec17da | [
"Apache-2.0"
] | permissive | malywonsz/cluster-api | 703b444ce9a01d91686b4c22a9d059fb3fe060be | 26943ea167774fe2948db8ca43cc5d658b7e790d | refs/heads/master | 2023-03-20T13:37:45.684703 | 2022-07-08T08:53:47 | 2022-07-08T08:53:47 | 226,080,695 | 0 | 3 | Apache-2.0 | 2023-03-20T06:58:43 | 2019-12-05T10:56:12 | Go | UTF-8 | PlantUML | false | false | 1,610 | plantuml | @startuml
title Figure 1. Cluster topology reconciliation
' -- GROUPS START ---
box #LightGreen
participant "API Server"
end box
box #LightBlue
participant "Cluster Topology Controller"
end box
box #LightBlue
participant "External Patch Extensions"
end box
' -- GROUPS END ---
"API Server" --> "Cluster Topology Controller": Cluster reconcile event
activate "Cluster Topology Controller"
"Cluster Topology Controller" -> "API Server": Get current Cluster topology
activate "API Server"
"API Server" -> "Cluster Topology Controller":
deactivate "API Server"
group Compute desired State
"Cluster Topology Controller" -> "Cluster Topology Controller": Compute desired State
loop Ordered list of Patches
alt
"Cluster Topology Controller" -> "Cluster Topology Controller": Generate inline patches
else
"Cluster Topology Controller" -> "External Patch Extensions": Generate external patches
activate "External Patch Extensions"
"External Patch Extensions" -> "Cluster Topology Controller":
deactivate "External Patch Extensions"
end
"Cluster Topology Controller" -> "Cluster Topology Controller": Apply patches to desired State
end loop
loop External Patches
"Cluster Topology Controller" -> "External Patch Extensions": ValidateTopology
activate "External Patch Extensions"
"External Patch Extensions" -> "Cluster Topology Controller":
deactivate "External Patch Extensions"
end loop
end group
"Cluster Topology Controller" -> "API Server": Reconcile Cluster topology
deactivate "Cluster Topology Controller"
hide footbox
@enduml
| false | true | false | false | sequence |
adde6517f5b31ffd4c42df3e8292f18be8229ab7 | 80905daea20f037ad1e90829c67947b7b95816b0 | /code/12_UMLIII/Graphs/UseCaseOnlineShopIII.plantUML | 58c414739785e4f3a9e13b49e96d049f7069dbe0 | [] | no_license | Divino21/CsharpCourse | 7916b7b892fc3858ea3697f39e1fcd802fa2d475 | 473d92cd96346d005979770bdcae020cf4bbf0c4 | refs/heads/master | 2022-11-22T05:43:24.789564 | 2020-07-31T01:47:22 | 2020-07-31T01:47:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 411 | plantuml | @startuml
skinparam packageStyle rectangle
left to right direction
actor Distributor
rectangle Online-Shop {
(Benutzernamen und Passwort eingeben) as USECASE1
(Kunden- und Bestelldaten downloaden ) as USECASE2
Distributor -- USECASE1
Distributor -- USECASE2
USECASE1 ..> (Zugriffsberechtigung prüfen) : <<include>>
USECASE2 ..> (Daten im richtigen Format bereitstellen) : <<include>>
}
@enduml
| false | true | true | false | usecase |
de1fb1507200829f3549a293ea1614438fa2aee8 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /sequence - design/authentication/viewMyProfile.plantuml | 76f016312644478f86dd04e17dc8554c365e7f4e | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 800 | plantuml | @startuml
actor ": User"
activate ": User"
": User" -> ": IAuthenticationForm" : // enter information
activate ": IAuthenticationForm"
": IAuthenticationForm" -> ": IAuthenticationForm" : validate(token)
alt all info is provided
": IAuthenticationForm" -> ": AuthenticationController" : view_profile(token)
activate ": AuthenticationController"
": AuthenticationController" -> ": IUserDB" : view_profile(token)
": IUserDB" -> ": IUserDB" : get_user(token)
": IUserDB" --> ": AuthenticationController" : // info view msg
": AuthenticationController" --> ": IAuthenticationForm" : // info view msg
": IAuthenticationForm" --> ": User" : // info view msg
else missing info
": IAuthenticationForm" --> ": User" : // missing inf msg
deactivate ": IAuthenticationForm"
deactivate ": User"
end
@enduml | false | true | false | false | usecase |
fb3567736e7e868c1ea93fc2d10e6d61ca140b47 | 89634bb006a9df141b85b9d653ed3f9036cebe42 | /src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-checkout-customer.puml | f4b50d548a3651f460587be877d4d3b9830dcf16 | [
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | 8mylez/platform | a3290e4e2294dd9d21def95a90c28951084c3a93 | 14c3bc69c720e82f0d5e4ffc70af5ded2e13efc9 | refs/heads/master | 2021-01-13T23:30:54.500566 | 2020-09-18T07:06:25 | 2020-09-18T07:06:25 | 296,546,535 | 1 | 1 | MIT | 2020-09-18T07:27:12 | 2020-09-18T07:27:11 | null | UTF-8 | PlantUML | false | false | 7,979 | puml | @startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
!define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >>
!define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
hide empty members
skinparam backgroundColor #FFFFFF
' entities
Table(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer\n(The sales channel customer)") {
primary_key(id) id
not_null(groupId) foreignKey
not_null(defaultPaymentMethodId) foreignKey
not_null(salesChannelId) foreignKey
not_null(languageId) foreignKey
lastPaymentMethodId foreignKey
not_null(defaultBillingAddressId) foreignKey
not_null(defaultShippingAddressId) foreignKey
autoIncrement int
not_null(customerNumber) numberRange
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
company string
password password
not_null(email) string
title string
affiliateCode string
campaignCode string
active bool
doubleOptInRegistration bool
doubleOptInEmailSentDate dateTime
doubleOptInConfirmDate dateTime
hash string
guest bool
firstLogin dateTime
lastLogin dateTime
newsletter bool
birthday date
lastOrderDate dateTime
orderCount int
customFields customFields
legacyPassword string
legacyEncoder string
remoteAddress remoteAddress
tagIds manyToManyId
requestedGroupId foreignKey
not_null(createdAt) createdAt
updatedAt updatedAt
}
TranslationTable(ShopwareCoreCheckoutCustomerAggregateCustomerGroupTranslationCustomerGroupTranslationDefinition, "customer_group_translation\n((Translations))") {
not_null(name) string
registrationTitle string
registrationIntroduction longText
registrationOnlyCompanyRegistration bool
registrationSeoMetaDescription longText
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
primary_key(customerGroupId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition, "customer_address\n(The customer addresses.)") {
primary_key(id) id
not_null(customerId) foreignKey
not_null(countryId) foreignKey
countryStateId foreignKey
not_null(salutationId) foreignKey
not_null(firstName) string
not_null(lastName) string
not_null(zipcode) string
not_null(city) string
company string
not_null(street) string
department string
title string
vatId string
phoneNumber string
additionalAddressLine1 string
additionalAddressLine2 string
customFields customFields
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutCustomerAggregateCustomerRecoveryCustomerRecoveryDefinition, "customer_recovery\n(Customer recovery process)") {
primary_key(id) id
not_null(hash) string
not_null(customerId) foreignKey
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition, "customer_group\n(Customer groups)") {
primary_key(id) id
name translated
displayGross bool
customFields translated
registrationActive bool
registrationTitle translated
registrationIntroduction translated
registrationOnlyCompanyRegistration translated
registrationSeoMetaDescription translated
not_null(createdAt) createdAt
updatedAt updatedAt
translated json
}
Table(ShopwareCoreCheckoutCustomerAggregateCustomerGroupRegistrationSalesChannelCustomerGroupRegistrationSalesChannelDefinition, "customer_group_registration_sales_channels\n(M:N Mapping)") {
primary_key(customerGroupId) foreignKey
primary_key(salesChannelId) foreignKey
not_null(createdAt) createdAt
}
Table(ShopwareCoreCheckoutCustomerAggregateCustomerTagCustomerTagDefinition, "customer_tag\n(M:N Mapping)") {
primary_key(customerId) foreignKey
primary_key(tagId) foreignKey
}
ForeignTable(ShopwareCoreCheckoutPaymentPaymentMethodDefinition, "payment_method") {
}
ForeignTable(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel") {
}
ForeignTable(ShopwareCoreSystemLanguageLanguageDefinition, "language") {
}
ForeignTable(ShopwareCoreSystemSalutationSalutationDefinition, "salutation") {
}
ForeignTable(ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition, "order_customer") {
}
ForeignTable(ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition, "promotion_persona_customer") {
}
ForeignTable(ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition, "product_review") {
}
ForeignTable(ShopwareCoreSystemCountryCountryDefinition, "country") {
}
ForeignTable(ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition, "country_state") {
}
ForeignTable(ShopwareCoreSystemTagTagDefinition, "tag") {
}
' relationshipd
ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreCheckoutPaymentPaymentMethodDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerTagCustomerTagDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition
ShopwareCoreCheckoutCustomerCustomerDefinition --> ShopwareCoreContentProductAggregateProductReviewProductReviewDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerRecoveryCustomerRecoveryDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition --> ShopwareCoreCheckoutCustomerAggregateCustomerGroupTranslationCustomerGroupTranslationDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupTranslationCustomerGroupTranslationDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition --> ShopwareCoreSystemCountryCountryDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition --> ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerAddressCustomerAddressDefinition --> ShopwareCoreSystemSalutationSalutationDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupRegistrationSalesChannelCustomerGroupRegistrationSalesChannelDefinition --> ShopwareCoreCheckoutCustomerAggregateCustomerGroupCustomerGroupDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerGroupRegistrationSalesChannelCustomerGroupRegistrationSalesChannelDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutCustomerAggregateCustomerTagCustomerTagDefinition --> ShopwareCoreSystemTagTagDefinition
@enduml
| false | true | false | false | uml-unknown |
42bdc314dd5128f805957b5990d4243a8376908a | fbd2f521e4d6be910979ce5941865f0b6d51370b | /src/test/resources/PlantUmlImageGeneratorSpec/input/umls/goodsyntax.puml | f95f2c93b88d414c91a87fe6233d6ca479c5045d | [] | no_license | Shinsuke-Abe/Thoth | 290fc1477b84ba1331d1b9749debe29ae8261149 | b15fa5917ffa344d59b5349820d45d6a42b62aff | refs/heads/master | 2016-08-12T12:38:35.220106 | 2015-10-28T06:22:41 | 2015-10-28T06:22:41 | 43,479,151 | 1 | 0 | null | 2015-10-28T06:22:42 | 2015-10-01T04:55:56 | Scala | UTF-8 | PlantUML | false | false | 46 | puml | @startuml
object hoge
hoge --> huga
@enduml | false | true | false | false | object |
c0a20485c338378096f19ef73cb939ce5b10154c | 114d183f85e91502b4f87581521dcfa41a8152a0 | /doc/diagrams/eagine/value_tree/overview.puml | 98872189bcd3b7b6f6acd27cebd1ba6d7e184edb | [
"BSL-1.0",
"GPL-3.0-only",
"GPL-1.0-or-later"
] | permissive | ford442/oglplu2 | 5544c888a11b9b2f92c3dd658c914403a6372604 | abf1e28d9bcd0d2348121e8640d9611a94112a83 | refs/heads/develop | 2023-07-28T03:56:59.431213 | 2021-09-01T05:40:48 | 2021-09-01T05:40:48 | 403,495,160 | 0 | 0 | BSL-1.0 | 2021-09-06T05:23:50 | 2021-09-06T05:21:38 | null | UTF-8 | PlantUML | false | false | 2,150 | puml | @startuml
enum value_type {
unknown
bool_type
byte_type
int16_type
int32_type
int64_type
float_type
duration_type,
string_type,
composite
}
interface attribute_interface {
+type_id() : identifier
}
note "\
- rapidyaml\n\
- rapidjson\n\
- filesystem\n\
- rapidxml\n\
- ...\n\
" as impl_note
interface compound_interface {
+type_id() : identifier
+add_ref(attribute_interface)
+release(attribute_interface)
+structure() : attribute_interface
+attribute_name(...) : string
+canonical_type(...) : value_type
+is_link(...) : bool
+nested_count(...)
+nested(...) : attribute_interface
+find(...) : attribute_interface
+value_count(...)
+fetch_values(...)
}
class concrete_attribute {
}
class concrete_compound {
}
package implementation {
}
class attribute {
+type_id() : identifier
+name() : string
}
class compound {
+type_id() : identifier
+structure() : attribute
+root() : compound_attribute
+attribute_name(...) : string
+canonical_type(...) : value_type
+is_link(...) : bool
+nested_count(...)
+nested(...) : attribute_interface
+find(...) : attribute_interface
+value_count(...)
+fetch_values(...)
}
class compound_attribute {
+type_id() : identifier
+name(...) : string
+canonical_type(...) : value_type
+is_link(...) : bool
+nested_count(...)
+nested(...) : attribute_interface
+find(...) : attribute_interface
+value_count(...)
+fetch_values(...)
}
compound_interface --> attribute_interface : uses
compound_interface --> value_type
attribute_interface <|-- concrete_attribute
compound_interface <|-- concrete_compound
concrete_compound ..> concrete_attribute : instantiates
implementation <-- concrete_attribute : uses
implementation <-- concrete_compound : uses
impl_note .. implementation
compound --> attribute : uses
compound o--> compound_interface
attribute o--> attribute_interface
compound_attribute *--> compound
compound_attribute *--> attribute
compound_attribute ..> compound_attribute : nested
compound ..> compound_attribute : root
@enduml
| false | true | false | false | sequence |
9ce83084cfde0a9e177e240e478a86492f462941 | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/macros01_3/Eval_DoWhile_WhileDo/DesignDoWhile.puml | 16209209f2e458aa55cfa0b5f493ec160037e84c | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 514 | puml | @startuml doc-files/macros0_03_DesignDoWhile.png
title DoWhile
participant ExcelExpressionCompiler as EEC
participant "node : Tree" as NT
participant "args : ArrayList" as AAL
participant "DoWhile" as WD
activate EEC
EEC--> AAL: [node.getText().equalsIgnoreCase("DoWhile")]
EEC-> NT: [nChild<node.getChildCount()]
activate NT
EEC-> NT: [child!=null]
EEC--> AAL: toArray(new Expression[args.size()])
activate AAL
EEC-> WD: [new DoWhile(args)]
deactivate WD
deactivate AAL
deactivate NT
deactivate EEC
@enduml | false | true | false | false | sequence |
10bfb391435f047201fb043c6ef93c8dfe71cbf9 | 77327db95c89cd0308a6aeace3a31952562cf198 | /out/production/Travel/com/company/del.puml | 3a447cab95e477187d53549478418bb18377d76a | [
"MIT"
] | permissive | KVM-Projects/TravelManagementSystem | 75f4db7a419eff26be607fb026447d1ab38586e0 | c2138c3e8118d749bc7af795128523b3e1b50d3f | refs/heads/main | 2023-06-18T22:50:30.446613 | 2021-07-04T16:03:46 | 2021-07-04T16:03:46 | 364,597,209 | 1 | 2 | null | 2021-07-04T16:03:46 | 2021-05-05T14:06:05 | Java | UTF-8 | PlantUML | false | false | 367 | puml | @startuml
'idea.disableSyntaxCheck
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 | false | true | false | false | class |
41cd4bf4830891e1a539c76177211e30c2a0037c | ea75981da460f495762038d036ec2a60086a625e | /uml/use-case.plantuml | 21b93bd2ce86c9025588e9c5b3dde2b21d75b41c | [
"MIT"
] | permissive | BradleyScrim/table-validator | 9ae5c9c6819b21bb519e30393d8aa556f8732d51 | 5c2287f0769b2edf633c96e2911f12fdbea35caa | refs/heads/master | 2020-09-20T11:18:27.808812 | 2020-02-12T16:30:57 | 2020-02-12T16:30:57 | 224,461,393 | 0 | 0 | MIT | 2019-11-27T15:31:00 | 2019-11-27T15:30:59 | null | UTF-8 | PlantUML | false | false | 1,441 | plantuml | @startuml
skinparam shadowing false
'scale 3/5
title: table validator
header version: %date("dd.MM.yyyy")
cloud "…" {
actor "table validator developer" as developer
developer --> (develop and enhance\n//TableValidator//)
developer --> (provide //TableValidator//\n[Download from github])
}
cloud "data requester" {
actor "computational scientist" as requester
requester --> (create //template//)
requester --> (get final data from\n//experimental scientist//\ncheck data with //TableValidator//)
}
package "agreement" as agreement {
note as n_agreement
* data structure
* transfer procedure
* …
end note
}
file "template.tsv" as template
file "final_data.tsv" as final
cloud "data provider" {
actor "experimental scientist" as user
usecase install as "**Install //TableValidator//**
==
download //TableValidator//
__
install conda in user space
__
run //TableValidator//"
user -> install
user --> (create data files)
user --> (locally validate data files\nagainst //template//)
}
requester --> agreement
user --> agreement
requester --> template : provide
user ..> template : use for validation
user --> final : finish work
requester ..> final : get final data
agreement -[hidden]- template
template -[hidden]- final
@enduml
| false | true | true | false | usecase |
a27f3096bfcf3e36851313db3d8fc73092442253 | 19c8cf12c2433ce45c00c02593d98ace63b0eb2d | /overview/demo-components.plantuml | 82c3a16e61e38eb538afe4cae9bef130bb1f9e32 | [
"Apache-2.0"
] | permissive | racker/salus-docs | 269ca0a88757798b2fe1aee33938f6a6f0d4924c | 83a44cb1732b79b14adee0ee88af97f53b2bb6f4 | refs/heads/master | 2021-06-24T19:58:49.516310 | 2021-01-19T14:44:28 | 2021-01-19T14:44:28 | 194,307,660 | 3 | 0 | Apache-2.0 | 2022-06-06T16:48:45 | 2019-06-28T17:02:08 | null | UTF-8 | PlantUML | false | false | 1,068 | plantuml | @startuml
agent telegraf
component Envoy
component Ambassador
component MonitorManagement
component ResourceManagement
component ZoneWatcher
database MySQL
database etcd
component MetricsIngest [
MetricsIngest
....
Demo only
]
component EventEngineIngest
component EventEngineManagement
component KapacitorEventIngest [
KapacitorEventIngest
....
Demo only
]
agent kapacitor
queue UMB
database InfluxDB [
InfluxDB
....
Demo only
]
component Grafana [
Grafana
....
Demo only
]
actor EndUser
component PublicAPI
telegraf == Envoy
Envoy ==> Ambassador
Ambassador ==> UMB
Ambassador ~~ etcd
ZoneWatcher ~~ etcd
UMB ==> EventEngineIngest
UMB ==> MetricsIngest
MetricsIngest ==> InfluxDB
EventEngineIngest ==> kapacitor
kapacitor ==> UMB
UMB ==> KapacitorEventIngest
KapacitorEventIngest ==> InfluxDB
MonitorManagement ~~ MySQL
ResourceManagement ~~ MySQL
EventEngineManagement ~~ MySQL
EventEngineManagement ~~ kapacitor
InfluxDB ==> Grafana
EndUser -- PublicAPI
PublicAPI -- MonitorManagement
PublicAPI -- ResourceManagement
PublicAPI -- EventEngineManagement
@enduml | false | true | false | false | sequence |
ed8f90298a7d8e71b0b6b4b02d6596ea3e497319 | 20644d12a34773dd4586c4f6b767745ad004db26 | /core/out/production/CN-assignment-1/com/lobby/login/login.plantuml | f6c8d54c07152fce6c96ee7d4eac9ff1b89982a0 | [] | no_license | thuyhoang-bkuer/CN-assignment-1 | 5862f4a2e136a484eff14f322e23a4462fe2fa0e | 58d119a48fac65b6fcbbf1b59b5975ced5357e10 | refs/heads/master | 2020-08-27T05:53:40.188382 | 2019-10-27T13:43:58 | 2019-10-27T13:43:58 | 217,261,236 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,343 | plantuml | @startuml
title __LOGIN's Class Diagram__\n
namespace com.client.login {
class com.client.login.LoginController {
{static} + controller : ChatController
+ hostnameTextfield : TextField
- borderPane : BorderPane
- connectBtn : Button
- imageSource : String
- imageView : ImageView
{static} - instance : LoginController
- portTextfield : TextField
- scene : Scene
- usernameTextfield : TextField
- xOffset : double
- yOffset : double
+ LoginController()
+ closeSystem()
+ generateAnimation()
{static} + getInstance()
+ initialize()
+ loginButtonAction()
+ minimizeWindow()
+ showErrorDialog()
+ showScene()
}
}
namespace com.client.login {
class com.client.login.MainLauncher {
{static} - primaryStageObj : Stage
{static} + getPrimaryStage()
{static} + main()
+ start()
}
}
com.client.login.LoginController .up.|> javafx.fxml.Initializable
com.client.login.MainLauncher -up-|> javafx.application.Application
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
adaf635159e21742c6ecb8ba5cf19fe3d0b1b81a | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyCartSetLocaleAction.puml | 639f40e0e8781bf21735aa92cc6c173e92680933 | [] | 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 | 433 | 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 MyCartSetLocaleAction [[MyCartSetLocaleAction.svg]] extends MyCartUpdateAction {
action: String
locale: String
}
interface MyCartUpdateAction [[MyCartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
a0ea93a7a26674f4b2bfcf7e9803d7c62814b531 | 61d4334cda2e47cea540787b6c96ad96bc785e86 | /ckcore/docs/workflow.puml | 156bc8ebfcbd74170a95ba9496401aaa32d8b151 | [
"Apache-2.0"
] | permissive | mjsolidarios/cloudkeeper | 6bcda443852c80b679ffd1dd904235a7d46df8a2 | 7b25414f7649b6035d3ee528ce82c2639012eeb1 | refs/heads/main | 2023-08-28T17:00:19.407030 | 2021-10-07T10:26:14 | 2021-10-07T10:26:14 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,096 | puml |
@startuml
class MessageType {
name: str
kind?: Kind
}
package Events {
interface Message {
}
interface ActionMessage {
workflow_instance_id: str
step_name: str
}
class Event {
data: Json
}
class ActionDone {
subscriber_id: str
}
class ActionError {
subscriber_id: str
}
Message <|-- Event
Message <|-- ActionMessage
ActionMessage <|-- ActionDone
ActionMessage <|-- ActionError
ActionMessage <|-- Action
ActionError ..> Action: processed
ActionDone ..> Action: processed
}
note right of Message {
- Multiple instances of the same workflow are possible.
- Every instance of a workflow has a unique id.
- Every step in a workflow has a unique name (in the workflow).
- Message ID could be created by {instance_id}::{step_name}
}
note bottom of ActionDone {
subscriber_id is available on the server side.
and is not required to transmit.
safe guard: no other actor can send done on
behalf of a different subscriber.
}
package Workflows {
class Workflow {
id: str
name: str
}
interface Step {
timeout: duration
}
class EmitAction {
message_type: str
}
class ExecuteCommand {
command: str
}
class WaitForEvent {
message_type: str
}
Step <|-- EmitAction
Step <|-- ExecuteCommand
Step <|-- WaitForEvent
enum ErrorBehaviour {
Stop
Continue
}
enum SurpassBehaviour {
Parallel
Replace
Wait
Drop
}
interface Trigger {
}
class ByTime
class ByEvent
class ByTimeAndEvent
class WorkflowInstance {
id: str
current_step(): Step
}
Trigger <|--ByTime
Trigger <|--ByEvent
Trigger <|--ByTimeAndEvent
ByEvent ...> MessageType
ByTimeAndEvent ...> MessageType
WorkflowInstance --> Workflow
WorkflowInstance ..> Step
Step --> ErrorBehaviour
}
package Subscribers {
class Subscriber {
id: str
}
class Subscription {
id: str
timeout: duration
}
}
note bottom of Subscriber {
The id of the subscriber is defined
by the subscriber and has to be unique.
Example:
<code>
gce_collector, aws_collector
</code>
}
Subscriber -> Subscription: subscriptions
Subscription ..> MessageType: event
Message ...> WorkflowInstance
Message ..> MessageType
Workflow -> "0..*" Trigger: trigger
Workflow -> "0..*" Step: steps
Step ..> MessageType
Workflow --> "1" SurpassBehaviour: next_run
@enduml
@startuml
interface Step {
timeout: duration
}
class EmitAction {
message_type: str
}
class ExecuteCommand {
command: str
}
class WaitForEvent {
message_type: str
}
Step <|-- EmitAction
Step <|-- ExecuteCommand
Step <|-- WaitForEvent
note bottom of EmitAction {
- Emits a specified action.
- Waits for all subscribers
to respond with an ack.
(wait_for_complete==true)
}
note bottom of ExecuteCommand {
- Executes a specified CLI command.
- Waits for the command to finish.
}
note bottom of WaitForEvent {
- Waits for a specified event to arrive.
}
@enduml
| false | true | false | false | sequence |
dad240cdcaafbae522729e3a5d3c23b9b0187603 | 7658a6afe423ee752a621096f3b142ad7133277d | /aws/General.puml | 10b6d51dc8f7b16478a66fda92aedb063594928c | [] | 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,989 | puml | @startuml
!define AWSPUML https://raw.githubusercontent.com/milo-minderbinder/AWS-PlantUML/release/18-2-22/dist
!includeurl AWSPUML/common.puml
!includeurl AWSPUML/General/AWSManagementConsole/AWSManagementConsole.puml
!includeurl AWSPUML/General/AWScloud/AWScloud.puml
!includeurl AWSPUML/General/Internet/Internet.puml
!includeurl AWSPUML/General/Internetalternate1/Internetalternate1.puml
!includeurl AWSPUML/General/Internetalternate2/Internetalternate2.puml
!includeurl AWSPUML/General/SAMLtoken/SAMLtoken.puml
!includeurl AWSPUML/General/SSLpadlock/SSLpadlock.puml
!includeurl AWSPUML/General/client/client.puml
!includeurl AWSPUML/General/corporatedatacenter/corporatedatacenter.puml
!includeurl AWSPUML/General/disk/disk.puml
!includeurl AWSPUML/General/forums/forums.puml
!includeurl AWSPUML/General/genericdatabase/genericdatabase.puml
!includeurl AWSPUML/General/mobileclient/mobileclient.puml
!includeurl AWSPUML/General/multimedia/multimedia.puml
!includeurl AWSPUML/General/officebuilding/officebuilding.puml
!includeurl AWSPUML/General/tapestorage/tapestorage.puml
!includeurl AWSPUML/General/traditionalserver/traditionalserver.puml
!includeurl AWSPUML/General/user/user.puml
!includeurl AWSPUML/General/users/users.puml
!includeurl AWSPUML/General/virtualprivatecloud/virtualprivatecloud.puml
package "General" {
AWSMANAGEMENTCONSOLE("AWSMANAGEMENTCONSOLE")
AWSCLOUD("AWSCLOUD")
INTERNET("INTERNET")
INTERNETALTERNATE1("INTERNETALTERNATE1")
INTERNETALTERNATE2("INTERNETALTERNATE2")
SAMLTOKEN("SAMLTOKEN")
SSLPADLOCK("SSLPADLOCK")
CLIENT("CLIENT")
CORPORATEDATACENTER("CORPORATEDATACENTER")
DISK("DISK")
FORUMS("FORUMS")
GENERICDATABASE("GENERICDATABASE")
MOBILECLIENT("MOBILECLIENT")
MULTIMEDIA("MULTIMEDIA")
OFFICEBUILDING("OFFICEBUILDING")
TAPESTORAGE("TAPESTORAGE")
TRADITIONALSERVER("TRADITIONALSERVER")
USER("USER")
USERS("USERS")
VIRTUALPRIVATECLOUD("VIRTUALPRIVATECLOUD")
}
@enduml | false | true | false | false | uml-unknown |
ee999187a323eea4b20ed8f3f91bc7c75327bd3f | 939ec2212f87c1894d792e169fce964bec902583 | /docs/Solution/Services/monitor/Physical.puml | 4c8161bf2b56f7e1d79ad40df25d0fd863a9b7fb | [] | no_license | CAADE/fleet | 37e18246e0a10122a711efccdab3c134232d120e | a62d2a82a2100583d84e41ea21efda9512fc4ac7 | refs/heads/master | 2020-03-22T00:31:19.695430 | 2018-07-13T03:27:19 | 2018-07-13T03:27:19 | 139,250,021 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 152 | puml | @startuml
interface external
package "monitor" #dddddd {
component service
interface internal
}
external - service
internal - service
@enduml
| false | true | false | false | class |
9e4213acdc30ebe37cb75c05ffaae18fd3ad89ed | 651a2439478b74a6a9fd06cb27edc0105b62105c | /docs/catalog-of-terms/Entity-DDD/entity-ddd.puml | 9f1b2dd6ffaa991c101e42431d4cbe5effadce49 | [
"MIT"
] | permissive | NicoJuicy/modular-monolith-with-ddd | 2abbaefe3e715faf009257db1ce76d2ac0539a7b | ff54f9e6a2f8a672ea0aef5ffe7c163b0b8eb7b8 | refs/heads/master | 2023-01-20T16:11:47.006416 | 2022-08-23T20:58:28 | 2022-08-23T20:58:28 | 221,891,602 | 0 | 0 | MIT | 2023-01-18T14:33:28 | 2019-11-15T09:36:27 | null | UTF-8 | PlantUML | false | false | 501 | puml | @startuml Entity
class "MeetingGroup" << Entity >> {
MeetingGroupId: Id
-string: _description
-DateTime: _createDate
-DateTime: _paymentDateTo
{static} MeetingGroup CreateBasedOnProposal()
Meeting CreateMeeting(..)
void SetExpirationDate(DateTime dateTo)
void JoinToGroupMember(MemberId memberId)
void LeaveGroup(MemberId memberId)
void EditGeneralAttributes(...)
bool IsMemberOfGroup(MemberId attendeeId)
bool IsOrganizer(MemberId memberId)
}
@enduml | false | true | false | false | class |
7c1fbba89ad110267ed5e9a373722ad7c7261bf6 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/supplyagreement-perishable-goods@0.16.0.puml | 1d0025b70d8d80c4236ec6697e4caa3524ab096e | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"CC-BY-4.0"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 636 | puml | @startuml
class org.accordproject.perishablegoods.contract.SupplyAgreementPerishableGoodsContract << (A,green) >> {
+ Grower grower
+ Importer importer
+ Shipment shipment
+ DateTime dueDate
+ MonetaryAmount unitPrice
+ Unit unit
+ Integer minUnits
+ Integer maxUnits
+ String product
+ Integer sensorReadingFrequency
+ TemporalUnit duration
+ Double minTemperature
+ Double maxTemperature
+ Double minHumidity
+ Double maxHumidity
+ Double penaltyFactor
}
org.accordproject.perishablegoods.contract.SupplyAgreementPerishableGoodsContract --|> org.accordproject.contract.Contract
@enduml
| false | true | false | false | class |
e6b0b90fa6633424f667b3ac841cd5e3e77c8cf3 | c221a59d82b56fff0226fdf24fee4ae4dabbd796 | /presentation/communication-sessions.puml | 5a1cdd070c703460a7efc8474c470704c8416554 | [] | no_license | ljpengelen/java-meetup-jwt | ab017e6899a93439c10570e2ee9279815a00aeb4 | 7e34b6f340c0b1fe8019c7ae64ba097331fa1398 | refs/heads/master | 2022-11-29T12:15:05.238547 | 2022-11-24T06:30:55 | 2022-11-24T06:30:55 | 70,469,942 | 1 | 2 | null | 2022-11-24T06:30:56 | 2016-10-10T08:54:38 | Java | UTF-8 | PlantUML | false | false | 390 | puml | @startuml
Client -> Server : username and password
Server -> Server : start session
activate Server
Server --> Client : sessionToken
Client -> Server : request with sessionToken
Server --> Client : response
... ...
Client -> Server : request with sessionToken
Server --> Client : response
destroy Server
Client -> Server : request with sessionToken
Server --> Client : error
@enduml
| false | true | false | false | sequence |
beef1b83da5a4039bb7517d583a6067ef6cda8e0 | 0227aadd69cb702f0d1266de55c6e6c7949ad516 | /test/dependencies.plantuml | 81cd213ff5490edf8f15b5f5d180f19feb186495 | [] | no_license | telecomsante/observable-extensions | d2575fb5c3789d3383d401d79efabd42e423abff | 83632e499cee3147c56a081af5d1b3d4d5d82c73 | refs/heads/master | 2021-05-10T17:57:12.730602 | 2018-08-15T22:50:41 | 2018-08-15T22:50:41 | 118,617,594 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,407 | plantuml | @startuml
usecase (Testing Observable)
usecase (Timed Observable)
usecase debounce
usecase first
usecase filter
usecase forEach
usecase last
usecase map
usecase merge
usecase reduce
usecase repeat
usecase then
(Testing Observable) <-down- (Timed Observable)
(forEach) <-down- (Timed Observable)
(map) <-down- (Timed Observable)
(reduce) <-down- (Timed Observable)
(Testing Observable) <-down- (debounce)
(Timed Observable) <-down- (debounce)
(forEach) <-down- (debounce)
(last) <-down- (debounce)
(reduce) <-down- (debounce)
(Testing Observable) <-down- (first)
(forEach) <-down- (first)
(Testing Observable) <-down- (filter)
(forEach) <-down- (filter)
(last) <-down- (filter)
(reduce) <-down- (filter)
(Testing Observable) <-down- (forEach)
(Testing Observable) <-down- (last)
(forEach) <-down- (last)
(Testing Observable) <-down- (map)
(forEach) <-down- (map)
(last) <-down- (map)
(reduce) <-down- (map)
(Testing Observable) <-down- (merge)
(Timed Observable) <-down- (merge)
(forEach) <-down- (merge)
(reduce) <-down- (merge)
(Testing Observable) <-down- (reduce)
(forEach) <-down- (reduce)
(Testing Observable) <-down- (repeat)
(Timed Observable) <-down- (repeat)
(forEach) <-down- (repeat)
(last) <-down- (repeat)
(reduce) <-down- (repeat)
(Testing Observable) <-down- (then)
(Timed Observable) <-down- (then)
(forEach) <-down- (then)
(last) <-down- (then)
(reduce) <-down- (then)
@enduml
| false | true | false | false | usecase |
830d97ac45b7978eb2f4f4f7856c4fcb46f24d70 | 5bdbd6738fe541bd2e09ee38cdcf8e5396e969e4 | /hadoop/src/hsa/kerberos-access.puml | 77cdb006f743e1cffbabaa38c4304d6f12597e07 | [] | 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 | 1,412 | puml | @startuml
autonumber
hide footbox
participant "User" as U
participant "Name Node (nn)" as NN
participant "Kerberos KDC" as KDC
'1
U->U: <b>hadoop fs -ls <dir></b>
activate U
'2
U->U: <b>SASL/Kerberos Mutual Auth</b>
activate U
'3
U->U: <b>loadFromTicketCache</b>\n ( kdc-principal )\n : user-kdc-ticket
'4
U->KDC:<b>TGS-REQ</b>\n ( user-kdc-ticket )\n : <b>TGS-REP</b>{ user-nn-ticket }
'5
U->U: <b>loadCredentialsFromKeyTab</b>\n ( user-principal )\n : user-password
'6
U->U: <b>decrypt</b>\n ( user-nn-ticket, user-password )\n : session-key
'7
U->U: <b>saveTicketInCache</b>\n ( nn-principal, user-nn-ticket )
'8
U->U: <b>encrypt</b>\n ( user-auth, session-key )\n : enc-user-auth
'9
U->NN: <b>AP-REQ</b>\n ( user-nn-ticket, enc-user-auth )
activate NN
'10
NN->NN: <b>loadCredentialsFromKeyTab</b>\n ( nn-principal )\n : nn-password
'11
NN->NN: <b>decrypt</b>\n ( user-nn-ticket, nn-password )\n : session-key
'12
NN->NN: <b>decrypt</b>\n ( enc-user-auth, session-key )\n : dec-user-auth
'13
NN->NN: <b>encrypt</b>\n ( dec-user-auth, session-key )\n : enc-nn-auth
'14
U<--NN: : <b>AP-REP</b>{ enc-nn-auth }
deactivate NN
'15
U->U: <b>decrypt</b>\n ( enc-nn-auth, session-key )\n : dec-nn-auth
'16
U<--U: : <b>mutually-authenticated</b> =\n user-auth == dec-nn-auth</b>
deactivate U
'17
U->NN: [ mutually-authenticated ]\n<b>listFiles</b>( dir )\n : dir-list
deactivate U
@enduml | false | true | false | false | sequence |
407907f6a21876268884fadc7ec63b910e493d22 | d827540cbf464c3c09194c3022598f94043a04f8 | /puml-diagrams/cd_versamento.puml | d3586da7e5432776c4469f54b4f3d2d3c7e94770 | [] | no_license | gliasphaltatori/pagopa-specifichepagamenti-docs | 25f671a585e50a68a02291378ac28f0767b14866 | 49c30c276bff9109f36e598f9678b94b58a9a997 | refs/heads/master | 2023-04-30T21:55:52.268768 | 2021-05-11T08:08:00 | 2021-05-11T08:08:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 518 | puml | @startuml
class Versamento {
dataEsecuzionePagamento
importoTotaleDaVersare
tipoVersamento
ibanAddebito
bicAddebito
firmaRicevuta
}
class datiSingoloVersamento{
importoSingoloVersamento
commissioneCaricoPA
ibanAccredito
bicAccredito
ibanAppoggio
credenzialiPagatore
vausaleVersamento
datiSpecificiRiscossione
datiMarcaBolloDigitale
}
class datiMarcaBolloDigitale{
tipoBollo
hashDocumento
provinciaResidenza
}
Versamento *-down- datiSingoloVersamento
datiSingoloVersamento *-down- datiMarcaBolloDigitale
@enduml | false | true | false | false | class |
cf63f57ee6d6759aeec9a16f6cc530cb16091da5 | c5a73d9849422872d2120a2637ba7288740f0a71 | /docs/architecture/example-meta-model.crc.plantuml | e3ed0c4dd90f89005dce2bfe577cce0b7cc3909e | [
"Apache-2.0"
] | permissive | sa-mw-dach/manuela | 65f384d47d14d3e7096d00f5966eb8b315375bd4 | b46ee9b241c2c0288ce047850a51268336007760 | refs/heads/master | 2023-03-18T08:37:45.960901 | 2023-03-14T09:32:46 | 2023-03-14T09:32:46 | 224,642,932 | 39 | 30 | Apache-2.0 | 2023-03-14T09:32:47 | 2019-11-28T11:54:43 | Shell | UTF-8 | PlantUML | false | false | 1,763 | plantuml | @startuml
title CRC Example: Meta und Deployment
object argocd_crc.yaml
argocd_crc.yaml : type = yaml
argocd_crc.yaml : kind = argo_app
argocd_crc.yaml : repo = manuela-gitops
argocd_crc.yaml : sourcepath = deployment/execenv-crc
argocd_crc.yaml : namespace = argocd
argocd_crc.yaml : path = meta
object execenv_crc
execenv_crc : type = dir
execenv_crc : path = deployment
argocd_crc.yaml o-- execenv_crc
object line_dashboard_application.yaml.ln
line_dashboard_application.yaml.ln : type = link
object machine_sensor_application.yaml.ln
machine_sensor_application.yaml.ln : type = link
object messaging_application.yaml.ln
messaging_application.yaml.ln : type = link
execenv_crc o-- line_dashboard_application.yaml.ln
execenv_crc o-- machine_sensor_application.yaml.ln
execenv_crc o-- messaging_application.yaml.ln
object line_dashboard_application.yaml
line_dashboard_application.yaml : type = yaml
line_dashboard_application.yaml : kind = argo_app
object machine_sensor_application.yaml
machine_sensor_application.yaml : type = yaml
machine_sensor_application.yaml : kind = argo_app
object messaging_application.yaml
messaging_application.yaml : type = yaml
messaging_application.yaml : kind = argo_app
line_dashboard_application.yaml.ln *-- line_dashboard_application.yaml
machine_sensor_application.yaml.ln *-- machine_sensor_application.yaml
messaging_application.yaml.ln *-- messaging_application.yaml
object instances
instances : type = dir
instances : path = config
object manuela_crc
manuela_crc : type = dir
manuela_crc : path = config/instances
instances o-- manuela_crc : subdir
manuela_crc o-- line_dashboard_application.yaml
manuela_crc o-- machine_sensor_application.yaml
manuela_crc o-- messaging_application.yaml
@enduml
| false | true | false | false | class |
b4ba817d990cc26dac6745602fdcc590f406e21d | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/administrator/addPegawaiTU.puml | f128d4269a5d1112e089a3aa57d98e7e63247ae9 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 1,367 | puml | @startuml
autonumber
hide footbox
title Menambah Pegawai TU
Actor Administrator
boundary Dashboard_V
boundary PegawaiTU_V
boundary AddPegawaiTU_V
control Admin_C
control Pegawai_C
Entity Pegawai_E
Admin_C --> Dashboard_V: load->view()
Dashboard_V --> Administrator: Halaman Dashboard
Administrator --> Dashboard_V: klik menu Pegawai TU
Dashboard_V --> Pegawai_C: index()
Pegawai_C --> Pegawai_E:
Pegawai_E --> Pegawai_C:
Pegawai_C --> PegawaiTU_V: load->view()
PegawaiTU_V --> Administrator: Halaman Pegawai TU
Administrator --> PegawaiTU_V: klik tombol Add Pegawai TU
PegawaiTU_V --> Pegawai_C: addpegawaitu()
Pegawai_C --> AddPegawaiTU_V: load->view()
AddPegawaiTU_V --> Administrator: Halaman Add Pegawai TU
Administrator --> AddPegawaiTU_V: Mengisi Inputan dan klik tombol add
note right of Administrator
Inputan Nama, NIP, Jenis Kelamin, tempat lahir, tanggal lahir, alamat dan jabatan
end note
AddPegawaiTU_V --> Pegawai_C: addpegawaitu()
Pegawai_C --> Pegawai_E:
alt isValid() case
Pegawai_E --> Pegawai_C: isValid()
Pegawai_C --> PegawaiTU_V: load->view()
PegawaiTU_V --> Administrator: Halaman Pegawai TU
else isInvalid() case
Pegawai_E --> Pegawai_C: isInValid()
Pegawai_C --> AddPegawaiTU_V: load->view()
AddPegawaiTU_V --> Administrator: Halaman Add Pegawai TU
end
@enduml | false | true | false | false | sequence |
09b555badbbe3f1deaa1cfc4f90048ff4097a2a4 | 5124b2dbc6276b681910d5584179a02ddc345669 | /documentation/uml/class/Reservation.puml | ca30c25d1fd676e3b68585fe04a8670dc2f783d1 | [] | no_license | Dedda/paintball | 258257ce2b0b6160abe4a9dbbbf7c7a658416d5b | fb18cf11e2fc3f7eca7e0d26a2847743b560dc2f | refs/heads/master | 2020-12-30T09:58:02.507682 | 2015-06-16T17:22:59 | 2015-06-16T17:22:59 | 30,232,508 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 938 | puml | @startuml
class hotel.entity.Reservation {
- id : int
- start : Date
- end : Date
- guest : Guest
- people : int
- rooms : List<Integer>
- additionalInfo : String
- payed : Date
- canceled : Date
+ Reservation()
+ Reservation(int, Date, Date, Guest, int, List<Integer> String, Date, Date)
+ getId() : int
+ setId(int) :void
+ getStart() : Date
+ setStart(Date) : void
+ getEnd() : Date
+ setEnd(Date) : void
+ getGuest() : Guest
+ setGuest(Guest) : void
+ getAdditionalInformation() : String
+ setAdditionalInformation(String) : void
+ getPayed() : Date
+ setPayed(Date) : void
+ getCanceled() : Date
+ setCanceled(Date) : void
+ getDays() : int
+ getPeople() : int
+ setPeople(int) : void
+ getRooms() : List<Integer>
+ setRooms(List<Integer>) : void
+ isPayed() : boolean
+ isCanceled() : boolean
}
@enduml | false | true | false | false | class |
8dd02914ecd1e7ca6abb44ba66c92c802a649c12 | b28e2ceadfccbb1d4da46409563cf578652bcd28 | /asproj/biz_search/src/main/java/org/devio/as/proj/biz_search/state.puml | 3096f1a7500f604c21d42e81d34ee1e778ba55f4 | [] | no_license | Fimics/FimicsArchAndroid | 7a9ccecb16718fcda6de3eb386630ec1fa500a11 | 4dd6395bcb665fb97bbbb77f0e22631fc30b9192 | refs/heads/master | 2023-06-16T01:34:23.303661 | 2021-07-15T11:05:07 | 2021-07-15T11:05:07 | 343,059,987 | 4 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 343 | puml | @startuml
component SearchActivity{
}
component EmptyView{
}
component HistoryView{
}
component QuickSearchView{
}
component GoodsSearchView{
}
SearchActivity-->EmptyView:status_empty
SearchActivity-->HistoryView:status_history
SearchActivity-->QuickSearchView:status_quick_search
SearchActivity-->GoodsSearchView:status_goods_search
@enduml | false | true | false | false | sequence |
4c8196746e8e2157ed470ca66fc2117a8e7c8791 | 4a33cd939bd0845f543a4eba93fd879e3154eadb | /proxy/nginx.puml | ab96f9b25249429c2237909cf2e238cd68c229c0 | [] | no_license | aryeht/grok-design-patterns | 0ff5008a193a34313e7a45ffc9e7169bf003176c | e564555bf72611516f4bd008ccb2688389e9a78f | refs/heads/master | 2021-01-16T16:55:07.463463 | 2020-02-26T13:16:58 | 2020-02-26T13:16:58 | 243,189,601 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 289 | puml | @startuml
together {
class Client
interface Server
}
interface Server {
{abstract} handleRequest()
}
Server <- Client
together {
class api
class nginx
}
api : handleRequest()
nginx : handleRequest()
Server <|.. api
Server <|.. nginx
nginx o-> api : subject
@endum | false | true | false | false | sequence |
b966eb1c89098474a722a13183a60004c7a4a7ca | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /examples/towards/sealed.puml | c4f2dd9789ffe2ed541539eebb35595bbef8c763 | [
"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 | 774 | puml | @startuml
package ast {
abstract class Expression << trait>>
abstract class BinaryOp << caseclass >> {
op : String
-- <<scalaclass>> --
isSealed
}
Expression <|-- BinaryOp : " "
BinaryOp --> "1 " Expression : " expr1 "
BinaryOp --> "1" Expression : " expr2"
note "<<scalaclass>>\nisSealed" as N1
Expression -right- N1
}
hide circle
hide Expression members
hide methods
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 | sequence |
c6c2dad1ead70c6ae4e8d3e954d253f94ce59ec6 | b7d0c6538306a7ef138dc9e88dbf7a0db6aa2ebe | /Native/app/src/main/java/com/taobao/idlefish/flutterboostexample/uml/state生命周期.puml | c30776d2a58a9eec411930bc0196daaada709310 | [] | no_license | msdgwzhy6/AndroidMix | 5c8beb754994b27fa8558f72474b55be9c0d2c9e | 9b51baf74a3544baf81af33e2412dc119d874dc1 | refs/heads/master | 2023-02-03T23:00:24.601999 | 2020-12-22T12:40:42 | 2020-12-22T12:40:42 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 187 | puml | @startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
@enduml | false | true | false | false | sequence |
8efc2925825362f1a334e4c8c0d38f267d7ac396 | dc14c938b7ce3e6aaba2a780206f99af5db1e501 | /projects/remote_diagnostics/rm_diag_srs/srcImg/rmDiagRemoteHelp.plantuml | e99fe22c33a2932ff286253d8eb95b80085f569e | [
"GPL-3.0-only",
"WTFPL"
] | permissive | lupu60/university | b3e9c6e21910d7ba537e193151a363741f15818b | 94ace14b9ff5ecb0eaaf5b05b19a5e6255c830e4 | refs/heads/master | 2021-01-24T17:44:48.563697 | 2019-11-01T15:01:34 | 2019-11-01T15:01:34 | 35,327,399 | 0 | 0 | WTFPL | 2019-11-01T15:02:40 | 2015-05-09T12:15:42 | HTML | UTF-8 | PlantUML | false | false | 233 | plantuml | @startuml
left to right direction
skinparam packageStyle rect
actor User
actor SystemAdmin
rectangle RemoteDiagnosticsWebInterface {
User -- (see error message) : call the SystemAdmin
SystemAdmin -- (see error message)
}
@enduml | false | true | false | false | usecase |
ef70c9d33a9d58099d86ad9de1b9588038926221 | 327724f1ecd2c5ef94f97bb515a9c88331afcb24 | /plantuml/src/main/resources/phantuml.exercise/class-1.puml | caa0d182c095b665db1053721c425b95c13843e8 | [] | no_license | JimiStephen/tutorial | a5e336c747916904c566df7cb2fc1802bbfc1a89 | e96475b5ab9e3b0a755aca7b61b2c7405fca21fa | refs/heads/master | 2023-04-13T12:58:14.397379 | 2023-04-09T05:23:14 | 2023-04-09T05:23:14 | 196,685,349 | 1 | 0 | null | 2023-01-13T23:37:25 | 2019-07-13T06:09:40 | HTML | UTF-8 | PlantUML | false | false | 344 | puml | @startuml
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 | false | true | false | false | class |
0598cf32cb3968ac8a2d48a527a4f22cf45af091 | 277e486d2376a273e2dea329633c06af8415ce43 | /Лабораторная работа 1/OOP_Lab1_Final/lab1.puml | 80771add8401f64d4f7a13fbd1407929c0bdef24 | [] | no_license | BrainKicker/Prog_Sem3 | 5c5e025d9e5bbbef31fc758d30a04b78de5c52c3 | 019f7a000a5d1fbee3d14afef9e38b81502fbe8d | refs/heads/main | 2023-08-27T00:12:39.743896 | 2021-10-23T01:46:58 | 2021-10-23T01:46:58 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,402 | puml | @startuml
class vector<T> {
- {static} initial_capacity : int = 10
- _size : int = 0
- _capacity : int = 0
- _arr : T* = nullptr
--
- __copy(other : const vector<T>&)
- __move(other : vector<T>&&)
- __free()
+ vector(n : int = initial_capacity) {explicit}
+ vector(initializerList : const std::initializer_list<T>&)
+ vector(other : const vector<T>&)
+ vector(other : vector<T>&&)
+ ~vector()
+ resize(n : int)
+ reserve(n : int)
+ add(elem : const T&)
+ remove(index : int)
+ size() : int {const}
+ operator=(initializerList : const std::initializer_list<T>&) : vector<T>&
+ operator=(other : const vector<T>&) : vector<T>&
+ operator=(other : vector<T>&&) : vector<T>&
+ operator[](index : int) : T&
+ operator[](index : int) : const T& {const}
<<friend>>
+ operator<<(out : std::ostream&, v : const vector<T>&) : std::ostream&
+ begin() : iterator
+ end() : iterator
+ rbegin() : iterator
+ rend() : iterator
+ from(index : int) : iterator
+ rfrom(index : int) : iterator
+ begin() : const_iterator {const}
+ end() : const_iterator {const}
+ rbegin() : const_iterator {const}
+ rend() : const_iterator {const}
+ from(index : int) : const_iterator {const}
+ rfrom(index : int) : const_iterator {const}
}
rectangle iterator <<typedef>> {
}
rectangle const_iterator <<typedef>> {
}
class vector_iterator<T> {
- _reverse : bool
- _cur : T*
--
- vector_iterator(start : T*, reverse : bool = false) {explicit}
+ reverse() : vector_iterator<T>&
+ operator*() : T&
+ operator++() : vector_iterator<T>&
+ operator++(int) : vector_iterator<T>
+ operator+=(n : int) : vector_iterator<T>&
+ operator--() : vector_iterator<T>&
+ operator--(int) : vector_iterator<T>
+ operator-=(n : int) : vector_iterator<T>&
+ operator==(other : const vector_iterator<T>&) : bool {const}
+ operator!=(other : const vector_iterator<T>&) : bool {const}
}
class matrix<T> {
- _width : int = 0
- _height : int = 0
- _matr : vector<column> = nullptr
--
- __copy(other : const matrix<T>&)
- __move(other : matrix<T>&&)
+ matrix(width : int, height : int)
+ matrix(initializerList : const std::initializer_list<column>&)
+ matrix(other : const matrix<T>&)
+ matrix(other : matrix<T>&&)
+ width() : int {const}
+ height() : int {const}
+ operator[](index : int) : column&
+ operator[](index : int) : const column& {const}
+ operator=(initializerList : const std::initializer_list<vector<T>>&) : matrix<T>&
+ operator=(other : const matrix<T>&) : matrix<T>&
+ operator=(other : matrix<T>&&) : matrix<T>&
<<friend>>
+ operator<<(out : std::ostream&, m : const matrix<T>&) : std::ostream&
}
rectangle column <<typedef>> {
}
class pair<T,R=T> {
+ first : T
+ second : R
--
- __copy(other : const pair<T,R>&)
- __move(other : pair<T,R>&&)
+ pair(f : T, s : R)
+ pair(other : const : pair<T,R>&)
+ pair(other : pair<T,R>&&)
+ operator=(other : const : pair<T,R>&)
+ operator=(other : pair<T,R>&&)
}
class field {
- _cells : matrix<cell>
--
- __copy(other : const field&)
- __move(other : field&&)
+ {static} default_entry_exit_generator(f : const field&) : pair<pair<int>,pair<int>>
+ field(width : int, height : int, generator : entry_exit_generator = default_entry_exit_generator)
+ field(other : const field&)
+ field(other : field&&)
+ width() : int {const}
+ height() : int {const}
+ get(x : int, y : int) : cell&
+ get(x : int, y : int) : const cell& {const}
+ operator=(other : const field&) : field&
+ operator=(other : field&&) : field&
<<friend>>
+ operator<<(out : std::ostream&, f : const field&) : std::ostream&
}
rectangle entry_exit_generator <<typedef>> {
}
class cell {
- _type : int = 0
- _item : artifact
--
- __copy(other : const cell&)
- __move(other : cell&&)
+ cell(type : int = CELL_NOTHING, item : const artifact& = artifact())
+ cell(other : const cell&)
+ cell(other : cell&&)
+ type() : int {const}
+ set_type(type : int)
+ item() : const artifact& {const}
+ set_item(item : const artifact&)
+ operator=(other : const cell&) : cell&
+ operator=(other : cell&&) : cell&
<<friend>>
+ operator<<(out : std::ostream&, c : const cell&) : std::stream&
}
enum cell_types {
CELL_NOTHING = 0
CELL_ENTRY = 1
CELL_EXIT = 2
}
class artifact {
- _data : std::unique_ptr<data>
--
- __copy(other : const artifact&)
- __move(other : artifact&&)
- {static} get_id() : int
+ artifact()
+ artifact(id : int)
+ artifact(other : const artifact&)
+ artifact(other : artifact&&
+ type() : int {const}
+ id() : int {const}
+ is_none() : bool {const}
+ operator=(other : const artifact&) : artifact&
+ operator=(other : artifact&&) : artifact&
<<friend>>
+ operator<<(out : std::ostream&, art : const artifact&) : std::ostream&
}
class artifact::data {
- _id : int = get_id() {const}
- _type : int
--
+ data(type: int)
+ data(other : const data&)
}
enum artifact_types {
ART_NOTHING = 0
}
vector .d.> iterator: <<creates>>
vector .d.> const_iterator: <<creates>>
iterator .d.> vector_iterator: <<import>>
const_iterator .d.> vector_iterator: <<import>>
iterator .r[hidden].> const_iterator
vector_iterator ..> vector: <<friend>>
vector -r-* matrix
matrix .d.> column
column .l.> vector: <<import>>
matrix -* field
field .> pair: <<creates>>
field .d.> entry_exit_generator
entry_exit_generator .> pair: <<import>>
cell -l-o field
cell_types -u-o cell
artifact -l-o cell
artifact::data -u-* artifact
artifact::data .d.> artifact: <<friend>>
artifact_types -r-o artifact::data
@enduml | false | true | false | false | class |
f6df22856e4337ca04d1a956db96028f0dc77d7f | 261f3d4fd238b13676398b33df2304142bf505a0 | /docs/EventDiagram/SequenceDiagram/CommandEventCountdown.puml | 4322b2fc5b4a5554cb72357bddc157799f1ba815 | [] | no_license | AY2021S1-CS2113T-F14-1/tp | 8a917e7e02274af464095b31ee695282f294737c | 9e05f06f9f338e4059e96faa992c22a1bad412e7 | refs/heads/master | 2023-01-09T19:46:16.021830 | 2020-11-13T12:07:10 | 2020-11-13T12:07:10 | 300,518,941 | 0 | 4 | null | 2020-11-13T12:07:11 | 2020-10-02T06:13:45 | Java | UTF-8 | PlantUML | false | false | 705 | puml | @startuml
-> ":CommandEventCountdown" : execute()
activate ":CommandEventCountdown"
":CommandEventCountdown" -> ":EventList":countdownView()
activate ":EventList"
alt empty ArrayList
":EventList" --> ":CommandEventCountdown"
else else
loop until end of ArrayList
":EventList" -> ":Event": printEvent()
activate ":Event"
":Event" -->":EventList"
deactivate ":Event"
":EventList" -> ":Event": numberOfDaysLeft()
activate ":Event"
":Event" --> ":EventList"
deactivate ":Event"
return output
deactivate ":EventList"
end
<-- ":CommandEventCountdown" : output
end
deactivate ":CommandEventCountdown"
@enduml | false | true | false | false | sequence |
d7b10c96a798c8d3b2214dc42e34d87b77cd3386 | 0dd85a64e032128821cd978d9871185c91324af5 | /UML/diagram.puml | d3d5371bc6d92e09778505ee6167f7faf27c8e68 | [] | no_license | graciebliss/Bliss-cop3330-assignment4 | 5f82c8ba1e4d805aeb160dc1eebcfcdf60463fe3 | 63b7c63102ba13f934bffa1cccdb6888a23521b2 | refs/heads/master | 2023-06-12T00:04:09.211641 | 2021-07-11T16:21:25 | 2021-07-11T16:21:25 | 383,243,109 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,005 | puml | @startuml
'https://plantuml.com/class-diagram
class ListProgram {
+ main()
+ start()
}
class ListProgramController {
+ addListClick(ActionEvent actionEvent)
+ removeListClick(ActionEvent actionEvent)
+ addClick(ActionEvent actionEvent)
+ removeClick(ActionEvent actionEvent)
+ editListClick(ActionEvent actionEvent)
+ editClick(ActionEvent actionEvent)
+ markCompleteClick(ActionEvent actionEvent)
+ displayAll(ActionEvent actionEvent)
+ SaveOneClick(ActionEvent actionEvent)
+ saveAllClick(ActionEvent actionEvent)
+ loadOneClick(ActionEvent actionEvent)
+ displayComplete(ActionEvent actionEvent)
+ displayIncomplete(ActionEvent actionEvent)
+ loadMultipleClick(ActionEvent actionEvent)
+ sortByDateClick(ActionEvent actionEvent)
}
class Lists {
ArrayList<List> Lists
+ createLists()
+ addAList(List list)
+ removeAList(List list)
+ editList(List list)
+ loadList(File file)
+ loadLists(File file)
+ saveList(File file, List list)
+ saveLists(File file, ArrayList<List>)
}
class List {
String listTitle
ArrayList<Tasks> Tasks
ArrayList<Tasks> CompletedTasks
ArrayList<Tasks> IncompleteTasks
+ createList(String title)
+ setTitle(String title)
+ getTitle()
+ getTasks()
+ addTask(Task task)
+ editTask(Task task)
+ removeTask(Task task)
+ markCompleted(Boolean completed)
+ displayCompletedTasks()
+ displayIncompleteTasks()
+ sortByDate(List list)
+ toString()
}
class Task {
String descript
String date
Boolean isCompleted
+ createTask(String descript, String date, Boolean isCompleted)
+ setDescription(String descript)
+ setDate(String date)
+ setIsCompleted(Boolean isCompleted)
+ getDescription()
+ getDate()
+ getIsCompleted()
+ toString()
}
javafx.Application <|-- ListProgram
ListProgram -- ListProgramController
ListProgramController *-> Lists
Lists *--> List
List *--> Task
@enduml | false | true | false | false | class |
fc1d1efda467c8b993a4c7b1fc115ca5513e0430 | 9bcd4da5e5454922139d0afefc782a997988ad1f | /docs/SprintC/US/US9/US9_SD_V2.puml | d3e93efca898ee8b21ad309f1ed505daf7425c96 | [
"MIT"
] | permissive | wjacoud/DynaByte | 13f042b210f17830aa3eb31558d3f83d587ab436 | 3ac6b5e2d2e7559ec3e230db7848a1b43d3b40e3 | refs/heads/main | 2023-08-27T09:20:01.825322 | 2021-11-11T17:15:05 | 2021-11-11T17:15:05 | 427,082,047 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,294 | puml | @startuml
autonumber
'hide footbox
actor "Administrator" as ADM
participant ":CreateTestTypeUI" as UI
participant "User" as US
participant ":CreateTestTypeController" as CTRL
participant "Company" as _APP
participant "TestType" as TT
activate ADM
ADM -> UI : asks to create a new parameter category
activate UI
UI -> US : login = login()
activate US
deactivate US
UI --> ADM : requests data (code, description, collectingMethod)
deactivate UI
ADM -> UI : types requested data
activate UI
UI -> CTRL : createTestType (code, description, collectingMethod)
activate CTRL
CTRL -> _APP : TT = createTestType (code, description, collectingMethod)
activate _APP
_APP -> TT : create(code, description, collectingMethod)
activate TT
deactivate TT
deactivate _APP
|||
CTRL -> _APP : validateTestType(TT)
activate _APP
deactivate _APP
deactivate CTRL
UI --> ADM : shows the data and requests a confirmation
deactivate UI
ADM -> UI : confirms the data
activate UI
UI -> CTRL : saveTestType()
activate CTRL
CTRL -> _APP : saveTestType(TT)
activate _APP
_APP -> _APP : validateTestType(TT)
activate _APP
deactivate _APP
_APP -> _APP : addTestType(TT)
activate _APP
deactivate _APP
deactivate _APP
deactivate CTRL
UI --> ADM : informs operation was a success
deactivate UI
deactivate ADM
@enduml | false | true | false | false | usecase |
9fbe8b0c53817c1c14879e7f820b6ce9b970d34c | 08ac8d04314c7ce7694bf90da87438901341267a | /document/sequence_diagram/us-1.puml | f1c7c64995ae57a71877ef2246455833a2d077ad | [
"MIT"
] | permissive | kamontat/CheckIDNumberA | 5ec59984f4018462213843407ffe86dccf9cecb6 | f75a59d72e1567b3bafd16160b756ee6cd9fa1bb | refs/heads/master | 2020-12-30T11:28:39.059077 | 2017-07-01T15:28:48 | 2017-07-01T15:28:48 | 91,566,835 | 0 | 0 | null | 2017-07-01T14:08:43 | 2017-05-17T11:02:23 | Kotlin | UTF-8 | PlantUML | false | false | 1,056 | puml | @startuml
skinparam sequenceArrowThickness 2
skinparam sequenceParticipant underline
actor User
boundary MainActivity
boundary InputFragment
entity IDNumber
entity Strategy
User -> MainActivity: afterTextChanged(rawID);
activate MainActivity #FFBBBB
MainActivity -> MainActivity: updateInput();
MainActivity -> MainActivity: getInputText();
MainActivity -> InputFragment: getInput();
activate MainActivity #DarkSalmon
MainActivity <-- InputFragment: input.getText().toString();
deactivate MainActivity
MainActivity -> IDNumber: new IDNumber(input)
activate IDNumber #FFBBBB
IDNumber -> IDNumber: setId(id);
IDNumber -> IDNumber: isIDCorrect();
IDNumber -> Strategy: checking(id);
IDNumber <-- Strategy: status
MainActivity <-- IDNumber: created
MainActivity -> MainActivity: updateInput(idNumber);
MainActivity -> IDNumber: getStatus();
MainActivity <-- IDNumber: status
MainActivity -> InputFragment: setButton(status == Status.OK)
MainActivity -> InputFragment: updateStatus(status, resource)
deactivate IDNumber
deactivate MainActivity
@enduml | false | true | false | false | usecase |
081ad9d66e36c39396fd4c14e694af32148e0cba | 5c415270a84b05da7de1098123f86e2e7538ed63 | /uml/ex_1/User.puml | e18df7846b2d32ee310c9d0acb1b44c432faec68 | [] | no_license | maxime-bambara/php-poo-learning | 9ab934fc60a046cb3693af551ab87d0581e1f1d0 | 38098553777fbfa15367706fb6637636ebf0b3f0 | refs/heads/master | 2023-02-11T13:07:19.012140 | 2021-01-12T09:00:43 | 2021-01-12T09:00:43 | 328,599,965 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 169 | puml | @startuml
class User {
- friends: array
+ getFriends(): array
+ addFriend(Friend)
+ removeFriend(Friend)
+ likeVideo(): void
+ writeComment(): void
}
@enduml | false | true | false | false | class |
c54cbe992f1e9ac1d8e8499232b338a79179551a | 9a4561cc781cb247061671d4646eb7693b998dfb | /diagrams/devices.puml | dc0199dd2b285847ac50d9b0c5d9506fcb7da3ac | [
"MIT"
] | permissive | chriamue/corona-diary | 967643a41069cc9a4eec0dbda05fff628e70bf0b | dcfcbba649d366ffc8d0fe70b05eddcba70a8b9f | refs/heads/master | 2022-07-23T17:25:07.368435 | 2022-07-08T07:12:22 | 2022-07-08T07:12:22 | 250,781,940 | 0 | 0 | MIT | 2022-07-08T07:12:22 | 2020-03-28T11:52:04 | TypeScript | UTF-8 | PlantUML | false | false | 249 | puml | @startuml devices
cloud server
actor person1
actor person2
card "<&phone>" as phone1
card "<&phone>" as phone2
person1 -right- phone1
person2 -left- phone2
phone1 <-right-> phone2 : <&bluetooth><&wifi>
phone1 -up-> server
phone2 -up-> server
@enduml | false | true | false | false | sequence |
ce1d4814fb876a089d7d2efd57ef4f9cf491d79e | 2d4c9e512a49683156794f355c73ebbde4f9ef31 | /Test Manager Module.puml | 9d6297893cafb2c2284e8df56b7eafbec02d4adc | [] | no_license | jacxon4/test-manager-module-assessment | 69952959b889e84629aa3114b8c43ef974d18fce | 8fb174fdc60b934dd863bde776e16cf2dc318c33 | refs/heads/master | 2020-05-04T11:04:10.341415 | 2019-04-02T14:53:19 | 2019-04-02T14:53:19 | 179,100,054 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,107 | puml | @startuml
Interface ITest
TestManagerModule ...> ITest
TestManagerModule ...> IOperation
ITest <|.. MicrobiologyTest
ITest <|.. BiochemistryTest
ITest <|.. HaematologyTest
ITest <|.. ImmunologyTest
Order o-- ITest
IOperation <|.. ValidateOperation
IOperation <|.. RepeatOperation
Order : - tests: ITest[]
ITest : {abstract}accept(IOperation)
ITest : - testType: string
ITest : - name: string
MicrobiologyTest : - microbiologyTestProp: string
MicrobiologyTest : +accept(IOperation){operation.perform(this)}
BiochemistryTest : - biochemistryTestProp: string
BiochemistryTest : +accept(IOperation){operation.perform(this)}
HaematologyTest : - haematologyTestProp: string
HaematologyTest : +accept(IOperation){operation.perform(this)}
ImmunologyTest : - immunologyTestProp: string
ImmunologyTest : +accept(IOperation){operation.perform(this)}
Interface IOperation
IOperation : {abstract}perform(ITest)
ValidateOperation : +perform(ITest)
RepeatOperation : +perform(ITest)
enum TestTypes{
Haematology
Microbiology
Immunology
Biochemistry
}
@enduml | false | true | false | false | class |
a1661fc8dade2e173abc4ceb97133cc029a4aa2f | 6c369b570f222c894964989ee63b706c69e8174d | /docs/dev/design_patterns/command.puml | 579a309deddb32a82ed622b3d38bf20c21d73b95 | [] | 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 | 183 | puml | @startuml
Command <|-- ConcreteCommand1
Command <|-- ConcreteCommand2
class Command {
execute()
}
class ConcreteCommand1 {
execute()
}
class ConcreteCommand2 {
execute()
}
@enduml | false | true | false | false | class |
a230c38a28537fbb1926c5176e7a4b490db85a76 | 3d33f4e31702fdba9b2d095dd3d91d711409264c | /class-diagram/core-endorser-class.puml | 681b16651a5b4b5b7cc8668d984cb346d811ddf5 | [
"Apache-2.0",
"CC-BY-4.0"
] | permissive | JulienGuo/fabric-addsm | 81a181dd4f91160abbd9f131d87e8c187a32c542 | 8a489300031d07c09f44fc0f1687793f6eaaa1c0 | refs/heads/master | 2021-05-04T21:27:43.690594 | 2018-02-02T05:43:34 | 2018-02-02T05:43:34 | 119,926,380 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 252 | puml | @startuml
namespace github.com\\hyperledger\\fabric\\core\\endorser {
class chaincodeError {
status int32
msg string
}
}
namespace github.com\\hyperledger\\fabric\\core\\endorser {
class Endorser {
policyChecker policy.PolicyChecker
}
}
@enduml | false | true | false | false | class |
1ef439d036d50022db4384a2e954d98de2f9e5dd | c9d49168edc406499204f69721424bb6deded5fd | /Modelo/Usuario.plantuml | 8a5ae03600e7923173a9f645415be8e573f402d9 | [
"MIT"
] | permissive | JonatasAfonso/poc-consultorio-comum | 1d2880314bacbf7809f59c2d76c8619e73bf6253 | 936a507ec888eb978abfdbf44c7cb4fe30a3633d | refs/heads/main | 2023-03-12T19:39:26.314301 | 2021-02-26T12:35:39 | 2021-02-26T12:35:39 | 342,554,404 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 83 | plantuml | @startuml
class Usuario{
Id : Guid
Login : String
Password : String
}
@enduml | false | true | false | false | class |
43b01f863d97f394b22968d046ba4098dfcdbbbd | a9baa2e8564fa35e0cab0bed8b3f0a9e3648ef37 | /fdv.service.localization/src/main/java/de/gematik/ti/epa/android/fdv/service/localization/localization.plantuml | 294d1cbb1104fb6d9f40ccba9d3568a3f655fb81 | [
"Apache-2.0"
] | permissive | gematik/ref-ePA-Service-Localization-Android | e24a058725921e7d089bdfecb2a1b409fef15ce0 | 89eed874678075f56f8173f8e103e0c2199f15a6 | refs/heads/master | 2022-01-12T22:35:53.149197 | 2022-01-07T07:24:07 | 2022-01-07T07:24:07 | 216,012,799 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,149 | plantuml | @startuml
title __LOCALIZATION's Class Diagram__\n
namespace de.gematik.ti.epa.android.fdv.service.localization {
abstract class de.gematik.ti.epa.android.fdv.service.localization.AbstractServiceLocator {
{static} - PORT : int
{static} - SCHEME : String
- dnsTxtRecordValues : Map<String, GatewayModulePathType>
- fqdn : String
- lookupStatus : LookupStatus
- running : boolean
+ endpointURLForInterface()
+ getHomeCommunityId()
+ getLookupStatus()
+ isRunning()
+ lookup()
# answerCallback()
{abstract} # doResolve()
# setRunning()
~ handleAnswer()
~ setLookupStatus()
- checkTxtVersion()
- clear()
- fillDnsTxtRecordValues()
- fillModuleList()
- handleRecordsAsStrings()
- handleTTL()
- setFqdn()
}
}
namespace de.gematik.ti.epa.android.fdv.service.localization {
class de.gematik.ti.epa.android.fdv.service.localization.GatewayModulePathType {
- path : String
- validUntil : Date
+ GatewayModulePathType()
+ getPath()
+ getValidUntil()
}
}
namespace de.gematik.ti.epa.android.fdv.service.localization {
class de.gematik.ti.epa.android.fdv.service.localization.ServiceLocator {
- abstractServiceLocator : IServiceLocalizer
+ ServiceLocator()
+ endpointURLForInterface()
+ getHomeCommunityId()
+ getLookupStatus()
+ lookup()
}
}
namespace de.gematik.ti.epa.android.fdv.service.localization {
class de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV10 {
+ ServiceLocatorV10()
# doResolve()
- initializeResolverCallback()
}
}
namespace de.gematik.ti.epa.android.fdv.service.localization {
class de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV9 {
{static} - DEFAULT_TTL : int
{static} - TAG : String
- dnssecResolverApi : DnssecResolverApi
+ ServiceLocatorV9()
# doResolve()
- getApplicationUsingReflection1()
- getApplicationUsingReflection2()
}
}
de.gematik.ti.epa.android.fdv.service.localization.AbstractServiceLocator .up.|> de.gematik.ti.epa.fdv.service.localization.spi.IServiceLocalizer
de.gematik.ti.epa.android.fdv.service.localization.ServiceLocator .up.|> de.gematik.ti.epa.fdv.service.localization.spi.IServiceLocalizer
de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV10 .up.|> de.gematik.ti.epa.fdv.service.localization.spi.IServiceLocalizer
de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV10 -up-|> de.gematik.ti.epa.android.fdv.service.localization.AbstractServiceLocator
de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV9 -up-|> de.gematik.ti.epa.android.fdv.service.localization.AbstractServiceLocator
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 |
64c99f2fdd1b1305d7ede592f3c2b0dea6ebeec1 | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/behavioral/Command.puml | 9a506f61d225433be8a54301d612cb25cb1eca3c | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 228 | puml | @startuml
scale 1024 height
Command <|.. ConcreteCommand
Receiver <-- ConcreteCommand
interface Command{
excute()
}
class ConcreteCommand {
-Receiver receiver
+excute();
}
class Receiver{
+action();
}
@enduml | false | true | false | false | class |
1ae90c6ca982e8b631de2772554dab43923536ed | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Core/MORR/Session/SessionConfiguration.puml | 42cefbe580de26c596cc122ce296ae4c9e6017b6 | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 418 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
interface IConfiguration
IConfiguration <|-- SessionConfiguration
!startsub default
class SessionConfiguration {
+ Encoders : IEnumerable<Type> <<get>> <<set>>
+ Decoders : IEnumerable<Type>? <<get>> <<set>>
+ RecordingDirectory : DirectoryPath <<get>> <<set>>
+ Parse(configuration : RawConfiguration) : void
}
!endsub
@enduml
| false | true | false | false | class |
1745ad67baae8cdc9fe735edecff612ca1999fb8 | 94a499e05faee7347671752ec0628993dff072ea | /map_based_resources/Point.puml | 501697b3549800f3bafc423e3ae8524fe5a57d81 | [] | no_license | AlandSailingRobots/AerialImagesToWaterDepth | b503df8ab6ee90dcab29604d57ff3dd3afd11e22 | fa486a0e38f1f252fa533b76eaf3424cbf33847e | refs/heads/develop | 2020-04-22T11:22:13.761365 | 2019-11-27T19:34:46 | 2019-11-27T19:34:46 | 170,337,749 | 2 | 3 | null | 2019-02-18T14:53:35 | 2019-02-12T15:04:16 | null | UTF-8 | PlantUML | false | false | 1,779 | puml | @startuml
title Point
class DataPoint {
+ FinnishSystem : str
+ MeasurableSystem : str
+ coordinate_type : str
+ decimals_in_point : int
+ level : int
- __init__(latitude, longitude, coordinate_type, level)
- reduceDecimals(decimal=decimals_in_point)
- convert_coordinate_systems(inverse=False, destination=FinnishSystem, save_in_point=False, return_point=False)
- convert_to_correct_coordinate_system(initial_point, correct_coordinate_system=MeasurableSystem)
- calculate_distance_to_point(other_point)
- circle_distance(distance)
- create_neighbouring_point(distance, heading, rounding=decimals_in_point)
}
class LocationInImage {
+ height: float
+ width: float
- __init__(width, height)
}
class ImagePoint{
+ cropped_images: Dict[Any, Image]
+ data_point_in_image: LocationInImage
+ image_tile : ImageTile
+ layer: MapLayer
+ name: str
+ web_map : MapService
_ __init__(data_point_in_image, image_tile, web_map, layer)
_ get_box_around(size, data_point=None)
_ get_cropped_image(size, square_size=3, lock=None)
_ get_image_bounding_box(size, square_size, lock=None)
_ make_image_bigger(data_point_image, new_image_size, floor_square_size, lock=None)
_ show_image_with_point()
}
class MeasurementPoint {
+ data_point: DataPoint
+ image_points: List[ImagePoint]
- __init__(data_point)
- add_image_point(image_point)
- get_cropped_images(size, lock=None)
- get_cropped_image_single(size, position=0, lock=None)
- retrieve_all_images()
}
'!includesub MapResources.puml!ImageTile
MeasurementPoint "1" *-- "*" ImagePoint
MeasurementPoint "1" *-- "1" DataPoint
ImageTile "1" --*"1" ImagePoint
LocationInImage "1" *-- "1" ImagePoint
@enduml
| false | true | false | false | class |
0323045658da341d85d179ff029b7e0a2f9a4331 | c6b7af9b7d90213829e96b106a60674b4ea18aae | /documents/diagram/evaluation/evaluationSequence.puml | 827e2e019bbbaf2b8d24f40a3c00c3df9ed2618d | [
"MIT"
] | permissive | LaunoisRemy/ToolShare | b718ce76b9da3f545977d6b4efd1693ad3d0444e | 90f1877b10f69e6cf4f16cbfcd4b7056cba54977 | refs/heads/master | 2023-02-14T22:48:04.878284 | 2021-01-11T16:58:14 | 2021-01-11T16:58:14 | 316,703,051 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,228 | puml | @startuml
title Evaluation Diagram
actor User
participant "History (fxml)"
participant "Evaluation (fxml)" as evView
participant HistoryController
participant EvaluationController
participant EvaluationFacade
participant SessionFacade
participant ScoreOfferDao
participant AbstractFactoryDAO
participant CommentDao
participant FactoryDAOMySQL
participant ScoreOfferDAOMySql
participant CommentDAOMySQL
participant Connection
participant Statement
database DB
"History (fxml)"-->User: Display history offers
activate "History (fxml)"
activate User
activate DB
activate SessionFacade
activate Connection
User->"History (fxml)": Rate an offer
"History (fxml)"->HistoryController: handleNewRate(actionEvent ActionEvent)
activate HistoryController
HistoryController --> evView : Display view to rate
deactivate HistoryController
activate evView
evView -> EvaluationController : handleRate(actionEvent ActionEvent)
activate EvaluationController
EvaluationController->EvaluationFacade: rate(offerID : int, rate : int)
activate EvaluationFacade
EvaluationFacade->ScoreOfferDao : getInstance()
alt if (first getInstance)
activate ScoreOfferDao
ScoreOfferDao -> AbstractFactoryDAO : getInstance()
activate AbstractFactoryDAO
AbstractFactoryDAO --> ScoreOfferDao : FactoryDAOMySQL
deactivate AbstractFactoryDAO
ScoreOfferDao -> FactoryDAOMySQL : getScoreOfferDao()
activate FactoryDAOMySQL
FactoryDAOMySQL -> ScoreOfferDAOMySql **:Create(connection)
activate ScoreOfferDAOMySql
FactoryDAOMySQL --> ScoreOfferDao : ScoreOfferDaoMySQL
end
ScoreOfferDao --> EvaluationFacade : ScoreOfferDaoMySQL
deactivate FactoryDAOMySQL
EvaluationFacade -> SessionFacade : getUser()
SessionFacade --> EvaluationFacade : user
EvaluationFacade->ScoreOfferDAOMySql: create(new ScoreOffer(offerID: int, rate :int, userId : int))
ScoreOfferDAOMySql->Connection: prepareStatement()
Connection-->Statement **: Create
activate Statement
Connection-->ScoreOfferDAOMySql: Statement
ScoreOfferDAOMySql->Statement:executeQuery()
Statement->DB: SQL Query
DB->Statement:Result
Statement-->ScoreOfferDAOMySql: ResultSet
deactivate Statement
ScoreOfferDAOMySql-->EvaluationFacade: return scoreOffer
deactivate ScoreOfferDAOMySql
EvaluationFacade --> EvaluationController : return scoreOffer
note right
Return ScoreOffer in this case
(Because we put ourselves in the situation
where there is no system error.)
end note
EvaluationController --> evView : Display box choice comment
evView --> User : Display box choice comment
User -> evView : Choose to comment
evView -> EvaluationController : handleComment(actionEvent ActionEvent)
deactivate evView
EvaluationController -> EvaluationFacade : comment(offerId : int, comment : String, ScoreOfferId : int)
EvaluationFacade->CommentDao : getInstance()
alt if (first getInstance)
activate CommentDao
CommentDao -> AbstractFactoryDAO : getInstance()
activate AbstractFactoryDAO
AbstractFactoryDAO --> CommentDao : FactoryDAOMySQL
deactivate AbstractFactoryDAO
CommentDao -> FactoryDAOMySQL : getCommentDao()
activate FactoryDAOMySQL
FactoryDAOMySQL -> CommentDAOMySQL **:Create(connection)
activate CommentDAOMySQL
FactoryDAOMySQL --> CommentDao : CommentDao
deactivate FactoryDAOMySQL
end
CommentDao --> EvaluationFacade : CommentDAOMySQL
EvaluationFacade -> CommentDAOMySQL : create(new Comment(offerId : int, comment : String, ScoreOfferId : int))
CommentDAOMySQL->Connection: prepareStatement()
Connection-->Statement **: Create
activate Statement
Connection-->CommentDAOMySQL: Statement
CommentDAOMySQL->Statement:executeQuery()
Statement->DB: SQL Query
DB->Statement:Result
Statement-->CommentDAOMySQL: ResultSet
deactivate Statement
CommentDAOMySQL --> EvaluationFacade : return comment
deactivate CommentDAOMySQL
EvaluationFacade --> EvaluationController : return comment
deactivate EvaluationFacade
EvaluationController --> "History (fxml)" : Display history
deactivate EvaluationController
deactivate EvaluationFacade
deactivate HistoryController
"History (fxml)" --> User: Display corresponding View
deactivate "History (fxml)"
deactivate DB
deactivate User
@enduml | false | true | false | false | usecase |
d2b78144c2fb4bf16451039ec4522c5be1e06ffb | 5482cd2eb495a0ac03a4876322898e82acd6b5b4 | /fhir401/docs/plant-diagrams/gic-scenario.puml | adb900f8047805cfb6d1d9382ac449357c0a341a | [] | no_license | QualityMeasurement/davinci-gic | d24b80eacd6474d984c39a4ef6faeccbd339798c | e8583a29d1ae7075d5215c1fff840849e6a3f05f | refs/heads/master | 2023-04-27T01:43:41.142315 | 2021-05-18T18:07:12 | 2021-05-18T18:07:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 218 | puml | @startuml GIC_Scenario
title GIC Scenario
participant "Client" as Client
participant "Server" as Server
Client -> Server: Request $care-gaps Operation
Server -> Client: $care-gaps Bundle (care gap document)
@enduml
| false | true | false | false | sequence |
f31873199da19eee81db8feeb79341670c8d5ab7 | 7844bf3adaf752c1a3819e0d540d46051b36ab07 | /docs/behavioral_patterns/observer.puml | 574412f9d9775b7111921681d55675efe0b40f9a | [
"MIT"
] | permissive | johanvergeer/python-design-patterns | 4f42463eabdfad50226aa019904b702681aba1fe | db63eeb5dd3c6536ba75dc70369aa895a4cf9d0c | refs/heads/master | 2021-01-02T17:38:47.291145 | 2020-02-18T16:11:20 | 2020-02-18T16:11:27 | 239,725,177 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 637 | puml | @startuml
package observer {
enum WeatherType {
+ COLD
+ RAINY
+ SUNNY
+ WINDY
}
class Weather {
- _current_weather : WeatherType
+ add_observer(obs : WeatherObserver)
+ remove_observer(obs : WeatherObserver)
+ time_passes()
- _notify_observers()
}
class Hobbits {
+ Hobbits()
+ update(currentWeather : WeatherType)
}
class Orcs {
+ Orcs()
+ update(currentWeather : WeatherType)
}
interface WeatherObserver {
+ update(WeatherType) {abstract}
}
}
Weather --> "0..* _observers" WeatherObserver
Hobbits .up.|> WeatherObserver
Orcs .up.|> WeatherObserver
@enduml
| false | true | false | false | class |
c4e77e0931b768817da4d04cf9865f46e74e355c | 9c44ede4b46571a3d9a11918caa7a3d44a2c3105 | /src/main/java/com/wwxiong/patterns/builder/builder.puml | b6053a7643331cbab2e47f6458ffe26c208e1b91 | [] | no_license | LensXiong/design-pattern | df4ebd92185cf4d001556b1f417d45218e0de7ff | 09b3ae3a6bfddc0c8362580e92a4b2e41b2ffae7 | refs/heads/master | 2020-09-20T18:44:04.657239 | 2019-12-04T08:56:46 | 2019-12-04T08:56:46 | 224,562,008 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 555 | puml | @startuml
abstract HouseBuilder
BuildingCommon --|> HouseBuilder
BuildingHigh --|> HouseBuilder
BuildingOther --|> HouseBuilder
House --* HouseBuilder
HouseBuilder --o HouseDirector
Client ..> HouseDirector
Client ..> BuildingCommon
Client ..> BuildingHigh
Client ..> BuildingOther
HouseBuilder : house:House = new House()
HouseBuilder : buildBasic():void
HouseBuilder : buildWalls():void
HouseBuilder : roofed():void
Client : buildingCommon:BuildingCommon ...
Client : houseDirector:HouseDirector
HouseDirector : houseBuilder:HouseBuilder
@enduml | false | true | false | false | class |
fd727494937edc304d4bede3e9178989819e8e98 | ad220fbaa3799ab6669a89b07f799234424efa96 | /src/controllers/controllers.plantuml | 3ddb90d7e3d9806b8b8352e0e359657f07cb771d | [] | no_license | Bert54/ACL_2019_TP11_GROUPE3 | 271befc364675de7f346618af7e51d542c922a21 | ec7e5036d1bfb81e5b70b6f05579cb938485f7d7 | refs/heads/master | 2020-11-27T03:04:42.612167 | 2019-12-14T01:38:56 | 2019-12-14T01:38:56 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,762 | plantuml | @startuml
title __CONTROLLERS's Class Diagram__\n
namespace controllers {
class controllers.ExitAppMouseController {
+ ExitAppMouseController()
+ mouseClicked()
+ mouseEntered()
+ mouseExited()
+ mousePressed()
+ mouseReleased()
}
}
namespace controllers {
class controllers.InstructionMouseController {
- closeGameButton : JPanel
- instructionGameButton : JPanel
- retourGameButton : JPanel
- startGameButton : JPanel
+ InstructionMouseController()
+ mouseClicked()
+ mouseEntered()
+ mouseExited()
+ mousePressed()
+ mouseReleased()
}
}
namespace controllers {
class controllers.PauseMouseController {
+ PauseMouseController()
+ mouseClicked()
+ mouseEntered()
+ mouseExited()
+ mousePressed()
+ mouseReleased()
}
}
namespace controllers {
class controllers.PlayMouseController {
+ PlayMouseController()
+ mouseClicked()
+ mouseEntered()
+ mouseExited()
+ mousePressed()
+ mouseReleased()
}
}
namespace controllers {
class controllers.RetourMouseController {
+ RetourMouseController()
+ mouseClicked()
+ mouseEntered()
+ mouseExited()
+ mousePressed()
+ mouseReleased()
}
}
namespace controllers {
class controllers.StartGameMouseController {
- closeGameButton : JPanel
- instructionGameButton : JPanel
- retourGameButton : JPanel
- startGameButton : JPanel
+ StartGameMouseController()
+ mouseClicked()
+ mouseEntered()
+ mouseExited()
+ mousePressed()
+ mouseReleased()
}
}
controllers.ExitAppMouseController .up.|> java.awt.event.MouseListener
controllers.ExitAppMouseController o-- engine.GameController : worldController
controllers.InstructionMouseController .up.|> java.awt.event.MouseListener
controllers.InstructionMouseController o-- engine.GameController : worldController
controllers.PauseMouseController .up.|> java.awt.event.MouseListener
controllers.PauseMouseController o-- engine.GameController : worldController
controllers.PlayMouseController .up.|> java.awt.event.MouseListener
controllers.PlayMouseController o-- engine.GameController : worldController
controllers.RetourMouseController .up.|> java.awt.event.MouseListener
controllers.RetourMouseController o-- engine.GameController : worldController
controllers.StartGameMouseController .up.|> java.awt.event.MouseListener
controllers.StartGameMouseController o-- engine.GameController : worldController
@enduml
| false | true | false | false | class |
f3c5dc19de7d09c7e5f368b45a549177f06edfe9 | a8738417eab95196160fc624c4ddb0de55b09022 | /samples/complex_workflow.puml | 6df233cbdd3c06fb242c1f6dc55ec2ba130e443a | [] | no_license | Allsimon/qanda | 2d4e4cf0ca4245d29530bf896ec6bd312eef7b69 | 4977d637e987a564d68e2622899bbee842c5837b | refs/heads/master | 2022-12-25T02:26:15.058991 | 2020-07-20T18:30:27 | 2020-07-20T18:30:27 | 300,301,719 | 0 | 0 | null | 2020-10-01T14:07:10 | 2020-10-01T14:07:09 | null | UTF-8 | PlantUML | false | false | 726 | puml | @startuml qanda
hide empty description
state "Question 1" as q1
[*] --> q1
q1 --> q2 : Anwser leading to question 2
q1 --> q3 : Anwser leading to question 3
q1 --> [*] : One possible answer from question 1
state "Question 2" as q2
[*] --> q2
q2 --> q3 : Anwser leading to question 3
q2 --> q4 : Anwser leading to question 4
state "Question 3" as q3
q3 --> q4 : Anwser leading to question 4
q3 --> q5 : Anwser leading to question 5
q3 --> [*] : One possible answer from question 3
state "Question 4" as q4
q4 --> q1 : Anwser leading to question 1
q4 --> q5 : Anwser leading to question 5
state "Question 5" as q5
q5 --> [*] : One possible answer from question 5
q5 --> [*] : Another possible answer from question 5
@enduml | false | true | false | false | sequence |
92a5bf57575160ae7d205cd9d984ff85d6598f5c | 296d4ac94193286428f4a2cd6736a2ecac4b8081 | /docs/uml_class_common_adapter.puml | b9ae85d53aeab811fb7caec5dab788cc0ba8a413 | [] | no_license | shellever/ListView | 4d70577c0cbebe35054d422a61cc61cc4a33f626 | 71d05d202f2c0ea24db0e19e231933d9a4f38843 | refs/heads/master | 2020-06-28T16:04:03.209709 | 2016-11-26T09:05:27 | 2016-11-26T09:05:27 | 74,490,371 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,482 | puml | @startuml
class Bean {
private String title;
private String desc;
private String time;
private String phone;
private boolean isChecked;
__
..Constructor ..
public Bean();
public Bean(String title, String desc, String time, String phone);
.. Getter and Setter ..
public String getTitle();
public void setTitle(String title);
public String getDesc();
public void setDesc(String desc);
public String getTime();
public void setTime(String time);
public String getPhone();
public void setPhone(String phone);
public boolean isChecked();
public void setChecked(boolean checked);
.. toString ..
public String toString();
}
class ViewHolder {
private SparseArray<View> mViews;
private int mPosition;
private View mConvertView;
__
.. Private Constructor ..
private ViewHolder(Context context, ViewGroup parent, int layoutId, int position);
.. Public Method ..
public static ViewHolder get(Context context, View convertView, ViewGroup parent, int layoutId, int position);
public View getView(int viewId);
public View getConvertView();
.. Setter Method ..
public ViewHolder setText(int viewId, String text);
public ViewHolder setImageResource(int viewId, int resId);
public ViewHolder setImageBitmap(int viewId, Bitmap bitmap);
public ViewHolder setImageURI(int viewId, Uri uri);
}
abstract class CommonAdapter<T> {
protected Context mContext;
protected List<T> mDataList;
protected LayoutInflater mInflater;
protected int mLayoutId;
__
.. Constructor ..
public CommonAdapter(Context context, List<T> dataList, int layoutId);
.. BaseAdapter ..
public int getCount();
public T getItem(int position);
public long getItemId(int position);
public View getView(int position, View convertView, ViewGroup parent);
.. Abstract Method ..
public abstract void convert(ViewHolder holder, T t);
}
BaseAdapter <|-- CommonAdapter : extends
ViewHolder <.. CommonAdapter : parameterify
class CustomCommonAdapter<Bean> {
public CustomCommonAdapter(Context context, List<Bean> dataList, int layoutId);
public void convert(ViewHolder holder, final Bean bean);
}
CommonAdapter <|-- CustomCommonAdapter : extends
Bean <.. CustomCommonAdapter : genericify
Bean <.. CustomCommonAdapter : parameterify
package mViews <<Database>>{
class SparseArray<View>
}
ViewHolder <-- mViews
@enduml | false | true | false | false | class |
64e0f2e98df98d494ac17e90186148d3d7f42521 | 8e0e85b3875e06a4d76b4298decb879026847d7f | /docs/Skeleton/diagrams/Controll-Robots/Move-Robots/Move-Robot-to-Asteroid-Com.puml | 580cd77d9e87510730348b1a446b0723aecf8703 | [] | no_license | viseguard-studios/Documentation | fba5030594be0303374d70019c7ea759316a96fe | 290312ddbeab9cf9a28147c868f3330475aebd6d | refs/heads/main | 2023-05-13T12:00:34.417075 | 2021-06-06T07:52:49 | 2021-06-06T07:52:49 | 338,383,487 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 410 | puml | @startuml
skinparam linestyle ortho
'title Robot Move to Asteroid
actor "Tester" as Tester
rectangle "r: Robot" as robot
rectangle "currentAsteroid: Asteroid" as currAsteroid
rectangle to as "to: Asteroid"
Tester --> robot : 1: -> Move(to) \n8: <--
robot --> currAsteroid : > 2 : reachableAsteroids() \n<-- 3: neighbours = result \n4: -> Depart(r) \n5: <--
robot --> to : 6: Arrive(r) \n 7: <--
@enduml | false | true | false | false | usecase |
6355b18d09008846fdb4ed4751b2db8bb6624876 | 57981e0a8e7929bf474c5299307a0a3fca6c08b8 | /uml/toDoList.puml | a3974757c512f99068d298fa18d4904e36318d6b | [] | no_license | erica-joseph/joseph-cop3330-assignment4part2 | a2c794f305692dca2cedfdfce7a7e95ff93c14eb | a0cfc8b7d8abc78423a593d5f1b92e1b80223167 | refs/heads/master | 2023-06-06T19:46:29.547398 | 2021-07-17T16:57:00 | 2021-07-17T16:57:00 | 385,101,119 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 856 | puml | @startuml
class toDoList {
main()
start()
}
class toDoListController {
toDoListModel
NavBar
ListView
AddItemButton
DatePickerButton
DescriptionTextField
}
class toDoListModel {
addtoDoList()
removetoDoList()
editTitletoDoList()
addItemtoDoList()
removeItemtoDoList()
CompleteItemtoDoList()
displayExistingItemtoDoList()
displayIncompleteItemtoDoList()
displayCompleteItemtoDoList()
saveItemstoDoList()
savetoDoList()
loadtoDoList()
loadMultotoDoList()
toString(): String
}
class toDoListItem {
description: String
dueDate: Date
'of format MM-DD-YYYY
editDesItemtoDoList (String)
editDueItemtoDoList (Date)
toString(): String
}
toDoListModel *->toDoListItem
toDoList -- toDoListController
toDoListController *--> toDoListModel
@enduml | false | true | false | false | class |
b4d7153f07a81f88ce7fac3209392fad295c5fcf | 9acdf3dfa58d45f1f3d6c88ddd73cb8a31ba9b19 | /uml/diagram.puml | dde9697eba73675ac00883d712e937cbf00f207d | [] | no_license | Sachman19/mishra-cop3330-assignment4part2 | 63746986fba9eeb70fe455516e87a38405236221 | 335a1a8fc64652ea21de4f82d69fa82cbc7e76ba | refs/heads/master | 2023-06-17T13:29:05.264766 | 2021-07-15T18:16:21 | 2021-07-15T18:16:21 | 385,050,214 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 449 | puml | @startuml
'https://plantuml.com/class-diagram
class app
class toDoList
class item
app <-- toDoList
toDoList <-- item
class app {
ArrayList toDoLists
menu()
sort()
}
class toDoList {
ArrayList items
String title
setTitle()
createItem()
modItem()
getList()
}
class item {
String description
int year, month, day
int complete
setters()
'setComplete()
'setDate()
'setDescription()
getters()
'getComplete()
'getDate()
'getDescription()
}
@enduml | false | true | false | false | class |
f904b4a84de7961bbee52b481323e34648724c9e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLPendingOperationError.puml | 0f915e82c49a9228a66361166402407ce6c05ee3 | [] | 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 | 424 | 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 GraphQLPendingOperationError [[GraphQLPendingOperationError.svg]] extends GraphQLErrorObject {
code: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
| false | true | false | false | class |
277c03f16f292dde98463f7c0427a638ad080455 | d68b1330ef8ce59c635f4692417a9192d5206942 | /framework/src/main/java/no/ntnu/idi/apollo69framework/uml/framework_dependencies.plantuml | 6c78efa00eb84f1b4307662382c6e9a1370245d1 | [
"MIT"
] | permissive | GardSteinsvik/apollo-69 | 847f74b762383641db20214ff7b5281c9d63f130 | 96cbf617618075a54613112bc8c0b34215fd50f7 | refs/heads/master | 2021-02-12T20:21:06.214711 | 2020-04-27T16:02:37 | 2020-04-27T16:02:37 | 244,626,902 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 8,647 | plantuml | @startuml
namespace no.ntnu.idi.apollo69framework {
class Apollo69Framework {
{static} + getMessageClasses()
}
class MessageClassListHolder {
{static} - CLASSES_SINGLETON : List<Class>
}
class GameObjectDimensions {
{static} + ASTEROID_HEIGHT : float
{static} + ASTEROID_WIDTH : float
{static} + GAME_RADIUS : int
{static} + GEM_HEIGHT : float
{static} + GEM_RADIUS : float
{static} + GEM_WIDTH : float
{static} + INNER_RADIUS : int
{static} + POWERUP_HEIGHT : float
{static} + POWERUP_RADIUS : float
{static} + POWERUP_WIDTH : float
{static} + SHOT_HEIGHT : float
{static} + SHOT_WIDTH : float
{static} + SPACE_SHIP_HEIGHT : float
{static} + SPACE_SHIP_WIDTH : float
}
class no.ntnu.idi.apollo69framework.HelperMethods {
{static} + getRandomNumber()
{static} + getRandomPosition()
}
namespace network_messages {
class DeviceInfo {
- deviceId : String
+ DeviceInfo()
+ DeviceInfo()
+ getDeviceId()
+ setDeviceId()
}
class PlayerDead {
+ PlayerDead()
}
class PlayerInQueue {
- position : int
- queueSize : int
+ PlayerInQueue()
+ PlayerInQueue()
+ getPosition()
+ getQueueSize()
+ setPosition()
+ setQueueSize()
}
class PlayerInput {
- boosting : boolean
- playerId : String
- posX : float
- posY : float
- rotationDegrees : float
- shooting : boolean
+ PlayerInput()
+ PlayerInput()
+ getPlayerId()
+ getPosX()
+ getPosY()
+ getRotationDegrees()
+ getType()
+ isBoosting()
+ isShooting()
+ setBoosting()
+ setPlayerId()
+ setPosX()
+ setPosY()
+ setRotationDegrees()
+ setShooting()
+ setType()
}
enum PlayerInputType {
BOOST
MOVE
ROTATE
SHOOT
}
class PlayerMatchmade {
}
class PlayerSpawn {
- name : String
- playerId : String
+ PlayerSpawn()
+ PlayerSpawn()
+ getName()
+ getPlayerId()
+ getPositionDto()
+ setName()
+ setPlayerId()
+ setPositionDto()
+ toString()
}
class ServerMessage {
- message : String
- recipientDeviceId : String
+ ServerMessage()
+ ServerMessage()
+ ServerMessage()
+ getMessage()
+ getRecipientDeviceId()
+ isForDevice()
+ setMessage()
+ setRecipientDeviceId()
}
class UpdateMessage {
- asteroidDtoList : List<AsteroidDto>
- explosionDtoList : List<ExplosionDto>
- pickupDtoList : List<PickupDto>
- playerDtoList : List<PlayerDto>
- powerupDtoList : List<PowerupDto>
- shotDtoList : List<ShotDto>
+ UpdateMessage()
+ getAsteroidDtoList()
+ getExplosionDtoList()
+ getPickupDtoList()
+ getPlayerDtoList()
+ getPowerupDtoList()
+ getShotDtoList()
+ setAsteroidDtoList()
+ setExplosionDtoList()
+ setPickupDtoList()
+ setPlayerDtoList()
+ setPowerupDtoList()
+ setShotDtoList()
}
namespace data_transfer_objects {
class AsteroidDto {
+ hp : float
+ AsteroidDto()
+ AsteroidDto()
}
class DimensionDto {
+ height : float
+ width : float
+ DimensionDto()
+ DimensionDto()
+ DimensionDto()
}
class ExplosionDto {
+ frameNumber : int
+ ExplosionDto()
+ ExplosionDto()
}
enum GemType {
COIN
DEFAULT
METEORITE
RUBY
STAR
}
class PickupDto {
+ PickupDto()
+ PickupDto()
}
class PlayerDto {
+ boosting : boolean
+ hp : float
+ name : String
+ playerId : String
+ score : int
+ shieldHp : float
+ spaceshipType : int
+ visible : boolean
+ PlayerDto()
+ PlayerDto()
}
class PositionDto {
+ x : float
+ y : float
+ PositionDto()
+ PositionDto()
+ PositionDto()
}
class PowerupDto {
+ PowerupDto()
+ PowerupDto()
}
enum PowerupType {
ENERGY
HEALTH
INVISIBLE
SHIELD
}
class RotationDto {
+ degrees : float
+ x : float
+ y : float
+ RotationDto()
+ RotationDto()
}
class ShotDto {
+ radius : float
+ ShotDto()
+ ShotDto()
}
}
}
}
no.ntnu.idi.apollo69framework.Apollo69Framework +-down- no.ntnu.idi.apollo69framework.Apollo69Framework.MessageClassListHolder
no.ntnu.idi.apollo69framework.network_messages.PlayerInput o-- no.ntnu.idi.apollo69framework.network_messages.PlayerInputType
no.ntnu.idi.apollo69framework.network_messages.PlayerSpawn o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.AsteroidDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.DimensionDto
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.GemType
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.RotationDto
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupType
no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ShotDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto
@enduml
| false | true | false | false | class |
9dacd65473217c425c581536e53fe35b3a51fedc | 304a78f676c311b54190672c51530c87ce067b8d | /HW4/src/HW4.puml | 220adf67d49b7299910e5c622f373d6d35f18d00 | [] | no_license | TurkerTercan/Data-Structures | eb21cd7a323bf1018108d676f589038de812a50d | 18da9c73e2ba4171036c94ee1c9b14723efde95f | refs/heads/main | 2023-06-10T21:54:51.984209 | 2021-07-05T20:49:44 | 2021-07-05T20:49:44 | 383,256,819 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,366 | puml | @startuml
abstract class AbstractList
abstract class AbstractCollection
interface Deque
interface ListIterator
class RecursiveMethods{
+{static} reverseString(String) : String
+{static} elfishWord(String) : boolean
-{static} elfishRecursive(String, boolean, boolean, boolean) : boolean
+{static} recursiveSelectionSort(int[], int, int) :
-{static} findMinimumIndex(int[], int, int) : int
-{static} OPERATORS : String
-{static} calculateOperator(char, Stack<Integer>) : int
-{static} calculateOperatorReverse(char, Stack<Integer>): int
-{static} isOperator(char) : boolean
+{static} EvaluatePrefix(String) : int
+{static} EvaluatePostfix(String) : int
+{static} prefix(String, Stack<Integer>) : int
-{static} postfix(String, Stack<Integer>) : int
+{static} printPattern(int[][], int, int) :
-{static} recursivePrint(int[][], int, int, int, int) :
-{static} printTopLine(int[][], int, int, int, int) :
-{static} printRightLine(int[][], int, int, int, int) :
-{static} printBottomLine(int[][], int, int, int, int) :
-{static} printLeftLine(int[][], int, int, int, int) :
}
class MyDequeClass<E>{
-final mylist : MyLinkedList<E>
-final removed : RemovedLinkedList<E>
+add(E) : boolean
+iterator(): Iterator<E>
+descendingIterator() : Iterator<E>
+addFirst(E) :
+addLast(E) :
+offerFirst(E) : boolean
+offerLast(E) : boolean
+removeFirst() : E
+removeLast() : E
+pollFirst() : E
+pollLast() : E
+getFirst() : E
+getLast() : E
+peekFirst() : E
+peekLast() : E
+removeFirstOccurrence(Object) : boolean
+removeLastOccurrence(Object) : boolean
+offer(E) : boolean
+remove() : E
+poll() : E
+element() : E
+peek() : E
+push() : E
+pop() : E
+size() : int
+toString() : String
}
class MyLinkedList<E>{
-head : Node<E>
-tail : Node<E>
-removed : RemovedLinkedList<E>
-size : int
+size() : int
+get() : E
+addFirst(E) :
+addLast(E) :
+add(E) : boolean
+iterator(): Iterator<E>
+descendingIterator(): Iterator<E>
+listIterator(int) : ListIterator<E>
+listIterator() : ListIterator<E>
}
class MyListIterator{
-nextItem : Node<E>
-lastItemReturned : Node<E>
-index : int
+hasNext() : boolean
+next() : E
+hasPrevious() : boolean
+previous() : E
+nextIndex() : int
+previousIndex() : int
+remove() :
+add() :
+set() :
}
class RemovedLinkedList<E>{
-head : Node<E>
-tail : Node<E>
-size : int
+addNode(Node<E>) :
+removeNode() : Node<E>
+size() : int
+get() : E
+addFirst(E) :
+addLast(E) :
+add(E) : boolean
+iterator(): Iterator<E>
+descendingIterator(): Iterator<E>
+listIterator(int) : ListIterator<E>
+listIterator() : ListIterator<E>
}
class Node<E>{
+data : E
+next : Node<E>
+prev : Node<E>
}
MyListIterator <|.. ListIterator
MyLinkedList <|-- AbstractList
RemovedLinkedList <|-- AbstractList
MyLinkedList *-- Node
MyLinkedList *-- MyListIterator
RemovedLinkedList *-- Node
RemovedLinkedList *-- MyListIterator
MyDequeClass *-- RemovedLinkedList
MyDequeClass *-- MyLinkedList
MyDequeClass <|-- AbstractCollection
MyDequeClass <|.. Deque
class SyntaxErrorException{
}
SyntaxErrorException <|-- Exception
@enduml | false | true | false | false | class |
3ffb3730adeee7a6e02b32ad63132265b998f6e8 | c60a8fb67fedcbae08755d8125d97468a8aca24d | /Projet de UML Reverse/documents/trash/DAL/Diagrammes New Version/view/old/uiupdate.puml | 081b1bfdba139327e7804aa1e5c66ddc5d8d8c12 | [
"Apache-2.0"
] | permissive | BelkhousNabil/Projets-Informatiques | 6be114f6a8dbcf978ef67daffb1394ee023255cf | 47ffd6526bb66ae263c34725fe2b515b751127bb | refs/heads/master | 2021-01-17T07:12:08.050466 | 2017-02-26T17:03:56 | 2017-02-26T17:03:56 | 54,788,129 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 231 | puml | @startuml
actor C
participant IDiagram
create "t: ToViewVisitor"
C -> "t: ToViewVisitor": new
C -> IDiagram: accept(t)
C -> BorderPane: add(t.getDiagramMenu(), EAST)
C -> BorderPane: add(t.getDiagramEditor(), CENTER)
@enduml
| false | true | false | false | usecase |
3b21c75185a7ef80a75ad3fc0bf3cc7ffdf5d6f0 | aae14e6e15d33643a7b0942e7b94660089cd9d8c | /Backend/btcexplorer/src/main/java/com/jxust/btcexplorer/controller/controller.plantuml | d98f57c46143de2afb214efe12a5a5f7aeb0e50d | [] | no_license | KhayaSambo/Spring-Bitcoin-Explorer-with-Angular | 973c4c06874f7f34cbd65c9aed3a6c6664c97aa5 | d819c679cf0a5fc39e0b3ea985453c46baf0e834 | refs/heads/main | 2023-06-13T03:49:24.801551 | 2021-06-30T09:57:42 | 2021-06-30T09:57:42 | 381,642,600 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,293 | plantuml | @startuml
title __CONTROLLER's Class Diagram__\n
namespace om.jxust.btcexplorer {
namespace controller {
class com.jxust.btcexplorer.controller.BlockController {
+ blockInfo()
+ blockhash()
+ control()
+ getBalances()
+ getBestBlockHash()
+ getBlock()
+ getBlockChainInfo()
+ getBlockChainTips()
+ getBlockCount()
+ getBlockHash()
+ getDifficulty()
+ getMemPoolInfo()
+ getNewAddress()
+ getRPCInfo()
+ getWalletInfo()
+ listWallets()
+ setPreciousBlock()
+ uptime()
+ utils()
+ wallet()
}
}
}
namespace om.jxust.btcexplorer {
namespace controller {
class com.jxust.btcexplorer.controller.IndexController {
+ fullscreen()
+ index()
}
}
}
com.jxust.btcexplorer.controller.BlockController o-- com.jxust.btcexplorer.service.BTCService : service
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 |
aae2793f91ab56544061c5b5ffd1232176ccb8ef | feea725d8b6091ec803659cb1092516a15d6fd7e | /src/main/java/ex45/ex45.puml | f97b907771089e36851c6d1bc893989bf33b49d3 | [] | no_license | simonautran/autran-cop3330-assignment3 | 73e97e06262c3cbf04bd017dc9d86f94d210073e | 4ff24a05a61106681466da954b90e6271e0b9b8a | refs/heads/main | 2023-05-30T19:23:55.457315 | 2021-06-21T03:17:53 | 2021-06-21T03:17:53 | 378,757,105 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 212 | puml | @startuml
'https://plantuml.com/class-diagram
class ex45
{
getUser_OutputFile_Name();
}
class Edit
{
public String repWord()
createNewFile(output file name, string output)
}
ex45 <|-- Edit
@enduml
| false | true | false | false | class |
588f0e5b599410638f23cd572152a749607caf28 | 13dfd92e94ac994798c21f7e2716669182591b4d | /doc/mcd.puml | 09927700562aa3399215e8417b5bd2f9b10259c3 | [] | no_license | 0xnome/pldjardin | 0c5ade37c7b21c559d433acf22b35d08f56fa0d9 | c43f1fd38446176318e1bce9c14c991844004658 | refs/heads/master | 2020-12-24T21:37:38.528428 | 2016-05-04T02:28:02 | 2016-05-04T02:28:02 | 57,016,312 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,722 | puml | @startuml
skinparam shadowing false
skinparam monochrome false
skinparam TitleFontSize 20
skinparam sequenceTitleFontSize 20
skinparam sequenceTitleFontStyle plain
skinparam state {
BackgroundColor white
BackgroundColor<<Warning>> lightblue
}
class Plante{
id
nom
espece - [liste?]
image
description
}
class Jardin{
id
nom
site
email de contact
horaire - [texte libre]
description
image
restreint - [bool -> restreint aux membres]
compostier - [bool]
}
class Lopin{
id
nom
description
}
class Utilisateur{
id
nom
prenom
mail
motdepasse
ville
photo
description - [texte pour se presenter?]
}
class Adresse{
ville
code postal
rue
latitude
longitude
}
class Actualite{
id
texte
datetime
}
class CommentaireJardin{
id
datetime
texte
}
class CommentairePlante{
id
datetime
texte
}
class CommentaireLopin{
id
datetime
texte
}
class Action{
id
date
type
}
Jardin "0..n" -- "0..1" Lopin : jardin
Lopin "0..n" -- "1..1" Plante : lopin
Action "1..1" -- "0..n" Utilisateur : utilisateur
Action "0..1" -- "0..n" Plante : plante
'Action "0..1" -- "0..n" Lopin : lopin
CommentairePlante "1..1" -- "0..n" Utilisateur : auteur
CommentairePlante "1..1" -- "0..n" Plante : plante
CommentaireJardin "1..1" -- "0..n" Utilisateur : auteur
CommentaireJardin "1..1" -- "0..n" Jardin : jardin
CommentaireLopin "1..1" -- "0..n" Utilisateur : auteur
CommentaireLopin "1..1" -- "0..n" Lopin : lopin
Utilisateur "0..n" -- "1..n" Jardin : administrateurs
Utilisateur "0..n" -- "1..n" Jardin : membres
Actualite "1..1" -- "0..n" Jardin : jardin
Actualite "1..1" -- "0..n" Utilisateur : auteur
Adresse "1..n" -- "1..1" Jardin : adresse
Adresse "1..n" -- "1..1" Lopin : adresse
@enduml
| false | true | false | false | class |
e703848da6efc6e9d9bad6f0e219bd730dec84cf | 57515bfad33d5ab1e68cccc924700e88316e19b9 | /DiagramaClases/Metaclases/IObjeto.puml | 132780a785aed064bb69fa09c8ee33ded947b549 | [] | no_license | NicolasBachs/DocumentacionZMGestion | 0e42009bf3bbf4d244e85a8545997c880f233074 | a099ddb44b8911b8428b9c4bdc2f9156c480af47 | refs/heads/master | 2023-01-27T17:57:29.235074 | 2020-12-02T15:35:21 | 2020-12-02T15:35:21 | 232,633,959 | 1 | 0 | null | 2020-01-08T18:44:12 | 2020-01-08T18:44:11 | null | UTF-8 | PlantUML | false | false | 97 | puml | @startuml IObjeto
hide circle
interface IObjeto{
dame()
darAlta()
darBaja()
}
@enduml | false | true | false | false | class |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.