blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
227
content_id
stringlengths
40
40
detected_licenses
listlengths
0
28
license_type
stringclasses
2 values
repo_name
stringlengths
6
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
61 values
visit_date
timestamp[us]date
2015-08-14 10:26:58
2023-09-06 07:53:38
revision_date
timestamp[us]date
2011-01-31 21:28:29
2023-09-05 14:54:58
committer_date
timestamp[us]date
2011-01-31 21:28:29
2023-09-05 14:54:58
github_id
int64
206k
631M
star_events_count
int64
0
108k
fork_events_count
int64
0
34.4k
gha_license_id
stringclasses
13 values
gha_event_created_at
timestamp[us]date
2012-08-01 17:54:24
2023-09-14 21:57:05
gha_created_at
timestamp[us]date
2009-05-21 02:09:00
2023-04-21 10:18:22
gha_language
stringclasses
79 values
src_encoding
stringclasses
12 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
8
1.29M
extension
stringclasses
17 values
code
stringlengths
8
1.29M
non_uml
bool
1 class
uml
bool
1 class
has_non_ascii
bool
2 classes
has_non_latin
bool
1 class
uml_subtype
stringclasses
10 values
84b0c551e85d88644968a8139bb6fd959120685c
801880bc4b1c286292a21989afe7a0f8f79fb647
/docs/decision_service.plantuml
276bdcb2370c5212a3cb7089e4da318a8aed43b6
[]
no_license
Firat-Bayram/loanapp
9130bc25b6987b6d6820552a3942f409eedb4eea
6087296370beca5beaa047d06c968e240f634d7e
refs/heads/master
2023-03-23T08:38:35.771819
2021-03-13T00:16:19
2021-03-13T00:16:19
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,180
plantuml
@startuml class LoanApplicationDecisionService <<application service>>{ void RejectApplication(string applicationNumber, string login) void AcceptApplication(string applicationNumber, string login) } interface IUnitOfWork { void CommitChanges() } class EfUnitOfWork { } class EfLoanApplicationRepository{ } interface ILoanApplicationRepository{ void Add(LoanApplication application) LoanApplication WithNumber(LoanApplicationNumber loanApplicationNumber) } class EfOperatorRepository{ } interface IOperatorRepository{ void Add(Operator @operator) Operator WithLogin(Login login) } class MassTransitEventPublisher{ } interface IEventPublisher{ void Publish<TEvent>(TEvent message) } LoanApplicationDecisionService ..> IUnitOfWork :<<uses>> LoanApplicationDecisionService ..> IEventPublisher :<<uses>> LoanApplicationDecisionService ..> ILoanApplicationRepository :<<uses>> LoanApplicationDecisionService ..> IOperatorRepository :<<uses>> EfUnitOfWork -up-> IUnitOfWork EfLoanApplicationRepository -up-> ILoanApplicationRepository EfOperatorRepository -up-> IOperatorRepository MassTransitEventPublisher -up-> IEventPublisher @enduml
false
true
false
false
class
e665982a464f12218e298a22cd02cf20ba956f97
db481d5b16c13f4d70a56a4ab7eeee2761571fc7
/Class diagram.puml
fa8c23ed390f8736dd12da48e634e37d28db536b
[]
no_license
TeemuTallskog/Mobiilit-terveyssovellukset-Projekti
575566837ca9a2b389e79197831faf3a546a5a94
e01254b0056e071944182f0515f872d67ba2c262
refs/heads/master
2023-03-22T06:56:48.044688
2021-03-09T09:59:59
2021-03-09T09:59:59
337,015,845
0
0
null
null
null
null
UTF-8
PlantUML
false
false
6,469
puml
@startuml class com.example.raskaussovellus.Information { - String name - String website + String getName() + String getWebsite() + String toString() } class com.example.raskaussovellus.CalendarDatabase { - {static} int DATABASE_VERSION - {static} String DATABASE_NAME - {static} String TABLE_NAME - {static} String CUSTOM_DATA - {static} String KEY_ID - {static} String WEIGHT - {static} String MOOD + void onCreate(SQLiteDatabase) + void onUpgrade(SQLiteDatabase,int,int) + void addData(CalendarData) + void deleteData(String) ~ CalendarData getCalendarData(String) + DataPoint[] getWeight() + DataPoint[] getMood() + ArrayList<CalendarData> getAllData() - long formatDate(String) + void wipeData() } class com.example.raskaussovellus.SettingsActivity { # void onCreate(Bundle) + void launchActivity(View) + void wipeData(View) } class com.example.raskaussovellus.GenderSingleton { - {static} GenderSingleton genderInstance - List<Genders> genders + {static} GenderSingleton getInstanceGender() + List<Genders> getGenders() } class com.example.raskaussovellus.MainActivity { - NavigationView drawer - Button btnChangeDate - int day - int month - int year ~ {static} int DATE_DIALOG_ID + {static} String DATE + {static} String DATE_ID + {static} String PREFS - DatePickerDialog.OnDateSetListener datePickerListener # void onCreate(Bundle) + void onResume() + void onStart() - void pullPrefs() - void updateProgressBar(int) - void getFunFact(int) + void launchActivity(View) - String underTen(int) + boolean onNavigationItemSelected(MenuItem) + void viewDate() + void btnOnClickListener() # Dialog onCreateDialog(int) } class com.example.raskaussovellus.LogInspect { # void onCreate(Bundle) - void setMoodImage(int,ImageView) - void setFormattedDate(String,TextView) } class com.example.raskaussovellus.DataAnalysis { ~ GraphView graphView ~ LineGraphSeries<DataPoint> lineGraphSeries ~ PointsGraphSeries<DataPoint> pointsGraphSeries ~ BarGraphSeries<DataPoint> barGraphSeries ~ DataPoint[] dataPoints ~ DataPoint[] moodDataPoints ~ SimpleDateFormat sdf ~ RadioGroup radioGroup ~ RadioGroup moodRadioGroup ~ long todayInMillis ~ long dayInMillis ~ long monthInMillis ~ long threeMonthsInMillis ~ long sixMonthsInMillis # void onCreate(Bundle) - void getDatabaseData() - void setRadioListeners() - void setListeners() - void viewLimit(Boolean) - void addSeriesLimist() - void barGraphColor() - void getWeightAverage() } class com.example.raskaussovellus.Link { - List<Information> information - {static} Link ourInstance + {static} Link getInstance() + List<Information> getLink() } class com.example.raskaussovellus.MaleNamesActivity { - ListView listView # void onCreate(Bundle) } class com.example.raskaussovellus.CalendarActivity { - {static} String TAG + {static} String DATE + {static} String DATE_ID - String dateID - String selectedDate - TextView customDataBox - CalendarDatabase db - TextView weightView - ImageView imageView # void onCreate(Bundle) + void setMoodImage(int) + void onBtnRemove(View) + void newEntry(View) - String underTen(int) } class com.example.raskaussovellus.InfoActivity { # void onCreate(Bundle) } class com.example.raskaussovellus.ExpectedDateHandler { ~ long nineMonthsMillis + String daysLeft(long) + int weeksLeft(long) + String getExpectedDate(long) - long getDaysLeftInMillis(long) + int getProgress(long) } class com.example.raskaussovellus.FemaleNamesActivity { - ListView listView # void onCreate(Bundle) } class com.example.raskaussovellus.LogHistoryAdapter { ~ Context context ~ ArrayList<CalendarData> arrayList + int getCount() + Object getItem(int) + long getItemId(int) + View getView(int,View,ViewGroup) - void setFormattedDate(String,TextView,TextView) - void setMoodImage(int,ImageView) } class com.example.raskaussovellus.FunFacts { + String getFact(int) - String topArray(int) - String bottomArray(int) } class com.example.raskaussovellus.LogHistoryActivity { + {static} String POSITION # void onCreate(Bundle) } class com.example.raskaussovellus.GenderNamesActivity { # void onCreate(Bundle) } class com.example.raskaussovellus.Alarm { ~ TextView timeHour ~ TextView timeMinute ~ Button setAlarm ~ Button setTime ~ TimePickerDialog timePickerDialog ~ Calendar calendar ~ int currentHour ~ int currentMinute # void onCreate(Bundle) } class com.example.raskaussovellus.CalendarData { - String customData - String dateID - double weight - int mood + void setCustomData(String) + void setDateID(String) + void setWeight(float) + void setMood(int) + double getWeight() + String getCustomData() + String getDateID() + int getMood() } class com.example.raskaussovellus.CalendarInput { - String dateID - CalendarData calendarData - String selectedDate # void onCreate(Bundle) + void setDefaults(CalendarData) + void submitData(View) + boolean isNumeric(String) - void falseEntry(String) } class com.example.raskaussovellus.NeutralNamesActivity { - ListView listView # void onCreate(Bundle) } class com.example.raskaussovellus.Genders { - String gender + String toString() } android.database.sqlite.SQLiteOpenHelper <|-- com.example.raskaussovellus.CalendarDatabase androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.SettingsActivity com.example.raskaussovellus.OnNavigationItemSelectedListener <|.. com.example.raskaussovellus.MainActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.MainActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.LogInspect androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.DataAnalysis androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.MaleNamesActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.CalendarActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.InfoActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.FemaleNamesActivity android.widget.BaseAdapter <|-- com.example.raskaussovellus.LogHistoryAdapter androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.LogHistoryActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.GenderNamesActivity androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.Alarm androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.CalendarInput androidx.appcompat.app.AppCompatActivity <|-- com.example.raskaussovellus.NeutralNamesActivity @enduml
false
true
false
false
class
157013889455951d832bd504ac31f57e5616c14c
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Control/Data-Coordinator/Data-Exchange/Logical.puml
bcbf5403afe48263642345480f6844393ebf195f
[]
no_license
CAADE/edgeville
fd0053d749c259029ef4c7791210663ace87be21
6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65
refs/heads/master
2020-03-28T06:11:31.554585
2019-05-02T17:37:03
2019-05-02T17:37:03
147,819,682
0
0
null
null
null
null
UTF-8
PlantUML
false
false
496
puml
@startuml rectangle "Diagram TBD" @enduml package "User" #ffffcc { } package "Used" #ffffcc { } package "Control/Data Coordinator/Data Exchange" #lightblue { interface "Control/Data Coordinator/Data Exchange" { } CLI ()-- "Control/Data Coordinator/Data Exchange" REST ()-- "Control/Data Coordinator/Data Exchange" Web ()-- "Control/Data Coordinator/Data Exchange" } User --> "Control/Data Coordinator/Data Exchange" "Control/Data Coordinator/Data Exchange" --> Used
false
true
false
false
class
101dac8dc78d3839a56d78a088525a810bf8db8e
b7d2ba71058efa46eff4ed885324819fb3f99266
/src/doc/CLI_Controllers/GASettings/US10/US10_cd_GASettings.puml
9100eb9938b1787bc3e2634970e8d6122d9b7d64
[]
no_license
Almadanmp/backend4
3aaa5cbe453041917a510ceee83bf318499a9823
07ab3c1af9c7de6ff35cf23bf44b0e664db82f46
refs/heads/master
2022-11-25T10:30:27.184246
2019-06-30T19:26:12
2019-06-30T19:26:12
194,547,877
0
0
null
2022-11-16T11:54:00
2019-06-30T18:24:24
Java
UTF-8
PlantUML
false
false
1,316
puml
@startuml title US010 \n As an Administrator, I want to import geographical areas and sensors from a JSON file. skinparam titleBorderRoundCorner 10 skinparam titleBorderThickness 2 skinparam titleBorderColor indianred skinparam titleBackgroundColor ivory skinparam FontName verdana skinparam titleFontSize 10 skinparam class { BorderColor indianred BackgroundColor indianred BackgroundColor ivory roundcorner 10 ArrowFontName Verdana ArrowColor indianred ArrowFontColor darkslategrey FontSize 12 } class GASettingsController class GASettingsUI class Mapper class GeographicArea class Sensor class InputUtils MainUI -- GASettingsUI : > GASettingsUI -- InputUtils : > GASettingsUI -- GASettingsController : > GASettingsController -- Mapper : > Mapper -- GeographicArea : > Mapper -- Sensor : > GASettingsController -- GeographicArea : > class GASettingsUI { runUS10(); } class GASettingsController { deactivateSensor(geographicAreaList, sensorDTO, geographicAreaDTO) } class Mapper { geoAreaToDTO(); geoAreaDTOToObject(); sensorToDTO(); sensorDTOToObject(); } class GeographicArea{ getElementsAsArray() getName() add(sensor); } class InputUtils{ getGeographicAreaByList(geographicAreaList); getInputSensorByList(SensorList); } class Sensor { deactivateSensor(); isActive(); } @enduml
false
true
false
false
class
fb837d67e0e20665594db78a70ca6d455715cab7
1a2d98d49e2dcb8e65afe76b5ae867815922e6ea
/call.puml
d4a3672032589bac62caf72dc4b8682e0e007bd0
[]
no_license
booqin/OkHttpSample
113bef89509a08fb982cb26f258f1ff9e4640f0e
d52ac04d5a7063dedcadbcb73ce596dc8325162e
refs/heads/master
2020-03-28T13:38:20.994576
2018-09-28T07:56:05
2018-09-28T07:56:05
148,413,158
0
0
null
null
null
null
UTF-8
PlantUML
false
false
452
puml
@startuml OkHttpClient -> RealCall:newRealCall activate RealCall RealCall -> RealCall:execute RealCall -> RealInterceptorChain:proceed RealInterceptorChain -> XXXInterceptor:intercept XXXInterceptor -> RealInterceptorChain:proceed RealInterceptorChain -> CallServerInterceptor:intercept CallServerInterceptor -> Response RealInterceptorChain <-- Response XXXInterceptor <-- RealInterceptorChain RealCall <-- XXXInterceptor deactivate RealCall @enduml
false
true
false
false
sequence
9bc76f902f12edff240f1398b5a383d1e68324c1
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/AddressDraft.puml
63cf0beb1f3d902df770409ba4fd9542070066d4
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
1,774
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 AddressDraft [[AddressDraft.svg]] extends BaseAddress { id: String key: String country: String title: String salutation: String firstName: String lastName: String streetName: String streetNumber: String additionalStreetInfo: String postalCode: String city: String region: String state: String company: String department: String building: String apartment: String pOBox: String phone: String mobile: String email: String fax: String additionalAddressInfo: String externalId: String custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface BaseAddress [[BaseAddress.svg]] { id: String key: String country: String title: String salutation: String firstName: String lastName: String streetName: String streetNumber: String additionalStreetInfo: String postalCode: String city: String region: String state: String company: String department: String building: String apartment: String pOBox: String phone: String mobile: String email: String fax: String additionalAddressInfo: String externalId: String } interface DeliveryDraft [[DeliveryDraft.svg]] { key: String items: [[DeliveryItem.svg List<DeliveryItem>]] parcels: [[ParcelDraft.svg List<ParcelDraft>]] address: [[AddressDraft.svg AddressDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } AddressDraft --> DeliveryDraft #green;text:green : "address" @enduml
false
true
false
false
sequence
e264413150d0ef1566bcb03c3fc78e9103f29072
9623791303908fef9f52edc019691abebad9e719
/src/cn/shui/learning_plan/datastruct_basic/first/first.plantuml
ea15bcca10c7124750ff20074d41fb47788c2565
[]
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
994
plantuml
@startuml title __FIRST's Class Diagram__\n namespace cn.shui.learning_plan.datastruct_basic.first { class cn.shui.learning_plan.datastruct_basic.first.L136 { + singleNumber() } } namespace cn.shui.learning_plan.datastruct_basic.first { class cn.shui.learning_plan.datastruct_basic.first.L15 { + threeSum1() + threeSum2() } } namespace cn.shui.learning_plan.datastruct_basic.first { class cn.shui.learning_plan.datastruct_basic.first.L169 { {static} + main() + majorityElement() + majorityElement1() + majorityElement2() + majorityElement3() + majorityElement4() - countInRange() - countOccurences() - majorityElementRec() - randRange() } } right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
993e24cd1692fc85b2f41e3e42f5a941a1ad89fb
70b6b3086d64939b4bd08cf8aad93ac5283cf1ac
/uml-meta-model-extensions/types/examples/scala.ex.parameterized.puml
171954642be66c503192b6f0b66f0716812a0202
[ "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
379
puml
@startuml types class TreeMap<A:UpperBound<Compareable<A>>,\nB> hide circle hide members skinparam defaultFontName Source Code Pro skinparam ClassStereotypeFontColor #1b1f23 skinparam class { BackgroundColor White BorderColor #1b1f23 ArrowColor #1b1f23 FontColor #6f42c1 } skinparam linetype ortho skinparam stereotype { FontColor #d73a49 } @enduml
false
true
false
false
class
b37d2c4c6b055b7e875a122d82ad113438117d84
08ff822e5f2eda81ba79b207190ba399bbbeabe0
/todo.puml
1d522297a617553b8351a66e3be8410a75b27f27
[ "Apache-2.0" ]
permissive
gavincornwell/todo-api-spec
0da17ab01d3249ff85ec2c4810a3a0147e137f57
1dbea04617385d995a471ef1d9671f9f670a831f
refs/heads/master
2020-02-26T13:05:38.258221
2016-10-24T08:41:02
2016-10-24T08:41:02
61,858,204
3
0
null
null
null
null
UTF-8
PlantUML
false
false
955
puml
@startuml Title To Do Architecture skinparam defaultFontSize 16 skinparam linetype ortho skinparam titleFontSize 22 skinparam backgroundColor #EEEEEE actor "User" as U actor "Webhook" as W node "Queue" as Q #D1C4E9{ } node "API Gateway" as APIG #C8E6C9 node "Tasks" as T #E3F2FD { node "/tasks" as tasks #FFF9C4 database "DB" as tasksDB } node "Identity" as I #E3F2FD { node "/users" as users #FFF9C4 database "DB" as usersDB } node "Attachments" as A #E3F2FD { node "/attachments" as attachments #FFF9C4 database "DB" as attachmentsDB database "Content" as attachmentsContent } node "Notifications" as N #E3F2FD { node "/notifications" as notifications #FFF9C4 database "DB" as notificationsDB } U->APIG APIG->T APIG->I APIG->A APIG->N tasks<->Q users<->Q attachments<->Q notifications<->Q tasks->tasksDB users->usersDB attachments->attachmentsDB attachments->attachmentsContent notifications->notificationsDB N->W @enduml
false
true
false
false
sequence
0919863b2f7a9ad30a8ccb9a6864d350fcebe544
b419ce172cc07d8edb9a6adadc7af0b641b7c131
/AppHerencia.puml
33e7afa5df3950f3c91ae48f4cf8228939849c75
[]
no_license
meschoyez/111mil-2020-PrimerosObjetos
6bc76c66f041d49817b03dd375472891183a6445
942aa117684efd257a8f534a31dfb5baad3b1515
refs/heads/master
2022-12-12T21:07:12.840581
2020-09-11T14:17:04
2020-09-11T14:17:04
286,500,237
2
3
null
null
null
null
UTF-8
PlantUML
false
false
1,429
puml
@startuml AppHerencia skinparam ClassAttributeIconSize 0 hide circle class App { - Canvas miVentana - ArrayList<???> + ejecutar () + CrearFigurasGeometricas() + CrearFigurasAleatorias(int) + GraficarCirculosColeccionados () + BorrarCirculosColeccionados () + GraficarRectangulosColeccionados () + BorrarRectangulosColeccionados () + RebotePelota () + ReboteRectangulo () } class Posicion { - int x - int y - int despX - int despY + Posicion(int x, int y) + int getX () + int getY () + nuevaPosicion () } class FiguraGeometrica { - Color color - Posicion pos - String nombre + actualizarPosicion () } class Circulo { - MAX_RADIO = 1000 - int radio + Circulo (double radio) + getPerimetro () : double + getSuperficie () : double + determinarColor () } class Rectangulo { - MAX_LADO = 1000 - int lado1 - int lado2 + Rectangulo (double l1, double l2) + double getPerimetro () + double getSuperficie () + determinarColor () } App -> FiguraGeometrica App -left-> Canvas FiguraGeometrica <|-- Circulo FiguraGeometrica <|-- Rectangulo FiguraGeometrica <|-- Triangulo FiguraGeometrica -> Posicion FiguraGeometrica -up-> Color note top of Posicion El método <i>actualizarPosicion()</i> de la clase <b>FiguraGeometrica</b> llama a <i>nuevaPosicion()<i>. end note @enduml
false
true
true
false
class
98540045116d9fa6ae4442cd18f5ddf261daa9c9
f30e04b563c2930287515e6f599838e7f104c1dc
/uml/process-started-finished.puml
b07bfa016848b2294a9dcb04c9e7eaf5f3d87bae
[]
no_license
bonewell/process_monitor
5314c61f42bd4cc45d6b65b23e0171fee0c35663
1ff7eaf692cd0d3da0702ef5b615dd43d371ae26
refs/heads/master
2020-04-25T15:14:32.235084
2019-04-06T09:48:42
2019-04-06T09:48:42
172,871,362
0
0
null
null
null
null
UTF-8
PlantUML
false
false
872
puml
@startuml Loop -> StatusMonitor : Subscribe(this) loop Loop -> StatusMonitor : Scan() StatusMonitor -> ProcessTable : Rewind() StatusMonitor -> StatusMonitor : create fresh_infos loop while HasNext() StatusMonitor -> ProcessTable : Next() StatusMonitor <-- ProcessTable : info opt IsInteresting(info.name) StatusMonitor -> StatusMonitor : fresh_infos.insert(info) end end loop fresh_info : fresh_infos opt IsNotPresented(infos_, fresh_info) StatusMonitor -> StatusListener : OnStarted(fresh_info) end end loop info : infos_ opt IsNotPresented(fresh_infos, info) StatusMonitor -> StatusListener : OnFinished(info) end end StatusMonitor -> StatusMonitor : swap(infos_, fresh_infos) end Loop -> StatusMonitor : Unsubscribe(this) @enduml
false
true
false
false
sequence
3ba408fbf7a2e06c59b9c9b5692b805216cc5fda
c0f03f19e6eb92a6af7aa8408a032d52484529b3
/docs/exercise43.puml
18d107ae242b75cecbf53566d10d7e00f4cc6f27
[]
no_license
milobzb/Botros-Java-Practice-Exercises
6497667a843edd3bc5d3eb488581b41786424a8a
20b3d741e3b0e2c876d2e32823a59cd96aaca56b
refs/heads/master
2023-07-04T12:37:36.401362
2021-07-27T03:41:55
2021-07-27T03:41:55
389,837,078
0
0
null
null
null
null
UTF-8
PlantUML
false
false
445
puml
@startuml 'https://plantuml.com/class-diagram class App { + main(args: String[]): void } class FileUtility { + addFolder(sitename: String, author: String, javascript: String, css: String): void } class File class Scanner class BufferedWriter class FileWriter class IOException App ..> FileUtility FileUtility ..> Scanner FileUtility ..> BufferedWriter FileUtility ..> IOException BufferedWriter ..> FileWriter FileWriter ..> File @enduml
false
true
false
false
class
68697ccb2d318dab37f98cc2a821dc59ac7edbe3
7d618c99d0bcee98fa0fdc58c1d8e1880c78d192
/Reeks08/FieldValidation/Coderingen/Analyse/Class.puml
a26fac9c84e2113b180c1a0dd2d62bb043d6cd60
[ "MIT" ]
permissive
LorenzoDeBie/SoftwareOntwikkelingII
f67cdea65841ae2220180134cac20fc98926ec2f
0f8a6fc6f89ca99b5339a16bd1da3f31182263b9
refs/heads/master
2020-08-05T23:44:58.411612
2019-12-05T14:38:19
2019-12-05T14:38:19
212,760,021
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,383
puml
@startuml GroepNr3 skinparam classAttributeIconSize 0 title Oprdacht 3 Groep 3 interface ICodering { + Codeer(input: string) string } note "Eerst algemeen en dan SpecifiekCodeer oproepen als laatste" as N1 note "ALgemeen gedeelte voor alle strategies" as N3 abstract class AWisselSpeciaalCodering { - vorige: ICodering + Codeer(input: string) string # {abstract} SpecifiekCodering(zinBuffer: StringBuilder) StringBuilder - SpatiesVerwijderen(zin: string) StringBuilder - MaakEven(zinBuffer: StringBuilder) StringBuilder - VerwijderSpecialeTekens(zinBuffer: StringBuilder) StringBuilder } AWisselSpeciaalCodering::Codeer .right. N1 AWisselSpeciaalCodering .left. N3 class WisselCodering { # SpecifiekCodering(zinBuffer: StringBuilder) StringBuilder } class CijferCodering { # SpecifiekCodering(zinBuffer: StringBuilder) StringBuilder } class BlokCodering { # SpecifiekCodering(zinBuffer: StringBuilder) StringBuilder } class BasisCodering { + Codeer(input: string) string } ICodering <|.. AWisselSpeciaalCodering ICodering --o AWisselSpeciaalCodering::vorige WisselCodering -up-|> AWisselSpeciaalCodering CijferCodering -up-|> AWisselSpeciaalCodering BlokCodering -up-|> AWisselSpeciaalCodering ICodering <|.right. BasisCodering note "Strategies" as N2 WisselCodering .. N2 CijferCodering .. N2 BlokCodering .. N2 @enduml
false
true
false
false
class
0b861db004ac18fcb0f5ba5ac9c0c3ab8398bdf7
290d99110367250abe046657b0a9ef32c3e57d66
/ClassDiagram/Relations.puml
3a24b8c1db8396a4578d35680ef585b117f24a6d
[]
no_license
PandyYang/uml
b55fc156eae91bde954315d0af8ad7781191bb46
4e89e8e6a6e73325c7463082bd915d55bcd4e905
refs/heads/master
2023-01-06T14:41:29.191883
2020-11-03T04:01:59
2020-11-03T04:01:59
309,555,134
0
0
null
null
null
null
UTF-8
PlantUML
false
false
415
puml
@startuml 'abstract class AbstractList 'abstract AbstractCollection 'interface List 'interface Collection ' 'List <|-- AbstractList 'Collection <|-- AbstractCollection ' 'Collection <|- List 'AbstractCollection <|- AbstractList 'AbstractList <|-- ArrayList ' 'class ArrayList { 'Object[] elementData 'size() '} ' 'enum TimeUnit { 'DAYS 'HOURS 'MINUTES '} class Phone class programmer programmer -> Phone @enduml
false
true
false
false
class
8d8b53043aedee2ace340179f07124c36dcc0ed6
2a0a60c72f3c808a9ee1e002a755cda65aae43a3
/TP1-KRUG-NEVADO/Ejercicio 2/ejercicio2.puml
0b898ab02de20626b800a316624de6905bfff13d
[]
no_license
akrugort/Programacion1
db5c1bb91fef89817051869ac69dcfabe7753ae4
3d82db3e73a1fc10373e2632727db8e4f364b904
refs/heads/master
2022-06-12T16:15:21.711600
2020-05-07T03:37:21
2020-05-07T03:37:21
260,571,594
0
0
null
2020-05-07T03:37:22
2020-05-01T22:36:30
null
UTF-8
PlantUML
false
false
268
puml
@startuml Ejercicio2 class Ejercicio2{ -Matriz: int[5][15] ~Ejercicio2 +filasParesIguales(): int +cantColumnasNumPositivos(): int +sumaPositivos(): int +sumaNegativos(): int +menorValor(): int +menorValorEnFila(): boolean[] } @enduml
false
true
false
false
class
c3af4e9590cfdf2555d0c99360700a5abab216ec
766d3bc9cd57f81b16c206c3d73ccb47278c28a1
/src/main/paradox/architecture.plantuml
a92620fd5c04299ee6268468ff56740c2a726a44
[ "Apache-2.0" ]
permissive
pkuzia/olympus-photosync
926cf69d035adff9753863dc941610ba7897be35
9ad7a48c53b9c664b5bc1f8cad7005c94d1cc4fe
refs/heads/master
2020-03-24T04:11:49.830662
2018-05-15T06:19:53
2018-05-15T20:35:31
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
131
plantuml
@startuml rectangle CAMERA { rectangle SERVER } rectangle PC { rectangle PHOTOSYNC } PHOTOSYNC <--> SERVER : http @enduml
false
true
false
false
sequence
c1209866be6c246ec79f70fad645657aa256907d
e58fcda7c86c6b746f7eea7f08b5e50b6ad546ac
/lab1/lab1.plantuml
9f1066c55c42a30edda09b5dfb31e8bc1805af8b
[]
no_license
ppongnp/SDA-labs
b2828656bc50382679a1a1d767b0c43d01cb53d9
35f8b1930b4c5962f46a3c973fa1ecccc677b54c
refs/heads/master
2021-01-01T12:44:41.729434
2020-05-03T20:23:19
2020-05-03T20:23:19
239,284,063
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,778
plantuml
@startuml title __LAB1's Class Diagram__\n namespace Nonpattern { class Nonpattern.CourseRecord { } } namespace Nonpattern { class Nonpattern.CourseViewer { } } namespace Nonpattern { class Nonpattern.LayoutConstants { } } namespace Pattern { class Pattern.BarChartObserver { } } namespace Pattern { class Pattern.CourseController { } } namespace Pattern { class Pattern.CourseData { } } namespace Pattern { class Pattern.CourseRecord { } } namespace Pattern { class Pattern.LayoutConstants { } } namespace Pattern { abstract class Pattern.Observable { } } namespace Pattern { interface Pattern.Observer { } } namespace Pattern { class Pattern.PieChartObserver { } } Nonpattern.CourseViewer .up.|> java.awt.event.ActionListener Nonpattern.CourseViewer .up.|> javax.swing.event.ChangeListener Nonpattern.CourseViewer -up-|> javax.swing.JFrame Pattern.BarChartObserver .up.|> Pattern.Observer Pattern.BarChartObserver -up-|> javax.swing.JPanel Pattern.CourseController .up.|> Pattern.Observer Pattern.CourseController .up.|> java.awt.event.ActionListener Pattern.CourseController .up.|> javax.swing.event.ChangeListener Pattern.CourseController -up-|> javax.swing.JPanel Pattern.CourseController o-- Pattern.CourseData : courseData Pattern.CourseData -up-|> Pattern.Observable Pattern.PieChartObserver .up.|> Pattern.Observer Pattern.PieChartObserver -up-|> javax.swing.JPanel right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
30561591294f3b9d96720e6c12edabfb2e9c07d2
1ac0a5cf0a74b207d7cdac817f81b15f452f494c
/Livrables/Diagrammes/Composants/UML/Client.plantuml
a5f6d7abf8c4651c51308f5c1487e94e5d00ec90
[ "MIT" ]
permissive
HugoLA1/Projet-programmation-systeme
1f143b71a52871ca3536b30d78592c29f19aae97
5262fa64cd862283078346b4f8a2aa69246d47d6
refs/heads/master
2020-06-01T10:33:49.688170
2018-12-13T13:22:55
2018-12-13T13:22:55
190,750,176
0
0
null
null
null
null
UTF-8
PlantUML
false
false
200
plantuml
@startuml class Client { + appetizer : Command <<get>> <<set>> + dish : Command <<get>> <<set>> + desert : Command <<get>> <<set>> + CurrentCommand : Command <<get>> <<set>> } @enduml
false
true
false
false
class
547d943e7beaa0f9f57ab44cd52fd3719f9ab7b2
41908e43aaab868095c35b34f5fa811f4b033f30
/notation/src/_solution/NotationStack.puml
c465cd7366bac4bbbd5118a4c1948f91f3d71f11
[]
no_license
TBCode523/CMSC-204-Projects
94b62a541e87bcb64feb64524650c6b8b319a469
09370eb872d427a6984311adfe8d254ddea568b1
refs/heads/master
2023-01-07T21:06:02.316979
2020-11-09T23:53:23
2020-11-09T23:53:23
291,835,818
0
0
null
null
null
null
UTF-8
PlantUML
false
false
372
puml
@startuml class NotationStack { elementData: <T>[] size: int top: int isEmpty(): boolean isFull(): boolean pop() throws StackUnderflowException: T top() throws StackUnderflowException: T size(): int push(e: T) throws StackOverflowException: boolean toString(): String toString(delimiter: String): String void fill(list: ArrayList<T>) } @enduml
false
true
false
false
class
21bf4f49ece247d7c53068d5a9eb2d0e93d37118
bf3e610c8668e525aedcca58ddbe9da7c19e427e
/docs/design/applications/remove-app-for-flow-sequence.puml
1500f0bb537d8b66dc430f0c9f67408332fb1223
[ "Apache-2.0" ]
permissive
telstra/open-kilda
874b5204f8c2070860a2e7fc6f8be368a5d18726
686d31220f1033595d7f1d4374544af5ba9c42fe
refs/heads/develop
2023-08-15T21:24:21.294425
2023-08-14T08:51:52
2023-08-14T08:51:52
104,974,693
82
70
Apache-2.0
2023-09-14T19:11:22
2017-09-27T05:13:18
Java
UTF-8
PlantUML
false
false
844
puml
@startuml title Disable TeleScope for the flow participant NB control kilda.apps participant AppsTopology participant Neo4j control kilda.speaker.flow participant Speaker participant Switch control kilda.flow control apps.notifications.pub control kilda.northbound NB -> kilda.apps: Disable telescope for the flow request kilda.apps -> AppsTopology activate AppsTopology AppsTopology -> Neo4j: Store info in db AppsTopology -> kilda.speaker.flow: create pass through rule removal for the flow kilda.speaker.flow -> Speaker activate Speaker Speaker -> Switch: remove rule Speaker -> kilda.flow: send result deactivate Speaker kilda.flow -> AppsTopology AppsTopology -> apps.notifications.pub: Send Notification on App removal AppsTopology -> kilda.northbound: send response deactivate AppsTopology kilda.northbound -> NB: response @enduml
false
true
false
false
sequence
5c2efd8d264a6d6d97e06f08fe96ee9bc587e264
8eea3d156ed8f8c32a5c4df3fad10c1fcd3a8ed4
/development/app-architecture/ui-controller-architecture.puml
168b4dc02cc3799b6879f0f66bc2e43144917d77
[]
no_license
alpheios-project/documentation
e9c949f9f78ac3c8ba5b6af424adfa31bcdad9b1
3b452dfcd0b94832ec0d0718ff51c099d2ba66f7
refs/heads/master
2021-06-06T01:33:49.616128
2021-04-24T12:56:24
2021-04-24T12:56:24
129,736,263
0
0
null
2021-01-04T14:36:49
2018-04-16T12:02:23
null
UTF-8
PlantUML
false
false
1,615
puml
@startuml object AppController { A container class Contains: Root Vue component Business Methods Event Listeners } object "Vuex Store" as VuexStore #seagreen { Stores data for Vue components Contains data mutations and actions methods } component VueRootComponent #lightseagreen { } component VueComponentA #lightseagreen{ } component VueComponentB #lightseagreen { } component VueComponentC #lightseagreen { } component VueComponentD #lightseagreen { } component VueComponentE #lightseagreen { } component VueComponentF #lightseagreen { } node "Business Methods" { component BusinessMethodA #deepskyblue { } component BusinessMethodB #deepskyblue { } component BusinessMethodC #deepskyblue { } } node "Event Listeners" { component EventListenerA #aquamarine { } component EventListenerB #aquamarine { } component EventListenerC #aquamarine { } } VuexStore *-- AppController AppController *-- BusinessMethodA AppController *-- BusinessMethodB AppController *-- BusinessMethodC AppController *-- EventListenerA AppController *-- EventListenerB AppController *-- EventListenerC AppController *-- VueRootComponent VueRootComponent *-- VueComponentA VueRootComponent *-- VueComponentB VueComponentA *-- VueComponentC VueComponentA *-- VueComponentD VueComponentB *-- VueComponentE VueComponentB *-- VueComponentF VueRootComponent o-- VuexStore VueComponentA o-- VuexStore VueComponentB o-- VuexStore VueComponentC o-- VuexStore VueComponentD o-- VuexStore VueComponentE o-- VuexStore VueComponentF o-- VuexStore @enduml
false
true
false
false
class
357444a2e536f93f292c383b9f22bf4710e28546
02a364d6cc772a9bf2e72d02dbecca74ac14d335
/eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Utilities/SecurityUtility.puml
991bc7df1dc7bde5c18114f4c1f934533ec33069
[ "BSD-3-Clause" ]
permissive
noelmartens/TransitionAcademy
4e02379d234aa4859a497ee2846420f4c55b9e12
3b95a5c737ab7b1497b77d455cf64caa73f69e1f
refs/heads/master
2023-06-14T05:25:35.514249
2021-07-02T19:40:29
2021-07-02T19:40:29
362,512,351
0
0
null
null
null
null
UTF-8
PlantUML
false
false
194
puml
@startuml class SecurityUtility { + SellerAuthenticated() : bool + BackOfficeAdminAuthenticated() : bool } UtilityBase <|-- SecurityUtility ISecurityUtility <|-- SecurityUtility @enduml
false
true
false
false
class
6d7ee09d909357db41185ead8394f220c9a2fb66
9cc7c4099f6330f9a4384b56427d40d46b9d6f4a
/diagrams/multi-container-pod.puml
61cdb0eea4eb72dfcf68017ed39b0ce83a2836ac
[ "MIT" ]
permissive
maulvialf/belajar-kubernetes
0e28a11d9f75b3b1d17ffbe86151ecedf3bb603e
809ac5514e9c0c188a3775f53e0d340b0587c132
refs/heads/master
2022-10-22T09:32:07.830441
2020-06-13T17:43:51
2020-06-13T17:43:51
272,653,376
1
0
MIT
2020-06-16T08:32:21
2020-06-16T08:32:20
null
UTF-8
PlantUML
false
false
263
puml
@startuml node "Kubernetes Cluster" { node "Service" as service node "Pod" as pod{ node "Container 1" as container1 node "Container 2" as container2 } } service --> pod : NodePort pod --> container1 pod --> container2 @enduml
false
true
false
false
sequence
fc39f4d422e5fcf30ab363d48f1bab6fc6bb72e6
6d74504a69ea433da21f27a5ced76de4c9e8407c
/packages/mds-rpc-common/docs/rpc-architecture.puml
92606ba80224969674dfa2afefb7be6bfb36c312
[ "Apache-2.0" ]
permissive
lacuna-tech/mds-core
e812f1ab99e0bc0c40084a3026695a99ef48284c
6a9e219123c3a8835ad64012975d9a4b19b43b64
refs/heads/develop
2022-10-15T20:05:16.261617
2022-08-26T17:29:05
2022-08-26T17:29:05
213,954,750
13
11
Apache-2.0
2022-09-30T06:22:16
2019-10-09T15:28:08
TypeScript
UTF-8
PlantUML
false
false
1,419
puml
@startuml MDS RPC Service Architecture skinparam backgroundColor #EEEBDC skinparam ParticipantPadding 20 skinparam BoxPadding 10 autonumber hide footbox title MDS RPC Service Architecture box Kubernetes Pod participant "**API**" as API #LightBlue endbox box Kubernetes Pod participant "**Service**" as Service #LightGreen participant "**Repository**" as Repository #LightGreen endbox box Kubernetes Pod\nor External Server collections "**Postgres**" as DB #LightGoldenRodYellow hnote over Service,Repository #LightGreen: Initialize/Run Migrations hnote over API #LightBlue: Listen for HTTP Requests hnote over Service #LightGreen: Listen for RPC Requests [->API ++ #LightBlue: HTTP API Request hnote over API #LightBlue: Verify API Authorization hnote over API #LightBlue: Parse Request params, query, body API->Service ++ #LightGreen: RPC Service Request hnote over Service #LightGreen: Validate Request Parameters Service->Repository ++ #LightGreen: Repository method call hnote over Repository #LightGreen: Map to Entity Model Repository->DB ++: TypeORM Command/Query rnote over DB #LightGoldenRodYellow: Execute SQL return TypeORM Result hnote over Repository #LightGreen: Map to Domain Model return Repository method result hnote over Service #LightGreen: Manage exceptions/errors return RPC Service Response hnote over API #LightBlue: Convert result/error to HTTP status/response return HTTP API response @enduml
false
true
false
false
sequence
1746f047411df68cb7738f66d5be0a0cf5bdacd4
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
/build/promissory-note-md@0.4.0.puml
34f981668745e16149d2461d892d59ab3fd422ff
[ "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
901
puml
@startuml class org.accordproject.promissorynote.Payment << (T,yellow) >> { + MonetaryAmount amountPaid } org.accordproject.promissorynote.Payment --|> org.accordproject.cicero.runtime.Request class org.accordproject.promissorynote.Result << (T,yellow) >> { + Double outstandingBalance } org.accordproject.promissorynote.Result --|> org.accordproject.cicero.runtime.Response class org.accordproject.promissorynote.PromissoryNoteContract << (A,green) >> { + MonetaryAmount amount + DateTime date + String maker + Double interestRate + Boolean individual + String makerAddress + String lender + BusinessEntity legalEntity + String lenderAddress + DateTime maturityDate + Integer defaultDays + Integer insolvencyDays + String jurisdiction } org.accordproject.promissorynote.PromissoryNoteContract --|> org.accordproject.cicero.contract.AccordContract @enduml
false
true
false
false
class
a216434b1edabde758a1139abf88e354ccca4504
112e511928937b8ec60004ca94f1dd996bd9fd1a
/Documents/Shos.Chatter.Server/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.puml
629799110db6f94baca4f27ffefd5a0f9c23d1bb
[ "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
254
puml
@startuml class KeyValuePairModelDescription { } ModelDescription <|-- KeyValuePairModelDescription KeyValuePairModelDescription --> "KeyModelDescription" ModelDescription KeyValuePairModelDescription --> "ValueModelDescription" ModelDescription @enduml
false
true
false
false
class
b237ef1793aee5698e22aace527126f9f00b4d44
c800a9e50329b7396684ae18c153bae04446d17a
/docs/testsResults/T12_Should_mark_static_method.puml
e0a0879c72f529fae4c5086fd62d4fa222b8d39c
[ "Apache-2.0" ]
permissive
isukces/AutoUml
5cae179ab7db7042d5b59960cb5aac3bb13522a1
d4a64c9d6d05ac55e195425f45f11080cd294755
refs/heads/master
2023-09-01T05:31:23.658558
2023-08-19T14:26:18
2023-08-19T14:26:18
142,751,263
0
1
null
null
null
null
UTF-8
PlantUML
false
false
508
puml
@startuml title Diagram Test4 end title class CompanyInfo { +string Name } class OrderItem4Related1 { +int SomeMethodWithNestedMethods() } abstract class OrderItem4Related3 { +{abstract} int CalculateSum(int a,int b) } package Orders <<Cloud>> { class Order4 { } class OrderItem4 { +{static} void SomeStaticMethod() } } Order4 --{ OrderItem4:Items OrderItem4 o--> OrderItem4Related1:"DoSomething1(a)" OrderItem4 o--> OrderItem4Related3:"DoSomething2()" @enduml
false
true
false
false
sequence
b02e99fb82a08f111c79d0906fc9d8dd3014173d
62de719e261fac67d2a2bc347a98be5515b48948
/docs/red/1160763/sp2/sd1.puml
5df5138a8ebe66964879a57e483f35aead525001
[]
no_license
raulcorreia7/isep_lapr4_17_18
82672fca46e433856d52b3839e3739fa53b8f52c
79217fa01912657da37ef6cdb1a05194dd2f5110
refs/heads/master
2020-04-15T17:52:21.964106
2019-01-09T17:13:14
2019-01-09T17:13:14
164,891,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,004
puml
@startuml sd1.png skinparam handwritten true skinparam monochrome true skinparam packageStyle rect skinparam defaultFontName FG Virgil skinparam shadowing false actor User boundary WorkbookView control ExportToPDFService control exportWorkbookController entity ExportStrategy entity ExportFactory box "NSheets Client" participant WorkbookView end box box "Server" participant ExportToPDFService participant exportWorkbookController participant ExportFactory participant ExportStrategy end box User -> WorkbookView : starts workbook Export WorkbookView -> ExportToPDFService : exportWoorkbookToPDF(format,wb,filename) ExportToPDFService -> exportWorkbookController : exportWorkbook(format,wb,filename) exportWorkbookController --> ExportFactory : instance() exportWorkbookController -> ExportFactory : getStrategy(format) ExportFactory --> ExportStrategy : create() ExportFactory -> ExportStrategy : exportWorkbook(wb,filename) ExportStrategy -> ExportStrategy : writeWorkbookToFileFormat() @enduml
false
true
false
false
usecase
6d93a3b20135fafec14899d2b87585e486eae6ab
4291ef524e205e9b7c7c479052e1fe40078a1f60
/doc/part_one/components.puml
6dc51d04b660d64dd34a945ba05078dc08f5ee63
[ "BSD-2-Clause" ]
permissive
nymann/portfolio-assignment
4136ab71b2bac64d6a4474c76b16ee5e57f9d21d
abb6d840d6d9ae59b90e8417f140c2314b1e7a27
refs/heads/master
2023-04-27T00:19:10.391313
2021-05-21T21:02:46
2021-05-21T21:02:46
367,152,436
0
0
null
null
null
null
UTF-8
PlantUML
false
false
397
puml
@startuml skinparam shadowing false skinparam classFontName Lato skinparam defaultFontName Source Code Pro skinparam defaultFontSize 14 skinparam PackageBackgroundColor white skinparam ArrowColor black skinparam linetype ortho package Presentation package Domain { package Commands package Sensors package Exceptions } package Sensor Presentation ...> Domain Domain ...> Sensor @enduml
false
true
false
false
class
99d9834744f4efe47dae02746846fbec51dcbaa0
881813c69164234a589b5f98596ee8254ebc8d40
/labor-market-analysis/architecture.puml
e6a388c91c1a8c38989ba3379bc8de8f2efa382f
[]
no_license
mihalymankovics/script-language
352ddaca41c207cf2d477d34f93bf4761bace007
36c7c6af705b5976c9a888d66acb700fdf91da91
refs/heads/main
2023-08-29T21:02:39.884243
2021-11-05T14:34:41
2021-11-05T14:34:41
412,352,148
0
0
null
null
null
null
UTF-8
PlantUML
false
false
414
puml
@startuml interface HTTP as http package ETL { [requests] [beautiful-soup] [pymongo_etl] [requests] --> [beautiful-soup] [beautiful-soup] --> [pymongo_etl] } package BI { [pymongo_bi] [pandas] [seaborn] [pymongo_bi] --> [pandas] [pandas] --> [seaborn] } database "Data Lake" { [MongoDB] } [requests] <-up-> http [pymongo_etl] --> [MongoDB] [pymongo_bi] <-- [MongoDB] @enduml
false
true
false
false
sequence
fadf931c996d3aa178995a16849b8cc1ebb0d394
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProductTypeChangeLocalizedEnumValueOrderAction.puml
5097fd9c31dda8e890384ec06c9e7ca8229817d4
[]
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
587
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 ProductTypeChangeLocalizedEnumValueOrderAction [[ProductTypeChangeLocalizedEnumValueOrderAction.svg]] extends ProductTypeUpdateAction { action: String attributeName: String values: [[AttributeLocalizedEnumValue.svg List<AttributeLocalizedEnumValue>]] } interface ProductTypeUpdateAction [[ProductTypeUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
283456c7c72fee24d420c091bcb36f28e39eac7c
7fc07ea3d00c1a762a89675a45b7ebad5cb8604a
/docs/src/diagrams/backend_module_execution_context.puml
b65efd0578de16d4beccc248e913ba2c19dd8315
[ "BSD-3-Clause" ]
permissive
ska-telescope/observation-execution-tool
c6aa5729220fee22868e0edc4efaf71fd97c70da
cace7d3f3fe58e9711730893761cb8380bb7f598
refs/heads/master
2023-08-31T03:23:38.430798
2023-08-24T09:33:53
2023-08-24T09:33:53
181,853,839
0
0
NOASSERTION
2021-06-17T12:33:25
2019-04-17T08:54:54
Python
UTF-8
PlantUML
false
false
775
puml
@startuml 'https://plantuml.com/class-diagram package ska_oso_oet_client { package restclient <<Rectangle>> { class RestClientUI { } } } package ska_oso_oet { package main <<Rectangle>> { class ScriptExecutionServiceWorker { prepare(...) start(...) stop(...) list(...) } class FlaskWorker { } } package procedure { package application <<Rectangle>> { class ScriptExecutionService { } } } RestClientUI - FlaskWorker : Sends user request\n > FlaskWorker -- ScriptExecutionServiceWorker : relays\nrequest\n > ScriptExecutionServiceWorker -- ScriptExecutionService : invokes\ncommands\n > } @enduml
false
true
false
false
class
cb47848899628eb86c1046ab7a14b09e6d4a39ab
8831a87b4bcdf77329b1a8bd689388de988cf5ba
/diagrams/books_example/ebooks_selling_domain.plantuml
0e637ccfb92fffa257dd8f5be6830c6dbb9cd43d
[]
no_license
ddd-ftw/dddrail-talk
89855ae5993f84335086e7ab7d4658b625180033
31dddb8fa3cf751d30d6b214f9fcbc563180e51d
refs/heads/master
2020-06-22T11:28:19.974330
2016-03-31T18:13:03
2016-03-31T18:56:02
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
803
plantuml
@startuml skinparam shadowing false package "Ebooks" { class Ebook { } class EbookLineItem { price } class EbookSaleConfiguration { price_tier } } package "iBookstore" { class iBookstoreOrder class iBookstorePrice } iBookstoreOrder --> Order EbookSaleConfiguration --> iBookstorePrice Ebook --> Pages Ebook --> CoverDesign Order --> EbookLineItem class Book { title } class CoverDesign class Pages Book --> CoverDesign Book --> Pages Book --> SaleConfiguration class SaleConfiguration { price paper_type cover_type } class Order class LineItem { price quantity } class PurchasedConfiguration { paper_type cover_type } Order --> LineItem LineItem --> PurchasedConfiguration Order --> Printer Order --> Shipper class Printer class Shipper @enduml
false
true
false
false
class
b5da9661a59a7a7cbb9ee815b5f2c1e50f855033
81aae10a08cadcd596b48c2cfd8b1776715ca429
/docs/diagrams/UML/ParserClassDiagram.puml
b193c61596dcdf979b492b880045469bf669f244
[]
no_license
tobiasceg/tp
46a4d0e13d8f96ef451902cc27f78cb1ed6dcb9b
128552787fe3d325115ab2d08bfe2db668f79df3
refs/heads/master
2023-01-24T12:07:02.132563
2020-10-26T03:11:39
2020-10-26T03:11:39
300,105,637
0
0
null
2020-10-01T01:24:17
2020-10-01T01:24:16
null
UTF-8
PlantUML
false
false
411
puml
@startuml class Duke abstract class Command package parser { class Parser class AddCommandParser class DeleteCommandParser class DoneCommandParser class EditCommandParser class ListCommandParser } Duke <.. Parser Parser <.. Command Parser <.. AddCommandParser Parser <.. DeleteCommandParser Parser <.. DoneCommandParser Parser <.. EditCommandParser Parser <.. ListCommandParser @enduml
false
true
false
false
class
f9fd8c858086ce4b63f8cc561e79d59942c55f8f
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Services/service/Physical.puml
dca11d88f4c804b47e442f10a3023a56f5ad989e
[]
no_license
CAADE/edgeville
fd0053d749c259029ef4c7791210663ace87be21
6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65
refs/heads/master
2020-03-28T06:11:31.554585
2019-05-02T17:37:03
2019-05-02T17:37:03
147,819,682
0
0
null
null
null
null
UTF-8
PlantUML
false
false
191
puml
@startuml rectangle "Diagram TBD" @enduml interface external package "service" #lightblue { component service as uS interface internal } external -- uS : 3000 internal - uS : 5000
false
true
false
false
class
ca23361045a44d9b1954071d7dbc7b719b2bceb6
899a06ce0441e202b7f04ebd2f57d3edea0ea3fc
/assets/uml/stream-flow.plantuml
8fc99ff0f3fec73f3f333a26c5f552e03e6edc4f
[ "MIT" ]
permissive
BernhardSchiffer/12-functional-cli
40df1728722121d50faf0237bb2b1f929a3ec5d1
ac5ece6291d415d482fb1d07892531a9c201c1dc
refs/heads/master
2020-11-25T08:17:41.884893
2020-04-17T19:28:25
2020-04-17T19:28:25
228,571,087
0
0
MIT
2019-12-17T08:39:08
2019-12-17T08:39:07
null
UTF-8
PlantUML
false
false
255
plantuml
@startuml StreamFlow (*) --> "Filter for non null objects" --> "Skip as many values as required" --> "Limit the stream to the required count of elements" --> "use `map` to unwrap the `ResponseWrapper`" --> "Print the jokes to the STDOUT" --> (*) @enduml
false
true
false
false
uml-unknown
6ff30d8abf3d89eff82140f113c3ddae5b5f97df
f8a1ba4ac815ee086c5291eb949fd7ec6aebb6c7
/Barricade/Models/Field.puml
182277fa3f17bf5c5db2081415f525646708967a
[]
no_license
Evert-Arends/barricadegameModel3
f7def3f2fd0dead5cc7807c488617505fb664ef5
98fa3d1e396ca133c424f459ea576086d0840814
refs/heads/master
2023-03-02T21:33:43.122111
2021-02-11T13:06:54
2021-02-11T13:06:54
337,192,542
0
0
null
null
null
null
UTF-8
PlantUML
false
false
495
puml
@startuml abstract class Field { + <<virtual>> IsNotOccupied() : bool + IsVillage : bool <<get>> <<set>> + IsBottomRow : bool <<get>> <<set>> + <<virtual>> IsMoveAllowed() : bool + <<virtual>> Crowded() : bool + {abstract} <<override>> ToString() : string } class "List`1"<T> { } Field o-> "Pieces<Piece>" "List`1" Field --> "LeftConnectedField" Field Field --> "RightConnectedField" Field Field --> "TopConnectedField" Field Field --> "DownConnectedField" Field @enduml
false
true
false
false
class
2dcea240374417a1ddf98f956ca4a67307f4e69e
714f9744f76cc2af51f47b4dbe9fd7b38e616ce4
/doc/uml/context-papir-reseptur.puml
403bca69dcfd70831371a7441af1a831e945c778
[]
no_license
sopra-steria-norge/pharmacy.no
3082b724b7c93b327a8ad884d9fee2ad40a92321
b0d3e8ee3d6a358a96b6401bd23fc789ad865882
refs/heads/master
2021-07-18T19:51:32.802750
2017-10-24T22:10:24
2017-10-24T22:14:58
null
0
0
null
null
null
null
ISO-8859-15
PlantUML
false
false
1,356
puml
@startuml participant POS box "DIFA tjenesten" participant DIFA database HPR database Farmalogg end box database Personregisteret database RF participant HELFO activate DIFA POS -> DIFA: Find person basert på kriterier DIFA -> Personregisteret POS <-- DIFA: Liste med personer deactivate DIFA POS -> DIFA: Registrer papir resept på legemiddel, pasient, rekvirent activate DIFA DIFA -> HPR: Hent rekvisisjonsrett for forskriver DIFA -> RF: Hent resepter for person DIFA <-- RF: Reseptliste (historisk) DIFA -> Farmalogg: Medikament-informasjon DIFA <-- Farmalogg: Bivirkninger, interaksjoner, trinnpris,\nbyttegruppe med legemiddeldetaljer DIFA -> DIFA: Bruk historikk til å generere varsler POS <-- DIFA: Reseptliste med alternativer,\nbivirkninger, varsler deactivate DIFA group Utføres av POS etter behov POS -> DIFA: Beregne refusjon basert på varevalg POS -> DIFA: Forfalskningskontroll end group POS -> DIFA: Registrer utlevering med varevalg, strekkoder,\noppdatert etikett,\nfarmasøyts aksjon for alle varsler,\nunderskrift, scannet dokumentasjon Note right of POS: Her kunne DIFA tilby en mobil app for farmasøyt for farmasøytkontroll activate DIFA DIFA -> DIFA: Verifiser rekvirent, varsler, strekkoder DIFA -> RF: Utleveringsmelding DIFA -> HELFO: Send refusjonskrav POS <-- DIFA: OK/feilkoder deactivate DIFA @enduml
false
true
true
false
sequence
eea3bab2235dd6ac6241c4f73c6530eebc545231
4da98acbceb9de9b083992e8c459090a6f5b36fc
/use-cases/HR System.puml
17c2a68449edc927dc1b9c0f52ca272777cc31c9
[ "Apache-2.0" ]
permissive
GitGotGo1/sem
06139b66fac78f5d40980f27ac4622b77f7a38b2
1b956b98422690afdd734f7a0f9e478c346cb622
refs/heads/master
2020-04-17T23:20:37.552852
2019-04-09T13:27:56
2019-04-09T15:33:20
167,031,271
0
5
Apache-2.0
2019-04-17T10:49:59
2019-01-22T16:51:28
Java
UTF-8
PlantUML
false
false
1,791
puml
@startuml actor User as "User" rectangle Database rectangle "Population Info System" { usecase UC1 as "Country Reports" note top * All in the world * All in a continent * All in a region end note usecase UC1_a as "organised by largest population to smallest" usecase UC1_b as "top N populated (where N is given by user)" User - UC1 UC1 - Database UC1 ..> UC1_a UC1 ..> UC1_b usecase UC2 as "City Reports" note top * All in the world * All in a continent * All in a region * All in a country * All in a district end note usecase UC2_a as "organised by largest population to smallest" usecase UC2_b as "top N populated (where N is given by user)" User - UC2 UC2 - Database UC2 ..> UC2_a UC2 ..> UC2_b usecase UC3 as "Capital City Reports" note top * All in the world * All in a continent * All in a region end note usecase UC3_a as "organised by largest population to smallest" usecase UC3_b as "top N populated (where N is given by user)" User - UC3 UC3 - Database UC3 ..> UC3_a UC3 ..> UC3_b usecase UC4 as "Population Reports" note top * All in the world * All in a continent * All in a region end note usecase UC4_a as "total population of people" User - UC4 UC4 - Database UC4 ..> UC4_a usecase UC5 as "Language Reports" note top * All in the world end note usecase UC5_a as "organized by largest amount of speakers to smallest" User - UC5 UC5 - Database UC5 ..> UC5_a } @enduml
false
true
false
false
usecase
c9f8f6af0fde759d751f0a078e0946ed9fb6e19c
fed15cb6d34597114b1edeb0a5fcd49ee7d70ecb
/State-Mobile/src/com/company/company.plantuml
dc6cb5f10cf5ea7a181798500fae5e9da00c67bf
[]
no_license
GaianiMagali/PatronesDeDisenio
9493739565a6fbd7a77c9b56de9e0ca9055805de
97e8b773bf5785e4243095f7de85289abed99041
refs/heads/master
2022-03-25T12:37:47.701619
2019-12-02T19:15:06
2019-12-02T19:15:06
225,448,978
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,000
plantuml
@startuml title __COMPANY's Class Diagram__\n namespace com.company { interface com.company.CelularEstadoAlerta { {abstract} + alerta() } } namespace com.company { class com.company.EstadoAlerta { + EstadoAlerta() + alerta() + setEstado() } } namespace com.company { class com.company.Main { {static} + main() } } namespace com.company { class com.company.Silenciado { + alerta() } } namespace com.company { class com.company.Vibrador { + alerta() } } com.company.EstadoAlerta o-- com.company.CelularEstadoAlerta : celularEstadoAlerta com.company.Silenciado .up.|> com.company.CelularEstadoAlerta com.company.Vibrador .up.|> com.company.CelularEstadoAlerta right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
d89365369790bb140e81ee57b043f171f50361e8
5cf4562f01b174ba235cb3ac5551b247a4c2abcb
/.idea/modules/app/app.plantuml
41a6dc2e7d399b59625bd5f51d1f2ecd26ef26f5
[]
no_license
atanuroy911/JXUST_TUTOR_APP
30c08767b79f141c2903b3a035182f1a3aed3828
fb440a4f0f5ac57f716a5c829177265155b7c157
refs/heads/main
2023-03-03T06:04:36.247741
2021-02-03T13:26:52
2021-02-03T13:26:52
335,628,435
0
0
null
null
null
null
UTF-8
PlantUML
false
false
15,541
plantuml
@startuml title __JXUST_TUTOR_APP.APP's Class Diagram__\n namespace com.jxust.tutor { class com.jxust.tutor.BuildConfig { } } namespace com.jxust.tutor { class com.jxust.tutor.LoginMainActivity { } } namespace com.jxust.tutor { class com.jxust.tutor.MainActivity { } } namespace com.jxust.tutor { class com.jxust.tutor.RegistrationActivity { } } namespace com.jxust.tutor { namespace StudentCursorAdapters { class com.jxust.tutor.StudentCursorAdapters.BookingTutorCursorAdapter { } } } namespace com.jxust.tutor { namespace StudentCursorAdapters { class com.jxust.tutor.StudentCursorAdapters.HomeQuickBookCursorAdapter { } } } namespace com.jxust.tutor { namespace StudentCursorAdapters { class com.jxust.tutor.StudentCursorAdapters.SessionCursorAdapter { } } } namespace com.jxust.tutor { class com.jxust.tutor.StudentMainActivity { } } namespace com.jxust.tutor { namespace TutorCursorAdapters { class com.jxust.tutor.TutorCursorAdapters.SessionCursorAdapter { } } } namespace com.jxust.tutor { class com.jxust.tutor.TutorMainActivity { } } namespace com.jxust.tutor { namespace adapters { class com.jxust.tutor.adapters.CustomTutorDayTimeAdapter { } } } namespace com.jxust.tutor { namespace adapters { class com.jxust.tutor.adapters.TutorDayTimeRowitem { } } } namespace com.jxust.tutor { namespace appFragments { class com.jxust.tutor.appFragments.SessionItemFragment { } } } namespace com.jxust.tutor { namespace appFragments { class com.jxust.tutor.appFragments.SessionLocationFragment { } } } namespace com.jxust.tutor { namespace helpers { class com.jxust.tutor.helpers.BottomNavigationViewHelper { } } } namespace com.jxust.tutor { namespace helpers { class com.jxust.tutor.helpers.DateFormatHelper { } } } namespace com.jxust.tutor { namespace helpers { class com.jxust.tutor.helpers.ValidationHelper { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.AudioRecording { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.AvailableTime { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.Course { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.CoursesTutors { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.DBHelper { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.Location { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.School { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.Student { } } } namespace com.jxust.tutor { namespace models { abstract class com.jxust.tutor.models.Table { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.Tutor { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.TutorRating { } } } namespace com.jxust.tutor { namespace models { class com.jxust.tutor.models.TutoringSession { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.AudioRecordingSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.AvailableTimeSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.CourseSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.CoursesTutorsSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.DatabaseSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.LocationSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.SchoolSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.StudentSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.TutorRatingSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.TutorSeeder { } } } namespace com.jxust.tutor { namespace seeders { class com.jxust.tutor.seeders.TutoringSessionSeeder { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentBookingDetailsFragment { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentBookingFragment { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentHistoryDetailsFragment { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentHistoryFragment { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentHomeFragment { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentPaymentFragment { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentProfileEditFragment { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentProfileFragment { } } } namespace com.jxust.tutor { namespace studentFragments { class com.jxust.tutor.studentFragments.StudentUpcSessionsDetailsFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorAvailabilityFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorCalendarFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorHistoryDetailsFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorHistoryFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorHomeFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorLocationFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorProfileEditFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorProfileFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorSingleDayAvailabilityFragment { } } } namespace com.jxust.tutor { namespace tutorFragments { class com.jxust.tutor.tutorFragments.TutorUpcSessionsDetailsFragment { } } } com.jxust.tutor.LoginMainActivity -up-|> android.support.v7.app.AppCompatActivity com.jxust.tutor.LoginMainActivity o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.MainActivity -up-|> android.support.v7.app.AppCompatActivity com.jxust.tutor.RegistrationActivity -up-|> android.support.v7.app.AppCompatActivity com.jxust.tutor.RegistrationActivity o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.StudentCursorAdapters.BookingTutorCursorAdapter -up-|> android.widget.CursorAdapter com.jxust.tutor.StudentCursorAdapters.HomeQuickBookCursorAdapter -up-|> android.widget.CursorAdapter com.jxust.tutor.StudentCursorAdapters.SessionCursorAdapter -up-|> android.widget.CursorAdapter com.jxust.tutor.StudentMainActivity -up-|> android.support.v4.app.FragmentActivity com.jxust.tutor.TutorCursorAdapters.SessionCursorAdapter -up-|> android.widget.CursorAdapter com.jxust.tutor.TutorMainActivity -up-|> android.support.v4.app.FragmentActivity com.jxust.tutor.adapters.CustomTutorDayTimeAdapter -up-|> android.widget.ArrayAdapter com.jxust.tutor.adapters.CustomTutorDayTimeAdapter o-- com.jxust.tutor.helpers.DateFormatHelper : formatHelper com.jxust.tutor.appFragments.SessionItemFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.appFragments.SessionLocationFragment .up.|> com.google.android.gms.maps.OnMapReadyCallback com.jxust.tutor.appFragments.SessionLocationFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.appFragments.SessionLocationFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.models.AudioRecording -up-|> com.jxust.tutor.models.Table com.jxust.tutor.models.AvailableTime -up-|> com.jxust.tutor.models.Table com.jxust.tutor.models.Course -up-|> com.jxust.tutor.models.Table com.jxust.tutor.models.DBHelper -up-|> android.database.sqlite.SQLiteOpenHelper com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.AudioRecording : audioRecording com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.AvailableTime : availableTime com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.Course : course com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.CoursesTutors : coursesTutors com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.Location : location com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.School : school com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.Student : student com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.Tutor : tutor com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.TutorRating : tutorRating com.jxust.tutor.models.DBHelper o-- com.jxust.tutor.models.TutoringSession : tutoringSession com.jxust.tutor.models.Location -up-|> com.jxust.tutor.models.Table com.jxust.tutor.models.School -up-|> com.jxust.tutor.models.Table com.jxust.tutor.models.Student -up-|> com.jxust.tutor.models.Table com.jxust.tutor.models.Tutor -up-|> com.jxust.tutor.models.Table com.jxust.tutor.models.TutorRating -up-|> com.jxust.tutor.models.Table com.jxust.tutor.models.TutoringSession -up-|> com.jxust.tutor.models.Table com.jxust.tutor.seeders.DatabaseSeeder o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.studentFragments.StudentBookingDetailsFragment .up.|> android.view.View.OnClickListener com.jxust.tutor.studentFragments.StudentBookingDetailsFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentBookingDetailsFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.studentFragments.StudentBookingFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentBookingFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.studentFragments.StudentHistoryDetailsFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentHistoryDetailsFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.studentFragments.StudentHistoryFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentHomeFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentPaymentFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentPaymentFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.studentFragments.StudentProfileEditFragment .up.|> android.view.View.OnClickListener com.jxust.tutor.studentFragments.StudentProfileEditFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentProfileEditFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.studentFragments.StudentProfileFragment .up.|> android.view.View.OnClickListener com.jxust.tutor.studentFragments.StudentProfileFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentProfileFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.studentFragments.StudentUpcSessionsDetailsFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.studentFragments.StudentUpcSessionsDetailsFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.tutorFragments.TutorAvailabilityFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorAvailabilityFragment o-- com.jxust.tutor.models.DBHelper : db com.jxust.tutor.tutorFragments.TutorCalendarFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorCalendarFragment o-- com.jxust.tutor.models.DBHelper : db com.jxust.tutor.tutorFragments.TutorHistoryDetailsFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorHistoryDetailsFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.tutorFragments.TutorHistoryFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorHomeFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorLocationFragment .up.|> com.google.android.gms.maps.OnMapReadyCallback com.jxust.tutor.tutorFragments.TutorLocationFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorLocationFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.tutorFragments.TutorProfileEditFragment .up.|> android.view.View.OnClickListener com.jxust.tutor.tutorFragments.TutorProfileEditFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorProfileEditFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.tutorFragments.TutorProfileFragment .up.|> android.view.View.OnClickListener com.jxust.tutor.tutorFragments.TutorProfileFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorProfileFragment o-- com.jxust.tutor.models.DBHelper : mydb com.jxust.tutor.tutorFragments.TutorSingleDayAvailabilityFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorSingleDayAvailabilityFragment o-- com.jxust.tutor.models.DBHelper : db com.jxust.tutor.tutorFragments.TutorUpcSessionsDetailsFragment -up-|> android.support.v4.app.Fragment com.jxust.tutor.tutorFragments.TutorUpcSessionsDetailsFragment o-- com.jxust.tutor.models.DBHelper : mydb right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
6af5875840433e82d4df29a26506a5d541ce5e71
e618e68be491bb98c0573a467be63146a053cc6c
/SA/sequencediagram/productdetail/DeleteProductDetail.puml
6a65146d70491c614d5dcb3ebda14ed6bcab2908
[]
no_license
dedeandress/belanjayukid-be-services
14101c676e2bdd56c5df72b9ccddae648951cf8b
9bedbf42cdd0b764e27c9dc839df8b401ac0bb62
refs/heads/master
2022-04-07T04:29:30.602535
2020-02-28T05:39:33
2020-02-28T05:39:33
194,123,362
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,521
puml
@startuml title: Delete Product Detail Sequence Diagram actor user participant BelanjaYukFE database BelanjaYukDB box "BelanjaYuk.id" #LightBlue participant BelanjaYukBE participant ProductDetailResolver participant ProductDetailService participant ProductDetailRepository participant JWTUtility participant BelanjaYukDB end box user -> BelanjaYukFE ++ : Delete Product Detail menu BelanjaYukFE -> BelanjaYukBE ++ : /graphql delete product detail note right of BelanjaYukFE content type: application/json request body: mutation { deleteProductDetail(productDetailId) } end note BelanjaYukBE -> ProductDetailResolver ++ : call ProductDetailResolver ProductDetailResolver -> ProductDetailService ++ : call ProductDetailService note left passing: - context - productDetailId end note ProductDetailService -> JWTUtility: validate token and claim role alt #LightGreen token is not expired alt #LightYellow role is admin ProductDetailService -> ProductDetailRepository ++ : update product detail status to false passing productDetailId ProductDetailRepository -> BelanjaYukDB ++ : update product detail status to false where id is passed from request BelanjaYukDB --> ProductDetailRepository -- : affected row no error and return int ProductDetailRepository --> ProductDetailService -- : affected row no error and return int alt int is not 0 ProductDetailService --> ProductDetailResolver : delete successful and return true ProductDetailResolver --> BelanjaYukBE : delete successful and return true BelanjaYukBE --> BelanjaYukFE: delete successful and return true else int is 0 ProductDetailService --> ProductDetailResolver : Error: Product Detail Not Found ProductDetailResolver --> BelanjaYukBE : Error: Product Detail Not Found BelanjaYukBE --> BelanjaYukFE: Message: Product Detail Not Found end alt else error: role is not admin ProductDetailService --> ProductDetailResolver : Error: Not Authorized ProductDetailResolver --> BelanjaYukBE : Error: Not Authorized BelanjaYukBE --> BelanjaYukFE: Message: You're not authorize end alt else token is expired ProductDetailService --> ProductDetailResolver -- : Error: token expired ProductDetailResolver --> BelanjaYukBE -- : Error: token expired BelanjaYukBE --> BelanjaYukFE -- : Message: token was expired end alt @enduml
false
true
false
false
usecase
80078d33d34e3e2037cce8d79050ef29e3ee2dae
c2d4c64eeba31b8cc826a0abf25cb646030cdb93
/webautomator-core/src/main/java/webautomator.puml
67db3729cf3e5d2024ee68fd801d6664e42c2aca
[ "Apache-2.0" ]
permissive
gigony/webautomator
1a58b16e1157fef4058c65628f45cefbd61d3373
1859a4a2005f0624f5f86a11803315887805396e
refs/heads/master
2020-05-17T05:51:39.643489
2015-04-08T22:42:46
2015-04-08T22:42:46
27,755,681
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,862
puml
@startuml package edu.unl.webautomator.core { 'package edu.unl.webautomator.core.internal {} package edu.unl.webautomator.core.model { 'package edu.unl.webautomator.core.model.internal {} } package edu.unl.webautomator.core.configuration { 'package edu.unl.webautomator.core.configuration.internal{} } package edu.unl.webautomator.core.platform { 'package edu.unl.webautomator.core.platform.internal{} } package edu.unl.webautomator.core.converter{ 'package edu.unl.webautomator.core.converter.internal{} } package edu.unl.webautomator.core.executor{ 'package edu.unl.webautomator.core.executor.internal{} } package edu.unl.webautomator.core.extractor{ 'package edu.unl.webautomator.core.extractor.internal{} } package edu.unl.webautomator.core.provider{ 'package edu.unl.webautomator.core.provider.internal{} } } interface Event interface WebEvent interface TestCase interface TestCaseExecutionResult interface State class WebAutomatorConfiguration class WebBrowserConfiguration class WebProxyConfiguration class edu.unl.webautomator.core.configuration.EventTypeConfiguration class Automator interface WebAutomator class WebAutomatorBase enum edu.unl.webautomator.core.BrowserType interface TestCaseConverter interface EventExecutor interface StateExtractor interface EventExtractor interface EventInputProvider enum edu.unl.webautomator.core.BrowserType{ CHROME FIREFOX IEXPLORER PHANTOMJS REMOTE } @enduml /* abstract class AbstractList abstract AbstractCollection interface List interface Collection List <|-- AbstractList Collection <|-- AbstractCollection Collection <|- List AbstractList <|-- ArrayList class ArrayList { + Object[] elementData - size() } enum TimeUnit { DAYS HOURS MINUTES } */
false
true
false
false
class
94e0becde51e9f7dd68338ad5a949e224ca325bc
4cf5737cadb807568ddac14c8f1ff342a6e6cb0a
/serviceSchema/sdWan/uml/policy.puml
0a6f2b49d3195315d83b60f0bf75ea84349db2ea
[ "Apache-2.0" ]
permissive
MEF-GIT/MEF-LSO-Legato-SDK
b2ed422108f4bbb5d3aff27123d3f31305fd808f
7f723970592cc5020aaaa0d2ffe30de6a73b3d97
refs/heads/working-draft
2023-07-06T06:44:01.113378
2023-06-23T14:14:48
2023-06-23T14:14:48
94,903,642
5
4
Apache-2.0
2022-05-04T10:22:56
2017-06-20T15:00:38
null
UTF-8
PlantUML
false
false
2,542
puml
@startuml skinparam { FontName Times ClassBackgroundColor White ClassBorderColor Black ClassBorderColor<<ServiceSpecification>> FireBrick } !define datatype(x) class x << (D,#FF7700) DataType>> !define enum(x) class x << (E,#ADD1B2) Enum>> datatype(Policy) { polName: String [1] polCl: PolicyCriteria [1..*] } Policy *--> "1..*" PolicyCriteria: polCl datatype(PolicyCriteria) { encryptionType: EncryptionType[1] internetBreakout: InternetBreakout [1] internetBreakoutDirection: InternetBreakoutDirection [1] publicPrivate: PublicPrivate [1] backUp: Backup [1] virtualTopology: VirtualTopology [1] allowedDestinationZones: Zone [0..*] billingMethod: BillingMethod [1] businessImportance: ApplicationFlowBusinessImportanceLevelIdentifier [1] performance: PerformancePolicyCriterion [1] bandwidth: BandwidthPolicyCriterion [1] afSecurityIngress: SecurityPolicy [1] blockSource: BlockSource[1] afSecurityEgress: SecurityPolicy [1] serviceProviderDefinedPolicyCriterion: ServiceProviderDefinedPolicyCriterion [1] } PolicyCriteria *-->"1" VirtualTopology: virtualTopology PolicyCriteria *-->"0..*" Zone: allowedDestinationZones PolicyCriteria *-->"1" ApplicationFlowBusinessImportanceLevelIdentifier: businessImportance PolicyCriteria *-->"1" PerformancePolicyCriterion: performance PolicyCriteria *-->"1" BandwidthPolicyCriterion: bandwidth PolicyCriteria *-->"1" SecurityPolicy: afSecurityIngress PolicyCriteria *-->"1" SecurityPolicy: afSecurityEgress PolicyCriteria *-->"1" ServiceProviderDefinedPolicyCriterion: serviceProviderDefinedPolicyCriterion enum EncryptionType { - REQUIRED_ALWAYS - REQUIRED_PUBLIC_ONLY - OPTIONAL } enum InternetBreakout { - ENABLED - DISABLED } enum InternetBreakoutDirection { - INGRESS - EGRESS } enum PublicPrivate { - PRIVATE_ONLY - EITHER } enum Backup { - ENABLED - DISABLED } enum BillingMethod { - FLAT_RATE_ONLY - USAGE_BASED_ONLY - EITHER } enum BlockSource { - UNI - INTERNET - UNI_INTERNET - EMPTY_LIST } datatype(VirtualTopology) { <<skipped>> } datatype(Zone) { <<skipped>> } datatype(ApplicationFlowBusinessImportanceLevelIdentifier) { <<skipped>> } datatype(PerformancePolicyCriterion) { <<skipped>> } datatype(BandwidthPolicyCriterion) { <<skipped>> } datatype(SecurityPolicy) { <<skipped>> } datatype(ServiceProviderDefinedPolicyCriterion) { <<skipped>> } @enduml
false
true
false
false
sequence
217a82aeba74ab1ef83d0958d183800bea6dc216
9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9
/java/resources/plantuml/structural/Composite1.puml
a33835966badfe0f8f05b6b8e92ada5dbf0f544c
[ "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
441
puml
@startuml Composite1 scale 1024 height interface Component { Operation() Add(Component) Remove(Component) GetChild(int) } class Leaf { Operation() } class Composite { Operation() Add(Component) Remove(Component) GetChild(int) } note left of Composite::Operation forall g in children g.Operation() end note Client -> Component Component <|-- Leaf Component <|-- Composite Component --o Composite : children @enduml
false
true
false
false
class
54870a478d192651cedcecd3c1ff5773caa1e7cb
f64fe6610e4c5d577a15bfb724284166220a513c
/Use cases/Library/create-sequence.puml
6f36c2ebe0789ba2b11646caa6300ab3a0c6e192
[ "Apache-2.0" ]
permissive
kathra-project/specifications
9f605febafa845dbe02988c1d00bd36298efd3e7
495100b867ab2bd6993caf3190a38b3afe0774f3
refs/heads/master
2022-12-17T06:55:11.624675
2020-08-04T17:44:25
2020-08-04T17:44:25
195,241,374
0
0
Apache-2.0
2022-12-06T01:32:33
2019-07-04T12:53:28
Shell
UTF-8
PlantUML
false
false
4,597
puml
@startuml title "Create library - Sequence Diagram" participant AppManager participant AppManager.LibraryService participant AppManager.RepositoryService participant AppManager.PipelineService participant ResourceManager participant SourceManager participant PipelineManager AppManager -> AppManager.LibraryService : add( \n Component component, \n Language language, \n Type type) : Library activate AppManager.LibraryService AppManager.LibraryService -> ResourceManager: POST /libraries \n [body: Library w/ type, language, component] activate ResourceManager ResourceManager -> ResourceManager: create Library into db AppManager.LibraryService <-- ResourceManager: Library w/ id] deactivate ResourceManager AppManager <-- AppManager.LibraryService : Library /w id AppManager.LibraryService -> AppManager.RepositoryService: RepositoryService.createLibraryRepository( \n Library library) : SourceRepository activate AppManager.RepositoryService AppManager.RepositoryService -> ResourceManager: POST /sourceRepositories \n [body: SourceRepository(status = PENDING)] activate ResourceManager ResourceManager -> ResourceManager: create SourceRepository \n into Db ResourceManager -> AppManager.RepositoryService: SourceRepository w/ id deactivate ResourceManager AppManager.RepositoryService -> ResourceManager: PATCH /libraries/:library.id (with sourceRepository = SourceRepository w/ id) activate ResourceManager ResourceManager -> AppManager.RepositoryService: Library deactivate ResourceManager AppManager.RepositoryService --> AppManager.LibraryService : SourceRepository w/ id AppManager.RepositoryService -> SourceManager: POST /createRepository [body: SourceRepository{"path"=:library.component.metadata.groupPath/:library.component.name/:library.language/:library.type)] activate SourceManager SourceManager -> GitLab: git create SourceManager -> AppManager.RepositoryService: SourceRepository { \n\ \t"name"= "api", \n\t"provider"= <providerName>,\n\t"providerId"= <SourceManagerProviderRepoId>\n\ \t"sshUrl"= <SourceManagerProviderSshUrl>, \n\t"httpUrl"= <SourceManagerProviderHttpUrl>, \n\t"webUrl"= <SourceManagerProviderWebUrl>, \n\t"branches"= ["master","dev"] \n\ } deactivate SourceManager AppManager.RepositoryService -> ResourceManager: PATCH /sourceRepositories/{sourceRepositoryId} \n [params: "sourceRepositoryId"= :SourceRepository.id] \n [body: SourceRepository { \n\t"provider"= <providerName>,\n\t"providerId"= <SourceManagerRepoId>\n\ \t"sshUrl"= <SourceManagerProviderSshUrl>, \n\t"httpUrl"= <SourceManagerProviderHttpUrl>, \n\t"webUrl"= <SourceManagerProviderWebUrl>, \n\t"branches"= ["master","dev"], \n\t"status"=READY \n\ }] deactivate AppManager.RepositoryService == Wait until SourceRepository status is READY (sshUrl is required) == AppManager.LibraryService -> AppManager.PipelineService: PipelineService.createPipeline(\n Library library (mandatories: Component, SourceRepository)) : Pipeline activate AppManager.PipelineService AppManager.PipelineService -> ResourceManager: POST /pipelines \n [body:Pipeline \n (mandatories: \n status = PENDING)] activate ResourceManager ResourceManager -> ResourceManager: create pipeline into db ResourceManager -> AppManager.PipelineService: Pipeline w/ id deactivate ResourceManager AppManager.PipelineService -> ResourceManager: PATCH /libraries/:library.id (with pipeline = Pipeline w/ id) activate ResourceManager ResourceManager -> AppManager.PipelineService: Library deactivate ResourceManager AppManager.PipelineService --> AppManager.LibraryService: Pipeline w/ id AppManager.PipelineService -> PipelineManager: POST /createPipeline \n [Body: Pipeline { "path"=:groupPath/:component.name/:language/::library \n "sourceRepository"=:library;sourceRepository \n "template"=[JavaLibrary,JavaService,PythonLibrary,PythonService}] activate PipelineManager PipelineManager -> Jenkins: Create Jenkins pipeline from template into folder : \n :folderName/:jobName PipelineManager -> AppManager.PipelineService: READY deactivate PipelineManager AppManager.PipelineService --> ResourceManager: PATCH /pipelines/:pipelineId \n [body:Pipeline (mandatories: \n status = READY)] deactivate AppManager.PipelineService == Wait Pipeline and SourceRepository status are READY == AppManager.LibraryService -> ResourceManager: PATCH /libraries/:libraryId (with status = READY) activate ResourceManager AppManager.LibraryService <- ResourceManager : Library updated w/ Pipeline and SourceRepository deactivate ResourceManager deactivate AppManager.LibraryService @enduml
false
true
false
false
sequence
b6bdf8dcb61da713f754456982d9ab004e4a79ba
9c198fb5104f485ae744900fe9b0de5e4fd4cf6d
/diag.puml
37f0d7f282b03edbb89347c7675c04e6f1799e7c
[]
no_license
x1a/fsm-xml-parser
58b22473fe7cb787dc9b042002ba37c1c3faf367
4c1b8b6b90f1cbaabf5536c7ce6004ac97320b0b
refs/heads/master
2021-07-24T20:03:22.526064
2020-06-15T04:57:28
2020-06-15T04:57:28
187,495,224
0
0
null
null
null
null
UTF-8
PlantUML
false
false
579
puml
@startuml class XMLReader class Statemachine abstract class Reader { # XMLReader $xml # Parser $parser + void read(string $filepath) # {abstract} void attachEventHandlers() } class Parser { # Statemachine $fsm + addTransition( ... ) + attachHandler( ... ) } class MyReader { # void attachEventHandlers() } class MyParser note right of MyParser: Initialize state machine\ndefinition note left of MyReader: Define XML\nevent handlers XMLReader -* Reader Reader *- Parser Parser *- Statemachine Reader <|-- MyReader Parser <|-- MyParser @enduml
false
true
false
false
class
a2bdb8242dff0a0d9ca70343e3ebf08130092330
12a1300d6509f1a876be8ff8fdfde8093d16d615
/BankTransaction_Diagram.puml
d0f4048aa519d239c639285b2b40a9cb9b7da047
[]
no_license
hahagioi111/Banking_Techmaster_Java1B
96d42e23d55207356d1f1f8325fded87f124c4cc
a5753aab0332fa840ad63de183c0f935ad29fce1
refs/heads/main
2023-04-03T22:47:26.195643
2021-04-15T04:50:56
2021-04-15T04:50:56
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,850
puml
@startuml skinparam classAttributeIconSize 0 class SavingAccount implements finalSettlement class LoanAccount implements finalSettlement class CurrentAccount extends Account CurrentAccount "1" - "0..*" SavingAccount CurrentAccount "1" - "1" LoanAccount CurrentAccount "1" - "0..*" Transaction interface finalSettlement { +{abstract}finalSettlement(): double } class Account { -id: String -CURRENCY: "VND" -customerName: String -accountNumber: String -dateCreated: Date +Account(): +Account(customerName: String, id: String) +getId(): String +setId(id: String): Void +getCustomerName(): String +setCustomerName(customerName: String): Void +getDateCreated(): Date +setDateCreated(dateCreated: Date): Void } class CurrentAccount { -MINIMUM_BALANCE: double -FEE: double -ArrayList<> transactions: Transaction -ArrayList<> savingAccounts: SavingAccount -ArrayList<> loanAccounts: LoanAccount -balance: double -annualInterestRate: double +CreateAccount(): CurrentAccount +createSavingAccount(): SavingAccount +createLoanAccount(): LoanAccount +deposit(): Void +withdraw(): Void +printCard(): Void +isActiveLA(): String +isActiveVA(): String } class SavingAccount { -MINIMUM_START_BALANCE: double -startBalance: double -dateCreated: Date -balance: double -savingTerm: int -regularSavingAmount: double -annualInterestRate: double +SavingAccount() +SavingAccount(startBalance: double, regularSavingAmount: double, savingTerm: int, annualInterestRate: double) +{static}getSavingInterestRate(month: int): double +savingCalculator(): Void +printSavingAccount(): Void +getMonthInterest(month: int): double +getTotalDeposit(month: int): double +getTotalDeposit(month: int, interestRate: double): double +getRemainDeposit(day: int): double +isMatchSavingTerm(): boolean +finalSettlement(): double } class LoanAccount { -{static}LOAN_INTEREST_RATE: double[] -loanAmount: double -loanTerm: int -loanInterestRate: -dateCreated: Date +LoanAccount() +LoanAccount(loanTerm: int, loanAmount: double, loanInterestRate: double) +getMonthlyPayment(): double +getTotalPayment(): double +getTotalPayment(month: int): double +isMatchLoanTerm(): boolean +printLoanAccount(): Void +LoanCalculator(): Void +finalSettlement(): double } class Transaction { -date: Date -type: String -amount: double -balance: double -description: String +Transaction() +printTransactions(): Void +getDate(): Date +getType(): String +getAmount(): double +getDescription(): String } class BankMethods { +{static}getTimeElapsed(dateCreated: Date, now: Date): Int[] +{static}generateAccNumber(): String +{static}printMainMenu(): Void +{static}printTransactionActivityHead(): Void +{static}printSavingAccountStatementHead(): Void +{static}convertDate(date: Date): String +{static}convertDetailDate(date: Date): String +{static}parseDate(date: String): Date +{static}pressEnter(): Void } @enduml
false
true
false
false
class
0e27b6664d102c0fe9ad6f9421659f69d32b9708
713429c67970834447aad4d58c4ebb9c8cf9f81c
/src/me/ronggenliu/dp/creation/builder/classes.puml
44c554fb104fc7ce7d3f411b50acba3941ba9891
[ "MIT" ]
permissive
ronggenliu/DesignPattern
54c7bf007ae8c07824d40f0da5424d9f03711d48
62539629c06430276453f6e9b6bff0ce57d05752
refs/heads/master
2021-01-19T10:36:42.373083
2017-05-29T03:33:17
2017-05-29T03:33:17
87,881,974
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,134
puml
@startuml class Client { - builder:ConcreteProduct1Builder - director:Director } class Director { - builder:ProductBuilder __ .. + construct():Product } abstract class ProductBuilder { - product:Product __ HookMethod .. + needPartB():boolean + {abstract} buildPartA() + {abstract} buildPartB() + {abstract} buildPartC() + getResutl():Product } together { class ConcreteProduct1Bulder { + needPartB():boolean + buildPartA() + buildPartB() + buildPartC() } class ConcreteProduct2Bulder { + needPartB():boolean + buildPartA() + buildPartB() + buildPartC() } } class Product { - partA:String - partB:String - partC:String __ get/setter .. } note as n1 builder.buildPartA(); builder.buildPartB(); builder.buildPartC(); return builder.getResult(); end note n1 .. Director Client -right-> Director Director o-right- ProductBuilder ProductBuilder o-up- Product ProductBuilder <|-- ConcreteProduct1Bulder ProductBuilder <|-- ConcreteProduct2Bulder @enduml
false
true
false
false
class
69e37a5d3c4dde6f082f1535b746ae3dbe0a3015
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Animation/BindingSelector.puml
3b7b180dd83f8d9a9c05889788e106ad99fc696e
[]
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
1,166
puml
@startuml class BindingSelector { m_PartOfSelection : bool + BindingSelector(window:EditorWindow, curveEditor:CurveEditor, trackGlobalTreeViewState:TreeViewState) + selectable : bool <<get>> + selectableObject : object <<get>> + selected : bool <<get>> <<set>> + <<virtual>> Delete(state:WindowState) : void + OnGUI(targetRect:Rect) : void + InitIfNeeded(rect:Rect, dataSource:CurveDataSource, isNewSelection:bool) : void OnItemSelectionChanged(selection:int[]) : void RefreshAll() : void RefreshSelection() : void RefreshSelection(selection:int[]) : void + RefreshCurves() : void + RefreshTree() : void } BindingSelector --> "m_TreeView" TreeViewController BindingSelector --> "treeViewController" TreeViewController BindingSelector --> "m_TrackGlobalTreeViewState" TreeViewState BindingSelector --> "m_TreeViewState" TreeViewState BindingSelector --> "m_TreeViewDataSource" BindingTreeViewDataSource BindingSelector --> "m_CurveDataSource" CurveDataSource BindingSelector --> "m_Window" TimelineWindow BindingSelector --> "m_CurveEditor" CurveEditor BindingSelector --> "m_DopeLines" ReorderableList @enduml
false
true
false
false
class
1872aee78b68471fc64951bfd2c8ec74c7cb6035
73b12f65ad37323eb7566a424e990c3a322752bd
/docs/uml/v2/use_cases/modules.puml
ce84c8a61ae416dd4a32177ec2d29432bb81c600
[]
no_license
dgoncalv/Projet-AppModule
90807cfbd4b3556e7e12ac42ae4e0f57a05b1e60
27c2f64ad21583e577a2f457dfeafb8d2579c0cf
refs/heads/main
2023-04-04T13:21:12.474997
2021-04-11T07:56:28
2021-04-11T07:56:28
356,546,359
0
0
null
null
null
null
UTF-8
PlantUML
false
false
187
puml
@startuml left to right direction skinparam packageStyle rectangle actor User database Database rectangle "Gestion modules" { User -- (Fichier CSV) (Fichier CSV) -- Database } @enduml
false
true
false
false
usecase
f3fc58a02af05d42f79be2e2a4a6a49cdd7e0460
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StandalonePriceTierAddedMessage.puml
504afa1abf4ecfb20746b7791bed4bb27d21be4b
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
1,181
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 StandalonePriceTierAddedMessage [[StandalonePriceTierAddedMessage.svg]] extends Message { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] tier: [[PriceTier.svg PriceTier]] } interface Message [[Message.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] } @enduml
false
true
false
false
class
27b21ff69f9ee0c466fc45473bbd8d796c919a7c
0b68904d2e35615f75fb035ed42106b5f3d441cc
/Proyectos/RPG-Colecciones/src/rpg/colecciones/Bolsa.puml
ddf7a135b5dd6c72ff91a7d0657b70620be65900
[]
no_license
meschoyez/111mil-2019
c8a329060831006ce40999908121c421291ba8b2
8850c95cbdbc7021094c5b0d18fb07e4e819976e
refs/heads/master
2020-05-02T21:19:41.668425
2019-09-17T14:58:08
2019-09-17T14:58:08
178,217,006
5
2
null
null
null
null
UTF-8
PlantUML
false
false
504
puml
@startuml Bolsa skinparam ClassAttributeIconSize 0 hide circle class Heroe { - Bolsa bolsa - Objetos objeto } class Bolsa { - Integer PESO_MAXIMO - TreeMap<String, Objetos> porNombre + addObjeto (Objetos obj) + Objetos getObjeto (String nombre) + ArrayList<Objetos> getObjetosEnLaBolsa() + Objetos getEspada () + Integer getPesoLibre () + void addPeso (Integer peso) } class Objetos <<Abstract>>{ } Bolsa <- Heroe Heroe --> Objetos Bolsa --> Objetos @enduml
false
true
false
false
class
a3174acd3d4d06947eb305a0e6a2a52ff8823a35
c1165853f2713632ce06308b5aa8dc50a5b9ceca
/examples/sidecar-init/components.puml
720a11f225d10b67bccd40e286b88e1819a9d183
[ "MIT" ]
permissive
rycus86/podlike
7a018fd68673bb5ddb138fd59a55eda34876135d
5e394691e24d85920729051142db6227a92d62a2
refs/heads/master
2023-05-31T14:00:36.910715
2022-10-29T07:17:51
2022-10-29T07:17:51
130,613,123
73
15
MIT
2023-05-11T20:38:35
2018-04-22T22:30:23
Go
UTF-8
PlantUML
false
false
216
puml
@startuml frame "pod" { [app] as app << demo-site >> #aaf [proxy] as pxy << nginx >> #afa } actor User User -> pxy : Handle external requests pxy -> app : Cached requests\n+ serve stale on error @enduml
false
true
false
false
sequence
b1595838ae3752f8d3a080b89f582090792ae41e
f2893b3141066418b72f1348da6d6285de2512c6
/modelViewPresenter/presentationModel/withDoubleDispatching/docs/diagrams/src/vistas.plantuml
4e612b305638d33a03e814c28271087c6dda236e
[]
no_license
x-USantaTecla-game-connect4/java.swing.socket.sql
26f8028451aab3c8e5c26db1b1509e6e84108b0d
28dcc3879d782ace1752c2970d314498ee50b243
refs/heads/master
2023-09-01T11:43:43.053572
2021-10-16T16:19:50
2021-10-16T16:19:50
417,161,784
0
1
null
null
null
null
UTF-8
PlantUML
false
false
817
plantuml
@startuml desarrolloImplementacion package " " as tictactoe { } package " " as tictactoe.models { } package " " as tictactoe.types { } package " " as tictactoe.controllers { } package " " as tictactoe.views { } package " " as tictactoe.views.console { } package " " as tictactoe.views.graphics { } package " " as utils { } package " " as java.io { } package " " as java.util { } [tictactoe.jar] as jar jar *--> tictactoe jar *--> tictactoe.models jar *--> tictactoe.types jar *--> tictactoe.controllers jar *--> tictactoe.views jar *--> tictactoe.views.console jar *--> tictactoe.views.graphics jar *--> utils jar *--> java.io jar *--> java.util @enduml @startuml despliegueFisica node node #DDDDDD [ <b>Personal Computer</b> ---- ] [ tictactoe.jar ] as component node *--> component @enduml
false
true
false
false
class
c7bc976ea82310d2532dba8e4e8f7cf1c03845a2
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/UnityTestProtocol/TestState.puml
0ec93f10d8c573449702b071cfb1c585f708f308
[]
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
136
puml
@startuml enum TestState { Inconclusive= 0, Skipped= 2, Ignored= 3, Success= 4, Failure= 5, Error= 6, } @enduml
false
true
false
false
class
35fd727a3dbf4b43202c58ca6cd1423821124659
4e2586435708420f782c03c1303da7219890941e
/docs/diagrams/Command.puml
6cb2f4a719adbf7f7d96b69bd64b97913b7a9be3
[]
no_license
AY2021S1-CS2113-T13-1/tp
720454016061d5dbc23067e4505e2eac87e04449
4345646e211cdaeed2dfdf2e691e334c2d8e32ad
refs/heads/master
2023-01-19T13:31:58.992002
2020-11-10T12:57:57
2020-11-10T12:57:57
297,301,678
0
7
null
2020-11-10T12:57:58
2020-09-21T10:12:20
Java
UTF-8
PlantUML
false
false
1,421
puml
@startuml hide circle skinparam classAttributeIconSize 0 Package " "<<Rectangle>>{ Class Command <<abstract>> Class AddEventCommand Class AddNoteCommand Class ArchiveNoteCommand Class CreateTagCommand Class DeleteEventCommand Class DeleteNoteCommand Class DeleteTagCommand Class EditEventCommand Class EditNoteCommand Class ExitCommand Class FindCommand Class HelpCommand Class IncorrectCommand Class ListEventCommand Class ListNoteCommand Class ListTagCommand Class PinCommand Class RemindCommand Class TagEventCommand Class TagNoteCommand Class UnarchiveNoteCommand Class ViewNoteCommand } AddEventCommand -up-|> Command AddNoteCommand -up-|> Command ArchiveNoteCommand -up-|> Command CreateTagCommand -up-|> Command DeleteEventCommand -up-|> Command DeleteNoteCommand -up-|> Command DeleteTagCommand -up-|> Command EditEventCommand -down-|> Command EditNoteCommand -down-|> Command ExitCommand -down-|> Command FindCommand -down-|> Command HelpCommand -down-|> Command IncorrectCommand -down-|> Command ListEventCommand -down-|> Command ListNoteCommand -left-|> Command ListTagCommand -left-|> Command PinCommand -left-|> Command RemindCommand -left-|> Command TagNoteCommand -right-|> Command TagEventCommand -right-|> Command UnarchiveNoteCommand -right-|> Command ViewNoteCommand -right-|> Command @enduml
false
true
false
false
class
52dde60dea5a9b7430f99a7afd4856072716f5c8
aa537649e0277cb002ea7103ad639d425ca5e5f6
/uml/Assignment4.puml
5654b26d34277d3bc1b09fb8a4c41197514aa7a4
[]
no_license
jgpeachey/Peachey-COP3330-Assignment4
424350fe6a759353cedce9ce818a7cef63f2d2a3
58138a42f018c0411ddd26f0eb6ad8aaa6a33299
refs/heads/master
2023-06-18T18:05:55.549461
2021-07-06T03:32:46
2021-07-06T03:32:46
381,157,197
0
0
null
null
null
null
UTF-8
PlantUML
false
false
757
puml
@startuml 'https://plantuml.com/class-diagram class App { main() start() } class GuiCentral{} class ListCentral { +Map of a list of list -Map of a list of items newList() editListTitle() removeList() addItem() removeItem() getItemInfo() editItemInfo() markComplete() markIncomplete() sortItems() } class FileCentral { saveSingleList() saveAll() loadSingleList() loadMultiList() } javafx.Application <|--- App javafx.MainWindow o-- javafx.TitleWindow javafx.MainWindow o-- javafx.SaveWindow javafx.MainWindow o-- javafx.LoadWindow javafx.MainWindow o-- javafx.ListWindow javafx.ListWindow o-- javafx.ItemWindow App o-- ListCentral App o-- FileCentral App o-- GuiCentral @enduml
false
true
false
false
class
a1b87f282f4ce0ee1ce6311af8ee1b9dc8b6a44a
5992899e0dc7e047598bf810d6d66fb171b6b8fa
/src/main/javadoc/resources/fr/kbertet/dgraph/io/DGraphWriterFactory.iuml
6bd9e88bdce7d6deaeeb81ab3706f2288c3cf065
[ "CECILL-B" ]
permissive
kbertet/java-lattices
9e237162ce8330f64769e27284a7f98fa189206f
ddca76f97c41024866e3f3a32b719cb0492c034b
refs/heads/master
2020-12-03T09:19:43.451861
2014-12-12T11:20:45
2014-12-12T11:20:45
29,913,611
1
0
null
2015-01-27T12:41:58
2015-01-27T12:41:58
null
UTF-8
PlantUML
false
false
354
iuml
package fr.kbertet.dgraph.io { class DGraphWriterFactory { -{static}HashMap<String, DGraphWriter> writers +{static}DGraphWriter register(DGraphWriter writer, String extension) +{static}DGraphWriter unregister(String extension) +{static}DGraphWriter get(String extension) } DGraphWriterFactory o-- DGraphWriter }
false
true
false
false
class
7419547dd4223176a08e287e65463d2b83604ba2
129da0091c5a1285f2bfdf36a8ba7b9ed8abf076
/eventmate/uml/user_usecase.puml
73a0a03794e75a48942f047195b20d12b1ddecbb
[]
no_license
zmaciulewska/EventMate
0de3883e46fe4cca02fc51757e9ca0e686d9bf27
5dd65c4d36c4e50764983ad766fb752b0d1c6450
refs/heads/master
2023-02-16T04:04:59.006843
2021-01-10T14:30:42
2021-01-10T14:30:42
196,836,082
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,279
puml
@startuml usecase przegladanieWydarzen as "Przeglądanie wydarzeń" usecase propozycjaWydarzenPublicznych as "Tworzenie propozycji wydarzeń publicznych" zalogowany -- przegladanieWydarzen zalogowany --> propozycjaWydarzenPublicznych propozycjaWydarzenPublicznych ..> (Wypełnienie formularza\ndotyczącego wydarzenia) : <<include>> zalogowany -right-> (Zarządzanie swoimi niezatwierdzonymi\npropozycjami wydarzeń - edycja, usuwanie) zalogowany --> (Tworzenie wydarzeń prywatnych) (Tworzenie wydarzeń prywatnych) ..> (Wypełnienie formularza\ndotyczącego wydarzenia) : <<include>> zalogowany -left-> (Zarządzanie swoimi wydarzeniami\nprywatnymi - edycja, usuwanie) zalogowany --> (Tworzenie ofert\ndotyczących wydarzeń publicznych) (Tworzenie ofert\ndotyczących wydarzeń publicznych) ..> (Wypełnienie formularza dotyczącego oferty) : <<include>> zalogowany -up-> (Zarządzanie swoimi ofertami\ndo wydarzeń - edycja, usuwanie) zalogowany -up-> (Odpowiadanie na oferty\ndotyczące wydarzeń publicznych) zalogowany -up-> (Wyrażenie chęci współudziału\nw wydarzeniu prywatnym) zalogowany -up--> (Edytowanie profilu) (Edytowanie profilu) <.right. (Edytowanie wizytówki) : <<extends>> (Edytowanie profilu) <.right. (Edytowanie preferencji) : <<extends>> @enduml
false
true
true
false
usecase
eb1ad902e3e98dd3cce4ef4d60cbc88091ae9f4e
622e5a1dc84a81d5ed59162d19ed6ddae089b3d5
/protocols/dlms/simulator/dlms-device-simulator-profiles.puml
d32c54fbdc0255c00416182b50b07e0bee1a39de
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "GPL-3.0-only" ]
permissive
OSGP/Documentation
290c736d0680dd13450eba19a007a62909095e12
e3b94360068b1e18b78c3957696fc915adab9d92
refs/heads/development
2023-08-17T01:11:35.820920
2023-07-04T09:57:40
2023-07-04T09:57:40
34,963,325
25
19
Apache-2.0
2023-06-08T11:18:03
2015-05-02T21:06:14
null
UTF-8
PlantUML
false
false
1,214
puml
' SPDX-FileCopyrightText: Contributors to the GXF project ' ' SPDX-License-Identifier: Apache-2.0 @startuml package org.opensmartgridplatform.simulator.protocol.dlms.server.profile { class DefaultDeviceProfile << @Configuration, @Profile ( "default" ) >> { + Map<String, CosemInterfaceObject> cosemClasses(ApplicationContext context) + OctetStringData deviceId1() } note top of DefaultDeviceProfile The default profile is based on the Dutch companion standard DSMR 4 end note note left of DefaultDeviceProfile::"cosemClasses(ApplicationContext context)" Spring Bean definition that collects all CosemInterfaceObject beans from Spring configuration classes with activated profiles. end note note left of DefaultDeviceProfile::deviceId1() Spring Bean definition of a class extending CosemInterfaceObject. A default value is set on DynamicValues based on the configured value for deviceidentification.serialnumber in application-default.properties. end note class Smr5Profile << @Configuration, @Profile ( "smr5" ) >> note top of Smr5Profile Enabling this profile adds COSEM objects based on Dutch companion standard SMR 5 to the simulated server end note } @enduml
false
true
false
false
class
b87a9b1ac11f841ff37764ee9941afd70be4952b
0f4a138bab8f8f464eadcc32d8c8c460491c7413
/target.puml
028a963efe0e48bbaa0ebfd6127b0953224c58e1
[]
no_license
lavcraft/microservices-mastering
0ac1656d77027b2987d0cd7a0db09b5f32f245f2
e71d0b27d733e869317fa70c1c3633c4fca08e03
refs/heads/master
2020-12-25T19:03:29.688606
2015-10-17T11:59:30
2015-10-17T11:59:30
42,451,249
22
10
null
2015-10-17T11:59:31
2015-09-14T13:45:44
Java
UTF-8
PlantUML
false
false
563
puml
@startuml component gateway component discovery_server component config_server component user_service component fee_service component payment_service [fee_service] -l-> [user_service] [fee_service] -r-> [payment_service] [fee_service] <-u--> gateway [payment_service] -u--> gateway [user_service] -u--> gateway fee_service <-u-> discovery_server user_service <-u--> discovery_server payment_service <-u-> discovery_server gateway -l-> discovery_server fee_service -d-> config_server user_service -d-> config_server payment_service -d-> config_server @enduml
false
true
false
false
component
247527f4825cb8e8f8f9f345b8564b850c688086
694fd70b693c9670161b2492ece407123bf11cad
/plantuml/designpattern/concept-state-3.plantuml
d75a3cf6a424128428d609a21336463cf1150f83
[ "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
1,366
plantuml
@startuml participant Client 'participant HighState 'participant MiddleState 'participant LowState activate Client create Computer Client -> Computer : new activate Computer Computer -> HighState : getMaxCpuClock() activate HighState Computer <- HighState deactivate HighState Computer -> HighState : getMaxRamBandwidth() activate HighState Computer <- HighState deactivate HighState Computer -> HighState : checkState() activate HighState Computer <- HighState : changeState() deactivate HighState deactivate Computer Client -> Computer : setBattery(70) activate Computer Computer -> HighState : checkState() activate HighState Computer <- HighState : changeState() deactivate HighState Computer -> MiddleState : getMaxCpuClock() activate MiddleState Computer <- MiddleState deactivate MiddleState Computer -> MiddleState : getMaxRamBandwidth() activate MiddleState Computer <- MiddleState deactivate MiddleState deactivate Computer Client -> Computer : setBattery(20) activate Computer Computer -> MiddleState : checkState() activate MiddleState Computer <- MiddleState : changeState() deactivate MiddleState Computer -> LowState : getMaxCpuClock() activate LowState Computer <- LowState deactivate LowState Computer -> LowState : getMaxRamBandwidth() activate LowState Computer <- LowState deactivate LowState deactivate Computer deactivate Client @enduml
false
true
false
false
sequence
17fa5b5aa856fe68868a7b82541586f5c6319f45
6c369b570f222c894964989ee63b706c69e8174d
/docs/dev/todo/core_model2.puml
9592da8f714be99eddfd67ae25983eb61d87f33e
[]
no_license
k2works/etude_for_rails
f74eae1844a9430d3c81047203ffc5d384e995ed
e728291c99ad4e34f144deedc44617bb796ac275
refs/heads/master
2021-01-20T01:46:29.373716
2018-04-26T08:53:20
2018-04-26T08:53:20
89,328,180
0
0
null
2017-06-08T02:25:58
2017-04-25T07:00:29
HTML
UTF-8
PlantUML
false
false
326
puml
@startuml ApplicationController <|-- TasksController ActiveRecord::Base <|-- Task TasksController --> DB TasksController -r-> Task DB --> Task TasksController --> View class TasksController { } class DB { prepare() } class Task { name content status } package View { class index class show class new class edit } @enduml
false
true
false
false
class
2985ada3b0312ae4472fb19844a45c73dd4072e0
72040a18986c65b0fe8976c2b91788854efb7428
/exercise43/docs/UML43.puml
6cc6ce4b00386eb0dd33baa78f601aab004a9e8c
[]
no_license
Srignan/Paruchuru-a04
e258ff764df1444f296cf237f47575403a804fa5
f9f99298fef4ddc606bac000ab86acd41710f1bb
refs/heads/main
2023-08-31T14:40:25.589842
2021-10-18T03:14:07
2021-10-18T03:14:07
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
287
puml
@startuml 'https://plantuml.com/sequence-diagram class App{ + askForName String() + askForAuthor String() + askJS boolean() + askCSS boolean() } class makeWebsite{ + setFiles void() + makeDirectories void() + makeHTML String() } App o-> makeWebsite @enduml
false
true
false
false
class
79101dc69e336e16de305d9205214556df1c9300
3c74f15950bd77d3bd52220e9d2972f769e54bc0
/Diagramme/Klassen/TinyTasksKit/Worker/Group/WorkerGroups.puml
8455a96c79eba0c6ef78088e0c3f18552c0aa58e
[]
no_license
Louis9902/Sosse19-SE
eff56539eed3e27e24342341356228ce5de7bd7c
6c146a6808781acbc6bf4e43157e2294013e65a3
refs/heads/master
2020-05-03T20:59:21.361284
2019-06-20T16:01:10
2019-06-20T16:01:10
178,814,946
2
0
null
2019-06-11T15:17:16
2019-04-01T08:05:57
C#
UTF-8
PlantUML
false
false
356
puml
@startuml class WorkerGroups { - {static} <<readonly>> Groups : Lazy<WorkerGroups> - {static} <<readonly>> WorkerType : Type - <<readonly>> bindings : TypeObjectBindings<Guid> - WorkerGroups() + {static} ObjectBindings : TypeObjectBindings<Guid> <<get>> - SearchGroups() : void - SearchTypes(assembly:Assembly) : void } @enduml
false
true
false
false
class
134cb5bd1dbed3525c8058c37c7ae3508b50dcc7
7e06b9ae95eb5667977b8471cec7446d6553983c
/exercise46/docs/classDiagram.puml
3d030ff8627637f4a7b92ba5f0c741ad206ac0f5
[]
no_license
Zandroid505/Antifit-a04
5885ffb8003b8c47bcac236e2d1bd43ce78b6667
acbdd0b25bbe7e7200ad92d538797319d72cf5fa
refs/heads/main
2023-08-31T09:09:16.654323
2021-10-17T21:25:35
2021-10-17T21:25:35
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
544
puml
/* * UCF COP3330 Fall 2021 Assignment 4 Solutions * Copyright 2021 first_name last_name */ @startuml 'https://plantuml.com/class-diagram WordCounter o-- Solution46 class Solution46 { 'Create WordCounter object and call methods readInFile() sortMap() outputWordFrequency() } class WordCounter { - wordFrequency: Map<String, Integer> + readInFile(String): void - updateWordFrequency(String): void + sortMap(): Map<String, Integer> + outputWordFrequency(Map<String, Integer>, String): void } @enduml
false
true
false
false
class
70da95a2ffbc64c1a6495c2a3c510998b89bd98c
fb6cdc303c504ac460aabff216b9eb7d6cbae95d
/src/main/java/com/bgzyy/design/pattern/decorator/CoffeeDecorator.puml
b3c04ba2e35556aed80c2b59e373fdf7ac7f4a3a
[]
no_license
bgzyy/Design-Patterns
67484fd535fb7c41e22cc8122e274b470ca011c8
6e0a2853814708ead8eae7a72171e61f705b6409
refs/heads/master
2023-01-01T16:12:13.380936
2020-10-24T08:48:19
2020-10-24T08:48:19
306,841,209
0
0
null
null
null
null
UTF-8
PlantUML
false
false
603
puml
@startuml abstract class Drink { - description: String - price: Double + getDescription(): String + cost(): Double } class Coffee class ShortBlack { + cost(): Double } class Decaf { + cost(): Double } Class Decorator { - drink: Drink + getDescription(): String + cost(): Double } class Milk { + getDescription(): String + cost(): Double } class Soy { + getDescription(): String + cost(): Double } Coffee --|> Drink ShortBlack --|> Coffee Decaf --|> Coffee Decorator <|-- Milk Decorator <|-- Soy Decorator --|> Drink Drink --o Decorator @enduml
false
true
false
false
class
97e97ecb519600d3b48b21ab70ac552b03f97d61
c9c2f90718cd6439c1fc98b24921fd196e989f8a
/ADR.plantuml
af715fa75fec61038b13ce4b47f23e8c15ea27e6
[]
no_license
adr/adr.github.io
7c6202b42c8f0f45215cb04a3d115215eb5476c2
18db65d81d94b6a48e3f7c0935df5e14f08350f4
refs/heads/main
2023-05-12T01:25:55.954398
2023-05-03T07:51:42
2023-05-03T07:51:42
97,118,987
132
29
null
2023-04-19T09:27:34
2017-07-13T12:13:26
null
UTF-8
PlantUML
false
false
188
plantuml
@startuml skinparam monochrome true hide members abstract class ADR { } ADR <|-- MADR class MADR { } ADR <|-- YStatement class YStatement { } ADR <|-- Nygard class Nygard { } @enduml
false
true
false
false
class
3c97c22e79e33f5f9f2a549d04b3b9b8dc4d34cd
8a7d4e7348e7cf75ea65d857f140d0454add6f84
/docs/src/developer/subarraynode/csp.puml
411ad6354959d8d09e2d87c5e1583caaec372d0a
[ "BSD-3-Clause" ]
permissive
ska-telescope/cdm-shared-library
d1812ed010a09765a5be5a41d1c7e8e9694d110a
87083655aca8f8f53a26dba253a0189d8519714b
refs/heads/master
2023-09-01T08:27:16.704307
2023-08-08T13:01:10
2023-08-08T13:01:10
191,747,755
0
0
BSD-3-Clause
2023-02-10T13:48:25
2019-06-13T11:11:28
Python
UTF-8
PlantUML
false
false
2,382
puml
@startuml hide empty members ' Remove the following lines when VLBI, PSS and PST ' are added to CDM remove VLBIConfiguration remove PSTConfiguration remove PSSConfiguration package ska_tmc_cdm.messages.subarray_node.configure { package csp.py <<Rectangle>> { class SubarrayConfiguration { subarray_name: str } class CommonConfiguration { config_id: str frequency_band: core.ReceiverBand subarray_id: int band_5_tuning: List[float] } class CBFConfiguration { vlbi: dict } class PSTConfiguration { } class PSSConfiguration { } class VLBIConfiguration { } enum FSPFunctionMode { CORR PSS-BF PST-BF VLBI } class FSPConfiguration { fsp_id : int function_mode : FSPFunctionMode frequency_slice_id : int integration_factor : int zoom_factor : int channel_average_map : List[Tuple] output_link_map : List[Tuple] zoom_window_tuning: int } class CSPConfiguration { interface: str pss: dict pst: dict } class LowCBFConfiguration { stations: StationConfiguration timing_beams: TimingBeamConfiguration } class StationConfiguration { stns: List[List[int]] stn_beams: List[StnBeamConfiguration] } class TimingBeamConfiguration { beams: List[BeamConfiguration] } class BeamConfiguration { pst_beam_id: int stn_beam_id: int offset_dly_poly: str stn_weights: List[float] jones: str dest_chans: List[int] rfi_enable: List[bool] rfi_static_chans: List[int] rfi_dynamic_chans: List[int] rfi_weighted: float } class StnBeamConfiguration { beam_id: int freq_ids: List[int] boresight_dly_poly: str } CBFConfiguration *-- "*" FSPConfiguration CBFConfiguration *-- "1" VLBIConfiguration CSPConfiguration *-- "1" CommonConfiguration CSPConfiguration *-- "1" SubarrayConfiguration CSPConfiguration *-- "0..1" CBFConfiguration CSPConfiguration *-- "1" PSTConfiguration CSPConfiguration *-- "1" PSSConfiguration CSPConfiguration *-- "1" LowCBFConfiguration LowCBFConfiguration *-- "1" StationConfiguration LowCBFConfiguration *-- "1" TimingBeamConfiguration TimingBeamConfiguration *-- "*" BeamConfiguration StationConfiguration *-- "*" StnBeamConfiguration } } @enduml
false
true
false
false
class
3b1bba8d76dc067c2156462398ccecb5ec5050ff
62de719e261fac67d2a2bc347a98be5515b48948
/docs/blue/1131485/sp3/sequence1.puml
ea5453d99919d7c8bda28506eb71dfc9b6e28ab4
[]
no_license
raulcorreia7/isep_lapr4_17_18
82672fca46e433856d52b3839e3739fa53b8f52c
79217fa01912657da37ef6cdb1a05194dd2f5110
refs/heads/master
2020-04-15T17:52:21.964106
2019-01-09T17:13:14
2019-01-09T17:13:14
164,891,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,434
puml
@startuml sequence1.png skinparam handwritten true skinparam monochrome true skinparam packageStyle rect skinparam defaultFontName FG Virgil skinparam shadowing false actor User boundary WorkbookView control WorkbookPresenter control SessionController control SessionService entity Timer entity SessionRepository database Database box "NSheets Client" participant WorkbookView participant WorkbookPresenter participant Timer end box box "Server" participant SessionService participant SessionController participant SessionRepository end box box "Database" participant Database end box User -> WorkbookPresenter : onLoad() WorkbookPresenter -> WorkbookView : open() WorkbookPresenter -> SessionService : openSession(workbook) User -> WorkbookView : chooses a Cell WorkbookView -> WorkbookPresenter : setActiveCell() WorkbookPresenter -> WorkbookPresenter : new lockDTO WorkbookPresenter -> SessionService : lockCell(lockDTO) WorkbookPresenter -> SessionService : save(session) SessionService -> SessionRepository : save(session) SessionRepository -> Database : save(session) WorkbookPresenter -> WorkbookPresenter : new Timer() WorkbookPresenter -> Timer : timer.schedule(1000) Timer -> Timer : run() WorkbookPresenter -> SessionService : unlockCell(lockDTO) WorkbookPresenter -> SessionService : save(session) SessionService -> SessionRepository : save(session) SessionRepository -> Database : save(session) @enduml
false
true
false
false
usecase
f6a149552aa263885987f6642b0ce9bd0f80c9c2
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/AttributeNameDoesNotExistError.puml
99fb02b994b8ae08127cb4d457fbc9209369f167
[]
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
480
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 AttributeNameDoesNotExistError [[AttributeNameDoesNotExistError.svg]] extends ErrorObject { code: String message: String invalidAttributeName: String } interface ErrorObject [[ErrorObject.svg]] { code: String message: String } @enduml
false
true
false
false
class
54835b9862de240df7c6c5622ca74127ed2379d3
52607d79091550c9952acce8156e9887bbbe79bc
/docs/design/dfget_supernode.puml
3978957d4542d22f7d04d768230bccae0e566a5f
[ "Apache-2.0" ]
permissive
antsystem/Dragonfly
7b99e2128e471db8cb4c1179eba261de732481c2
53b6c9712d1891fc324c6ac699110b69e289be2a
refs/heads/feat/antsystem
2021-07-24T14:36:12.942495
2020-02-24T02:57:50
2020-02-24T02:57:50
233,546,769
1
2
Apache-2.0
2020-03-19T02:38:35
2020-01-13T08:27:48
Go
UTF-8
PlantUML
false
false
2,038
puml
@startuml == Register to a supernode== activate DfgetAsPeer #FFBBBB DfgetAsPeer -> DfgetAsPeer: Launch a http server as a peer activate DfgetAsPeer #DarkSalmon DfgetAsPeer -> SupernodeAsPeer: /peers: POST (Register a peer to P2P network) activate SupernodeAsPeer #DarkSalmon SupernodeAsPeer --> DfgetAsPeer: PeerCreateResponse deactivate SupernodeAsPeer DfgetAsPeer -> SupernodeAsPeer: /tasks: POST (Register a task) activate SupernodeAsPeer #DarkSalmon SupernodeAsPeer -> DfgetAsPeer: TaskCreateResponse deactivate SupernodeAsPeer deactivate DfgetAsPeer == Download from the p2p network in pieces with a loop == loop Until Finish/Fail Download DfgetAsPeer -> SupernodeAsPeer: /tasks/{id}/pieces: GET (Get scheduler result) activate DfgetAsPeer #DarkSalmon activate SupernodeAsPeer #DarkSalmon SupernodeAsPeer --> DfgetAsPeer: arrays: PieceInfo deactivate SupernodeAsPeer alt Download from supernode DfgetAsPeer -> SupernodeAsPeer: URLPath (Download from supernode) activate SupernodeAsPeer #DarkSalmon SupernodeAsPeer --> DfgetAsPeer: TaskPieceFile deactivate SupernodeAsPeer else Download from other peers in P2P network DfgetAsPeer -> OtherPeers: URLPath (Download from other peers in P2P network) activate OtherPeers OtherPeers --> DfgetAsPeer: TaskPieceFile deactivate OtherPeers destroy OtherPeers end DfgetAsPeer -> SupernodeAsPeer: /tasks/{id}/pieces/{pieceRange}: PUT (Update piece status) activate SupernodeAsPeer #DarkSalmon SupernodeAsPeer --> DfgetAsPeer: HTTP Response deactivate DfgetAsPeer deactivate SupernodeAsPeer end == Notify the supernode to exit P2P network == opt No Request >= 5 Min DfgetAsPeer -> SupernodeAsPeer: /peers/{id}: Delete (Notice the supernode that this peer is going offline) activate DfgetAsPeer #DarkSalmon activate SupernodeAsPeer #DarkSalmon SupernodeAsPeer --> DfgetAsPeer: HTTP Response deactivate SupernodeAsPeer deactivate DfgetAsPeer end deactivate DfgetAsPeer @enduml
false
true
false
false
sequence
38a36f4d25e25c072d637586f11a86bb69dcdd1d
cfcf3c1b531a2cc9d74147b81903d56e8cb42218
/images/ch2-3-x-slice-to-y-slice.plantuml
66cee0aa16542b4939184cfa038a863718d1ab58
[ "BSD-2-Clause", "CC-BY-NC-ND-4.0" ]
permissive
daheige/advanced-go-programming-book
d49f5e11983d8048eb44c74609662c5e70a5fa0d
0241bdc1675532b378912aefd8086fb10526b952
refs/heads/master
2022-12-07T19:14:18.865094
2022-12-01T04:25:24
2022-12-01T04:25:24
191,374,142
2
0
BSD-2-Clause
2019-06-11T13:10:35
2019-06-11T13:10:34
null
UTF-8
PlantUML
false
false
892
plantuml
' Copyright 2017 <chaishushan{AT}gmail.com>. All rights reserved. ' Use of this source code is governed by a Apache ' license that can be found in the LICENSE file. 'var p []X 'var q []Y // q = p 'pHdr := (*reflect.SliceHeader)(unsafe.Pointer(&p)) 'qHdr := (*reflect.SliceHeader)(unsafe.Pointer(&q)) 'pHdr.Data = qHdr.Data 'pHdr.Len = qHdr.Len * unsafe.Sizeof(q[0]) / unsafe.Sizeof(p[0]) 'pHdr.Cap = qHdr.Cap * unsafe.Sizeof(q[0]) / unsafe.Sizeof(p[0]) @startuml title []X <=> []Y participant "var x []X\nvar y []Y" as slice participant "var px *SliceHeader\nvar py *SliceHeader" as slice_header == []X and []Y to *reflect.SliceHeader == slice -> slice_header: px := (*reflect.SliceHeader)(unsafe.Pointer(&x))\npy := (*reflect.SliceHeader)(unsafe.Pointer(&y)) == copy *px to *py == slice_header -> slice_header: ~*py = *px == y changed by *py == slice -> slice: y = x @enduml
false
true
false
false
sequence
064df84463a61d3fbc48480a8f782d1403be62ff
63d05a2d8db31272352bb47eaf1981b74093b719
/uml/controller/apps/l3_base/_handle_ttl_expired.puml
cc0a1272770b21747d1bcc4888b92937a7ac6873
[ "Apache-2.0" ]
permissive
ChaosXu/dragonflow
b0635a237ed48d9741c1bb4d5ebbc17a5f5d815c
e497928bc34269bcecc7ea4488f22b5c98b972dc
refs/heads/master
2020-05-05T09:33:07.999625
2019-04-25T11:07:00
2019-04-25T11:07:00
179,908,580
0
0
null
2019-04-07T02:18:32
2019-04-07T02:18:32
null
UTF-8
PlantUML
false
false
2,242
puml
@startuml handle ttl expired ConcreteL3App->L3AppMixin:_handle_ttl_expired(self,msg) activate L3AppMixin note over L3AppMixin This callback is called when the OVS switch reduced a packet's TTL to 0. Create an ICMP error packet, and return it. :param msg: Packet in message :type msg: os_ken.ofproto.ofproto_v<version>_parser.OFPPacketIn end note alt self.ttl_invalid_handler_rate_limit() L3AppMixin->LOG:warning("Get more than %(rate)s TTL invalid packets per ","second at table %(table)s",{'rate': self.conf.router_ttl_invalid_max_rate,'table': const.L3_LOOKUP_TABLE}) L3AppMixin-->ConcreateL3App end L3AppMixin->LOG:debug("Get an invalid TTL packet at table %s",const.L3_LOOKUP_TABLE) L3AppMixin->packet:pkt = Packet(msg.data) L3AppMixin->pkt:_pkt = get_protocol(ethernet.ethernet) L3AppMixin->msg:router_key = match.get('reg5') L3AppMixin->db_store:lrouter = get_one(l3.LogicalRouter(unique_key=router_key),index=l3.LogicalRouter.get_index('unique_key')) ' router_port_ip = None loop port in lrouter.ports alt port.lswitch.unique_key == msg.match.get('metadata'): L3AppMixin->port:router_port_ip = network.ip note over L3AppMixin break end note end end alt router_port_ip L3AppMixin->icmp_error_generator:icmp_ttl_pkt = generate(icmp.ICMP_TIME_EXCEEDED, icmp.ICMP_TTL_EXPIRED_CODE,msg.data, str(router_port_ip), pkt) L3AppMixin->msg:unique_key = match.get('reg6') L3AppMixin->DFlowApp:dispatch_packet(icmp_ttl_pkt, unique_key) activate DFlowApp DFlowApp->DFlowApp:reinject_packet(pkt,table_id=constants.INGRESS_DISPATCH_TABLE,actions=[self.parser.OFPActionSetField(reg7=unique_key),]) activate DFlowApp DFlowApp->DFlowApp: datapath = datapath DFlowApp->DFlowApp: ofproto = ofproto alt table_id is not None: DFlowApp->actions:append(parser.NXActionResubmitTable(table_id=table_id)) end DFlowApp->datapath:send_msg(parser.OFPPacketOut(datapath=datapath,buffer_id=ofproto.OFP_NO_BUFFER,in_port=ofproto.OFPP_CONTROLLER,actions=actions,data=pkt)) deactivate deactivate else L3AppMixin->LOG:warning("The invalid TTL packet's destination mac %s ""can't be recognized.", e_pkt.dst) end deactivate @enduml
false
true
false
false
sequence
fc20e176929bbca9b20d080fd28f18932f089620
a65fe81fdb57e5d389a290fc70f724a593f1cd85
/01.Observer/src/ES2015-CascadingComboBox/diagrams/v3/ClassDiagram.puml
75b52e0abb36109617faa07b898484d2a963ca8f
[ "MIT" ]
permissive
leoshiang/DesignPatterns
56a74d317893e96d19e62d789f0379096ae4fe8b
aefa956b0d8caac1e4f80f75e87a5b44b954e8cb
refs/heads/master
2020-04-01T10:12:37.390007
2018-10-15T12:21:22
2018-10-15T12:21:22
113,122,364
0
0
null
null
null
null
UTF-8
PlantUML
false
false
510
puml
@startuml skinparam defaultFontName "Fira Code" skinparam class { FontStyle bold FontSize 12 } scale 800*800 class CascadingComboBox{ -children -data -defaultOptions -domObject -id +onCreateChildData +onCreateOption +onItemSelected -bindEvents() -clearChildren -createOptions() -fillOptions() -updateChildren() +attachChild() +clear() +setData() } CascadingComboBox o-- "0..*" CascadingComboBox @enduml
false
true
false
false
class
977cf4a1b6b69c6a40e2ec6c7a1513c445b8899d
aab70d3b06ccb2b753e02232a2eecbcfd9950324
/startup/docs/arch/Dataflow during startup.puml
053702c7d37319bb472b18fced512fc810f2e9d5
[]
no_license
zhilangtaosha/scrgt-bdso-td-practice
8d9b33c98e5adc5032503ad9ef0cdf92f606bf4f
07f717bbb6a3cfaa3b327400854117461624faa9
refs/heads/master
2020-09-02T05:25:08.628720
2019-10-29T21:50:29
2019-10-29T21:50:29
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
744
puml
@startuml title Data flow Sequence actor "Data Science" as DS participant "Datascience Github Repo" as G participant "S3" as S participant "Dataload" as D participant "Celebrity API" as C DS -> G: Pre-process IMDB, MovieDB, Wikipedia G -> S: Startup script copies github data celebrity-content-dev bucket S -> D: Startup script triggers load in dev D -> C: For each record call celebrity API in dev G -> S: Startup script copies github data celebrity-content-test bucket S -> D: Startup script triggers load in test D -> C: For each record call celebrity API in test G -> S: Startup script copies github data celebrity-content-prod bucket S -> D: Startup script triggers load in prod D -> C: For each record call celebrity API in prod @enduml
false
true
false
false
sequence
510e8405bd8faf73f534ce244ece673bc8b9dd1c
e032dab934c4fa3ff55da94de2f15d246a4aed8c
/design-pattern/src/main/java/wr1ttenyu/f1nal/study/designpattern/principle/openclose/openclose1.puml
2a5c3d913229da63289171fa7ed561df7192e8ea
[]
no_license
wr1ttenyu/f1nal
9d21aeb1ae14505fc2e9add9220f81719840f37f
fd27d32d2f877ea98c19d892d13df36a99059a46
refs/heads/master
2022-07-07T02:15:25.931532
2020-06-11T01:19:16
2020-06-11T01:19:16
207,061,707
0
0
null
2022-01-12T23:05:07
2019-09-08T04:31:27
Java
UTF-8
PlantUML
false
false
199
puml
@startuml class GraphicEditor class Shape class Circle class Rectangle Circle --|> Shape Rectangle --|> Shape GraphicEditor --> Shape GraphicEditor --> Circle GraphicEditor --> Rectangle @enduml
false
true
false
false
class
6c75230426d4c2f3a57a8c16e50fbc3bdb71b0f2
92766be78571be0f8359f45bbc6f7e2e231a9f84
/uml/consuml.puml
3f21bb7d3d08fe42e14e2e69eaa55acf841a1589
[ "MIT" ]
permissive
sam74/consuml
66a59b68842318dfd8cd7e071a42a7c51b2b78bf
2c8cc1ac473d02035ee408477781720ed257633b
refs/heads/main
2023-07-16T10:35:05.359427
2021-09-04T09:51:13
2021-09-04T09:51:13
398,757,958
0
0
null
null
null
null
UTF-8
PlantUML
false
false
785
puml
@startuml node "ConsUML architecture" { [UI(index.html)] --> API1 API1 - [server.js] [server.js] --> [consuml.js] [consuml.js] --> [puller.js] [consuml.js] --> [parser.js] [consuml.js] --> [drawer.js] [config.js] } cloud { [consul (external server)] as consul API2 - consul } cloud { [plantuml (external server)] as plantuml API3 - plantuml } [drawer.js]-->API3 [puller.js]-->API2 [server.js] #Green [consul] #Green [plantuml] #Green note right of server.js REST server default on port 3000 display service status in uml diagram end note note bottom of consul External service, provides health check metrics end note note bottom of plantuml External service, to generate uml diagram in svg format end note @enduml
false
true
false
false
deployment
2d1f06f8333a7029ae9459d34d831c1599c4b9dc
f956adb4d6c2a7b3cc951b6a719633effb427956
/docs/diagram/sequence/addToFridge.puml
d8c9d7e3f010e7669e269b863b1e521e971215ba
[ "Apache-2.0" ]
permissive
Trystan4/Wadge-BackEnd
43f9a82c50ce9b35d8fab8c60ddc4d460f91f5a0
cde2f0e438ded14aad615fadfc97075a946ee15e
refs/heads/master
2023-01-30T07:42:01.128401
2020-12-07T15:41:42
2020-12-07T15:41:42
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
481
puml
@startuml addToFridge participant ": Front" as ft participant ": Back" as bk participant ": FridgeController" as fc activate ft ft -> bk: POST /fridge/addition activate bk bk -> fc: addToFridge() activate fc create "FridgeController.f: Fridge" as f fc -> f: getInstance() activate f f --> f: readFridge() f --> fc: stringToFridgeFood() fc --> f: addToFridge() f --> f: writeFridge() deactivate f fc --> bk bk --> ft deactivate bk ft <-- ft: Traiter les données reçues @enduml
false
true
true
false
sequence
2cd55bfd335ab8aee38e3f5efd6ef6c183dfdb71
7055cb589a8eb9a9c6c9932af2029c7f2d26afd9
/src/newpumlTemplate.puml
b79d41b4c8b8a8c4d265e23eb7b85dd9d66e1ec0
[]
no_license
VitorPeixoto/ArtexSavior
89311cb14f5d66893f1806c1f4c96ddee2cf3f10
dc225ae51827e19cbf010fe039f5d58cea6474f7
refs/heads/master
2020-04-14T05:42:28.612695
2017-07-31T00:09:50
2017-07-31T00:09:50
18,902,240
1
0
null
null
null
null
UTF-8
PlantUML
false
false
630
puml
@startuml entity Coordinate entity EntityType actor Entity Entity -> MovesController: I'm at "Coordinate" \nand I walk \nlike "EntityType"\nWhere should I go? MovesController -> MovesController: Walking like that you\nwill try [Method] MovesController -> MapController: Can it do [Method]? MapController -> WallController: This position\nhave a wall? WallController -> WallController: Checking my\n wallList WallController --> MapController: Resṕonse note left: Response is an\nCoordinate MapController --> MovesController: Response MovesController --> Entity: Response ||| Coordinate <-> Entity EntityType <-> Entity @enduml
false
true
true
false
sequence
b1ec047d5539f12580aa43b30b644d6e7dc5fd29
4493a027962d95858f779cae6180cc621fe9cd2e
/product/product_model.puml
6a9a5cae4a9a218f8da6f2d53c5bb1a56f5ebcbf
[ "MIT" ]
permissive
i-love-flamingo/flamingo-commerce
0a2364547e1f3c109e52ef73f15430f0656346bd
2ce6a27cac0b227e28d5057716e69ba61dcab9ff
refs/heads/master
2023-08-22T02:09:47.539982
2023-08-21T15:39:19
2023-08-21T15:39:19
179,104,176
462
76
MIT
2023-09-08T16:28:55
2019-04-02T15:11:57
Go
UTF-8
PlantUML
false
false
1,996
puml
@startuml scale max 1024 width title = Product Model end title interface BasicProduct { BaseData() TeaserData() GetSpecifications() IsSaleable() Type() HasMedia() } interface Configurable { ConfigurableProductWithActiveVariant GetConfigurableWithActiveVariant() []Variant Variant() Variant GetDefaultVariant() bool HasVariant() } class ConfigurableProductWithActiveVariant { ActiveVariant } class ConfigurableProduct class SimpleProduct class BasicProductData { Title Attributes MarketPlaceCode RetailerCode RetailerSku Categories MainCategory Keywords } class Saleable { IsSaleable SaleableFrom SaleableTo ActivePrice AvailablePrices LoyaltyPrices LoyaltyEarnings } class PriceInfo { Default Price Discounted Price TaxClass Context Price GetFinalPrice() } class PriceContext { CustomerGroup ChannelCode Locale } class CategoryTeaser { Code Name } class Attribute { Code Label } class TeaserData { ShortTitle ShortDescription URLSlug TeaserPrice TeaserPriceIsFromPrice PreSelectedVariantSku Media MarketPlaceCode TeaserAvailablePrices TeaserLoyaltyPriceInfo TeaserLoyaltyEarningInfo } BasicProduct --> BasicProductData : BaseData() BasicProduct --> TeaserData : TeaserData() BasicProduct -down-> Saleable : SaleableData BasicProductData --> CategoryTeaser : MainCategory() BasicProductData o-- Attribute : Attributes CategoryTeaser --o BasicProductData : Categories CategoryTeaser --> CategoryTeaser : parent ConfigurableProduct .up> BasicProduct ConfigurableProduct .up.> Configurable ConfigurableProductWithActiveVariant .up.> Configurable ConfigurableProductWithActiveVariant .up.> BasicProduct SimpleProduct .up.> BasicProduct PriceInfo --> PriceContext : Context Saleable o-- PriceInfo : AvailablePrices Saleable o-- PriceInfo : LoyaltyPrices Saleable --> PriceInfo : ActivePrice @enduml
false
true
false
false
sequence
fe7d6adece8fa031bf03d55bc7cfefda3c163731
19bc9c3bc394a731bd46908339671ec42b610bab
/uml_diagrams/simulatorClassDiagram.puml
014b6640996b1d552ce07eb92817184fd544282a
[ "MIT" ]
permissive
lordnodd/index_zero_trafficsystem
434ae2593630cf2c0a20320d2380095a918a1abb
eea740965fbf4a0bb8e9e84dc14b38bd52b17319
refs/heads/master
2021-06-11T13:35:57.927145
2016-03-30T23:34:01
2016-03-30T23:34:01
178,351,371
0
0
MIT
2021-04-10T11:58:53
2019-03-29T07:05:42
Java
UTF-8
PlantUML
false
false
1,293
puml
@startuml 'skinparam monochrome true skinparam classAttributeIconSize 0 interface ISimulationAware { +tick(time:Time) } class Simulator { +Simulator(Map, MapObjectCollection, SimParams) +start() +stop() +pause() -tick(): Uses Tick object } Simulator "1" o-left-> "*" ISimulationAware: Contains list of \nISimAware objects\n and runs ticks to it class SimulationTick { +number: int +simulatedTimeStamp: LocalDateTime +tickDurationSeconds: int } SimulationTick <-- Simulator:creates and sends to \nall 'Tick Aware' objects class SimulationMap { +tick(time:Time) +addObject(MapObject, Position) +removeObject(MapObject) +moveObject(MapObject, Position) -mapObjectCollection:Collection<MapObject> } SimulationMap --|> ISimulationAware MapObject --|> ISimulationAware SimulationMap "1" o--> "*" Feature SimulationMap "1" o--> "*" MapObject interface MapObject { +tick(time:Time) +getPosition():Position +setMap(Map) } class Vehicle { +tick(time:Time) -speed -acceleration -lane } class Feature { +tick(time:Time) } class Road { -lanes[] +tick() } class TrafficGenerator { +tick() } Vehicle --|> MapObject Feature <|-- Road Feature <|-left- TrafficGenerator class SimulationDelay { +tick() } ISimulationAware <|--SimulationDelay Feature --|> ISimulationAware @enduml
false
true
false
false
sequence
1d942ccf1b4957913759d677869f01ba6f459069
2060d9177e8c16b1d5259477f6337437d7c17f41
/P2/ADD/views/DomainModelDiagram.puml
e4a5e8e558cb70a6bed7bc731fcd5d3edd7616e0
[]
no_license
diogoc21/ISEP.Master.ARQSOFT_2019
664a5bdbfde383c910e844caadf1079468f3c087
e76a7a2cca6b247605d2b2316fd14d65244f1e3c
refs/heads/master
2022-04-08T09:32:58.983176
2019-12-19T19:21:48
2019-12-19T19:21:48
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,651
puml
@startuml DomainModelDiagram left to right direction package "PointOfSale <<Bounded Context>>" #DDDDDD { class PointOfSale <<Entity>> <<Aggregate Root>> { -ID : long -Description : string } object PointOfSale.PointOfSaleID <<Value Object>> PointOfSale -- PointOfSale.PointOfSaleID } package "MealItem <<Bounded Context>>" #DDDDDD { class MealItem <<Entity>> <<Aggregate Root>> { -ID : long -ProductionDate : datetime -ExpirationDate : datetime -MealIdentificationNumberStatic : string } object MealItem.PointOfSaleID <<Value Object>> object MealItem.MealID <<Value Object>> MealItem -- MealItem.PointOfSaleID MealItem -- MealItem.MealID } package "Meal <<Bounded Context>>" #DDDDDD { class Meal <<Entity>> <<Aggregate Root>> { -ID : long -Description : string -AlergicComponents : List<AlergicComponent> -Ingredients : List<Ingredient> -MealDescriptors : List<MealDescriptor> +void AddAlergicComponent() +void AddIngredient() +void AddMealDescriptor() +void RemoveAlergicComponent() +void RemoveIngredient() +void RemoveMealDescriptor() } class Ingredient <<Entity>> { -ID : long -Description : string } class AlergicComponent <<Entity>> { -ID : long -Description : string } class MealDescriptor <<Entity>> { -ID : long -Description : string -Name : string } object MealIdentificationNumber <<ValueObject>> { -MealIdentificationNumberPrefix : string +bool ChangeMealIdentificationNumberGen() +string GenerateMealIdentificationNumber() } object Meal.MealID <<Value Object>> Meal "0..*" -- "0..*" AlergicComponent Meal "1" -- "0..*" MealDescriptor Meal "0..*" -- "1..*" Ingredient Meal -- MealIdentificationNumber Meal -- Meal.MealID } PointOfSale "1" .. "0..*" MealItem MealItem "0..*" .. "1" Meal package "Log <<Bounded Context>>" #DDDDDD { interface WriteLog class EventLog { -ID : long -Description : string -UserTypeID : User -Action : EventAction -Class : T -Date : DateTime +WriteLog() } enum EventAction { - Add - Create - Update - Delete } class UserType { -ID : long -Description : string } object UserTypeID <<ValueObject>> WriteLog <|.. EventLog EventLog -- UserTypeID EventLog -- EventAction EventLog "0..*" -- "1" UserType } @enduml
false
true
false
false
class
b0bcea700c2b402461985a9bf683ed06de2f00a8
82d936d3e60c99d0a01963837413664c4662dc8b
/src/main/java/cn/ksdshpx/designpattern/proxy/staticproxy/teacher.puml
04d00e1adbda9217b8fb7ae968bfa30954168118
[]
no_license
ksdshpx/PDesignPattern
8aa5735e7636f571631dc14dce818180c7271c50
f73bfe30c79c84084a8dbb08a9857e749fa4df16
refs/heads/master
2021-07-08T14:09:02.524505
2020-11-09T01:39:46
2020-11-09T01:39:46
196,672,802
0
0
null
null
null
null
UTF-8
PlantUML
false
false
288
puml
@startuml interface ITeacherDao{ teach():void } class TeacherDao implements ITeacherDao{ teach():void } class TeacherDaoProxy implements ITeacherDao{ target:TeacherDao teach():void } TeacherDao --o TeacherDaoProxy class Client{ } Client ..> TeacherDaoProxy @enduml
false
true
false
false
class
5994fc9861ebe167a4cd5d266d19beb8848e12c3
0d531dd5fafcc5a8610ea2d42b9c6aba2e926179
/class_diagram.puml
ad9e35da73bb1963f9af2f49c774bb4b58260a57
[]
no_license
Matheo-Moinet/Schotten-Totten-1
fa0f6e04808a542fbd19658ba916e40989dbdc31
6edfe4485f2698ecbad05a9405e67f9c6e2238d7
refs/heads/main
2023-04-30T15:00:27.944325
2021-05-23T07:39:54
2021-05-23T07:39:54
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,158
puml
@startuml skinparam linetype ortho skinparam nodesep 50 skinparam ranksep 50 package api { package card { enum Color { BLUE BROWN GREEN PURPLE RED YELLOW } class ClanCard { {static}+NUM_CARDS_BY_COLOR = 9 -strength int +getId() = color + value } ClanCard --> Color } package stock { class Stock { +draw(): ClanCard +isEmpty(): boolean } Stock --> ClanCard class StockFactories { {static}+createClanStock: Stock } StockFactories ..> Stock } package combination { interface CombinationSupport <<Functional>> { supports(cards: List<ClanCard>): boolean } enum CombinationType { COLOR_RUN THREE_OF_KIND COLOR RUN SUM -supports(List<ClanCard>): boolean {static}+findFor(List<ClanCard>): CombinationType {static}-isColorRun((List<ClanCard>): boolean {static}-isThreeOfKind((List<ClanCard>): boolean {static}-isColor((List<ClanCard>): boolean {static}-isRun((List<ClanCard>): boolean {static}-isSum((List<ClanCard>): boolean } CombinationType --> CombinationSupport class Combination <<Comparable>> { -sum: int +Combination(List<ClanCard>) +compareTo(Combination): int } Combination --> CombinationType } package player { class Hand { +{static}HAND_SIZE = 6 +addCard(card: ClanCard) +isFull(): boolean +contains(card: ClanCard): boolean +removeCard(card: ClanCard) } Hand --> "0..6" ClanCard class Player { -name: String } Player --> Hand } package border { class StoneArea { {static}-MAX_NUM_CARDS = 3 -own: boolean +isOwn(): boolean +isFull(): boolean } StoneArea --> Player StoneArea --> "cards\n0..3" ClanCard StoneArea --> "0..1" Combination class Stone { -id: int -areas: Map<Player, StoneArea> +isFullFor(player: Player): boolean +addCardFor(player: Player, card: ClanCard) +getAreaFor(player: Player): StoneArea } Stone --> "*" StoneArea note on link : Each player have his own area class Border { {static}-NUM_STONES = 9 } Border --> "9" Stone } package board { class Board { {static}+NUM_PLAYERS = 2 +getPlayers(): List<PLayer> +getOpponent(player: Player):PLayer +addPlayer(player: Player) +removePlayer(player: Player) +isFull(): boolean } Board --> "2" Player Board --> "currentPlayer" Player Board --> Border Board --> "stock" Stock Board ..> StockFactories } package game { class GameOptions { -created: Instant; -name: String +getCreated(): Instant +getName(): String } enum GameStatus { CREATED STARTED FINISHED CANCELLED } class Game { -id: int +start(currentPlayer: Player) +isFull(): boolean +getPlayers(): List<PLayer> +addPlayer(player: Player) +removePlayer(player: Player) +getOpponent(player: Player): Player } Game --> GameOptions Game --> GameStatus Game --> Board class GameRegistry <<Singleton>> { {static}+GAME_REGISTRY: GameRegistry +createNewGame(options: GameOptions): Game +findGame(id: int): Optional<Game> +findAllWaitingGames(): List<Game> } GameRegistry --> "*" Game } } @enduml
false
true
false
false
class
2d1aac7d78777f9516bca8fcbdcf3bb4d8c88d63
786b8d255485f952a5761abff55a191fd736dc1e
/main/java/com/gmail/ib/projectCrypt/ui/hubs/hubs.plantuml
250840b8066b08e9b839fb635b4383bc6d182b1a
[]
no_license
notd5a-alt/projectCrypt
3e5149217bde9b573b674beecc99e9a09fa70319
2f46d41160963bc4f78b49e5ad6a9db6b8ac7845
refs/heads/master
2022-04-11T10:50:28.626265
2020-03-24T11:39:07
2020-03-24T11:39:07
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
546
plantuml
@startuml title __HUBS's Class Diagram__\n namespace com.gmail.ib.projectCrypt { namespace ui { namespace hubs { class com.gmail.ib.projectCrypt.ui.hubs.HubView { + HubView() } } } } com.gmail.ib.projectCrypt.ui.hubs.HubView -up-|> com.vaadin.flow.component.orderedlayout.VerticalLayout right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
c22d7f6c28e9671e5ae9d00f9c5cbfb5d27679da
e3ebf221091ee30de418c963f078ccdd732eaa8c
/docs/modular/sequences/fullsized/list_inbox.puml
b69e9d5202cea6b93a00ffb3c59d35cbc81c303d
[ "Apache-2.0" ]
permissive
valb3r/datasafe
97d9826bb2bc6a478abc56ad30848fcaad8f259a
1b91e90128e2411339a9b904bb92144879b155bb
refs/heads/develop
2020-05-31T16:55:05.487855
2019-06-05T13:00:08
2019-06-05T13:00:08
190,393,370
0
1
Apache-2.0
2019-10-07T09:51:59
2019-06-05T12:48:13
Java
UTF-8
PlantUML
false
false
6,166
puml
@startuml skinparam SequenceMessageAlign center activate ListInboxImpl ' de.adorsys.datasafe.business.api.inbox.actions.ListInboxImpl ListInboxImpl -> ListInboxImpl : resolveInboxLocation activate ListInboxImpl ' de.adorsys.datasafe.business.api.inbox.actions.ListInboxImpl ListInboxImpl -> ProfileRetrievalService : publicProfile activate ProfileRetrievalService ' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService ProfileRetrievalService -> DFSBasedProfileStorageImpl : publicProfile activate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSSystem : systemDfs activate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem DFSBasedProfileStorageImpl <-- DFSSystem : DFSAccess deactivate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSConnectionService : obtain activate DFSConnectionService ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSConnectionService -> DFSConnectionServiceImpl : obtain activate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl DFSConnectionService <-- DFSConnectionServiceImpl : DFSConnection deactivate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSBasedProfileStorageImpl <-- DFSConnectionService : DFSConnection deactivate DFSConnectionService ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSBasedProfileStorageImpl : locatePublicProfile activate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl <-- DFSBasedProfileStorageImpl : BucketPath deactivate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSConnection : getBlob activate DFSConnection ' de.adorsys.dfs.connection.api.service.api.DFSConnection DFSBasedProfileStorageImpl <-- DFSConnection : Payload deactivate DFSConnection ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> GsonSerde : fromJson activate GsonSerde ' de.adorsys.datasafe.business.impl.profile.serde.GsonSerde DFSBasedProfileStorageImpl <-- GsonSerde : T deactivate GsonSerde ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl ProfileRetrievalService <-- DFSBasedProfileStorageImpl : UserPublicProfile deactivate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService ListInboxImpl <-- ProfileRetrievalService : UserPublicProfile deactivate ProfileRetrievalService deactivate ListInboxImpl ' de.adorsys.datasafe.business.api.inbox.actions.ListInboxImpl ListInboxImpl -> BucketAccessService : privateAccessFor activate BucketAccessService ' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService BucketAccessService -> BucketAccessServiceImpl : privateAccessFor activate BucketAccessServiceImpl ' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl BucketAccessServiceImpl -> DFSCredentialsService : privateUserCredentials activate DFSCredentialsService ' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService DFSCredentialsService -> DFSCredentialsServiceImpl : privateUserCredentials activate DFSCredentialsServiceImpl ' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl DFSCredentialsServiceImpl -> DFSSystem : systemDfs activate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem DFSCredentialsServiceImpl <-- DFSSystem : DFSAccess deactivate DFSSystem ' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl DFSCredentialsService <-- DFSCredentialsServiceImpl : DFSCredentials deactivate DFSCredentialsServiceImpl ' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService BucketAccessServiceImpl <-- DFSCredentialsService : DFSCredentials deactivate DFSCredentialsService ' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl BucketAccessService <-- BucketAccessServiceImpl : DFSAccess deactivate BucketAccessServiceImpl ' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService ListInboxImpl <-- BucketAccessService : DFSAccess deactivate BucketAccessService ' de.adorsys.datasafe.business.api.inbox.actions.ListInboxImpl ListInboxImpl -> DocumentListService : list activate DocumentListService ' de.adorsys.datasafe.business.api.deployment.document.DocumentListService ' de.adorsys.datasafe.business.api.inbox.actions.ListInboxImpl DocumentListService -> ListPathNonDecryptingServiceImpl : list activate ListPathNonDecryptingServiceImpl ' de.adorsys.datasafe.business.impl.document.list.ListPathNonDecryptingServiceImpl ListPathNonDecryptingServiceImpl -> DFSConnectionService : obtain activate DFSConnectionService ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSConnectionService -> DFSConnectionServiceImpl : obtain activate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl DFSConnectionService <-- DFSConnectionServiceImpl : DFSConnection deactivate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService ListPathNonDecryptingServiceImpl <-- DFSConnectionService : DFSConnection deactivate DFSConnectionService ' de.adorsys.datasafe.business.impl.document.list.ListPathNonDecryptingServiceImpl ListPathNonDecryptingServiceImpl -> DFSConnection : list activate DFSConnection ' de.adorsys.dfs.connection.api.service.api.DFSConnection ListPathNonDecryptingServiceImpl <-- DFSConnection : List deactivate DFSConnection DocumentListService <-- ListPathNonDecryptingServiceImpl : Stream deactivate ListPathNonDecryptingServiceImpl ListInboxImpl <-- DocumentListService : Stream deactivate DocumentListService deactivate ListInboxImpl @enduml
false
true
false
false
sequence
a7b2080aa34e62ca1efedba23f28a0c4bc833589
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.puml
a7d76f069d6a33489cc1a564212a3f0a52414a72
[]
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
270
puml
@startuml class EditModeTestListGUI { + <<override>> RenderNoTestsInfo() : void + <<override>> PrintHeadPanel() : void } TestListGUI <|-- EditModeTestListGUI EditModeTestListGUI --> "TestMode" TestMode EditModeTestListGUI --> "TestPlatform" TestPlatform @enduml
false
true
false
false
class
5d8c481eb2506ba499714d8f1df0d74b410c38fc
2439874ae3af5249c7e7db694925d703742c62d8
/use-cases/use-case-12.puml
c76d4cabc0a2c54d03505612aaf2f598e07b4700
[ "Apache-2.0" ]
permissive
KerrJack/seMethodsCoursework
cd8a09a10a6cde549d5d4aea336f978e388bb42f
cf193199eab927133dff7e366f852b891d387a30
refs/heads/master
2023-04-20T21:25:05.745471
2021-04-30T15:35:55
2021-04-30T15:35:55
337,515,667
0
0
Apache-2.0
2021-04-27T22:21:49
2021-02-09T19:38:15
Java
UTF-8
PlantUML
false
false
307
puml
@startuml actor user as "user" rectangle Database rectangle "program" { usecase UC4 as "Get population of cities in district" usecase UCa as "order largest to smallest" usecase UCc as "print cities" user - UC4 UC4 ..> UCa UCa ..> UCb UCb ..> UCc UC4 - Database } @enduml
false
true
false
false
usecase
33e20d689e5deb5f14483cee7051dffe9ec011d5
16e7c5b650dffe37dbc6246cc599639805bd5e20
/Source/EtAlii.Generators.Stateless.Tests/MyNestedStateMachine2.puml
2239196beadc1356f27fca109240f3afee750067
[ "MIT" ]
permissive
pennz/EtAlii.Generators
16cb2642139c09582c1ae4b7d20cb5bed22a49cb
53d2830880103ebe85cfd9eae98e90e60d52c959
refs/heads/main
2023-03-26T15:23:53.195110
2021-03-23T20:32:34
2021-03-23T20:32:34
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
502
puml
@startuml 'stateless namespace EtAlii.Generators.Stateless.Tests 'stateless class MyNestedStateMachine2Base 'stateless generate partial 'stateless using System.Text [*] -> State1 << (string name) >> : Start State1 : this is a string State1 : this is another string State1 -> State2 : Continue state State2 { [*] --> SubState1 State2 -> State2 << (string name) >> : Check SubState1 -> SubState2 : Continue } State2 -up-> State3 : Continue State3 -up-> State4 << async >> : Continue @enduml
false
true
false
false
sequence
85622b400816d782adc7fc9c90c2e3b3ea8c968e
c2b6bfee8da36cc39de688e146ba107b74218b12
/plantuml/Payment/default.plantuml
c0f532de913770f39abab1d6c65c965c962f323b
[ "Apache-2.0" ]
permissive
TOMP-WG/TOMP-API
02bbd268c6ece21f7a5d28f4e42e1b456233e8e9
2aa6ae3d6b355a12a8936ff1069821bb7c89a743
refs/heads/master
2023-09-01T16:13:50.445300
2023-07-25T12:08:52
2023-07-25T12:08:52
189,022,994
80
34
Apache-2.0
2023-08-22T12:36:34
2019-05-28T12:21:59
null
UTF-8
PlantUML
false
false
520
plantuml
@startuml Default payment title Payment Scenario - V1.0.0 participant MP participant TO autoactivate on note over MP to facilitate the clearance process, the MP can request the list of all legs he has to pay to the TO. end note MP -> TO : /payment/journal-entry return list of all journal entries matching the query note over MP to report extra costs (as well from TO to MP as vice versa) end note MP -> TO : /payment/{id}/claim-extra-costs return ok TO -> MP : /payment/{id}/claim-extra-costs return ok @enduml
false
true
false
false
sequence
3dc9389078aa15fef4ca5b5c4001276e939c5cbd
9d6195d1cb8758bcd47e46999cce568933b1b0d3
/system-design.puml
a1d5ca494015b7a1e55dc1d951850a1031ff678f
[]
no_license
Hilmantm/kotlin-spring-restful-api
462f44a7c920446fbeccf3153f1780c5ac8bff8a
b61b2c1ef94e74ec30fbd3ac50d691774f7024fa
refs/heads/master
2022-12-28T11:32:35.893820
2020-10-15T12:08:56
2020-10-15T12:08:56
303,544,546
0
0
null
null
null
null
UTF-8
PlantUML
false
false
317
puml
@startuml actor "User" as user node "Kotlin Restful API" { component "Controller" as controller component "Service" as service component "Repository" as repository } database "Postgresql" as database user <--> controller controller <--> service service <--> repository repository <--> database @enduml
false
true
false
false
sequence
3698fff05e6b75171227a18c5bc2e4243a737778
1603b98e1a1b5577a2419a210dd690e7aa313ae2
/state_machine_demo/saga-akkafsm/plantuml/4.saga-sequence-hotel-inner-exception-compensate-exception-scenario.puml
fb31c6bcfdb59ef355163f73c55af78b650a63c5
[]
no_license
haigangyuan/playground
73cb0c8edd8b56cf731847040e7265238484418f
7e36a2e023afe82534378f052f43209d058a0acb
refs/heads/master
2022-02-13T14:12:02.649045
2019-08-05T07:57:57
2019-08-05T07:57:57
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,360
puml
@startuml autonumber skinparam sequence { ParticipantFontSize 12 ParticipantBorderColor #454545 ParticipantBackgroundColor White LifeLineBorderColor #454545 ArrowColor #454545 } participant USER order 1 participant BOOKING order 2 participant CAR order 3 participant HOTEL order 4 participant RPC order 5 participant Saga1_FSM order 6 participant Tx1_FSM order 7 participant Tx2_FSM order 7 box ALPHA #LightBlue participant RPC participant Saga1_FSM participant Tx1_FSM participant Tx2_FSM end box USER -> BOOKING: request activate BOOKING == Saga[1] Transaction Begin == BOOKING -> RPC : SagaStartedEvent activate BOOKING #00CC33 activate RPC create Saga1_FSM RPC -> Saga1_FSM: create note over of Saga1_FSM: IDEL Saga1_FSM --> RPC RPC --> BOOKING deactivate BOOKING deactivate RPC BOOKING -> BOOKING == Tx[1] Transaction == BOOKING -> CAR activate CAR CAR -> RPC : TxStartedEvent activate CAR #00CC33 activate RPC RPC -> Saga1_FSM: TxStartedEvent activate Saga1_FSM create Tx1_FSM Saga1_FSM -> Tx1_FSM: TxStartedEvent note over of Tx1_FSM: IDEL Tx1_FSM --> Saga1_FSM note over of Saga1_FSM: IDEL + TxStartedEvent = PARTIALLY_ACTIVE Saga1_FSM --> RPC deactivate Saga1_FSM RPC --> CAR deactivate CAR deactivate RPC CAR -> CAR: do something CAR -> RPC : TxEndedEvent activate CAR #00CC33 activate RPC RPC -> Saga1_FSM: TxEndedEvent activate Saga1_FSM Saga1_FSM -> Tx1_FSM: TxEndedEvent activate Tx1_FSM note over of Tx1_FSM: IDEL + TxEndedEvent = COMMITTED Tx1_FSM --> Saga1_FSM deactivate Tx1_FSM note over of Saga1_FSM: PARTIALLY_ACTIVE + TxEndedEvent = PARTIALLY_COMMITTED Saga1_FSM --> RPC deactivate Saga1_FSM RPC --> CAR deactivate CAR deactivate RPC CAR --> BOOKING deactivate CAR BOOKING -> BOOKING == Tx[N] Transaction == BOOKING -> HOTEL activate HOTEL HOTEL -> RPC : TxStartedEvent activate HOTEL #00CC33 activate RPC create Tx2_FSM RPC -> Tx2_FSM note over Tx2_FSM: IDEL Tx2_FSM --> RPC RPC --> HOTEL deactivate HOTEL deactivate RPC HOTEL x-[#C70039]> HOTEL: throw hotel exception HOTEL -> RPC : TxAbortedEvent activate HOTEL #00CC33 activate RPC RPC -> Saga1_FSM: TxAbortedEvent activate Saga1_FSM Saga1_FSM -> Tx2_FSM: TxAbortedEvent activate Tx2_FSM note over Tx2_FSM: IDEL + TxAbortedEvent = FAILED Tx2_FSM -> Saga1_FSM deactivate Tx2_FSM note over Saga1_FSM: PARTIALLY_COMMITTED + TxAbortedEvent = FAILED Saga1_FSM --> RPC RPC --> HOTEL deactivate RPC deactivate HOTEL HOTEL --[#C70039]> BOOKING : throw hotel internal exception deactivate HOTEL loop Tx...FSM alt state is COMMITTED Saga1_FSM -> Tx1_FSM: TxCompensateEvent deactivate Saga1_FSM activate Tx1_FSM loop retry Tx1_FSM -> CAR: do compensate activate CAR #00CC33 CAR -[#C70039]>x CAR: cancel something activate CAR deactivate CAR CAR --[#C70039]> Tx1_FSM: throw exception deactivate CAR deactivate Tx1_FSM end Tx1_FSM -> Saga1_FSM activate Tx1_FSM activate Saga1_FSM note over Saga1_FSM: SUSPENDED Saga1_FSM --> Tx1_FSM deactivate Tx1_FSM end end Saga1_FSM -> Tx1_FSM activate Tx1_FSM Tx1_FSM --> Saga1_FSM deactivate Tx1_FSM destroy Tx1_FSM Saga1_FSM -> Tx2_FSM activate Tx2_FSM Tx2_FSM --> Saga1_FSM deactivate Tx2_FSM destroy Tx2_FSM deactivate Saga1_FSM destroy Saga1_FSM == Saga[1] Transaction End == activate BOOKING #00CC33 autonumber 36 BOOKING -[#C70039]> BOOKING : throw hotel exception BOOKING --[#C70039]> USER deactivate BOOKING @enduml
false
true
false
false
sequence
58673aa426766514d7dd91057996e8fbf805ff23
f4cdd5f5b4bf31ae281288e25b37bc771575823d
/images/04/create_group.puml
38c53529a30d5f939f3a316b5e885488cd80116e
[ "BSD-3-Clause" ]
permissive
ankraft/onem2m-jupyter-notebooks
9af20d3c8e802c71133a78837696efcc20ccb8ed
6481b757e7fc6ff718ae7a30ed0bc4256e8abf67
refs/heads/master
2023-08-17T15:32:45.684608
2023-08-07T12:32:16
2023-08-07T12:32:16
174,227,639
5
3
BSD-3-Clause
2023-08-30T00:06:12
2019-03-06T21:59:19
Python
UTF-8
PlantUML
false
false
554
puml
@startuml hide footbox !theme plain skinparam backgroundcolor transparent ' Turquoise #668c97 ' Orange #F6921E participant "Notebook\nAE" as AE box "CSE & Hosted Resources" #f8f8f8 participant "CSE" as CSE participant "StreetLight-AE-1\nLight-Container-1" as container1 #F6921E participant "StreetLight-AE-2\nLight-Container-2" as container2 #F6921E end box AE -> CSE ++: CREATE <group>\ncse-in CSE <--> container1: Validate and add\n<cnt> to Lights-Group CSE <--> container2: Validate and add\n<cnt> to Lights-Group AE <- CSE --: Response @enduml
false
true
false
false
sequence
fa9d67e9212b480f7aeeeadbbe702fc2a3a6c4f4
0235383393ac494dad0c9b9c8a5e3977cb322c1e
/UML_Diagram/InventoryApp.puml
3f51d5914da0142fc3f205d747c7603d637772ca
[]
no_license
Mauricio1629/rios-3460-a5
cab872bb0e607525087a651e0ea8d689825fde62
79a71ff6c94265918dc15516387d9d95e1e4e6f4
refs/heads/master
2023-06-22T00:39:28.734320
2021-07-26T00:48:48
2021-07-26T00:48:48
387,849,285
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,408
puml
@startuml class Inventory_App{ main() start() } class AppController{ - inventoryTableView: TableView - serialNumberColumn: TableColumn - nameColumn: TableColumn - valueColumn: TableColumn - addSerialNumberDisplay: TextField - addItemNameDisplay: TextField - addItemValueDisplay: TextField - editValueDisplay: TextField - editSerialNumberDisplay: TextField - editNameDisplay: TextField - searchDisplay: TextField - pathDisplay: TextField - TSVRadioButton: RadioButton - HTMLRadioButton: RadioButton - Group: ToggleGroup + addItemButtonClicked() + editItemClicked() + searchSerialNumberClicked() + searchNameClicked() + saveFileClicked() + loadFileClicked() + deleteItemClicked() + itemClicked() + addItem() + editItem() + searchSerialNumber() + searchName() + saveHTML() + saveTSV() + loadHTML() + loadTSV() + deleteItem() + addToObservableList() + checkName() + checkSerialNumber() + checkValue() + clearDisplays() + formatString() + viewAllInventoryClicked() } class Item{ value: String serialNumber: String name: String +getValue() +setValue() +getSerialNumber() +setSerialNumber() +getName() +setName() } org.javafx.App -- Inventory_App Inventory_App -- AppController AppController <- Item @enduml
false
true
false
false
class
17b240a2012937c83a95cf8fc89155cb0569309f
6f34dec8b5c3cdb182618347740e6240597e9c04
/samples/cycles.puml
5824a41c1fa2bb107e4b7948de9750b42e3ef6b7
[ "BSL-1.0" ]
permissive
jeking3/boost-deptree
ef61874084ecbfaa842867bcbc353159c8e7a4ca
27eda54df2d022af17347df4ba4892c39392e474
refs/heads/master
2020-05-19T14:06:11.251502
2019-05-05T16:06:50
2019-05-05T16:06:50
185,052,664
0
0
null
null
null
null
UTF-8
PlantUML
false
false
306
puml
@startuml title Boost 1.71 Direct Dependency Cycles footer Generated by boost-deptree (C) 2019 James E. King III ['math'] --> ['lexical_cast'] ['math'] --> ['multiprecision'] ['property_map'] --> ['mpi'] ['lexical_cast'] --> ['math'] ['multiprecision'] --> ['math'] ['mpi'] --> ['property_map'] @enduml
false
true
false
false
uml-unknown
5749b5b23939b137e006c0c1532bdf5318fa3c7a
ad8871cd450dfd32f2eba002aa20723ebb4ba133
/design/old_design_folder/Bootstrap/puml/interface.puml
96a21bdc820f49c32889bcafe131194c68ddecb8
[]
no_license
LogosNetwork/SDF
8ec0455b56f17c0fd0b5132d4c3f2f4c5fd1616c
4dc77526a02c2ea0aba89a5d58315bf7dfbe9f4b
refs/heads/master
2020-03-19T21:24:06.901182
2019-09-17T17:15:14
2019-09-17T17:15:14
136,939,166
0
0
null
null
null
null
UTF-8
PlantUML
false
false
658
puml
@startuml package bootstrap { class bootstrap_listener class bootstrap_server class bootstrap_initiator class bootstrap_attempt class bootstrap_client } package tips { class tips_req_client class tips_req_server } package bulk_pull { class bulk_pull_client class bulk_pull_server } package BatchBlock { class validator } package Database{ class logos::block_store } 'bootstrap bootstrap_server -- tips tips_req_server bootstrap -- tips : call to get tips bootstrap -- bulk_pull : request each chain if behind bulk_pull -- BatchBlock : call Validate/ApplyUpdate BatchBlock -- Database : write to DB after validation @enduml
false
true
false
false
class
f2cce311841ffd406e4054aa575e034081b52626
922c17c800bee31feb2679e8c9ec5262c959ca75
/src/main/java/com/ayoungya/patternDesign/behavioral/command/ExampleClassUML.puml
75ca41b301dac073af68a58f677167afec101aab
[]
no_license
AyoungYa/java-tips
9dd20a3abd7dc1e03820a1067eaeb4c83cb9bd98
39834dcfe4acd4b006d46b2070fbb80d1e1d06e9
refs/heads/master
2022-12-22T16:09:29.874270
2020-07-22T01:06:36
2020-07-22T01:06:36
81,182,318
1
0
null
2022-12-16T02:16:55
2017-02-07T07:58:57
Java
UTF-8
PlantUML
false
false
1,091
puml
@startuml abstract class Group{ void find() void add() void delete() void change() void plan() } class CodeGroup class PageGroup class RequirementGroup abstract class Command{ CodeGroup codeGroup PageGroup pageGroup RequirementGroup requirementGroup void execute() } class DeletePageCommand class AddRequirementCommand Class Invoker{ void setCommand(Command command) void action() } class Client CodeGroup ..up..> Group PageGroup ..up..> Group RequirementGroup ..up..> Group CodeGroup <-up--o Command PageGroup <-up--o Command RequirementGroup <-up--o Command DeletePageCommand -up--> Command Command <|.up...o Invoker AddRequirementCommand -up--> Command Invoker <-left--- Client 'abstract class AbstractList 'abstract AbstractCollection 'interface List 'interface Collection ' 'List <|-- AbstractList 'Collection <|-- AbstractCollection ' 'Collection <|- List 'AbstractCollection <|- AbstractList 'AbstractList <|-- ArrayList ' 'class ArrayList { 'Object[] elementData 'size() '} ' 'enum TimeUnit { 'DAYS 'HOURS 'MINUTES '} @enduml
false
true
false
false
class
966e0fb3bc4866f4c67debc84f524cc6ff7a1412
70b6b3086d64939b4bd08cf8aad93ac5283cf1ac
/examples/towards/keywordsParameter.puml
b606fe243f5a8a8f785f09507659ea142527bf8f
[ "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
577
puml
@startuml class Max <<trait>> { def max1<T>(x:T,y:T)(<<using>> ord:Ord<T>): T def max2<T>(x:T,y:T)(<<implicit>> ord:Ord<T>): T def max3<T>(x:T,y:T)(<<byname>> ord:Ord<T>): T } 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 } @enduml
false
true
false
false
class