blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
5
227
content_id
stringlengths
40
40
detected_licenses
listlengths
0
28
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
36 values
visit_date
timestamp[us]date
2015-08-14 10:26:58
2023-09-06 06:45:32
revision_date
timestamp[us]date
2011-07-11 04:02:09
2023-09-04 16:40:12
committer_date
timestamp[us]date
2011-07-11 04:02:09
2023-09-04 16:40:12
github_id
int64
206k
631M
star_events_count
int64
0
6.51k
fork_events_count
int64
0
1.54k
gha_license_id
stringclasses
11 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
55 values
src_encoding
stringclasses
12 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
16
1.74M
extension
stringclasses
12 values
code
stringlengths
16
1.74M
1228871dc322b77ced5cf4b28168f39b6694797a
bb1c82eddd547ade9b396e7134db0f927c205f51
/src/main/java/br/com/alg/trufflesapi/jwt/security/auth/auth.plantuml
277eb27f60640d42c3d0cf2cb73eab2e4bad9203
[]
no_license
andrelgirao22/truffle-api
3f71a26f3e0a491a9d3d39c193d2c7617c745336
3193a6b072c6e482ccc28a8d86021e385a708396
refs/heads/master
2021-07-16T13:32:26.947243
2021-07-01T19:09:53
2021-07-01T19:09:53
125,250,626
0
0
null
2021-04-26T19:34:40
2018-03-14T17:38:01
Java
UTF-8
PlantUML
false
false
1,883
plantuml
@startuml title __AUTH's Class Diagram__\n namespace br.com.alg.trufflesapi { namespace jwt.security { namespace auth { class br.com.alg.trufflesapi.jwt.security.auth.RestAuthenticationEntryPoint { + commence() } } } } namespace br.com.alg.trufflesapi { namespace jwt.security { namespace auth { class br.com.alg.trufflesapi.jwt.security.auth.TokenAuthenticationFilter { - logger : Log - userDetailsService : UserDetailsService + TokenAuthenticationFilter() + doFilterInternal() } } } } namespace br.com.alg.trufflesapi { namespace jwt.security { namespace auth { class br.com.alg.trufflesapi.jwt.security.auth.TokenBasedAuthentication { - principle : UserDetails {static} - serialVersionUID : long - token : String + TokenBasedAuthentication() + getCredentials() + getPrincipal() + getToken() + isAuthenticated() + setToken() } } } } br.com.alg.trufflesapi.jwt.security.auth.RestAuthenticationEntryPoint .up.|> org.springframework.security.web.AuthenticationEntryPoint br.com.alg.trufflesapi.jwt.security.auth.TokenAuthenticationFilter -up-|> org.springframework.web.filter.OncePerRequestFilter br.com.alg.trufflesapi.jwt.security.auth.TokenAuthenticationFilter o-- br.com.alg.trufflesapi.jwt.security.TokenHelper : tokenHelper br.com.alg.trufflesapi.jwt.security.auth.TokenBasedAuthentication -up-|> org.springframework.security.authentication.AbstractAuthenticationToken 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
5b249cd5d1e35fa41921df2ab8d7508936943fe7
625517108615e50180082e3c6d7d1444f643485e
/test/fixtures/class-separators/in.plantuml
6d08d765becd69a6e0989229e9f9c48ad599bbb1
[ "TCL", "BSD-3-Clause", "HPND", "LicenseRef-scancode-unknown-license-reference", "OpenSSL", "LicenseRef-scancode-openssl", "MIT", "LicenseRef-scancode-ssleay-windows", "ISC", "Apache-2.0", "BSD-2-Clause" ]
permissive
Enteee/plantuml-parser
180c370b3025bb7566bd86576d327364b3d5a425
765ac61d0c29c7c8f39310cfa7c385017997aeb8
refs/heads/master
2023-07-26T02:00:39.582527
2023-03-27T20:49:09
2023-03-27T20:49:09
177,091,179
132
33
Apache-2.0
2023-05-21T07:11:53
2019-03-22T07:20:31
TypeScript
UTF-8
PlantUML
false
false
109
plantuml
@startuml class Separators { .. .. with text .. == == with text == __ -- with text -- } @enduml
6bbbccb7dd8d7a637346c079ade8a4705e635e1e
0f2ccd0a689a3633eead0d7b8f118c1a4ca81aea
/Creational/Builder/doc/builder.plantuml
b04de01c37d40acfa924800697c034696a807fff
[ "Apache-2.0" ]
permissive
symnoureddine/design-patterns
d6eca7edeb131e7f506900b517050c4f975482aa
b8f088e877d4739527b41aeb6e0c80ac9d29b398
refs/heads/master
2020-09-10T18:30:44.513673
2019-11-02T22:33:20
2019-11-02T22:33:20
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,011
plantuml
@startuml class ProductRepository { -qb : QueryBuilder +__construct(qb : QueryBuilder) +findAll() : mixed +findForCarousel() : mixed +findForHomepage() : mixed } abstract class QueryBuilder { +{static}ASC = "ASC" +{static}DESC = "DESC" +{static}EQUALS = "EQUALS" +{static}GREATER = "GREATER" +{static}IN = "IN" +{static}LOWER = "LOWER" +{abstract}createQuery(from : string) : $this +andWhere(field : string, operator : string, value : string|array|bool) : $this +addOrderBy(field : string, direction : string) : $this +setMaxResults(maxResults : integer) : $this +{abstract}getQuery() : mixed } class MongoDB.MongoDBQuery { -collection : string -find : string[] = [] -limit : string -sort : string[]. = [] +__construct(collection : string) +addFindClause(find) : $this +addSortClause(sort) : $this +setLimit(limit : string) : $this +getCommand() : string } class MongoDB.MongoDBBQueryBuilder { -query : MongoDBQuery +createQuery(collection) +andWhere(field, operator, value) +addOrderBy(field, direction) +setMaxResults(maxResults) +getQuery() : MongoDBQuery } class MySQL.MySQLQueryBuilder { -query : MySQLQuery +createQuery(from) +andWhere(field, operator, value) +addOrderBy(field, direction) +setMaxResults(maxResults) +getQuery() : MySQLQuery } class MySQL.MySQLQuery { -limit : integer -orderBy : string[]. = [] -table : string -where : string[] = [] +__construct(table : string) +addWhereClause(where) : $this +addOrderByClause(orderBy) : $this +setLimit(limit : int) : $this +getSQL() : string } ProductRepository o-right- QueryBuilder "MongoDB.MongoDBBQueryBuilder" .up.|> QueryBuilder "MongoDB.MongoDBBQueryBuilder" o-right- "MongoDB.MongoDBQuery" "MySQL.MySQLQueryBuilder" .up.|> QueryBuilder "MySQL.MySQLQueryBuilder" o-right- "MySQL.MySQLQuery" right footer © Vlad Riabchenko <contact@vria.eu> @enduml
93519f4f8fd74244ccc0591bfbfffb1969661b96
2f7877e48a1a20957bce8c093f510342c781330c
/classes.puml
f8973892ee2cc1d21a6fa87155db28bd6dcb1bd9
[]
no_license
ewen-lbh/tkinter-bataille-navale
5d45d93d613cf1797ab6ccdce18c73a6861ec41f
911b6ba440fcb7645c7873917b6d06db2c997ac5
refs/heads/main
2023-07-12T02:48:52.019676
2021-08-15T16:42:36
2021-08-15T16:44:39
382,677,390
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,888
puml
@startuml classes abstract Board { grid_size int cells [][]ttk.Button render() } Board -> ControlledBoard class ControlledBoard { locked bool place(x, y) fire(x, y) lock() } Board -> ProjectiveBoard ControlledBoard -> ProjectiveBoard class ProjectiveBoard { real_board ControlledBoard fire(x, y) } ControlledBoard -> Player ProjectiveBoard -> Player abstract Player { own_board ControlledBoard ennemy_board ProjectiveBoard hits, misses int do_turn() place_ships() } Player -> HumanPlayer class HumanPlayer { render_boards() } Player -> AIPlayer class AIPlayer { } class Game { player_1 Player player_2 Player } @enduml @startuml timeline participant Game order 1 participant P1 order 0 participant P2 order 2 == Setup turn == Game -> P1: Setup your board Game <- P1: Finished setting up the board Game -> P2: Setup your board Game <- P2: Finished setting up the board == Turn 1 (Player 1's) == Game -> P1: Shoot at? Game <- P1: (x, y) Game -> P2: Shoot at (x, y). Game <- P2: Done. State of (x, y) was STATE Game -> P1: Result of shot is STATE Game <- P1: Finished updating my board. == Turn 2 (Player 2's) == Game -> P2: Shoot at? Game <- P2: (x, y) Game -> P1: Shoot at (x, y). Game <- P1: Done. State of (x, y) was STATE Game -> P2: Result of shot is STATE Game <- P2: Finished updating my board. @enduml @startuml timeline, no middle-man == Setup turn == P1 -> P2: Ready. P2 -> P1: Ready. == Turn 1 (Player 1's) == P1 -> P2: Shoot at (x, y) P1 <- P2: Done. You HIT/MISSED P1 -> P2: Finished updating my board. == Turn 2 (Player 2's) == P2 -> P1: Shoot at (x, y) P2 <- P1: Done. You HIT/MISSED P2 -> P1: Finished updating my board. == ... == == Turn n (Player (n mod 2 + 1)'s) == P2 -> P1: Shoot at (x, y) P2 <- P1: Done. You HIT/MISSED P2 -> P1: Finished updating my board: You WON/LOST. @enduml
b7ecb24c7fcd443229bb5a0ecef6dc1e3fcc3b5b
0851eb314c339c519e712e9e17cb810464ec1d89
/cld-hotel-Koenig-Julia.puml
700228bdf96ab21f2214eea2874b6f366e8fdc8e
[]
no_license
2122-4ahif-syp/01-cld-hotel-KoenigJulia
41566e96cd5e9b48fe8bc607907459714bff4b34
97d4492662d1a3460180225bc965c9b8d8cdc450
refs/heads/master
2023-08-31T13:10:50.925536
2021-10-17T19:51:50
2021-10-17T19:51:50
418,228,665
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,083
puml
@startuml 'https://plantuml.com/sequence-diagram class Raum{ -int nummer -int personen Kategorie: kategorie } class Kategorie{ -int id -string bezeichnung } class Mitarbeiter{ -int svnr -string name -string adresse } class Raumpfleger{ Mitarbeiter: mitarbeiter Raum:raum } enum Fach{ Sauna Masseur Swimmingpool Küche } class Betreuer{ Mitarbeiter: mitarbeiter Fach:fach } class Gast{ -int kundennr -string name -string adresse } class Buchung{ Raum:raum Gast:gast -LocalDate anreisedatum -LocalDate abreisedatum -int anzahlLeistungspakete } class Leistungspaket{ -string bezeichnung -double preis } class LeistungspaketBetreuer{ Leistungspaket:leistungspaket Betreuer:betreuer } Raum "*" -> "1" Kategorie Gast "*"--"*" Raum (Gast,Raum)..Buchung Mitarbeiter "1"-l->"*" Betreuer Mitarbeiter "1"-->"*" Raumpfleger Raum "*"<--"1" Raumpfleger Betreuer "*" --> "1" Fach Leistungspaket "*"--"1..*" Betreuer (Leistungspaket,Betreuer) .. LeistungspaketBetreuer @enduml
e3100793e8728ade533c94d61643e5f283fc47e7
510356d099fc0d0ae2e5bc6456b61820ab379ad3
/src/com/arijeet/design/behavior/pattern/chainofresponsibility/chainofresponsibility.plantuml
ff853914fe4cb25254e646155c1b8687b5b8c8ce
[]
no_license
arijeetsaha/java-design-patterns
19156a379689d1dde2c7e75d997c84ea84b2f019
9c30808bc9be34092d5f6257fbfd9ed995848a50
refs/heads/master
2022-11-20T05:20:27.467475
2020-07-22T20:27:53
2020-07-22T20:27:53
281,776,415
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,547
plantuml
@startuml title __CHAINOFRESPONSIBILITY's Class Diagram__\n namespace com.arijeet.design.pattern.chainofresponsibility { class com.arijeet.design.pattern.chainofresponsibility.Client { {static} + main() {static} - createChain() } } namespace com.arijeet.design.pattern.chainofresponsibility { class com.arijeet.design.pattern.chainofresponsibility.Director { + Director() # processRequest() } } namespace com.arijeet.design.pattern.chainofresponsibility { abstract class com.arijeet.design.pattern.chainofresponsibility.Employee { - role : String + Employee() + getApproverRole() + processLeaveApplication() {abstract} # processRequest() } } namespace com.arijeet.design.pattern.chainofresponsibility { class com.arijeet.design.pattern.chainofresponsibility.LeaveApplication { - from : LocalDate - processedBy : String - to : LocalDate + LeaveApplication() + approve() + getFrom() + getNoOfDays() + getProcessedBy() + getStatus() + getTo() + getType() } } namespace com.arijeet.design.pattern.chainofresponsibility { enum Status { Approved Pending Rejected } } namespace com.arijeet.design.pattern.chainofresponsibility { enum Type { LOP PTO Sick } } namespace com.arijeet.design.pattern.chainofresponsibility { interface com.arijeet.design.pattern.chainofresponsibility.LeaveApprover { {abstract} + getApproverRole() {abstract} + processLeaveApplication() } } namespace com.arijeet.design.pattern.chainofresponsibility { class com.arijeet.design.pattern.chainofresponsibility.ProjectLead { + ProjectLead() # processRequest() } } namespace com.arijeet.design.pattern.chainofresponsibility { class com.arijeet.design.pattern.chainofresponsibility.ProjectManager { + ProjectManager() # processRequest() } } com.arijeet.design.pattern.chainofresponsibility.Director -up-|> com.arijeet.design.pattern.chainofresponsibility.Employee com.arijeet.design.pattern.chainofresponsibility.Employee .up.|> com.arijeet.design.pattern.chainofresponsibility.LeaveApprover com.arijeet.design.pattern.chainofresponsibility.Employee o-- com.arijeet.design.pattern.chainofresponsibility.LeaveApprover : successor com.arijeet.design.pattern.chainofresponsibility.LeaveApplication o-- com.arijeet.design.pattern.chainofresponsibility.LeaveApplication.Status : status com.arijeet.design.pattern.chainofresponsibility.LeaveApplication o-- com.arijeet.design.pattern.chainofresponsibility.LeaveApplication.Type : type com.arijeet.design.pattern.chainofresponsibility.LeaveApplication +-down- com.arijeet.design.pattern.chainofresponsibility.LeaveApplication.Status com.arijeet.design.pattern.chainofresponsibility.LeaveApplication +-down- com.arijeet.design.pattern.chainofresponsibility.LeaveApplication.Type com.arijeet.design.pattern.chainofresponsibility.ProjectLead -up-|> com.arijeet.design.pattern.chainofresponsibility.Employee com.arijeet.design.pattern.chainofresponsibility.ProjectManager -up-|> com.arijeet.design.pattern.chainofresponsibility.Employee 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
07c3c0871b3e2cbaedf28852957dae4b1680ad56
5a1ec19f621ea91531395d99af66fe4f936f489a
/src/main/java/ex46/frequencyFinder.puml
29f7b69a86fe93a0c22bf25b14dd35ac64a0ed13
[]
no_license
matthew00mckee/McKee-cop3330-assignment3
163dc769b44305c1332af686c98526fc8499cf31
03f574e9820fee1dbc639fc3acf5a135ae090206
refs/heads/master
2023-06-28T21:50:30.600157
2021-07-26T04:07:11
2021-07-26T04:07:11
378,795,456
0
0
null
null
null
null
UTF-8
PlantUML
false
false
677
puml
@startuml 'https://plantuml.com/class-diagram class App { Prints words and their frequency } class sortText { comparator } class text { scan(filePath): scans input file and return ArrayList of Maps print(ArrayList<Map<String, Integer>>): scans ArrayList of Maps and prints names with their frequencies File file: ArrayList<Map<String, Integer>> Map<String, Integer> DoesArrayexist If name exists: frequency +1 If name does not exist: sets frequency as 1 and put value into ArrayList of Maps } App -> text: > exercise46 text -> sortText: > unsorted arraylist sortText -> text: > sorted based on name frequencies text -> App: > String of names and their frequencies @enduml
71a326336debbd6243940b0f9505cb2bd91bce26
2e6b4098277f6bebc7ae0baeda2924162b73a017
/src/main/java/ucf/assignments/ToDoListApp.puml
b3023303a1b8e827fd54ffc3bc96c4f9c694cd34
[]
no_license
rydohg/cop3330-2Do
0d5e9c9ca92c313d6d56ee130387e1f6c1565cc4
2f0bebc31a4d4df842bbff907c96015a3e264de7
refs/heads/master
2023-06-15T17:53:09.913102
2021-07-12T03:36:24
2021-07-12T03:36:24
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,123
puml
@startuml class ToDoListApp { start() } class DataOps { ToDoList toDoList String currentPath getInstance() ArrayList<ListItem> getItems() ToDoList readDataFile(File file) writeDataToFile(File file) } class ToDoController { newList() loadList(File file) saveList(File file) newListOnClick() loadListOnClick() saveListOnClick() newListOnClick() onlyCompleteOnClick() onlyIncompleteOnClick() refreshListView(onlyComplete, onlyIncomplete) helpDialog() simpleDialog(String title, String header, String defaultString) } class ToDoListListCell { updateItem(ListItem item, boolean empty) markComplete() editDetails(String description, String date) deleteItem() editDetailsOnClick() deleteItemOnClick() } class ToDoList { String title ArrayList<ListItem> items addItem(ListItem item) } class ListItem { String description String date boolean complete setDescription() setDate() setComplete() } ToDoList <-- ListItem ToDoController <-- ToDoListListCell ToDoListApp <-- ToDoController @enduml
6f90be4f121e467df4d9eb414a2a5bac72634ce2
832dc64a4de0b8bbd4ad19eefb0e3c31e42e84b4
/EarlyLife.puml
95d66b9d78973d7981cbfc26bc9fb5d87680b11c
[]
no_license
GavinBabbage/EarlyLifeJava
1716dc396e4f9be946c48f30eb14159eeaa0527c
333a61a94e8d3c1d1ea87f1e7b6f468ce8aa969f
refs/heads/master
2023-09-06T00:05:28.868637
2021-11-24T17:16:06
2021-11-24T17:16:06
431,516,664
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,987
puml
@startuml class com.example.earlylife.RadarChartActivity { # void onCreate(Bundle) } class com.example.earlylife.ActivitiesFragment { - {static} String ARG_PARAM1 - {static} String ARG_PARAM2 - String mParam1 - String mParam2 + {static} ActivitiesFragment newInstance(String,String) + void onCreate(Bundle) + View onCreateView(LayoutInflater,ViewGroup,Bundle) + void onClick(View) } class com.example.earlylife.NumbersActivity { # void onCreate(Bundle) } class com.example.earlylife.StatisticsFragment { - {static} String ARG_PARAM1 - {static} String ARG_PARAM2 - String mParam1 - String mParam2 + {static} StatisticsFragment newInstance(String,String) + void onCreate(Bundle) + View onCreateView(LayoutInflater,ViewGroup,Bundle) + void onClick(View) } class com.example.earlylife.TabbedActivity { ~ TabLayout tabLayout ~ ViewPager2 pager2 ~ FragmentAdapter adapter # void onCreate(Bundle) } class com.example.earlylife.PieChartActivity { # void onCreate(Bundle) } class com.example.earlylife.MainActivity { # void onCreate(Bundle) - boolean isConnected(MainActivity) + void showCustomDialog() } class com.example.earlylife.BarChartActivity { # void onCreate(Bundle) } class com.example.earlylife.HelpFragment { - {static} String ARG_PARAM1 - {static} String ARG_PARAM2 - String mParam1 - String mParam2 + {static} HelpFragment newInstance(String,String) + void onCreate(Bundle) + View onCreateView(LayoutInflater,ViewGroup,Bundle) } class com.example.earlylife.ShapesActivity { # void onCreate(Bundle) } class com.example.earlylife.FragmentAdapter { + Fragment createFragment(int) + int getItemCount() } class com.example.earlylife.LoveActivity { # void onCreate(Bundle) } class com.example.earlylife.MiscActivity { # void onCreate(Bundle) } androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.RadarChartActivity com.example.earlylife.OnClickListener <|.. com.example.earlylife.ActivitiesFragment androidx.fragment.app.Fragment <|-- com.example.earlylife.ActivitiesFragment androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.NumbersActivity com.example.earlylife.OnClickListener <|.. com.example.earlylife.StatisticsFragment androidx.fragment.app.Fragment <|-- com.example.earlylife.StatisticsFragment androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.TabbedActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.PieChartActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.MainActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.BarChartActivity androidx.fragment.app.Fragment <|-- com.example.earlylife.HelpFragment androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.ShapesActivity androidx.viewpager2.adapter.FragmentStateAdapter <|-- com.example.earlylife.FragmentAdapter androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.LoveActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.earlylife.MiscActivity @enduml
96e81c183544bf65e91206f6d1589ff8c4ed1b54
31ef7a78855b0fb0e9644dd61907e0c811b0daf6
/thesis/logic-formula-generator/fol/cnf_formula_statistics.puml
87f6388535cde8be1f74b214486320b812e6e5f9
[]
no_license
Przemcom/studio_projektowe1
f7d57affe30324c0d1470e719a05d8efd92fc701
a6418b164ee76b7dcb9c3287fb05ace1a79c13d3
refs/heads/master
2021-06-14T20:36:30.730708
2021-03-29T18:33:24
2021-03-29T18:33:24
179,491,905
0
1
null
null
null
null
UTF-8
PlantUML
false
false
796
puml
@startuml skinparam dpi 300 skinparam class { backgroundColor Ivory borderColor DarkRed } package ExportUtils { Exporter <|-- TPTPExporter Exporter - CNFFormulaVisitor TPTPExporter *-- TPTPHeader CNFFormulaVisitor --o CNFFormulaInfo } CNFFormula ()-- Exporter class CNFFormulaVisitor { + visit_variable(variable) + visit_functor(functor) + visit_predicate(predicate) + visit_atom(atom) + visit_literal(literal) + visit_cnf_clause(CNFClause) + visit_cnf_formula(CNFFormula) } class CNFFormulaInfo { number_of_{variables,functors,predicates,...} number_of_horn_clauses_instances number_of_constant_functors } abstract class Exporter { + export(expression: CNFFormula, filename: str) } class TPTPExporter { } class TPTPHeader { cnf_formula_info } @enduml
abac91619bed3b90f9df269aae2361ca7dd95c31
346a7fb1e36df2691e26da9a6c40619ad7c95e41
/02-linked-list/linkedlist.plantuml
b11f2386fd83d4ebda131e3d02a7abdb4f649f20
[ "MIT" ]
permissive
sWIFlezech/hsro-wif-prg2.github.io
c1587385b40dc11afc28a75367184108c97e0008
3698354299e087a8629c0e56c3f0a14ac985e2d9
refs/heads/master
2020-03-11T10:53:04.071038
2018-04-22T15:48:20
2018-04-22T15:48:20
129,954,522
0
0
MIT
2018-04-17T19:25:19
2018-04-17T19:25:19
null
UTF-8
PlantUML
false
false
1,512
plantuml
@startuml realisierung left to right direction interface IntList { get(i: int): int put(i: int, v: int) add(v: int) remove(i: int) } class IntListImpl1 implements IntList { +get(i: int): int +pub(i: int, v: int) +add(v: int) +remove(i: int) } @enduml @startuml objektdiagramm left to right direction object zug { kopf = erster_waggon } zug --> erster_waggon object erster_waggon { ladung = 11 naechster = zweiter_waggon } erster_waggon --> zweiter_waggon object zweiter_waggon { ladung = 22 naechster = dritter_waggon } zweiter_waggon --> dritter_waggon object dritter_waggon { ladung = 33 naechster = null } @enduml @startuml klassendiagramm left to right direction interface IntList { } class Zug implements IntList { - kopf: Waggon } class Waggon { - ladung: int - naechster: Waggon } Zug o-- Waggon Waggon o-- Waggon @enduml @startuml klassendiagramm2 left to right direction interface IntList { } class LinkedIntList implements IntList { - head: IntElement } class IntElement { - value: int - next: IntElement } LinkedIntList o-- IntElement IntElement o-- IntElement @enduml @startuml objektdiagramm2 left to right direction object zug { kopf = erster_waggon } zug --> erster_waggon object erster_waggon { ladung = 11 naechster = zweiter_waggon } erster_waggon --> dritter_waggon object zweiter_waggon { ladung = 22 naechster = dritter_waggon } zweiter_waggon -> dritter_waggon object dritter_waggon { ladung = 33 naechster = null } @enduml
4b60ed74ecc8e0661bcdd8562b897e7cff6b8673
0a4de5a29213ff35e3607f18cb3da0ddb1af7a38
/src/main/java/filestorage/filestorage.plantuml
294b85fc879b842879fbae4109c2bd4a2cc1bd7d
[]
no_license
ssalvatella/Chat-TMDAD
15a2046a37234b7f5a6c14efaa39e3090eb0aeed
efe4206688d0ea44f14cae0c1bbf3ad33d9e354a
refs/heads/master
2021-06-16T08:02:34.051625
2019-05-24T08:49:04
2019-05-24T08:49:04
188,075,876
0
0
null
2021-03-31T22:34:08
2019-05-22T16:28:59
Java
UTF-8
PlantUML
false
false
1,075
plantuml
@startuml title __FILESTORAGE's Class Diagram__\n package filestorage { class FileController { {static} - logger : Logger + uploadFile() } } package filestorage { class FileService { - URL : String - ACCESS_KEY : String - SECRET_KEY : String - BUCKET : String - minioClient : MinioClient + FileService() - createBucket() + uploadFile() } } package filestorage { class UploadFileResponse { - fileName : String - fileDownloadUri : String - fileType : String - size : long + UploadFileResponse() + getFileName() + getFileDownloadUri() + getFileType() + getSize() } } FileController o-- FileService : fileService FileController o-- MessagingController : messagingController 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
5c151d13b10f2a982c92f5e078cbac937492429b
4e22d261d7dcf5fe2731d77ba3cfb47c5568977c
/Documentation/Source/Breakdown/Engine/TempestEngine/SceneManagement/Space-Class.iuml
c5287edcedbf3889d02eaa6678952b21b5261cf7
[]
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
733
iuml
namespace SceneManagement { class Space { +GetObjectCount() +IsEnabled() +GetID() +ToTypeID() +GetName() +SetName() +GetScene() +SetScene() +MoveGameObject() +InstantiateGameObject() +DestroyGameObject() +GetGameObjectList() +GetGameObjectByID() +GetGameObjectByName() +GetTypeLevelGameObjectList() +DontDeleteOnLoad() +DeleteOnLoad() +GetDeleteOnLoad() +SetEnabled() +Read() +Write() +GetShouldSerialize() +SetShouldSerialize() } }
a3e376ca961787e11dc2db64562de224f77411e7
2fa402e00effa96db30c17aa45a97f361f40dcd0
/Diagramas/diagramaBatalla.puml
d3c84e5b1f23d98dbb13d067fab9a5c8da5b3be3
[ "MIT" ]
permissive
julia-valdo/Algoritmos-3.TP2
9d497a25322b464045fe57484487f1ce7c15b94c
65f4b5f8f8371b89589be2629194fc6d22c853b7
refs/heads/master
2023-07-03T02:44:33.910119
2021-08-09T17:20:06
2021-08-09T17:20:06
381,795,609
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,237
puml
@startuml class Batalla{ - perdidaAtacante:int - perdidaDefensor:int - resultadoDadoAtacante:ArrayList<Integer> - resultadoDadoDefensor:ArrayList<Integer> - compararResultado(ArrayList<Integer> resultadoDadoAtacante,ArrayList<Integer> resultadoDadoDefensor):void - tirarDado(int cantidadDeTiros):ArrayList<Integer> - tirarDadoAtacante(int numeroFichasAtacante):void - tirarDadoDefensor(int numeroFichasDefensor):void + atacar(Ejercitos ejercitoAtacante,Ejercitos ejercitoDefensor):void } class Dado{ - maximasTiradas:int - cantidadNumerosDado:int + tirarDado(int cantidad):ArrayList<Integer> } class Ejercitos{ - comandante:Jugador ~ condicionActual:EstadoEjercitos ~ avisarOcupacionExitosa(Pais unPais):Ejercitos - retirarse():void - confirmarNuevaDivisionDe(int numeroFuerzas):Ejercitos - fueDerrotado():boolean + generarDivision(int cantidad):Ejercitos + restarEjercitos(int cantidad):void + sonAliadosDe(Ejercitos ejercitos):boolean + getCantidadEjercitos():int + agregarEjercitos(int cantidad):void + agregarDivision(Ejercitos nuevaDivision):void + equals(Object otroObjeto):boolean + moverEjercitoACon(Ejercitos otroEjercito,int cantidad):void } class EjercitosNulos{ + disputarDominioDe(Pais unPais,Ejercitos otrosEjercitos):Ejercitos } interface EstadoEjercitos{ + evaluarFuerzasRestantes():EstadoEjercitos + getCantidadFuerzas():int + agregarFuerzas(int numeroDeFuerzas):EstadoEjercitos + restarFuerzas(int numeroFuerzas):EstadoEjercitos + estanDerrotados():boolean } class EstadoEjercitosDerrotados{ } class EstadoEjercitosEnPie{ - numeroDeFuerzas:int } class Pais{ - ejercitos:Ejercitos - nombreDelPais:String - paisesConectados:ArrayList<Pais> - esDelMismoEquipo(Pais otroPais):boolean - esLimitrofe(Pais otroPais):boolean + recibirTropas(Ejercitos otrosEjercitos):void + getNombreDelPais():String + getCantidadDeEjercitos():int + agregarPaisConectado(Pais unPais):void + agregarEjercito(int cantidadDeEjercitos):void + atacarA(Pais otroPais):void + moverEjercitoA(Pais otroPais,int cantidad):void } Batalla ..> Dado Batalla ..> Ejercitos Ejercitos <|-- EjercitosNulos Pais --> Ejercitos EstadoEjercitos <- Ejercitos EstadoEjercitos <|.. EstadoEjercitosDerrotados EstadoEjercitos <|.. EstadoEjercitosEnPie @enduml
22147ddd5044fdb75a3160ca6b33e90504e939ef
74cb674dc7b9c3f65f6ab08fc5ad3a43c3bf12d3
/Offline 2/Problem 1/Problem 1.plantuml
69f96584d06519da14698616ec7aa8ff82937958
[]
no_license
zarif98sjs/CSE-308-Software-Engineering
a9759bbee2ea0647eae2ea677d08741293a1cc14
515015a40c10d916d5089f11784b4ff75319fcbd
refs/heads/main
2023-06-27T05:57:00.443594
2021-07-28T13:57:32
2021-07-28T13:57:32
344,690,362
2
1
null
null
null
null
UTF-8
PlantUML
false
false
7,592
plantuml
@startuml title __PROBLEM 1's Class Diagram__\n namespace com.company { class com.company.Main { } } namespace component.framework { class component.framework.Django { } } namespace component.framework { interface component.framework.Framework { } } namespace component.framework { class component.framework.FrameworkFactory { } } namespace component.framework { class component.framework.Laravel { } } namespace component.framework { class component.framework.Spring { } } namespace component.hardware.controller { class component.hardware.controller.AddOnController { } } namespace component.hardware.controller { class component.hardware.controller.BuiltInController { } } namespace component.hardware.controller { interface component.hardware.controller.Controller { } } namespace component.hardware.display { interface component.hardware.display.Display { } } namespace component.hardware.display { class component.hardware.display.LCD { } } namespace component.hardware.display { class component.hardware.display.LED { } } namespace component.hardware.display { class component.hardware.display.TouchScreen { } } namespace component.hardware.identification { interface component.hardware.identification.Identfication { } } namespace component.hardware.identification { class component.hardware.identification.NFC { } } namespace component.hardware.identification { class component.hardware.identification.RFID { } } namespace component.hardware.storage { class component.hardware.storage.BuiltInStorage { } } namespace component.hardware.storage { class component.hardware.storage.SDCard { } } namespace component.hardware.storage { interface component.hardware.storage.Storage { } } namespace component.hardware.weightmeasurement { class component.hardware.weightmeasurement.LoadSensor { } } namespace component.hardware.weightmeasurement { interface component.hardware.weightmeasurement.WeightMeasurement { } } namespace component.hardware.weightmeasurement { class component.hardware.weightmeasurement.WeightModule { } } namespace component.internet { class component.internet.Ethernet { } } namespace component.internet { class component.internet.GSM { } } namespace component.internet { interface component.internet.Internet { } } namespace component.internet { class component.internet.InternetFactory { } } namespace component.internet { class component.internet.WiFi { } } namespace microcontroller { class microcontroller.ATMega32 { } } namespace microcontroller { class microcontroller.ArduinoMega { } } namespace microcontroller { abstract class microcontroller.Microncontroller { } } namespace microcontroller { class microcontroller.RaspberryPi { } } namespace product { class product.Product { } } namespace teagaspackage { class teagaspackage.Diamond { } } namespace teagaspackage { class teagaspackage.Gold { } } namespace teagaspackage { class teagaspackage.Platinum { } } namespace teagaspackage { class teagaspackage.Silver { } } namespace teagaspackage { interface teagaspackage.TeaGASPackage { } } namespace teagaspackage { class teagaspackage.TeaGASPackageFactory { } } component.framework.Django .up.|> component.framework.Framework component.framework.Laravel .up.|> component.framework.Framework component.framework.Spring .up.|> component.framework.Framework component.hardware.controller.AddOnController .up.|> component.hardware.controller.Controller component.hardware.controller.BuiltInController .up.|> component.hardware.controller.Controller component.hardware.display.LCD .up.|> component.hardware.display.Display component.hardware.display.LED .up.|> component.hardware.display.Display component.hardware.display.TouchScreen .up.|> component.hardware.display.Display component.hardware.identification.NFC .up.|> component.hardware.identification.Identfication component.hardware.identification.RFID .up.|> component.hardware.identification.Identfication component.hardware.storage.BuiltInStorage .up.|> component.hardware.storage.Storage component.hardware.storage.SDCard .up.|> component.hardware.storage.Storage component.hardware.weightmeasurement.LoadSensor .up.|> component.hardware.weightmeasurement.WeightMeasurement component.hardware.weightmeasurement.WeightModule .up.|> component.hardware.weightmeasurement.WeightMeasurement component.internet.Ethernet .up.|> component.internet.Internet component.internet.GSM .up.|> component.internet.Internet component.internet.WiFi .up.|> component.internet.Internet microcontroller.ATMega32 -up-|> microcontroller.Microncontroller microcontroller.ATMega32 o-- component.hardware.controller.Controller : controller microcontroller.ATMega32 o-- component.hardware.display.Display : display microcontroller.ATMega32 o-- component.hardware.identification.Identfication : identfication microcontroller.ATMega32 o-- component.hardware.storage.Storage : storage microcontroller.ATMega32 o-- component.hardware.weightmeasurement.WeightMeasurement : weightMeasurement microcontroller.ArduinoMega -up-|> microcontroller.Microncontroller microcontroller.ArduinoMega o-- component.hardware.controller.Controller : controller microcontroller.ArduinoMega o-- component.hardware.display.Display : display microcontroller.ArduinoMega o-- component.hardware.identification.Identfication : identfication microcontroller.ArduinoMega o-- component.hardware.storage.Storage : storage microcontroller.ArduinoMega o-- component.hardware.weightmeasurement.WeightMeasurement : weightMeasurement microcontroller.RaspberryPi -up-|> microcontroller.Microncontroller microcontroller.RaspberryPi o-- component.hardware.controller.Controller : controller microcontroller.RaspberryPi o-- component.hardware.display.Display : display microcontroller.RaspberryPi o-- component.hardware.identification.Identfication : identfication microcontroller.RaspberryPi o-- component.hardware.storage.Storage : storage microcontroller.RaspberryPi o-- component.hardware.weightmeasurement.WeightMeasurement : weightMeasurement product.Product o-- component.framework.Framework : framework product.Product o-- component.internet.Internet : internet product.Product o-- teagaspackage.TeaGASPackage : teaGASPackage teagaspackage.Diamond .up.|> teagaspackage.TeaGASPackage teagaspackage.Diamond o-- microcontroller.Microncontroller : microncontroller teagaspackage.Gold .up.|> teagaspackage.TeaGASPackage teagaspackage.Gold o-- microcontroller.Microncontroller : microncontroller teagaspackage.Platinum .up.|> teagaspackage.TeaGASPackage teagaspackage.Platinum o-- microcontroller.Microncontroller : microncontroller teagaspackage.Silver .up.|> teagaspackage.TeaGASPackage teagaspackage.Silver o-- microcontroller.Microncontroller : microncontroller 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
7d3a4135f5cacdf9725ab6b70a6861a9519bbe19
1f9d63f2cb9f17d564c34e67fe10a18c6e764538
/uml/class/internal-api/keyple_2_0_class_remote_plugin_api.puml
27fb556f5158494aff8b05ec31ed29260c29a708
[]
no_license
jeanpierrefortune/keyple_2_0
d07861c0c7792a1cf3dce705fef3565b53cf01cb
6716a69547fcfa797986a2b02ed904bf8f33b9a2
refs/heads/master
2023-02-25T16:40:54.126427
2021-02-02T16:34:21
2021-02-02T16:34:21
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,090
puml
@startuml title Keyple 2.0 - keyple-remote-plugin-api - 2.0 (26/01/2021) end title ' == THEME == 'Couleurs issues de : https://htmlcolorcodes.com/fr/tableau-de-couleur/tableau-de-couleur-design-plat/ !define C_GREY1 F8F9F9 !define C_GREY2 F2F3F4 !define C_GREY3 E5E7E9 !define C_GREY4 D7DBDD !define C_GREY5 CACFD2 !define C_GREY6 BDC3C7 !define C_LINK 3498DB !define C_USE 27AE60 skinparam Shadowing false skinparam ClassFontStyle italic skinparam ClassBorderColor #D4AC0D skinparam stereotypeABorderColor #A9DCDF skinparam stereotypeIBorderColor #B4A7E5 skinparam stereotypeCBorderColor #ADD1B2 skinparam stereotypeEBorderColor #EB93DF ' Red skinparam ClassBackgroundColor<<red>> #FDEDEC skinparam ClassBorderColor<<red>> #E74C3C hide <<red>> stereotype ' Purple skinparam ClassBackgroundColor<<purple>> #F4ECF7 skinparam ClassBorderColor<<purple>> #8E44AD hide <<purple>> stereotype ' blue skinparam ClassBackgroundColor<<blue>> #EBF5FB skinparam ClassBorderColor<<blue>> #3498DB hide <<blue>> stereotype ' Green skinparam ClassBackgroundColor<<green>> #E9F7EF skinparam ClassBorderColor<<green>> #27AE60 hide <<green>> stereotype ' Grey skinparam ClassBackgroundColor<<grey>> #EAECEE skinparam ClassBorderColor<<grey>> #2C3E50 hide <<grey>> stereotype ' == CONTENT == package "org.eclipse.keyple.plugin.remote" as api { +interface ObservableRemotePluginManager { -- +RemoteReaderManager createReader (String readerName, \tRemoteReaderSpi remoteReaderSpi) +RemoteReaderManager getReader (String readerName) +void onPluginEvent (String jsonData) } +interface RemoteReaderManager { } +interface ObservableRemoteReaderManager extends RemoteReaderManager { -- +void onReaderEvent (String jsonData) } package spi { +interface RemoteReaderSpi { -- +void setManager (RemoteReaderManger manager) .. +boolean isContactless () +boolean isCardPresent () .. +void releaseChannel () .. +String processCardSelectionRequests (String jsonData) +String processCardRequest (String jsonData) } +interface ObservableRemoteReaderSpi extends RemoteReaderSpi { -- +void startCardDetection (String jsonData) +void stopCardDetection () +void setDefaultSelectionRequest (String jsonData) +void finalizeCardProcessing () } +interface RemotePluginSpi { +Map<String, RemoteReaderSpi> initNativeReaders () } +interface ObservableRemotePluginSpi extends RemotePluginSpi { -- +void setManager (ObservableRemotePluginManager manager) } +interface PoolRemotePluginSpi { -- +SortedSet<String> getReaderGroupReferences () .. +RemoteReaderSpi allocateReader (String groupReference) +void releaseReader (RemoteReaderSpi reader) } +interface RemotePluginFactorySpi { +String getPluginName () +RemotePluginSpi getPlugin () } +interface PoolRemotePluginFactorySpi { +String getPluginName () +PoolRemotePluginSpi getPlugin () } } } ' Associations ObservableRemotePluginManager ..> RemoteReaderManager #C_USE : provide > RemotePluginFactorySpi ..> RemotePluginSpi #C_USE : provide > PoolRemotePluginFactorySpi ..> PoolRemotePluginSpi #C_USE : provide > RemotePluginSpi ..> RemoteReaderSpi #C_USE : provide > ObservableRemotePluginSpi .left.> ObservableRemotePluginManager #C_USE : use > PoolRemotePluginSpi ..> RemoteReaderSpi #C_USE : provide > RemoteReaderSpi .left.> RemoteReaderManager #C_USE : use > ObservableRemoteReaderSpi .left.> ObservableRemoteReaderManager #C_USE : use > ' == LAYOUT == PoolRemotePluginSpi -[hidden]- ObservableRemotePluginSpi ObservableRemotePluginSpi -[hidden]- RemoteReaderSpi ' == STYLE == package api #C_GREY1 {} package spi #C_GREY2 {} @enduml
6dac001d46ee790ce7d595129d49a4d7542c4dd4
36f2eefd80d6478abd0109578658d2c1a4265684
/Architecture/02_UML/03_03_Class_Diagram_Flight.plantuml
ecfa421b4ed4e9dd077bbca41c91bbf8d9259aab
[]
no_license
yenarue/TIL
4288aecd5a89bf8928fe041b6af9fd5ea1ace067
195d1679cf90e9956cbdb8c120cffaf4afb0df52
refs/heads/master
2022-10-09T06:57:15.715008
2022-09-28T10:50:18
2022-09-28T10:50:18
62,803,644
0
2
null
null
null
null
UTF-8
PlantUML
false
false
579
plantuml
@startuml homework2 skinparam classAttributeIconSize 0 class FlightReservationSystem { - fligts: List<Flight> + searchFlight(id: String): Flight + purchaseTicket(id: Flight, customerId: String): String + getAvailableSeats(id: Flight): List<Int> + selectSeat(seatNumber: Int, customerId: String): Void } class Flight { - id: String } class Customer { + id + reserve() + pay() } class Bank { + withdraw() } Flight "0..*" --o "1" FlightReservationSystem Customer "1" -- "1" FlightReservationSystem Customer "0..*" -- "1..*" Bank @enduml
b4ef974db7702d1988b9d8c8516c471c020f09b5
5d180276957df094f09ee511e05786316537f25d
/src/main/java/system/property/property.plantuml
163fc24a36529f6fd845d828ca3c9f81312c25f1
[ "Apache-2.0" ]
permissive
SomberOfShadow/Local
f727189f1791de203f1efd5cd76b8f241857e473
474e71024f72af5adf65180e5468de19ad5fdfd8
refs/heads/main
2023-07-18T04:11:49.240683
2021-09-07T15:55:28
2021-09-07T15:55:28
389,494,221
0
0
null
null
null
null
UTF-8
PlantUML
false
false
508
plantuml
@startuml title __PROPERTY's Class Diagram__\n namespace system.property { class system.property.GetDirectory { {static} + main() } } namespace system.property { class system.property.GetJavaVersionTest { {static} + LOGGER : Log {static} + main() } } right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
4fc61fe3417f89e57269c9726544a019d66e9c52
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/GraphQLMaxResourceLimitExceededError.puml
04600856e6c76f123398976ba1e72e29f8b6286c
[]
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
502
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 GraphQLMaxResourceLimitExceededError [[GraphQLMaxResourceLimitExceededError.svg]] extends GraphQLErrorObject { code: String exceededResource: [[ReferenceTypeId.svg ReferenceTypeId]] } interface GraphQLErrorObject [[GraphQLErrorObject.svg]] { code: String } @enduml
c92aed858c8798e556446d4d5ce903dd0ed95d35
8a63b0892998da88f779e8a105831b644232540c
/DesignPatternlib/src/main/java/com/lhf/designpatternlib/iterator/iterator.puml
a32f9ef43f6c18fbad3c633a2850a5b1781ba854
[]
no_license
Joshua-Lu/MyStudyApp
b57311677135f3f5e0c98236afbbb14bdae8cbf1
6ca03dfd1bcbcb72bf53459949ee34a1879535b7
refs/heads/master
2023-08-09T19:00:38.909776
2023-07-30T16:15:28
2023-07-30T16:15:28
225,662,424
5
0
null
null
null
null
UTF-8
PlantUML
false
false
562
puml
@startuml interface IIterator { Object first() Object next() boolean hasNext() } class Iterator implements IIterator { - List<Object> list - int index + Iterator(List<Object> list) + Object first() + Object next() + boolean hasNext() } interface IAggregate { void add(Object obj) void remove(Object obj) IIterator getIterator() } class Aggregate implements IAggregate { - List<Object> list + void add(Object obj) + void remove(Object obj) + IIterator getIterator() } Aggregate *- Iterator @enduml
4034c74e38e9d79c78bba9669d108016d3828d14
ee91868dbe44ca6d30083ba94de75dbc00939b93
/core/src/uas/lntv/pacmangame/Scenes/Scenes.plantuml
62c1be4ff7dfceab494e8048f63b0178dc975679
[]
no_license
CruseoGithub/pacman
3ff68054d89bed70c27f26f38477a6ac55365b0b
27cb32503e0ef5ad903457d67361d7e3b9fb184d
refs/heads/main
2023-04-11T02:05:41.222384
2021-04-27T09:09:29
2021-04-27T09:09:29
323,032,133
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,777
plantuml
@startuml title __SCENES's Class Diagram__\n namespace uas.lntv.pacmangame { namespace Scenes { abstract class uas.lntv.pacmangame.Scenes.Controller { # GAME_CAM : OrthographicCamera # PauseReady : boolean # STAGE : Stage # TILE_SIZE : int # VIEWPORT : Viewport # downPressed : boolean # leftPressed : boolean # rightPressed : boolean # touchEvent : boolean # upPressed : boolean + Controller() + dispose() + isDownPressed() + isLeftPressed() + isRightPressed() + isTouchEvent() + isUpPressed() + pulledInput() + ready() + resize() + setPause() } } } namespace uas.lntv.pacmangame { namespace Scenes { class uas.lntv.pacmangame.Scenes.ControllerButtons { + ControllerButtons() } } } namespace uas.lntv.pacmangame { namespace Scenes { class uas.lntv.pacmangame.Scenes.ControllerJoystick { ~ touchDownPos : Vector3 + ControllerJoystick() } } } namespace uas.lntv.pacmangame { namespace Scenes { class uas.lntv.pacmangame.Scenes.Hud { - LIVE_PAC_MEN : ArrayList<PacMan> - SCORE_LABEL : Label - STAGE : Stage - STAGES : ArrayList<String> - TIME_LABEL : Label - TIME_TEXT_LABEL : Label - VISIBLE : boolean - WARNING_TIME : int - red : boolean - time : float - timeStamp : float - warned : boolean + Hud() + animateLives() + dispose() + getMap() + getStage() + getTime() + resetLives() + resetTimeStamp() + update() + updateTime() - animate() - reset() } } } uas.lntv.pacmangame.Scenes.Controller o-- uas.lntv.pacmangame.Managers.Assets : ASSETS uas.lntv.pacmangame.Scenes.Controller o-- uas.lntv.pacmangame.Screens.MapScreen : SCREEN uas.lntv.pacmangame.Scenes.ControllerButtons -up-|> uas.lntv.pacmangame.Scenes.Controller uas.lntv.pacmangame.Scenes.ControllerJoystick -up-|> uas.lntv.pacmangame.Scenes.Controller uas.lntv.pacmangame.Scenes.ControllerJoystick o-- uas.lntv.pacmangame.Sprites.Joystick : joystick uas.lntv.pacmangame.Scenes.Hud o-- uas.lntv.pacmangame.Screens.MapScreen : SCREEN uas.lntv.pacmangame.Scenes.Hud o-- uas.lntv.pacmangame.Managers.Assets : assets 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
f3da3effcc46777be19e9bb0ee7ef85679557c6a
c3287e91ce0ebce396cd3966de3d2f7d90131c20
/Plantuml/DAL/DBCommands/ManeuverCommands/DeleteManeuverCommand.puml
d8ed23003f2eba4bc1b2c9d2de4c30e2276b3ca5
[]
no_license
kretmatt/SWE2-Tourplanner
497ec2e888112bd3d67a0f2b97e7c1e8e0348371
f064500ae5b913b00671f358a586011affcdaf00
refs/heads/main
2023-05-12T11:48:29.605417
2021-06-06T21:53:11
2021-06-06T21:53:11
341,115,114
0
0
null
null
null
null
UTF-8
PlantUML
false
false
285
puml
@startuml class DeleteManeuverCommand { + DeleteManeuverCommand(db:IDBConnection, maneuver:Maneuver) + Execute() : int + Undo() : int } IDBCommand <|-- DeleteManeuverCommand DeleteManeuverCommand --> "db" IDBConnection DeleteManeuverCommand --> "maneuver" Maneuver @enduml
8d99166249c6b8ed16543e61baa13f41cafa2b6c
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
/build/contact-information@0.3.0.puml
0f566447bf5ad1988338d9a82b921b9bf058373f
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "CC-BY-4.0" ]
permissive
accordproject/cicero-template-library
737586850933daac2fbff2ff8b2d60dd50526b80
35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea
refs/heads/main
2023-04-27T01:07:05.932361
2022-08-26T13:02:59
2022-08-26T13:02:59
109,224,687
77
149
Apache-2.0
2023-04-20T21:43:00
2017-11-02T06:11:37
HTML
UTF-8
PlantUML
false
false
521
puml
@startuml class org.accordproject.contactinformation.CommunicationChannel << (E,grey) >> { + EMAIL + PHONE } org.accordproject.contactinformation.CommunicationChannel --|> concerto.Concept class org.accordproject.contactinformation.ContactInformation << (A,green) >> { + String name + String title + String email + String phone + TimeZone timezone + CommunicationChannel communicationChannel } org.accordproject.contactinformation.ContactInformation --|> org.accordproject.contract.Clause @enduml
f885d44d0b0ffd0af15bfb3cc1cf03ca1f6a41ba
47abb2f6c2cf7216ee0f41acec5cf47f55cb9217
/experimental/doc/onap-ext-api/serviceOrder/api.plantuml
c13c0c5a416265ed8c31630a2b420e3d28db37b6
[ "Apache-2.0" ]
permissive
jtpugac/MEF-LSO-Legato-SDK
cb02f2d9fc927df7298aba83b4d89671be2354a8
9bc09533a095ec52dd8d0a2ba4f52a284ef7698b
refs/heads/master
2020-07-13T05:42:30.877249
2019-05-30T19:06:21
2019-05-30T19:06:21
205,006,971
0
1
null
null
null
null
UTF-8
PlantUML
false
false
4,569
plantuml
@startuml enum ActionType { add modify delete noChange } enum StateType { acknowledged rejected pending held inProgress cancelled completed failed partial } enum RelationshipType { reliesOn } enum EventType { ServiceOrderCreationNotification ServiceOrderStateChangeNotification ServiceOrderItemStateChangeNotification } enum SeverityMessage { information error } class Error { code:int reason:string message:string status:string referenceError:string } class ServiceRelationship ServiceRelationship --> "1-1" RelationshipType : type ServiceRelationship --> "1-1" Service : service class ServiceRef { id:string href:string } class ServiceCharacteristic { name:string valueType:string } ServiceCharacteristic --> "0-1" Value : value class RelatedParty { id:string href:string role:string name:string @referredType:string } class ServiceSpecificationRef { id:string href:string name:string version:string @type:string @schemaLocation:string @baseType:string } ServiceSpecificationRef --> "0-1" TargetServiceSchema : targetServiceSchema class Service { id:string href:string name:string serviceState:string @type:string @schemaLocation:string } Service --> "0-*" ServiceCharacteristic : serviceCharacteristic Service --> "0-*" ServiceRelationship : serviceRelationship Service --> "0-*" RelatedParty : relatedParty Service --> "0-1" ServiceSpecificationRef : serviceSpecification class OrderItemRelationship { id:string } OrderItemRelationship --> "1-1" RelationshipType : type class ServiceOrderItem { id:string percentProgress:string @type:string @schemaLocation:string @baseType:string } ServiceOrderItem --> "0-1" ActionType : action ServiceOrderItem --> "0-1" StateType : state ServiceOrderItem --> "0-*" OrderItemRelationship : orderItemRelationship ServiceOrderItem --> "1-1" Service : service ServiceOrderItem --> "0-*" OrderMessage : orderItemMessage class ServiceOrder { id:string href:string externalId:string priority:string description:string category:string orderDate:dateTime completionDateTime:dateTime requestedStartDate:dateTime requestedCompletionDate:dateTime expectedCompletionDate:dateTime startDate:dateTime @baseType:string @type:string @schemaLocation:string } ServiceOrder --> "0-1" StateType : state ServiceOrder --> "0-*" RelatedParty : relatedParty ServiceOrder --> "0-*" OrderRelationship : orderRelationship ServiceOrder --> "0-*" ServiceOrderItem : orderItem ServiceOrder --> "0-*" OrderMessage : orderMessage class OrderRelationship { type:string id:string href:string @referredType:string } class TargetServiceSchema { @type:string @schemaLocation:string } class Value { serviceCharacteristicValue:string } class CreateServiceOrderItem { id:string } CreateServiceOrderItem --> "0-1" ActionType : action CreateServiceOrderItem --> "0-*" OrderItemRelationship : orderItemRelationship CreateServiceOrderItem --> "1-1" Service : service class CreateServiceOrder { externalId:string priority:string description:string category:string requestedStartDate:dateTime requestedCompletionDate:dateTime } CreateServiceOrder --> "0-*" RelatedParty : relatedParty CreateServiceOrder --> "0-*" OrderRelationship : orderRelationship CreateServiceOrder --> "0-*" CreateServiceOrderItem : orderItem class ServiceOrderSummary { id:string href:string externalId:string orderDate:dateTime completionDateTime:dateTime } ServiceOrderSummary --> "0-1" StateType : state class Notification { eventId:string eventDate:dateTime } Notification --> "1-1" EventType : eventType Notification --> "1-1" ServiceOrderSummaryWithItem : event class ServiceOrderItemSummary { id:string } ServiceOrderItemSummary --> "0-1" ActionType : action ServiceOrderItemSummary --> "0-1" StateType : state ServiceOrderItemSummary --> "1-1" Service : service class ServiceOrderSummaryWithItem { id:string href:string externalId:string orderDate:dateTime completionDateTime:dateTime } ServiceOrderSummaryWithItem --> "0-1" StateType : state ServiceOrderSummaryWithItem --> "0-*" ServiceOrderItemSummary : orderItem class OrderMessage { code:string field:string messageInformation:string correctionRequired:boolean } OrderMessage --> "1-1" SeverityMessage : severity @enduml
b6aed65eefcbd9632cbce43633153b67420587ac
57515bfad33d5ab1e68cccc924700e88316e19b9
/DiagramaClases/Clases/Permisos.puml
3c2fe85daa4ed4de53ce55ff799c9b585e64067e
[]
no_license
NicolasBachs/DocumentacionZMGestion
0e42009bf3bbf4d244e85a8545997c880f233074
a099ddb44b8911b8428b9c4bdc2f9156c480af47
refs/heads/master
2023-01-27T17:57:29.235074
2020-12-02T15:35:21
2020-12-02T15:35:21
232,633,959
1
0
null
2020-01-08T18:44:12
2020-01-08T18:44:11
null
UTF-8
PlantUML
false
false
119
puml
@startuml Permisos hide circle class Permisos{ idPermiso: int permiso: string descripcion: string } @enduml
ead1bc3011962ffb3f7e7b12d8ef2d479ec74304
761f51469594d7e88d79c71f02a91e498b590eec
/Notes & Diagrams/ClassDiagram Interface.puml
11a245505c46d59130c152e58e1bdff5397af9a3
[]
no_license
YidongQIN/PyBMS_BrIM
0c0e075c57a0d6069e4ac9ceaf1373abe352492c
e47192283cb53172ec7827a3fd5061f8238d3ab3
refs/heads/master
2021-06-17T20:10:36.911893
2019-09-26T07:29:40
2019-09-26T07:29:40
112,799,581
0
0
null
null
null
null
UTF-8
PlantUML
false
false
844
puml
@startuml top to bottom direction ' left to right direction skinparam shadowing false skinparam monochrome true class PyELMT{ id type description* update() } class AbstractELMT{ name } class PhysicalELMT{ name material: Material } Interface Mongo{ mongo_document export_mongo(): MongoDB document import_mongo(MongoDB document) ' - attribute_check() } Interface OpenBrIM{ export_openbrim(): OpenBrIM file import_openbrim(OpenBrIM file) ' - attribute_check() } Interface OpenBrIM_fem{ openbrim_fem_elmt } Interface OpenBrIM_geo{ openbrim_geo_elmt } PyELMT <|-- AbstractELMT PyELMT <|-- PhysicalELMT OpenBrIM_fem <|-- AbstractELMT OpenBrIM_fem <|-- PhysicalELMT OpenBrIM_geo <|-- PhysicalELMT OpenBrIM <|-- OpenBrIM_fem OpenBrIM <|-- OpenBrIM_geo Mongo <|-- PyELMT @enduml
ef17405aa952a39a0b4699973d8cecf52d451b19
260b73e964e4a009342d7650080d9a181e13f5dc
/doc/src/pointerhash.puml
4f48ed6f78b64170a3b14c466ac0755239ff2e3a
[]
no_license
bodo-hugo-barwich/hash-lists
847d977d66d382fc19d62e9f9f46c2bec6d41685
75e4995002172c0d9128a25b85fe6559de75d552
refs/heads/master
2023-09-01T11:26:43.087127
2023-08-25T06:23:31
2023-08-25T06:23:31
226,669,430
5
3
null
2020-12-18T17:15:58
2019-12-08T13:09:37
Pascal
UTF-8
PlantUML
false
false
2,800
puml
@startuml package "unit 'pointerhash'" <<Rectangle>> { class TPLPointerHashList { .. Properties .. {field} +Capacity : Integer [rw] {field} +Count : Integer [r] {field} +Duplicates : TDuplicates [rw] {field} +GrowFactor: Integer [rw] {field} +KeyData[skey: string] : Pointer [rw] (default) {field} +LoadFactor : Integer [rw] __ .. Constructors .. +Create() +Create(icapacity: Integer) +Create(icapacity: Integer; ifactor: Integer) +Destroy() .. Administration Methods .. +setLoadFactor(ifactor: Integer) +setGrowFactor(ifactor: Integer) +setCapacity(icapacity: Integer) +Add(const skey: string; ppointer: Pointer) : Boolean +setValue(const skey: string; ppointer: Pointer) +removeKey(const skey: string) +Clear() .. Consultation Methods .. {method} +getValue(const skey: string) : Pointer {method} +hasKey(const skey: string) : Boolean {method} +moveFirst() : Boolean {method} +moveNext() : Boolean {method} +getCurrentKey() : string {method} +getCurrentValue() : Pointer } TPLPointerHashList "1" *-- "1" TDuplicates : uses TPLPointerHashList -[hidden]> TDuplicates enum TDuplicates { dupIgnore dupAccept dupError } note right of TDuplicates : from Types.TDuplicates TPLPointerHashList "1" *-- "n" TPLPointerNodeList : contains class TPLPointerNodeList { .. Properties .. {field} +GrowFactor : Integer [rw] __ .. Constructors .. +Create() +Create(iindex: Integer) +Create(iindex: Integer; ifactor: Integer) +Destroy() .. Administration Methods .. +setGrowFactor(ifactor: Integer) +addNode(pnode: PPLHashNode) : PPLHashNode +addNode(ihash: Cardinal; pskey: PAnsiString; ppointer: Pointer) : PPLHashNode +setValue(ihash: Cardinal; pskey: PansiString; ppointer: Pointer) +setValue(pskey: PAnsiString; ppointer: Pointer) +unsetIndex(iindex: Integer) +removeNode(pnode: PPLHashNode) : Boolean +removeNode(ihash: Cardinal; pskey: PAnsiString) : Boolean +removeNode(pskey: PAnsiString) : Boolean +reindexList() +Clear() .. Consultation Methods .. +getNode(iindex: Integer) : PPLHashNode +searchNode(ihash: Cardinal; pskey: PAnsiString) : PPLHashNode +searchNode(pskey: PAnsiString) : PPLHashNode +searchValue(ihash: Cardinal; pskey: PAnsiString) : Pointer +searchValue(pskey: PAnsiString) : Pointer +searchIndex(ihash: Cardinal; pskey: PAnsiString) : Integer +searchIndex(pskey: PAnsiString) : Integer +getLastIndex() : Integer } note right of TPLPointerNodeList PAnsiString : Pointer to String end note TPLPointerNodeList "1" *-- "n" TPLHashNode : contains class TPLHashNode << (S,#FF7700) >> { +skey : String +ihash : Cardinal +pvalue : Pointer +ibucketindex : Integer +inodeindex : Integer } hide TPLHashNode methods note right of TPLHashNode Structure that stores the Key and its Data end note note bottom of TPLHashNode PPLHashNode : Pointer to TPLHashNode end note } @enduml
e91ba4b2836971aaa09594fa32a90abf35a4a6ae
ce2121b321e36b2501d873653ce8a97b1b855168
/ks/tag/refactor.puml
19b51bfc88d7beb69010155ac700042c77571ce4
[]
no_license
waterystone/adu-uml
e486aaf055a0c38289ec966625340d08c89f8689
520a1f85bd2c9c59e19bb9b1d9ba045ced261f9f
refs/heads/master
2021-06-20T03:31:46.360922
2019-07-11T08:16:25
2019-07-11T08:16:25
115,916,174
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,359
puml
@startuml api.TagRecommendServiceFutureClient-->tag.TagRecommendService api.TagSearchServiceFutureClient-->tag.TagSearchService api.TagServiceFutureClient-->tag.TagService api.TagCountServicFutureClient-->tag.TagCountService api.TagDispatchServicFutureClient-->tag.TagDispatchService tag.TagService->memcached.tagNew:标签缓存 tag.TagService->dao.TagDAO tag.TagRecommendService-->zkconfig.recommendTopTags:国内置顶 tag.TagRecommendService-->zkconfig.overseaRecommendTopTags:海外置顶 tag.TagRecommendService-->memcached.recoTag:热门RECO tag.TagRecommendService-->tag.TagCountService tag.TagRecommendService-->tag.TagService tag.TagSearchService-->component.MMUphotoSearchTagService:MMU标签搜索 tag.TagSearchService-->component.MusicService:MUSIC标签搜索 tag.TagSearchService-->es.TagSearchService:ES中TEXT标签搜索 tag.TagSearchService-->tag.TagCountService tag.TagSearchService-->memcached.recoTag:热门RECO tag.TagSearchService-->grpc.TagRecoFutureClient tag.TagSearchService-->zkconfig.recommendTopTags tag.TagSearchService-->zkconfig.overseaRecommendTopTags tag.TagSearchService-->dao.TagTopDAO tag.TagSearchService-->dao.TagBucketDAO tag.TagSearchService-->tag.TagService tag.TagCountService-->memcached.tagNew:TEXT&MUSIC标签计数缓存 memcached.tagNew-->dao.TagBucketDAO:TEXT标签计数落地 memcached.tagNew-->dao.MusicIndexDAO:MUSIC标签计数落地 tag.TagCountService-->component.MMUphotoSearchTagService:MMU标签计数 class api.TagRecommendServiceFutureClient{ } class api.TagSearchServiceFutureClient{ } class api.TagServiceFutureClient{ } class api.TagCountServicFutureClient{ } class api.TagDispatchServicFutureClient{ } class grpc.TagRecoFutureClient{ } class tag.TagRecommendService{ } class tag.TagSearchService{ } class tag.TagService{ } class tag.TagCountService{ } class tag.TagDispatchService{ } class component.MMUphotoSearchTagService{ searchTag(visitor,keyword,count) getFeedByCursor(visitorId,tagId,pcursor,count) } class component.MusicService{ search(keyword) } class zkconfig.recommendTopTags{ } class zkconfig.overseaRecommendTopTags{ } class memcached.recoTag{ } class memcached.tagNew{ } class es.TagSearchService{ search(keyword) } class dao.TagDAO{ } class dao.TagTopDAO{ getTop(tagId,locale) } class dao.TagBucketDAO{ } class dao.MusicIndexDAO{ } @enduml
0cbdd89ba196ddf0fab46fafe13623522537cabf
b0e947423cea03dc125f6fdef172dc88a069c563
/PlantUML/diagrammes.puml
31f6f493aa44fd23b99d50b916201feea2897b41
[]
no_license
RayhaneJ/Tp-Autres-
1a08c60f1eced8b6d2e3b9ef31181c09fcb17069
b38571b5f40fb1e3ee2a20d0882d6977fbad0830
refs/heads/master
2022-11-06T12:27:56.869286
2020-06-23T09:04:02
2020-06-23T09:04:02
274,382,612
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,213
puml
@startuml Exercice 1 skinparam classAttributeIconSize 0 class ordinateur { -nom : string -puissance : int -tailleMémoire : int -List<Processus> +allumer() +eteindre() } class Processus{ -<u>numero</u> } Personne "1"-->"1..*\nposseder" ordinateur fileDattente "1" *-->"1..*\nstocker" Processus ordinateur "1"*-right->"1\ngérer" fileDattente @enduml @startuml Exercice 2 skinparam classAttributeIconSize 0 class MessageElectronique{ -titre : string -adresseDestinataire : string } class enTete{ } class corps{ } MessageElectronique"1..*"*-->"1\nposseder" enTete MessageElectronique"1"*-up->"1\nposseder" corps MessageElectronique"1..*"---->"1..*\ncontenir"pieceJointe @enduml @startuml Exercice 3 skinparam classAttributeIconSize 0 skinparam lineType ortho class Pays{ -nom : string -population : int -PIB : int } class Capitale{ -nom : string } Pays-up->"0..*\nfrontalié"Pays Pays"1"<--*"1\nposseder"Capitale @enduml @startuml Exercice 4 skinparam classAttributeIconSize 0 skinparam lineType ortho class ListeChainée{ +Add(Element e) +Remove(Element e) } ListeChainée-->"1"Element:Premier Element Element-->"1"Element:élement suivant @enduml
b22064ca4e997380cda3e2daf1b1ec4f3503ca9b
4f029f90b241f8b1e4a0179d27c92be6b87c761c
/lib_design_pattern/src/main/java/com/mxdl/desigin/pattern/behavior/a10_mediator/uml/mediator.puml
fde0e6b5aab603a32f706d6feaa90622c9ffd9e1
[]
no_license
mxdldev/java-design-pattern
806cdb2f4ec87d121c10db4952ed67476772ff29
f42813ccdb2a1cfdcc790935e41747098467e7e5
refs/heads/master
2020-11-26T22:15:35.016854
2020-01-08T07:10:34
2020-01-08T07:10:34
229,215,001
0
0
null
null
null
null
UTF-8
PlantUML
false
false
711
puml
@startuml skinparam classAttributeIconSize 0 package "Mediator Pattern"{ interface ICountry { sendMessage(String message):void notifyMessage(String messaege):void } interface IUN { void sendMessage(String msg, ICountry country); } class UN implements IUN{ -mUsa:Usa -mIrap:Irap sendMessage(String msg, ICountry country):void } class UN note bottom:联合国 note bottom:将多个对象之间多对多的网状关系变成一对多的星状关系 class Usa note left:美国 class Usa implements ICountry class Irap note left:伊拉克 class Irap implements ICountry Usa <--* UN Irap <--* UN } @enduml
04ca5b7b7d1981462d74aceb7316c97c393373d4
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StagedQuoteSetValidToAction.puml
e2d735fec96e6c6ebe4edab572bb37ccabb6dd66
[]
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
463
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 StagedQuoteSetValidToAction [[StagedQuoteSetValidToAction.svg]] extends StagedQuoteUpdateAction { action: String validTo: DateTime } interface StagedQuoteUpdateAction [[StagedQuoteUpdateAction.svg]] { action: String } @enduml
08ff86b7152f0ac67f0411e9a3ce7f384bc765e8
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/PaymentChangeTransactionStateAction.puml
0f7ee99b0807df1fbbac92305a9f46e81dc9d263
[]
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
524
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 PaymentChangeTransactionStateAction [[PaymentChangeTransactionStateAction.svg]] extends PaymentUpdateAction { action: String transactionId: String state: [[TransactionState.svg TransactionState]] } interface PaymentUpdateAction [[PaymentUpdateAction.svg]] { action: String } @enduml
3156e27147f7f092f05a932df854e15f0bbe978a
7e6fa61a8595cd38195713b5c7698f5de6f7c7b3
/base/028/diagrama.puml
d60cf73457e10f315dd258c36a863b3a7359cfd8
[]
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
1,715
puml
'-- @startuml skinparam defaultFontName Hasklig skinparam dpi 150 '== class Bilheteria { - repVendas: Venda[] - repPessoas: Map<string, Pessoa> - repEventos: Map<string, Evento> __ + constructor() ' retorna a lista das vendas + getVendas(): Venda[] ' retorna a lista das pessoas como array + getPessoas(): Pessoa[] ' retorna a lista dos eventos como array + getEventos(): Evento[] __ ' lançar exceção se a pessoa não existir + getPessoa(nome: string): Pessoa ' lançar exceção se o evento não existir + getEvento(nome: string): Evento __ ' lançar exceção se nome for repetido + addPessoa(nome: string, meia:bool):void ' lançar exceção se nome for repetido + addEvento(nome: string, preco: valor):void ' esse método usa os métodos getPessoa e getEvento ' para fazer a venda, não é necessário lançar exceção aqui + vender(nome_pessoa: string, nome_evento: string):void } class Pessoa { - nome: string - meia: boolean __ + constructor(nome:string, meia:boolean) + getNome():string + getMeia():boolean + toString():string } class Evento { - nome: string - preco: number __ + constructor(nome: string, preco: number) + getNome():string + getPreco():number + toString():string } class Venda { - pessoa: Pessoa - evento: Evento - valor: number __ ' o valor da venda é calculado no construtor + constructor(pessoa: Pessoa, evento: Evento) + getPessoa():Pessoa + getEvento():Evento + getValor():number + toString():string } '-- ' Relações e multiplicidade Bilheteria *-- Venda Bilheteria *-- Pessoa Bilheteria *-- Evento Venda o-- Pessoa Venda o-- Evento '-- @enduml
d394fb54646a9f382a001c676512619c3ee6a643
ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb
/projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/util/InvoiceCSVHelper.puml
83d9d61d2e1a124768ddb19ab002e6c8755f9d8b
[]
no_license
itachi1706/How-to-use-Git-NTUSCSE1819-Site
d6fcba79d906e9916c3961b11a6e1318d8a0f602
dbce2f56b42e15be96bd40fd63e75389d397ca34
refs/heads/master
2021-07-12T15:24:44.197085
2020-08-01T12:31:23
2020-08-01T12:31:23
172,893,030
0
0
null
null
null
null
UTF-8
PlantUML
false
false
384
puml
@startuml class InvoiceCSVHelper [[../sg/edu/ntu/scse/cz2002/util/InvoiceCSVHelper.html]] { {static} -mInstance: InvoiceCSVHelper -orderCsv: String {static} +getInstance(): InvoiceCSVHelper +readFromCsv(): ArrayList<Invoice> +writeToCsv(items:ArrayList<Invoice>): void } center footer UMLDoclet 1.1.3, PlantUML 1.2018.12 @enduml
7fd5ec19d5d9df8954bcce5951f04010c8ad7496
12b3c91d0e79e6e80f4c095c0064e9765e959efb
/netty-start/src/main/java/com/netty/start/echo/evenloop.puml
be5a5a33cec2ab31dcb0f521275ec2afa50c5da8
[]
no_license
binecy/bin-learning
8d40628a5724e871dcfe48d6cef6eb31528497d2
e356a4b3187f91ee8f35362c5babf03d9757ea9b
refs/heads/master
2021-01-21T05:29:08.337953
2018-03-09T08:49:45
2018-03-09T08:49:45
83,192,816
4
0
null
2017-10-25T03:04:24
2017-02-26T08:02:43
Java
UTF-8
PlantUML
false
false
1,057
puml
@startuml interface EventLoopGroup { + next():EventLoop + register(Channel channel):ChannelFuture } interface EventLoop EventLoopGroup <|- EventLoop abstract class SingleThreadEventLoop EventLoop <|- SingleThreadEventLoop class NioEventLoop SingleThreadEventLoop <|- NioEventLoop /' Executor '/ interface EventExecutorGroup EventExecutorGroup <|-- EventLoopGroup interface ScheduledExecutorService ScheduledExecutorService <|-- EventExecutorGroup interface EventExecutor { + inEventLoop():boolean } abstract class SingleThreadEventExecutor EventExecutor <|- SingleThreadEventExecutor EventExecutor <|-- EventLoop interface EventExecutorGroup { + next():EventExecutor + submit(Runnable task):Future } EventExecutorGroup <|- EventExecutor interface Executor { + execute(Runnable command) } Executor <|- ThreadPerTaskExecutor interface ExecutorService { + shutdown() } ExecutorService <|-- ScheduledExecutorService Executor <|-- ExecutorService SingleThreadEventExecutor <|-- SingleThreadEventLoop @enduml
3f6b5915e1fba3e2afbf397692ffcbb2dbcc8363
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StoreResourceIdentifier.puml
b038bcc5ea73679f67cd3a6b5e3e8785d14d57c6
[]
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
12,510
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 StoreResourceIdentifier [[StoreResourceIdentifier.svg]] extends ResourceIdentifier { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String key: String } interface ResourceIdentifier [[ResourceIdentifier.svg]] { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String key: String } interface BusinessUnitDraft [[BusinessUnitDraft.svg]] { key: String status: [[BusinessUnitStatus.svg BusinessUnitStatus]] stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]] unitType: [[BusinessUnitType.svg BusinessUnitType]] name: String contactEmail: String associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]] associates: [[AssociateDraft.svg List<AssociateDraft>]] addresses: [[BaseAddress.svg List<BaseAddress>]] shippingAddresses: [[Integer.svg List<Integer>]] defaultShippingAddress: Integer billingAddresses: [[Integer.svg List<Integer>]] defaultBillingAddress: Integer custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface BusinessUnitSetStoreModeAction [[BusinessUnitSetStoreModeAction.svg]] { action: String storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]] stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] } interface BusinessUnitSetStoresAction [[BusinessUnitSetStoresAction.svg]] { action: String stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] } interface CartDiscountDraft [[CartDiscountDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] key: String description: [[LocalizedString.svg LocalizedString]] value: [[CartDiscountValueDraft.svg CartDiscountValueDraft]] cartPredicate: String target: [[CartDiscountTarget.svg CartDiscountTarget]] sortOrder: String stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] isActive: Boolean validFrom: DateTime validUntil: DateTime requiresDiscountCode: Boolean stackingMode: [[StackingMode.svg StackingMode]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface CartDiscountSetStoresAction [[CartDiscountSetStoresAction.svg]] { action: String stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] } interface CustomerDraft [[CustomerDraft.svg]] { key: String customerNumber: String externalId: String email: String password: String firstName: String lastName: String middleName: String title: String anonymousCartId: String anonymousCart: [[CartResourceIdentifier.svg CartResourceIdentifier]] anonymousId: String dateOfBirth: Date companyName: String vatId: String addresses: [[BaseAddress.svg List<BaseAddress>]] defaultShippingAddress: Integer shippingAddresses: [[Integer.svg List<Integer>]] defaultBillingAddress: Integer billingAddresses: [[Integer.svg List<Integer>]] isEmailVerified: Boolean customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] locale: String salutation: String stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] authenticationMode: [[AuthenticationMode.svg AuthenticationMode]] } interface CustomerSetStoresAction [[CustomerSetStoresAction.svg]] { action: String stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] } interface MyCustomerDraft [[MyCustomerDraft.svg]] { email: String password: String firstName: String lastName: String middleName: String title: String salutation: String dateOfBirth: Date companyName: String vatId: String addresses: [[BaseAddress.svg List<BaseAddress>]] defaultShippingAddress: Long defaultBillingAddress: Long custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] locale: String stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] } interface BusinessUnitAddStoreAction [[BusinessUnitAddStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface BusinessUnitRemoveStoreAction [[BusinessUnitRemoveStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface CartDiscountAddStoreAction [[CartDiscountAddStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface CartDiscountRemoveStoreAction [[CartDiscountRemoveStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface CartDraft [[CartDraft.svg]] { currency: String key: String customerId: String customerEmail: String customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]] anonymousId: String businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]] store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] lineItems: [[LineItemDraft.svg List<LineItemDraft>]] customLineItems: [[CustomLineItemDraft.svg List<CustomLineItemDraft>]] taxMode: [[TaxMode.svg TaxMode]] externalTaxRateForShippingMethod: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] billingAddress: [[BaseAddress.svg BaseAddress]] shippingAddress: [[BaseAddress.svg BaseAddress]] shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]] shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]] shippingMode: [[ShippingMode.svg ShippingMode]] customShipping: [[CustomShippingDraft.svg List<CustomShippingDraft>]] shipping: [[ShippingDraft.svg List<ShippingDraft>]] itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]] discountCodes: [[String.svg List<String>]] country: String locale: String origin: [[CartOrigin.svg CartOrigin]] deleteDaysAfterLastModification: Long custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface CustomerAddStoreAction [[CustomerAddStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface CustomerRemoveStoreAction [[CustomerRemoveStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface MyCartDraft [[MyCartDraft.svg]] { currency: String customerEmail: String businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]] store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] lineItems: [[MyLineItemDraft.svg List<MyLineItemDraft>]] taxMode: [[TaxMode.svg TaxMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] billingAddress: [[BaseAddress.svg BaseAddress]] shippingAddress: [[BaseAddress.svg BaseAddress]] shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]] itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]] discountCodes: [[String.svg List<String>]] country: String locale: String deleteDaysAfterLastModification: Long custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface MyShoppingListDraft [[MyShoppingListDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] description: [[LocalizedString.svg LocalizedString]] lineItems: [[ShoppingListLineItemDraft.svg List<ShoppingListLineItemDraft>]] textLineItems: [[TextLineItemDraft.svg List<TextLineItemDraft>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] deleteDaysAfterLastModification: Long store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface StagedOrderSetStoreAction [[StagedOrderSetStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface OrderImportDraft [[OrderImportDraft.svg]] { orderNumber: String purchaseOrderNumber: String customerId: String customerEmail: String customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]] businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]] store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] lineItems: [[LineItemImportDraft.svg List<LineItemImportDraft>]] customLineItems: [[CustomLineItemImportDraft.svg List<CustomLineItemImportDraft>]] totalPrice: [[Money.svg Money]] taxedPrice: [[TaxedPriceDraft.svg TaxedPriceDraft]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] billingAddress: [[BaseAddress.svg BaseAddress]] shippingAddress: [[BaseAddress.svg BaseAddress]] itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]] shippingInfo: [[ShippingInfoImportDraft.svg ShippingInfoImportDraft]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] paymentState: [[PaymentState.svg PaymentState]] shipmentState: [[ShipmentState.svg ShipmentState]] orderState: [[OrderState.svg OrderState]] state: [[StateReference.svg StateReference]] country: String origin: [[CartOrigin.svg CartOrigin]] completedAt: DateTime custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface OrderSetStoreAction [[OrderSetStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface ShoppingListDraft [[ShoppingListDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] slug: [[LocalizedString.svg LocalizedString]] customer: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]] key: String description: [[LocalizedString.svg LocalizedString]] anonymousId: String deleteDaysAfterLastModification: Long lineItems: [[ShoppingListLineItemDraft.svg List<ShoppingListLineItemDraft>]] textLineItems: [[TextLineItemDraft.svg List<TextLineItemDraft>]] store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface ShoppingListSetStoreAction [[ShoppingListSetStoreAction.svg]] { action: String store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } StoreResourceIdentifier --> BusinessUnitDraft #green;text:green : "stores" StoreResourceIdentifier --> BusinessUnitSetStoreModeAction #green;text:green : "stores" StoreResourceIdentifier --> BusinessUnitSetStoresAction #green;text:green : "stores" StoreResourceIdentifier --> CartDiscountDraft #green;text:green : "stores" StoreResourceIdentifier --> CartDiscountSetStoresAction #green;text:green : "stores" StoreResourceIdentifier --> CustomerDraft #green;text:green : "stores" StoreResourceIdentifier --> CustomerSetStoresAction #green;text:green : "stores" StoreResourceIdentifier --> MyCustomerDraft #green;text:green : "stores" StoreResourceIdentifier --> BusinessUnitAddStoreAction #green;text:green : "store" StoreResourceIdentifier --> BusinessUnitRemoveStoreAction #green;text:green : "store" StoreResourceIdentifier --> CartDiscountAddStoreAction #green;text:green : "store" StoreResourceIdentifier --> CartDiscountRemoveStoreAction #green;text:green : "store" StoreResourceIdentifier --> CartDraft #green;text:green : "store" StoreResourceIdentifier --> CustomerAddStoreAction #green;text:green : "store" StoreResourceIdentifier --> CustomerRemoveStoreAction #green;text:green : "store" StoreResourceIdentifier --> MyCartDraft #green;text:green : "store" StoreResourceIdentifier --> MyShoppingListDraft #green;text:green : "store" StoreResourceIdentifier --> StagedOrderSetStoreAction #green;text:green : "store" StoreResourceIdentifier --> OrderImportDraft #green;text:green : "store" StoreResourceIdentifier --> OrderSetStoreAction #green;text:green : "store" StoreResourceIdentifier --> ShoppingListDraft #green;text:green : "store" StoreResourceIdentifier --> ShoppingListSetStoreAction #green;text:green : "store" @enduml
1748835c3ab25dde2b67fc7164e742ae172435f7
372e13940be1f116c671dbb746617a331f06899e
/Assets/TPPackages/com.cocoplay.core/Documentation-/puml/Editor/Menu/CleanEmptyFolders.puml
576917b93cb4cc91ea68211bbb916647ad423566
[]
no_license
guolifeng2018/CIGA-Game-Jam
797734576510e27b5c5cee2eb17c1444f51d258c
fcd03e5579bef3bffe2cb51f52ba11a49a9cc02d
refs/heads/master
2022-12-10T19:21:15.522141
2020-08-16T10:06:23
2020-08-16T10:06:23
285,986,041
0
0
null
null
null
null
UTF-8
PlantUML
false
false
57
puml
@startuml class CleanEmptyFolders <<static>> { } @enduml
eb33b6451a9c890298d0ef5d4e72dfbf56614646
9f3129c361af57efdf50189ac9273fa7e3e7cd01
/src/stored/resources/org/gmnz/ddi/algs/graph3/class_diagram.puml
f686f3dda4f094bce087df537801501ee87cb30d
[]
no_license
s3lvatico/dd.algs
d8b9827b65505c7ba2b2428f00f71e02160063a9
0700f8db1198809caf5dbe75ff971c547a01797f
refs/heads/master
2021-07-01T03:26:51.227654
2020-10-13T19:17:45
2020-10-13T19:17:45
160,088,624
0
0
null
2020-10-13T12:02:33
2018-12-02T20:15:52
Java
UTF-8
PlantUML
false
false
464
puml
@startuml package_class_diagram interface Graph interface Search interface Queue<K> { ~ insert(K) ~ peek() : K ~ poll() : K } abstract class AbstractGraph abstract class AbstractSearch class BasicGraph class Dfs class BasicQueue class Node <<nested>> { - key : K } Graph <|.. AbstractGraph AbstractGraph <|-- BasicGraph Search <|.. AbstractSearch AbstractSearch <|-- Dfs Queue <|.. BasicQueue BasicQueue *--> Node Node --> Node : next @enduml
4ced1197d0d126d56abfde62cc7f5ae9e470aca9
71f991ceeedbb609fdc6461988fe0267d10e8bac
/uml/ui/TextBubble.puml
79c5d07c3ba130e24307d305dffa59269a475af6
[]
no_license
CodyAdam/project__chatbot
23d0ef12207fb0201258c288ee07872d957b1742
afc0d8532f7a162d5b303b09fb41b345f4736697
refs/heads/main
2023-08-02T04:11:36.149644
2021-10-09T21:02:45
2021-10-09T21:02:45
415,371,853
0
0
null
null
null
null
UTF-8
PlantUML
false
false
203
puml
@startuml 'https://plantuml.com/class-diagram class TextBubble { Language lang String msg Boolean isUser Integer parentWidth Integer maxWidth Integer textWidth Integer lineHeight Integer line } @enduml
a37dc5aa9477ff15e0938d6b253b3d4b6153e457
c60a8fb67fedcbae08755d8125d97468a8aca24d
/Projet de UML Reverse/documents/diagrammes_architecture/DiagrammesVersion trash/Modèle de donnée/useCaseVisiteur.puml
7abf43b1fb3f40f4a01e0550173ffb117b94bf1d
[ "Apache-2.0" ]
permissive
BelkhousNabil/Projets-Informatiques
6be114f6a8dbcf978ef67daffb1394ee023255cf
47ffd6526bb66ae263c34725fe2b515b751127bb
refs/heads/master
2021-01-17T07:12:08.050466
2017-02-26T17:03:56
2017-02-26T17:03:56
54,788,129
0
0
null
null
null
null
UTF-8
PlantUML
false
false
743
puml
@startuml package usecase.visitor { ' -------------------------------- umlreverse.model.diagram.usecase.visitor interface UseCaseVisitor { +visit(UseCaseDiagram) : void +visit(UseCase) : void +visit(Actor) : void +visit(UseCaseGroup) : void +visit(Generalization) : void +visit(Extension) : void +visit(Inclusion) : void +visit(usecase.relation.Association) : void } class SaveStyleUseCaseVisitor implements UseCaseVisitor class SavePlantUmlUseCaseVisitor implements UseCaseVisitor class ToViewUseCaseVisitor implements UseCaseVisitor { +getDiagramMenu() : IUseCaseDiagramMenu +getDiagramEditor() : IUseCaseDiagramEditor } } ' --------------------------------------------------------- fin package visitor @enduml
2e21ec653880f8d71cda82eaf859ca8c4ac3e53c
35524a300e469cc67f5d652a07103230b264d077
/src/main/java/ex41/ex41.puml
83129e229edbae66d05f721f5e397c14cea589e9
[]
no_license
tsehaiB/boucaud-cop3330-assignment3
f216416bb28d346bf10d3974b62546a4886446c6
ec9362b8cfd2d347d12cd3d134cb02e1c514c4d9
refs/heads/master
2023-05-27T00:45:39.837812
2021-06-21T03:53:49
2021-06-21T03:53:49
378,795,737
0
0
null
null
null
null
UTF-8
PlantUML
false
false
827
puml
@startuml 'https://plantuml.com/sequence-diagram class Application{ - reader : inputFile - writer : outputFile - sorter : nameSort + main() - readFile(inputFile reader) - sortNames(nameSort sorter, ArrayList<String> unsortedNames) - writeFile(outputFile writer, ArrayList<String> sortedNames) } class inputFile{ - input : File + constructReader() + storeInStringArray(Scanner reader) } class outputFile{ - output : File + constructWriter() + printToFile(FileWriter writer, ArrayList<String> sortedNames) } class nameSort{ - namesUnsorted : ArrayList<String> - sortedNames : ArrayList<String> + addToSorted(String newName) + addAllNames(ArrayList<String> unsorted) } Application o--> inputFile Application o--> outputFile Application o--> nameSort @enduml
02b7e6e565d8dea244e226bd4228b4d44a1293ec
11caa3b3949ee320b975030ed1873522797e7149
/uml/Assignment_4_Class_Diagram.puml
aeab3701e7f2a2097f95a9a26eb76e24b9af30a3
[]
no_license
Isaachristian/liljeros-cop3330-assignment4part2
b93956fba482ea34b09653ac30e629285ed9fe5e
29f20d4e76d6625d880759cce9c36de023a6018a
refs/heads/master
2023-06-19T20:40:02.373866
2021-07-11T18:02:45
2021-07-11T18:02:45
384,132,520
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,076
puml
@startuml 'https://plantuml.com/class-diagram class TodoApp extends Application { +void main() +void start(Stage) } class TodoAppController implements Initializable { -TodoItem[] todoItems -TodoItem[] todoItemsInView '0 = All, 1 = Complete only, 2 = Incomplete only -int viewOption +void initialize(URL, ResourceBundle) +void onCloseClick(ActionEvent action) +void redrawList() +void toggleFilter(ActionEvent action) +void addItem() +void removeItem() +void removeAllItems() +void changeItemDescription() +void changeItemDueDate() +void toggleItemCompletion() +void openHelpDialogue() +void importItems() +void exportItems() } class TodoItem { -String description -Date dueDate -Boolean isComplete +TodoItem(String description, Date dueDate) +String getDescription() +void setDescription(String) +Date getDate() +void setDate(Date) +Boolean getIsComplete() +void setIsComplete(Boolean) } TodoApp *-- TodoAppController TodoAppController *- TodoItem @enduml
b822bd6cd22b07a8d6da7116c644d3b7c8fae65d
9bcd4da5e5454922139d0afefc782a997988ad1f
/docs/SprintD/US/US2/US2_CD.puml
19f52051b013ba8a019ef013482e2da4805a8931
[ "MIT" ]
permissive
wjacoud/DynaByte
13f042b210f17830aa3eb31558d3f83d587ab436
3ac6b5e2d2e7559ec3e230db7848a1b43d3b40e3
refs/heads/main
2023-08-27T09:20:01.825322
2021-11-11T17:15:05
2021-11-11T17:15:05
427,082,047
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,181
puml
@startuml top to bottom direction class UpdateClientUI{ } class UpdateClientController{ -- +getClientData() +findActualClient() +setData(data) } class ClientMapper{ -- +toDTO(clientActual) } class ClientDTO{ -- +toDTO(clientActual) } class AuthFacade{ -- +getCurrentUserSession() } class Company{ -designation -- +getClientStore() } class ClientStore{ -List clientList -- +getClientStore() +getClientList() } class Client { -String citizenNumber -String healthcareNumber -String birthDate -String tin -String name -String phoneNumber -String sex -- +getAddress() +getName() +getPhoneNumber() +getSex() +setAddress() +setName(name) +setPhoneNumber(phoneNumber) +setSex(sex) } UpdateClientUI ..> UpdateClientController UpdateClientController .> ClientMapper ClientMapper ...> ClientDTO UpdateClientController .> ClientDTO UpdateClientUI ..> ClientDTO UpdateClientController ..> AuthFacade UpdateClientController ..> Company Company "1" --> "1" ClientStore : uses ClientStore "1" --> "*" Client : knows UpdateClientController "1" -> "*" Client : updates @enduml
6186d579f5e91a95d07dfd631cb8c4494b5fb970
1da59c980e0f5689a7c711988d562a355fa64820
/decorator-pattern/uml/DecoratorPatterns-sample.puml
8ad6383c302e76dbb1d3a70be59335660ffd5af8
[]
no_license
ye-geeee/headfirst-designpattern-practice
b8b39aa93c6d5c0dd21b619614f894ef7409bffa
b060bdc8412aaefff14b21ae27ada92651701748
refs/heads/master
2023-06-09T07:00:16.962806
2021-07-06T20:31:40
2021-07-06T20:31:40
371,192,159
2
1
null
null
null
null
UTF-8
PlantUML
false
false
850
puml
@startuml 'https://plantuml.com/class-diagram abstract class Beverage { String description getDescription() cost() } class HouseBlend { cost() } class DarkRoast { cost() } class Espresso { cost() } class Decaf { cost() } abstract class CondimentDecorator { getDescription() } class Milk { Beverage beverage cost() getDescription() } class Mocha { Beverage beverage cost() getDescription() } class Soy { Beverage beverage cost() getDescription() } class Whip { Beverage beverage cost() getDescription() } Beverage <|-- HouseBlend Beverage <|-- DarkRoast Beverage <|-- Espresso Beverage <|-- Decaf Beverage <|-- CondimentDecorator CondimentDecorator <|-- Milk CondimentDecorator <|-- Mocha CondimentDecorator <|-- Soy CondimentDecorator <|-- Whip @enduml
2d9c10a12f6b7510e71b356002e8fe0ee02cc895
9431c24dc32ad06fcf74041bfa566d4c446567db
/src/ChainOfResponsibilityCA/ChainOfResponsibilityOrginalTaskAssignment.puml
00b959fb6c9e0edeadbba1daa5514b169ecaee6f
[]
no_license
Paulcaff/ChainOfResponsibilityTaskAssignmentProject
911dcaf3ca7100a2f2753e8d2c749da9f324874a
44f1f2f5aa7bad841742b850bbf78c01e8046eec
refs/heads/master
2023-01-12T12:22:57.200100
2020-11-04T16:35:41
2020-11-04T16:35:41
309,425,320
0
0
null
null
null
null
UTF-8
PlantUML
false
false
471
puml
@startuml skinparam classAttributeIconSize 0 class AssignTask { -String task; -User user; +getTask(User user):String +setTask(String task):void +getUser():User setUser(User user):void } class User { -String position; -String password; +getPosition():String +setPosition(String position):void +getPassword():String +setPassword(String password):void } class TaskAssignmentDriver { +main():void } TaskAssignmentDriver --> AssignTask AssignTask --> User @enduml
7f71ee85f502e578f4953d5f4ad18b9e606b5c79
06e93d722a18add11c25541a4e525b9f4b9ab83d
/implementation/ast_exprs.puml
9219a25d27b08d8b4cbd8d7bccd9d096a632956f
[]
no_license
eroatta/thesis
a00ee3c69966b9794ca69147881b94909a306851
bd191d1691dea9ba433772fabf9b9726bc1b7237
refs/heads/master
2021-09-18T00:11:01.309241
2021-08-22T18:54:47
2021-08-22T18:54:47
91,565,606
0
0
null
null
null
null
UTF-8
PlantUML
false
false
734
puml
@startuml ast_exprs package ast { interface Expr { # exprNode() } class Ident implements Expr { + NamePos token.Pos + Name string + Obj *Object } class BasicLit implements Expr { + ValuePos token.Pos + Kind token.Token //int, flat, etc + Value string } class StarExpr implements Expr { + Star token.Pos + X Expr } class KeyValueExpr implements Expr { + Key Expr + Colon token.Pos + Value Expr } class GeneralExpr as "..." implements Expr note bottom of GeneralExpr Otras expresiones, pero que no son de importancia para la herramienta. end note } @enduml
561c63350ab97ea5164eef01fed1801624a8ed1b
04b784b3be55c6429fef64c976893abb1f8e6b8a
/tslight/chart.puml
2b66d640996190f0d3ce537e7410b0545dd0bb0a
[]
no_license
ChuckMizess/c-_wpf_xml_conn
46c605fd7727ccaf95a095a93b8c7a640ce89f96
41982fba49743376ad5fc7fb2a7f67420b09b77f
refs/heads/master
2023-01-14T00:30:08.494069
2020-11-08T15:02:56
2020-11-08T15:02:56
311,074,485
0
0
null
null
null
null
UTF-8
PlantUML
false
false
458
puml
@startuml class FinancialChart { + period : int + bar_count : int + ImageDir : string + FinancialChart(panel_control:Control, chart_period:int, AppDir:string) # <<override>> Dispose(disposing:bool) : void - InitializeComponent() : void + LoadData(candles:DataTable_candle) : void + LoadPoint(index:int, candle:DataRow_candle) : void + SetMarkers(Bars:IList<int>, image:string, info:string, series:string) : void } @enduml
943af85c05b9999e204788b648f2268b4da1aa65
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ScoreShippingRateInput.puml
5eb8f41c975f7450d767a79d93f5b2a1451123d0
[]
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
425
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 ScoreShippingRateInput [[ScoreShippingRateInput.svg]] extends ShippingRateInput { type: String score: Long } interface ShippingRateInput [[ShippingRateInput.svg]] { type: String } @enduml
44f2d00aaa113f9ce5c13c036f3fbd0d408a90ee
761f51469594d7e88d79c71f02a91e498b590eec
/Notes & Diagrams/ClassDiagram PyELMT.puml
0ee973773ea2ade56b5d6c9ca99efe192441c498
[]
no_license
YidongQIN/PyBMS_BrIM
0c0e075c57a0d6069e4ac9ceaf1373abe352492c
e47192283cb53172ec7827a3fd5061f8238d3ab3
refs/heads/master
2021-06-17T20:10:36.911893
2019-09-26T07:29:40
2019-09-26T07:29:40
112,799,581
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,085
puml
@startuml ' left to right direction skinparam shadowing false skinparam monochrome true class PyELMT{ id type } class AbstractELMT{ } PyELMT <|-- AbstractELMT class PhysicalELMT{ material: Material } PyELMT <|-- PhysicalELMT class Document{ } PyELMT <|-- Document class Defect { location: PhysicalELMT condition: Int picture } PhysicalELMT -- Defect Document <|-- Defect class Crack { } class Loose { } Defect <|-- Crack Defect <|-- Loose @enduml class FENode{ x: Parameter y: Parameter z: Parameter tx: Parameter ty: Parameter tz: Parameter rx: Parameter ry: Parameter rz: Parameter } class Section{ shape_node_list[] } class Material{ type property_list[]: Parameter } AbstractELMT <|-- Section AbstractELMT <|-- Material AbstractELMT <|-- FENode class Beam{ fenode1: FENode fenode2: FENode section: Section } class Slab{ fenode[]: FENode thickness: Parameter } class Volume{ fenode[]: FENode } PhysicalELMT <|-- Beam PhysicalELMT <|-- Slab PhysicalELMT <|-- Volume
33dce950cd1a528d5040c2151f7457defe29fdcd
85ca1f81ee9fdcdfaa9930a5c1729910f6a0bd4c
/src/main/java/model/model.plantuml
4af4e81a4a5140bd1ae849bfa6136148d3703e69
[]
no_license
shetina-shesh/QuizApp-FX
b9b2f1e665e81fae4c2e54d0b2b251e18275af8f
7dbc7d9379f8ac0cac050cdbe1cc962216a833a2
refs/heads/master
2020-06-11T07:41:20.606250
2019-07-01T16:01:35
2019-07-01T16:01:35
192,404,022
1
0
null
null
null
null
UTF-8
PlantUML
false
false
762
plantuml
@startuml title __MODEL's Class Diagram__\n package model { class Question { - question : String - answers : String[] - solution : String + getQuestion() + setQuestion() + getAnswers() + setAnswers() + getSolution() + setSolution() } } package model { class QuestionLoader { ~ questions : List<Question> + getQuestion() - parseTestFile() {static} - shuffle() + shuffleArrayOfAnswers() + getRandomNumber() } } 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
9c1581038196d591dd18ccb55194ebcd091c82fb
e7b7df0cf36cf83e9c440c3a81f4f85193e37a72
/3 Class Diagram/3c Adding methods.puml
40bde958d21299253a917e6f02119345dfd81c3b
[ "MIT" ]
permissive
jys129/PlantUML
38dd154cc9a45d3206abf26f95bfb45e32d4c186
f0e62bf90332a1a541ded76d2101ebdd9215adaa
refs/heads/master
2023-03-16T15:54:12.053012
2020-10-18T15:49:08
2020-10-18T15:49:08
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
102
puml
@startuml class Dummy { {field} A field (despite parentheses) {method} Some method } @enduml
9e8771cdf87b17c735e803bdd08541e218254d4a
60e80b1719d9c929747baf3d32537c1731c0168f
/abstractfactory/src/main/resources/pizzaAbstractfactory.puml
316f70325b91fe0c2921f96da0f5c114d1f98458
[]
no_license
GilbertXiao/JavaDesignPatterns
8c0b82634c96107f6311dbacabdaa38119402782
35ce09c85b40ae585ecfc8fb7c3247375eb2a40b
refs/heads/master
2021-07-11T11:10:04.956876
2020-07-19T11:59:28
2020-07-19T11:59:28
179,295,966
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,637
puml
@startuml interface PizzaIngredientFactory{ + Sauce createSauce() + Cheese createCheese() + Veggies[] createVeggies() } interface Sauce interface Cheese interface Veggies class NYPizzaIngredientFactory{ + Sauce createSauce() + Cheese createCheese() + Veggies[] createVeggies() } class ChicagoPizzaIngredientFactory{ + Sauce createSauce() + Cheese createCheese() + Veggies[] createVeggies() } class NYPizzaStore{ + Pizza createPizza } class TomatoSauce class SweetTomatoSauce class MozzarellaCheese class KoreaCheese PizzaIngredientFactory <|... NYPizzaIngredientFactory PizzaIngredientFactory <|... ChicagoPizzaIngredientFactory Sauce <|.. TomatoSauce Sauce <|.. SweetTomatoSauce Cheese <|.. MozzarellaCheese Cheese <|.. KoreaCheese NYPizzaIngredientFactory ..> TomatoSauce NYPizzaIngredientFactory ..> MozzarellaCheese ChicagoPizzaIngredientFactory ..> SweetTomatoSauce ChicagoPizzaIngredientFactory ..> KoreaCheese NYPizzaStore -> Sauce NYPizzaStore --> Cheese NYPizzaStore --> Veggies NYPizzaStore --> PizzaIngredientFactory note right of NYPizzaStore Pizza店的两个具体实例 (NYPizzaStore、ChicagoPizzaStore) 是抽象工厂的客户 end note note right of PizzaIngredientFactory 这是抽象的Pizza原料工厂接口, 它定义了如何产生一个相关产品的家族。 这个家族包含了所有制作Pizza的原料。 end note note as N1 这些具体原料工厂类 负责生产Pizza原料, 每个工厂都知道如何 产生符合自己区域的正确对象 end note N1 .. NYPizzaIngredientFactory N1 .. ChicagoPizzaIngredientFactory @enduml
172d5331eeea6e683157a584598db9b996852ba1
4271fa693d1197725e13aeb98be79a59648c0f86
/Lab03/test.puml
2ddb5023785bd910a71782bc387aed1716385795
[ "MIT" ]
permissive
vboiteau/LOG645
d96b6e478c811dc468d3e64b98e1a3767d34a85b
edce2d3425c6bc0642c9b615d394d42646ae6c73
refs/heads/master
2021-03-19T13:48:50.013295
2016-11-30T22:38:57
2016-11-30T22:38:57
67,133,533
0
0
null
null
null
null
UTF-8
PlantUML
false
false
467
puml
@startuml skinparam style strictuml hide empty members abstract "Event Handler" as EH { {abstract} handle_event(type) {abstract} get_handle() } class "Concrete\nEvent\nHandler" extends EH class Handle class "Synchronous Event\nDemultiplexer" as SED { select() } class "Initiation Dispatcher" as ID { handle_events() register_handler(h) remove_handler(h) } ID "1" -> "N" EH : handlers EH -left-> Handle : owns SED -up-> Handle : notifies ID -down-> SED : uses @enduml
42bf8bacfb9e5c90f92beea43a50f473fb3a839b
b44c1d48553582c3fdc7d00ff95876753dd05de4
/uml/ProjectStructure.puml
f64998710077c50afd8a992fb582d2761d09309c
[]
no_license
sebastianzabielski/IRC_Chat_java_client
c850610bc4bd179e34d37e903ad85e70676e256f
bcf4afad0f7facf69a2f30c77b1d6f70810aca52
refs/heads/master
2022-12-16T11:37:53.873845
2020-09-16T18:25:49
2020-09-16T18:25:49
289,716,290
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,212
puml
@startuml sprite $readonly[16x16/16z] { DOzH4iKW20CV4Y1jt-ZzRrl0kZ-w4pFWMibDydhMnmneOfpRG-696LiV82gX-R_yKf-xPdUTLDyzjgjx8CawcGb-1n5f7z8CrNOPK34JsF5yOD5vdDnZm51k dLSTd-Sbry-1dukSSUtr5uyDrmi0 } class Connection { - ip: String - port: int - socket: Socket - output: DataOutputStream - input: BufferedReader + Connection(ip: String, port: int) - createSocket(ip: String, port: int) # receive() # receive(byteLength: int) # receive(searchSequence: String) # send(content: String) + reconnect() + closeSocket() } class Client extends Connection { + Client(ip: String, port: int) + Client() - listenReceive(): void } note left of Client::Client constructor throw exception end note note left of Client::Client() throw exception if connection was not initialized by other constructor end note note left of Client::listenReceive this method working on the separate thread, it is an infinite loop that waiting to receive the data and emitting them end note class IRCSocket { - client: Client + IRCSocket() + onReceive() + register() + login() ' TODO complete missing methods } IRCSocket::client *-- Client note left of IRCSocket::onReceive() method should be overridden each time new instance of class is created, otherwise throw an exception end note package "dataStructures" #DDDDDD { class Receive { <$readonly> header: Map<String, Object> <$readonly> body: Map<String, Object> + Receive(header: Map<String, Object>) + Receive(header: Map<String, Object>, body: Map<String, Object>) + Receive(header: String) + Receive(header: String, body: String) + {static} parseStringToMap(string: String): Map<String, Object> + {static} parseStringToJavaType(string: String): Object + setBody(body: String): void + setBody(body: Map<String, Object>): void + getHeader(): Map<String, Object> + getBody(): Map<String, Object> + getConLen(): Integer } } package "statics" #54FF82 { class ApiStatics { public {static} IOSeparator: String public {static} IOBlockSeparator String public {static} KeyValueSeparator: String public Keys: enum } } @enduml
4454527794264f649e2291250fe5059facefbea0
2f30739a30b827de491449b27695773085013b68
/Project/bin/drivers/drivers.plantuml
1b0f5e692c7c1aab79716a7014aeca03b7d5d736
[]
no_license
juanjssanchez/Group-4-CPSC-233
ef5ced7fc89408c1ecb8cd41e6beddf577413911
1d4e4b5feb8db42c9184dffa51e5322df7c2509c
refs/heads/master
2020-04-21T03:39:41.034398
2019-04-13T04:23:31
2019-04-13T04:23:31
169,290,302
1
0
null
2019-04-12T12:54:36
2019-02-05T18:27:03
Java
UTF-8
PlantUML
false
false
439
plantuml
@startuml title __DRIVERS's Class Diagram__\n package drivers { class Project { ~ stage : Stage + Project() + setScene() + start() {static} + main() } } Project -up-|> Application right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
d9f9d789061e52a1beb5e7aa6b10a876e793ccc8
58f5766244826918a3cf79312f861f76c5aa6f7d
/Documents/uml/Views/GenerateConfigDialog.xaml.puml
9c24c7bc698b569d04e3df107579c387c8515295
[ "MIT" ]
permissive
BillKrat/CsvEditSharp
3835aa9d7955a33830be47b044d3c05763c68dff
a91334a8aa1b08c4f7fe38116892b088e92d4da4
refs/heads/master
2022-01-28T15:31:06.719793
2019-07-28T11:39:25
2019-07-28T11:39:25
198,216,226
0
1
MIT
2019-07-22T12:10:45
2019-07-22T12:10:44
null
UTF-8
PlantUML
false
false
123
puml
@startuml class GenerateConfigDialog <<partial>> { + GenerateConfigDialog() } Window <|-- GenerateConfigDialog @enduml
ac46c592e9e1267bc158a641898062c23ede69c8
e1641275ee0731802e26fcf4621791963ca6e696
/src/main/resources/ex43/WebsiteGenerator.puml
eb0a7b736eebb001ed06ea3e2bee54125a6d72a9
[]
no_license
ivy-nguyen18/nguyen-cop3330-assignment3
9f0112853901f0cab33192ee76ccdcf6fc36165d
beb96903af04382bc3d7b3cbf3b21159bde4915f
refs/heads/master
2023-06-01T03:38:34.959725
2021-06-21T02:57:26
2021-06-21T02:57:26
377,617,776
2
0
null
null
null
null
UTF-8
PlantUML
false
false
638
puml
@startuml 'https://plantuml.com/class-diagram FileFunctions o-> DirectoryFunctions DirectoryFunctions o-> App class DirectoryFunctions { - siteName: String + DirectoryFunctions(): void + makeDirectory(): String + makeJavascriptFolder(): String + makeCSSFolder(): String } class FileFunctions{ - html: File - siteName: String - author: String + FileFunctions(String, String): void + createHTML(): String + writeToHTML(): void - formatHTML(): String } class App{ - takeInput(): String - parseBoolean(): boolean - checkJavascript(): String - checkCSS(): String } @enduml
e9dc329d7bce2a55b19c24f77d90503541cb64e8
ddd9fceda7accb11f6e5c8f3614ee9b5a717d8e8
/node/lib/events.puml
db5c980f319937cfc2d7bd9d440ced1478bc999b
[]
no_license
Ayase-252/note-figures
e2cf7578aa9363346ac0c97bac38dc88e2afd6c8
259f9b7eb718359e7c63f9c5da97b1e6e098b3c2
refs/heads/master
2023-04-14T13:19:23.107968
2021-05-01T11:26:13
2021-05-01T11:26:13
337,063,921
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,278
puml
@startuml events namespace lib { namespace events<<PublicModule>> { class EventEmitter { captureRejections: boolean -kCapture: boolean = false _events _eventsCount _maxListeners defaultMaxListeners: number = 10 kMaxEventTargetListeners kMaxEventTargetListenersWarned {static} usingDomain: boolean = false constructor(opts) setMaxListeners(n, ...eventTargets) {static} init(opts) setMaxListeners(n: number): EventEmitter getMaxListeners(): number emit(type, ...args): boolean addListener(type, listener): EventEmitter on(type, listener): EventEmitter prependListerner(type, listener): EventEmitter once(type, listener): EventEmitter prependOnceListener(type, listener): EventEmitter removeListener(type, listener): EventEmitter off(type, listener): EventEmitter removeAllListeners(type): EventEmitter listeners(type) rawListeners(type) {static} listenerCount(emitter: EventEmitter, type) listenerCount(type) eventNames(): string[] } note left of EventEmitter::init aliase of constructor endnote note left of EventEmitter::on aliase of addListener endnote } } @enduml
c2bc49766f3a9a4d30bbd7de54b0d753521c0db4
54c377f79896f8e109fc40e83b926dc62696bfd7
/PlantUML/Assignment4.puml
96b03761876d6e811d12c600be581dd7f64265d3
[]
no_license
AgentAttorney/Pekarski-cop3330-assignment4
8ae0d1ed6c8e3dbcc70f22e3430537e6552d2bf7
080ce6a29692d00da24bcda4c49dc0807243a440
refs/heads/master
2023-06-13T23:43:55.527044
2021-07-11T21:31:28
2021-07-11T21:31:28
383,266,060
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,976
puml
@startuml 'https://plantuml.com/class-diagram class ToDoListMainMenu ToDoListMainMenu -- ToDoListMainMenuController class ToDoListMainMenuController{ ButtonAddClicked(ActionEvent event) ButtonRemoveClicked(ActionEvent event) ButtonEditClicked(ActionEvent event) ButtonDisplayClicked(ActionEvent event) ButtonSaveLoadClicked(ActionEvent event) ButtonExitClicked(ActionEvent event) } ToDoListMainMenuController -- addController ToDoListMainMenuController -- removeController ToDoListMainMenuController -- EditController ToDoListMainMenuController -- displayController ToDoListMainMenuController -- SaveLoadController ' Add submenu class addController{ ButtonBackMMClicked(ActionEvent event) ButtonListClicked(ActionEvent event) ButtonItemClicked(ActionEvent event) } class addListController implements Initializable{ ButtonBackAddClicked(ActionEvent event) TextField NameNewList ButtonOKClicked(ActionEvent event) ButtonReturnClicked(ActionEvent event) initialize(URL location, ResourceBundle resources) } class addItemController implements Initializable{ ListView chooseListAdd TextField chooseItemAdd ButtonBackClicked(ActionEvent event) ButtonConfirmClicked(ActionEvent event) ButtonFinishClicked(ActionEvent event) initialize(URL location, ResourceBundle resources) } addController -- addListController addController -- addItemController ' Remove submenu class removeController{ ButtonBackMMClicked(ActionEvent event) ButtonListClicked(ActionEvent event) ButtonItemClicked(ActionEvent event) } class removeListController{ ListView AvailableLists ButtonBackRemoveClicked(ActionEvent event) ButtonConfirmClicked(ActionEvent event) ButtonReturnClicked(ActionEvent event) } class removeListPopUpController{ ButtonYesClicked(ActionEvent event) ButtonNoClicked(ActionEvent event) } class removeItemController implements Initializable{ ListView ListToRemove ListView ItemToRemove ButtonBackClicked(ActionEvent event) ButtonConfirmClicked(ActionEvent event) ButtonReturnClicked(ActionEvent event) initialize(URL location, ResourceBundle resources) } removeController -- removeListController removeController -- removeItemController removeListController -- removeListPopUpController ' Edit submenu class EditController{ ButtonBackMMClicked(ActionEvent event) ButtonListClicked(ActionEvent event) ButtonItemClicked(ActionEvent event) } class EditListController implements Initializable{ TextField newListName ListView ListToEdit ButtonBackEditClicked(ActionEvent event) ButtonConfirmClicked(ActionEvent event) ButtonReturnClicked(ActionEvent event) initialize(URL location, ResourceBundle resources) } class EditItemController implements Initializable{ TextField UserEdit ChoiceBox ItemEdit ButtonBackEditClicked(ActionEvent event) ButtonConfirmClicked(ActionEvent event) ButtonReturnClicked(ActionEvent event) initialize(URL location, ResourceBundle resources) } EditController -- EditListController EditController -- EditItemController ' display submenu - maybe more to add here? class displayController implements Initializable{ TextField chooseListName ChoiceBox Complete ChoiceBox Incomplete ButtonBackClicked(ActionEvent event) ButtonConfirmClicked(ActionEvent event) initialize(URL Location, ResourceBundle rb) } ' Save/Load submenu class SaveLoadController{ ButtonBackMMClicked(ActionEvent event) ButtonSaveClicked(ActionEvent event) ButtonLoadClicked(ActionEvent event) } class SaveExternalListController{ backButtonClicked(ActionEvent event) ButtonReturnClicked(ActionEvent event) ButtonOKClicked(ActionEvent event) ListView AvailableLists } class LoadExternalListController{ backButtonClicked(ActionEvent event) ButtonReturnClicked(ActionEvent event) ButtonOKClicked(ActionEvent event) ListView AvailableLists } SaveLoadController -- SaveController SaveLoadController -- LoadController SaveController -- SaveExternalListController LoadController -- LoadExternalListController class returnMain{ ReturnToMainMenu(ActionEvent event) } ' No need for exit submenu, exit button will leave the program class ToDoListAll{ public void addToDoList(ToDoList new_tdl) public void editToDoList(String user_input, String old_list) public void removeToDoList(String name_to_remove) public void displayLists(ToDoList select_tdl,boolean complete, boolean incomplete) public void SaveLists(ToDoListAll User_Save) public void LoadLists() public boolean writeFileAll(File filename, ToDoListAll User_Save) public boolean readFileAll() ArrayList<ToDoLists> } class ToDoList{ public void addItem(Items Item_to_add) public void editItem(Items Item_to_edit, String DueDate, String Description) public void removeItem(String item_name) public void markItem(Items user_item,boolean complete) public void SaveList(ToDoList User_Save) public void LoadList() public boolean writeFile(File filename, ToDoList User_Save) public boolean readFile(File filename, ToDoList User_Load) ArrayList<Items> } class Items{ String description, DueDate boolean complete } @enduml
09c35a218dcc6dfbcd03b73a8a41e0496b1981a1
00da569d918ceb5460c76dc33825e1cef9032434
/src/MerchantAPI/APIGateway/APIGateway.Database/Uml/APIGatewayUml.puml
81cc3efe56c95c1cfd8eed4ff9cd2f37968455d1
[ "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
prayer0/merchantapi-reference
bd921e700e5aede9d058896e0ac09c99086488df
60f4b513b25411b658b764d86b2741dac4568242
refs/heads/master
2023-02-05T06:29:34.043552
2020-11-20T16:30:44
2020-11-20T16:30:44
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,013
puml
@startuml skinparam backgroundColor #FFFFFE ' uncomment the line below if you're using computer with a retina display ' skinparam dpi 300 ' we use bold for primary key ' green color for unique ' and underline for not_null !define primary_key(x) <b>x</b> !define unique(x) <color:green>x</color> !define not_null(x) <u>x</u> hide empty members hide circle class Tx { primary_key(txInternalId): bigserial unique(txExternalid): bytea not_null(txPayload): bytea receivedAt: datetime callbackUrl: string callbackToken: string callbackEncryption: string not_null(merkleProof) : bool not_null(dsCheck) :bool } class TxInput { primary_key(txInternalId): long primary_key(n): long not_null(prevTxId) : bytea not_null(prev_n) : long } Tx --> "txInternalId" TxInput ' After block is parsed we need to process merkle callback ' After block is no longer on active chain we need to check *whole new chain* for double spends (until tx is included on both forks)??? class TxBlock { primary_key(txInternalId): long primary_key(blockInternalId): long sentMerkleProofAt : datetime lastErrorDescription : string lastErrorAt : string errorCount : int } TxBlock --> "blockInternalId" Block TxBlock --> "txInternalId" Tx class TxBlockDoubleSpend { primary_key(txInternalId): long primary_key(blockInternalId): long primary_key(dsTxId) : bytea dsTxPayload: bytea sentDsNotificationAt: datetime lastErrorDescription : string lastErrorAt : string errorCount : int } TxBlockDoubleSpend --> "txInternalId" Tx TxBlockDoubleSpend --> "blockInternalId" Block class TxMempoolDoubleSpendAttempt { primary_key(txInternalId): long primary_key(dsTxId) : bytea not_null(dsTxPayload): bytea sentDsNotificationAt: datetime lastErrorDescription : string lastErrorAt : string errorCount : int } TxMempoolDoubleSpendAttempt --> "txInternalId" Tx class Block { primary_key(blockInternalId): bigserial not_null(blockTime): timestamp not_null(blockHash) :bytea not_null(prevBlockHash) : bytea ' null if not connected blockHeight: long not_null(onActiveChain): bool parsedForMerkleAt: datetime parsedForDSAt: datetime } class Node { primary_key(nodeId): serial not_null(host): string not_null(port): int not_null(username): string not_null(password): string remarks: string not_null(nodeStatus): int lastError: string lastErrorAt: timestamp } class FeeQuote { primary_key(id): serial not_null(createdAt): datetime not_null(validFrom): datetime identity: string identityProvider: string } class Fee { primary_key(id): serial not_null(feeQuote): long not_null(feeType): string } Fee -> FeeQuote class FeeAmount { primary_key(id): serial not_null(fee): long not_null(feeAmountType): string not_null(satoshis): int not_null(bytes): int } FeeAmount -> Fee class Version{ primary_key(version): int not_null(projectName): string not_null(updating): int not_null(creationDate): datetime } @enduml
ec1cd1b1eba0a0996f66939d8ff7aa90307e1ebd
44a89eb59de29515b1c5ccfc2d7a881d1c22950b
/src/helper/helper.plantuml
928daa7791cdc710ffc39f02f68d7499a5c10043
[]
no_license
AlexandraCristetiu/MyTextAdventureGame
c97b822e7abc692039e9f2963701bf34fd857d38
117d186c9a5b01c5b645e5e435df0d660d7059f2
refs/heads/master
2020-05-27T22:53:18.026650
2019-06-10T08:46:58
2019-06-10T08:46:58
188,812,054
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,889
plantuml
@startuml title __HELPER's Class Diagram__\n package helper { class ApplicationConstants { {static} - APP_FOLDER_DATA_PATH : String {static} - PATH_SEPARATOR : String {static} + DATABASE_NAME : String {static} + DATABASE_FOLDER : String {static} + SQLITE_JDBC : String {static} + DB_CONNECTION_URL : String {static} + TABLE_GAME_BOARDS : String {static} + TABLE_GAME_BOARDS_ID_COLUMN : String {static} + TABLE_GAME_BOARDS_NAME_COLUMN : String {static} + TABLE_GAME_BOARDS_SIZE_COLUMN : String {static} + TABLE_GAME_ARTIFACTS : String {static} + TABLE_GAME_ARTIFACTS_ID_COLUMN : String {static} + TABLE_GAME_ARTIFACTS_NAME_COLUMN : String {static} + TABLE_GAME_ARTIFACTS_COLLECTIBLE_COLUMN : String {static} + TABLE_ARTIFACTS_POSITION : String {static} + TABLE_ARTIFACTS_HORIZONTAL_POSITION : String {static} + TABLE_ARTIFACTS_VERTICAL_POSITION : String {static} + TABLE_ARTIFACTS_ID : String {static} + TABLE_ARTIFACTS_GAMEBOARD_ID : String {static} + TABLE_PLAYER_ID_COLUMN : String {static} + TABLE_PLAYER_NAME_COLUMN : String {static} + TABLE_PLAYERS : String {static} + TABLE_PLAYER_GAMEBOARD_ID : String {static} + TABLE_PLAYER_HORIZONTAL : String {static} + TABLE_PLAYER_VERTICAL : String {static} + TABLE_PLAYERS_NAME_COLUMN : String } } package helper { abstract class SqliteWrapper { - connect() # createTable() {abstract} + createTable() + insert() } } package helper { class Utility { } } 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
f34471288eff92afe8a877d2198f6e3888b0ebd0
e30e784d7ee56674973b80b367b6ba73a98091d2
/doc/machine/tradeStateMachine.puml
fae7b3e8f17e97b682515863a1f5c201eee83f8b
[]
no_license
suevip/trade-1
774bb35a3aa878c42280f6770524eba08923b4aa
4a48848eebb5ebcf0958fcdc61b4a6e357ec38b8
refs/heads/master
2018-01-14T17:41:43.441561
2016-02-22T08:39:47
2016-02-22T08:39:47
63,680,598
1
0
null
2016-07-19T09:30:20
2016-07-19T09:30:20
null
UTF-8
PlantUML
false
false
1,468
puml
@startuml package com.youzan.trade.platform.machine { enum TradeEventType { PAY, BUYER_CANCEL, SELLER_CANCEL, SELLER_SEND_GOODS, SUPPLIER_SEND_GOODS } class TradeEvent { TradeEventType tradeEventType; } class TradeLog class Result { + boolean isSuccess(); } class TSMContext interface TransitionChecker { + boolean check(Long orderId); } class ComposedTransitionChecker implements TransitionChecker class State { - String name; - int value; - List<Transition> transitions; } class Transition { - String preconditionChecker; - TradeEventType event; - String targetState; } class TradeFlowDefinition class StateTransitionApplier { } class TradeStateMachine { Result receive(TradeEvent tradeEvent); } class TradeStateMachineFactory TradeEvent --* TradeEventType TradeStateMachineFactory --> TradeStateMachine TradeStateMachineFactory --> TradeFlowDefinition TradeStateMachine --> TradeEvent TradeStateMachine --> Result TradeStateMachine --> StateTransitionApplier TradeStateMachine --* TradeFlowDefinition TradeStateMachine --> TransitionChecker StateTransitionApplier --> TradeLog State --o Transition TradeFlowDefinition --o State ComposedTransitionChecker --o TransitionChecker } @enduml
b6b13de98f3ddab8b8a012539dd3c4e1f1d21a22
21de3d6a7366d97b3004d35d05ec2dd52e4d6696
/src/com/company/iterator/showDepartment.puml
dd7438cb59a1d2cca46381e096fdbe0b591b1004
[]
no_license
y1o2y3o/DesignPattern
16e6dffffc3d851613c8a1afcb92a3d0f39e0df7
32e24e6e3aac720287be1979f460fa7bfc29a831
refs/heads/master
2023-01-03T14:37:07.913554
2020-07-30T03:35:58
2020-07-30T03:35:58
282,573,240
0
0
null
2020-10-14T00:02:37
2020-07-26T04:10:22
Java
UTF-8
PlantUML
false
false
602
puml
@startuml interface Iterator { hasNext():boolean next():E remove():void } class ComputerCollegeIterator class InfoCollegeIterator interface College { createIterator():Iterator } class ComputerCollege class InfoCollege College <|.. ComputerCollege College <|.. InfoCollege ComputerCollegeIterator <-- ComputerCollege InfoCollegeIterator <-- InfoCollege Iterator <|.. ComputerCollegeIterator Iterator <|.. InfoCollegeIterator class Department ComputerCollege o-- Department InfoCollege o-- Department ComputerCollegeIterator o-- Department InfoCollegeIterator o-- Department @enduml
6958bdd736516d0b2ef1142421993a9d22da70f2
b19e1cd9af26a9f3cb65823e1a7885ce278337fe
/documentation/productApi/workforce/media/src/workorderNotification.api.puml
6dd54c843d901ffa3e717a7b60c1b87325a4cc59
[ "Apache-2.0" ]
permissive
MEF-GIT/MEF-LSO-Sonata-SDK
969c3717fba3fffa009bf3a5de65337b2caccaaf
6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f
refs/heads/working-draft
2023-07-07T02:17:11.649855
2023-06-23T09:30:18
2023-06-23T09:30:18
90,886,429
33
32
Apache-2.0
2023-01-05T23:58:23
2017-05-10T16:38:08
null
UTF-8
PlantUML
false
false
1,193
puml
@startuml skinparam { ClassBackgroundColor White ClassBorderColor Black } class Error400 { code*: Error400Code } Error <|-- Error400 class Error401 { code*: Error401Code } Error <|-- Error401 class Error403 { code*: Error403Code } Error <|-- Error403 class Error408 { code*: string } Error <|-- Error408 class Error500 { code*: string } Error <|-- Error500 class Error { reason*: string message: string referenceError: uri } class WorkOrderEvent { eventType*: WorkOrderEventType } Event <|-- WorkOrderEvent WorkOrderEvent *-->"1" WorkOrderEventPayload : event class Event { eventId*: string eventTime*: date-time } class WorkOrderEventPayload { sellerId: string id*: string href: string buyerId: string } enum WorkOrderEventType { workOrderCreateEvent workOrderStateChangeEvent workOrderAppointmentRequiredEvent } enum Error401Code { missingCredentials invalidCredentials } enum Error403Code { accessDenied forbiddenRequester tooManyUsers } enum Error400Code { missingQueryParameter missingQueryValue invalidQuery invalidBody } @enduml
086ed376d53c2f8186d3f2d9427897c3bc01deb9
70b6b3086d64939b4bd08cf8aad93ac5283cf1ac
/examples/ast/package copy 2.puml
f90d8e80514908bf4b55339236757883b9693693
[ "MIT" ]
permissive
tizuck/scala-uml-diagrams
4a9d35e54a0f6fb3ef753e46eb59e81d7c42a26b
c5c432132bff9df7ab60352f0e715583d9d51973
refs/heads/main
2023-03-01T02:44:15.288794
2021-02-03T22:26:55
2021-02-03T22:26:55
306,687,367
0
0
null
null
null
null
UTF-8
PlantUML
false
false
648
puml
abstract class uml.NamedElement <<trait>> class uml.Stereotype << caseclass >>{ <<ctor pos=1>> name : String <<ctor pos=2>> taggedValues : List<TaggedValue> -- <<scalaclass>> -- isSealed } uml.NamedElement <|-- uml.Stereotype hide circle skinparam defaultFontName Source Code Pro skinparam ClassStereotypeFontColor #1b1f23 skinparam class { BackgroundColor White BorderColor #1b1f23 ArrowColor #1b1f23 FontColor #6f42c1 } skinparam note { BackgroundColor White BorderColor #1b1f23 ArrowColor #1b1f23 FontColor #d73a49 } skinparam stereotype { FontColor #d73a49 }
0c796a43f4ff7c0466ce0b645afe1965731119bd
c815f9c82c1400f76243750cd0ec609d217b9943
/monostate/etc/monostate.urm.puml
6574bcad1f0e4932dcf346d9c3c40c5a3c19d545
[ "MIT" ]
permissive
mikulucky/java-design-patterns
6ab10e9e5c95b6caffebf045d37d04a1571bc0cd
cbbf3bf08842723964719ed7d8ab92864ec5a58d
refs/heads/master
2021-01-17T23:34:49.962450
2016-09-28T19:54:28
2016-09-28T19:54:28
48,302,802
1
1
null
2016-01-02T23:58:44
2015-12-20T01:00:47
Java
UTF-8
PlantUML
false
false
713
puml
@startuml package com.iluwatar.monostate { class App { + App() + main(args : String[]) {static} } class Request { + value : String + Request(value : String) } class LoadBalancer { - id : int {static} - lastServedId : int {static} - servers : List<Server> {static} + LoadBalancer() + addServer(server : Server) + getLastServedId() : int {static} + getNoOfServers() : int + serverRequest(request : Request) } class Server { + host : String + id : int + port : int + Server(host : String, port : int, id : int) + getHost() : String + getPort() : int + serve(request : Request) } } LoadBalancer --> "-servers" Server @enduml
8c62f71001c99f40099bffb79f0edf7733e9c21e
a26d8720023ba9d19f6e58b19da020d0b71ae6d7
/app/src/main/java/rubo/dagger2coffee/model/model.puml
52c9ed4c38a7ea532056d37df68227439ca7da24
[]
no_license
zmer007/Dagger2Coffee
89603a0753b17624f1b8f4a67dccbf275cf33f67
79e2cf66e4b54eb146c1ace1bb1d3163ac11efcb
refs/heads/master
2021-01-19T21:51:44.252409
2017-02-21T09:29:41
2017-02-21T09:29:41
61,407,756
0
0
null
null
null
null
UTF-8
PlantUML
false
false
490
puml
@startuml interface Heater{ void on() void off() void isHot() } class ElectricHeater{ # boolean heating } Heater <|-- ElectricHeater interface Pump{ void pump() } class Thermosiphon{ - final Heater heater @Inject Thermosiphon(Heater heater) } Pump <|-- Thermosiphon Heater +-- Thermosiphon class CoffeeMaker{ @Inject Heater heater @Inject Pump pump @Inject CoffeeMaker() void brew() } Pump +- CoffeeMaker Heater +- CoffeeMaker @enduml
b837732c4627c90eadfb372745409f8211a823cc
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/InheritedAssociateRoleAssignment.puml
ee0aebd053d3b4cd96cd460227313614638704ab
[]
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
791
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 InheritedAssociateRoleAssignment [[InheritedAssociateRoleAssignment.svg]] { associateRole: [[AssociateRoleKeyReference.svg AssociateRoleKeyReference]] source: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] } interface InheritedAssociate [[InheritedAssociate.svg]] { associateRoleAssignments: [[InheritedAssociateRoleAssignment.svg List<InheritedAssociateRoleAssignment>]] customer: [[CustomerReference.svg CustomerReference]] } InheritedAssociateRoleAssignment --> InheritedAssociate #green;text:green : "associateRoleAssignments" @enduml
52ea47ee1e5bcc93485c30b4cf3c88e92950b8f8
d702b31e656edcb9944228c0309f153bdff29eec
/doc/plantuml/HCARDA/command/PsoVerifyDigitalSignatureCommand.plantuml
205641beff92cb06170965c7e914e30fd13b3c32
[ "Apache-2.0" ]
permissive
gematik/ref-HealthCardAccess
4f3957bfe40c56ffbf82782528a6e543ea00e9e3
eb9a12f7eea309bb5b23269de9d8fa924f91fe4f
refs/heads/master
2022-02-14T18:25:41.769547
2022-01-07T07:24:17
2022-01-07T07:24:17
213,916,430
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,383
plantuml
@startuml package de.gematik.ti.healthcardaccess { interface IHealthCardCommand { {abstract} + executeOn() } } package de.gematik.ti.healthcardaccess { abstract class AbstractHealthCardCommand { {static} - LOG : Logger {static} # NE_MAX_EXTENDED_LENGTH : int {static} # NE_MAX_SHORT_LENGTH : int {static} # EXPECT_ALL : int # cla : int # ins : int # p1 : int # p2 : int # data : byte[] # ne : int # AbstractHealthCardCommand() # AbstractHealthCardCommand() {abstract} + getTechnicalResponseApdus() - inferResponseStatusFromResponseCode() + executeOn() # sendApdu() - getCommandApdu() } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.commands { class PsoVerifyDigitalSignatureCommand { {static} - CLA : int {static} - INS : int {static} - technicalResponseApdus : Map<Integer, ResponseStatus> + getTechnicalResponseApdus() + PsoVerifyDigitalSignatureCommand() - computeSignatureTemplateDo() } } } AbstractHealthCardCommand -up-|> IHealthCardCommand PsoVerifyDigitalSignatureCommand -up-|> AbstractHealthCardCommand @enduml
393c0c9e0724f2d5fe32bfd5f535b0188985eac5
3630b0717f619c7e36da9e63eab9d62e2d23fb94
/UML/TemplateLevel.puml
9b543cf490a12aa9af1ec3196e5acabb97911938
[]
no_license
RoelStierum/Gameproject
cccadb089fd48ab68b0445ff3b36413c3e745363
0e85786f11d722507c2f4c52ef6e0ab3ac821bd9
refs/heads/master
2023-02-22T01:01:58.857881
2021-01-31T12:26:41
2021-01-31T12:26:41
322,389,134
0
0
null
2021-01-28T15:07:31
2020-12-17T19:13:32
C++
UTF-8
PlantUML
false
false
904
puml
@startuml skinparam class{ BorderColor black BackgroundColor #a3a3a3 } class TemplateLevel{ +float gravity = 1500; //25.0f; +sf::Vector2f start = {100,-200}; -GameDataRef _data; -sf::Sprite _background; -sf::View CameraPosition; -float cameraX, cameraY = 0; -Platform platforms = {_data}; -sf::Sprite flag; -sf::Clock clockFinish; -bool finished = false; -Character character; -sf::Sprite pauseButton; -sf::Clock levelTime; -sf::Text levelTimeText; -float tijd = 0; -int levelNumber = 0; +TemplateLevel(GameDataRef data); +void Init() override; +void HandleInput() override; +void Update(float dt) override; +void Draw(float dt) override; +void Pause() override; +void Resume() override; +void restart(); -void characterEdgeOfScreen(const Character& character_, const float& dt); } @enduml
96f48cb76219728b401f318efccaf1457407f98a
1f5a6d8f6827e4add92c2154e20310793d32f549
/OOP教育訓練計畫/12/04.Builder/diagrams/建造者模式(GoF).puml
ca2bd42f23afa849eb907d69b444af30fbae6a73
[]
no_license
YenCheChangGoogle/YccSenaoOOP
8e9c2b02ded12b64e5e7a7d26faed0f593ee0fce
79e025ace78e966d07a59b8896c68040fe74ab86
refs/heads/master
2021-09-06T16:44:44.578700
2018-02-08T16:35:22
2018-02-08T16:35:22
107,415,206
0
0
null
null
null
null
UTF-8
PlantUML
false
false
851
puml
@startuml scale 800*800 skinparam defaultFontName "Noto Sans CJK TC Regular" class Director{ +Construct() } interface Builder{ +BuildPart() } class ConcreteBuilder{ +BuildPart() +GetResult() } class Product{ } Director o-right-> Builder : -builder Builder <|-down- ConcreteBuilder ConcreteBuilder .right.> Product note as DirectorNote <color:blue>指揮者</color> 根據用戶的需求建構 Product 物件 end note note as ConcreteBuilderNote <color:blue>具體建造者</color> 實現 Builder 介面,建構組裝各個零件 end note note as BuilderNote <color:blue>抽象介面</color> 建立 Product 物件的各個零件的抽象介面 end note note as ProductNote 具體產品 end note DirectorNote .up. Director ConcreteBuilderNote .up. ConcreteBuilder BuilderNote .left Builder ProductNote .up Product @enduml
41d8b08c36fd0f751dd0eb71275a963af5c9183e
912d65be9bbd436a671d948abe8dadf356eb5216
/src/main/java/com/twdt/netty/zerocopy/zerocopy.plantuml
ed54f2a05d2b33c8be9a2d43ba784ce35ef9683f
[]
no_license
ljhpole/netty-lecture
02318e9992f488f03425c93b981e8718582b1b4b
a20bef9e6db5d1061a6f37ec0593087588ea1a0a
refs/heads/main
2023-02-24T21:52:42.964037
2021-01-31T15:35:18
2021-01-31T15:35:18
334,686,240
0
1
null
2021-01-31T15:35:19
2021-01-31T15:19:40
null
UTF-8
PlantUML
false
false
860
plantuml
@startuml title __ZEROCOPY's Class Diagram__\n namespace com.twdt.netty { namespace zerocopy { class com.twdt.netty.zerocopy.NewIOClient { {static} + main() } } } namespace com.twdt.netty { namespace zerocopy { class com.twdt.netty.zerocopy.NioServer { {static} + main() } } } namespace com.twdt.netty { namespace zerocopy { class com.twdt.netty.zerocopy.OldIoClient { {static} + main() } } } namespace com.twdt.netty { namespace zerocopy { class com.twdt.netty.zerocopy.OldServer { {static} + main() } } } right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
306a8e6aa11b2779b7a8c26914ecdfcd6e26f172
844665d08d1be5dacc41d8495725d881c68dba71
/Conferencias/Conferencia 4_ Patrones de Diseño de Comportamiento/PrincipleAndPatternDesign/src/cu/datys/patterns/gof/structural/bridge/class-diagram.puml
bbd491c3894f5a07a97cfb3d24d80e9644077d27
[ "MIT" ]
permissive
alexescalonafernandez/curso-patrones-diseno
ec1cf0a993707d78c294208e04604a3a0ffd164e
f586e27791e1281087df6cc137da87f407179e65
refs/heads/master
2021-01-25T13:35:26.659206
2018-03-02T20:18:06
2018-03-02T20:18:06
123,588,331
0
0
null
null
null
null
UTF-8
PlantUML
false
false
709
puml
@startuml skinparam backgroundcolor transparent skinparam classFontSize 18 skinparam noteFontSize 18 skinparam arrowFontSize 18 skinparam classAttributeFontSize 18 skinparam titleFontColor #5cb85c Title Bridge Pattern class Abstraction{ - Implementor implementor + void operation() } interface Implementor{ + void operationImpl() } class ConcreteImplementorA implements Implementor{ + void operationImpl() } class ConcreteImplementorB implements Implementor{ + void operationImpl() } class RefinedAbstraction extends Abstraction class Client Client --> Abstraction Abstraction o-- Implementor note left of Abstraction::operation implementor.operationImpl() end note @enduml
2d89e659ee732678ba62d8610fdbca4430cfa706
694fd70b693c9670161b2492ece407123bf11cad
/plantuml/designpattern/concept-state-1.plantuml
6a3a10812428999be01ea5f6c91c9d850a87473a
[ "CC-BY-3.0-US", "BSD-3-Clause", "WTFPL", "GPL-1.0-or-later", "MIT", "OFL-1.1" ]
permissive
windowforsun/blog
4a341a9780b8454a9449c177f189ca304569031b
b0bce013f060f04a42dfa7ef385dbeea1644fdab
refs/heads/master
2023-09-04T03:17:39.674741
2023-08-21T14:39:37
2023-08-21T14:39:37
170,632,539
0
1
MIT
2023-09-05T17:48:27
2019-02-14T05:26:51
HTML
UTF-8
PlantUML
false
false
369
plantuml
@startuml class Context { state requestX() requestY() requestZ() } abstract class State { {abstract} methodA() {abstract} methodB() {abstract} methodC() } class ConcreteState1 { methodA() methodB() methodC() } class ConcreteState2 { methodA() methodB() methodC() } State <-right-o Context State <|-- ConcreteState1 State <|-- ConcreteState2 @enduml
7e71209cd5d65a951148db2fcef5a6b7466c24c0
112e511928937b8ec60004ca94f1dd996bd9fd1a
/Documents/Shos.Chatter.Server/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.puml
1356ab7c4f24563bc716c6f39bb805cdc67aea56
[ "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
104
puml
@startuml class SimpleTypeModelDescription { } ModelDescription <|-- SimpleTypeModelDescription @enduml
62f8da3c79b90b4c2d134c60997627fdc4e1b518
22d04c6c48741d578b62d4b83552a8a90f8ec199
/docs/_book/plantuml/DriversSpecificationModel.puml
847fb522aa6f945b5d33c93f55f6fb2ba589dc5c
[ "MIT" ]
permissive
RobinJespersen/BEMOnt
54d63846d3644ebbcd46f527207396b5af77ff58
1a7619ce8c8a1ee8d5b612697cd553ca0eb29f4d
refs/heads/master
2023-07-14T04:16:26.887385
2021-08-31T09:56:29
2021-08-31T09:56:29
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,377
puml
@startuml scale 0.6 skinparam class { ArrowColor DarkBlue ArrowFontColor DarkBlue BackgroundColor LightBlue BorderColor DarkGrey } skinparam dpi 300 skinparam stereotypeCBackgroundColor Wheat skinparam classAttributeFontColor Green class Driver <<HIT2GAP>>{ } class BehaviourModel <<HIT2GAP>>{ } class ActivityModel <<HIT2GAP>>{ } class EventModel <<HIT2GAP>>{ } class EquipmentModel <<HIT2GAP>>{ } class TimeBehaviour <<HIT2GAP>>{ } class Season <<HIT2GAP>>{ } class Winter <<(I,orchid) HIT2GAP>>{ } class Spring <<(I,orchid) HIT2GAP>>{ } class Summer <<(I,orchid) HIT2GAP>>{ } class Autumn <<(I,orchid) HIT2GAP>>{ } class DayOfWeek <<Time>>{ } class OccupantBehaviour<<HIT2GAP>>{ } class EnvironmentalBuildingFactors <<HIT2GAP>>{ } class Instant <<Time>>{ } class DateTimeInterval <<Time>>{ } Driver <|-- BehaviourModel Driver <|-- ActivityModel Driver <|-- EventModel Driver <|-- EquipmentModel EventModel --> Event: hit2gap_isBasedOn EquipmentModel --> EnvironmentalBuildingFactors: hit2gap_isBasedOn BehaviourModel --> TimeBehaviour: hit2gap_isBasedOn BehaviourModel --> OccupantBehaviour:hit2gap_isBasedOn TimeBehaviour <|-- Season TimeBehaviour <|-- Instant TimeBehaviour <|-- DayOfWeek TimeBehaviour <|-- DateTimeInterval Season ..[#orchid] Winter Season..[#orchid] Summer Season..[#orchid] Spring Season..[#orchid] Autumn @enduml
a367ce54838c4526bc52be1683a857fa2a0e0026
e1f8ff503239d957b376e7d5936e3039e84b6014
/design-pattern/src/main/java/dp_Adaptor/Adaptor2.puml
d7d0b3133bc01e8ce4152456ef30af397367b80f
[ "MIT" ]
permissive
archmagece/study-one
e6dccc9f3a1f0eac4dbc2921e69e689402abbad9
836583987dfc97a95b7b4215f0be5a0f48b74e81
refs/heads/master
2022-08-01T21:20:22.196645
2022-07-17T08:33:37
2022-07-17T08:33:37
79,985,648
0
0
null
null
null
null
UTF-8
PlantUML
false
false
509
puml
@startuml class Client{ +adaptor : Adaptor +doWork() } interface Adaptor{ + methodA() : ?? } class AdaptorNImpl{ - adaptee: AdapteeN + methodA() : ?? } class Adaptee1{ + method1() : ?? } class Adaptee2{ + method2() : ?? } class Adaptee3{ + method3() : ?? } class AdapteeN{ + methodN() : ?? } Client --> Adaptor : uses Adaptor <|- AdaptorNImpl : implements AdaptorNImpl o--> Adaptee1 : has AdaptorNImpl o--> Adaptee2 : has AdaptorNImpl o--> Adaptee3 : has AdaptorNImpl o--> AdapteeN : has @enduml
288db88035dca1a2a24b2554f269ad82ac8bccad
9623791303908fef9f52edc019691abebad9e719
/src/cn/shui/order/_4sum/_4sum.plantuml
55165bf975426a7168ca722139ae9e3a89696ad9
[]
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
419
plantuml
@startuml title ___4SUM's Class Diagram__\n namespace cn.shui.order { namespace _4sum { class cn.shui.order._4sum.Solution { {static} + main() {static} - fourSum() } } } 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
198d629518758383f2349fdee722b828a6e8f0fc
319488df94b7f979aaa11c71088151b868a4bd8a
/demoOCPChocolateManager/src/main/java/com/example/ocp/demoocpchocolatemanager/machine/machine.plantuml
9ca55b3813117a6e284a1a4f7c8f474fe633ee97
[]
no_license
ccabrejo20/SOLIDDemos
0864ad080a1f35f492845d1cc78ad80b0583075e
8dbb918f710f62d520eda00146a0b1d54a02b244
refs/heads/master
2022-12-07T02:28:40.710654
2020-08-08T03:47:56
2020-08-08T03:47:56
285,679,469
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,368
plantuml
@startuml title __MACHINE's Class Diagram__\n namespace om.example.ocp.demoocpchocolatemanager { namespace machine { class com.example.ocp.demoocpchocolatemanager.machine.BasicChocolateMachine { + brewChocolate() + brewMilkChocolate() + brewWhiteChocolate() } } } namespace om.example.ocp.demoocpchocolatemanager { namespace machine { interface com.example.ocp.demoocpchocolatemanager.machine.ChocolateMachine { {abstract} + brewChocolate() } } } namespace om.example.ocp.demoocpchocolatemanager { namespace machine { class com.example.ocp.demoocpchocolatemanager.machine.PremiumChocolateMachine { + brewChocolate() + brewCocoaChocolate() + brewDarkChocolate() } } } com.example.ocp.demoocpchocolatemanager.machine.BasicChocolateMachine .up.|> com.example.ocp.demoocpchocolatemanager.machine.ChocolateMachine com.example.ocp.demoocpchocolatemanager.machine.PremiumChocolateMachine .up.|> com.example.ocp.demoocpchocolatemanager.machine.ChocolateMachine 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
e2b47fe3096bca525ba50c7c1e1a97caa301c346
7c9c99bafade425ad633713ebd903cf23c05219f
/android/frontsample/app/src/main/java/com/example/front_sample/types/types.plantuml
9750736ecfa8792381d2a2c18ed05cb5e4170f33
[]
no_license
mohsenfayyaz/realtime-propeller-led-display
30cbef09b8507c5f1cbfd0888dfa550e65c2e13d
e237f529100758e1bfc0bacc88ecf9114c8ce07d
refs/heads/master
2022-12-06T03:12:44.308116
2020-07-15T07:34:11
2020-07-15T07:34:11
284,713,780
0
0
null
null
null
null
UTF-8
PlantUML
false
false
381
plantuml
@startuml title __TYPES's Class Diagram__\n namespace com.example.front_sample { namespace types { enum FrameType { PICTURE VIDEO } } } 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
9cd7b427f2cf6af65f734b1cd71368f473b43a3b
3150c7ff97d773754f72dabc513854e2d4edbf04
/P2/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test/java/spec/concordion/common/extension/extension.plantuml
67d213c058ecc72c0da25e0834dad96634df0ed8
[ "Apache-2.0", "WTFPL" ]
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
3,793
plantuml
@startuml title __EXTENSION's Class Diagram__\n package spec.concordion { package spec.concordion.common.extension { abstract class AbstractExtensionTestCase { - eventList : List<String> - testRig : TestRig - processingResult : ProcessingResult - extension : ConcordionExtension - helper : ScopedObjectHolder<ExtensionTestHelper> + processAnything() + process() # configureTestRig() + getLogStream() + getEventLog() + isAvailable() # getProcessingResult() # setExtension() } } } package spec.concordion { package spec.concordion.common.extension { class CSSExtensionTest { {static} + SOURCE_PATH : String {static} + TEST_CSS : String + addLinkedCSSExtension() + addEmbeddedCSSExtension() # configureTestRig() + hasCSSDeclaration() + hasEmbeddedTestCSS() } } } package spec.concordion { package spec.concordion.common.extension { class CustomCommandTest { + addCommandExtension() + getOutput() } } } package spec.concordion { package spec.concordion.common.extension { class ExtensionConfigurationTest { - compiler : JavaSourceCompiler {static} - CLASS_NAME_PATTERN : Pattern + clearConcordionExtensionsSystemProperty() + process() + process() + process() - process() - compile() - getClassName() + setSystemProperty() } } } package spec.concordion { package spec.concordion.common.extension { class ExtensionTest { } } } package spec.concordion { package spec.concordion.common.extension { class ExtensionTestHelper { - logStream : PrintStream - baos : ByteArrayOutputStream + ExtensionTestHelper() + getLogStream() + getBaos() } } } package spec.concordion { package spec.concordion.common.extension { class FileSuffixExtensionsTest { + hasBeenProcessed() } } } package spec.concordion { package spec.concordion.common.extension { class FileTargetWithSuffix { {static} - PROPERTY_OUTPUT_DIR : String - suffix : String - target : FileTarget + FileTargetWithSuffix() - getBaseOutputDir() + write() + copyTo() + getOutputStream() + delete() + exists() + resolvedPathFor() - rename() } } } package spec.concordion { package spec.concordion.common.extension { class JavaScriptExtensionTest { {static} + SOURCE_PATH : String {static} + TEST_JS : String + addLinkedJavaScriptExtension() + addEmbeddedJavaScriptExtension() # configureTestRig() + hasJavaScriptDeclaration() + hasEmbeddedTestJavaScript() } } } package spec.concordion { package spec.concordion.common.extension { class ResourceExtensionTest { + addResourceExtension() + addDynamicResourceExtension() # configureTestRig() } } } package spec.concordion { package spec.concordion.common.extension { class XhtmlExtension { + addTo() } } } FileTargetWithSuffix -up-|> Target XhtmlExtension -up-|> ConcordionExtension 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
6dcefc04f36d9dda618f64de93a338ef0d48c2c7
23eebc652cc34d63a61ab645cccb3e0d12192028
/documentation/logicalview/analysisview/repository/classanalysis/puml/models/Session.puml
d098b84c5de3f703bdcf3b3febb1d3c9715db244
[]
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
203
puml
@startuml class Session { +setMechanic(mechanic) +invalidateSession() +getMechanic() } DashboardView --> Session SignInView --> Session InterventionsView --> Session MenuView -> Session @enduml
7213f4829be512cf5a92ed8f40d5f28d76f9c344
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/Util/FileSystemUtil.puml
22ca771030bbd3c997bf98ab53207005a4f0afa8
[]
no_license
TakanoVineYard/AMHH
215a7c47049df08c5635b501e74f85137b9e985b
68887a313587a2934fb4ceb2994cbc2a2191d6a3
refs/heads/master
2023-01-13T02:08:02.787083
2020-11-17T14:51:57
2020-11-17T14:51:57
303,631,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
228
puml
@startuml class FileSystemUtil <<static>> { + {static} GetFinalPathName(path:string) : string + {static} FileNameWithoutExtension(path:string) : string + {static} EditorPathExists(editorPath:string) : bool } @enduml
fbb29a3a1c3031a2b19d0f4641974675c53af4b7
29e499c7049d725de515d0f0294f765b6bbb4dc3
/DesignPattern/src/com/ilike/strategy/Old.puml
15dc3eeb40e73e76e620a6d9f5dfb23823aefa1a
[]
no_license
dongyuancaizi/designPatternLearning
70dddd9d156fd3d4e9c07bb4f94f76820b625308
1fbde529b073b9a205bffd90607574754d6aac50
refs/heads/master
2020-07-04T05:13:23.384529
2019-11-19T13:09:10
2019-11-19T13:09:10
202,167,833
0
0
null
null
null
null
UTF-8
PlantUML
false
false
148
puml
@startuml abstract class Duck{ void quack(); void swim(); void fly(); } Duck <|-- WildDuck Duck <|-- PekingDuck Duck <|-- ToyDuck @enduml
d9fd564d6a517c8dced8fd89279401a754995bb4
8e35269d128fd6655d52ad1a378dce669ae7de3c
/diag.puml
7b0f863b579d25a221a4acda5c6ba025ac71855d
[ "MIT" ]
permissive
seblaz/DungeonCards
7928b572eec6efffc85db97b8007833c68f47c41
d1b99a6ac9961e234a302c451ddc2be3e56ac3cc
refs/heads/master
2023-07-29T19:19:00.737860
2021-09-05T18:03:58
2021-09-05T18:03:58
379,449,241
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,805
puml
@startuml class edu.fiuba.algo3.Main { + {static} void main(String[]) } class edu.fiuba.algo3.vista.VistaCarta { - Carta carta + Carta carta() } class edu.fiuba.algo3.modelo.Observable { - List<Observador> observadores + void agregarObservador(Observador) + void notificar() } class edu.fiuba.algo3.vista.escenas.GameScene { } class edu.fiuba.algo3.vista.VistaTablero { - Pane root - Tablero tablero - Heroe heroe + void actualizar() - List<Node> vistasCartas() - void transiciones() - Transition transicionCartaDestruida(Node) - Transition transicionCartaMovida(VistaCarta,Vector) - void dibujar() } class edu.fiuba.algo3.modelo.Vector { - int x - int y + int x() + int y() + Vector restar(Vector) + boolean equals(Object) + int hashCode() + Vector sumar(Vector) + Vector multiplicar(int) } class edu.fiuba.algo3.modelo.CartaNoEncontrada { } class edu.fiuba.algo3.App { + void start(Stage) + {static} void main(String[]) } interface edu.fiuba.algo3.modelo.Carta { ~ boolean activar(Heroe) ~ void recibirDanio(int) ~ boolean activa() } class edu.fiuba.algo3.controlador.Test { } class edu.fiuba.algo3.vista.VistaHeroe { - Pane root - Heroe heroe + void actualizar() } class edu.fiuba.algo3.modelo.CartasInvalidas { } class edu.fiuba.algo3.modelo.Tablero { - {static} int DIMENSION - GeneradorDeCartas generadorDeCartas - Carta[][] cartas - void validarCartas(Carta[][]) + int dimension() + Carta obtener(Vector) - boolean dentroDeLimites(Vector) - void validarLimites(Vector) - void asignar(Carta,Vector) + Vector posicion(Carta) + Carta obtenerAdyacente(Carta,Direccion) + void activar(Heroe,Carta) - void reemplazarCartaDestruida(Heroe,Carta) - void moverHeroeDentroDeLimite(Heroe,Carta,Vector,Vector) - void moverHeroeFueraDeLimite(Heroe,Carta,Vector) - Vector posicionOpuesta(Carta,Vector) - void mover(Carta,Vector) - Vector velocidad(Carta,Carta) } interface edu.fiuba.algo3.modelo.IGeneradorRandom { ~ double nuevo() } class edu.fiuba.algo3.vista.Loader { + {static} T load(String) } class edu.fiuba.algo3.vista.VistaEnemigo { - HBox root - Enemigo enemigo + void actualizar() } interface edu.fiuba.algo3.vista.VistaFactory { ~ R vista(T) } class edu.fiuba.algo3.modelo.GeneradorDeCartas { - IGeneradorRandom generadorRandom - int puntosMaximos + Carta nueva() } class edu.fiuba.algo3.vista.FXMLException { } class edu.fiuba.algo3.modelo.GeneradorRandom { - Random random + double nuevo() } class edu.fiuba.algo3.modelo.PosicionFueraDeLimites { } class edu.fiuba.algo3.modelo.DungeonCards { - Tablero tablero - Heroe heroe + Tablero tablero() + Heroe heroe() } interface edu.fiuba.algo3.modelo.Observador { ~ void actualizar() } class edu.fiuba.algo3.SystemInfo { + {static} String javaVersion() + {static} String javafxVersion() } class edu.fiuba.algo3.controlador.ControladorCarta { - Carta carta - Tablero tablero - Heroe heroe + void handle(MouseEvent) } class edu.fiuba.algo3.modelo.Heroe { - Salud salud + int puntosDeSalud() + void atacar(Enemigo) + void recibirDanio(int) + boolean activa() + boolean activar(Heroe) } class edu.fiuba.algo3.modelo.Enemigo { - Salud salud + int puntosDeDanio() + int puntosDeSalud() + void recibirDanio(int) + boolean activa() + boolean activar(Heroe) } class edu.fiuba.algo3.modelo.Salud { - int puntos + int puntos() + void disminuir(int) + boolean vivo() } javafx.scene.layout.HBox <|-- edu.fiuba.algo3.vista.VistaCarta javafx.scene.Scene <|-- edu.fiuba.algo3.vista.escenas.GameScene edu.fiuba.algo3.vista.Observador <|.. edu.fiuba.algo3.vista.VistaTablero javafx.scene.layout.HBox <|-- edu.fiuba.algo3.vista.VistaTablero edu.fiuba.algo3.modelo.RuntimeException <|-- edu.fiuba.algo3.modelo.CartaNoEncontrada javafx.application.Application <|-- edu.fiuba.algo3.App edu.fiuba.algo3.modelo.Observador <|.. edu.fiuba.algo3.vista.VistaHeroe javafx.scene.layout.HBox <|-- edu.fiuba.algo3.vista.VistaHeroe edu.fiuba.algo3.modelo.RuntimeException <|-- edu.fiuba.algo3.modelo.CartasInvalidas edu.fiuba.algo3.modelo.Observable <|-- edu.fiuba.algo3.modelo.Tablero javafx.fxml.FXMLLoader <|-- edu.fiuba.algo3.vista.Loader edu.fiuba.algo3.modelo.Observador <|.. edu.fiuba.algo3.vista.VistaEnemigo javafx.scene.layout.HBox <|-- edu.fiuba.algo3.vista.VistaEnemigo edu.fiuba.algo3.vista.RuntimeException <|-- edu.fiuba.algo3.vista.FXMLException edu.fiuba.algo3.modelo.IGeneradorRandom <|.. edu.fiuba.algo3.modelo.GeneradorRandom edu.fiuba.algo3.modelo.RuntimeException <|-- edu.fiuba.algo3.modelo.PosicionFueraDeLimites javafx.event.EventHandler <|.. edu.fiuba.algo3.controlador.ControladorCarta edu.fiuba.algo3.modelo.Carta <|.. edu.fiuba.algo3.modelo.Heroe edu.fiuba.algo3.modelo.Observable <|-- edu.fiuba.algo3.modelo.Heroe edu.fiuba.algo3.modelo.Carta <|.. edu.fiuba.algo3.modelo.Enemigo edu.fiuba.algo3.modelo.Observable <|-- edu.fiuba.algo3.modelo.Enemigo @enduml
45d2695e8d9b87e6d55fccf74db4ea5292d635e6
57515bfad33d5ab1e68cccc924700e88316e19b9
/DiagramaClases/Clases/LineasPresupuesto.puml
0181f1cc143c8cb5ea737ca4b355b8a31e2b7a4e
[]
no_license
NicolasBachs/DocumentacionZMGestion
0e42009bf3bbf4d244e85a8545997c880f233074
a099ddb44b8911b8428b9c4bdc2f9156c480af47
refs/heads/master
2023-01-27T17:57:29.235074
2020-12-02T15:35:21
2020-12-02T15:35:21
232,633,959
1
0
null
2020-01-08T18:44:12
2020-01-08T18:44:11
null
UTF-8
PlantUML
false
false
97
puml
@startuml LineasPresupuesto hide circle class LineasPresupuesto{ idPresupuesto: int } @enduml
6b7c021ee4a45de9b6681a90ff18a43bcb64ab04
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/CustomerSetDefaultBillingAddressAction.puml
147b0805c5ecd96145be89e4764fec76dd298b46
[]
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
499
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 CustomerSetDefaultBillingAddressAction [[CustomerSetDefaultBillingAddressAction.svg]] extends CustomerUpdateAction { action: String addressId: String addressKey: String } interface CustomerUpdateAction [[CustomerUpdateAction.svg]] { action: String } @enduml
d65df78bda556429c9e82be4393dda6ea5dc213b
a74945d6494ec78aafb35432a78560b03887e18a
/doc/class_multisensor.iuml
339f54c61182f7d78d2a97cdffc10194935bbe75
[]
no_license
AU-PRO5-Rem/ReMoniProject
cff1e938f76aade431428a0ba7352e6ee437cfb9
cc0ceb1e0ea169ea81690760a6d4d711872d149e
refs/heads/master
2023-01-20T08:18:49.365239
2020-11-30T13:26:07
2020-11-30T13:26:07
303,242,692
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,076
iuml
@startuml cd Multisensor abstract class IZStick { {abstract} network_is_awake() : bool {abstract} scan_for_nodes() : void {abstract} get_multisensor_node_ids() : list } abstract class ISensor { {abstract} network_is_awake() : bool {abstract} is_awake() : bool {abstract} get_values() : void {abstract} update_configuration() : int } abstract class IGateway { {abstract} write_values_to_file() : bool {abstract} read_configuration_from_file() : bool } class ZStick implements IZStick { + options : ZWaveOption obj + network : ZWaveNetwork obj + sensor_list : list + logging : logging obj ZStick(z_stick_path) + network_is_awake() : bool + scan_for_nodes() : void + get_multisensor_node_ids() : list } class Gateway implements IGateway { Gateway(node_id) + conf_filename : String + conf_params : dict - _val_filepath : String - _vals_filename : String + write_values_to_file(dict values) : bool + read_configuration_from_file() : bool - _set_path_to_data() : void } package Kernel { class object<< System >> } class Multisensor { - _sensor : Sensor obj - _gateway : Gateway obj + sensor_values : dict + configurations : dict Multisensor(ISensor, IGateway) + is_awake() : bool + get_values() : void + update_configuration() : int + write_values_to_file() : bool + read_configuration() : bool } class OZWMultisensor implements ISensor { - _network : ZWaveNetwork obj - _zwnode : ZWaveNode obj - _node_id : int OZWMultisensor(node_id, ZWaveNetwork_obj) + ZWaveNode(_node_id, _network) : ZWaveNode obj + network_is_ready() : bool + is_awake() : bool + get_values() : dict + update_configuration() : int - _make_timestamp() : String(ISO8601) - _add_timestamp(dict values) : dict } package OpenZWave <<Folder>> { class ZWaveNode class ZWaveNetwork class ZWaveOption } Multisensor <|-- ZStick Multisensor ..> ISensor Multisensor ..> IGateway OZWMultisensor <|-- ZWaveNode ZStick <|-- ZWaveNetwork ZStick <|-- ZWaveOption OZWMultisensor <|-- ZStick Gateway <|-- Kernel : Use @enduml
bb2222b2c7974be88a45b4f5dc9d89319af6dd97
d2c96f969cd4a57d2fef25280205e11be26a64b4
/de.gematik.ti.utils/doc/plantuml/TIUTILS/tuple.plantuml
7fd5d1733d0226ca669d319fc2495aa6d392645e
[ "Apache-2.0" ]
permissive
gematik/ref-Ti-Utils
cfe9a03769e801529bf652528828083f0cc767b1
be995beba79613c5242be9c5388952c7816782e5
refs/heads/master
2022-01-15T08:47:41.366276
2022-01-07T07:23:43
2022-01-07T07:23:43
232,986,325
1
0
null
null
null
null
UTF-8
PlantUML
false
false
324
plantuml
@startuml namespace de.gematik.ti.utils.tuple { class de.gematik.ti.utils.tuple.Pair { + Pair() + equals() + hashCode() + toString() } } de.gematik.ti.utils.tuple.Pair o-- L : left de.gematik.ti.utils.tuple.Pair o-- R : right @enduml
8c691d3355fd2e79cca7e6f5af3131a9822e53d2
55bece5af06037849166e0b8a0867c3cefa3f9d1
/diagClassItell.puml
a2a0c20737368fc8c62a4b84940af776b2831e3b
[ "Apache-2.0" ]
permissive
yachakou/coaching-muscu
7a46c96792f204097176e42216b559b0167b323a
e64280ad299a2e319ef92640e1c3fc83c416b4ae
refs/heads/master
2021-01-19T00:46:49.923564
2016-08-07T21:27:50
2016-08-07T21:27:50
65,154,832
0
1
null
null
null
null
UTF-8
PlantUML
false
false
2,318
puml
@startuml class Utilisateur{ -plans : List<PlanEntrainement> -nom : String -prenom : String -mail : String -login : String -mot de passe : String -sexe : Sexe -date de naissance : Date -taille : float -poids : float -sommeil : int -poidsObjectif : float +Utilisateur(String,String,String,Sexe,String,int,float) +getPoids() : float +setPoids(float) +getSommeil() : int +setSommeil(int) : +getPoidsObjectif() : float +setPoidsObjectif(float) +getNom() : String +getPrenom() : String +getMail() : String +getMotDePasse() : String +setMotDepasse(String) +getSexe() : Sexe +getDateDeNaissance() : Date +getTaille() : float +affichePlanEntrainement() +afficheStatistiques() +ajouterExercice(String,Strin,int) +creerProgramme(String,int) +entrerDonneesSceance() +genererExercice() +exerciceAcepte(AbstractExercice) +exerciceRefuse(AbstractExercice) +modifierDonneesUtilisateur() +supprimerProfil() +supprimerExercice(AbstractExercice) } class PlanEntrainement { -difficulte : float -duree : Date -exercices : List<AbstractExercice> +getDifficulte() : float +setDifficulte(float) +getDuree() : Date +setDuree(Date) +addExercice(String,String,int) +addExerciceGenere(AbstractExercice) +removeExercice(AbstractExercice) } class Authentification { {static} url : String {static} login : String {static} passeword : String {static} cx : Connection +Authentification() +Connection() } abstract class AbstractExercices { -titre : String -description : String -duree : int +AbstractExercices (String,String,int) +getTitre() : String +setTitre(String) +getDesc() : String +setDesc(String) +getDuree() : int } enum Sexe{ HOMME FEMME } class Aerobis{ -distance : float +Aerobis(String,String,int) +getDistance() : float } class Anaerobis{ -repetition : int +Anaerobis(String,String,int) +getRepetition() : int } interface Iservice { +affichePlanEntrainement() +afficheStatistiques() +ajouterExercice(String,Strin,int) +creerProgramme(String,int) +entrerDonneesSceance() +genererExercice() +exerciceAcepte(AbstractExercice) +exerciceRefuse(AbstractExercice) +modifierDonneesUtilisateur() +supprimerProfil() +supprimerExercice(AbstractExercice) } Iservice <|-- Utilisateur AbstractExercices <|-- Aerobis AbstractExercices <|-- Anaerobis Utilisateur o-- PlanEntrainement PlanEntrainement o-- AbstractExercices @enduml
a0b2d28b66bef06bea79c6e65fa388ec48bbd528
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/MyShoppingListUpdate.puml
cac76f1b1e3d8f02fcdefcb85f13424d0f6293a2
[]
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
387
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 MyShoppingListUpdate [[MyShoppingListUpdate.svg]] { version: Long actions: [[MyShoppingListUpdateAction.svg List<MyShoppingListUpdateAction>]] } @enduml
960af2e84105c03e68fae35e95c69139d86e8971
3150c7ff97d773754f72dabc513854e2d4edbf04
/P2/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test/java/spec/concordion/common/command/set/set.plantuml
8c0a70ab4ba5309953f4c29629646580a5ef6f13
[ "Apache-2.0", "WTFPL" ]
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
539
plantuml
@startuml title __SET's Class Diagram__\n package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.set { class SetTest { - param : String + process() + getParameterPassedIn() + setUpUser() } } } } 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
dc8c86abde6c00a610134a121520ff67a23659c1
6cafe3b81b46ca46350779e4258345dfcf54d040
/src/arcade_shared.puml
92e9cc6868c6bc50544b914aebb77d89efcdf9e2
[]
no_license
DMaskR/Aracde_gitisdown
00ae58e0c142635cf1e030892bf11bc2e23a2fd8
2e2d107aede775042c207bea99feb4afeb2471aa
refs/heads/master
2021-04-21T00:14:41.800962
2020-03-27T09:13:50
2020-03-27T09:13:50
249,728,970
0
0
null
null
null
null
UTF-8
PlantUML
false
false
14,101
puml
@startuml enum LIBTYPE { TEXT, GRAPHIC, DEBUG } namespace ecs { ' using ComponentID = std::size_t ' using GroupID = std::string 'inline ComponentID getNewComponentTypeID() 'template <typename T> inline ComponentID getComponentTypeID() noexcept 'inline GroupID getNewComponentTypeID() 'inline GroupID getComponentTypeID(GroupID groupName) noexcept 'constexpr std::size_t maxComponents = 32 'constexpr std::size_t maxGroups = 64 'using GroupBitset = std::bitset<maxGroups> 'using ComponentBitSet = std::bitset<maxComponents> 'using ComponentArray = std::array<ecs::AComponent*, maxComponents> class Universe { - std::vector<std::reference_wrapper<WorldManager>> _managers + Universe() + ~Universe() + void addWorldManager(WorldManager& world) + void delWorldManager() } class WorldManager { - World& _world - std::vector<std::reference_wrapper<ASystem>> _systems + WorldManager(World& _world) + ~WorldManager() + void addSystem(ASystem& system) + void init() + void update() + void render() } ecs.Universe <-- WorldManager class World { - std::vector<std::shared_ptr<Entity>> _entities - std::map<GroupID, std::vector<Entity*>> _groups + void refresh() + void addToGroup(Entity* entity, GroupID group) + std::vector<Entity*>& getGroup(GroupID group) + template<typename... TArgs> std::vector<Entity*>& getEntities() + Entity& addEntity() } ecs.WorldManager <-- World class Entity { - World& _world - bool _active = true - std::set<std::unique_ptr<AComponent>> _components {} - std::set<GroupID> _groups {} - ComponentBitSet _componentBitSet - ComponentArray _componentArray - GroupBitset _groupBitSet + Entity(World& world) + bool isActive() + void destroy() + template <typename T> bool hasComponent() + template <typename T, typename... TArgs> T& addComponent(TArgs&&... mArgs) + template <typename T> T& getComponent() + bool hasGroup(GroupID groupName) + void addGroup(GroupID groupName) + void delGroup(GroupID groupName) } ecs.World <-- Entity ecs.AComponent <-- Entity abstract AComponent { # Entity *_entity + virtual ~AComponent() = 0 } ecs.Entity <-- AComponent interface IAnimation { + virtual ~IAnimation() = 0 + virtual int frame() const = 0 + virtual int speed() const = 0 + virtual int index() const = 0 } class Vector2d { + int x + int y } namespace component { class Transform { + Vector2d position + Transform() + ~Transform() } ecs.AComponent <|-- Transform class Motion { + Vector2d velocity + Vector2d acceleration + Motion() + ~Motion() } ecs.AComponent <|-- Motion class Size { + int w + int h + Size() + ~Size() } ecs.AComponent <|-- Size class Hitbox { + int w + int h + Hitbox() + ~Hitbox() } ecs.AComponent <|-- Hitbox abstract ARenderable { + virtual ~Renderable() = 0 + virtual void setTexture(std::string name) = 0 + virtual void setAnimation(std::string animationName, ecs::IAnimation animation) = 0 + virtual std::string getCurrentAnimation() = 0 + virtual void useAnimation(std::string animationName) = 0 } ecs.AComponent <|-- ARenderable class Follow { + Entity& followed + Follow(Entity& followed) + ~Follow() } ecs.AComponent <|-- Follow class AI { + AI() + ~AI() } ecs.AComponent <|-- AI class Input { + Input() + ~Input() } ecs.AComponent <|-- Input } abstract ASystem { + virtual ~ASystem() = 0 + virtual void init() = 0 + virtual void update() = 0 + virtual void render() = 0 } ecs.WorldManager <-- ASystem namespace system { ' Checks for collisions (use Transform and Hitbox) class Physics { + Physics() + ~Physics() + void init() override + void update() override + void render() override } ecs.ASystem <|-- Physics ' Allow player to be moved (use Motion and Joystick) abstract APlayer { + APlayer() + ~APlayer() + void init() override + void update() override + void render() override } ecs.ASystem <|-- APlayer ' Moves AI (use Motion and AI) abstract AAI { + AAI() + ~AAI() + void init() override + void update() override + void render() override } ecs.ASystem <|-- AAI ' Allow entity to follow another entity (use Motion and Follow) abstract AFollow { + AFollow() + ~AFollow() + void init() override + void update() override + void render() override } ecs.ASystem <|-- AFollow ' Update velocity and position (use Transform and Motion) class Movement { + Movement() + ~Movement() + void init() override + void update() override + void render() override } ecs.ASystem <|-- Movement ' Draws sprites to the screen (use ARenderable, Size and Transform) abstract AGraphics { + AGraphics() + ~AGraphics() + void init() override + void update() override + void render() override } ecs.ASystem <|-- AGraphics } } namespace graphical { interface IGraphical { + virtual ~IGraphical() = 0 + virtual LIBTYPE getType() = 0 + virtual ecs::component::ARenderable createRenderable(std::vector<std::string> paths, bool isAnimated = false) = 0 + virtual ecs::IAnimation createAnimation(int index, int frame, int speed) = 0 } abstract AGraphical { + AGraphical(LIBTYPE type, Universe& universe) + ~AGraphical() override + LIBTYPE getType() override + ecs::component::ARenderable createRenderable(std::vector<std::string> paths, bool isAnimated = false) override = 0 + ecs::IAnimation createAnimation(int index, int frame, int speed) override = 0 } IGraphical <|-- AGraphical class Animation { + Animation(int index, int frame, int speed) + ~Animation() + int frame() const override + int speed() const override + int index() const override } ecs.IAnimation <|-- Animation namespace sfml { class Graphical { + Graphical(Universe& universe) + ~Graphical() + LIBTYPE getType() override + ecs::component::ARenderable createRenderable(std::vector<std::string> paths, bool isAnimated = false) override + ecs::IAnimation createAnimation(int index, int frame, int speed) override } graphical.AGraphical <|-- Graphical namespace component { class Renderable { + Sprite(std::string name, bool isAnimated = false) + ~Sprite() + void setTexture(std::string name) override + void setAnimation(std::string animationName, ecs::IAnimation animation) override + std::string getCurrentAnimation() override + void useAnimation(std::string animationName) override } ecs.component.ARenderable <|-- Renderable } namespace system { class Graphics { + Graphics() + ~Graphics() + void init() override + void update() override + void render() override } ecs.system.AGraphics <|-- Graphics } } namespace sdl { class Graphical { + Graphical(Universe& universe) + ~Graphical() + LIBTYPE getType() override + ecs::component::ARenderable createRenderable(std::vector<std::string> paths, bool isAnimated = false) override + ecs::IAnimation createAnimation(int index, int frame, int speed) override } graphical.AGraphical <|-- Graphical namespace component { class Renderable { + Sprite(std::string name, bool isAnimated = false) + ~Sprite() + void setTexture(std::string name) override + void setAnimation(std::string animationName, ecs::IAnimation animation) override + std::string getCurrentAnimation() override + void useAnimation(std::string animationName) override } ecs.component.ARenderable <|-- Renderable } namespace system { class Graphics { + Graphics() + ~Graphics() + void init() override + void update() override + void render() override } ecs.system.AGraphics <|-- Graphics } } namespace ncurses { class Graphical { + Graphical(Universe& universe) + ~Graphical() + LIBTYPE getType() override + ecs::component::ARenderable createRenderable(std::vector<std::string> paths, bool isAnimated = false) override + ecs::IAnimation createAnimation(int index, int frame, int speed) override } graphical.AGraphical <|-- Graphical namespace component { class Renderable { + Sprite(std::string name, bool isAnimated = false) + ~Sprite() + void setAnimation(std::string animationName, ecs::IAnimation animation) override + std::string getCurrentAnimation() override + void useAnimation(std::string animationName) override } ecs.component.ARenderable <|-- Renderable } namespace system { class Graphics { + Graphics() + ~Graphics() + void init() override + void update() override + void render() override } ecs.system.AGraphics <|-- Graphics } } } namespace game { interface IGame { + virtual ~IGame() = 0 } abstract AGame { + AGame(Universe& universe, IGraphical& graph) + virtual ~AGame() = 0 } IGame <|-- AGame namespace nibbler { class Game { + Game(Universe& universe, IGraphical& graph) + ~Game() } game.AGame <|-- Game namespace component { } namespace system { class Player { + Player() + ~Player() + void init() override + void update() override + void render() override } ecs.system.APlayer <|-- Player class AI { + AI() + ~AI() + void init() override + void update() override + void render() override } ecs.system.AAI <|-- AI class Follow { + Follow() + ~Follow() + void init() override + void update() override + void render() override } ecs.system.AFollow <|-- Follow } } namespace pacman { class Game { + Game(Universe& universe, IGraphical& graph) + ~Game() } game.AGame <|-- Game namespace component { } namespace system { class Player { + Player() + ~Player() + void init() override + void update() override + void render() override } ecs.system.APlayer <|-- Player class AI { + AI() + ~AI() + void init() override + void update() override + void render() override } ecs.system.AAI <|-- AI class Follow { + Follow() + ~Follow() + void init() override + void update() override + void render() override } ecs.system.AFollow <|-- Follow } } } namespace core { class Core { } } namespace event { class Event { + Event() + ~Event() } class InputEvent { } event.Event <|-- InputEvent class CollisionEvent { } event.Event <|-- CollisionEvent abstract AFunctionHandler { - virtual void call(Event* event) = 0 + void exec(Event* event) } ' template<class T, class EventType> class FunctionHandler { ' typedef void (T::*MemberFunction)(EventType*) + FunctionHandler(T* instance, MemberFunction memberFunction) + void call(Event* event) override } event.AFunctionHandler <|-- FunctionHandler class EventBus { + template<class T, class EventType> void subscribe(T * instance, void (T::*memberFunction)(EventType *)) + template<typename EventType> void publish(EventType* event) } } @enduml
e5f54cb436db8583a8c8730a9eb967d2f29ea415
158a2c4c0d8e6baa04be3a9eec08901f91722415
/docs/design/class_atrace.puml
fae38d25884feab0bb0c082a488c6a36b7c9a2f0
[]
no_license
littlewhywhat/extrace
cb7385e4910e7ad2c911327efb759522591c3a68
eaa97fa57d8b6a173cf7a6ed52c427573bcedc11
refs/heads/master
2021-04-18T21:05:47.688307
2018-05-16T05:22:20
2018-05-17T23:13:57
126,710,382
0
0
null
2018-05-17T23:13:58
2018-03-25T15:15:59
C++
UTF-8
PlantUML
false
false
8,273
puml
@startuml class AtraceMain { - handleSignal(int /*signo*/): void - registerSigHandler(): void + main(int argc, char ** argv): int } hide AtraceMain fields AtraceMain "-toolBox" -- "1" AndroidToolBox AtraceMain "-systemTimeImpl" -- "1" SystemTimeImpl AtraceMain "-fileSystem" -- "1" FileSystemImpl AtraceMain "-kernelSystem" -- "1" KernelSystemImpl AtraceMain "-androidSystem" -- "1" AndroidSystemImpl AtraceMain "-trace" -- "1" TraceImpl AtraceMain "-initSleep" -- "1" SleepAction AtraceMain "-startAction" -- "1" StartAction AtraceMain "-midSleep" -- "1" SleepAction AtraceMain "-streamAction" -- "1" StreamAction AtraceMain "-stopAction" -- "1" StopAction AtraceMain "-dumpAction" -- "1" DumpAction AtraceMain "-cleanUpAction" -- "1" CleanUpAction AtraceMain "-signal_impl" -- "1" Signal class ExtraceApp { - listSupportedCategories() : void - showHelp(const char *cmd): void - setupDependencies(): void - setupAndroidSystemImpl(): void - setupKernelSystemImpl(): void - addAppsToTrace(const char * commaSepApps): void - addFunctionsToTrace(const char * commaSepFuncs): void - addAndroidCategoriesToTrace(const char * commaSepCats): void - addCoreServicesToTrace(): bool - addKernelCategoriesFromFileToTrace(const char * filename): bool } interface Action { + {abstract} bool tryRun() } hide Action fields interface ActionRunner { + {abstract} bool tryRunActions() } hide ActionRunner fields ActionRunner --> "0..*" Action: runs class ActionRunnerImpl { + addAction(Action * action) } hide ActionRunnerImpl fields ActionRunnerImpl ..> ActionRunner ActionRunnerImpl "-m_Actions" -- "0..*" Action class CleanUpAction { - m_ErrorStream: FILE * } hide CleanUpAction methods CleanUpAction ..> Action CleanUpAction "-m_Trace" -- "1" Trace class DumpAction { - m_ErrorStream: FILE * - m_OutputStream: FILE * - m_Compress: bool - m_OutputFile: string -- + enableCompression(): void } DumpAction ..> Action DumpAction "-m_KernelSystem" -- "1" KernelSystem class SleepAction { - m_ErrorStream: FILE * - m_DurationSeconds: uint32_t } hide SleepAction methods SleepAction ..> Action SleepAction "-m_Signal" -- "1" Signal class StartAction { - m_ErrorStream: FILE * - m_OutputStream: FILE * } hide StartAction methods StartAction ..> Action StartAction "-m_Trace" -- "1" Trace StartAction "-m_KernelSystem" -- "1" KernelSystem class StopAction { - m_ErrorStream: FILE * } hide StopAction methods StopAction ..> Action StopAction "-m_Trace" -- "1" Trace class StreamAction { - m_ErrorStream: FILE * - m_OutputStream: FILE * } hide StreamAction methods StreamAction ..> Action StreamAction "-m_Signal" -- "1" Signal StreamAction "-m_KernelSystem" -- "1" KernelSystem class Signal { - m_Fired: bool -- + fire() + fired() bool } interface Trace { - setUp(): bool - cleanUp(): void - start(): bool - stop(): void } hide Trace fields class TraceImpl { - m_TraceOverwrite : bool - m_TraceBufferSizeKB : uint32_t - m_KernelCategories: vector<string> - m_AndroidCategories: vector<string> - m_Functions: vector<string> - m_Apps: vector<string> - m_ErrorStream: FILE * + add_android_category(const char * id): void + add_kernel_category(const char * id): void + addApp(const char * appname): void + addFunction(const char * function): void + enable_trace_overwrite(): void } TraceImpl ..> Trace TraceImpl "-androidsystem" -->"1" AndroidSystem TraceImpl "-kernelsystem" -->"1" KernelSystem interface KernelSystem { + {abstract} writeClockSyncMarker(): bool + {abstract} setTraceOverwriteEnable(bool enable): bool + {abstract} setTracingEnabled(bool enable): bool + {abstract} compress_trace_to(int traceFD, int outFd): void + {abstract} clearTrace(): bool + {abstract} getTracePipeFd(): int + {abstract} getTraceFd(): int + {abstract} try_openToWriteOrCreate(const char * filename): int + {abstract} try_sendfile(int fd_from, int fd_to): bool + {abstract} try_send(int fd_from, int fd_to): bool + {abstract} setTraceBufferSizeKB(int size): bool + {abstract} setGlobalClockEnable(bool enable): bool + {abstract} setPrintTgidEnableIfPresent(bool enable): bool + {abstract} setKernelTraceFuncs(const vector<string> & funcs): bool + {abstract} isCategorySupported(const TracingCategory& category): bool + {abstract} disableKernelTraceEvents(): bool + {abstract} enableKernelTraceEvents(const vector<string> & ids): bool + {abstract} getCategories() const: const vector<TracingCategory> & } hide KernelSystem fields interface AndroidSystem { + {abstract} has_core_services() const: bool + {abstract} getCategories() const: const std::vector<TracingCategory> & + {abstract} tryEnableCategories(std::vector<std::string> categories): bool + {abstract} disableAllCategories(): void + {abstract} property_get_core_service_names(std::string & content) const: void + {abstract} setAppCmdlineProperty(const vector<string> & apps): bool + {abstract} pokeBinderServices(): bool + {abstract} clearAppProperties(): void + {abstract} log_dumping_trace(): void } hide AndroidSystem fields interface SystemTime { + {abstract} get_monotonic() const: float + {abstract} get_realtime() const: int64_t } hide SystemTime fields class TracingCategory { + name: const char * + longname: const char * + tags: uint64_t + is_enabled: bool } hide TracingCategory methods TracingCategory "-files" --> "1..*" EnableFile class EnableFile { + path: const char * + is_required: bool } hide EnableFile methods class KernelSystemImpl { - errstream: FILE - k_traceClockPath: const char * - k_traceBufferSizePath: const char * - k_tracingOverwriteEnablePath: const char * - k_currentTracerPath: const char * - k_printTgidPath: const char * - k_funcgraphAbsTimePath: const char * - k_funcgraphCpuPath: const char * - k_funcgraphProcPath: const char * - k_funcgraphFlatPath: const char * - k_ftraceFilterPath: const char * - k_tracingOnPath: const char * - k_tracePath: const char * - k_traceStreamPath: const char * - k_traceMarkerPath: const char * -- + add_kernel_category(const char * id, const char * name, const std::vector<EnableFile> &sysfiles): void - setKernelOptionEnable(const char* filename, bool enable): bool - isPossibleSetKernelOption(const char * filename): bool - isCategorySupportedForRoot(const TracingCategory& category): bool - isTraceClock(const char * mode): bool - verifyKernelTraceFuncs(const vector<string> & funcs): bool - writeMarker(const char * buffer): bool } KernelSystemImpl ..> KernelSystem KernelSystemImpl "-file_system" --> "1" FileSystem KernelSystemImpl "-toolbox" --> "1" ToolBox KernelSystemImpl "-systime" *-->"1" SystemTime KernelSystemImpl "-m_Categories " -->"0..*" TracingCategory interface FileSystem { + {abstract} fileExists(const char* filename): bool + {abstract} fileIsWritable(const char* filename): bool + {abstract} truncateFile(const char* path): bool + {abstract} writeStr(const char* filename, const char* str): bool + {abstract} appendStr(const char* filename, const char* str): bool } hide FileSystem fields class FileSystemImpl { - errstream: FILE -- - _writeStr(const char* filename, const char* str, int flags): bool } FileSystemImpl ..> FileSystem class AndroidSystemImpl { - errstream: FILE - k_traceTagsProperty: const char * - k_coreServicesProp: const char * - k_traceAppsNumberProperty: const char * - k_traceAppsPropertyTemplate: const char * -- + add_category(const char * id, const char * name, uint64_t atrace_tag): void - setTagsProperty(uint64_t tags): bool } AndroidSystemImpl ..> AndroidSystem AndroidSystemImpl "-categories" -- "0..*" TracingCategory class SystemTimeImpl { } hide SystemTimeImpl methods hide SystemTimeImpl fields SystemTimeImpl ..> SystemTime interface ToolBox { + {abstract} parseFileToTokens(const char* filename, const char* delims, set<string> & tokens) + {abstract} parseToTokens(const char* delimsepstr, const char* delims, set<string> & tokens) } hide ToolBox fields class AndroidToolBox { } hide AndroidToolBox fields hide AndroidToolBox methods AndroidToolBox ..> ToolBox @enduml
887d9da6f683c5c2d3b4df3a8db4135601436af9
372d0fe94d7e59fd48620c687fee8fc94841408b
/deadheat-lock-example/microservices-example/financial-service/src/main/java/com/vrush/microservices/financial/events/publishers/publishers.plantuml
2368aa1b4402ef718e1ff228c04633c1e7fcbca3
[ "Apache-2.0" ]
permissive
vrushofficial/deadheat-lock
4ae44e23fea2ad57db17aadeba58e39ef4f63822
11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2
refs/heads/main
2023-01-14T17:28:38.161881
2020-11-29T11:11:55
2020-11-29T11:11:55
310,531,739
2
1
null
2020-11-19T08:16:25
2020-11-06T08:06:52
CSS
UTF-8
PlantUML
false
false
638
plantuml
@startuml title __PUBLISHERS's Class Diagram__\n namespace com.vrush.microservices.financial { namespace events.publishers { class com.vrush.microservices.financial.events.publishers.EventPaymentAnalyzedPublisher { - exchange : String - rabbitTemplateHandler : RabbitTemplateHandler - routingKey : String + EventPaymentAnalyzedPublisher() + sendEvent() } } } 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
cfccf8443282fc6d937852dc0f86955d28dd0d60
28f3f37e8241fad1f05396a1162c15c29a629058
/docs/design.puml
8de4d602dad893a8b77e143f6610db0dbca33548
[ "MIT" ]
permissive
fedorpashin/linalg
25bc0fc1d7d264f0322a378e5189d06652c429be
8ef4730c150370f169760dee99a3ef56136cb8f1
refs/heads/master
2023-08-14T19:50:44.207130
2021-09-12T15:32:36
2021-09-12T15:32:36
402,806,735
2
0
MIT
2021-09-12T15:32:37
2021-09-03T14:57:55
Python
UTF-8
PlantUML
false
false
2,730
puml
@startuml title Design interface AnyVector { +n: int +value: list[float] } class Vector AnyVector <|-- Vector class Solution AnyVector <|-- Solution Solution o-- "AnyAlgorithm[T: AnySystem]" Solution o-- AnySystem together { interface "AnyAlgorithm[T: AnySystem]" interface AnySystem } interface "AnyAlgorithm[T: AnySystem]" { +solution(system: T) -> Vector } "AnyAlgorithm[T: AnySystem]" -> AnySystem interface AnySystem { +matrix: SquareMatrix +vector: AnyVector } AnySystem o-- SquareMatrix interface AnyMatrix interface SquareMatrix { +n: int } AnyMatrix <|-- SquareMatrix together { interface CommonSystemAlgorithm class CommonSystem } interface CommonSystemAlgorithm { +solution(system: CommonSystem) -> Vector } "AnyAlgorithm[T: AnySystem]" <|-- CommonSystemAlgorithm CommonSystemAlgorithm -> CommonSystem class CommonSystem { +matrix: CommonSquareMatrix +vector: AnyVector } AnySystem <|-- CommonSystem CommonSystem o-- CommonSquareMatrix class CommonMatrix { +value: list[list[float]] } AnyMatrix <|-- CommonMatrix class CommonSquareMatrix { +value: list[list[float]] } SquareMatrix <|-- CommonSquareMatrix together { interface TridiagonalMatrixSystemAlgorithm class TridiagonalMatrixSystem } interface TridiagonalMatrixSystemAlgorithm { +solution(system: TridiagonalMatrixSystem) -> Vector } "AnyAlgorithm[T: AnySystem]" <|-- TridiagonalMatrixSystemAlgorithm TridiagonalMatrixSystemAlgorithm -> TridiagonalMatrixSystem class TridiagonalMatrixSystem { +matrix: TridiagonalMatrix +vector: AnyVector } AnySystem <|-- TridiagonalMatrixSystem TridiagonalMatrixSystem o-- TridiagonalMatrix class TridiagonalMatrix { +a: list[float] +b: list[float] +c: list[float] } SquareMatrix <|-- TridiagonalMatrix class GaussianElimination CommonSystemAlgorithm <|-- GaussianElimination class ThomasAlgorithm TridiagonalMatrixSystemAlgorithm <|-- ThomasAlgorithm @enduml
5b3cb2f51d01d977c50be934d81aa071ea34f400
9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9
/java/resources/plantuml/patterns/composite-example.puml
ae049cf1813f0162c2bef36a77792a144205857e
[ "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
716
puml
@startuml package composite { class Letter { + __init__(char: str) # print_this_before() } abstract class LetterComposite { + add(letter : LetterComposite) + count() : int + print() # printThisAfter() # printThisBefore() } class Messenger { ~ message_from_elves() : LetterComposite ~ message_from_orcs() : LetterComposite } class Sentence { + Sentence(*words : Word) # print_this_after() } class Word { + from_letters(*letters : Letter) + from_characters(*character: str) # print_this_before() } } LetterComposite --> "-children" LetterComposite Letter --|> LetterComposite Sentence --|> LetterComposite Word --|> LetterComposite @enduml
708929ff125eeca760c98bdd815e318a5f825479
1f5a6d8f6827e4add92c2154e20310793d32f549
/OOP教育訓練計畫/14/07.AbstractFactory/diagrams/抽象工廠模式.puml
a1da216c457ff276ab028931023aca4685996c8b
[]
no_license
YenCheChangGoogle/YccSenaoOOP
8e9c2b02ded12b64e5e7a7d26faed0f593ee0fce
79e025ace78e966d07a59b8896c68040fe74ab86
refs/heads/master
2021-09-06T16:44:44.578700
2018-02-08T16:35:22
2018-02-08T16:35:22
107,415,206
0
0
null
null
null
null
UTF-8
PlantUML
false
false
961
puml
@startuml scale 2048*2048 skinparam defaultFontName "Noto Sans CJK TC Regular" package 抽象工廠 { abstract class 抽象元件{ } abstract class 抽象連結{ } abstract class 抽象頁面{ } abstract class 抽象容器{ } abstract class 抽象工廠{ } 抽象元件 <|-right- 抽象連結 抽象元件 <|-down- 抽象容器 抽象元件 <|-down- 抽象頁面 抽象工廠 -left-> 抽象連結 抽象工廠 -left-> 抽象容器 抽象工廠 -up-> 抽象頁面 } package 具體工廠 { class 列表工廠 { } class 列表連結{ } class 列表頁面{ } class 列表容器{ } 抽象工廠 <|-left- 列表工廠 抽象連結 <|-left- 列表連結 抽象頁面 <|-left- 列表頁面 抽象容器 <|-left- 列表容器 列表工廠 --> 列表連結 列表工廠 --> 列表頁面 列表工廠 -right-> 列表容器 } @enduml
84933dc927b603c91ce5db84f1c69b0caea252e6
c65f90cd64189e6a8718705e4931a613759dcb00
/uml/List.puml
8e1198d00bfc6a2961904aa1d6a25aa562d71801
[]
no_license
mel4ni3/ehrlich-cop3330-assignment4
9975361bbedb380ada9820b912b6c0ef51f69641
a0f6d673f89ced2fe5a7d748e92cd07f3df106b0
refs/heads/master
2023-08-28T13:27:30.201488
2021-10-25T23:07:34
2021-10-25T23:07:34
421,208,634
0
0
null
null
null
null
UTF-8
PlantUML
false
false
377
puml
@startuml 'https://plantuml.com/class-diagram +class List { - name: String - tasks: Arraylist<ToDos> + editName(String str) + addTask(ToDos task) + deleteTask(ToDos task) + getIncomplete(List toDoList): ArrayList<ToDos> + getComplete(List toDoList): ArrayList<ToDos> + getName(): String + getTasks(List toDoList): ArrayList<ToDos> + saveNextList(ActionEvent event) } @enduml
f4beacae7891e14f110811ac968bdfea4b38d47a
c808c053ca4ad88d384a4690c612bde8d2b515ac
/cardreader.provider.nfc/doc/plantuml/NFCCRP/NfcCardReader.plantuml
0e7ea23be8b42788615129e144b957ecdb94efab
[ "Apache-2.0" ]
permissive
gematik/ref-CardReaderProvider-NFC-Android
915c9ff940d467e64c021055d9b6d3858e539d3f
f2b42a1da3b04f742b4f83facbd9cf039339c56a
refs/heads/master
2022-01-13T13:58:12.947688
2022-01-07T07:24:28
2022-01-07T07:24:28
214,091,391
1
0
null
null
null
null
UTF-8
PlantUML
false
false
724
plantuml
@startuml package de.gematik.ti.cardreader.provider.nfc.entities { class NfcCardReader { {static} - LOG : Logger - name : String {static} - PROTOCOL_T1 : String - adapter : NfcAdapter - activity : Activity + NfcCardReader() + onTagDiscovered() + initialize() + isInitialized() + connect() + connect() + getName() + isCardPresent() + waitForCardAbsent() + waitForCardPresent() } } NfcCardReader -up-|> ICardReader NfcCardReader -up-|> ReaderCallback @enduml