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
16b7653984417d71101ba7a3c099ffdb4b1905bf
fe1600517a3a9c450014334c9b94aebc75423022
/18-projetoBanco-feitoEmAula/out/production/18-projetoBanco-feitoEmAula/com/company/company.plantuml
96c590c45b73e654c28c8a08f9c835db4e67b6e8
[]
no_license
jonasht/Java-Poo-Fatec
a4937422230452538804527333f96259ec5a5710
ba3433b44514fb326f80a6b541386966d3dafdcb
refs/heads/master
2021-02-14T02:51:46.473682
2020-12-11T01:29:25
2020-12-11T01:29:25
244,759,958
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,274
plantuml
@startuml title __COMPANY's Class Diagram__\n namespace com.company { abstract class com.company.Conta { - nome : String - numero : int - saldo : double + depositar() + getNome() + getNumero() + getSaldo() + sacar() + setNome() + setNumero() + setSaldo() } } namespace com.company { class com.company.Corrente { - limite : double + getLimite() + sacar() + setLimite() } } namespace com.company { class com.company.GerenciarContass { {static} + main() } } namespace com.company { class com.company.GerenciarPatrimonioBanco { - totalPatrimonio : double + adicionarConta() + getTotalPatrimonio() } } namespace com.company { class com.company.Poupanca { - diaAniversario : int + getDiaAniversario() + setDiaAniversario() } } com.company.Corrente -up-|> com.company.Conta com.company.Poupanca -up-|> com.company.Conta 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
1e5cc2d1bd81a1c2ae828045ef1c74418c0f52b6
df0eb8ca6f3fb341d7319848cafceec002f2f8e8
/sequence-diagrams/puml/expiry-tracker.puml
e40d9dc05d34394961c169265374890c1f1cfa60
[]
no_license
grigoresc/architecture-katas
8b2097fd8fc9d29fd539220b950f7584d80e51a6
88346df560f0dc43c8ee2c9747ef80bb3502e473
refs/heads/main
2023-01-20T19:19:57.091686
2020-12-02T10:01:11
2020-12-02T10:01:11
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
278
puml
@startuml actor Admin as A participant "Smart Fridge" as SF participant "Expiry Tracker" as ET Participant "Inventory" as I loop Daily ET -> I : Get Expiring Items I -> ET : Expiring Items ET-> A : Notification end A -> SF: Remove Items(Manually) SF -> I: Update @enduml
false
true
false
false
usecase
90e37a8c246ddc3911b411dd640c94bc7d6000e7
5124b2dbc6276b681910d5584179a02ddc345669
/documentation/uml/class/GuestListFrame.puml
459a910d3206cb19b50864529a282f21586fb8a4
[]
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
1,338
puml
@startuml class hotel.gui.GuestListFrame { + {static} RESERVATIONS_LBL_TEXT : String + {static} TO_PAY_LBL_TEXT : String - guests : List<Guest> - guestProvider : GuestProvider - reservationProvider : ReservationProvider - addGuestBtn : JButton - guestList : JList - jButton1 : JButton - jScrollPane1 : JScrollPane - openBtn : JButton - refreshBtn : JButton - removeBtn : JButton - reservationsBtn : JButton - reservationsLbl : Jlabel - searchLbl : Jlabel - searchText : JTextField - toPayLbl : JLabel + GuestListFrame() + getGuestProvider() : GuestProvider + setGuestProvider(GuestProvider) : void + getReservationProvider() : ReservationProvider + setReservationProvider(ReservationProvider) : void loadGuests() : void - searchTextChanged() : void - addGuestBtnActionPerformed(ActionEvent) : void - refreshBtnActionPerformed(ActionEvent) : void - removeBtnActionPerformed(ActionEvent) : void - openBtnActionPerformed(ActionEvent) : void - guestListValueChanged(ListSelectionEvent) : void - reservationBtnActionPerformed(ActionEvent) : void - jButton1ActionPerformed(ActionEvent) : void - getSelectedGuests() : Guest[] - initComponents() : void } javax.swing.JFrame <|-- hotel.gui.GuestListFrame @enduml
false
true
false
false
class
aa1e3b97e0df1f4d84966d32ecc0e1c803eccc6a
529494be29e32fe0506becc922416e76637d99f4
/docs/Key.plantuml
4f8f3662ce0c9ba5054407a264c643a85c73cde3
[]
no_license
misanthropique/PiqueCrypto
d88b21c03b7b97413333b7fa9a00dca01185c64e
27cc6acc519edf96f78396f9ef3e5129bf09197c
refs/heads/main
2023-03-14T22:47:07.357453
2021-03-16T03:43:18
2021-03-16T03:43:18
345,016,788
0
0
null
null
null
null
UTF-8
PlantUML
false
false
605
plantuml
@startuml class "class Key final" { +{method}Key(); +{method}Key(const Key& other); +{method}Key(Key&& other); +{method}Key(const uint8_t* value, size_t length); +{method}~Key(); +{method}void clear(); +{method}std::shared_ptr<const uint8_t> key() const; +{method}size_t length() const; +{method}Key& operator=(const Key& other); +{method}Key& operator=(Key&& other); +{method}bool operator==(const Key& other) const; +{method}bool operator!=(const Key& other) const; +{method}operator bool() const; +{method}operator std::string() const; +{method}void set(const uint8_t* value, size_t length); } @enduml
false
true
false
false
class
13db06c004e53e4ba8340bf1243f1cad9e4ffbb6
0a1615453659a2140009ac92982aec14509a2425
/solutions.puml
d798bd36e95df164f76c5122af49f5163c148c0a
[ "MIT" ]
permissive
lukepatterson31/road-to-orleans
b5936e28f274048890fb43bee1c25179fc6865d7
224895590577319fab956c6390305fc53bf4c833
refs/heads/main
2023-09-05T06:24:03.059029
2021-10-26T11:01:51
2021-10-26T20:17:25
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,768
puml
@startuml hide empty description state "road to orleans" as PhaseA{ state "solution 1" as Solution1{ Solution1 : One basic silo, no grains. } state "solution 2" as Solution2{ Solution2 : One basic silo, one grain, one console client. } state "solution 3" as Solution3{ Solution3 : One basic silo, one grain, Solution3 : one console client, Solution3 : everything containerized. } state "solution 3a" as Solution3a{ Solution3a : Solution3 + grain persistence. } state "solution 3b" as Solution3b{ Solution3b : Solution3 + datadog APM. } state "solution 4" as Solution4{ Solution4 : First in-memory clustering example. Solution4 : Many silos, many clients. } state "solution 5" as Solution5{ Solution5 : Solution4 where the grain interfaces F# library code. Solution5 : Additionally, F# unit tests covering the F# library code. } state "solution 6" as Solution6{ Solution6 : Solution5 where the cluster is being called from a Web API. } state "solution 7" as Solution7{ Solution7 : Solution6 + FeatureManagement, Solution7 : dependency injection in grains, Solution7 : unit tests for grains using OrleansTestKit.ß } state "solution 8" as Solution8{ Solution8 : Solution7 + Persistent Membership Table in DynamoEB, Solution8 : ECS hosting, CloudFormation Template. } [*] --> Solution1 Solution1 --> Solution2 Solution2 --> Solution3 Solution3 --> Solution3a Solution3 --> Solution3b Solution3 --> Solution4 Solution4 --> Solution5 Solution5 --> Solution6 Solution6 --> Solution7 Solution7 --> Solution8 Solution8 --> [*] } @enduml
false
true
true
false
state
8bc9abf5c9c0ff53e7949cb7f20b24bef8d82c64
c5f6be1c13ab1d0c99b597130443273e13bc06e7
/screenshot/uml/GenericType.puml
9c7def302676690012f74bf7f1aca9751ced1b63
[]
no_license
chenzhe/BlogSource
e82a0648b6addebbe0ab6f4da3ae8c1f03e42852
284bd5e1131b98923076c88f356831623e315d94
refs/heads/master
2021-02-06T10:16:36.754496
2018-06-07T08:09:10
2018-06-07T08:09:10
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
242
puml
@startuml class Animal { } class Cat { } class HelloKitty { } class CuteHelloKitty { } class WhiteCuteHelloKitty { } Animal <|-- Cat Cat <|-- HelloKitty HelloKitty <|-- CuteHelloKitty CuteHelloKitty <|-- WhiteCuteHelloKitty @enduml
false
true
false
false
class
c2d5b49f073656adbae3232deb49595c0f1bf828
8a01731637b7d98427e290e9ae0e4b74dc2d86f1
/src/com/zzw/java1000000/z1136785/reflect/md/AnnotatedType.puml
da71a9e556ff3e58c6c0e3306623e3f2e5cd2863
[]
no_license
zhengzewang/1000000study
a2629ceff34f2083ab211c6eb64c939248c6d31d
93b0f2d30e36f6653316aec8077b6fd424b099a2
refs/heads/master
2020-04-12T15:55:52.586491
2019-09-02T12:24:07
2019-09-02T12:24:09
162,595,667
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,226
puml
@startuml package java.lang.reflect{ interface AnnotatedElement{ default boolean isAnnotationPresent(Class<? extends Annotation> annotationClass) Annotation[] getAnnotations() Annotation[] getDeclaredAnnotations() <T extends Annotation> T getAnnotation(Class<T> annotationClass) default <T extends Annotation> T getDeclaredAnnotation(Class<T> annotationClass) default <T extends Annotation> T[] getAnnotationsByType(Class<T> annotationClass) default <T extends Annotation> T[] getDeclaredAnnotationsByType(Class<T> annotationClass) } interface AnnotatedType extends AnnotatedElement { Type getType(); } interface AnnotatedArrayType extends AnnotatedType { AnnotatedType getAnnotatedGenericComponentType(); } interface AnnotatedParameterizedType extends AnnotatedType { AnnotatedType[] getAnnotatedActualTypeArguments(); } interface AnnotatedTypeVariable extends AnnotatedType { AnnotatedType[] getAnnotatedBounds(); } interface AnnotatedWildcardType extends AnnotatedType { AnnotatedType[] getAnnotatedLowerBounds(); AnnotatedType[] getAnnotatedUpperBounds(); } } @enduml
false
true
false
false
class
93cf8c81f4b20af0a5b1533c40730639eedfc30c
6483289261f01bee2e885f91644858845fe20734
/src/main/java/oop/assignment3/ex41/assignment3_ex41_diagram.puml
ef3305db7c29a97178f18dc417b1f21baf22bf55
[]
no_license
savosburn/osburn-cop3330-assignment3
3fc0ddc063c7016e4778d531602d85840153a238
1493287005fa9473b17733e1102da43e505331e6
refs/heads/master
2023-06-01T14:11:18.097116
2021-06-20T23:38:00
2021-06-20T23:38:00
377,905,760
0
0
null
null
null
null
UTF-8
PlantUML
false
false
641
puml
@startuml class App{ ArrayList<String> namesList String fileName String outputFile int size sort list print output } class CreateList { + readLine(File) - addName(ArrayList) } class Calculations { + alphabetize(ArrayList) + getSize(ArrayList) } class generateOutput { + toFile(ArrayList, outFile, int num) - writeToFile(outfile, num, nameList) // helper for toFIle() + consoleString(numNames, names) + numNames(names) // header + divider() + list(names) // String of entire lsit } App o--> CreateList CreateList o-> Calculations Calculations o--> generateOutput @enduml
false
true
false
false
class
70d2cef88f1b3f53247c32f4fba7732823d546f2
1107f373d4a56d6769fc5c6f5db3b56ade433e8a
/src/docs/images/spring-data-rest-demo-data-model.puml
783c43f59c54087ad970f9ddbb3db48bc5ecd476
[]
no_license
corneil/spring-data-rest-angular-demo-old
c5cb9139533dfa177736d0264720dd882177cc65
e3af617b19bb7063e8366c1db9f26156d97fd4fb
refs/heads/master
2021-01-12T14:45:13.062947
2016-04-29T22:02:33
2016-04-29T22:02:33
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
355
puml
@startuml class UserInfo << entity >> { userId: String fullName: String dateOfBirth: Date emailAddress: String } class GroupInfo << entity >> { groupName: String description: String } class GroupMember << entity >> { enabled: boolean } GroupMember -right-> GroupInfo: memberOfgroup GroupMember -up-> UserInfo: member @enduml
false
true
false
false
sequence
6d526a1f1d35d647d78650431098d925d2102688
1a81062f7826ae7553a88b1cd10b8a2591eeceb9
/app/src/main/java/izenka/hfad/com/bookstore/account/AccountActivity.puml
ae44fd7ecaf28f437398a2cfaa77db69001bac2f
[]
no_license
Catatonica/Bookstore_new
ec5e9fccf302f26196f3a55b41ca45ddb7d210bd
a83ecebeb1372bb8533ad8263069c60502819c26
refs/heads/master
2020-04-27T12:44:04.212599
2019-03-07T12:46:39
2019-03-07T12:46:39
174,342,489
0
0
null
null
null
null
UTF-8
PlantUML
false
false
38
puml
@startuml class A extends B{ } @enduml
false
true
false
false
class
0af0f1766079452a11191dccb772a2057af68fde
bb7ddbefa75948ada5383603515fb8d42211593d
/aatest.puml
7fa3a63dece8c34108cf23ac0bbcd329ced4cc42
[]
no_license
aadedjou/Amphi
287eef18a51d7acd5487a1eeccbfad315355df81
59040c70ba4ae94a7dda3b7bea74c047df8fd96e
refs/heads/master
2023-05-09T01:50:10.490636
2021-05-19T18:14:00
2021-05-19T18:14:00
368,791,100
0
1
null
2021-05-19T08:29:05
2021-05-19T08:06:38
TypeScript
UTF-8
PlantUML
false
false
61
puml
@startuml class Bob class Alice Bob --|> Alice @enduml
false
true
false
false
class
7dc2d978b772474a73df082e3938bc433d87fbe4
851b572cb6987b740719373a9356a38e2ab3afc5
/doc/Entities.puml
3d07a56eb96b15619a69d2d89152a9117a01bedd
[ "BSD-3-Clause" ]
permissive
ildar-sh/newspaper
9939b56448064b5da3198d1bd7e4090e41a03b88
97be4a812c6c41465c81e702fbf739d26992835e
refs/heads/master
2021-05-13T21:43:44.445132
2018-02-05T19:37:26
2018-02-05T19:37:26
116,469,671
0
0
null
null
null
null
UTF-8
PlantUML
false
false
886
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) >> ' 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 ' entities Table(user, "users in our system") { primary_key(id) unique(username) not_null(password) } Table(post, "news on our site") { primary_key(id) name : varchar description : varchar image: varchar short_text : text long_text : text status : integer created : timestamp author_id : integer } post-->user ' relationships @enduml
false
true
false
false
class
d471c286d08c0c5b70d0aa6040e2c926778e8ab3
015af2febe164b9667ae91319080ed064c132b0e
/kms/auth-service/src/test/java/com/uwaterloo/iqc/authservice/authservice.plantuml
f1dc0cab7f7a893a2bcbd1457eb6ff3c656eea15
[ "MIT" ]
permissive
crazoter/qkd-net
fb247b3a122821451a64ea587619926d9571444c
182860ec031bf066fd3a9fa60d6d3629b4d37899
refs/heads/master
2022-08-25T23:32:53.109504
2020-05-20T02:25:20
2020-05-20T02:25:20
263,811,400
1
0
null
2020-05-14T04:05:04
2020-05-14T04:05:04
null
UTF-8
PlantUML
false
false
404
plantuml
@startuml title __AUTHSERVICE's Class Diagram__\n namespace com.uwaterloo.iqc.authservice { class com.uwaterloo.iqc.authservice.AuthServiceApplicationTests { + contextLoads() } } 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
30ed99834be711830aa079e07930bfc11c5fee50
e49567ea3e4e5a6e5c7e988a46e8175f6a39857f
/uml/List.puml
60ecd40bc267e2fbcd5366357498387a7ea6c077
[]
no_license
mate-gam/Gamero-cop3330-assignment4
c5405940b3dd352731beb8b376734cf138d48d57
47193a255453dca6d73f4dd6bd2a2f5f3624cb50
refs/heads/master
2023-09-05T09:42:47.978569
2021-11-01T23:29:04
2021-11-01T23:29:04
423,345,539
0
0
null
null
null
null
UTF-8
PlantUML
false
false
177
puml
@startuml class Itemlist{ String title == .. Add New Item .. + Item newItem() .. Get List Title .. + String getTitle .. Set New Title .. + void setTitle(String title) } @enduml
false
true
false
false
class
8d953f8c8b89ac7f5af80cd018978f8464db0bc5
9c4e273c3acb8711d59a693c7f817eeb922e14ac
/app/src/main/java/co/siarhei/apps/android/geochat/UI/UI.plantuml
d0dc2cd6c3502ca59cd227319983c67ab146f9df
[]
no_license
dexter0175/geochat-android-client
185219bcd5fdffd48967d2c5c321dedc7341eb01
7686111134415e940ac77a9e20b516f8824854f1
refs/heads/master
2020-11-25T20:53:30.509778
2019-12-20T02:58:13
2019-12-20T02:58:13
228,841,832
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,104
plantuml
@startuml title __UI's Class Diagram__\n namespace co.siarhei.apps.android.geochat { namespace UI { class co.siarhei.apps.android.geochat.UI.MainConnectionsFragment { + prefs : SharedPreferences ~ firestore : FirebaseFirestore ~ mAuth : FirebaseAuth ~ rootView : View - cd : CompositeDisposable - rv_users : RecyclerView + onCreate() + onCreateView() - setupReactiveGeoUpdates() - setupRecyclerView() } } } namespace co.siarhei.apps.android.geochat { namespace UI { class co.siarhei.apps.android.geochat.UI.MainExploreFragment { + prefs : SharedPreferences ~ firestore : FirebaseFirestore ~ mAuth : FirebaseAuth ~ rootView : View - cd : CompositeDisposable - rv_users : RecyclerView + getCurrentRadius() + onCreate() + onCreateView() - setupReactiveUpdates() - setupRecyclerView() } } } namespace co.siarhei.apps.android.geochat { namespace UI { class co.siarhei.apps.android.geochat.UI.MainThisAreaFragment { - OkHTTP_Client : OkHttpClient - cd : CompositeDisposable - currentLocation : Location - firestore : FirebaseFirestore - googleAPIKey : String - mMapButton : LinearLayout - mMapButtonSubtitle : TextView - mMapButtonTitle : TextView - mSendButton : ImageButton - mTextSend : EditText - prefs : SharedPreferences - rootView : View + getCurrentRadius() + onActivityResult() + onCreate() + onCreateView() + onResume() + setCurrentLocation() + setCurrentLocation() + setCurrentRadius() + setupMapButtonGeocoding() + setupMessageListView() ~ getGoogleAPIKey() - openMapActivity() - setupMapButton() - setupSendButton() } } } co.siarhei.apps.android.geochat.UI.MainConnectionsFragment -up-|> androidx.fragment.app.Fragment co.siarhei.apps.android.geochat.UI.MainConnectionsFragment o-- co.siarhei.apps.android.geochat.UI.Adapters.UserAdapter : usersAdapter co.siarhei.apps.android.geochat.UI.MainExploreFragment -up-|> androidx.fragment.app.Fragment co.siarhei.apps.android.geochat.UI.MainExploreFragment o-- co.siarhei.apps.android.geochat.UI.Adapters.UserAdapter : usersAdapter co.siarhei.apps.android.geochat.UI.MainThisAreaFragment -up-|> androidx.fragment.app.Fragment co.siarhei.apps.android.geochat.UI.MainThisAreaFragment o-- co.siarhei.apps.android.geochat.MainActivity : mainActivity co.siarhei.apps.android.geochat.UI.MainThisAreaFragment o-- co.siarhei.apps.android.geochat.UI.Adapters.RvMessageAdapter : messageAdapter 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
af39ddd35b33f9940d1bc074ba8cc5b9931a8475
9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9
/java/resources/plantuml/creational/abstract-factory-go.puml
a69f40af6c72bc36b8d4a7a0ffe9d870c106d0a5
[ "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
3,209
puml
```plantuml @startuml abstract-factory-go skinparam class { BackgroundColor White ArrowColor Black BorderColor Black } interface GdiFactory{ createButton() Button createMenu() Menu createScroll() Scroll } class IOSFactory{ createButton() Button createMenu() Menu createScroll() Scroll } class AndroidFactory{ createButton() Button createMenu() Menu createScroll() Scroll } interface Button{ click() void } interface Menu{ selectItem() void } interface Scroll{ scroll() void } enum Platforms{ ANDROID_PLATFORM IOS_PLATFORM } class IOSButton{ click() void } class AndroidButton{ click() void } class AndroidMenu{ selectItem() void } class AndroidScroll{ scroll() void } class IOSMenu{ selectItem() void } class IOSScroll{ scroll() void } class Instance{ +platformItems List<Button> } class Singleton{ +instance Instance GetInstance() Instance } class GdiConfigurator{ +Button Button +Scroll Scroll +Menu Menu Load() void } GdiFactory <|-- IOSFactory GdiFactory <|-- AndroidFactory '-------------------------------' Button <|-- IOSButton Button <|-- AndroidButton '-------------------------------' Menu <|-- IOSMenu Menu <|-- AndroidMenu '-------------------------------' Scroll <|-- IOSScroll Scroll <|-- AndroidScroll '-------------------------------' GdiConfigurator ..> Button GdiConfigurator ..> Menu GdiConfigurator ..> Scroll '-------------------------------' Singleton <|-- Singleton Singleton ..> Instance '-------------------------------' IOSFactory ..> IOSButton IOSFactory ..>IOSScroll IOSFactory ..> IOSMenu '-------------------------------' AndroidFactory ..> AndroidButton AndroidFactory ..>AndroidMenu AndroidFactory ..>AndroidScroll GdiConfigurator ..>GdiFactory @enduml ``` ### Flex ```plantuml @startuml skinparam class { BackgroundColor White ArrowColor Black BorderColor Black } Client -> GdiFactory: create AndroidFactory activate Client activate GdiFactory GdiFactory -> AndroidFactory: new activate AndroidFactory Client <-- GdiFactory: return AndroidFactory Client -> AndroidFactory: createButton() AndroidFactory -> Button: new activate Button Client <-- Button: click() deactivate Button Client -> GdiFactory: create IOSFactory GdiFactory -> IOSFactory: new activate IOSFactory Client <-- GdiFactory: return IOSFactory Client -> IOSFactory: createMenu() IOSFactory -> Menu: new activate Menu Client <-- Menu: selectItem() deactivate Menu @enduml ``` #### Singleton ```plantuml @startuml skinparam class { BackgroundColor White ArrowColor Black BorderColor Black } Client -> Singleton: getInstance() Activate Client activate Singleton Singleton -> Instance : new activate Instance Singleton --> Client: return instance deactivate Instance @enduml ```
false
true
false
false
sequence
b10c96b63f75730fc5b668ad6de2f353d81f1a22
b13efe96f0d51d1db9385fc050f7cd6ac8cf5f22
/src/test/java/UpdateBuildingsMock.puml
ef204ac674d51fa93fbb8546d344244f3c4d29ec
[]
no_license
kaspercphbusiness/2semWebbuildingsWithTest
2ab93594d48cf9194a997ea822974fb37767edc8
41bfcf7df951701d8e12cb8b496d54ae43bfd5a1
refs/heads/master
2021-01-12T14:43:44.919357
2017-05-02T11:59:58
2017-05-02T11:59:58
72,072,010
2
0
null
null
null
null
UTF-8
PlantUML
false
false
848
puml
@startuml participant UnitTest<< (T,#ADD1B2) >> participant Response<< (M,#B2D1AD) >> participant Request<< (M,#B2D1AD) >> participant "UpdateBuilding\n(Subject Under Test)" as UpdateBuilding participant DomainFacade<< (M,#B2D1AD) >> UnitTest -> Request: setParameter("action") UnitTest -> Request: setParameter("id") UnitTest -> Request: setParameter("...") create UpdateBuilding UnitTest -> UpdateBuilding: processRequest( req, resp) UpdateBuilding -> Request: getParameter("action") group get parameters and make building object UpdateBuilding -> Request: getParameter("id") note over Request, UpdateBuilding pick out other paramters and make building object end note end UpdateBuilding -> DomainFacade: updateBuilding( b ) Response <- UpdateBuilding: redirect to buildings.jsp UnitTest -> UnitTest: Verify the building created @enduml
false
true
false
false
sequence
fa0ad3129d1e9ae0ff0b33fc9c3f9efc6b8169b0
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/TermFacetResult.puml
d37a68c0cf741c5e5b06af902f4d8ee69e6fc7f1
[]
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
580
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 TermFacetResult [[TermFacetResult.svg]] extends FacetResult { type: [[FacetTypes.svg FacetTypes]] dataType: [[TermFacetResultType.svg TermFacetResultType]] missing: Long total: Long other: Long terms: [[FacetTerm.svg List<FacetTerm>]] } interface FacetResult [[FacetResult.svg]] { type: [[FacetTypes.svg FacetTypes]] } @enduml
false
true
false
false
class
d1a07459877d56e67cf96ae366b762e5a99d9e2f
7e6fa61a8595cd38195713b5c7698f5de6f7c7b3
/base/044/lapiseira.puml
27dcbba642d2e1227fe550fdac7f1b5071767202
[]
no_license
qxcodepoo/arcade
3ff1852792a47584f00c1ab9fd5011ebb2c4b830
3722a8c976a51829b2b6f4913360c23bf114433a
refs/heads/master
2023-08-31T04:07:06.255292
2023-08-25T03:16:42
2023-08-25T03:16:42
217,410,955
36
42
null
2020-09-24T13:22:18
2019-10-24T23:12:40
C++
UTF-8
PlantUML
false
false
386
puml
@startuml skinparam defaultFontName Hasklig skinparam dpi 150 left to right direction Lapiseira "1" o-- "0..*" Grafite : usa class Lapiseira { - calibre : float - ponta : Grafite | null - barril: Array<Lead> __ + inserir(grafite : Grafite) : boolean + remover() : Grafite | null } class Grafite { - calibre : float - dureza : String - tamanho : float } @enduml
false
true
false
false
class
29c3326aa98af61022e3d2362040995421358036
e61d97aadb66efb4177b50b82374df4765a09afd
/documents/class_diagram.puml
42c860d7d76b9351c59ec0a6cdf1ac2a7d4531a5
[]
no_license
confident-OH/software-engineering-project
8cdfbaca72ecc12623d2a6afe19ecd3dc26f4311
516f44be46e63396df6e2443dd022cb2cc297d0b
refs/heads/master
2023-02-06T15:54:05.126216
2020-12-27T15:02:02
2020-12-27T15:02:02
308,820,949
1
0
null
null
null
null
UTF-8
PlantUML
false
false
908
puml
@startuml scale 2 class User{ +ID: interger +points: interger +lever: interger +rank: interger +records: array +passed: interger -match() } class Stage{ +ID: interger -clues: array +difficulty: interger -hint: array -answer: array -rankinglist: array -judgeAnswer() } class Random{ +hardness: interger -clues: array -answer: array -generate() -jugde() } class Guide{ -steps: array -helper: string -guide() } class Competition{ -clues: array -timer() -pause() -continue() -compare() -dealWithResult() } class Ladder{ +result: interger -submitAndStop() } Stage "1" --- "1" User: play Random "1" --- "1" User: play Guide "1" --- "1" User: learn Ladder "1" --- "2" User: play Random "1" <|-- "1" Competition Stage <|-- Guide Competition "1" o-- "2" User Competition <|-- Ladder @enduml
false
true
false
false
class
d078adc2342f29ff0aa107e90da1a08f7da63684
62de719e261fac67d2a2bc347a98be5515b48948
/docs/blue/1040862/sp3/analysis1.puml
3bed2f28ff88809e298210e64417c8e822ded0df
[]
no_license
raulcorreia7/isep_lapr4_17_18
82672fca46e433856d52b3839e3739fa53b8f52c
79217fa01912657da37ef6cdb1a05194dd2f5110
refs/heads/master
2020-04-15T17:52:21.964106
2019-01-09T17:13:14
2019-01-09T17:13:14
164,891,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
365
puml
@startuml analysis.png skinparam handwritten false skinparam monochrome true skinparam packageStyle rect skinparam defaultFontName FG Virgil skinparam shadowing false actor User User -> Browser : Insert REGEx \ninput in search field Browser ->> Server : globalSearch(input) Server -->> Browser : return result Browser -> Browser : display @enduml
false
true
false
false
usecase
9132a6843c18c22fba2814ae6d026d7372f652f7
8c59fbc94a2ba7fa9a12c10991fe334cda0df128
/metrics/ci_integrations/docs/diagrams/resync_single_build_sequence_diagram.puml
faa136dc86962a6a3d569ff636bc8d28a1c57ba9
[ "Apache-2.0" ]
permissive
solid-vovabeloded/flank-dashboard
7e952fa1399585d3f15cae2ed2cab435fb82df3f
15dae0c40823cc12886a1bb0c087442c0697ac89
refs/heads/master
2023-07-11T19:54:58.430004
2021-08-06T10:29:26
2021-08-06T10:29:26
389,593,827
0
0
Apache-2.0
2021-07-26T10:33:52
2021-07-26T10:25:59
null
UTF-8
PlantUML
false
false
1,411
puml
@startuml resync_single_build_sequence_diagram 'https://plantuml.com/sequence-diagram skinparam SequenceMessageAlignment center participant InProgressBuildsSyncStage participant SourceClient ?-> InProgressBuildsSyncStage ++ : _syncInProgressBuild(//config, build//) note right of InProgressBuildsSyncStage: //BuildData newBuild// ||8|| InProgressBuildsSyncStage -> InProgressBuildsSyncStage ++ : _fetchBuild(//config.sourceProjectId, build.buildNumber//) group try [build fetched successfully] InProgressBuildsSyncStage -> SourceClient ++ : fetchOneBuild(//config.sourceProjectId, build.buildNumber//) return //sourceBuild// note right of InProgressBuildsSyncStage: //refreshedBuild = sourceBuild// else catch error note right of InProgressBuildsSyncStage: //refreshedBuild = null// end return //refreshedBuild// ||8|| alt //refreshedBuild// == null || //refreshedBuild.status// == BuildStatus.inProgress opt _shouldTimeout(//build.startedAt//, //config.inProgressTimeout//) note right of InProgressBuildsSyncStage //final duration = config.inProgressTimeout// //newBuild = build.copyWith(duration: duration, status: BuildStatus.unknown)// end note end else //refreshedBuild// is finished note right of InProgressBuildsSyncStage: //newBuild = refreshedBuild.copyWith(id: build.id, projectId: build.projectId)// end return newBuild @enduml
false
true
false
false
sequence
40177be3419bc2183cc83fc1aed8049076dcbea8
924e0bbda8fc6c10e54e78888926d03840400621
/src/ERD client physical.puml
953fa002a3f246eb1c8f3e6616099ee398e40f67
[]
no_license
94n/uml
0efc5d85b68461a37b45219c40e8b98a02792234
1124ea49c1bc6e7f38968ba0e46785c23095d6c2
refs/heads/master
2023-09-06T00:51:34.718361
2021-11-20T10:22:26
2021-11-20T10:22:26
414,171,448
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,105
puml
@startuml 'https://plantuml.com/ie-diagram class client { id bigserial name varchar8 surname varchar8 inn bigint uniqueindex financial_phone bigint uniqueindex birthday timestamp } class bank_account { iban - pk bigserial client_id bigint amount numeric currency } class card_account { number - pk bigserial client_id bigint currency amount numeric expiration timestamp type } enum card_type { "Credit" "Debet" } class transaction { id bigserial iban/card_number bigint source iban/card_number bigint amount numeric currency purpose varchar8 state payment_time timestamp merchant nullable varchar8 } enum currency { "UAH" "USD" } enum transaction_state { "Blocked" "Completed" "Canceled" } client ||--o{ bank_account client ||--o{ card_account bank_account }o--|| currency bank_account ||--o{ transaction card_account }o--|| currency card_account }o--|| card_type card_account ||--o{ transaction currency ||--o{ transaction transaction }o--|| transaction_state @enduml
false
true
false
false
state
6b020654d3b853a42b585588e75356c1a94aa310
3ea02aab5d9a15def695d50ffd9c538a0b4e5173
/test/parens-not-brackets/test-old.puml
736702bf37e2e89b7dc44b7784bcada3d5c4c386
[]
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
221
puml
@startuml hide empty members hide circle skinparam classAttributeIconSize 0 class _person_id_ as "<person/(id)>" _person_id_ : a s:Person _person_id_ : s:additionalType <type/[type]> _person_id_ : s:name "[name]" @enduml
false
true
false
false
class
dc32f52aa0e8eba302148cf2dca03d66174fb6da
423d0d6ea56f1b789c8e1b01e8b1f8558065ea9c
/stack.puml
ef15871a3db80dfe5755356c22762e8079ab6c91
[]
no_license
rycus86/home-stack-monitoring
3a173640dab02849f2a73746475e14bbd475bab0
a42d562cf13ab5a0c544c74fbfe8a8ff5b7bf751
refs/heads/master
2021-01-25T10:21:37.744759
2018-07-28T19:44:48
2018-07-28T19:44:48
123,350,199
3
1
null
null
null
null
UTF-8
PlantUML
false
false
2,299
puml
@startuml frame "Monitoring stack" as stack { [Prometheus] << rycus86/prometheus >> as prometheus #8f8 [Prometheus node exporter] << rycus86/prometheus-node-exporter >> as node_exporter #8fc [Container metrics] << rycus86/container-metrics >> as container_metrics #8fc [Grafana] << rycus86/grafana >> as grafana #fcc [Portainer] << portainer/portainer >> as portainer #fcc [Portainer agent] << portainer/agent >> as portainer_agent #fcc [Release Watcher] << rycus86/release-watcher >> as release_watcher #88f [GitHub exporter] << rycus86/github-exporter >> as github_exporter #8fc [Docker Hub exporter] << rycus86/dockerhub-exporter >> as dockerhub_exporter #8fc [PyGen config generator] << rycus86/docker-pygen >> as pygen #ff8 (Docker engine) as docker #ccc node "Other Swarm nodes" { [Prometheus node exporter] << rycus86/prometheus-node-exporter >> as node_exporter_2 #8fc [Container metrics] << rycus86/container-metrics >> as container_metrics_2 #8fc [Portainer agent] << portainer/agent >> as portainer_agent #fcc [PyGen worker] << rycus86/docker-pygen:worker >> as pygen_worker #ff8 } } cloud "Internal network" as intnet #ccc frame "Web stack" as web_stack { [Nginx reverse proxy] << nginx >> as nginx #ccc } frame "3rd party" as 3rd_party #ccc { [GitHub] #aaf [Docker Hub] #aaf [PyPI] #aaf [JetBrains] #aaf } frame "Logging stack" { [Fluentd] #ccc } nginx --> grafana : metrics.viktoradam.net grafana --> prometheus : Query grafana <.. prometheus pygen -u-> prometheus : Generate & reload \n configuration pygen_worker -u-> pygen : Send events prometheus .l.> node_exporter prometheus .r.> container_metrics prometheus ..> pygen prometheus ..> github_exporter prometheus ..> dockerhub_exporter prometheus ...> node_exporter_2 : Collect metrics prometheus ...> container_metrics_2 prometheus ...> pygen_worker node_exporter .. node_exporter_2 container_metrics .. container_metrics_2 intnet --> portainer portainer -- portainer_agent portainer_agent -l- docker container_metrics -u-- docker release_watcher --> 3rd_party github_exporter --> 3rd_party dockerhub_exporter --> 3rd_party stack -u-> [Fluentd] stack -u-> [Fluentd] stack -u-> [Fluentd] : Send logs @enduml
false
true
false
false
sequence
9f61dcd62fe57fbe900b4c8c3f0a5408d7a48d1b
4912b4a1dc3f9053ef63ac442fee5ae24b4ee1b8
/buildUML/messaging/bus.puml
6ff5cb66bdbf865a5ff67f790d1e24837e8298ab
[ "Apache-2.0" ]
permissive
JetBrains/intellij-sdk-docs
92f20b8323f3296d008d20739c2576817502a58a
2e3eaced65ec7bd962fa0867112cd83735fb0464
refs/heads/main
2023-08-31T22:13:05.228222
2023-08-31T14:52:25
2023-08-31T14:52:25
27,145,735
1,207
1,072
Apache-2.0
2023-09-12T13:57:17
2014-11-25T20:59:00
Markdown
UTF-8
PlantUML
false
false
220
puml
@startuml hide empty members hide circle top to bottom direction :Subscriber: (Create connection) as (C) note top of (C): Necessary for subscribing Subscriber --> C :Publisher: (Publish) Publisher --> Publish @enduml
false
true
false
false
uml-unknown
480acd6c3e108ed5f48976eb46edacad94e360a4
112e511928937b8ec60004ca94f1dd996bd9fd1a
/Documents/Shos.Chatter.Server/App_Start/WebApiConfig.puml
15269f943c3f2f4454a98a03de7c06fcfced5cf2
[ "MIT" ]
permissive
Fujiwo/Shos.Chatter.NetFramework
2c143b390b1588e38e5967a8b8f1c51bf5487362
3c7061398e790c2fc856585fdbf60a18705f11e0
refs/heads/master
2023-03-23T09:31:02.071913
2021-03-11T05:27:48
2021-03-11T05:27:48
323,569,895
0
0
null
null
null
null
UTF-8
PlantUML
false
false
109
puml
@startuml class WebApiConfig <<static>> { + {static} Register(config:HttpConfiguration) : void } @enduml
false
true
false
false
class
8bb15512b078d9a94a791cdee7c34d54b6971863
23eebc652cc34d63a61ab645cccb3e0d12192028
/documentation/logicalview/analysisview/repository/classanalysis/puml/models/Intervention.puml
c1b76c800ba04123d1565570afc8f3d6d9d9db57
[]
no_license
Ruskab/agrimManager
0e654c5bfc7bb6241f7a8cf4c49e58af55155886
e264536edc42ad8def85e3714a7b1c15236d7de5
refs/heads/develop
2023-09-01T02:36:44.943558
2021-08-14T20:15:43
2021-08-14T20:15:43
166,677,735
1
2
null
2023-09-02T13:25:24
2019-01-20T15:37:25
Java
UTF-8
PlantUML
false
false
152
puml
@startuml class Intervention { } CreateInterventionView --> Intervention DashboardView --> Intervention InterventionsView --> Intervention @enduml
false
true
false
false
class
d3ae644418cbeccb01c2bbe4a1438505398e182c
899afcbc16b50447ab42b7d83cd9e0b20c6064e8
/images/testother.iuml
75f0ddbf5f5e58fcb36c8b2a6f8028bef6dfabeb
[]
no_license
amantalwar04/hello-world
ac93c7a7028187a263244665bc7c5a144ab498cb
4bdb3d6d07b9566947f168622e6f683e0f8a7e89
refs/heads/master
2023-01-09T12:12:44.448958
2023-01-05T07:24:17
2023-01-05T07:24:17
130,318,409
0
4
null
2020-11-23T05:30:14
2018-04-20T06:25:05
null
UTF-8
PlantUML
false
false
775
iuml
@startuml skinparam componentStyle uml2 title Packages - Component Diagram PolarFire<U+00AE> SoC FPGA package "Front End" { component [Graphic User\nInterface] as GUI } cloud Internet { } node "Middle Tier" { [Business Logic] [Data Access] as DA interface IMath as Math note left of Math : This is a web\nService Interface note right of Math : Notice the\nlabel below interface "IItems" as Items note left of [Business Logic] A note can also be on several lines like this one end note } database "Access\n" { [Stored Procs] } GUI -down-> Internet Internet -down-( Math [Business Logic] -up- Math : Web Services DA -up- Items : .Net [Business Logic] --( Items DA .. [Stored Procs] @enduml
false
true
false
false
sequence
c31d85999440b397edec4ee98d976b4ab404531d
0bad5075fffde9f8114344c69e5007d64ed215c6
/docs/source/pic/src/rrbx-op.puml
72989155eaa40bb39a89032651a80538be0bd0bf
[ "Apache-2.0" ]
permissive
PSPC-SPAC-buyandsell/von_anchor
7ff8964c57b5b016c15284d44ff07919976a3cef
9d3f96451c1c7a2fee8c0141fc5f32f3596791d0
refs/heads/master
2021-08-08T11:16:10.929511
2020-04-03T12:48:35
2020-04-03T12:48:35
140,607,696
5
15
Apache-2.0
2020-02-10T16:49:28
2018-07-11T17:23:09
Python
UTF-8
PlantUML
false
false
2,360
puml
@startuml /' Copyright 2017-2020 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. '/ skinparam ParticipantPadding 20 skinparam BoxPadding 20 title External Revocation Registry Builder Operation box "Indy" #LightBlue participant "Ledger" as ledger endbox participant "External Rev Reg Builder" as rrbx box "Operating System" #Linen participant "Process" as proc participant "Shell" as bash participant "File System" as fs endbox participant "Issuer" as issuer actor "Actuator" as ator === REVOCATION REGISTRY SET & SEND FROM EXTERNAL BUILD == ator -> issuer: send cred def or issue cred issuer -> issuer: need new rev reg? Yes: rr_id issuer -> issuer: set_rev_reg(rr_id) group set_rev_reg() implements issuer -> fs: check hopper for rev reg, tails files fs --> issuer: present issuer -> fs: move tails file from hopper to tails dir and link fs --> issuer: issuer -> ledger: send rev reg def, initial entry ledger --> issuer: issuer -> issuer: generate next rr_id, size === EXTERNAL REVOCATION REGISTRY BUILD == issuer -> fs: touch rr_id/.size in sentinel directory fs --> issuer: issuer -> issuer: complete cred operation group cred operation implements issuer -> ledger: write artifacts ledger --> issuer end issuer --> ator: group serve() loop rrbx -> fs: .stop in sentinel directory? fs --> rrbx: no rrbx -> fs: find rr_id/.size, touch .in-progress fs --> rrbx: rrbx -> rrbx: build rev reg, tails file rrbx -> fs: write rev reg, tails files hopper directory fs --> rrbx: rrbx -> fs: remove rr_id directory from sentinel directory fs --> rrbx: end end @enduml
false
true
false
false
usecase
ac994836546e331abd0777f315899f661d6102c0
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/Attribute.puml
1f7f0e4b3213ef4e162d27fca08eb1299ef61b46
[]
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
3,114
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 Attribute [[Attribute.svg]] { name: String value: [[Object.svg Object]] } interface DuplicateAttributeValuesError [[DuplicateAttributeValuesError.svg]] { code: String message: String attributes: [[Attribute.svg List<Attribute>]] } interface VariantValues [[VariantValues.svg]] { sku: String prices: [[PriceDraft.svg List<PriceDraft>]] attributes: [[Attribute.svg List<Attribute>]] } interface GraphQLDuplicateAttributeValuesError [[GraphQLDuplicateAttributeValuesError.svg]] { code: String attributes: [[Attribute.svg List<Attribute>]] } interface ProductVariantImportDraft [[ProductVariantImportDraft.svg]] { id: Long sku: String prices: [[PriceDraft.svg List<PriceDraft>]] attributes: [[Attribute.svg List<Attribute>]] images: [[Image.svg List<Image>]] } interface ProductVariant [[ProductVariant.svg]] { id: Long sku: String key: String prices: [[Price.svg List<Price>]] attributes: [[Attribute.svg List<Attribute>]] price: [[Price.svg Price]] images: [[Image.svg List<Image>]] assets: [[Asset.svg List<Asset>]] availability: [[ProductVariantAvailability.svg ProductVariantAvailability]] isMatchingVariant: Boolean scopedPrice: [[ScopedPrice.svg ScopedPrice]] scopedPriceDiscounted: Boolean } interface ProductVariantDraft [[ProductVariantDraft.svg]] { sku: String key: String prices: [[PriceDraft.svg List<PriceDraft>]] attributes: [[Attribute.svg List<Attribute>]] images: [[Image.svg List<Image>]] assets: [[AssetDraft.svg List<AssetDraft>]] } interface ProductAddVariantAction [[ProductAddVariantAction.svg]] { action: String sku: String key: String prices: [[PriceDraft.svg List<PriceDraft>]] images: [[Image.svg List<Image>]] attributes: [[Attribute.svg List<Attribute>]] staged: Boolean assets: [[AssetDraft.svg List<AssetDraft>]] } interface DuplicateAttributeValueError [[DuplicateAttributeValueError.svg]] { code: String message: String attribute: [[Attribute.svg Attribute]] } interface GraphQLDuplicateAttributeValueError [[GraphQLDuplicateAttributeValueError.svg]] { code: String attribute: [[Attribute.svg Attribute]] } Attribute --> DuplicateAttributeValuesError #green;text:green : "attributes" Attribute --> VariantValues #green;text:green : "attributes" Attribute --> GraphQLDuplicateAttributeValuesError #green;text:green : "attributes" Attribute --> ProductVariantImportDraft #green;text:green : "attributes" Attribute --> ProductVariant #green;text:green : "attributes" Attribute --> ProductVariantDraft #green;text:green : "attributes" Attribute --> ProductAddVariantAction #green;text:green : "attributes" Attribute --> DuplicateAttributeValueError #green;text:green : "attribute" Attribute --> GraphQLDuplicateAttributeValueError #green;text:green : "attribute" @enduml
false
true
false
false
sequence
86229fe892cb85821a30a9802c4596d626f0d955
9623791303908fef9f52edc019691abebad9e719
/src/cn/shui/order/base/base.plantuml
98a1e3daba37f640a0ff00207bd0a9b2e7bce8d2
[]
no_license
shuile/LeetCode
8b816b84071a5338db1161ac541437564574f96a
4c12a838a0a895f8efcfbac09e1392c510595535
refs/heads/master
2023-08-17T04:53:37.617226
2023-08-15T16:18:46
2023-08-15T16:18:46
146,776,927
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,987
plantuml
@startuml title __BASE's Class Diagram__\n namespace cn.shui.order { namespace base { class cn.shui.order.base.GraphNode { + neighbors : List<GraphNode> + val : int + GraphNode() + GraphNode() + GraphNode() } } } namespace cn.shui.order { namespace base { class cn.shui.order.base.ListNode { + val : int + ListNode() + ListNode() + ListNode() } } } namespace cn.shui.order { namespace base { class cn.shui.order.base.Node { + val : int + Node() + Node() + Node() } } } namespace cn.shui.order { namespace base { class cn.shui.order.base.Node1 { + val : int + Node1() } } } namespace cn.shui.order { namespace base { class cn.shui.order.base.Node2 { + children : List<Node2> - val : int + Node2() + Node2() + Node2() } } } namespace cn.shui.order { namespace base { class cn.shui.order.base.TreeNode { + val : int + TreeNode() + TreeNode() + TreeNode() } } } cn.shui.order.base.ListNode o-- cn.shui.order.base.ListNode : next cn.shui.order.base.Node o-- cn.shui.order.base.Node : left cn.shui.order.base.Node o-- cn.shui.order.base.Node : next cn.shui.order.base.Node o-- cn.shui.order.base.Node : right cn.shui.order.base.Node1 o-- cn.shui.order.base.Node1 : next cn.shui.order.base.Node1 o-- cn.shui.order.base.Node1 : random cn.shui.order.base.TreeNode o-- cn.shui.order.base.TreeNode : left cn.shui.order.base.TreeNode o-- cn.shui.order.base.TreeNode : right right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
d305d5719c0f1748fa83019fa50e485e3fab5442
5a9ed4f65fb0190ffbb0dc0a31e4e622fc205291
/dotfiles/plantuml/plantuml_style.iuml
a1b66c29fdcea4706144fecb1f87bf5fa3eb3c05
[ "MIT" ]
permissive
imochoa/dotfiles
f461eeeaf0749f343b327e79d40be9f716f9d863
3de9b8ff5a277575d6f5000e5cec8c47403cd55e
refs/heads/master
2021-06-16T22:37:33.490323
2021-03-24T21:08:18
2021-03-24T21:08:18
186,593,997
0
0
null
null
null
null
UTF-8
PlantUML
false
false
5,680
iuml
@startuml ' scale 5 hide circle skinparam { Padding 2.5 shadowing false classAttributeIconSize 0 Default { Font { Name Helvetica ' Helvetica ' Microsoft YaHei UI } } backgroundColor White monochrome false 'Black and White MODE title { Font { Color RoyalBlue Style bold Size 28 } } header { Font { Color Red Size 12 } } footer { } legend { Font { Size 12 } } note { BorderColor Chocolate Font { Size 12 } } Activity { StartColor Black EndColor Black BackgroundColor AliceBlue BorderColor SteelBlue BarColor Navy Font { Color Black Style plain Size 16 } Arrow { Color SteelBlue Font { Color Black Style italic Size 12 } } } State { StartColor Black EndColor Black BackgroundColor AliceBlue BorderColor SteelBlue BarColor Navy Font { Color Black Style plain Size 16 } Arrow { Color SteelBlue Font { Color DarkGray Style italic Size 12 } } } Object { BackgroundColor AliceBlue BorderColor SteelBlue BarColor Navy Font { Color Black Style plain Size 16 } Arrow { Color Navy ' SteelBlue Font { Color DarkGray Style italic Size 12 } } } class { BackgroundColor White BorderColor SteelBlue Font { Color Black Style bold Size 14 } } component { BackgroundColor AliceBlue BorderColor SteelBlue Font { Color Black Style plain Size 16 } Interface { BackgroundColor AliceBlue BorderColor SteelBlue Font { Color Black Style plain Size 16 } } node { backgroundColor AliceBlue borderColor SteelBlue Font { Color Black Style plain Size 16 } } database { backgroundColor AliceBlue borderColor SteelBlue Font { Color Black Style plain Size 16 } } Arrow { Color SteelBlue Font { Color Black Style italic Size 12 } } } usecase { BackgroundColor AliceBlue BorderColor SteelBlue Font { Color Black Style plain Size 16 } actor { BackgroundColor LightYellow BorderColor Brown Font { Color Black Style plain Size 16 } } Arrow { Color SteelBlue Font { Color DarkGray Style italic Size 12 } } } sequenceDividerBackgroundColor White sequenceGroupBackgroundColor AliceBlue sequence { BackgroundColor White BorderColor SteelBlue Font { Color Black Style plain Size 16 } LifeLine { BackgroundColor White ' OldLace BorderColor SteelBlue } actor { BackgroundColor LightYellow BorderColor Brown Font { Color Black Style plain Size 16 } } Participant { BackgroundColor White BorderColor SteelBlue Font { Color Black Style Bold Size 16 } } boundary { BackgroundColor AliceBlue BorderColor SteelBlue Font { Color Black Style plain Size 16 } } control { BackgroundColor LightYellow BorderColor Brown Font { Color Black Style plain Size 16 } } entity { BackgroundColor LightYellow BorderColor Brown Font { Color Black Style plain Size 16 } } database { BackgroundColor LightYellow BorderColor Brown Font { Color Black Style plain Size 16 } } box { BackgroundColor White ' WhiteSmoke BorderColor SteelBlue Font { Color Black Style plain Size 16 } } Arrow { Color SteelBlue Font { Color Black Style italic Size 12 } } } } @enduml
false
true
false
false
usecase
52f6da22f8e1f1ee1234d23d2fab819614173220
2cb0d17b297862de0b2876905bc69fab6a3fda1a
/diagrams/class_diagram/reverse_engineered/constraint.plantuml
420c56040bacdd34d68bb417f95833ef01423159
[ "MIT", "LicenseRef-scancode-other-permissive" ]
permissive
julienbenaouda/projectJJA
507bd714ec752d41ce1ef2f7fd05104390f34e92
9063388043b79e68640379cda5f674df62f76213
refs/heads/master
2021-04-27T17:28:29.111045
2018-06-14T19:29:11
2018-06-14T19:29:11
122,321,355
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,199
plantuml
@startuml title __CONSTRAINT's Class Diagram__\n package taskman { package taskman.backend { package taskman.backend.constraint { enum AmountComparator { EQUALS NOT_EQUALS GREATER_THAN GREATER_THAN_OR_EQUALS SMALLER_THAN SMALLER_THAN_OR_EQUALS } } } } package taskman { package taskman.backend { package taskman.backend.constraint { class AndConstraint { + AndConstraint() + getConstraint1() - setConstraint1() + getConstraint2() - setConstraint2() + solution() } } } } package taskman { package taskman.backend { package taskman.backend.constraint { class Constraint { - amount : int + Constraint() + getResourceType() - setResourceType() + getAmountComparator() - setAmountComparator() + getAmount() - setAmount() + solution() } } } } package taskman { package taskman.backend { package taskman.backend.constraint { interface ConstraintComponent { {abstract} + solution() {static} + parseConstraint() } } } } package taskman { package taskman.backend { package taskman.backend.constraint { class IfThenConstraint { + IfThenConstraint() + getIfConstraint() - setIfConstraint() + getThenConstraint() - setThenConstraint() + solution() } } } } package taskman { package taskman.backend { package taskman.backend.constraint { class NotConstraint { + NotConstraint() + getConstraint() - setConstraint() + solution() } } } } package taskman { package taskman.backend { package taskman.backend.constraint { class OrConstraint { + OrConstraint() + getConstraint1() - setConstraint1() + getConstraint2() - setConstraint2() + solution() } } } } AndConstraint -up-|> ConstraintComponent AndConstraint o-- ConstraintComponent : constraint1 AndConstraint o-- ConstraintComponent : constraint2 Constraint -up-|> ConstraintComponent Constraint o-- ResourceType : resourceType Constraint o-- AmountComparator : amountComparator IfThenConstraint -up-|> ConstraintComponent IfThenConstraint o-- ConstraintComponent : ifConstraint IfThenConstraint o-- ConstraintComponent : thenConstraint NotConstraint -up-|> ConstraintComponent NotConstraint o-- ConstraintComponent : constraint OrConstraint -up-|> ConstraintComponent OrConstraint o-- ConstraintComponent : constraint1 OrConstraint o-- ConstraintComponent : constraint2 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
bc057b6acf98b199cb55ffcefde7c16b4c2822bc
58d2cd8afc250755a0cba86cedf6000aae0ced54
/src/main/java/ex41/NameSorter.puml
30ca07bd90c1d102bb597c893eb79d99631ed771
[]
no_license
danielagd/gomez-dugan-cop3330-assignment3
5dddb24373f182e6cdf75051f9eee4aa540eeb24
adbbbdc35962ff692cdfd2e0ae2decee43a6b693
refs/heads/master
2023-08-16T14:29:31.592049
2021-10-12T02:31:25
2021-10-12T02:31:25
416,141,605
0
0
null
null
null
null
UTF-8
PlantUML
false
false
243
puml
@startuml class NameSorter{ + static void main(String[] args) throws IOException + static List<String> scanFile(File file) throws FileNotFoundException + static void write_into_file(List<String> names) throws IOException } @enduml
false
true
false
false
class
2755fdd6e24ee3a26b57a678584cd4749b7d3505
0f1e357d43db3a4ee4e4f3077ccfc94b9f00a4ad
/docs/TP5-observer.plantuml
2c4ca95ed5a206f52c48bc2136d65ce3931738f0
[ "MIT", "CC-BY-SA-3.0" ]
permissive
IUT-Blagnac/cpoa-tp5-romainaury
96f6a5a5febeeda779666eace82e26500ea9d2ba
cb161262045440caf07c856837d8a1f5d59cf8af
refs/heads/master
2023-01-29T16:40:14.688179
2020-12-11T16:44:16
2020-12-11T16:44:16
320,234,878
0
0
MIT
2020-12-11T11:16:06
2020-12-10T10:20:34
Java
UTF-8
PlantUML
false
false
1,839
plantuml
@startuml interface Observer [[java:observer.pattern.Observer]] { void update(Observable o) } class BarChartObserver [[java:observer.pattern.BarChartObserver]] { -Vector<CourseRecord> courseData +BarChartObserver(CourseData data) +void paint(Graphics g) +void update(Observable o) } class JPanel [[java:javax.swing.JPanel]] { } JPanel <|-- BarChartObserver interface Observer [[java:observer.pattern.Observer]] { } Observer <|.. BarChartObserver class CourseController [[java:observer.pattern.CourseController]] { -Vector<JSlider> sliders -JPanel coursePanel +CourseController(CourseData courses) +void addCourse(CourseRecord record) +void update(Observable o) +void actionPerformed(ActionEvent arg0) +void stateChanged(ChangeEvent arg0) +{static}void main(String[] args) } class CourseData [[java:observer.pattern.CourseData]] { } CourseController --> "1" CourseData : courseData class JPanel [[java:javax.swing.JPanel]] { } JPanel <|-- CourseController interface Observer [[java:observer.pattern.Observer]] { } Observer <|.. CourseController interface ChangeListener [[java:javax.swing.event.ChangeListener]] { } ChangeListener <|.. CourseController interface ActionListener [[java:java.awt.event.ActionListener]] { } ActionListener <|.. CourseController class CourseData [[java:observer.pattern.CourseData]] { -Vector<CourseRecord> courseData +CourseData() +void addCourseRecord(CourseRecord courseRecord) +void changeCourseRecord(String subjectName, int numOfStudents) +Vector<CourseRecord> getUpdate() } class Observable [[java:observer.pattern.Observable]] { } Observable <|-- CourseData abstract class Observable [[java:observer.pattern.Observable]] { #Vector<Observer> observers +Observable() +void attach(Observer o) +void detach(Observer o) +void notifyObservers() +{abstract}Object getUpdate() } @enduml
false
true
false
false
sequence
e25480b7866108864de6b9398db373d3740c6260
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/BusinessUnitStoreModeChangedMessagePayload.puml
a9c1dc327219ca50a04d0ae8872734af4054895c
[]
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
704
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 BusinessUnitStoreModeChangedMessagePayload [[BusinessUnitStoreModeChangedMessagePayload.svg]] extends MessagePayload { type: String stores: [[StoreKeyReference.svg List<StoreKeyReference>]] storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]] oldStores: [[StoreKeyReference.svg List<StoreKeyReference>]] oldStoreMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]] } interface MessagePayload [[MessagePayload.svg]] { type: String } @enduml
false
true
false
false
class
ceef7d18bf8618ec6cb93dcecf2d9b98311282ae
b7c218e3ce20014749661c88165ffdf2dfc44762
/tests/Flagbit/Plantuml/Fixtures/testExtends.puml
955ff55cbd9ed9ee7f1a8445bd60a75ae7b429b6
[ "BSD-2-Clause" ]
permissive
scips/php-plantumlwriter
d23583ea7f53ab776d8f86cb7f5b9e2a6cea2525
ec3e0f67f65ca5af6a6941a529a1c5ba310f3b02
refs/heads/master
2021-01-16T20:43:17.780119
2016-10-11T21:51:44
2016-10-11T21:51:44
62,056,439
0
1
null
2016-06-28T14:40:14
2016-06-27T13:01:21
PHP
UTF-8
PlantUML
false
false
88
puml
@startuml class OneClass { } class TwoClass { } class TwoClass extends OneClass @enduml
false
true
false
false
class
1ec3cb8372b1f84a8821bd7740a6f4f47cf6242f
3150c7ff97d773754f72dabc513854e2d4edbf04
/P2/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test-dummies/java/spec/concordion/common/results/runTotals/testsuite/beforeIndex/beforeIndex.plantuml
7b221f14b35470ea351f2966a0c3810b063f11c1
[ "WTFPL", "Apache-2.0" ]
permissive
leRoderic/DS18
c8aa97b9d376788961855d6d75996990b291bfde
0800755c58f33572e04e7ce828770d19e7334745
refs/heads/master
2020-03-29T05:14:14.505578
2019-11-07T18:01:37
2019-11-07T18:01:37
149,574,113
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,116
plantuml
@startuml title __BEFOREINDEX's Class Diagram__\n package spec.concordion { package spec.concordion.common.results { package spec.concordion.common.results.runTotals { package spec.concordion.common.results.runTotals.testsuite { package spec.concordion.common.results.runTotals.testsuite.beforeIndex { class BeforeIndex { } } } } } } package spec.concordion { package spec.concordion.common.results { package spec.concordion.common.results.runTotals { package spec.concordion.common.results.runTotals.testsuite { package spec.concordion.common.results.runTotals.testsuite.beforeIndex { class BeforeSpec { + beforeMethodCalled : boolean + beforeMethod() + wasBeforeMethodCalled() } } } } } } 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
a546a570f88b7209e7ab54a19960918716fed4c0
ef5852b964f91ce0b67fb6f85eb009209fba5df2
/src/main/asciidoc/images/sequence-creation.puml
36e8efc7f89433956a76fe3f198d85712f9209d9
[ "Apache-2.0" ]
permissive
oboehm/jfachwert
86f56f1e4fa2061347db989c3d63d091ef39ccda
1947001ea920f07452a6d46a06e05e6fe733ba5c
refs/heads/develop
2023-08-10T11:33:40.348501
2023-08-04T15:02:46
2023-08-04T15:02:46
84,598,578
1
1
Apache-2.0
2023-03-31T18:48:35
2017-03-10T20:34:17
Kotlin
UTF-8
PlantUML
false
false
213
puml
@startuml actor extern create IBAN extern -> IBAN : new IBAN(iban) IBAN -> LengthValidator : validate(iban, 20) LengthValidator --> IBAN IBAN -> MOD97 : validate(iban) MOD97 --> IBAN IBAN --> extern @enduml
false
true
false
false
usecase
11992cd6f39da197becfb9308289833181b3ba24
2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8
/CleanSheets/src/main/java/csheets/worklog/n1030472/sprint2/auto_description_class_diagram.puml
f965805807a40c9960b57106184a09ce1aa233f6
[]
no_license
ABCurado/University-Projects
7fb32b588f2c7fbe384ca947d25928b8d702d667
6c9475f5ef5604955bc21bb4f8b1d113a344d7ab
refs/heads/master
2021-01-12T05:25:21.614584
2017-01-03T15:29:00
2017-01-03T15:29:00
77,926,226
1
3
null
null
null
null
UTF-8
PlantUML
false
false
361
puml
@startuml doc-files/sort_class_diagram.png class ExtensionManager { -instance : ExtensionManager -extensionMap : SortedMap<String,Extension> -ExtensionManagerFrame frame; -ExtensionManager() +load(Extension _class) } class ExtensionManagerFrame{ -List<String> extensionList -CountDownLatch s } ExtensionManager <|-- ExtensionManagerFrame @enduml
false
true
false
false
class
33870b1ead56479239ce1ec3a3a52d54a2b2b49e
06e8a88bdd899c56bdc47d66c8a8e18aecc14e02
/src/compositemode/CompositeMode.puml
1e0d9163d982b7182948b339ac823655da8645c6
[]
no_license
dlovetco/designMode
0f5a341992a3e62c75a2e80811e581d9405ed28a
0f166ebe06532bf4502e4fc6ce3c4c04a67944a7
refs/heads/master
2021-04-15T15:24:19.898505
2018-03-29T10:01:20
2018-03-29T10:01:20
126,817,842
0
0
null
null
null
null
UTF-8
PlantUML
false
false
308
puml
@startuml interface Root{ {abstract}grow(Root root) {abstract}cut(Root root) {abstract}display(int num) } Root <|.. Branch Root <..* Branch class Branch{ List<Root> rootList grow(Root root) cut(Root root) display(int num) } Root <|.. Leaf class Leaf{ grow(Root root) cut(Root root) display(int num) } @enduml
false
true
false
false
class
863a0bc505b8e1dc1ba4a3f9fb0adb59bb005fe8
21ac630d8d6625f912dda6a3432de1bc228365b2
/doc/wrapper.puml
32bfa6ee665d8bd3657af4244c21f2897a6ccc44
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
n1215/jugoya
db18271eb28fb5be8f3141daa42a85ed3c14cf38
1e4b7527da5389c19d772bf01ec030f468685065
refs/heads/master
2021-01-23T00:40:07.226244
2020-01-11T10:17:02
2020-01-11T10:17:02
92,830,242
4
0
null
2017-06-02T04:46:44
2017-05-30T12:23:45
PHP
UTF-8
PlantUML
false
false
993
puml
@startuml package N1215\Jugoya\Wrapper { class CallableHandler { - $callable: callable + handle(ServerRequestInterface $request): ResponseInterface } note bottom of CallableHandler: wraps callble having the RequestHandler signature\n and acts as RequestHandler class CallableMiddleware { - $callable: callable + process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface } note bottom of CallableMiddleware: wraps callble having the Middleware signature\n and acts as Middleware Psr\Http\Server.RequestHandlerInterface <|-- CallableHandler: implements Psr\Http\Server.MiddlewareInterface <|-- CallableMiddleware: implements } package Psr\Http\Server { interface RequestHandlerInterface { + handle(ServerRequestInterface $request): ResponseInterface } interface MiddlewareInterface { + handle(ServerRequestInterface $request): ResponseInterface } } @enduml
false
true
false
false
class
06fc6ef77eb9da9d4af162465fa1560ed4f32345
fb84bca41a00746017b56791cc1900e4cb811be7
/plantuml/UIs/GameOverSceneManager.puml
c4882e256b241ff8d97cc2da4a16eaa51dcee81b
[]
no_license
MainCastle1212/EverythingEater_Main
9b3622cc5cca5f78a411cfd7df61fbdec29a8856
c228f75b78387aee448c6fbb2f3a362dccb724bd
refs/heads/main
2023-01-12T07:33:38.139825
2020-11-12T10:01:22
2020-11-12T10:01:22
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
243
puml
@startuml class GameOverSceneManager { Start() : void } MonoBehaviour <|-- GameOverSceneManager GameOverSceneManager --> "FinishSizeText" Text GameOverSceneManager --> "GoalSize" Text GameOverSceneManager --> "Player" EatableObjSO @enduml
false
true
false
false
class
6c9b28c4aa91b81ab102647b106267f852abea8a
ad59cc9d1cee29ed5c3450258b4355d396dda553
/Modellen/EDSL/asset-carrier-profile.puml
aebe1b728695a98939e1e9f70df72cb1fcaec1cc
[]
no_license
Geonovum/VIVET-Werkomgeving
fa80fac3aef7d6374ace829e7113ea28ebc08a3a
41a806cdb23eba4976dbd8d2b1c2ab7a097fbd7e
refs/heads/master
2021-06-16T05:51:56.276132
2021-06-13T16:59:31
2021-06-13T16:59:31
207,290,684
1
4
null
2021-03-23T14:52:51
2019-09-09T11:12:06
JavaScript
UTF-8
PlantUML
false
false
256
puml
@startuml class Asset { } Asset <|-- EnergyAsset EnergyAsset *-- "0..*" Port together { class InPort class OutPort } Port <|-- InPort Port <|-- OutPort InPort "*" - "*" OutPort : connectedTo Port *-- Carrier Port *-- "0..*" GenericProfile @enduml
false
true
false
false
class
86d87ab58094d7edab106399244289a2db4ce49a
2e02091b88f904e081a84a78b33501e2687efe4b
/diagrams/stategy.puml
4154bd9ba8deb24b428e75e0a6e0eb49e81ba1ac
[]
no_license
rromank/interview-questions
0aa4b93ed5fc7bdd498efd2cf064fe3dcac5e81e
8fede57a69256bc08f0a7c1424ecd946b539f280
refs/heads/master
2020-03-08T05:16:13.147820
2018-06-04T19:49:32
2018-06-04T19:49:32
127,943,892
0
0
null
null
null
null
UTF-8
PlantUML
false
false
249
puml
@startuml interface Client { Behavior behavior execute() } interface Behavior { run() } class ConcreteBehaviorA implements Behavior { run() } class ConcreteBehaviorB implements Behavior { run() } Client -> Behavior @enduml
false
true
false
false
class
e06f2132e58ec025ca4cedaf2d9de9657c4204c6
b6bbf49458df4f8c821e4728365ce1b2bd47d460
/doc/auth_part.uml
cd82abe4e2202f41377e0789b1c4d1c2013a685a
[ "Apache-2.0", "Vim" ]
permissive
tisnik/insights-operator-controller
b7b263150793b3c4f2e18be07b251ab1d4d04a91
936a01b856ee9ddf5895bb2c76ff6fc19e161a9a
refs/heads/master
2023-04-07T14:20:58.540869
2023-03-21T07:51:56
2023-03-21T07:51:56
214,192,236
0
0
null
2019-10-10T13:37:20
2019-10-10T13:37:20
null
UTF-8
PlantUML
false
false
1,319
uml
// Copyright Pavel Tisnovsky 2019 // // vim:syntax=plantuml @startuml [Insights operator controller service] as service #99ff99 cloud "Internal RH network" { [CLI client] as cli interface "HTTP" as cli_to_ldap_auth_1 interface "HTTP" as cli_to_ldap_auth_2 cli - cli_to_ldap_auth_1 [LDAP auth service] as ldap_auth #ccccff interface "TLS" as ldap_auth_tls_1 interface "TLS" as ldap_auth_tls_2 cli_to_ldap_auth_1 - cli_to_ldap_auth_2 cli_to_ldap_auth_2 - ldap_auth ldap_auth --> ldap_auth_tls_1 :> user+password [Red Hat LDAP] as rh_ldap ldap_auth_tls_1 -- ldap_auth_tls_2 ldap_auth_tls_2 <-- rh_ldap :< user+groups interface "HTTPS" as ldap_auth_to_service_1 note left of ldap_auth_tls_1 LDAP is contacted with user+password end note note left of ldap_auth_tls_2 LDAP responds with user info + groups end note } interface "HTTPS" as ldap_auth_to_service_2 ldap_auth - ldap_auth_to_service_1 ldap_auth_to_service_1 <--> ldap_auth_to_service_2 : mutual authentication scheme ldap_auth_to_service_2 <-> service note left of ldap_auth_to_service_1 : Inside Red Hat network note left of ldap_auth_to_service_2 : In the wild note bottom of service : Service needs to be accessible from client clusters @enduml
false
true
false
false
sequence
bd483a1baef150ea3af9a210d9f67d27d3b21408
c271cd2b70b09c75e8082ec935d39048959de540
/docs/diag/diag_seq_sys.puml
1b4ab3427ead69297186855c318195dee3a62062
[]
no_license
prodageo/mniproj2020b-2020a70b
c37a1da9e8682a2ff03960ac83066255563d25f5
0980442377244601c73b4a66f7df7c6605909a1b
refs/heads/master
2023-02-11T22:01:38.951354
2021-01-07T15:24:40
2021-01-07T15:24:40
304,652,859
0
0
null
null
null
null
UTF-8
PlantUML
false
false
774
puml
@startuml actor Utilisateur participant "Site Web" participant "Serveur Node" participant redisCache participant myHeroImages Utilisateur --> "Site Web" : clique sur Afficher une image "Site Web" --> "Serveur Node" : émet l'évènement chercherImg "Serveur Node" --> "Serveur Node" : tire un id aléatoire entre 1 et 5 "Serveur Node" --> redisCache : cherche l'image de l'id alt redisCache has image redisCache --> "Serveur Node": retourne l'image else not found "Serveur Node" --> myHeroImages : cherche l'image de l'id myHeroImages --> "Serveur Node" : retourne l'image de l'id "Serveur Node" --> redisCache : insère l'image de l'id dans le cache end "Serveur Node" --> "Site Web" : émet l'évènement afficherImg "Site Web" --> Utilisateur : afficherImg(img) @enduml
false
true
true
false
usecase
0a6e97c699f10e2fbf16ebeb9e44de9bde86842a
2ac2809fbfac0c29346d6bf93d0cddda082c5785
/schemas/modules.puml
77042378d7d08dc47d450362adf9a05d22ad8d35
[ "Apache-2.0" ]
permissive
lkoloda-go/architecture-schema
4660afe20c36b94ead6b02e7d27c62927947605d
0938eab6f33d33056bf0702ab983b4710818b131
refs/heads/master
2023-08-08T07:02:30.998872
2021-04-13T09:45:37
2021-04-13T09:45:37
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
319
puml
@startuml 'https://plantuml.com/component-diagram package "Module FoodMenu" { [FoodMenuController] [FoodMenuModel] [FoodMenuRoute] } database "MySql" { folder "FoodMenu" { [FoodMenuDBModel] } } FoodMenuRoute->FoodMenuController FoodMenuController->FoodMenuModel FoodMenuModel->FoodMenuDBModel @enduml
false
true
false
false
sequence
7b796eb45bf28bbc7b17ca60af61a8ada4980b16
dc16f963059014d5e9d1f1ef3407fc1411b7da02
/src/main/java/ex42/App.42.puml
6e4a411f53ad9cce9a5226ddd31c87556b572366
[]
no_license
ifeoma2000/chukuwu-cop3330-assignment3
57ac8e034ccb8e304918234970997c33e432fdfc
e7224a0ef0841bdb4f27626f651763241ffea52e
refs/heads/master
2023-05-31T10:45:19.719257
2021-06-21T04:16:02
2021-06-21T04:16:02
378,803,883
0
0
null
null
null
null
UTF-8
PlantUML
false
false
207
puml
@startuml 'https://plantuml.com/class-diagram class App { -data : ArrayList<String> -fileName : String +readFile(String) : void +writeFile() : void +parseData(ArrayList<String>) : void } @enduml
false
true
false
false
class
18adb7760512da22e311d9efe501b26ac7cc7a74
af52f53908bea1c8f5214847c9915826aad0572b
/docs/diagrams/source/Deployment.plantuml
00865651d3b72ed4531ba1b108f2fe5f3886a7c3
[]
no_license
Kolya59/ExignerDriverAppDoc
d33760e6359db6f7710a0efb8d22f20e593e3874
007aaf3a22d68fe2947a8f92f2568603d289a021
refs/heads/master
2022-04-21T10:25:04.967973
2020-04-18T18:02:36
2020-04-18T18:02:36
256,752,275
0
0
null
null
null
null
UTF-8
PlantUML
false
false
589
plantuml
@startuml Deployment frame OnlineUsage { cloud Server as s actor User as u control Terminal as t control Mobile as m t -> s : Send data s -> t : Send commands s -> m : Send data from termial m -> s : Send commands for terminal u -> m : Send commands for terminal m -> u : Display data from terminal } newpage frame OfflineUsage { actor User as u control Terminal as t control Mobile as m t -> m : Send data m -> t : Send commands u -> m : Send commands for terminal m -> u : Display data from terminal } @enduml
false
true
false
false
sequence
b4e214cbb715e88e1156c2d6e0df5826fc7edd39
2fdfdd23c429bcf31b21547b53fbae2d3c07e090
/Logical/Backend/Backend.puml
d204036ce296b1f1f7aa13195b13f4d43bca5132
[]
no_license
swa-group1/PlantUML
e3c7e073a4852678f98d7cc54d46e4cf5aa9b464
32d4a102b16a2d7c378b1c560bf170725cb2322f
refs/heads/main
2023-04-21T05:42:03.223046
2021-04-27T18:35:25
2021-04-27T18:35:25
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,749
puml
@startuml 'https://plantuml.com/class-diagram class API<< (S,#FF7700) Singleton >>{ Attach*Handler() } class ConnectionBroker{ TryClaimConnection() } class EnemyType { bool Camo int Health string Name double Speed string nextType int SpriteNumber } class RoundSection { string EnemyType int Count DeltaTime } class EnemyDefinitions{ EnemyType[] EnemyTypes Parse() } class TowerType{ bool CanSpotCamo string Description int MediumCost double ProjectileSpeed int ProjectileSpriteNumber double Range double ReloadTime int TowerSpriteNumber int TypeNumber } class RoundDefinitions { RoundSection[][] Rounds } class TowerDefinitions{ TowerType[] Towers } class StorageAPI{ DownloadEnemies() DownloadTowers() DownloadRounds() } class Router { Register() } class Orchestrator { OnClose() } interface LobbyObserver{ OnClose() } class Lobby{ long id string Name int PlayerCount AddObserver() Dispose() } class EcsContainer{ EcsWorld EcsWorld bool HasPlayerDied bool HasPlayerDied bool Running PlaceEnemySystem PlaceTowerSystem int Score SellTowerSystem UpdateClientSystem Dispose() ProcessFightRound() } class System{ } class Stage{ int Number string Name int XSize int YSize Tile[] BlockedTiles double PathLength Point[] PathPoints isBeforeStage() isOnStage() isValidTowerTile() Parse() } class Point{ double X double Y double Distance() double SquareDistance() } class Tile{ double X double Y } class Broadcaster{ Dispose() DisconnectClient() TryAssociateWithConnection() TryAssociateWithConnection() Ping() FightRound() GameMode() InputRound() LobbyMode() EndGame() HealthUpdate() MoneyUpdate() PlayerCountUpdate() TowerPosition() TowerRemoved() AnimationConfirmation() BoardToPathAnimation() PathToPathAnimation() TowerAnimation() HealthAnimation() MoneyAnimation() } interface IReceiver{ JoinLobby() LeaveLobby() PlaceTower() SellTower() StartGame() StartRound() } API <.. Orchestrator: Attach...Handler API <.right. Router : Attach...Handler ConnectionBroker <.. Broadcaster ConnectionBroker --* Orchestrator IReceiver <|-- Lobby Router *-right- IReceiver Router --* Orchestrator Lobby *-- EcsContainer Lobby *-- Broadcaster Lobby --* Orchestrator EcsContainer *-- Stage EcsContainer *-- System EnemyType "n" --* EnemyDefinitions : "EnemyTypes" RoundSection "n" --* RoundDefinitions : "Rounds" TowerType "n" --* TowerDefinitions : "Towers" Lobby ..> TowerDefinitions Lobby ..> RoundDefinitions Lobby ..> EnemyDefinitions Lobby ..> Broadcaster System ..> Broadcaster StorageAPI <.up. TowerDefinitions : DownloadTowers StorageAPI <.up. RoundDefinitions : DownloadRounds StorageAPI <.up. EnemyDefinitions : DownloadEnemies Stage *-- Point Stage *-- Tile Lobby *-- LobbyObserver LobbyObserver <|-up- Orchestrator @enduml
false
true
false
false
class
49b1ee5db3973d288dda8622acf6e90684e13baf
6e57c5b7a48e969ebdaff986ca7c23d2977f7664
/doc/uml/fd_model_class.puml
b45928091007d92400bda2d60ec6e7b0d9858ad0
[]
no_license
mstrHW/SDtoPRN
631c125fde9a7831224c8faccd7274fe11564030
9043f989d7662aa77bad8d7837c670b1883585f9
refs/heads/master
2021-07-20T12:24:45.374265
2020-06-13T02:36:34
2020-06-13T02:36:34
182,827,492
0
0
null
null
null
null
UTF-8
PlantUML
false
false
330
puml
@startuml class FD class Constant class InformationSource class Expression class Flow class Rate FD *-- Constant FD *-- InformationSource FD *-- Expression FD *-- Flow FD *-- Rate class FDRNNConverter FDRNNConverter --> FD : use class ArrayList { Object[] elementData size() } enum TimeUnit { DAYS HOURS MINUTES } @enduml
false
true
false
false
sequence
95bcd797eedbcdf3e3fe9c798c3a074a3ce8d9c0
aa9620300bc8488f53437e0f5faab824225aab73
/ibex_pres/wrapper_wrapped_delegation_seq_one.plantuml
ac3503652923f2845f4226a9a5563bd4891a7f78
[ "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
418
plantuml
@startuml skinparam monochrome true skinparam shadowing false actor user participant Wrapper participant wrapped autonumber 1 "<font color=black>" user -[#black]> Wrapper : **predict(X)** autonumber 2 "<font color=grey>" Wrapper -[#grey]> Wrapper : validate; strip Wrapper -[#grey]> Wrapper : predict(Xt) wrapped -[#grey]> Wrapper : yt Wrapper -[#grey]> Wrapper : add metadata Wrapper -[#grey]> user : y @enduml
false
true
false
false
usecase
238f166e57f2ca3398fc99656a9d1020fb1dca42
f2b3f0970d1b8c52a9cec82be4107ffe1f33a8a2
/lei20_21_s4_2dk_03/docs/USE_CASES/UC3-2051#4/CD.puml
a66c403c6121d5fb9986d1f000f7b970bb889d9d
[ "MIT" ]
permissive
antoniodanielbf-isep/LAPR4-2021
b98ed96809e4726957ede0904b4265825a1083c6
f665064e65cc4f917514c10950af833f053c9b3b
refs/heads/main
2023-05-31T14:29:45.364395
2021-06-20T17:55:26
2021-06-20T17:55:26
378,706,704
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,189
puml
@startuml class AddUserUI <<presentation>>{ } class AddUserController <<application>>{ addUser(userName,FirstName,LastName,E-mail,roles) showListOfFunctions() associarFuncao() showListOfEquipas() associarEquipa(equipa) showListOfColaborators() associarResponsavelHierarquico(colaborador) adicionarColaborador(nomeCurto,nomeCompleto,\ndataNascimento, numeroMecanografico,\ncontactoTelefonico,funcao,equipas,\n localResidenciaColaborador) } interface RepositoryFactory <<factory>>{ newTransactionalContext() users() funcoes() equipas() colaboradores() } class UserBuilder <<builder>>{ createUser() } class PersistenceContext <<Persistence>>{ repositories() } class ColaboradorBuilder <<builder>>{ associarFuncao(funcao) associarEquipa(equipa) associarResponsavelHierarquico(colaborador) withNomeCurto(nomeCurto) build() } interface TransactionalContext <<persistence>>{ beginTransaction() commit() } class User <<system>>{ create(userName,password,\n firstName,lastName,\n email,roles) } class Colaborador <<domain>>{ create(user,nomeCompleto,dataNascimento,\n numeroMecanografico,contactoTelefonico,localResidenciaColaborador) } class UserRepository <<repository>>{ save(User) usersRegistration(ctx) } class FuncaoRepository <<repository>>{ findAll() } class EquipaRepository <<repository>>{ findEquipasPossiveis() } class ColaboradorRepository <<repository>>{ findAll() save(colab) registoColaboradores(ctx) } AddUserUI --> AddUserController : theController AddUserUI ..> User : theUser AddUserUI ..> Colaborador : Colaborador AddUserController --> UserRepository : repo AddUserController ..> TransactionalContext : persistence AddUserController --> User : theUser AddUserController --> Colaborador : Colaborador AddUserController --> ColaboradorBuilder : build AddUserController --> UserBuilder : build AddUserController --> RepositoryFactory : factory AddUserController --> PersistenceContext : persistence PersistenceContext --> UserRepository : repo PersistenceContext --> FuncaoRepository : repo PersistenceContext --> EquipaRepository : repo PersistenceContext --> ColaboradorRepository : repo RepositoryFactory --> TransactionalContext : persistence @enduml
false
true
false
false
sequence
cc75cc60ece980c83f18c7dea7b50f6ffd27318d
62de719e261fac67d2a2bc347a98be5515b48948
/docs/blue/1151708/sp3/export_design.puml
2a105fb9bf24a64118de475da003be2677ad929b
[]
no_license
raulcorreia7/isep_lapr4_17_18
82672fca46e433856d52b3839e3739fa53b8f52c
79217fa01912657da37ef6cdb1a05194dd2f5110
refs/heads/master
2020-04-15T17:52:21.964106
2019-01-09T17:13:14
2019-01-09T17:13:14
164,891,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,049
puml
@startuml export_design.png skinparam handwritten true skinparam monochrome true skinparam packageStyle rect skinparam defaultFontName FG Virgil skinparam shadowing false actor User boundary WorkbookView control ExportCSVService control ExportCSVController box "NSheets Client" participant Browser participant WorkbookView end box box "Server" participant ExportCSVService participant ExportCSVController participant ExportStrategy end box User -> Browser : Export to CSV Browser -> WorkbookView : onClickHandler(exportWindow.show()) WorkbookView -> ExportCSVService : exportCSV(String [][] sheet, String fileName) ExportCSVService -> ExportCSVController :exportCSV(String [][] sheet, String fileName) ExportCSVController -> ExportStrategy : exportCSV(String [][] sheet, String fileName) ExportStrategy --> ExportCSVController : return downloadLink ExportCSVController --> ExportCSVService : ExportCSVService --> WorkbookView : WorkbookView --> Browser : return downloadLink Browser --> User : returns the download link for the file @enduml
false
true
false
false
usecase
adca4394450e55ac5e7b073c65ae8acc13069625
72e0d65cb502431500578350accc1ec3e7423065
/2015-11-CDI-Forge-uni/slides/diagrams/architecture_service.puml
bd6d8ddb394ad7672ed0992039fd52b7b580ce2e
[ "MIT", "CC-BY-4.0" ]
permissive
agoncal/agoncal-talks
a089d816cdcedeb8b00e3ac44198f69322ad44b5
e95c9d28077867034c2df4f868ceba9383f6373a
refs/heads/master
2022-12-05T00:27:03.272910
2022-11-23T14:02:47
2022-11-23T14:02:47
69,746,105
9
5
null
2022-06-24T01:42:35
2016-10-01T15:20:56
HTML
UTF-8
PlantUML
false
false
673
puml
@startuml core.AbstractService <|-- core.ConferenceService core.AbstractService <|-- core.ExpenseService core.AbstractService <|-- core.ReimbursementService core.AbstractService <|-- core.UserService core.CurrencyService ..> core.RateService : inject web.AccountBean ..> core.UserService : inject web.ConferenceBean ..> core.ConferenceService : inject web.ExpenseBean ..> core.ExpenseService : inject web.ReimbursementBean ..> core.ReimbursementService : inject web.UserBean ..> core.UserService : inject web.ExpenseesBean ..> core.ReimbursementService : inject web.ExpenseesBean ..> core.UserService : inject web.ExpenseesBean ..> core.CurrencyService : inject @enduml
false
true
false
false
class
2e8d07e18918a0f633a26a1f975be07618954c4d
69916bfc66c33949e9bff75431fdd9157abd943d
/usecases2.plantuml
52c0a94d5137ae136c11e50698f1f661721b98ee
[]
no_license
IEPSCF-Uccle-PROJINT-S1-2021/diagram-examples
7fbc09044aff79026ee8b4532b1f73fc63c04255
9577fdc6f34c59f619a56950ecf80ec19f9fa214
refs/heads/main
2023-01-24T11:28:58.193674
2020-11-08T22:52:31
2020-11-08T22:52:31
311,170,227
0
0
null
null
null
null
UTF-8
PlantUML
false
false
924
plantuml
@startuml left to right direction actor "Anonyme" as anon actor "Lecteur" as reader actor "Bibliothécaire" as librarian actor "Technicien informatique" as admin rectangle "Bibliothèque" { usecase "S'authentifier" as UC1 usecase "S'enregistrer" as UC2 usecase "Rechercher un livre" as UC3 usecase "Emprunter un livre" as UC4 usecase "Éditer un livre" as UC5 usecase "Encoder un livre" as UC6 usecase "Déclasser un livre" as UC7 usecase "Supprimer un livre" as UC8 usecase "Gérer les droits d'accès" as UC9 } UC1 <-- anon UC2 <-- anon reader ---> UC3 reader --> UC4 UC4 ..> UC3 : includes librarian --> UC5 UC5 ..> UC3 : includes librarian --> UC6 UC5 .> UC6 : extends librarian --> UC7 UC6 -[hidden]r-> UC7 UC7 ..> UC3 : includes UC8 <-- admin UC3 <.. UC8 : includes UC9 <-- admin UC3 -[hidden]-> UC9 UC3 -[hidden]-> UC1 UC3 -[hidden]-> UC2 @enduml
false
true
true
false
usecase
4b6057b6324265cc0ea6791000668c902dce66a9
ca1cdd8d52a097e0ea0000d245b942f8f0fd70f8
/Documentation/UML diagrams/DataModel.plantUml
1b978e3d49eed3fd5bf13578c6e15f6f36d31f75
[]
no_license
SupaGait/JavaProject_Fundamental_class
5f600f05c59eb0e21a86c790a454b0890a4db785
a14ca03598424fb97744dc9699067d3951083cd7
refs/heads/master
2021-01-09T08:11:44.665377
2016-02-08T08:17:04
2016-02-08T08:17:04
49,128,588
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,467
plantuml
@startuml package fr.shazilgerard.findmypatient.datamodel { class Patient{ - String name - String address - Doctor - Room - UUID ID + getName() + get...() + set...() } class User{ - String name - String encryptedPassword - Rights rights + getName() + getRights() + get().. + set...() } class UserManagement{ - IDataDAO<User> userDao - User currentUser -- + UserManagement(IDataDAO<User> userDao) + User login(user, password) + add(User user) + delete(User user) + modify(User user) + List<User> search(User, Matcher) + getRights(User user) .. + login(String name, String password) + logout() + User getCurrentUser() } note top of UserManagement Is responsible for determining the rights of the current user. Other classes, like PatientManagement should ask user rights from this class before executing methods. end note class PatientManagement{ - UserManagement userManagement - IDataDAO<Patient> patientDao + PatientMangament(UserManagement userManagement, IDataDAO<Patient> patientDao) + add(Patient patient) + delete(Patient patient) + modify(Patient patient) + List<Patient> search(Patient, Matcher) } class UserDataEncryption{ + Encrypt(User user) + User Decrypt(.?.) } UserManagement -> User PatientManagement -> Patient UserManagement <-- PatientManagement } @enduml
false
true
false
false
class
008f5392c78def9dc6382fd41fc57fa0197f41e2
df5eb777e0a9e881cd3cefbb2b00ba58c68b04db
/diagrams/src/Controllers/BiddingsController.puml
cc377e38e636f198828188333adaa98816ecda67
[ "MIT" ]
permissive
converge-app/bidding-service
caf61cd4eb3c719c0430b53ce0fdcc225c4c2f8d
fc7539fb98d71b0d8a5fb1282de9fd31573c00b7
refs/heads/master
2023-03-15T22:56:53.011725
2019-12-17T11:42:53
2019-12-17T11:42:53
212,993,977
0
0
MIT
2023-03-04T01:15:47
2019-10-05T12:16:01
C#
UTF-8
PlantUML
false
false
786
puml
@startuml class BiddingsController { - <<readonly>> _mapper : IMapper - <<readonly>> _bidRepository : IBidRepository - <<readonly>> _bidService : IBidService + BiddingsController(bidService:IBidService, bidRepository:IBidRepository, mapper:IMapper) + <<async>> OpenBid(bidDto:BidCreationDto) : Task<IActionResult> + <<async>> AcceptBid(authorization:string, bidId:string, bidDto:BidUpdateDto) : Task<IActionResult> + <<async>> GetAll() : Task<IActionResult> + <<async>> GetByFreelancerId(id:string) : Task<IActionResult> + <<async>> GetByProjectId(projectId:string) : Task<IActionResult> + <<async>> GetById(id:string) : Task<IActionResult> + <<async>> Delete(id:string) : Task<IActionResult> } ControllerBase <|-- BiddingsController @enduml
false
true
false
false
class
096ac0cd9bcd1d0897405a10664627cdb112a3c4
f1043bbb871f3e3a5dd14feae76075162bf62678
/diagramas/secuencias/una_secuencia_prueba.plantuml
4fe32bac7a58f8a737065ee65a19fd98bb1b4d4c
[ "MIT" ]
permissive
diegosanchez/invap-modulo-uml
cd9e7329f3a4ff6bfbee36249ac936b50e3ed2f8
7ba9b07cde50a655df58de80801b48d8b47f8a06
refs/heads/main
2023-07-17T06:16:50.063408
2021-08-25T12:43:12
2021-08-25T12:43:12
396,763,438
1
2
null
null
null
null
UTF-8
PlantUML
false
false
396
plantuml
@startuml skinparam style strictuml title Un usuario se loguea con sus credenciales correctas\n ":TestCase" -> "variableNombre :SensorTemperatura": loging(usuario, password) activate "variableNombre :SensorTemperatura" "variableNombre :SensorTemperatura" -> "variableNombre :SensorTemperatura": verificacion(usuario, password) "variableNombre :SensorTemperatura" --> ":TestCase": [ok] @enduml
false
true
false
false
sequence
d66a23eeaa61eec88c49ce47217431c5a7da71b3
f728fdb8e72b909104ba9024befe629f4ed7f9b3
/sequence_diagram.puml
1b5570081eee48403fa3063dec234b5e5f5aaa5e
[]
no_license
ranafathi/Anubis-IDE
e29b7a575aff7a7d4d7e2c1b1d74ded17acb7e17
aa0c1841bea754bdfb08e00a87484af92643578e
refs/heads/master
2023-05-14T12:37:51.031960
2021-05-30T20:27:36
2021-05-30T20:27:36
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,876
puml
@startuml 'https://plantuml.com/sequence-diagram actor actor as user user -> Application: run app Application -> UI: intUI() UI->Signal:signal() UI->Widget: widget() Widget -> text_widget: itUI() user -> Application: click run Application -> UI: Run() alt port_flag==0 UI -> Application: "Sorry there is no attached compiler" else No port is selected UI -> Application: "Please Select Your Port Number First" user -> Application: choose port Application -> UI: PortClicked() end user -> Application: click save .py file Application -> UI: Save() UI -> Signal: _ _init_ _() Signal -> Widget: Saving() Widget --> Application: File saved as main.py user -> Application: click save .cs file Application -> UI: Save() UI -> Signal: _ _init_ _() Signal -> Widget: Saving() Widget --> Application: File saved as main.cs user -> Application: click open .py file Application -> UI: open() UI -> UI: intUI() UI -> Signal: _ _init_ _() Signal -> Widget: Open() Widget -> PythonHighlighter: highlightBlock() PythonHighlighter -> PythonHighlighter: match_multiline() PythonHighlighter --> Application: File opened user -> Application: click open .cs file Application -> UI: open() UI -> UI: intUI() UI -> Signal: _ _init_ _() Signal -> Widget: Open() Widget -> CSharpHighlighter: highlightBlock() CSharpHighlighter -> CSharpHighlighter: match_multiline() CSharpHighlighter --> Application: File opened user -> Application: click on .py file Application -> Widget: on_clicked() Widget -> PythonHighlighter: highlightBlock() PythonHighlighter -> PythonHighlighter: match_multiline() PythonHighlighter --> Application: Display file content user -> Application: click on .cs file Application -> Widget: on_clicked() Widget -> CSharpHighlighter: highlightBlock() CSharpHighlighter -> CSharpHighlighter: match_multiline() CSharpHighlighter --> Application: Display file content @enduml
false
true
false
false
sequence
dbb4849da14621ce6d5189ce672f32afe3e161ff
07490dee06d69ec7824f638dc606cd7c17a60f02
/src/docs/UML/data/data.puml
ee134cace226ca2811139f73700685e1ea4d6ead
[]
no_license
vitalispopoff/calculator
3d34f43f2508bbeef87898cd4cf62ac75b85bc8c
6c167c1b439d1103c80c7b8ce3426757d0a6b858
refs/heads/master
2020-12-08T22:22:27.419148
2020-08-04T20:18:59
2020-08-04T20:18:59
233,109,848
1
0
null
2020-10-13T18:46:06
2020-01-10T18:45:05
Java
UTF-8
PlantUML
false
false
2,228
puml
@startuml () Solvable ' () Parsable package data { +interface Queueable { .. +{method} add (Queueable) +{method} default isEmpty () : boolean +{method} default isOnePiece () : boolean +{method} default isMultiPiece () : boolean +{method} getHead () : Queueable +{method} getTail () : Queueable +{method} getPrev () : Queueable +{method} getNext () : Queueable +{method} getNumberValue () : double +{method} getType () : Type +{method} setHead (Queueable) +{method} setTail (Queueable) +{method} setPrev (Queueable) +{method} setNext (Queueable) +{method} setValue (double) +{method} setNumberValue (Queueable) +{method} setType (Type) +{method} addType (Type) +{method} removeType (Type) +{method} getCurrentType() : int } +interface Treeable { .. + {method} default convertToLocalTree (Queueable) Queueable + {method} default priorityCheck (Queueable) Queueable .. + {method} convertToTree () .. + {method} setLeft (Queueable) + {method} setRite (Queueable) + {method} getLeft () : Queueable + {method} getRite () : Queueable } +class Node { + {field} {static} content : String + {field} {static} mainQueue : Queueable ~ {field} typeIndex : int[] ~ {field} value : Double ~ {field} type : Type ~ {field} left : Queueable ~ {field} rite : Queueable ~ {field} prev : Queueable ~ {field} next : Queueable -- + {method} {static} resetMainQueue () + {method} {static} encloseContent () + {method} {static} resetContent () - {method} {static} updateContent (Double) ..overrides.. } } Queueable .up.* Queueable Queueable <|-left- Treeable : extends Treeable <|.left. Node : implements Node .left.|> Solvable : implements @enduml
false
true
false
false
deployment
e596c8d9d0586bf39ff3a182d65c33cb7ad268be
7b98725bc9d59417fd946645f8a005c8d4ab6165
/Actividades/A5.1.Osbert/Clases.puml
e29b60d60449b0489e2bce3785fb2553728a24e3
[]
no_license
CesarValladares/A01023506_Aymss18
c2e99581700f8521572b62bfee115110994167cc
cc7127ba7cb011a26e3357e4247c73e925575dcf
refs/heads/master
2021-05-12T14:35:37.195771
2018-05-02T13:33:39
2018-05-02T13:33:39
116,961,507
0
0
null
null
null
null
UTF-8
PlantUML
false
false
791
puml
@startuml class Client{ -Name: string +setName() } class Offer{ -Price: float -Paint: Paint +getInfo() } class Venta{ -Name: string -Direction: string -Price: float -Date: date +setName() +setDirection() +setPrice() +setDate() } class Gallery{ -NumbPa: int -Paintings: vector<Paint> } Class Paint{ -Price: float -Author: string +getPrice() +getAuthor() } Class Auctions{ -listAucti: Auction +getInfo(string Auth, date Date) } class Auction{ -Paintings: Paint -Price: float -Date: date +getAuthor() +getDate() +getCost() } Gallery o-- Paint Auctions o-- Auction Paint->Auctions Offer - Client (Offer, Client) -- Venta @enduml
false
true
false
false
class
cc27f50bbf3f93fdabef388fb4e8444839dc1f87
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/CartChangeCustomLineItemMoneyAction.puml
653c29acf04809a2151c2b2ca84731beeb34d23a
[]
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
526
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 CartChangeCustomLineItemMoneyAction [[CartChangeCustomLineItemMoneyAction.svg]] extends CartUpdateAction { action: String customLineItemId: String customLineItemKey: String money: [[Money.svg Money]] } interface CartUpdateAction [[CartUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
eea905420f853e4b646316d2853d1250e8b9bd3c
0c0b2d42b986c29858805a7d64f1216f282870da
/docs/uml/inventory.puml
521d8fa22074d1c2924dce1e89d021b89731335a
[ "MIT" ]
permissive
Dev-Int/tests
6aceb3f4ab0474c9ce4050dfecc1fd824079fa77
0fd975fe827f458ca3fc2e916efcea00f87ff211
refs/heads/develop
2022-10-07T14:35:49.875604
2020-11-28T23:56:13
2020-11-28T23:56:13
228,473,855
0
0
MIT
2022-09-30T19:27:54
2019-12-16T20:52:45
PHP
UTF-8
PlantUML
false
false
328
puml
@startuml left to right direction skinparam packageStyle rectangle actor User database Database rectangle "Inventory" { User -- (Log in) User -- (Prepare \ninventory) User -- (Enters \ninventory) User -- (Compare \nand correct) User -- (Valid \ninventory) (Log in) -- Database (Valid \ninventory) -- Database } @enduml
false
true
false
false
usecase
8a33651c94ec320cbcf85ae242265ed022b2d7e7
87b13699a92fe26bd2974254727e6859f3ae32f3
/src/csheets/userstories/crm02_01/address_edition/i130371/crm_02_01_analysis_sequence.puml
a09048f21a031605eaf1c786af6a54baeb66f853
[]
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
751
puml
<<@startuml doc-files/crm_02_01_analysis_sequence.png actor User participant "<<analysis>>\nUIExtensionAddress" as UI participant "<<analysis>>\nContactController" as ctrl participant "<<analysis>>\nContact" as contact participant "<<analysis>>\nAddress" as address participant "<<analysis>>\nPersistence" as db UI -> ctrl: getAllContacts(user) ctrl -> db: getAllContacts(user) UI -> User: show all Contacts User -> UI: choose one to address edition User -> UI: Enter the Information UI -> User: Confirm? User -> UI: Confirms create address UI -> address: create() UI -> ctrl: addAddresses(contact, main_address, secundary_address) ctrl -> db: updateContact(user,contact) UI -> User: success of the use case @enduml
false
true
false
false
usecase
2bd00cc739fbe199367619b297e98c8576be8875
0bda4469c7961489ae823ccb031c015afa4aa351
/docs/events.puml
73ec91b27e73472a37de8b25f3b93eef345a8ec1
[]
no_license
forste/devicehub-teal
a93e7944069392b812648f09d5cca8ccd429bfad
a6e21e5eb4233843534ed65a1758268b570202a7
refs/heads/master
2020-03-21T03:30:22.888315
2018-06-19T20:50:46
2018-06-19T20:50:46
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,574
puml
@startuml abstract class Rate abstract class Event abstract class Test abstract class Allocate abstract class Transfer abstract class Trade abstract class EventWithOneDevice abstract class EventWithMultipleDevices abstract class Organize abstract class Plan abstract class Step abstract class PhotoboxRate package "Devices" { abstract class Device abstract class Component Device <|- Component } IndividualRate "1..*" -- "1..*" AggregateRate : ratings < Event <|-- EventWithOneDevice Event <|-- EventWithMultipleDevices EventWithOneDevice <|--- Snapshot EventWithOneDevice <|--- Install EventWithOneDevice <|-- Rate Rate <|-- AggregateRate Rate <|- IndividualRate IndividualRate <|- PhotoboxRate IndividualRate <|-- WorkbenchRate EventWithOneDevice <|-- Test Test <|-- TestDataStorage Test <|-- StressTest EventWithOneDevice <|--- EraseBasic EraseBasic <|- EraseSectors Step <|-- StepZero Step <|-- StepRandom Snapshot "1" -- "1" SnapshotRequest Event "*" -> "0..1" Snapshot : InSnapshot > Event "*" -> "0..1" Component : affectedComponents > Device "1" *-- "*" EventWithOneDevice : EventOn < Device "1..*" *-- "1" EventWithMultipleDevices : EventOn < EraseBasic "1" *-- "1..*" Step PhotoboxRate <|-- PhotoboxSystemRate PhotoboxRate <|-- PhotoboxPersonRate package Images{ ImageList "1" *- "1..*" Image : In < Device "1" *-- "*" ImageList Image "1" *-- "*" PhotoboxRate } EventWithMultipleDevices <|- Organize EventWithMultipleDevices <|-- Transfer EventWithMultipleDevices <|-- Trade EventWithMultipleDevices <|--- ToDispose EventWithMultipleDevices <|--- Locate EventWithMultipleDevices <|--- Migrate EventWithMultipleDevices <|--- Prepare EventWithMultipleDevices <|--- ReadyToUse EventWithMultipleDevices <|--- Recycle EventWithMultipleDevices <|--- Repair EventWithMultipleDevices <|--- ToPrepare EventWithMultipleDevices <|--- ToRepair EventWithMultipleDevices <|--- DisposeWaste EventWithMultipleDevices <|--- Recover Transfer <|-- Receive Trade <|-- Sell Trade <|-- DisposeProduct Trade <|-- Donate Trade <|-- Pay Trade <|-- Rent Organize <|-- Allocate Allocate <|-- Accept Allocate <|-- Reject Allocate <|-- Assign Organize <|-- Plan Plan <|-- Reserve Plan <|-- CancelReservation package Agents { abstract class User abstract class Agent Event "*" -> "1" User : Author > Event "*" - "0..1" Agent : agent > Agent <|-- User User <|-- Person User <|-- System Agent <|-- Organization User "*" -o "0..1" Organization : WorksIn > User "*" -o "0..1" Organization : activeOrganization > } @enduml
false
true
false
false
sequence
04b5a91c05af706a18d8c566c0e99001944b7b5d
9fb800bced4689dc1cd56f5fd38f288062d5140c
/src/collaboration-service/Application/Database/DatabaseContext.puml
a24365ebe999b19cbaf3bc3c91dd5c5d811983c4
[]
no_license
converge-app/uml-diagrams
b0638f3b801ced52b650025b1b81d29f4ff345fe
4202d41a464838d7604062e407b065bf512ad8d6
refs/heads/master
2020-11-25T09:53:56.136779
2019-12-17T12:11:29
2019-12-17T12:11:29
228,607,152
0
0
null
null
null
null
UTF-8
PlantUML
false
false
379
puml
@startuml interface IDatabaseContext { Collaborations : IMongoCollection<Event> <<get>> IsConnectionOpen() : bool } class DatabaseContext { - <<readonly>> _database : IMongoDatabase + DatabaseContext(settings:IDatabaseSettings) + Collaborations : IMongoCollection<Event> <<get>> + IsConnectionOpen() : bool } IDatabaseContext <|-- DatabaseContext @enduml
false
true
false
false
class
ec7106194701c969f787e7a8d0f755eddb5f311c
f8781f0e74245981db90d630c5ebc8e4407effb7
/exercise46/docs/Solution46UML.puml
89fad4eefd3681f890bf1544b428f9147d74e28c
[]
no_license
Perry-codes/perry-a04
3865001ae99bb2d5fe9a905ae6e02ccfd213cd60
78bbd778f64916b59b534babac671a528b64ca19
refs/heads/master
2023-08-27T18:11:43.650631
2021-10-17T23:15:53
2021-10-17T23:15:53
414,005,740
0
0
null
null
null
null
UTF-8
PlantUML
false
false
84
puml
@startuml class Solution46{ String inputFile main() } class WordCounter{ } @enduml
false
true
false
false
class
61b510dd245fb4c0fcd0a75e11b61a76ca5b58b9
0f06bf9da372b9da12580eb47a526bea38ed11b6
/docs/diagrams/src/demo.puml
c63ce7854fa6fd98efce4f3bc28a98f04fc876ef
[]
no_license
robobe/robobe.github.io
c67946f39d4e7fb44dcc0cb5be85f268dd2d9dcf
40d248b32edc1aa620d56848353e1c06bf7b9e20
refs/heads/master
2023-09-04T02:56:30.391862
2023-08-30T14:30:41
2023-08-30T14:30:41
471,691,372
2
0
null
null
null
null
UTF-8
PlantUML
false
false
105
puml
@startuml (First usecase) (Another usecase) as (UC2) usecase UC3 usecase (Last\nusecase) as UC4 @enduml
false
true
false
false
usecase
8e9f49aa5c2d9551bd92f5b7177be75b8c380ca9
c9f776512224bea54ea954daabce3684cf2993f0
/android/6pan2/app/src/main/java/cn/cdut/a6pan/ui/main/viewmodel/viewmodel.plantuml
b87451ff7cc4c70a483e33f0da02965324bb58f6
[ "MIT" ]
permissive
mooleetzi/lab
d1ff5434981eb934de75d699acefb3b9b1a2c4a7
57df24f6e4f439eb4fad3f2217d3b8fd6f609a6b
refs/heads/master
2020-06-09T12:34:05.968034
2020-01-07T01:58:47
2020-01-07T01:58:47
193,438,979
2
0
null
null
null
null
UTF-8
PlantUML
false
false
3,198
plantuml
@startuml title __VIEWMODEL's Class Diagram__\n namespace cn.cdut.a6pan { namespace ui.main { namespace viewmodel { class cn.cdut.a6pan.ui.main.viewmodel.FileViewModel { {static} - NUM_PER_PAGE : int {static} - PAGE_FIRST : int {static} - TAG : String - checked : MutableLiveData<HashSet<Integer>> - ctx : Context - iscloseDialog : MutableLiveData<Boolean> - mLiveData : LiveData<PagedList<File>> - mPage : int - mRecycleBinData : LiveData<PagedList<File>> - orderBy : Integer - pageKeyedDataSource : PageKeyedDataSource - path : MutableLiveData<String> - pre : HashMap<String, String> - recycleBinDataSource : PageKeyedDataSource - title : MutableLiveData<String> + getChecked() + getIsCloseDialog() + getLiveData() + getPath() + getPrePath() + getRecycleBinRefreshLiveData() + getRefreshLiveData() + getTitle() + getmRecycleBinData() + initPagedList() + putPrePath() + setCtx() + setOrderBy() - getPageKeyedDataSource() - getRecycleBinDataSource() - initRecycleBinList() } } } } namespace cn.cdut.a6pan { namespace ui.main { namespace viewmodel { class cn.cdut.a6pan.ui.main.viewmodel.SettingViewModel { } } } } namespace cn.cdut.a6pan { namespace ui.main { namespace viewmodel { class cn.cdut.a6pan.ui.main.viewmodel.TransmissionViewModel { {static} - NUM_PER_PAGE : int {static} - TAG : String - ctx : Context - mLiveData : LiveData<PagedList<OfflineTask>> - pageKeyedDataSource : PageKeyedDataSource + getPageKeyedDataSource() + getRefreshLiveData() + getmLiveData() + setCtx() - initPagedList() } } } } namespace cn.cdut.a6pan { namespace ui.main { namespace viewmodel { class cn.cdut.a6pan.ui.main.viewmodel.UserViewModel { - user : MutableLiveData<Person> + UserViewModel() + getUser() + setUser() } } } } cn.cdut.a6pan.ui.main.viewmodel.FileViewModel -up-|> androidx.lifecycle.ViewModel cn.cdut.a6pan.ui.main.viewmodel.FileViewModel o-- cn.cdut.a6pan.Bean.ResultFilePage : resultBean cn.cdut.a6pan.ui.main.viewmodel.SettingViewModel -up-|> androidx.lifecycle.ViewModel cn.cdut.a6pan.ui.main.viewmodel.TransmissionViewModel -up-|> androidx.lifecycle.ViewModel cn.cdut.a6pan.ui.main.viewmodel.TransmissionViewModel o-- cn.cdut.a6pan.Bean.ResultOfflineTaskPage : resultBean cn.cdut.a6pan.ui.main.viewmodel.UserViewModel -up-|> androidx.lifecycle.AndroidViewModel 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
1ccd239222eb18bd955521c94939f871e1d241a3
220a9488453befbd410f5f7ac830b27c87539aca
/cli/uml/use_case_diagram/use_case_diagram.puml
d3778023d1e551f81ec674e2392466ac2c918786
[]
no_license
ktvcv/hotel-project
5156d9d395152a884095b8d03174a12261e6bd02
14ace34aa8f38394235dd09746c8a9582fd99e1c
refs/heads/master
2023-04-28T09:17:36.141309
2020-12-09T17:17:37
2020-12-09T17:17:37
250,385,675
0
1
null
2023-04-14T17:44:03
2020-03-26T22:28:22
Java
UTF-8
PlantUML
false
false
696
puml
@startuml :Guest: as Guest :User: as User :Admin: as Admin User <|--Guest Guest <|--Admin (Input dates for finding room) as (FindRooms) (Choose one room for reservation) as (Choose) (Make reservation) as (MakeRes) (Make payment) as Payment (Cancel reservation) as (Cancel) (Guest check-in) as (CheckIn) (Guest check-out) as (CheckOut) (Registration) as (Registration) (Assign room to guest) as (Assign) (CheckIn).> (Payment):include (CheckOut) <.(Payment):extents (MakeRes).> (Payment):include (CheckIn).> (Assign):include (MakeRes).> (Registration):include User --> FindRooms User --> Choose User --> Registration User --> MakeRes Admin --> CheckIn Admin --> CheckOut Guest --> Cancel @enduml
false
true
false
false
class
58f4802111a252853f143da51b543572e90efd72
1e992cebb323e6f1bbddd1e23b6214f8806b7834
/sip/SIP-01-INVITE-Sending/sip_client_server_invite_sending.puml
a2391e3bcba14d85273ccb2e7acd0aa7b9664d52
[]
no_license
gongpengjun/code_diagrams
006c66441ae26331d19a408912af01c84e1bd5f4
686a830f47e407ddc58e7f8003331ee4fca5975c
refs/heads/master
2021-06-26T00:52:25.079556
2020-10-27T13:45:34
2020-10-27T13:45:34
166,416,838
0
1
null
null
null
null
UTF-8
PlantUML
false
false
569
puml
@startuml 'title SIP INVITE Sending Flow skinparam monochrome true autonumber "F00 " hide footbox skinparam BoxPadding 10 'skinparam headerFontSize 14 'skinparam headerFontColor red 'header SIP-0 box "UAC" participant "INVITE client transaction" as UAC_ITC end box box "UAS" participant "INVITE server transaction" as UAS_ITS end box 'hnote over UAC_ITC: None activate UAC_ITC hnote over UAC_ITC: Calling UAC_ITC -> UAS_ITS: INVITE activate UAS_ITS hnote over UAS_ITS: Proceeding UAC_ITC <- UAS_ITS: 100 Trying / 180 Ringing hnote over UAC_ITC: Proceeding @enduml
false
true
false
false
sequence
8c1b8304fb1d97ef3b90d6d9f22f68da609e16a3
5d1e12017634420d89ac5156679f801eeb5195f9
/Class_diagram.puml
7b62b7ed181bc0fe2f488395809426ed7ec2a7f6
[]
no_license
Bizolivier/analyse
b20e72f033c9bab527c68586ee42d7a90400ebdd
eedcdd0b4641df3db4e04442e2d667b75d52d92d
refs/heads/master
2023-05-10T09:34:11.581977
2021-06-23T13:29:12
2021-06-23T13:29:12
379,611,704
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,475
puml
@startuml skinparam shadowing false class User { -id:int -name : string -surname : string -timeCredit : int -ArrayList : Service[] serviceToProvid -ArrayList : Objet[] objectToExchange -ArrayList : Offer[] myOffers -sex:string -address:string -ratingUser:Rating } class Service { -id:int -Name :string -provider:User -validation:boolean -comment:Comment -rating:Rating -ArrayList : Comment[] comReceived -ArrayList : Rating[] ratingGiven } class Category{ -id:int -name:string -ArrayList : Service[] serviceToProvid } class Message{ -id:int -sender:User -receiver:User -content:string -date:DateTime -offer:Offer } class Object{ -id:int -name:string -state:Enum -description:string } class Comment{ -id:int -content:string -autor:User -serviceCommented:Service -date:DateTime } class Offer{ -id:int -name:string -autor:User -service:Service -date:DateTime -message:Message -ArrayList : Message[] msgSended } Class Rating{ -id:int -scale:int -ratedService:Service } User "1" *-- "many" Service : owns > User "1" *-- "many" Offer : owns > Offer"1" *-- "many" Message : contains > Service "1" *-- "many" Comment : send/receiv > Service "1" *-- "many" Rating : send/receiv > Category "1" *-- "many" Service : contains > Offer -- Service : contains > Object --|> Service @enduml
false
true
false
false
class
50fde1848ede06f7328ffb8b5b14b43af579aa6c
d975ba90a37d227caa0f1b7a6c9702356c6fd903
/uml/libapgqt/Transporters.iuml
c7eac0bec4099d3c5a50e3c88a41f769cc30bc7e
[]
no_license
MinhNghiaD/Airplug-ClearPath
2beea0ff94574e19251700202862f25d3003c266
da5625da3744254a95fa30f395d11c8f7f7863ea
refs/heads/master
2022-11-12T17:13:37.167323
2020-06-17T06:35:10
2020-06-17T06:35:10
255,916,966
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,573
iuml
@startuml(id=transportersMessage) ' ==== MessageTransporter ==== abstract class Airplug::MessageTransporter { +explicit MessageTransporter(QObject*) +~MessageTransporter() ==FUNCTIONS== +{abstract}virtual void sens(const QString&) = 0 ==SIGNALS== +void signalMessageReceived(const QString&) +void signalDisconnected() } enum MessageTransporter::UdpType { UniCast = 0 MultiCast } @enduml @startuml(id=transportersStd) ' ==== StdTransporter ==== class Airplug::StdTransporter { +explicit StdTransporter(QObject*) +~StdTransporter() ==FUNCTIONS== +void send(const QString&) override ==SLOTS== -void slotMessageArrive() ==ATTRIBUTES== -class Private -Private* d } class StdTransporter::Private { +Private() +~Private() ==ATTRIBUTES== +QSocketNotifier* notifier } @enduml @startuml(id=transportersUdp) ' ==== UdpTransporter ==== class Airplug::UdpTransporter { +explicit UdpTransporter(const QString&, int, UdpType, QObject*) +~UdpTransporter() ==FUNCTIONS== +void send(const QString&) override ==SLOTS== -void slotMessageArrive() ==ATTRIBUTES== -class Private -Private* d } class UdpTransporter::Private { +Private() +~Private() ==ATTRIBUTES== +QUdpSocket* socket +QHostAddress host +int port } @enduml @startuml(id=transportersLinks) namespace Airplug { MessageTransporter o-- MessageTransporter::UdpType MessageTransporter <|- StdTransporter MessageTransporter <|- UdpTransporter StdTransporter *-- StdTransporter::Private UdpTransporter *-- UdpTransporter::Private } @enduml
false
true
false
false
class
e8b0fb9c7fa63f180584385affae759babcd9f7b
10cb5f5f55912ace08bfc663a43a91dbf58d5039
/app/src/main/java/moortala/com/ordertracker/Sequence2.puml
c1682a062ffd2ff6d8702bc034aa5448bf93c718
[]
no_license
murtala/OrderTracker
5e6f8e76f31b5230706dcab77d7c04112b371d43
a1bd3283da0edb03e09b5ab9afb0ce8b85bb66a4
refs/heads/master
2021-01-21T13:40:33.932248
2016-05-07T17:09:36
2016-05-07T17:09:36
54,591,788
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,402
puml
@startuml title Order Friendly App Sequence Diagram alt Create New Order Waiter -> OrderFriendlyApp:Submit New Order OrderFriendlyApp -> Server:Send Request activate Server OrderFriendlyApp <-- Server:Send Response deactivate Server Waiter <- OrderFriendlyApp:Display Message OrderFriendlyApp -> Chef:Display Notification alt Start Order OrderFriendlyApp <- Chef:Start Order activate Server OrderFriendlyApp -> Server:Update Order Status OrderFriendlyApp <- Server:Send Response deactivate Server OrderFriendlyApp -> Chef:Display Confirmation Message OrderFriendlyApp -> Waiter:Display Notification else Edit Order OrderFriendlyApp <- Chef:Edit Order activate Server OrderFriendlyApp -> Server:Update Order Status OrderFriendlyApp <- Server:Send Response deactivate Server OrderFriendlyApp -> Chef:Display Confirmation Message OrderFriendlyApp -> Waiter:Display Notification else Complete Order OrderFriendlyApp <- Chef:Complete Order activate Server OrderFriendlyApp -> Server:Update Order Status OrderFriendlyApp <- Server:Send Response deactivate Server OrderFriendlyApp -> Chef:Display Confirmation Message OrderFriendlyApp -> Waiter:Display Notification end else View Orders alt View New Orders Waiter -> OrderFriendlyApp:View New Orders OrderFriendlyApp -> Server:Send Request activate Server OrderFriendlyApp <-- Server:Send Response deactivate Server Waiter <- OrderFriendlyApp:Display Message else View Orders In Progress Waiter -> OrderFriendlyApp:View Orders In Progress OrderFriendlyApp -> Server:Send Request activate Server OrderFriendlyApp <-- Server:Send Response deactivate Server Waiter <- OrderFriendlyApp:Display Message else View Completed Orders Waiter -> OrderFriendlyApp:View Completed Orders OrderFriendlyApp -> Server:Send Request activate Server OrderFriendlyApp <-- Server:Send Response deactivate Server Waiter <- OrderFriendlyApp:Display Message end else Edit Orders Waiter -> OrderFriendlyApp:Edit Orders OrderFriendlyApp -> Server:Send Request activate Server OrderFriendlyApp <-- Server:Send Response deactivate Server OrderFriendlyApp -> Chef:Display Notification OrderFriendlyApp -> Waiter:Display Confirmation Message else Cancel Order Waiter -> OrderFriendlyApp:Cancel Order OrderFriendlyApp -> Server:Send Request activate Server OrderFriendlyApp <-- Server:Send Response deactivate Server OrderFriendlyApp -> Waiter:Display Confirmation Message end @enduml
false
true
false
false
sequence
01be3e3e966915b5cf44da4bdeddb511836fcb87
3d02493ef03cd6b6bdf1049da8beed48216fa762
/diagramas/Maquina de estados/codigo/altaME.puml
8fc77e7a27e7cf14889bf0b425e0c2ec9949cef0
[]
no_license
ArturoBurela/Residencias
482e88f891cd601a6d95ae983ee8e46aa74ee0fd
53fc532a0d971834ac0930b46f23a79ecc2fadcb
refs/heads/master
2021-08-22T16:51:13.452307
2017-11-30T17:45:03
2017-11-30T17:45:03
110,843,664
1
2
null
2017-11-22T16:21:24
2017-11-15T14:26:26
Java
UTF-8
PlantUML
false
false
215
puml
[*] --> Inicio Inicio : Seleccionar alta deseada Completar: Ingresar los campos requeridos Terminar : Registrar los datos Inicio --> Completar : completar Completar --> Terminar : almacenar Terminar --> [*] @enduml
false
true
false
false
sequence
d4da5c8446fea321a75de464add3147e1f7ea857
71b2b850f26a7aff13ad816e58b8a0e78bf7f16f
/distribution/material-4/File/SnippetFolder.puml
a077d90cd7c8b368c52ba5cbe90ca3d470432198
[ "MIT" ]
permissive
VinayaSathyanarayana/plantuml-libs
3af384f3c7c471f928f48a9c6c7087586b9ad74e
d15f62139a69c281047469db46dcfd8d32cfadd1
refs/heads/master
2023-08-16T08:28:18.839481
2021-09-25T13:17:07
2021-09-28T14:13:42
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
613
puml
' definition of the Item material-4/File/SnippetFolder sprite $SnippetFolderXs [10x10/16z] Oy06-840oe823WYBWOcV1yBYuSTaSN82MHnG7KZ60G sprite $SnippetFolderSm [12x12/16z] Oy09U7XusA5CNduWu042RX0R1fYWR0O6FZYRYPy1XOrG0sBp8EbbO8O155i1 sprite $SnippetFolderMd [16x16/16z] bSt50S0W44JHYNlelrhSdO--qs8u8ZeiPo9xHS-gx7AUvpCmFfo1nQxv-m8lFE4fceVhTQrenG sprite $SnippetFolderLg [20x20/16z] fSYr0G0X50MmXpliF-svO1K_PK0ZrGcrSZEJA_7ctglP-dBEvH3hOm0VBcJ8_c8fM3t6UN_U7QghU02sEv3i !procedure SnippetFolder($id, $name="", $tech="") IconElement($id, 'IconElement', 'material-4/File/SnippetFolder', $name, $tech) !endprocedure
false
true
false
false
uml-unknown
683117b21e2ae8f327da8e7609697f82a28c40b3
9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9
/java/resources/plantuml/structural/adapter-timing.puml
09305078df01de7b8adac932bc46670af9e295a7
[ "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
329
puml
@startuml scale 1024 height title Adapter mode timing diagram actor Client participant Adapter participant Adaptee activate Client Client -> Adaptee: 1.1 <<create>> activate Adaptee Client -> Adapter: 1.2 <<create with Adaptee>> activate Adapter Client -> Adapter: 2.1 targetMethod() Adapter -> Adaptee: 2.2 srcMethod() @enduml
false
true
false
false
sequence
51c46846bf51253a5cfe95421cc6dc7eb8f2266f
54f0570710d72445f30bc8261595126edc5b67ca
/ass15/prog1_tk.py.class.puml
72e9cf02c24dcb33947a17142090ba6310ab3594
[]
no_license
deadbok/eal_programming
cab8fc7145b5115f887a7b10aad90880a799d118
33bf532b397f21290d6f85631466d90964aab4ad
refs/heads/master
2021-01-13T15:11:19.276462
2017-06-13T09:20:51
2017-06-13T09:20:51
76,203,290
1
0
null
null
null
null
UTF-8
PlantUML
false
false
209
puml
@startuml skinparam monochrome true skinparam classAttributeIconSize 0 scale 2 class MyGUI{ +parent +info_str +info_label +info_button +quit_button -__init__() +add_data() } @enduml
false
true
false
false
class
c6c76eed2f10626f97dd26cfd7d6e111279e1db8
d1fdc1fd3212b9359aa6ab3157fe18beaf697b95
/docs/plantuml/extended_sequence.puml
6cdb2c2c6cc0f77da328f308d18d6d2c240338e9
[]
no_license
throup/probable-garbanzo
d0462880dbf74caaa870e7a61ec591342eb8037c
5b68bd2b169d0805bebc6634170d57b28a5ba856
refs/heads/main
2023-04-05T04:56:47.221500
2021-01-24T11:09:26
2021-01-24T11:09:26
330,739,225
0
0
null
2021-01-23T19:13:34
2021-01-18T17:27:47
Scala
UTF-8
PlantUML
false
false
1,491
puml
@startuml actor user boundary REST box "proxy-server" participant AllPrimesController as controller participant AsyncIterator as iterator participant PrimesClient as client end box boundary gRPC participant "prime-number-server" as service user -> controller ++ : GET /prime/6 controller -> client ++ : allPrimesTo(6) client -> service ++ : nextPrimeAfter(0) controller <-- client -- : returns iterator controller -> iterator ++ : hasNext() client <-- service -- : 2 iterator <- client ++ : onNext(2) iterator --> client -- client -> service ++ : nextPrimeAfter(2) controller <-- iterator -- : true controller -> iterator ++ : next() controller <-- iterator -- : 2 user <-- controller : 2 controller -> iterator ++ : hasNext() client <-- service -- : 3 iterator <- client ++ : onNext(3) iterator --> client -- client -> service ++ : nextPrimeAfter(3) controller <-- iterator -- : true controller -> iterator ++ : next() controller <-- iterator -- : 3 user <-- controller : ,3 controller -> iterator ++ : hasNext() client <-- service -- : 5 iterator <- client ++ : onNext(5) iterator --> client -- client -> service ++ : nextPrimeAfter(5) controller <-- iterator -- : true controller -> iterator ++ : next() controller <-- iterator -- : 5 user <-- controller : ,5 controller -> iterator ++ : hasNext() client <-- service -- : 7 note over client: 7 > 6 iterator <- client ++ : onCompleted() iterator --> client -- controller <-- iterator -- : false user <-- controller -- : . @enduml
false
true
false
false
usecase
7f8b4d1dd78754147e4c98e0c36d86a6ad8de042
9bcd4da5e5454922139d0afefc782a997988ad1f
/docs/SprintC/US/US10/US10_MD.puml
d9f407900977033c680d82e1778dc33392f2456c
[ "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
604
puml
@startuml hide methods left to right direction skinparam classAttributeIconSize 0 class Company{ -chemicalLab } class ClinicalAnalysisLaboratory{ -idLaboratory -name -address -phoneNumber -tin -testType } class ParametersCategory{ -code -name } class Parameter{ -code -name -description } ClinicalAnalysisLaboratory "1" -- "*" Parameter : capable of analysing > ClinicalAnalysisLaboratory "1" -- "*" ParametersCategory : adopts > Parameter "*" -- "1" ParametersCategory : presented under > Company "1" -- "*" ClinicalAnalysisLaboratory : owns > @enduml
false
true
false
false
class
173a8f0d965d0e7da2f804a6efd7eea32c707040
0ec9b09bca5e448ded9866a5fe30c7a63b82b8b3
/domainModel/basic/docs/diagrams/src/vistas.plantuml
a566ea3eae1d363b549955f912d5db65b73b5dbe
[]
no_license
pixelia-es/USantaTecla-project-mastermind-java.swing.socket.sql
04de19c29176c4b830dbae751dc4746d2de86f2e
2b5f9bf273c67eedff96189b6b3c5680c8b10958
refs/heads/master
2023-06-10T13:09:55.875570
2021-06-29T15:16:23
2021-06-29T15:16:23
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
451
plantuml
@startuml desarrollo_implementacion package " " as usantatecla.mastermind { } package " " as usantatecla.utils { } package " " as java.io { } package " " as java.util { } [mastermind.jar] as jar jar *--> usantatecla.mastermind jar *--> usantatecla.utils jar *--> java.io jar *--> java.util @enduml @startuml despliegue_fisica node node #DDDDDD [ <b>Personal Computer</b> ---- ] [ mastermind.jar ] as component node *--> component @enduml
false
true
false
false
class
2e53ef0b295046b6e44a2b4277449200b92042e1
8eef6a1b7768447f0f2091c6090a1a13411794d8
/docs/architecture.puml
5fd46f7d9aa37ca6438285b7f3b28f12c4103c72
[]
no_license
sungoh5/stock_prediction
4afc53905f3b6015193d4c9f7c5ed2ff2fdc8085
dc8f870657ec9c8422d35b5b702be4a59188075c
refs/heads/main
2023-05-05T06:26:41.689070
2021-05-29T13:22:02
2021-05-29T13:22:02
369,781,622
0
0
null
null
null
null
UTF-8
PlantUML
false
false
618
puml
@startuml package "Client" { [Browser] - HTTP } package "Kubernetes (minikube)" { HTTP - [API Gateway] [Stock Prediction] [Stock Data Sync Batch] [Stock ML Training Batch] database "MongoDB" { [Documents] } } cloud { [Yahoo Finance] } [API Gateway] --> [Stock Prediction] [Stock Prediction] <-- [Documents] : Read stock data [Stock Data Sync Batch] --> [Documents] : Insert stock data [Stock Data Sync Batch] <-- [Yahoo Finance]: Obtain stock data [Stock ML Training Batch] <-- [Documents] : Read stock data [Stock ML Training Batch] --> [Documents] : Insert stock prediction data @enduml
false
true
false
false
sequence
1bd485e6a69562820f875738ca6eec9f6fd2e291
3662b2e08ec5aef2e3dfd1e527b5e50f44d91e1c
/docs/diagrams/HelpCommandSequenceDiagram.puml
6eeedf33011d8ba90d142a8f738fd71a676ec2a6
[]
no_license
AY2021S2-CS2113T-W09-2/tp
0585f03b1390bf9385a5caef22f00aa599b18d13
7d4443d633ae380505f7a69687cc34ab71e0a06b
refs/heads/master
2023-04-17T11:33:49.033344
2021-04-16T02:46:37
2021-04-16T02:46:37
343,961,010
0
5
null
2021-04-16T02:46:37
2021-03-03T01:14:38
Java
UTF-8
PlantUML
false
false
771
puml
@startuml hide footbox participant ":iGraduate" as iGraduate participant ":Parser" as Parser participant ":HelpCommand" as HelpCommand participant ":Ui" as Ui iGraduate -> Parser: parseCommand("help add") activate Parser #FFBBBB Parser -> Parser: createHelpCommand(commandParameters:ArrayList<String>, commandFlags:ArrayList<String>) activate Parser #DarkSalmon create HelpCommand Parser -> HelpCommand: HelpCommand("add") activate HelpCommand HelpCommand --> Parser: new HelpCommand("add") deactivate HelpCommand deactivate Parser Parser --> iGraduate: new HelpCommand("add") deactivate Parser iGraduate -> HelpCommand: execute(moduleList, ui, storage) activate HelpCommand HelpCommand -> Ui: printAddHelp() activate Ui deactivate Ui destroy HelpCommand @enduml
false
true
false
false
sequence
6d3ec1bba3efea0d6d2c94faf4b1797d28b8f5e7
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/DirectDiscount.puml
218a6af1b1c2806fc746694de3b16add77f8496c
[]
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
8,230
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 DirectDiscount [[DirectDiscount.svg]] { id: String value: [[CartDiscountValue.svg CartDiscountValue]] target: [[CartDiscountTarget.svg CartDiscountTarget]] } interface Cart [[Cart.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime key: String customerId: String customerEmail: String customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] anonymousId: String businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] store: [[StoreKeyReference.svg StoreKeyReference]] lineItems: [[LineItem.svg List<LineItem>]] customLineItems: [[CustomLineItem.svg List<CustomLineItem>]] totalLineItemQuantity: Long totalPrice: [[CentPrecisionMoney.svg CentPrecisionMoney]] taxedPrice: [[TaxedPrice.svg TaxedPrice]] taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]] taxMode: [[TaxMode.svg TaxMode]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] cartState: [[CartState.svg CartState]] billingAddress: [[Address.svg Address]] shippingAddress: [[Address.svg Address]] shippingMode: [[ShippingMode.svg ShippingMode]] shippingKey: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] shippingCustomFields: [[CustomFields.svg CustomFields]] shipping: [[Shipping.svg List<Shipping>]] itemShippingAddresses: [[Address.svg List<Address>]] discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]] directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]] refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] country: String locale: String origin: [[CartOrigin.svg CartOrigin]] custom: [[CustomFields.svg CustomFields]] deleteDaysAfterLastModification: Integer lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] } interface Order [[Order.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime orderNumber: String purchaseOrderNumber: String customerId: String customerEmail: String customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] anonymousId: String businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] store: [[StoreKeyReference.svg StoreKeyReference]] lineItems: [[LineItem.svg List<LineItem>]] customLineItems: [[CustomLineItem.svg List<CustomLineItem>]] totalPrice: [[TypedMoney.svg TypedMoney]] taxedPrice: [[TaxedPrice.svg TaxedPrice]] taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]] taxMode: [[TaxMode.svg TaxMode]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] billingAddress: [[Address.svg Address]] shippingAddress: [[Address.svg Address]] shippingMode: [[ShippingMode.svg ShippingMode]] shippingKey: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] shippingCustomFields: [[CustomFields.svg CustomFields]] shipping: [[Shipping.svg List<Shipping>]] itemShippingAddresses: [[Address.svg List<Address>]] discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]] directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]] refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] country: String locale: String origin: [[CartOrigin.svg CartOrigin]] cart: [[CartReference.svg CartReference]] quote: [[QuoteReference.svg QuoteReference]] orderState: [[OrderState.svg OrderState]] shipmentState: [[ShipmentState.svg ShipmentState]] paymentState: [[PaymentState.svg PaymentState]] state: [[StateReference.svg StateReference]] syncInfo: [[SyncInfo.svg List<SyncInfo>]] returnInfo: [[ReturnInfo.svg List<ReturnInfo>]] lastMessageSequenceNumber: Long custom: [[CustomFields.svg CustomFields]] completedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] } interface QuoteRequest [[QuoteRequest.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime key: String lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] quoteRequestState: [[QuoteRequestState.svg QuoteRequestState]] comment: String customer: [[CustomerReference.svg CustomerReference]] customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] store: [[StoreKeyReference.svg StoreKeyReference]] lineItems: [[LineItem.svg List<LineItem>]] customLineItems: [[CustomLineItem.svg List<CustomLineItem>]] totalPrice: [[TypedMoney.svg TypedMoney]] taxedPrice: [[TaxedPrice.svg TaxedPrice]] shippingAddress: [[Address.svg Address]] billingAddress: [[Address.svg Address]] inventoryMode: [[InventoryMode.svg InventoryMode]] taxMode: [[TaxMode.svg TaxMode]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] country: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] itemShippingAddresses: [[Address.svg List<Address>]] directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]] custom: [[CustomFields.svg CustomFields]] state: [[StateReference.svg StateReference]] purchaseOrderNumber: String cart: [[CartReference.svg CartReference]] businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] } interface Quote [[Quote.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime key: String lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] quoteRequest: [[QuoteRequestReference.svg QuoteRequestReference]] stagedQuote: [[StagedQuoteReference.svg StagedQuoteReference]] customer: [[CustomerReference.svg CustomerReference]] customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] validTo: DateTime sellerComment: String buyerComment: String store: [[StoreKeyReference.svg StoreKeyReference]] lineItems: [[LineItem.svg List<LineItem>]] customLineItems: [[CustomLineItem.svg List<CustomLineItem>]] totalPrice: [[TypedMoney.svg TypedMoney]] taxedPrice: [[TaxedPrice.svg TaxedPrice]] shippingAddress: [[Address.svg Address]] billingAddress: [[Address.svg Address]] inventoryMode: [[InventoryMode.svg InventoryMode]] taxMode: [[TaxMode.svg TaxMode]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] country: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] itemShippingAddresses: [[Address.svg List<Address>]] directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]] custom: [[CustomFields.svg CustomFields]] quoteState: [[QuoteState.svg QuoteState]] state: [[StateReference.svg StateReference]] purchaseOrderNumber: String businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] } DirectDiscount --> Cart #green;text:green : "directDiscounts" DirectDiscount --> Order #green;text:green : "directDiscounts" DirectDiscount --> QuoteRequest #green;text:green : "directDiscounts" DirectDiscount --> Quote #green;text:green : "directDiscounts" @enduml
false
true
false
false
sequence
05ea87375b219d92a10ab17d581fa28744bc5b41
4e22d261d7dcf5fe2731d77ba3cfb47c5568977c
/Documentation/Source/Breakdown/Engine/TempestEngine/Rendering/Framebuffer-Class.iuml
ce0ec86b1546351b9cb8432d83d21dad1f64f243
[]
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
68
iuml
namespace Graphics::Rendering { class Framebuffer }
false
true
false
false
class
21663f41f1755f9c051ffdd4922d090eb8c2da37
40637260ad5ab7bfbd305b9699c4931f38725528
/design/diagrams/auth-login-scm.puml
83716d376ea15f338535ee102be298a896ea5259
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
yoshwata/screwdriver
fd635f1fddf3dc3a876b5f8a2b18ec2711eafe2f
9625f1477dd2402b03a901c6c42f25765d08afca
refs/heads/master
2021-04-27T02:04:36.197895
2020-08-12T21:28:39
2020-08-12T21:28:39
122,689,098
0
0
BSD-3-Clause
2018-02-24T01:04:17
2018-02-24T01:04:17
null
UTF-8
PlantUML
false
false
273
puml
@startuml title Login Flow (SCM) participant Auth actor User collections SCM User -> Auth : Login Auth --> User : 302 Redirect to SCM User -> SCM : OAuth Flow SCM --> User : 302 Redirect to Auth User -> Auth : OAuth Token Auth --> User : 24h Refresh Token @enduml
false
true
false
false
usecase
278c774d145aa457c5b895f2f29e9410c569fd8b
ba9a18d607312f41d66fba8cd9dd08526768297e
/docs/map.puml
d66aab30f31c3c3d6a277120009a3e1f0c7c6acf
[ "MIT" ]
permissive
schlothauer-wauer/map-interface
7c61ad464696345b2116eedc286fd04da1331a6c
fb7063803dd019934b4bb243d589c937a20cc406
refs/heads/master
2021-06-28T23:30:02.839698
2017-09-20T13:13:06
2017-09-20T13:13:06
104,041,441
0
1
null
2017-09-19T15:44:23
2017-09-19T07:26:55
null
UTF-8
PlantUML
false
false
620
puml
@startuml class BaseLayer { projection: String } class TileLayer extends BaseLayer { String url } class GeoPoint { lat: Double lon: Double projection: String } class GeoRect { GeoPoint upperLeft GeoPoint lowerRight } interface MapComponent { void setBaseLayer(BaseLayer layer); void setCenter(GeoPoint); void zoomToPoint(GeoPoint point, int zoom); void zoomToRect(GeoRect rest); } note top of MapComponent That are the first basic functions for first integrated prototypes. Later additional functions will follow, but always defined stuff should fixed end note @enduml
false
true
false
false
class
00414b9ea4a0121ee57b6d34c6050a4731c08f97
3a2f557271daa7744529f6d50e53220a506190bf
/doc/Spending.plantuml
0454a17dd0008351525a9b3d0f4e5f21f2081a62
[]
no_license
FlorianMarcon/BankModels
0bcba14a7fa260d7cc37a5ce972cad16e9d6c531
e3fafd273da7724eaaac083cf22ca00d7c90ce82
refs/heads/master
2022-12-29T00:57:05.129521
2020-10-10T12:04:27
2020-10-10T12:04:27
254,835,886
0
0
null
2020-04-18T11:58:04
2020-04-11T09:40:38
TypeScript
UTF-8
PlantUML
false
false
122
plantuml
@startuml class Spending { _id : ID ' shop : String ' rate : Number ' idCard : ID idBudget : ID } @enduml
false
true
false
false
class
1085fd387ffa05f0722c66e421ee284759359647
a5fe5af0d4cf0f99e9d49fe2187fa85db8089919
/sequence-diagrams/express-session-workflow.puml
46c20fc0201762e472693da6d57ead969f1cb62f
[ "MIT" ]
permissive
Antashma/node-auth1-guided
e987b9364e95427f8ae9a730fce8781d966e9819
825c9941c566b3d4862168d45abbc3209dda9323
refs/heads/main
2023-01-31T13:19:49.175167
2020-12-03T16:16:50
2020-12-03T16:16:50
317,731,876
0
0
MIT
2020-12-03T16:16:51
2020-12-02T02:54:17
null
UTF-8
PlantUML
false
false
1,331
puml
@startuml express-session-flow title Express Session Flow actor client participant express participant expressSession note over expressSession The session datastore could be a database or in memory... for now, it is in memory. Restarting the server will wipe your session(s). end note participant inMemory participant restricted participant getUsers participant sqlite3 client -> client : check for domain cookie client -> express : send cookie (with session ID) express -> expressSession : req goes to middleware expressSession -> inMemory : search for session ID inMemory -> expressSession : return session object (or create new) expressSession -> expressSession : add req.session (with .user if it exists) expressSession -> express : next() middleware express -> restricted : middleware stack (send req, req.session, req.session.user) restricted -> restricted : search for req.session.user alt if session ID not found restricted -> express : respond with error code else if session ID found restricted -> getUsers : next() getUsers -> sqlite3 : get response data from database sqlite3 -> getUsers : return data getUsers -> express : return data express -> expressSession : get the session object express -> express : add session object cookie express -> client : respond with cookie end @enduml
false
true
false
false
usecase
510488a37ab46a9048f8db764e8ff8845a45a11b
4d375a89ae9fb5f02e6eb4d4377aa2f37e3308f9
/graph/sequence.puml
36338d7e28b72795708b692d173e29616b814cce
[]
no_license
gitqh/parking-lot-ddd-workshop
65f6f7d6b482947d88c2585005aa8323a3143085
9f1e4557a64c3139d658b574b7a04736895b7bfa
refs/heads/master
2021-02-03T18:21:53.034847
2020-06-08T09:36:07
2020-06-08T09:36:07
243,528,228
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,317
puml
@startuml parking context skinparam Shadowing false skinparam sequence { ActorBackgroundColor PaleTurquoise ArrowColor SeaGreen LifeLineBackgroundColor PaleTurquoise ParticipantBackgroundColor PaleTurquoise } title parking by parking boy autonumber "[0]" actor user participant ParkingApplicationService participant FindParkingLotService participant ParkingBoySpecification participant ParkingLotFinder participant ParkingLot participant ParkingLotRepository user -> ParkingApplicationService :parkWithParkingBoy ParkingApplicationService -> ParkingBoySpecification :new ParkingApplicationService <- ParkingBoySpecification :parkingBoySpecification ParkingApplicationService -> FindParkingLotService :findParkingLot(parkingBoySpecification, ParkingLotFinderFactory) FindParkingLotService -> ParkingBoySpecification :new ParkingLotFinder ParkingBoySpecification -> FindParkingLotService :ParkingLotFinder FindParkingLotService -> ParkingLotFinder :findParkingLotToPark FindParkingLotService <- ParkingLotFinder :parkingLot ParkingApplicationService <- FindParkingLotService :parkingLot ParkingApplicationService -> ParkingLot :park ParkingApplicationService <- ParkingLot :ticket ParkingApplicationService -> ParkingLotRepository :save(parkingLot) user <- ParkingApplicationService :ticket @enduml
false
true
false
false
usecase
929bcdb5a9e85c2ee77ed4e57568e4a89a6d4e4d
f601c40e50e0f113f480ae2de3e80bc4a3172f86
/docs/Solution/Operations-Manager/UserInteraction.puml
937b994261cb38912d2178457525aa2f507c7e4f
[]
no_license
CAADE/C3
07307a3795888672df18e99932e25951911eaf1d
4bbe48a335b936cf75808d0902b32f73b99ff958
refs/heads/master
2022-11-24T14:52:05.724752
2019-06-19T03:32:46
2019-06-19T03:32:46
67,574,474
1
0
null
2022-11-22T11:28:45
2016-09-07T05:19:16
JavaScript
UTF-8
PlantUML
false
false
69
puml
@startuml actor User User -> "Operations-Manager": UseCase @enduml
false
true
false
false
sequence
a9de1bd08d364912086091d15c989fdd68a6eb29
8cdc740eb346bec6f586d86debd7edb6ca77f72b
/tools/fhirpathcli/UML/design.puml
9a696945516f98ac221be38de2585de69768b207
[ "Apache-2.0" ]
permissive
kyriosdata/rnds
6122293632e650ab299460771f24b5f8ca2c62d9
cadbb3016f6a484275918992233bae43006bab48
refs/heads/master
2023-06-15T14:25:45.714497
2023-06-10T17:07:39
2023-06-10T17:07:39
229,581,807
41
13
Apache-2.0
2023-03-10T22:16:26
2019-12-22T14:38:39
Java
UTF-8
PlantUML
false
false
826
puml
@startuml hide circle hide methods hide empty members skinparam component { BackgroundColor White ArrowColor Black BorderColor #505050 } skinparam interface { BackgroundColor White ArrowColor Black BorderColor #505050 } package "Opções" { Component "FHIRPath Service" as WS << Spring Boot >> Component "GUI" as EGUI <<electron>> Component "GUI" as WGUI <<web>> Component "CONSOLE" as CONSOLE <<cli>> EGUI .right.> () "HTTP API" : use [HTTP API] - WS WGUI .down.> () "HTTP API" : use CONSOLE .up.> () "HTTP API" : use } WS .right.> () API : use package "Aplicação CLI" { Component CLI Component "FHIRPath Library" as FPL <<library>> Component "Hapifhir" as HF <<FHIR>> CLI .down.> API : use API - FPL FPL .left.> HF : use } @enduml
false
true
true
false
component
f4b712e4a6ad89a8dc86c95fc48e1953f5e0d9d8
a3752f5a40057cb3aff276d7ae357eb73b0a7338
/dev-docs/diagrams/gateway-sequence.iuml
174b02d6d886a9aca6a1534fc3a74e426e6c96e7
[ "Apache-2.0", "CC-BY-2.0", "SAX-PD", "MPL-2.0", "Artistic-2.0", "MIT-CMU", "BSD-3-Clause", "0BSD", "CC-BY-4.0", "LGPL-3.0-or-later", "CC0-1.0", "CC-BY-3.0", "BSD-Source-Code", "Apache-1.1", "Ruby", "WTFPL", "BSD-1-Clause", "MIT", "Unlicense", "BSD-2-Clause" ]
permissive
chef/automate
e1af4e5617c272f524fa821678a2b0c90a8ce1aa
bc54a4bbd22a9799ee6b782942d26ad1717882d8
refs/heads/main
2023-08-18T13:36:40.273599
2023-08-18T10:53:08
2023-08-18T10:53:08
179,318,179
230
139
Apache-2.0
2023-09-14T19:20:33
2019-04-03T15:26:38
Go
UTF-8
PlantUML
false
false
1,177
iuml
@startuml actor "User" collections "automate-ui" as aui collections "automate-gateway" as gateway collections "authz-service" as authzsrv collections "automate-dex" as automatedex collections "config-reporting-service" as cfgreportsrv User -> aui : Show Node List aui -> gateway: Get Node List (REST) gateway -> automatedex : Authenticated? group "Authentication" successful case automatedex -> gateway : Yes else failure case automatedex -> gateway : No gateway -> aui : 401 aui -> User : Login end gateway -> authzsrv : Authorized? note right : This is a grpc client imported from\n authz-service group "Authorized" successful case authzsrv -> gateway : Yes else failure case authzsrv -> gateway : No gateway -> aui : 403 aui -> User : Nope! end gateway -> cfgreportsrv : GetNodeList() note right : This is a grpc client imported from\nconfig-reporting-service cfgreportsrv -> gateway : cfgmgmt.NodeList[Nodes] note right: This is a protobuf response\ndefined in this service gateway -> aui : { nodes: [Nodes] } note right: This is a JSON response\ndefined in the gateway as a protobuf\ntranslated to json automatically aui -> User : Node List page renders @enduml
false
true
false
false
usecase
0b9fce29fb60d08b1322c9adf86341a6e3c68926
c8e5514bd3ea44e6613f469e88bc0562ba16ae62
/src/site/sphinx/formatting/puml/colors/PaleVioletRed.puml
2028865d05a77ac99aa949a97e6c759e3163bc57
[]
no_license
weedySeaDragon/plantuml-documentation
1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba
3c23cd2cd7fc1b4a85423ef9861711907fab2296
refs/heads/develop
2022-12-09T05:57:04.055959
2022-05-12T16:05:20
2022-05-12T16:05:20
165,910,589
55
6
null
2022-11-22T10:34:29
2019-01-15T19:28:35
SCSS
UTF-8
PlantUML
false
false
328
puml
@startuml skinparam ClassBackgroundColor #PaleVioletRed skinparam ClassFontColor #PaleVioletRed skinparam ClassBorderColor #PaleVioletRed skinparam ClassStereotypeFontSize 0 skinparam CircledCharacterFontSize 0 skinparam CircledCharacterRadius 0 skinparam ClassBorderThickness 0 skinparam Shadowing false class Dummy @enduml
false
true
false
false
class
b60ec83756ea55b218427387f3b87a9d586c02fb
997c6048ed6fcdb5aab8eb9b3ee94681b4c323de
/uml-diagram.puml
1eeb7f0eaf174add273579584c2bd091582ae2e9
[ "Apache-2.0" ]
permissive
ProdigyXable/UnifiedDebuggingLibrary
790880532c576f5b8309bb255a00a9dfad769436
266b2376785c833d15e99604b5ba9f0648e62706
refs/heads/main
2023-07-15T13:49:49.699895
2021-08-30T13:53:10
2021-08-30T13:53:10
398,518,200
0
0
Apache-2.0
2021-08-21T11:08:38
2021-08-21T09:31:50
Java
UTF-8
PlantUML
false
false
1,749
puml
@startuml abstract class xable.info.unifieddebugging.UnifiedDebuggingKey abstract class xable.info.unifieddebugging.UnifiedDebuggingMetric abstract class xable.info.unifieddebugging.metrics.factories.MetricFactory class junit.framework.Assert class xable.info.unifieddebugging.UnifiedDebuggingCollection class xable.info.unifieddebugging.defaults.DefaultFeatureComparator class xable.info.unifieddebugging.defaults.DefaultItemComparator class xable.info.unifieddebugging.metrics.OchiaiMetric class xable.info.unifieddebugging.metrics.factories.OchiaiMetricFactory interface xable.info.unifieddebugging.UnifiedDebuggingItem xable.info.unifieddebugging.metrics.factories.MetricFactory ..> xable.info.unifieddebugging.UnifiedDebuggingMetric xable.info.unifieddebugging.UnifiedDebuggingCollection ..> xable.info.unifieddebugging.metrics.factories.MetricFactory xable.info.unifieddebugging.UnifiedDebuggingCollection ..> junit.framework.Assert xable.info.unifieddebugging.defaults.DefaultFeatureComparator ..> xable.info.unifieddebugging.UnifiedDebuggingKey xable.info.unifieddebugging.defaults.DefaultItemComparator ..> xable.info.unifieddebugging.UnifiedDebuggingItem xable.info.unifieddebugging.metrics.OchiaiMetric ..> xable.info.unifieddebugging.UnifiedDebuggingKey xable.info.unifieddebugging.metrics.OchiaiMetric --|> xable.info.unifieddebugging.UnifiedDebuggingMetric xable.info.unifieddebugging.metrics.factories.OchiaiMetricFactory ..> xable.info.unifieddebugging.UnifiedDebuggingMetric xable.info.unifieddebugging.metrics.factories.OchiaiMetricFactory --|> xable.info.unifieddebugging.metrics.factories.MetricFactory xable.info.unifieddebugging.metrics.factories.OchiaiMetricFactory ..> xable.info.unifieddebugging.metrics.OchiaiMetric @enduml
false
true
false
false
class
06bae19abcfa21cc39c9ae4ff55cfd6b15b6da51
394a56ac07462a7305e934de37c3ed3a5363f56a
/Sprint 2/Análise/UC4_Definir_Competência_Técnica/UC4_SD.plantuml
ad64392f022207e43ed2697db47a6afebaaf3342
[]
no_license
pedro-miguez/upskill_java1_labprg_grupo3
69ab871772f2a2faba901ee894aea2f8fe7392bb
99bed16b491e8f0fbceb86e621cb9164e7722586
refs/heads/main
2023-03-24T02:26:43.964110
2021-03-22T10:50:54
2021-03-22T10:50:54
331,625,464
1
0
null
2021-03-19T18:00:07
2021-01-21T12:45:29
Java
UTF-8
PlantUML
false
false
1,616
plantuml
@startuml participant Administrativo activate Administrativo Administrativo -> ":UI": 1: Inicia a especificação de CT activate ":UI" ":UI" -> ":CTRL" : 1.1: la = getListAreasAtividade() activate ":CTRL" ":UI" --> Administrativo : 1.2: Solicita dados deactivate ":UI" ":CTRL" -> ":Plataforma" : 1.1.1: plat = Plataforma.getInstance() activate ":Plataforma" deactivate ":Plataforma" ":CTRL" -> "raa: repositorioAreasAtividade" : 1.1.2: la = listarAreaAtividade() activate "raa: repositorioAreasAtividade" deactivate "raa: repositorioAreasAtividade" deactivate ":CTRL" Administrativo -> ":UI": 2: Introduz dados activate ":UI" ":UI" -> ":CTRL" : definirCompetenciaTecnica(String codigoUnico, \nAreaAtividade areaAtividade, String descricao, \nString descDetalhada) activate ":CTRL" ":CTRL" -> "raa: repositorioAreasAtividade" : 2.1.1: at = listarAreaAtividade() activate "raa: repositorioAreasAtividade" deactivate "raa: repositorioAreasAtividade" ":CTRL" -> ":Plataforma" : 2.1.2: rct = getRepoCompTec() activate ":Plataforma" deactivate ":Plataforma" ":CTRL" -> "rct:repositorioCompetenciasTecnicas" : 2.1.3: novaCompetenciaTecnica(codCompetencia,\ndescBreve,descDetalhada,at) deactivate ":CTRL" activate "rct:repositorioCompetenciasTecnicas" deactivate "rct:repositorioCompetenciasTecnicas" "rct:repositorioCompetenciasTecnicas" --> "ct:CompetenciaTecnica" ** : 2.1.3.1: criarCompetenciaTecnica(String\n codigoUnico, AreaAtividade areaAtividade,\nString descricao, String descDetalhada) deactivate "rct:repositorioCompetenciasTecnicas" ":UI" --> Administrativo : operacao bem sucedida deactivate ":UI" @enduml
false
true
true
false
sequence
f52e6ff8ee7b7166f1e8b45b179f708fc531ceaa
f429014f9a838437b02b1e44c8c4aadaf0ac6118
/app/UML/ProjectClass.puml
3614e13e4c491e61a66769eaefdd6332d36f62f1
[]
no_license
cjcounsell/JigsAU
cc9bf5b8547b3c5bfcaa2f5ed3fa3481e13586f0
025112534a4afd9ecb8732a9a82e02d31a7f5300
refs/heads/master
2021-05-31T00:05:01.140790
2016-04-05T18:23:54
2016-04-05T18:23:54
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,500
puml
@startuml title JigsAU Design Class Diagram class Activity << (A,orchid) >> class Fragment << (A,orchid) >> class View << (A,orchid) >> class Handler << (A,orchid) >> class MainActivity { onCreate() onCreateOptionMenu() onOptionsItemSelected() onBackPressed() } MainActivity -left-|> Activity class SplashScreen { SPLASH_TIME_OUT mediaPlayer onCreate() } MainActivity -- SplashScreen SplashScreen --|> Activity SplashScreen -|> Handler class MenuFragment { gridSizes[] isMuted menu_view audioManager volumeBtn sizeSelection onCreateView() onClick() isMuted() getSpinner() } MainActivity -- MenuFragment MenuFragment -|> Fragment MainActivity -- BoardActivity class BoardView { Direction boardSize imagePath imageId mediaPlayer tileSize tiles<> emptyTile movedTile boardCreated gameBoardRect lastDragPoint currentMovement<> tileOrder<> originalBitmaps<> observer checkPuzzle onLayout() checkMatch() getOriginalBitmaps() saveCurrentBitmaps() determineGameboardSizes() onTouch() fillTiles() placeTile() lastDragMovedAtLeastHalfway() isClicked() followFinger() getXYFromEvent() collidesWithTiles() animateTilesToEmptySpace() animateTilesBackToOrigin() getTilesBetweenEmptyTileAndOrigin() getTileAtPosition() allTilesInRow() allTilesInColumn() getCurrentBitmaps() setObserver rectForPosition() getTileOrder() setTileOrder() currentPosition() } interface Observer { callBack() } BoardView ..> Observer BoardView --|> View class BoardActivity { boardView timer numberOfMoves victory audioManager isMuted moves_view onCreate() inClick() onSaveInstanceState() onRestoreInstanceState() } BoardActivity -|> Activity BoardActivity -- ImageSelectFragment class ImageSelectFragment { PICK_IMAGE GRID_SIZE EXTRA_IMAGE imagePath sizeSelection onCreateView() onClick() onActivityResult() } ImageSelectFragment -left-|> Fragment class Tile { position originalIndex isEmpty isEmpty() setEmpty() isInRowOrColumnOf() isToRightOf() isToLeftOf() isAbove() isBelow() setXY() } class imageDivider { originalBitmap tileSize boardSize tiles<> lastTileServed tileOrder<> context divideImage() randomizeTiles() setTileOrder() getTile() getBitmap() } BoardActivity -- imageDivider class Position { row column matches() sharesAxisWith() isToRightOf() isToLeftOf() isAbove() isBelow() } class Movement { finalRect originalRect direction tile from to axialDelta finalPosition currentPosition() originalPosition() } Tile ..> Movement Tile ..> Position BoardActivity -- Tile BoardActivity ..> BoardView @enduml
false
true
false
false
class