blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
5
227
content_id
stringlengths
40
40
detected_licenses
listlengths
0
28
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
36 values
visit_date
timestamp[us]date
2015-08-14 10:26:58
2023-09-06 06:45:32
revision_date
timestamp[us]date
2011-07-11 04:02:09
2023-09-04 16:40:12
committer_date
timestamp[us]date
2011-07-11 04:02:09
2023-09-04 16:40:12
github_id
int64
206k
631M
star_events_count
int64
0
6.51k
fork_events_count
int64
0
1.54k
gha_license_id
stringclasses
11 values
gha_event_created_at
timestamp[us]date
2012-08-01 17:54:24
2023-09-14 21:57:05
gha_created_at
timestamp[us]date
2009-05-21 02:09:00
2023-04-21 10:18:22
gha_language
stringclasses
55 values
src_encoding
stringclasses
12 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
16
1.74M
extension
stringclasses
12 values
code
stringlengths
16
1.74M
cd62dc5a1751d9bad10b96a5d6dd2744306e2c84
3e42a3533e38dfc8912d3bb6e59e942c718fd57e
/src/com/zjh/factory/simplefactory/pizzastore/pizza.puml
b09404431a51b7ff0c563e5ed5639b9337903e34
[]
no_license
zjh-escape/DesignPattern
d2c90dc1380322d9ed3fb85cb4fdc8e88b1bf1a5
e268fff5cf556e8a6b64208855c50a0b0d36bc64
refs/heads/master
2022-04-24T16:54:50.067028
2020-04-18T07:45:29
2020-04-18T07:45:29
256,657,447
0
0
null
null
null
null
UTF-8
PlantUML
false
false
376
puml
@startuml abstract class Pizza{ + void prepare() + void bake() + void cut() + void box() } class CheesePizza class GreekPizza class PepperPizza class OrderPizza class PizzaStore Pizza <|-- CheesePizza Pizza <|-- GreekPizza Pizza <|-- PepperPizza Pizza <.. OrderPizza CheesePizza <.. OrderPizza GreekPizza <.. OrderPizza OrderPizza <.. PizzaStore @enduml
a7d3e9e7704ee332bfebf1890e6d7d664273bd5b
0f27249a02fb539045e262ded3f23b145e44314f
/DZ3_UML/src/diagram.puml
73325d4911f9a61c0cc76e3d842901239a67a625
[]
no_license
DmitriyAl/JavaWEB_20160124_DZ
f05e19b7ba83526e1ba310242b7298ee0d112a33
bb4c6f9ee0c0a0c7203a5cfb32e61e583e85c13b
refs/heads/master
2021-01-10T18:03:13.672941
2016-01-27T14:58:23
2016-01-27T14:58:23
50,513,725
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,078
puml
@startuml interface WeatherChangingListener { updateReadings() } interface WeatherChangingSubject{ addWeatherChangingListener() removeWeatherChangingListener() notifyWeatherChangingListeners() } interface DisplayElement{ display() } class WeatherData{ ArrayList<WeatherChangingListener> listeners getTemperature() getHumidity() getPressure() measurementsChanged() addWeatherChangingListener() removeWeatherChangingListener() notifyWeatherChangingListeners() } WeatherChangingSubject <|... WeatherData class CurrentStateDisplay{ updateReadings() display() } class StatisticDisplay{ updateReadings() display() } class ForecastDisplay{ updateReadings() display() } class SomeOtherDisplay{ updateReadings() display() } WeatherChangingListener <|... CurrentStateDisplay WeatherChangingListener <|... StatisticDisplay WeatherChangingListener <|... ForecastDisplay WeatherChangingListener <|... SomeOtherDisplay DisplayElement <|... CurrentStateDisplay DisplayElement <|... StatisticDisplay DisplayElement <|... ForecastDisplay DisplayElement <|... SomeOtherDisplay @enduml
bb4ca0023b32daa98c61fb285ec919a0a329f70a
f18ba1fbeb7f8d6149aff64633f9c77a92cfc936
/assignments/a.repryntseva/TP1.plantuml
774b25471885be48eae3b2be26d834864165c85c
[]
no_license
kzvdar42/InnopolisDesignPatterns
c34a728b7964f22a6b774a4616b7ac9515ae6263
b1042e76875c9ccf69017e20edcea4b9e7b5682b
refs/heads/master
2021-02-07T05:17:54.245396
2020-04-19T22:40:48
2020-04-19T22:40:48
243,987,548
0
0
null
2020-02-29T14:54:34
2020-02-29T14:54:34
null
UTF-8
PlantUML
false
false
2,083
plantuml
@startuml title __SRC's Class Diagram__\n abstract class Canard { {abstract} + afficher() + cancaner() + defComportementCancan() + defComportementVol() + nager() + voler() } class CanardEnPlastique { + CanardEnPlastique() + afficher() } class Colvert { + Colvert() + afficher() } class SuperCanard { {static} + main() } namespace behaviours.cancaner { interface behaviours.cancaner.ComportementCancan { {abstract} + cancaner() } namespace impl { class CanardMuet { + cancaner() } class Cancan { + cancaner() } class Coincoin { + cancaner() } } } behaviours.cancaner.impl.CanardMuet .up.|> behaviours.cancaner.ComportementCancan behaviours.cancaner.impl.Cancan .up.|> behaviours.cancaner.ComportementCancan behaviours.cancaner.impl.Coincoin .up.|> behaviours.cancaner.ComportementCancan namespace behaviours.voler { interface behaviours.voler.ComportementVol { {abstract} + voler() } namespace impl { class behaviours.voler.impl.NePasVoler { + voler() } class behaviours.voler.impl.VolerAvecDesAiles { + voler() } } } behaviours.voler.impl.NePasVoler .up.|> behaviours.voler.ComportementVol behaviours.voler.impl.VolerAvecDesAiles .up.|> behaviours.voler.ComportementVol Canard o-- behaviours.cancaner.ComportementCancan : comportementCancan Canard o-- behaviours.voler.ComportementVol : comportementVol CanardEnPlastique -up-|> Canard Colvert -up-|> Canard right footer Done by Anastasiia Repryntseva 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
62055b81be0e0c60dd08d92bfca3f5c176d02b65
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProductSelectionAddProductAction.puml
6af05b8dc9ed85bb3d2e9ca8e5953a48297da552
[]
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
617
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 ProductSelectionAddProductAction [[ProductSelectionAddProductAction.svg]] extends ProductSelectionUpdateAction { action: String product: [[ProductResourceIdentifier.svg ProductResourceIdentifier]] variantSelection: [[ProductVariantSelection.svg ProductVariantSelection]] } interface ProductSelectionUpdateAction [[ProductSelectionUpdateAction.svg]] { action: String } @enduml
872dafaa1e58545fca71b0537d1d76c8d6b4d55d
372d0fe94d7e59fd48620c687fee8fc94841408b
/deadheat-lock-example/microservices-example/financial-service/src/main/java/com/vrush/microservices/financial/specifications/builder/builder.plantuml
c119645245bfabb45339e18f56f01daecc3c41fb
[ "Apache-2.0" ]
permissive
vrushofficial/deadheat-lock
4ae44e23fea2ad57db17aadeba58e39ef4f63822
11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2
refs/heads/main
2023-01-14T17:28:38.161881
2020-11-29T11:11:55
2020-11-29T11:11:55
310,531,739
2
1
null
2020-11-19T08:16:25
2020-11-06T08:06:52
CSS
UTF-8
PlantUML
false
false
980
plantuml
@startuml title __BUILDER's Class Diagram__\n namespace com.vrush.microservices.financial { namespace specifications { namespace builder { class com.vrush.microservices.financial.specifications.builder.SpecificationBuilder { - filters : List<SpecificationFilter> + buildList() + buildSpec() + createFiltersByEntity() {static} + init() + withBiggerFilter() + withCustomFilter() + withEqualFilter() + withEqualInListFieldFilter() + withEqualInSubclassFilter() + withLikeFilter() + withSmallerFilter() - addFilterIfValueIsNotNull() - addFilterIfValueIsNotNull() } } } } 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
932edf1032631365cb545810f0f9743bdbf183fb
22c062df90adff61becb66216348f35b57920adb
/DesignPatern/src/Behavioral/diagrams/observer.puml
cc21786f94886c3c60d0bbc30b68dcd85fa0821f
[ "BSD-3-Clause" ]
permissive
zainmehdi/software_engineering
0ca30f6daf526434fbec9ae0240da0685dc5977a
9b655590d05246d6e859673161de05ecde788b14
refs/heads/master
2022-12-29T14:33:41.798904
2020-10-12T13:57:20
2020-10-12T13:57:20
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
939
puml
@startuml skinparam classAttributeIconSize 0 interface "Interface \n Observer" as Observer{ - string m_name; # Car * m_car; + Observer(Car * car, std::string name):m_car(car),m_name(name){} +{abstract} update():void } interface "Interface \n Car(Subject)" as Car{ +double m_speed; +int m_temperature; +vector<Observer *> m_ObserverList; +notify():void +attach(Observer *obs):void +detach(Observer *obs):void +getSpeed():double +setSpeed(double speed):void +getTemperature():int +setTemperature(int temperature):void } class TemperatureObserver{ +update():void } class SpeedObserver{ +update():void } note "for all Observer in m_ObserverList\n Observer.update() " as CarNotify note "m_speed=speed\n notify()" as CarSetSpeed CarNotify -left.. Car::notify CarSetSpeed -right.. Car::setSpeed TemperatureObserver -up--|> Observer SpeedObserver -up--|> Observer Car *--Observer @enduml
da19cc2aaa26e54d2c038b564dade9ffee6b26a8
fafaf973381b21bea8eb334545ded62282cba3a2
/sunum/Adapter/Adapter.plantuml
fbc1cfc3dbcade01d4ce0cf61609825a1e290f06
[]
no_license
recepkaraca/DesignPatternsCourse
d9edc61009b4313a08b0383473b0d97f8fb0a2dd
69f507ebec842c6b50e9a2a093496f62760170fe
refs/heads/master
2022-09-11T10:19:54.206890
2020-06-02T22:51:09
2020-06-02T22:51:09
245,816,321
0
0
null
null
null
null
UTF-8
PlantUML
false
false
562
plantuml
@startuml scenario_uml left to right direction class CPUs{ +int getCoreCount() +int getThreadCount() +double getBaseClockSpeed() +int getCacheSize() +int getReleaseYear() } class CPU{ #string CPUName #int CoreCount #int ThreadCount #double BaseClockSpeed #int CacheSize #int ReleaseYear +CPU() +virtual void GetData() } class CPUInformations{ -CPUs _cpus +CPUInformations() +override void GetData() } class Client{ } CPUInformations --|> CPU CPUInformations --> CPUs Client -> CPU @enduml
73fd61f301e8d70c08d1aa84c8acfbee2573ba8c
b7c218e3ce20014749661c88165ffdf2dfc44762
/tests/Flagbit/Plantuml/Fixtures/testClass.puml
13859f1aa596744bbbee3e1478458a01a553efab
[ "BSD-2-Clause" ]
permissive
scips/php-plantumlwriter
d23583ea7f53ab776d8f86cb7f5b9e2a6cea2525
ec3e0f67f65ca5af6a6941a529a1c5ba310f3b02
refs/heads/master
2021-01-16T20:43:17.780119
2016-10-11T21:51:44
2016-10-11T21:51:44
62,056,439
0
1
null
2016-06-28T14:40:14
2016-06-27T13:01:21
PHP
UTF-8
PlantUML
false
false
37
puml
@startuml class OneClass { } @enduml
b812923236d16e4e437fac0d0a86cda07c878b52
2ed26e4235a2dd2abe15418ccc770cb313afc083
/intercepting-filter/etc/intercepting-filter.urm.puml
2b090cfff25890cd813ac1e7a33cc81b71b32060
[ "MIT" ]
permissive
secorjeretweaz/java-design-patterns
38ffb25f9cf212a5edf74eb44a709879bdc876f9
b2eaa6676430cda29663735125f026df5bb5dcbc
refs/heads/master
2020-03-29T19:47:22.792134
2018-10-02T08:26:07
2018-10-02T08:26:07
150,280,998
0
0
MIT
2018-09-25T14:41:40
2018-09-25T14:41:39
null
UTF-8
PlantUML
false
false
2,279
puml
@startuml package com.iluwatar.intercepting.filter { abstract class AbstractFilter { - next : Filter + AbstractFilter() + AbstractFilter(next : Filter) + execute(order : Order) : String + getLast() : Filter + getNext() : Filter + setNext(filter : Filter) } class AddressFilter { + AddressFilter() + execute(order : Order) : String } class App { + App() + main(args : String[]) {static} } class ContactFilter { + ContactFilter() + execute(order : Order) : String } class DepositFilter { + DepositFilter() + execute(order : Order) : String } interface Filter { + execute(Order) : String {abstract} + getLast() : Filter {abstract} + getNext() : Filter {abstract} + setNext(Filter) {abstract} } class FilterChain { - chain : Filter + FilterChain() + addFilter(filter : Filter) + execute(order : Order) : String } class FilterManager { - filterChain : FilterChain + FilterManager() + addFilter(filter : Filter) + filterRequest(order : Order) : String } class NameFilter { + NameFilter() + execute(order : Order) : String } class Order { - address : String - contactNumber : String - depositNumber : String - name : String - order : String + Order() + Order(name : String, contactNumber : String, address : String, depositNumber : String, order : String) + getAddress() : String + getContactNumber() : String + getDepositNumber() : String + getName() : String + getOrder() : String + setAddress(address : String) + setContactNumber(contactNumber : String) + setDepositNumber(depositNumber : String) + setName(name : String) + setOrder(order : String) } class OrderFilter { + OrderFilter() + execute(order : Order) : String } ~class DListener { ~ DListener() + actionPerformed(e : ActionEvent) } } AbstractFilter --> "-next" Filter DListener --+ Target FilterManager --> "-filterChain" FilterChain FilterChain --> "-chain" Filter AbstractFilter ..|> Filter AddressFilter --|> AbstractFilter ContactFilter --|> AbstractFilter DepositFilter --|> AbstractFilter NameFilter --|> AbstractFilter OrderFilter --|> AbstractFilter @enduml
33ad4fcc6704a5663ebd1f6c078b713a9ca231d8
58f5766244826918a3cf79312f861f76c5aa6f7d
/Documents/uml/Models/CompletionData.puml
d36668a0c9308e1527b2e4f67a6a7555e85bfcfa
[ "MIT" ]
permissive
BillKrat/CsvEditSharp
3835aa9d7955a33830be47b044d3c05763c68dff
a91334a8aa1b08c4f7fe38116892b088e92d4da4
refs/heads/master
2022-01-28T15:31:06.719793
2019-07-28T11:39:25
2019-07-28T11:39:25
198,216,226
0
1
MIT
2019-07-22T12:10:45
2019-07-22T12:10:44
null
UTF-8
PlantUML
false
false
396
puml
@startuml class CompletionData { + Content : object <<get>> <<set>> + Description : object <<get>> <<set>> + Image : ImageSource <<get>> <<set>> = null + Priority : double <<get>> <<set>> = 0 + Text : string <<get>> <<set>> + Complete(textArea:TextArea, completionSegment:ISegment, insertionRequestEventArgs:EventArgs) : void } ICompletionData <|-- CompletionData @enduml
13fed4be1a04db1ccf52ba33b549dcb9427e7b43
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/AttributeLocalizedEnumValue.puml
474bb7b6324b70dd52b788e18bb903ddd1fc04a7
[]
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,653
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 AttributeLocalizedEnumValue [[AttributeLocalizedEnumValue.svg]] { key: String label: [[LocalizedString.svg LocalizedString]] } interface AttributeLocalizedEnumType [[AttributeLocalizedEnumType.svg]] { name: String values: [[AttributeLocalizedEnumValue.svg List<AttributeLocalizedEnumValue>]] } interface ProductTypeChangeLocalizedEnumValueOrderAction [[ProductTypeChangeLocalizedEnumValueOrderAction.svg]] { action: String attributeName: String values: [[AttributeLocalizedEnumValue.svg List<AttributeLocalizedEnumValue>]] } interface ProductTypeAddLocalizedEnumValueAction [[ProductTypeAddLocalizedEnumValueAction.svg]] { action: String attributeName: String value: [[AttributeLocalizedEnumValue.svg AttributeLocalizedEnumValue]] } interface ProductTypeChangeLocalizedEnumValueLabelAction [[ProductTypeChangeLocalizedEnumValueLabelAction.svg]] { action: String attributeName: String newValue: [[AttributeLocalizedEnumValue.svg AttributeLocalizedEnumValue]] } AttributeLocalizedEnumValue --> AttributeLocalizedEnumType #green;text:green : "values" AttributeLocalizedEnumValue --> ProductTypeChangeLocalizedEnumValueOrderAction #green;text:green : "values" AttributeLocalizedEnumValue --> ProductTypeAddLocalizedEnumValueAction #green;text:green : "value" AttributeLocalizedEnumValue --> ProductTypeChangeLocalizedEnumValueLabelAction #green;text:green : "newValue" @enduml
7c528ce662f64d3253a14ff9e153f98ffdfd1d88
29e499c7049d725de515d0f0294f765b6bbb4dc3
/DesignPattern/out/production/DesignPattern/com/ilike/memento/game/Game.puml
868bc409083c1eca2ac293ee36491e3bceb8bc93
[]
no_license
dongyuancaizi/designPatternLearning
70dddd9d156fd3d4e9c07bb4f94f76820b625308
1fbde529b073b9a205bffd90607574754d6aac50
refs/heads/master
2020-07-04T05:13:23.384529
2019-11-19T13:09:10
2019-11-19T13:09:10
202,167,833
0
0
null
null
null
null
UTF-8
PlantUML
false
false
233
puml
@startuml class Memento{ int vit; int def; } Caretaker o--Memento GameRole -->Memento client -->Memento client -->GameRole class Caretaker{ Memento memento; } class GameRole{ Memento createMemento(); } @enduml
cf403df8354955e904833fa5939dcb03f25e52bf
2a55af90da354874b8bae9e25185474f446cd695
/application/application.puml
93156c6ad5b143d0208313e2e7a55b824e37875f
[ "Apache-2.0" ]
permissive
sunw31/boilerplate
acb9adfd4923c6cdc18e095701f5de92c24c34a7
e7197a5ce99c0fa8219117b5765907ecbd5c3017
refs/heads/master
2020-12-29T05:26:08.590998
2020-02-04T03:45:41
2020-02-04T03:50:22
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,180
puml
@startuml package "debug" { class "Config" as debug.Config <<V,Orchid>> { -ctx: context.Context -clientRepo: debug.ClientRepository +Config(ctx: context.Context): (debug.ClientWithContexter, error) +Connect(m: debug.ClientWithContexter): (context.Context, error) } } package "debug" { interface "ConfigGetContexter" as debug.ConfigGetContexter { +GetContext(): context.Context } } package "debug" { interface "Configer" as debug.Configer { +Config(: context.Context): (debug.ClientWithContexter, error) +Connect(: debug.ClientWithContexter): (context.Context, error) } } package "debug" { interface "ConnectGetContexter" as debug.ConnectGetContexter { +GetContext(): context.Context } } package "debug" { class "clientRepository" as debug.clientRepository <<E,#FFCC00>> { +Config(ctx: context.Context): (debug.ClientWithContexter, error) +Connect(m: debug.ClientWithContexter): error } } package "debug" { class "topic" as debug.topic <<V,Orchid>> } package "event" { interface "EventLoggerGetContexter" as event.EventLoggerGetContexter { +GetContext(): context.Context } } package "event" { class "Saver" as event.Saver <<V,Orchid>> { +Saver: event.Saver +Save(m: keyvalue.KeyValueWithContexter): (context.Context, error) } } event.Saver --> event.Saver package "event" { interface "SaverGetContexter" as event.SaverGetContexter { +GetContext(): context.Context } } package "event" { interface "StartGetContexter" as event.StartGetContexter { +GetContext(): context.Context } } package "event" { class "topic" as event.topic <<V,Orchid>> } package "exporter" { class "GlobalMonitoredResource" as exporter.GlobalMonitoredResource <<V,Orchid>> { -projectID: string +MonitoredResource(): (string, map[string]string) } } package "run" { class "topic" as run.topic <<V,Orchid>> } package "update" { class "topic" as update.topic <<V,Orchid>> } debug.Config -up-|> debug.Configer debug.ConfigGetContexter -up-|> debug.ConnectGetContexter debug.ConfigGetContexter -up-|> event.EventLoggerGetContexter debug.ConfigGetContexter -up-|> event.SaverGetContexter debug.ConfigGetContexter -up-|> event.StartGetContexter debug.ConnectGetContexter -up-|> debug.ConfigGetContexter debug.ConnectGetContexter -up-|> event.EventLoggerGetContexter debug.ConnectGetContexter -up-|> event.SaverGetContexter debug.ConnectGetContexter -up-|> event.StartGetContexter event.EventLoggerGetContexter -up-|> debug.ConfigGetContexter event.EventLoggerGetContexter -up-|> debug.ConnectGetContexter event.EventLoggerGetContexter -up-|> event.SaverGetContexter event.EventLoggerGetContexter -up-|> event.StartGetContexter event.SaverGetContexter -up-|> debug.ConfigGetContexter event.SaverGetContexter -up-|> debug.ConnectGetContexter event.SaverGetContexter -up-|> event.EventLoggerGetContexter event.SaverGetContexter -up-|> event.StartGetContexter event.StartGetContexter -up-|> debug.ConfigGetContexter event.StartGetContexter -up-|> debug.ConnectGetContexter event.StartGetContexter -up-|> event.EventLoggerGetContexter event.StartGetContexter -up-|> event.SaverGetContexter @enduml
2d898ead85b1166e7bdf560be0ae2794a8e47120
0b4c1591a4b0e8944cd4924d6f53032dc188334f
/app/src/main/java/fi/delektre/ringa/ring_thesis/adapters/adapters.plantuml
e83d1f29db7dff46822440297f3c9f959754e519
[]
no_license
MrFreeman0/Thesis-Ring-App
d3b987c4a5bca8c903d72241508f8a9bc3358c04
8539bf1e6bc255df1a9439affc3aba9c6e7cc367
refs/heads/master
2020-09-14T18:05:06.282231
2019-11-21T15:52:42
2019-11-21T15:52:42
223,206,710
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,692
plantuml
@startuml title __ADAPTERS's Class Diagram__\n namespace fi.delektre.ringa.ring_thesis { namespace adapters { abstract class fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase { + items : List<T> + getItemCount() + onCreateViewHolder() {abstract} # onCreateItemView() } } } namespace fi.delektre.ringa.ring_thesis { namespace adapters { class fi.delektre.ringa.ring_thesis.adapters.SectionStatePagerAdapter { - mFragmentList : List<Fragment> - mFragmentTitleList : List<String> + SectionStatePagerAdapter() + addFragment() + getCount() + getItem() } } } namespace fi.delektre.ringa.ring_thesis { namespace adapters { class fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter { + buttonPosition : int + lineChart : LineChart + lineDataSetBloodPressure : LineDataSet + lineDataSetFluidBalance : LineDataSet + lineDataSetPulse : LineDataSet + lineDataSetTemperature1 : LineDataSet + lineDataSetTemperature2 : LineDataSet + lineDataSetsTemperatures : ArrayList<ILineDataSet> + mContext : Context + tempData : LineData ~ context : Context ~ yAxesFluid : ArrayList<Entry> ~ yAxesPressure : ArrayList<Entry> ~ yAxesPulse : ArrayList<Entry> ~ yAxesTemp1 : ArrayList<Entry> ~ yAxesTemp2 : ArrayList<Entry> - mSelectorOptions : ArrayList<SelectorOption> + initGraphsDataSets() + onBindViewHolder() # onCreateItemView() } } } namespace fi.delektre.ringa.ring_thesis { namespace adapters { class fi.delektre.ringa.ring_thesis.adapters.ViewWrapper { + ViewWrapper() + getView() } } } fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase -up-|> androidx.recyclerview.widget.RecyclerView.Adapter fi.delektre.ringa.ring_thesis.adapters.SectionStatePagerAdapter -up-|> androidx.fragment.app.FragmentStatePagerAdapter fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter -up-|> fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase fi.delektre.ringa.ring_thesis.adapters.ViewWrapper -up-|> androidx.recyclerview.widget.RecyclerView.ViewHolder fi.delektre.ringa.ring_thesis.adapters.ViewWrapper o-- V : view 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
e879cb963d029178d8181ec6e3ddfb5dc4fa8bb8
c24bf51cd487613207f96c659dfad8aca0c00366
/app/src/main/java/com/example/multiplication/multiplication.plantuml
fd3291ab804d52a0ea47c06727636acb58dd5fa1
[]
no_license
wetterbrandt/Multiplication
f8a49f9f3be9725b741641dd17239f59a1113142
69ff988699ffdbc93e1478877ed8bd639a0210e2
refs/heads/master
2020-09-06T03:33:54.377200
2019-12-11T11:09:45
2019-12-11T11:09:45
220,306,121
1
0
null
null
null
null
UTF-8
PlantUML
false
false
3,656
plantuml
@startuml title __MULTIPLICATION's Class Diagram__\n namespace com.example.multiplication { class com.example.multiplication.CustomListAdapter { - answers : String[] - context : Activity - correctAnswers : String[] - resultArray : String[] + CustomListAdapter() + getView() } } namespace com.example.multiplication { class com.example.multiplication.Game { {static} - answerList : String[] - nbrOfQuestions : int - questionNbr : int ~ Game() ~ getCurrentQuestionPosition() ~ getEverythingList() ~ getNbrOfQuestions() ~ nextQuestion() ~ setAnswer() - getCorrectAnswerList() - getNbrOfCorrectlyAnsweredQuestions() - getQuestionStringList() } } namespace com.example.multiplication { class com.example.multiplication.Game1Activity { ~ answerTextEdit : EditText ~ questionText : TextView # onCreate() # onPause() # onResume() # onStart() # onStop() - getNextQuestion() - openResultActivity() } } namespace com.example.multiplication { class com.example.multiplication.Game2Activity { ~ answerTextEdit : EditText ~ chooseTableText : TextView ~ questionText : TextView # onCreate() # onPause() # onResume() # onStart() # onStop() - getNextQuestion() - openResultActivity() } } namespace com.example.multiplication { class com.example.multiplication.MainActivity { # onCreate() - openActivity1() - openActivity2() } } namespace com.example.multiplication { class com.example.multiplication.Question { - correctAnswer : int - nbr1 : int - nbr2 : int + Question() + equals() ~ correctAnswer() ~ getCorrectAnswer() ~ getQuestion() ~ getQuestionsAndAnswer() } } namespace com.example.multiplication { class com.example.multiplication.QuestionList { - list : Question[] - nbrOfQuestions : int + QuestionList() ~ getQuestion() - checkListForDuplicateQuestions() - generateListWithQuestions() } } namespace com.example.multiplication { class com.example.multiplication.ResultActivity { ~ answers : String[] ~ correctAnswers : String[] ~ newGame : Button ~ resultView : ListView ~ results : String[] # onCreate() - generateLists() - openMainActivity() } } com.example.multiplication.CustomListAdapter -up-|> android.widget.ArrayAdapter com.example.multiplication.Game o-- com.example.multiplication.QuestionList : questionList com.example.multiplication.Game1Activity .up.|> java.io.Serializable com.example.multiplication.Game1Activity -up-|> androidx.appcompat.app.AppCompatActivity com.example.multiplication.Game1Activity o-- com.example.multiplication.Game : game com.example.multiplication.Game2Activity -up-|> androidx.appcompat.app.AppCompatActivity com.example.multiplication.Game2Activity o-- com.example.multiplication.Game : game com.example.multiplication.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.multiplication.ResultActivity -up-|> androidx.appcompat.app.AppCompatActivity 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
f13c9aef8169eb61e2de1adf4d9709a85de2c014
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ShoppingListLineItemDraft.puml
450aef361d8e76a6908169d17cd5ffce86091b5e
[]
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,761
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 ShoppingListLineItemDraft [[ShoppingListLineItemDraft.svg]] { key: String productId: String variantId: Long sku: String addedAt: DateTime custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] quantity: Long } interface MyShoppingListDraft [[MyShoppingListDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] description: [[LocalizedString.svg LocalizedString]] lineItems: [[ShoppingListLineItemDraft.svg List<ShoppingListLineItemDraft>]] textLineItems: [[TextLineItemDraft.svg List<TextLineItemDraft>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] deleteDaysAfterLastModification: Long store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] } interface ShoppingListDraft [[ShoppingListDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] slug: [[LocalizedString.svg LocalizedString]] customer: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]] key: String description: [[LocalizedString.svg LocalizedString]] anonymousId: String deleteDaysAfterLastModification: Long lineItems: [[ShoppingListLineItemDraft.svg List<ShoppingListLineItemDraft>]] textLineItems: [[TextLineItemDraft.svg List<TextLineItemDraft>]] store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } ShoppingListLineItemDraft --> MyShoppingListDraft #green;text:green : "lineItems" ShoppingListLineItemDraft --> ShoppingListDraft #green;text:green : "lineItems" @enduml
374821e94e12dc168ab3fa398521b2e0235e7365
25204319e8958e58cefcfc88491a090f36252c13
/arch/request-provider.class.puml
659b5e059f3a75fa708899ba7466421f9ed56aae
[]
no_license
eigen-space/base-http-client
fec16f9623f5c7cea3aa132629f37fa13f0b4d65
45ed2cc145ff88cd1d5285364a0544d96697827f
refs/heads/master
2023-08-29T13:15:46.683171
2021-11-10T11:40:29
2021-11-10T11:40:29
313,590,194
0
0
null
2021-11-10T11:39:39
2020-11-17T10:54:13
TypeScript
UTF-8
PlantUML
false
false
1,048
puml
@startuml !startsub RequestProvider interface RequestProvider<N> { + fetch<T>(\nurl: string, \noptions: RequestProviderOptions\n): RequestProviderResponse<N, T>; } !endsub class SpecificProvider abstract RequestProviderResponse<N, T> { # contentTypeToHandler: Dictionary<Function>; + constructor(nativeResponse: N): RequestProviderResponse<N, T>; + data(): Promise<T>; + {abstract} status(): HttpStatusCode | number; # {abstract} json(): Promise<T>; # {abstract} contentType(): ContentType; } interface RequestProviderOptions { + headers: AnyDictionary [0..1]; + method: HttpRequestMethod [0..1]; + body: AnyDictionary [0..1]; } class SpecificRequestProviderResponse class SpecificLibraryResponse SpecificProvider -up..|> RequestProvider RequestProviderOptions <--left[hidden] RequestProvider RequestProvider -[hidden] RequestProviderResponse SpecificRequestProviderResponse -up-|> RequestProviderResponse SpecificLibraryResponse "- nativeResponse" -down--o SpecificRequestProviderResponse @enduml
74426cba29a7147e164e68dac64c297b658afd12
7d6d23fe2b4b8a25e316194a3b28fa1d4060fcc4
/app/app.plantuml
c8093f5f251bd43fe7109b4f13d29df0f9a35cd4
[]
no_license
muhiqbal99/IBAKATEL
a3e30b181c739a624d3d089d8bbdcfe08e20d665
bedab9c7160dc8ffe358ee7e7a46422afe29716a
refs/heads/master
2023-04-07T03:19:46.480087
2021-04-05T11:38:39
2021-04-05T11:38:39
287,066,727
0
0
null
null
null
null
UTF-8
PlantUML
false
false
14,893
plantuml
@startuml title __APP's Class Diagram__\n namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.ActivityAdmin { } } namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.ActivityUser { } } namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.BuildConfig { } } namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.DashboardFrag { } } namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.Dashboard_User { } } namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.Dashboard_admin { } } namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.MainActivity { } } namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.about { } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { class com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin { } } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { class com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser { } } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { class com.ta.iqbal.ibakatel.dtbarang.Adapter { } } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { class com.ta.iqbal.ibakatel.dtbarang.ApiClient { } } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { interface com.ta.iqbal.ibakatel.dtbarang.ApiInterface { } } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { class com.ta.iqbal.ibakatel.dtbarang.Barang { } } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { class com.ta.iqbal.ibakatel.dtbarang.CustomFilter { } } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { class com.ta.iqbal.ibakatel.dtbarang.DetailBarangUser { } } } namespace com.ta.iqbal.ibakatel { namespace dtbarang { class com.ta.iqbal.ibakatel.dtbarang.EditorActivity { } } } namespace com.ta.iqbal.ibakatel { namespace identifikasi { class com.ta.iqbal.ibakatel.identifikasi.MyApplication { } } } namespace com.ta.iqbal.ibakatel { namespace identifikasi { class com.ta.iqbal.ibakatel.identifikasi.ScanActivity { } } } namespace com.ta.iqbal.ibakatel { namespace identifikasi { class com.ta.iqbal.ibakatel.identifikasi.TicketResultActivity { } } } namespace com.ta.iqbal.ibakatel { namespace identifikasi { class com.ta.iqbal.ibakatel.identifikasi.TicketView { } } } namespace com.ta.iqbal.ibakatel { namespace identifikasi { class com.ta.iqbal.ibakatel.identifikasi.tes { } } } namespace com.ta.iqbal.ibakatel { class com.ta.iqbal.ibakatel.item { } } namespace com.ta.iqbal.ibakatel { namespace laporan { class com.ta.iqbal.ibakatel.laporan.ActivityLaporan { } } } namespace com.ta.iqbal.ibakatel { namespace laporan { class com.ta.iqbal.ibakatel.laporan.Adapter { } } } namespace com.ta.iqbal.ibakatel { namespace laporan { class com.ta.iqbal.ibakatel.laporan.ApiClient { } } } namespace com.ta.iqbal.ibakatel { namespace laporan { interface com.ta.iqbal.ibakatel.laporan.ApiInterface { } } } namespace com.ta.iqbal.ibakatel { namespace laporan { class com.ta.iqbal.ibakatel.laporan.CustomFilter { } } } namespace com.ta.iqbal.ibakatel { namespace laporan { class com.ta.iqbal.ibakatel.laporan.EditorActivity { } } } namespace com.ta.iqbal.ibakatel { namespace laporan { class com.ta.iqbal.ibakatel.laporan.Laporan { } } } namespace com.ta.iqbal.ibakatel { namespace login { class com.ta.iqbal.ibakatel.login.AppController { } } } namespace com.ta.iqbal.ibakatel { namespace login { class com.ta.iqbal.ibakatel.login.Login { } } } namespace com.ta.iqbal.ibakatel { namespace login { class com.ta.iqbal.ibakatel.login.Register { } } } namespace com.ta.iqbal.ibakatel { namespace login { class com.ta.iqbal.ibakatel.login.Server { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { class com.ta.iqbal.ibakatel.pinjam.ActivityPinjam { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { class com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { class com.ta.iqbal.ibakatel.pinjam.Adapter { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { class com.ta.iqbal.ibakatel.pinjam.ApiClient { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { interface com.ta.iqbal.ibakatel.pinjam.ApiInterface { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { class com.ta.iqbal.ibakatel.pinjam.CustomFilter { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { class com.ta.iqbal.ibakatel.pinjam.EditorActivity { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { class com.ta.iqbal.ibakatel.pinjam.EditorActivityUser { } } } namespace com.ta.iqbal.ibakatel { namespace pinjam { class com.ta.iqbal.ibakatel.pinjam.Pinjam { } } } namespace com.ta.iqbal.ibakatel { namespace tes { class com.ta.iqbal.ibakatel.tes.ActivityTes { } } } namespace com.ta.iqbal.ibakatel { namespace tes { class com.ta.iqbal.ibakatel.identifikasi.QRCodeScanActivity { } } } namespace com.ta.iqbal.ibakatel { namespace tes { class com.ta.iqbal.ibakatel.tes.ScanResultActivity { } } } namespace com.ta.iqbal.ibakatel { namespace tutorial { class com.ta.iqbal.ibakatel.tutorial.Company { } } } namespace com.ta.iqbal.ibakatel { namespace tutorial { class com.ta.iqbal.ibakatel.tutorial.CompanyViewHolder { } } } namespace com.ta.iqbal.ibakatel { namespace tutorial { class com.ta.iqbal.ibakatel.tutorial.Product { } } } namespace com.ta.iqbal.ibakatel { namespace tutorial { class com.ta.iqbal.ibakatel.tutorial.ProductAdapter { } } } namespace com.ta.iqbal.ibakatel { namespace tutorial { class com.ta.iqbal.ibakatel.tutorial.ProductViewHolder { } } } namespace com.ta.iqbal.ibakatel { namespace tutorial { class com.ta.iqbal.ibakatel.tutorial.tutorial { } } } com.ta.iqbal.ibakatel.ActivityAdmin .up.|> android.view.View.OnClickListener com.ta.iqbal.ibakatel.ActivityAdmin -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.ActivityUser .up.|> android.view.View.OnClickListener com.ta.iqbal.ibakatel.ActivityUser -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.DashboardFrag -up-|> android.support.v4.app.Fragment com.ta.iqbal.ibakatel.DashboardFrag o-- com.ta.iqbal.ibakatel.DashboardFrag.OnFragmentInteractionListener : mListener com.ta.iqbal.ibakatel.Dashboard_User -up-|> android.support.v4.app.Fragment com.ta.iqbal.ibakatel.Dashboard_User o-- com.ta.iqbal.ibakatel.Dashboard_User.OnFragmentInteractionListener : mListener com.ta.iqbal.ibakatel.Dashboard_admin -up-|> android.support.v4.app.Fragment com.ta.iqbal.ibakatel.Dashboard_admin o-- com.ta.iqbal.ibakatel.Dashboard_admin.OnFragmentInteractionListener : mListener com.ta.iqbal.ibakatel.MainActivity -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.about -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin o-- com.ta.iqbal.ibakatel.dtbarang.ApiInterface : apiInterface com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin o-- com.ta.iqbal.ibakatel.dtbarang.Adapter.RecyclerViewClickListener : listener com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin o-- com.ta.iqbal.ibakatel.dtbarang.Adapter : adapter com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser o-- com.ta.iqbal.ibakatel.dtbarang.ApiInterface : apiInterface com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser o-- com.ta.iqbal.ibakatel.dtbarang.Adapter.RecyclerViewClickListener : listener com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser o-- com.ta.iqbal.ibakatel.dtbarang.Adapter : adapter com.ta.iqbal.ibakatel.dtbarang.Adapter .up.|> android.widget.Filterable com.ta.iqbal.ibakatel.dtbarang.Adapter -up-|> android.support.v7.widget.RecyclerView.Adapter com.ta.iqbal.ibakatel.dtbarang.Adapter o-- com.ta.iqbal.ibakatel.dtbarang.CustomFilter : filter com.ta.iqbal.ibakatel.dtbarang.Adapter o-- com.ta.iqbal.ibakatel.dtbarang.Adapter.RecyclerViewClickListener : mListener com.ta.iqbal.ibakatel.dtbarang.CustomFilter -up-|> android.widget.Filter com.ta.iqbal.ibakatel.dtbarang.CustomFilter o-- com.ta.iqbal.ibakatel.dtbarang.Adapter : adapter com.ta.iqbal.ibakatel.dtbarang.DetailBarangUser -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.dtbarang.EditorActivity -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.dtbarang.EditorActivity o-- com.ta.iqbal.ibakatel.dtbarang.ApiInterface : apiInterface com.ta.iqbal.ibakatel.identifikasi.MyApplication -up-|> android.app.Application com.ta.iqbal.ibakatel.identifikasi.ScanActivity .up.|> info.androidhive.barcode.BarcodeReader.BarcodeReaderListener com.ta.iqbal.ibakatel.identifikasi.ScanActivity -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.identifikasi.TicketResultActivity -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.identifikasi.TicketResultActivity o-- com.ta.iqbal.ibakatel.identifikasi.TicketView : ticketView com.ta.iqbal.ibakatel.identifikasi.TicketView -up-|> android.widget.LinearLayout com.ta.iqbal.ibakatel.laporan.ActivityLaporan -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.laporan.ActivityLaporan o-- com.ta.iqbal.ibakatel.laporan.ApiInterface : apiInterface com.ta.iqbal.ibakatel.laporan.ActivityLaporan o-- com.ta.iqbal.ibakatel.laporan.Adapter.RecyclerViewClickListener : listener com.ta.iqbal.ibakatel.laporan.ActivityLaporan o-- com.ta.iqbal.ibakatel.laporan.Adapter : adapter com.ta.iqbal.ibakatel.laporan.Adapter .up.|> android.widget.Filterable com.ta.iqbal.ibakatel.laporan.Adapter -up-|> android.support.v7.widget.RecyclerView.Adapter com.ta.iqbal.ibakatel.laporan.Adapter o-- com.ta.iqbal.ibakatel.laporan.CustomFilter : filter com.ta.iqbal.ibakatel.laporan.Adapter o-- com.ta.iqbal.ibakatel.laporan.Adapter.RecyclerViewClickListener : mListener com.ta.iqbal.ibakatel.laporan.CustomFilter -up-|> android.widget.Filter com.ta.iqbal.ibakatel.laporan.CustomFilter o-- com.ta.iqbal.ibakatel.laporan.Adapter : adapter com.ta.iqbal.ibakatel.laporan.EditorActivity -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.laporan.EditorActivity o-- com.ta.iqbal.ibakatel.laporan.ApiInterface : apiInterface com.ta.iqbal.ibakatel.login.AppController -up-|> android.app.Application com.ta.iqbal.ibakatel.login.Login -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.login.Register -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.pinjam.ActivityPinjam -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.pinjam.ActivityPinjam o-- com.ta.iqbal.ibakatel.pinjam.ApiInterface : apiInterface com.ta.iqbal.ibakatel.pinjam.ActivityPinjam o-- com.ta.iqbal.ibakatel.pinjam.Adapter.RecyclerViewClickListener : listener com.ta.iqbal.ibakatel.pinjam.ActivityPinjam o-- com.ta.iqbal.ibakatel.pinjam.Adapter : adapter com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser o-- com.ta.iqbal.ibakatel.pinjam.ApiInterface : apiInterface com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser o-- com.ta.iqbal.ibakatel.pinjam.Adapter.RecyclerViewClickListener : listener com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser o-- com.ta.iqbal.ibakatel.pinjam.Adapter : adapter com.ta.iqbal.ibakatel.pinjam.Adapter .up.|> android.widget.Filterable com.ta.iqbal.ibakatel.pinjam.Adapter -up-|> android.support.v7.widget.RecyclerView.Adapter com.ta.iqbal.ibakatel.pinjam.Adapter o-- com.ta.iqbal.ibakatel.pinjam.CustomFilter : filter com.ta.iqbal.ibakatel.pinjam.Adapter o-- com.ta.iqbal.ibakatel.pinjam.Adapter.RecyclerViewClickListener : mListener com.ta.iqbal.ibakatel.pinjam.CustomFilter -up-|> android.widget.Filter com.ta.iqbal.ibakatel.pinjam.CustomFilter o-- com.ta.iqbal.ibakatel.pinjam.Adapter : adapter com.ta.iqbal.ibakatel.pinjam.EditorActivity -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.pinjam.EditorActivity o-- com.ta.iqbal.ibakatel.pinjam.ApiInterface : apiInterface com.ta.iqbal.ibakatel.pinjam.EditorActivityUser -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.pinjam.EditorActivityUser o-- com.ta.iqbal.ibakatel.pinjam.ApiInterface : apiInterface com.ta.iqbal.ibakatel.tes.ActivityTes -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.identifikasi.QRCodeScanActivity .up.|> me.dm7.barcodescanner.zxing.ZXingScannerView.ResultHandler com.ta.iqbal.ibakatel.identifikasi.QRCodeScanActivity -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.tes.ScanResultActivity -up-|> android.support.v7.app.AppCompatActivity com.ta.iqbal.ibakatel.tutorial.Company -up-|> com.thoughtbot.expandablerecyclerview.models.ExpandableGroup com.ta.iqbal.ibakatel.tutorial.CompanyViewHolder -up-|> com.thoughtbot.expandablerecyclerview.viewholders.GroupViewHolder com.ta.iqbal.ibakatel.tutorial.Product .up.|> android.os.Parcelable com.ta.iqbal.ibakatel.tutorial.ProductAdapter -up-|> com.thoughtbot.expandablerecyclerview.ExpandableRecyclerViewAdapter com.ta.iqbal.ibakatel.tutorial.ProductViewHolder -up-|> com.thoughtbot.expandablerecyclerview.viewholders.ChildViewHolder com.ta.iqbal.ibakatel.tutorial.tutorial -up-|> android.support.v7.app.AppCompatActivity 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
da4ecf4657e7f09c241a50844bfdedb8b6acc685
afaba8b7f5d826664155b257db77cf4dbf4b8816
/oop-pattern/ch06/resources/uml.puml
544931474d13adb5522a81f9625d8a51f111ae98
[ "MIT" ]
permissive
appkr/pattern
b40b621e52c9b27be01f2a21f2f605a459ac998f
1e635f7b79cc4b89d2e75455cb14e1572619eb20
refs/heads/master
2022-11-02T01:56:18.654766
2022-10-12T08:45:58
2022-10-12T08:47:36
71,896,898
11
2
MIT
2018-11-10T15:05:11
2016-10-25T12:55:03
PHP
UTF-8
PlantUML
false
false
1,312
puml
@startuml 'skinparam linetype ortho package main { class Main { 'ui 구동 'worker 구동 } } package ui { class JobCLI { - jobQueue: JobQueue + interact(): boolean '트랜스코드할 문자열을 입력 받는다 '출력 장치를 입력 받는다 'JobData를 만들고 Queue에 넣는다 } } class JobData { - source: String - target: Target } package application { class Worker { - jobQueue: JobQueue - transcoder: Transcoder + run(): void 'JobQueue에서 JobData를 읽는다 'Transcoder에게 작업을 위임하고 결과를 받는다 '결과 출력을 Target에게 위임한다 } interface JobQueue { + addJob(job: JobData): void + getJob(): JobData } interface Transcoder { + transcode(source: String): String } interface Target { + flush(): void } } class FileJobQueue implements JobQueue {} class InMemoryJobQueue implements JobQueue {} class ShuffleTranscoder implements Transcoder {} class ReverseTranscoder implements Transcoder {} class FileTarget implements Target {} class ScreenTarget implements Target {} Main --> JobCLI Main -> Worker JobCLI --> JobQueue JobCLI .> JobData JobQueue .up.> JobData Worker -> JobQueue Worker .> JobData Worker --> Transcoder Worker --> Target @enduml
c5f975472fb85e43f28b010705ff76016dd4c3b6
922d98ceb2339c0282040fccf9c4e2031e398789
/diagramas/error.plantuml
3913c09b21dd231b62cf9a22ceaa9e3a4e782537
[]
no_license
vonbeitthia/FarmaciaUML
30fb8825a643c759f0c2d8de23464bae89c23551
8b3ba6ca0b9da6fcbac7fecfbebc1134f1b5650b
refs/heads/main
2023-01-27T11:31:15.031334
2020-12-06T00:27:34
2020-12-06T00:27:34
316,989,460
0
0
null
null
null
null
UTF-8
PlantUML
false
false
965
plantuml
```plantuml @startuml analisis de error title Analisis de errores **sistema de Farmacia** end title header Ordenado por espacios de nombre end header !include https://raw.githubusercontent.com/vonbeitthia/FarmaciaUML/main/skin/blue.plantuml '!include ./skin/blue.plantuml package login { class errorAuth { id : int descripcion : str mensaje : str } } note right **manejo de excepciones en el modulo de autenticacion** <#AliceBlue>|= Error |= descripcion |= mensaje | <#LightSkyBlue>| 3000 | usuario no ingresado | ingrese un nombre de usuario| <#AntiqueWhite>| 3005 | contraseña no ingresada | ingrese una contraseña | <#LightSkyBlue>| 3010 | usuario no encontrado | usuario o contraseña no encontrada | <#AntiqueWhite>| 3015 | contraseña invalida | usuario o contraseña no encontrada | <#LightSkyBlue>| 3020 | acceso bloqueado | usuario bloqueado, comuniquese con el administrador | end note @enduml
c7833aa57a0819c360c199fa046ad6854be714ab
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/CartUpdateItemShippingAddressAction.puml
fca0b6e8e5d06caef341075edb05155a15abcb78
[]
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
481
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 CartUpdateItemShippingAddressAction [[CartUpdateItemShippingAddressAction.svg]] extends CartUpdateAction { action: String address: [[BaseAddress.svg BaseAddress]] } interface CartUpdateAction [[CartUpdateAction.svg]] { action: String } @enduml
b13e62f9853c5843a9f3daa3cbb7ec1c27965901
2a05c19c522de7ac2f880aa0ba60547ace21cc30
/uml/composition.puml
330de259900d325c1c822af67d279650d1e58e72
[]
no_license
lbvs86823/lbvs86823.github.com
458c5ca2ccae6a54519129a86545d817cfaf418f
129e1ea762ab70c2b54886b561775d5dfd7841d6
refs/heads/master
2021-12-07T03:23:18.169009
2021-08-20T09:19:30
2021-08-20T09:19:30
16,271,667
0
0
null
null
null
null
UTF-8
PlantUML
false
false
133
puml
@startuml title 组合关系 class Person { - hands : List<Hand> } class Hand Person "1" *-right- "n" Hand : 组合 @enduml
4a85ac305c53bad9acf96195356823b81ca8dbbf
c341215b1b9d88fee81b8af9ebfcff285f0ef49c
/src/gp018328/com/gupaoedu/homework/pattern/factory/homework1/FactoryMethod.puml
0b391272e191c9a8a23373db2c8c3bba423c945d
[]
no_license
GP018328/guopaoedu-GP018328-2019-homework
5570fff2a379b9bbc853d2a7f4629b22fdf640ac
18f24258150c0c32ffc4fb486413686e7e4d2d75
refs/heads/master
2020-04-28T17:34:08.734073
2019-03-23T03:01:20
2019-03-23T03:01:20
175,451,458
0
0
null
null
null
null
UTF-8
PlantUML
false
false
442
puml
@startuml interface IProduct interface IProduct{ } class ProductA { } IProduct<|--ProductA class ProductB { } IProduct<|--ProductB interface IFactory interface IFactory{ IProduct createProduct() } IProduct<..IFactory class FactoryMethodA{ IProduct createProduct() } IFactory<|--FactoryMethodA ProductA<..FactoryMethodA class FactoryMethodB{ IProduct createProduct() } IFactory<|--FactoryMethodB ProductB<..FactoryMethodB @enduml
efdac6fb158b1c462a71ff8a74479cba8d522b75
e7b46ab28944e0e492271f96b723069446a108d4
/Bounty Hunter/src/method/method.plantuml
3ddcffb11149e08f45415ad21633dd16d7534306
[]
no_license
badboiririi/blonde
21fb32baee3adb765c5f8ebb58a94f278b612ee9
a688ab3006516f9f0cc23c73897cd8a5dcb100dc
refs/heads/main
2023-06-09T18:55:18.723775
2021-06-24T03:01:19
2021-06-24T03:01:19
367,758,887
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,539
plantuml
@startuml title __METHOD's Class Diagram__\n namespace method { class method.Delete { ~ con : Connection ~ dsql : Statement + delete() } } namespace method { class method.HelpAdd { ~ con : Connection ~ hsql : Statement + add() } } namespace method { class method.Insert { ~ con : Connection ~ irs : ResultSet ~ isql : Statement + getinsert() } } namespace method { class method.Login { ~ con : Connection ~ lrs : ResultSet ~ lsql : Statement + getlog() } } namespace method { class method.Search { ~ con : Connection ~ srs : ResultSet ~ ssql : Statement + search() } } namespace method { class method.Show { ~ con : Connection ~ srs : ResultSet ~ ssql : Statement + show() } } method.Delete .up.|> iterfaces.DeleteItf method.Delete o-- util.JDBC_link : getcon method.HelpAdd .up.|> iterfaces.AddItf method.HelpAdd o-- util.JDBC_link : getcon method.Insert o-- util.JDBC_link : getcon method.Login o-- util.JDBC_link : getcon method.Search .up.|> iterfaces.SearchItf method.Search o-- util.JDBC_link : getcon method.Show o-- util.JDBC_link : getcon 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
76e6003a289a62afe7e46ee8846a9886cc5c618c
1fef2f0f0ad13aebb3d3f732d0cae8867ee8e87c
/plantuml/Microwave.Classes/Interfaces/IUserInterface.puml
14b7c5517fa5c8505adcafcc2e414d3cbebc7b78
[]
no_license
eengstroem/MicrowaveOven
b9711c314f053f00f9208cae69085d7bdf0ba3d4
ac721f24f0025f5e10f50d4d58c4a7ad30f9fbd2
refs/heads/master
2023-04-25T09:55:42.513911
2021-05-24T16:45:23
2021-05-24T16:45:23
363,380,008
0
0
null
null
null
null
UTF-8
PlantUML
false
false
345
puml
@startuml interface IUserInterface { OnPowerPressed(sender:object, e:EventArgs) : void OnTimePressed(sender:object, e:EventArgs) : void OnStartCancelPressed(sender:object, e:EventArgs) : void OnDoorOpened(sender:object, e:EventArgs) : void OnDoorClosed(sender:object, e:EventArgs) : void CookingIsDone() : void } @enduml
91f071881a78767e35dcbe1812fb1b0ac28ec103
ddd9fceda7accb11f6e5c8f3614ee9b5a717d8e8
/node/src/deps/libuv/internal.puml
c8d21b90add26edc865caa7f60f7c2828ce6c61d
[]
no_license
Ayase-252/note-figures
e2cf7578aa9363346ac0c97bac38dc88e2afd6c8
259f9b7eb718359e7c63f9c5da97b1e6e098b3c2
refs/heads/master
2023-04-14T13:19:23.107968
2021-05-01T11:26:13
2021-05-01T11:26:13
337,063,921
0
0
null
null
null
null
UTF-8
PlantUML
false
false
186
puml
@startuml deps/libuv/utils namespace libuv <<ExternalCModule>> { class internal { uint64_t uv__hrtime(uv_clocktype_t type) void uv__signal_global_once_init(void) } } @enduml
1b1a3ef394871e55f36f1fc603df12fdc0d64aa6
42f7bcc902e893d7774b8f564104251cc6d2f811
/front-end/GuGu_Client/app/app.plantuml
a832ae97ba173423a09dec2d17c301243ef412d5
[]
no_license
GuessOurName/GuGu
7c4a1922fd0594a636d6ee94f7c56bc256481b83
bd07ba6295e9e208b3a5aad9f195bd368e84fb25
refs/heads/master
2022-10-19T07:19:26.981398
2020-06-15T11:16:09
2020-06-15T11:16:09
264,867,917
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,964
plantuml
@startuml title __APP's Class Diagram__\n namespace Activity { class Activity.AtyAdd { } } namespace Activity { class Activity.AtyChatRoom { } } namespace Activity { class Activity.AtyLoginOrRegister { } } namespace Activity { class Activity.AtyMain { } } namespace Activity { class Activity.AtyWelcome { } } namespace Adapter { class Adapter.AdapterAvatar { } } namespace Adapter { class Adapter.AdapterBackground { } } namespace Adapter { class Adapter.AdapterChatMsg { } } namespace Adapter { class Adapter.AdapterMainViewPager { } } namespace Adapter { class Adapter.AdapterMomentItem { } } namespace Adapter { class Adapter.AdapterUserItem { } } namespace Server { class Server.ReceiveChatMsg { } } namespace Server { class Server.ServerManager { } } namespace Util { class Util.ChatMsg { } } namespace Util { class Util.ImageManager { } } namespace Util { class Util.ImageMsg { } } namespace Util { class Util.LoginMsg { } } namespace Util { class Util.MomentMsg { } } namespace Util { class Util.RegisterMsg { } } namespace Util { class Util.UserItemMsg { } } namespace View { class View.LayoutChats { } } namespace View { class View.LayoutContacts { } } namespace View { class View.LayoutMoments { } } namespace View { class View.PicAndTextBtn { } } namespace View { class View.TitleBar { } } namespace com.example.gugu_client { class com.example.gugu_client.BuildConfig { } } Activity.AtyAdd -up-|> androidx.appcompat.app.AppCompatActivity Activity.AtyAdd o-- View.TitleBar : titleBar Activity.AtyChatRoom -up-|> androidx.appcompat.app.AppCompatActivity Activity.AtyChatRoom o-- View.TitleBar : titleBar Activity.AtyLoginOrRegister .up.|> android.view.View.OnClickListener Activity.AtyLoginOrRegister -up-|> androidx.appcompat.app.AppCompatActivity Activity.AtyLoginOrRegister o-- Server.ServerManager : serverManager Activity.AtyMain -up-|> androidx.appcompat.app.AppCompatActivity Activity.AtyMain o-- View.LayoutChats : chats Activity.AtyMain o-- View.LayoutContacts : contacts Activity.AtyMain o-- View.LayoutMoments : moments Activity.AtyMain o-- View.TitleBar : titleBar Activity.AtyWelcome -up-|> androidx.appcompat.app.AppCompatActivity Adapter.AdapterAvatar -up-|> androidx.recyclerview.widget.RecyclerView.Adapter Adapter.AdapterBackground -up-|> androidx.recyclerview.widget.RecyclerView.Adapter Adapter.AdapterChatMsg -up-|> android.widget.ArrayAdapter Adapter.AdapterMainViewPager -up-|> androidx.fragment.app.FragmentPagerAdapter Adapter.AdapterMomentItem -up-|> androidx.recyclerview.widget.RecyclerView.Adapter Adapter.AdapterUserItem -up-|> androidx.recyclerview.widget.RecyclerView.Adapter View.LayoutChats -up-|> androidx.fragment.app.Fragment View.LayoutChats o-- Adapter.AdapterUserItem : adapterUserItem View.LayoutContacts -up-|> androidx.fragment.app.Fragment View.LayoutContacts o-- View.PicAndTextBtn : patbBarContact View.LayoutContacts o-- View.PicAndTextBtn : patbBarGroup View.LayoutMoments -up-|> androidx.fragment.app.Fragment View.LayoutMoments o-- Adapter.AdapterMomentItem : adapterMomentItem View.PicAndTextBtn -up-|> android.widget.LinearLayout View.PicAndTextBtn o-- View.PicAndTextBtn.picAndTextBtnClickListener : listener View.TitleBar -up-|> android.widget.RelativeLayout View.TitleBar o-- View.TitleBar.titleBarClickListener : listener 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
efe84212a5ebe70b9ecf91f8b829cba0c1aa73c7
d46d5fba157d4db421ef4b24ea56770bc2d14aca
/umlDiagram/ClassDiagram.plantuml
ea01a04d13a30a3ecb246416f38f1bd19bcc13c7
[ "MIT" ]
permissive
waim/simulation-game
1e12170b06dd903ed475d9d162d9a1db7ae96bf8
8a3350e0544a1a4a14840129d0985973a73c901e
refs/heads/master
2022-07-16T03:05:54.288526
2020-05-18T09:17:39
2020-05-18T09:17:39
264,601,646
0
0
MIT
2020-05-18T09:17:40
2020-05-17T06:49:07
Java
UTF-8
PlantUML
false
false
950
plantuml
@startuml ' 作成日:2020/05/17 waim title 簡易シミュレーションゲームの\n簡易クラス図 class プレイヤー{ - name : String - 身分 : String - 学年 : String - 持ち物リスト : ArrayList<持ち物> - 性格美人度 : int - 女子力度 : int - モテ度 : int - 行動力 : int + getter() + setter() + 持ち物を使う() + 持ち物の一覧を見る() } class NPC { - npcId : int - name : String - キャラビジュアル : Img - 身分 : String - 学年 : String - 紹介文 : String - 攻略可否 : Boolean - 攻略難易度 : String - 主人公への好感度 : int + getter() + setter() } class 持ち物 { - itemId : int - name : String - 説明文 : String + getter() + setter() } class Img { - 何か画像をどうにかするやつ + getter() + setter() } プレイヤー ..> 持ち物 NPC --> Img NPC ..> 持ち物 legend 実装はJava6ベース。 end legend @enduml
937852024232fcfab7d75b143bf8c6dbffd069bf
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StandalonePriceRemoveStagedChangesAction.puml
b6c0d8c7cd572d1044786a4daa7a31de3d99ba47
[]
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
479
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 StandalonePriceRemoveStagedChangesAction [[StandalonePriceRemoveStagedChangesAction.svg]] extends StandalonePriceUpdateAction { action: String } interface StandalonePriceUpdateAction [[StandalonePriceUpdateAction.svg]] { action: String } @enduml
9dd52a54b7f6ad0d29e9278cafa329383ae7cda4
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
/build/car-rental-tr@0.3.0.puml
32be951fdfbfd0de23e029c82ce72630504dc58c
[ "Apache-2.0", "CC-BY-4.0", "LicenseRef-scancode-unknown-license-reference" ]
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
1,119
puml
@startuml class org.accordtr.carrental.PaymentRequest << (T,yellow) >> { } org.accordtr.carrental.PaymentRequest --|> org.accordproject.cicero.runtime.Request class org.accordtr.carrental.PayOut << (T,yellow) >> { + MonetaryAmount amount } org.accordtr.carrental.PayOut --|> org.accordproject.cicero.runtime.Response class org.accordtr.carrental.CarRentalContract << (A,green) >> { + String lessorName + String lessorAddress + String lessorPhone + String lesseeName + String lesseeAddress + String lesseePhone + String authorizedCourt + String plateID + String carBrand + String model + String modelYear + String color + String vechileID + String startDate + String endDate + String deliveryStation + PaymentClause paymentClause } org.accordtr.carrental.CarRentalContract --|> org.accordproject.cicero.contract.AccordContract class org.accordtr.carrental.PaymentClause << (A,green) >> { + String amountText + MonetaryAmount amount + String paymentProcedure } org.accordtr.carrental.PaymentClause --|> org.accordproject.cicero.contract.AccordClause @enduml
161659b8ef0370a5663b2bc13ec6377e7209a9a3
39facdc394dc36074cf96e954397d368c7a56d0c
/doc/virtualService/VirtualService.puml
2392b969273a3dd3a24d43af11cd3b88d136db4f
[]
no_license
dkontorovskyy/polaris-backend
b0cf681cbb10f313c928264212e3611c4d4d3081
ce30cff81f4dfc85b267fa60bda688dedb168eec
refs/heads/master
2022-11-23T14:18:11.216552
2019-10-29T22:01:54
2019-10-29T22:01:54
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
773
puml
@startuml skinparam monochrome true skinparam defaultFontName OpenSans hide empty fields hide empty methods abstract class AbstractService { setConfigurationParameter() start() stop() reset() ...() } Service <|-up- AbstractService VirtualService <|-up- AbstractService Service o--"1..*" Strategy VirtualService -down-|> AggregatedService VirtualService -down-|> Timer VirtualService -down-|> PIDController VirtualService -down-|> FurtherVirtualService class Module { connect() } Module o--"1..*" Service class Service { setStrategy() setStrategyParameter() } abstract class VirtualService { instantiate() setStrategyParameter() } class AggregatedService AggregatedService o--"1..*" AbstractService : necessaryServices > class Timer class PIDController @enduml
931d38da47957bbbf02092ef8084db2bc4254ff5
73a2ec211090e75d728bfe08f07f90a50ecde9d4
/src/uml/budgetClass.puml
d286ffdef21810ca2abf3977dc1a9c368f1ab1c1
[]
no_license
AY2021S1-CS2113T-F14-2/tp
080d69cd41305be497efb4e92db44b2ea28bb153
da1045800fbd5bc280f052ed9943717dc2cf66f6
refs/heads/master
2023-01-05T11:52:07.039686
2020-11-09T15:08:14
2020-11-09T15:08:14
297,841,937
0
5
null
2020-11-09T15:08:15
2020-09-23T03:31:27
Java
UTF-8
PlantUML
false
false
188
puml
@startuml hide circle hide members skinparam classAttributeIconSize 0 class "{abstract}\nCommand" class Budget "{abstract}\nCommand" -right-> Budget : execute Budget -> Storage @enduml
c24601a34a88901cffb88b26775379658f2fb3e3
c69dba4cef780d27a126166ee912005507258413
/src/design/data-context-class-diagram.puml
e8d3eb84e67a28a09a5d00a600178a44add490c7
[ "MIT", "EPL-1.0", "Apache-2.0" ]
permissive
CS-SI/Orekit
2265900b501fe6727a57378956f9f2c61564909a
7ab7a742674eabee00e1dbe392833d587fdcdaab
refs/heads/develop
2023-09-03T20:33:42.748576
2023-09-01T14:34:03
2023-09-01T14:34:03
22,851,787
144
79
Apache-2.0
2023-03-28T17:53:33
2014-08-11T19:29:35
Java
UTF-8
PlantUML
false
false
3,697
puml
' Copyright 2002-2023 CS GROUP ' Licensed to CS GROUP (CS) under one or more ' contributor license agreements. See the NOTICE file distributed with ' this work for additional information regarding copyright ownership. ' CS licenses this file to You under the Apache License, Version 2.0 ' (the "License"); you may not use this file except in compliance with ' the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, software ' distributed under the License is distributed on an "AS IS" BASIS, ' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ' See the License for the specific language governing permissions and ' limitations under the License. @startuml skinparam svek true skinparam ClassBackgroundColor #F3EFEB/CCC9C5 skinparam ClassArrowColor #691616 skinparam ClassBorderColor #691616 skinparam NoteBackgroundColor #F3EFEB skinparam NoteBorderColor #691616 skinparam NoteFontColor #691616 skinparam ClassFontSize 11 skinparam PackageFontSize 12 skinparam linetype ortho package org.orekit #ECEBD8 { package data #DDEBD8 { interface DataContext { + {static} LazyLoadedDataContext getDefault() + {static} setDefault(LazyLoadedDataContext) .. +TimeScales getTimeScales() +Frames getFrames() +CelestialBodies getCelestialBodies() +...() } note top manages factories end note class LazyLoadedDataContext { +DataProvidersManager getDataProvidersManager() } class DataProvidersManager { +boolean feed(String supportedNames, DataLoader loader) } LazyLoadedDataContext o-- DataProvidersManager DataContext <|-- LazyLoadedDataContext } package time #DDEBD8 { interface TimeScales { {static} +TimeScales of(utcMinusTai, eopSupplier) +TimeScale getTai() +TimeScale getUtc() +TimeScale getUt1() +...() } DataContext o-- TimeScales class LazyLoadedTimeScales TimeScales <|-- LazyLoadedTimeScales LazyLoadedDataContext o-- LazyLoadedTimeScales } package bodies #DDEBD8 { interface CelestialBodies{ +CelestialBody getSun() +CelestialBody getMoon() +...() } class LazyLoadedCelestialBodies DataContext o-- CelestialBodies CelestialBodies <|-- LazyLoadedCelestialBodies LazyLoadedDataContext o-- LazyLoadedCelestialBodies } package frames #DDEBD8 { interface Frames { {static} +Frames of(timeScales, celestialBodies) {static} +Frames of(timeScales, icrfSupplier) +Frame getGcrf() +Frame getItrf(...) +...() } class LazyLoadedFrames class LazyLoadedEop DataContext o-- Frames Frames <|-- LazyLoadedFrames LazyLoadedTimeScales o-- LazyLoadedEop LazyLoadedFrames o-- LazyLoadedEop LazyLoadedFrames o-right- CelestialBodies LazyLoadedDataContext o-- LazyLoadedFrames } } package user.application #F3EDF7 { class MyDataContext #EAE6F7/B9B3D2 class MyProvider #EAE6F7/B9B3D2 class DataBase #EAE6F7/B9B3D2 class Main #EAE6F7/B9B3D2 DataContext <|-- MyDataContext MyDataContext o-- MyProvider Main --> MyDataContext : creates MyProvider *--> "1" DataBase } @enduml
67dccb465645509ec77e65134345ac9e45f1d5ab
43ec4ea3b633244f5deef45315f19844a852a034
/ExanteTaxCalculator/doc/class.puml
f8a8b6747030fd242f516c672e3665510d8a8dcd
[]
no_license
mateuszmidor/PythonStudy
4a34feab04fe1bcc62a67506a5e7be85fb209d8c
579b79b76cb5ce27cb9af09a2bd3db3c5ad65595
refs/heads/master
2023-05-25T11:32:50.274138
2023-05-17T06:08:29
2023-05-17T06:08:29
21,539,459
0
0
null
2023-05-23T00:40:51
2014-07-06T12:20:36
Python
UTF-8
PlantUML
false
false
1,256
puml
@startuml class ' title Device and it's innards ' enum AuthProtocol { ' none ' md5 ' sha ' } ' enum PrivProtocol { ' none ' des ' aes ' } class TradingReport { +dividends: List[DividendItemPLN] +taxes: List[TaxItemPLN] +trades_by_asset: Map[str, List[ProfitItemPLN] } class TaxDeclarationNumbers { +shares_income +shares_cost +shares_tax +dividends_income +dividends_tax_already_paid +dividends_tax_yet_to_pay } TaxDeclarationNumbers --o TradingReport ' AuthProtocol --* SNMPv3Conf ' PrivProtocol --* SNMPv3Conf ' class DeviceLabel { ' +id: int ' +name: str ' +color: str ' } ' class Site { ' +site_name: str ' +longitude: float ' +latitude: float ' } ' class Device #pink { ' +id: int ' +device_type: DeviceType ' +device_subtype: DeviceSubtype ' +... ' +new_dns(...) ' +new_router(...) ' } ' note right: new_dns(...) and new_router(...) \nare convenient constructors ' SNMPv3Conf --o Device ' DeviceLabel --o Device ' Site --o Device @enduml
1f59ec7457bf505a769d458c51f40ab4e126c30b
7315eaed724af93524e50fcfcc9347e269697fda
/docs/test.plantuml
ed23bed2f537a1c64574480189be95e3a1782697
[ "MIT" ]
permissive
GameDialogSystem/FlowLogic
8f76f135495bde8265d86c995e0c9f4c81d06ae6
8f21e74018b975b232f43b07b49682bd6c52dfb7
refs/heads/master
2021-09-22T11:27:34.215450
2018-09-09T16:44:33
2018-09-09T16:44:33
106,968,590
0
0
null
null
null
null
UTF-8
PlantUML
false
false
401
plantuml
skinparam style strictuml class Façade { doSomething() } Façade .> package1.Class1 Façade .> package2.Class2 Façade .> package3.Class3 Client1 .> Façade : doSomething() Client2 .> Façade : doSomething() note as N2 doSomething() { Class1 c1 = newClass1(); Class2 c2 = newClass2(); Class3 c3 = newClass3(); c1.doStuff(c2) c3.setX(c1.getX()); return c3.getY(); } end note Facade .. N2
8af18ce2c1c9333aa324831dc7a75be1be6771c9
101a462bd99bd3324c849ff4596d2895e33ceafa
/td3.plantuml
2a20aac2397626f8682263a9f80b0f2245cb20fe
[ "MIT" ]
permissive
IUT-Blagnac/bcoo-El-FaroukA
4ed612386208f71fed3cc4006b1c17c181cb7f54
6442fe0acc2ff098aa0cbfc84fe2740add86e48e
refs/heads/main
2023-04-24T17:29:21.070171
2021-05-03T07:08:54
2021-05-03T07:11:21
335,633,672
0
2
null
null
null
null
UTF-8
PlantUML
false
false
657
plantuml
@startuml hide circle hide empty methods hide empty attributes class Stage { lieu dateDebut nomTuteur theme } class Entreprise { nom adresse siegeSocial } class Promotion { libelle } class Etudiant { numINE nom prenom note } class GroupeTP { libelle } class GroupeTD { libelle } class Enseignant { nom prenom specialite } Stage "1" -- "*" Entreprise Stage -- "1" Promotion Etudiant -- "1" GroupeTP GroupeTP -- "1" GroupeTD GroupeTD -- "1" Promotion Tuteur -|> Enseignant Stage -- "0..1\nTuteur" Enseignant Stage "0..1" - "0..1" Etudiant @enduml
45e0f89f956a2a3d65c15a620719ae22c7e2e12d
112e511928937b8ec60004ca94f1dd996bd9fd1a
/Documents/Shos.Chatter.Wpf/ViewModels/MainViewModel.puml
f518f1ba0986aaa70a0978c04f3eb6907d61d17a
[ "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
2,133
puml
@startuml class MainViewModel { + MainViewModel() + UserId : int <<get>> <<set>> } class CommandBase { + <<event>> CanExecuteChanged : EventHandler? + CommandBase(model:ChatterModel) + <<virtual>> CanExecute(parameter:object) : bool + <<virtual>> Execute(parameter:object) : void } class AddUserCommandType { + AddUserCommandType(model:ChatterModel) + <<override>> Execute(parameter:object) : void } class UpdateUserCommandType { + UpdateUserCommandType(model:ChatterModel) + <<override>> Execute(parameter:object) : void } class DeleteUserCommandType { + DeleteUserCommandType(model:ChatterModel) + <<override>> Execute(parameter:object) : void } class AddChatCommandType { + AddChatCommandType(model:ChatterModel) + <<override>> Execute(parameter:object) : void } class UpdateChatCommandType { + UpdateChatCommandType(model:ChatterModel) + <<override>> Execute(parameter:object) : void } class DeleteChatCommandType { + DeleteChatCommandType(model:ChatterModel) + <<override>> Execute(parameter:object) : void } class "IEnumerable`1"<T> { } BindableBase <|-- MainViewModel MainViewModel o-> "model" ChatterModel MainViewModel --> "AddUserCommand" ICommand MainViewModel --> "UpdateUserCommand" ICommand MainViewModel --> "DeleteUserCommand" ICommand MainViewModel --> "AddChatCommand" ICommand MainViewModel --> "UpdateChatCommand" ICommand MainViewModel --> "DeleteChatCommand" ICommand MainViewModel --> "Users<UserBase>" "IEnumerable`1" MainViewModel --> "Chats<ChatBase>" "IEnumerable`1" MainViewModel --> "Model" ChatterModel MainViewModel +-- CommandBase ICommand <|-- CommandBase MainViewModel +-- AddUserCommandType CommandBase <|-- AddUserCommandType MainViewModel +-- UpdateUserCommandType CommandBase <|-- UpdateUserCommandType MainViewModel +-- DeleteUserCommandType CommandBase <|-- DeleteUserCommandType MainViewModel +-- AddChatCommandType CommandBase <|-- AddChatCommandType MainViewModel +-- UpdateChatCommandType CommandBase <|-- UpdateChatCommandType MainViewModel +-- DeleteChatCommandType CommandBase <|-- DeleteChatCommandType @enduml
0acdfef97d605b1a9fe67175f8c6fb9ce46d7e3d
b774d5b532ef20e5c8476e35ea90da5e3f09287e
/src/com/github/tomap/uml/conception/classDiagrams/DialogClasscontroller.puml
8b082c34d60c4ebd6272aea1f9a41176fbc11247
[]
no_license
Phalexei/Modeleur
ae94ab6c191a7999cf9deaee4dac8542eb6a52bb
f143c85930c3b668670087693ec807a9cd4bda81
refs/heads/master
2021-01-02T08:51:16.535103
2013-11-16T19:54:20
2013-11-16T19:54:20
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
868
puml
@startuml class A_ClassDiagram { } class javax.swing.JDialog { } interface java.awt.event.ActionListener { } abstract class DiagramController { } abstract class DialogController { } class DialogClass { + DialogClass (DialogClass) - makePanels() - makeListener(DialogClass) : void } class ListenerDialogClass { + ListenerDialogClass(DialogClass,DialogClass) + actionPerformed(ActionEvent e) : void + addClass() : void } DialogClass --|> javax.swing.JDialog ListenerDialogClass --|> DialogController DialogController --|> DiagramController ListenerDialogClass ..> java.awt.event.ActionListener DiagramController --> A_ClassDiagram DialogClass "1"-->"1" A_ClassDiagram DialogClass "1"*."1" ListenerDialogClass @enduml
e075ae52837d31ae7221244de45087deca8cfcf5
c815f9c82c1400f76243750cd0ec609d217b9943
/caching/etc/caching.urm.puml
b8f4fb49b6b4fcb0b0f312c7a693dcd1a6b36275
[ "MIT" ]
permissive
mikulucky/java-design-patterns
6ab10e9e5c95b6caffebf045d37d04a1571bc0cd
cbbf3bf08842723964719ed7d8ab92864ec5a58d
refs/heads/master
2021-01-17T23:34:49.962450
2016-09-28T19:54:28
2016-09-28T19:54:28
48,302,802
1
1
null
2016-01-02T23:58:44
2015-12-20T01:00:47
Java
UTF-8
PlantUML
false
false
3,143
puml
@startuml package com.iluwatar.caching { class App { + App() + main(args : String[]) {static} + useReadAndWriteThroughStrategy() + useReadThroughAndWriteAroundStrategy() + useReadThroughAndWriteBehindStrategy() } ~class Node { ~ next : Node ~ previous : Node ~ userAccount : UserAccount ~ userId : String + Node(this$0 : String, userId : UserAccount) } class CacheStore { ~ cache : LruCache {static} - CacheStore() + clearCache() {static} + flushCache() {static} + initCapacity(capacity : int) {static} + print() : String {static} + readThrough(userId : String) : UserAccount {static} + readThroughWithWriteBackPolicy(userId : String) : UserAccount {static} + writeAround(userAccount : UserAccount) {static} + writeBehind(userAccount : UserAccount) {static} + writeThrough(userAccount : UserAccount) {static} } class AppManager { - cachingPolicy : CachingPolicy {static} - AppManager() + find(userId : String) : UserAccount {static} + initCacheCapacity(capacity : int) {static} + initCachingPolicy(policy : CachingPolicy) {static} + initDb(useMongoDb : boolean) {static} + printCacheContent() : String {static} + save(userAccount : UserAccount) {static} } class UserAccount { - additionalInfo : String - userId : String - userName : String + UserAccount(userId : String, userName : String, additionalInfo : String) + getAdditionalInfo() : String + getUserId() : String + getUserName() : String + setAdditionalInfo(additionalInfo : String) + setUserId(userId : String) + setUserName(userName : String) + toString() : String } class LruCache { ~ cache : Map<String, Node> ~ capacity : int ~ end : Node ~ head : Node + LruCache(capacity : int) + clear() + contains(userId : String) : boolean + get(userId : String) : UserAccount + getCacheDataInListForm() : List<UserAccount> + getLruData() : UserAccount + invalidate(userId : String) + isFull() : boolean + remove(node : Node) + set(userId : String, userAccount : UserAccount) + setCapacity(newCapacity : int) + setHead(node : Node) } class DbManager { - db : MongoDatabase {static} - mongoClient : MongoClient {static} - useMongoDB : boolean {static} - virtualDB : Map<String, UserAccount> {static} - DbManager() + connect() {static} + createVirtualDb() {static} + readFromDb(userId : String) : UserAccount {static} + updateDb(userAccount : UserAccount) {static} + upsertDb(userAccount : UserAccount) {static} + writeToDb(userAccount : UserAccount) {static} } enum CachingPolicy { + AROUND {static} + BEHIND {static} + THROUGH {static} - policy : String + getPolicy() : String + valueOf(name : String) : CachingPolicy {static} + values() : CachingPolicy[] {static} } } Node --+ LruCache LruCache --> "-head" Node Node --> "-previous" Node AppManager --> "-cachingPolicy" CachingPolicy Node --> "-userAccount" UserAccount CacheStore --> "-cache" LruCache @enduml
a634bb59f7f066a0be43ed609b8275f5b6c3f191
9f02be0a883205431624dafff8aa28fe67e5a2b0
/uml/class/layout.puml
d8e6f54f687bb80fedb37aa70172fb0b12d1823b
[]
no_license
hdainester/mgx
6fa1e7bd4a2771032f25e2a7e512a2ac6d3500be
e8247ea63904245d83afc5e567fac515676fc871
refs/heads/master
2020-04-28T13:26:40.781099
2019-06-08T02:02:52
2019-06-08T02:02:52
175,306,950
1
0
null
null
null
null
UTF-8
PlantUML
false
false
7,998
puml
@startuml LayoutPanes '''''''''' ' Page 1 ' '''''''''' title GUI - Layout enum HAlignment { Left Center Right } enum VAlignment { Top Center Bottom } enum ViewState { Opening Open Greedy Closing Closed Hiding Hidden } abstract class View { + Content : ContentManager <<get>> <<protected set>> + State : ViewState <<get>> <<protected set>> + Graphics : GraphicsDevice <<get>> <<protected set>> + MainContainer : ViewContainer <<get>> + {abstract}Show() : void + {abstract}Hide() : void + {abstract}Close() : void + {virtual}HandleInput() : void + {virtual}Update(gameTime : GameTime) : void + Draw(spriteBatch : SpriteBatch) : void # AlignMainContainer() : void } View -left-> GraphicsDevice View -right-> ContentManager note top on link Content is loaded on View initialization. ContentMangagers can be shared among different views. end note class FadingView { + FadeInTime : int <<get>> <<set>> + FadeOutTime : int <<get>> <<set>> } note right: Example:\nFades in/out FadingView -up-|> View class SlidingView note right: Example:\nSlides in/out (TODO) SlidingView -up-|> View class ViewControl { + Views : ReadOnlyCollection<View> <<get>> <<protected set>> + Add(view : View) : void + Remove(view : View) : void + Update(gameTime : GameTime) : void + Draw(spriteBatch : SpriteBatch) : void } ViewControl --> "*" View : Views abstract class Component { + HGrow : int <<get>> <<set>> + VGrow : int <<get>> <<set>> + HAlign : HAlignment <<get>> <<set>> + VAlign : VAlignment <<get>> <<set>> + Color : Color <<get>> <<set>> + Alpha : float <<get>> <<set>> + Position : Vector2 <<get>> <<protected set>> + X : float <<get>> <<protected set>> + Y : float <<get>> <<protected set>> + Size : Vector2 <<get>> <<protected set>> + Width : float <<get>> <<protected set>> + Height : float <<get>> <<protected set>> + Parent : Container <<get>> <<protected set>> + PropertyChanged : PropertyChangedEventHandler + {virtual}Load(content : ContentManager) : void + {abstract}Update(gameTime : GameTime) : void + {abstract}Draw(spriteBatch : SpriteBatch) : void # {virtual}OnPropertyChanged(propertyName : string) : void # SetProperty<T>(field : ref T, value : T) : void # {static}_SetPosition(c : Component, position : Vector2) : void # {static}_SetX(c : Component, x : float) : void # {static}_SetY(c : Component, y : float) : void # {static}_SetSize(c : Component, size : Vector2) : void # {static}_SetWidth(c : Component, width : float) : void # {static}_SetHeight(c : Component, height : float) : void # {static}_SetParent(c : Component, parent : Container) : void } Component --> "0, 1" Container : Parent abstract class Container { + Children : ReadOnlyCollection<Component> <<get>> <<protected set>> + Containers : ReadOnlyCollection<Container> <<get>> <<protected set>> + Controls : ReadOnlyCollection<Control> <<get>> <<protected set>> + {override}Load(conent : ContentManager) : void + {override}Update(gameTime : GameTime) : void + {override}Draw(spriteBatch : SpriteBatch) : void # {virtual}ChildPropertyChangedHandler(sender : object, args : PropertyChangedEventArgs) : void # {virtual}AlignChildren() : void # _Add(child : Component) : void # _Remove(child : Component) : void # _DefaultAlign() : void } class ViewContainer { + SetPosition(position : Vector2) : void + SetSize(position : Vector2) : void } ViewContainer --|> Container View --> "1" ViewContainer : MainContainer abstract class Control Container -up-|> Component Container --> "*" Component : Children Container --> "*" Container : Containers Container --> "*" Control : Controls abstract class LayoutPane { + Add(child : Component) : void + Remove(child : Component) } LayoutPane -right-|> Container class HPane { # {override}AlignChildren() : void } note bottom The order of items is determined by their HAlignment and the order they where added to this Container. VAlignment determines how items are aligned within their column. end note class VPane { # {override}AlignChildren() : void } note bottom The order of items is determined by their VAlignment and the order they where added to this Container. HAlignment determines how items are aligned within their row. end note class StackPane note left Items are stacked on top of each other in the order they where added to this Container. The positioning of items according to their H- and VAlignment is evaluated for each item independent of the other items. end note HPane -up-|> LayoutPane VPane -up-|> LayoutPane StackPane -|> LayoutPane '''''''''' ' Page 2 ' '''''''''' newpage title GUI - Controls enum Orientation { Horizontal RHorizontal Vertical RVertical } class TextItem { + Font : SpriteFont <<get>> <<set>> + Text : string <<get>> <<set>> + {override} Update(gameTime : GameTime) : void + {override} Draw(spriteBatch : SpriteBatch) : void } class ImageItem { + Image : Texture2D <<get>> <<protected set>> + {override} Update(gameTime : GameTime) : void + {override} Draw(spriteBatch : SpriteBatch) : void } abstract class Component TextItem -up-|> Component ImageItem -up-|> Component abstract class Control { + IsFocused : bool <<get>> <<protected set>> + IsDisabled : bool <<get>> <<protected set>> + Action : EventHandler + Enabled : EventHandler + Disabled : EventHandler + FocusGain : EventHandler + FocusLoss : EventHandler + KeyPressed : KeyEventHandler + KeyReleased : KeyEventHandler + {virtual} HandleInput() : void # {virtual} HandleMouse() : void # {virtula} HandleKeyboard() : void # {virtual} HandleGamepad() : void # {virtual} HandleTouch() : void # {virtual} OnAction() : void # {virtual} OnEnabled() : void # {virtual} OnDisabled() : void # {virtual} OnFocusGain() : void # {virtual} OnFocusLoss() : void # {virtual} OnKeyPressed() : void # {virtual} OnKeyReleased() : void } abstract class Container Control -up-|>Container class MenuItem { + Orientation : Orientation <<get>> <<protected set>> + Text : TextItem <<get>> <<protected set>> + Image : ImageItem <<get>> <<protected set>> } MenuItem -up-|> Control MenuItem -up-> "0, 1" TextItem : Text MenuItem -up-> "0, 1" ImageItem : Image abstract class Menu { + Items : ReadOnlyCollection<MenuItem> <<get>> <<protected set>> + AddItem(item : MenuItem) : void + RemoveItem(item : MenuItem) : void # {abstract} AlignItems() : void } Menu -up-|> MenuItem Menu --> "*" MenuItem class ListMenu { + {unused} SelectedIndex : int <<get>> <<protected set>> + ItemsOrientation : Orientation <<get>> <<set>> # {override} AlignItems() : void # {override} OnPropertyChanged(propertyName : string) : void } class RingMenu { } note bottom: TODO ListMenu -up-|> Menu RingMenu -up-|> Menu class TextBox { + Text : string <<get>> <<protected set>> + IsFocused : bool <<get>> <<protected set>> + TextBoxTexture : Texture2D <<get>> <<protected set>> + TextBoxColor : Color <<get>> <<set>> } TextBox -left-|> Control class ScrollBar { + ScrollBarPosition : float <<get>> <<protected set>> + ScrollBarTexture : Texture2D <<get>> <<protected set>> + ScrollTexture : Texture2D <<get>> <<protected set>> + ScrollColor : Color <<get>> <<set>> } ScrollBar -up-|> Control class ProgressBar { + Progress : float <<get>> <<set>> + ProgressBarTexture : Texture2D <<get>> <<protected set>> + BackgroundTexture : Texture2D <<get>> <<protected set>> + BackgroundColor : Color <<get>> <<set>> } ProgressBar -up-|> Control class CheckBox class RadioBox class RadioGroup CheckBox -left-|> Control RadioBox -left-|> Control RadioGroup --> "*" RadioBox : Radios @enduml
ff62f3c2c49a88ec8a7c5790f38885c843639218
de881a9056c5e7046992a5d4f1e5a16b9ef69494
/PlantUML_Doc/ArrayList.iuml
47894edee4f6568df00b9cf57a476a8fd16f7ed3
[]
no_license
yamauchi-kazuharu-fixer/Docs
fe4910b9cd73c5b2eab837b654fe28479b29775b
47c231b7717c8817f8dc390c27adb49f6eed4c4c
refs/heads/master
2020-05-17T00:44:30.706310
2019-05-03T03:43:49
2019-05-03T03:43:49
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
90
iuml
class ArrayList !ifdef SHOW_METHODS class ArrayList { int size() void clear() } !endif
31b558cb2c979bfeb510e6d7cbfebbbabfc68fa7
e07ad94f5c70b0c457b9484269304244ced63a8f
/patterns/strategy.puml
082412415ab316b7ca084bb3956d5d138b9c4130
[]
no_license
gillescoolen/design-patterns
abfe58fab21c1d47c124f066d2a7883156667bce
c05acb4b919247c5a26bf8341330837894154ae8
refs/heads/main
2023-06-01T22:47:39.336414
2021-06-18T12:39:56
2021-06-18T12:39:56
377,582,013
1
0
null
null
null
null
UTF-8
PlantUML
false
false
239
puml
@startuml strategy class Context { + execute() } interface Strategy { + execute() } class StrategyA { + execute() } class StrategyB { + execute() } Context --> Strategy StrategyA ..|> Strategy StrategyB ..|> Strategy @enduml
4ff2efec66d6946ae867d973ebca4458cc6685b4
227c32f7a5991c0ce2de069dd1f0448c1e6949fb
/PlantUML/PoseOptimizer/PoseOptimizer_Framework.puml
8a3102cf8d060a48fd5921e09d1dd20fb7c0521c
[]
no_license
ShisatoYano/SLAMDesignUML
2b3af745ecf8ff1b88845e248a72c589fe9aa1ba
bb8678908952205d1fdc2ea5e49c9ca752e123b9
refs/heads/master
2022-11-25T17:49:03.514885
2020-08-02T00:27:38
2020-08-02T00:27:38
261,206,484
0
0
null
null
null
null
UTF-8
PlantUML
false
false
873
puml
@startuml skinparam classAttributeIconSize 0 class PoseOptimizer{ + int allN + double sum + PoseOptimizer(): evthre(0.000001), dd(0.00001), da(0.00001), cfunc(nullptr) {allN = 0; sum = 0} + ~poseOptimizer() + void setCostFunction(CostFunction *f) {cfunc = f} + void setEvlimit(double l) {cfunc->setEvlimit(l) + void setPoints(std::vector<const LPoint2D*> &curLps, std::vector<const LPoint2D*> &refLps) \n {cfunc->setPoints(curLps, refLps)} + void setEvthre(double inthre) {this->evthre = inthre} + double getPnrate() {return (cfunc->getPnrate())} + void setDdDa(double d, double a) {dd = d; da = a} + virtual double optimizePose(Pose2D &initPose, Pose2D &estPose) = 0 # double evthre # double dd # double da # CostFunction *cfunc } PoseOptimizer <|-- PoseOptimizerSD PoseOptimizer <|-- PoseOptimizerSL @enduml
afd30f8c35666d3e12847bcf82b7dc9ae7b6a17e
3e637c87a94c6c17047f397b1eeb651dc046d57d
/docs/umls/snake_model.puml
763c79af00a3861ff2797127f5feae00be9e6138
[ "MIT" ]
permissive
IliaOzhmegov/Smake-Snake-AI-
0351c8edcee65145fcbb1624af1d74ce66f4c598
89756fb55891de9f912d9bcdbde97162a6fddc31
refs/heads/master
2022-06-04T20:29:43.135086
2020-02-12T21:04:47
2020-02-12T21:04:47
226,084,161
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,229
puml
@startuml skinparam classAttributeIconSize 0 skinparam linetype polyline class Playground { +size: int, int +rows: int +cols: int +length: int +dim: int +borders: int +convert_index() +get_index() } class Food { +position: int, int +rows: int +cols: int +change_pos() +get_pos() } class Direction{ +up: int, int +dn: int, int +lt: int, int +rt: int, int +dir: int, int -add() +get_direction() +get_dir() +is_zero() } class Position{ +pos: int, int -add() -sub() -truediv() +get_pos() } class Snake{ +self_collision: String +wall_collision: String -position: Position -speed: Direction -length: int -body: Position[] -pg: Playground -borders: Playground.borders -food: Food -change_food_pos() -move_body() -is_injuring_itself() -is_colliding_wall() +get_body() +get_body_list() +get_speed() +get_position() +get_allowed_space() +get_seen_food_pos() +turn() +move() +cli() } Food "1" *-- "1" Position Snake "1" *-- "1" Position Snake "1" *-- "4..*" Direction Snake "1" *-- "1" Playground Snake "1" *-- "1" Food @enduml
67a28f78e05a433628452dccc7bfd091a06e9573
37d86dfd35f27c07ad95cc4221ba8573ae4fd246
/Torsdagsopgaver 14-10/src/com/company/ex2/ComputeVatPUML.puml
f1c2df5383a0443d518d228d765c0625c1864dd2
[]
no_license
jonathanbraad/Opgaver-14-10-2021
b8d47b54f2e2d07ab1f5aa522fddb1f7635f634c
8b749af3b810c21c64652941f42ac32ae7bfc55d
refs/heads/main
2023-08-13T14:05:01.663850
2021-10-14T16:51:19
2021-10-14T16:51:19
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
412
puml
@startuml 'https://plantuml.com/class-diagram class CalculateVat class Controller class Dialog class view class ComputeVat Controller <|-- Dialog Controller <|-- view Controller <|-- CalculateVat ComputeVat <|-- Controller class CalculateVat { double Vat doVat() } class Dialog { double Number doDiag() } class view { doView() } class Controller { runController() } @enduml
e8620f40c179b6a65aba1669910ca70a4e2f87e9
56ce44dfe111ed3ec436ca9aa151ffe446a3b2d2
/TestAveiaJ16.puml
e4b0158567dc411787e370723c15cf37a6ea6e4d
[]
no_license
dim6ata/AVEIA
a85a795a4d610f8afe6687607d9f7a04cfd6d8af
d22f1e0350fbfd76f5790813c9e50d93e479de3e
refs/heads/master
2023-05-30T17:59:45.230996
2021-06-12T10:44:35
2021-06-12T10:44:35
376,246,846
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,012
puml
@startuml class CompleteInterval { } class IntervalManager { } class XYPadActivity { } class LengthBarHandler { } abstract class InstrumentBaseActivity { } class DataStorage { } class AveiaDialog { } class ThereminActivity { } class SoundSwitcher { } class StartupActivity { } class SystemUIManager { } class FrequencyManager { } class NoteTutorial { } class EngineConnector { } class VolumeBar { } class NavigationActivity { } class Frequency { } class SelectInterval { } class Interval { } class RandomNumberGenerator { } class AveiaToast { } class ButtonManager { } NoteTutorial <|-- CompleteInterval InstrumentBaseActivity <|-- XYPadActivity SensorEventListener <|.. InstrumentBaseActivity AppCompatActivity <|-- InstrumentBaseActivity InstrumentBaseActivity <|-- ThereminActivity AppCompatActivity <|-- StartupActivity OnTouchListener <|.. NoteTutorial OnClickListener <|.. NoteTutorial AppCompatActivity <|-- NoteTutorial AppCompatActivity <|-- NavigationActivity NoteTutorial <|-- SelectInterval @enduml
99f57c061862819d473b12f823fe8d050f2d1852
e5431d5c0e5ad4b4ee88cb6d340c719559f98724
/uml/base/组合关系.puml
7bbb1f8c8c5f4eba77ea7eabb1c1a615d0b64564
[]
no_license
reavenlin/DesignPatterns
e7d043829e49558e1b22aa4bc79603565fa6d63e
3deaa7aa6c171ae7d84399b672e6d32657307d21
refs/heads/master
2022-11-28T15:40:41.322763
2020-08-09T12:06:58
2020-08-09T12:06:58
286,174,901
0
0
null
null
null
null
UTF-8
PlantUML
false
false
55
puml
@startuml class A{ - B b } class B A o-- B @endumlo
d39d9191673ef806c2ebfdc0dfa5adf84fe6ecc4
53171f99b9c35cbc19968d53c949e5938f6e8047
/UML/class_diagrams/HighLatitudeRule.puml
2ca549550d18ee996b3c8f63ecbd2da25e2ab661
[ "MIT" ]
permissive
tockards/Adhan
f40b060331a974a73908f41a7d8003909745d76f
93239a1634634d1833f56b2ff18f9de5a9c14ac9
refs/heads/master
2020-03-28T04:10:46.405943
2018-09-12T20:00:18
2018-09-12T20:00:18
147,698,739
0
0
MIT
2018-09-06T16:00:06
2018-09-06T16:00:06
null
UTF-8
PlantUML
false
false
99
puml
@startuml enum HighLatitudeRule { MIDDLE_OF_THE_NIGHT SEVENTH_OF_THE_NIGHT TWILIGHT_ANGLE } @enduml
52ea1d231b94477e8b9ffa595615755ff7a3a541
35613a63c2dcf790adc2dcd025a9021a95f9762d
/docs/visuals_cd.puml
b780f47836070fa9d5517369989f225efcba0451
[]
no_license
fromasmtodisasm/xrRenderPC_VK
37bda9ff60c98a4de82999af0f2775d508dd094d
07ef9bbc0a0ab21605423189b4e2952ae8d9c400
refs/heads/master
2022-03-24T11:42:53.270351
2019-12-21T08:06:03
2019-12-21T08:06:03
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,218
puml
@startuml interface IRenderVisual { +{abstract} getVisData() +{abstract} getType() +getSubModel() +dcast_PKinematics() +dcast_PKinematicsAnimated() +dcast_ParticleCustom() } package FBasicVisual{ interface IRender_Mesh { } class dxRender_Visual { +type +vis +shader -- overrides -- +getVisData() +getType() -- virtuals -- +Render() +Load() +Release() +Copy() +Spawn() +Depart() } } IRenderVisual <|-- dxRender_Visual package FVisual { class Fvisual { +m_fast +Render() +Load() +Copy() +Release() } } IRender_Mesh <|-- Fvisual dxRender_Visual <|-- Fvisual package FTreeVisual { class FTreeVisual { } class FTreeVisual_ST { } class FTreeVisual_PM { } } IRender_Mesh <|-- FTreeVisual dxRender_Visual <|-- FTreeVisual FTreeVisual <|-- FTreeVisual_ST FTreeVisual <|-- FTreeVisual_PM package dx103DFluidVolume { class dx103DFluidVolume { } } dxRender_Visual <|-- dx103DFluidVolume package FHierrarhyVisual { class FHierrarhyVisual { +children[] +Load() +Copy() +Release() +getSubModel() } } dxRender_Visual <|-- FHierrarhyVisual interface IKinematics { } package SkeletonCustom { class CKinematics { } } FHierrarhyVisual <|-- CKinematics IKinematics <|-- CKinematics interface IKinematicsAnimated { } package SkeletonAnimated { class CKinematicsAnimated { } } CKinematics <|-- CKinematicsAnimated IKinematicsAnimated <|-- CKinematicsAnimated interface IParticleCustom { } package dxParticleCustom { class dxParticleCustom { } } IParticleCustom <|- dxParticleCustom dxRender_Visual <|-- dxParticleCustom package CParticleGroup { class CParticleGroup { } } dxParticleCustom <|-- CParticleGroup package ParticleEffect { class CParticleEffect { } } dxParticleCustom <|-- CParticleEffect package SkeletonX { class CSkeletonX { } } package FSkinned { class CSkeletonX_ext { } class CSkeletonX_ST { } class CSkeletonX_PM { } } CSkeletonX <|-- CSkeletonX_ext CSkeletonX_ext <|-- CSkeletonX_ST Fvisual <|-- CSkeletonX_ST package FProgressive { class FProgressive { } } Fvisual <|-- FProgressive CSkeletonX_ext <|-- CSkeletonX_PM FProgressive <|-- CSkeletonX_PM package FLOD { class FLOD { } } FHierrarhyVisual <|-- FLOD @enduml
bcb0c1aec5354e58e8efdcfa8a1d194fbb30d189
00cc219ad675a54adb7130c76648411d05280909
/limit1.puml
6099c1ae06c107729954c43808b88043156fb49f
[]
no_license
melaycx/grade-two-of-zjut
d625f899d7242898f79ac31b93e8539b031aa724
1f07cfcb84feb8d38181c60c27bebed39b5ad3cc
refs/heads/master
2023-06-01T13:47:43.423123
2021-06-12T14:09:38
2021-06-12T14:09:38
307,334,392
0
0
null
null
null
null
UTF-8
PlantUML
false
false
638
puml
@startuml class limit.AccessLimitInstanceClassThread { ~ String name + void run() } class limit.LimitInstanceClass { ~ {static} int value ~ {static} int temp - {static} List<LimitInstanceClass> list ~ int id ~ boolean isBusy ~ String accessMessage + void writeAccessMessage(String) + void printAccessMessage() + void release() + {static} LimitInstanceClass getInstance() } class limit.UseLimitInstanceClass { + {static} void main(String[]) } limit.UseLimitInstanceClass -->limit.AccessLimitInstanceClassThread limit.AccessLimitInstanceClassThread -->limit.LimitInstanceClass limit.Thread <|-- limit.AccessLimitInstanceClassThread @enduml
3079ce4a556b6ac3ff91c340d9dac5e7d82d7f1e
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StoreCountriesChangedMessagePayload.puml
357b52060584bb24783e535edd52ff55f256f576
[]
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
548
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 StoreCountriesChangedMessagePayload [[StoreCountriesChangedMessagePayload.svg]] extends MessagePayload { type: String addedCountries: [[StoreCountry.svg List<StoreCountry>]] removedCountries: [[StoreCountry.svg List<StoreCountry>]] } interface MessagePayload [[MessagePayload.svg]] { type: String } @enduml
066aee0eb83c1595a3e07308a1730a920c773152
7c2a17fd3d19a13fb71558f79900a2908de98c58
/docs/uml-class-diagrams/middleware02/production/MiddlewareCommDatabaseInterface/MiddlewareCommDatabaseInterface.puml
703cc849bd049809d6daa700bed3a0ef648e2161
[]
no_license
casher-ou/csi-3370-software-project
483b1add9fbab8349f30009eecc123c884bdcc7b
629fb9cce10429c2b80bd1ad33ab898d1466883b
refs/heads/main
2023-01-22T00:44:50.062944
2020-11-29T23:00:50
2020-11-29T23:00:50
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
233
puml
@startuml MiddlewareCommDatabaseInterface package edu.oakland.production.middleware02 { interface MiddlewareCommDatabaseInterface { __ .. Use Case 1 .. {abstract} + int checkCurrentRfid() } } @enduml
485196d6cd79f399c590acea42777a6c11e583d2
71cd1cf24b61c4b6c2eabcc4adfa482241f8eaa7
/uml/class.plantuml
48cdaf67abd219a1e512e159f989b052cceaba30
[]
no_license
HaiseB/P7_BileMo
5819d19a66f2bc13f90a70e0ba88201aa55f270d
e179724614594dca3fde8b6856b80b1f7c3b0bf4
refs/heads/main
2023-03-07T02:04:07.828234
2021-02-12T16:49:34
2021-02-12T16:49:34
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,566
plantuml
@startuml class package Entity <<Database>> { class Clients { {static} Auto_increment id -- {static} String name {static} String email {static} String picturePath {static} String password {static} Datetime created_at {static} Datetime updated_at } Users "0..*" -- "1" Clients class Users { {static} Auto_increment id -- {static} String name {static} String phone_number {static} String email {static} Datetime created_at {static} Datetime updated_at } class Products { {static} Auto_increment id -- {static} String name {static} String reference {static} String picturePath {static} Float price {static} Float display {static} Float height {static} Float width {static} Float depth {static} String camera {static} Textarea description {static} Datetime launched_at {static} Datetime created_at {static} Datetime updated_at } Products "1..*" -- "0..*" Colors class Colors { {static} Auto_increment id -- {static} String name {static} Datetime created_at {static} Datetime updated_at } Products "1..*" -- "0..*" Capacitys class Capacitys { {static} Auto_increment id -- {static} int value {static} String unit {static} Datetime created_at {static} Datetime updated_at } } @enduml
d617b01c8abb5506d9d18a1d25ab1adfcdfdd8ea
1cf4490d48f50687a8f036033c37d76fec39cd2b
/src/main/java/global/skymind/training/intermediate/oop/demo/demo01_object_creation/demo01_object_creation.plantuml
3c158955d840a86965902addbdeb6960a374520a
[ "Apache-2.0" ]
permissive
muame-amr/java-traininglabs
987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83
a93268f60e6a8491b1d156fae183a108ff0d9243
refs/heads/main
2023-08-06T10:04:57.996593
2021-09-28T11:21:00
2021-09-28T11:21:00
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
704
plantuml
@startuml title __DEMO01_OBJECT_CREATION's Class Diagram__\n namespace global.skymind { namespace training.intermediate.oop.demo.demo01_object_creation { class global.skymind.training.intermediate.oop.demo.demo01_object_creation.Car { - colour : String - model : String {static} - nWheels : int - topSpeed : int + Car() {static} + main() {static} ~ isFaster() ~ start() ~ stop() } } } 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
be203aeccbb94f13c6b6ed12eda7b6050ac15e3c
18cf6f5feb6db1806a188d7e6934cad5de24e79b
/uml/Sample.puml
6ca373cb689a8ec9b2137e14c43ebbce842480df
[ "Apache-2.0" ]
permissive
jacky-calm/kafka-story
301637744df8b9e852568b7634d24ba0c2fb5d3c
03528f43c0e143b6e1de53a563797d9235b1afce
refs/heads/master
2021-05-19T23:47:20.640683
2020-04-27T15:51:28
2020-04-27T15:51:28
252,091,162
0
0
Apache-2.0
2020-10-13T20:50:47
2020-04-01T06:29:50
Java
UTF-8
PlantUML
false
false
461
puml
@startuml !includeurl https://raw.githubusercontent.com/ebbypeter/Archimate-PlantUML/master/Archimate.puml title Kafka Producer 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
2c8753d21a2c324ba8575aad29aace0beab636b8
bf49d55ccb1e5a55ad63de65366e8874f2258d94
/Digital_House-Certified_Tech_Developer/Backend_I/Facade_pattern/Servicio_de_compra/src/UML-ecommerce.puml
c897bcbf7a5e123068621b59bb5a866261a1b0e5
[]
no_license
hfelipeserna/hfelipeserna.github.io
339f18c116db2738c3e093b748f7c9d746ad1eb5
9b643803f672bf4b34add22644919198e50da06d
refs/heads/main
2023-09-03T19:09:33.411053
2021-10-26T14:23:59
2021-10-26T14:23:59
359,453,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,427
puml
@startuml 'https://plantuml.com/class-diagram '___________STYLES___________ title UML - ecommerce skinparam classAttributeIconSize 0 skinparam backgroundColor White skinparam RoundCorner 10 skinparam Shadowing true skinparam class { ArrowColor Black BackgroundColor White HeaderBackgroundColor Gray BorderColor Black FontColor White FontSize 14 AttributeFontSize 12 } skinparam object{ ArrowColor Black BackgroundColor White BorderColor Black FontColor Black FontSize 14 AttributeFontSize 12 } skinparam note { BackgroundColor LightYellow BorderColor Black } '___________UML___________ interface ICompraService{ +procesarCompra(productoId: String, cantidad: Integer, tarjeta: Tarjeta, dirección: Dirección) } class CompraService{ - almacenService: AlmacenService - pagoService: PagoService - envíoService: EnvíoService +CompraService(almacenService: AlmacenService, pagoService: PagoService, envíoService: EnvíoService) +procesarCompra(productoId: String, cantidad: Integer, tarjeta: Tarjeta, dirección: Dirección) } class AlmacenService{ -productos: List<Producto> +AlmacenService(List<Producto> producto) +buscarProducto(productoId: String, cantidad: Integer): Producto } class PagoService{ +procesarPago(tarjeta: Tarjeta, montoACobrar: String): Boolean } class EnvíoService{ +procesarEnvío(p: List<Producto>, dirección: Dirección) } class Producto{ -productoId: String -nombre: String -cantidad: Integer -valor: integer +getProductoId(): String +setProductoId() +getNombre(): String +setNombre() +getCantidad(): Integer +setCantidad() +getValor(): Integer +setValor() +toString() } class Tarjeta{ -número: String -CVV: String -banco: String +getNúmero(): String +setNúmero() +getCVV(): String +setCVV() +getBanco(): String +setBanco() +toString() } class Dirección{ -ciudad: String -pais: String -códigoPostal: String -dirección: String +getCiudad(): String +setCiudad() +getPais(): String +setPais() +getCódigoPostal(): String +setCódigoPostal() +getDirección(): String +setDirección() +toString(): String } object Cliente{ } ICompraService <|.. CompraService CompraService-->AlmacenService CompraService-->PagoService CompraService-->EnvíoService Cliente .>ICompraService CompraService.>Tarjeta Dirección<.CompraService EnvíoService.>Producto Producto<.AlmacenService Dirección<.EnvíoService Tarjeta<.PagoService @enduml
5470a5d11f5153f5c631c410b84ba07782332813
5852f6b38b87d13b732b67c8fdef4c22ae215a8f
/docs/diagrams/src/movies5.plantuml
966540ace76f739cdec44469d396366f97394fa6
[]
no_license
ivlago/Refactor
bbc940ba59aa2b397d52c3c041e3b1db97f8b22d
5fc9ddb4517bc21dba3a8df0b629637b213cff79
refs/heads/main
2023-04-05T18:22:56.671516
2021-04-22T20:14:21
2021-04-22T20:14:21
359,514,464
1
0
null
null
null
null
UTF-8
PlantUML
false
false
647
plantuml
@startuml movies class Customer { - String name; - List<Rental> rentals; + Costumer(String name) + void addRental(Rental rental) + String getName() + String statement() } class Rental { - Movie movie; - int daysRented; + Rental(Movie movie, int daysRented) + int getDaysRented() + Movie getMovie() + double getCharge() } class Movie { + static final int REGULAR = 0; + static final int NEW _RELEASE = 1; + static final int CHILDRENS = 2; - String title; - int priceCode; + Movie(String title, int priceCode) + int getPriceCode() + void setPriceCode(int priceCode) + String getTitle() } Customer o-down-> Rental Rental -down-> Movie @enduml
bc33494f2f175c04f3381a8eb921dbbc38d1d7f4
935b0528caa1b79b04408361b95e2c68bd9478e8
/app/src/main/java/com/aaron/yespdf/common/utils/utils.plantuml
5ff92be82d25d31fb457c51fcba6c3f6d208ad09
[ "Apache-2.0" ]
permissive
cj5785/YESPDF
787485d7aaa3c17e70c31766f613a5a0d7bac5b7
c2428c2984968b2d4feb23e69a4b82379f90d893
refs/heads/master
2022-11-26T11:04:42.961008
2020-08-02T13:15:24
2020-08-02T13:15:24
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
994
plantuml
@startuml title __UTILS's Class Diagram__\n namespace com.aaron.yespdf { namespace common { namespace utils { class com.aaron.yespdf.common.utils.DialogUtils { {static} + createBottomSheetDialog() {static} + createBottomSheetDialog() {static} + createDialog() {static} + createDialog() - DialogUtils() } } } } namespace com.aaron.yespdf { namespace common { namespace utils { class com.aaron.yespdf.common.utils.PdfUtils { {static} + getPdfHeight() {static} + getPdfTotalPage() {static} + getPdfWidth() {static} + pdfToBitmap() {static} + saveBitmap() - PdfUtils() } } } } 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
bab0dec4376a5d901380fde1ca9f9d3a6e675384
c067a7796bba1bcd97ed5d7a5a7877a3217d532c
/uml/Properties/Proxy/CheckDatiDownload.puml
93f25642485781bebaf3556de4fcc0caa3050dc8
[]
no_license
inifares23lab/PMO_Proj-DatiCovid
6897e2d04753c6faff3045aa2ac8822035683e14
186ec91ef3eb5647439c346909bfd8e7b3fb9e6e
refs/heads/master
2022-10-22T03:17:14.494294
2020-06-16T21:10:50
2020-06-16T21:10:50
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
177
puml
@startuml class CheckDataDownload { - data : string - b : bool + CheckDataDownload(path:string) + GetB() : bool } CheckDataDownload --> "today" DateTime @enduml
a6efad66ea461410f3dca3143280571f313f3f81
52dac986131ecebb0d2e109f873b8a76d7f696cb
/test3/main.puml
f33e4fe2a3e8096189a26d8bfef0f947b6357b24
[]
no_license
1095729006/is_analysis-3
dae9576ceec03afe22c5fa5eee3c10a1a49f3a48
745ffcf2c1d13e2d17ff40f65bf62370e060b481
refs/heads/master
2020-03-14T03:26:15.783844
2018-04-28T12:26:57
2018-04-28T12:26:57
131,419,845
0
0
null
2018-04-28T15:09:09
2018-04-28T15:09:09
null
UTF-8
PlantUML
false
false
832
puml
@startuml class 读者{ 姓名 学号 借书号 借书限额 已借图书数 可用限额 } class 管理员{ 账号 密码 性别 } class 游客{ 注册账户 } class 书库信息{ 图书总量 余量 历史类 科学类 数术类 社会类 } class 图书{ 书名 ISBN 作者 出版社 总量 余量 } class 借书记录{ 借阅者 图书名 ISBN 借书时间 还书时间 超时时间 罚款金额 } class 罚款规则{ 计费价格 } 管理员 --> 读者 : 管理 > 管理员 ..> 书库信息 :管理 > 管理员->借书记录:记录 管理员-->罚款规则:管理 读者-->图书 读者->书库信息 读者--借书记录 游客-->书库信息:查看 > 图书-*书库信息 管理员<|- manage object manage{ add(); deleted(); redit(); } 游客<|- resign object resign{ setUsername(); setPassWord(); setEmail(); } @enduml
3b80eb186908eec2193e6654498ab9a7efc858aa
23f93270000ffba559085aaa507ce984daca1bb9
/uml/Inventory.puml
b0d4c3141fc5bcd1f0b475986a114038ba547bc4
[]
no_license
16smerkel/merkel-8504-a5
5a34f7766dae35cd834c3fb08d7652f9e8382781
0cab58f80e99e9adc858fdc219d1314095410d53
refs/heads/master
2023-06-30T11:20:23.359257
2021-07-24T19:51:45
2021-07-24T19:51:45
387,618,055
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,777
puml
@startuml class InventoryTracker { start() main() } class SceneManager { scenes: Map<String, Scene> load() getScene(String): Scene } class MainWindowController { items: ItemModel scenes: SceneManager fileManager: FileManager + MainWindowController(ItemModel, SceneManager) addItemButtonClicked(EventHandler) editItemButtonClicked(EventHandler) removeItemButtonClicked(EventHandler) saveInventoryAsCSVItemButtonClicked(EventHandler) addItem(String, String, BigDecimal) editItem() saveInventoryAsCSV(filename: String) saveInventoryAsHTML(filename: String) saveInventoryAsJSON(filename: String) } class AddItemWindowController { } class EditItemWindowController { } class RemoveItemWindowController { } class SearchItemWindowController { } class ItemModel { - ObservableList<Item> } class Item { - name: SimpleStringProperty - serialNumber: SimpleStringProperty - value: SimpleStringProperty + getName() + setName() + nameProperty() + getSerialNumber() } class FileManager { saveAsCSV(filename: String, data: String) saveAsJSON(filename: String, data: String) saveAsHTML(filename: String, data: String) } openjfx.org.Application <|-- InventoryTracker InventoryTracker -- SceneManager SceneManager -- MainWindowController SceneManager -- AddItemWindowController SceneManager -- EditItemWindowController SceneManager -- RemoveItemWindowController SceneManager -- SearchItemWindowController MainWindowController o-- ItemModel AddItemWindowController o-- ItemModel EditItemWindowController o-- ItemModel RemoveItemWindowController o-- ItemModel SearchItemWindowController o-- ItemModel ItemModel *-- Items MainWindowController o-- FileManager @enduml
8a02df61db057f907d9c1053c7c3a5707d7ab49d
e37016f9bea6aac6954954ba33bde705a1245047
/zx-note/src/test/graph/lucene/lucene-core/index/类图/IndexWriter.puml
bcb319a729543ae9fa20b04c1a44847678e8bf64
[]
no_license
zouxiang1993/es_lucene
11d558d98a9847b9df1d9d575bc9b362ac548f9b
c463345975db890105124c429965ed96ebd8bf92
refs/heads/master
2023-07-19T21:03:26.092718
2019-08-27T16:24:46
2019-08-27T16:24:46
148,873,770
3
3
null
2023-07-18T02:50:13
2018-09-15T05:47:30
Java
UTF-8
PlantUML
false
false
4,596
puml
@startuml class DocumentsWriterFlushControl{ // flush 排队队列 -Queue<DocumentsWriterPerThread> flushQueue DocumentsWriterStallControl stallControl -DocumentsWriterPerThreadPool perThreadPool -FlushPolicy flushPolicy --- ThreadState obtainAndLock() } class DocumentsWriterStallControl{ // 用来控制index的速度。 // 如果flush的速度比index的速度慢很多,则阻塞所有的index操作 // 如果flush的速度追赶了上来,则唤醒等待的index操作。 --- -volatile boolean stalled --- // 修改stalled的状态,并通知所有等待的线程 void updateStalled(boolean stalled) // 如果写操作已经超速,则阻塞当前线程1秒 void waitIfStalled() // 返回stalled的值,表示当前是否有超速线程 boolean anyStalledThreads() } abstract class FlushPolicy{ --- +{abstract} void onDelete(DocumentsWriterFlushControl, ThreadState) +void onUpdate(DocumentsWriterFlushControl, ThreadState) +{abstract} void onInsert(DocumentsWriterFlushControl, ThreadState) // 找出内存占用最大的ThreadState #ThreadState findLargestNonPendingWriter(DocumentsWriterFlushControl, ThreadState) } abstract class IndexCommit{ // 表示一次Commit(一个 commit point)。每一次Commit都会产生一个segment_N文件 --- // 获取关联的segment_N文件的名称 +{abstract} String getSegmentsFileName() // 获取所有索引文件的名称 +{abstract} Collection<String> getFileNames() +{abstract} Directory getDirectory() // 删除这个Commit Point +{abstract} void delete() // 获取 segment数目 +{abstract} int getSegmentCount() } abstract class IndexDeletionPolicy{ // 决定删除掉哪些commit point --- +{abstract} void onInit(List<? extends IndexCommit> commits) // 每次commit时的callback +{abstract} void onCommit(List<? extends IndexCommit> commits) } class IndexWriter{ // 负责创建并维护一个index --- // original user directory -Directory directoryOrig // wrapped with additional checks -Directory directory // how to analyze text -Analyzer analyzer // 每次修改完成后都 +1 -AtomicLong changeCount // 最后一次提交的changeCount -long lastCommitChangeCount // 所有 segment 的信息 -SegmentInfos segmentInfos // -DocumentsWriter docWriter -Queue<Event> eventQueue -IndexFileDeleter deleter // 当前文档总数,用来判断是否超过最大限制 AtomicLong pendingNumDocs --- +long addDocument(doc) +long updateDocument(Term term, doc) +long deleteDocuments(Term... terms) // 触发一次MergePolicy的判定 +void maybeMerge() // 强制触发一次merge +void forceMerge(int maxNumSegments) } class SegmentInfos{ 已经落地的segment } class DocumentsWriter{ In-memery Buffer } class IndexWriter{ --- // 当前文档总数,用来判断是否超过最大限制 AtomicLong pendingNumDocs } class DocumentsWriter{ } class DocumentsWriterPerThread{ --- Codec codec TrackingDirectoryWrapper directory Directory directoryOrig DocState docState DocConsumer consumer SegmentWriteState flushState BufferedUpdates pendingUpdates // 当前segment的信息 SegmentInfo segmentInfo FieldInfos.Builder fieldInfos int numDocsInRAM DocumentsWriterDeleteQueue deleteQueue DeleteSlice deleteSlice } class ThreadState extends ReentrantLock{ DocumentsWriterPerThread dwpt boolean flushPending long lastSeqNo } class DocumentsWriterPerThreadPool{ -List<ThreadState> threadStates -List<ThreadState> freeList -boolean aborted --- // 将aborted设置为true void setAbort() // 将aborted设置为false,并notifyAll 调用newThreadState的线程 void clearAbort() // 清空ThreadState中的TWPT DocumentsWriterPerThread reset(ThreadState threadState) // 获取一个ThreadState,并将其lock ThreadState getAndLock(Thread requestingThread, DocumentsWriter documentsWriter) // 释放一个ThreadState,并加入freeList中。 void release(ThreadState state) ThreadState getThreadState(int ord) // int getMaxThreadStates() } IndexWriter *-- SegmentInfos IndexWriter *-- DocumentsWriter DocumentsWriter *-- ThreadState : 每个线程使用一个ThreadState DocumentsWriterPerThreadPool *--right-- "n" ThreadState : "contains " ThreadState *-- "1" DocumentsWriterPerThread @enduml
b2edf4d5756c6aed867a946827b7ec7e1cc34820
4cf5737cadb807568ddac14c8f1ff342a6e6cb0a
/documentation/serviceApi/order/media/src/ServiceOrderNotificationModel.puml
dfec69437cff0952f76ee6439ecf42d91198e1d2
[ "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
584
puml
@startuml skinparam { ClassBackgroundColor White ClassBorderColor Black } class Event { eventId*: string eventTime*: date-time } class ServiceOrderEvent { eventType*: ServiceOrderEventType } Event <|-- ServiceOrderEvent ServiceOrderEvent *-->"1" ServiceOrderEventPayload : event class ServiceOrderEventPayload { orderItemId: string id*: string href: string } enum ServiceOrderEventType { serviceOrderCreateEvent serviceOrderStateChangeEvent serviceOrderItemStateChangeEvent serviceOrderInformationRequiredEvent } @enduml
9d30418a0f5256466f224c6095076be06aec857c
80905daea20f037ad1e90829c67947b7b95816b0
/code/17_GenericII/plantUML/GenericsExample.plantUML
21de9045bf74897efade761550439927eeef62a7
[]
no_license
Divino21/CsharpCourse
7916b7b892fc3858ea3697f39e1fcd802fa2d475
473d92cd96346d005979770bdcae020cf4bbf0c4
refs/heads/master
2022-11-22T05:43:24.789564
2020-07-31T01:47:22
2020-07-31T01:47:22
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
478
plantuml
@startuml skinparam classAttributeIconSize 0 hide circle class Liste<T> { - T: head {T -> Person} + insert(T) + remove(T) } class PersonenListe<T> { + getbirthdayChild() : T } Liste <|-- PersonenListe class Person <<abstract>>{ name: string birthday: Date + getAgeInYears(): int } Person <|-- Mitarbeiter Person <|-- Kunde PersonenListe <|.. Kundenliste : <<bind>>\n <T-> Kunde> PersonenListe <|.. Mitarbeiterliste : <<bind>>\n <T-> Mitarbeiter> @enduml
6712cec9ace6b80c09b88bf03edeb62cf9691562
85223a0947313518366b6a1d862e420c1f657503
/app/app.plantuml
5aef12e4a3c9b3a4f74dc314b018d6c45d393359
[]
no_license
SR88/DietDiary
11a7346a37f0401ad4e1a75e6585147d557781d5
d8771e1688f864c9a53c80dfef929d0e31145d8d
refs/heads/master
2020-04-24T17:28:35.443241
2019-03-22T05:24:32
2019-03-22T05:24:32
172,148,663
0
0
null
2019-03-05T14:09:34
2019-02-22T23:33:37
Java
UTF-8
PlantUML
false
false
14,433
plantuml
@startuml title __APP's Class Diagram__\n package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class AllEntries { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class AllFoodTypes { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class AllFoods { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.utils { class BaseMessenger { } } } package com.shneddy.dietdiary { class BuildConfig { } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.adapters { class ConsumptionAdapter { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class DiaryEntry { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { interface DiaryEntryDAO { } } } package com.shneddy.dietdiary { class DiaryEntryDAOTest { } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { class DiaryEntryDAO_Impl { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.repository { class DiaryEntryRepository { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class Diem { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.adapters { class DiemAdapter { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class DiemAndEntry { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.viewmodel { class DiemAndMoreViewModel { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { interface DiemDAO { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { class DiemDAO_Impl { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { interface DiemEntryFoodDAO { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.repository { class DiemRepository { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class EditorConsumption { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class EditorEntries { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class EditorFood { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class EditorFoodType { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.intermediates { class EntryAndFoodData { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class EntryDetail { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class EntryDiemFood { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class Food { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.adapters { class FoodAdapter { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class FoodAndEntry { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { interface FoodAndEntryDAO { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { class FoodAndEntryDAO_Impl { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.adapters { class FoodAndEntryJoinAdapter { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.repository { class FoodAndEntryRepository { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.viewmodel { class FoodAndEntryViewModel { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class FoodAndType { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.intermediates { class FoodAndTypeData { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { interface FoodDAO { } } } package com.shneddy.dietdiary { class FoodDAOTest { } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { class FoodDAO_Impl { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.database { abstract class FoodDiaryDatabase { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.database { class FoodDiaryDatabase_Impl { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.utils { class FoodMessenger { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.repository { class FoodRepository { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class FoodType { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.adapters { class FoodTypeAdapter { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { interface FoodTypeDAO { } } } package com.shneddy.dietdiary { class FoodTypeDAOTest { } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { class FoodTypeDAO_Impl { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.repository { class FoodTypeRepository { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class MainMenu { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.exception { class NoItemsAvailableException { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.exception { class NoValueInputException { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.viewmodel { class OperationsViewModel { } } } package androidx.sqlite.db { package androidx.sqlite.db.framework { class R { } } } package com.google.android.material { class R { } } package androidx.viewpager { class R { } } package androidx.slidingpanelayout { class R { } } package androidx.lifecycle { package androidx.lifecycle.service { class R { } } } package androidx.lifecycle { package androidx.lifecycle.viewmodel { class R { } } } package androidx.lifecycle { package androidx.lifecycle.process { class R { } } } package androidx.cursoradapter { class R { } } package androidx.cardview { class R { } } package androidx.fragment { class R { } } package androidx.vectordrawable { class R { } } package androidx.legacy.coreui { class R { } } package androidx.documentfile { class R { } } package androidx.coordinatorlayout { class R { } } package com.shneddy.dietdiary { class R { } } package androidx.customview { class R { } } package androidx.transition { class R { } } package androidx.recyclerview { class R { } } package androidx.core { class R { } } package android.support.constraint { class R { } } package androidx.lifecycle { class R { } } package androidx.legacy.coreutils { class R { } } package androidx.lifecycle { package androidx.lifecycle.livedata { package androidx.lifecycle.livedata.core { class R { } } } } package androidx.lifecycle { package androidx.lifecycle.extensions { class R { } } } package androidx.room { class R { } } package androidx.appcompat { class R { } } package androidx.interpolator { class R { } } package androidx.versionedparcelable { class R { } } package androidx.print { class R { } } package androidx.sqlite.db { class R { } } package androidx.drawerlayout { class R { } } package androidx.swiperefreshlayout { class R { } } package androidx.asynclayoutinflater { class R { } } package androidx.lifecycle { package androidx.lifecycle.livedata { class R { } } } package androidx.arch.core { class R { } } package androidx.loader { class R { } } package androidx.localbroadcastmanager { class R { } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.activity { class SearchActivity { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.viewmodel { class SearchViewModel { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.entity { class TypeAndFood { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { interface TypeAndFoodDAO { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.dao { class TypeAndFoodDAO_Impl { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.adapters { class TypeAndFoodJoinAdapter { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.repository { class TypeAndFoodRepository { } } } package com.shneddy.dietdiary { package com.shneddy.dietdiary.viewmodel { class TypeAndFoodViewModel { } } } AllEntries -up-|> AppCompatActivity AllEntries o-- OperationsViewModel : opsVM AllEntries o-- DiemAndMoreViewModel : diemVM AllEntries o-- DiemAdapter : adapter AllFoodTypes -up-|> AppCompatActivity AllFoodTypes o-- OperationsViewModel : operationsViewModel AllFoodTypes o-- TypeAndFoodViewModel : joinVM AllFoods -up-|> AppCompatActivity AllFoods o-- TypeAndFoodViewModel : tfViewModel AllFoods o-- OperationsViewModel : operationsVm AllFoods o-- FoodAndEntryViewModel : feViewModel AllFoods o-- TypeAndFoodJoinAdapter : adapter ConsumptionAdapter -up-|> Adapter DiaryEntryDAOTest o-- FoodDiaryDatabase : database DiaryEntryDAOTest o-- FoodDAO : foodDAO DiaryEntryDAOTest o-- FoodTypeDAO : foodTypeDAO DiaryEntryDAOTest o-- DiaryEntryDAO : entryDAO DiaryEntryDAO_Impl -up-|> DiaryEntryDAO DiaryEntryRepository o-- DiaryEntryDAO : diaryEntryDAO DiemAdapter -up-|> Adapter DiemAndEntry o-- Diem : diem DiemAndMoreViewModel -up-|> AndroidViewModel DiemAndMoreViewModel o-- DiemRepository : repo DiemDAO_Impl -up-|> DiemDAO DiemRepository o-- DiemDAO : dao EditorConsumption -up-|> AppCompatActivity EditorConsumption o-- OperationsViewModel : opsVM EditorEntries -up-|> AppCompatActivity EditorFood -up-|> AppCompatActivity EditorFood o-- OperationsViewModel : operationsViewModel EditorFoodType -up-|> AppCompatActivity EntryDetail -up-|> AppCompatActivity EntryDetail o-- OperationsViewModel : opsVM EntryDetail o-- ConsumptionAdapter : adapter EntryDiemFood o-- Diem : diem FoodAdapter -up-|> Adapter FoodAndEntry o-- Food : food FoodAndEntryDAO_Impl -up-|> FoodAndEntryDAO FoodAndEntryRepository o-- FoodAndEntryDAO : dao FoodAndEntryViewModel -up-|> AndroidViewModel FoodAndEntryViewModel o-- FoodAndEntryRepository : repository FoodAndType o-- FoodType : foodType FoodDAOTest o-- FoodDiaryDatabase : database FoodDAOTest o-- FoodDAO : foodDAO FoodDAOTest o-- FoodTypeDAO : foodTypeDAO FoodDAO_Impl -up-|> FoodDAO FoodDiaryDatabase -up-|> RoomDatabase FoodDiaryDatabase_Impl -up-|> FoodDiaryDatabase FoodDiaryDatabase_Impl o-- FoodDAO : _foodDAO FoodDiaryDatabase_Impl o-- DiaryEntryDAO : _diaryEntryDAO FoodDiaryDatabase_Impl o-- FoodTypeDAO : _foodTypeDAO FoodDiaryDatabase_Impl o-- TypeAndFoodDAO : _typeAndFoodDAO FoodDiaryDatabase_Impl o-- FoodAndEntryDAO : _foodAndEntryDAO FoodDiaryDatabase_Impl o-- DiemDAO : _diemDAO FoodMessenger -up-|> BaseMessenger FoodRepository o-- FoodDAO : foodDAO FoodRepository o-- DiaryEntryDAO : diaryEntryDAO FoodRepository o-- FoodTypeDAO : foodTypeDAO FoodRepository o-- Food : foodById FoodTypeAdapter -up-|> Adapter FoodTypeDAOTest o-- FoodDiaryDatabase : database FoodTypeDAOTest o-- FoodTypeDAO : foodTypeDAO FoodTypeDAO_Impl -up-|> FoodTypeDAO FoodTypeRepository o-- FoodTypeDAO : foodTypeDAO MainMenu -up-|> AppCompatActivity MainMenu o-- OperationsViewModel : opsVM OperationsViewModel -up-|> AndroidViewModel OperationsViewModel o-- FoodRepository : foodRepository OperationsViewModel o-- DiaryEntryRepository : diaryEntryRepository OperationsViewModel o-- FoodTypeRepository : foodTypeRepository OperationsViewModel o-- DiemRepository : diemRepository OperationsViewModel o-- Food : foodById SearchActivity -up-|> AppCompatActivity SearchActivity o-- OperationsViewModel : opsVM SearchViewModel -up-|> AndroidViewModel SearchViewModel o-- FoodRepository : repository TypeAndFood o-- FoodType : foodType TypeAndFoodDAO_Impl -up-|> TypeAndFoodDAO TypeAndFoodJoinAdapter -up-|> Adapter TypeAndFoodRepository o-- TypeAndFoodDAO : typeAndFoodDAO TypeAndFoodViewModel -up-|> AndroidViewModel TypeAndFoodViewModel o-- TypeAndFoodRepository : typeAndFoodRepository 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
c14e603f193068409bdfeb9f6565ab41390ca045
ef4f9913b31c7ce6c913c8adcced062c0d5db5f9
/design-patterns/codebase/src/main/resources/uml/factory-method/solution-class-diagram.puml
2da26bc1ba7b6c45d07ad01708034260490884b1
[]
no_license
lzbair/OO-Paradigm
5061211c6af19612c9d8185493898441fb92257b
ddc653bd0fe17807bcd7fd6030bb3e6b05239d99
refs/heads/master
2023-06-27T14:54:19.349718
2023-02-21T09:53:06
2023-02-21T09:53:06
238,396,539
0
1
null
2023-06-14T22:49:02
2020-02-05T07:55:12
Java
UTF-8
PlantUML
false
false
450
puml
-@startuml abstract class ConnectionPool { abstract createConnection() } abstract class Connection { send(request) response receive() } ConnectionPool "1" *-left- "many" Connection: : contains class HTTPConnectionPool extends ConnectionPool { createConnection() } class HTTPConnection extends Connection { send(request) response receive() } HTTPConnectionPool -left- HTTPConnection: create > @enduml
8f8cfa9527414cfc751ce7b2ce159c2483d17f4c
4a46872b586ed5cd62cdfb631d55be145978fe4c
/src/main/java/com/masterarbeit/repositories/repositories.plantuml
fec2ee8f4ac99655a58bf5b2fce100342eb88a29
[]
no_license
edegeyer/validator
3f80d7523f2dd36256e6b7e14ff870ff5b45e301
0dedd33202ddc2957b482bfdf387be74242cb146
refs/heads/master
2020-04-15T12:30:14.209365
2019-07-01T12:30:09
2019-07-01T12:30:09
164,677,194
0
0
null
null
null
null
UTF-8
PlantUML
false
false
777
plantuml
@startuml title __REPOSITORIES's Class Diagram__\n package com.masterarbeit { package com.masterarbeit.repositories { interface PatientAnonymRepository { } } } package com.masterarbeit { package com.masterarbeit.repositories { interface PatientRepository { } } } package com.masterarbeit { package com.masterarbeit.repositories { interface QupSapRepository { } } } package com.masterarbeit { package com.masterarbeit.repositories { interface SapRepository { } } } 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
80f755fe9e3ded9f9e5e97473aa77f512c8b4401
2233ecb0f0dfb124b3c413aaf3fa1a1916059739
/docs/Deliverable_52/applications_doc/smart-contextual-assistance/contextual-work-comm.puml
569062b4ae0e0596b25d0bbc54ecd4c44fba4a38
[ "Apache-2.0" ]
permissive
reTHINK-project/scenario-service-implementation
5dc30cd716d3a875ea8edfd93f8e62fde33adecc
c8c0a90299938bf00e31c01ca72a49eab26f8436
refs/heads/master
2021-03-16T09:11:46.864830
2017-06-01T14:43:15
2017-06-01T14:43:15
37,669,121
0
0
null
null
null
null
UTF-8
PlantUML
false
false
749
puml
@startuml "work-context-design.png" class WorkContext { } class WorkProjectContext { } class WorkTaskContext { } WorkContext -|> ContextualComm.CompositeContextualComm WorkContext *-down- "0..*" WorkProjectContext WorkProjectContext *-down- "0..*" WorkTaskContext WorkProjectContext -|> ContextualComm.CompositeContextualComm WorkTaskContext -|> ContextualComm.CompositeContextualComm WorkTaskContext *-- "0..*" WorkTaskContextPeer WorkProjectContext *-- "0..*" WorkProjectContextPeer WorkContext *-- "0..*" WorkContextPeer WorkTaskContextPeer -|> ContextualComm.AtomicContextualComm WorkProjectContextPeer -|> ContextualComm.AtomicContextualComm WorkContextPeer -|> ContextualComm.AtomicContextualComm @enduml
4cdd4552384995533f3acb19abde19b1387b9007
b0abd1d387bbbb3d68839a5d90bb49d706ab8b91
/docs/Sprint1/Diagramme de classe.puml
8c5dbdcc4becaafa0d5aa0dd3bf3c07e9ac7b0ed
[]
no_license
lepetitglacon/SIO_musculation
5fe21c1a5248b3e18ae59d7cc627ee669e9f6606
cea8e5002717a39488ca5ec266d6000680c0fa2f
refs/heads/master
2023-02-17T11:43:59.770956
2021-01-07T07:23:00
2021-01-07T07:23:00
313,562,381
0
0
null
null
null
null
UTF-8
PlantUML
false
false
825
puml
@startuml left to right direction rectangle ROLE { class Visiteur{ } class Redacteur{ id : int mail : string role[] : array nom : varchar prénom : varchar } class Administrateur{} } class Rubrique{ id : int nom : string date : date dropdown : boolean } class Article{ id : int nom : string texte : text date : date } class Accueil{ } Redacteur --|> Visiteur Administrateur --|> Redacteur Administrateur "*" -- "*" Redacteur : Gère > Article "1..*" -* "1" Rubrique : Compose > Accueil "1" *- "1" Article : Affiche Redacteur "1" - "1..*" Rubrique : Crée > Redacteur "*" - "*" Rubrique : Organise > Redacteur "1" - "1..*" Article : Rédige > Redacteur "1" - "1" Accueil : Modifie > Visiteur "*" - "1" Accueil : Voit @enduml
9e274c0d6b65f7f1963ed7c96e168f298742ba37
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProjectSetExternalOAuthAction.puml
49054470b7e4307a433903972261757bf1c26a77
[]
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
488
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 ProjectSetExternalOAuthAction [[ProjectSetExternalOAuthAction.svg]] extends ProjectUpdateAction { action: String externalOAuth: [[ExternalOAuth.svg ExternalOAuth]] } interface ProjectUpdateAction [[ProjectUpdateAction.svg]] { action: String } @enduml
1e1e5b960a96e37e98d1c5ba11cb26851a1da779
b0956a85955d743a879868c0cf1387eb6f29ced0
/docs/diag_classes.puml
6a9d74e423eb80494b181ca5bec0b028c1ac4285
[ "Apache-2.0", "Python-2.0" ]
permissive
OpenWinch/OpenWinch-Python
89268aa07e6fa67c93316376f09acda6866dc4b7
9bef54ed66c4e77128cfb63fc2d0af747a65a35f
refs/heads/master
2022-11-26T21:34:01.664155
2020-06-05T23:39:35
2020-06-05T23:39:35
262,579,938
2
0
Apache-2.0
2020-06-05T23:39:36
2020-05-09T13:43:51
Python
UTF-8
PlantUML
false
false
6,115
puml
@startuml skinparam class { BackgroundColor White ArrowColor Grey BorderColor Black } title Diag classes - OpenWinch namespace openwinch.controller { enum State { UNKNOWN = -999 BOOTED = -2 ERROR = -1 INIT = 0 IDLE = 1 START = 2 RUNNING = 3 STOP = 4 {static}+checkRun(current): bool {static}+checkStop(current): bool {static}+checkFault(current): bool {static}+checkInit(current): bool +isRun() : bool +isStop() : bool +isFault() : bool +isInit() : bool } class Winch { -controlLoop = None -speed_target = SPEED_INIT -banner() -changeState(state) -initControlLoop() -loadConfig() +display() +emergency() +getBattery() +getDistance() +getMode() +getRemote() +getSpeedTarget() +getState() +initialize() +initialized() +speedDown(value=1) +speedUp(value=1) +speedValue(value) +start() +started() +stop() +stopped() } Winch o-left-> "state" State } namespace openwinch.mode { enum ModeType { OneWay = 1 TwoWay = 2 Infinity = 3 +list() } abstract class ModeFactory { {static}+modeFactory(winch: Winch, board: Board, mode: ModeType) : ModeEngine {static}+getMode(modeEngine: ModeEngine) : ModeType } abstract class ModeEngine { -security_begin: int = 20 -speed_ratio: float = 1 -velocity_start: int = 1 -velocity_stop: int = 3 #speed_current = 0 -initialize() -starting() -stopping() -fault() {abstract}#extraMode() #isBeginSecurity() : bool +applyThrottleValue() +getDistance() : float +getSpeedCurrent() : int +runControlLoop() } class OneWayMode extends ModeEngine { #extraMode() } class TwoWayMode extends ModeEngine{ #extraMode() } class InfinityMode extends ModeEngine{ #extraMode() } ModeEngine o-right-> "board" openwinch.hardware.Board ModeEngine "mode" o-up- "winch" openwinch.controller.Winch ModeEngine .left.> ModeType ModeFactory .up.> OneWayMode ModeFactory .up.> TwoWayMode ModeFactory .up.> InfinityMode } namespace openwinch.hardware { enum SpeedMode { LOW = 0 MEDIUM = 1 HIGH = 2 } abstract class Board { -reverse: boolean = False -speed_mode: SpeedMode = SpeedMode.LOW -rotation_from_init: int = 0 {abstract}+emergency() +getBattery() +getRotationFromBegin() +getRotationFromEnd() +getSpeedMode() {abstract}+getThrottleValue() {abstract}+initialize() +isReverse() {abstract}+setReverse(enable: boolean) {abstract}+setSpeedMode(speed_mode: SpeedMode) {abstract}+setThrottleValue(value) } class Emulator extends Board { -value: int = 0 -init: boolean = False +emergency() +getThrottleValue() +initialize() +setReverse(enable: boolean) +setSpeedMode(speed_mode: SpeedMode) +setThrottleValue(value) } class RaspberryPi extends Board { -power_cmd: OutputDevice -reverse_cmd: OutputDevice -speed_cmd: OutputDevice -throttle_cmd: PWMOutputDevice -key_enter_btn: Button -key_left_btn: Button -key_right_btn: Button +emergency() +getThrottleValue() : float +initialize() +setReverse(enable: boolean) +setSpeedMode(speed_mode: SpeedMode) +setThrottleValue(value) } Board ..> SpeedMode Board "board" o-up- "winch" openwinch.controller.Winch } namespace openwinch.display { enum GuiType { DISABLE = 0 SH1106_I2C = 1 VGA = 100 CAPTURE = 101 } class Gui { +cursor_pos +screen +view_pos +boot(self) +createMenuIcon(self, draw, items) +createMenuScroll(self, draw, items, selected_item=None) +createValue(self, draw, title, value) +display(self) +enter(self, key) +extractScreen(self) +getPos(self) +getWinch(self) +statusBar(self, draw) } abstract class ScreenBase { {abstract}+countItems(self): int {abstract}+display(self, draw) {abstract}+enter(self, cursor_pos) } class MainScreen extends ScreenBase { +countItems(self): int +display(self, draw) +enter(self, cursor_pos) } class MenuScreen extends ScreenBase { +countItems(self): int +display(self, draw) +enter(self, cursor_pos) } class ManualPositionScreen extends ScreenBase { +countItems(self): int +display(self, draw) +enter(self, cursor_pos) } class SecurityDistanceScreen extends ScreenBase { +TITLE +value +countItems(self): int +display(self, draw) +enter(self, cursor_pos) } class ModeSelectorScreen extends ScreenBase { +countItems(self): int +display(self, draw) +enter(self, cursor_pos) } class VelocityStartScreen extends ScreenBase { +TITLE +value +countItems(self): int +display(self, draw) +enter(self, cursor_pos) } class VelocityStopScreen extends ScreenBase { +TITLE +value +countItems(self): int +display(self, draw) +enter(self, cursor_pos) } Gui o-right- "screen" ScreenBase Gui o-up-> "winch" openwinch.controller.Winch Gui ..> GuiType } namespace openwinch.config { class Config { +BOARD: String = "openwinch.hardwarePi.RaspberryPi" +MODE: String = "Mode.OneWay" +GUI: String = "SH1106_I2C" } openwinch.controller.Winch .right.> Config } @enduml
34f7d9348b3f4e959a95349c9ecce78870bbf383
1796581f86afff7ca46e44c51358bc4b38a5375a
/programming/design-pattern/plantuml/proxy.puml
8b45f5ace42f6c064e8a1c946d1246b4da6f228d
[]
no_license
ruleless/ORG
7de911d850c3861d44ecb5ee395874c637e22380
cd3021a55f2ac47e0c1271fe745c1d2c28289eca
refs/heads/master
2023-06-01T04:41:54.376093
2023-05-17T14:28:44
2023-05-17T14:28:44
44,298,812
2
1
null
null
null
null
UTF-8
PlantUML
false
false
227
puml
@startuml Proxy class Subject { +Request() } class RealSubject { +Request() } Subject <|-- RealSubject class Proxy { +Request() } Subject <|-- Proxy RealSubject <- Proxy class Client Client -> Subject @enduml
cba1397275286f24ce407b8d481d5aa92a10e501
c7e910df71510b3dc25434df812fd8e2d8b9113f
/UML/class/timingmanager.plantuml
7d093f276e446b887752fff1b5e46540674a5ec0
[]
no_license
goheisystem/softwareDocuments
9dd305838ad1e27138056fc5abffa33e0dc2da30
b0196b416d517bbea44947c0218aa12e2a97435e
refs/heads/master
2021-01-12T11:29:09.772032
2016-12-08T05:18:55
2016-12-08T05:18:55
72,935,193
0
0
null
null
null
null
UTF-8
PlantUML
false
false
614
plantuml
@startuml title TimingManager周り left to right direction class "TimingManager" as ClassTimingManager{ -{static}periodElaspedFlag : bool -{static}ticker : Ticker -{static}callBack() : void -startTimer() : void -stopTimer() : void +isPeriodElasped() : bool +clearElaspedFlag() : void +startManaging() : void +stopManaging() : void -{static}const PERIOD_SEC = 10 : uint32_t -{static}timingManager : TimingManager -{static}temperatureGetter : TemperatureGetter } package "mbed" as PackageMBED{ class "Ticker" as ClassTicker{ } } ClassTimingManager "0..*" *-- "1" ClassTicker @enduml
a9708aee5fcabe9fee1f96a70ac90eae2193946e
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Window/TimelineWindow_PlayableLookup.puml
8265645a6eb89087d72b383b19f9aaf83731965b
[]
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
872
puml
@startuml class TimelineWindow <<partial>> { } class PlayableLookup { <<const>> k_InitialDictionarySize : int = 10 + UpdatePlayableLookup(clip:TimelineClip, go:GameObject, p:Playable) : void + UpdatePlayableLookup(track:TrackAsset, go:GameObject, p:Playable) : void UpdatePlayableLookup(timelineAsset:TimelineAsset, curvesOwner:ICurvesOwner, go:GameObject, p:Playable) : void + GetPlayableFromAnimClip(clip:AnimationClip, p:Playable) : bool + GetTimelineClipFromCurves(clip:AnimationClip) : TimelineClip + ClearPlayableLookup() : void } class "Dictionary`2"<T1,T2> { } TimelineWindow o-> "m_PlayableLookup" PlayableLookup TimelineWindow +-- PlayableLookup PlayableLookup o-> "m_AnimationClipToPlayable<AnimationClip,Playable>" "Dictionary`2" PlayableLookup o-> "m_AnimationClipToTimelineClip<AnimationClip,TimelineClip>" "Dictionary`2" @enduml
f5a9996d0c084e8c3ef98801a09021959e881938
71f991ceeedbb609fdc6461988fe0267d10e8bac
/uml/ui/FrameButton.puml
8ffaf61cc54f975176547b0ba569568893f56987
[]
no_license
CodyAdam/project__chatbot
23d0ef12207fb0201258c288ee07872d957b1742
afc0d8532f7a162d5b303b09fb41b345f4736697
refs/heads/main
2023-08-02T04:11:36.149644
2021-10-09T21:02:45
2021-10-09T21:02:45
415,371,853
0
0
null
null
null
null
UTF-8
PlantUML
false
false
148
puml
@startuml 'https://plantuml.com/class-diagram class FrameButton{ String pathDark String pathLight Img imgDark Img imgLight Button button } @enduml
223ba95b3a710e4fa758cd027e2b2795ad61b6a1
87b542863376319c5d1d7022e0f0820833315878
/src/edu/ub/ubflix/resources/service/service.puml
3daad1841dafd488ce66db0d620b416fba2f0a54
[]
no_license
carlaMorral/SoftwareDesignProject
4903b350b7e4a10ac9213059d94cdf8cb629e5af
47a5136e382b85b6bb1868998445c0eb46220450
refs/heads/master
2021-03-30T13:47:37.659737
2020-03-18T22:52:19
2020-03-18T22:52:19
248,061,086
1
1
null
null
null
null
UTF-8
PlantUML
false
false
1,510
puml
@startuml title __SERVICE's Class Diagram__\n namespace ub.edu { namespace database.service { interface ub.edu.resources.service.AbstractFactoryData { {abstract} + createDAOClient() {abstract} + createDAOSerie() } } } namespace ub.edu { namespace database.service { class ub.edu.resources.service.DataService { + DataService() + getAllSeries() + getClientByUsuariAndPassword() + getEpisodisBySerieAndTemporada() + getSerieById() + getTemporadesBySerie() } } } namespace ub.edu { namespace database.service { class ub.edu.resources.service.FactoryMOCK { + createDAOClient() + createDAOSerie() } } } namespace ub.edu { namespace database.service { class ub.edu.resources.service.FactorySQL { + createDAOClient() + createDAOSerie() } } } ub.edu.resources.service.DataService o-- ub.edu.resources.dao.DAOClient : clientDAO ub.edu.resources.service.DataService o-- ub.edu.resources.dao.DAOSerie : serieDAO ub.edu.resources.service.FactoryMOCK .up.|> ub.edu.resources.service.AbstractFactoryData ub.edu.resources.service.FactorySQL .up.|> ub.edu.resources.service.AbstractFactoryData 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
36e7662b770a960fccc32816f265420fcf6b9ad6
a65fe81fdb57e5d389a290fc70f724a593f1cd85
/01.Observer/src/ES2015-CascadingComboBox/diagrams/v4/ClassDiagram4-5.puml
5e93f10921a9dc09f8c241e7b348136bf5ade611
[ "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
680
puml
@startuml skinparam defaultFontName "Fira Code" skinparam class { FontStyle bold FontSize 12 } scale 800*800 interface IObserver{ +update() } interface ISubject{ +registerObserver() +notifyObservers() } class Button{ +caption +update() } class ComboBox{ -observers +notifyObservers() +registerObserver() } class CascadingComboBox{ -children #onItemSelected() +attachChild() +clear() +clearChildren() +setData() +updateChildren() } IObserver <|-down- Button ISubject <|-down- ComboBox ComboBox <|-down- CascadingComboBox ISubject .right.> IObserver @enduml
2504417be932735ccded1bb7ce34da7611c32cc5
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Editor/TMP_StyleSheetEditor.puml
6680f425759dbeb8ca347882d5eadef1f936f90d
[]
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
728
puml
@startuml class StyleDrawer { + {static} <<readonly>> height : float = 95f + <<override>> GetPropertyHeight(property:SerializedProperty, label:GUIContent) : float + <<override>> OnGUI(position:Rect, property:SerializedProperty, label:GUIContent) : void } class TMP_StyleEditor { m_SelectedElement : int m_Page : int m_IsStyleSheetDirty : bool OnEnable() : void + <<override>> OnInspectorGUI() : void {static} DoSelectionCheck(selectionArea:Rect) : bool SwapStyleElements(selectedIndex:int, newIndex:int) : void } PropertyDrawer <|-- StyleDrawer Editor <|-- TMP_StyleEditor TMP_StyleEditor --> "m_StyleSheet" TMP_StyleSheet TMP_StyleEditor --> "m_StyleListProp" SerializedProperty @enduml
eba2990280e5cf6058f1f1046acdc04a3585c952
c815f9c82c1400f76243750cd0ec609d217b9943
/multiton/etc/multiton.urm.puml
c582a6379ce037b8c3ecaafc32e863471c1fb5c1
[ "MIT" ]
permissive
mikulucky/java-design-patterns
6ab10e9e5c95b6caffebf045d37d04a1571bc0cd
cbbf3bf08842723964719ed7d8ab92864ec5a58d
refs/heads/master
2021-01-17T23:34:49.962450
2016-09-28T19:54:28
2016-09-28T19:54:28
48,302,802
1
1
null
2016-01-02T23:58:44
2015-12-20T01:00:47
Java
UTF-8
PlantUML
false
false
679
puml
@startuml package com.iluwatar.multiton { class App { + App() + main(args : String[]) {static} } class Nazgul { - name : NazgulName - nazguls : Map<NazgulName, Nazgul> {static} - Nazgul(name : NazgulName) + getInstance(name : NazgulName) : Nazgul {static} + getName() : NazgulName } enum NazgulName { + ADUNAPHEL {static} + AKHORAHIL {static} + DWAR {static} + HOARMURATH {static} + JI_INDUR {static} + KHAMUL {static} + MURAZOR {static} + REN {static} + UVATHA {static} + valueOf(name : String) : NazgulName {static} + values() : NazgulName[] {static} } } Nazgul --> "-name" NazgulName @enduml
fb8240ee73257306854f708314db646f57cc108d
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderImportedMessage.puml
bba1d2e3ed5440b2b4a61026f5ddf5d98bafad8e
[]
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,167
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 OrderImportedMessage [[OrderImportedMessage.svg]] extends OrderMessage { 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]] order: [[Order.svg Order]] } interface OrderMessage [[OrderMessage.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
e5ae25a183bc89e4c8e999f0eb6516ceb674eefc
a751888fd29a1b92bb32ef7d272d3e72f664ed30
/src/design/orbit-determination-parameters-class-diagram.puml
d899ceb243632fb14ec375d1f4c2cf87d3792847
[ "Apache-2.0", "MIT", "EPL-1.0" ]
permissive
petrushy/Orekit
b532c7db85c992d85b5ac3d858d18d656e2b8c46
1f8ff45caf82e0e7e85f8cf9fd4f41c3ba379443
refs/heads/develop
2023-08-16T11:37:43.709083
2023-07-18T20:13:14
2023-07-18T20:13:14
42,349,064
10
2
Apache-2.0
2023-07-21T14:54:14
2015-09-12T07:39:56
Java
UTF-8
PlantUML
false
false
2,606
puml
' Copyright 2002-2022 CS GROUP ' Licensed to CS GROUP (CS) under one or more ' contributor license agreements. See the NOTICE file distributed with ' this work for additional information regarding copyright ownership. ' CS licenses this file to You under the Apache License, Version 2.0 ' (the "License"); you may not use this file except in compliance with ' the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, software ' distributed under the License is distributed on an "AS IS" BASIS, ' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ' See the License for the specific language governing permissions and ' limitations under the License. @startuml skinparam svek true skinparam ClassBackgroundColor #F3EFEB/CCC9C5 skinparam ClassArrowColor #691616 skinparam ClassBorderColor #691616 skinparam NoteBackgroundColor #F3EFEB skinparam NoteBorderColor #691616 skinparam NoteFontColor #691616 skinparam ClassFontSize 11 skinparam PackageFontSize 12 skinparam linetype ortho package org.orekit #ECEBD8 { package utils #DDEBD8 { class ParameterDriver { +getName() +getReferenceValue() +geMinValue() +geMaxValue() +geScale() +[is|set]Estimated() +[get|set]NormalizedValue() +[get|set]Value() +addObserver() } interface ParameterObserver { +valueChanged(previousValue, driver) } ParameterDriver o--> ParameterObserver : observers ParameterDriver <-right-* ParameterDriversList : manage duplicates } package estimation #DDEBD8 { package leastsquares #CBDBC8 { class BatchLSEstimator } BatchLSEstimator --> ParameterDriver : change normalized value BatchLSEstimator *--> ParameterDriversList : managed parameters package measurement #CBDBC8 { interface ObservedMeasurement { getParametersDrivers() } class GroundStation ObservedMeasurement <|.. Range ObservedMeasurement <|.. RangeRate Range o--> "1" GroundStation RangeRate o--> "1" GroundStation ParameterObserver <..* GroundStation : East/North/Zenith offsets BatchLSEstimator --> ObservedMeasurement } } package frames #DDEBD8 { class TopocentricFrame GroundStation --> TopocentricFrame : updated on parameter change } } @enduml
ed38bdb9eed9f82d1a91efb3b09714ac3420468c
38aaf3aab3012f12640f7ec2d8e0b13d47bd73df
/Behavioral-Pattern/src/interpreter/demo1/UML类图.puml
557aa6b57d54fdf26b77033921a22d67f17faa84
[]
no_license
Danbro007/DesignPattern
ff0bf4a2d68e40bd8cbf3574ad8e377200af1f20
38e5a4ec5bdfd463090e12f740e0638c9c8e6d25
refs/heads/master
2021-03-31T16:55:54.094329
2020-03-26T13:14:19
2020-03-26T13:14:19
248,121,211
0
0
null
null
null
null
UTF-8
PlantUML
false
false
883
puml
@startuml class Client{ } abstract class Expression{ + abstract int interpret(HashMap<String, Integer> var) } class VarExpression { - String key; } class SymbolExpression{ - Expression left; - Expression right; + void setLeft(Expression e); + void setRight(Expression e); + Expression getLeft(); + Expression getRight(); } class Calculator{ - char[] chars; - Expression expression; + int run(); } class AddExpression class SubExpression note "符号解释器" as N1 note "变量解释器" as N2 note "加法解释器" as N3 note "减法解释器" as N4 N1 --> SymbolExpression N2 --> VarExpression N3 --> AddExpression N4 --> SubExpression VarExpression --|> Expression SymbolExpression --|> Expression AddExpression --|> SymbolExpression SubExpression --|> SymbolExpression Calculator ..> Expression Client ..> Calculator @enduml
f9724ece8754ad94f40f1718dbcdbafc6c5af72f
115c39b76697b3cc996768a0ae01bc98a9f7afee
/Assets/UML/GameManager.puml
6d5dcc57fefaa5f115f010320aa1cf520d963279
[ "MIT" ]
permissive
Edy-kun/GGJ-Game
2d93a0664951861e2c3218bac1dfbae5d8a868c4
e0ae41ae679bb06a00db2c7e8f5723c387b8312f
refs/heads/master
2021-07-06T23:36:33.549698
2020-02-01T16:48:38
2020-02-01T16:48:38
237,224,883
0
0
MIT
2021-04-21T19:53:20
2020-01-30T14:00:15
C#
UTF-8
PlantUML
false
false
153
puml
@startuml !define DARKBLUE !includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml class GameManager{ } @enduml
dfde751c9a2685ed398fcd09aeacccdd9782942c
4108210ff97f84d12acf511ede7d0e1cac0babc5
/src/main/UML/CupCake_Domain_Model.puml
934e16b79dd17aea70bd2671c54ff15687dc22e3
[]
no_license
ariktwena/CupCake_Onion
939f6d8c93a8346e596438e733f8cde60a786d34
4ad20f6dd13633e9434781551ae885b9b07285c6
refs/heads/master
2023-01-14T05:37:12.378772
2020-11-22T22:11:04
2020-11-22T22:11:04
309,806,347
0
0
null
null
null
null
UTF-8
PlantUML
false
false
774
puml
@startuml Title Domain Model hide circle hide methods class User { id email role credit salt secret } class Item { id name description price image } class Topping { id name price } class Bottom { id name price } class Cart_item { Item Topping Bottom qty subtotal } class Cart { Cart_item } class Shipping { address zip city } class Order { id payment_option info time total shipping_option status active User Shipping Cart } Order "*" -- "1" Shipping Order "*" -- "1" User Order "*" -- "1" Cart Cart "1" -- "*" Cart_item Cart_item "*" -- "1" Topping Cart_item "*" -- "1" Bottom Cart_item "*" -- "1" Item @enduml
e94e5978464929fc100d4755f0f882215a74741b
90cabf96e4466d51e71c0dd425a25d1e9103913e
/src/main/java/ex45/base/ex45.puml
1ceb37b45e6702bc45caaa0358a29136befbfa68
[]
no_license
rharding8/harding-cop3330-assignment3
cb85a2eb4724932ae81002f52beae594b16d153d
5161bcd1ac2f12baf61be523b0e3b3769ba903b5
refs/heads/master
2023-06-05T00:08:08.266502
2021-06-21T02:32:45
2021-06-21T02:32:45
376,988,662
0
0
null
null
null
null
UTF-8
PlantUML
false
false
420
puml
@startuml 'https://plantuml.com/class-diagram class Application { Scanner input main() readName() } class FileEditor { -String dir -String[] unsavedFile +FileEditor() +setInputFile +setUnsavedFile +replaceInFile() +writeToFile() } class FileIO { -File inputFile +setInputFile() +closeInput() +readFromFile() +writeToFile() } FileIO <|-- FileEditor @enduml
e8e6f00a1ef31bf9d8d43628c1a6a6bee26777bd
3ea02aab5d9a15def695d50ffd9c538a0b4e5173
/ideas/tooltips.puml
ec86aec73cf09e57bb87f5d457c78d2f472d0ea9
[]
no_license
VladimirAlexiev/rdf2rml
cd6a3c7c27dd3ce30214c852b4b0d9291464b461
29d7f21c9ed3defd5d6a64a02a5e18315d30b559
refs/heads/master
2023-06-09T10:08:02.313163
2023-06-07T11:25:10
2023-06-07T11:25:10
158,509,814
35
5
null
2023-05-30T12:54:05
2018-11-21T07:44:42
Perl
UTF-8
PlantUML
false
false
1,216
puml
@startuml hide empty members hide circles hide stereotype skinparam { HyperlinkColor black HyperlinkUnderline false } skinparam class { BackgroundColor<<artwork>> LightBlue BackgroundColor<<appellation>> Tomato } title Tooltip examples: Generic, JSONLD, RDF class node1 [[{Tooltip of node1}]] { [[field{Tooltip of field}]] } class node2 [[{Tooltip of node2}]] node1 --> node2 : [[edge{Tooltip of edge}]] class MMO1 as "<object/1>" <<artwork>> { [[<U+1F3A8> type ManMadeObject{a crm:E22_Man-Made_Object}]] [[classified_as aat:300033618{crm:P2_has_type "painting [visual work]"}]] } class Title1 as "<object/1/title>" <<appellation>> { [[<U+260F> type Appellation{a crm:E41_Appellation}]] [[value "Peasant and Sheep"{rdf:value}]] } MMO1 --> Title1 : [[identified_by{crm:P1_is_identified_by}]] class MMO2 as "<object/1>" <<artwork>> { [[<U+1F3A8> a crm:E22_Man-Made_Object{type ManMadeObject}]] [[crm:P2_has_type aat:300033618{classified_as "painting [visual work]"}]] } class Title2 as "<object/1/title>" <<appellation>> { [[<U+260F> a crm:E41_Appellation{Appellation}]] [[rdf:value "Peasant and Sheep"{value}]] } MMO2 --> Title2 : [[crm:P1_is_identified_by{identified_by}]] @enduml
3c837f3981632e4134f2b841ff2c559420a2339c
b710adc51ea8826a8e49924561df4522887e843c
/diagrammes/classes/classes.puml
31a84bff3b3eaaaa7ea14091e86bb25a86d3ce65
[]
no_license
NicoBecq/blog-php
6290fa6e2dbbc058e5e710e3d0625ecbcfaa5781
3354af08f65a21d8947265a52106994184001163
refs/heads/master
2021-02-11T03:35:56.108504
2020-03-23T16:08:20
2020-03-23T16:08:20
244,448,534
0
0
null
null
null
null
UTF-8
PlantUML
false
false
771
puml
@startuml class Post { int id string title string body User author DateTime publishedAt ?DateTime updatedAt } class Comment { int id string body User author DateTime publishedAt bool visible bool moderated Post post } Comment *-- Post class User { int id string firstname string lastname string email string password ?string description } class Admin extends User interface RequestInterface extends MessageInterface interface ResponseInterface extends MessageInterface class Message implements MessageInterface class Request extends Message implements RequestInterface class Response extends Message implements ResponseInterface class Router class BaseController class BaseRepository @enduml
4aa94211ce3920b039734ca71de1524d4c2ddc98
425b4d76ed4f529c7effcb51b5aa28d46f2bead6
/docs/diagrams/Classes.puml
18f241df2dcde0993b68200fdd5df502ff9e6f40
[]
no_license
sjaulin/bilemo
020ddf078587367c84b898943e57b5e1140ba7a7
79b2798f35839ebac472cc1d61d58a779d24e537
refs/heads/main
2023-03-27T04:35:12.314175
2021-03-29T07:42:03
2021-03-29T07:42:03
336,249,206
0
0
null
null
null
null
UTF-8
PlantUML
false
false
895
puml
@startuml Classes 'see:https://plantuml.com/fr/class-diagram title: Diagramme de classe class User { {field} email: string {field} fullname: string {field} phone: string {field} address: string {field} zipcode: string {field} city: string {field} createdAt: DateTimeInterface } class Customer { {field} email: string {field} fullname: string {field} phone: string {field} adress: string {field} zipcode: string {field} city: string {field} createdAt: DateTimeInterface } class Product { {field} brand: string {field} model: string {field} reference: string {field} price: decimal } User "1" -- "0..*" Customer @enduml
f1e9c93cf9133943dceca719c42788b5d03ae06a
bcb7fd9ec9e69e52780b27da867b8055dfdc043c
/src/lattice/ContextReaderText.iuml
555e564aa89e808572962f9a89405e740e20967c
[ "CECILL-B" ]
permissive
vanthonguyen/lattice-sequence
2e962d089b0053ba90332932fe3881dfe8ec71ac
72ebfe551ef013da521b81121e3f98164b2a00bf
refs/heads/master
2020-04-15T07:22:32.920465
2015-02-01T17:33:59
2015-02-01T17:33:59
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
278
iuml
package lattice { class ContextReaderText { -{static}ContextReaderText instance +void read(Context context, BufferedReader file) +{static}ContextReaderText getInstance() +{static}void register() } ContextReader <|-- ContextReaderText }
b8c7a255fc34795918e45d89cce361a71ff74228
41b4482517ed5f0eecb0f84119062e19ba85b2c3
/doc/factory_pattern/FactoryPattern.puml
11cb6667dfb4e7e47d6c28ab01155880d089cb51
[ "MIT" ]
permissive
simonsymhoven/analysis-model
f6cc02d39e3da446c3a7dd043fb36215d69483f0
28ae1c2fba373668d86556f563a39ccc84dbb4e1
refs/heads/master
2021-04-13T10:42:51.983341
2020-04-08T19:53:55
2020-04-08T19:53:55
249,156,825
0
0
MIT
2020-04-08T19:53:57
2020-03-22T10:09:20
Java
UTF-8
PlantUML
false
false
372
puml
@startuml class LineRangeTest { # createSerializable() : LineRange } class LineRange interface Serializable <<interface>> LineRangeTest --|> SerializableTest LineRange ..|> Serializable SerializableTest ..> LineRange : <<bind>>T::LineRange abstract class SerializableTest<T extends Serializable> { # createSerializable() : T } SerializableTest *- Serializable @enduml
74ce8b8ac48ebb67ebb80dd2de6f0ff84af407c7
40dff9f3accaa74abc586113fbe434a6a47073b4
/src/main/java/com/kiran/design/solid/e/dip/fixing_dip.puml
91ec79ba44c4e27165e745208f2c75d9d41b005e
[]
no_license
kiranprakashb/design-core-java
05eac64aa217bf9acbbda21dcd7b98e56e558f20
2c661c0d2e0506b7fa547395527422205c4cd50e
refs/heads/main
2023-03-04T01:24:55.516348
2021-02-17T19:24:51
2021-02-17T19:24:51
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
311
puml
@startuml 'https://plantuml.com/class-diagram class Developer { develop() } class BackEndDeveloper { develop() writeJava() } class FrontEndDeveloper { develop() writeJavascript() } class Project { implement() } Project ..> Developer Developer <|-- BackEndDeveloper Developer <|-- FrontEndDeveloper @enduml
a20070ea0750bfd2af829bba4b69f8232eda8eb3
02a364d6cc772a9bf2e72d02dbecca74ac14d335
/eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Contracts.Admin/WebStoreCatalog.puml
fcb1d89769ed4459013ef93b96cec6ddfd17ecf8
[ "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
111
puml
@startuml class WebStoreCatalog { + Id : int <<get>> <<set>> + Name : string <<get>> <<set>> } @enduml
3466767809d09c2956ef5ae1d2d3be7e52123ebe
fb84bca41a00746017b56791cc1900e4cb811be7
/plantuml/UIs/UIEatenView.puml
257f00b3343d03f7c543ab9b922534b633035434
[]
no_license
MainCastle1212/EverythingEater_Main
9b3622cc5cca5f78a411cfd7df61fbdec29a8856
c228f75b78387aee448c6fbb2f3a362dccb724bd
refs/heads/main
2023-01-12T07:33:38.139825
2020-11-12T10:01:22
2020-11-12T10:01:22
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
204
puml
@startuml class UIEatenView { + View(objSO:EatableObjSO) : void } MonoBehaviour <|-- UIEatenView UIEatenView --> "image" Image UIEatenView --> "Name" Text UIEatenView --> "DefaultColor" Color @enduml
098d98ff0f2b1b9d6ab3bd54c418bcf422b24c05
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/CategorySetCustomTypeAction.puml
8b01093af8b4205d2b1879a8c68468c6bb9e625e
[]
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
546
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 CategorySetCustomTypeAction [[CategorySetCustomTypeAction.svg]] extends CategoryUpdateAction { action: String type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]] fields: [[FieldContainer.svg FieldContainer]] } interface CategoryUpdateAction [[CategoryUpdateAction.svg]] { action: String } @enduml
54f3bec6eb348548ca4f3028d078f8fe5f25618c
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.puml
2dd6347a2afbe3360afca66a425aa07a2a916bb0
[]
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
274
puml
@startuml class ConstructDelegator { + ConstructDelegator(stateSerializer:IStateSerializer) + Delegate(type:Type, arguments:object[]) : object + HasAction() : bool + Execute(logScope:LogScope) : void + DestroyCurrentTestObjectIfExists() : void } @enduml
7e77ed58e16c3e0f72ff156245cbb5592a800fd7
e2151e9992bb6dcb69f07086ec00579519379780
/src/main/java/ex46/ex46.puml
2072527cca7c5ea9a28029f6130d2c2d3b87f1b1
[]
no_license
GSabiniPanini/little-cop3330-assignment3
43e248c1dafd09511955f9d09b26bc1feaf4f19f
9869ef2c906327aaebcf203a864613a61dfacdae
refs/heads/master
2023-06-03T17:30:22.693983
2021-06-21T04:00:53
2021-06-21T04:00:53
378,536,829
0
0
null
null
null
null
UTF-8
PlantUML
false
false
664
puml
@startuml 'https://plantuml.com/class-diagram class Solution46 { } class StringParser { + oldArray : String[] + makeMap(array : String[], size : int) : HashMap<String, Integer> + orderByFreq(tempMap : HashMap<String, Integer>) : ArrayList<Entry<String, Integer>> } class FileReader { + array : String[] + path : String + size : int <<constructor> FileReader(path : String) + readFile(path : String): void } class Grapher { + graphHistogram(freqlist : ArrayList<Entry<String, Integer>>) : void + getAsterisks(n : int) : String } Solution46 o--> FileReader Solution46 o--> StringParser Solution46 o--> Grapher @enduml
671c2cc02976657eb78facad2bad38521e0108f1
a886006f32e6a130f1a4e7b0cb3cf858b9e7de7e
/GUI/uml-test2.plantuml
baa04ff7d106e331a7939bae71a9951267ed6867
[]
no_license
casperlundberg/GUI-for-multi-party-auctioning
a8d0637e597de8c3050adf51a1019af7687f44a3
21876f2008c99e2af1987b2eeed34ae4686ba2b3
refs/heads/main
2023-03-15T02:50:04.912195
2021-03-20T14:27:55
2021-03-20T14:27:55
322,827,156
2
0
null
null
null
null
UTF-8
PlantUML
false
false
24,818
plantuml
@startuml project set namespaceSeparator :: class "new_project::Auctions::allAuctions.dart::PageMarker" { +int index {static} +List<PageMarker> values {static} +PageMarker ongoing {static} +PageMarker finished {static} +PageMarker offers } "new_project::Auctions::allAuctions.dart::PageMarker" o-- "new_project::Auctions::allAuctions.dart::PageMarker" class "new_project::Auctions::allAuctions.dart::AllAuctions" { +Function navigate +FilterHandler filterHandler +AuctionHandler auctionHandler +OfferHandler offerHandler +UserInfoHandler userHandler +_AllAuctionsState createState() } "new_project::Auctions::allAuctions.dart::AllAuctions" o-- "new_project::Handlers::filterHandler.dart::FilterHandler" "new_project::Auctions::allAuctions.dart::AllAuctions" o-- "new_project::Handlers::auctionHandler.dart::AuctionHandler" "new_project::Auctions::allAuctions.dart::AllAuctions" o-- "new_project::Handlers::offerHandler.dart::OfferHandler" "new_project::Auctions::allAuctions.dart::AllAuctions" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Auctions::allAuctions.dart::_AllAuctionsState" { +Function navigate +FilterHandler filterHandler +AuctionHandler auctionHandler +OfferHandler offerHandler +UserInfoHandler userHandler -PageMarker _currentPage +dynamic referenceTypeDropdownValue +dynamic referenceSectorDropdownValue +List<List> referenceTypes +void initState() +Widget build() -SliverList _getPageContainer() -SliverList _getAuctions() -SliverList _getOffers() -SliverList _generateBoxes() +List getReferenceSectors() +List getReferenceTypes() } "new_project::Auctions::allAuctions.dart::_AllAuctionsState" o-- "new_project::Handlers::filterHandler.dart::FilterHandler" "new_project::Auctions::allAuctions.dart::_AllAuctionsState" o-- "new_project::Handlers::auctionHandler.dart::AuctionHandler" "new_project::Auctions::allAuctions.dart::_AllAuctionsState" o-- "new_project::Handlers::offerHandler.dart::OfferHandler" "new_project::Auctions::allAuctions.dart::_AllAuctionsState" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" "new_project::Auctions::allAuctions.dart::_AllAuctionsState" o-- "new_project::Auctions::allAuctions.dart::PageMarker" class "new_project::Auctions::myauctions.dart::MyAuctions" { +Function navigate +AuctionHandler auctionHandler +OfferHandler offerHandler +FilterHandler filterHandler +UserInfoHandler userHandler +_MyAuctionsState createState() } "new_project::Auctions::myauctions.dart::MyAuctions" o-- "new_project::Handlers::auctionHandler.dart::AuctionHandler" "new_project::Auctions::myauctions.dart::MyAuctions" o-- "new_project::Handlers::offerHandler.dart::OfferHandler" "new_project::Auctions::myauctions.dart::MyAuctions" o-- "new_project::Handlers::filterHandler.dart::FilterHandler" "new_project::Auctions::myauctions.dart::MyAuctions" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Auctions::myauctions.dart::_MyAuctionsState" { +Function navigate +AuctionHandler auctionHandler +OfferHandler offerHandler +FilterHandler filterHandler +UserInfoHandler userHandler +List types +dynamic typeDropdownValue +TextEditingController title +TextEditingController maxParticipants +TextEditingController duration +List<List> referenceTypes +List<List> referenceParameters +List<List> rangeReferenceParameters +List<List> currentReferenceParameters +dynamic referenceSectorDropdownValue +dynamic referenceTypeDropdownValue +List referenceParameterDropdownValues +List<TextEditingController> rangeReferenceParameterControllers +List templateIDs +Template template +dynamic templateIDDropdownValue +List<TextEditingController> offerControllers +Widget build() +Map split() +SliverList buildAuctionList() +void showTemplateGUI() +List getReferenceSectors() +List getReferenceTypes() +List getReferenceParameters() } "new_project::Auctions::myauctions.dart::_MyAuctionsState" o-- "new_project::Handlers::auctionHandler.dart::AuctionHandler" "new_project::Auctions::myauctions.dart::_MyAuctionsState" o-- "new_project::Handlers::offerHandler.dart::OfferHandler" "new_project::Auctions::myauctions.dart::_MyAuctionsState" o-- "new_project::Handlers::filterHandler.dart::FilterHandler" "new_project::Auctions::myauctions.dart::_MyAuctionsState" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" "new_project::Auctions::myauctions.dart::_MyAuctionsState" o-- "new_project::Entities::templateListJSON.dart::Template" class "new_project::Entities::auctionDetailsListJSON.dart::AuctionDetailsList" { +List<AuctionDetails> auctionDetailsList +Map toJson() } class "new_project::Entities::auctionDetailsListJSON.dart::AuctionDetails" { +int id +List<Participant> participants +int templateId +List<Bid> bids +int winningBid +Map toJson() } class "new_project::Entities::auctionDetailsListJSON.dart::Bid" { +int id +DateTime time +int userId +List<KeyValuePair> keyValuePairs +Map toJson() } class "new_project::Entities::auctionDetailsListJSON.dart::KeyValuePair" { +String key +dynamic value +Map toJson() } class "new_project::Entities::auctionDetailsListJSON.dart::Participant" { +int userId +Map toJson() } class "new_project::Entities::filtersJSON.dart::Filters" { +List<ReferenceSector> referenceSectors +Map toJson() } class "new_project::Entities::filtersJSON.dart::ReferenceSector" { +String name +List<ReferenceType> referenceTypes +Map toJson() } class "new_project::Entities::filtersJSON.dart::ReferenceType" { +String name +List<ReferenceParameter> referenceParameters +List<RangeReferenceParameter> rangeReferenceParameters +Map toJson() } class "new_project::Entities::filtersJSON.dart::RangeReferenceParameter" { +String name +Map toJson() } class "new_project::Entities::filtersJSON.dart::ReferenceParameter" { +String name +List<FilterValue> values +Map toJson() } class "new_project::Entities::filtersJSON.dart::FilterValue" { +String filterValue +Map toJson() } class "new_project::Entities::materialAuctionListJSON.dart::MaterialAuctionList" { +List<MaterialAuction> materialAuctions +Map toJson() } class "new_project::Entities::materialAuctionListJSON.dart::MaterialAuction" { +int id +String title +int ownerId +int maxParticipants +int currentParticipants +DateTime startDate +DateTime stopDate +String referenceSector +String referenceType +MaterialReferenceParameters materialReferenceParameters +Map toJson() } "new_project::Entities::materialAuctionListJSON.dart::MaterialAuction" o-- "new_project::Entities::materialAuctionListJSON.dart::MaterialReferenceParameters" class "new_project::Entities::materialAuctionListJSON.dart::MaterialReferenceParameters" { +String fibersType +String resinType +int minFiberLength +int maxFiberLength +String recyclingTechnology +String sizing +String additives +int minVolume +int maxVolume +int localid +Map toJson() } class "new_project::Entities::materialOfferListJSON.dart::MaterialOfferList" { +List<MaterialOffer> materialOffers +Map toJson() } class "new_project::Entities::materialOfferListJSON.dart::MaterialOffer" { +int id +String title +int userId +int templateId +List<KeyValuePair> keyValuePairs +DateTime startDate +DateTime stopDate +String referenceSector +String referenceType +MaterialReferenceParameters materialReferenceParameters +Map toJson() } "new_project::Entities::materialOfferListJSON.dart::MaterialOffer" o-- "new_project::Entities::materialAuctionListJSON.dart::MaterialReferenceParameters" class "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2AuctionList" { +List<Referencetype2Auction> referencetype2Auctions +Map toJson() } class "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2Auction" { +int id +String title +int ownerId +int maxParticipants +int currentParticipants +DateTime startDate +DateTime stopDate +String referenceSector +String referenceType +Referencetype2ReferenceParameters referencetype2ReferenceParameters +Map toJson() } "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2Auction" o-- "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2ReferenceParameters" class "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2ReferenceParameters" { +String parameter1 +String parameter2 +int minVolume +int maxVolume +int localid +Map toJson() } class "new_project::Entities::referencetype2OfferListJSON.dart::Referencetype2OfferList" { +List<Referencetype2Offer> referencetype2Offers +Map toJson() } class "new_project::Entities::referencetype2OfferListJSON.dart::Referencetype2Offer" { +int id +String title +int userId +int templateId +List<KeyValuePair> keyValuePairs +DateTime startDate +DateTime stopDate +String referenceSector +String referenceType +Referencetype2ReferenceParameters referencetype2ReferenceParameters +Map toJson() } "new_project::Entities::referencetype2OfferListJSON.dart::Referencetype2Offer" o-- "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2ReferenceParameters" class "new_project::Entities::templateListJSON.dart::TemplateList" { +List<Template> templates +Map toJson() } class "new_project::Entities::templateListJSON.dart::Template" { +int id +List<TemplateString> templateStrings +List<TemplateVariable> templateVariables +Map toJson() } class "new_project::Entities::templateListJSON.dart::TemplateString" { +String text +Map toJson() } class "new_project::Entities::templateListJSON.dart::TemplateVariable" { +String key +String valueType +Map toJson() } class "new_project::Entities::userListJSON.dart::UserList" { +List<User> users +Map toJson() } class "new_project::Entities::userListJSON.dart::User" { +int userId +String userName +String email +Password password +int age +Address address +String homePhoneNumber +String mobilePhoneNumber +String officePhoneNumber +String currentType +String company +List<ParticipatingAuction> participatingAuctions +List<Offer> offers +List<Inbox> requestInbox +List<Inbox> inviteInbox +Map toJson() } "new_project::Entities::userListJSON.dart::User" o-- "new_project::Entities::userListJSON.dart::Password" "new_project::Entities::userListJSON.dart::User" o-- "new_project::Entities::userListJSON.dart::Address" class "new_project::Entities::userListJSON.dart::Address" { +String streetAddress +String city +String state +String postalCode +Map toJson() } class "new_project::Entities::userListJSON.dart::Inbox" { +DateTime time +String status +int auctionId +int userId +int offerId +Map toJson() } class "new_project::Entities::userListJSON.dart::Offer" { +int offerId +Map toJson() } class "new_project::Entities::userListJSON.dart::ParticipatingAuction" { +int auctionId +Map toJson() } class "new_project::Entities::userListJSON.dart::Password" { +String type +String encryption +Map toJson() } class "new_project::Filters::filtersGUI.dart::FiltersGUI" { +FilterHandler filterHandler +_FiltersState createState() } "new_project::Filters::filtersGUI.dart::FiltersGUI" o-- "new_project::Handlers::filterHandler.dart::FilterHandler" class "new_project::Filters::filtersGUI.dart::_FiltersState" { +FilterHandler filterHandler +List<TextEditingController> controllers +List<List> referenceTypes +List<List> referenceParameters +List<List> rangeReferenceParameters +List<List> currentReferenceParameters +dynamic referenceSectorDropdownValue +dynamic referenceTypeDropdownValue +List referenceParameterDropdownValues +List<TextEditingController> rangeReferenceParameterControllers +Widget build() +Widget ReturnContent() +void showFilterTemplateGUI() +List getReferenceSectors() +List getReferenceTypes() +List getReferenceParameters() } "new_project::Filters::filtersGUI.dart::_FiltersState" o-- "new_project::Handlers::filterHandler.dart::FilterHandler" class "new_project::Handlers::auctionHandler.dart::Auctions" { +MaterialAuctionList materialAuctions +Referencetype2AuctionList referencetype2Auctions } "new_project::Handlers::auctionHandler.dart::Auctions" o-- "new_project::Entities::materialAuctionListJSON.dart::MaterialAuctionList" "new_project::Handlers::auctionHandler.dart::Auctions" o-- "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2AuctionList" class "new_project::Handlers::auctionHandler.dart::AuctionHandler" { +Function setMainState +AuctionDetailsList consumerAuctionDetails +AuctionDetailsList supplierAuctionDetails +Auctions allAuctions +TemplateList consumerContractTemplates +TemplateList supplierContractTemplates +Auctions myAuctions +AuctionDetails currentAuctionDetails +UserInfoHandler userHandler +int nextAuctionID +int nextBidID +int nextTemplateID +List<Inbox> inbox +List inboxAuctionTitles +int templateItemCount +List<TextEditingController> controllers +List valueTypes +List dropdownValues +List userTypes +dynamic dropdownValue +void createMaterialAuction() +void createReferencetype2Auction() +void endAuction() +void leaveAuction() +void selectAuctionWinner() +void viewBid() +void setCurrentAuction() +List getAuctionTitles() +void makeBid() +Template getContractTemplate() +Container getListTile() +void showNotifications() +void createContractTemplate() +void showContractTemplateGUI() } "new_project::Handlers::auctionHandler.dart::AuctionHandler" o-- "new_project::Entities::auctionDetailsListJSON.dart::AuctionDetailsList" "new_project::Handlers::auctionHandler.dart::AuctionHandler" o-- "new_project::Handlers::auctionHandler.dart::Auctions" "new_project::Handlers::auctionHandler.dart::AuctionHandler" o-- "new_project::Entities::templateListJSON.dart::TemplateList" "new_project::Handlers::auctionHandler.dart::AuctionHandler" o-- "new_project::Entities::auctionDetailsListJSON.dart::AuctionDetails" "new_project::Handlers::auctionHandler.dart::AuctionHandler" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Handlers::filterHandler.dart::FilterHandler" { +Function setMainState +Filters filters +MaterialReferenceParameters materialFilter +Referencetype2ReferenceParameters referencetype2Filter +int localFilteridCounter +void updateFilter() +void deleteFilter() +bool checkFilter() +void retrieveFilters() } "new_project::Handlers::filterHandler.dart::FilterHandler" o-- "new_project::Entities::filtersJSON.dart::Filters" "new_project::Handlers::filterHandler.dart::FilterHandler" o-- "new_project::Entities::materialAuctionListJSON.dart::MaterialReferenceParameters" "new_project::Handlers::filterHandler.dart::FilterHandler" o-- "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2ReferenceParameters" class "new_project::Handlers::offerHandler.dart::Offers" { +MaterialOfferList materialOffers +Referencetype2OfferList referencetype2Offers } "new_project::Handlers::offerHandler.dart::Offers" o-- "new_project::Entities::materialOfferListJSON.dart::MaterialOfferList" "new_project::Handlers::offerHandler.dart::Offers" o-- "new_project::Entities::referencetype2OfferListJSON.dart::Referencetype2OfferList" class "new_project::Handlers::offerHandler.dart::OfferHandler" { +Function setMainState +Offers allOffers +Offers myOffers +TemplateList consumerOfferTemplates +TemplateList supplierOfferTemplates +UserInfoHandler userHandler +int nextOfferID +void createMaterialOffer() +void createReferencetype2Offer() +void endOffer() +void viewOffer() } "new_project::Handlers::offerHandler.dart::OfferHandler" o-- "new_project::Handlers::offerHandler.dart::Offers" "new_project::Handlers::offerHandler.dart::OfferHandler" o-- "new_project::Entities::templateListJSON.dart::TemplateList" "new_project::Handlers::offerHandler.dart::OfferHandler" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" { +Function updateUser +UserList userListObject +User user +bool isEmail() +bool userCheck() +String passHasher() +bool passwordChecker() +bool phoneCheck() +bool profileEditCheck() +bool passwordValidator() +User loginValidator() +void login() +void register() +void updateProfile() +void requestToJoin() +void inviteToAuction() } "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" o-- "new_project::Entities::userListJSON.dart::UserList" "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" o-- "new_project::Entities::userListJSON.dart::User" class "new_project::main.dart::MyApp" { +Widget build() } class "new_project::mainGUI.dart::WidgetMarker" { +int index {static} +List<WidgetMarker> values {static} +WidgetMarker auctions {static} +WidgetMarker login {static} +WidgetMarker register {static} +WidgetMarker profile {static} +WidgetMarker forgotPass {static} +WidgetMarker room } "new_project::mainGUI.dart::WidgetMarker" o-- "new_project::mainGUI.dart::WidgetMarker" class "new_project::mainGUI.dart::MainGUI" { +State createState() } class "new_project::mainGUI.dart::MainGUIState" { +WidgetMarker selectedWidgetMarker +AnimationController controller +Animation animation +UserInfoHandler userHandler +FilterHandler filterHandler +AuctionHandler auctionHandler +OfferHandler offerHandler +int nextAuctionID +int nextBidID +int nextTemplateID +int nextOfferID +void initState() +void dispose() +Widget build() +dynamic playAnimation() +void setMainState() +void updateUser() +void navigate() +Widget getCustomContainer() +Widget getAuctionsGUIContainer() +Widget getLoginContainer() +Widget getRegisterContainer() +Widget getForgotPassContainer() +Widget getProfileContainer() +Widget getRoomContainer() } "new_project::mainGUI.dart::MainGUIState" o-- "new_project::mainGUI.dart::WidgetMarker" "new_project::mainGUI.dart::MainGUIState" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" "new_project::mainGUI.dart::MainGUIState" o-- "new_project::Handlers::filterHandler.dart::FilterHandler" "new_project::mainGUI.dart::MainGUIState" o-- "new_project::Handlers::auctionHandler.dart::AuctionHandler" "new_project::mainGUI.dart::MainGUIState" o-- "new_project::Handlers::offerHandler.dart::OfferHandler" class "new_project::Navigation::navbar.dart::NavigationBar" { +Function navigate +Function showContractTemplateGUI +Function showNotifications +UserInfoHandler userHandler +int counter +Size preferredSize +NavigationState createState() } "new_project::Navigation::navbar.dart::NavigationBar" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Navigation::navbar.dart::NavigationState" { +Function navigate +Function showContractTemplateGUI +Function showNotifications +UserInfoHandler userHandler +int counter +Widget build() +Widget getNotificationsWidgetCounter() } "new_project::Navigation::navbar.dart::NavigationState" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Navigation::nav_item.dart::NavigationItem" { +dynamic title +Widget build() } class "new_project::Pages::auctionsGUI.dart::AuctionsGUI" { +Function navigate +FilterHandler filterHandler +AuctionHandler auctionHandler +OfferHandler offerHandler +UserInfoHandler userHandler +Widget build() } "new_project::Pages::auctionsGUI.dart::AuctionsGUI" o-- "new_project::Handlers::filterHandler.dart::FilterHandler" "new_project::Pages::auctionsGUI.dart::AuctionsGUI" o-- "new_project::Handlers::auctionHandler.dart::AuctionHandler" "new_project::Pages::auctionsGUI.dart::AuctionsGUI" o-- "new_project::Handlers::offerHandler.dart::OfferHandler" "new_project::Pages::auctionsGUI.dart::AuctionsGUI" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Pages::forgotPass.dart::ForgotPasswordScreen" { +Function navigate +ForgotPasswordState createState() } class "new_project::Pages::forgotPass.dart::ForgotPasswordState" { +Function navigate +Widget build() +dynamic launchMailto() } class "new_project::Pages::login.dart::LoginScreen" { +Function navigate +UserInfoHandler userHandler +Login createState() } "new_project::Pages::login.dart::LoginScreen" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Pages::login.dart::Login" { +Function navigate +UserInfoHandler userHandler -TextEditingController _controllerUserName -TextEditingController _controllerPW +dynamic loginUserName +dynamic loginPW +Widget build() } "new_project::Pages::login.dart::Login" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Pages::profile.dart::ProfileGUI" { +Function navigate +UserInfoHandler userHandler +Profile createState() } "new_project::Pages::profile.dart::ProfileGUI" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Pages::profile.dart::Profile" { +Function navigate +UserInfoHandler userHandler -GlobalKey<FormState> _formKey -TextEditingController _controllerUserName -TextEditingController _controllerEmail -TextEditingController _controllerAge -TextEditingController _controllerAddress -TextEditingController _controllerCity -TextEditingController _controllerState -TextEditingController _controllerPostalCode -TextEditingController _controllerHomePhoneNumber -TextEditingController _controllerMobilePhoneNumber -TextEditingController _controllerOfficePhoneNumber -TextEditingController _controllerCompany -TextEditingController _controllerOPW -TextEditingController _controllerPW -TextEditingController _controllerRPW +dynamic newUserName +dynamic newEmail +int newAge +dynamic newAddress +dynamic newCity +dynamic newState +dynamic newPostalCode +dynamic newHomePhoneNumber +dynamic newMobilePhoneNumber +dynamic newOfficePhoneNumber +dynamic newCurrentType +dynamic newCompany +dynamic opw +dynamic pw +dynamic rpw +Widget build() } "new_project::Pages::profile.dart::Profile" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Pages::register.dart::RegisterScreen" { +Function navigate +UserInfoHandler userHandler +Register createState() } "new_project::Pages::register.dart::RegisterScreen" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Pages::register.dart::Register" { +Function navigate +UserInfoHandler userHandler -TextEditingController _controllerUserName -TextEditingController _controllerEmail -TextEditingController _controllerPW -TextEditingController _controllerRPW +dynamic newUserName +dynamic newEmail +dynamic pw +dynamic rpw +Widget build() } "new_project::Pages::register.dart::Register" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Pages::room.dart::Room" { +Function navigate +AuctionHandler auctionHandler -UserInfoHandler _userHandler +_RoomState createState() } "new_project::Pages::room.dart::Room" o-- "new_project::Handlers::auctionHandler.dart::AuctionHandler" "new_project::Pages::room.dart::Room" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" class "new_project::Pages::room.dart::_RoomState" { +Function navigate +AuctionHandler auctionHandler +UserInfoHandler userHandler +CountdownTimerController controller +List<Inbox> out +Template contractTemplate +List<TextEditingController> controllers +MaterialAuction materialAuction +Referencetype2Auction referencetype2Auction +bool isFinished +bool isHost +TextStyle smallText +TextStyle bigText +TextStyle boldText +Widget build() +bool checkForNotifications() +void showContractGUI() } "new_project::Pages::room.dart::_RoomState" o-- "new_project::Handlers::auctionHandler.dart::AuctionHandler" "new_project::Pages::room.dart::_RoomState" o-- "new_project::Handlers::userInfoHandler.dart::UserInfoHandler" "new_project::Pages::room.dart::_RoomState" o-- "new_project::Entities::templateListJSON.dart::Template" "new_project::Pages::room.dart::_RoomState" o-- "new_project::Entities::materialAuctionListJSON.dart::MaterialAuction" "new_project::Pages::room.dart::_RoomState" o-- "new_project::Entities::referencetype2AuctionListJSON.dart::Referencetype2Auction" @enduml
e916958823ea6a62514517e1678cd4f99c3f65d3
4d8bf417ae8c3dd8bcacc812422d1831c2e77aab
/src/main/java/com/tjudream/designpattern/memento/image/innermemento.puml
9672fd4259b0a1e8916def0f85971ac9727ceb8b
[ "Apache-2.0" ]
permissive
tjudream/DesignPatterns
3aaa8e2a64382d7cb9f49a3b3e736f978e90bdbe
426773ae74804e661a425b00c0a8e4d05524f2b5
refs/heads/master
2020-04-05T19:39:32.984340
2018-12-02T11:46:54
2018-12-02T11:46:54
157,144,618
1
0
null
null
null
null
UTF-8
PlantUML
false
false
500
puml
@startuml skinparam classAttributeIconSize 0 class Originator <<发起人角色>> { -state:String +getter()/setter() +createMemento():IMemento +restoreMemento(memento:Memento):void } interface IMemento class Memento <<备忘录角色>> { -state:String +getter()/setter() } class Caretaker <<备忘录管理员角色>> { -memento:IMemento +getter()/setter() } Originator .> IMemento IMemento <|-- Memento IMemento <-o Caretaker Originator <-- Memento:内部类 @enduml
f53a78948ba20d253b5d4938fe4e6389fcf271b5
694fd70b693c9670161b2492ece407123bf11cad
/plantuml/designpattern/concept-uml-5.plantuml
75ddf1c22559a57bed1638650988b6c3efaa8405
[ "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
235
plantuml
@startuml skinparam classAttributeIconSize 0 class People { } class Device { } class Factory { } class Subject { } class Observer { } Device <-- People : Uses < Device <-- Factory : Creates < Observer <-- Subject : Notifies < @enduml
9c148fc64bcf64f051a16c244c579716c1db1a17
644b7bb773b84596a2de4d31a0603284d9562e56
/react/pageTemplates/pageContainer.iuml
6bb6993ff49a5450d3b7c6edcea01225cc7e92e0
[]
no_license
M9k/Marvin-Uml
e62d17245cf493d53f0b80f633a47be8ec44569e
0fe9bc36f947535ae4397181ccf8c85291244a87
refs/heads/master
2021-04-15T17:44:22.461549
2018-05-10T07:52:19
2018-05-10T07:52:19
126,618,685
0
0
null
null
null
null
UTF-8
PlantUML
false
false
378
iuml
class PageContainer { --props-- children: nodes route: object location: object --render-- render the navbar and the footer } PageContainer ..> Panel PageContainer ..> Footer PageContainer ..> Navbar PageContainer ..> ErrorTaker PageContainer ..> AlertDismissable PageContainer ..> LoadingSpinner Page ..> PageContainer