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
90bf47b8b221eb44c6123306b9292b8f2622c808
35472fce30337d8fe84761724bd6de25a80414ef
/docs/design.puml
8c3c4a84737af9a2b090bffff12dbe78ef1aef71
[ "Apache-2.0" ]
permissive
dchenk/mazewire
3b5a85648c3d23c97d863e675ec85f7bc7102d7e
1d33cbc86c98da6fa2ed6dd4bb8554151871d8a2
refs/heads/master
2020-04-18T20:47:09.927931
2019-05-05T23:30:45
2019-05-05T23:30:45
167,746,856
2
0
null
null
null
null
UTF-8
PlantUML
false
false
1,958
puml
@startuml hide circle hide empty members ' A Plugin is a plugin that responds to hooks that it has registered to handle. interface Plugin { ' Identity returns the plugin's basic identifying metadata. ' This function is called before the main plugin connection is established. Identity() (name string, id string, ver version.Version) ' ' Specs returns the specifications within which the plugin works. ' ' For example, the plugin may indicate that it should be called asynchronously, or that it needs ' certain database access capabilities, or that it depends on a particular version of the core ' or other plugins. Specs() []specs.Spec ' ' Hooks specifies all of the hooks which the plugin wants to handle with its hook handlers. Hooks() map[hooks.Hook]hooks.Handler ' ' Filters specifies all of the filters which the plugins wants to handle with its filter ' handlers. Filters() map[filters.Filter]filters.Handler ' ' CustomHooks returns the list of all of the custom hooks the plugin is registering. ' ' One plugin's custom hooks are not the same as another plugin's custom hooks with the same name ' because the name of each of a plugin's custom hooks is prefixed with the plugin ID. So for one ' plugin to hook into another plugin's registered custom hooks, the first plugin must list the ' other plugin's hook name with the other plugin's ID followed by a dot followed by the hook ' name. ' ' So, for example, suppose a plugin with ID "alice" registers a custom hook named "jump" and ' another plugin with ID "bob" wants to hook into that event. The "bob" plugin needs to include ' its Handler with the hooks map it returns in the Hooks function, the key of this custom hook ' being "alice.jump". CustomHooks() []hooks.Hook ' ' CustomFilters returns the list of all of the custom filters the plugin is registering. ' Namespacing across plugins works just as it does for hooks. CustomFilters() []filters.Filter } @enduml
0e433b4c099b51cb2c6c2d54fb5be9df3c935d96
b7c8bfdc35656288d902345d9873dec4fa3f2a91
/docs/Robot.puml
0f75494704963ed0a94b892214d13579058c2e9d
[]
no_license
Team2470/FRC-2020-robot
3c4fd9f5ccdb8d40bae6a71c7715c2d53a722764
a9fbc7f92555fdc82f3a9ab7bff1030314589951
refs/heads/develop
2022-02-11T15:57:26.396656
2022-02-01T00:44:52
2022-02-01T00:44:52
236,882,510
7
0
null
2022-02-01T00:44:53
2020-01-29T01:41:58
Java
UTF-8
PlantUML
false
false
161
puml
@startuml RobotBase : DriverStation m_ds class IterativeRobotBase { # double m_period + autonomousInit() } RobotBase <|-- IterativeRobotBase @enduml
e49c6403992e32947c7e10a198f76a059b2417be
02a364d6cc772a9bf2e72d02dbecca74ac14d335
/eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Tests.AccessorTests/TaxAccesorTests.puml
701dce6fbf9112d1fdbe529fa773d7b0419de1b5
[ "BSD-3-Clause" ]
permissive
noelmartens/TransitionAcademy
4e02379d234aa4859a497ee2846420f4c55b9e12
3b95a5c737ab7b1497b77d455cf64caa73f69e1f
refs/heads/master
2023-06-14T05:25:35.514249
2021-07-02T19:40:29
2021-07-02T19:40:29
362,512,351
0
0
null
null
null
null
UTF-8
PlantUML
false
false
82
puml
@startuml class TaxAccessorTests { + TaxAccessor_LincolnNe() : void } @enduml
ee7484854c28872b397f57a63fd8473c166fea43
76bd2393c8efc4ea4f00e604c0325b223e6c18d3
/doc/Subscription.puml
8dda79bdbb77b60a7094dc0b47957f8ebb5c937d
[]
no_license
suribada/RxJavaBook
8d5dfae113d778982822adb30aa3659a6f3fa490
a417aea43dae88f573d8a4121a60f339f008e689
refs/heads/master
2023-04-12T22:31:50.662032
2021-04-04T07:17:55
2021-04-04T07:17:55
106,604,606
0
0
null
null
null
null
UTF-8
PlantUML
false
false
106
puml
@startuml interface Subscription { {abstract} void request(long n) {abstract} void void cancel() } @enduml
14862bc83a2810800a5fab42d07a9dbc08259632
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ChannelChangeDescriptionAction.puml
b7c8ebef47dd7c9fae6d3de5f00c015b208355c5
[]
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
492
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 ChannelChangeDescriptionAction [[ChannelChangeDescriptionAction.svg]] extends ChannelUpdateAction { action: String description: [[LocalizedString.svg LocalizedString]] } interface ChannelUpdateAction [[ChannelUpdateAction.svg]] { action: String } @enduml
e9fedf11b88ff6ff2b62260e3d7fa97140e1a37f
fd301c027a08b6afb8dd9113e16f6e73bd8b9a60
/uml.plantuml
effd5f825f4db4e68a526b5efb58eb7b4ca20b65
[]
no_license
MaksJS/simplon_symfony
69ea675edd45fa3624b6678eae75af7d97413d50
c8d3816a0af67569844d29ac748a4e18c7839bac
refs/heads/master
2021-01-19T22:47:49.644775
2017-05-19T12:41:28
2017-05-19T12:41:28
88,859,697
0
0
null
null
null
null
UTF-8
PlantUML
false
false
614
plantuml
@startuml namespace Entity { class Product { + id: integer + reference: string + price: float } class Category { + id: integer + designation: string } Product "*" -- "*" Category } namespace Database { class product { + id: INT(10), PRIMARY KEY + reference: VARCHAR(100) + price: FLOAT } class category { + id: INT(10), PRIMARY KEY + designation: VARCHAR(100) } class product_category { + product_id: INT(10), FOREIGN KEY + category_id: INT(10), FOREIGN KEY } } @enduml
a214b02c265d8edca5c657f8e8bc039c3bf73b7e
f83768c1270033c1a6713ab4656b9fbd30b55a3a
/Java-documentator/src/Test.puml
ff4bf4f1a5b886ba59eb9f774f92c977c707ce6b
[]
no_license
afmoyar/Java-Documentator
5f3f09870ca3a46dc5a7a06573fc2db58ae58f4f
c8e22c2e927b1a0a4e1a3ef86e08fdb0b1e47224
refs/heads/master
2022-11-16T08:46:39.107933
2020-07-01T01:01:05
2020-07-01T01:01:05
273,336,951
0
0
null
2020-06-29T23:22:28
2020-06-18T20:47:38
Java
UTF-8
PlantUML
false
false
259
puml
@startuml List <|-- AbstractList Collection <|-- AbstractCollection Collection <|- List AbstractCollection <|- AbstractList AbstractList <|-- ArrayList abstract class ArrayList { Object[] elementData size() } enum TimeUnit { DAYS HOURS MINUTES } @enduml
5908062194592802325fcf894ca52745ea62ae5a
1f20b5b46a1d8e1936628b16e578b8158a0dab4f
/matchers-doc/src/main/asciidoc/chapters/images/modules-naive-separation-without-split-packages.puml
95f3f72ef648976a7cb6cb6f48093093cd467684
[ "MIT" ]
permissive
mguenther/string-matchers
6321967e047c336f08869b34113b908c56a0e28c
83700374e00bf62f52a60d3dc0ecf033030187fb
refs/heads/master
2021-03-30T17:54:39.042919
2019-02-03T08:36:58
2019-02-03T08:36:58
111,335,740
3
2
null
2019-02-03T08:36:59
2017-11-19T22:03:30
CSS
UTF-8
PlantUML
false
false
626
puml
@startuml skinparam shadowing false skinparam componentStyle uml2 skinparam linetype ortho skinparam frame { borderColor Transparent backgroundColor Transparent fontColor Transparent } package "<b>matchers.api</b>" <<Java Module>> { package net.mguenther.matchers { interface Matcher { +match(haystack: String, needle: String): List[Integer] } } } package "<b>matchers.impl</b>" <<Java Module>> { package "net.mguenther.matchers.impl " { class BruteForceMatcher class KnuthMorrisPrattMatcher } } BruteForceMatcher ..|> Matcher KnuthMorrisPrattMatcher ..|> Matcher @enduml
4f1e94426a54212f8eb35a20e895e4530444c711
981bf6a7ce9a0a7a45f3af8ac26a9f8b9fc26b70
/source/dubbo-dubbo-2.6.5/dubbo-config/dubbo-config-spring/src/main/java/com/alibaba/dubbo/config/spring/CyclicBarrier.puml
553ea84482cd9d251bbd9f966f60e759a491c802
[ "Apache-2.0" ]
permissive
litter-fish/ReadSource
f0dab8c757b5647c1b2c4b4b9edb4d45502cb6bc
fa93b54e203bc5e630d89bae0f6ad175d39fe71f
refs/heads/master
2022-12-20T17:17:08.081908
2020-01-20T14:09:06
2020-01-20T14:09:06
227,380,506
1
2
null
2022-12-10T05:39:57
2019-12-11T14:07:11
Java
UTF-8
PlantUML
false
false
225
puml
@startuml CyclicBarrier *..> ReentrantLock CyclicBarrier *..> Condition class CyclicBarrier { ~final ReentrantLock lock ~final Condition trip ~final int parties +void await() +void reset() } @enduml
e1f2b26282a06d48ffe6dbaa83cca4bc2551d35e
ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb
/projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/features/Table.TableState.puml
13b3a3c44cb5b186f447a5996ecba3ea888bf327
[]
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
306
puml
@startuml enum Table.TableState [[../sg/edu/ntu/scse/cz2002/features/Table.TableState.html]] { {static} +TABLE_VACATED {static} +TABLE_OCCUPIED {static} +TABLE_RESERVED {static} +TABLE_STATE_UNKNOWN } center footer UMLDoclet 1.1.3, PlantUML 1.2018.12 @enduml
9fbc16ce9c3e90360446ef84c84dea74b72755ea
c592e8f00a777a48d9441c2b1eeb9b6a5647a2dd
/src/com/awei/uml/person.puml
45ff37553a047153fb9310787ebcdd11d97cc7b1
[]
no_license
chizho/DesignPattern
c7c8668d77653e059ec8f805d7a3dfd92db70cea
c76050856fa740443eea553a55e966fa5ed2f1de
refs/heads/master
2023-08-12T23:52:31.099598
2021-10-18T08:15:17
2021-10-18T08:15:17
416,538,001
0
0
null
null
null
null
UTF-8
PlantUML
false
false
131
puml
@startuml 'https://plantuml.com/class-diagram class Person { Integer id String name setName(String name) String getName() } @enduml
044d42ab2c44796dafb46c461affd7b29f065a49
8d4263c7b98ba8b5772b53f1d7cd3a92285b5c22
/test6/src/class.puml
a65730de61438d746b1ed34f3fe8df1bc98a8db1
[]
no_license
a1005186594/is_analysis
a9025422bfa452dd84be1d43d71db72c4f35881f
56eeb0b53fd7d75cc444068e01a58dc689426bd0
refs/heads/master
2021-04-18T21:27:24.334529
2018-06-03T12:38:23
2018-06-03T12:38:23
126,790,096
0
2
null
null
null
null
UTF-8
PlantUML
false
false
1,307
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> (老师工号) department (老师所属部门) teachercourse (老师所选课程) } class students{ <b>student_id</b> (学号) class (班级) result_sum(成绩汇总) web_sum (网站正确与否汇总) studentcourse (学生所选课程) } users <|- students users <|-- teachers class grades { <b>student_id</b> (学号) <b>test_id</b> (实验编号) term (学期) course (课程) result (分数) memo (评价) update_date (评改日期) } class tests { <b>test_id</b> (实验编号) title (实验名称) } course <|-- tests term <|-- tests class course { <b>course_id</b> (课程编号) coursename (课程名称) term_id(课程对应学期) } course <|-- term class term { <b>term_id</b> (学期编号) termname (学期名称) } students "1" -- "n" grades tests "1" -- "n" grades @enduml
18f5d2cc832d526c06a2b169884a1ccd4e7339d7
adf7d7054fa8dc3a7231e21c019a486b06ce0765
/DesignPatternsElementsOfReusableObjectOrientesSoftware/Chapter04/Bridge/Bridge.puml
e9b4d359b9ef92c4a7cab2123293c0fa77da2876
[]
no_license
lealceldeiro/gems
ee93f9d4e4a6265b6f78ae06353116b51bcf168f
3d7529678067eeb4437f0b00be96adf80362f9e5
refs/heads/master
2023-08-22T09:52:13.176466
2023-08-15T12:49:36
2023-08-15T12:49:36
230,064,871
8
6
null
null
null
null
UTF-8
PlantUML
false
false
2,600
puml
@startuml package graphic { interface Graphic { + {abstract} int getStartX() + {abstract} int getStartY() + {abstract} int getEndX() + {abstract} int getEndY() } class Line implements Graphic { - int startX - int startY - int endX - int endY + Line(int startX, int startY, int endX, int endY) + int getStartX() + int getStartY() + int getEndX() + int getEndY() } } package lookandfeel { interface LookAndFeel { + {abstract} String name() + {abstract} Graphic draw(int startX, int startY, int endX, int endY) } LookAndFeel .. Graphic : uses abstract class AbstractLookAndFeel implements LookAndFeel { + AbstractLookAndFeel() + {abstract} String name() + Graphic draw(int startX, int startY, int endX, int endY) # {abstract} void renderPixel(int x, int y) } AbstractLookAndFeel .. Line class OceanLookAndFeel extends AbstractLookAndFeel { + OceanLookAndFeel() + String name() # void renderPixel(int x, int y) } class DarkLookAndFeel extends AbstractLookAndFeel { + DarkLookAndFeel() + String name() # void renderPixel(int x, int y) } } package windows { interface Windows { + {abstract} void drawRectangle(int topLeftX, int topLeftY, int height, int width) + {abstract} void drawHorizontalLine(int x, int y, int size) + {abstract} void drawVerticalLine(int x, int y, int size) } abstract class AbstractWindows implements Windows { # LookAndFeel lookAndFeel + AbstractWindows(LookAndFeel lookAndFeel) + void drawRectangle(int topLeftX, int topLeftY, int height, int width) + void drawHorizontalLine(int x, int y, int size) + void drawVerticalLine(int x, int y, int size) } AbstractWindows *-- LookAndFeel class IconWindows extends AbstractWindows { + IconWindows(LookAndFeel lookAndFeel) + void drawBorder(Graphic graphic) } class TransientWindows extends AbstractWindows { + TransientWindows(LookAndFeel lookAndFeel) + void drawCloseBox() } } note "<b>Bridge</b>: Instead of having a <i>OceanWindows</i> and a\n<i>DarkWindows</i> a new indirection is created through\n<i>AbstractLookAndFeel</i>, so the look and feel of the\nwindows in the system vary independently from\nthe specific windows implementations" as BridgeNote Windows .. BridgeNote BridgeNote .. LookAndFeel hide empty members @enduml
6ccb5c51152d1e0e6d1c5cfd74f8d3c0f6c09127
1c5fa16ac93e29734dc683b8130ae78f9beacd91
/docs/uml.plantuml
dba492e0062d3f8259141ba90e9731a7ffbb38e3
[]
no_license
spilloid/Visitor-Game-Engine
ab2d8dfe4a574ccf7330023f35b8f2a2e94c2255
20424ca6190ffae5b4ed018de7d7d8b4607abf16
refs/heads/master
2020-12-02T09:10:08.302782
2019-12-30T17:49:30
2019-12-30T17:49:30
230,956,609
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,878
plantuml
@startuml FinalProject class Game{ +void start() } class EasyGameEngine{ -AbstractDrawingVisitor adv -AbstractCollisionVisitor acv -map<int,Scene> sceneList +void setBoundingBoxCollisions() +void setRayCastCollisions() +void setForces(bool) +void addScene(int,AbstractScene) +void setScene(int) +void setRendererer(AbstractRenderer) } class GameEngine { -list<Visitor> sceneVisitors -Scene scene +addVisitor(Visitor) +addSprite(Sprite) +bool update() } class click{ int x int y int isLeft } class AbstractInputWrapper { +int[] getKeyPress() +click getMousePress() } class SFMLInputWrapper { } class AbstractScene{ +void addSprite() +void accept() } class SimpleScene{ -list<Sprite> spriteList } class LayeredScene{ -lis<list<Sprite>> spriteList } class TextureFactory{ +bool loadTexture(string); +sf::Texture> getTexture(string); } class Sprite{ -int x -int y -int dy -int dx -int height -int WrapWidth -string textureLoc +getters() +setters() } class Visitor{ +virtual void visit(Sprite) } class BounceBoundsVisitor{ void visit() } class WrapBoundsVisitor{ void visit() } class AbstractCollisionVisitor{ } class BoundingBoxCollisionVisitor{ } class RayCastCollisionVisitor{ } class CircularCollisionVisitor{ } class AbstractRenderer{ -bool open +void draw(vector<Sprite> sp) +bool isOpen() } class SFMLRenderer{ -RenderWindow rw -TextureFactory tf +getInput() } class AbstractDrawingVisitor{ -AbstractRenderer renderer +void draw() +void visit() +bool isOpen() } class SimpleDrawingVisitor{ -sf::RenderWindow window -map<Sprite,sf::Sprite> text } class GridDrawingVisitor{ -int maxX -int maxY } class ForceVisitor{ } class GravityVisitor{ } Game <|-- Pong Game <|-- Quoridor Game ---> GameEngine Game ---> Visitor Game ---> Sprite Game ---> AbstractRenderer GameEngine <|-- EasyGameEngine GameEngine --> Visitor GameEngine --> AbstractScene GameEngine --> AbstractInputWrapper AbstractInputWrapper <|--- SFMLInputWrapper AbstractScene <|--- LayeredScene AbstractScene <|--- SimpleScene AbstractScene ---> Sprite Visitor ---> Sprite Visitor <|-- ForceVisitor Visitor <|-- GravityVisitor Visitor <|-- BounceBoundsVisitor Visitor <|-- WrapBoundsVisitor Visitor <|-- AbstractDrawingVisitor Visitor<|-- AbstractDrawingVisitor Visitor <|-- AbstractCollisionVisitor AbstractCollisionVisitor <|-- RayCastCollisionVisitor AbstractCollisionVisitor <|-- BoundingBoxCollisionVisitor AbstractCollisionVisitor <|-- CircularCollisionVisitor AbstractDrawingVisitor <|-- SimpleDrawingVisitor AbstractDrawingVisitor <|-- GridDrawingVisitor AbstractDrawingVisitor ---> AbstractRenderer AbstractRenderer <|--- SFMLRenderer SFMLRenderer ---> TextureFactory @enduml
cdeb6eae6f17a91822b4909102f8f32c7354f8fd
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/GraphQLExtensionNoResponseError.puml
2e97720468a499458da3b1fb90c5c48151a2d0bb
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
479
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface GraphQLExtensionNoResponseError [[GraphQLExtensionNoResponseError.svg]] extends GraphQLErrorObject { code: String extensionId: String extensionKey: String } interface GraphQLErrorObject [[GraphQLErrorObject.svg]] { code: String } @enduml
e865ea7c57cec718af56e755be98fd1ccf7e2bb7
d6ca810d2ec991d97c1bc8581ed06763c57641ce
/development/felica/TestCords/FericaReader/plantuml/Properties/Settings.Designer.puml
f2d66db1493b8c39ff16f3853e981e32695142c8
[]
no_license
miyashita-atsushi/team_a
c847d571c5a522339ee0c3ac2c5ee0cb0753411b
3cfec172375aafeef64c40a575dddde64f0a8ed3
refs/heads/master
2023-02-25T07:39:36.010130
2020-05-29T09:12:57
2020-05-29T09:12:57
254,561,813
0
1
null
2021-01-29T20:47:18
2020-04-10T06:33:38
C#
UTF-8
PlantUML
false
false
407
puml
@startuml class Settings <<sealed>> <<partial>> { + UserDBFilePath : string <<get>> + ProcessDBFilePath : string <<get>> + CsvResultFolderName : string <<get>> <<set>> + StationDBFilePath : string <<get>> <<set>> + log4netConfigFilePath : string <<get>> <<set>> + LogLevel : string <<get>> <<set>> + LogFilePath : string <<get>> <<set>> } Settings --> "Default" Settings @enduml
6bb5ea1c541842b689312407b2a988a721378a80
2bff705b32daaa67473cad8e4db05300e4347298
/src_diagramme/DC-travel.puml
a89466fb8787c6f6faa903a0a39ea84d5971bd85
[]
no_license
BanProg23/apsio-uml
55daed071f249a46392c97b76d5ff44ce61de0cc
6e64333b1406100122ab883a935c99175492203e
refs/heads/master
2021-01-11T04:34:04.831508
2016-10-19T12:57:02
2016-10-19T12:57:02
71,135,862
0
0
null
null
null
null
UTF-8
PlantUML
false
false
948
puml
@startuml hide circles hide methods class Sortie { + id : int + date : Date + destination : String + distanceTotalAller : double + distanceTotalRetour : double + montantPeageAller : double + montantPeageRetour : double } class Vehicule { + id : int + carburant : String + vehicule : String + consomation : double + nbPlace : int + commentaires : String } class Personne { + id : int + nom : String + mail : String + login : String + password : String + droit : String } class Payer { + payer : boolean } class Disponibilite { + id : int + dateDisponible : Date } Sortie "0..*"--"1" Vehicule : Utiliser Sortie "0..*"-l-"1..*" Personne : " Sortir " (Personne, Sortie) .. Payer Personne "1"-r-"0..*" Sortie : " Organiser " Personne "1"--"0..*" Vehicule : "Posseder" Personne "0..*"--"0..*" Disponibilite : Posseder @enduml
3290d1b6ff6565dd66fdaaeeeac8909fb69ed7ea
ed397699de0a152c7933fe30ef633036b4923f16
/doc/STRUCTURE.puml
4d3b6c898c9a227855946b1108aa1add5bc99809
[ "MIT" ]
permissive
yoo2001818/yage
404dd5d07fcd8a809601a19eccae292f9d9fd59c
0b7eaf0755257d683af802effbe401dcfbf242e3
refs/heads/master
2023-05-13T11:20:15.306753
2021-06-05T14:59:57
2021-06-06T15:27:05
287,441,206
4
0
null
null
null
null
UTF-8
PlantUML
false
false
363
puml
@startuml class Entity { } class EntityPage { id: number parentId: number offsets: number[] size: number maxSize: number } class EntityGroup { pages: EntityPage[] } class EntityStore { pages: EntityPage[] groups: EntityGroup[] } EntityStore --* EntityGroup EntityStore --* EntityPage EntityGroup --* EntityPage interface Index { } @enduml
19da4f606c234ce53b2ccaaf029e81448d9593b2
544a5b602c038888f8597b5c6fba5293d166f63b
/src/main/java/com/master/chapter024/Command-Pattern.puml
a4ee810c3e4f1787ed7cb778bae16199e2da9535
[]
no_license
ColorXJH/Design-Pattern-Learning
50d63ac6be15fd3d8947dbd89d9272de358bb9fe
487a017f1688ab764e9ba98360e3a55b8a1858e7
refs/heads/master
2023-03-30T06:46:37.633591
2021-03-20T13:32:12
2021-03-20T13:32:12
349,720,860
0
0
null
null
null
null
UTF-8
PlantUML
false
false
986
puml
@startuml 'https://plantuml.com/class-diagram /'命令接口'/ interface Command{ /'执行命令'/ void execute(); /'撤销'/ void undo(); } /'电灯打开命令'/ class LightOnCommand{ void execute(); void undo(); } /'电灯关闭命令'/ class LightOffCommand{ void execute(); void undo(); } /'电灯接收者'/ class LightReceiver{ /'真正执行的动作--打开/关闭'/ void on(); void off(); } /'遥控器调用者'/ class ControllerInvoker{ /'一组打开和关闭的命令'/ Command[] onCommand; Command[] offCommand; } /'空命令:不执行任何操作(省略了判断为空,简化操作)'/ class NoCommand{ } Command <|.. NoCommand /'客户端'/ class Client{ } Command <|.. LightOnCommand Command <|.. LightOffCommand LightOnCommand o-- LightReceiver LightOffCommand o-- LightReceiver ControllerInvoker o-- Command Client --> ControllerInvoker Client --> Command Client --> LightReceiver @enduml
c3cea8ed675b88916c50633f64065076ffd5e71f
28f064d15c8c704502dd453c21998ca491a31d7e
/uml/objectDiagram.puml
db93702daa6168614af072771e02c1719e99119a
[]
no_license
enzosromano/To-Do-List-Manager
bc7e276adf18f8a1049185a8bccb0654c35b82eb
37b4ba7cf717fdfe95febe4ecaff1c51f7210362
refs/heads/master
2023-06-19T11:44:00.871254
2021-07-12T03:00:12
2021-07-12T03:00:12
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
750
puml
@startuml TodoList <|-- Task class TodoList{ String listTitle ObservableList<Task> taskObserve; + public void initializeList() + public void setTitle(String title) + public string getTitle() } class Task{ String taskTitle String listName String taskDescription String dueDate Boolean isDone + public String getTaskTitle() + public void setTaskTitle(String name) + public String getListName() + public void setListName(String list) + public String getTaskDescription() + public void setDescription(String descriptionEdit) + public String getDueDate() + public void setDueDate(String date) + public Boolean getIsDone() + public void setIsDone(Boolean done) } @enduml
58881543c011d370f1956c279511f5425ee7357b
181dcbe1a6411f05567e0714573e0f10e0cb5d19
/TerraGenesis_AP4B.plantuml
9acc316dbab5efcc8208237f4d4a8470f41b4131
[]
no_license
Zapolatero/TerraGenesis_AP4B
de6aa1a682b9b5c86cb6efa24bbd985b0e2de17e
835f35bff6cf6e24605936edac0cb1caf49ca2a4
refs/heads/main
2023-03-22T15:10:05.547318
2021-01-08T18:08:44
2021-01-08T18:08:44
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
5,681
plantuml
@startuml title __TERRAGENESIS_AP4B's Class Diagram__\n namespace controler { class controler.ControleurPrincipal { } } namespace modele { class modele.AvantPoste { } } namespace modele { class modele.Batiment { } } namespace modele { class modele.Coordonnee { } } namespace modele { class modele.Donnee { } } namespace modele { class modele.Gouverneur { } } namespace modele { class modele.Infrastructure { } } namespace modele { class modele.Mine { } } namespace modele { class modele.Planete { } } namespace modele { enum Rarete { } } namespace modele { enum Ressource { } } namespace modele { enum TypeDonnee { } } namespace modele { enum TypeInfrastructure { } } namespace modele { class modele.Ville { } } namespace sample { class sample.App { } } namespace vue { class vue.NavigateurDesVues { } } namespace vue { class vue.VueAjouterAvantPoste { } } namespace vue { class vue.VueAjouterMine { } } namespace vue { class vue.VueAvantPoste { } } namespace vue { class vue.VueGouverneur { } } namespace vue { class vue.VueMenuCulture { } } namespace vue { class vue.VueMenuGouverneurs { } } namespace vue { class vue.VueMenuPopulation { } } namespace vue { class vue.VueMenuPrincipal { } } namespace vue { class vue.VueMenuRecherche { } } namespace vue { class vue.VueMenuCarte { } } namespace vue { class vue.VueMenuStatistiques { } } controler.ControleurPrincipal o-- vue.NavigateurDesVues : navigateur controler.ControleurPrincipal o-- modele.Planete : planete controler.ControleurPrincipal o-- vue.VueAjouterAvantPoste : vueAjouterAvantPoste controler.ControleurPrincipal o-- vue.VueAjouterMine : vueAjouterMine controler.ControleurPrincipal o-- vue.VueAvantPoste : vueAvantPoste controler.ControleurPrincipal o-- vue.VueGouverneur : vueGouverneur controler.ControleurPrincipal o-- vue.VueMenuCulture : vueMenuCulture controler.ControleurPrincipal o-- vue.VueMenuGouverneurs : vueMenuGouverneurs controler.ControleurPrincipal o-- vue.VueMenuPopulation : vueMenuPopulation controler.ControleurPrincipal o-- vue.VueMenuPrincipal : vueMenuPrincipal controler.ControleurPrincipal o-- vue.VueMenuRecherche : vueMenuRecherche controler.ControleurPrincipal o-- vue.VueMenuCarte : vueMenuSatellites controler.ControleurPrincipal o-- vue.VueMenuStatistiques : vueMenuStatistiques modele.AvantPoste o-- modele.Coordonnee : coordonnee modele.Batiment -up-|> modele.Infrastructure modele.Donnee o-- modele.TypeDonnee : typeDonnee modele.Infrastructure o-- modele.TypeBatiment : typeInfrastructure modele.Mine -up-|> modele.Infrastructure modele.Mine o-- modele.Coordonnee : coordonnee modele.Mine o-- modele.Ressource : ressource modele.Ressource o-- modele.Rarete : rarete modele.Ville o-- modele.Coordonnee : coordonnee modele.Ville o-- modele.Gouverneur : gouverneur vue.NavigateurDesVues -up-|> javafx.application.Application vue.NavigateurDesVues o-- controler.ControleurPrincipal : controleur vue.NavigateurDesVues o-- vue.VueAjouterAvantPoste : vueAjouterAvantPoste vue.NavigateurDesVues o-- vue.VueAjouterMine : vueAjouterMine vue.NavigateurDesVues o-- vue.VueAvantPoste : vueAvantPoste vue.NavigateurDesVues o-- vue.VueGouverneur : vueGouverneur vue.NavigateurDesVues o-- vue.VueMenuCulture : vueMenuCulture vue.NavigateurDesVues o-- vue.VueMenuGouverneurs : vueMenuGouverneurs vue.NavigateurDesVues o-- vue.VueMenuPopulation : vueMenuPopulation vue.NavigateurDesVues o-- vue.VueMenuPrincipal : vueMenuPrincipal vue.NavigateurDesVues o-- vue.VueMenuRecherche : vueMenuRecherche vue.NavigateurDesVues o-- vue.VueMenuCarte : vueMenuSatellites vue.NavigateurDesVues o-- vue.VueMenuStatistiques : vueMenuStatistiques vue.VueAjouterAvantPoste -up-|> javafx.scene.Scene vue.VueAjouterAvantPoste o-- controler.ControleurPrincipal : controleur vue.VueAjouterMine -up-|> javafx.scene.Scene vue.VueAjouterMine o-- controler.ControleurPrincipal : controleur vue.VueAjouterMine o-- modele.Ressource : ressourceMine vue.VueAvantPoste -up-|> javafx.scene.Scene vue.VueAvantPoste o-- controler.ControleurPrincipal : controleur vue.VueGouverneur -up-|> javafx.scene.Scene vue.VueGouverneur o-- controler.ControleurPrincipal : controleur vue.VueMenuCulture -up-|> javafx.scene.Scene vue.VueMenuCulture o-- controler.ControleurPrincipal : controleur vue.VueMenuGouverneurs -up-|> javafx.scene.Scene vue.VueMenuGouverneurs o-- controler.ControleurPrincipal : controleur vue.VueMenuPopulation -up-|> javafx.scene.Scene vue.VueMenuPopulation o-- controler.ControleurPrincipal : controleur vue.VueMenuPrincipal -up-|> javafx.scene.Scene vue.VueMenuPrincipal o-- controler.ControleurPrincipal : controleur vue.VueMenuRecherche -up-|> javafx.scene.Scene vue.VueMenuRecherche o-- controler.ControleurPrincipal : controleur vue.VueMenuCarte -up-|> javafx.scene.Scene vue.VueMenuCarte o-- controler.ControleurPrincipal : controleur vue.VueMenuStatistiques -up-|> javafx.scene.Scene vue.VueMenuStatistiques o-- controler.ControleurPrincipal : controleur 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
2adbba682631fb932550d7293b46f89c484466cc
271f0f3e3b3ea50976d5b48135549f5512360d1c
/app/src/main/java/keijumt/design_pattern/pattern/observer/observer.puml
e2ace112abbea7326df4674fb108a5ae7f23eabe
[]
no_license
keijumt/design-pattern
cffea9727fa903ac3e4d42842e4ed34f6ec2e3c1
ec811a9ea941ec442b20b81fd04a536082eab2bf
refs/heads/master
2020-03-23T14:45:58.234219
2018-07-30T13:58:59
2018-07-30T13:58:59
141,697,922
1
0
null
null
null
null
UTF-8
PlantUML
false
false
533
puml
@startuml interface Observer{ + update() } abstract class Subject{ - observers:List<Observer> + addObserver(observer:Observer) + removeObserver(observer:Observer) + notifyObservers() } class ConcreteObserver{ + update() } class ConcreteSubject{ + addObserver(observer:Observer) + removeObserver(observer:Observer) + notifyObservers() } Subject <|-- ConcreteSubject Observer <|.. ConcreteObserver Subject "1" o-left- "0..*" Observer ConcreteSubject -left-> ConcreteObserver : update @enduml
46adab14fe8ac524f52a22b4e080cdd9654581dd
922c17c800bee31feb2679e8c9ec5262c959ca75
/src/main/java/com/ayoungya/patternDesign/behavioral/chainOfResponsibility/UML.puml
62e94e90eb73c02c50055b89d21323d32e0a5495
[]
no_license
AyoungYa/java-tips
9dd20a3abd7dc1e03820a1067eaeb4c83cb9bd98
39834dcfe4acd4b006d46b2070fbb80d1e1d06e9
refs/heads/master
2022-12-22T16:09:29.874270
2020-07-22T01:06:36
2020-07-22T01:06:36
81,182,318
1
0
null
2022-12-16T02:16:55
2017-02-07T07:58:57
Java
UTF-8
PlantUML
false
false
157
puml
@startuml abstract class Handler{ + handleRequest() } Client --right-> Handler Handler --> Handler: + successor ConcreteHandler --up-|> Handler @enduml
5af2530708e99098af5fb2ef54135791fd497a66
c6ec0691eaf88515667980a8c65e233d22cef417
/command-excercise/command-excercise-classes.puml
73928b951c1e50bc5c1a1c21299a8435df0885f3
[]
no_license
rvazquezglez/design-patterns-workshop
220bf24c011996f28f914199044640e484fab3d4
2c063e92b3e91e1552ec71156c04f575cd6961ee
refs/heads/master
2021-07-18T10:15:26.946313
2021-07-15T04:16:10
2021-07-15T04:16:10
49,338,908
4
5
null
null
null
null
UTF-8
PlantUML
false
false
353
puml
@startuml interface Command { execute() } class CashRegister{ total addCash() getTotal() } class Purchase{ cashRegister amount execute() } class PurchaseInvoker { executedPurchases replayPurchases() } Purchase -left-* CashRegister : has a Command <|-down- Purchase PurchaseInvoker <-down- Purchase : passed to @enduml
f4b88996e0e99b82708f08a5374303990e8f5795
993b7db4bbb5ef594214d8bc39935f92d9898d76
/docs/content/class_diagram.puml
8a86b605e0d9c107cc8f00471cebb8767ee2e945
[ "BSD-3-Clause" ]
permissive
webvimark/ybc
148b13e8b7c9c6a8f7e162ae0a405435122b3e41
54a3247da856e88296bcd8dc04077279ddcd86ce
refs/heads/master
2021-01-10T02:14:12.491736
2015-08-24T11:38:02
2015-08-24T11:38:02
36,184,808
1
0
null
null
null
null
UTF-8
PlantUML
false
false
333
puml
@startuml class Page { const TYPE_TEXT const TYPE_INTERNAL_LINK const TYPE_EXTERNAL_LINK -- string $name string $url string $menu_image int $status int $sorter int $type int $is_main text $body } class PagePlace { string $name } class PageSystemPlace { int $active int $sorter string $name string $path } @enduml
c05ce0c3c0c9f9f7c9f73f7e7763a61b06874ba5
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ReturnInfoAddedMessage.puml
ef672fef012141fc5002bdec4d66cb0ad0b76b2f
[]
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,186
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 ReturnInfoAddedMessage [[ReturnInfoAddedMessage.svg]] extends OrderMessage { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] returnInfo: [[ReturnInfo.svg ReturnInfo]] } interface OrderMessage [[OrderMessage.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] } @enduml
2aaccb350ddc93a24865e6e7c4d966207d89e9c2
d196a6642cf2775338f9ad61a128532d796a4ce9
/Server/src/main/java/yhames/pro/project/afis/matchers/matchers.plantuml
3e1cc26991fb70a486ed93919e4679adfdc6c59d
[]
no_license
HydroZA/Biometric-DRM
6389bc04435258360c64feb4b913be01e0f2e71b
e4e1113d6beb301669ddf59bbdd7a5ae3d1f822a
refs/heads/master
2023-06-19T08:13:16.972918
2021-07-13T10:50:26
2021-07-13T10:50:26
385,664,621
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,358
plantuml
@startuml title __MATCHERS's Class Diagram__\n namespace yhames.pro.project.afis { namespace matchers { class yhames.pro.project.afis.matchers.Match { - isMatch : boolean - score : double + Match() + Match() + Match() + getFingerprint() + getScore() + isMatch() + setFingerprint() + setMatch() + setScore() } } } namespace yhames.pro.project.afis { namespace matchers { abstract class yhames.pro.project.afis.matchers.Matcher { ~ threshold : float {abstract} + match() {abstract} + search() } } } namespace yhames.pro.project.afis { namespace matchers { class yhames.pro.project.afis.matchers.SourceAFIS { {static} - threshold : float + match() + search() {static} - convertFingerprintToTemplate() } } } yhames.pro.project.afis.matchers.Match o-- yhames.pro.project.afis.Fingerprint : fingerprint yhames.pro.project.afis.matchers.SourceAFIS -up-|> yhames.pro.project.afis.matchers.Matcher 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
08df611188865f366c6c31d173d5f2903a72d03b
decb75580b954c2e2907184be7902c0f27afbfe2
/doc/classes.plantuml
bcff465dd4b6ef4848c4f78c8433303bf3796f82
[]
no_license
TeleGD/tgd-tetris-battle
773ecfa7a760357e6fd2621051c4899338f38ae0
133ba336abf4165866b87264dc5952a2b30350ab
refs/heads/master
2021-07-07T22:10:38.239370
2021-04-22T14:52:37
2021-04-22T15:00:33
239,173,564
0
0
null
2021-04-22T15:00:33
2020-02-08T17:28:29
Java
UTF-8
PlantUML
false
false
510
plantuml
@startuml class World { List<Player> player } class Player{ Tetris tetris int axisX int axisY int score int mana } class Tetris { List<Multimino> multiminos List<List<Block>> blocks List<Multimino> nextBlocks } class Multimino{ List<Block> blocks void translate() void rotate() } class Block{ Multimino multimino List<Block> neighbors } Multimino "1" -- "*" Block Tetris -- "*" Multimino Tetris -- "*" Block Block -- "*" Block World - "2" Player Player - "1" Tetris @enduml
552cd53ea3f973117ad322d7197af1b44a0b9aba
ee98a2e017dce0f43454eeaed92014a94be974df
/docs/Diagramme_classe.puml
71cc3e8b6ceb62fb3364af61ad34a3a0b72f0395
[]
no_license
Arthur-Cappellina/-acl-zeldiablo
b3de0dce897ede5da895b46b3eb2d6db8aed65d8
228038c1e80865cc3a67aea09705125d55697125
refs/heads/main
2023-02-02T12:30:51.919320
2020-12-04T14:43:53
2020-12-04T14:43:53
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,053
puml
@startuml title Zeldiablo class ScreenAdapter class Game class DesktopLauncher { - {static} void main(String[] arg) } class Zeldiablo { + void create() } package views { class GameScreen { - SpriteBatch sprite + void render(float delta) - void update() + void dispose() } } package models { class GameWorld { - World world - static int widthWorld = 80 - static int heightWorld = 80 + void changeMaze(Portal p) + int getWidthWorld() + int getHeightWorld() } class GameState { + boolean isLost() + boolean isWinned() + boolean isPaused() + boolean isInProgress() } enum Etat { IN_PROGRESS WINNED LOST PAUSED STOPPED } interface Entity { + int getHP() + String getName() + void draw(SpriteBatch batch) } class Player { - int hp - int att - int def - Body body - GameWorld gs + int getHP() + void attack() + void draw(SpriteBatch batch) } class Weapon { - int damage - int scope - int speed - String name - Body bodyWeapon + void draw(SpriteBatch batch) } class Maze { - int currentNumMaze + void loadMaze(ArrayList<Portail> portals) + int getCurrentNumMaze() + void draw(SpriteBatch batch) } class Portal { - Vector2 posPortal - Body bodyPortal - int numMaze + void draw(SpriteBatch batch) + int getNumMaze() + Vector2 getPosPortal() + Vector2 getPosPortalExit() } } package controllers { interface InputProcessor class KeyboardListener { + String getCMD() + boolean keyDown(int keycode) + boolean keyUp(int keycode) + boolean keyTyped(char character) + boolean touchDown(int screenX, int screenY, int pointer, int button) + boolean touchUp(int screenX, int screenY, int pointer, int button) + boolean touchDragged(int screenX, int screenY, int pointer) + boolean mouseMoved(int screenX, int screenY) + boolean scrolled(int amount) } enum Direction { UP RIGHT DOWN LEFT } enum Action { LEFT_CLICK } } DesktopLauncher *.. Zeldiablo Zeldiablo --|> Game GameScreen --|> ScreenAdapter Zeldiablo *.. GameScreen GameState --> "1" Etat: "- etat" Player ..|> Entity Player --> "1" Weapon: "- weapon" Portal --> "1" Portal GameScreen --> "1" GameWorld: "- game" GameScreen --> "1" GameState: "- state" GameWorld --> "1" GameScreen: "- screen" GameWorld --> "1" Player: "- player" GameWorld --> "1" Maze GameWorld --> "*" Portal KeyboardListener --> "1" Direction: "- direction" KeyboardListener --> "1" Action: "- action" KeyboardListener ..|> InputProcessor GameScreen --> "1" KeyboardListener: "- keyboard" @enduml
db093579869d26f1981ab7908b9e661b46355ba8
c13234e7c30598dab8dbed2a09543b6c60e4792a
/S201250182/uml/hw2Class.puml
4a8ef09cfd871d76749bb56f3340e4bbef4dac72
[]
no_license
jwork-2021-attic/jw02-Martin7-1
c0174e644364491de7685b72e3ea74a6a98f1c37
ef3c4e740bab9efb5a9a0eb1fd309e4ca9a388bf
refs/heads/master
2023-08-07T14:05:42.945942
2021-09-26T13:27:36
2021-09-26T13:27:36
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,088
puml
@startuml 'https://plantuml.com/class-diagram class BubbleSorter class Snake class Line class Position interface Linable interface Sorter class Monster class Color class BubbleSorter Snake o-- Sorter: 聚合 > Sorter *-- BubbleSorter: Sorter的一种: Snake <-- Line: 关联 > Line <-- Linable: 依赖 > Monster o-- Position:组合 > Line o-- Position: 组合 > Monster o-- Linable: Linable的一种 > Monster o-- Color: 组合 > class Monster { Color color Position position int rank getRank() getPosition() getValue() toString() setPosition() } class Line { Position[] positions put() get() toString() toArray() } class Position { Linable linable setLinable() } interface Linable { setPosition() getPosition() getValue() } interface Sorter { load() sort() getPlan() } class BubbleSorter { int[] a String plan load() bubbleSort() swap() sort() getPlan() } class Snake { Snake theSnake Sorter sorter getTheSnake() setSorter() lineUp() parsePlan() execute() } class Color { int r; int g; int b; Set<List<Integer> rgb setRGB() haveSameRGB() getR() getG() getB() } @enduml
79ae7381d03d563d89741ad4f92453c9b2d0b57b
c5f6be1c13ab1d0c99b597130443273e13bc06e7
/screenshot/uml/linkedhashset_structure.puml
8045cddadb51cf1bf21fe88dd2581e01377f7f9b
[]
no_license
chenzhe/BlogSource
e82a0648b6addebbe0ab6f4da3ae8c1f03e42852
284bd5e1131b98923076c88f356831623e315d94
refs/heads/master
2021-02-06T10:16:36.754496
2018-06-07T08:09:10
2018-06-07T08:09:10
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
361
puml
@startuml class LinkedHashSet{ } class HashSet{ } interface Set HashSet <|- LinkedHashSet Set <|.. LinkedHashSet abstract class AbstractSet AbstractSet <|- HashSet Set <|.. HashSet abstract AbstractCollection AbstractCollection <|- AbstractSet Set <|.. AbstractSet interface Collection Collection <|.. AbstractCollection Collection <|- Set @enduml
131d157f4f638df7494f6a639fb05e9e4bb081e9
23eebc652cc34d63a61ab645cccb3e0d12192028
/documentation/logicalview/analysisview/repository/classanalysis/puml/controllers/OpenVehiclesController.puml
a4d23fc86eb94c4d24f3e1ee4c9765713787cf78
[]
no_license
Ruskab/agrimManager
0e654c5bfc7bb6241f7a8cf4c49e58af55155886
e264536edc42ad8def85e3714a7b1c15236d7de5
refs/heads/develop
2023-09-01T02:36:44.943558
2021-08-14T20:15:43
2021-08-14T20:15:43
166,677,735
1
2
null
2023-09-02T13:25:24
2019-01-20T15:37:25
Java
UTF-8
PlantUML
false
false
292
puml
@startuml class OpenVehiclesController { +readClient(clientId()) +readAllVehicles() +searchVehicles(text) } OpenVehiclesController --> ClientsDao OpenVehiclesController --> VehiclesDao VehiclesView --> OpenVehiclesController CreateInterventionView --> OpenVehiclesController @enduml
2e414b0a5acbfe4a205067908c1daa472f90fa5c
29e499c7049d725de515d0f0294f765b6bbb4dc3
/DesignPattern/out/production/DesignPattern/com/ilike/flyweight/FlyWeight.puml
bd17bb01f341f24abfa8de669a24ff0d78a045d4
[]
no_license
dongyuancaizi/designPatternLearning
70dddd9d156fd3d4e9c07bb4f94f76820b625308
1fbde529b073b9a205bffd90607574754d6aac50
refs/heads/master
2020-07-04T05:13:23.384529
2019-11-19T13:09:10
2019-11-19T13:09:10
202,167,833
0
0
null
null
null
null
UTF-8
PlantUML
false
false
394
puml
@startuml abstract class WebSite class ConcreteWebSite class WebSiteFactory class Client class User WebSite <|-- ConcreteWebSite WebSiteFactory o-- WebSite WebSiteFactory <.. Client ConcreteWebSite <.down. Client User <.down.Client User <.down.ConcreteWebSite class WebSite{ void use(); } class ConcreteWebSite{ void use(); } class WebSiteFactory{ WebSite getWebSite(); } @enduml
153633d510450b444d86fd24f0c10253da6da484
aa91a98e42b0346d7b33099b91bf6c08f44459be
/docs/images/commandLevel.plantuml
7dffa2f5e94c0aa2f2fea6288eda8d606cb37b2d
[]
no_license
rfontao/lpoo-2020-g74
628114123e81e79a5f1887a1aeac23d1ace6b326
26150f4c565349bd9c43537cf5f2ecbc4fcd5a78
refs/heads/master
2023-04-06T16:57:50.842855
2021-04-19T13:43:09
2021-04-19T13:43:09
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,346
plantuml
@startuml commandLevel skinparam classAttributeIconSize 0 skinparam class { BackgroundColor White ArrowColor Black BorderColor Black } interface Command{ + void execute() } class MovePlayerDownCommand{ + MovePlayerDownCommand(Level) + void execute() } class MovePlayerRightCommand{ + MovePlayerRightCommand(Level) + void execute() } class MovePlayerLeftCommand{ + MovePlayerLeftCommand(Level) + void execute() } class MovePlayerUpCommand{ + MovePlayerUpCommand(Level) + void execute() } class InteractCommand{ + InteractCommand(Level) + void execute() } class ExitLevelCommand{ + ExitLevelCommand(Level) + void execute() } class Level{ +void movePlayerTo() +void goNextLevel() +Interactable checkInteractables() } class InputHandler{ +Command getNextCommand() } class MovePlayerDownCommand implements Command class MovePlayerLeftCommand implements Command class MovePlayerRightCommand implements Command class MovePlayerUpCommand implements Command class InteractCommand implements Command class ExitLevelCommand implements Command Level <-d- MovePlayerDownCommand Level <-d- MovePlayerUpCommand Level <-d- MovePlayerRightCommand Level <-d- MovePlayerLeftCommand Level <-d- InteractCommand Level <-d- ExitLevelCommand InputHandler -l-> Command @enduml
4139926cf7b66f50245a596323bb5dd5f91fb905
ce4521625591dbb05ffa372aef06b1a444b853a3
/UML/strategy.puml
51c0e49200a278f821dacabaf443f3efa309ab99
[ "MIT" ]
permissive
azdanov/design-patterns
9a7c60ef1873c9140e4252b1366f4232a687f4bf
199600980f998aa5e64c204186cd69af2f02a9df
refs/heads/master
2021-01-25T14:03:43.786246
2018-03-31T21:18:32
2018-03-31T21:18:32
123,643,994
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,257
puml
@startuml Strategy skinparam rectangle { roundCorner 25 } rectangle "Client" { abstract class Character { {field} ~WeaponBehavior weapon {field} ~ArmorBehavior armor {method} Character(WeaponBehavior w, ArmorBehavior a); {method} +void fight(); {method} +void defend(); {method} +void setWeaponBehavior(WeaponBehavior w); {method} +void setArmorBehavior(ArmorBehavior a); } class Knight extends Character class Wizard extends Character } together { rectangle "Encapsulated Weapon Behavior" { interface WeaponBehavior { {method} useWeapon() } class SwordBehavior implements WeaponBehavior { {method} +void useWeapon(); } class MagicBehavior implements WeaponBehavior { {method} +void useWeapon(); } } rectangle "Encapsulated Armor Behavior" { interface ArmorBehavior { {method} useArmor() } class LightArmorBehavior implements ArmorBehavior { {method} +void useArmor(); } class HeavyArmorBehavior implements ArmorBehavior { {method} +void useArmor(); } } } Character --> WeaponBehavior Character --> ArmorBehavior Character -[hidden]> WeaponBehavior WeaponBehavior -[hidden]--> "Encapsulated Armor Behavior" @enduml
d265e9d2b718c6807bd140bbe73b1cec6049c4c7
c067a7796bba1bcd97ed5d7a5a7877a3217d532c
/uml/Properties/Builder/Ibuilder.puml
be88f416785410d0d1036172f2a6da9e25950b28
[]
no_license
inifares23lab/PMO_Proj-DatiCovid
6897e2d04753c6faff3045aa2ac8822035683e14
186ec91ef3eb5647439c346909bfd8e7b3fb9e6e
refs/heads/master
2022-10-22T03:17:14.494294
2020-06-16T21:10:50
2020-06-16T21:10:50
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
892
puml
@startuml interface IBuilder { data(s:JObject) : void stato(s:JObject) : void codice_regione(s:JObject) : void denominazione_regione(s:JObject) : void codice_provincia(s:JObject) : void denominazione_provincia(s:JObject) : void sigla_provincia(s:JObject) : void latitutine(s:JObject) : void longitudine(s:JObject) : void ricoverati_con_sintomi(s:JObject) : void terapia_intensiva(s:JObject) : void totale_ospedalizzati(s:JObject) : void isolamento_domiciliare(s:JObject) : void totale_positivi(s:JObject) : void variazione_totale_positivi(s:JObject) : void nuovi_positivi(s:JObject) : void dimessi_guariti(s:JObject) : void deceduti(s:JObject) : void totale_casi(s:JObject) : void tamponi(s:JObject) : void casi_testati(s:JObject) : void note_it(s:JObject) : void note_en(s:JObject) : void } @enduml
814543872a03217c7a7d157dcbf70740c53ff303
c815f9c82c1400f76243750cd0ec609d217b9943
/monad/etc/monad.urm.puml
6fe037064dcda7c8feea870ce7c732ffc5decb1b
[ "MIT" ]
permissive
mikulucky/java-design-patterns
6ab10e9e5c95b6caffebf045d37d04a1571bc0cd
cbbf3bf08842723964719ed7d8ab92864ec5a58d
refs/heads/master
2021-01-17T23:34:49.962450
2016-09-28T19:54:28
2016-09-28T19:54:28
48,302,802
1
1
null
2016-01-02T23:58:44
2015-12-20T01:00:47
Java
UTF-8
PlantUML
false
false
855
puml
@startuml package com.iluwatar.monad { class Validator<T> { - exceptions : List<Throwable> - t : T - Validator<T>(t : T) + get() : T + of(t : T) : Validator<T> {static} + validate(projection : Function<T, U>, validation : Predicate<U>, message : String) : Validator<T> + validate(validation : Predicate<T>, message : String) : Validator<T> } class App { + App() + main(args : String[]) {static} } class User { - age : int - email : String - name : String - sex : Sex + User(name : String, age : int, sex : Sex, email : String) + getAge() : int + getEmail() : String + getName() : String + getSex() : Sex } enum Sex { + FEMALE {static} + MALE {static} + valueOf(name : String) : Sex {static} + values() : Sex[] {static} } } User --> "-sex" Sex @enduml
04e98c22f6b4064d117179ef427b521419a1f117
084fcc4a31b60fe11f3f647f7d49a3c1c6621b44
/kapitler/media/uml-class-partperson.puml
cdb597f7a9870c27339a7928324cee28c7220043
[]
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
592
puml
@startuml skinparam nodesep 100 hide circle class Arkivstruktur.PartPerson <Part> { +personidentifikator : Personidentifikator [0..*] +navn : string +postadresse : EnkelAdresse [0..1] +bostedsadresse : EnkelAdresse [0..1] +kontaktinformasjon : Kontaktinformasjon [0..1] } class Arkivstruktur.Part { } Arkivstruktur.Part <|-- Arkivstruktur.PartPerson class Arkivstruktur.EnkelAdresse <<dataType>> { } Arkivstruktur.PartPerson *-- Arkivstruktur.EnkelAdresse class Arkivstruktur.Kontaktinformasjon <<dataType>> { } Arkivstruktur.PartPerson *-- Arkivstruktur.Kontaktinformasjon @enduml
7387d2fc0fe227b4eb1de3aaabf424d961692a09
38cc9873b95d7d16cfc65e0519e01cd5bdb62814
/exercise45/docs/exercise45.puml
92a128d23841404de9fd344093eb87b95e409db4
[]
no_license
Leo2399/herrera-a04
160b12f9426c335540672645924cbd74d82d8672
40f3c96c6716ff310334ddbe6997843e368d9b69
refs/heads/main
2023-09-03T02:32:04.669685
2021-10-18T03:08:47
2021-10-18T03:08:47
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
228
puml
@startuml 'https://plantuml.com/class-diagram class Solution45 { main () } class ReadFile { +read () +content () } class WriteFile { +writeToFile () } Solution45 <-- ReadFile Solution45 <-- WriteFile @enduml
2a489eea9c52f4c4a05ea852b5b63855da8222b6
b2d33d6e2b323281a5adab60b65f5c9906c6d5ec
/exempluGrafica/src/main/java/joc/window/ui/ui.plantuml
bac5f31b5ef0ed0720921464a6a2c1075e90bf5a
[]
no_license
LoghinVladDev/gameEx
b68da7b75f01cdf11afce935fac876cb4420ad68
3dc465af55f55b2aa5634446d2115615cc8a46f7
refs/heads/master
2022-10-17T05:20:03.623434
2020-06-11T16:03:28
2020-06-11T16:03:28
265,932,516
1
0
null
null
null
null
UTF-8
PlantUML
false
false
918
plantuml
@startuml title __UI's Class Diagram__\n namespace joc { namespace window { namespace ui { class joc.window.ui.UI { {static} - HEART_HORIZ_OFFSET : int {static} - HEART_VERT_OFFSET : int {static} - KEY_HORIZ_OFFSET : int {static} - KEY_VERT_OFFSET : int - heartCount : int - heartSprite : BufferedImage - keyCount : int - keySprite : BufferedImage + UI() + draw() + setKeyCount() + setPlayer() + update() } } } } joc.window.ui.UI o-- joc.player.Player : player joc.window.ui.UI o-- joc.window.GameWindow : window 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
65cfd01090c1a706fa93b77796dca30c6274a52a
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderEditResourceIdentifier.puml
d856ebb55d1d0c574b4a4b813b956c4b9ff79f13
[]
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
554
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 OrderEditResourceIdentifier [[OrderEditResourceIdentifier.svg]] extends ResourceIdentifier { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String key: String } interface ResourceIdentifier [[ResourceIdentifier.svg]] { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String key: String } @enduml
d40afc345843140d050f46aae922fc80fc3cf40e
005aa476ac9d11d36d1c0d202daa1e7c86df94c2
/hedwig-jdesignpattern/docs/imgs/structural/bridge/bridge.puml
76a4927ad4a4c6ea032e5d4219774d71da2d8d68
[]
no_license
qdriven/designpattern-sanity
51d2c9ebb1970c24bb2746ac6ba38ffd966a541c
c67622c9d153a9154e941fa2aad4ab1c10dd37a9
refs/heads/master
2022-12-06T22:02:15.117957
2020-08-21T05:59:25
2020-08-21T05:59:25
98,328,079
0
0
null
2020-05-15T19:22:30
2017-07-25T16:33:31
Java
UTF-8
PlantUML
false
false
428
puml
@startuml abstract class AbstractOperation { + operation() } note left: impl.operationImpl() class EnhanceOperation { + operation() } EnhanceOperation --> AbstractOperation interface Implementor { + operationImpl() } Implementor <---* AbstractOperation class AImplementor { + operationImpl() } class BImplementor { + operationImpl() } AImplementor ..> Implementor BImplementor ..> Implementor @enduml
2ac53f7630b466149a4f413619d2fe25f30277a0
a751888fd29a1b92bb32ef7d272d3e72f664ed30
/src/design/gnss-antenna-class-diagram.puml
313868a6f5f9491a568f1fa526cc1234e2156839
[ "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
3,045
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.gnss #ECEBD8 { enum SatelliteSystem { +GPS +GLONASS +GALILEO +BEIDOU +QZSS +IRNSS +SBAS +MIXED } enum Frequency { +G01 +G02 +... +E01 +E07 +... +S05 } SatelliteSystem "1" <--* Frequency package antenna #DDEBD8 { enum SatelliteType { +BEIDOU_2G +BEIDOU_2I +... +QZSS_2G } class AntexLoader { +List<ReceiverAntenna> getReceiversAntennas() +List<TimeSpanMap<SatelliteAntenna>> getSatellitesAntennas() +TimeSpanMap<SatelliteAntenna> findSatelliteAntenna(satelliteSystem, prnNumber) } class Antenna { +Vector3D getEccentricities(frequency) +double getPhaseCenterVariation(frequency, direction) } class ReceiverAntenna { +String getSerialNumber() } class SatelliteAntenna { +SatelliteSystem getSatelliteSystem() +int getPrnNumber() +SatelliteType getSatelliteType() +AbsoluteDate getValidFrom() +AbsoluteDate getValidUntil() } class FrequencyPattern { +Vector3D getEccentricities() +double getPhaseCenterVariation(direction) } interface PhaseCenterVariationFunction { +double value(polarAngle, azimuthAngle) } FrequencyPattern "1" <--* PhaseCenterVariationFunction Frequency "*" <-left-* Antenna Antenna *-right-> "*" FrequencyPattern SatelliteAntenna ..|> Antenna ReceiverAntenna ..|> Antenna SatelliteSystem "1" <--* SatelliteAntenna SatelliteType "1" <--* SatelliteAntenna AntexLoader *--> "*" SatelliteAntenna AntexLoader *--> "*" ReceiverAntenna } } @enduml
2d01d4e0d0235ede00ff1137ec285124bcefe3ac
dc1ab7aeb88cc2c5e8f45ee02eb0eb750ef83d3b
/diagramas-clases.puml
3e2daf27b58e40c3b40ff8f7550c38195d7d2039
[ "MIT" ]
permissive
valva-ro/Algo3-TP2-AlgoBlocks
7ab70e1dd725f38ec82453795b6050b11a531322
66e06fe503b1869c6efeef0f42ede261f78137f8
refs/heads/master
2023-03-19T21:56:44.880279
2021-03-05T00:13:52
2021-03-05T00:13:52
319,808,536
3
0
MIT
2021-03-04T21:20:38
2020-12-09T01:35:18
Java
UTF-8
PlantUML
false
false
9,237
puml
@startuml hide circle skinparam classAttributeIconSize 0 skinparam backgroundColor White skinparam RoundCorner 10 skinparam Shadowing true skinparam class { ArrowColor DarkBlue BackgroundColor LightBlue BorderColor DarkBlue } skinparam note { BackgroundColor LightYellow BorderColor DarkBlue } title Diagrama de clase general class Interpretador { + obtenerBloqueEspecialPorId(String : bloqueID) : Bloques + esBloqueEspecial(String : bloqueId) : boolean + obtenerBotonEspecialPorId(String : bloqueId, Algoritmo : algoritmo, SectorBloquesDisponiblesVisata sectorBloques) : BotonBloqueEspecial + agregarBloqueSimpleAlAlgoritmo(String : bloqueId, Algoritmo : algoritmo) : BotonBloqueSimple + agregarBloqueSimpleAlBloqueEspecial(String : bloqueId, Bloques : esBloqueEspecial) : BotonBloqueSimple } class FabricaDeBloques { - Estado : estado + crearBloqueMovimientoArriba() : BloqueMovimiento + crearBloqueMovimientoAbajo() : BloqueMovimiento + crearBloqueMovimientoIzquierda() : BloqueMovimiento + crearBloqueMovimientoDerecha() : BloqueMovimiento + fabricaNoDibuja() : void + fabricaDibuja() : void } interface Bloque { + {abstract} ejecutar(unSectorDibujo : SectorDibujo) : void + {abstract} ejecutarInvertido(unSectorDibujo : SectorDibujo) : void } class Algoritmo { + agregar(unBloque : Bloque) : void + sacar(unBloque : Bloque) : void + ejecutar(unSectorDibujo : SectorDibujo) : void } interface AlgoritmoNoTieneBloquesError{} interface RunTimeError Algoritmo "1" o-- "0..*" Bloque AlgoritmoNoTieneBloquesError <--down Algoritmo RunTimeError <|--right AlgoritmoNoTieneBloquesError Interpretador <..right Algoritmo Interpretador "1" o--down "1" FabricaDeBloques @enduml @startuml hide circle skinparam classAttributeIconSize 0 skinparam backgroundColor White skinparam RoundCorner 10 skinparam Shadowing true skinparam class { ArrowColor DarkBlue BackgroundColor LightBlue BorderColor DarkBlue } skinparam note { BackgroundColor LightYellow BorderColor DarkBlue } title Relacion entre Algoritmo y sus Observadores class SectorAlgoritmoVista{ - SectorDibujoVista : sectorDibujoVista +botoneraAccionesDisponibles (App aplicacion, Stage escenario) +actualizar() : void } class SectorBloquesDisponiblesVista{ - ArrayList <BotonBloquePersonalizado> : botonesGuardados - Interpretador : interpretador + agregarBotonPersonalizado (BotonBloquePersonalizado botonPersonnalizado) : void + existeGuardadoConId (String bloqueId) : boolean + obtenerCopiaPorId(String bloqueId) : BotonBloquePersonalizado +actualizar() : void } class Algoritmo { + agregar(unBloque : Bloque) : void + sacar(unBloque : Bloque) : void + ejecutar(unSectorDibujo : SectorDibujo) : void } interface Observable{ +agregarObservador(Observador : obs) : void +sacarObservador((Observador : obs) : void +notificarObservadores(): void } interface Observador{ +actualizar() : void } Observable <|.. Algoritmo Observable <..r Observador Observador <|.. SectorAlgoritmoVista Observador <|.. SectorBloquesDisponiblesVista SectorAlgoritmoVista *-- SectorBloquesDisponiblesVista SectorBloquesDisponiblesVista *--l Algoritmo SectorAlgoritmoVista *-- Algoritmo @enduml ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- @startuml hide circle skinparam classAttributeIconSize 0 skinparam backgroundColor White skinparam RoundCorner 10 skinparam Shadowing true skinparam class { ArrowColor DarkBlue BackgroundColor LightBlue BorderColor DarkBlue } skinparam note { BackgroundColor LightYellow BorderColor DarkBlue } title Diagrama de SectorDibujo interface DibujoObservable{ +agregarObservador(Observador : obs) : void +notificarObservadores(): void } interface ObservadorDibujo{ +actualizar(Boolean : bool, Posicion : posicionInicial, Posicion : posicionFinal) : void } class SectorDibujo { - ultimaPosicion : Posicion + dibujar(direccion : Direccion) : void + existe(posicion : Posicion) : boolean } class Recorrido { + agregarArista(direccion : Direccion, ultimaPosicion : Posicion) : void + existeVertice(posicion : Posicion) : boolean + existeArista(origen : Posicion, destino : Posicion) : boolean } class Arista { + contiene(posicion : Posicion) : boolean + contiene(origen : Posicion, destino : Posicion) : boolean } class Posicion { - coordenadaX : int - coordenadaY : int + esIgual(posicion : Posicion) : boolean + actualizar(direccion : Direccion) : Posicion } class SectorDibujoVista{ - DibujoVista : dibujo - SectorPersonaje : sectorPersonaje + borrarDibujo() : void } DibujoObservable <|..right SectorDibujo DibujoObservable <.. ObservadorDibujo SectorDibujo *-- Recorrido Recorrido "1" *-- "1..*" Arista Arista "1" *-- "2" Posicion ObservadorDibujo <|..down SectorDibujoVista @enduml ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- @startuml hide circle skinparam classAttributeIconSize 0 skinparam backgroundColor White skinparam RoundCorner 10 skinparam Shadowing true skinparam class { ArrowColor DarkBlue BackgroundColor LightBlue BorderColor DarkBlue } skinparam note { BackgroundColor LightYellow BorderColor DarkBlue } title Diagrama de clase de Bloque y BloqueMovimiento interface Bloque { + {abstract} ejecutar(unSectorDibujo : SectorDibujo) : void + {abstract} ejecutarInvertido(unSectorDibujo : SectorDibujo) : void } class BloqueMovimiento { + BloqueMovimiento(direccion : Direccion, estado : Estado) + ejecutar(unSectorDibujo : SectorDibujo) : void + ejecutarInvertido(unSectorDibujo : SectorDibujo) : void } interface Estado { + {abstract} ejecutar(unSectorDibujo : SectorDibujo, direccion : Direccion) } class Dibuja { + ejecutar(unSectorDibujo : SectorDibujo, direccion : Direccion) } class NoDibuja { + ejecutar(unSectorDibujo : SectorDibujo, direccion : Direccion) } abstract class Direccion { + actualizarPosicion(posicion : Posicion) : Posicion + {abstract} invertir() : Direccion } class Norte { + invertir() : Sur } class Sur { + invertir() : Norte } class Este { + invertir() : Oeste } class Oeste { + invertir() : Este } Bloque <|.. BloqueMovimiento BloqueMovimiento *-- Estado Estado <|.. Dibuja Estado <|.. NoDibuja BloqueMovimiento *--right Direccion Direccion <|-- Norte Direccion <|-- Sur Direccion <|-- Este Direccion <|-- Oeste @enduml ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- @startuml hide circle skinparam classAttributeIconSize 0 skinparam backgroundColor White skinparam RoundCorner 10 skinparam Shadowing true skinparam class { ArrowColor DarkBlue BackgroundColor LightBlue BorderColor DarkBlue } skinparam note { BackgroundColor LightYellow BorderColor DarkBlue } title Diagrama de clase de Bloque y bloques especiales interface BloquePersonalizadoNoPuedeEjecutarseSinBloquesError{} interface RunTimeError{} interface Bloque { + {abstract} ejecutar(unSectorDibujo : SectorDibujo) : void + {abstract} ejecutarInvertido(unSectorDibujo : SectorDibujo) : void } class BloqueMovimiento { + BloqueMovimiento(direccion : Direccion) + ejecutar(unSectorDibujo : SectorDibujo) : void + ejecutarInvertido(unSectorDibujo : SectorDibujo) : void } interface Bloques { + {abstract} agregar(unBloque : bloque) : void + {abstract} sacar(unBloque : bloque) : void } class BloquePersonalizado { + ejecutar(unSectorDibujo : SectorDibujo) : void + ejecutarInvertido(unSectorDibujo : SectorDibujo) : void + agregar(unBloque : bloque) : void + sacar(unBloque : bloque) : void } class RepetirDoble { + ejecutar(unSectorDibujo : SectorDibujo) : void + ejecutarInvertido(unSectorDibujo : SectorDibujo) : void + agregar(unBloque : bloque) : void + sacar(unBloque : bloque) : void } class RepetirTriple { + ejecutar(unSectorDibujo : SectorDibujo) : void + ejecutarInvertido(unSectorDibujo : SectorDibujo) : void + agregar(unBloque : bloque) : void + sacar(unBloque : bloque) : void } class Invertir { + ejecutar(unSectorDibujo : SectorDibujo) : void + ejecutarInvertido(unSectorDibujo : SectorDibujo) : void + agregar(unBloque : bloque) : void + sacar(unBloque : bloque) : void } class DecoratorBloquePersonalizadoBase { + ejecutar(unSectorDibujo : SectorDibujo) : void + ejecutarInvertido(unSectorDibujo : SectorDibujo) : void + agregar(unBloque : bloque) : void + sacar(unBloque : bloque) : void } Bloque <|.. Bloques Bloques "1" *--left "1..*" Bloque Bloques <|..right BloquePersonalizado Bloques <|.. DecoratorBloquePersonalizadoBase DecoratorBloquePersonalizadoBase o-- Bloques DecoratorBloquePersonalizadoBase <|-- RepetirDoble DecoratorBloquePersonalizadoBase <|-- RepetirTriple DecoratorBloquePersonalizadoBase <|-- Invertir Bloque <|.. BloqueMovimiento BloquePersonalizadoNoPuedeEjecutarseSinBloquesError <--up BloquePersonalizado RunTimeError <|--up BloquePersonalizadoNoPuedeEjecutarseSinBloquesError @enduml
14a13084a5d162b70c59e42014e270acd9e74ba4
088856ec5790009dd9f9d3498a56fe679cfab2e8
/src/puml/5/ucmitz/svg/class/bc-widget-area/manage_widget_areas.puml
97874b387ba8073aaab78ba23fef4355312d31e0
[]
no_license
baserproject/baserproject.github.io
21f244348890652286969afa1fde27c5c4d9e4ad
8d61cf720f833854e1a3c97136e22e75baea7bb0
refs/heads/master
2023-08-09T03:21:53.341423
2023-07-27T07:28:50
2023-07-27T07:28:50
228,826,353
0
12
null
2023-08-17T02:31:05
2019-12-18T11:31:51
HTML
UTF-8
PlantUML
false
false
1,279
puml
@startuml skinparam handwritten true skinparam backgroundColor white hide circle skinparam classAttributeIconSize 0 title ウィジェットエリア管理 class Admin\WidgetAreasController { + 一覧取得:index() + 新規追加:add() + 編集:edit() + 削除:delete() } class WidgetAreasService { + WidgetAreasTable } class WidgetAreasServiceInterface { + 単一データ取得:get() + 一覧データ取得:getIndex() + 初期データ取得:getNew() + リスト取得:getList() + 作成:create() + 編集:update() + 削除:delete() + 一括処理:batch() + ウィジェットを更新:updateWidget() + ウィジェットを並び替える:updateSort() + ウィジェットを削除:deleteWidget() + IDよりタイトルリストを取得:getTitlesById() + コントロールソースを取得:getControlSource() } class WidgetAreasTable { } class WidgetArea { + サイトID:site_id + ウィジェットエリア名:name + ウィジェット詳細:widgets } Admin\WidgetAreasController -down[#Black]-> WidgetAreasService WidgetAreasService -down[#Black]-> WidgetAreasTable WidgetAreasService -left[dotted,#Black]-|> WidgetAreasServiceInterface WidgetAreasTable -down[#Black]-> WidgetArea @enduml
eebbba596a1543355602676d43d626acb7b4f7e2
2b08955e13aee2fa092a7bb75f0d642a3e821fc9
/src/main/java/org/huyong/my/desi/AbstractFactoryPattern.puml
cf941dd2f4b06cc82149cb474c7510cca1827f07
[]
no_license
huyong1023/my
c720672779ad1450996fbe31c7281a2149178247
f94eb36558172613fd236691fd01f56467e8968b
refs/heads/master
2023-01-28T15:20:33.176092
2023-01-05T02:40:40
2023-01-05T02:40:40
136,870,750
3
2
null
2022-12-16T02:41:23
2018-06-11T03:37:39
Java
UTF-8
PlantUML
false
false
1,352
puml
@startuml package AbstractFactoryPattern { together { interface ProductA class ProductA1 class ProductA2 } interface ProductA { eat() } class ProductA1 { eat() } class ProductA2 { eat() } ProductA <|.. ProductA1 ProductA <|.. ProductA2 together { interface ProductB class ProductB1 class ProductB2 } interface ProductB { use() } class ProductB1 { use(); } class ProductB2 { use(); } ProductB <|.. ProductB1 ProductB <|.. ProductB2 abstract class AbstractProductFactory { operations() {abstract} ProductA createProductA(); {abstract} ProductB createProuuctB(); } class ConcreteProductFactory1 { createProductA() createProductB() } ConcreteProductFactory1 ..> ProductA1 ConcreteProductFactory1 ..> ProductB1 class ConcreteProductFactory2 { createProductA() createProductB() } ConcreteProductFactory2 ..> ProductA2 ConcreteProductFactory2 ..> ProductB2 AbstractProductFactory <|-- ConcreteProductFactory1 AbstractProductFactory <|-- ConcreteProductFactory2 class Client { } Client ..> AbstractProductFactory } @enduml
d00d1015a8d265c71cb03f3c199a1d9165d5c541
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/CartDiscountCustomLineItemsTarget.puml
43e4ddfdf1dbc5bc386b1e45ebcdf0ad54eb35af
[]
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
456
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 CartDiscountCustomLineItemsTarget [[CartDiscountCustomLineItemsTarget.svg]] extends CartDiscountTarget { type: String predicate: String } interface CartDiscountTarget [[CartDiscountTarget.svg]] { type: String } @enduml
48f7fb6e96b7d6646b076116f5d9e9fb0dc19227
b70a5a3c89608492db88d6ca84f4ef94443ade62
/uml/容器.puml
d355624613a598c489c29fff9671adee7ee89944
[]
no_license
ChocoCLv/ChocoCLv.github.io
9f8b5e7792afcc63aa0497ce901d8ea0421d22e1
de70ff212e5d4dd8a925178b344953b9195ca92e
refs/heads/master
2020-07-26T23:03:30.315711
2020-06-30T07:42:49
2020-06-30T07:42:49
112,202,049
2
0
null
null
null
null
UTF-8
PlantUML
false
false
2,593
puml
@startuml 容器 hide members interface Iterator interface Collection interface Map interface ListIterator interface List { + int size() + boolean isEmpty() + Iterator<E> iterator() + boolean contains(Object o) + boolean containsAll(Collection<?> c) + Object[] toArray() + <T> T[] toArray(T[] a) + boolean add(E e) + void add(int index, E element) + boolean addAll(Collection<? extends E> c) + boolean addAll(int index, Collection<? extends E> c) + boolean remove(Object o) + boolean removeAll(Collection<?> c) + E get(int index) + E set(int index, E element) + E remove(int index) + int indexOf(Object o) + int lastIndexOf(Object o) + void sort(Comparator<? super E> c) + boolean retainAll(Collection<?> c) // 取交集 + void replaceAll(UnaryOperator<E> operator) + void clear() + boolean equals(Object o) + int hashCode() + ListIterator<E> listIterator() + ListIterator<E> listIterator(int index) + List<E> subList(int fromIndex, int toIndex) //view + Spliterator<E> spliterator() //用于多线程并发迭代处理 } interface Set { + int size() + boolean isEmpty() + boolean contains(Object o) + Iterator<E> iterator() + Object[] toArray() + <T> T[] toArray(T[] a) + boolean add(E e) + boolean addAll(Collection<? extends E> c) + boolean remove(Object o) + boolean containsAll(Collection<?> c) + boolean retainAll(Collection<?> c) + boolean removeAll(Collection<?> c) + void clear() + Spliterator<E> spliterator() + boolean equals(Object o) + int hashCode() } interface Queue { + boolean add(E e) + boolean offer(E e) + E remove() //返回队首并删除 or Exception + E poll() //返回队首并删除 or null + E element() //返回队首 or Exception + E peek() //返回队首 or null } Collection --> Iterator : 依赖 Map --> Collection :依赖 List --> ListIterator : 依赖 ListIterator ..|> Iterator List ..|> Collection Set ..|> Collection Queue ..|> Collection class HashSet class TreeSet class LinkedHashSet class ArrayList class LinkedList class PriorityQueue ArrayList ..|> List LinkedList ..|> List LinkedList ..|> Queue PriorityQueue ..|> Queue HashSet --|> Set TreeSet --|> Set LinkedHashSet ..|> HashSet class HashMap class TreeMap class LinkedHashMap HashMap ..|> Map TreeMap ..|> Map LinkedHashMap --|> HashMap interface Comparable interface Comparator Comparable <--> Comparator package Utilities{ class Collections class Arrays } @enduml
0a9e06e533807bdcfb120b59d18e2697b55c0c4c
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/BusinessUnitShippingAddressAddedMessage.puml
253e76f330f96712077105bb7905a1629df9a3e4
[]
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,196
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 BusinessUnitShippingAddressAddedMessage [[BusinessUnitShippingAddressAddedMessage.svg]] extends Message { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] address: [[Address.svg Address]] } interface Message [[Message.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] } @enduml
f1b81ed83583faaca7efb9a7525d0e37a4e7d7ff
c2b83ffbeb0748d1b283e093f0b987bdbc3d27ac
/docs/uml-class-diagrams/admin/production/Main/Main.puml
e036dba667ecced587168f5e0e05b17685dc9b6c
[]
no_license
Slackjaw1431/csi-3370-software-project
79666760712ee4625bea3daea48c7072e7826465
af44ad1066695e4f9eff74eda79cebef3ad2b1af
refs/heads/main
2023-03-23T23:03:17.404846
2021-03-17T18:52:02
2021-03-17T18:52:02
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
132
puml
@startuml Main package edu.oakland.production.admin { class Demo { {static} + void main(String[] args) } } @enduml
8c4abef1fafb120124f85c2ca3ce17a09685b844
9b85f88b1de9e4f394464c01bbd78af868dc84f1
/doc/render-count.puml
faf85f238437956bf957e2bb5b8639cbca51e206
[ "MIT" ]
permissive
mtmt/study-cafu-roll-a-ball
beebb9ae5447cb067f6a184b2317b663b65e5a96
0e0e9a93ca3f4ef37a74cbea5776928b0c027162
refs/heads/master
2020-06-23T16:04:49.481295
2019-07-29T18:50:53
2019-07-29T18:50:53
198,672,366
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,078
puml
@startuml title カウントの表示 package Domain { package Entity { interface ICountEntity { int Value } class CountEntity { int Value } } package Structure { interface IPresentationCountStructure { string CountText } class PresentationCountStructure { string CountText } } package Translator { class CountTranslator { IPresentationScore Translate(ICountEntity entity) } } package UseCase { interface IRenderCountUseCase { void Render(ICountEntity entity) } interface ICountTranslator { IPresentationScore Translate(ICountEntity entity) } interface ICountPresenter { void Render(IPresentationCountStructure structure) } class RenderCountInteractor { void Render(ICountEntity entity) } } } package Presentation { package Presenter { interface ICountView { void Render(IPresentationCountStructure structure) } class CountPresenter { void Render(IPresentationCountStructure structure) } } package View { class CountView { void Render(IPresentationCountStructure structure) } } } ICountEntity <|.. CountEntity IPresentationCountStructure <|.. PresentationCountStructure IRenderCountUseCase <|.. RenderCountInteractor IRenderCountUseCase ..> ICountEntity ICountTranslator <|.. CountTranslator CountTranslator ..> ICountEntity CountTranslator ..> IPresentationCountStructure RenderCountInteractor ..> ICountEntity RenderCountInteractor ..> ICountTranslator RenderCountInteractor .left.> ICountPresenter ICountPresenter <|.left. CountPresenter ICountPresenter ..> IPresentationCountStructure CountPresenter ..> ICountView CountPresenter ..> IPresentationCountStructure ICountView <|.. CountView ICountView ..> IPresentationCountStructure CountView ..> IPresentationCountStructure @enduml
e1bd278ef305c9df32df39782e7e7afe69a507b4
f8dcb81dc7b8dd65c720fd56ef53b746e389b140
/src/UI/UI.plantuml
ed3c8ca7ab6ed19fc8253367105574d610b4939f
[]
no_license
BangPoulsen/SensumUdred
9b9c4cf3b5a2012de97977ca5124e1e8e905e26e
793ece073f8591828999d6bf860bd13bba7428ea
refs/heads/master
2021-09-15T07:37:56.358801
2018-05-28T17:51:07
2018-05-28T17:51:07
125,887,812
0
0
null
null
null
null
UTF-8
PlantUML
false
false
8,355
plantuml
@startuml title __UI's Class Diagram__\n package UI { class Admin { - Choicebox : ChoiceBox<String> - txtUserName : TextField - txtUserEmail : TextField - txtUserPhone : TextField - txtUserId : TextField - txtUserPassword : TextField - CreateUser : Button - DeleteUser : Button - LogOff : Button - txtListUsers : ListView<String> - txtLog : ListView<String> ~ deleteUser() ~ logOff() + start() + initialize() - loadUsers() - CreateUser() - getLogsClicked() } } abstract class Parameters { + Parameters() {abstract} + getRaw() {abstract} + getUnnamed() {abstract} + getNamed() } package UI { class EditCaseController { - JournalEntries : ListView - EntryDescription : TextArea - SubTabPaneBorger : AnchorPane - CancelButton : Button - SaveButton : Button - txtFirstName : TextField - txtLastName : TextField - txtCPRNumber : TextField - txtPhone : TextField - txtEmail : TextField - txtRoadName : TextField - txtFloor : TextField - txtZipCode : TextField - responsible : TextField - txtFirstNamek : TextField - txtLastNamek : TextField - txtPhonek : TextField - txtEmailk : TextField - txtRoadNamek : TextField - txtFloork : TextField - txtZipCodek : TextField - txtIdk : TextField - txtFirstNamed : TextField - txtLastNamed : TextField - txtPhoned : TextField - txtEmaild : TextField - txtRoadNamed : TextField - txtFloord : TextField - txtZipCoded : TextField - txtProblemDescription : TextArea - txtProblemAssesment : TextArea - ChooseFile : Button - txtToDo : TextArea - UploadFile : Button - to : Path - from : Path - selectedFile : File - CPR : String - caseID : String + initialize() + start() - ReturnToSearch() - SaveToDatabase() ~ FileChooser() - contactInformationClicked() - setCitizen() } } abstract class Parameters { + Parameters() {abstract} + getRaw() {abstract} + getUnnamed() {abstract} + getNamed() } package UI { class GUIController { + initialize() + start() + startApplication() } } abstract class Parameters { + Parameters() {abstract} + getRaw() {abstract} + getUnnamed() {abstract} + getNamed() } package UI { class LoginController { - stage : Stage - loginPane : AnchorPane - loginUsername : TextField - loginPassword : PasswordField - loginButton : Button - loginSensumLabel : Label - tries : int - secondsWait : int - lockedDate : long - locked : boolean + initialize() + Login() + start() - isEnterPressed() - loginMethod() - getSecondsPassed() - isLocked() } } abstract class Parameters { + Parameters() {abstract} + getRaw() {abstract} + getUnnamed() {abstract} + getNamed() } package UI { class MenuController { - menuPane : AnchorPane - menuSensumLabel1 : Label - createCaseButton : Button - searchCaseButton : Button - logoffButton : Button + initialize() - searchCase() - logoff() + start() - createCase1() } } abstract class Parameters { + Parameters() {abstract} + getRaw() {abstract} + getUnnamed() {abstract} + getNamed() } package UI { class NewCaseController { - createCasePane : AnchorPane - createCaseLabel : Label - txtauthor : TextField - txtFirstName : TextField - txtLastName : TextField - txtCprNumber : TextField - txtPhoneNumber : TextField - txtEmailAdress : TextField - txtRoadName : TextField - txtFloorNumber : TextField - txtZipCode : TextField - txtJournalNumber : TextField - txtEventuelNotes : TextArea - createCaseDoneButton : Button - createCaseCancelButton : Button - sensumUdredLabel4 : Label + initialize() + keyReleasedProberty() - createCaseDoneButtonEvent() - createCaseCancelButton() + start() } } abstract class Parameters { + Parameters() {abstract} + getRaw() {abstract} + getUnnamed() {abstract} + getNamed() } package UI { class SearchCasePaneController { - searchCasePane : AnchorPane - sensumUdredLabel3 : Label - searchCaseLabel : Label - listViewCases : ListView<String> - showCasesLabel : Label - searchCaseOrCprButton : Button - editCaseButton : Button - deleteCaseButton : Button - txtEnterCprNumber : TextField - txtEnterCaseNumber : TextField - mainMenuButton : Button - txtEnterName : TextField + start() + initialize() - mainMenuButton() - searchCaseOrCprButton() - editCaseButton() - deleteCaseButton() - txtEnterName() - txtEnterCprNumber() - txtEnterCaseNumber() - SearchCaseMethod() - isEnterPressed() } } abstract class Parameters { + Parameters() {abstract} + getRaw() {abstract} + getUnnamed() {abstract} + getNamed() } package UI { class Switch { {static} + switchWindow() } } package UI { class ViewCaseController { - createCasePane : AnchorPane - createCaseLabel : Label - logoffButton : Button - viewSelectedNote : Button - sensumUdredLabel4 : Label - txtFirstName : Label - txtLastName : Label - txtCprNumber : Label - txtPhoneNumber : Label - txtEmailAdress : Label - txtRoadName : Label - txtFloorNumber : Label - txtZipCode : Label - txtJournalNumber : Label - txtViewNotes : ListView<String> - showCasesLabel : Label - showNoteInCasesPane : AnchorPane - showNoteAuthorLabel : Label - txtNoteInCases : TextArea - closeNoteButton : Button - journal : ResultSet + initialize() - LogOffEvent() - keyReleasedProberty() + start() - closeNoteButtonHandler() - ViewNoteEventHandler() } } abstract class Parameters { + Parameters() {abstract} + getRaw() {abstract} + getUnnamed() {abstract} + getNamed() } Admin -up-|> Initializable Admin -up-|> Application Admin o-- DatabaseHandler : dbh Admin +-down- Parameters EditCaseController -up-|> Initializable EditCaseController -up-|> Application EditCaseController o-- DatabaseHandler : dbh EditCaseController +-down- Parameters GUIController -up-|> Initializable GUIController -up-|> Application GUIController +-down- Parameters LoginController -up-|> Initializable LoginController -up-|> Application LoginController o-- DatabaseHandler : dbh LoginController +-down- Parameters MenuController -up-|> Initializable MenuController -up-|> Application MenuController o-- DatabaseHandler : dbh MenuController +-down- Parameters NewCaseController -up-|> Initializable NewCaseController -up-|> Application NewCaseController o-- DatabaseHandler : dbh NewCaseController +-down- Parameters SearchCasePaneController -up-|> Initializable SearchCasePaneController -up-|> Application SearchCasePaneController o-- DatabaseHandler : dbh SearchCasePaneController +-down- Parameters ViewCaseController -up-|> Initializable ViewCaseController -up-|> Application ViewCaseController o-- DatabaseHandler : dbh ViewCaseController +-down- Parameters 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
b261c1af35f800b34393ac27a0e5ed08aadfb467
8c1d02fe924077ccb0b338cef3437c60ad0c3e93
/src/Iterator.puml
65a90fc463c5aa0ff1f67ad25ca643bfd1f1c5ea
[]
no_license
c16318/iterator
6319c277c972cf3c478a7d4562fb6e17d125dcf5
dd333c611e5b509670f2af5425d834c1f40ac729
refs/heads/master
2021-01-25T01:21:26.976937
2017-06-19T12:02:00
2017-06-19T12:02:00
94,748,240
0
0
null
null
null
null
UTF-8
PlantUML
false
false
411
puml
@startuml interface Aggregate{ iterator() } interface Iterator{ hasNext() next() } class BookShelf{ books last getBookAt() appendBook() getLength() iterator() } class BookShelfIterator{ bookShelf index hasNext() next() } class Book{ name getName() } Aggregate --> Iterator :creates BookShelf ..> Aggregate Book <--|> BookShelf BookShelf <--|> BookShelfIterator Iterator <.. BookShelfIterator @enduml
557e0a670c037fc157d512bfae9c39fa694788ea
636d88cc43ec1ba57c3699ed58d0cec51a1a3084
/Term Project/Builder/Builder_Class_diagram.puml
47a69905e75717d5f8ea6ff1e1bf6d392a64da60
[]
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
774
puml
@startuml skinparam classAttributeIconSize 0 class EventBuilder { {method} + makeEvent(String, String ,String,String) } Interface EventInterface { {method} + getEventInfo() } class Event { {field} - manager : String {field} - location : String {field} - date_time : String {field} - description : String {method} + getEventManager() {method} + getLocation() {method} + getDateTime() {method} + getDescription() {method} + getEventInfo() } class EventManager { {field} - manager : String {method} + getEventManager() } class Location { {field} - location : String {method} + getLocation() } Event <- EventBuilder : builds EventBuilder --> EventManager : uses EventBuilder --> Location : uses EventInterface <-- Event : implements @enduml
3f15b8eea9b5680b717789e1a31d75893f48e6ff
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StagedOrderTransitionLineItemStateAction.puml
94e5edf5e9c701730581df411416ad88488fd82c
[]
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
708
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 StagedOrderTransitionLineItemStateAction [[StagedOrderTransitionLineItemStateAction.svg]] extends StagedOrderUpdateAction { action: String lineItemId: String lineItemKey: String quantity: Long fromState: [[StateResourceIdentifier.svg StateResourceIdentifier]] toState: [[StateResourceIdentifier.svg StateResourceIdentifier]] actualTransitionDate: DateTime } interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] { action: String } @enduml
3763940dfc541efb9530337884d4f9e48cf37cbb
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ShoppingList.puml
eed047977e71e5cd80819080933cf9fed76c76ee
[]
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,662
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 ShoppingList [[ShoppingList.svg]] extends BaseResource { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime name: [[LocalizedString.svg LocalizedString]] key: String customer: [[CustomerReference.svg CustomerReference]] slug: [[LocalizedString.svg LocalizedString]] description: [[LocalizedString.svg LocalizedString]] lineItems: [[ShoppingListLineItem.svg List<ShoppingListLineItem>]] textLineItems: [[TextLineItem.svg List<TextLineItem>]] deleteDaysAfterLastModification: Long anonymousId: String store: [[StoreKeyReference.svg StoreKeyReference]] custom: [[CustomFields.svg CustomFields]] lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] } interface BaseResource [[BaseResource.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime } interface ShoppingListPagedQueryResponse [[ShoppingListPagedQueryResponse.svg]] { limit: Long count: Long total: Long offset: Long results: [[ShoppingList.svg List<ShoppingList>]] } interface ShoppingListReference [[ShoppingListReference.svg]] { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String obj: [[ShoppingList.svg ShoppingList]] } ShoppingList --> ShoppingListPagedQueryResponse #green;text:green : "results" ShoppingList --> ShoppingListReference #green;text:green : "obj" @enduml
e76169fa9f89688ff2ec704a26ac82373b699f7b
e7b7df0cf36cf83e9c440c3a81f4f85193e37a72
/3 Class Diagram/19a Automatic namespace creation.puml
01642cec51a7e7bff74f6fbeb63cd378724532d9
[ "MIT" ]
permissive
jys129/PlantUML
38dd154cc9a45d3206abf26f95bfb45e32d4c186
f0e62bf90332a1a541ded76d2101ebdd9215adaa
refs/heads/master
2023-03-16T15:54:12.053012
2020-10-18T15:49:08
2020-10-18T15:49:08
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
81
puml
@startuml set namespaceSeparator :: class X1::X2::foo { some info } @enduml
df0b407d5e5f78723881b0519886ad7639557c4f
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/Suggestion.puml
a37f2a4014c5850931c8ff8c4a5e141d28c4ebf2
[]
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
432
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 Suggestion [[Suggestion.svg]] { text: String } interface SuggestionResult [[SuggestionResult.svg]] { } Suggestion --> SuggestionResult #green;text:green : "/searchKeywords.[a-z]{2}(-[A-Z]{2})?/" @enduml
eb1be90fd33eec45c231b977331bb3f064978bfc
b59217cfcbaf8c66265e36a1266398c7e8f43f02
/src/Final_Project/NFL Player.puml
2ddd35cd14b694b49f0586791bd9413eba1dc589
[]
no_license
Malleas/cst_105
03809507b55f1c4e3f4a1f77ed8c986ece7a788c
d51ea53e0afa2545c71a61de74f989b4ca998aca
refs/heads/master
2020-04-12T16:58:02.523312
2019-02-09T17:01:13
2019-02-09T17:01:13
162,629,895
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,443
puml
/** * All work is created by Matt Sievers on 01-22-2019 for use in CST-105 */ @startuml +class NFL_Player { +main NFL_Player player = newPlayer() writePlayerToFile(player); playerStats(player); ==Properties== -String playerKey; -String firstName; -String lastName; -String position; -String teamName; -String fullName; -int rushingYards; -int passingYards; -int totalYardsPerGame; -int numberOfSuperBowlWins; } -class newPlayer{ ==Setters== setPlayerKey(NFL_Player.playerKey()); setFirstName(firstName); setLastName(lastName); setPosition(position); setTeamName(teamName); setFullName(firstName, lastName); setRushingYards(rushingYards); setPassingYards(passingYards); setTotalYardsPerGame(rushingYards, passingYards); setNumberOfSuperBowlWins(numberOfSuperBowlWins); } -class playerKey{ generation of UUID } -class playerStats{ Display stats with getters that concat values } -class writePlayerToFile{ Create BufferedWriter For loop to itterate through multiple players ==Getters== player.getPlayerKey(); player.getFirstName(); player.getLastName(); player.getPosition(); player.getTeamName(); player.getFullName(player.firstName, player.lastName); player.getRushingYards(); player.getPassingYards(); player.getTotalYardsPerGame(player.rushingYards, player.passingYards); player.getNumberOfSuperBowlWins(); } NFL_Player --> newPlayer newPlayer --> playerKey NFL_Player --> playerStats NFL_Player --> writePlayerToFile @enduml
ec096f00ea8b750e9305d0c117170fd3316c8c83
0ac53e12194c5158f428cfbe5f7ad23acb3579df
/UML/data.puml
b0472705d5c74dd72ce3abe8bc67eab44a6248b0
[]
no_license
christopherhans/analytics
8a607f91b248a0999c7131160ee66fd4adecd363
6cc387ab2b615b84da17de1300aa4517a004c468
refs/heads/master
2020-09-15T20:53:31.702714
2019-11-29T10:47:42
2019-11-29T10:47:42
223,555,019
0
0
null
null
null
null
UTF-8
PlantUML
false
false
286
puml
@startuml class Data { -- Attributes -- - df - X_train - X_test - y_train - y_test - X_train_scaled - X_test_scaled - y_train_scaled - y_test_scaled - knn_pred - knn_mse - lr_pred - lr_mse - coef_ - intercept_ } @enduml
fae4e06f0f242408fa657ad65c6e1c115eb6cefd
14979669c6a0c65aa27cd7f9eacef01e10eac632
/src/main/java/ex45/ex45App.puml
e9f2fbb3dfc6c2a3e5c5d0d105b3d2df5752c445
[]
no_license
YHmaiti/Hmaiti-COP3330-Assignment3
316326ffb6d83eae6382a41830441b08d5e2acae
c1f591b1bbdfa94724c72e7f43cd1e35be2555e6
refs/heads/master
2023-08-13T20:04:06.663057
2021-10-07T22:24:37
2021-10-07T22:24:37
414,767,067
0
0
null
null
null
null
UTF-8
PlantUML
false
false
237
puml
/* * UCF COP3330 Fall 2021 Assignment 3 Solution * Copyright 2021 Yohan Hmaiti */ @startuml class App{ + main(String[] args) + UpdateOutput(ArrayList<String> input, String output) + getInput(String currFile) } @enduml
eb13020d4c942a302cbefa26a3089ea04232db2d
26ac3733a028bdd66195d7ed8fe2613ce410443b
/docs/diagrams/TaskClassDiagram.puml
1fda0b6f100352e488f0898d6e5605c55f0fa5cc
[ "MIT" ]
permissive
Hardoh/main
5e8dd84401772119e903de32e2aba4d551391fb3
d28cc5d7d6fb1e287dfb43e1c085618ed452d630
refs/heads/master
2021-02-12T01:04:26.170984
2020-04-15T10:46:30
2020-04-15T10:46:30
244,546,245
0
0
NOASSERTION
2020-03-03T05:03:01
2020-03-03T05:03:01
null
UTF-8
PlantUML
false
false
3,610
puml
@startuml Task o-- "1" Name Task o-- "1" Priority Task o-- "0..1" Description Task o-- "*" Tag Task o-- "0..1" Reminder Task o--> "0..1" Recurring Recurring --> "0..1" RecurType ModelManager --> Recurring note left: some methods omitted for brevity LogicManager --> ModelManager note left: some methods omitted for brevity class Task { - name : Name - priority : Priority - description : Description - done : Done - tags : Set<Tag> - optionalReminder : Optional<Reminder> - optionalRecurring : Optional<Recurring> __ + getName() + getPriority() + getDescription() + getDone() + getOptionalReminder() + getOptionalRecurring() + getTags() + hasTag() + isSameTask(Task otherTask) + triggerReminderIfPresent() + getRecurredTask() + equals(Object other) + hashcode() + toString() } class Recurring { - type : RecurType - referenceDateTime : LocalDateTime + MESSAGE_CONSTRAINTS : String + MESSAGE_RECURRING_TASK_SUCCESS : String + VALIDATION_REGEX : String + stringFormatter : DateTimeFormatter __ + static parseDateTime(String dateTimeString) + static parseRecurType(String recurringString) + shouldUpdateReminder(LocalDateTime reminderDateTime) + getUpdatedReminderTime(Reminder currentReminder) + static isValidRecurring(String test) + getDelayToFirstTrigger() + getPeriod() + toString() } class Name { + fullName : String + MESSAGE_CONSTRAINTS : String + VALIDATION_REGEX : String __ + static isValidName(String test) + toString() + equals(Object other) + hashCode() + compareTo(Object obj) } class Priority { + value : String + MESSAGE_CONSTRAINTS : String + VALIDATION_REGEX : String __ + static isValidPriority(String test) + toString() + equals(Object object) + hashCode() + compareTo(Object obj) } class Description { + value : String + MESSAGE_CONSTRAINTS : String __ + static isValidDescription(String test) + toString() + equals(Object object) + hashCode() + compareTo(Object obj) } class Tag { + tagName : String + MESSAGE_CONSTRAINTS : String + VALIDATION_REGEX : String __ + static isValidTagName(String test) + equals(Object other) + toString() + hashCode() } class Reminder { - reminderDateTime : LocalDateTime - delay : long - hasFired : boolean + MESSAGE_CONSTRAINTS : String + MESSAGE_CONSTRAINTS_PAST : String + VALIDATION_REGEX : String __ - setDelay() + setHasFired() + static isValidReminder() + static calculateDelay() + displayReminder() + toString() + compareTo(Object obj) } class ModelManager { - taskList : TaskList - pomodoro : Pomodoro - statistics : Statistics - pet : Pet - userPrefs : UserPrefs - filteredTasks : FilteredList<Task> - comparator : Comparator<Task>[] - pomodoroManager : PomodoroManager - petManager : PetManager - statisticsManager : StatisticsManager - observers : ArrayList<Observer> - recurringTimerTasks : HashMap<Task, TimerTask> - recurringTimer: Timer - taskSaver : TaskSaver __ - setRecurringTimers() - generateTimerTask() - cancelTimerTask() - setTimer() } class LogicManager { - model : Model - storage : Storage - taskListParser : TaskListParser __ - taskSaver() } enum RecurType { static weekIntervalMilliseconds : long static weekIntervalDays : long static dayIntervalMilliseconds : long static dayIntervalDays : long __ - getDayInterval() - getInterval() } @enduml
1b034adece492bdca48f256ee24075ca83ed2dce
9cccabca8eff25502a735f8fe4ceff3a09b4c444
/res/uml/engine-simple.puml
02b41b3a4a0c282f4888b9a121856f7443cde860
[ "CC-BY-SA-3.0", "CC-BY-SA-4.0", "Apache-2.0" ]
permissive
NiccoMlt/protelis-web-thesis
1d077bf8180c415789d52f4a7bb9e5c67d470bb3
49bf1e3a3b89df55f0a4176bb4c3b3a14941d497
refs/heads/master
2020-12-23T14:02:23.293073
2020-03-23T19:14:45
2020-03-23T19:14:45
237,173,330
0
0
Apache-2.0
2020-03-11T13:34:43
2020-01-30T08:51:15
TeX
UTF-8
PlantUML
false
false
2,677
puml
@startuml engine-simple skinparam { linetype ortho ' groupInheritance 2 ' monochrome true ' style strictuml ArrowColor black backgroundColor transparent classBackgroundColor transparent classBorderColor black participantBackgroundColor transparent ' participantBorderColor black databaseBackgroundColor transparent ' databaseBorderColor FireBrick ' databaseBorderColor Crimson databaseBorderColor Maroon ' databaseBorderColor brown ' databaseBorderColor DarkRed ' databaseBorderColor black actorBackgroundColor transparent ' actorBorderColor black componentBackgroundColor transparent ' componentBorderColor black } ' package it.unibo.alchemist.boundary.interfaces { ' interface OutputMonitor <T concentration type\nP position type> << from Alchemist >> { ' + initialized(env) ' + stepDone(env, reaction, time, step) ' + finished(env, time, step) ' } ' } ' package io.vertx { ' package io.vertx.core { ' interface Verticle { ' + init() ' + start() ' + stop() ' } ' package io.vertx.core.eventbus { ' interface EventBus ' } ' } ' package io.vertx.kotlin.coroutines { ' abstract class CoroutineVerticle ' } ' Verticle <|-- CoroutineVerticle ' } package it.unibo.protelis.web.execution { package it.unibo.protelis.web.execution.simulated { abstract class ProtelisOutputMonitor <T concentration type\nP position type> { # updateMessageGenerator(env): ProtelisUpdateMessage } ProtelisObserver <|-- ProtelisOutputMonitor OutputMonitor <|-- ProtelisOutputMonitor class ProtelisUpdateAdapter <T concentration type\nP position type> ProtelisOutputMonitor <|-- ProtelisUpdateAdapter class SimulatedProtelisEngine { - alchemistEngine } ProtelisEngine <|-- SimulatedProtelisEngine } interface ProtelisEngine { + setup(sourceCode, observer) + start() + stop() } interface ProtelisObserver { + initialized(updateMessage) + stepDone(updateMessage) + finished(updateMessage) } ProtelisEngine o-- ProtelisObserver class ProtelisUpdateMessage { + nodes: List<ProtelisNode> } ProtelisObserver --> ProtelisUpdateMessage class ProtelisNode { + id: string + coordinates: Pair<Number, Number> } ProtelisUpdateMessage *-- ProtelisNode class AlchemistVerticle { - engine: ProtelisEngine? } ' CoroutineVerticle <|-- AlchemistVerticle AlchemistVerticle o-- SimulatedProtelisEngine class EventBusProtelisObserver { - eb: EventBus } ProtelisObserver <|-- EventBusProtelisObserver EventBusProtelisObserver o-- EventBus } @enduml
f44a54a1010ec89617b3b0d13678feac83955528
56c20102c13a8954fc972d28603045a4f2f2087f
/src/main/java/com/liyi/design/pattern/behavior/state/_State.puml
78424ac0abd543b8dec68c8d15d158cfb4896c9b
[]
no_license
liyigithub1114/design-pattern
74234027be2b8e90fe5a50afca64d35e6035be1d
3a5d9e2c96ec21c9903f34657827ade43140feec
refs/heads/master
2022-11-21T21:29:20.902171
2020-07-22T03:28:02
2020-07-22T03:28:02
281,564,379
0
0
null
null
null
null
UTF-8
PlantUML
false
false
999
puml
@startuml abstract class MyState{ abstract void deduceMoney(); abstract boolean lottery(); abstract void dispensePrise(); } class DeduceState extends MyState{ public DeduceState(MyActivity myActivity); void deduceMoney(); boolean lottery(); void dispensePrise(); } class LotteryState extends MyState{ public LotteryState(MyActivity myActivity); void deduceMoney(); boolean lottery(); void dispensePrise(); } class DispenseState extends MyState{ public DispenseState(MyActivity myActivity); void deduceMoney(); boolean lottery(); void dispensePrise(); } class CanNotDispenseState extends MyState{ public CanNotDispenseState(MyActivity myActivity); void deduceMoney(); boolean lottery(); void dispensePrise(); } class MyActivity{ MyState deduceState; MyState LotteryState; MyState DispenseState; MyState CanNotDispenseState; int count; MyState myState; } MyState o--> MyActivity @enduml
1bebe1f13e807427132f80c92ba6a8656a970095
158a2c4c0d8e6baa04be3a9eec08901f91722415
/docs/design/class_domain.puml
2721bab443e90c94898217d8ecd5f6aa0e9ee44a
[]
no_license
littlewhywhat/extrace
cb7385e4910e7ad2c911327efb759522591c3a68
eaa97fa57d8b6a173cf7a6ed52c427573bcedc11
refs/heads/master
2021-04-18T21:05:47.688307
2018-05-16T05:22:20
2018-05-17T23:13:57
126,710,382
0
0
null
2018-05-17T23:13:58
2018-03-25T15:15:59
C++
UTF-8
PlantUML
false
false
4,774
puml
@startuml title Class Diagram class TraceApp { + startSession(): void } hide TraceApp fields TraceApp *--> "1" TraceSession abstract class TraceSession { + {abstract} run(): void -- - do(action: TraceAction): void } TraceSession "-trace" --> "1" Trace class AsyncTraceSession { } hide AsyncTraceSession methods hide AsyncTraceSession fields AsyncTraceSession --|> TraceSession AsyncTraceSession "-action" --> "1" TraceAction class TraceAction { + {abstract} tryExecuteOn(Trace & trace): bool } hide TraceAction fields class StartTrace { } hide StartTrace methods hide StartTrace fields StartTrace --|> TraceAction class StopTrace { } hide StopTrace methods hide StopTrace fields StopTrace --|> TraceAction class StreamTrace { } hide StreamTrace methods hide StreamTrace fields StreamTrace --|> TraceAction class DumpTrace { } hide DumpTrace methods hide DumpTrace fields DumpTrace --|> TraceAction abstract Trace { + tryStart(): bool + tryStop(): bool + tryStream(): bool + tryDump(): bool -- - trySetup(TraceComponent & component) } hide Trace fields Trace "-components" --> "1..*" TraceComponent Trace "-traceSwitch" -- "1" SwitchFile interface TraceComponent { + trySetup(): bool + tryReset(): bool } hide TraceComponent fields class AndroidComponent { + addApp(app: AndroidApp): void + addCategory(category: AndroidTraceCategory): void - prepareApps(): void - prepareCategories(): void - pokeAndroidTraceSystem(): void } hide AndroidComponent fields AndroidComponent ..> TraceComponent AndroidComponent "-androidApps" -- "0..*" AndroidApp AndroidComponent "-androidTraceCategories" -- "0..*" AndroidTraceCategory AndroidComponent "-androidTraceSystem" -- "1" AndroidTraceSystem class AndroidApp { - name: string } hide AndroidApp methods class AndroidTraceCategory { - tag: uint64 } hide AndroidTraceCategory methods class AndroidTraceSystem { - {static} appsPropertyId: string - {static} appCntPropertyId: string - {static} categoriesPropertyId: string -- + prepare(apps: vector<AndroidApp>): void + prepare(categories: vector<AndroidTraceCategory): void + reset(): void + pokeAndroidSystem(): void } hide AndroidTraceSystem fields AndroidTraceSystem "-androidSystem" -- "1" AndroidSystem class AndroidSystem { + readProperty(id: string): AndroidProperty + saveProperty(androidProperty: AndroidProperty): void + poke(): void + getCoreService(): AndroidApp } hide AndroidSystem fields AndroidSystem "-properties" -- "0..*" AndroidProperty class AndroidProperty { - content: string - name: string } hide AndroidProperty methods class KernelComponent { + addFunction(function: KernelFunction) + addCategory(category: KernelTraceCategory) - tryPrepareFunctions(): bool - tryPrepareCategory(category: KernelTraceCategory): bool } hide KernelComponent fields KernelComponent ..> TraceComponent KernelComponent "-functions" -- "0..*" KernelFunction KernelComponent "-categories" -- "0..*" KernelTraceCategory KernelComponent "-traceSystem" -- "1" KernelTraceSystem class KernelTraceSystem { - map<KernelTraceCategory, list<SwitchFile>>: -- + tryPrepareFunctions(functions: vector<KernelFunction>): bool + tryPrepareCategory(category: KernelTraceCategory): bool + tryReset(): bool + isSupportedCategory(category: KernelTraceCategory): bool } hide KernelTraceSystem fields KernelTraceSystem "-kernelSystem" -- "1" KernelSystem KernelTraceSystem -- "0..*" SwitchFile KernelTraceSystem -- "1" ListFile class KernelFunction { - name: string } hide KernelFunction methods class KernelTraceCategory { - name: string } hide KernelTraceCategory methods class KernelSystem { + tryReadListFile(path: string): ListFile + tryWriteListFile(file: ListFile): bool + tryEnableSwitchFile(file: SwitchFile): bool + tryDisableSwitchFile(file: SwitchFile): bool + canBeEnabled(file: SwitchFile): bool } hide KernelSystem fields class SwitchFile { - isRequired: bool - path: string } hide SwitchFile methods class ListFile { - tokens: vector<string> } hide ListFile methods ' class SyncTraceSession { ' - duration: int ' - ignores_os_signals: bool ' } ' hide SyncTraceSession circleu ' hide SyncTraceSession methods ' ' SyncTraceSession --|> TraceSession ' SyncTraceSession "1" -- "1" StartTrace: does > ' SyncTraceSession "1" -- "1" StopTrace: does > ' SyncTraceSession "1" -- "1" DumpTraceBuffer: does > ' ' class StreamTraceSession { ' } ' hide StreamTraceSession circle ' hide StreamTraceSession fields ' hide StreamTraceSession methods ' ' StreamTraceSession --|> TraceSession ' StreamTraceSession "1" -- "1" StartTrace: does > ' StreamTraceSession "1" -- "1" StopTrace: does > ' StreamTraceSession "1" -- "1" StreamTrace: does > @enduml
bb5a3ee5d5a345365739c1d9bf94ea09a8f3cfd0
76cd9c5a65bcc30dfb913e149a76bec870952e91
/uml/Factory.puml
6cfa983f9d4b52ef946c96f4f529bea4ee34c932
[]
no_license
GPS-A-D-2105/API-PERSISTENCIA
fe16df84af6deb3cc24c7f3118dcf6b1589798a2
7a941becbb0b5ee142d3c48fd397b605d4632e7b
refs/heads/master
2021-01-10T17:33:21.427307
2015-12-08T07:23:58
2015-12-08T07:23:58
44,888,139
0
1
null
null
null
null
UTF-8
PlantUML
false
false
877
puml
@startuml class AbstractFactory{ -AbstractFactory() +{static}getDAOFactory() : DAOFactory } interface DAOFactory{ +{abstract} getCarreraDAO(): CarreraDAO; +{abstract} getComentarioDAO(): ComentarioDAO; +{abstract} getMateriaDAO(): MateriaDAO; +{abstract} getMaestroDAO(): MaestroDAO; } class DAOJPAFactory { -carreraDAO : CarreraDAO -comentarioDAO : ComentarioDAO -maestroDAO : MaestroDAO -materiaDAO : MateriaDAO -DAOJPAFactory() +{static}getInstance() : DAOFactory +getCarreraDAO(): CarreraDAO; +getComentarioDAO(): ComentarioDAO; +getMateriaDAO(): MateriaDAO; +getMaestroDAO(): MaestroDAO; } AbstractFactory o-- DAOFactory AbstractFactory o-- DAOJPAFactory DAOFactory <|-left- DAOJPAFactory @enduml
756cdafaad10c2e10f9835e672dec4b050d896fc
7769eb2af329185d4ff3d48555d657dde2143657
/some_assignment-master/classDiagram.puml
9a7f65b7d55afca3fb58f1d1704d5a872e10ad3b
[]
no_license
AliHeena/JavaProjectX
287a07d43a6a5f52561fe3fc72551299deabbd9b
aac47d67c529c076066b051db37e922c62c22976
refs/heads/master
2020-03-30T13:15:58.588177
2018-10-02T14:17:34
2018-10-02T14:17:34
151,266,207
0
0
null
null
null
null
UTF-8
PlantUML
false
false
498
puml
@startuml class Customer{ - String name - String address } class Account{ - Double balance } class Stock{ - String name - Double unitPrice } class InvestmentAccount{ + buyStock(Stock stock,Integer qty) } class SavingsAccount{ - Double interrestRate } class StockOrder{ - Integer quantity - Double ticker } InvestmentAccount --|> Account SavingsAccount --|> Account Stock "1" --o "*" StockOrder InvestmentAccount "1" --o "*" StockOrder Customer "1" --* "*" Account @enduml
e7373bf11eeba0d803ab900628832388db93d3a9
f3e5470b71219337445bca0f5e5c1ffa32da3af8
/Documentation/plantuml/Managers/GameManager.puml
fa55baba040162ae9315f2650b09dce76628dcc6
[ "MIT" ]
permissive
Jaren-Taylor/Smart-City-Dashboard
65116d7afd09bdc9d5ff33e05213a83bc73b52cb
7d947637bc1c0b0d4a7a2b781c405518481dc319
refs/heads/main
2023-04-14T06:55:40.565340
2021-04-26T19:55:52
2021-04-26T19:55:52
327,404,880
0
0
null
2021-04-19T02:11:24
2021-01-06T19:02:38
C#
UTF-8
PlantUML
false
false
314
puml
@startuml class GameManager { Start() : void + HandleLog(numer:int) : void Update() : void } MonoBehaviour <|-- GameManager GameManager --> "inputManager" InputManager GameManager --> "cameraManager" CameraManager GameManager --> "gridManager" GridManager GameManager --> "uiManager" UIManager @enduml
931caa075e462e9c5fc28c0b797a02970be9afd0
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ShippingInfo.puml
ad849445a6929b99e8a36594355558ec547f2306
[]
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
10,133
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 ShippingInfo [[ShippingInfo.svg]] { shippingMethodName: String price: [[CentPrecisionMoney.svg CentPrecisionMoney]] shippingRate: [[ShippingRate.svg ShippingRate]] taxedPrice: [[TaxedItemPrice.svg TaxedItemPrice]] taxRate: [[TaxRate.svg TaxRate]] taxCategory: [[TaxCategoryReference.svg TaxCategoryReference]] shippingMethod: [[ShippingMethodReference.svg ShippingMethodReference]] deliveries: [[Delivery.svg List<Delivery>]] discountedPrice: [[DiscountedLineItemPrice.svg DiscountedLineItemPrice]] shippingMethodState: [[ShippingMethodState.svg ShippingMethodState]] } interface Cart [[Cart.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime key: String customerId: String customerEmail: String customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] anonymousId: String businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] store: [[StoreKeyReference.svg StoreKeyReference]] lineItems: [[LineItem.svg List<LineItem>]] customLineItems: [[CustomLineItem.svg List<CustomLineItem>]] totalLineItemQuantity: Long totalPrice: [[CentPrecisionMoney.svg CentPrecisionMoney]] taxedPrice: [[TaxedPrice.svg TaxedPrice]] taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]] taxMode: [[TaxMode.svg TaxMode]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] cartState: [[CartState.svg CartState]] billingAddress: [[Address.svg Address]] shippingAddress: [[Address.svg Address]] shippingMode: [[ShippingMode.svg ShippingMode]] shippingKey: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] shippingCustomFields: [[CustomFields.svg CustomFields]] shipping: [[Shipping.svg List<Shipping>]] itemShippingAddresses: [[Address.svg List<Address>]] discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]] directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]] refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] country: String locale: String origin: [[CartOrigin.svg CartOrigin]] custom: [[CustomFields.svg CustomFields]] deleteDaysAfterLastModification: Integer lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] } interface Shipping [[Shipping.svg]] { shippingKey: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] shippingAddress: [[Address.svg Address]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] shippingCustomFields: [[CustomFields.svg CustomFields]] } interface OrderShippingInfoSetMessage [[OrderShippingInfoSetMessage.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] shippingInfo: [[ShippingInfo.svg ShippingInfo]] oldShippingInfo: [[ShippingInfo.svg ShippingInfo]] } interface OrderShippingInfoSetMessagePayload [[OrderShippingInfoSetMessagePayload.svg]] { type: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] oldShippingInfo: [[ShippingInfo.svg ShippingInfo]] } interface Order [[Order.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime orderNumber: String purchaseOrderNumber: String customerId: String customerEmail: String customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] anonymousId: String businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] store: [[StoreKeyReference.svg StoreKeyReference]] lineItems: [[LineItem.svg List<LineItem>]] customLineItems: [[CustomLineItem.svg List<CustomLineItem>]] totalPrice: [[TypedMoney.svg TypedMoney]] taxedPrice: [[TaxedPrice.svg TaxedPrice]] taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]] taxMode: [[TaxMode.svg TaxMode]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] billingAddress: [[Address.svg Address]] shippingAddress: [[Address.svg Address]] shippingMode: [[ShippingMode.svg ShippingMode]] shippingKey: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] shippingCustomFields: [[CustomFields.svg CustomFields]] shipping: [[Shipping.svg List<Shipping>]] itemShippingAddresses: [[Address.svg List<Address>]] discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]] directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]] refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] country: String locale: String origin: [[CartOrigin.svg CartOrigin]] cart: [[CartReference.svg CartReference]] quote: [[QuoteReference.svg QuoteReference]] orderState: [[OrderState.svg OrderState]] shipmentState: [[ShipmentState.svg ShipmentState]] paymentState: [[PaymentState.svg PaymentState]] state: [[StateReference.svg StateReference]] syncInfo: [[SyncInfo.svg List<SyncInfo>]] returnInfo: [[ReturnInfo.svg List<ReturnInfo>]] lastMessageSequenceNumber: Long custom: [[CustomFields.svg CustomFields]] completedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] } interface QuoteRequest [[QuoteRequest.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime key: String lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] quoteRequestState: [[QuoteRequestState.svg QuoteRequestState]] comment: String customer: [[CustomerReference.svg CustomerReference]] customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] store: [[StoreKeyReference.svg StoreKeyReference]] lineItems: [[LineItem.svg List<LineItem>]] customLineItems: [[CustomLineItem.svg List<CustomLineItem>]] totalPrice: [[TypedMoney.svg TypedMoney]] taxedPrice: [[TaxedPrice.svg TaxedPrice]] shippingAddress: [[Address.svg Address]] billingAddress: [[Address.svg Address]] inventoryMode: [[InventoryMode.svg InventoryMode]] taxMode: [[TaxMode.svg TaxMode]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] country: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] itemShippingAddresses: [[Address.svg List<Address>]] directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]] custom: [[CustomFields.svg CustomFields]] state: [[StateReference.svg StateReference]] purchaseOrderNumber: String cart: [[CartReference.svg CartReference]] businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] } interface Quote [[Quote.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime key: String lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] quoteRequest: [[QuoteRequestReference.svg QuoteRequestReference]] stagedQuote: [[StagedQuoteReference.svg StagedQuoteReference]] customer: [[CustomerReference.svg CustomerReference]] customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] validTo: DateTime sellerComment: String buyerComment: String store: [[StoreKeyReference.svg StoreKeyReference]] lineItems: [[LineItem.svg List<LineItem>]] customLineItems: [[CustomLineItem.svg List<CustomLineItem>]] totalPrice: [[TypedMoney.svg TypedMoney]] taxedPrice: [[TaxedPrice.svg TaxedPrice]] shippingAddress: [[Address.svg Address]] billingAddress: [[Address.svg Address]] inventoryMode: [[InventoryMode.svg InventoryMode]] taxMode: [[TaxMode.svg TaxMode]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] country: String shippingInfo: [[ShippingInfo.svg ShippingInfo]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]] itemShippingAddresses: [[Address.svg List<Address>]] directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]] custom: [[CustomFields.svg CustomFields]] quoteState: [[QuoteState.svg QuoteState]] state: [[StateReference.svg StateReference]] purchaseOrderNumber: String businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]] } ShippingInfo --> Cart #green;text:green : "shippingInfo" ShippingInfo --> Shipping #green;text:green : "shippingInfo" ShippingInfo --> OrderShippingInfoSetMessage #green;text:green : "shippingInfo" ShippingInfo --> OrderShippingInfoSetMessage #green;text:green : "oldShippingInfo" ShippingInfo --> OrderShippingInfoSetMessagePayload #green;text:green : "shippingInfo" ShippingInfo --> OrderShippingInfoSetMessagePayload #green;text:green : "oldShippingInfo" ShippingInfo --> Order #green;text:green : "shippingInfo" ShippingInfo --> QuoteRequest #green;text:green : "shippingInfo" ShippingInfo --> Quote #green;text:green : "shippingInfo" @enduml
ecf7ead8e8324ee85cbc06b8dd99b4eb23c40da9
23eebc652cc34d63a61ab645cccb3e0d12192028
/documentation/logicalview/analysisview/repository/classanalysis/puml/controllers/OpenDashboardController.puml
ddf321da148835d727d0307c014e01d90d23c12f
[]
no_license
Ruskab/agrimManager
0e654c5bfc7bb6241f7a8cf4c49e58af55155886
e264536edc42ad8def85e3714a7b1c15236d7de5
refs/heads/develop
2023-09-01T02:36:44.943558
2021-08-14T20:15:43
2021-08-14T20:15:43
166,677,735
1
2
null
2023-09-02T13:25:24
2019-01-20T15:37:25
Java
UTF-8
PlantUML
false
false
251
puml
@startuml class OpenDashboardController { +searchVehicle(vehicleId) +searchActiveInterventions(mechanicId) } DashboardView --> OpenDashboardController OpenDashboardController --> VehiclesDao OpenDashboardController --> InterventionsDao @enduml
d35054b97a4f42827144e9f9425c86a14b6e2d45
732f2d95f6e75608031ae8858bd61acd53da111d
/src/main/java/ex44/ex44 Class Diagram.puml
232af7a71ce9f075044eee0644b79581c9790166
[]
no_license
victoru1/urena-cop3330-assignment3
5a5bde2c5ffb6f75a81f8dc6ee941a884bf8e1b8
a066d4f2b6e6a58cafd105902c51e0e073045e77
refs/heads/master
2023-08-22T13:34:16.639505
2021-10-12T00:22:36
2021-10-12T00:22:36
416,078,826
0
0
null
null
null
null
UTF-8
PlantUML
false
false
754
puml
@startuml 'https://plantuml.com/sequence-diagram class Product_Search { +{static} output: Scanner + main(arg: String[]): void + productArrayMaker(input: File) : List<Products> + getProductName(): String + productFinder(products: List<Products> , searchKey: String) : boolean + printProductInfo(products: List<Products> , searchKey: String, productExists boolean): void } class Products{ name: String; price: Double; quantity: Integer; +Products(name: String, price: Double, quantity: Integer) : void +toString() : String +setName(name: String) : void +setPrice(price: Double) : void +setQuantity(quantity: Integer): void +getName(): String +getPrice(): Double +getQuantity(): Integer } Products <..Product_Search : uses @enduml
a1ed0ce91bd4d27c6f9d3c7a9d89e9c5bc767ee6
1c62e6ad04d679c073059c3c25cb9be592d73791
/plantuml/structural/decorator.puml
37ab6da8e57c3be4023cb553b602e4d49ee9c3ef
[ "Unlicense" ]
permissive
skr-mams/java-design-patterns
d6c507b2cbd9a4724f3045fb998f329eebd729ca
5bea71a0a52160fc7f4348dc596c46c0b407c7f1
refs/heads/main
2023-08-22T12:35:33.091377
2021-09-20T21:47:10
2021-09-20T21:47:10
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
847
puml
@startuml interface DataSource { void writeData(String data) String readData() } note "Interfaz pricipal para las \nclases concretas y decoradoras" as main DataSource .r. main class ConsoleDataSource implements DataSource { void writeData(String data) String readData() } note "Clase concreta" as concrete ConsoleDataSource .l. concrete class DataSourceDecorator implements DataSource { DataSourceDecorator(DataSource source) void writeData(String data) String readData() } note "Clase base decoradora" as base DataSourceDecorator .r. base DataSourceDecorator *--> DataSource class EncryptionDecorator extends DataSourceDecorator { EncryptionDecorator(DataSource source) void writeData(String data) String readData() } note "Clase decoradora" as decorator EncryptionDecorator .r. decorator @enduml
ee34ff2d068ea3ad34cbe7725ae09d456bae1d8d
015af2febe164b9667ae91319080ed064c132b0e
/kms/auth-service/src/main/java/com/uwaterloo/iqc/authservice/authservice.plantuml
356bcb8b8e2afc38872149eec15c66b7793665f2
[ "MIT" ]
permissive
crazoter/qkd-net
fb247b3a122821451a64ea587619926d9571444c
182860ec031bf066fd3a9fa60d6d3629b4d37899
refs/heads/master
2022-08-25T23:32:53.109504
2020-05-20T02:25:20
2020-05-20T02:25:20
263,811,400
1
0
null
2020-05-14T04:05:04
2020-05-14T04:05:04
null
UTF-8
PlantUML
false
false
1,216
plantuml
@startuml title __AUTHSERVICE's Class Diagram__\n namespace com.uwaterloo.iqc.authservice { class com.uwaterloo.iqc.authservice.AuthServiceApplication { {static} - logger : Logger {static} + main() } } namespace com.uwaterloo.iqc.authservice { class com.uwaterloo.iqc.authservice.AuthorizationServerConfiguration { - authenticationManager : AuthenticationManager - clientDetailsService : ClientDetailsService + AuthorizationServerConfiguration() + configure() + configure() } } namespace com.uwaterloo.iqc.authservice { class com.uwaterloo.iqc.authservice.DataCLR { - accountRepository : AccountRepository - clientRepository : ClientRepository + DataCLR() + run() } } namespace com.uwaterloo.iqc.authservice { class com.uwaterloo.iqc.authservice.PrincipalRestController { ~ principal() } } com.uwaterloo.iqc.authservice.DataCLR .up.|> CommandLineRunner 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
c727286e4275be3bd8bcd9c2d13f0c26994af13c
3cbfce031108381b619fa77bd397dfa8af1fcce5
/src/docs/diagrams/Field.puml
4881eb294b4dc074c4cfb66f01697023391cb9d1
[ "Apache-2.0" ]
permissive
HewlettPackard/phased-table-translation
b4f9147d993a63607bce930f29ad9be44e7c1c9e
f2caf5213a0f69df3417aa61165fe04f1132d1bf
refs/heads/master
2023-08-09T09:19:10.435972
2021-05-20T10:07:37
2021-05-20T10:07:37
187,846,913
1
2
Apache-2.0
2020-03-10T18:24:38
2019-05-21T13:50:04
Groovy
UTF-8
PlantUML
false
false
307
puml
@startuml class Field { boolean mandatory OriginalFieldType getter(OriginalObjectType inputAlarm) OriginalFieldType defaulter() boolean validator(OriginalFieldType inputValue) ResultFieldType translator(OriginalFieldType inputValue) void setter(ResultFieldType resultValue) } @enduml
83c85f2fac14d9b5fa2f29581d7e6951c686cb26
78e54501868a570e9f665310e6f1cce83df66625
/examples/phd_thesis/wpclassdiag.puml
c3b7025dcafd2d4f3c9719092f0ebb049ede7698
[ "MIT" ]
permissive
li7300198125/wave-propagation
d26015836324cd06f679336cfb15cbb03b689293
eff0eb1fc843e4d206b05731e40047e1d810d76f
refs/heads/master
2022-12-18T14:54:51.035958
2020-08-23T20:02:31
2020-08-23T20:02:31
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,019
puml
@startuml left to right direction Source <|- GaussAntenna interface Material { permittivity(frequency) conductivity(frequency) } interface Source { frequency aperture(z_grid) beam_pattern(angle) } class GaussAntenna { height beam_width elevation_angle } class Troposphere { M_profile(x, z) Terrain terrain Obstacle[] vegetation Obstacle[] buildings knife_edges } Troposphere *-- Terrain Troposphere o- Obstacle class Terrain { height(x) Material material(x) } class Obstacle { shape Material material } Obstacle *-- Material Terrain o- Material class Field { } class FieldVisualiser { Field field Troposphere troposphere type {pure, pass_loss} plot2d() plot_vertical(x, *FieldVisualiser) plot_horizontal(z, *FieldVisualiser) } abstract class TroposphericPropagator { Source Troposphere Field calculate() } TroposphericPropagator *-- Source : input TroposphericPropagator *-- Troposphere : input TroposphericPropagator *-- Field : result FieldVisualiser *-- Field FieldVisualiser *-- Troposphere @enduml
c39dd636e7ea45675e4d450a004980e5c30b773a
8cf018eb6de40017601592f1f125ea67d5de7086
/docs/Solution/Cloud-Stack/Common-Cloud-Core/Logical.puml
48b3957d26ceb500ec13b549dbf396d03998418e
[]
no_license
CAADE/ADC
bec251477e457a9ee4eca673fdab04b65c4290f5
a81ba7532e7092ab564bcb30f8ec36bab3b71d0b
refs/heads/master
2021-06-23T22:20:00.239150
2019-04-03T05:15:20
2019-04-03T05:15:20
104,887,854
5
0
null
null
null
null
UTF-8
PlantUML
false
false
257
puml
@startuml package "Cloud-Stack/Common-Cloud-Core" { interface "Cloud-Stack/Common-Cloud-Core" { } CLI ()-- "Cloud-Stack/Common-Cloud-Core" REST ()-- "Cloud-Stack/Common-Cloud-Core" Web ()-- "Cloud-Stack/Common-Cloud-Core" } @enduml
3e05cee99fcc07e6cce6fe3595b42bf3eacc3ae1
22c062df90adff61becb66216348f35b57920adb
/DesignPatern/src/Structural/diagrams/decorator.puml
0f57732b6d486df7487ad4951d5011cd7a2b2d04
[ "BSD-3-Clause" ]
permissive
zainmehdi/software_engineering
0ca30f6daf526434fbec9ae0240da0685dc5977a
9b655590d05246d6e859673161de05ecde788b14
refs/heads/master
2022-12-29T14:33:41.798904
2020-10-12T13:57:20
2020-10-12T13:57:20
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,455
puml
@startuml skinparam classAttributeIconSize 0 interface "<<Interface>>\n Car" as Car { # description:string +{abstract} getDescription():string +{abstract} getPrice():double; } class BaseModel { + getPrice():double } note "return 35000" as BaseModelNote BaseModelNote -left.. BaseModel class OptionsDecorator { # m_car: Car* +OptionsDecorator(Car *car) +{abstract} getPrice():double; +{abstract} getDescription():string; } class Navigation { getDescription():string getPrice():double; } class SoundSystem { getDescription():string getPrice():double; } class LeatherSeat { getDescription():string getPrice():double; } class Client{} OptionsDecorator -up..|> Car OptionsDecorator o-- Car SoundSystem -up..|> OptionsDecorator LeatherSeat -up..|> OptionsDecorator Navigation -up..|> OptionsDecorator BaseModel -up..|> Car Client --> Car note "Car *base_model=new BaseModel();\nCar *base_model_sound_system=new SoundSystem(base_model);\nCar *base_model_sound_system_navigan=new Navigation(base_model_sound_system);\nbase_model_sound_system_navigan->getDescription();\nbase_model_sound_system_navigan->getPrice()" as ClientNote ClientNote -left--Client note "return m_car->getPrice()+ + 500;" as NavigationgetPrice note "return m_car->getDescription()+ ' + Navigation';" as NavigationgetDescription NavigationgetDescription -- Navigation::getDescription NavigationgetPrice -- Navigation::getPrice @enduml
6930aef1dd070e58508d99d9fcc83e82845e0a75
2f03a1e0fed30f50dedba0f77c95970080ec7152
/src/main/java/ex42/ex42.puml
f30fc2dbeac2318f47d1b9218bd63a3266dd6c22
[]
no_license
kaleah08/gonzalez-cop3330-assignment3
27d689ab1970a7aa191e41b0527be0203f416795
bac781619bc99e3cf0ae4a0ee519f06a40a8d244
refs/heads/master
2023-08-18T08:57:24.887609
2021-10-12T03:51:01
2021-10-12T03:51:01
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
366
puml
@startuml 'https://plantuml.com/class-diagram abstract class App Data <|-- App class App { +void main(String[] args) List people List data +List readFile() +void print(List people) -class Data { -String firstName -String lastName -String salary + String toString() } enum TimeUnit { DAYS HOURS MINUTES } @enduml
22fbe850520a53287cdf5df159ee7d12590a7986
c7144af16e76ac5765e3c5c212eb1fa515ea8f6c
/DesignPattern/ClassDiagram/class-diagram_3-1-4-2.puml
070bc882992b1f8688c008a85768725b3b7ecc10
[]
no_license
JungInBaek/TIL
de183dc4e42bb1e7ff1a88a7d79ec33088644334
4043c68213ec8955eaeb570e11e7d2fd9bf85924
refs/heads/main
2023-08-22T02:15:41.238631
2021-10-06T13:55:45
2021-10-06T13:55:45
399,660,120
4
0
null
null
null
null
UTF-8
PlantUML
false
false
127
puml
@startuml class Calculator { + Calculator() + calculate(operator : String, firstNumber : int, secondNumber : int) } @enduml
29f385c69fe4156d89a2b871b04d0c98db967cb3
3a2607b600dea7be6b832d64c5828c96ad9580b4
/Behavioral/State/State.puml
81d9d942f99e88b474173eb082a44016730335a9
[]
no_license
flashytime/design-patterns-php
c1619e8f4b2affdbca096dfda94870b3c7b2bf9a
76104721a8a8b367baac6c8eafc0a6f2623839b1
refs/heads/master
2018-12-08T12:50:48.245627
2018-09-18T08:36:41
2018-09-18T08:36:41
73,289,635
0
0
null
null
null
null
UTF-8
PlantUML
false
false
565
puml
@startuml interface State { + proceedNext(OrderContext $context) + toString() } class StateCreated { + proceedNext(OrderContext $context) + toString() } class StateShipped { + proceedNext(OrderContext $context) + toString() } class StateDone{ + proceedNext(OrderContext $context) + toString() } State <|.. StateCreated State <|.. StateShipped State <|.. StateDone class OrderContext { - State $state + {static} create() + setState(State $state) + proceedNext() + toString() } OrderContext o--> State @enduml
2067e7861df5a8b20ae10a96d6a5dd5997143fc4
31c29c4e1855d0507d405f1eda93b12ed5605022
/designpatterncomponent/src/main/java/com/bilibili/designpatterncomponent/bridge/uml/bridge.puml
cf735e4158ca9b8ffb88a2554e23fba4675ead54
[ "Apache-2.0" ]
permissive
Chihiro23333/ChidoriX
547ab6a1c46de0c61d8cd61af154e01b4f23dac8
7e57171085f4230611cd51db594d3fc619a02603
refs/heads/master
2022-06-13T14:52:49.084013
2022-05-13T10:03:01
2022-05-13T10:03:01
138,551,185
2
0
null
null
null
null
UTF-8
PlantUML
false
false
699
puml
@startuml abstract class Airplane { -AirplaneProducer airplaneProducer #fly() } note left of Airplane "飞机的超类型 持有一个AirplaneProducer的引用" end note interface AirplaneProducer{ #Airplane produce() } note right of AirplaneProducer "飞机厂商的超类 ,不同厂商有个生产方法,生产飞机" end note class CargoAirplane { #fly() } class PassengerAirplane{ #fly() } class CocaColaProducer{ #Airplane produce() } class WaHaHaProducer{ #Airplane produce() } Airplane <|.. PassengerAirplane Airplane <|.. CargoAirplane AirplaneProducer <|.. WaHaHaProducer AirplaneProducer <|.. CocaColaProducer Airplane o- AirplaneProducer @enduml
1a3e2f6f3c19621201fec4f2330d73c249a2e4b0
c117cce5d888b70a42d9ed67bea5de8b263eda1e
/chapter_one_0100/图1-1.puml
6be8748727dbfc723d7015f4ded77615fa253f21
[]
no_license
zhijunhong/design_patterns
b4a6d2d604fa9a38c6a45ba189de7750a298eb4b
23acdaa5a871ed38ef3a8594ef13474af53f3ee8
refs/heads/master
2023-03-16T16:04:03.455962
2021-02-24T01:37:39
2021-02-24T01:37:39
111,893,158
0
0
null
null
null
null
UTF-8
PlantUML
false
false
207
puml
@startuml class ImageLoader class ImageCache ImageCache<- ImageLoader class ImageLoader{ - displayImage(String,ImgeView) } class ImageCache{ + put(String,Bitmap) + get(String):Bitmap } @enduml
c01e76d9e676443b549db645be070c043bd2890d
f77b263fb89a587b3dd90a5788f2644b9a3dd8c5
/Assignment_4_part_1.puml
cc340d92de134e73a7e90ae965500314a773a03a
[]
no_license
PugOwner/ruiz-cop-3330-assignment4-part1
edb83be857e48aff7862b19915997a76c97dd65f
9bff23434d505657a3e5da03f4506607e281dce0
refs/heads/master
2023-08-26T14:20:11.849633
2021-11-02T02:00:56
2021-11-02T02:00:56
423,639,721
0
0
null
null
null
null
UTF-8
PlantUML
false
false
568
puml
@startuml class DisplayAll_ItemsController{ } class DisplayIncompleteItemsController{ } class DisplayCompletedItemsController{ } class HomepageController{ } class Items{ } class ItemsEditorController{ } class ListManager{ } class Main { } class TodoList{ } javafx.Application <|-- Main HomepageController -- Main ListManager -- HomepageController TodoList - ListManager Items - TodoList DisplayAll_ItemsController -- ListManager DisplayCompletedItemsController -- ListManager DisplayIncompleteItemsController -- ListManager ItemsEditorController -- ListManager @enduml
efeaab1a05428fdcf8ea627c8ae9c4c597e7efac
740ec837551b09f09677854163ecd30ba6ea3cb7
/documents/sd/plantuml/application/Modules/Mouse/Producers/MouseClickEventProducer.puml
790c0eee3796405cb787638262c16c361f5bf8f1
[ "MIT" ]
permissive
insightmind/MORR
913c0c16d14745cbde40af07322ca339a0373f32
0830f2155fb3b32dc127587e07cbd780deb0e118
refs/heads/develop
2020-12-08T00:23:17.488431
2020-04-05T20:50:44
2020-04-05T20:50:44
232,827,908
5
1
MIT
2020-04-05T20:55:27
2020-01-09T14:28:48
HTML
UTF-8
PlantUML
false
false
277
puml
@startuml skinparam monochrome true skinparam ClassAttributeIconSize 0 class MouseClickEventProducer { + StartCapture() : void + StopCapture() : void } class "DefaultEventQueue<T>" { } "DefaultEventQueue<T>" " <MouseClickEvent>" <|-- MouseClickEventProducer @enduml
7e523c15d12153d5aec860269e3239c571014094
e032dab934c4fa3ff55da94de2f15d246a4aed8c
/design-pattern/src/main/java/wr1ttenyu/f1nal/study/designpattern/pattern23/visitor/Visitor.puml
8d34256c3353adb0ab97ff5a53ef3db2fcfe67ac
[]
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
1,024
puml
@startuml abstract class Visitor note right:<size:8>是抽象访问者,为该对象结构中的每一个Element具体实现声明一个visit操作 class ConcreteVisitor note right:<size:8>是一个具体访问者,实现Visitor声明的每一个visit操作 abstract class Element note right:<size:8>定义一个accept方法,接收一个访问者对象 class ConcreteElement note right:<size:8>为具体的Element实现类,实现了accept方法 class ObjectStructure note right:<size:8>能枚举他的元素,可以提供一个高层的接口,用来允许访问者访问元素 Visitor <|-- ConcreteVisitor Element <|-- ConcreteElement ObjectStructure o-- Element Client --> ObjectStructure Client --> Visitor abstract class Visitor { +operation1() +operation2() } class ConcreteVisitor { +operation1() +operation2() } abstract class Element { +accept(visitor:Visitor):void } class ConcreteElement { +accept(visitor:Visitor):void } class ObjectStructure { -element:Element } @enduml
abd3ec9ecf796335ff93335651367c978a73593b
71508ad2c864b06ebe1ccdda4e3818447602f39c
/src/headfirst/designpatterns/strategy/duck/Duck.puml
f7dfec76c814e20834c0212c0142be412e6aca0e
[]
no_license
ilovers/Head-First-Design-Patterns
8135ba0e3a6da4f865c08ad3479bad366eff3581
d66647bae1e7d81f472cf52af28442f490b55da8
refs/heads/master
2022-06-08T14:13:54.009661
2020-05-09T01:00:09
2020-05-09T01:00:09
259,570,755
0
0
null
null
null
null
UTF-8
PlantUML
false
false
903
puml
@startuml class Duck{ FlyBehavior flyBehavior QuackBehavior quackBehavior void swim() {abstract} void display() void performFly() void preformQuack() void setFlyBehavior(FlyBehavior) void setQuackBehavior(QuackBehavior) } class MallardDuck{ void diplay() } class ReadheadDuck{ void diplay() } class RubberDuck{ void diplay() } class DecoyDuck{ void diplay() } interface FlyBehavior{ void fly() } class FlyWithWings{ void fly() } class FlyNoWay{ void fly() } interface QuackBehavior{ void quack() } class Quack{ void quack() } class Squeak{ void quack() } class MuteQuack{ void quack() } Duck <|-- MallardDuck Duck <|-- ReadheadDuck Duck <|-- RubberDuck Duck <|-- DecoyDuck FlyBehavior <|.. FlyWithWings FlyBehavior <|.. FlyNoWay QuackBehavior <|.. Quack QuackBehavior <|.. Squeak QuackBehavior <|.. MuteQuack Duck --* FlyBehavior Duck --* QuackBehavior @enduml
5dcca9fac34ad32541052c23b9ce64cd11e0e532
c2105b92c810f5779b676dfb6b577ec9910d2687
/Documentation/PUML/gui/cells/CellsDependencies.puml
1be365c3d862dad1ac710b650d6e95101f20bd8c
[ "MIT" ]
permissive
tunepruner/4wardslegacy
4df61c9f8a1a6a1d1a22ed164132beac8f46b0e7
410e3a26b073139b3dc2013d30a9fc7bb01ddc4d
refs/heads/master
2023-02-16T19:00:08.988933
2021-01-12T23:08:05
2021-01-12T23:08:05
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
456
puml
@startuml package LittleReminder{ class Cells{ static CellList<Cell> } class Cell{ CellMouseBehavior CellPlacement CellAnimationBehavior CellDesign } } Cells *-- Cell 'Dependencies CellDesign <.. CellMouseBehavior: getCellBounderies() CellPlacement <.. CellAnimationBehavior: getPosition() CellMouseBehavior <.> CellPlacement: observer \nrelationship CellList <..... CellPlacement: getIndex()\nmoveTo() on\ndrag\npossibly\nobserver\nrelationship @endumlw
080ccad39926292242cf1f33ad47ef689e7fb902
644b7bb773b84596a2de4d31a0603284d9562e56
/Solidity/Contracts/Course.iuml
c600757dc64ea20579612d0497c849655cf5f7bd
[]
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
460
iuml
@startuml class Course{ - name: bytes32 - creditsToGraduation: uint16 - year: Year - university: UniversityAdmin __modifiers__ onlyAdmin __ + Course(_name: bytes32, _creditsForGraduation: uint16, _university: University) +@ getExamNumber(): uint +@ getExamContractAt(uint _index): Exam +@ getName(): bytes32 +@ getCreditsToGraduate(): uint16 +@ getSolarYear(): uint16 + addNewExam(_name: bytes32, _credits: uint8, _obbligatoriety: bool) {onlyAdmin} } @enduml
db6c8373a0a4d7878b9996328ca71ee36453536f
dda7b506188d7a34ac15ae3b7c3a55f8c94eabe7
/src/main/java/com/clexel/dp/structural/proxy/proxy.puml
a9fac6f08358c12c8de010d7321e3bc8d7a2fabe
[ "Apache-2.0" ]
permissive
jonathanzhan/design-pattern
77e7088c37a40320c94f18f4f68dbfff260639d0
3b118a1e0769b78127ed806b95ff011db5b15be8
refs/heads/master
2021-07-05T21:20:38.942127
2019-08-29T09:37:57
2019-08-29T09:37:57
191,871,045
0
0
Apache-2.0
2020-10-13T13:53:42
2019-06-14T03:37:20
Java
UTF-8
PlantUML
false
false
372
puml
@startuml interface Subject{ + request():void } class RealSubject implements Subject { + request():void } class Proxy implements Subject { - realSubject:RealSubject + request():void + preRequest():void + postRequest():void } Class Client { } Client ..> Subject note as N1 Proxy proxy = new Proxy(); proxy.request(); end note Client .. N1 @enduml
cd428859b21829058b4e62ea829d90191508b60f
5fe3194764162dd65d4793d6c614e7b7d6d47931
/class-model.puml
a2afe738629be80e50d32ca6c9d2510aab8a9c86
[]
no_license
prokcy/rtrt
1e911f4f1b91dd9c269161e7b7bf6658eccef423
04a6562fa83260cc598dec1ddc2cb2c7c9373426
refs/heads/main
2023-07-20T03:30:02.301757
2021-08-26T19:12:19
2021-08-26T19:12:19
397,264,957
0
0
null
null
null
null
UTF-8
PlantUML
false
false
682
puml
@startuml class Order { String Id String Name String OriginPoint String OrderDatetime String ShippmentPoint String ShippmentDatetime Real TotalCost String ApproveByCustomerDatetime String ApproveBySupplierDatetime } note right of Order **Id** - внутренний идентификатор заказа **Name** - предмет заказа end note interface OrderService { String CreateOrderDraft(String name, CargoType cargoType) void AddOrderPositions(String position, Real price, Real amount) void ApproveOrder(String orderId) void AcceptOrder(String orderId, String acceptPoint) } @enduml
d0c3ef5c945ffec3fd6df2ea4fec67662c182e10
1278653a0b662eca599999013fbd7b6dc0cd2b90
/class-diagram.puml
54754d0fbff32c6cc96232aee1448d497258d89e
[]
no_license
giedoc/facebook-clone
531aa72f9ceceab0f83581aab4b72a959ee8ae20
6d8aaa1c3e8d34f9b1543802eea769d20941a2a6
refs/heads/master
2022-10-24T17:27:55.289315
2020-06-12T19:39:48
2020-06-12T19:39:48
266,257,830
0
0
null
null
null
null
UTF-8
PlantUML
false
false
820
puml
@startuml class-diagram class User << Entity >> { + name: string + password: string + email: string + age: int + adress:string + shares: [] + socialNetworks: [] + likeShare() + addFriend() + sendMessage() + sharePost() + attend() } class Share << Entity >> { + name: string + type: string + shares: [] } class Photo extends Share { + name: string + type: string } class Video extends Share { + name: string + type: string } class Story extends Share { + name: string + type: string } class Idea extends Share { + name: string + type: string } class SocialNetwork { + name: string + participants: [] + showParticipant() } User " 0..* " --- "1" SocialNetwork User " 1 " -- " 0..* " Share @enduml
b6ad246e6417d4e65b4ffd7ee48e8e229f17f292
088856ec5790009dd9f9d3498a56fe679cfab2e8
/src/puml/5/ucmitz/svg/class/bc-mail/manage_mail_contents.puml
705aa7ed11ab7c69e63ce8cd8d65c2b630e18006
[]
no_license
baserproject/baserproject.github.io
21f244348890652286969afa1fde27c5c4d9e4ad
8d61cf720f833854e1a3c97136e22e75baea7bb0
refs/heads/master
2023-08-09T03:21:53.341423
2023-07-27T07:28:50
2023-07-27T07:28:50
228,826,353
0
12
null
2023-08-17T02:31:05
2019-12-18T11:31:51
HTML
UTF-8
PlantUML
false
false
1,542
puml
@startuml skinparam handwritten true skinparam backgroundColor white hide circle skinparam classAttributeIconSize 0 title メールコンテンツ管理 class Admin\MailContentsController { + 編集:edit() + 削除:delete() } class MailContentsService { + MailContentsTable } class MailContentsServiceInterface { + 初期データ取得:getNew() + 作成:create() + 編集:update() + 削除:delete() ※物理削除 + 単一データ取得:get() + 一覧データ取得:getIndex() + リスト取得:getList() } class MailContentsTable { } class MailContent { + メールフォーム概要:description + 送信先メールアドレス:sender_1 + BCC用送信先メールアドレス:sender_2 + 送信先名:sender_name + 自動返信メール件名[ユーザー宛]:subject_user + 自動送信メール件名[管理者宛]:subject_admin + メールフォームテンプレート名:form_template + 送信メールテンプレート名:mail_template + リダイレクトURL:redirect_url + イメージ認証:auth_captcha + ウィジェットエリア:widget_area + SSL通信:ssl_on + データベース保存:save_info + フォーム受付開始日:publish_begin + フォーム受付終了日:publish_end } Admin\MailContentsController -down[#Black]-> MailContentsService MailContentsService -down[#Black]-> MailContentsTable MailContentsService -left[dotted,#Black]-|> MailContentsServiceInterface MailContentsTable -down[#Black]-> MailContent @enduml
de0c490d42b88ab90ef787f2802fb91da95889c1
2c4f2efab569c5d9302f9c00a972298802e61f67
/Task2_MultiThreading/src/by/training/task2/exception/exception.plantuml
9bb82673ca51d3670f66b25fb5c911ef339875a3
[]
no_license
alialiusefi/EPAM_JavaWebDev_Course
066ffe0c3b3fcdd5b5a51b2e59e887752b1f1157
b229167d84b118147d6b255229976b0ff3ec23aa
refs/heads/master
2022-12-04T15:02:37.944559
2019-08-03T08:56:54
2019-08-03T08:56:54
170,365,647
1
1
null
null
null
null
UTF-8
PlantUML
false
false
408
plantuml
@startuml title __EXCEPTION's Class Diagram__\n package by.training.task2.exception { class IncorrectDataException { + IncorrectDataException() + IncorrectDataException() } } 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
c536a2365f263a9166fa8bbf8b04a1e3ca080490
41189885f0fa6f54ddc6f48ad8cdf6d1e2c9f479
/src/capaInterfaz/capaInterfaz.plantuml
a61b8d3759430ffa04a2fc23577b4064f0b41da7
[]
no_license
miguel-benito-martin/Practica_Migracion
af116a41842d0fb252e00286123710a2da099f85
ab3dbd3e60629aab622e84ae84930f7f46a8937e
refs/heads/main
2023-05-01T18:52:03.590117
2021-05-26T10:34:40
2021-05-26T10:34:40
366,121,731
0
1
null
null
null
null
UTF-8
PlantUML
false
false
2,512
plantuml
@startuml title __CAPAINTERFAZ's Class Diagram__\n namespace capaInterfaz { class capaInterfaz.JBarraMenus { + menuBar : JMenuBar - itemAbout : JMenuItem - itemExit : JMenuItem - itemHelp : JMenuItem - itemOptions : JMenuItem - menuAyuda : JMenu - menuFichero : JMenu - menuHerramientas : JMenu + JBarraMenus() + actionPerformed() } } namespace capaInterfaz { class capaInterfaz.JButtonOp { - NumOperacion : int + JButtonOp() + JButtonOp() + JButtonOp() + getNumOperacion() + setNumOperacion() } } namespace capaInterfaz { class capaInterfaz.JDialogAboutBox { - jButtonCloseAboutBox : JButton + JDialogAboutBox() - initComponents() - jButtonCloseAboutBoxActionPerformed() } } namespace capaInterfaz { class capaInterfaz.JDialogOperacionFail { - jButtonOK : JButton - jLabel1 : JLabel + JDialogOperacionFail() + JDialogOperacionFail() - initComponents() - jButtonOKActionPerformed() } } namespace capaInterfaz { class capaInterfaz.JDialogOperacionOK { - jButtonOK : JButton - jLabel1 : JLabel + JDialogOperacionOK() + JDialogOperacionOK() - initComponents() - jButtonOKActionPerformed() } } namespace capaInterfaz { class capaInterfaz.JDialogOperacionWarning { {static} + operacionOK : boolean - jButtonCancelar : JButton - jButtonOK : JButton - jLabel1 : JLabel - jLabel2 : JLabel + JDialogOperacionWarning() + JDialogOperacionWarning() + JDialogOperacionWarning() - initComponents() - jButtonCancelarActionPerformed() - jButtonOKActionPerformed() } } capaInterfaz.JBarraMenus .up.|> java.awt.event.ActionListener capaInterfaz.JBarraMenus -up-|> javax.swing.JMenuBar capaInterfaz.JButtonOp -up-|> javax.swing.JButton capaInterfaz.JDialogAboutBox -up-|> javax.swing.JDialog capaInterfaz.JDialogOperacionFail -up-|> javax.swing.JDialog capaInterfaz.JDialogOperacionOK -up-|> javax.swing.JDialog capaInterfaz.JDialogOperacionWarning -up-|> javax.swing.JDialog 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
b0006232f9435c203a857bb65efbe72e9d8b17b2
f002d4fec095b991b553a0f706b575c58d1ec4d0
/test6/src/class.puml
182db7c96ee22622335b0f5d9a4fff763e03c807
[]
no_license
MinuteLight/is_analysis
65cbdcc5fb20c197e081fd6bdb3a085e80cc0fa6
ac155c1656396407143fae7ee5c94ee6c49809e4
refs/heads/master
2021-04-12T08:04:36.700698
2018-06-08T03:21:10
2018-06-08T03:21:10
125,817,072
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,061
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> (老师工号) department (老师所属部门) teacher_term(老师教授的学期) teacher_course(老师教授的课程) } class students{ <b>student_id</b> (学号) class (班级) result_sum(成绩汇总) web_sum (网站正确与否汇总) student_term(学生选课的学期) student_course(学生选的课程) } users <|- students users <|-- teachers class grades { <b>student_id</b> (学号) <b>experi_id</b> (实验编号) result (最终分数) comment(实验评语) update_date (评改日期) grade_specific(每个实验的多个评分项) grade_present(每个实验占总成绩的百分比) } class experiments { <b>experi_id</b> (实验编号) experi_title (实验名称) experi_term(学期) experi_link(每个实验的链接地址) } class terms{ <b>term_id</b>(学期编号) term_name(学期名称) } class courses{ <b>course_id</b>(课程编号) course_name(课程名) } class select{ <b>select_id</b>(选课ID) <b>course_id</b>(课程编号) teacher_id(老师工号) student_id(学生学号) term_id(学期编号) } class sections{ <b>section_id</b>(评分项ID) <b>experi_id</b>(实验编号) section_title(每个评分项的名称) section_percent(每个评分项分数占此实验的百分比) } grades "1" -- "n" sections students "1" -- "n" grades experiments "1" -- "n" grades teachers "1" -- "n" select students "1" -- "n" select terms "1" -- "n" courses courses "1" -- "n" experiments terms "1" -- "n" select @enduml
d6da5b9d318068908eff2f587add9e4e61db847c
9623791303908fef9f52edc019691abebad9e719
/src/cn/shui/learning_plan/offer/twenty_six/twenty_six.plantuml
2a0c3a7382389c8906a40bb88ec4f8a66c4de0eb
[]
no_license
shuile/LeetCode
8b816b84071a5338db1161ac541437564574f96a
4c12a838a0a895f8efcfbac09e1392c510595535
refs/heads/master
2023-08-17T04:53:37.617226
2023-08-15T16:18:46
2023-08-15T16:18:46
146,776,927
0
0
null
null
null
null
UTF-8
PlantUML
false
false
614
plantuml
@startuml title __TWENTY_SIX's Class Diagram__\n namespace cn.shui.learning_plan.offer.twenty_six { class cn.shui.learning_plan.offer.twenty_six.Offer20 { + isNumber() } } namespace cn.shui.learning_plan.offer.twenty_six { class cn.shui.learning_plan.offer.twenty_six.Offer67 { {static} + main() + strToInt() + strToInt2() + strToInt3() } } 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
981116da316c88f1ea9b85e3da7433efe5936b42
a35809cd34147b14b63d8b2dc942054392805e68
/src/main/java/com/shengsiyuan/dp/mediator/mediator.puml
b3e941d7459b82eaf1d2e61d362e5870c71a636b
[]
no_license
fyk943749465/netty_lecture
8185cb628f89128420024ae613887bfd74fc222f
7afcab5e42a60e281b83f29ccb8dd0c61af1e53a
refs/heads/master
2023-02-22T01:31:44.187631
2021-01-29T14:02:50
2021-01-29T14:02:50
319,482,885
0
0
null
null
null
null
UTF-8
PlantUML
false
false
644
puml
@startuml title 中介者模式原理类图 abstract class Mediator { } class ConcreteMediator { + colleagueMap: HashMap + getMessage(): void } abstract class Colleague { + sendMessage(): void + getMediator(): Mediator } Mediator <|-- ConcreteMediator:继承 ConcreteMediator o-- Colleague:聚合 Colleague <|.. Alarm:继承 Colleague <|.. CoffeeMachine:继承 Colleague <|.. Curtains:继承 Colleague <|.. TV:继承 Mediator <--> Colleague:相互关联 Mediator <.. Alarm:依赖 Mediator <.. CoffeeMachine:依赖 Mediator <.. Curtains:依赖 Mediator <.. TV:依赖 Mediator <.. Client Colleague <.. Client @enduml
fa076f63702e5193c3155b8e8cc0b7204043c229
76cd9c5a65bcc30dfb913e149a76bec870952e91
/uml/DAOImpl.puml
fdc34f85b6843bfc090db0f2709ca936e48ff63e
[]
no_license
GPS-A-D-2105/API-PERSISTENCIA
fe16df84af6deb3cc24c7f3118dcf6b1589798a2
7a941becbb0b5ee142d3c48fd397b605d4632e7b
refs/heads/master
2021-01-10T17:33:21.427307
2015-12-08T07:23:58
2015-12-08T07:23:58
44,888,139
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,779
puml
@startuml interface DataAccessObject<E, Id>{ +{abstract}persistir(E e) : boolean +{abstract}actualizar(E e) : boolean +{abstract}eliminar(E e) : boolean +{abstract}buscarPorId(Id id) : E +{abstract}buscarPorRangos(offset : int, limite : int) : List<E> +{abstract}buscarTodos() : List<E> +{abstract}contar() : int +{abstract}cerrar() : void } interface ComentarioDAO interface CarreraDAO interface MaestroDAO{ +{abstract} buscarPorMateria(idMateria: Object) : List<Maestro> } interface MateriaDAO{ +{abstract} buscarMateriasPorCarrera(idCarrera: Object) : List<Materia> } abstract class GenericJPAImpl<E>{ -clase : Class<E> -emf : EntityManagerFactory -em : EntityManager -{static}PERSISTENCE_UNIT : String +persistir(E e) : boolean +actualizar(E e) : boolean +eliminar(E e) : boolean +buscarPorId(Id id) : E +buscarTodos(offset : int, limite : int) : List<E> +buscarPorId(Id id) : E +buscarPorRangos(offset : int, limite : int) : List<E> +buscarTodos() : List<E> +contar() : int +cerrar() : void } class ComentarioJPAImpl class CarreraJPAImpl class MaestroJPAImpl{ +buscarPorMateria(idMateria: Object) : List<Maestro> } class MateriaJPAImpl{ +buscarMateriasPorCarrera(idCarrera: Object) : List<Materia> } hide interface DataAccessObject <|-- GenericJPAImpl DataAccessObject <|-- ComentarioDAO DataAccessObject <|-- CarreraDAO DataAccessObject <|-- MaestroDAO DataAccessObject <|-- MateriaDAO GenericJPAImpl <|-- ComentarioJPAImpl GenericJPAImpl <|-- CarreraJPAImpl GenericJPAImpl <|-- MaestroJPAImpl GenericJPAImpl <|-- MateriaJPAImpl ComentarioDAO <|-- ComentarioJPAImpl CarreraDAO <|-- CarreraJPAImpl MaestroDAO <|-- MaestroJPAImpl MateriaDAO <|-- MateriaJPAImpl @enduml
88ae146c4166d069795ff5e1159b017d73a6165c
f1413623ce449fba0d374712c7de4b48f986f69e
/BarnameRizi.plantuml
a7a1e8aeb374b44beb366c189859da3d822f2eb8
[]
no_license
MohGanji/OO-ClassDiagram-Project
6bb13390ed5f25d7649422c294d8e93699258d18
30a8b0df41eeb1c68ed561693cbc99aad91a79a2
refs/heads/master
2020-05-17T19:17:49.066110
2019-07-29T09:35:38
2019-07-29T09:35:38
183,911,459
0
0
null
null
null
null
UTF-8
PlantUML
false
false
7,050
plantuml
@startuml ' skinparam Monochrome true skinparam roundcorner 8 ' skinparam interface { ' backgroundColor RosyBrown ' borderColor orange ' } ' skinparam component { ' FontSize 13 ' BackgroundColor<<Apache>> Red ' BorderColor<<Apache>> #FF6655 ' FontName Courier ' BorderColor black ' BackgroundColor gold ' ArrowFontName Impact ' ArrowColor #FF6655 ' ArrowFontColor #777777 ' } skinparam class { BackgroundColor #C0C0C0 ArrowColor black BorderColor IndianRed } skinparam stereotypeCBackgroundColor gold skinparam stereotypeIBackgroundColor AntiqueWhite skinparam stereotypeABackgroundColor yellow title \n1.1 - Design level Class Diagram\n class CourseTypeEnum <<enumeration>> { theory practical } class DayOfWeek <<enumeration>> { Sat Sun Mon Tue Wed Thu Fri } class College <<enumeration>> { ece centeralCollegeOfEngineering } class EducationalTerm <<enumeration>> { Fall Winter } class MojavezState <<enumeration>> { Rejected Accepted Pending } class EnteranceYear { - string year } EnteranceYear o-left- EducationalTerm class Person { - String firstName - String lastName - String phoneNumber - String nationalCode } Person <|- Student Person <|- Professor Person <|- MasoulAmoozesh class Student { - String sid } Student o-- EnteranceYear class Professor { - String pid } class MasoulAmoozesh { } package Schedule <<Folder>> { ' Reshte class Major { - string name } ' Gerayesh class Field { - string name } Field "*" -- "1" Major ' dars class Course { ' .. fields .. - String name - Number vahed ' .. getters .. ' .. setters .. ' .. methods .. } Course "1" o-- "*" Niaz : Pishniaz Course "1" o-- "*" NiazDarsi : Hamniaz Course o-right- CourseTypeEnum : courseType class CourseTermi { - String year - String term } CourseTermi "*" *---- "1" Course CourseTermi "*" o-- "*" Professor : professor CourseTermi "*" o-- "*" Student : students CourseTermi "1" o-- "1" WeeklyTimeSlot CourseTermi "1" o-- "1" College : presentationCollege class WeeklyTimeSlot { - Time startTime - Time endTime } WeeklyTimeSlot <-- DayOfWeek : weekDay abstract class Niaz { } class NiazDarsi { } Niaz <|-down- NiazDarsi class NiazVahedi { } Niaz <|-down- NiazVahedi class Chart { } Chart "1" o-- "1" Field Chart "*" o--- "*" Course Chart "*" o-right- "1" EnteranceYear } package EntekhabVahed <<Folder>> { abstract class AkhzCourseState { } class RegisteredCourseState { } AkhzCourseState <|-- RegisteredCourseState class PendingCourseState { } AkhzCourseState <|-- PendingCourseState class RegisteredCourse_HazfEzafe_State { } AkhzCourseState <|-- RegisteredCourse_HazfEzafe_State class PendingCourse_HazfEzafe_State { } AkhzCourseState <|-- PendingCourse_HazfEzafe_State class HazfEzterariCourseState { } AkhzCourseState <|-- HazfEzterariCourseState class HazfPezeshkiCourseState { } AkhzCourseState <|-- HazfPezeshkiCourseState abstract class AkhzCourseError { } class AdamReayatPishNiazError { } AkhzCourseError <|-up- AdamReayatPishNiazError class KafAkhzVahedError { } AkhzCourseError <|-up- KafAkhzVahedError class SaqfAkhzVahedError { } AkhzCourseError <|-up- SaqfAkhzVahedError class TadakholZamanClassError { } AkhzCourseError <|-up- TadakholZamanClassError class TadakholZamanEmtehanError { } AkhzCourseError <|-up- TadakholZamanEmtehanError class AkhzMojadadError { } AkhzCourseError <|-up- AkhzMojadadError class EtmamZarfiatError { } AkhzCourseError <|-up- EtmamZarfiatError class AkhzKarAmooziWithCourseError { } AkhzCourseError <|-up- AkhzKarAmooziWithCourseError class DarkhastMojavez { - String description } DarkhastMojavez o-- AkhzCourseError DarkhastMojavez o-- MojavezState class CourseAkhzShode { } CourseAkhzShode "*" o-- "1" CourseTermi CourseAkhzShode "1" o-- "1" AkhzCourseState CourseAkhzShode "1" o-- "*" DarkhastMojavez class EntekhabVahedTerm { - Number minVahed - Number maxVahed } EntekhabVahedTerm "*" o-- "1" Student EntekhabVahedTerm "1" o-- "*" CourseAkhzShode class MojavezHandler { } MojavezHandler <-- AkhzCourseError MojavezHandler <-- DarkhastMojavez MasoulAmoozesh <-- MojavezHandler class AkhzCourseHandler { } MasoulAmoozesh <-- AkhzCourseHandler AkhzCourseHandler <-- CourseAkhzShode } ' class CSVGradeBookParser { ' - filename : String ' + CSVGradeBookParser() ' + parse() ' } ' class FileHandler { ' {static} + contentType() ' + handle() ' } ' class GBServer { ' {static} + main() ' } ' class GradeBook { ' {static} - theGradeBook : GradeBook ' - students : Map<String, StudentInfo> ' {static} + gb() ' {static} + init() ' - GradeBook() ' + getItem() ' + getAll() ' + percentPassed() ' } ' interface GradeBookParser { ' {abstract} + parse() ' } ' class Page { ' - filename : String ' - attributes : Map<String, String> ' + Page() ' + subst() ' + writeTo() ' } ' class PercentPassed { ' + execute() ' } ' abstract class ServiceHandler { ' # params : Map<String, String> ' - extractParams() ' {abstract} + execute() ' + handle() ' } ' class ShowStudentInfo { ' + execute() ' } ' class StudentInfo { ' - name : String ' - scores : Map<String, Double> ' + StudentInfo() ' + setScore() ' + getName() ' + getScore() ' + getTotal() ' } ' class XMLGradeBookParser { ' - filename : String ' + XMLGradeBookParser() ' + parse() ' } ' CSVGradeBookParser --|> GradeBookParser ' FileHandler -up-|> HttpHandler ' PercentPassed -up-|> ServiceHandler ' ServiceHandler --|> HttpHandler ' ShowStudentInfo -up-|> ServiceHandler ' XMLGradeBookParser "1" *-up-> "1" StudentInfo ' XMLGradeBookParser .up.> StudentInfo : create ' CSVGradeBookParser .up.> StudentInfo : create ' GradeBook "1" *-up-> "*" StudentInfo ' GradeBook .up.> StudentInfo ' ShowStudentInfo .up.> StudentInfo ' GradeBookParser .up.> StudentInfo ' XMLGradeBookParser .left.> GradeBookParser ' CSVGradeBookParser .right.> GradeBookParser ' GradeBook .down.> GradeBookParser ' GBServer .up.> XMLGradeBookParser : create ' GBServer .up.> GradeBook ' GBServer .up.> PercentPassed ' GBServer .up.> ShowStudentInfo ' GBServer .up.> FileHandler ' PercentPassed .up.> GradeBook ' PercentPassed .down.> Page ' PercentPassed .up.> ServiceHandler ' ShowStudentInfo .up.> GradeBook : create ' ShowStudentInfo .down.> Page : create ' ShowStudentInfo .up.> ServiceHandler footer \n endfooter @enduml
3373fb8af42bd6c8e2ab8327ba5f3a09e26d0b3e
088856ec5790009dd9f9d3498a56fe679cfab2e8
/src/puml/5/ucmitz/svg/class/bc-custom-content/manage_custom_fields.puml
5a98e711dabd77984b739e1608f460e373f57315
[]
no_license
baserproject/baserproject.github.io
21f244348890652286969afa1fde27c5c4d9e4ad
8d61cf720f833854e1a3c97136e22e75baea7bb0
refs/heads/master
2023-08-09T03:21:53.341423
2023-07-27T07:28:50
2023-07-27T07:28:50
228,826,353
0
12
null
2023-08-17T02:31:05
2019-12-18T11:31:51
HTML
UTF-8
PlantUML
false
false
2,128
puml
@startuml skinparam handwritten true skinparam backgroundColor white hide circle skinparam classAttributeIconSize 0 title カスタムフィールド管理 class Admin\CustomFieldsController { + 一覧取得:index() + 新規追加:add() + 編集:edit() + 削除:delete() + コピー:copy() + 有効化:publish() + 無効化:unpublish() + 並び順更新:update_sort() } class CustomFieldsService { + CustomFieldsTable } class CustomFieldsServiceInterface { + 単一データ取得:get() + 一覧データ取得:getIndex() + リスト取得:getList() + 初期データ取得:getNew() + 作成:create() + 編集:update() + 削除:delete() + コピー:copy() + 有効状態にする:publish() + 無効状態にする:unpublish() + 並び順を変更する:changeSort() } class CustomFieldsTable { } class CustomField { + カスタムテーブルID:custom_table_id + カスタムフィールドNO:no + 親ID:parent_id + ツリー構造左位置:lft + ツリー構造右位置:rght + 項目見出し:head + フィールド名:name + フィールドタイプ:type + ステータス:status + 入力必須とする:required + 前見出し:before_head + 後見出し:after_head + 説明文:description + 注意書き:attention + 登録日:created + 変更日:modified + グループ入力チェック:group_valid + オプション:options + クラス:class + 初期値:default_value + 入力チェック:validate + 正規表現入力:regex + エラー用文言:regex_error_message + 文字数カウンターを表示する:counter + 自動変換:auto_convert + プレースホルダー:placeholder + サイズ:size + テキスト行数:rows + 最大値:max_length + 選択肢:source + メタ情報:option_meta } Admin\CustomFieldsController -down[#Black]-> CustomFieldsService CustomFieldsService -down[#Black]-> CustomFieldsTable CustomFieldsService -left[dotted,#Black]-|> CustomFieldsServiceInterface CustomFieldsTable -down[#Black]-> CustomField @enduml