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
03cd7c171df7bfd3b8fe76233590406e9c1de3f8
622c008212ad81846b9e5fbf6ac5ea98d4a442c9
/src/proxy/dynamic/dynamic.puml
a694c982a437c066b73b78f3cd9c4e427cebd6d9
[]
no_license
YangLiuQing-star/design-pattern
a6561cf5113128be355ec118807c2c0c6206bad7
2823c77e317a1de922142590166f784966f0b152
refs/heads/master
2022-12-27T21:23:56.249453
2020-10-13T13:49:25
2020-10-13T13:49:25
303,718,595
0
0
null
null
null
null
UTF-8
PlantUML
false
false
258
puml
@startuml title:动态代理 class TeacherDao{ teach():void } class Client interface ITeacherDao{ teach():void } TeacherDao ..|> ITeacherDao class ProxyFactory{ ProxyFactory() getProxyInstance():Object } Client ..> ProxyFactory @enduml
2ab4fa55f349fea858861712174f6441593c2505
2bc551f9c2ecb57ec0cb93ad18d3ce0bafbddb34
/设计模式/设计模式尚硅谷/designpatternlearning/src/main/java/tk/designpattern/combination/university.puml
0f784919bbd31dc685b0eeb7e4283c6423c3c77f
[]
no_license
YiboXu/JavaLearning
c42091d6ca115826c00aad2565d9d0f29b1f5f68
97b4769ebbe096e0ab07acb6889fb177e2ca5abe
refs/heads/master
2022-10-27T23:47:54.637565
2020-06-16T09:12:09
2020-06-16T09:12:09
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,590
puml
@startuml abstract class OriginationComponent { private String name; private String description; + OriginationComponent(String name, String description) + void add (OriginationComponent originationComponent) + void remove (OriginationComponent originationComponent) + String getName() + void setName(String name) + String getDescription() + void setDescription(String description) + String toString() + abstract void print(); } class University extends OriginationComponent { + University(String name, String description) + void add (OriginationComponent originationComponent) + void remove (OriginationComponent originationComponent) + String getName() + void setName(String name) + String getDescription() + void setDescription(String description) + String toString() + void print(); } class College extends OriginationComponent { + College(String name, String description) + void add (OriginationComponent originationComponent) + void remove (OriginationComponent originationComponent) + String getName() + void setName(String name) + String getDescription() + void setDescription(String description) + String toString() + void print(); } class Department extends OriginationComponent { + Department(String name, String description) + String getName() + void setName(String name) + String getDescription() + void setDescription(String description) + String toString() + void print(); } University o- College College o- Department @enduml
e8a95b8a18679c33fab6627444fe0d5492bd9ca7
b664c1e3185b465d64e4942b6ad4370449b3c639
/src/resources/service/service.plantuml
a7f990f104c643054cffa10c2e09adde5051bda1
[ "Apache-2.0" ]
permissive
Disseny-Software-2020-2021/practica3-b2
8a350950c5bf33bd28e5d0d040a789f161b687c4
fe14c344337e0eb7c06e04c5a8798fbc9931575f
refs/heads/main
2023-02-15T04:55:41.978205
2021-01-11T03:10:02
2021-01-11T03:10:02
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,396
plantuml
@startuml title __SERVICE's Class Diagram__\n namespace Resources.service { interface resources.service.AbstractFactoryData { {abstract} + createDAOClient() {abstract} + createDAOEpisodi() {abstract} + createDAOFollowers() {abstract} + createDAOFollowing() {abstract} + createDAOMyList() {abstract} + createDAOPost() {abstract} + createDAOSerie() {abstract} + createDAOTemporada() {abstract} + createDAOUsuari() {abstract} + createDAOValoracioEstrella() {abstract} + createDAOValoracioThumb() {abstract} + createDAOWatching() } } namespace Resources.service { class resources.service.DataService { + DataService() + addClient() + addUsuari() + finishWatching() + getAllClients() + getAllEpisodis() + getAllPosts() + getAllSeries() + getAllTemporades() + getAllUsuaris() + getAllValoracionsEstrella() + getAllValoracionsThumb() + getClientByUsuariAndPassword() + getEpisodisbyTemporada() + getFollowersForUsuari() + getFollowingForUsuari() + getMyListForUsuari() + getTemporadesBySerie() + getUsuarisByClient() + getValoracioEstrella() + getValoracioThumb() + getWatchingForUsuari() + isTakenUsernameU() + isTakenUsernameUsername() + markInMyList() + pauseWatching() + setValoracioEstrella() + setValoracioThumb() + startWatching() + unmarkInMyList() } } namespace esources.service { class resources.service.FactoryMOCK { + createDAOClient() + createDAOEpisodi() + createDAOFollowers() + createDAOFollowing() + createDAOMyList() + createDAOPost() + createDAOSerie() + createDAOTemporada() + createDAOUsuari() + createDAOValoracioEstrella() + createDAOValoracioThumb() + createDAOWatching() } } resources.service.DataService o-- resources.dao.DAOEpisodi : EpisodiDAO resources.service.DataService o-- resources.dao.DAOTemporada : TemporadaDAO resources.service.DataService o-- resources.dao.DAOValoracioEstrella : ValoracioEstrellaDAO resources.service.DataService o-- resources.dao.DAOValoracioThumb : ValoracioThumbDAO resources.service.DataService o-- resources.dao.DAOClient : clientDAO resources.service.DataService o-- resources.dao.DAOFollowers : followersDAO resources.service.DataService o-- resources.dao.DAOFollowing : followingDAO resources.service.DataService o-- resources.dao.DAOMyList : mylistDAO resources.service.DataService o-- resources.dao.DAOPost : postDAO resources.service.DataService o-- resources.dao.DAOSerie : serieDAO resources.service.DataService o-- resources.dao.DAOUsuari : usuariDAO resources.service.DataService o-- resources.dao.DAOWatching : watchingDAO resources.service.FactoryMOCK .up.|> 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
1aaeb9422c949effde9fb102be0dc714bb534b7f
4bc7ef84a4b27304d29150dfc9b3dc07fc1da8a6
/lib/flutter/source/listener.puml
4243d22edb7981868a2eb298f73a78c29bf00407
[]
no_license
yihu5566/flutterdemo
a21ddc4459a9f675b47b5e60b7e1877ef5be66b1
d3491dbbda0b98ce8d987ad54a82018dcf475db0
refs/heads/master
2022-04-02T08:55:57.634748
2020-01-20T02:58:21
2020-01-20T02:58:21
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,407
puml
@startuml abstract class Listenable{ void addListener(VoidCallback listener) void removeListener(VoidCallback listener) } 'note right of Listenable{ ' 维护侦听器列表的对象。 ' 侦听器通常用于通知客户端对象已更新。 '} abstract class ValueListenable<T> { T get value } 'note right of ValueListenable{ ' [Listenable]子类的接口,显示[value] '} class ChangeNotifier{ ObserverList<VoidCallback> _listeners bool get hasListeners void dispose() void notifyListeners() } 'note right of ChangeNotifier{ ' 可以扩展或混合的类,使用[VoidCallback]为通知提供更改通知API. ' [ChangeNotifier]针对少数(一个或两个)侦听器进行了优化。添加和删​​除侦听器是O(N),调度通知是O(N²)(其中N是侦听器的数量)。 ' (查看代码:调度notifyListeners中的contain方法,是ObserverList做的优化) '} class ValueNotifier<T>{ T get value set value(T newValue) } 'note right of ValueNotifier{ ' 包含单个值的[ChangeNotifier] ' 当[value]被等于运算符==评估的不等于旧值的内容替换时,此类通知其侦听器。 ' (set value时,如果value发生改变,自动调用notifyListeners()来通知监听者) '} Listenable <|-- ValueListenable Listenable <|.. ChangeNotifier ChangeNotifier <|-- ValueNotifier ValueListenable <|.. ValueNotifier @enduml
0c3536d159183902668bda71f6dc47725a789e48
9c9c1ec01217aed50767bdd539e976c06421a96f
/out/production/GameEngine/Model/Vader/Vader.plantuml
3319153c33ce5aae816250d86fc9cb507f36f70b
[]
no_license
drewmolleur/thebattleofyavin
93f55dbe627b107dc1c1e253deac470fd5c3f04c
37e84725d20db9af657977d6bcbbee54b51bee66
refs/heads/master
2023-07-23T05:00:53.998302
2021-09-06T04:05:58
2021-09-06T04:05:58
403,222,885
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,913
plantuml
@startuml title __VADER's Class Diagram__\n namespace Model { namespace Vader { class Model.Vader.Vader { {static} + STATE_DONE : int {static} + STATE_FALLING : int {static} + STATE_FLYING : int {static} + UNIT_MOVE : int {static} + UNIT_MOVE_FALLING : int ~ color : Color ~ height : int ~ listeners : ArrayList<Observer> ~ movingRight : boolean ~ size : int ~ state : int ~ width : int - HEIGHT : int - WIDTH : int - image : Image + Vader() + attachListener() + detachListener() + getCollisionRadius() + notifyEvent() + render() + update() - updateState() } } } namespace Model { namespace Vader { class Model.Vader.VaderAnimFalling { + VaderAnimFalling() + animate() } } } namespace Model { namespace Vader { class Model.Vader.VaderAnimFlying { + VaderAnimFlying() + animate() } } } namespace Model { namespace Vader { interface Model.Vader.VaderAnimStrategy { {abstract} + animate() } } } Model.Vader.Vader .up.|> Controller.Observer.Subject Model.Vader.Vader -up-|> Model.GameFigure Model.Vader.Vader o-- Model.Vader.VaderAnimStrategy : animStrategy Model.Vader.VaderAnimFalling .up.|> Model.Vader.VaderAnimStrategy Model.Vader.VaderAnimFalling o-- Model.Vader.Vader : context Model.Vader.VaderAnimFlying .up.|> Model.Vader.VaderAnimStrategy Model.Vader.VaderAnimFlying o-- Model.Vader.Vader : context 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
b9602527463e18649536a5fd74343ce84fba6326
95359165ef052380534d37af31d62ff7fbc442b4
/out/plantuml/StockAnalyser.plantuml
3066fc9e35a1d7902cb8d3facc6e8683915b2ad7
[]
no_license
spashii/stock-exchange-model
f7a5d5dd823e43f8c4c1bf56ec241b75c48c606d
c2665ab87e29dd3991bd62ff9cb4cbcf6c6b81b2
refs/heads/master
2023-01-09T05:48:37.657882
2020-11-10T08:51:17
2020-11-10T08:51:17
310,286,052
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,585
plantuml
@startuml title __STOCKANALYSER's Class Diagram__\n namespace com.StockExchangeModel { namespace StockExchange { namespace StockAnalyser { class com.StockExchangeModel.StockExchange.StockAnalyser.AnalysableStock { ~ date : Date ~ lastPrice : double ~ previousClosePrice : double + AnalysableStock() {static} + compare() + compareTo() + getDate() + getLastPrice() + getPreviousClosePrice() + setDate() + setLastPrice() + setPreviousClosePrice() + toString() } class com.StockExchangeModel.StockExchange.StockAnalyser.StockAnalyser { ~ analysableStocks : ArrayList<AnalysableStock> + StockAnalyser() + addAnalysableStock() + addAnalysableStocksFromCSV() + analyse() + getAnalysableStocks() {static} + printAnalysedResults() } } } } com.StockExchangeModel.StockExchange.StockAnalyser.AnalysableStock .up.|> java.lang.Comparable com.StockExchangeModel.StockExchange.StockAnalyser.AnalysableStock -up-|> com.StockExchangeModel.StockExchange.Company.Stock com.StockExchangeModel.StockExchange.StockAnalyser.StockAnalyser -up-|> com.StockExchangeModel.StockExchange.Interpreter.Parser 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
752e6e1f84e01982675a6c8243410fbb71a38d0e
9e9d4cc38877676f576efec579d0f0781ade1302
/app/docs/puml/models.puml
5e60a8e4d6f712e1068e41f1633072aa9b51bb03
[ "Apache-2.0" ]
permissive
cedrvanh/Talent
cc3d8e4f50cc6bd2ab2b4b11fc14419a519de3d0
d6b887e1f9a278be5b9d52ceede0b331c7cedac5
refs/heads/master
2022-12-26T09:50:32.835793
2019-10-01T21:51:07
2019-10-01T21:51:07
143,478,241
1
0
Apache-2.0
2022-12-09T11:49:54
2018-08-03T22:23:35
JavaScript
UTF-8
PlantUML
false
false
223
puml
@startuml skinparam monochrome true class Person { +firstName: String +surName: String +toString(): String } class Student { +StudentNr: String +emailSchool: String +toString(): String } Person <|-- Student @enduml
d15f9cc80d80d9abeec8ba75941044316a5cf39c
1a28050cbf7a3f84a72bfae17502cfc1811aaaf1
/bro/logging.puml
44b55a5865e0814edd0a8f8d0526e01e69253d73
[]
no_license
jasonlue/digest
e3c5d9437124df78148e2b21f674f502847c9146
643ca0b6c1eab63c5f187c6fb04e4db60a885b4f
refs/heads/master
2020-05-19T05:28:07.297753
2019-10-07T10:06:08
2019-10-07T10:06:08
184,849,528
0
0
null
null
null
null
UTF-8
PlantUML
false
false
889
puml
@startuml logging class Manager{ Write(stream_id, columns) CreateStream(id,stream_info) AddFilter(stream_id) CreateWriter(id) InstallRotationTimer(WriterInfo* winfo) Rotate(WriterInfo* winfo) FinishedRotation(writer) } class Stream{ name } class Filter{ name pred path path_func interval writer postprocessoor } class WriterInfo{ interval postprocessor } class WriterFrontend{ Write() Rotate() } class RotateMessage{ frontend rotated_path open close terminating } class RotationFinishedMessage{ new_name old_name open close success terminating } class WriterBackend{ DoWrite() DoRotate() FinishedRotation() } WriterInfo -- "writer" WriterFrontend Stream *--{ "filters" Filter Stream *--{ "writers" WriterInfo Filter -- WriterFrontend @enduml
7c9297a7a13448b445eca61fba2f1fd81766507c
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/QuoteRequestQuoteRenegotiationAction.puml
c9a58c2d2c690cfcfe9237fe3860820b928aa1a4
[]
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
466
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 QuoteRequestQuoteRenegotiationAction [[QuoteRequestQuoteRenegotiationAction.svg]] extends QuoteUpdateAction { action: String buyerComment: String } interface QuoteUpdateAction [[QuoteUpdateAction.svg]] { action: String } @enduml
5a7f3944632d3879a236ec008d88b155475b1dac
a219d5973030afe3036bbadc5c13db9b388f5567
/test3/图书管理系统类图.puml
53ba05b35d5aa2bba7fe493917264923d573e22c
[]
no_license
jkcqi/is_analysis
276dc44dff8130ff94318fe4f315ca0862b7364e
b5ef71ce51b9b1bc17812319c3a7d316e71284b4
refs/heads/master
2022-07-17T08:59:55.767420
2020-05-26T14:53:38
2020-05-26T14:53:38
244,277,571
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,456
puml
@startuml 管理员 -- 系统配置:配置 管理员 -- 管理员权限:分配 资源记录 <|-- 资源类型 馆藏目录 "1" -- "1.. n" 馆藏书籍资源 馆藏书籍资源 "1" *-- "n" 资源记录:拥有 馆藏书籍资源 "1" *-- "1.. n" 图书品种 馆藏书籍资源 "1" *-- "1.. n" 图书类型 预定信息 "n" -- "1" 读者信息:拥有 资源记录 "1" -- "0.. 1" 预定信息:属于 预定信息 "n" -- "1" 馆藏书籍资源:被预定 资源记录 "1" -- "0.. 1" 借阅记录:属于 资源记录 "1" -- "0.. 1" 逾期记录:属于 借阅记录 "n" -- "1" 读者信息:填写 管理员 "1" -- "n" 借阅记录:登记 逾期记录 "0.. 1" -- "1" 借阅记录 逾期记录 "1" -- "1.. n" 罚款细则:使用 class 管理员{ 职工号 姓名 } class 管理员权限{ 权限 } class 系统配置{ 读者可同时借阅书籍限额 借书规定时间 书籍可续借次数 } class 资源记录{ 流水号 时间 } class 资源类型{ 名称 } class 馆藏目录{ } class 馆藏书籍资源{ 书籍名称 馆藏库存数量 可借数量 总借阅量 } class 图书类型{ 名称 } class 图书品种{ ISBN编码 作者 价格 简介 出版社 出版日期 版本 } class 预定信息{ 预定日期 预定书籍 } class 读者信息{ 姓名 身份证号 借书卡号 已借图书数量 逾期次数 } class 借阅记录{ 借书日期 归还日期 } class 逾期记录{ 预期天数 } class 罚款细则{ 规则规定 罚款倍数 } @enduml
c372e277cfedeca3817fbeb2341532f7600f632b
f563631a7a9f473bb8a6a53ed87ab80cd9cd9d86
/Assets/Scripts/plantuml/Bombs/BombController.puml
e36eba0490089e00b8541a791cd8c80de3f11596
[]
no_license
202004g07/UnityShooting
74cc68f7abf2cc49bc6455b8c19587e245227b50
1249e19e0f660cd8f51930a9466962ac2754ff19
refs/heads/main
2023-01-01T21:18:11.351731
2020-10-26T09:24:12
2020-10-26T09:24:12
302,015,985
0
1
null
null
null
null
UTF-8
PlantUML
false
false
171
puml
@startuml class BombController { - Speed : float = 10 Update() : void + Move() : void } MonoBehaviour <|-- BombController IMovable <|-- BombController @enduml
8bc6c0717e81ff30d6ca31fc8d0b5fe295838680
8f83adb253993728ad2b965efda9e2d0d9167ffd
/src/main/doc/resources/org/thegalactic/lattice/ArrowRelation.iuml
3e8cfcf9646dc144786b909e553ac249a23e0008
[ "CECILL-B" ]
permissive
jcarbonnel/java-lattices
3906f29a84526dfeb3af5d24f4429d22d56f82b1
6df82e197748a455b1d886247a11ec1a56055def
refs/heads/master
2021-08-26T05:01:08.308878
2017-11-17T11:00:45
2017-11-17T11:00:45
109,843,590
0
0
null
2017-11-07T14:06:18
2017-11-07T14:06:18
null
UTF-8
PlantUML
false
false
441
iuml
package org.thegalactic.lattice { class ArrowRelation { .. Constructors .. +ArrowRelation(Lattice lattice) .. Transformers .. +void writeLaTex(String filename) .. Operations .. +Context getDoubleArrowTable() +Context getDoubleUpArrowTable() +Context getDoubleDownArrowTable() +Context getDoubleCircArrowTable() } DGraph <|-- ArrowRelation }
7d62d22675355d86d6e297f0f3c8d2aad37e74a5
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StateRoleEnum.puml
cf5f6a771e26b08efa034acb435b143430dcba33
[]
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,735
puml
@startuml hide methods enum StateRoleEnum { REVIEW_INCLUDED_IN_STATISTICS RETURN } interface State [[State.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] key: String type: [[StateTypeEnum.svg StateTypeEnum]] name: [[LocalizedString.svg LocalizedString]] description: [[LocalizedString.svg LocalizedString]] initial: Boolean builtIn: Boolean roles: [[StateRoleEnum.svg List<StateRoleEnum>]] transitions: [[StateReference.svg List<StateReference>]] } interface StateDraft [[StateDraft.svg]] { key: String type: [[StateTypeEnum.svg StateTypeEnum]] name: [[LocalizedString.svg LocalizedString]] description: [[LocalizedString.svg LocalizedString]] initial: Boolean roles: [[StateRoleEnum.svg List<StateRoleEnum>]] transitions: [[StateResourceIdentifier.svg List<StateResourceIdentifier>]] } interface StateAddRolesAction [[StateAddRolesAction.svg]] { action: String roles: [[StateRoleEnum.svg List<StateRoleEnum>]] } interface StateRemoveRolesAction [[StateRemoveRolesAction.svg]] { action: String roles: [[StateRoleEnum.svg List<StateRoleEnum>]] } interface StateSetRolesAction [[StateSetRolesAction.svg]] { action: String roles: [[StateRoleEnum.svg List<StateRoleEnum>]] } StateRoleEnum --> State #green;text:green : "roles" StateRoleEnum --> StateDraft #green;text:green : "roles" StateRoleEnum --> StateAddRolesAction #green;text:green : "roles" StateRoleEnum --> StateRemoveRolesAction #green;text:green : "roles" StateRoleEnum --> StateSetRolesAction #green;text:green : "roles" @enduml
fa5df43dc9e949181acd33143880fda56d40fc97
23c97d76d610506e2e089a2c6f777fc2cd770375
/src/main/java/ex41/ex41plantuml.puml
80aa61941a19009f6a9b3f10d878c282154d85c0
[]
no_license
Alejo0829/Alvarez-Romero-cop33300-assignment3
4c53b5c0baca6556a27ea40b1e81b1be21b18537
899225b88cbb36d5dcfd05debf843aaa5c109686
refs/heads/master
2023-08-12T04:08:45.592761
2021-10-11T18:52:58
2021-10-11T18:52:58
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
516
puml
/* * UCF COP3330 Fall 2021 Assignment 3 Solutions * Copyright 2021 Rafael Alvarez-Romero */ @startuml abstract runApp class app abstract PrintOut abstract OutputText abstract InputText class employees { .. Setter .. + setStringArray() + setOrder() + setTextFile() .. Getter .. + getTextFile() + getStringArray() __ private data __ ArrayList<String> } runApp -> main_app app <--|> employees InputText -> Employees employees -> OutputText OutputText -> PrintOut app -|> PrintOut @enduml
eb4549f794d4cffc08fb89fcbb9bf382ea5e827e
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StagedOrderUpdateItemShippingAddressAction.puml
fa195c3ab6a5dd969c7b8719e3da6dbb136b41c2
[]
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
516
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 StagedOrderUpdateItemShippingAddressAction [[StagedOrderUpdateItemShippingAddressAction.svg]] extends StagedOrderUpdateAction { action: String address: [[BaseAddress.svg BaseAddress]] } interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] { action: String } @enduml
f2f23fcb2a81d0d08f0821dd7860cc395623299d
d702b31e656edcb9944228c0309f153bdff29eec
/doc/plantuml/HCARDA/icarditem.plantuml
8309fdfe8fdb301f1f4dc239e02f90a5b6cc4003
[ "Apache-2.0" ]
permissive
gematik/ref-HealthCardAccess
4f3957bfe40c56ffbf82782528a6e543ea00e9e3
eb9a12f7eea309bb5b23269de9d8fa924f91fe4f
refs/heads/master
2022-02-14T18:25:41.769547
2022-01-07T07:24:17
2022-01-07T07:24:17
213,916,430
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,449
plantuml
@startuml package de.gematik.ti.healthcardaccess { interface ICardItem { } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.cardobjects { class DedicatedFile { + DedicatedFile() } } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.cardobjects { class ElementaryFile { + ElementaryFile() + ElementaryFile() } } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.cardobjects { class FileControlParameter { {static} + LCS_CREATION_STATE : int {static} + LCS_INITIALISATION_STATE : int {static} + LCS_OPERATIONAL_STATE_ACTIVATED : int {static} + LCS_OPERATIONAL_STATE_DEACTIVATED : int {static} + LCS_TERMINATION_STATE : int {static} + TAG_FCP : int {static} + TAG_NUMBER_OF_OCTET : int {static} + TAG_FILE_DESCRIPTOR : int {static} + TAG_FILE_IDENTIFIER : int {static} + TAG_APPLICATION_IDENTIFIER : int {static} + TAG_SHORT_FILE_IDENTIFIER : int {static} + TAG_LIFE_CYCLE_STATUS : int - numberOfOctet : int - fileDescriptor : byte[] - fileIdentifier : byte[] - applicationIdentifier : byte[] - shortFileIdentifier : int + FileControlParameter() - fillFcpElements() + getFileDescriptor() + getFileIdentifier() + getApplicationIdentifier() + getLifeCycleStatus() + getNumberOfOctet() + toString() - catchOctetStringFromTaggedObject() } } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.cardobjects { class Format2Pin { {static} - NIBBLE_SIZE : int {static} - MIN_PIN_LEN : int {static} - MAX_PIN_LEN : int {static} - FORMAT_PIN_2_ID : int {static} - FORMAT2_PIN_SIZE : int {static} - FORMAT2_PIN_FILLER : int {static} - MIN_DIGIT : int {static} - MAX_DIGIT : int - pin : int[] - format2Pin : byte[] + Format2Pin() + getFormat2Pin() + sanityCheck() } } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.cardobjects { class GemCvCertificate { - certificateContent : byte[] - certificateBody : CertificateBody - signature : byte[] - valid : int {static} - BODY_VALID : int {static} - SIGN_VALID : int - seq : ASN1InputStream - certificateProfileIdentifier : DERApplicationSpecific - certificationAuthorityReference : DERApplicationSpecific - publicKey : PublicKeyDataObject - certificateHolderReference : DERApplicationSpecific - certificateHolderAuthorization : CertificateHolderAuthorization - certificateEffectiveDate : DERApplicationSpecific - certificateExpirationDate : DERApplicationSpecific - certificateType : int - setPrivateData() + GemCvCertificate() + GemCvCertificate() - initFrom() - setPrivateCertificateBodyData() + toASN1Primitive() - buildECDSAPublicKeyFromPublicKeyDo() + getCertificationAuthorityReferenceContents() + getCertificateContent() + getHolderReference() } } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.cardobjects { class Key { {static} - MIN_KEY_ID : int {static} - MAX_KEY_ID : int - keyId : int + Key() + getkeyId() - sanityCheck() + calculateKeyReference() } } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.cardobjects { class Password { {static} - MIN_PWD_ID : int {static} - MAX_PWD_ID : int - pwdId : int + Password() + getPwdId() - sanityCheck() + calculateKeyReference() } } } DedicatedFile -up-|> ICardItem ElementaryFile -up-|> ICardItem FileControlParameter -up-|> ICardItem Format2Pin -up-|> ICardItem GemCvCertificate -up-|> ICardItem Key -up-|> ICardItem Password -up-|> ICardItem @enduml
e47e9904e0130703762c34707f43b54b95344cad
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Signals/SignalEventDrawer.puml
b61f67d6db16aea7e38ae2320f1d0d3d1dfa8c93
[]
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
157
puml
@startuml class SignalEventDrawer { {static} FindBoundObject(property:SerializedProperty) : GameObject } UnityEventDrawer <|-- SignalEventDrawer @enduml
bb6962cd078deb57a488a43b616657b1ca0e494f
3e8de74dfe19cd437fd7842887394d4921a109d7
/docs/images/strategy-compo.plantuml
cdd9b2f6693e6582d71cbb9fb28c835ce1a82492
[]
no_license
jmbruel/InnopolisDesignPatterns
62c5f1df870883cd44245d6459243c83b96d0995
a9ffbfc16a29ed3d560d5be12e8fb1d2f1bed50e
refs/heads/master
2021-02-04T20:34:22.378185
2020-11-16T17:40:28
2020-11-16T17:40:28
243,707,157
0
7
null
2020-10-23T08:58:33
2020-02-28T07:49:59
JavaScript
UTF-8
PlantUML
false
false
334
plantuml
@startuml '----------------------------------- ' UML patterns illustrated ' JMB 2014 '----------------------------------- hide circle hide empty members hide empty methods class Contexte { +contexte() {strategie.algorithme();} } abstract class Strategie { {abstract} +algorithme() } Contexte *--> "+strategie" Strategie @enduml
38242d55dc550d243ac32cc1acdbcae41d9b9c3b
818cdb24e4d01fb4b6c840af03c929f00db170de
/docs/ClassDiagram-details.puml
1f1faf1abded11bee03c402a6ef9fef8299fa656
[]
no_license
dani6666/PollWorldBackend
72971a94249de6223c3a929bc494960672fa5452
18c27ffb2953d1524dd21ecfe1e78f1c770dd887
refs/heads/master
2023-02-26T09:28:44.932418
2021-02-02T12:28:59
2021-02-02T12:28:59
311,427,014
0
0
null
2021-02-02T13:24:05
2020-11-09T18:18:56
Python
UTF-8
PlantUML
false
false
1,851
puml
@startuml class Pools{ int: Id PK notnull int: CompanyId FK notnull varchar: Name notnull float: Price varchar: ShortDescription varchar: Description time: Time float: Rate int: Reviews } Pools "1" -- "0..*" PoolAssignments Pools "1" -- "1..*" Questions Pools "1" -- "1..*" Category class Category{ int: Id PK notnull int: Name FK notnull } class Users{ int: Id PK notnull varchar: Username notnull varchar: Password varchar: Name int: Age bit: Sex int: PlaceOfResidenceId FK int: Height int: Wegiht int: FitnessLevel } Users "1" -- "0..*" PoolAssignments Users "1" -- "0..*" Answers Users "1..*" - "1" PlacesOfResidence class PlacesOfResidence{ int: Id PK notnull varchar: Name } class Companies{ int: Id PK notnull varchar: Name } Companies "1" -- "0..*" Pools class PoolAssignments{ int: UserId FK notnull int: PoolId FK notnull datetime: AssignedDate notnull datetime: CompletedDate } class Questions{ int: Id PK notnull int: TypeId FK notnull varchar: Text notnull } Questions "1" --- "0..*" QuestionOptions Questions "1" -- "0..*" CustomQuestionAnswers Questions "1..*" -- "1" QuestionTypes class QuestionTypes{ int: Id PK notnull string: Type notnull } class Options{ int: Id PK notnull varchar: Text notnull } Options "1" - "1..*" QuestionOptions class QuestionOptions{ long: Id PK notnull int: OptionId FK notnull int: QuestionId FK notnull } class CustomQuestionAnswers{ long: Id PK notnull int: QuestionId FK notnull varchar: AnswerText int: AnswerNumber } class Answers{ int: UserId FK notnull long: QuestionOptionId FK long: CustomQuestionAnswerId FK } Answers "1" --- "0..*" QuestionOptions Answers "1" -- "0..*" CustomQuestionAnswers @enduml
c977d5def108a66b8063c256517cac80c8ceab99
17fe0f5df5b8d1ad7ab001775c37cf6c9ca3084e
/memento/uml.puml
4bcea172432479a191e3648cedbb99dd56d5ca71
[]
no_license
lazy3311/design_patterns
a91c86a17aeb8bda3564c2f4db2cd8f5774b63ea
f8da613ecf14d9f47fac67d1efafbafe6156f0b1
refs/heads/master
2022-12-09T20:32:13.457813
2020-09-11T09:25:31
2020-09-11T09:25:31
286,716,509
0
0
null
null
null
null
UTF-8
PlantUML
false
false
632
puml
@startuml memento_pattern !define DARKORANGE !includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml class Caretaker { + add_memento(); + get_memento(); } class Originator { + store_memento(); + restore_memento(); } class Memento { + Memento(data); + get_data(); } Originator -right-> Memento Originator ..> Memento : <<create>> Caretaker -right-> Originator allow_mixing collections History #DarkOliveGreen Caretaker --> History note "Originator creates memento\nCaretaker stores in History \n vice-versa for restore" as N1 N1 .. Caretaker Originator .. N1 @enduml
e52d135fbe655ae75e3db2d08693be91f1dc5d35
06132bb306986359c8958effdb12134da4aa9a23
/spring-cloud-design-pattern/behavior-memento-pattern/src/main/resources/static/diagram-demo.puml
75ee56cc0fdd057deb2bb7113c752ebc82dcff56
[]
no_license
sunnyzhy/Design-pattern
1fe797d2af0e102be63704aad5a5e3a3d8feb5a9
665b5cde412e965665469af1b5011c6c280ea7d0
refs/heads/master
2023-07-01T15:50:37.005870
2023-06-13T09:33:49
2023-06-13T09:33:49
55,023,406
2
1
null
null
null
null
UTF-8
PlantUML
false
false
1,028
puml
@startuml RoleState *-- RoleStateMemento RoleStateCaretaker o-- RoleStateMemento RoleStateMemento o-- Location RoleState o-- Location class RoleStateMemento { -Location location +RoleStateMemento(Location location) +void setLocation(Location location) +Location getLocation() } class RoleState { -Location location +Location getLocation() +void setLocation(Location location) +RoleStateMemento createMemento() +void restoreMemento(RoleStateMemento memento) } class RoleStateCaretaker { -List<RoleStateMemento> mementoList +RoleStateMemento getMemento(int index) +void addMemento(RoleStateMemento memento) } class Location { -int x -int y +Location(int x, int y) +int getX() +int getY() } note as N public RoleStateMemento createMemento() { return new RoleStateMemento(this.location); } end note note as M public void restoreMemento(RoleStateMemento memento) { this.setLocation(memento.getLocation()); } end note RoleState .. N RoleState .. M @enduml
3ab6f56f04708d87e4e7f9bed9d6ff2be47279c0
1c2ffdfa1f2d5109bb4e1a2fb5e9e48c5cea8edd
/assets/Catena_PollableInterface.plantuml
7e4d4251519dcf12fa2b1de090865e271a811b2c
[ "MIT" ]
permissive
mcci-catena/Catena-Arduino-Platform
e4b940473831521d84d7f766965c49fcd1a5d247
2ce0ec05ac252edab2c5a60d7d0a9a894b30ad70
refs/heads/master
2023-08-31T18:10:49.000465
2023-06-26T11:01:17
2023-06-26T11:01:17
72,812,020
15
11
MIT
2023-09-07T12:00:23
2016-11-04T03:44:20
C++
UTF-8
PlantUML
false
false
1,264
plantuml
@startuml /' Module: CatenaBase.plantuml Function: PlantUML reference source for cPollableInterface class diagram. Copyright: See accompanying LICENSE file Author: Terry Moore, MCCI Corporation July 2019 Notes: PlantUML images in REAMDE.md are generated by pasting this file into the server at http://www.plantuml.com/plantuml, and grabbing the resulting URLs. That has to be done several times, with different values edited into the variables below. The comments in README.md will tell you what's needed. '/ hide empty members namespace McciCatena { interface cPollableInterface { +{abstract} ~cPollableInterface() +{abstract} void poll(); } class cPollingEngine <<Pollable>> { +void poll(); +void begin(); +void registerObject(cPollableObject *); -cPollableObject *m_pHead; } abstract class cPollableObject <<Pollable>> { -cPollableObject *m_pNext; -cPollableObject *m_pLast; +{abstract} void poll(); } cPollableInterface <|-- cPollingEngine cPollableInterface <|-- cPollableObject cPollingEngine o-> "0:*" cPollableObject } class UserClass1 <<Pollable>> { +void poll(); } class UserClass2 as "..." <<Pollable>> { +void poll(); } McciCatena.cPollableObject <|--- UserClass1 McciCatena.cPollableObject <|--- UserClass2 @enduml
289e221755cee9a5aa9a9d13610f45747a9fb1fd
41cda7f30cb70197b2e7be9c1cdde5ad02d4de50
/src/main/java/com/pc/command/命令模式类图.puml
b3f37726650dfd1d3275c044ded2b56ea39f8f34
[]
no_license
mishin/DesignPatternStudy
6f1280a00514efe95f0098576f267c4fd7e49dec
27d253c6c9304b8131df258a933945bbadf22931
refs/heads/master
2021-06-17T19:07:59.706496
2017-05-02T14:16:57
2017-05-02T14:16:57
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
470
puml
@startuml class Command { execute() } class ConcreteCommand { receiver execute() } class Invoker class Receiver { action() } class Client ConcreteCommand .up..|> Command Command <-o Invoker Receiver <-o ConcreteCommand Client -up-> ConcreteCommand : Creates > note left of Command : 命令 note bottom of Invoker : 发动者 note top of Receiver : 接收者 note right of ConcreteCommand :具体的命令 note right of Client : 请求者 @enduml
1083216fcb27adbd3d42403dac0aae9525c44c51
06132bb306986359c8958effdb12134da4aa9a23
/spring-cloud-design-pattern/structure-proxy-pattern/src/main/resources/static/cglib/diagram.puml
a43a64927f091343e9777acf4f47e6a6457dbbf3
[]
no_license
sunnyzhy/Design-pattern
1fe797d2af0e102be63704aad5a5e3a3d8feb5a9
665b5cde412e965665469af1b5011c6c280ea7d0
refs/heads/master
2023-07-01T15:50:37.005870
2023-06-13T09:33:49
2023-06-13T09:33:49
55,023,406
2
1
null
null
null
null
UTF-8
PlantUML
false
false
259
puml
@startuml class Subject { +void request() } class Proxy implements MethodInterceptor { -Object target Proxy(Object target) +Object getProxyInstance() +Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) } @enduml
c2255c74b9fc351bec9f65bf8d0d23bdd20d33ef
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.postprocessing@2.3.0/PostProcessing/Runtime/Attributes/TrackballAttribute.puml
ea3ad8735628668d80d46880eb8b3a031b2cd072
[]
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
246
puml
@startuml class TrackballAttribute <<sealed>> { + TrackballAttribute(mode:Mode) } enum Mode { None, Lift, Gamma, Gain, } Attribute <|-- TrackballAttribute TrackballAttribute --> "mode" Mode TrackballAttribute +-- Mode @enduml
eb69bbade4b22126b3ac9fad0780b8b72046ed88
4c4435dc60bea4a353454b85070fbbb7d42951b9
/exercise44/docs/Solution44UML.puml
0c77b4c21c34511a738538cf61c3bc8b3b9a3c0c
[]
no_license
Fed-Abreu/AbreuSeymour-a04
3ef4d28bd2c0b6eb05b4324c8021723f4894c91e
b9f4739160e1a13661631867ea60414fcf0c5a85
refs/heads/main
2023-08-15T11:34:46.796675
2021-10-18T01:49:06
2021-10-18T01:49:06
417,607,778
0
0
null
null
null
null
UTF-8
PlantUML
false
false
114
puml
@startuml 'https://plantuml.com/class-diagram class Solution44{ +fileInput(); +fileOutput(); +main(); } @enduml
e7fdab3028ad16b79b1d01636599bb34551d7c59
654ce5dcd2e555f939575e0c86105d05bb686dac
/docs/diagrams/EditCommandClassDiagram.puml
ef2fff2b81d414af564332603d71e60cfcf0f015
[ "MIT" ]
permissive
AY2021S1-CS2103-W14-4/tp
d7e41463b119af710c2ad94866ccbef61bb34fde
4d3fd86c4234ddca084c4bb54e6188518ec1e381
refs/heads/master
2023-01-13T14:17:41.497623
2020-11-09T11:57:40
2020-11-09T11:57:40
292,977,056
0
4
NOASSERTION
2020-11-09T11:57:41
2020-09-05T01:11:29
Java
UTF-8
PlantUML
false
false
1,784
puml
@startuml skinparam backgroundColor #ffffff skinparam classAttributeIconSize 0 hide circle abstract class "{abstract}\nCommand" { + {abstract} execute(model : Model) : CommandResult } interface Model <<interface>> { + getFilteredSupplierList() : ObservableList<Supplier> + updateFilteredSupplierList(Predicate<Supplier>) : void + getFilteredWarehouseList() : ObservableList<Warehouse> + updateFilteredWarehouseList(Predicate<Warehouse>) : void } class Supplier { /' Fields '/ - name : Name - phone : Phone - email : Email - remark : Remark - products : Set<Product> /' Methods '/ + isSameSupplier(otherSupplier : Supplier) : boolean + equalsSupplierCaseSensitive(otherSupplier: Supplier) boolean + equals(other : Object) : boolean } class Warehouse { /' Fields '/ - name : Name - phone : Phone - address : Address - remark : Remark - products : Set<Product> /' Methods '/ + isSameWarehouse(otherWarehouse : Warehouse) : boolean + equalsWarehouseCaseSensitive(otherWarehouse: Warehouse) boolean + equals(other : Object) : boolean } class EditCommand { /' Fields '/ - editDescriptor : editDescriptor - index : Index /' Methods '/ + execute(model : Model) : CommandResult + executeSupplierEditing(model : Model) : CommandResult + executeWarehouseEditing(model : Model) : CommandResult + createEditedSupplier (supplier : Supplier, editSupplierDescriptor : EditSupplierDescriptor) + createEditedWarehouse (warehouse : Warehouse, editWarehouseDescriptor : EditWarehouseDescriptor) + equals(other : Object) : boolean } EditCommand --up|> "{abstract}\nCommand" EditCommand ..> Model EditCommand --> Supplier EditCommand --> Warehouse @enduml
4b81bf0743cb97cf960dde42a7e905a0b4be96be
9a5854d7e73a6476f9c3ce7986078422acf983f6
/docs/articleaggregate.puml
788b39203cfc07cb7e30d4dfad0ad9e75b86a271
[ "BSD-3-Clause" ]
permissive
papagr/mnemon
2b48dd1beab048f7b0d27e7fe7bf887b350c2129
e51787cea3d0d1a2d5e6b8b02211c2335ff73a11
refs/heads/master
2023-01-05T03:25:10.295473
2020-10-29T20:52:19
2020-10-29T20:52:19
305,522,288
1
0
BSD-3-Clause
2020-10-22T07:51:03
2020-10-19T21:55:41
HTML
UTF-8
PlantUML
false
false
1,107
puml
@startuml skinparam monochrome true class ArchiveArticleService <<application service>> { - repository : ArticleRepository + archive(article_id : str) } package "aggregate boundary" <<Cloud>> { abstract class Article { + id : ArticleID {readonly} + source : ArticleSource {readonly} + tags : Tag[] {readonly} + is_favorite : bool {readonly} + content : Content {readonly} } class UnreadArticle <<aggregate root>> { + created_on : date {readonly} + tags : Tag[] {editable} + is_favorite : bool {editable} + archive() + delete() } class Tag <<value object>> { } class ArticleSource <<value object>> { } class ArticleID <<value object>> { } class Content <<value object>> { + title : str + abstract: str + body : str + author : str + extracted_on : date + published_on : date } } ArchiveArticleService ---> UnreadArticle Article <|- UnreadArticle UnreadArticle "1" *-- "0..1" Content UnreadArticle "1" *-- "1" ArticleSource UnreadArticle "1" *- "1" ArticleID UnreadArticle "1" *-- "0..*" Tag @enduml
3c4a006149d80cea7935b682c9322dd9a2cfea2b
e032dab934c4fa3ff55da94de2f15d246a4aed8c
/design-pattern/src/main/java/wr1ttenyu/f1nal/study/designpattern/pattern23/decorator/Decorator1.puml
58f465422967d8dbb74cc7e41c813c44ab025755
[]
no_license
wr1ttenyu/f1nal
9d21aeb1ae14505fc2e9add9220f81719840f37f
fd27d32d2f877ea98c19d892d13df36a99059a46
refs/heads/master
2022-07-07T02:15:25.931532
2020-06-11T01:19:16
2020-06-11T01:19:16
207,061,707
0
0
null
2022-01-12T23:05:07
2019-09-08T04:31:27
Java
UTF-8
PlantUML
false
false
491
puml
@startuml abstract class Drink class EspressoCoffee class LongCoffee class Milk class Soy class EspressoCoffeeAndSoy class LongCoffeeAndSoy class EspressoCoffeeAndMilk class LongCoffeeAndMilk Drink <|-- EspressoCoffee Drink <|-- LongCoffee Drink <|-- Milk Drink <|-- Soy Drink <|-- EspressoCoffeeAndSoy Drink <|-- LongCoffeeAndSoy Drink <|-- EspressoCoffeeAndMilk Drink <|-- LongCoffeeAndMilk class Drink { -price:float -description:String +getDesc() +getCost() } @enduml
63e08d3ac73d31f33041c9275aff9473bd3c66de
b5ccccb3984e93d1eee2d3d952d09444e5e7211d
/controlleradvice/doc/DispatcherServlet.plantuml
bd663dbbc139fc9f383e57bfc58c95ffcecab641
[]
no_license
yujiaao/spring-mvc-source-analysis
16837fb7a7dfbca83432e538a732d8cc94517099
b707e95a44aa093807175fd48010847cc336a982
refs/heads/master
2021-07-14T02:28:46.637707
2020-10-19T15:55:51
2020-10-19T15:55:51
213,173,358
1
0
null
2020-10-19T15:56:28
2019-10-06T13:26:55
Java
UTF-8
PlantUML
false
false
1,613
plantuml
@startuml title __DispatcherServlet 类图 __\n namespace org.springframework.web.servlet { class DispatcherServlet { # onRefresh(context) # initStrategies(context) # doDispatch( request, response) # render(mv, request, response) } class FrameworkServlet { # initServletBean() # initWebApplicationContext() + onApplicationEvent(ContextRefreshedEvent) # processRequest(request, response) } class HttpServletBean{ + init() # doGet(HttpServletRequest, HttpServletResponse) # doPost(HttpServletRequest, HttpServletResponse) } } namespace org.springframework.context { class ApplicationContextAware{ + setApplicationContext(ApplicationContext) } } namespace javax.servlet.http { class HttpServlet{ + service(ServletRequest, ServletResponse) } } org.springframework.web.servlet.DispatcherServlet -|> org.springframework.web.servlet.FrameworkServlet : userValidator org.springframework.web.servlet.FrameworkServlet -|> org.springframework.web.servlet.HttpServletBean : userValidator org.springframework.web.servlet.FrameworkServlet .up.|> org.springframework.context.ApplicationContextAware org.springframework.web.servlet.HttpServletBean .up.|> javax.servlet.http.HttpServlet 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
1681666b344ba085bac866bc834c7b2da07fd0c5
ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb
/projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/util/PromoCSVHelper.puml
bbf25eaa1bf940176131e5b1df166bde47ffa682
[]
no_license
itachi1706/How-to-use-Git-NTUSCSE1819-Site
d6fcba79d906e9916c3961b11a6e1318d8a0f602
dbce2f56b42e15be96bd40fd63e75389d397ca34
refs/heads/master
2021-07-12T15:24:44.197085
2020-08-01T12:31:23
2020-08-01T12:31:23
172,893,030
0
0
null
null
null
null
UTF-8
PlantUML
false
false
397
puml
@startuml class PromoCSVHelper [[../sg/edu/ntu/scse/cz2002/util/PromoCSVHelper.html]] { {static} -pInstance: PromoCSVHelper -promotionCsv: String {static} +getInstance(): PromoCSVHelper +readFromCsv(): ArrayList<PromotionItem> +writeToCsv(promotions:ArrayList<PromotionItem>): void } center footer UMLDoclet 1.1.3, PlantUML 1.2018.12 @enduml
5db11c6724eb48e7462dee64dada95435ea2b9b5
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Events/Signals/CustomSignalEventDrawer.puml
2e133a130cf74da691a77a127c4d2e28fe1500b8
[]
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
99
puml
@startuml class CustomSignalEventDrawer { } PropertyAttribute <|-- CustomSignalEventDrawer @enduml
1da1e3c7b6d4f6492218b4108a418e1ea39ccf29
0d8b0af121d7f501add14c3d5cefab24f062e0d4
/readme_images/c05_SingletonPattern.plantuml
f3edfc30e843424f4c7fc67475850676244a885c
[]
no_license
FisherZhongYi/HeadFirstDesignPatterns
3705a0720fd910e057c550d202b7c49e4764fa6f
17a5696cf47f0bd27c72c784920c02488b506444
refs/heads/master
2022-04-02T17:03:24.329010
2020-02-07T15:36:59
2020-02-07T15:36:59
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
226
plantuml
@startuml SingletonPattern class ChocolateBoiler { +{static} ChocolateBoiler getInstance() -{static} ChocolateBoiler singleInstance -ChocolateBoilder() // If possible, make the constructor inaccessible. } @enduml
b21d6219fb91b21320e3b703386b38aa14796a25
b19e1cd9af26a9f3cb65823e1a7885ce278337fe
/documentation/productApi/troubleTicket/media/src/useCase4PatchModel.puml
0d926c5c797098be122e3e8271bae3acad5c0168
[ "Apache-2.0" ]
permissive
MEF-GIT/MEF-LSO-Sonata-SDK
969c3717fba3fffa009bf3a5de65337b2caccaaf
6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f
refs/heads/working-draft
2023-07-07T02:17:11.649855
2023-06-23T09:30:18
2023-06-23T09:30:18
90,886,429
33
32
Apache-2.0
2023-01-05T23:58:23
2017-05-10T16:38:08
null
UTF-8
PlantUML
false
false
2,183
puml
@startuml skinparam { ClassBackgroundColor White ClassBorderColor Black } class AttachmentValue { attachmentId: string author*: string content: string creationDate*: date-time description: string mimeType: string name*: string source*: MEFBuyerSellerType url: string } AttachmentValue *--> MEFByteSize : size class FieldedAddress { city*: string country*: string locality: string postcode: string postcodeExtension: string stateOrProvince: string streetName*: string streetNr: string streetNrLast: string streetNrLastSuffix: string streetNrSuffix: string streetSuffix: string streetType: string } FieldedAddress *--> GeographicSubAddress : geographicSubAddress class GeographicSubAddress { buildingName: string id: string levelNumber: string levelType: string privateStreetName: string privateStreetNumber: string } GeographicSubAddress *-->"*" MEFSubUnit : subUnit class MEFByteSize { amount: float units: DataSizeUnit } class Note { author*: string date*: date-time id*: string source*: MEFBuyerSellerType text*: string } class MEFSubUnit { subUnitNumber*: string subUnitType*: string } class RelatedContactInformation { emailAddress*: string name*: string number*: string numberExtension: string organization: string role*: string } RelatedContactInformation *--> FieldedAddress : postalAddress class IssueRelationship { @referredType*: string creationDate*: date-time description*: string href: string id*: string relationshipType*: string source*: MEFBuyerSellerType } class TroubleTicket_Update { externalId: string issueStartDate: date-time observedImpact*: MEFObservedImpactType priority: TroubleTicketPriorityType severity: TroubleTicketSeverityType } TroubleTicket_Update *-->"*" AttachmentValue : attachment TroubleTicket_Update *-->"*" Note : note TroubleTicket_Update *-->"*" RelatedContactInformation : relatedContactInformation TroubleTicket_Update *-->"*" IssueRelationship : relatedIssue @enduml
a81eef8c6cb671903175a4c076bf744e7a9a3f2d
ab2f8cc1b349dc7c39b8b40a098d27a0032318b5
/tests/simple_classes.puml
ce4718089cae78dd2f47c8064dbd6e9c2be1b070
[ "MIT" ]
permissive
thibaultmarin/hpp2plantuml
41be9f0e1cbe3e0f788254fdf1d80a54b920d7e0
d305bcc6c081d0f7b0f496fc6fda2833359c064a
refs/heads/master
2023-04-27T03:48:20.092712
2023-04-17T08:43:52
2023-04-17T08:43:52
76,711,507
181
35
MIT
2023-04-17T08:14:50
2016-12-17T07:59:59
Python
UTF-8
PlantUML
false
false
2,294
puml
@startuml /' Objects '/ abstract class Class01 { +{abstract} AbstractPublicMethod(int param) : bool +PublicMethod(int param) : bool {query} +{static} StaticPublicMethod(bool param) : bool #{abstract} _AbstractMethod(int param) : bool #_ProtectedMethod(int param) : bool #{static} _StaticProtectedMethod(bool param) : bool #_protected_var : int +public_var : int } class Class02 { +AbstractPublicMethod(int param) : bool -_AbstractMethod(int param) : bool -_PrivateMethod(T param) : bool -{static} _StaticPrivateMethod(bool param) : bool -_private_var : int } class Class02::ClassNested { -var : int } class Class03 <template<typename T>> { +Class03() +~Class03() -_data : Class01* -_obj : Class01* -_typed_obj : T* -_obj_list : list<Class02> +Method(Interface::Class04& c4) : void } enum Enum01 { VALUE_0 VALUE_1 VALUE_2 } class anon_union_1::anon_struct_1 { +x : float +y : float +z : float } class anon_union_1::anon_struct_2 { +phi : float +rho : float +theta : float } class anon_union_1 { +vec : float[] } namespace first_ns { namespace second_ns { class A { } namespace third_ns { class B { } } } } namespace Interface { class Class04 { +Class04() +~Class04() -_obj : Class01* -_val : Enum01 -_var : T -_flag : bool } class Class04_derived { +Class04_derived() +~Class04_derived() -_var : int } enum Enum { A B } class Struct { +a : int } namespace NestedNamespace { class Class04_ns { #_e : Enum #_s : Struct } } } /' Inheritance relationships '/ first_ns.second_ns.A <|-- Class03 Class01 <|-- Class02 Class02 <|-- first_ns.second_ns.A Interface.Class04 <|-- Interface.Class04_derived Interface.Class04_derived <|-- Interface.NestedNamespace.Class04_ns /' Aggregation relationships '/ Class03 "2" o-- Class01 Class03 *-- Class02 Interface.Class04 o-- Class01 Interface.Class04 *-- Enum01 Interface.NestedNamespace.Class04_ns *-- Interface.Enum Interface.NestedNamespace.Class04_ns *-- Interface.Struct /' Dependency relationships '/ Interface.Class04 <.. Class03 /' Nested objects '/ Class02 +-- Class02::ClassNested anon_union_1 +-- anon_union_1::anon_struct_1 anon_union_1 +-- anon_union_1::anon_struct_2 @enduml
20816a5b066323c33dfb317fc48c2ec7ea00cdac
52ba427f53f8af305989c471eac3f6658587499d
/src/main/resources/设计模式23种类型/结构型模式 Structural Pattern/外观模式.puml
9f52e7ea32ee73b8b4a64178ff46b43ae7d2ee83
[]
no_license
HappyFreeAngel/springcloud-gateway-dynamic-route
444114df5f67fe63a960e27bf40c794380bbbcee
364d99cbdc6ba09ed7b07ce15aed96b23d7f1827
refs/heads/master
2020-07-28T01:13:04.293957
2019-11-05T15:44:04
2019-11-05T15:44:04
209,264,996
0
0
null
null
null
null
UTF-8
PlantUML
false
false
484
puml
@startuml skinparam classAttributeIconSize 0 package "class Facade(外观模式 Façade Pattern)" #DDDDDD { class Facade{ + operationA() + operationB():void + operationC():void } note right: 系统对外的统一接口 class SystemA << (I,#FF7700) Interface>> class SystemB << (I,#FF7700) Interface>> class SystemC << (I,#FF7700) Interface>> Facade --> SystemA:<<use>> Facade --> SystemB:<<use>> Facade --> SystemC:<<use>> } @enduml
ce77d82ecc8af866a238b53ef4f1d054aac2352b
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Editor/TMP_EditorCoroutine.puml
94f8abb99f551d89062bfb4e359b1d1c1fff82f6
[]
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
279
puml
@startuml class TMP_EditorCoroutine { TMP_EditorCoroutine(routine:IEnumerator) + {static} StartCoroutine(routine:IEnumerator) : TMP_EditorCoroutine Start() : void + Stop() : void EditorUpdate() : void } TMP_EditorCoroutine --> "coroutine" IEnumerator @enduml
93a00bbe9ae6592510c8185a589ceae71dfecfce
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Control/Telemetry/Logical.puml
1064f998d9af6170a335056babb52acab0c63840
[]
no_license
CAADE/edgeville
fd0053d749c259029ef4c7791210663ace87be21
6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65
refs/heads/master
2020-03-28T06:11:31.554585
2019-05-02T17:37:03
2019-05-02T17:37:03
147,819,682
0
0
null
null
null
null
UTF-8
PlantUML
false
false
504
puml
@startuml rectangle "Diagram TBD" @enduml package "User" #ffffcc { } package "Used" #ffffcc { } package "Telemetry" #lightblue { interface "Telemetry" { } CLI ()-- "Telemetry" REST ()-- "Telemetry" Web ()-- "Telemetry" class "Telelmetry\nProducer" as TP class "Telelmetry\nBus" as TB class "Telelmetry\nSubscriber" as TS class "Telelmetry\nAggregator" as TA TB -- TP TB -- TS TP <|-- TA TS <|-- TA } User --> "Telemetry" "Telemetry" --> Used
dead67db1b90515c4a2fe3b8a0c9f8fd1ea063a5
e8d9af6370d76e3a069fc319113de2fefea33117
/docs/diagrams/TestClassDiagram.puml
799d03eec7dac56304d537ee1011c42e2e8940a3
[ "MIT" ]
permissive
AY1920S1-CS2103-F09-2/main
ab04fa5d5fa0a1e76b9edefe1ba700021be00231
c3eb98f0387dbc4a0dacb0e0bd7efe27ae786e39
refs/heads/master
2020-07-24T23:24:20.919724
2019-11-15T08:26:41
2019-11-15T08:26:41
208,079,332
0
7
NOASSERTION
2019-11-15T08:26:24
2019-09-12T15:07:55
Java
UTF-8
PlantUML
false
false
867
puml
@startuml left to right direction interface Exam Exam <|-- StandardExam StandardExam *-- "1" Result : calculates ExamRunner --> "0..1" StandardExam class StandardExam { -initialDeck : ArrayList<FlashCard> -testDeck : ArrayList<FlashCard> -durationInSeconds : int -result:Result +getCurrentCard() : FlashCard +upIndex() : void +downIndex() : void +voidQuestion(isCorrect:boolean) : void } class Result { -maxScore : int -totalScore : int +getScore() : String +mark(isCorrect:boolean) : void } class ExamRunner { -exam:Exam -examOngoing:boolean +getCurrentExam():exam +createExam():void +terminateExam():void +clearExam():void } together { class ExamRunner class StandardExam class Result } skinparam class { BackgroundColor Grey ArrowColor Black BorderColor White } @enduml
614438cd615f25e0f84dd5ba8fa24310c703ff32
a751888fd29a1b92bb32ef7d272d3e72f664ed30
/src/design/partial-derivatives-class-diagram.puml
55ac49ccaedd4c7f06620b958830647ad28e0031
[ "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,952
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.propagation #ECEBD8 { interface Propagator { + SpacecraftState propagate(AbsoluteDate target) +MatrixHarvester setupMatricesComputation(name, initialSTM, initialJacobian) } interface MatricesHarvester { +void setReferenceState(SpacecraftState state) +RealMatrix getStateTransitionMatrix(SpacecraftState state) +RealMatrix getParametersJacobian(SpacecraftState state) +List<String> getJacobiansColumnsNames() } Propagator -right-> MatricesHarvester package integration #DDEBD8 { class AbstractIntegratedPropagator { +void addAdditionalDerivativesProvider(AdditionalDerivativesProvider provider) } interface AdditionalDerivativesProvider { +String getName() +yield() +void derivatives() } AbstractIntegratedPropagator o--> AdditionalDerivativesProvider : providers Propagator <|.. AbstractIntegratedPropagator } package numerical #DDEBD8 { class NumericalPropagationHarvester class StateTransitionMatrixGenerator { -List<ForceModel> forceModels } class IntegrableJacobianColumnGenerator { -String columnName } class NumericalPropagator MatricesHarvester <|.. NumericalPropagationHarvester AbstractIntegratedPropagator <|-- NumericalPropagator StateTransitionMatrixGenerator <--o NumericalPropagator IntegrableJacobianColumnGenerator <--o NumericalPropagator NumericalPropagationHarvester <--o NumericalPropagator AdditionalDerivativesProvider <|.. StateTransitionMatrixGenerator AdditionalDerivativesProvider <|.. IntegrableJacobianColumnGenerator } } @enduml
9c003d682047c5e6bdb200deb56fa6bfd973bdd0
a4442afeaeffcefbea519fd760977cd5f5aa85c1
/netty/netty-uml/netty-pipline.puml
9bf015950e4954c7ddca9a8d723cd2db0ad6266b
[]
no_license
zhongxigong/stronger
0586c62cac43ccb465c3149b39c9c947d8257f87
e7aec22ccd3e611e910c4537ad1d72f51bdbe69b
refs/heads/master
2020-05-17T17:21:22.503481
2019-05-21T13:47:33
2019-05-21T13:47:33
183,849,590
3
2
null
null
null
null
UTF-8
PlantUML
false
false
4,172
puml
@startuml skinparam BackGroundColor #3c3f41 skinparam class { BorderColor #cbd5d6 ArrowColor #589df6 BackGroundColor #645e4d } interface ChannelInboundInvoker{ ChannelInboundInvoker fireChannelRegistered() ChannelInboundInvoker fireChannelUnregistered() ChannelInboundInvoker fireChannelActive() ChannelInboundInvoker fireChannelInactive() ChannelInboundInvoker fireChannelRead(Object msg) ChannelInboundInvoker fireChannelReadComplete() ChannelInboundInvoker fireChannelWritabilityChanged() } interface ChannelOutboundInvoker{ ChannelFuture bind(SocketAddress localAddress) ChannelFuture connect(SocketAddress remoteAddress) ChannelFuture close(ChannelPromise promise) ChannelOutboundInvoker read() ChannelFuture write(Object msg) ChannelFuture write(Object msg, ChannelPromise promise) ChannelOutboundInvoker flush() ChannelFuture writeAndFlush(Object msg, ChannelPromise promise) ChannelFuture writeAndFlush(Object msg) } interface ChannelPipeline{ ChannelPipeline addFirst(String name, ChannelHandler handler) ChannelPipeline addLast(String name, ChannelHandler handler) ChannelPipeline addBefore(String baseName, String name, ChannelHandler handler) ChannelPipeline addAfter(String baseName, String name, ChannelHandler handler) ChannelPipeline addFirst(ChannelHandler... handlers) ChannelPipeline addLast(ChannelHandler... handlers) ChannelPipeline remove(ChannelHandler handler) ChannelPipeline replace(ChannelHandler oldHandler, String newName, ChannelHandler newHandler) ChannelHandler first() ChannelHandlerContext firstContext() ChannelHandler last() ChannelHandlerContext lastContext() ChannelHandler get(String name) ChannelHandlerContext context(ChannelHandler handler) Channel channel() ChannelPipeline fireChannelRegistered() ChannelPipeline fireChannelActive() ChannelPipeline fireChannelRead(Object msg) } class DefaultChannelPipeline{ AbstractChannelHandlerContext head AbstractChannelHandlerContext tail Channel channel ChannelFuture succeededFuture PendingHandlerCallback pendingHandlerCallbackHead DefaultChannelPipeline(Channel channel) } interface ChannelHandler{ void handlerAdded(ChannelHandlerContext ctx) void handlerRemoved(ChannelHandlerContext ctx) } interface ChannelOutboundHandler{ void bind(ChannelHandlerContext ctx, SocketAddress localAddress, ChannelPromise promise) void connect(ChannelHandlerContext ctx, SocketAddress remoteAddress,SocketAddress localAddress, ChannelPromise promise) void disconnect(ChannelHandlerContext ctx, ChannelPromise promise) void read(ChannelHandlerContext ctx) void write(ChannelHandlerContext ctx, Object msg, ChannelPromise promise) void flush(ChannelHandlerContext ctx) } interface ChannelInboundHandler{ void channelRegistered(ChannelHandlerContext ctx) void channelActive(ChannelHandlerContext ctx) void channelRead(ChannelHandlerContext ctx, Object msg) void channelReadComplete(ChannelHandlerContext ctx) } class ChannelDuplexHandler{ } class ChannelHandlerContext{ Channel channel() EventExecutor executor() ChannelHandler handler() ChannelPipeline pipeline() } class AbstractChannelHandlerContext{ AbstractChannelHandlerContext next AbstractChannelHandlerContext prev DefaultChannelPipeline pipeline EventExecutor executor void invokeChannelRegistered(final AbstractChannelHandlerContext next) void invokeChannelRead(final AbstractChannelHandlerContext next, Object msg) } ChannelPipeline -up-|> ChannelInboundInvoker : implement ChannelPipeline -up-|> ChannelOutboundInvoker : implement ChannelPipeline -up-|> Iterable : implement DefaultChannelPipeline -up-|> ChannelPipeline : implement ChannelOutboundHandler -up-|> ChannelHandler : extend ChannelInboundHandler -up-|> ChannelHandler : extend ChannelHandlerContext -up-|> ChannelInboundInvoker : extend ChannelHandlerContext -up-|> ChannelOutboundInvoker : extend AbstractChannelHandlerContext -up-|> ChannelHandlerContext : extend @enduml
1ce570520e0fd9f1178fb0a67d9dbd359e030205
1a874b3427decfdc734e03583dd8cc63d657cdad
/app/src/main/java/com/example/airpnp/UserPackage/UserPackage.plantuml
3c6bc7b78a3d62038af6d410c4aed95073f9e5b6
[]
no_license
IdoPerez/AirPnP
0badff3de357d4add3e262115310e5ffed5d1dab
785869469e7958e4d4acaf3f6a6ff7f0b5a07433
refs/heads/master
2023-06-05T01:16:14.054826
2021-06-23T06:16:55
2021-06-23T06:16:55
309,782,171
0
0
null
null
null
null
UTF-8
PlantUML
false
false
6,272
plantuml
@startuml title __USERPACKAGE's Class Diagram__\n namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.Order { - active : boolean - checkInTime : String - checkOutTime : String - currentUserUid : String - orderID : String - parkingHours : int - parkingSpaceID : String - price : double - tenantUID : String + Order() + getCheckInTime() + getCheckOutTime() + getCurrentUserUid() + getOrderID() + getParkingHours() + getParkingSpaceID() + getPrice() + getTenantUID() + isActive() + setActive() + setCheckInTime() + setCheckOutTime() + setCurrentUserUid() + setOrderID() + setParkingHours() + setParkingSpaceID() + setPrice() + setTenantUID() } } } namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.OrdersControl { {static} + ordersPath : String + userOrdersList : ArrayList<Order> {static} - ordersControl_instance : OrdersControl + createNewOrder() {static} + getInstance() - OrdersControl() } } } namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.ParkingSpace { - address : String - country : String - isActive : boolean - isAvailable : boolean - latitude : double - longitude : double - parkingSpaceCity : String - parkingSpaceID : String - parkingSpaceImages : ArrayList<String> - parkingSpaceName : String - parkingSpaceWorkingHours : String - price : double - size : int - userUID : String + ParkingSpace() + ParkingSpace() + getAddress() + getCountry() + getLatitude() + getLongitude() + getParkingSpaceCity() + getParkingSpaceID() + getParkingSpaceImages() + getParkingSpaceName() + getParkingSpaceWorkingHours() + getPrice() + getSize() + getUserUID() + isActive() + isAvailable() + setActive() + setAddress() + setAvailable() + setCity() + setCountry() + setLatitude() + setLongitude() + setParkingSpaceID() + setParkingSpaceImages() + setParkingSpaceName() + setParkingSpaceWorkingHours() + setPrice() + setSize() + setUserUID() + toString() } } } namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.ParkingSpaceControl { + parkingSpaceOnBooking : ParkingSpace + parkingSpacesList : ArrayList<ParkingSpace> {static} + parkingSpacesPath : String + userParkingSpacesList : ArrayList<ParkingSpace> {static} - parkingSpaceControl_instance : ParkingSpaceControl {static} + getInstance() + getParkingSpaceByAddress() + getParkingSpaceById() + isFitParkingSpace() - ParkingSpaceControl() } } } namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.ProfileActivity { {static} - IMAGE_REQUEST : int - imageUri : Uri - imageView : ImageView - user : User + onCreateOptionsMenu() + onOptionsItemSelected() + pickImage() # onActivityResult() # onCreate() - downloadProfileImage() - getUserUid() - uploadImage() } } } namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.ProfileControl { {static} + IMAGE_REQUEST_CODE : int - imageUri : String - profileContext : Context - profileImage : ImageView - user : User + ProfileControl() + downloadProfileImage() + isProfileImageEmpty() + uploadImage() } } } namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.User { - email : String - fullName : String - logImage : String - parkingSpaceID : ArrayList<String> - phoneNumber : String - userCars : ArrayList<UserCar> - userID : String + User() + addParkingSpace() + getEmail() + getFullName() + getLogImage() + getParkingSpaceID() + getPhoneNumber() + getUserCars() + getUserID() + setEmail() + setFullName() + setImage() + setPhoneNumber() + setUserCars() + setUserID() } } } namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.UserCar { - carName : String - carNumber : String - carSize : int + UserCar() + getCarName() + getCarNumber() + getCarSize() + setCarName() + setCarNumber() + setCarSize() } } } namespace com.example.airpnp { namespace UserPackage { class com.example.airpnp.UserPackage.UserInstance { {static} + currentUser : User } } } com.example.airpnp.UserPackage.OrdersControl o-- com.example.airpnp.Helper.FirebaseHelper : firebaseHelper com.example.airpnp.UserPackage.ProfileActivity o-- com.example.airpnp.Helper.FirebaseHelper : firebaseHelper com.example.airpnp.UserPackage.ProfileControl o-- com.example.airpnp.Helper.FirebaseHelper : firebaseHelper 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
c01bb229ea040801e8dd49eb8f751cab4b56849f
55261e1e9a841f514598d8fb0fbe95a7493460e3
/class/classes/logic/delegate.puml
b0a956e4c6a17d3c57d7dd94757a470d0723bf1a
[]
no_license
LucasIsasmendi/lisk-core-plantuml
ac01094fd56590b361ab8992b52f0cfc3175aa60
e0941f6e800dc16a9dc0f8367304149fbf2200e1
refs/heads/master
2021-01-21T11:53:42.861882
2017-05-24T12:56:58
2017-05-24T12:56:58
91,758,697
0
0
null
null
null
null
UTF-8
PlantUML
false
false
600
puml
@startuml class Delegate < logic > { - library - modules .. library .. - schema .. modules .. - accounts .. prototype .. + schema + dbTable: delegates + dbFields -- Methods -- + Delegate (schema) + bind (accounts) + create(data, trs) + calculateFee(trs, sender) + verify(trs, sender, cb) + process(trs, sender, cb) + getBytes(trs) + apply(trs, block, sender, cb) + undo(trs, block, sender, cb) + applyUnconfirmed(trs, sender, cb) + undoUnconfirmed(trs, sender, cb) + objectNormalize(trs) + dbRead(raw) + dbSave(trs) + ready(trs, sender) } @endtuml
6c200b796a42d6676823382a80dfb3407cac853c
fb6cdc303c504ac460aabff216b9eb7d6cbae95d
/src/main/java/com/bgzyy/design/uml/implement/Implements.puml
0cb1710824c922ee9aab416c3148624e6fca2761
[]
no_license
bgzyy/Design-Patterns
67484fd535fb7c41e22cc8122e274b470ca011c8
6e0a2853814708ead8eae7a72171e61f705b6409
refs/heads/master
2023-01-01T16:12:13.380936
2020-10-24T08:48:19
2020-10-24T08:48:19
306,841,209
0
0
null
null
null
null
UTF-8
PlantUML
false
false
174
puml
@startuml interface PersonService { +delete(Integer id): void } class PersonServiceBean { + delete(Integer id): void } PersonServiceBean ..|> PersonService @enduml
1e50cda0a63fd72872bb851092211ac35f4964d5
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProductChangeAssetNameAction.puml
e1f36af3c811130cc56d5c87c56ef822ad3192f9
[]
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
578
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 ProductChangeAssetNameAction [[ProductChangeAssetNameAction.svg]] extends ProductUpdateAction { action: String variantId: Long sku: String staged: Boolean assetId: String assetKey: String name: [[LocalizedString.svg LocalizedString]] } interface ProductUpdateAction [[ProductUpdateAction.svg]] { action: String } @enduml
e35826193c605e4370be0b4b4d43040f8e60f5e1
d81d6b8f596cb14a0b6d9cabc6172ef6ce284733
/modelo.plantuml
f81c177df1deedecb4fb39301248439142ceb0b2
[]
no_license
ivaneyvieira/erp
2dca612c692a046a4ef4dd4106cb8eb1bfeea750
e2205cfec5cac67f0ce67be37ddb9384b7dd5fcc
refs/heads/master
2021-01-11T12:38:30.128407
2017-02-14T00:16:53
2017-02-14T00:16:53
80,060,950
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,463
plantuml
@startuml package util { class Regiao { CharField nome Charfield sigla } class Estado { CharField nome Charfield sigla Regiao regiao } class Cidade { CharField nome Charfield ddd Estado regiao } Estado *-- Regiao Cidade *- Estado } package estoque { class Estoque { Lote lote DecimalFIeld quantidade Prateleira prateleira def acionar(quant) def subtrair(quant) } class Lote { CharField codigo DataField data_validade Produto produto } class Prateleira { CharField codigo Categoria categoria } class Categoria { CharField nome } class Produto{ CharField codigo CharField nome Marca marca Categoria categoria } class Marca{ CharField nome Fabricante fabricante } class Fabricante{ Charfield nome Charfield endereco Cidade cidade } Estoque *- Lote Estoque *-- Prateleira Lote *- Produto Prateleira *-- Categoria Produto *-- Marca Produto *-- Categoria Marca *-- Fabricante Fabricante *- Cidade } /' package compra { class PedidoCompra{ CharField numero DataField data_pedido FloatField frete IntFielde prazo Fornecedor fornecedor Comprador comprador } class ItemCompra{ Produto produto FloatField quantidade FloatField preco_unitario FloatField desconto FloatField acrescimo } class Fornecedor{ Charfield nome Charfield endereco Cidade cidade } class Comprador{ CharField nome } ItemCompra *- PedidoCompra ItemCompra *- Produto PedidoCompra *-- Fornecedor Fornecedor *-- Cidade Comprador *- PedidoCompra } package venda { class PedidoVenda{ CharField numero DataField data_pedido Vendedor vendedor Cliente cliente } class ItemVenda{ Produto produto FloatField quantidade FloatField preco_unitario } class Cliente{ CharField nome } class Vendedor{ CharField nome } ItemVenda *- PedidoVenda ItemVenda *- Produto PedidoVenda *-- Cliente PedidoVenda *-- Vendedor Cliente *- Cidade }'/ @enduml
ee9481f0c1f06f482317705d413b557edf05cb1d
c20111eca6096b2f9929d7760a85fea2605008bc
/PacMan-Java.plantuml
3eb18029fb4b09b5ccdbe7aae68516776a9a45a6
[]
no_license
SimonGaufreteau/PacMan-Java
1ae116ea1161c5fbaa44c5b90916cc837892f956
aa0f6e1f87136a5bb21225789eef265cb8d09778
refs/heads/master
2022-06-30T10:04:25.181359
2020-05-12T14:51:07
2020-05-12T14:51:07
241,430,198
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,010
plantuml
@startuml title __PACMAN-JAVA's Class Diagram__\n namespace Controller { class Controller.BindingController { } } namespace Controller { class Controller.EventController { } } namespace Modele { enum Depl { } } namespace Modele { abstract class Modele.Entity { } } namespace Modele { class Modele.Ghost { } } namespace Modele { class Modele.ModelGrid { } } namespace Modele { enum ObjDynam { } } namespace Modele { enum ObjStatic { } } namespace Modele { class Modele.SimplePacMan { } } namespace Vue { class Vue.MainVue { } } namespace Vue { namespace asks { class VueTasks.DisplayThread { } } } namespace Vue { namespace asks { class VueTasks.EndOfGameTask { } } } namespace Vue { namespace asks { class VueTasks.LivesTask { } } } Controller.EventController o-- Modele.ModelGrid : modelGrid Controller.EventController o-- Modele.SimplePacMan : spm Modele.Entity o-- Modele.Depl : direction Modele.Entity o-- Modele.ModelGrid : modelGrid Modele.Ghost -up-|> Modele.Entity Modele.ModelGrid .up.|> java.lang.Runnable Modele.ModelGrid o-- Modele.SimplePacMan : spm Modele.SimplePacMan -up-|> Modele.Entity Modele.SimplePacMan o-- Modele.Depl : cachedDirection Vue.MainVue -up-|> javafx.application.Application VueTasks.DisplayThread -up-|> javafx.concurrent.Task VueTasks.DisplayThread o-- Modele.ModelGrid : modelGrid VueTasks.EndOfGameTask -up-|> javafx.concurrent.Task VueTasks.EndOfGameTask o-- Modele.ModelGrid : modelGrid VueTasks.LivesTask -up-|> javafx.concurrent.Task VueTasks.LivesTask o-- Modele.SimplePacMan : simplePacMan 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
7a7fc916c0aabe6e387671baee2a5fe89eec0709
a0552549f1c729d1888fc8ffabe1c138ffb29719
/Hometask_7/ru/geekbrains/chat/Chat.puml
4a77ecf1ebf6277b2599e257fac8e856c77956ca
[]
no_license
krllgglv/Javalevel_2
e1bba52e29b0a37add6ff740eead86c65423de0e
0c9972248aeda60004d6fecea945a27448f789a2
refs/heads/main
2023-01-30T13:39:34.648497
2020-12-16T21:27:53
2020-12-16T21:27:53
313,861,721
0
0
null
2020-12-16T21:33:06
2020-11-18T07:54:45
Java
UTF-8
PlantUML
false
false
779
puml
@startuml interface Chat { +{abstract} broadcastMessage(message: String): void +{abstract} subscribe(client: ClientHandler): void +{abstract} unsubscribe(client: ClientHandler): void +{abstract} isNicknameOccupied(nickname: String): boolean +{abstract} getAuthenticationService(): AuthenticationService } class ServerChat implements Chat { - serverSocket: ServerSocket - clients: Set<ClientHandler> - authenticationService: AuthenticationService } class ClientHandler { - name: String - in: InputStream - out: OutputStream - socket: Socket - chat: Chat + sendMessage(message: String) + receiveMessage() + getName(): String } class AuthenticationService { String findNicknameByLoginAndPassword(); } @enduml
889e7017678f332e3e8267198590959f919b6b73
4b456c3a5feaa7361c4e4496f9d57ca37e1685ee
/uml/ToDoList.puml
7dd23ca749e56ae1a5065b4ce8a48d18e70c86df
[]
no_license
rafuchosnow/nieves-cop3330-assignment4
9fcf8817c8ae6a996dbfd56c00ea951e7b21a5b4
fa8da8ca21e5fccb93a2ebc06bff1d3a5966ac8e
refs/heads/master
2023-06-05T19:07:05.887774
2021-07-06T03:12:44
2021-07-06T03:12:44
383,319,029
0
0
null
null
null
null
UTF-8
PlantUML
false
false
785
puml
@startuml 'https://plantuml.com/class-diagram class ToDoList { + main() + start() } class MainMenuController { - Show all user created lists - Create new lists - Delete lists - Save lists - Load lists + createList() + deleteList() + editName() + saveOneList() + saveAllList() + loadOneList() + loadAllList() } class ListItemsController { - Show all user created items - Add new items to list - Remove items from list - Edit items from list - Sort items + addItem() + removeItem() + editItem() + markComplete() + sortAll() + sortIncomplete() + sortComplete() } javafx.Application <|-- ToDoList ToDoList - MainMenuController MainMenuController -- ListItemsController @enduml
e292ba76a70936e71a4dc7e796d55a76b3dcc02b
2949b4b5262b0ab2b73dfa53c21781aa1db626ca
/server/include/output.puml
a56f39169440967c117e51451485d0f709574de1
[ "BSL-1.0" ]
permissive
Sascha8a/MapReduce
68ce91dbf392184b7d87307b409b16f462891a08
ae8add3e78d6ef37f5a32658dba1cd501edb1099
refs/heads/master
2020-04-18T18:44:21.108648
2019-03-10T19:36:24
2019-03-10T19:36:24
167,693,534
1
1
null
null
null
null
UTF-8
PlantUML
false
false
3,502
puml
@startuml /' Objects '/ class APIServer { +APIServer(int port, Master* master, bool debug) +~APIServer() -_master : Master* -_thread : std::thread -start_data_receiver(short unsigned int port, long num_code_chunks, long num_data_chunks) : void -start_server(short unsigned int port) : void } class FIFOScheduler { +FIFOScheduler(bool debug) +~FIFOScheduler() -_full_nodes : std::map<long, SchedulerNode> -_node_mutex : std::mutex -_free_nodes : std::queue<SchedulerNode> -_tasks : std::queue<Task> -_loop_thread : std::thread +add_node(std:: string) : void +add_task(std:: string) : void -add_task(Task) : void +operator()() : void -send_to_node(Task, SchedulerNode) : void +task_done(long id) : void -update() : void } class JobTracker { +JobTracker(long id, FIFOScheduler* scheduler, std::vector<std::string> chunks, std::string code) +~JobTracker() -_scheduler : FIFOScheduler* -_job_id : long -_map_tasks_left : long -_reduce_tasks_left : long +get_status() : mapreduceAPI::JobStatus -_console : std::shared_ptr<spdlog::logger> -_code : std::string -_map_results : std::unordered_map<std::string, std::vector<long> > +get_results() : std::vector<std::pair<std::string , long> > -_results : std::vector<std::pair<std::string, long> > -_input : std::vector<std::string> -_map_keys : std::vector<std::string> +mapped(mapreduce:: MappedJob) : void +reduced(mapreduce:: ReducedJob) : void -start_map() : void -start_reduce() : void } class Master { +Master(bool debug) -_scheduler : FIFOScheduler +JobStart(grpc::ServerContext* context, const mapreduce::NewJob* job, mapreduce::Empty* response) : grpc::Status +RegisterNode(grpc::ServerContext* context, const mapreduce::NewNode* node, mapreduce::Empty* response) : grpc::Status +TaskDone(grpc::ServerContext* context, const mapreduce::Task* task, mapreduce::Empty* response) : grpc::Status +StartJob(std::vector<std::string> chunks, std::string code) : long +get_status(long job_id) : mapreduceAPI::JobStatus +get_results(long job_id) : std::vector<std::pair<std::string , long> > -_nodes : std::vector<std::string> +clear_results(long job_id) : void } ' class Node { ' +Node(std::string node_uri, bool debug) ' +JobGet(grpc::ServerContext* context, const mapreduce::Empty* request, mapreduce::Job* response) : grpc::Status ' +JobMapped(grpc::ServerContext* context, const mapreduce::MappedJob* job, mapreduce::Empty* response) : grpc::Status ' +JobReduced(grpc::ServerContext* context, const mapreduce::ReducedJob* job, mapreduce::Empty* response) : grpc::Status ' +StartTask(grpc::ServerContext* context, const mapreduce::Task* task, mapreduce::Empty* response) : grpc::Status ' -_job_id : long ' -_task_id : long ' -_chunk : std::string ' -_master_uri : std::string ' -_own_uri : std::string ' -_reduce_key : std::string ' +write_code_file(const long id, const mapreduce::CodeExt ext, const std::string code) : std::string ' -_reduce_values : std::vector<int> ' +clean() : void ' +register_at_master(std::string uri) : void ' +start_code_file(const mapreduce::CodeExt ext, const std::string code_localtion) : void ' } class SchedulerNode { +free : bool +connstr : std::string } class Task { +id : long +job : std::string } /' Inheritance relationships '/ /' Aggregation relationships '/ Master o-- JobTracker APIServer ..> Master JobTracker ..> FIFOScheduler FIFOScheduler o-- SchedulerNode FIFOScheduler o-- Task Master o-- FIFOScheduler @enduml
08fb5492c9acf0e30d076a464562f900ddd10843
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/State/SequenceHierarchy.puml
74897ee097b3e9b292eeb911f462682c669e4952
[]
no_license
TakanoVineYard/AMHH
215a7c47049df08c5635b501e74f85137b9e985b
68887a313587a2934fb4ceb2994cbc2a2191d6a3
refs/heads/master
2023-01-13T02:08:02.787083
2020-11-17T14:51:57
2020-11-17T14:51:57
303,631,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,706
puml
@startuml class SequenceHierarchy { + count : int <<get>> + {static} CreateInstance() : SequenceHierarchy + Init(owner:WindowState) : void OnValidate() : void + Add(asset:TimelineAsset, director:PlayableDirector, hostClip:TimelineClip) : void + Remove() : void + GetStateAtIndex(index:int) : ISequenceState + RemoveUntilCount(expectedCount:int) : void + Clear() : void + ToSequencePath() : SequencePath + NeedsUpdate(path:SequencePath, forceRebuild:bool) : bool + FromSequencePath(path:SequencePath, forceRebuild:bool) : void Add_Internal(asset:TimelineAsset, director:PlayableDirector, hostClip:TimelineClip) : void Remove_Internal() : void RemoveUntilCount_Internal(expectedCount:int) : void Clear_Internal() : void UpdateSerializedPath() : void {static} ValidateSubElements(subElements:List<SequencePathSubElement>, director:PlayableDirector, buildingBlocks:List<SequenceBuildingBlock>) : bool {static} AddToCurrentUndoGroup(target:Object) : void } class "List`1"<T> { } class "IEnumerable`1"<T> { } class SequenceBuildingBlock <<struct>> { } ScriptableObject <|-- SequenceHierarchy SequenceHierarchy o-> "m_Sequences<ISequenceState>" "List`1" SequenceHierarchy --> "m_WindowState" WindowState SequenceHierarchy --> "m_SerializedPath" SequencePath SequenceHierarchy --> "masterSequence" ISequenceState SequenceHierarchy --> "editSequence" ISequenceState SequenceHierarchy --> "allSequences<ISequenceState>" "IEnumerable`1" SequenceHierarchy +-- SequenceBuildingBlock SequenceBuildingBlock --> "asset" TimelineAsset SequenceBuildingBlock --> "director" PlayableDirector SequenceBuildingBlock --> "hostClip" TimelineClip @enduml
b96ac424442ad2d7a0f271e764f1233ff0709591
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/DeliveryAddressSetMessagePayload.puml
297022d94b69e78bec4379713fa02b8b1745939d
[]
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
559
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 DeliveryAddressSetMessagePayload [[DeliveryAddressSetMessagePayload.svg]] extends OrderMessagePayload { type: String deliveryId: String address: [[Address.svg Address]] oldAddress: [[Address.svg Address]] shippingKey: String } interface OrderMessagePayload [[OrderMessagePayload.svg]] { type: String } @enduml
49283f116caedd7b0f4924486a9b1952b9e8b6c7
b19e1cd9af26a9f3cb65823e1a7885ce278337fe
/documentation/productApi/serviceability/site/media/src/siteModelNoErrors.puml
198ed933c4fc0142377d4786d51303e8edb16e31
[ "Apache-2.0" ]
permissive
MEF-GIT/MEF-LSO-Sonata-SDK
969c3717fba3fffa009bf3a5de65337b2caccaaf
6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f
refs/heads/working-draft
2023-07-07T02:17:11.649855
2023-06-23T09:30:18
2023-06-23T09:30:18
90,886,429
33
32
Apache-2.0
2023-01-05T23:58:23
2017-05-10T16:38:08
null
UTF-8
PlantUML
false
false
2,296
puml
@startuml skinparam { ClassBackgroundColor White ClassBorderColor Black } class FieldedAddress { city*: string country*: string locality: string postcode: string postcodeExtension: string stateOrProvince: string streetName*: string streetNr: string streetNrLast: string streetNrLastSuffix: string streetNrSuffix: string streetSuffix: string streetType: string } GeographicAddressRefOrValue <|-- FieldedAddress FieldedAddress *--> GeographicSubAddress : geographicSubAddress class FormattedAddress { addrLine1*: string addrLine2: string city*: string country*: string locality: string postcode: string postcodeExtension: string stateOrProvince: string } GeographicAddressRefOrValue <|-- FormattedAddress class GeographicAddressLabel { externalReferenceId*: string externalReferenceType*: string } GeographicAddressRefOrValue <|-- GeographicAddressLabel class GeographicAddressRef { href: string id*: string } GeographicAddressRefOrValue <|-- GeographicAddressRef class GeographicAddressRefOrValue { @schemaLocation: uri @type*: string } class GeographicSite { id*: string href: string description: string name: string companyName: string customerName: string siteType: MEFSiteType @type: string } GeographicSite *-->"*" GeographicAddressRefOrValue : place GeographicSite *-->"*" RelatedContactInformation : relatedContactInformation class GeographicSubAddress { buildingName: string levelNumber: string levelType: string privateStreetName: string privateStreetNumber: string } GeographicSubAddress *-->"*" MEFSubUnit : subUnit class MEFGeographicPoint { spatialRef*: string x*: string y*: string z: string } GeographicAddressRefOrValue <|-- MEFGeographicPoint class MEFSubUnit { subUnitNumber*: string subUnitType*: string } class RelatedContactInformation { emailAddress*: string name*: string number*: string numberExtension: string organization: string role*: string } RelatedContactInformation *--> FieldedAddress : postalAddress enum MEFSiteType { public private } @enduml
5ff48051c5d1da12b09e1a122011447930d28ade
7fa36a74f66a756af4c4da30b653136c249889d5
/diagram.puml
ee634d6342afa28016dc411c3f676f630f133de2
[]
no_license
turizaz/elevator
dafc17acc679a82bfe04015bfcc529bc5391c6fc
2422ecfaf390015fd969017392e5c6acd8e800fe
refs/heads/master
2021-07-11T22:47:11.946600
2017-10-12T18:13:40
2017-10-12T18:13:40
106,728,696
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,948
puml
@startuml class AbstractElevatorController { +addRequest() +handleRequest() } class CivilElevatorController extends AbstractElevatorController { +addRequest() +handleRequest() } class ChecksController { -peopleLimit : Integer +runChecks() +countPeople() +setPeopleLimit() +checkSmoke() } class DoorsController implements DoorsInterface { + open() + close() } class EngineController implements EngineInterface{ #rotateEngine() +moveToTheFloor() } class PersonModel implements RequestInterface { -requests : Array +addRequest() +getRequests() } class RequestModel { -floor : Integer -direction : Mixed } interface EngineInterface { +moveToTheFloor() } interface QueueServiceInterface { +removeFromQueue() +printFloorMessage() +getRequestQueue() +getNextFloor() +getCurrentFloor() +getDirection() } interface DoorsInterface { + open() + close() } interface RequestInterface { +addRequest() } class QueueService implements QueueServiceInterface, RequestInterface{ -requestQueue : Array -currentFloor : Integer -direction : Mixed +addRequest() +handleQueue() +getDirection() +getCurrentFloor() +printFloorMessage() +getNextFloor() +removeFromQueue() +assignCurrentFloor() +getRequestQueue() } PersonModel "1" <-- "many" RequestModel CivilElevatorController "1" o-- "many" PersonModel CivilElevatorController "1" <-- "1" QueueService CivilElevatorController "1" <-- "1" ChecksController CivilElevatorController "1" <-- "1" DoorsController CivilElevatorController "1" <-- "1" EngineController @enduml;
8f4d2b52e5ce1c58ed4d2214b91a3efe11d77104
f5f59016295a183565af167a861e2c8db9f1b070
/diagrams/src/Application/Models/DataTransferObjects/CompleteProjectDto.puml
5fbde06c833afcea3fcf299f72caacb58c0aa94c
[ "MIT" ]
permissive
converge-app/collaboration-broker-service
fb21788289134c265f1cd5db3ceaa3f32ba18406
69c676a5bbb3e602f939f9c91680560a6c63926a
refs/heads/master
2023-03-19T11:36:58.937045
2019-12-17T12:06:26
2019-12-17T12:06:26
218,333,241
0
0
MIT
2023-03-04T01:16:20
2019-10-29T16:29:32
C#
UTF-8
PlantUML
false
false
88
puml
@startuml class CompleteProjectDto { + ProjectId : string <<get>> <<set>> } @enduml
f29ea29a36f04311a701e8bf1efea258fc8791e3
7eca7da2664df79ce02d1e6e1e8d0fba56b1416d
/src/junior/contactlist/simple.puml
558955d371055b5d30b5261efe078d4150c2de18
[ "MIT" ]
permissive
AlinaMantaluta/0-java-fundamentals
64b0b61816eb22e0c65aecae76856d0cdadfa62d
485df66dc8906f403c921b3ca06b3e9a0dd0a9a4
refs/heads/master
2022-01-11T11:48:17.695762
2019-07-14T20:12:19
2019-07-14T20:12:19
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,431
puml
@startuml abstract class Contact { long id String firstName String lastName String phone String email } class Colleague { String department String company } class Friend { String personal-phone String personal-email } Contact <|-- Colleague Contact <|-- Friend interface ContactsRepository ContactsRepository : int create(Contact conta ContactsRepository : Contact read(int contact ContactsRepository : List<Contact> readAll() ContactsRepository : update(Contact contact) ContactsRepository : delete(int contact) ContactsRepository : delete(Contact contact) interface ContactsController ContactsRepository <|-- InMemoryContactsRepo ContactsRepository <|-- SQLiteContactsRepo note bottom: SQLite is a possible implementation and not covered in this material ContactsService : int create(Contact contact) ContactsService : Contact read(int contactId) ContactsService : List<Contact> readAll() ContactsService : update(Contact contact) ContactsService : delete(int contact) ContactsService : delete(Contact contact) ContactsService *-- ContactsRepository ContactsController : run() ContactsController <|-- ConsoleController ContactsController <|-- WebController note bottom: Web + HTML is a possible implementation, not covered in this material WebController *-- HtmlView WebController *-- ContactsService ConsoleController *-- ConsoleView ConsoleController *-- ContactsService @enduml
05921acac1e9f99d8f0e09dac35059a6fada5078
de160b287757fb496b2114d89a9d4bfc23cf79c4
/uml/ToDoDiagram.puml
89acb80f5209be378be0ff0be306b5b47553b570
[]
no_license
alex-williams-git/williams-cop3330-assignment4
f570ecc4195e5a3677dd31a7791c1fab1e0c4bad
b95190ebac5980bb53e149077c23a0f2d27a2fda
refs/heads/master
2023-08-19T13:28:00.808207
2021-11-01T21:41:09
2021-11-01T21:41:09
423,623,975
0
0
null
null
null
null
UTF-8
PlantUML
false
false
807
puml
@startuml 'https://plantuml.com/class-diagram class App{ public static void main() public void start() } class Controller{ public void initialize() public void addEvent() private void refresh() public void removeList() public void changeStatus() public void clearList() public void showComplete() public void showIncomplete() public void showAll() public void importFile() public void exportFile() public void editDescription() public void editDueDate() public void addToDoItem() public void removeToDoItem() public void editToDoItemDescription() public void editToDoItemDate() public void seeList() } class Event{ private String description; private LocalDate date; private String status; private HashMap<LocalDate, String> toDoItems; getters() setters() public Event() } Event *-- Controller @enduml
0df70dfee05833574d240cb33b0833c30f18f2e3
61e0aa13654420932c8ec32cbf119c85db341bf4
/uml/App.puml
782d298a7454c3943ba1e1fd624acec369be447b
[]
no_license
ifeoma2000/chukwu-cop3330-assignment4
6c81ccee42fcc9b1e75d00aa21c099052b3b8bba
6811a621a1f935f1901e8be5849ba3b60a02503f
refs/heads/master
2023-06-09T12:41:00.838197
2021-07-06T04:06:02
2021-07-06T04:06:02
383,335,108
0
0
null
null
null
null
UTF-8
PlantUML
false
false
156
puml
@startuml 'https://plantuml.com/class-diagram class App { +addList(List item): void +removeList(int index): void +save(): void +load(): void } @enduml
f1e3c71c2fcd07ab65c098049949ec922f9f1e44
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Editor/TMP_PostBuildProcessHandler.puml
889af3d484860e5ad188ecebb64c16365852633c
[]
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
144
puml
@startuml class TMP_PostBuildProcessHandler { + {static} OnPostprocessBuild(target:BuildTarget, pathToBuiltProject:string) : void } @enduml
d4efcb064d636977a21bc9da9fa3aef1388efc18
94ea2b59cf94f1b10378e5205d9fd6348eaac61d
/docs/uml/class_diagram/view.plantuml
99342243b3517198b25c68520a5e797448e5ffae
[]
no_license
vltmn/qdio
80807206c2d959c7b610152c5fee458fab414c87
25b04fec1236d7ed93e6b859ee62fc4717aac7c3
refs/heads/master
2022-11-19T04:21:55.713787
2020-07-13T17:51:56
2020-07-13T17:51:56
279,373,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
974
plantuml
@startuml class WelcomeActivity { } class MainActivity { } class RoomDiscoveryActivity class RoomDiscoveryViewModel RoomDiscoveryActivity --> RoomDiscoveryViewModel class TrackListAdapter { {static} class ViewHolder } package fragments { package playing { class PlayingStatusFragment class PlayingStatusViewModel PlayingStatusFragment -> PlayingStatusViewModel } package queuelist { class QueueListFragment class QueueListFragmentViewModel QueueListFragment -> QueueListFragmentViewModel } package search { class SearchFragment class SearchFragmentViewModel SearchFragment -> SearchFragmentViewModel } } SearchFragment --> TrackListAdapter QueueListFragment --> TrackListAdapter WelcomeActivity .> MainActivity WelcomeActivity .> RoomDiscoveryActivity MainActivity --> QueueListFragment MainActivity --> PlayingStatusFragment MainActivity --> SearchFragment @enduml
2ed57a3f9d84a888429eedcd30ee621c606a069d
2f935fa4bf6fed0000b7c1ab66b7b51c4937420a
/test6/puml/类图.puml
780dd03192469fb441ef8c7210bd11fb44dcbd59
[]
no_license
Eternity-hj/is_analysis
880ad2f72f0216ea1ccca113e9602138c671fbb9
56d15e44b6ff011d68e1b06e5f83f474f8dbf06a
refs/heads/master
2022-07-17T23:34:59.595439
2020-05-14T08:21:07
2020-05-14T08:21:07
247,240,238
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,368
puml
@startuml title 基于GitHub的实验管理平台--类图 class users { <b>user_id</b> (用户ID) name (用户真实姓名) github_username (用户GitHub账号) update_date (用户GitHub账号修改日期) password (用户密码) disable (用户是否禁用) } class teachers{ <b>teacher_id</b> (老师工号) teacher (教师名称) department (老师所属部门) courses(教授课程) courses_id(课程编号) } class students{ <b>student_id</b> (学号) class (班级) result_sum(成绩汇总) courses(所选课程) courses_id(课程编号) } users <|- students users <|-- teachers class grades { <b>student_id</b> (学号) courses_test(实验课程) test_id (实验编号) result (分数) memo (评价) update_date (评改日期) } class courses { <b>courses_id</b> (课程编号) teachers_id (教师编号) courses (课程名称) teachers (教师名称) students(学生姓名) students_id(学生学号) } class tests { <b>test_id</b> (实验编号) courses_test(实验课程) title (实验名称) } students "1" -- "n" grades tests "1" -- "n" grades courses "n" -- "1" students courses "n" -- "1" teachers @enduml
c4485e4253798157679769e205285077724100b8
694fd70b693c9670161b2492ece407123bf11cad
/plantuml/designpattern/concept-bridge-0-1.plantuml
0bbfac99ee34a17c65c6e9c81eb1b187f425a8bb
[ "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
102
plantuml
@startuml class Base { methodA(); } class BaseGood { methodGoodA(); } Base <|-- BaseGood @enduml
2e283137f2dee176cdd6e31cc62ea042864e4d2c
e4f51edad591af7215d5beaed57edc9f0d0ae8b1
/src/main/java/ex45/ex45.puml
be60b91c8ed59067ff3e123d57111e872e7a0677
[]
no_license
goodwinalexjr/goodwin-cop3330-assignment3
4e111a3b3f9a21d75de776ae153a96b4aeb9cda4
24bfe4be1465630aa4296c878e314084b062bf1e
refs/heads/master
2023-05-29T23:57:12.244285
2021-06-21T01:00:45
2021-06-21T01:00:45
378,720,447
0
0
null
null
null
null
UTF-8
PlantUML
false
false
275
puml
@startuml 'https://plantuml.com/class-diagram abstract class App abstract class wordFinder abstract class output wordFinder <|-- App App <|-- wordFinder output <|-- App class App { Input readfile } class wordFinder{ String Finding } class output{ void output } @enduml
7fa3470bc8411aa08c4a81cf0a9362f1a6129620
dc20115738d63d9d0dbd16fab019785740465cc7
/plantuml/Users/hunter/Coding/maternity-ward-system/IDecisionMaker.puml
8fe2a78ea805f3e88ea4628d9c24066c59b41d56
[]
no_license
W0lfCr0w/maternity-ward-system
b2a9201111079ce3f638ff78cadb6aa9ecb4e04f
ee9aac0f52841c4083f1666dc4628f9c0d9b34af
refs/heads/main
2023-06-06T10:33:10.231707
2021-06-29T10:20:54
2021-06-29T10:20:54
379,371,068
0
0
null
null
null
null
UTF-8
PlantUML
false
false
209
puml
@startuml interface IDecisionMaker { + UniqueJobDescripition : string <<get>> + MinimumMonthlyHours : int <<get>> + GetDecisionMakerBonusPay() : double } IMinorEmployee <|-- IDecisionMaker @enduml
2f03f6d861e0fcf6fecea66aa372c5d0dae37c24
0c3b4838bc9202ddfa55ccb9b407a9c9c923f522
/uml/plan.puml
5b2196c01435abfc8b83543b03bd2395723c63c8
[]
no_license
kiraedds/media_player
5cb553afcedb8a1e9b045fd36f5912b44dc462ca
02a4c7b4c22edee16cf9e3a6e8bddac16e659a58
refs/heads/master
2022-01-22T23:34:54.111552
2019-01-30T18:45:42
2019-01-30T18:45:42
197,837,373
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,015
puml
@startuml namespace odtwarzacz { interface Main { + void execute() } class MainWindow{ + explicit MainWintow(QWiget*) } Main <|-- MainWindow class init { - QVideoWidget* videoWidget; - QMediaPlayer* mediaPlayer; - QSlider* currentContentSlider; - QLabel* currentContentDuration; + explicit MainWintow(QWiget*); } class initLayout { - QBoxLayout* displayLayout; - QHBoxLayout* hLayout; - QBoxLayout* boxLayout; - QSlider* currentContentSlider; - QLabel* currentContentDuration; + explicit MainWintow(QWiget*); } class initSignalAndSlots { - QSlider* currentContentSlider; + explicit MainWintow(QWiget*); } initLayout <|-- init initSignalAndSlots <|-- init class UpdateDurationInfo { - qint64 currentInfo; - qint64 duration; + explicit MainWintow(QWiget*); } class on_actionOpen_triggered { - QMediaPlayer* mediaPlayer; + explicit MainWintow(QWiget*); } class on_actionPlay_triggered { - QMediaPlayer* mediaPlayer; + explicit MainWintow(QWiget*); } class on_actionPause_triggered { - QMediaPlayer* mediaPlayer; + explicit MainWintow(QWiget*); } class on_actionMute_toggled { - QMediaPlayer* mediaPlayer; + explicit MainWintow(QWiget*); } class on_actionFull_Screen_triggered { - QMediaPlayer* mediaPlayer; + explicit MainWintow(QWiget*); } class on_actionVolume_Change { - QMediaPlayer* mediaPlayer; + explicit MainWintow(QWiget*); } MainWindow <|-- init MainWindow <-- UpdateDurationInfo MainWindow <-- on_actionOpen_triggered MainWindow <-- on_actionPlay_triggered MainWindow <-- on_actionPause_triggered MainWindow <-- on_actionMute_toggled MainWindow <-- on_actionFull_Screen_triggered MainWindow <-- on_actionVolume_Change class positionChanged { - QSlider* currentContentSlider; } UpdateDurationInfo <|-- positionChanged } @enduml
e4048b929d9eaf191e6884e4f48eaa7253e6de40
7549fa1a44c66a40ca946e6b569e8f14afeb2887
/src/main/java/ex45/ex45.puml
987fb16fcb2ae4da89bff9724d9dcef646252b5a
[]
no_license
Urimus3600/Mathew-cop3330-assignment3
8300e7358dc53e27e8377941ce7461233938995d
0b52281c5b3cf6baafb6b35416403beca0b7bdcd
refs/heads/master
2023-09-04T17:57:11.561509
2021-10-12T06:12:46
2021-10-12T06:12:46
416,103,880
0
0
null
null
null
null
UTF-8
PlantUML
false
false
234
puml
@startuml 'https://plantuml.com/sequence-diagram class App{ +main(String [] args): int +out(String file): void } App <-- exercise45_input.txt: Error String App <- SystemIn: Output File Name Output.txt <|-- App: Changed String @enduml
cc0aeba58562c557d10b106052fdedab13590740
72e0d65cb502431500578350accc1ec3e7423065
/2015-11-CDI-Forge-uni/slides/diagrams/spi_extensions.puml
aefebc9b424efa9b561de2bbe0cd322cddffeb5a
[ "MIT", "CC-BY-4.0" ]
permissive
agoncal/agoncal-talks
a089d816cdcedeb8b00e3ac44198f69322ad44b5
e95c9d28077867034c2df4f868ceba9383f6373a
refs/heads/master
2022-12-05T00:27:03.272910
2022-11-23T14:02:47
2022-11-23T14:02:47
69,746,105
9
5
null
2022-06-24T01:42:35
2016-10-01T15:20:56
HTML
UTF-8
PlantUML
false
false
1,856
puml
@startuml skinparam shadowing false skinparam defaultFontName Consolas interface BeforeBeanDiscovery { +addQualifier(Class<? extends Annotation>) +addScope(Class<? extends Annotation>, boolean, boolean) +addStereotype(Class<? extends Annotation>, Annotation[]) +addInterceptorBinding(Class<? extends Annotation>, Annotation[]) +addAnnotatedType(AnnotatedType<?>) } interface AfterTypeDiscovery { +List<Class<?>> getAlternatives() +List<Class<?>> getInterceptors() +List<Class<?>> getDecorators() +addAnnotatedType(AnnotatedType<?>, String) } interface AfterDeploymentValidation { } interface BeforeShutdown { } interface AfterBeanDiscovery { +addBean(Bean<?>) +addObserverMethod(ObserverMethod<?>) +addContext(Context) +AnnotatedType<T> getAnnotatedType(Class<T>, String) +Iterable<AnnotatedType<T>> getAnnotatedTypes(Class<T>) } interface ProcessAnnotatedType<X> { +AnnotatedType<X> getAnnotatedType() +void setAnnotatedType(AnnotatedType<X>) +veto() } interface ProcessBean<X> { +Annotated getAnnotated() +Bean<X> getBean() } interface ProcessBeanAttributes<T> { +Annotated getAnnotated() +BeanAttributes<T> getBeanAttributes() +setBeanAttributes(BeanAttributes<T>) +veto() } interface ProcessInjectionPoint<T, X> { +InjectionPoint getInjectionPoint() +setInjectionPoint(InjectionPoint) } interface ProcessInjectionTarget<X> { +AnnotatedType<X> getAnnotatedType() +InjectionTarget<X> getInjectionTarget() +setInjectionTarget(InjectionTarget<X>) } interface ProcessObserverMethod<T, X> { +AnnotatedMethod<X> getAnnotatedMethod() +ObserverMethod<T> getObserverMethod() } interface ProcessProducer<T, X> { +AnnotatedMember<T> getAnnotatedMember() +Producer<X> getProducer() +setProducer(Producer<X>) } @enduml
2a64af636f3e3502319687e79f01456c5fea93db
8027cf7efd20de4c35b95454e547d7c24d6eaad7
/ClassChampionnatDeSki.puml
0bc63b5b72cf63a09d042e5f8e1adf7de1ae1158
[]
no_license
SofianeMohamedStd/conceptionProjetSki
a7f53755a312cf12f383969342c6e1116752a58b
78214f7a72d414c7c18400bbb56bcd9dda6077e8
refs/heads/main
2022-12-26T03:54:27.782170
2020-10-15T22:09:20
2020-10-15T22:09:20
304,458,611
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,263
puml
@startuml class Participants class Categories class Profils class Epreuves Class Passage Class Resultat Categories *-- Participants Profils *-- Participants Participants *-- Passage Epreuves *-- Passage (Participants, Passage) . Resultat Participants -- Epreuves (Participants,Epreuves) . Participe class Profils { id -NomProfil insert() update() delate() getlisteProfil():list } class Categories { id -NomCategorie insert() update() delate() getListeCategorie():list } class Participants { id -nom string -prenom string -date de naissance date -email string -profil profils -categorie categorie -photo Bloob -insertParticipant() -updateParticipant() -deleteParticipant() } class Epreuves { id -Lieu string -date date createEpreuve() updateEpreuve() DelateEpreuve() } class Participe { participant participants Epreuve Epreuves getEpreuveParticipant():list getListeParticipants():list importResultatCSV() } class Passage { id -NumPassage integer -Epreuve Epreuves getNumpassage() } class Resultat { id -passage Passage -participant participant -temps time TransfereResultaCSV() calculeMoyenne() classementGeneral():list classementCategorie():list classementAge():list } @enduml
3918221255074558e267ad41cc7c9d7668fcc0c7
ed006f8e98c20dfd1fe16065e9037b6c8efc511d
/doc/design/diagrams/request_response/untyped_api.puml
acf733a2321a4dcf5c029389d6138a79937d1738
[ "Apache-2.0", "BSD-3-Clause", "MIT", "LicenseRef-scancode-generic-export-compliance" ]
permissive
phongt/iceoryx
939343855cc4bbe1610ce7c7ed504539a943f795
efc697cf67a8bc8aedf3d123e2c9df582a5aeb83
refs/heads/master
2023-07-26T03:36:03.492954
2023-07-19T08:29:19
2023-07-19T08:29:19
237,723,029
0
0
Apache-2.0
2023-07-21T19:33:59
2020-02-02T05:23:34
C++
UTF-8
PlantUML
false
false
1,319
puml
@startuml class UntypedClient { UntypedClient(serviceDescription: ServiceDescription&, clientOptions: ClientOptions&) getUid(): UniquePortId getServiceDescription(): ServiceDescription& connect(): void disconnect(): void getConnectionState(): ConnectionState loan(payloadSize: uint32_t, payloadAlignment: uint32_t): expected<void*, AllocationError> send(requestPayload: void*): expected<ClientSendError> releaseRequest(requestPayload: void*): void hasResponses(): bool take(): expected<void*, AllocationError> releaseResponse(responsePayload: void*): void releaseQueuedResponses(): void hasMissedResponses(): bool } class UntypedServer { UntypedServer(serviceDescription: ServiceDescription&, serverOptions: ServerOptions&) getUid(): UniquePortId getServiceDescription(): ServiceDescription& offer(): void stopOffer():void isOffered(): bool hasClients(): bool hasRequests(): bool take(): expected<void*, ServerRequestResult> releaseRequest(requestPayload: void*): void releaseQueuedRequests(): void hasMissedRequests(): bool loan(requestHeader: RequestHeader*, payloadSize: uint32_t, payloadAlignment: uint32_t): expected<void*, AllocationError> send(responsePayload: void*): expected<ServerSendError> releaseResponse(responsePayload: void*): void } @enduml
5a0497da76e07fb62d4d114b0cda98ae1ffbe148
188aa3bd1c4fc0a88cab9726c2f2299f147e70d8
/docs/UC_03/MD.puml
7e850e53a78b917e34a2f5a14d064b8bda417ea2
[]
no_license
botelho-io/lapr2-2020-g029
c6a3c15bace1145c94c0495ac5f8ce54b7be478c
1834bf842e5ae1f94d20ab61dad8e8124fc9f61b
refs/heads/master
2023-08-17T00:53:42.364156
2020-06-14T22:29:10
2020-06-14T22:29:10
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
415
puml
@startuml MD skinparam classAttributeIconSize 0 hide methods left to right direction class App { } class Freelancer { - String id - String name - String levelOfExpertise - String email - String NIF - String bankAccountIBAN - String address - String country } App "1" -- "*" Freelancer : has > @enduml
e802a1c0a91ee250072940185f63f874ac5fedbf
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Audio/AudioMixerProperties.puml
f6981843ea1ea0ed8e4274800d5b4fb4b4a19d7e
[]
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
260
puml
@startuml class AudioMixerProperties { + volume : float = 1.0f + stereoPan : float = 0.0f + spatialBlend : float = 0.0f + <<override>> PrepareFrame(playable:Playable, info:FrameData) : void } PlayableBehaviour <|-- AudioMixerProperties @enduml
63f389a71b59ad6c320168a01a856f342dfa9f89
644b7bb773b84596a2de4d31a0603284d9562e56
/react/bootstrap/modal.iuml
ad9029962bc49504c0d2c40398b92daa9c756ff2
[]
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
129
iuml
class Modal { --props-- show : boolean onHide : function --render-- render a modal dialog }
10e136292c00e56700cd43e27beb07bfeb14bc84
b2be1f2c659ff90e5be7a97f52150c3f278e4c70
/behavioral_patterns/strategy/strategy.puml
5b3c48387965b654c2c6ece1a8aee57dabbc27bd
[]
no_license
sirejik/software-design-patterns
a3f0aab43a6b73f8e8d0d4ecd13a3f4aa362addc
67b8ebc373bdf6e5d58d699ed0a84bb3b2666f58
refs/heads/master
2023-01-05T09:55:51.669200
2020-11-05T17:02:20
2020-11-05T17:02:20
298,362,438
0
0
null
null
null
null
UTF-8
PlantUML
false
false
252
puml
@startuml class Context { execute_strategy() } interface Strategy { execute_strategy() } Context o--> Strategy class ConcreteStrategyA { } Strategy <|-- ConcreteStrategyA class ConcreteStrategyB { } Strategy <|-- ConcreteStrategyB @enduml
b585a5c1558d005286b0f9d941ed0e536a4ad12f
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.puml
8c54ea3ada639aa37f197328155c0a7984b71ca3
[]
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
267
puml
@startuml interface IStateSerializer { RestoreScriptableObjectInstance() : ScriptableObject RestoreClassFromJson(instance:object) : void CanRestoreFromJson(requestedType:Type) : bool CanRestoreFromScriptableObject(requestedType:Type) : bool } @enduml
07995d950f7413304c690a9b3ab8cc0a0294dcce
85592c2f8d87903b27b3b6a1dd1f733231f6585c
/guava-tests/test/com/nanyin/test/design/strategy/strategy.puml
2c2eb344ee4724674c1efbee672ca9a34b770711
[ "Apache-2.0" ]
permissive
NanYinIU/guava-with-comments
52aa7248f4eb7f8d7bb8173b0d432de5a327490f
04f402389aadc903ff4c595049dfb01575d3bd71
refs/heads/master
2021-06-27T20:31:52.847594
2019-06-28T03:04:02
2019-06-28T03:04:02
140,093,917
0
0
Apache-2.0
2020-10-13T09:33:12
2018-07-07T15:05:44
Java
UTF-8
PlantUML
false
false
382
puml
@startuml interface TrafficStrategy{ + go() : void } class CarStrategy{ __public__ + go() : void } class WalkStrategy{ __public__ + go() : void } class Context{ __private__ trafficStrategy : TrafficStrategy __public__ doStrategy() : void } TrafficStrategy <|.. WalkStrategy TrafficStrategy <|.. CarStrategy Context <.. TrafficStrategy @enduml
43da972ee025b2f64bd5ca3c7e9345cb47255f59
05c57a1f0f2f8e7f830178d40310ebb093d2ac3c
/src/main/asciidoc/images/object-and-comparison.puml
dda60decfad17cf5a8a96c23d376e4f11dcf3d57
[]
no_license
umons-polytech-odl2017/odl-tp5-laurent_kalpers
5993211a1612758614781d032580304e822216d7
132fae601cd830bde2f4d0454d8451741ccc6805
refs/heads/master
2022-12-28T03:39:11.598083
2020-10-13T19:38:01
2020-10-13T19:38:01
109,695,799
0
0
null
2020-10-13T19:38:03
2017-11-06T13:00:48
Java
UTF-8
PlantUML
false
false
654
puml
@startuml package java.lang { class Object { +hashCode() : int +equals(other : Object) : boolean } interface Comparable<T> { +compareTo(other : T) : int } } package java.util { class Collections interface Iterator<E> { +hasNext() : boolean +next() : E +remove() : void } interface Comparator<T> { +compare(x : T, y : T) : int } } note bottom of Collections : Méthodes statiques\nqui opèrent sur ou retournent\ndes collections note "[x == y] : 0\n[x < y] : < 0\n[x > y] : > 0" as n1 n1 .. Comparable Comparator .. n1 Iterator -[hidden]-- Object @enduml
63aa301b664ffd3637ed172b716c5a81d2942a43
2a26cac9a61a1cacfbac1967df21ab1602933ca7
/examenes_viejos/personales/final-27-02-2020/final-efectos-alumno/diagramas/EfectoCompuesto.puml
8879b3496b432892e13623c746f3d88a63ecfdb6
[]
no_license
LuisParedes1/parciales_practica_algo3
a781ea3fe66e7754c4a59a482edcdec90f79df8a
7dc00fc6f82f34cebd2c145c9574540870e45239
refs/heads/master
2023-06-03T04:03:58.205306
2021-06-21T15:05:23
2021-06-21T15:05:23
378,966,123
0
0
null
null
null
null
UTF-8
PlantUML
false
false
463
puml
@startuml title Relacion Para Efecto Compuesto interface Efecto{ +{abstract}aplicarA(cadena:String):String; } class EfectoAgregarOchoAlFinal implements Efecto{ +aplicarA(cadena:String):String; } class EfectoPrimeroMayuscula implements Efecto { +aplicarA(cadena:String):String; } class EfectoPrimeroMayusculaYAgregarOcho implements Efecto { +aplicarA(cadena:String):String; } EfectoPrimeroMayusculaYAgregarOcho *--> Efecto: "1" "2" @enduml
68ad970498556034d94c831ad4fab733c1655e5f
084fcc4a31b60fe11f3f647f7d49a3c1c6621b44
/kapitler/media/uml-datatype-sletting.iuml
e9c58e945723295f1813154a110af60c08d25fa6
[]
no_license
arkivverket/noark5-tjenestegrensesnitt-standard
299f371a341e59402d49bfc11ee9e2672dad657e
03025f8b9f1496f4a2f5b155e212a44768390274
refs/heads/master
2023-06-10T02:19:28.432679
2023-06-09T08:40:40
2023-06-09T08:40:40
136,293,843
7
11
null
2023-08-22T10:40:36
2018-06-06T07:58:53
Python
UTF-8
PlantUML
false
false
220
iuml
@startuml class Arkivstruktur.Sletting <<dataType>> { +slettingstype : Slettingstype +slettetDato : datetime [0..1] [1..1] +slettetAv : string [0..1] [1..1] +referanseSlettetAv : SystemID [0..1] [1..1] } @enduml
2baf7182abb6e3548bc4e56b1d6e9ff1fc7c57ac
43e7bb9c86a28ad8acb5a19c5ca0a483f0355b59
/MVP.puml
7103f9855c9fd3443b8dc269140e4e1cb14e39f4
[ "Apache-2.0" ]
permissive
WalterHu/DemonCat
adf9e8daf1e6cb230317db749e76c44b539f9356
94f4a1253a3cf4604ea768787e5815c9513c1cbc
refs/heads/master
2020-03-10T00:58:43.092272
2018-08-29T03:02:58
2018-08-29T03:02:58
129,097,033
0
0
null
null
null
null
UTF-8
PlantUML
false
false
645
puml
@startuml interface Observer { +onStart():void +onError(Throwable):void +onNext(Response):void } class Callback { +onSuccess(Response):void +onFailure(Error):void } Callback ..|> Observer class Error abstract class Response Callback ..> Error Callback ..> Response class BasePresenter { -view:View +Action():void } interface View { +onActionResponse(Response):void } class BaseView { -presenter:BasePresenter } BasePresenter ..> BaseModel BasePresenter --|> Callback BaseView ..|> View BasePresenter *--o BaseView class BaseModel { +requestAction(Callback):void } BaseModel ..> Callback @enduml
d55bc18f5b1e13e86ae6e107dffe28b984f5ffab
b607bda349642e826019dfb580567761f039178b
/src/decorator/decorator.puml
cfa93f918533ecf77df4df8f423090ae8015d32b
[]
no_license
gyoridavid/design-patterns-typescript
7f4ea630ce2973db0a33bb25e001ed6c85a10ab8
78ce0b14c8adf9b365da8d7234c6ed4d2ead07bc
refs/heads/main
2023-03-08T02:38:53.226650
2021-02-20T11:00:31
2021-02-20T11:00:31
339,009,219
0
0
null
null
null
null
UTF-8
PlantUML
false
false
527
puml
@startuml interface Component { + operation() } class ConcreteComponent { + operation() } class Decorator { + operation() } class ConcreteDecoratorA { + operation() - addedBehavior() } class ConcreteDecoratorB { - addedState + operation() } Component <|- ConcreteComponent Component <|-- Decorator Decorator *-- Component::operation Decorator <|-- ConcreteDecoratorA Decorator <|-- ConcreteDecoratorB note right of Decorator adds extra functionality to the interface endnote @enduml
3d5597377696fa79bac335f356923967e361eca8
1a86f78cb5e8c31be479b4490cc701dcfb3a857f
/Diplom/.idea/modules/app/app.plantuml
0f95ba11760d73efcd7322e7865ccbf6030e4d96
[]
no_license
DenisBovsunivskyi/messanger-app
7884df095f9784adf6035adbb6a79af496c323a7
acf7a1cae408fe74411082a93e66ec67fbc832bf
refs/heads/master
2023-06-04T09:22:38.984862
2021-06-24T22:19:00
2021-06-24T22:19:00
380,059,973
0
0
null
null
null
null
UTF-8
PlantUML
false
false
364
plantuml
@startuml title __TELEGRAMDIPLOM.APP's Class Diagram__\n namespace com.example.telegramdiplom { class com.example.telegramdiplom.BuildConfig { } } 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
a070988330fa8fe8a8b0d5b56eb34ed695a7359e
4726836518eca6295b7c61a7d8f7e8186489601b
/doc/Server.puml
eeb43dd8f046e9d8da7b2aa761ac156c5577145d
[]
no_license
BenjaminGirard/R-Type
d75daddb8378f3150629533dd706b9e5ae714e1d
6a98c703a4829c36d68f6621345829e32808135c
refs/heads/master
2021-01-24T23:57:28.303423
2018-02-28T12:59:37
2018-02-28T12:59:37
123,285,156
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,499
puml
@startuml note "Sptr stand for std::shared_ptr" as N0 note "Manager is our game engine (see SolidEngine UML)" as N1 together { class INetwork class PacketHandler class IPlayer } interface IPlayer { .. Getters .. + virtual uint64_t getId() const = 0 + virtual void sendData(UdpPackage<T> &package) + virtual std::list<UdpPackage<T>> &receiveData(void) } interface INetwork { + virtual void startNetwork(std::list<Sptr<IPlayer>> &, std::mutex &) = 0 } class Session { } class PacketHandler { - std::list<Sptr<IPlayer>> &_players - RoomManager _roomManager + void startPollingPackets(void) - TcpPackage<T> *createPackage(uint8_t, T data) - void createRoom(UdpPackage<T> data) - void roomInfo(UdpPackage<T> data) - void askJoinRoom(UdpPackage<T> data) - void leaveRoom(UdpPackage<T> data) - void createRoom(UdpPackage<T> data) } class RoomManager { - std::vector<Room> _rooms } class Core { - std::list<Sptr<IPlayer>> _players - Uptr<INetwork> _network - Manager _manager - std::mutex _serverMutex __ Methods __ + void startServer() } class Network { - std::list<Sptr<IPlayer>> &_players __ Methods __ + void startNetwork(std::list<Sptr<IPlayer>> &player, std::mutex &serverMutex) } class Room { - std::list<Sptr<IPlayer>> _players - Manager _manager } note right : Each room will be treated by a thread IPlayer <|-- Session INetwork <|-- Network Core "1" *-- PacketHandler Core "1" *-- INetwork PacketHandler "1" *-- RoomManager RoomManager "0..*" *-- Room Core "0..*" *-- IPlayer @enduml
0975dabe427ed9a7a3cbef0ed277160580ac085c
e2b1bc4c7f8275c50bf3a0fad9b558ce188f8b68
/src/main/resources/Diagrams/FileHelpers.puml
e4a6e2b34982416d3319d128190c0f546d094150
[]
no_license
carricksoft/Hansen
22f03fb3e7734e1e38e1c482e675c98a271e2c8a
2974e0c7270d2922777621ffed6ad0f35e812f8b
refs/heads/master
2023-06-10T17:18:25.790850
2019-10-14T07:12:23
2019-10-14T07:12:23
206,819,869
0
0
null
null
null
null
UTF-8
PlantUML
false
false
475
puml
@startuml package filehelpers { interface FileValidator { boolean validForReading(String fileName); String getLastError() } class FileValidatorImpl { +boolean validForReading(String fileName); +String getLastError() } interface FileValidatorFactory { } class FileValidatorFactoryImpl { } FileValidator <|--- FileValidatorImpl : implements FileValidatorFactory <|--- FileValidatorFactoryImpl : implements FileValidatorFactory ...> FileValidator : builds } @enduml
df26cd4ca93425e939a3a144bcafac52204c600a
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.puml
c0ccb4c775e563cdefd8fa5a0faa42f1cbf308cc
[]
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
88
puml
@startuml class UnitySetUpAttribute { } NUnitAttribute <|-- UnitySetUpAttribute @enduml
4be844f10db463d500c5fd981bf5b5ae03e0cf09
8a42cf43148c275caa196cb0335d2053559880cc
/designpatterns/src/main/java/com/xiaoye/designpatterns/factory/example/factory.puml
961d554ec4b9af3bfa6597c1f6d6af536f424b92
[]
no_license
guoyjalihy/learning
2c5381f3170a332b28c9286028c8a0fe85d8869c
0ba0c4e5201ed1fbc2ad6aacf5c8c90a6a42bfc4
refs/heads/master
2022-07-05T10:13:57.279407
2019-07-16T11:43:13
2019-07-16T11:43:13
112,556,713
0
0
null
2022-06-17T02:01:52
2017-11-30T02:55:06
Java
UTF-8
PlantUML
false
false
1,290
puml
@startuml title 工厂方法模式 abstract class Product class ConcreteProduct Product <|-- ConcreteProduct abstract class Creator{ +{abstract} Product factoryMethod() +anOperation(); } class ConcreteCreator{ Product factoryMethod(); } Creator <|-- ConcreteCreator ConcreteProduct <- ConcreteCreator @enduml @startuml title 抽象工厂模式 abstract class ProductA class ConcreteProductA1 class ConcreteProductA2 ProductA <|-- ConcreteProductA1 ProductA <|-- ConcreteProductA2 abstract class ProductB class ConcreteProductB1 class ConcreteProductB2 ProductB <|-- ConcreteProductB1 ProductB <|-- ConcreteProductB2 interface AbstractFactory{ + ProductA createProductA(); + ProductB createProductB(); } class ConcreteFactoryA{ ProductA createProductA(); ProductB createProductB(); } class ConcreteFactoryB{ ProductA createProductA(); ProductB createProductB(); } AbstractFactory <|-- ConcreteFactoryA AbstractFactory <|-- ConcreteFactoryB ConcreteProductA1 <- ConcreteFactoryA ConcreteProductA2 <- ConcreteFactoryA ConcreteProductA1 <- ConcreteFactoryB ConcreteProductA2 <- ConcreteFactoryB ConcreteProductB1 <- ConcreteFactoryA ConcreteProductB2 <- ConcreteFactoryA ConcreteProductB1 <- ConcreteFactoryB ConcreteProductB2 <- ConcreteFactoryB @enduml
dcf6bc1337e8bc603b42dfa39a6d49e0498f6c16
85f2e796c6c71b5b9e705ba14bc028484d80717a
/src/docs/decorator_pattern_sample.puml
e6d6a447f02c4541b4ae057dc2190194f0b563e7
[]
no_license
cutem-0104/DesignpatternIntroduction
c6c52ce18f9e8290e7ef2320938cf314ebce8b50
9786b90ac9eb12733785aa96d4d6f41264046e91
refs/heads/master
2020-03-22T03:58:16.979520
2018-07-02T15:50:06
2018-07-02T15:50:06
139,463,949
0
0
null
null
null
null
UTF-8
PlantUML
false
false
538
puml
@startuml abstract class Display { {abstract}getColumns() {abstract}getRows() {abstract}getRowText() show() } class StringDisplay { string getColumns() getRows() getRowText() } class Border { display } class SideBorder { borderChar getColumns() getRows() getRowText() } class FullBorder { getColumns() getRows() getRowText() makeLine() } SideBorder -u-|> Border FullBorder -u-|> Border Border -u-|> Display StringDisplay -u-|> Display Border o--> Display @enduml
cb6dc6592d04813b2a3fdffd5c68bd4d0c844f7f
4691acca4e62da71a857385cffce2b6b4aef3bb3
/patterns-modules/intercepting-filter/src/main/resources/front_controller.puml
cbc2dc8bd945e4c5e466dd8b66576c8997807cab
[ "MIT" ]
permissive
lor6/tutorials
800f2e48d7968c047407bbd8a61b47be7ec352f2
e993db2c23d559d503b8bf8bc27aab0847224593
refs/heads/master
2023-05-29T06:17:47.980938
2023-05-19T08:37:45
2023-05-19T08:37:45
145,218,314
7
11
MIT
2018-08-18T12:29:20
2018-08-18T12:29:19
null
UTF-8
PlantUML
false
false
283
puml
@startuml scale 1.5 class Handler { doGet doPost } abstract class AbstractCommand { process } class ConcreteCommand1 { process } class ConcreteCommand2 { process } Handler .right.> AbstractCommand AbstractCommand <|-- ConcreteCommand1 AbstractCommand <|-- ConcreteCommand2 @enduml
a4e456cdfd8c528d9c6ea0137bbf8cf4d7cf968a
74c9b8442e20be29367628a1bc87d8364f213b1c
/docs/Move-ios-uml/im.puml
4e1688721dc9a55934fc23159cd3990bd5001a67
[]
no_license
jigang-duan/Move-iOS
0fb7f1604fa0e1a181efaac64917555928cb5d70
3a9a96b711266bc3b39a8b23815189c14430750c
refs/heads/master
2021-01-24T08:51:39.738242
2017-09-22T10:48:54
2017-09-22T10:48:54
93,396,571
2
1
null
null
null
null
UTF-8
PlantUML
false
false
563
puml
@startuml class Contact { uid type username nickname headPortrait identity sex phone email flag } class ChatGroup { gid topic headPortrait owner contacts ctime flag } class Message { msg_id type fromUid toUid toGid Content content contentStatus status ctime } class Content { text pictureUrl voiceUrl videoUrl } class Synckey { message_sync contact_sync chatGroup_sync } ChatGroup "n" o-- Contact Message --> Content @enduml
6eef4d3408abc7b554b24b481cb8254cfb1de63b
c9f776512224bea54ea954daabce3684cf2993f0
/android/6pan2/app/src/main/java/cn/cdut/a6pan/ui/login/login.plantuml
397760a61c506da08d114a627cfe4ec65655fc52
[ "MIT" ]
permissive
mooleetzi/lab
d1ff5434981eb934de75d699acefb3b9b1a2c4a7
57df24f6e4f439eb4fad3f2217d3b8fd6f609a6b
refs/heads/master
2020-06-09T12:34:05.968034
2020-01-07T01:58:47
2020-01-07T01:58:47
193,438,979
2
0
null
null
null
null
UTF-8
PlantUML
false
false
3,852
plantuml
@startuml title __LOGIN's Class Diagram__\n namespace cn.cdut.a6pan { namespace ui.login { class cn.cdut.a6pan.ui.login.LoginByCodeFragment { {static} - TAG : String - handler : Handler - preResult : String + getCaptcha() + login() + loginFailed() + loginSuccess() {static} + newInstance() + onActivityCreated() + onCreateView() } } } namespace cn.cdut.a6pan { namespace ui.login { class cn.cdut.a6pan.ui.login.LoginFragment { {static} ~ TAG : String - handler : Handler + login() + loginFailed() + loginSuccess() {static} + newInstance() + onActivityCreated() + onCreateView() + onStart() + setText() } } } namespace cn.cdut.a6pan { namespace ui.login { class cn.cdut.a6pan.ui.login.LoginIndexFragment { {static} ~ TAG : String {static} + newInstance() + onActivityCreated() + onCreateView() + onStart() } } } namespace cn.cdut.a6pan { namespace ui.login { class cn.cdut.a6pan.ui.login.LoginViewModel { {static} - TAG : String - currentFragId : int - password : MutableLiveData<String> - remember : MutableLiveData<Boolean> - username : MutableLiveData<String> + getCurrentFragId() + getPassword() + getRemember() + getUsername() + setCurrentFragId() + setPassword() + setRemember() + setUsername() } } } namespace cn.cdut.a6pan { namespace ui.login { class cn.cdut.a6pan.ui.login.ModifyPwdByCode { {static} - TAG : String - handler : Handler - preResult : String + getCaptcha() + modifyFailed() + modifyPwdByCode() + modifySuccess() {static} + newInstance() + onActivityCreated() + onCreateView() } } } namespace cn.cdut.a6pan { namespace ui.login { class cn.cdut.a6pan.ui.login.RegisterFragment { {static} + newInstance() + onActivityCreated() + onCreateView() } } } namespace cn.cdut.a6pan { namespace ui.login { class cn.cdut.a6pan.ui.login.RegisterViewModel { } } } cn.cdut.a6pan.ui.login.LoginByCodeFragment -up-|> androidx.fragment.app.Fragment cn.cdut.a6pan.ui.login.LoginByCodeFragment o-- cn.cdut.a6pan.databinding.LoginByCodeFragmentBinding : binding cn.cdut.a6pan.ui.login.LoginFragment -up-|> androidx.fragment.app.Fragment cn.cdut.a6pan.ui.login.LoginFragment o-- cn.cdut.a6pan.databinding.LoginFragmentBinding : binding cn.cdut.a6pan.ui.login.LoginFragment o-- cn.cdut.a6pan.ui.login.LoginViewModel : mViewModel cn.cdut.a6pan.ui.login.LoginIndexFragment -up-|> androidx.fragment.app.Fragment cn.cdut.a6pan.ui.login.LoginIndexFragment o-- cn.cdut.a6pan.ui.login.LoginViewModel : mViewModel cn.cdut.a6pan.ui.login.LoginViewModel -up-|> androidx.lifecycle.ViewModel cn.cdut.a6pan.ui.login.ModifyPwdByCode -up-|> androidx.fragment.app.Fragment cn.cdut.a6pan.ui.login.ModifyPwdByCode o-- cn.cdut.a6pan.databinding.ModifyPwdByCodeFragmentBinding : binding cn.cdut.a6pan.ui.login.RegisterFragment -up-|> androidx.fragment.app.Fragment cn.cdut.a6pan.ui.login.RegisterFragment o-- cn.cdut.a6pan.ui.login.RegisterViewModel : mViewModel cn.cdut.a6pan.ui.login.RegisterViewModel -up-|> androidx.lifecycle.ViewModel 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
3ec352de94e248fdb0e37580053e66096ae88b8e
91599124bd5dd7d41c0d930119ff568cdd17acd7
/gradle-plugin/src/test/resources/puml/rootSpringBoot/resources-overview.puml
9b3d4f18084c34ea107f7acbd600d79eb5e81222
[ "MIT" ]
permissive
saw303/gradle-java-rest-api
0ad9b421acd61d23f570a8ad5d51ebce3837332a
d35de01f8362dcdabfe2cb7266bee37654a8fdf3
refs/heads/3.0.x
2023-09-04T11:16:25.262005
2023-09-01T12:48:43
2023-09-01T12:48:43
101,171,636
3
6
MIT
2023-09-14T00:06:11
2017-08-23T11:16:10
Java
UTF-8
PlantUML
false
false
181
puml
@startuml title Resources Overview skinparam class { BackgroundColor white ArrowColor SeaGreen BorderColor #CDCDCD } class "root" as 810791903 << (R,#DADADA) >> { } @enduml
9f56c783c912663c99a82bba35e2bfff896fca7f
372d0fe94d7e59fd48620c687fee8fc94841408b
/deadheat-lock-example/microservices-example/financial-service/src/main/java/com/vrush/microservices/financial/annotations/annotations.plantuml
cd6ba02062da436ac1747e845005c8e02fcb9355
[ "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
425
plantuml
@startuml title __ANNOTATIONS's Class Diagram__\n namespace com.vrush.microservices.financial { namespace annotations { interface com.vrush.microservices.financial.annotations.TrackMethod { } } } 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
92b52087f8235dee38449a715105b9fa1528e3f3
c4437e6472f49d49e6bea760d9a95d51cdc3f66b
/uml/QuestionClass.puml
c581934b4aad9eb8c59a6633f967aff67a0b56c2
[]
no_license
Skybluewater/QuestGeneratorWebsite
b741b49c7248402f3e2187230a04c66e9f1cb774
5c7f14dcf690647e6bd08546c5a85e19ca959d39
refs/heads/master
2021-08-06T20:24:46.761026
2020-12-11T09:12:33
2020-12-11T09:12:33
228,553,999
2
2
null
null
null
null
UTF-8
PlantUML
false
false
1,713
puml
@startuml Question-class package django.forms { class Form } package django.db.models { class Model } package forms { class DSForm class Form5 class Form10 class Form20 } DSForm --|> Form Form5 --|> Form Form10 --|> Form Form20 --|> Form package models { class Question class User class Answer class WrongAnswer class History User --|> Model Question -|> Model Answer --|> Model WrongAnswer --|> Model History --|> Model } class User{ gender:choice name:models.CharField password:models.CharField email:models.EmailField c_time:models.DateField +__str__():models.CharField } class Question{ question answer_float answer_fraction question_if_pow question_if_negative question_operators_num c_time } Answer "n"---"1" Question Answer "n"---"1" User WrongAnswer "n"---"1" Question WrongAnswer "n"---"1" User History "n"--"1" User class History{ user:User start_time:models.DateTimeField end_time:models.DateTimeField score:models.IntegerField quantity:models.IntegerField if_fra:models.BooleanField +__set_end_time__() } class Answer{ question:Question answer_id:History } class WrongAnswer{ question:Question answer_id:History answer_if_answered_again:BooleanField type:BooleanField } class DSForm{ quantity optr operators if_pow if_neg if_fra pow_type } class Form5{ Kt1:forms.CharField ... Kt5:forms.CharField } class Form10{ Kt1:forms.CharField ... Kt10:forms.CharField } class Form20{ Kt1:forms.CharField ... Kt20:forms.CharField } @enduml
dfa4ec6a297d42b49a1bb0549e7f3d494de32cbf
7c5d4cd214941e0ffb21a5ee53673702034d4811
/src/main/java/ex44/ProductSearch.puml
60b573acfde43605078eab1c7e45af90fb3995cc
[]
no_license
kingraham228/Ingraham-cop3330-assignment3
b00bd18d9cf17ae4b3fa96fdb3470bb4b8c4faaa
32e7eee3369de21d8843e66a60c66696b9fe42e9
refs/heads/master
2023-06-05T12:16:04.009246
2021-06-19T03:39:02
2021-06-19T03:39:02
377,287,406
0
0
null
null
null
null
UTF-8
PlantUML
false
false
379
puml
@startuml class App{ +print() } class Input{ +getProductName() } class Products{ -products: ArrayList } class Items{ #name: String #price: String #quantity: String } class JSONRecord{ -itemList: ArrayList -promptAgain: boolean +importJson() +getItemList() +searchList() +isPromptAgain() } App o-- Input App o-- JSONRecord JSONRecord *-- Products Products *-- Items @enduml
0e6a232cf99e6aba6f1cfd804340e06f8c50d72d
bfe333973362802da041e14a279e527456c6657b
/units/src/unit_02/excercise_a/assets/classes-after-refaktoring.puml
651f8f284b508fd8da9d3df8e10a3cddc96fc8db
[]
no_license
raveshs/java-tutorial
a035d270c95470ebbce2201735d8d21623ff54e4
e79c32b092bc0d162125149205fda2ebaaebbb24
refs/heads/master
2020-08-04T07:48:27.775409
2019-09-30T19:25:19
2019-09-30T19:25:19
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
705
puml
@startuml abstract class Blume Blume <|-- Rose Blume <|-- Tulpe Blume <|-- Nelke class Blume { // Blumensorte, explizit als Typ protected enum Sorte // Farbe, explizit als Typ protected enum Farbe // Instanzfelder Sorte sorte Farbe farbe public String toString() public void farbe() public void identifizieren() } enum Sorte { ROSE TULPE NELKE public String toString() } enum Farbe { ROT GELB BLAU public String toString() } class Rose { public void identifizieren() public void wurzeln() } class Tulpe { public void identifizieren() public void zwiebeln() } class Nelke { public void identifizieren() public void stauden() } center footer excercise_a von unit_02 nach dem Refaktoring @enduml
70f1002d7432da92683a1b09242a78ce7db92159
636d88cc43ec1ba57c3699ed58d0cec51a1a3084
/Term Project/Observer/Observer_Class_diagram.puml
d220536616886a6a7c55525426845d1c3f5592aa
[]
no_license
ahmedAlraimi/Tasarim
088944d13cbdaeea4e0537f7035b1e7ad618c91c
c5a1ee24b3c57561cca80fd7a6e81359bde5b040
refs/heads/master
2020-04-26T15:33:28.741752
2019-07-10T13:09:39
2019-07-10T13:09:39
173,650,584
0
1
null
null
null
null
UTF-8
PlantUML
false
false
629
puml
@startuml skinparam classAttributeIconSize 0 interface SplSubject{ {method} + attach(observer) {method} + detach(observer) {method} + notify() } interface SplObserver{ {method} + update(subject) } class Event { {field} - event_manager : String {field} - observers : observer {method} + attach(observer) {method} + detach(observer) {method} + changeEventManager(string) {method} + notify() } class EventObserver { {field} - changedEvents[] {method} + update(subject) {method} + getChangedEvents() } SplSubject <.. Event SplObserver <- Event : uses SplObserver <-- EventObserver : implements @enduml
15e7777c8d4196bbefd5c04363d1c6cba2c60d5d
23e8d0f4c4fbbe13714b46dd70ec35833cc3ccc6
/src/common/models/domain.plantuml
60c77f5f6c2ff6c3d421126e58e059f87692becd
[]
no_license
sytac/play
0865803e35087cc26801c56258cfbf32c66ec725
9687396d842a0306f93c44b4188446048a38a085
refs/heads/master
2020-09-23T22:47:03.147557
2016-11-09T15:38:52
2016-11-09T15:38:52
67,133,688
1
1
null
2016-11-02T10:50:24
2016-09-01T13:30:06
JavaScript
UTF-8
PlantUML
false
false
624
plantuml
@startuml class Option { id: String value: String correct: Boolean } Question "1" -- "0..*" Option class Question { id: String value: String } Quiz "1" -- "0..*" Question class Quiz { id: String subject: String } QuizEntry "0..*" -- "1" Quiz QuizEntry "1" -- "0..*" QuizEntryAnswer class QuizEntry { id: String firstName: String lastName: String twitter: String email: String interests: [String] startTime: Date endTime: Date } QuizEntryAnswer "0..*" -- "1" Question QuizEntryAnswer "0..*" -- "1" Option class QuizEntryAnswer { id: String questionId: String optionId: String } @enduml
ac96cd0dd0d27b2513df071a04551737fdc1da3d
7ab2a6fa9a2ecfa52462d10843098a98404e4a67
/QuestMVVM/GestionDeTournoiFiles/Conception/CDL/CDL_TRNM.iuml
64062de5b1e1b89c5bc410a0999f55e5273f254a
[]
no_license
jams4code/QuizzGameProjectJava
ab28129ebf8ae1eca90dfc8210e813b6d1b70ec9
32431822ea878b4198361efda322cabafd3fe463
refs/heads/master
2022-07-04T20:57:26.099245
2020-05-19T19:15:17
2020-05-19T19:15:17
261,175,850
0
0
null
null
null
null
UTF-8
PlantUML
false
false
536
iuml
class Tournoi <<Entity>>{ - matchs : List<Match> - players : List<Player> - nom : String - numMatchSelected : int - notif : Notif -selectedPlayer:Player + initPlayer() + getPlayersName():List<String> + selectedMatch():Match + select(index:int ) + hasMatch(m:Match): boolean + nbMatchs():int + addMatch(m:Match): boolean + deleteMatch(m:Match): boolean + updateMatch(oldM:Match,newM:Match): boolean + notif(typeNotif:Notif ) + getOpponent(p:Player ) + unselect() }
b6c5be410af701ad3558b7ec48a004acdf437449
1c2ffdfa1f2d5109bb4e1a2fb5e9e48c5cea8edd
/assets/CatenaBase.plantuml
ecb0c044b2ab207a0b77295e0c8cfd1e11411e32
[ "MIT" ]
permissive
mcci-catena/Catena-Arduino-Platform
e4b940473831521d84d7f766965c49fcd1a5d247
2ce0ec05ac252edab2c5a60d7d0a9a894b30ad70
refs/heads/master
2023-08-31T18:10:49.000465
2023-06-26T11:01:17
2023-06-26T11:01:17
72,812,020
15
11
MIT
2023-09-07T12:00:23
2016-11-04T03:44:20
C++
UTF-8
PlantUML
false
false
7,855
plantuml
@startuml /' Module: CatenaBase.plantuml Function: PlantUML reference source for README.md UML class diagram. Copyright: See accompanying LICENSE file Author: Terry Moore, MCCI Corporation November 2018 Notes: PlantUML images in REAMDE.md are generated by pasting this file into the server at http://www.plantuml.com/plantuml, and grabbing the resulting URLs. That has to be done several times, with different values edited into the variables below. The comments in README.md will tell you what's needed. '/ !$enableMembers = 0 !$enableStm32 = 1 !$enableSamd = 0 namespace McciCatena { abstract class CatenaBase { +struct EUI64_buffer_t; +struct EUI64_string_t; +struct UniqueID_buffer_t[]; +struct UniqueID_string_t[]; +enum OPERATING_FLAGS; +enum PLATFORM_FLAGS; +{static}uint32_t PlatformFlags_GetModNumber(); +{static}bool constexpr PlatformFlags+_IsModded(); +void SafePrintf(); +const EUI64_Buffer_t *GetSysEUI(); +{abstract}const CATENA_PLATFORM *GetPlatformForID(); +{abstract}void GetUniqueID(); +char *GetUniqueIDstring(); +const CATENA_PLATFORM *GetPlatform(); +uint32_t GetOperatingFlags(); +void SetOperatingFlags(); +uint32_t GetPlatformFlags(); +{abstract}void begin(); +{abstract}const char * CatenaName() const; +{abstract}void Sleep(); +{abstract}cFram *getFram(); +void poll(); +void registerObject(); +addCommands(); +ProvisioningStyle GetProvisioningStyle(); +bool GetAbpProvisioningInfo(); +bool GetOtaaProvisioningInfo(); +void NetSaveSessionInfo(); +void NetSaveSessionState(); +bool NetGetSessionInfo(); +bool addLoRaWanCommands(); +{static}CatenaBase *pCatenaBase; #{abstract}void registerCommands(); #{abstract}void getPlatformTable(); #{abstract}void getCpuIdPlatformTable(); #cSerialReady m_SerialReady; #EUI64_buffer_t m_SysEUI; #cPollingEngine m_PollingEnging; #cStreamInlineCollector m_Collector; #cCommandStream m_CommandStream; -uint32_t m_OperatingFlags; -const CATENA_PLATFORM *m_pPlatform; -void savePlatform(); -void getPlatformForCpuId(); } !if ($enableSamd == 1) abstract class CatenaSamd21 { +{abstract} bool begin(); +bool begin(uint32_t overrideMask); +book begin(uint32_t uClearMask, uint32_t uSetMask); +void GetUniqueID(); +void Sleep(); #{abstract}void registerCommands(); -CatenaRTC m_Rtc; } !endif !if ($enableStm32 == 1) abstract class CatenaStm32 { +{abstract} bool begin(); +bool begin(uint32_t overrideMask); +book begin(uint32_t uClearMask, uint32_t uSetMask); +void GetUniqueID(); #{abstract}void registerCommands(); } !endif !if ($enableSamd == 1) abstract class CatenaFeatherM0 { +enum ANALOG_PINS; +enum DIGITAL_PINS; +bool begin(); +float ReadVbat() const; #{abstract}const ProvisioningInfo *GetProvisioningInfo(); #{abstract}const ProvisioningTable *GetLoRaWANkeys(); } abstract class CatenaWingFram2k { +enum ANALOG_PINS; +enum DIGITAL_PINS; +bool begin(); +float ReadVbat() const; +cFram *getFram(); +bool getBootCount(&bootCount); #void registerCommands(); -cFram2k m_Fram; -uint32_t m_BootCount; } !endif !if ($enableStm32 == 1) abstract class CatenaStm32L0 { +bool begin(); +cFram *getFram(); +bool getBootCount(&bootCount); +{abstract}float ReadVbat() const; +{abstract}float ReadVbus() const; +void Sleep(); #void registerCommands(); -cFram8k m_Fram; -uint32_t m_BootCount; -CatenaStm32L0Rtc m_Rtc; } abstract class Catena455x { +enum ANALOG_PINS; +enum DIGITAL_PINS; +bool begin(); +float ReadVbat() const; +float ReadVbus() const; } abstract class Catena461x { +enum ANALOG_PINS; +enum DIGITAL_PINS; +bool begin(); +float ReadVbat() const; +float ReadVbus() const; } abstract class Catena463x { +enum ANALOG_PINS; +enum DIGITAL_PINS; +bool begin(); +float ReadVbat() const; +float ReadVbus() const; } abstract class Catena480x { +enum ANALOG_PINS; +enum DIGITAL_PINS; +bool begin(); +float ReadVbat() const; +float ReadVbus() const; } !endif !if ($enableSamd == 1) class Catena4410 { +enum DIGITAL_PINS; +const char *CatenaName() const; #const ProvisioningTable *GetLoRaWANkeys(); #void getCpuIdPlatformTable(); -{static}const ProvisioningTable gk_LoRaWAN_Keys; -{static}const CPUID_PLATFORM_MAP vCpuIdToPlatform[]; -{static}const size_t nvCpuIdToPlatform; } class Catena4420 { +enum DIGITAL_PINS; +const char *CatenaName() const; #const ProvisioningTable *GetLoRaWANkeys(); #void getCpuIdPlatformTable(); -{static}const ProvisioningTable gk_LoRaWAN_Keys; -{static}const CPUID_PLATFORM_MAP vCpuIdToPlatform[]; -{static}const size_t nvCpuIdToPlatform; } class Catena4450 { +const char *CatenaName() const; #void getPlatformTable(); #void getCpuIdPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; -{static}const CPUID_PLATFORM_MAP vCpuIdToPlatform[]; -{static}const size_t nvCpuIdToPlatform; } class Catena4460 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4470 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } !endif !if ($enableStm32 == 1) class Catena4551 { +const char *CatenaName() const; -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4610 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4611 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4612 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4617 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4618 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4630 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4801 { +const char *CatenaName() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } class Catena4802 { +const char *CatenaName() const; +float ReadVin() const; #void getPlatformTable(); -{static}const CATENA_PLATFORM(* const vPlatforms[]); -{static}const size_t nvPlatforms; } !endif !if ($enableSamd == 1) CatenaBase <|-- CatenaSamd21 !endif !if ($enableStm32 == 1) CatenaBase <|-- CatenaStm32 !endif !if ($enableSamd == 1) CatenaSamd21 <|-- CatenaFeatherM0 CatenaSamd21 <|-- CatenaWingFram2k CatenaFeatherM0 <|-- Catena4410 CatenaFeatherM0 <|-- Catena4420 CatenaWingFram2k <|-- Catena4450 CatenaWingFram2k <|-- Catena4460 CatenaWingFram2k <|-- Catena4470 !endif !if ($enableStm32 == 1) CatenaStm32 <|-- CatenaStm32L0 CatenaStm32L0 <|-- Catena455x CatenaStm32L0 <|-- Catena461x CatenaStm32L0 <|-- Catena463x CatenaStm32L0 <|-- Catena480x Catena455x <|-- Catena4551 Catena461x <|-- Catena4610 Catena461x <|-- Catena4611 Catena461x <|-- Catena4612 Catena461x <|-- Catena4617 Catena461x <|-- Catena4618 Catena463x <|-- Catena4630 Catena480x <|-- Catena4801 Catena480x <|-- Catena4802 !endif } !if ($enableMembers == 0) hide members !endif @enduml
35e8ed1b964b2edb28eb4b3eadcc4ec82ac10a9a
c6dbd40f0b241b70ca907dad9553affb0d5686a4
/diagrammer/klassediagram.plantuml
f22f2b60411b88dd31d5e3e382d4af5936899c5c
[]
no_license
mathiasgredal/Eksamen-Programmering
eaf400c3ed155b422b7a8a51dd8a3a4623621b31
e18af4c9dc81279b580ec52fcf6071e76e47c2d1
refs/heads/master
2023-04-11T23:07:55.227398
2021-05-09T17:47:46
2021-05-09T17:47:46
354,081,654
0
1
null
2021-05-04T21:45:56
2021-04-02T17:02:22
CMake
UTF-8
PlantUML
false
false
3,760
plantuml
@startuml Klassediagram enum SimType { Dynamic Static Ghost } abstract class Shape { + NVGColor color + virtual void Draw(ctx, entity) const + virtual Manifold IsColliding(entityA, entityB, Shape* shapeB) + virtual Manifold IsColliding(entityA, entityB, Circle* shapeB) + virtual Manifold IsColliding(entityA, entityB, Rectangle* shapeB) + virtual Manifold IsColliding(entityA, entityB, Line* shapeB) } class Circle implements Shape { + Circle(_radius) + float radius + void Draw(ctx, entity) const override + Manifold IsColliding(entityA, entityB, Shape* shapeB) override + Manifold IsColliding(entityA, entityB, Circle* shapeB) override + Manifold IsColliding(entityA, entityB, Rectangle* shapeB) override + Manifold IsColliding(entityA, entityB, Line* shapeB) override } class Line implements Shape { + Line(_a, _b) + float a + float b + void Draw(ctx, entity) const override + Manifold IsColliding(entityA, entityB, Shape* shapeB) override + Manifold IsColliding(entityA, entityB, Circle* shapeB) override + Manifold IsColliding(entityA, entityB, Rectangle* shapeB) override + Manifold IsColliding(entityA, entityB, Line* shapeB) override } class Rectangle implements Shape { + Rectangle(_width, _height) + float width + float height + void Draw(ctx, entity) const override + Manifold IsColliding(entityA, entityB, Shape* shapeB) override + Manifold IsColliding(entityA, entityB, Circle* shapeB) override + Manifold IsColliding(entityA, entityB, Rectangle* shapeB) override + Manifold IsColliding(entityA, entityB, Line* shapeB) override } class Manifold { + Entity* entityA + Entity* entityB + Vec2d collisionPoint + Vec2d normal + float depth + bool isColliding } class Vec2d { + Vec2d() + Vec2d(float _x, float _y) + float Length() const + Vec2d Normalized() const + Vec2d Orthogonal() const + float Dot(const Vec2d& a, const Vec2d& b) + Vec2d &operator+=(const Vec2d& a) + Vec2d &operator-=(const Vec2d& a) + Vec2d operator*(float a) const + Vec2d operator/(float a) const + Vec2d operator+(const Vec2d& a) const + Vec2d operator-(const Vec2d& a) const + float x + float y } class Entity { + Entity(_pos, _shape) + Vec2d position + Vec2d velocity + Vec2d force + float rotation + float angularVelocity + float torque + float mass + float momentOfInertia + float restitution + float staticFriction + float dynamicFriction + std::shared_ptr<Shape> shape + SimType type + Manifold IsColliding(Entity* other) } class Scene { + Scene() + Scene(std::vector<Entity*> _entities) + void Add(Entity* entity) + void Step(float dT) + std::vector<Entity*> getEntities() const - std::vector<Entity*> entities - Vec2d gravity_coeff } class App { + App(backend, vsync) + ~App() + void run() - void glfw_errorCallback(error, description) - void glfw_windowResizeCallback(window, width, height) - void createWindow(backend) - void drawGUI() - void drawVG() - int getWindowHeight() - int getWindowWidth() - void onMousePress(window, button, state, modifiers) - GLFWwindow* m_window - string project_name - int m_windowHeight - int m_windowWidth - float m_scale - const ViewId m_viewId - NVGcontext* m_ctx - Scene m_level - time_point<Clock> t_begin - time_point<Clock> t_end } Scene -[hidden]> Entity App *--|| Scene Scene *--o{ Entity Scene *--{ Vec2d Entity *--|| Shape Entity *--{ Vec2d Entity *--|| SimType Manifold o--{ Entity Manifold *--{ Vec2d @enduml
a97812044e3157a6f6a26864b3647699562eddb5
9bcd4da5e5454922139d0afefc782a997988ad1f
/.idea/docs/SprintB/US/US8/US8_MD.puml
9cc7ae65e29f2271cf243b6a855fa401f6257ff5
[ "MIT" ]
permissive
wjacoud/DynaByte
13f042b210f17830aa3eb31558d3f83d587ab436
3ac6b5e2d2e7559ec3e230db7848a1b43d3b40e3
refs/heads/main
2023-08-27T09:20:01.825322
2021-11-11T17:15:05
2021-11-11T17:15:05
427,082,047
0
0
null
null
null
null
UTF-8
PlantUML
false
false
574
puml
@startuml hide methods left to right direction skinparam classAttributeIconSize 0 class Administrator { -idEmployee } class ClinicalAnalysisLaboratory { -idLaboratory -name -address -phoneNumber -tin } class TypeTest { -type } class Category { -id -description } class Employee { -name -function -phone -email } class User { -name -email -password } Administrator "1" -- "*" ClinicalAnalysisLaboratory : has registered > Administrator "1" -- "1" TypeTest : choose > TypeTest "1" -- "*" ClinicalAnalysisLaboratory : sends > @enduml