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
355ef7d21ba83601afbf928f12241064e27e97cd
c815f9c82c1400f76243750cd0ec609d217b9943
/template-method/etc/template-method.urm.puml
c2c6045fe4043ec8806cbf5cada4c702c7251598
[ "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
895
puml
@startuml package com.iluwatar.templatemethod { class HitAndRunMethod { + HitAndRunMethod() # confuseTarget(target : String) # pickTarget() : String # stealTheItem(target : String) } class HalflingThief { - method : StealingMethod + HalflingThief(method : StealingMethod) + changeMethod(method : StealingMethod) + steal() } abstract class StealingMethod { + StealingMethod() # confuseTarget(String) {abstract} # pickTarget() : String {abstract} + steal() # stealTheItem(String) {abstract} } class SubtleMethod { + SubtleMethod() # confuseTarget(target : String) # pickTarget() : String # stealTheItem(target : String) } class App { + App() + main(args : String[]) {static} } } HalflingThief --> "-method" StealingMethod HitAndRunMethod --|> StealingMethod SubtleMethod --|> StealingMethod @enduml
b38b5368c3e161452bf7edbc5f3a9353e6739944
f8a1ba4ac815ee086c5291eb949fd7ec6aebb6c7
/Barricade/Models/PlayerPiece.puml
6146f21093664959d9a99e4384f35b8735559275
[]
no_license
Evert-Arends/barricadegameModel3
f7def3f2fd0dead5cc7807c488617505fb664ef5
98fa3d1e396ca133c424f459ea576086d0840814
refs/heads/master
2023-03-02T21:33:43.122111
2021-02-11T13:06:54
2021-02-11T13:06:54
337,192,542
0
0
null
null
null
null
UTF-8
PlantUML
false
false
278
puml
@startuml class PlayerPiece { + <<override>> MoveAllowed(fieldTo:Field, die:Die) : bool + <<override>> NextPiece(die:Die) : Piece + PlayerPiece(name:string) } Piece <|-- PlayerPiece PlayerPiece --> "StartField" StartField PlayerPiece --> "PieceOwner" Player @enduml
c55dec4aa1aee5c705443a4c3f5dfbfa77adcf3e
186819bc98500f794e563bd3ba5a23073756a2ba
/PSP2/Hospital/src/main/java/com/hospital/Hospital/repository/doctorRepository/doctorRepository.plantuml
32f164d7823967466b16b13a1e1db74b6188ef9c
[]
no_license
macro161/PSP
0e53943e4f8568b2c4b788524dc9e12f276d5c9e
7e5e094bbe42af30006fb28d541229dea4efb610
refs/heads/master
2020-03-30T08:04:17.541705
2018-12-07T20:24:18
2018-12-07T20:24:18
150,986,741
0
0
null
null
null
null
UTF-8
PlantUML
false
false
603
plantuml
@startuml title __DOCTORREPOSITORY's Class Diagram__\n package com.hospital.Hospital { package com.hospital.Hospital.repository.doctorRepository { interface DoctorRepository { {abstract} + getDoctorById() {abstract} + createDoctor() {abstract} + getAllDoctors() {abstract} + deleteDoctor() {abstract} + updateDoctor() } } } 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
279d1ba257ac6393d79b6dfb65eefc9187700ffc
40dff9f3accaa74abc586113fbe434a6a47073b4
/src/main/java/com/kiran/design/solid/c/lsp/breaking_lsp.puml
8fde866a1a3122440a1f957e5ba9735630d88882
[]
no_license
kiranprakashb/design-core-java
05eac64aa217bf9acbbda21dcd7b98e56e558f20
2c661c0d2e0506b7fa547395527422205c4cd50e
refs/heads/main
2023-03-04T01:24:55.516348
2021-02-17T19:24:51
2021-02-17T19:24:51
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
511
puml
@startuml 'https://plantuml.com/class-diagram class BankingAppWithdrawalService class Account { deposit(BigDecimal) withdraw(BigDecimal) } class CurrentAccount { deposit(BigDecimal) withdraw(BigDecimal) } class SavingsAccount { deposit(BigDecimal) withdraw(BigDecimal) } class FixedTermDepositAccount { deposit(BigDecimal) withdraw(BigDecimal) - not supported } BankingAppWithdrawalService ..> Account Account <|-- CurrentAccount Account <|-- SavingsAccount Account <|.. FixedTermDepositAccount @enduml
7e961cf64f8df3f726ae182af34264e3cf903820
6f19b616067cdf376f88ea86db3c1ac81f985ba2
/Diagrams/SpaceObject.puml
c5059c3c09ab6247fdb3ae6733b63bfae253ffaa
[]
no_license
eidng8/Space-Flight-Unity
15b32e501b5a22d942b6bce4fb01a929560b7715
ecee704f22482da949db840be3fe0d716b6e9c32
refs/heads/master
2020-12-01T06:00:44.194910
2020-01-14T13:05:20
2020-01-14T13:05:20
230,571,426
1
0
null
null
null
null
UTF-8
PlantUML
false
false
474
puml
@startuml class MonoBehaviour abstract class SpaceObject { # Body : RigidBody + Configure(IConfigurable) : void } SpaceObject --|> MonoBehaviour abstract class IMovableObject { {readonly} speed : float {readonly} velocity : Vector3 {readonly} acceleration : float {readonly} maxForward : float {readonly} maxReverse : float {readonly} maxPan : float {readonly} maxTorque : float Move(Vector3, Vector3) : void } @enduml
f2977b51b34a89e31859c388982fe84e88fa4a1d
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Activation/ActivationTrack.puml
386bd2904c65541ba2bb48ee61b096a4943aa6ef
[]
no_license
TakanoVineYard/AMHH
215a7c47049df08c5635b501e74f85137b9e985b
68887a313587a2934fb4ceb2994cbc2a2191d6a3
refs/heads/master
2023-01-13T02:08:02.787083
2020-11-17T14:51:57
2020-11-17T14:51:57
303,631,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
572
puml
@startuml class ActivationTrack { + <<override>> CreateTrackMixer(graph:PlayableGraph, go:GameObject, inputCount:int) : Playable + <<override>> GatherProperties(director:PlayableDirector, driver:IPropertyCollector) : void } enum PostPlaybackState { Active, Inactive, Revert, LeaveAsIs, } TrackAsset <|-- ActivationTrack ActivationTrack o-> "m_PostPlaybackState" PostPlaybackState ActivationTrack --> "m_ActivationMixer" ActivationMixerPlayable ActivationTrack --> "postPlaybackState" PostPlaybackState ActivationTrack +-- PostPlaybackState @enduml
4c8599f89eac0a4d823d478472e1d8fac2ced355
90e3038f11ccd4d43de368f3825e879517228dce
/facade/diagrams/facade.puml
cc2ec371dcbb4a5eddc84aff65398c30a5baec01
[ "MIT" ]
permissive
SoSilly/java-design-pattern-samples
2f3d57329cf4f1cf33f2e3527a33f0feac6e9324
aca3cef5fc134a0c74ceadd122bc09bfc9cc6c20
refs/heads/master
2021-12-15T11:11:39.303835
2017-08-16T12:50:18
2017-08-16T12:50:18
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,523
puml
@startuml package com.gelvt.gofdp.facade{ class BillingService <<计费服务>>{ + BILLING_TYPE_PROCESS_IMG: String + charge(userId: Integer, billingType: String): Double } class FileManager <<文件管理器>>{ + saveFile(file: File) } class RateLimiter <<调用频率控制工具>>{ - {static} instance: RateLimiter - {static} lck: Object - rate: Integer - random: Random + {static} create(rate: Integer): RateLimiter + acquire() } interface ImageProcessFacade <<图片处理服务>>{ + scaleImage(image: File, width: double, height: double) + void watermark(image: File, content: String) } class DefaultImageProcessFacade <<图片处理服务Facade默认实现>>{ - currentUserId: Integer - rateLimiter: RateLimiter - billingService: BillingService - fileManager: FileManager + ImageProcessService(currentUserId: Integer) + scaleImage(image: File, width: double, height: double) + void watermark(image: File, content: String) } ImageProcessFacade <|.. DefaultImageProcessFacade DefaultImageProcessFacade --> BillingService DefaultImageProcessFacade --> FileManager DefaultImageProcessFacade --> RateLimiter } package com.gelvt.gofdp{ class App <<Client>>{ + main(args: String[]) } } App ..> ImageProcessFacade footer <font size="20" color="red">http://www.bughui.com</font> endfooter @enduml
eec59cb568cc71f4bbe420c631f47d6200f36c1d
c6161c5cabf2403e086cbbf702d1245e7953558c
/Smith-cop3330-assignment3/Diagrams/diagram43.puml
9d403d18cf873f5b35dd454526ca89af33dcd01a
[]
no_license
hunters3211/Java-Projects
8fb9d736ada0e8bc32cb7a9def360ef440cd6750
d855a70f3483b9fb365839b304465d9e6af8fd52
refs/heads/main
2023-08-21T18:51:40.369991
2021-10-12T19:03:09
2021-10-12T19:03:09
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
223
puml
@startuml class app{ user input } class generateOutput{ makeHtml makeCSS makeJS } class SkeletonInfo{ wantsJS wantsCSS } app o-> SkeletonInfo app o-> generateOutput SkeletonInfo o--> generateOutput @enduml
84a6700911e07f1a6128852bcb941de4b455ad7e
dcca4c0aa19e3085bd37640a52b07fa02396b1d8
/4.Behavioral Design Patterns/2.Command/src/main/resources/diagram/CommandClassDiagram.puml
077f22d52228487e4bc57268ec4afb53fd002e62
[]
no_license
drronidz/design-patterns-java-maven
8df24c5bdd021dd45018faf3937b767609e880eb
aa580cd4cc6caa25a418a71bd5af06f86bd354a6
refs/heads/main
2023-07-15T15:26:04.451482
2021-08-25T23:45:35
2021-08-25T23:45:35
392,855,046
1
0
null
null
null
null
UTF-8
PlantUML
false
false
555
puml
@startuml 'https://plantuml.com/class-diagram class Client hide Client members class Invoker hide Invoker members interface Command { Execute() } hide Command members show Command methods class ConcreteCommand { stat Execute () } note right of ConcreteCommand::Execute receiver -> Action(); end note class Receiver { Action() } hide Receiver members show Receiver methods Client .right.> ConcreteCommand Client --> Receiver Command <|-- ConcreteCommand Command <--o Invoker Receiver <-right- ConcreteCommand : receiver @enduml
785baf9d80fc27fad67627a0ed9e72631bcc5d2f
326f0532299d6efcaec59d5a2cc95c31d9af9ef2
/src/com/atguigu/builder/improve/improve.plantuml
2a4bc14320e5cd3b101e92071d14f48e3dbccc11
[]
no_license
srefp/design_pattern
4b45ceb0808a8ae98a007bc5b0e01825693dcf7b
b7ff2d80172c55848b8f59530da6ccca477dfd24
refs/heads/main
2023-01-19T06:12:14.495913
2020-11-24T08:48:53
2020-11-24T08:48:53
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,029
plantuml
@startuml title __IMPROVE's Class Diagram__\n namespace com.atguigu.builder { namespace improve { class com.atguigu.builder.improve.Client { {static} + main() } } } namespace com.atguigu.builder { namespace improve { class com.atguigu.builder.improve.CommonHouse { + buildBasic() + buildWalls() + roofed() } } } namespace com.atguigu.builder { namespace improve { class com.atguigu.builder.improve.HighBuilding { + buildBasic() + buildWalls() + roofed() } } } namespace com.atguigu.builder { namespace improve { class com.atguigu.builder.improve.House { - base : String - roofed : String - wall : String + getBase() + getRoofed() + getWall() + setBase() + setRoofed() + setWall() } } } namespace com.atguigu.builder { namespace improve { abstract class com.atguigu.builder.improve.HouseBuilder { {abstract} + buildBasic() + buildHouse() {abstract} + buildWalls() {abstract} + roofed() } } } namespace com.atguigu.builder { namespace improve { class com.atguigu.builder.improve.HouseDirector { + HouseDirector() + constructHouse() + setHouseBuilder() } } } com.atguigu.builder.improve.CommonHouse -up-|> com.atguigu.builder.improve.HouseBuilder com.atguigu.builder.improve.HighBuilding -up-|> com.atguigu.builder.improve.HouseBuilder com.atguigu.builder.improve.HouseBuilder o-- com.atguigu.builder.improve.House : house com.atguigu.builder.improve.HouseDirector o-- com.atguigu.builder.improve.HouseBuilder : houseBuilder 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
dc7fc8951890f040b7e4bc9c649dcf21382e823e
4e22d261d7dcf5fe2731d77ba3cfb47c5568977c
/Documentation/Source/Breakdown/ComponentCore/Component-Class.iuml
274034a7147228a0f41e4b95b2f2cdac85090b3c
[]
no_license
SeraphinaMJ/Reformed
2d7424d6d38d1cfaf8d385fade474a27c02103a5
8563d35ab2b80ca403b3b57ad80db1173504cf55
refs/heads/master
2023-04-06T00:40:34.223840
2021-05-06T11:25:51
2021-05-06T11:25:51
364,884,928
0
0
null
null
null
null
UTF-8
PlantUML
false
false
212
iuml
namespace SceneManagement { class Component { {abstract} +Type() {abstract} +ToTypeRT() {abstract} +UpdateFromTypeRT() +GetGameObject() } }
b364d135e6e7fe44b5a432897d0382cef4eecadd
9dc89e0060db7938382768fe3bb3eabb7ea2f034
/doc/conception suite/pmul/class/bateau.puml
7079325dd4d4ef2f7eccc2b894c3fd3007e7e058
[]
no_license
Reynault/ShipShop
e06e79384ade8fa5c20ccd6d24b249eba92c35bc
adc6054f0775d4c7695f51490836870b658f309e
refs/heads/master
2020-08-15T16:11:43.189475
2019-12-22T19:22:25
2019-12-22T19:22:25
215,369,325
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,717
puml
@startuml abstract class FleetFactory { -nbCruiser: int -nbSubmarine: int -nbTorpedo: int -nbAircraft: int +HP_CRUISER: int +HP_SUBMARINE: int +HP_TORPEDO: int +HP_AIRCRAFT: int +AMMO_CRUISER: int +AMMO_SUBMARINE: int +AMMO_TORPEDO: int +AMMO_AIRCRAFT: int +DMG_CRUISER: int +DMG_SUBMARINE: int +DMG_TORPEDO: int +DMG_AIRCRAFT: int +NBTILES_CRUISER: int +NBTILES_SUBMARINE: int +NBTILES_TORPEDO: int +NBTILES_AIRCRAFT: int +FleetFactory(nbCruiser: int, nbSubmarine: int, nbTorpedo: int, nbAircraft: int) +{static} getFactory(era: EraConstant, nbAircraft: int, nbCruiser: int, nbSubmarine: int, nbTorpedo: int): FleetFactory +hasShip(shipType: ShipType): boolean +getShip(shipType: ShipType, direction: DirectionConstant): Ship +getSize(shipType: ShipType): int +getNbShip(cruiser: ShipType): int } class ModernFleet{ +ModernFleet(nbCruiser: int, nbSubmarine: int, nbTorpedo: int, nbAircraft: int) } class XVIFleet{ +XVIFleet(nbCruiser: int, nbSubmarine: int, nbTorpedo: int, nbAircraft: int) } class Ship{ -maxHp: int -hp: int -ammo: int -dmg: int -nbTiles: int -direction: DirectionConstant -shipType: ShipType +Ship(hp: int, ammo: int, dmg: int, nbTiles: int, direction: DirectionCOnstant, shipTYpe: ShipType) +place(constant: DirectionConstant): void +hasSunk(): boolean +canShoot(): boolean +canAttack(): boolean +getAmmo(): int +getHp(): int +hit(dmg: int): void +decreaseAmmo(): void +getShipType(): ShipType +getDmg(): int +toString(): String } FleetFactory ^-- ModernFleet FleetFactory ^-- XVIFleet @enduml
04a06a6ea6762f0123a6e8ad9129693d651d7e8b
74c9b8442e20be29367628a1bc87d8364f213b1c
/docs/Move-ios-uml/领域层.puml
4b4012bdddf750eb90d18b36f4d30c300202d3e2
[]
no_license
jigang-duan/Move-iOS
0fb7f1604fa0e1a181efaac64917555928cb5d70
3a9a96b711266bc3b39a8b23815189c14430750c
refs/heads/master
2021-01-24T08:51:39.738242
2017-09-22T10:48:54
2017-09-22T10:48:54
93,396,571
2
1
null
null
null
null
UTF-8
PlantUML
false
false
3,187
puml
@startuml skinparam backgroundColor #EEEBDC title 业务层类图 class Me { - void checkRoles() } package UserInfo { Class Account { String name String passwrod } Class AccessToken { String uid String token String expiredAt } Class User { } Class UserProfile { String phone String email Url headImage String nickname } } interface Role { } note right 角色 我可以有多个角色 对于KidWatch我的角色是监护人 end note Class Guardian { Relation relation + void applyGuardianship(Relation, Kid) + void joinGuardianship(Relation, Kid) } note left 监护人 监护多个小孩 end note package Kid { Class Kid { String kidId + void acceptGuardianship(Guardian) } note left 小孩 关联一个KidWatch设备 拥有多个监护人 end note Class KidProfile { String kidId String phone String nickname Url headPortrait Gender gender int height int weight int birthday + read() + write() } Class KidSetting { String kidId array sos SchoolTime schoolTime array permissions + read() + write() + getFences() + addFence(Fence) + updateFence(Fence) + delectFence(Fence) } Class KidFence { String kidId String name Location location double radius bool active } Class KidState { String kidId } Class Location { String kidId Loc curLoacatio array historyLocation } } package Watch { Class KidWatch { String watchId } note left KidWatch设备 关联一个小孩 end note Class WatchProfile { String deviceId } note right Watch Profile 可以判定类型或身份的数据 end note Class WatchState { int power } Class WatchSetting { String period PositioningMode mode bool vibrate bool mute array muteTime Stirng ring int timezone bool roaming bool autoAnswer bool savePower array languages String language bool hour24 bool autoTime bool dst bool autoPowerOnoff int bootTime int shutdownTime array reminders + read() + write() } note right Watch Setting 在设置时更改的数据 end note } Class Message { array historyItems void send() void read() void delete() void clean() } Class Notification { array historyItems void read() void delete() void clean() } note right 通知 end note interface Authority { } note right 权限 能做什么的权力 一般用管理员和非管理员区分 end note Role <|-- Guardian Me "n" o-- Role Me o-- User Me o-- Account Guardian "n"-->"n" Kid Kid "1"-->"1" KidWatch Account "1"*- AccessToken User "1"*- UserProfile Kid "1"*- KidProfile Kid "1"*- KidSetting Kid "1"*- KidState KidState *- Location KidSetting "n"*- KidFence KidWatch "1"*- WatchProfile KidWatch "1"*- WatchSetting KidWatch "1"*- WatchState Guardian "1"*- Message Guardian .> Authority Me "1"*- Notification enum Relation { 1 - mother 2 - father 3 - grandmaF 4 - grandPaF 5 - grandmaM 6 - grandpaM 7 - uncle 8 - aunty 9 - sister 10 - brother } enum Gender { male female } enum PositioningMode { accurate normal savepower } @enduml
194e7ca77b7f0a79b4d8d6043e4074f0d050a606
3630b0717f619c7e36da9e63eab9d62e2d23fb94
/UML/Character.puml
1067b9cef0f7617223a7f9ea212a6c7aa62e70cc
[]
no_license
RoelStierum/Gameproject
cccadb089fd48ab68b0445ff3b36413c3e745363
0e85786f11d722507c2f4c52ef6e0ab3ac821bd9
refs/heads/master
2023-02-22T01:01:58.857881
2021-01-31T12:26:41
2021-01-31T12:26:41
322,389,134
0
0
null
2021-01-28T15:07:31
2020-12-17T19:13:32
C++
UTF-8
PlantUML
false
false
1,374
puml
@startuml skinparam class{ BorderColor black BackgroundColor #a3a3a3 } class Character{ -GameDataRef _data; -sf::Sprite sprite; -sf::Vector2f position; -sf::Texture texture; -sf::Texture texture_flip; -sf::Texture run_right1; -sf::Texture run_right2; -sf::Texture run_left1; -sf::Texture run_left2; -bool flip = false; -sf::Clock animationClock; -int animationRun = 0; -bool air_texture = false; +sf::Vector2f velocity = {0,0}; +float speed = 400.0f; +float jump_speed = 600.0f; +float slow_down = 0.0f, slow_down_ground = 40.0f, slow_down_air = 5.0f; +float speed_up = 0.0f, speed_up_ground = 40.0f, speed_up_air = 30.0f; +int max_jump =1, jump = 0; +bool jump_done = false, on_ground = false; -void flipTexture(); +Character(GameDataRef data); +void update(); +void setTexture(6 Textures); +void setPosition(const sf::Vector2f& position_); +void setPosition(const float& x, const float& y); +sf::Vector2f getPosition(); +void draw(sf::RenderWindow& renderWindow); +void move(sf::Vector2f movement); +void move(const float& x, const float& y); +sf::Vector2f nextPosition(sf::Vector2f movement); +sf::Sprite nextSprite(sf::Vector2f movement); +sf::Sprite& getSprite(); +bool objectCollisionAndFalling(const sf::Sprite &object, const float& dt); +void updateVelocity(const float& dt); +void respawn(sf::Vector2f spawn); +void characterKeyboardInput(); } @enduml
6f5caa32b0146ccb5b474ade36f445a9d0f1b090
b622200b7096310181b49f92318b0ad9fb269610
/0_BLENotifier/thingml-gen/UML/HouseTestCfg/HouseTestCfg/docs/HouseTestCfg_datatypes.plantuml
9047b56b63e6528ff0a96292d3c67caafb5cb601
[]
no_license
srlaghm/ThingML-BLE
2ab887c8c836423a3982d4c87acdd65511dd92be
a7aa1580ece9e520f777601093a07b39fcb26d7b
refs/heads/master
2023-04-06T18:10:34.883400
2017-06-15T07:38:05
2017-06-15T07:38:05
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
672
plantuml
@startuml caption Datatypes used in configuration HouseTestCfg class UInt8 <<(D,#D2E524)1>> { } note bottom of UInt8 : <b>@type_checker</b> <color:royalBlue>"Integer"</color>\n<b>@c_type</b> <color:royalBlue>"uint8_t"</color>\n<b>@c_byte_size</b> <color:royalBlue>"1"</color>\n class ArduinoServo <<(O,#E5D224)>> { } note bottom of ArduinoServo : <b>@c_type</b> <color:royalBlue>"Servo"</color>\n<b>@c_byte_size</b> <color:royalBlue>"2"</color>\n class UInt32 <<(D,#D2E524)4>> { } note bottom of UInt32 : <b>@type_checker</b> <color:royalBlue>"Integer"</color>\n<b>@c_type</b> <color:royalBlue>"uint32_t"</color>\n<b>@c_byte_size</b> <color:royalBlue>"4"</color>\n @enduml
b65cc0fcf43aaecc6e371a08f0505cc8720e1c76
58f618450c8fe36e1cc5a75b678bbf74a0c99836
/docu/diagrams/cld.puml
0cf067ce0bcbad94dba1b27741c623ba278013f4
[]
no_license
2122-5ahif-nvs/02-microproject-gahleitnerLorenz
9f17b7052a2a0efe15a694a15c2b5979fe8c05af
9da0119c1b78754f76bbfbd1ee5280b0760c6149
refs/heads/main
2023-08-19T16:03:30.027245
2021-10-14T10:44:41
2021-10-14T10:44:41
414,503,727
0
0
null
null
null
null
UTF-8
PlantUML
false
false
680
puml
@startuml class Employee{ -name: String -birthdate: LocalDate -count: Integer -id: Long -contract: List<Contract> } class Client{ -adress: String -name: String -contracts: List<Contract> -rooms: String -id: Long } Enum TypeOfFacilityManagement{ -CLEANING -SECURITY -REPAIRMENT -PREPARE -PLAN } class Contract{ -endDateOfContract: Date -employee: Worker -companyOfWork: Company -salary: Double -facilityManagementperformed: TypeOfFacilityManagement -id: Long } Employee "1" <-- "*" Contract : has Client "1" <-- "*" Contract : has Contract "*" -- "1" TypeOfFacilityManagement : has @enduml
6aac13fcb6664fb28723bb69cb0e7c56a33438bd
3a87571e84f18ed4bf02f652408bee9e4a18505c
/diagram/steven.puml
975c91c355a3e83bae52426feda8f7888c0ca9c7
[ "MIT" ]
permissive
canonical-debate-lab/cd-domain-model
e2b945066f963d12206083792f063e56886ef13b
37921e45659b6d0bd2d0d8ed8679f2d010e2c4bb
refs/heads/main
2023-04-02T18:12:29.555732
2021-04-13T16:05:31
2021-04-13T16:05:31
317,239,684
1
0
MIT
2020-12-11T18:54:27
2020-11-30T13:55:48
Kotlin
UTF-8
PlantUML
false
false
339
puml
@startuml class Claim { String* positive_sentences String* negation_sentences String generate_negation_sentence() } class Support { Claim premise boolean premise_affirmation Claim conclusion boolean conclusion_affirmation } Claim "1" <- Support: < premise Claim "1" <- Support: < conclusion Claim <|-- Support @enduml
dc7b63cf552f2021233ab7e3f3f288fe7087cdcb
df151ab0be7c27fd0cf1ab85ccc841493f3d369c
/app/src/main/java/com/sinhvien/quanlychitieu/adapter/adapter.plantuml
1738f037f5bdd36ec509b094942f2ff108681b62
[]
no_license
ncdanh19/QuanLyChiTieu
1b6d72d5c320ae05f7133b8903d9d00b26051408
a63213af69e0c108090d16008b3cf5351b52ffb6
refs/heads/master
2020-05-16T11:49:42.141615
2019-06-11T02:08:24
2019-06-11T02:08:24
182,412,608
0
0
null
null
null
null
UTF-8
PlantUML
false
false
10,085
plantuml
@startuml title __ADAPTER's Class Diagram__\n package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class AlertDialogAdapter { - listTaiKhoan : List<TaiKhoan> - context : Context + AlertDialogAdapter() + AlertDialogAdapter() + AlertDialogAdapter() + onCreateViewHolder() + onBindViewHolder() + getItemCount() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class AlertDialogViewHolder { ~ imageicon : ImageView ~ tv_tenTaiKhoan : TextView ~ AlertDialogViewHolder() + onClick() + onLongClick() ~ setItemClickListener() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class ChuyenImage { {static} + getString() {static} + getStringtoImage() + getBytes() + getImage() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class HanMucAdapter { ~ context : Context ~ listHanMuc : List<HanMuc> ~ simpleDateFormat : SimpleDateFormat + HanMucAdapter() + HanMucAdapter() + updateData() + onCreateViewHolder() + onBindViewHolder() - formatCurrency() + getItemCount() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class HanMucViewHolder { - imageHangMuc : ImageView - tenHanMuc : TextView - ngayBatDau : TextView - ngayKetThuc : TextView - soTienHanMuc : TextView - soTienConLai : TextView - currentcy1 : TextView - currentcy2 : TextView - ngayConLai : TextView - trangThai : TextView - processBar : ProgressBar + HanMucViewHolder() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { interface ItemClickListener { {abstract} + onClick() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class LoaiTaiKhoanViewAdapter { - loaiTaiKhoans : ArrayList<LoaiTaiKhoan> - context : Context + LoaiTaiKhoanViewAdapter() + onCreateViewHolder() + onBindViewHolder() + getItemCount() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class RecyclerViewHolder { ~ textItem : TextView ~ imageItem : ImageView ~ RecyclerViewHolder() + onClick() + onLongClick() ~ setItemClickListener() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class MyHangMucChiRecyclerViewAdapter { - context : Context - listHangMuc : List<HangMuc> + MyHangMucChiRecyclerViewAdapter() + onCreateViewHolder() + onBindViewHolder() + getItemCount() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class HangMucChiViewHolder { ~ textItem : TextView ~ imageItem : ImageView ~ HangMucChiViewHolder() + onClick() + onLongClick() ~ setItemClickListener() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class MyHangMucThuRecyclerViewAdapter { - context : Context - listHangMuc : List<HangMuc> + MyHangMucThuRecyclerViewAdapter() + onCreateViewHolder() + onBindViewHolder() + getItemCount() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class HangMucThuViewHolder { ~ textItem : TextView ~ imageItem : ImageView ~ HangMucThuViewHolder() + onClick() + onLongClick() ~ setItemClickListener() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { interface OnPagerItemSelected { {abstract} + pagerItemSelected() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class TaiKhoanAdapter { - listTaiKhoan : List<TaiKhoan> - context : Context + TaiKhoanAdapter() + TaiKhoanAdapter() + TaiKhoanAdapter() + onCreateViewHolder() + onBindViewHolder() - formatCurrency() + getItemCount() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class TaiKhoanViewHolder { ~ buttonTuyChon : ImageButton ~ imageicon : ImageView ~ tv_tenTaiKhoan : TextView ~ tv_SoTien : TextView ~ textCurrency : TextView + recyclerView : RecyclerView ~ TaiKhoanViewHolder() + onClick() + onLongClick() ~ setItemClickListener() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class ThongKeAdapter { - context : Context - listThuChi : List<ThuChi> + ThongKeAdapter() + onCreateViewHolder() + onBindViewHolder() - TongTien() + getItemCount() - formatCurrency() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class ThongKeViewHolder { ~ imageHangMuc : ImageView ~ tenHangMuc : TextView ~ soTien : TextView ~ processBar : ProgressBar ~ textCurrency : TextView ~ percent : TextView ~ ThongKeViewHolder() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class TongQuanAdapter { - listThuChi : List<ThuChi> - context : Context + TongQuanAdapter() + onCreateViewHolder() + onBindViewHolder() - formatCurrency() + getItemCount() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class TongQuanViewHolder { ~ textCurrency : TextView ~ imageHangMuc : ImageView ~ textHangMuc : TextView ~ textNgay : TextView ~ textSoTien : TextView ~ textViTien : TextView ~ TongQuanViewHolder() + onClick() + onLongClick() ~ setItemClickListener() - anhXa() } } } package com.sinhvien.quanlychitieu { package com.sinhvien.quanlychitieu.adapter { class ViewPagerAdapter { - mFragmentList : List<Fragment> - mFragmentTitleList : List<String> + ViewPagerAdapter() + getItem() + getCount() + addFragment() + getPageTitle() } } } AlertDialogAdapter -up-|> Adapter AlertDialogAdapter o-- OnPagerItemSelected : listener AlertDialogAdapter +-down- AlertDialogViewHolder AlertDialogViewHolder -up-|> OnClickListener AlertDialogViewHolder -up-|> OnLongClickListener AlertDialogViewHolder -up-|> ViewHolder AlertDialogViewHolder o-- ItemClickListener : itemClickListener HanMucAdapter -up-|> Adapter HanMucAdapter +-down- HanMucViewHolder HanMucViewHolder -up-|> ViewHolder LoaiTaiKhoanViewAdapter -up-|> Adapter LoaiTaiKhoanViewAdapter o-- OnPagerItemSelected : listener LoaiTaiKhoanViewAdapter +-down- RecyclerViewHolder RecyclerViewHolder -up-|> OnClickListener RecyclerViewHolder -up-|> OnLongClickListener RecyclerViewHolder -up-|> ViewHolder RecyclerViewHolder o-- ItemClickListener : itemClickListener MyHangMucChiRecyclerViewAdapter -up-|> Adapter MyHangMucChiRecyclerViewAdapter o-- OnPagerItemSelected : listener MyHangMucChiRecyclerViewAdapter +-down- HangMucChiViewHolder HangMucChiViewHolder -up-|> OnClickListener HangMucChiViewHolder -up-|> OnLongClickListener HangMucChiViewHolder -up-|> ViewHolder HangMucChiViewHolder o-- ItemClickListener : itemClickListener MyHangMucThuRecyclerViewAdapter -up-|> Adapter MyHangMucThuRecyclerViewAdapter o-- OnPagerItemSelected : listener MyHangMucThuRecyclerViewAdapter +-down- HangMucThuViewHolder HangMucThuViewHolder -up-|> OnClickListener HangMucThuViewHolder -up-|> OnLongClickListener HangMucThuViewHolder -up-|> ViewHolder HangMucThuViewHolder o-- ItemClickListener : itemClickListener TaiKhoanAdapter -up-|> Adapter TaiKhoanAdapter o-- OnPagerItemSelected : listener TaiKhoanAdapter o-- TaiKhoanHelper : tk_database TaiKhoanAdapter o-- ThuChiHelper : tc_database TaiKhoanAdapter o-- TaiKhoanAdapter : adapter TaiKhoanAdapter +-down- TaiKhoanViewHolder TaiKhoanViewHolder -up-|> OnClickListener TaiKhoanViewHolder -up-|> OnLongClickListener TaiKhoanViewHolder -up-|> ViewHolder TaiKhoanViewHolder o-- TaiKhoanAdapter : adapter TaiKhoanViewHolder o-- ItemClickListener : itemClickListener ThongKeAdapter -up-|> Adapter ThongKeAdapter +-down- ThongKeViewHolder ThongKeViewHolder -up-|> ViewHolder TongQuanAdapter -up-|> Adapter TongQuanAdapter +-down- TongQuanViewHolder TongQuanViewHolder -up-|> OnClickListener TongQuanViewHolder -up-|> OnLongClickListener TongQuanViewHolder -up-|> ViewHolder TongQuanViewHolder o-- ItemClickListener : itemClickListener ViewPagerAdapter -up-|> FragmentPagerAdapter 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
d6f59954880cdc52a8cf88ef4d06477cb9a6d157
8621a669225007fdbe4ed1605a1ab66037b8cbce
/src/main/resources/CollectionFrame.puml
745b8b06477465d99bcd43898943daab13498ea6
[]
no_license
xingxingge/MyProjects
cad27add50d70527c82bba02e9973e6e93da2028
1d7625c1be82ef7869c619a5ebf69e8fc0d877a9
refs/heads/master
2022-09-03T20:29:57.748093
2022-08-19T14:11:37
2022-08-19T14:11:37
52,705,444
2
0
null
null
null
null
UTF-8
PlantUML
false
false
1,192
puml
@startuml interface Iterable{ Iterator iterator() } interface Collection interface Iterator{ } abstract class AbstractCollection interface List{ } interface ListIterator{ } class Vector{ } class Stack{ } abstract class AbstractList Iterator <.. Collection Iterable <|- Collection Collection <|- List List <|.. AbstractList Iterator<|.. ListIterator Collection <|.. AbstractCollection AbstractCollection <|- AbstractList AbstractList <|-- ArrayList AbstractList <|-- AbstractSequentialList List <|.. LinkedList Deque <|.. LinkedList Queue <|-- Deque Collection <|-- Queue AbstractSequentialList <|-- LinkedList Collection <|- Set Set <|.. AbstractSet AbstractCollection <|- AbstractSet Vector <|-Stack AbstractList <|-Vector List <|..Vector Map <|-AbstractMap AbstractMap <|-HashMap Map <|..HashMap Map <|.. LinkedHashMap HashMap <|- LinkedHashMap interface Deque{ } interface Queue{ } class ArrayList { Object[] elementData size() } class LinkedList { Object[] elementData size() } abstract class AbstractSet{ } abstract class AbstractSequentialList{ } interface Set{ } interface Map{ } abstract class AbstractMap{ } class HashMap{ } class LinkedHashMap{ } @enduml
09e0b19c83895cd230d5b41797f1191538ee3251
426c9b9b2ccb9a4ff7f797065b0ec3999ee66629
/chapter5/automobile.puml
dd6c100efcd0e21d5e9e2a8b4ad2e57c53b8cece
[]
no_license
kyamashiro/head-first-ooad
0f19da87a694cb47b6d6725049201b14afe1985f
cef1319789ce7225d1e97f51f94b29ccefaeff8b
refs/heads/master
2020-05-09T12:09:08.686383
2019-08-25T09:05:54
2019-08-25T09:05:54
181,103,279
1
0
null
2019-08-15T09:58:19
2019-04-13T00:59:13
PHP
UTF-8
PlantUML
false
false
117
puml
@startuml class Automobile { start() stop() changeTires(Tire [*]) drive() wash() checkOil() getOil():int } @enduml
8d835fc76d02584f4da67e443c17abe5ab0167d0
e80c5fe439cb8fe4bcca554f1ff861299f40fa60
/1.Basics/3_Button/thingml-gen/UML/Button2App/Button2App/docs/Button2App_class_compact.plantuml
98c97bd95ef140dfa0b7605ea3600de06a982633
[]
no_license
madkira/ThingMLArduinoDemo
331a8e258d4e57d18efb9dccd581179b8f69c0ba
730789e11960547852cd4e1a0254f49f08ea8131
refs/heads/master
2020-12-07T03:57:47.048263
2017-06-27T12:19:36
2017-06-27T12:19:36
95,461,161
0
0
null
2017-06-26T15:27:01
2017-06-26T15:27:01
null
UTF-8
PlantUML
false
false
1,021
plantuml
@startuml caption Things used in configuration Button2App class LED <<(T,#F94918)PSM>> { ..Properties.. -PIN : UInt8 = 11 ..Port ctrl.. >>led_ON >>led_OFF ..Functions.. -setDigitalOutput(...) : void -digitalWrite(...) : void } class LEDMsgs <<(T,#5BBF09)PIM>> { ..Messages.. -led_ON() -led_OFF() } class TestButton <<(T,#5BBF09)PIM>> { ..Port led1.. <<led_ON <<led_OFF ..Port led2.. <<led_ON <<led_OFF ..Port but.. >>press >>release ..Port timer.. >>timer_timeout <<timer_start <<timer_cancel } class ButtonMsgs <<(F,#BC74ED)Fragment>> { ..Messages.. -press() -release() } class TimerMsgs <<(F,#BC74ED)Fragment>> { ..Messages.. -timer_start(...) -timer_cancel(...) -timer_timeout(...) -ms25_tic() -ms500_tic() } class Button <<(T,#F94918)PSM>> { ..Properties.. -PIN : UInt8 = 8 ..Port clock.. >>ms25_tic ..Port evt.. <<press <<release ..Functions.. -is_pressed() : Boolean } LEDMsgs <|-- LED ButtonMsgs <|-- TestButton LEDMsgs <|-- TestButton TimerMsgs <|-- TestButton ButtonMsgs <|-- Button TimerMsgs <|-- Button @enduml
2049c7a00a213baaf629d47adf810adc71b7b0e0
1a874b3427decfdc734e03583dd8cc63d657cdad
/app/src/main/java/com/example/airpnp/AuthPackage/AuthPackage.plantuml
99e1db77c5652141e13a85ce2c2252073757621e
[]
no_license
IdoPerez/AirPnP
0badff3de357d4add3e262115310e5ffed5d1dab
785869469e7958e4d4acaf3f6a6ff7f0b5a07433
refs/heads/master
2023-06-05T01:16:14.054826
2021-06-23T06:16:55
2021-06-23T06:16:55
309,782,171
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,345
plantuml
@startuml title __AUTHPACKAGE's Class Diagram__\n namespace com.example.airpnp { namespace AuthPackage { class com.example.airpnp.AuthPackage.Authentication { + edEmail : EditText + edPassword : EditText - mAuth : FirebaseAuth + Auth() + onCreateOptionsMenu() + onOptionsItemSelected() + userRegister() # onCreate() - userLogin() } } } namespace com.example.airpnp { namespace AuthPackage { class com.example.airpnp.AuthPackage.EmailVerification { - btn : Button + sendEmailVerification() + startEmailVerification() # onCreate() } } } namespace com.example.airpnp { namespace AuthPackage { class com.example.airpnp.AuthPackage.RegisterSecStep { ~ addCarBtn : ImageButton ~ carName : String ~ carNumber : String ~ edCarName : EditText ~ edCarNumber : EditText ~ email : String ~ password : String ~ phoneNum : String ~ sizeItems : ArrayList<SizeItem> ~ sizeSpinner : Spinner ~ userCarList : ListView ~ userCars : ArrayList<UserCar> ~ username : String - mAuth : FirebaseAuth + createUser() # onCreate() - carEditTextCheck() - createUserFireBase() } } } namespace com.example.airpnp { namespace AuthPackage { class com.example.airpnp.AuthPackage.RegisterUser { ~ backBtn : ImageButton ~ infoLayout : LinearLayout - edEmail : EditText - edName : EditText - edPassword : EditText - edPhoneNum : EditText + createUser() + onCreateOptionsMenu() + onOptionsItemSelected() # onCreate() - createUserDetails() } } } com.example.airpnp.AuthPackage.EmailVerification o-- com.example.airpnp.Helper.FirebaseHelper : firebaseHelper com.example.airpnp.AuthPackage.RegisterUser o-- com.example.airpnp.UserPackage.User : user 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
2765c0470c740bc54204f190708a968de05aaa29
9623791303908fef9f52edc019691abebad9e719
/src/cn/shui/order/add_binary/add_binary.plantuml
c266860a09d04acca0837706cce2a7189517fe3a
[]
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
436
plantuml
@startuml title __ADD_BINARY's Class Diagram__\n namespace cn.shui.order { namespace add_binary { class cn.shui.order.add_binary.Solution { {static} + addBinary() {static} + main() } } } right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
2f6e7fc274ac7d4323949bf9923ace77599b64e6
c0daa38416d0df67da681d5a3b457cc63b4a78bf
/src/test/java/uk/ac/ebi/pride/utilities/util/util.plantuml
6cb807a679853fb399c50d7f17009b91526f5371
[ "Apache-2.0" ]
permissive
PRIDE-Utilities/pride-utilities
5dca0a5154c13a27d6dfa6e18dbc4a6a1c908962
a6a375d69c1f3085cd1774a1fbd27e2b5c77a9cf
refs/heads/master
2022-09-05T01:09:01.400987
2022-09-02T13:24:19
2022-09-02T13:24:19
23,535,931
1
3
null
2022-09-02T13:24:20
2014-09-01T08:35:19
Java
UTF-8
PlantUML
false
false
513
plantuml
@startuml title __UTIL's Class Diagram__\n package uk.ac.ebi.pride.utilities.util { class NumberUtilitiesTest { + testIsNumber() + testIsInteger() + testIsNonNegativeInteger() + testScaleDouble() + testIsoPointcaculate() + testGravicalculate() } } 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
a52eb9e99dd98fbeb282f1075331188784268a4e
0c4947dd88f0571925ba65e79fd2ea6c6f35cdda
/src/main/java/cn/Bean.puml
b3feabed144041257207d466f89bf8ef14e39e33
[]
no_license
zou2561789/springuml
e31ad444152730d961a37d900951f1a1d3dd9609
15a505af77591b3e08a091dda2382940e8e6c48e
refs/heads/master
2020-05-05T08:10:03.561315
2019-06-15T10:36:34
2019-06-15T10:36:34
179,853,364
1
0
null
null
null
null
UTF-8
PlantUML
false
false
20,734
puml
@startuml class RootBeanDefinition{ - BeanDefinitionHolder decoratedDefinition - AnnotatedElement qualifiedElement - boolean allowCaching - boolean isFactoryMethodUnique {volatile} ResolvableType targetTyp {volatile} Class<?> resolvedTargetType {volatile} ResolvableType factoryMethodReturnType {volatile} Method factoryMethodToIntrospect; {final} Object constructorArgumentLock Executable resolvedConstructorOrFactoryMethod boolean constructorArgumentsResolved Object[] resolvedConstructorArguments Object[] preparedConstructorArguments {final} Object postProcessingLock boolean postProcessed {volatile} Boolean beforeInstantiationResolved - Set<Member> externallyManagedConfigMembers - Set<String> externallyManagedInitMethods - Set<String> externallyManagedDestroyMethods + String getParentName() + void setDecoratedDefinition(@Nullable BeanDefinitionHolder decoratedDefinition) + BeanDefinitionHolder getDecoratedDefinition() + void setQualifiedElement(@Nullable AnnotatedElement qualifiedElement + AnnotatedElement getQualifiedElement() + void setTargetType(ResolvableType targetType) + void setTargetType(@Nullable Class<?> targetType) + Class<?> getTargetType() + ResolvableType getResolvableType() + Constructor<?>[] getPreferredConstructors() + void setUniqueFactoryMethodName(String name) + boolean isFactoryMethod(Method candidate) + Method getResolvedFactoryMethod() + void registerExternallyManagedConfigMember(Member configMember) + boolean isExternallyManagedConfigMember(Member configMember) + void registerExternallyManagedInitMethod(String initMethod) + boolean isExternallyManagedInitMethod(String initMethod) + void registerExternallyManagedDestroyMethod(String destroyMethod) + boolean isExternallyManagedDestroyMethod(String destroyMethod) + RootBeanDefinition cloneBeanDefinition() + boolean equals(Object other) + String toString() } class BeanDefinitionHolder{ -{final} BeanDefinition beanDefinition -{final} String beanName -{final} String[] aliases + BeanDefinition getBeanDefinition() + String getBeanName() + String[] getAliases() + Object getSource() + boolean matchesName(@Nullable String candidateName) + String getShortDescription() + String getLongDescription() + String toString() boolean equals(Object other) } class BeanComponentDefinition{ - BeanDefinition[] innerBeanDefinitions - BeanReference[] beanReferences + String getName() + String getDescription() + BeanDefinition[] getBeanDefinitions() + BeanDefinition[] getInnerBeanDefinitions() + BeanReference[] getBeanReferences() + String toString() + boolean equals(Object other) } class GenericBeanDefinition{ - String parentName + void setParentName(String parentName) + String getParentName() + AbstractBeanDefinition cloneBeanDefinition() + boolean equals(Object other) + String toString() } class AnnotatedGenericBeanDefinition{ - {final} AnnotationMetadata metadata - MethodMetadata factoryMethodMetadata + {final} AnnotationMetadata getMetadata() + {final} MethodMetadata getFactoryMethodMetadata() } class ChildBeanDefinition{ - String parentName + void setParentName(String parentName) + void validate() throws BeanDefinitionValidationException + AbstractBeanDefinition cloneBeanDefinition() + boolean equals(Object other) + int hashCode() + String toString() } class ScannedGenericBeanDefinition{ - {final} AnnotationMetadata metadata + {final} AnnotationMetadata getMetadata() + MethodMetadata getFactoryMethodMetadata() } class BeanMetadataAttribute{ -{final} String name -{final} Object value - Object source + String getName() + Object getValue() + void setSource(@Nullable Object source) + Object getSource() + boolean equals(Object other) + int hashCode() + String toString() } abstract class AbstractBeanDefinition{ +{static,final} String SCOPE_DEFAULT +{static,final} int AUTOWIRE_NO +{static,final} int AUTOWIRE_BY_NAME +{static,final} int AUTOWIRE_BY_TYPE +{static,final} int AUTOWIRE_CONSTRUCTOR +{static,final} int AUTOWIRE_AUTODETECT +{static,final} int DEPENDENCY_CHECK_NONE +{static,final] int DEPENDENCY_CHECK_OBJECTS +{static,final} int DEPENDENCY_CHECK_SIMPLE +{static,final} int DEPENDENCY_CHECK_ALL +{static,final} String INFER_METHOD -{volatile} Object beanClass - String scope - boolean abstractFlag - boolean lazyInit - int autowireMode - int dependencyCheck - String[] dependsOn - boolean autowireCandidate - boolean primary - {final} Map<String, AutowireCandidateQualifier> qualifiers - Supplier<?> instanceSupplier - boolean nonPublicAccessAllowed - boolean lenientConstructorResolution - String factoryBeanName - String factoryMethodName - ConstructorArgumentValues constructorArgumentValues - MutablePropertyValues propertyValues - MethodOverrides methodOverrides - String initMethodName - String destroyMethodName - boolean enforceInitMethod - boolean enforceDestroyMethod - boolean synthetic - int role - String description - Resource resource AbstractBeanDefinition(BeanDefinition original) + void overrideFrom(BeanDefinition other) + void applyDefaults(BeanDefinitionDefaults defaults) + void setBeanClassName(@Nullable String beanClassName) + String getBeanClassName() + void setBeanClass(@Nullable Class<?> beanClass) + Class<?> getBeanClass() throws IllegalStateException + boolean hasBeanClass() + Class<?> resolveBeanClass(@Nullable ClassLoader classLoader) throws ClassNotFoundException + void setScope(@Nullable String scope) + String getScope() + boolean isSingleton() + boolean isPrototype() + void setAbstract(boolean abstractFlag) + boolean isAbstract() + void setLazyInit(boolean lazyInit) + boolean isLazyInit() + void setAutowireMode(int autowireMode) + int getAutowireMode() + int getResolvedAutowireMode() + void setDependencyCheck(int dependencyCheck) + int getDependencyCheck() + void setDependsOn(@Nullable String... dependsOn) + String[] getDependsOn() + void setAutowireCandidate(boolean autowireCandidate) + boolean isAutowireCandidate() + void setPrimary(boolean primary) + boolean isPrimary() + void addQualifier(AutowireCandidateQualifier qualifier) + boolean hasQualifier(String typeName) + AutowireCandidateQualifier getQualifier(String typeName) + Set<AutowireCandidateQualifier> getQualifiers() + void copyQualifiersFrom(AbstractBeanDefinition source) + void setInstanceSupplier(@Nullable Supplier<?> instanceSupplier) + Supplier<?> getInstanceSupplier( + void setNonPublicAccessAllowed(boolean nonPublicAccessAllowed) + boolean isNonPublicAccessAllowed() + void setLenientConstructorResolution(boolean lenientConstructorResolution) + boolean isLenientConstructorResolution() + void setFactoryBeanName(@Nullable String factoryBeanName) + String getFactoryBeanName() + void setFactoryMethodName(@Nullable String factoryMethodName) + String getFactoryMethodName() + void setConstructorArgumentValues(ConstructorArgumentValues constructorArgumentValues) + ConstructorArgumentValues getConstructorArgumentValues() + boolean hasConstructorArgumentValues() + void setPropertyValues(MutablePropertyValues propertyValues) + MutablePropertyValues getPropertyValues() + boolean hasPropertyValues() + void setMethodOverrides(MethodOverrides methodOverrides) + MethodOverrides getMethodOverrides() + boolean hasMethodOverrides() + void setInitMethodName(@Nullable String initMethodName) + String getInitMethodName() + void setEnforceInitMethod(boolean enforceInitMethod) + boolean isEnforceInitMethod() + void setDestroyMethodName(@Nullable String destroyMethodName) + String getDestroyMethodName() + void setEnforceDestroyMethod(boolean enforceDestroyMethod) + boolean isEnforceDestroyMethod() + void setSynthetic(boolean synthetic) + boolean isSynthetic() + void setRole(int role) + int getRole() + void setDescription(@Nullable String description) + String getDescription() + void setResource(@Nullable Resource resource) + Resource getResource() + void setResourceDescription(@Nullable String resourceDescription) + String getResourceDescription() + void setOriginatingBeanDefinition(BeanDefinition originatingBd) + BeanDefinition getOriginatingBeanDefinition() + void validate() throws BeanDefinitionValidationException + void prepareMethodOverrides() throws BeanDefinitionValidationException void prepareMethodOverride(MethodOverride mo) throws BeanDefinitionValidationException + Object clone() + abstract AbstractBeanDefinition cloneBeanDefinition() + boolean equals(Object other) + int hashCode() + String toString() } class BeanMetadataAttributeAccessor{ - Object source + void setSource(@Nullable Object source) + Object getSource() + void addMetadataAttribute(BeanMetadataAttribute attribute) + BeanMetadataAttribute getMetadataAttribute(String name) + void setAttribute(String name, @Nullable Object value) + Object getAttribute(String name) + Object removeAttribute(String name) } class AutowireCandidateQualifier{ +{static,final} String VALUE_KEY -{final} String typeName + String getTypeName() } class ConstructorArgumentValues{ -{final} Map<Integer, ValueHolder> indexedArgumentValues -{final} List<ValueHolder> genericArgumentValue + void addArgumentValues(@Nullable ConstructorArgumentValues other) + void addIndexedArgumentValue(int index, @Nullable Object value) + void addIndexedArgumentValue(int index, @Nullable Object value, String type) + void addIndexedArgumentValue(int index, ValueHolder newValue) + void addOrMergeIndexedArgumentValue(Integer key, ValueHolder newValue) + boolean hasIndexedArgumentValue(int index) + ValueHolder getIndexedArgumentValue(int index, @Nullable Class<?> requiredType) + ValueHolder getIndexedArgumentValue(int index, @Nullable Class<?> requiredType, @Nullable String requiredName) + Map<Integer, ValueHolder> getIndexedArgumentValues() + void addGenericArgumentValue(Object value) + void addGenericArgumentValue(Object value, String type) + void addGenericArgumentValue(ValueHolder newValue) - void addOrMergeGenericArgumentValue(ValueHolder newValue) + ValueHolder getGenericArgumentValue(Class<?> requiredType) + ValueHolder getGenericArgumentValue(Class<?> requiredType, String requiredName) + ValueHolder getGenericArgumentValue(@Nullable Class<?> requiredType, @Nullable String requiredName, @Nullable Set<ValueHolder> usedValueHolders) + List<ValueHolder> getGenericArgumentValues() + ValueHolder getArgumentValue(int index, Class<?> requiredType) + ValueHolder getArgumentValue(int index, Class<?> requiredType, String requiredName) + ValueHolder getArgumentValue(int index, @Nullable Class<?> requiredType, @Nullable String requiredName, @Nullable Set<ValueHolder> usedValueHolders) + int getArgumentCount() + boolean isEmpty() + void clear() + boolean equals(Object other) + int hashCode() } class ValueHolder{ - Object value - String type - String name - Object source - boolean converted - Object convertedValue + void setValue(@Nullable Object value) + Object getValue() + void setType(@Nullable String type) + String getType() + void setName(@Nullable String name) + String getName() + void setSource(@Nullable Object source) + Object getSource() + synchronized boolean isConverted() + synchronized void setConvertedValue(@Nullable Object value) + synchronized Object getConvertedValue() - boolean contentEquals(ValueHolder other) - int contentHashCode() + ValueHolder copy() } class MutablePropertyValues{ -{final} List<PropertyValue> propertyValueList - Set<String> processedProperties - {volatile} boolean converted + List<PropertyValue> getPropertyValueList() + int size() + MutablePropertyValues addPropertyValues(@Nullable PropertyValues other) + MutablePropertyValues addPropertyValues(@Nullable Map<?, ?> other) + MutablePropertyValues addPropertyValue(PropertyValue pv) + void addPropertyValue(String propertyName, Object propertyValue) + MutablePropertyValues add(String propertyName, @Nullable Object propertyValue) + void setPropertyValueAt(PropertyValue pv, int i) + PropertyValue mergeIfRequired(PropertyValue newPv, PropertyValue currentPv) + void removePropertyValue(PropertyValue pv) + void removePropertyValue(String propertyName) + Iterator<PropertyValue> iterator() + Spliterator<PropertyValue> spliterator() + Stream<PropertyValue> stream() + PropertyValue[] getPropertyValues() + PropertyValue getPropertyValue(String propertyName) + Object get(String propertyName) + PropertyValues changesSince(PropertyValues old) + boolean contains(String propertyName) + boolean isEmpty() + void registerProcessedProperty(String propertyName) + void clearProcessedProperty(String propertyName) + void setConverted() + boolean isConverted() + boolean equals(Object other) + int hashCode() + String toString() } class PropertyValue{ -{final} String name -{final} Object value - boolean optional - boolean converted - Object convertedValue - {volatile} Boolean conversionNecessary - {transient,volatile} Object resolvedTokens + String getName() + Object getValue() } class MethodOverrides{ -{final} Set<MethodOverride> overrides -{volatile} boolean modified + void addOverrides(@Nullable MethodOverrides other) + void addOverride(MethodOverride override) + Set<MethodOverride> getOverrides() + boolean isEmpty() + MethodOverride getOverride(Method method) + boolean equals(Object other) + int hashCode() } interface AnnotationMetadata{ Set<String> getAnnotationTypes() Set<String> getMetaAnnotationTypes(String annotationName) boolean hasAnnotation(String annotationName) boolean hasMetaAnnotation(String metaAnnotationName) boolean hasAnnotatedMethods(String annotationName) Set<MethodMetadata> getAnnotatedMethods(String annotationName) } interface ClassMetadata{ String getClassName() boolean isInterface() boolean isAnnotation() boolean isAbstract() boolean isConcrete() boolean isFinal() boolean isIndependent() boolean hasEnclosingClass() String getEnclosingClassName() boolean hasSuperClass() String getSuperClassName() String[] getInterfaceNames() String[] getMemberClassNames() } interface AnnotatedTypeMetadata{ boolean isAnnotated(String annotationName) Map<String, Object> getAnnotationAttributes(String annotationName) Map<String, Object> getAnnotationAttributes(String annotationName, boolean classValuesAsString) MultiValueMap<String, Object> getAllAnnotationAttributes(String annotationName) MultiValueMap<String, Object> getAllAnnotationAttributes(String annotationName, boolean classValuesAsString } interface ComponentDefinition{ String getName() String getDescription() BeanDefinition[] getBeanDefinitions() BeanDefinition[] getInnerBeanDefinitions() BeanReference[] getBeanReferences() } interface BeanReference{ String getBeanName() } interface AnnotatedBeanDefinition{ AnnotationMetadata getMetadata() MethodMetadata getFactoryMethodMetadata() } interface MethodMetadata{ String getMethodName() String getDeclaringClassName() String getReturnTypeName() boolean isAbstract() boolean isStatic() boolean isFinal() boolean isOverridable() } interface MultiValueMap<K,V>{ V getFirst(K key) void add(K key, @Nullable V value) void addAll(K key, List<? extends V> values) void addAll(MultiValueMap<K, V> values) void set(K key, @Nullable V value) void setAll(Map<K, V> values) Map<K, V> toSingleValueMap() } interface PropertyValues{ Iterator<PropertyValue> iterator() Spliterator<PropertyValue> spliterator() Stream<PropertyValue> stream() PropertyValue[] getPropertyValues() PropertyValue getPropertyValue(String propertyName) PropertyValues changesSince(PropertyValues old) boolean contains(String propertyName) boolean isEmpty() } abstract class AttributeAccessorSupport{ -{final} Map<String, Object> attributes + void setAttribute(String name, @Nullable Object value) + Object getAttribute(String name) + Object removeAttribute(String name) + boolean hasAttribute(String name) + String[] attributeNames() void copyAttributesFrom(AttributeAccessor source) boolean equals(Object other) int hashCode() } interface BeanDefinition{ String SCOPE_SINGLETON String SCOPE_PROTOTYPE int ROLE_APPLICATION int ROLE_SUPPORT int ROLE_INFRASTRUCTURE void setParentName(@Nullable String parentName) String getParentName() void setBeanClassName(@Nullable String beanClassName) String getBeanClassName() void setScope(@Nullable String scope) String getScope() void setLazyInit(boolean lazyInit) boolean isLazyInit() void setDependsOn(@Nullable String... dependsOn String[] getDependsOn() void setAutowireCandidate(boolean autowireCandidate) boolean isAutowireCandidate() void setPrimary(boolean primary) boolean isPrimary() void setFactoryBeanName(@Nullable String factoryBeanName) String getFactoryBeanName() void setFactoryMethodName(@Nullable String factoryMethodName) String getFactoryMethodName() ConstructorArgumentValues getConstructorArgumentValues() boolean hasConstructorArgumentValues() MutablePropertyValues getPropertyValues() boolean hasPropertyValues() void setInitMethodName(@Nullable String initMethodName) String getInitMethodName() void setDestroyMethodName(@Nullable String destroyMethodName) String getDestroyMethodName() void setRole(int role) int getRole() void setDescription(@Nullable String description) String getDescription() // Read-only attributes boolean isSingleton() boolean isPrototype() boolean isAbstract() String getResourceDescription() BeanDefinition getOriginatingBeanDefinition() } interface AttributeAccessor{ void setAttribute(String name, @Nullable Object value) Object getAttribute(String name) Object removeAttribute(String name) boolean hasAttribute(String name) String[] attributeNames() } interface BeanMetadataElement{ Object getSource(); } RootBeanDefinition --|>AbstractBeanDefinition AbstractBeanDefinition --|>BeanMetadataAttributeAccessor AbstractBeanDefinition ..|>BeanDefinition BeanMetadataAttributeAccessor --|>AttributeAccessorSupport BeanMetadataAttributeAccessor ..|>BeanMetadataElement BeanDefinition --|>AttributeAccessor BeanDefinition --|>BeanMetadataElement ScannedGenericBeanDefinition ..|>AnnotatedBeanDefinition ScannedGenericBeanDefinition --|>GenericBeanDefinition AnnotatedBeanDefinition --|>BeanDefinition GenericBeanDefinition --|>AbstractBeanDefinition AttributeAccessorSupport ..|>AttributeAccessorSupport AutowireCandidateQualifier --|>BeanMetadataAttributeAccessor BeanDefinitionHolder --|>BeanMetadataElement BeanComponentDefinition --|> BeanDefinitionHolder BeanComponentDefinition --|> ComponentDefinition BeanReference --|> BeanMetadataElement AnnotationMetadata --|>ClassMetadata AnnotationMetadata --|>AnnotatedTypeMetadata AnnotatedGenericBeanDefinition --|>GenericBeanDefinition AnnotatedGenericBeanDefinition ..|>AnnotatedBeanDefinition MethodMetadata --|>AnnotatedTypeMetadata MultiValueMap --|>Map BeanMetadataAttributeAccessor <--o BeanMetadataAttribute AbstractBeanDefinition <..o AutowireCandidateQualifier AbstractBeanDefinition <..o ConstructorArgumentValues AbstractBeanDefinition <..o MutablePropertyValues AbstractBeanDefinition <..o MethodOverrides AbstractBeanDefinition <..o Resource ConstructorArgumentValues<--o ValueHolder MutablePropertyValues <--o PropertyValues MutablePropertyValues <--o PropertyValue RootBeanDefinition <--o BeanDefinitionHolder RootBeanDefinition <--o ResolvableType ComponentDefinition <--o BeanDefinition ComponentDefinition <--o BeanReference ScannedGenericBeanDefinition <--o AnnotationMetadata AnnotatedTypeMetadata <..o MultiValueMap AnnotatedGenericBeanDefinition <--o AnnotationMetadata AnnotatedGenericBeanDefinition <--o MethodMetadata AnnotatedGenericBeanDefinition <--o StandardAnnotationMetadata @enduml
f9870e3678912cf60fd3720cc0b2547e00bf11c4
4291ef524e205e9b7c7c479052e1fe40078a1f60
/doc/part_one/domain-commands.puml
39e6f86b89a9ee38887655331371027ba0c0df1c
[ "BSD-2-Clause" ]
permissive
nymann/portfolio-assignment
4136ab71b2bac64d6a4474c76b16ee5e57f9d21d
abb6d840d6d9ae59b90e8417f140c2314b1e7a27
refs/heads/master
2023-04-27T00:19:10.391313
2021-05-21T21:02:46
2021-05-21T21:02:46
367,152,436
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,909
puml
@startuml skinparam roundCorner 10 skinparam shadowing false skinparam classFontName Lato skinparam classFontSize 16 skinparam defaultFontName Source Code Pro skinparam defaultFontSize 14 skinparam ClassAttributeFontStyle normal skinparam ClassBackgroundColor white skinparam ClassBorderColor black skinparam ClassBorderThickness 1 skinparam ArrowColor black skinparam linetype polyline interface dev.nymann.domain.commands.ICommandFactory { + ICommand makeFromString(String,ISensorService) } class dev.nymann.domain.commands.AddSensorCommand { - ISensorService sensorService - ISensorFactory sensorFactory + String execute() + void validateArguments() } class dev.nymann.domain.commands.CommandFactory { + ICommand makeFromString(String,ISensorService) } class dev.nymann.domain.commands.ReadSensorCommand { - ISensorService sensorService + String execute() + void validateArguments() } interface dev.nymann.domain.commands.ICommand { ~ String execute() ~ void validateArguments() } class dev.nymann.domain.commands.ListSensorsCommand { - ISensorService sensorService + String execute() + void validateArguments() } abstract class dev.nymann.domain.commands.Command { # List<String> args + {abstract}String execute() + {abstract}void validateArguments() } class dev.nymann.domain.commands.RemoveSensorCommand { - ISensorService sensorService + String execute() + void validateArguments() } dev.nymann.domain.commands.Command <|-- dev.nymann.domain.commands.AddSensorCommand dev.nymann.domain.commands.ICommandFactory <|.. dev.nymann.domain.commands.CommandFactory dev.nymann.domain.commands.Command <|-- dev.nymann.domain.commands.ReadSensorCommand dev.nymann.domain.commands.Command <|-- dev.nymann.domain.commands.ListSensorsCommand dev.nymann.domain.commands.ICommand <|.. dev.nymann.domain.commands.Command dev.nymann.domain.commands.Command <|-- dev.nymann.domain.commands.RemoveSensorCommand @enduml
4c385c129c3611703e70bbb154f9cd8a71575d13
5c444423b1f6f7b7699611395f7c5e5e5b0477ee
/DiveIntoDesignPatterns/uml/page022_aggregate_1.plantuml
bdb8692edc03bf5c0f77f781d9eb3306c0bd039f
[ "MIT" ]
permissive
zhengtong0898/books
f7951cbb949ba2cc4ff6c3015c031f54c127d490
65ca7d7cfaf3d07f910a0ba324e00017022c68ee
refs/heads/master
2021-06-21T14:40:34.883570
2020-07-16T02:56:34
2020-07-16T02:56:34
254,500,102
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,155
plantuml
@startuml "聚合: 空心菱形+实线+箭头: 一对一" class Professor {} class Assistant {} class Department { - Professor & professor - Assistant & assistant + Department(Professor & p, Assistant & ast): professor(p), assistant(ast) {} } note "IsPartOf: \n\ Professor is part of Department. \n\ 教授和院系(部门)是一个隶属层级关系, \n\ 所以教授是院系的一部分.\ " as n1 note "LifeCycle: \n\ 类(Professor)的聚合对象(student)的实例化由外部完成.\n\ 类(Professor)的退出并不会销毁关联对象(student)实例.\ " as n2 note "Uniderection:\n\ 聚合仅支持单向关联. \ " as n3 note "Aggregation(聚合)与Association(关联)的区别: \n\ 1. 聚合是 part-whole 关系, 而关联不是. \n\ 2. 聚合仅 单向 关联, 而关联除了单向还支持双向(甚至还有多对多). \n\ 3. 聚合可以由多个part, 而关联只能由一个关联对象. \ " as n4 Department .up. n3 Department .up. n2 Department .up. n1 Department .down. n4 Department "one" o-left-> "one" Professor: " 聚合 " Department "one" o-right-> "one" Assistant: " 聚合 " @enduml
790fec04770cd5fbd86bb6c450d6f38b6cb5ac59
7d9818d68ff4798882c532f264f365cda95e32da
/BuilderPattern/UML/ClassDiagram.puml
7a7697c7402110296f3359071c1ec1852c938d82
[ "MIT" ]
permissive
Jimmy016360/DesignPatternHomework
0754153312dee869aae687886a185c78e8fdf9b6
43948c80f0dab223aa076c4b119718bff29f4795
refs/heads/master
2021-09-09T03:51:14.847426
2018-03-13T17:18:18
2018-03-13T17:18:18
114,652,486
0
0
null
null
null
null
UTF-8
PlantUML
false
false
525
puml
@startuml Builder pattern interface IComputerStore { +CustomBuild() } abstract class ComputerStore { #CustomComputer {abstract} #AddCup() {abstract} #AddMotherBoard() {abstract} #AddPower() {abstract} #AddMemory() {abstract} #AddHardDisk() {abstract} #AddVedioCard() } class SenaoComputerStore class OanesComputerStore class CustomComputer IComputerStore <|- ComputerStore ComputerStore <|.. SenaoComputerStore ComputerStore <|.. OanesComputerStore ComputerStore *-> CustomComputer @enduml
496282786a44acfa8e10c6c3873e803e2890a7c9
3f5334019e291af01a0068af7e265d3682cd6ced
/docs/examples/animals.puml
e0cff254f12d997745ccab52f75c5f6204435a52
[ "Apache-2.0" ]
permissive
arnoldmd181/ScalaUml
53df85de2435c0f829b946a9a577573e1cacf1ef
c919e1daec7544ef37ddfa4102d3efe25ee05dab
refs/heads/master
2023-08-11T07:18:41.400180
2021-09-20T18:51:02
2021-09-20T18:51:02
408,312,092
0
0
null
null
null
null
UTF-8
PlantUML
false
false
531
puml
@startuml need_to_find_id package animals::extension{ class animals::extension.Olm << caseclass >>{ << ctor >>Olm (location : String) -- <<scalaclass>> -- isSealed } } package animals{ class animals.Wombat << caseclass >>{ << ctor >>Wombat (location : String) -- <<scalaclass>> -- isSealed } abstract class animals.Animal << trait >>{ location : String } } animals.Animal <|-- animals.Wombat animals.Animal <|-- animals::extension.Olm @enduml
6fd43e66c09709c784d804c6e9172a6cf0402dac
eb79b5e41b205bca757ecb47616d107d0c78e13d
/design_patterns/creational/factories/5. factory_method_pattern_general.puml
7a826e72fce7de8ac22f12d4887b039173a76f59
[]
no_license
kevinwong1983/exploration
6023bb1c903c316794b132b1bff4ef817fe55f5d
20029c025c7ae44e0dba535a6ec47b065b19f65b
refs/heads/master
2022-06-09T09:48:26.087800
2022-06-05T22:29:47
2022-06-05T22:29:47
207,248,735
0
0
null
null
null
null
UTF-8
PlantUML
false
false
718
puml
@startuml skinparam monochrome true interface Factory { createProduct() operate() } note left of Factory Factory Method defer instantiation to subclasses. Factory is defining operate method, but leaving the createProduct method to be implemented by the subclasses. end note class FactoryOne { createProduct() } class FactoryTwo { createProduct() } Factory <|.. FactoryOne Factory <|.. FactoryTwo interface Product { MethodA() MethodB() } class ConcreteProductOne { MethodA() MethodB() } class ConcreteProductTwo { MethodA() MethodB() } Product <|.. ConcreteProductOne Product <|.. ConcreteProductTwo class Client Client --* Factory Client --* Product @enduml
3cb91452cfbefaa412a38e7c2facbeab618d5f4f
81a7a641e1ce74318ddfb64ecdc48100e49e621f
/designdoc/class_diagram.puml
56c0cc4f57257961970c30671e26d712f6f595fc
[ "MIT" ]
permissive
MSUSEL/msusel-pattern-generator
2ba8792de046dcb4e442f767d7fee8ef5f3d465c
0f004ebf9f0746d42a2692d40b7ca7403dd236a7
refs/heads/master
2023-05-25T23:52:03.550424
2021-11-04T09:25:03
2021-11-04T09:25:03
139,508,629
0
1
NOASSERTION
2023-05-23T20:11:37
2018-07-03T00:30:14
Groovy
UTF-8
PlantUML
false
false
1,428
puml
@startuml abstract class AbstractFileGenerator { + generateFiles() } abstract class AbstractSrcMLBuilder { + construct(tree:CodeTree) } abstract class AbstractDirStructGenerator { + generateDirStruct() } abstract class AbstractPatternGenerator { + generate(CodeTree tree) } abstract class AbstractLanguagePlugin { } interface LanguagePlugin LanguagePlugin <|.. AbstractLanguagePlugin AbstractLanguagePlugin <|-- JavaPlugin AbstractLanguagePlugin <|-- RubyPlugin AbstractLanguagePlugin <|-- CSharpPlugin AbstractLanguagePlugin <|-- CppPlugin AbstractLanguagePlugin --> AbstractDirStructGenerator AbstractLanguagePlugin --> AbstractFileGenerator AbstractLanguagePlugin --> AbstractPatternGenerator AbstractPatternGenerator <|-- JavaPatternGenerator AbstractPatternGenerator <|-- RubyPatternGenerator AbstractPatternGenerator <|-- CSharpPatternGenerator AbstractPatternGenerator --> AbstractSrcMLBuilder AbstractSrcMLBuilder <|-- JavaSrcMLBuilder AbstractSrcMLBuilder <|-- CSharpSrcMLBuilder AbstractFileGenerator <|-- JavaFileGenerator AbstractFileGenerator <|-- RubyFileGenerator AbstractFileGenerator <|-- CSharpFileGenerator AbstractDirStructGenerator <|-- JavaDirStructGenerator AbstractDirStructGenerator <|-- RubyDirStructGenerator AbstractDirStructGenerator <|-- CSharpDirStructGenerator AbstractLanguagePlugin --> LanguageDescriptor Generator *--> AbstractLanguagePlugin Generator --> GeneratorConfig @enduml
f644c253305e55f610a3b3a14226a0c5d0c920b4
4cc053c0710a3067cc6f02c3a33b89200359818d
/diagrams/singleton.puml
076b11889ed7ce4a0f37a6964c67cb8499cf6780
[ "MIT" ]
permissive
vinogradnick/Pattern_AB_Factory_Singleton
02ff336273b4d9cda323648a5dc7117118515c73
a07f96bf53fa3c8da37fb102e69775db977bb1c4
refs/heads/master
2020-12-15T14:48:42.513283
2020-01-21T05:23:52
2020-01-21T05:23:52
235,143,180
0
0
null
null
null
null
UTF-8
PlantUML
false
false
246
puml
```plantuml @startuml singleton class Instance{ +platformItems List<Button> } class Singleton{ +instance Instance GetInstance() Instance } Singleton <|-- Singleton Singleton ..> Instance @enduml ```
315bea4797e06c9ea449817a90e22eda63896cb1
d59ab1487d37825fe364dcea11f009a1c40a74e0
/docs/cars-step-08-class-diagram.puml
2bc6ac830627e7cf12230a43e59d9cff69432f96
[]
no_license
JordanSOA/renault-digital-2020-projet
79cca3a56685a1fe2f91a23a24017f402d3c4865
4ac8bc440a67ae6c11c1be82658c5cbfd2e42a37
refs/heads/master
2021-04-01T09:46:59.803815
2020-04-28T10:56:14
2020-04-28T10:56:14
248,179,272
0
0
null
2020-03-18T08:43:23
2020-03-18T08:43:22
null
UTF-8
PlantUML
false
false
412
puml
@startuml title Cars - Step 08 - Owner end title skinparam class { BackgroundColor White ArrowColor DarkSlateGray BorderColor DarkSlateGray } class Car { + id : int + brand : String + model : String } class Owner { + id : int + name : String } class Dealership { + id : int + name : String + address : String } Car *- "1" Owner Car "*" *-* "*" Dealership : sells @enduml
7424e7ada1af9ec7f46b03a753a90545ee4c2233
f1043bbb871f3e3a5dd14feae76075162bf62678
/diagramas/clases/std_file.plantuml
34eb96de63ed2144a8f48dcf2ca437c29bec0250
[ "MIT" ]
permissive
diegosanchez/invap-modulo-uml
cd9e7329f3a4ff6bfbee36249ac936b50e3ed2f8
7ba9b07cde50a655df58de80801b48d8b47f8a06
refs/heads/main
2023-07-17T06:16:50.063408
2021-08-25T12:43:12
2021-08-25T12:43:12
396,763,438
1
2
null
null
null
null
UTF-8
PlantUML
false
false
130
plantuml
@startuml class basic_ifstream { basic_ifstream() "~basic_ifstream()" open() close() } @enduml
b8fdd894a934e561f18ec7fc558462147db28ab2
54ebd9eb2ddadc17b215617d96fac1f93f4acfef
/creational/1-simple-factory/2-simple-factory-furniture-complete.puml
503c541cd45862723ecf65a117c11d53dc22def1
[]
no_license
cesarkohl/design-patterns
acb42191662c141f064d9c90426dfd4491d43dfe
991f83d0076b0a69e9d6b7c1163cf49fde3bfcbf
refs/heads/main
2023-06-11T07:16:18.484116
2023-05-28T14:41:01
2023-05-28T14:41:01
199,520,479
4
0
null
null
null
null
UTF-8
PlantUML
false
false
308
puml
@startuml note as n2 const creator = new Creator(); const chair = creator.createChair("A"); end note class Creator { + create(type: string): Chair {}; } interface Chair {} class ChairA implements Chair {} class ChairB implements Chair {} Creator <-- Chair Creator o-- ChairA Creator o-- ChairB @enduml
821716703b5f86d77975655eac811fada8b3b56c
52ba427f53f8af305989c471eac3f6658587499d
/src/main/resources/设计模式23种类型/行为型模式 Behavioral Pattern/备忘录模式.puml
d870315bab8b5c14065e79eb3bb2445529961640
[]
no_license
HappyFreeAngel/springcloud-gateway-dynamic-route
444114df5f67fe63a960e27bf40c794380bbbcee
364d99cbdc6ba09ed7b07ce15aed96b23d7f1827
refs/heads/master
2020-07-28T01:13:04.293957
2019-11-05T15:44:04
2019-11-05T15:44:04
209,264,996
0
0
null
null
null
null
UTF-8
PlantUML
false
false
563
puml
@startuml skinparam classAttributeIconSize 0 package "class Memento(备忘录模式 Memento Pattern)" #DDDDDD { class Originator { +restore(Memento) +createMemento():Memento } note right: 负责创建备忘录 class Memento { -mState +setState(int) +getState():int } note right: 备忘录 class Caretaker { -mMemento:Memento +restoreMemento():Memento +storeMemento(Memento):void } note right:负责存储备忘录 Originator ..> Memento Memento --o Caretaker } @enduml
b7b4a0a186d2378ac27707d6d2e0ea93c6dbc1e0
1e3dba3f02025ce0e7ff066565f56eeb516bcea0
/docs/SprintD/US_2/UC2_CD.puml
723728c964fa85bfe01d3a7f79526d9414888a7d
[]
no_license
RuiRioPina/ManyLabs
1e3f413a08ef6ed2ad35b0326f992fef2808a4c7
4ef550952a81c0ce24b47dd85b3062e0c32df05b
refs/heads/master
2023-06-10T21:37:15.884362
2021-06-20T21:44:38
2021-06-20T21:44:38
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
482
puml
@startuml skinparam classAttributeIconSize 0 class Company { -String designation } class Client { -String name -String address -String phoneNumber -String eMail -String sex -String cnn -String nhsNumber -String birthDate -String tin } class UpdateClientDataController { +updateInfo() } class UpdateClientDataScene { } UpdateClientDataScene ..> UpdateClientDataController UpdateClientDataController ..> Company Company "1" --> "1..*" Client: has @enduml
d915e68c80d727294f685c2350b16328caa59c88
c2ec5d73b5a79e63f3dfff38b09f277999c788f8
/docs/uml/summary.puml
285b7a0224a815620560542d2275eec1b441f6c8
[ "CC0-1.0", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain-disclaimer" ]
permissive
dblodgett-usgs/hygeo
5f25732f80369d1bf78c18550bebed2554cd54ce
883b65fcf1f2d5133bbd4ae0431eefc0f2ac6aa3
refs/heads/master
2021-04-07T04:04:13.916441
2020-12-16T15:25:27
2020-12-16T15:25:27
248,643,831
5
1
null
null
null
null
UTF-8
PlantUML
false
false
917
puml
@startuml HY_CatchmentRealization <|-- HY_FlowPath HY_CatchmentRealization <|-- HY_CatchmentArea class HY_FlowPath { + flowpathFormulation } class HY_CatchmentArea { + catchmentAreaFormulation } class HY_IndirectPosition { + distanceExpression + distanceDescription __ <b>Constraints</b> {point-referent} {measure-along-flowpath} } HY_IndirectPosition --> "1" HY_FlowPath HY_IndirectPosition <--> HY_HydroLocation HY_IndirectPosition --> HY_HydroLocation HY_Waterbody --> HY_HydroLocation class HY_HydroLocation { + shape + hydroLocationType } HY_HydroLocation <--> HY_HydroNexus class HY_Waterbody { __ <b>Constraints</b> {outlet-at-landmark} } HY_Catchment <--> HY_CatchmentRealization HY_Catchment <--> HY_HydroNexus HY_Catchment <--> HY_HydroNexus HY_HydroNetwork --|> HY_CatchmentRealization HY_HydroNetwork --> "0..*" HY_FlowPath HY_HydroNetwork --> "0..*" HY_CatchmentArea @enduml
0cef6f919f17dbc2c15fedcff84085c84aeeb316
c242ddc8a644e8285ef6aa7f743b9afa68c02db3
/src/main/java/com/example/progetto/progetto.plantuml
69f54f281b7e8a18bce797c0e1a723bc1c72685a
[]
no_license
Luca-Dambro/progetto_programmazione_ad_oggetti_java
0d9e04ee2cb908e2f425beb26fdf13b1862fba0c
e81630f7279f37f1a9844d0ff8d03b05b62fe058
refs/heads/master
2022-01-18T15:04:44.602780
2019-07-19T16:32:33
2019-07-19T16:32:33
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
526
plantuml
@startuml title __PROGETTO's Class Diagram__\n namespace com.example.progetto { class com.example.progetto.GetCSVfromJSON { {static} + fileName : String - link : String + getlink() ~ download() ~ readUrlFromJSON() - FindCsvlink() {static} - readAll() } } namespace com.example.progetto { class com.example.progetto.ProgettoApplication { {static} + main() } } right footer endfooter @enduml
6612bb8808b8f25245e6e31fa7e383503778c41b
569d026106230836e9cc366b71d8b6b5891801ad
/listManager.puml
007033c6123bd1a526b81d8a8f7f220670e3eb65
[]
no_license
raymepersad/persad-cop3330-assignment_4
c1f4d32bbac2cd548f572c55c626c8371f8dc61b
c91e7617a641ad4e010efea2d43040b02e0f4fb1
refs/heads/master
2023-06-22T10:58:49.922960
2021-07-17T03:26:59
2021-07-17T03:26:59
383,329,542
0
1
null
null
null
null
UTF-8
PlantUML
false
false
652
puml
/* * UCF COP3330 Summer 2021 Assignment 4 Solution * Copyright 2021 RAYME PERSAD */ @startuml 'https://plantuml.com/sequence-diagram class todoList { todoList(topic:string) display() assignTask -> (taskName:String, employee:string) assignDeadline ->(taskName:string, dueDate:Date) createTask() ->assignTask markAsDone(taskName:String) removeTask((taskName:String) renameTask(oldName:String, newName:String) } class task { name:String deadLine: Date employee:String Task(name:String) setName(name:String) setDeadline(date:String) setEmployee(name:String) display() } @enduml
b997b96d089f87157c42752ab60e93a7406e0e29
5311c3ad523918b01c52d8f00a9b96e38b24db9e
/bot/src/main/java/LevelModule/uml/LevelModule.plantuml
1776fb99152af5930e2eaf3f54e1e9c848dc7753
[]
no_license
twgust/DiscordBot
08bfa99b0e9c3a1baf15b3a04782e518a41f5da9
895f8b56dfb7b2c6776c86a88d401cecc2af1d8a
refs/heads/master
2022-06-04T22:32:34.518640
2020-12-20T19:49:56
2020-12-20T19:49:56
246,451,508
1
0
null
2022-05-20T21:32:36
2020-03-11T02:02:05
Java
UTF-8
PlantUML
false
false
2,595
plantuml
@startuml title __LEVELMODULE's Class Diagram__\n namespace LevelModule { class LevelModule.AddLevelRoleCommand { - perm : Permission + execute() + getPerm() } } namespace LevelModule { class LevelModule.GuildMap { - guildMap : Map<Guild, MemberMap> + addLevelRole() + checkForRoleLevel() + containsKey() + containsMember() + get() + getUserLevel() + put() } } namespace LevelModule { class LevelModule.LevelController { {static} - filename : String {static} - guildMap : GuildMap {static} - levelDB : LevelDBConnector {static} + addExp() {static} + addGuild() {static} + addLevelRole() {static} + checkForRoleLevel() {static} + checkMember() {static} + getUserInfo() {static} + writeToDisk() } } namespace LevelModule { class LevelModule.LevelDBConnector { - conn : Connection + LevelDBConnector() + addUserExp() + newGuildTable() - DBUserExist() - addExpToDBUser() - connect() - createDBTable() - createDBUser() } } namespace LevelModule { class LevelModule.LevelListener { + LevelListener() + onGuildJoin() + onGuildMessageReceived() } } namespace LevelModule { class LevelModule.MemberMap { - levelRoleMap : Map<Integer, Role> - memberMap : Map<Member, UserLevel> + containsKey() + containsLevelRoleKey() + get() + put() + putLevelRole() + setLevelRole() } } namespace LevelModule { class LevelModule.ProfileCommand { + execute() } } namespace LevelModule { class LevelModule.UserLevel { - currentExp : int - level : int - member : Member - nextLevelExp : int + UserLevel() + addExp() + getCurrentExp() + getLevel() + getMember() + getNextLevelExp() - levelUp() } } LevelModule.AddLevelRoleCommand -up-|> Commands.Command LevelModule.LevelListener -up-|> net.dv8tion.jda.api.hooks.ListenerAdapter LevelModule.LevelListener o-- EconomyModule.EconomyController : economyController LevelModule.ProfileCommand -up-|> Commands.Command 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
0edce1fd337b8bcb197fc6943cdf4faf47789ce2
20478b6c19855983adf0781338d1a30e98101a7b
/diagramas/Factory_g.iuml
83ea00dcb0e65ef5e006ec16c9d6749084121a5c
[]
no_license
LEON12699/Patrones_diseno
f9391a3071ae76b6c70de0610c70804e9ab0cbdb
cf0e97ba3f7efe6101dc575b8508faedbf3d75b9
refs/heads/master
2023-01-02T13:49:08.209731
2020-10-26T03:40:25
2020-10-26T03:40:25
305,895,825
0
0
null
null
null
null
UTF-8
PlantUML
false
false
350
iuml
@startuml Factory structure skinparam class { BackgroundColor lightGreen BorderColor black } interface Product class Factory{ + {abstract} factoryMethod() + operation() } class ConcreteFactory{ + {abstract} factoryMethod() } Product <|-- ConcreteProduct ConcreteFactory <- ConcreteProduct Factory <|-- ConcreteFactory @enduml
c8a74d83b4f235355db7c7667fb0076ec9fad0ae
3150c7ff97d773754f72dabc513854e2d4edbf04
/P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test/java/spec/concordion/common/command/execute/execute.plantuml
1e845a25cd1e9a5205bb42f0a0d7e80d79f07857
[ "WTFPL", "Apache-2.0" ]
permissive
leRoderic/DS18
c8aa97b9d376788961855d6d75996990b291bfde
0800755c58f33572e04e7ce828770d19e7334745
refs/heads/master
2020-03-29T05:14:14.505578
2019-11-07T18:01:37
2019-11-07T18:01:37
149,574,113
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,272
plantuml
@startuml title __EXECUTE's Class Diagram__\n package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class AccessToLinkHrefTest { + fragmentSucceeds() + myMethod() } } } } package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class ContinueAfterExceptionsFixture { - myMethodWasCalled : boolean + myMethodWasCalledProcessing() + myExceptionThrower() + myMethod() } } } } package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class ExecuteTest { - myMethodWasCalled : boolean - argument : String + myMethodWasCalledProcessing() + getArgument() + myMethod() + myMethod() + myMethod() + myMethod() } } } } package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class ExecutingListTest { - treeEntries : List<MultiValueResult> + parseNode() + getNodes() + process() } } } } package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class ExecutingTablesTest { + process() + generateUsername() } } } } package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class Result { + successCount : long + failureCount : long + exceptionCount : long + lastExpectedValue : String + lastActualValue : Object } } } } package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class FailFastFixture { - myMethodWasCalled : boolean + myMethodWasCalledProcessing() + myExceptionThrower() + myMethod() } } } } package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class FailFastOnSpecificExceptionsFixture { - myMethodWasCalled : boolean + myMethodWasCalledProcessing() + myTimeoutExceptionThrower() + myFileNotFoundExceptionThrower() + myMethod() } } } } package spec.concordion { package spec.concordion.common.command { package spec.concordion.common.command.execute { class FailFastPassthroughFixture { } } } } ExecutingTablesTest +-down- Result FailFastPassthroughFixture -up-|> RunTotalsFixture 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
c917400c5bf380cd20fd2613bdfa87fdca9e951c
d6c7879f1468c4e1af4125fdbbdbe270024affc2
/doc/Klassendiagramm.puml
4aa2080c69aa4f0ba4e02db32828e6a8fb154946
[]
no_license
ponchofiesta/supertetris
c8134e6649f76e10973ec19533a073de067f2d6c
56b8063511141eeae048aae7fd91e2ee87cbaf94
refs/heads/master
2020-06-24T08:14:20.567372
2017-07-11T19:02:50
2017-07-11T19:02:50
96,926,800
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,202
puml
@startuml skinparam classAttributeIconSize 0 package network { interface Actions class ClientInterface class GameServer class PlayerClient class PlayerOnServer class MultiBoardViewController class MultiGameController class MultiplayerGame class JoinViewController class CreateViewController class OpponentBoard } package game { class Board class BoardListener class BoardPane class BoardViewController class GameController class GameoverViewController class Scores class StartViewController class Stone class StoneType class Stopwatch class MusicPlayer } SupertetrisApp ..> StartViewController : starts SupertetrisApp *-- MusicPlayer StartViewController ..> BoardViewController : starts StartViewController ..> JoinViewController : starts StartViewController ..> CreateViewController : starts BoardViewController "1" *--* "1" GameController GameController "1" *-- "1" Board GameController "1" *-- "1" Stopwatch GameController "1" *-- "1" Scores BoardListener <|-- Board Board "1" *-- "*" Stone Board *-- BoardPane GameController <|-- MultiGameController GameController *-- BoardPane BoardViewController ..> GameoverViewController : starts MultiBoardViewController ..> GameoverViewController : starts MultiBoardViewController *-- MultiGameController MultiGameController *-- OpponentBoard MultiGameController *-- BoardPane MultiplayerGame ..> MultiBoardViewController : starts OpponentBoard *-- BoardPane 'ViewController <|-- StartViewController 'ViewController <|-- BoardViewController 'ViewController <|-- MultiBoardViewController 'ViewController <|-- JoinViewController 'ViewController <|-- CreateViewController 'ViewController <|-- GameoverViewController JoinViewController *-- PlayerClient JoinViewController *-- ClientInterface JoinViewController *-- MultiplayerGame MultiBoardViewController *-- MultiplayerGame MultiGameController *-- ClientInterface CreateViewController *-- PlayerClient CreateViewController *-- ClientInterface CreateViewController *-- MultiplayerGame CreateViewController *-- GameServer ClientInterface *-- PlayerClient ClientInterface ..> Actions : use GameServer ..> Actions : use PlayerClient ..> Actions : use GameServer *-- PlayerOnServer Stone +-- StoneType class SupertetrisApp { main() } abstract class ViewController { } note right: base class for all \n *ViewController classes abstract class BoardListener { onGameover() onRowDeleted(int count) onRowAdded() onNext(Stone stone) onDropped() onMove() onRotate() onSpawn(Stone stone) } class StartViewController { } class BoardViewController { gameController : GameController } class MultiBoardViewController { } class GameController { board : Board start() stop() } class OpponentBoard { } class ClientInterface { } interface Actions { } class Board { currentStone : Stone nextStone : Stone matrix : int[][] downTimer : Timeline } class Stone { matrix : int[][] stoneType : StoneType } class StoneType { color : Color matrix : int[][] } class Scores { level : int points : int lineCount : int } @enduml
fcb4648f58e9d921e9487451adc618c39ac1ae3b
61f77755f3ca65fa0a0dfbbdc51137e01ded03fc
/design_model/src/main/resources/行为型模式/解释器模式/解释器模式.puml
95f5fd9817a82d0994f37e9bf45c6ab2795fc338
[]
no_license
lyszhen3/myWeb
670e02a585ea3193f6c388b9cea37969a94792dc
c1543ec5f48d84e6c6481a95e54b84f04654b323
refs/heads/master
2023-07-11T02:29:33.530130
2019-02-25T01:39:29
2019-02-25T01:39:29
78,835,228
0
1
null
2022-12-16T04:38:41
2017-01-13T09:31:45
Java
UTF-8
PlantUML
false
false
526
puml
@startuml abstract class AbstractExpression<<抽象表达式>>{ +{abstract} interpret(Context ctx); } class TerminalExpression<<终结符表达式>>{ + interpret(Context ctx); } class NonterminalExpression<<非终结符表达式>>{ +interpret(Context ctx); } class Context<<环境类>>{ } TerminalExpression -up-|>AbstractExpression NonterminalExpression -up-|>AbstractExpression NonterminalExpression o-->AbstractExpression AbstractExpression .up.>Context Client .right.>Context Client .right.>AbstractExpression @enduml
cea2b95c418c9150b8b14ddac4ce40664f4a89bc
7d618c99d0bcee98fa0fdc58c1d8e1880c78d192
/Reeks2/Codering/UML/Class.puml
d7848b0f3c4b47fa0f656b88095ce561a5febfc1
[ "MIT" ]
permissive
LorenzoDeBie/SoftwareOntwikkelingII
f67cdea65841ae2220180134cac20fc98926ec2f
0f8a6fc6f89ca99b5339a16bd1da3f31182263b9
refs/heads/master
2020-08-05T23:44:58.411612
2019-12-05T14:38:19
2019-12-05T14:38:19
212,760,021
0
0
null
null
null
null
UTF-8
PlantUML
false
false
934
puml
@startuml skinparam classAttributeIconSize 0 class PlainText { + GecodeerdeString(codeString : string) : string } interface ICodeerbareString { + GecodeerdeString(codeString : string) : string } abstract Class Codering { # Codeerbarestring : ICodeerbareString + GecodeerdeString(codeString : string) : string } together { class Cijfer { + GecodeerdeString(codeString : string) : string } note bottom : Decorator class Wissel { + GecodeerdeString(codeString : string) : string } note bottom : Decorator class Blok { + GecodeerdeString(codeString : string) : string } note bottom : Decorator } ICodeerbareString <|.. PlainText ICodeerbareString <|.. Codering Codering <|-- Cijfer Codering <|-- Blok Codering <|-- Wissel Codering o-- ICodeerbareString note top of PlainText : Component note right of Codering::GecodeerdeString Roept GecodeerdeString() van zijn Component op end note @enduml
f4b029e108df357fe9f7ceb51306e5e76e2ca7a9
109a03dabbac924dddcfedea919961c56aa329f0
/pattern/res/factory.puml
c9900a1e4ddaa13a74bdc5bfa40ecc4ca5805bde
[ "Apache-2.0" ]
permissive
yumodev/yumodev_notes
464452cddb9f416a6939db9da42353c042e8d3fa
7f0815e96706c307764eaf431f0ba62ef42d80fa
refs/heads/master
2022-01-26T03:40:27.678175
2019-07-08T22:35:45
2019-07-08T22:35:45
83,787,775
5
1
null
null
null
null
UTF-8
PlantUML
false
false
367
puml
@startuml skinparam classAttributeIconSize 0 Product <|-- ConcreteProduct Factory <|-- ConcreteFactory ConcreteProduct <.. ConcreteFactory abstract class Product{ + abstract void mothod() } class ConcreteProduct{ + void mothod(); } abstract class Factory{ + abstract Product createProduct(); } class ConcreteFactory{ + Product createProduct(); } @enduml
34a45cc98e454ee35d515b8c0fd3a8f73431f697
99fd128e25c1aef4813198b9594d1366b6e23943
/Techs/software-craft/know-design/examples/用模板实现常见消息转发框架/ex_template_forward.puml
2e9b36881412bd88b7d11a038813a7a5b8a76a7c
[]
no_license
tcfh2016/knowledge-map
68a06e33f8b9da62f9260035123b9f86850316f0
23aff8bf83c07330f1d6422fc6d634d3ecf88da4
refs/heads/master
2023-08-24T19:14:58.838786
2023-08-13T12:04:37
2023-08-13T12:04:45
83,497,980
2
2
null
null
null
null
UTF-8
PlantUML
false
false
319
puml
@startuml class "Forward<T>" as Forward_t TemplateForward *-- Forward class TemplateForward { Forward_t forward + handle() } class Forward_t { + handle() - forwardToA() - forwardToB() - ...()... } Forward_t <|-- Forward_t_msgId1 Forward_t <|-- Forward_t_msgId2 Forward_t <|-- Forward_t_msgId3 @enduml
97c195091b4099cb9bcd1be27cb7960512eedc6f
d95be17446f2ed42ef13f50ecc3b3e9d04aedbe3
/doc/DelayQueue.puml
65cdc7bedeac97a9082cc8774400385c644b7f01
[]
no_license
vvvvvw/java_src
b47677652bed1f936c5fcd82cd97bef2d389d793
0ea96f2a5b5d423590247282c4082a3ae9021c80
refs/heads/master
2023-04-26T09:56:48.249462
2021-04-29T01:52:37
2021-04-29T01:52:37
332,239,109
0
0
null
null
null
null
UTF-8
PlantUML
false
false
304
puml
@startuml interface Comparable { public int compareTo(T o); } interface Delayed extends Comparable { long getDelay(TimeUnit unit); } class DelayQueue extends AbstractQueue implements BlockingQueue { } note left of DelayQueue:DelayQueue<E extends Delayed>,其中元素是Delayed的子类 @enduml
ea0a25ddbeba661b146fc6b643c9c1ba2b27f3bd
45bdcc7d5e2a88bc8934e070db799cc877e05df2
/doc/FilmHandler.puml
488437a5b0bae8c6ec00cd6e198c3319b77ca9a7
[]
no_license
jangrunicke/express_movies
c6718d8af7ef682d043b42b4611c4d50925ac6ce
f9ee81fcd4aae13731631bce4a6d199e6a2fa9f2
refs/heads/main
2023-01-07T04:52:41.589216
2020-05-07T12:57:34
2020-05-07T12:57:34
311,109,435
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,793
puml
@startuml Handler-Funktionen und Handler-Klasse !pragma useNewPackage skinparam ClassAttributeIconSize 0 skinparam componentStyle uml12 interface Promise<T> package express { package core { interface Express } class "express()" as express hide express circle interface Request interface Response } class App <<boundary>> { + readonl< app: Express } App ..> Express App ..> express package Film { package entity { interface FilmData <<entity>> { } } package service { class FilmService << control >> { } } package rest #DDDDDD { "Handler Functions" .right.> Request "Handler Functions" ..> Response "Handler Functions" ..> Promise "Handler Functions" ..> FilmHandler FilmHandler o--> "1" Filmservice : service FilmHandler .right.> Request FilmHandler ..> Response FilmHandler ..> FilmData FilmHandler ..> Promise class "Handler Functions" << boundary >> { + async findById(req: Request, res: Response): Promise<void> + async find(req: Request, res: Response): Promise<void> + async create(req: Request, res: Response): Promise<void> + async update(req: Request, res: Response): Promise<void> + async deleteFn(req: Request, res: Response): Promise<void> } hide "Handler Functions" << boundary >> circle class FilmHandler << control >> { + async findById(req: Request, res: Response): Promise<void> + async find(req: Request, res: Response): Promise<void> + async create(req: Request, res: Response): Promise<void> + async update(req: Request, res: Response): Promise<void> + async delete(req: Request, res: Response): Promise<void> } } } App ..> "Handler Functions" hide empty members footer (c) Jan Grunicke @enduml
c441cf1544204cda720836614db3ec6ab4c794fa
2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8
/CleanSheets/src/main/java/csheets/worklog/n1140780/sprint2/core07_01_class_diagram.puml
00f3723f83564d976420e9b2c240ca71c38cc48e
[]
no_license
ABCurado/University-Projects
7fb32b588f2c7fbe384ca947d25928b8d702d667
6c9475f5ef5604955bc21bb4f8b1d113a344d7ab
refs/heads/master
2021-01-12T05:25:21.614584
2017-01-03T15:29:00
2017-01-03T15:29:00
77,926,226
1
3
null
null
null
null
UTF-8
PlantUML
false
false
1,238
puml
@startuml doc-files/search_class_diagram.png class UIController { -extensions : uiExtension[] -- +UIController(Cleansheet app) +getExtensions() : uiExtension[] } class ExtensionManager { -instance : ExtensionManager -extensionMap : SortedMap<String,Extension> -- -ExtensionManager() +load(String ClassName) : SearchExtension +load(Extension _class) } class Extension{ } class SearchExtension{ -NAME : string -- +super(String name) +getUIExtension(UIController controller) : UIExtension } class UIExtension{ } class UISearch{ +UISearch(UIController controller); +getSideBar() : SearchPanel } class SearchPanel{ -uiController : UIController -searchController : SearchController -- +SearchPanel(UIController controller) } class SearchController{ -- *+searchWorkBook(Workbook workbook, String searchstring)* +SearchController(UIController controller); } Extension <|-- SearchExtension UIExtension <|-- UISearch UIController --> ExtensionManager : getExtensions(); ExtensionManager --> SearchExtension : load(Extension extension); SearchExtension --> UISearch : new(UIController controller); UISearch --> SearchPanel : new(UIController controller); SearchPanel --> SearchController : new(UIController); @enduml
6f06b93ecea09fb7a83c98aa052ebcae68eb0d23
c6c72378a47a34ea7f975cfddd0f6daba6b3b4d2
/ch02/excercise/2-3.puml
92478571754bcda595043eff5975b71dd71b8375
[]
no_license
yinm/uml-modeling-lesson
323b45e8bd926ac0b0f94a024bfd6f20a7872d17
0bc65be5ee9e957d3627cb9a5986a8ac9a17744c
refs/heads/master
2020-04-16T10:38:27.352993
2019-01-30T12:37:18
2019-01-30T12:37:18
165,511,559
0
0
null
null
null
null
UTF-8
PlantUML
false
false
148
puml
@startuml class アーティスト { 名前 } class 作品 { タイトル 制作年月日 } アーティスト "1..*"--"*" 作品 @enduml
82aad713b7522d38b0fc9a728090e4b4c7d9c7b8
9dacf3115d4da5b805449c0247658f7599d15073
/uml/packageFactories.puml
80f8991f6455b2fd5dc7586fe4bee7aa8ee20444
[]
no_license
xera51/gray-cop3330-assignment4part2
8e372853fae20c1ff6fcb63b0aa1d8c9ef4f3249
fed733e420982c3f7ae252b58c842eaeb70993f6
refs/heads/master
2023-06-26T12:53:40.665340
2021-07-12T04:34:23
2021-07-12T04:34:23
383,518,572
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,041
puml
@startuml package ucf.assignments.factories { class PopUps { + {static} getNewListPopUp(Stage owner) : Dialog<String> + {static} getListAlreadyExistsPopUp(Stage owner) : Dialog<ButtonType> + {static} getListCreationFailedPopUp(Stage owner) : Dialog<ButtonType> + {static} getSaveConfirmationPopUp(Stage owner) : Dialog<ButtonType> + {static} getInvalidJsonFilePopUp(Stage owner) : Dialog<ButtonType> + {static} getSaveFailedPopUp(Stage owner) : Dialog<ButtonType> + {static} getDeleteConfirmationPopUp(Stage owner) : Dialog<ButtonType> + {static} getDeleteFailedPopUp(Stage owner) : Dialog<ButtonType> + {static} getWrongFileTypePopUp(Stage owner) : Dialog<ButtonType> + {static} getAddToDoPopUp(Stage owner) : Dialog<ToDo> + {static} getHelpPopUp(Stage owner) : Dialog<Void> } class TaskCell { - controller : TaskCellController + TaskCell(): TaskCell # updateItem(ToDo todo, boolean empty): void } } @enduml
9bfb608c6974e90fc1c7f2f6e7007bcdd0aa1110
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/GraphQLEnumKeyDoesNotExistError.puml
0963fae33560dbd085317c1c72ab456db6d59a92
[]
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
498
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 GraphQLEnumKeyDoesNotExistError [[GraphQLEnumKeyDoesNotExistError.svg]] extends GraphQLErrorObject { code: String conflictingEnumKey: String conflictingAttributeName: String } interface GraphQLErrorObject [[GraphQLErrorObject.svg]] { code: String } @enduml
afaeb54334b074999c9608287b237e62a6340479
a9da51de5b799057600d5195c6b5223479ac6c11
/scwf/calcite.puml
962c9ba7efa4c322bdce646b0630dc51765ef315
[]
no_license
scwf/flink-hello
9d9f050702ef28525ceaf9ee900fd5558343a36f
adc0fd0ec6a05e136e34a456030b211afc7f32a0
refs/heads/master
2021-01-22T18:07:12.533559
2017-03-23T14:03:21
2017-03-23T14:03:21
85,059,282
0
0
null
null
null
null
UTF-8
PlantUML
false
false
5,383
puml
@startuml interface RelNode { List<RelNode> getInputs() Convention getConvention() RelDataType getRowType() RelDataType getExpectedInputRowType(int ordinalInParent) double estimateRowCount(RelMetadataQuery mq) RelOptCost computeSelfCost(RelOptPlanner, RelMetadataQuery) void register(RelOptPlanner planner) RelNode onRegister(RelOptPlanner planner) } interface Converter { RelTraitSet getInputTraits() RelTraitDef getTraitDef() RelNode getInput() } abstract AbstractRelNode { RelTraitSet traitSet Convention getConvention() } RelNode <|-- AbstractRelNode RelNode <|-- Converter AbstractRelNode <|-- RelSubset RelSubset *-- RelSet VolcanoPlanner o-- RelSubset VolcanoPlanner o-- RelNode class RelSubset { *初始生成是每个relnode生成一个RelSubset RelOptCost bestCost RelSet set RelNode best RelNode getBest() void computeBestCost(RelOptPlanner planner) } class RelSet { List<RelNode> rels List<RelNode> parents List<RelSubset> subsets RelSet equivalentSet RelNode rel void addInternal(RelNode rel) } AbstractRelNode <|-- SingleRel AbstractRelNode <|-- BiRel BiRel <|-- Join Join <|-- LogicalJoin Join <|-- PigJoin Join <|-- BindableJoin SingleRel <|-- Filter Filter <|-- LogicalFilter Filter <|-- CassandraFilter Filter <|-- BindableFilter Filter <|-- MongoFilter interface RelNode abstract class AbstractRelNode abstract class BiRel class Join class LogicalJoin { LogicalJoin create(...) } class PigJoin class BindableJoin abstract class SingleRel abstract class Filter class LogicalFilter { LogicalFilter create(RelNode input, RexNode condition) } class CassandraFilter class BindableFilter class MongoFilter RelTraitSet o-- RelTrait RelTrait <|-- Convention RelTrait <|-- RelCompositeTrait interface RelTrait { RelTraitDef getTraitDef() boolean satisfies(RelTrait trait) void register(RelOptPlanner planner) } interface Convention class RelTraitSet { RelTrait[] traits } abstract class RelTraitDef { RelNode convert(RelOptPlanner planner,RelNode rel,T toTrait,...) } @enduml @startuml class VolcanoPlanner { RelSubset root RelNode originalRoot Set<RelOptRule> ruleSet IdentityHashMap<RelNode, RelSubset> mapRel2Subset RelOptCostFactory costFactory RuleQueue ruleQueue List<RelTraitDef> traitDefs boolean addRule(RelOptRule rule) // 添加rule的入口 void setRoot(RelNode rel) void ensureRootConverters() RelSubset registerImpl(RelNode rel,RelSet set) // 会调用 fireRules void fireRules(RelNode rel,boolean deferred) // ruleCall.match(rel)-volcanoRuleCall.matchRecurse-DeferringRuleCall.onMatch, 将match添加到ruleQueue RelNode findBestExp() } class RuleQueue { VolcanoRuleMatch popMatch(VolcanoPlannerPhase phase) Map<VolcanoPlannerPhase, PhaseMatchList> matchListMap } class PhaseMatchList { VolcanoPlannerPhase phase List<VolcanoRuleMatch> list Multimap<RelSubset, VolcanoRuleMatch> matchMap } enum VolcanoPlannerPhase { PRE_PROCESS_MDR PRE_PROCESS OPTIMIZE CLEANUP } RelOptRuleCall <|-- VolcanoRuleCall VolcanoRuleCall <|-- VolcanoRuleMatch PhaseMatchList o-- VolcanoRuleMatch RuleQueue o-- PhaseMatchList RuleQueue o-- VolcanoPlannerPhase VolcanoPlanner o-- RuleQueue RelOptRuleCall o-- RelOptRule RelOptRuleCall o-- RelOptRuleOperand RelOptRuleOperand o-- RelOptRule RelOptRule o-- RelOptRuleOperand abstract class RelOptRuleCall { final int id; final RelOptRuleOperand operand0; Map<RelNode, List<RelNode>> nodeInputs; final RelOptRule rule; final RelNode[] rels; final RelOptPlanner planner; final List<RelNode> parents; } abstract class RelOptRule { RelOptRuleOperand operand public boolean matches(RelOptRuleCall call) } class RelOptRuleOperand { RelOptRuleOperand parent RelOptRule rule Predicate<RelNode> predicate RelTrait trait Class<? extends RelNode> clazz ImmutableList<RelOptRuleOperand> children // rule 可能对孩子也有要求 public boolean matches(RelNode rel) // 是否命中rule } class VolcanoRuleCall { VolcanoPlanner volcanoPlanner } class VolcanoRuleMatch { final RelSet targetSet RelSubset targetSubset String digest double cachedImportance = Double.NaN } @enduml @startuml Table <|-- ScannableTable Table <|-- FilterableTable Schema <|-- AbstractSchema Schema <|-- SchemaPlus interface Table { 奇怪,居然不是继承自RelNode RelDataType getRowType(RelDataTypeFactory typeFactory); Statistic getStatistic(); Schema.TableType getJdbcTableType(); } interface ScannableTable { Enumerable<Object[]> scan(DataContext root) } interface FilterableTable { Enumerable<Object[]> scan(DataContext root, List<RexNode> filters) } interface Schema { Table getTable(String name) Collection<Function> getFunctions(String name) Schema getSubSchema(String name) } interface SchemaPlus { void add(String name, Table table) void add(String name, Function function) void add(String name, Lattice lattice) SchemaPlus add(String name, Schema schema) SchemaPlus getParentSchema() SchemaPlus getSubSchema(String name) } class AbstractSchema { Map<String, Table> getTableMap() } Node <|-- TableScanNode Node <|-- JoinNode Node <|-- FilterNode interface Node { void run() } class TableScanNode { } class JoinNode { } class FilterNode { } @enduml class CBO { 凡是不一定能提升性能的rule都应该划到cbo中去考虑 1. 逻辑计划之间的转换 2. ensure requirement 3. 逻辑计划转物理计划 }
6a66e25eb7613259210ea4e9a68fe8ce2db603bc
1ce6145af4ab75460f5b6176dfd22a2426434cb4
/RoyalWormDemo/Network/Network.plantuml
810d23b6968d4276fd0d4599dca90c34e37ed9a2
[]
no_license
zyzzyxxy/RoyalWorm
89436a49c215f486c8ddeae7213f4640ded1a8d0
db144a146983a8854a492d17a912922512c47d64
refs/heads/master
2020-04-20T20:51:47.678261
2019-03-10T22:32:38
2019-03-10T22:32:38
169,090,100
1
0
null
2019-03-10T12:39:20
2019-02-04T14:23:54
Java
UTF-8
PlantUML
false
false
715
plantuml
@startuml title __NETWORK's Class Diagram__\n package Network { class NetworkController { {static} + sendWorldData() {static} + sendData() {static} + sendDirectionData() } } package Network { class NetworkReciever { - receiveSocket : DatagramSocket - recieveData : byte[] - recievePort : int + NetworkReciever() + recieveData() + run() } } NetworkReciever -up-|> Runnable NetworkReciever -up-|> Observable 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
a45d61f5198fb63e35ba3dd3ce38e63a9710a9c2
114d183f85e91502b4f87581521dcfa41a8152a0
/doc/diagrams/eagine/logging_overview.puml
dbe641abfe2cc1613c5c60e27a74f18e4e8aa0c0
[ "BSL-1.0", "GPL-3.0-only", "GPL-1.0-or-later" ]
permissive
ford442/oglplu2
5544c888a11b9b2f92c3dd658c914403a6372604
abf1e28d9bcd0d2348121e8640d9611a94112a83
refs/heads/develop
2023-07-28T03:56:59.431213
2021-09-01T05:40:48
2021-09-01T05:40:48
403,495,160
0
0
BSL-1.0
2021-09-06T05:23:50
2021-09-06T05:21:38
null
UTF-8
PlantUML
false
false
1,796
puml
@startuml enum log_event_severity { trace debug stat info warning error fatal } interface logger_backend { +type_id() : identifier +set_description() +enter_scope() +leave_scope() +log_chart_sample(...) +begin_message(...) +add_argument(...) +finish_message(...) +finish_log() } class null_log_backend { } class syslog_log_backend { } class ostream_log_backend { } class asio_ostream_log_backend { } class proxy_log_backend <<Proxy>> { } class log_entry { +set_format(...) +arg(...) } class basic_logger { +instance_id() : identifier +backend() +make_log_entry() } class logger { +log() +error() +warning() +info() +stat() +debug() +trace() } class named_logging_object { +log() +log_fatal() +log_error() +log_warning() +log_info() +log_stat() +log_debug() +log_trace() } class root_logger { } class root_logger_options { } class program_args { +begin() +end() +find() } class main_ctx_object { } class main_ctx { } logger_backend <|-- null_log_backend : implements logger_backend <|-- syslog_log_backend : implements logger_backend <|-- ostream_log_backend : implements ostream_log_backend <|-- asio_ostream_log_backend proxy_log_backend --|> logger_backend : implements proxy_log_backend *--> logger_backend : delegates to log_entry --> log_event_severity : has log_entry --> logger_backend : uses basic_logger ..> log_entry : instantiates basic_logger o--> logger_backend logger --|> basic_logger basic_logger <|-- named_logging_object named_logging_object <|-- main_ctx_object main_ctx_object --> main_ctx root_logger --|> logger root_logger --> program_args : uses root_logger --> root_logger_options : uses @enduml
6e2330799426fd0568d0464f9a57c413aae3d810
12bfce152bb20ca481a58349f84e9bba2e64b4b7
/img/pattern/state.puml
2ed85492fd615ce6f4c09c4f626f3d7350810d8e
[]
no_license
axiomaster/axiomaster.github.io
88f27a740d87dd1c86804340690e5a5e2caf5833
fa6fa7623d5272ca117e25ab85ae6ade1b814dc0
refs/heads/master
2022-01-23T14:20:24.336568
2022-01-09T08:33:39
2022-01-09T08:33:39
164,185,260
1
0
null
null
null
null
UTF-8
PlantUML
false
false
287
puml
@startuml interface State{ handle() } class ConcreateStateA{ handle() } class ConcreateStateB{ handle() } State <|.. ConcreateStateA State <|.. ConcreateStateB class Context{ State stateA State stateB State state request() } State <-- Context @enduml
71f1f1fd13303656bfcee887ea8e87a7bd5140ec
e557d0c0a23d52661e7ea8cf194da99d745a5a0d
/docs/source/pic/src/class.puml
8c2b326bd55a812a005a10ca752ceed31d9d1363
[ "Apache-2.0" ]
permissive
nrempel/von_anchor
15879a82e32a0058ee6118be39a4840df7905e05
db6ae077e7161d7e333371583c26615a7d47fbe5
refs/heads/master
2020-04-07T10:28:14.352270
2019-02-27T12:59:52
2019-02-27T12:59:52
158,287,984
0
0
Apache-2.0
2018-11-19T20:47:48
2018-11-19T20:47:48
null
UTF-8
PlantUML
false
false
7,509
puml
@startuml /' Copyright 2017-2019 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca Licensed 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 or 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. '/ scale max 2000 width title Class Diagram class ErrorCode { } class VonAnchorError { +error_code +message } class SchemaKey { } class SchemaCache { -_schema_key2schema -_seq_no2schema_key +lock +__getitem__() +__setitem__() +contains() +index() +schema_key_for() +schemata() +feed() +clear() } class CredDefCache{ +lock } class Tails { +reader_handle +rr_id +path +open() {static} +ok_hash() {static} +associate() {static} +dir() {static} +linked() {static} +links() {static} +unlinked() {static} +next_tag() {static} +current_rev_reg_id() } class RevoCacheEntry { +rev_reg_def +tails +cull() -_get_update() +rr_delta_frames +rr_state_frames +get_delta_json() +get_state_json() } class RevRegUpdateFrame { +qtime +timestamp +to +rr_update } class RevocationCache { +lock } class EndpointCache { +lock } class ArchivableCaches { {static} +clear() {static} +archive() {static} +parse() {static} +purge_archives() } class Wallet { -_seed -_next_seed +name +handle +config +auto_remove +access_creds +storage_type +did +verkey +create_local_did() +get_local_did_infos() +get_local_did_info() +get_anchor_did() +create() +open() +close() +write_pairwise() +delete_pairwise() +get_pairwise() +encrypt() +decrypt() +sign() +verify() +pack() +unpack() +reseed_init() +reseed_apply() +remove() } class DIDInfo { +did +verkey +metadata } class PairwiseInfo { +their_did +their_verkey +my_did +my_verkey +metadata } class EndpointInfo { +endpoint +ip_addr +port +verkey } enum Protocol { {static} +V_13 {static} +V_14 {static} +V_15 {static} +V_16 {static} +V_17 {static} +V_18 {static} +DEFAULT } class NodePoolManager { +protocol +add_config() +list() +get() +remove() } class NodePool { +name +handle +config +protocol +cache_id +open() +close() +refresh() } enum Predicate { {static} +LE {static} +LT {static} +GE {static} +GT } enum Role { {static} +STEWARD {static} +TRUSTEE {static} +TRUST_ANCHOR {static} +USER {static} +ROLE_REMOVE } class BaseAnchor { +pool +wallet +did +verkey -_submit() -_sign_submit() -_verkey_for() {static} +least_role() +open() +close() +reseed() +set_did_endpoint() +get_did_endpoint() +send_endpoint() +get_endpoint() +get_nym() +get_nym_role() +get_cred_def() +get_rev_reg_def() +get_schema() +encrypt() +decrypt() +sign() +verify() +get_txn() } class AnchorSmith { {static} +role() +send_nym() } class Origin { +send_schema() } class RevRegBuilder { {static} +get_state() {static} +dir_tails() {static} +dir_tails_sentinel() -_start_data_json() -_create_rev_reg() +dir_tails_top() +dir_tails_target() +serve() +stop() } enum State { {static} +RUNNING {static} +STOPPING {static} +ABSENT } class Issuer { -_send_rev_reg_def() -_set_rev_reg() -_sync_revoc_for_issue() +open() +path_tails() +send_cred_def() +create_cred_offer() +create_cred() +revoke_cred() +get_box_ids_json() } class HolderProver { +config +dir_cache -_link_secret -_sync_revoc_for_proof() -_build_rr_delta_json() +build_req_creds_json() +dir_tails() +open() +close() +rev_regs() +offline_intervals() +create_link_secret() +create_cred_req() +store_cred() +load_cache_for_proof() +get_box_ids_json() +get_cred_infos_by_q() +get_cred_infos_by_filter() +get_cred_info_by_id() +get_creds() +get_creds_by_id() +get_cred_briefs_by_proof_req_q() +create_proof() +reset_wallet() } class Verifier { +config +dir_cache -_build_rr_state_json() {static} +least_role() +build_proof_req_json() +load_cache_for_verification() +open() +verify_proof() } class TrusteeAnchor { } class NominalAnchor { {static} +least_role() } class SRIAnchor { {static} +least_role() } class BCRegistrarAnchor { } class OrgBookAnchor { } class OrgHubAnchor { {static} +least_role() +close() } enum PublicKeyType { {static} +RSA_SIG_2018 {static} +ED25519_SIG_2018 {static} +EDDSA_SA_SIG_SECP256K1 } class PublicKey { +did +id +type +value +controller +authn +to_dict() } class Service { +did +idp +type +endpoint +to_dict() } class DIDDoc { +did +verkeys +authnkeys +services +to_json() +serialize() {static} +from_json() {static} +deserialize() } VonAnchorError "1" *-up- "1" ErrorCode SchemaCache -left-> SchemaKey BaseAnchor -left-> SchemaKey NodePoolManager "1" *-- "1" Protocol NodePoolManager ..> NodePool NodePool *-- Protocol RevRegBuilder *-- State BaseAnchor -up-> SchemaCache BaseAnchor "1" *-left- "1" Wallet BaseAnchor "1" *-up- "1" NodePool RevoCacheEntry -up-> Tails RevoCacheEntry "2" *-down- "n" RevRegUpdateFrame RevocationCache -> RevoCacheEntry Wallet --> DIDInfo Wallet --> PairwiseInfo BaseAnchor --> EndpointInfo BaseAnchor -up-> RevoCache BaseAnchor --> EndpointCache BaseAnchor -up-> CredDefCache BaseAnchor <|-down- AnchorSmith BaseAnchor <|-down- Origin BaseAnchor <|-down- HolderProver BaseAnchor <|-down- Verifier BaseAnchor <|-right- NominalAnchor AnchorSmith <|-down- TrusteeAnchor BaseAnchor <|-down- RevRegBuilder RevRegBuilder <-- Issuer Origin <|-left- SRIAnchor Issuer <|-left- SRIAnchor Verifier <|-right- SRIAnchor Issuer <|-up- BCRegistrarAnchor Origin <|-up- BCRegistrarAnchor HolderProver <|-down- OrgBookAnchor OrgBookAnchor <|-- OrgHubAnchor Issuer <|-- OrgHubAnchor Origin <|-- OrgHubAnchor Verifier <|-- OrgHubAnchor HolderProver ..> ArchivableCaches Verifier ..> ArchivableCaches OrgHubAnchor ..> ArchivableCaches HolderProver ..> Predicate Verifier ..> Predicate BaseAnchor ..> Role AnchorSmith ..> Role Verifier ..> Role NominalAnchor ..> Role OrgHubAnchor ..> Role SRIAnchor ..> Role PublicKey "1" *-- "1" PublicKeyType DIDDoc "1" *-- "n" PublicKey DIDDoc "1" *-- "n" Service @enduml
1ca2e23fced0a0677140dee5d047048255d0b8e5
084fcc4a31b60fe11f3f647f7d49a3c1c6621b44
/kapitler/media/uml-class-klassifikasjonssystem.iuml
547f597cedec478fbc3ec7ea0b77d948419c1ba8
[]
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
287
iuml
@startuml class Arkivstruktur.Klassifikasjonssystem <Arkivenhet> { +klassifikasjonstype : Klassifikasjonstype [0..1] +tittel : string +beskrivelse : string [0..1] +avsluttetDato : datetime [0..1] +avsluttetAv : string [0..1] +referanseAvsluttetAv : SystemID [0..1] } @enduml
fabfb5180aa8fce4e35307db65c9a233792c8c8e
c3287e91ce0ebce396cd3966de3d2f7d90131c20
/Plantuml/BL/Exceptions/BLExporterImporterException.puml
63c25b64c02ee1d8791576f48982999475ab359b
[]
no_license
kretmatt/SWE2-Tourplanner
497ec2e888112bd3d67a0f2b97e7c1e8e0348371
f064500ae5b913b00671f358a586011affcdaf00
refs/heads/main
2023-05-12T11:48:29.605417
2021-06-06T21:53:11
2021-06-06T21:53:11
341,115,114
0
0
null
null
null
null
UTF-8
PlantUML
false
false
252
puml
@startuml class BLExporterImporterException { + BLExporterImporterException() + BLExporterImporterException(message:string) + BLExporterImporterException(message:string, inner:Exception) } Exception <|-- BLExporterImporterException @enduml
17aac373c4b54ac38f45366e9ffa70eceb17e34e
a76e7ded7055b62cf913ba91d8f8e745f443530f
/moneytransfer/src/main/kotlin/moneytransfer/objects/Entites.puml
55d9e8de40e20f62ffcb1b55bfa2905077ee6cb0
[]
no_license
michaem/DDDSample
7acbbb5d81aa9120a3a7b4611c4c0edc5965c01c
b1887c425a48d8e2a1f87632fd961a234620ed04
refs/heads/main
2022-12-27T22:48:48.832296
2020-10-13T17:13:41
2020-10-13T17:13:41
301,216,256
6
1
null
null
null
null
UTF-8
PlantUML
false
false
681
puml
@startuml together { class SessionId <<Value Object>> { - id: String } class Session << Entity >> { - sessionId: SessionId - expireDate: Date } Session o-- SessionId } together { class CardId <<Value Object>> { - id: String } class Card << Entity >> { - id: CardId - number: String } Card o-- CardId } together { class CountryId <<Value Object>> { - id: String } class Country <<Entity>> { - id: CountryId - name: String - code: String } Country o-- CountryId } together { class Receiver << ? >> class Transfer << ? >> } @enduml
5f710b0f81ef005876918dbb20cdcad12d48f09c
a459373fa54c2903a9470556d452586ad9320bd0
/doc/after.puml
ea0eee9376ca70373c48fad98ddd387e8c238f85
[]
no_license
nazonohito51/log-analyzer
b07e5172c4945fa80f859ba788cb61b0e7f92033
b11eaa7b1bd9a13b308866c2dbe59876bc965b2e
refs/heads/master
2022-01-20T06:59:32.008241
2019-08-06T02:16:17
2019-08-06T02:16:17
106,846,203
6
0
null
2018-11-12T07:09:26
2017-10-13T16:08:09
PHP
UTF-8
PlantUML
false
false
2,123
puml
@startuml package CollectionBuilder { class CollectionBuilder { - array[LogFile] files # void addLog(path, parser) + void addApacheLog(path) + void addLtsvLog(path) + Collection build() } class LogFile { - string path - ParserInterface parser } class SplFileObject { } interface ParserInterface { } class ApacheLogParser { - string format } class LtsvParser { } } package Collection { class Collection { - array[int] itemIds - DatabaseInterface db + View dimension(key, callable = null) + int count() + array showScheme() } class ColumnarDatabase { } interface DatabaseInterface { - array scheme + ColumnInterface getColumn(key) + array getScheme() } class FileStorageColumn { - array values - array dictionary } class InMemoryColumn { - array values - array dictionary } interface ColumnInterface { + void add(value, itemId) } } package View { class View { - array[Collection] collections + void addColumn(key, callable = null) + Collection getCollection(dimensionValue) + array showScheme() } interface ColumnValueStrategyInterface { } abstract class AbstractColumnValueStrategy { } class DimensionStrategy { } class CountStrategy { } } package Presenter { class ProgressBarObserver { } class ConsoleTable { } } LogFile "0..n" -- "1" ParserInterface LogFile <|-- SplFileObject View o- Collection : create View o-- ColumnValueStrategyInterface CollectionBuilder .> Collection : create CollectionBuilder o-- LogFile Collection "1..n" *-- "1" DatabaseInterface ApacheLogParser <|- ParserInterface LtsvParser <|- ParserInterface ColumnarDatabase <|- DatabaseInterface FileStorageColumn <|- ColumnInterface InMemoryColumn <|- ColumnInterface DatabaseInterface o-- ColumnInterface AbstractColumnValueStrategy <|- ColumnValueStrategyInterface DimensionStrategy <|- AbstractColumnValueStrategy CountStrategy <|- AbstractColumnValueStrategy ProgressBarObserver "1" -- "0..1" CollectionBuilder ConsoleTable <.. View : create @enduml
6f05b3662af9fc55de876b56e9eb88eb5483e3e5
f53547189c088bd8b81e897e755812f03ec5faa8
/documentation/puml/arch.puml
81665aa50060d425e9ab9f694b63c5222748d7bb
[]
no_license
yemelanooov/codebase-operator
33916b47759506446540166a7ef373a76b7e9c78
8b56e9426a9479d67b157d9fa46e0f68bfefbff4
refs/heads/master
2022-11-14T19:22:01.754107
2020-07-02T06:55:50
2020-07-02T06:55:50
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,767
puml
@startuml skinparam class { BackgroundColor #white BackgroundColor<<wip>> LightGoldenRodYellow BackgroundColor<<tbd>> Khaki } package com.epam.edp.codebase { class Codebase { -- metadata -- String name -- spec -- CodebaseType type String lang String description String framework String buildTool Strategy strategy Repository repository Database database String testReportFramework String gitServer String jiraServer String gitUrlPath String jenkinsSlave String jobProvisioning String deploymentScript Versioning versioning -- status -- Boolean available Date lastTimeUpdated String status String username ActionType action Result result String detailedMessage String value } Codebase -> Strategy : strategy enum Strategy { CREATE CLONE } Codebase --> CodebaseType : type enum CodebaseType { APPLICATION AUTOTESTS LIBRARY } Versioning -> VersioningType : versioningType enum VersioningType { EDP DEFAULT } Codebase "1" -r-* "0..1" Repository : internal structure class Repository { String url } Codebase "1" --* "1" Versioning : internal structure class Versioning { VersioningType type String startFrom } Codebase "1" --* "0..1" Route : internal structure class Route { String site String path } Codebase "1" --* "0..1" Database : internal structure class Database { String kind String version String capacity String storage } Codebase "1" --* "1..*" CodebaseBranch : codebaseName, owner ref class CodebaseBranch { -- metadata -- String name -- spec -- String codebaseName String branchName String fromCommit String version String build Boolean release -- status -- Date lastTimeUpdated String status []String versionHistory String username ActionType action Result result String detailedMessage String value } CodebaseBranch "1" --o "0..1" CodebaseImageStream : creates, owner ref class CodebaseImageStream { -- metadata -- String name -- spec -- String imageName []Tag tags -- status -- <color red>String version</color> <color red>String url</color> } CodebaseImageStream "1" --* "0..*" Tag : internal structure class Tag { String name } Codebase "0..*" o-- "1" GitServer : gitServer class GitServer { -- metadata -- String name -- spec -- String gitHost String gitUser String httpsPort String sshPort String nameSshKeySecret Boolean createCodeReviewPipeline -- status -- Date lastTimeUpdated String status String username ActionType action Result result String detailedMessage String value } GitServer "1" --* "1" GitServerSecret : nameSshKeySecret class GitServerSecret <Secret> { -- metadata -- String name -- data -- String id_rsa String id_rsa.pub String username } GitRepository <-- GitServer : owner ref class GitRepository <<tbd>> { -- metadata -- String name -- spec -- -- status -- Boolean available } Codebase "0..*" o--- "1" JiraServer : jiraServer class JiraServer { -- metadata -- String name -- spec -- String apiUrl String rootUrl String credentialName -- status -- Date lastTimeUpdated Boolean available } Codebase "1" ---* "0..*" JiraFixVersion : codebaseName class JiraFixVersion { -- metadata -- String name -- spec -- String []commits String []tickets String codebaseName -- status -- Date lastTimeUpdated String detailedMessage Boolean released Boolean archived String status } JiraServer "1" --* "1" JiraUserServerSecret : credentialName class JiraUserServerSecret <Secret> { -- metadata -- String name -- spec -- String password String username } } class EdpComponent <<tbd>> { } GitServer --> EdpComponent : creates, owner JiraServer --> EdpComponent : creates, owner Codebase -u-> ImageStream : creates (s2i, Openshift) Codebase "1" -u-> "1" JenkinsFolder : creates, owner legend |Type | Field | Status | |<back:LightGoldenRodYellow> </back> | <color brown>String name</color> |Work In Progress| |<back:white> </back>| String name |Implemented | |<back:Khaki> </back>| <color red>String name</color>|TBD | endlegend @enduml
90e13e038f017455f5ae8df0c0a11b7606b919b5
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Services/workload/Logical.puml
9423b9a196159c9cf3fd5b6a0ed81f9c891f4011
[]
no_license
CAADE/edgeville
fd0053d749c259029ef4c7791210663ace87be21
6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65
refs/heads/master
2020-03-28T06:11:31.554585
2019-05-02T17:37:03
2019-05-02T17:37:03
147,819,682
0
0
null
null
null
null
UTF-8
PlantUML
false
false
206
puml
@startuml rectangle "Diagram TBD" @enduml package "workload" #lightblue { interface "workload" { } CLI ()-- "workload" : 5000 REST ()-- "workload" : 3000 Web ()-- "workload" : 80 }
d85ff6167a886358619ec53a53331d4886be75e3
65d20a2522663f335ac05ff61a0d00cb3c9e02d6
/设计模式/创建型模式/1.AbstractFactory抽象工厂/abstractFactory.puml
d0d220b0aa0a2a8737a45dc1ff05d45c22b3f8a6
[]
no_license
GungnirLaevatain/doc
3f436387665cd67b93e84df0a0c92f9f894ad4a3
519643453e49a5a82e4a971597d186bfdc280116
refs/heads/master
2020-08-08T15:52:54.217559
2020-03-16T02:10:08
2020-03-16T02:10:08
213,863,201
0
0
null
null
null
null
UTF-8
PlantUML
false
false
819
puml
@startuml interface AbstractFactory{ +{abstract} Product create() } class AFactory{ +{method} Product create() } class BFactory{ +{method} Product create() } interface Product{ +{abstract} String getName() } class AProduct{ +String getName() } class BProduct{ +String getName() } class FactoryProducer{ +{static}AbstractFactory createFactory(String type) } class Client{ +{static}void main(String[] args) } BFactory..|> AbstractFactory AFactory..|> AbstractFactory AProduct..|> Product BProduct..|> Product AFactory..>AProduct BFactory..>BProduct FactoryProducer..>Factory :创建工厂 Factory..>Product :创建产品族 Client..>FactoryProducer :使用静态工厂创建产品族的工厂 Client..>Factory :使用工厂创建产品族 Client..>Product :使用创建出来的产品族 @enduml
69889348dda1e341e4d102511ca99ee66156ffa3
2ac74657de3cb81bab734d18094e945a442a167d
/sechub-doc/src/docs/asciidoc/diagrams/diagram_pds_adapter_configuration_overview.puml
1a8a2c67ca54c62fdcdef5b8656aa86152b36bbe
[ "MIT", "ANTLR-PD", "LicenseRef-scancode-generic-exception", "BSD-3-Clause", "LGPL-2.0-or-later", "LGPL-2.1-only", "GPL-1.0-or-later", "LicenseRef-scancode-oracle-openjdk-exception-2.0", "MPL-1.1", "MPL-2.0", "CC-PDDC", "LicenseRef-scancode-warranty-disclaimer", "EPL-2.0", "GPL-2.0-only", ...
permissive
de-jcup/sechub
64055bb7ccd5496e32207c140e5812997e97583b
488d2d23b9ae74043e8747467623d291c7371b38
refs/heads/develop
2023-07-22T18:01:47.280074
2023-07-18T15:50:27
2023-07-18T15:50:27
199,480,695
0
1
MIT
2023-03-20T03:00:02
2019-07-29T15:37:19
Java
UTF-8
PlantUML
false
false
3,350
puml
' SPDX-License-Identifier: MIT @startuml hide empty fields hide empty members interface PDSAdapterConfigData { Map<String, String> getJobParameters(); UUID getSecHubJobUUID(); String getPdsProductIdentifier(); InputStream getSourceCodeZipFileInputStreamOrNull(); String getSourceCodeZipFileChecksumOrNull(); InputStream getBinaryTarFileInputStreamOrNull(); boolean isReusingSecHubStorage(); boolean isSourceCodeZipFileRequired(); boolean isBinaryTarFileRequired(); SecHubConfigurationModel getSecHubConfigurationModel(); ScanType getScanType(); } interface PDSAdapterConfigurator{ setPdsProductIdentifier(String); setSourceCodeZipFileInputStreamOrNull(InputStream); setSourceCodeZipFileChecksumOrNull(String); setBinaryTarFileInputStreamOrNull(InputStream); setSecHubJobUUID(UUID); setJobParameters(Map<String, String>); setSecHubConfigurationModel(SecHubConfigurationModel); setSourceCodeZipFileRequired(boolean); setBinaryTarFileRequired(boolean); setScanType(ScanType); validateNonCalculatedParts(); calculate(); configure(); } interface PDSAdapterConfigDataProvider{ PDSAdapterConfigData getPdsAdapterConfigData() } interface PDSAdapterConfiguratorProvider{ PDSAdapterDataConfigurator getPdsAdapterConfigurator() } interface PDSAdapterConfig extends PDSAdapterConfigDataProvider interface PDSAdapterConfigBuilder extends PDSAdapterConfiguratorProvider class PDSAdapterDataConfigurator implements PDSAdapterConfigData,PDSAdapterConfigurator{ } class PDSAdapterV1 class PDSAdapterConfigurationStrategy PDSAdapterConfigurationStrategy --> PDSAdapterConfiguratorProvider #line:orange :uses provider\nto fetch configurator (3a) PDSAdapterConfigurationStrategy --> PDSAdapterConfigurator #line:orange :use provided\nconfigurator to\nset PDS data (3b) together { class PDSCodeScanProductExecutor class PDSCodeScanConfig implements PDSAdapterConfig{ PDSAdapterConfigData getPdsAdapterConfigData() } class PDSCodeScanConfigBuilder implements PDSAdapterConfigBuilder{ PDSAdapterConfigData getPdsAdapterConfigurator() } } PDSCodeScanProductExecutor --> PDSAdapterConfigurationStrategy #line:orange : creates + use strategy\non config builder(2) PDSCodeScanConfigBuilder --> PDSCodeScanConfig #line:blue :builds (4) PDSCodeScanProductExecutor --> PDSCodeScanConfigBuilder #line:blue : create + use (1) PDSCodeScanConfigBuilder o-- PDSAdapterDataConfigurator PDSAdapterConfigDataProvider --> PDSAdapterConfigData : provides PDSAdapterV1 --> PDSAdapterConfig #line:green :uses (6) PDSCodeScanProductExecutor --> PDSAdapterV1 #line:green : calls (5) PDSCodeScanConfig o-- PDSAdapterConfigData note top of PDSCodeScanProductExecutor We show here only PDS Code scan as an example, but it is similar for other PDS scan variants end note note top of PDSAdapterConfigurationStrategy The strategy calculates all necessary data and set the calculated values to the configurator end note note bottom of PDSAdapterDataConfigurator This class represents both worlds: the configurator (to set values) and also the data object. Inside custom build method the builder will set this object finally into the created configuration (in this example: PDSCodeSCanConfig) as the `PDSAdapterConfigData` end note @enduml
2a48a69e5322fc32a5f24c1eec00157c136cc6a3
3799485d044ea837adff21cb08b03fef972fcf03
/ArtOrders/out/production/ArtOrders/orders/view/renderers/renderers.plantuml
5ea23a406bc84448e0a30e16342dec38c7dfcf5e
[]
no_license
KateChaus/artOrders
4d3f5552fbaed5a96d7050562cc1a9cf5fd7076e
2ef2c87d48c9aebab5746ea2dd53e66e33433362
refs/heads/master
2022-09-20T21:16:40.879672
2020-05-30T17:13:23
2020-05-30T17:13:23
268,121,691
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,119
plantuml
@startuml title __RENDERERS's Class Diagram__\n namespace orders { namespace view.renderers { class orders.view.renderers.GalleryRenderer { ~ pane : JPanel + GalleryRenderer() + getListCellRendererComponent() } } } namespace orders { namespace view.renderers { class orders.view.renderers.ImageRenderer { ~ pane : JPanel + ImageRenderer() + getListCellRendererComponent() } } } namespace orders { namespace view.renderers { class orders.view.renderers.OrderApplicationRenderer { ~ pane : JPanel + OrderApplicationRenderer() + getListCellRendererComponent() } } } namespace orders { namespace view.renderers { class orders.view.renderers.OrderRenderer { ~ pane : JPanel - isIn : boolean + OrderRenderer() + getListCellRendererComponent() } } } namespace orders { namespace view.renderers { class orders.view.renderers.UserRenderer { ~ pane : JPanel + UserRenderer() + getListCellRendererComponent() } } } orders.view.renderers.GalleryRenderer .up.|> javax.swing.ListCellRenderer orders.view.renderers.GalleryRenderer -up-|> javax.swing.JPanel orders.view.renderers.ImageRenderer .up.|> javax.swing.ListCellRenderer orders.view.renderers.ImageRenderer -up-|> javax.swing.JPanel orders.view.renderers.OrderApplicationRenderer .up.|> javax.swing.ListCellRenderer orders.view.renderers.OrderApplicationRenderer -up-|> javax.swing.JPanel orders.view.renderers.OrderRenderer .up.|> javax.swing.ListCellRenderer orders.view.renderers.OrderRenderer -up-|> javax.swing.JPanel orders.view.renderers.UserRenderer .up.|> javax.swing.ListCellRenderer orders.view.renderers.UserRenderer -up-|> javax.swing.JPanel right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
44cf29bdc4e173a5363377a8ec99cc6f9cb30cdf
67aa6db2365f7165f162643553928288c04f2dd3
/patterns/creational/singleton/singleton.puml
a5406b64799b518e35a35331f400572052320081
[]
no_license
vbillet/UMLWizard
f8a7c6eb18f607af52ac9cbfbc6c39f502df9483
f9a719c30243a62dda26c13b8850b0bfbcc4848e
refs/heads/master
2020-12-13T23:07:28.650913
2020-01-17T17:55:37
2020-01-17T17:55:37
234,557,896
1
0
null
null
null
null
UTF-8
PlantUML
false
false
457
puml
@startuml Singleton title Singleton pattern example end title header last-updated 17/01/2020 footer authored by Vincent BILLET class Singleton { -{static} Singleton instance constructor() +{static} Singleton get() ~void packagePrivateMethod() } class MonManager << (S,#FF7700) Singleton >> { # {static} MonManager instance + {static}void MethodeStatique() + void MethodeInstance() } Singleton <|-- MonManager : extends @enduml
f73bba16229d3e3d344a07dc8247de94ef456ca8
c083168b4255af019262677c09ac0883d199b532
/kapitler/media/uml-codelist-korrespondanseparttype.iuml
31c51828d498679e4eb8efed8296eba63713f957
[]
no_license
gra-moore/noark5-tjenestegrensesnitt-standard
270f7088898ff0c5fa809b42297cfc56f829eeaa
0c3936475ce40ab41793b61aee5c4dcdff9c791d
refs/heads/master
2020-05-22T18:37:59.814751
2019-05-13T11:10:23
2019-05-13T11:10:23
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
229
iuml
@startuml class Kodelister.Korrespondanseparttype <<codelist>> { +Avsender = EA +Mottaker = EM +Kopimottaker = EK +Gruppemottaker = GM +Intern avsender = IA +Intern mottaker = IM +Intern kopimottaker = IK } @enduml
4daf8ec3336e96c203629048763f261662051592
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/InvalidSubjectError.puml
12a19107525b7b75d9ee917531f2b11324028e0f
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
425
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface InvalidSubjectError [[InvalidSubjectError.svg]] extends ErrorObject { code: String message: String } interface ErrorObject [[ErrorObject.svg]] { code: String message: String } @enduml
5f2d3539a2893dc48fa008548f5ac8dc951d838b
53327fd90132f6b2e57bc5fa867121bedcdef914
/app/UML/DM.puml
2c6cb89a4a055dcc8198d917bc755e362dde82c2
[]
no_license
zedtran/AubieMemoryGame
10712b31739ba25414ea544ee2b9c226279566b8
dd223d2f06a31b08e7091ba5177e996aa19b3863
refs/heads/main
2020-03-09T19:00:57.232471
2018-04-26T02:23:18
2018-04-26T02:23:18
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
555
puml
@startuml title Aubie's Memory Game Domain Model class Player { highScore } class LeaderBoards { } class Button { color isLit } class Controller { greenLit blueLit yellowLit redLit score difficulty } class Board { } Board "1" *-- "4" Button : contains > Board "1" *-- "1" Controller : contains > Player "1" -- "1" Controller: listensTo > Player "1" -- "4" Button: presses > Player "*" -- "1" LeaderBoards: uploades score > Controller "1" -- "4" Button: signals which button to light up > hide empty members hide methods @enduml
90c3e20007d2aece39fbf046500eebe50624c939
6e5c21650314b4eb97a28eb8b62e52e6b86b1d76
/documentation/uml/CheckerDesign.puml
001f3e52f9eecf71aacef050652054cc45255edb
[ "BSD-3-Clause" ]
permissive
MetOffice/stylist
3760425906e9b39f25bccda6336c66eb83a0b1a3
c01def9b5eeb2885e45b5097ea0bbf3297da2eed
refs/heads/master
2023-09-01T10:48:18.563844
2023-08-25T08:51:39
2023-08-25T08:51:39
228,413,154
23
9
BSD-3-Clause
2023-08-25T13:37:26
2019-12-16T15:07:44
Python
UTF-8
PlantUML
false
false
4,899
puml
@startuml Checker Class Diagram skinparam class { BackgroundColor<<unwritten>> AlliceBlue BorderColor<<unwritten>> LightSkyBlue } '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' inspector.source module class source.ProcessChain { +textChain: List <<SourceText <<class>>>> +parser: SourceTree } class source.Factory { -{static}extension_map: Map <<String, ProcessChain>> +{static}read_file(filename: String): source.SourceTree +{static}read_file(file: File): source.SourceTree +{static}add_extension_mapping(extension: String, parser: SourceTree<<class>>, processors[]: SourceText<<class>>) } abstract class source.SourceText { +{abstract}get_text(): String } abstract class source.TextProcessor { -processor: TextProcessor +<<create>>__init__(source: SourceText) } source.SourceText <|-- source.TextProcessor source.TextProcessor o- source.SourceText class source.FileReader { +get_text(): String } source.SourceText <|-- source.FileReader class source.CPreProcessor { +get_text(): String } source.TextProcessor <|-- source.CPreProcessor class source.FortranPreProcessor { +get_text(): String } source.TextProcessor <|-- source.FortranPreProcessor class source.pFUnitProcessor { +get_text(): String } source.TextProcessor <|-- source.pFUnitProcessor abstract class source.SourceTree { -text: SourceText +<<create>>__init__( text: SourceText ) +get_text(): String +{abstract}get_tree() } class source.FortranTree { -tree: fparser.Fortran2003.Program +get_tree() +{static}path( start: fparser.Fortran2003.*, path: String ): fparser.Fortran2003.* +get_default_extensions() String <<collection>> } source.SourceTree <|-- source.FortranTree class source.CeeTree { -tree: pycparse.Whatever +get_tree() } source.SourceTree <|-- source.CeeTree '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' inspector.rule module abstract class rule.Rule { +{abstract}examine( subject: SourceTree ): Issue<<collection>> } abstract class rule.FortranRule { +{abstract}examine( subject: FortranTree ): Issue<<collection>> } rule.Rule <|-- rule.FortranRule class rule.MissingVisibility <<unwritten>> { +__init__( default: Visibility ) } rule.FortranRule <|-- rule.MissingVisibility class rule.MissingImplicit { +__init__( default: Implicit ) } rule.FortranRule <|-- rule.MissingImplicit class rule.MissingLegalNotice <<unwritten>> { +__init__( notice: String ) } rule.FortranRule <|-- rule.MissingLegalNotice class rule.FortranCharacterset { __init__() } rule.FortranRule <|-- rule.FortranCharacterset class rule.CommaSpace <<unwritten>> { __init__() } rule.FortranRule <|-- rule.CommaSpace class rule.PointersNullOnDeclaration <<unwritten>> { __init__() } rule.FortranRule <|-- rule.PointersNullOnDeclaration abstract class rule.CeeRule { +{abstract}examine( subject: CeeTree ): Issue<<collection>> } rule.Rule <|-- rule.CeeRule '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' inspector.style module abstract class style.Style { -rules: Rule<<collection>> +__init__( rules: Rule<<collection>> ) +check( source: Source ): Issue<<collection>> } rule.Rule "+" -o style.Style class style.LFRicStyle { +__init__() } style.Style <|-- style.LFRicStyle class style.UMStyle <<unwritten>> { +__init__() } style.Style <|-- style.UMStyle class style.BespokeStyle <<unwritten>> { +__init__() +addRule( rule: Rule ) +removeRule( rule: Rule ) } style.Style <|-- style.BespokeStyle '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' inspector.engine module class engine.CheckEngine { -styles: Style<<collection>> +__init__( styles: Style<<collection>>) +check( filename: String <<collection>> ): Issue<<collection>> } style.Style "+" -o engine.CheckEngine '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' inspector.issue module class issue.Issue { -description: String +__init__( description: String ) +__str__(): String } @enduml @startuml Checker Sequence Diagram participant UserInterface UserInterface -> style.LFRicStyle : <<instantiate>> activate style.LFRicStyle style.LFRicStyle -> rule.MissingImplicit : MissingImplicit(None) activate rule.MissingImplicit UserInterface -> engine.CheckEngine : CheckEngine(LFRicStyle) activate engine.CheckEngine UserInterface -> engine.CheckEngine : check(SourceFile) engine.CheckEngine -> style.LFRicStyle : check(Program) style.LFRicStyle -> rule.MissingImplicit : examine(Program) rule.MissingImplicit --> style.Style : Issues[] style.Style --> engine.CheckEngine : Issues[] engine.CheckEngine --> UserInterface : Issues[] @enduml
18e5ced3755eef9bebddb5ccad60139cf3eb2d6c
128331354dfdc23feac9288a9d3956480f2b9601
/out/production/Java_Final_Project/com/bank/GUI/Components/ATM/ATM.plantuml
c0be1cd557221b91f135e59273c9b51cf53feaab
[]
no_license
SamerAtawna/JavaBank
d812a16e6bdb09f3e62d0236ce866a5e161a0e01
240715f240ebb9035f852d4402d17aaa04d32c95
refs/heads/master
2022-12-14T10:26:04.406020
2020-09-09T11:13:21
2020-09-09T11:13:21
272,089,064
2
0
null
null
null
null
UTF-8
PlantUML
false
false
1,873
plantuml
@startuml title __ATM's Class Diagram__\n namespace com.bank.GUI { namespace ATM { class com.bank.GUI.Components.ATM.ATM { ~ atmPanel : JPanel ~ continueBtn : JButton ~ enterCode : JLabel ~ gbc : GridBagConstraints ~ gbc2 : GridBagConstraints ~ inputCode : JTextField ~ moneyPanel : JPanel ~ oneHundred : JButton ~ serverMessage : JLabel ~ twoHundred : JButton + next() + setServerMessage() ~ ATM() } } } namespace com.bank.GUI { namespace ATM { class com.bank.GUI.Components.ATM.ATM_Connection { - host : String - port : int - reader : ObjectInputStream - socket : Socket - writer : ObjectOutputStream + ATM_Connection() + checkCard() + connect() + getRespone() + withDraw() } } } namespace com.bank.GUI { namespace ATM { class com.bank.GUI.Components.ATM.ATM_Controller { {static} + main() } } } namespace com.bank.GUI { namespace ATM { class com.bank.GUI.Components.ATM.ATM_Thread { {static} - instance : ATM_Thread + checkCard() {static} + getInstance() + run() + withDraw() } } } com.bank.GUI.Components.ATM.ATM -up-|> javax.swing.JFrame com.bank.GUI.Components.ATM.ATM o-- Classes.Client : loggedClient com.bank.GUI.Components.ATM.ATM_Connection o-- Common.Request : req com.bank.GUI.Components.ATM.ATM_Thread o-- com.bank.GUI.Components.ATM.ATM : atm com.bank.GUI.Components.ATM.ATM_Thread o-- com.bank.GUI.Components.ATM.ATM_Connection : cnt @enduml
efd82225adf186a53c97230d870a8b3af81ac33a
abe16d0ba344a67354718c7324e1ddac43efd373
/dahua-design/src/main/java/ch18/策略模式.puml
55931b787e13b04dc3a9891996f7bc4c7416b24f
[]
no_license
gerrywen/java-learn
9888ccdf04aff50e4d8e5902c03e13c64dbf65b8
a3ed4ab50af0c2bf305eda04730f7f2db326a141
refs/heads/master
2022-12-24T18:14:07.724295
2020-06-15T08:30:49
2020-06-15T08:30:49
203,317,957
0
0
null
2022-12-15T23:58:26
2019-08-20T06:56:17
Java
UTF-8
PlantUML
false
false
845
puml
@startuml abstract class CashSuper<<现金收费抽象类>> { + acceptCash(double money) : double } class CashNormal<<正常收取子类>> { + acceptCash(double money) : double } class CashRebate<<打折收费子类>> { - moneyRebate: double + CashRebate(double moneyRebate)() + acceptCash(double money) : double } class CashReturn<<返利收取子类>> { - moneyCondition : double - moneyReturn : double + CashReturn(double moneyCondition, double moneyReturn)() + acceptCash(double money) : double } CashSuper <|-- CashNormal CashSuper <|-- CashRebate CashSuper <|-- CashReturn class CashContext<<策略模式现金上下文类>> { - cs : CashSuper + CashContext(CashSuper cs) + getResult(double money) : double } CashContext o--> CashSuper enum TimeUnit { DAYS HOURS MINUTES } @enduml
d6eadbf94955f981811a0a913c06a48f59059ad0
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.puml
2d080b9ddfff7a62e0017e000bc905554fa1fb85
[]
no_license
TakanoVineYard/AMHH
215a7c47049df08c5635b501e74f85137b9e985b
68887a313587a2934fb4ceb2994cbc2a2191d6a3
refs/heads/master
2023-01-13T02:08:02.787083
2020-11-17T14:51:57
2020-11-17T14:51:57
303,631,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
388
puml
@startuml class QuaternionEqualityComparer { + QuaternionEqualityComparer(allowedError:float) + Equals(expected:Quaternion, actual:Quaternion) : bool + GetHashCode(quaternion:Quaternion) : int } class "IEqualityComparer`1"<T> { } "IEqualityComparer`1" "<Quaternion>" <|-- QuaternionEqualityComparer QuaternionEqualityComparer --> "Instance" QuaternionEqualityComparer @enduml
9eb6cc3b63b5b52c68021052b06845e8abf58b3c
ddd9fceda7accb11f6e5c8f3614ee9b5a717d8e8
/node/src/deps/v8/EscapableHandleScope.puml
289d7b7002e64c2a0a7ab2f8d6ba6493bc1027d2
[]
no_license
Ayase-252/note-figures
e2cf7578aa9363346ac0c97bac38dc88e2afd6c8
259f9b7eb718359e7c63f9c5da97b1e6e098b3c2
refs/heads/master
2023-04-14T13:19:23.107968
2021-05-01T11:26:13
2021-05-01T11:26:13
337,063,921
0
0
null
null
null
null
UTF-8
PlantUML
false
false
196
puml
@startuml v8/FunctionCallbackInfo namespace v8 { class EscapableHandleScope extends HandleScope { +EscapableHandleScope(Isolate *isolate) } EscapableHandleScope ..> Isolate } @enduml
1c425d4c22550da81d6bae142b5316fcc4d36981
1f8103009c4503e0cb03a83211013ba1fa626352
/classDiagram.puml
7a5c8cd82192f8767a4ae4acf5481f6f35dd247f
[]
no_license
Ezeih/Airport
d5ab8478ae454faddc29878cb6ec6e758714d179
cf333eadf4ea7f5642d012e1706e89ef4850ee77
refs/heads/master
2021-04-18T19:11:44.332164
2018-03-21T13:03:45
2018-03-21T13:03:45
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,745
puml
@startuml ' settings ' -------------------------------------------- ' skinparam classAttributeIconSize 0 title Flight Base - Class Diagram ' define packages/namespaces and/or classes ' note: may contain internal relations ' ----------------------------------------- ' --- Application/UI /' ' package "application" as appl { ' class main ' } ' ' package ui { ' ' class "userInterface" as ui ' ' } ' ' ' --- Exceptions ' package "exception" as except { ' class BookingException ' } '/ ' --- utilities package utilities { enum TicketClassType { ECONOMY, BUSINESS } enum TicketStatusType { RESERVED, BOOKED, CONFIRMED, CANCELED } enum SeatStatusType { FREE, RESERVED } enum AirplaneStatusType { IN_SERVICE, OUT_OF_SERVICE } enum FlightStatusType { PLANNED, CONFIRMED, TAXING, TAKEOFF IN_FLIGHT, LANDING, FINISHED } class "TicketPrice" as tPrice { priceList : Map<TicketClassType, Integer> ECONOMY = 5000 BUSINESS = 10000 + TicketPrice() // set price for each class + getPrice(TicketClassType class) : int } } package "model.foodService" { abstract class "Menu" as menu { drinks[] : Map<name,price> foods[] : Map<name,price> + {abstract} displayMenu() : void + getFoodOrDrink(name) : Map<name,price> } class "EconomyMenu" as eMenu { + EconomyMenu() // populate drinks/foods + displayMenu() : void - displayHeader() : void - displayDrinkMenu() : void - displayFoodMenu() : void } class "BusinessMenu" as bMenu { + BusinessMenu() // populate drinks/foods + displayMenu() : void - displayHeader() : void - displayDrinkMenu() : void - displayFoodMenu() : void } class "Kitchen" as kitchen { - tmpMeal : Meal +cookMeal : Meal } class "Meal" as meal { eatable[] : Map<name,price> // items selected from menu + displayMeal() : void + getTotalPrice() : int + addEatable(Map<String,price> item) : boolean + removeEatable(Map<String,price> item) : void } ' - package interanal relations menu <|-down- bMenu menu <|-down- eMenu kitchen -down- meal : > instantiates } /' end package foodService '/ ' --- booking service ' --- airline service package "model.airlineService" { class "Airline" as airline { - airplanes[] : List<Airplane> - flights[] : : HashSet<> ??? + Airline() : // constructor creates 1 flight+airplane + displayAirplanes() : void + displayFlights() : void + getFlight(flightId) : Flight } class "Airplane" as airplane { - id : int - name : string - noOfSeats : int - status : AirplaneStatusType } class "Flight" as flight { - id : int // ??? - callId : string - destination : string - etd : Date - eta : Date - status : FlightStatusType - seats[] : Seat - economySeatStartNo : int - noOfEconomySeats : int - businessSeatStartNo : int - noOfBusinessSeats : int } class "Seat" as seat { - SeatNo : int - class : TicketClassType - status : SeatStatusType } ' - package interanal relations flight *-down- seat airline "*" o-down- "1" airplane airline "*" o-right- "1" flight } package "model.bookingService" { class "Booker" as booker { tickets : List<Ticket> // belong to Flight??? + makeReservaton() : int // ticketId + confirmReservation(ticketId : int) : boolean + cancelReservation(ticketId : int) + displayTickets() : void + displayTickets(status : TicketStatusType) : void + displayAvailableSeats() : void + displayAvailableSeats(class : TicketClassType) : void } class "Ticket" as ticket { - id : int - status : TicketStatusType - class : TicketClassType - customer : Customer - meal : Meal - flight : Flight - seatNo : int -- methods... } class "Customer" as customer { - id : int - name : String - age : int - gender : GenderType - phone : String + getName() + getAge() + getGender() + getPhone() + getId() } ' - package interanal relations booker o-down- ticket ticket "1" *- "1" customer } /' end package: model.bookingService '/ ' define relations between packages/interfaces ' -------------------------------------------- ticket "0..1" o- "1" meal ticket "1" o- "1" flight ' define hidden relations to control image layout ' ----------------------------------------------- 'customer -[hidden]- booker 'ui -[hidden]- booker 'airline -[hidden]- booker 'airlineService -[hidden]- bookingService @enduml
3ce5e376a8ef64c3b2c9dfbe3735d63ac5d6f27d
158a2c4c0d8e6baa04be3a9eec08901f91722415
/docs/design/cmdlineapp-interface.puml
805c74541af637a50719d44f7692a607c1e87756
[]
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
1,478
puml
@startuml skinparam monochrome true class CmdLineApp { + run(): int + handleSignal(): void } hide CmdLineApp fields CmdLineApp -- "1" Wire CmdLineApp - "1" CmdLineArgs CmdLineApp -- "1" ATraceCmdLineBuilder CmdLineApp - "1" Signal class CmdLineArgs { - m_AppName: string - m_Args: vector<string> -- + getCount(): int + get(id: int): string + getAppName(): string } class ATraceCmdLineBuilder { + build(wire: Wire, signal: Signal, cmdLineArgs: CmdLineArgs): ATrace } hide ATraceCmdLineBuilder fields ATraceCmdLineBuilder -- "1" ATraceArgsCmdLineBuilder ATraceCmdLineBuilder -- "1" ATraceBuilder ATraceCmdLineBuilder --> ATrace: builds class ATraceArgsCmdLineBuilder { + build(wire: Wire, cmdLineArgs: CmdLineArgs): ATraceArgs } hide ATraceArgsCmdLineBuilder fields class ATraceBuilder { + build(wire: Wire, signal: Signal, atraceArgs: ATraceArgs): ATrace } hide ATraceBuilder fields ATraceBuilder -- "1" FTraceBuilder ATraceBuilder -- "1" AndroidBuilder ATraceBuilder --> ATrace: builds class FTraceBuilder { + build(wire: Wire): FTrace } hide FTraceBuilder fields class AndroidBuilder { + build(wire: Wire): Android } hide AndroidBuilder fields class ATrace { + tryRun(): bool } hide ATrace fields class Wire { - m_ErrorStream: FILE * - m_OutputStream: FILE * -- + getErrorStream(): FILE * + getOutputStream(): FILE * } hide Wire methods class Signal { - isFired: bool -- + fire(): void + isFired(): bool } @enduml
c77bc003d5995117b2d413b62058bf477b6810ac
0ee676ceeff44ba4b842e9f0d529ba75a68b1975
/out/production/Laborator/Prototype_AbstractFactory/Pizza/Abstracts/Abstracts.plantuml
46be9d6a83675eb1f8dcbc7e272b9de214257153
[]
no_license
CalanceaCatalina/TMPS
d035c519851abeeeb40cd646b9e7d536f7baa183
7afc84126375e091bd9aad68dbfcf9138b0e0026
refs/heads/main
2023-04-07T11:20:57.909790
2021-04-18T19:59:46
2021-04-18T19:59:46
335,952,011
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,099
plantuml
@startuml title __ABSTRACTS's Class Diagram__\n namespace Prototype_AbstractFactory { namespace Pizza { namespace Abstracts { abstract class Prototype_AbstractFactory.Pizza.Abstracts.Pizza { + cheese : List<Cheese> + magic : List<Magic> + name : String + toppings : List<Toppings> {abstract} + Bake() {abstract} + Clone() + PrintRecipe() + addCheese() + addCrust() + addDough() + addMagic() + addName() + addSize() + addToppings() } } } } Prototype_AbstractFactory.Pizza.Abstracts.Pizza o-- Singleton.Enum.Crust : crust Prototype_AbstractFactory.Pizza.Abstracts.Pizza o-- Singleton.Enum.Dough : dough Prototype_AbstractFactory.Pizza.Abstracts.Pizza o-- Singleton.Enum.Size : size 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
c9619d30d8f6920e108a6101e5a090107833909b
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Services/cloud/Logical.puml
75aff477525aa843394719d8b57a366b7126fc89
[]
no_license
CAADE/edgeville
fd0053d749c259029ef4c7791210663ace87be21
6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65
refs/heads/master
2020-03-28T06:11:31.554585
2019-05-02T17:37:03
2019-05-02T17:37:03
147,819,682
0
0
null
null
null
null
UTF-8
PlantUML
false
false
191
puml
@startuml rectangle "Diagram TBD" @enduml package "cloud" #lightblue { interface "cloud" { } CLI ()-- "cloud" : 5000 REST ()-- "cloud" : 3000 Web ()-- "cloud" : 80 }
a26e31a8b79de9e41b8ccc2c2aaf86602fc298a8
92cdab63b794f5b5af7ab368c5b6f804171ac62b
/backend/architecture/class.puml
20f09354398d8fbb4df808b5d8ec0749c88a98f1
[ "MIT" ]
permissive
tasarozan/caravansary
201f02f8385f32c9cd73b91bccef9e6cd351a738
b065e9fb2fa3d9c646e1e00c70b91188980e96a4
refs/heads/main
2023-07-04T09:38:25.853783
2021-07-28T13:20:51
2021-07-28T13:20:51
363,892,025
2
0
MIT
2021-07-28T13:20:51
2021-05-03T10:23:13
JavaScript
UTF-8
PlantUML
false
false
691
puml
@startuml Caravansary class Person { firstName: string lastName: string age: number location: string bio: string bookRequests: Array vanBuddyRequests: Array listings: [Van] constructor(firstName: string, lastName: string, age: number, location: string) createVan(vanFeatures: Van) bookVan(photo: Photo) rentVan(van: Van) becomeVanBuddy(person: Person) } class Van { availability: Boolean description: String photos: Array reviews: Array price: Number rating: Number owner: Object constructor(location: string, price: number, owner: object, ) } Person "1"---> "0..*"Van : rent Van ---> "0..*" Person : rent Person --> Person : van buddy @enduml
9adbdefc1007735ad2a27a8ec4e576f0d0fdd22e
4bda6e432b9f7f3474a364aae04d9c8af7211f0f
/app/src/main/java/com/example/remoteCompiler/remoteCompiler.plantuml
11297f6ae6be92df22ee48c62c31055dbaa2d185
[]
no_license
kyczor/goCompiler
1c72c3aae975cdfc7fc949e8a775cf2beee2620f
95987c7372eafd311edcaf07cee68506e17d5f6a
refs/heads/master
2020-08-18T21:39:32.206767
2020-01-22T15:19:36
2020-01-22T15:19:36
215,836,797
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,434
plantuml
@startuml title __REMOTECOMPILER's Class Diagram__\n namespace com.example.remoteCompiler { class com.example.remoteCompiler.DisplayErrorsActivity { ~ dirPath : String ~ executePostReq : AsyncTask<Integer, Void, Void> ~ filePaths : ArrayList<String> ~ flags : String ~ mainFile : String ~ prevIntent : Intent # onActivityResult() # onCreate() - addItemsToDisplay() - createFixIntent() - decodeRes() - displayErrorButtons() - encodeAllFiles() - encodeB64File() - fileNamesToString() - parseErrors() - sendPostRequest() - startPostReqProcess() } } namespace com.example.remoteCompiler { class com.example.remoteCompiler.ErrorsData { + Errors : String + Ok : boolean + getCompiled() + getErrorsList() ~ ErrorsData() } } namespace com.example.remoteCompiler { class com.example.remoteCompiler.FixErrorsActivity { ~ cursorLine : int ~ et : EditText ~ fileName : String ~ filePath : String ~ intent : Intent # onCreate() - findFilePath() - tryAgain() - updateFile() } } namespace com.example.remoteCompiler { class com.example.remoteCompiler.MainActivity { ~ ACT_2_REQUEST : int ~ choicesList : List<String> ~ chooseMainBtn : Button ~ chosenFileNames : String[] ~ dirTV : TextView ~ errorListBtn : Button ~ filePaths : ArrayList<String> ~ flags : String ~ mainFileName : String ~ mainTV : TextView ~ selectedItems : HashMap<String, Integer> + onActivityResult() # onCreate() - displayFlagOptions() - displayMainPicker() - openActivityDispErr() - setChosenFileNames() - startFilePicker() } } com.example.remoteCompiler.DisplayErrorsActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.remoteCompiler.FixErrorsActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.remoteCompiler.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
0844cc0a8c395850ec8202c146e88e3ba2207aba
0b0cc264919d7b0c24bbf5315af546a121634a35
/optaweb-vehicle-routing-backend/src/main/java/org/optaweb/vehiclerouting/plugin/routing/routing.plantuml
8266b1b68a115b1358fe1f281b4ab0437a04fb81
[ "Apache-2.0" ]
permissive
mauriziocarioli/optaweb-vehicle-routing-distribution-8.6.0.Final
5c8f0eca20e3c25adfee969a3e422c87c5633e75
b84b8e88e8bbe01846b346e684587317922fb182
refs/heads/master
2023-06-06T14:12:23.409461
2021-06-21T20:42:03
2021-06-21T20:42:03
376,861,264
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,375
plantuml
@startuml title __ROUTING's Class Diagram__\n namespace org.optaweb.vehiclerouting { namespace plugin.routing { class org.optaweb.vehiclerouting.plugin.routing.AirDistanceRouter { {static} # KILOMETERS_PER_DEGREE : double {static} # MILLIS_IN_ONE_HOUR : long {static} # TRAVEL_SPEED_KPH : int + getBounds() + getPath() + travelTimeMillis() } } } namespace org.optaweb.vehiclerouting { namespace plugin.routing { class org.optaweb.vehiclerouting.plugin.routing.GraphHopperRouter { - graphHopper : GraphHopperOSM + getBounds() + getPath() + travelTimeMillis() ~ GraphHopperRouter() } } } namespace org.optaweb.vehiclerouting { namespace plugin.routing { class org.optaweb.vehiclerouting.plugin.routing.RoutingConfig { - graphDir : Path - graphHopperDir : Path {static} - logger : Logger - osmDir : Path - osmDownloadUrl : Optional<String> - osmFile : Path ~ RoutingConfig() {static} ~ downloadOsmFile() ~ graphHopper() - initDirs() } } } namespace org.optaweb.vehiclerouting { namespace plugin.routing { class org.optaweb.vehiclerouting.plugin.routing.RoutingEngineException { ~ RoutingEngineException() } } } namespace org.optaweb.vehiclerouting { namespace plugin.routing { class org.optaweb.vehiclerouting.plugin.routing.RoutingProperties { - ghDir : String - osmDir : String - osmDownloadUrl : Optional<String> - osmFile : String + getEngine() + getGhDir() + getOsmDir() + getOsmDownloadUrl() + getOsmFile() + setEngine() + setGhDir() + setOsmDir() + setOsmDownloadUrl() + setOsmFile() } } } namespace org.optaweb.vehiclerouting { namespace plugin.routing { enum RoutingEngine { AIR GRAPHHOPPER } } } org.optaweb.vehiclerouting.plugin.routing.AirDistanceRouter .up.|> org.optaweb.vehiclerouting.service.distance.DistanceCalculator org.optaweb.vehiclerouting.plugin.routing.AirDistanceRouter .up.|> org.optaweb.vehiclerouting.service.region.Region org.optaweb.vehiclerouting.plugin.routing.AirDistanceRouter .up.|> org.optaweb.vehiclerouting.service.route.Router org.optaweb.vehiclerouting.plugin.routing.GraphHopperRouter .up.|> org.optaweb.vehiclerouting.service.distance.DistanceCalculator org.optaweb.vehiclerouting.plugin.routing.GraphHopperRouter .up.|> org.optaweb.vehiclerouting.service.region.Region org.optaweb.vehiclerouting.plugin.routing.GraphHopperRouter .up.|> org.optaweb.vehiclerouting.service.route.Router org.optaweb.vehiclerouting.plugin.routing.RoutingProperties o-- org.optaweb.vehiclerouting.plugin.routing.RoutingProperties.RoutingEngine : engine org.optaweb.vehiclerouting.plugin.routing.RoutingProperties +-down- org.optaweb.vehiclerouting.plugin.routing.RoutingProperties.RoutingEngine 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
f91dc892a8196226b7a30a9797d2b16e45534a04
6e305cdc50a0b86ba4f0ea1bbb479f6b63857fa2
/runnerJavaFx.plantuml
3b2a978c7bad467ce8d4b2ba0b2e9b5e1607adea
[]
no_license
antoineTauvelENSEA/runnerJavaFx
4ac38d8a35424062bacedfb7986973567acdf3b7
b8ab43892061b3af006cca614a83153c478552d8
refs/heads/master
2023-08-25T21:40:51.213177
2021-10-21T08:37:38
2021-10-21T08:37:38
419,643,590
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,140
plantuml
@startuml title __RUNNERJAVAFX's Class Diagram__\n namespace packageRunner { class packageRunner.AnimatedSprite { } } namespace packageRunner { class packageRunner.Camera { } } namespace packageRunner { class packageRunner.Spring { } } namespace packageRunner { class packageRunner.demoRun { } } namespace packageRunner { abstract class packageRunner.movingThings { } } packageRunner.AnimatedSprite -up-|> packageRunner.movingThings packageRunner.Camera -up-|> packageRunner.movingThings packageRunner.Camera o-- packageRunner.AnimatedSprite : hero packageRunner.Spring o-- packageRunner.Camera : camera packageRunner.Spring o-- packageRunner.AnimatedSprite : hero packageRunner.demoRun -up-|> javafx.application.Application packageRunner.demoRun o-- packageRunner.Camera : camera packageRunner.demoRun o-- packageRunner.AnimatedSprite : hero 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
9362e5928d8ce36957773eb95786aa8d8f95aad8
4fb7e3ef2b429c6343e78f487da054b04491061c
/app/src/main/java/Diagrams/Controller Class Diagram.puml
ebd3723b3e13bf9cc74e6aa512ad435c2e266dc7
[]
no_license
Kayu/COEN390
cf36d113f9f27946f5a07979e32451da46f48d04
adb807ebe6c1ce3430328eff29fa2ef0110fe5e0
refs/heads/master
2016-08-12T19:29:35.302950
2016-04-14T22:00:38
2016-04-14T22:00:38
53,161,179
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,195
puml
@startuml package "Controller"{ class AppCompatPreferenceActivity{ - mDelegate: AppCompatDelegate # onCreate (savedInstanceState: Bundle) # onPostCreate (savedInstanceState: Bundle) + getSupportActionBar () : ActionBar + setSupportActionBar (toolbar: Toolbar) + getMenuInflater () : MenuInflater + setContentView (layoutResID: int) + setContentView (view: View) + setContentView (view: View, params: LayoutParams + addContentView (view: View, params: LayoutParams) # onPostResume () # onTitleChanged (title: CharSequence, color: int) + onConfigurationChanged (newConfig: Configuration) # onStop () # onDestroy () + invalidateOptionsMenu () - getDelegate () : AppCompatDelegate } class MainActivity{ - DatabaseTest: Button - latutude, longitude: Double - locationManager: LocationManager - {static} MY_PERMISSIONS_REQUEST_CALL_PHONE: int - gpsListener: MyLocListener # onPause () # onCreate (savedInstanceState: Bundle) } class MainActivityFragment{ + MainActivityFragment () + onCreateView (inflater: LayoutInflater, container: ViewGroup, savedInstanceState: Bundle) : View } class MapsActivity{ - mMap: GoogleMap - markerPoints: ArrayList<LatLng> - directionsList: ArrayList<String> # onPause () # onCreate (savedInstanceState: Bundle) + onMapReady (googleMap: GoogleMap) } class SettingsActivity{ - {static} sBindPreferenceSummaryToValueListener: OnPreferenceChangeListener - db: DbHelper - {static}isXLargeTablet (context: Context) : boolean - {static}bindPreferenceSummaryToValue (preference: Preference) # onCreate (savedInstanceState: Bundle) - setupActionBar () + onIsMultiPane () : boolean # isValidFragment (fragmentName: String) boolean } class TransitOptionsActivity{ # onPause () # onCreate (savedInstanceState: Bundle) } class AddressPreferenceFragment <<static>> { + onCreate(savedInstanceState: Bundle) + onOptionsItemSelected (item: MenuItem) : boolean } class BlockedContactsPreferenceFragment<<static>> { + onCreate(savedInstanceState: Bundle) + onOptionsItemSelected (item: MenuItem) : boolean } } SettingsActivity o-- AddressPreferenceFragment SettingsActivity o-- BlockedContactsPreferenceFragment AddressEditTextPreference <..AddressPreferenceFragment DeleteAddressConfirmationPreference <..AddressPreferenceFragment BlockedContactsEditTextPreference <..BlockedContactsPreferenceFragment DeleteBlockedContactsConfirmationPreference <..BlockedContactsPreferenceFragment DbHelper <-- MainActivity DbHelper <-- SettingsActivity MainActivity -- Direction MainActivity ..>UrlString MainActivity ..>MyLocListener MainActivity -- TransitOptionsActivity MainActivity..>JsonParser MainActivity--MainActivityFragment TransitOptionsActivity -- MapsActivity MainActivity -- SettingsActivity OutgoingCallReceiver<--MainActivity @enduml
94eda7e3cc9105199fdc3732ae54b354a0063ed2
af8463ed465ec2d12fedb4b0cfa0dc8a74d822a1
/samples/class-sample.puml
ba9d413cb385a188859a5aa44f54fdf8fae4db90
[ "MIT" ]
permissive
transtone/plantuml-style-c4
4797ac9e00eebfa6835735a0dee29707c7e15dee
ded2cd2e491e25220d015c6beacc7203836072e0
refs/heads/master
2020-07-19T19:39:12.070882
2019-09-06T00:52:15
2019-09-06T00:52:15
206,503,109
0
0
MIT
2019-09-05T07:33:42
2019-09-05T07:33:42
null
UTF-8
PlantUML
false
false
855
puml
@startuml class-sample !includeurl https://raw.githubusercontent.com/transtone/plantuml-style-c4/master/core.puml ' uncomment the following line and comment the first to use locally '!include core.puml !includeurl https://raw.githubusercontent.com/transtone/plantuml-style-c4/master/class-diagram-helper.puml ' uncomment the following line and comment the first to use locally '!include class-diagram-helper.puml GREY_ARROW abstract class BaseClass { + AbstractMethod() : void # VirtualMethod(s:string) : int } class SubClass { + AbstractMethod() : void # VirtualMethod(s:string) : int } interface IInterfaceA { } interface "IInterfaceA`1"<T> { Value : T <<get>> } class ImplementClass { + Value : int <<get>> } BaseClass <|-- SubClass IInterfaceA <|-- "IInterfaceA`1" "IInterfaceA`1" "<int>" <|-- ImplementClass @enduml
41307ad93c5b514ecca3faf666484f9a6c27a537
8cf018eb6de40017601592f1f125ea67d5de7086
/docs/Solution/Service-Stack/Connected-Car-Cloud/Streaming-Engine/Logical.puml
6e2a1134ee1174b3f5bf67ed5a3cbd903a9ffce3
[]
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
362
puml
@startuml package "Service-Stack/Connected-Car-Cloud/Streaming-Engine" { interface "Service-Stack/Connected-Car-Cloud/Streaming-Engine" { } CLI ()-- "Service-Stack/Connected-Car-Cloud/Streaming-Engine" REST ()-- "Service-Stack/Connected-Car-Cloud/Streaming-Engine" Web ()-- "Service-Stack/Connected-Car-Cloud/Streaming-Engine" } @enduml
76fceb4c02194ae52f4a2429a267958c1fb3c4c8
70fd78caa400c57c98b1ea4d277201cf5691c934
/test_2/app/src/main/java/com/example/test_2/test_2.plantuml
c33a622e4a05b45de4c1e8aa49c59a2d90841490
[]
no_license
lwy642473876/lwy_repository
7e263478b19387cd283b055a2b058a08b438d93c
a45bf7effa625b21fc0fe3e0a1e9bd1cc5dba0cf
refs/heads/master
2022-11-12T15:50:38.924369
2020-06-16T15:22:48
2020-06-16T15:22:48
272,736,926
0
0
null
null
null
null
UTF-8
PlantUML
false
false
832
plantuml
@startuml title __TEST_2's Class Diagram__\n namespace com.example.test_2 { class com.example.test_2.MainActivity { ~ mTopBar : QMUITopBar - exitTime : long + onBackPressed() # onCreate() } } namespace com.example.test_2 { class com.example.test_2.WelcomeActivity { {static} - TAG : String - handler : Handler - runnable : Runnable # onCreate() # onDestroy() } } com.example.test_2.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.test_2.WelcomeActivity -up-|> androidx.appcompat.app.AppCompatActivity right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
f131f3fc9c50705c8ca71f75da05302483122b25
8e3a49489ab53761f9d5548459b8d68af703af9e
/documentation/source/_static/diagram.puml
c550f59d91a89f761c67c76c1364f8a978d7638c
[]
permissive
pierre-24/goto-publication
209fcef473173666d476cc811be17fd39dea3d91
16ace493cc2a582535ce098aab4f0ddb58fd0beb
refs/heads/dev
2020-07-26T11:00:17.792226
2020-05-03T19:39:28
2020-05-03T19:39:28
208,623,228
0
0
MIT
2020-04-30T11:58:52
2019-09-15T16:32:44
Python
UTF-8
PlantUML
false
false
629
puml
@startuml class Journal { name: str identifier: str abbr: str +serialize() +get_url() +get_doi() } Journal -- "provider" Provider: provide < class Provider { {static} CODE: str {static} NAME: str {static} WEBSITE_URL: str {static} ICON_URL: str +get_url() +get_doi() +get_journals() } class Registry { +get_url() +get_doi() +suggest_journals() +add_journals_from_registry() } Registry --right "journals [0..*]" Journal: contains > Registry -- "providers [0..*]" Provider: uses > Springer --|> Registry Wiley --|> Registry Whatever --|> Registry @enduml
9b08e670e93a3330c1f50508ab96674957ea822f
f742676fd61427e7a51087ca645b3635b0dd7b50
/docs/user_assignments_alternative.puml
56202a769449ba99f4dae276dc606f23d77268f3
[]
no_license
PainNarrativesLab/PainPrayerProject
15fac3b833d7f3a4a94c6859d6043e51fee46436
c378402160da9e36f606ce8503746117e788eb4a
refs/heads/master
2021-01-10T16:03:26.017869
2015-06-30T03:49:36
2015-06-30T03:49:36
36,324,465
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,606
puml
@startuml class Assignment{ #startDate #stopDate #patient : User #agent : User #action_que : array --methods-- #checkScheduled() : Determines whether today is between start and stop dates +addAction(Task) : Pushes Task onto que +execute() : Executes Tasks from que } note left of Assignment Push an object with an execute() method onto the que with addAction() Then execute actions in the que with execute() end note interface Task{ +execute() +setUser(User) } class EmailPainRateRequest{ Sends a request to log on and complete pain questions. ==== +setEmailHandler() } class EmailPrayerRequest{ Sends a request to pray and report prayer. ==== +setEmailHandler() } class EmailPrayerSubstituteRequest{ Sends a request to fill in and pray for a random person. } class PainRateTask{ Launches the process for rating and recording pain in response to request sent by EmailPainRateRequest ==== +setFrontController() } class PrayerTask{ Launches the process for recording a prayer in response to EmailPrayerRequest ==== +setFrontController() } class PrayedNotifyTask{ Emails someone that they have been prayed for. ==== +setEmailHandler() } class StageHandler{ #studyStage : Integer +loadAssignment() +checkStudyStage() } EmailPainRateRequest -left-|> Task EmailPrayerRequest -left-|> Task EmailPrayerSubstituteRequest -left-|> Task PainRateTask -up-|> Task PrayerTask -up-|> Task PrayedNotifyTask -right-|> Task Assignment --* Task @enduml
5876e9f37a7e4aa79043da95c1ab46ce25164634
8ab3265c0db3eef67c98134f35e5b4d40be64bea
/src/main/resources/DIP-0.puml
b3a2eff85879355e395006361e4bcc9e4e1cac0c
[]
no_license
taoes/DesignPattern
6826bc6dbb190e9233fef0cf0f2c9bf766efd2a7
903a46a60833762cdda0d78b88cf01f4f9aee94c
refs/heads/master
2021-05-23T12:42:00.744517
2020-04-12T13:37:03
2020-04-12T13:37:03
253,290,931
0
0
null
null
null
null
UTF-8
PlantUML
false
false
218
puml
@startuml class Driver <<驾驶员>> { + void drive(BenZ benz); } class BenZ <<奔驰汽车>>{ + void run(int speed); } class Client{ + void main() } Driver *-- BenZ Driver <-- Client BenZ <-- Client @enduml
9c897cd4b23bbf4bd10fe6231f8c90f4f32ac4aa
c1ed3cd15504b46ae398e7fb1c336cc5f7128844
/class_diagrams/diagram.puml
690456701cb7a3532ca84b351493f5a6509829f0
[ "MIT" ]
permissive
linvieson/emotions-recognition
edbf253561e80d6fdd6e49b75fe02b539a475e4f
33b5935d6b14203b0fc51b8a9ed6221feaac3d51
refs/heads/main
2023-04-21T03:55:51.964707
2021-05-17T19:57:06
2021-05-17T19:57:06
354,012,724
5
0
MIT
2021-04-29T16:15:19
2021-04-02T12:28:11
Python
UTF-8
PlantUML
false
false
876
puml
@startuml 'https://plantuml.com/class-diagram class Emotion{ - __emotions: str - __percentage: float - __life_average: float + emotions: str + percentage: float + life_average: float - __get_life_average(self) + __str__(self) -> str } class Image{ - __link: str - __all_attributes: dict - __emotions: List[Emotion] - __picture: Picture - __rectangle: Coordinate + all_attributes: dict + emotions: List[Emotion] + picture: Picture + rectangle: Coordinate - __parse_image_info(self) } class InstagramPage { - __link: str - __photos: List[Image] - __happiest_photo: Picture - __average_emotions: List[Emotion] + photos: List[Image] + happiest_photo: Picture + average_emotions: List[Emotion] - __parse_page_info(self) -> List[Emotion] + relative_fakeness(self) + write_to_file(self) + visualize(self) } Image o-- Emotion InstagramPage o-- Emotion InstagramPage o-- Image @enduml
347f84496d9abc078b2186f2625ec9f89952a454
1b813fa269905437f07e527c5daaf5a6ea7f5f03
/docs/plantuml/example_class-diagram.puml
57b6e6f0ab90f00122b10226e9c540e9395edaa6
[]
no_license
s80475/htw-se-example-project
719e6ecccfe85ba6d5bc34f985e28ec76a3aa5a4
6cf7df936b2aaea6a2e233e5882edfcb96f07db4
refs/heads/main
2023-03-28T20:20:06.392728
2021-03-30T08:21:52
2021-03-30T08:21:52
305,181,982
0
0
null
2021-03-30T08:18:34
2020-10-18T19:39:00
null
UTF-8
PlantUML
false
false
802
puml
@startuml example-class-diagram class MyService { -repository : MyRepository +MyService(MyRepository) +getProcessedStudents() : List +getProcessedMarks() : List } interface MyRepository <<interface>> { +getStudents() : List +getMarks() : List } class DictionaryRepository { -data : TestData +getStudents() : List +getMarks() : List } class TestData { #students : Dictionary #marks : Dictionary +generateKey(Student, SubjectMark) : String } class MsSqlRepository { -connection : OdbcConnection +getStudents() : List +getMarks() : List } MyService --> "1" MyRepository MyRepository <|.. DictionaryRepository MyRepository <|.. MsSqlRepository TestData "1" <- DictionaryRepository note left of MyRepository: Interface for local test data\nand different databases @enduml
b795786dba04274dd5a44c155f3108df63d866fa
2099ea9bcbc7ae9c8c28d59f9e0fffbf478c1f03
/UML/vendor/yiisoft/yii2-redis.puml
4076f67e838a5a2c153fd25baac4976d3df913da
[]
no_license
adipriyantobpn/UML-diagram-for-some-PHP-packages
b3e3ed8e8898e4a5d56f0647cfbedaaa9d2dbdd5
0a9308fbd2d544c8f64a37cf9f11011edfc40ace
refs/heads/master
2021-08-19T19:24:34.948176
2017-11-27T07:48:10
2017-11-27T07:48:10
112,164,778
0
0
null
null
null
null
UTF-8
PlantUML
false
false
10,294
puml
@startuml skinparam handwritten true class yii.redis.ActiveQuery { +{static}EVENT_INIT = "init" +all(db : Connection = null) : array|ActiveRecord[] +average(column : string, db : Connection = null) : int +column(column : string, db : Connection = null) : array +count(q : string = "*", db : Connection = null) : int #executeScript(db : Connection|null, type : string, columnName : string = null) : array|bool|null|string +exists(db : Connection = null) : bool -findByPk(db : Connection, type : string, columnName : string = null) : array|bool|null|string +init() +max(column : string, db : Connection = null) : int +min(column : string, db : Connection = null) : int +one(db : Connection = null) : ActiveRecord|array|null +scalar(attribute : string, db : Connection = null) : string +sum(column : string, db : Connection = null) : int +__construct(modelClass : array, config : array = []) } class yii.redis.ActiveQuery extends yii.base.Component class yii.redis.ActiveQuery implements yii.db.ActiveQueryInterface class yii.redis.ActiveRecord { +attributes() : array +{static}buildKey(key : mixed) : string +{static}deleteAll(condition : array = null) : int -{static}fetchPks(condition) +{static}find() : ActiveQuery +{static}getDb() : Connection +insert(runValidation = true, attributes = null) +{static}keyPrefix() : string +{static}primaryKey() : string[] +{static}updateAll(attributes : array, condition : array = null) : int +{static}updateAllCounters(counters : array, condition : array = null) : int } class yii.redis.ActiveRecord extends yii.db.BaseActiveRecord class yii.redis.Cache { +redis : Connection|string|array = "redis" #addValue(key, value, expire) #deleteValue(key) +exists(key : mixed) : bool #flushValues() #getValue(key) #getValues(keys) +init() #setValue(key, value, expire) #setValues(data, expire) } class yii.redis.Cache extends yii.caching.Cache class yii.redis.Connection { +{static}EVENT_AFTER_OPEN = "afterOpen" +connectionTimeout : float +database : integer = 0 +dataTimeout : float +hostname : string = "localhost" +password : string +port : integer = 6379 +redisCommands : array = [ \t0 => "APPEND", \t1 => "AUTH", \t2 => "BGREWRITEAOF", \t3 => "BGSAVE", \t4 => "BITCOUNT", \t5 => "BITFIELD", \t6 => "BITOP", \t7 => "BITPOS", \t8 => "BLPOP", \t9 => "BRPOP", \t10 => "BRPOPLPUSH", \t11 => "CLIENT KILL", \t12 => "CLIENT LIST", \t13 => "CLIENT GETNAME", \t14 => "CLIENT PAUSE", \t15 => "CLIENT REPLY", \t16 => "CLIENT SETNAME", \t17 => "CLUSTER ADDSLOTS", \t18 => "CLUSTER COUNTKEYSINSLOT", \t19 => "CLUSTER DELSLOTS", \t20 => "CLUSTER FAILOVER", \t21 => "CLUSTER FORGET", \t22 => "CLUSTER GETKEYSINSLOT", \t23 => "CLUSTER INFO", \t24 => "CLUSTER KEYSLOT", \t25 => "CLUSTER MEET", \t26 => "CLUSTER NODES", \t27 => "CLUSTER REPLICATE", \t28 => "CLUSTER RESET", \t29 => "CLUSTER SAVECONFIG", \t30 => "CLUSTER SETSLOT", \t31 => "CLUSTER SLAVES", \t32 => "CLUSTER SLOTS", \t33 => "COMMAND", \t34 => "COMMAND COUNT", \t35 => "COMMAND GETKEYS", \t36 => "COMMAND INFO", \t37 => "CONFIG GET", \t38 => "CONFIG REWRITE", \t39 => "CONFIG SET", \t40 => "CONFIG RESETSTAT", \t41 => "DBSIZE", \t42 => "DEBUG OBJECT", \t43 => "DEBUG SEGFAULT", \t44 => "DECR", \t45 => "DECRBY", \t46 => "DEL", \t47 => "DISCARD", \t48 => "DUMP", \t49 => "ECHO", \t50 => "EVAL", \t51 => "EVALSHA", \t52 => "EXEC", \t53 => "EXISTS", \t54 => "EXPIRE", \t55 => "EXPIREAT", \t56 => "FLUSHALL", \t57 => "FLUSHDB", \t58 => "GEOADD", \t59 => "GEOHASH", \t60 => "GEOPOS", \t61 => "GEODIST", \t62 => "GEORADIUS", \t63 => "GEORADIUSBYMEMBER", \t64 => "GET", \t65 => "GETBIT", \t66 => "GETRANGE", \t67 => "GETSET", \t68 => "HDEL", \t69 => "HEXISTS", \t70 => "HGET", \t71 => "HGETALL", \t72 => "HINCRBY", \t73 => "HINCRBYFLOAT", \t74 => "HKEYS", \t75 => "HLEN", \t76 => "HMGET", \t77 => "HMSET", \t78 => "HSET", \t79 => "HSETNX", \t80 => "HSTRLEN", \t81 => "HVALS", \t82 => "INCR", \t83 => "INCRBY", \t84 => "INCRBYFLOAT", \t85 => "INFO", \t86 => "KEYS", \t87 => "LASTSAVE", \t88 => "LINDEX", \t89 => "LINSERT", \t90 => "LLEN", \t91 => "LPOP", \t92 => "LPUSH", \t93 => "LPUSHX", \t94 => "LRANGE", \t95 => "LREM", \t96 => "LSET", \t97 => "LTRIM", \t98 => "MGET", \t99 => "MIGRATE", \t100 => "MONITOR", \t101 => "MOVE", \t102 => "MSET", \t103 => "MSETNX", \t104 => "MULTI", \t105 => "OBJECT", \t106 => "PERSIST", \t107 => "PEXPIRE", \t108 => "PEXPIREAT", \t109 => "PFADD", \t110 => "PFCOUNT", \t111 => "PFMERGE", \t112 => "PING", \t113 => "PSETEX", \t114 => "PSUBSCRIBE", \t115 => "PUBSUB", \t116 => "PTTL", \t117 => "PUBLISH", \t118 => "PUNSUBSCRIBE", \t119 => "QUIT", \t120 => "RANDOMKEY", \t121 => "READONLY", \t122 => "READWRITE", \t123 => "RENAME", \t124 => "RENAMENX", \t125 => "RESTORE", \t126 => "ROLE", \t127 => "RPOP", \t128 => "RPOPLPUSH", \t129 => "RPUSH", \t130 => "RPUSHX", \t131 => "SADD", \t132 => "SAVE", \t133 => "SCARD", \t134 => "SCRIPT DEBUG", \t135 => "SCRIPT EXISTS", \t136 => "SCRIPT FLUSH", \t137 => "SCRIPT KILL", \t138 => "SCRIPT LOAD", \t139 => "SDIFF", \t140 => "SDIFFSTORE", \t141 => "SELECT", \t142 => "SET", \t143 => "SETBIT", \t144 => "SETEX", \t145 => "SETNX", \t146 => "SETRANGE", \t147 => "SHUTDOWN", \t148 => "SINTER", \t149 => "SINTERSTORE", \t150 => "SISMEMBER", \t151 => "SLAVEOF", \t152 => "SLOWLOG", \t153 => "SMEMBERS", \t154 => "SMOVE", \t155 => "SORT", \t156 => "SPOP", \t157 => "SRANDMEMBER", \t158 => "SREM", \t159 => "STRLEN", \t160 => "SUBSCRIBE", \t161 => "SUNION", \t162 => "SUNIONSTORE", \t163 => "SWAPDB", \t164 => "SYNC", \t165 => "TIME", \t166 => "TOUCH", \t167 => "TTL", \t168 => "TYPE", \t169 => "UNSUBSCRIBE", \t170 => "UNLINK", \t171 => "UNWATCH", \t172 => "WAIT", \t173 => "WATCH", \t174 => "ZADD", \t175 => "ZCARD", \t176 => "ZCOUNT", \t177 => "ZINCRBY", \t178 => "ZINTERSTORE", \t179 => "ZLEXCOUNT", \t180 => "ZRANGE", \t181 => "ZRANGEBYLEX", \t182 => "ZREVRANGEBYLEX", \t183 => "ZRANGEBYSCORE", \t184 => "ZRANK", \t185 => "ZREM", \t186 => "ZREMRANGEBYLEX", \t187 => "ZREMRANGEBYRANK", \t188 => "ZREMRANGEBYSCORE", \t189 => "ZREVRANGE", \t190 => "ZREVRANGEBYSCORE", \t191 => "ZREVRANK", \t192 => "ZSCORE", \t193 => "ZUNIONSTORE", \t194 => "SCAN", \t195 => "SSCAN", \t196 => "HSCAN", \t197 => "ZSCAN" ] +socketClientFlags : integer = 4 +unixSocket : string -_socket : resource = false +close() +executeCommand(name : string, params : array = []) : array|bool|null|string +getDriverName() : string +getIsActive() : bool +getLuaScriptBuilder() : LuaScriptBuilder #initConnection() +open() -parseResponse(command : string) : mixed +__call(name : string, params : array) : mixed +__sleep() : array } class yii.redis.Connection extends yii.base.Component class yii.redis.LuaScriptBuilder { -addColumn(column : string, columns : array) : string -build(query : ActiveQuery, buildResult : string, return : string) : string +buildAll(query : ActiveQuery) : string -buildAndCondition(operator, operands, columns) +buildAverage(query : ActiveQuery, column : string) : string -buildBetweenCondition(operator, operands, columns) +buildColumn(query : ActiveQuery, column : string) : string #buildCompositeInCondition(operator, inColumns, values, columns) +buildCondition(condition : string|array, columns : array) : string +buildCount(query : ActiveQuery) : string -buildHashCondition(condition, columns) -buildInCondition(operator, operands, columns) -buildLikeCondition(operator, operands, columns) +buildMax(query : ActiveQuery, column : string) : string +buildMin(query : ActiveQuery, column : string) : string -buildNotCondition(operator, operands, params) +buildOne(query : ActiveQuery) : string +buildSum(query : ActiveQuery, column : string) : string -quoteValue(str : string) : string } class yii.redis.LuaScriptBuilder extends yii.base.Object class yii.redis.Mutex { +expire : int = 30 +keyPrefix : string +redis : Connection|string|array = "redis" -_lockValues : array = [] #acquireLock(name : string, timeout : int = 0) : bool #calculateKey(name : string) : string +init() #releaseLock(name : string) : bool } class yii.redis.Mutex extends yii.mutex.Mutex class yii.redis.Session { +keyPrefix : string +redis : Connection|string|array = "redis" #calculateKey(id : string) : string +destroySession(id : string) : bool +getUseCustomStorage() : bool +init() +readSession(id : string) : string +writeSession(id : string, data : string) : bool } class yii.redis.Session extends yii.web.Session @enduml
b8ed1bbeb4df9a9c9048b72172c88ed4d453d276
c815f9c82c1400f76243750cd0ec609d217b9943
/private-class-data/etc/private-class-data.urm.puml
ad35c0bddeb965588d417a70422da10ff3e34c1a
[ "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
838
puml
@startuml package com.iluwatar.privateclassdata { class StewData { - numCarrots : int - numMeat : int - numPeppers : int - numPotatoes : int + StewData(numPotatoes : int, numCarrots : int, numMeat : int, numPeppers : int) + getNumCarrots() : int + getNumMeat() : int + getNumPeppers() : int + getNumPotatoes() : int } class App { + App() + main(args : String[]) {static} } class Stew { - numCarrots : int - numMeat : int - numPeppers : int - numPotatoes : int + Stew(numPotatoes : int, numCarrots : int, numMeat : int, numPeppers : int) + mix() + taste() } class ImmutableStew { - data : StewData + ImmutableStew(numPotatoes : int, numCarrots : int, numMeat : int, numPeppers : int) + mix() } } ImmutableStew --> "-data" StewData @enduml
87d824cfd29134784cc954531278822cba5ccba8
e4693a606f7392151681abc4f6c5f0ba9f252fab
/de.gematik.ti.cardreader.provider.pcsc/doc/plantuml/PCSCCRP/PCSCCardReaderProvider.plantuml
0472f207fca75e4e24b33ca948736e5d9d21e43c
[ "Apache-2.0" ]
permissive
gematik/ref-CardReaderProvider-PCSC
52683986e5e10589a4b4605c008104a3ddc9e144
82e85b22ee81fab33e81171f5b70656f9750e1c4
refs/heads/master
2022-01-12T16:05:18.890812
2022-01-07T07:24:35
2022-01-07T07:24:35
214,092,461
1
0
null
null
null
null
UTF-8
PlantUML
false
false
336
plantuml
@startuml package de.gematik.ti.cardreader.provider.pcsc.control { class CardReaderProvider { - providerDescriptor : ProviderDescriptor + CardReaderProvider() + getCardReaderController() + getDescriptor() } } CardReaderProvider -up-|> ICardReaderControllerProvider @enduml
14b073dc08378bbebd79db90a33e9acd67fd1b0d
21107fc0d9eec51cda78e09681266edd7d20e420
/uml/uml.puml
5fbfe37c82c769842609b45b9ad9f39599b34e6a
[]
no_license
kazitown/ar.core
9f7e5158a9fc9c55571065cf184e43ae5a049444
9f95200482842c28481384ed8fc8893686c30e1d
refs/heads/master
2022-04-11T15:34:23.732664
2020-03-16T11:41:21
2020-03-16T11:41:21
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,230
puml
@startuml class AR{ -Tracking *trackingInstance -Recognition *recognitionInstance +std::vector<QueryItem> process(cv::Mat frame) +void startTracking(const cv::Mat &frame, const ObjectPosition &pose) +bool keepTracking(const cv::Mat &frame) +Tracking *getTrackingInstance() +int addAndCreate(std::vector<cv::Mat> imgs) +int add(cv::Mat img) +int create() } class FeatureDB{ -cv::Ptr<cv::DescriptorMatcher> descriptorMatcher -float RADIUS -const int KNN_SIZE +void addFeatures(const cv::Mat &feature) +void create(int amountCluster) +void clear() +cv::Mat search(const cv::Mat &feature) +int size() const } class Recognition{ -cv::Ptr<cv::FeatureDetector> featureDetector -FeatureDB *vw -int imageAmount -int featureAmount -int MIN_MATCH -float MIN_PROBABILITY -float DISTANTION_TOLERANCE -std::multimap<int, FeatureInfo> featureStore -std::map<int, cv::KeyPoint> keyPointStore -std::map<int, ImageInfo> imageInfoStore -std::map<int, std::vector<FeatureVote> *> voteStorage +void addAndCreateBagOfVisualWords(const std::vector<cv::Mat> &imgs, int numClusters) +void addVisualWord(const cv::Mat &img) +void createBagOfVisualWords(int numClusters) +int addTrackImage(const cv::Mat &img) +std::vector<QueryItem> queryImage(const cv::Mat &img, int amountRes) +float probDistribution(int numFeatures, int numMatch, float pp) -void extractFeatures(const cv::Mat &img, std::vector<cv::KeyPoint> &keyPoints, cv::Mat &descriptor) -int getFeatureIds(const cv::Mat &descriptor, std::vector<int> &ids) -int storeImageFeatures(int id, const cv::Size &size, std::vector<cv::KeyPoint> keyPoints, std::vector<int> ids) -int getCandidateKpId() -std::vector<QueryItem> searchImageId(std::vector<cv::KeyPoint> keyPoints, std::vector<int> ids, cv::Size size, int amountWords, int amountRes) -void voteQueryFeatures(std::vector<cv::KeyPoint> keyPoints, std::vector<int> ids) -void clearVote() -std::vector<QueryItem> getMatchResults(std::vector<cv::KeyPoint> keyPoints, int amountWords) -std::vector<QueryItem>filterGeomResults(std::vector<cv::KeyPoint> keyPoints, std::vector<QueryItem> pre, cv::Size size, int amountRes) -void findPointPair(std::vector<cv::KeyPoint> keyPoints, std::vector<FeatureVote> voteTable, std::vector<cv::Point2f> &q, std::vector<cv::Point2f> &r) } class Tracking{ +ObjectPosition objectPosition +std::vector<cv::Point2f> corners -cv::Mat prevFrame -cv::Mat homography -int MIN_FEATURE_POINTS -int maxAmountCorners -double minQualityCorners -double minDistanceCorners -std::vector<uchar> opticalFlowStatus +{static}Tracking *create() +void start(const cv::Mat &frame, const ObjectPosition &pos) +bool keepTracking(const cv::Mat &frame) +cv::Mat getHomography() } class CvUtils{ +{static}cv::Mat createMask(cv::Size size, const ObjectPosition &pose) +{static}cv::Mat pointsToMat(const ObjectPosition &v) +{static}template <typename T, typename F> static std::vector<T> convertVecType(const std::vector<F> &v) +{static}bool ptsInsideFrame(const cv::Size &size, const std::vector<cv::Point2f> &pts) +{static}bool _ptsInsideFrame(const cv::Size &size, const std::vector<cv::Point2f> &pts) +{static}bool proveRect(std::vector<cv::Point2f> &pts) +{static}bool _proveRect(std::vector<cv::Point2f> &pts) +{static}bool isInsideRect(const std::vector<cv::Point2f> &rect, const cv::Point2f &pt) +{static}int _amountGoodPtInsideRect(std::vector<cv::Point2f> &points, std::vector<cv::Point2f> &corner_pts, std::vector<unsigned char> &status) +{static}std::vector<cv::Point2f> calcObjPos(const ObjectPosition &pos, cv::Mat &homo) +{static}std::vector<cv::Point2f> transformMarkerCoordToObjectCoord(cv::Size size, cv::Mat mat) +{static}std::vector<cv::Point2f> scalePoints(std::vector<cv::Point2f> &point_vec, double scale) } AR "1" --> "1" Recognition AR "1" --> "1" Tracking Recognition "1" --> "1" FeatureDB Recognition "<use>" ..> CvUtils Tracking "<use>" ..> CvUtils @enduml
12d793d5a59886f6b38c7321208119951ea220d7
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/CustomerTitleSetMessage.puml
a5fd83051f2fc8b840bbd8a55b8566714463561f
[]
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,145
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 CustomerTitleSetMessage [[CustomerTitleSetMessage.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]] title: String } 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
41cdc1c5709dd755c069a9478e7c63964a495183
ed45ea4470bcfc497e2584697d7842a540e04fd9
/ros2/navigation2/nav2_util/string_utils.puml
b7b197c8d93c4e76b96b5643c565f223a92ebf9d
[]
no_license
cf-zhang/documents
ffcd8213587f8aa9c47406cf2491bf77beec9c33
8a4439932017b67fba7988ff7fadd9829bce1e4c
refs/heads/master
2022-03-03T13:52:27.333343
2022-02-25T11:31:22
2022-02-25T11:31:22
154,789,912
11
1
null
null
null
null
UTF-8
PlantUML
false
false
279
puml
@startuml 'https://plantuml.com/class-diagram namespace nav2_util{ class StringUtils{ -- public method -- typedef std::vector<std::string> Tokens; std::string strip_leading_slash(const std::string & in); Tokens split(const std::string & tokenstring, char delimiter); } } @enduml