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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7e1209d484667f9cfda40d0597c504398924c902
|
4ab23430978ddbd0021e7ca928cf0132d5b0fe0a
|
/doc/bobject.puml
|
4329bddd53377bd403525dcfbf0ddda22c8342d0
|
[
"MIT"
] |
permissive
|
moneytech/bobject
|
0ebca8ad1d4cad9efa40f4a1ede2689b96b9cd57
|
de0afc7c904ddbf415ce738b588d51c001fe356c
|
refs/heads/master
| 2020-12-26T23:14:47.661920
| 2018-08-13T17:32:18
| 2018-08-13T17:32:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,678
|
puml
|
@startuml
class BObjectKlass << (S,#FF7700) Singleton >> {
BaseKlass *parent
BObjectVtable *vtable
const size_t size
const size_t vtab_size
const char *type_name
bool initialized
void (* const initializer)(void *)
void (* const ctor)(void *, void *p)
void (* const dtor)(void *)
bo_copy_result (* const copy)(void *, void *)
}
class BObjectVtable << (S,#FF7700) Singleton >>
class MyObjectKlass << (S,#FF7700) Singleton >> {
BObjectKlass *parent
MyObjectVtable *vtable
const size_t size
const size_t vtab_size
const char *type_name
bool initialized
void (* const initializer)(void *)
void (* const ctor)(void *, void *p)
void (* const dtor)(void *)
bo_copy_result (* const copy)(void *, void *)
}
class MyObjectVtable << (S,#FF7700) Singleton >> {
BObjectVtable BObjectVtable
}
class BObject {
Klass *type
bo_atomic_int ref_count;
}
class MyObject {
BObject base
...
}
BObjectKlass --> BObjectVtable
MyObjectKlass --> MyObjectVtable
BObjectKlass <-- MyObjectKlass
MyObjectVtable *--> BObjectVtable
BObject --> MyObjectKlass
MyObject *--> BObject
note top of BObjectKlass
Global static class table shared
between every instance of BObject
objects.
end note
note left of MyObjectKlass
Global static class table shared
between every instance of MyObject
objects. (Class type derived from
BObject base class type)
end note
note left of BObject
Base BObject instance containing
only pointer to the class definition
table.
end note
note left of MyObject
User defined custom object type
(derived from BObject). Base object
data comes first fallowed by user
date needed by object.
end note
@enduml
|
22e22bb0d135bedb3eab2e7b2f2d52ac5410733c
|
642e7066beeaccb2555e4abfd2abf743c4fa6baa
|
/sharkpylib/file/file_class_diagram.plantuml
|
586b39a593fbea8fcf3f1b8aa7ce28d2be4e777f
|
[
"MIT"
] |
permissive
|
sharksmhi/sharkpylib
|
4938f1e8cea1fa3f9e71c94f6c78661401cef47f
|
8a0d4aada53d1b65f3b497519f59a4418e3d40a0
|
refs/heads/master
| 2023-06-17T17:13:18.855640
| 2023-05-25T09:52:31
| 2023-05-25T09:52:31
| 152,534,620
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,349
|
plantuml
|
class files.MappingFile #0BC388 {}
class files.SynonymFile #0BC388 {}
class files.ListFile #0BC388 {}
class files.MultiListFile #0BC388 {}
class file_handlers.Directory #E4C187 {}
class file_handlers.MappingDirectory #E4C187 {}
class file_handlers.SynonymDirectory #E4C187 {}
class file_handlers.ListDirectory #E4C187 {}
class file_handlers.MultiListDirectory #E4C187 {}
class file_handlers.SamplingTypeSettingsDirectory #E4C187 {}
class yaml_reader.YAMLreader #4D7440 {}
files.MappingFile <|-- object
files.SynonymFile <|-- object
files.ListFile <|-- object
files.MultiListFile <|-- object
file_handlers.Directory <|-- object
file_handlers.MappingDirectory <|-- file_handlers.Directory
file_handlers.SynonymDirectory <|-- file_handlers.Directory
file_handlers.ListDirectory <|-- file_handlers.Directory
file_handlers.MultiListDirectory <|-- file_handlers.Directory
file_handlers.SamplingTypeSettingsDirectory <|-- file_handlers.Directory
files.MultiListFile o-- files.ListFile
files.MultiListFile o-- files.ListFile
files.MultiListFile o-- files.MultiListFile
file_handlers.MappingDirectory o-- files.MappingFile
file_handlers.SynonymDirectory o-- files.SynonymFile
file_handlers.ListDirectory o-- files.ListFile
file_handlers.MultiListDirectory o-- files.ListFile
file_handlers.MultiListDirectory o-- files.MultiListFile
|
ceddefe254b322842453a140241d1baa3ca56277
|
1c7b0221d9c3b737f13dbf4a08500e18ce7a01e8
|
/classDiagram_vaccnow.puml
|
2f8b7501c439a13bd7baa127915837139c336ea2
|
[] |
no_license
|
ankitech/vaccnow
|
69382ab8b6c1dc8597a4b686cb462100cb6976c7
|
49cf5cae11de05943d98e1fc086661a6c06ebf0f
|
refs/heads/master
| 2023-02-16T05:38:26.922648
| 2021-01-18T10:54:34
| 2021-01-18T10:54:34
| 328,861,326
| 1
| 1
| null | 2021-01-18T10:54:35
| 2021-01-12T03:30:21
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 568
|
puml
|
@startuml
class Vaccine {
String id
String name
int cost
getter()
setter()
}
class Branch {
String id
String name
Location location
getter()
setter()
}
class Allocation {
String id
int count
String branchId
String vaccineId
getter()
setter()
}
class Slots{
String id
String branchId
Date from
Date to
getter()
setter()
}
class Schedule{
String id
String email
String allocationId
String slotId
boolean isApplied
Date appliedOn
Payment paymentType
String BranchId
getter()
setter()
}
enum Location {
Delhi
Mumbai
Pune
}
enum Payment {
Cash
Credit
Fawry
}
@enduml
|
5cbad79637ea12bc70ab17a9ab0a8f8297f1c209
|
740ec837551b09f09677854163ecd30ba6ea3cb7
|
/documents/sd/plantuml/application/Common/Shared/Utility/FilePath.puml
|
6c891eb72963364c4e15d94b94f7432c5d693c87
|
[
"MIT"
] |
permissive
|
insightmind/MORR
|
913c0c16d14745cbde40af07322ca339a0373f32
|
0830f2155fb3b32dc127587e07cbd780deb0e118
|
refs/heads/develop
| 2020-12-08T00:23:17.488431
| 2020-04-05T20:50:44
| 2020-04-05T20:50:44
| 232,827,908
| 5
| 1
|
MIT
| 2020-04-05T20:55:27
| 2020-01-09T14:28:48
|
HTML
|
UTF-8
|
PlantUML
| false
| false
| 191
|
puml
|
@startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
class FilePath {
+ <<create>> FilePath(value: string)
+ ToString() : string
}
!endsub
@enduml
|
b34d0336cde42bc725987880cde967610bc98bf8
|
4e66b60562009e54e3249595d08d88573c1d7fba
|
/uml/Initializer.puml
|
8d84447c9b202e9b9eaa2078eaa3c39097fac2c2
|
[
"MIT"
] |
permissive
|
pierre3/PlantUmlClassDiagramGenerator
|
a17a7ec5e3b547b0a9d5afee1d74436c6d602782
|
00bd84d543a14f05c95857426060e677c4668cc8
|
refs/heads/master
| 2023-07-06T01:15:15.436366
| 2023-05-31T13:39:56
| 2023-06-02T10:24:02
| 41,860,665
| 598
| 123
|
MIT
| 2023-08-20T06:56:51
| 2015-09-03T13:17:42
|
C#
|
UTF-8
|
PlantUML
| false
| false
| 123
|
puml
|
@startuml
class ClassC {
- fieldA : int = 123
+ Pi : double <<get>> = 3.14159
# Items : List<string>
}
@enduml
|
766425c18da0006ede2314b770de6bcb936205be
|
63114b37530419cbb3ff0a69fd12d62f75ba7a74
|
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Manipulators/TimeAreaAutoPanner.puml
|
e3e23015759cb67fee0c5118176a57cf9e744d00
|
[] |
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
| 435
|
puml
|
@startuml
class TimeAreaAutoPanner {
<<const>> k_PixelDistanceToMaxSpeed : float = 100.0f
<<const>> k_MaxPanSpeed : float = 30.0f
+ TimeAreaAutoPanner(state:WindowState)
+ OnGUI(evt:Event) : void
{static} GetPanFactor(v:float, min:float, max:float, factor:float) : bool
}
TimeAreaAutoPanner --> "m_State" WindowState
TimeAreaAutoPanner --> "m_Window" TimelineWindow
TimeAreaAutoPanner --> "m_ViewRect" Rect
@enduml
|
dbbcd574f78e12a717796596934791aed911ba83
|
53c83bfc08359f58ec5ac6a7568e9e06e2033780
|
/src/main/resources/Strategy.puml
|
5635d16f32abf6b712c416b823f19371ab0d2d7d
|
[] |
no_license
|
gongyu-lightmatter/The-Zen-of-Design-Patterns
|
f33388b24cbd0210661fb1feb6e17aa73ad6f773
|
91ec8eb4c3fad0237245006fa77002c93a610a6e
|
refs/heads/master
| 2022-03-26T01:44:02.663369
| 2019-12-25T15:52:54
| 2019-12-25T15:52:54
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 609
|
puml
|
@startuml
class Client{
+ {static} void main(String[] args);
}
note left of Client:使用场景,调用上下文
interface IStrategy{
+ void operate();
}
note left of IStrategy:策略接口
class Strategy1 implements IStrategy{
+ void operate();
}
class Strategy2 implements IStrategy{
+ void operate();
}
class Strategy3 implements IStrategy{
+ void operate();
}
note bottom of Strategy1:具体策略实现
class Context{
- IStrategy iStrategy;
+ Context(IStrategy iStrategy);
+ void operate();
}
note top of Context:挑选策略的上下文
IStrategy <.. Context
Context <.. Client
@enduml
|
705be8d7c08197f78ef2e4c19c492687bb47c317
|
8dcbfd647299e16df56bf81cf6c7de3a948f42af
|
/DiagramaClasesGuerrero.puml
|
912fa4d8d8275e82fc03110da5c84309dff01f19
|
[] |
no_license
|
manelme/alan-game
|
900d5d529fb44d114ffee42ac268471a088cdfc3
|
e469a783d8c647de53f106fd75f9a68da8234834
|
refs/heads/master
| 2020-05-03T04:19:15.013984
| 2019-04-23T10:29:41
| 2019-04-23T10:29:41
| 178,418,336
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 805
|
puml
|
@startuml DiagramaClases
Guerrero "1" o--- "0..*" Fisica: habilidades >
Personaje <|-- Guerrero
Habilidad <|-- Fisica
class Personaje {
String nombre
Number nivel
Number porcentaje_de_nivel
Number vida_restante
Number vida_total
Number elo
__init__(self, nombre, vida_total, vida_restante)
}
class Guerrero{
Number furia_total
Number furia_restante
__init__(self, nombre)
atacar(personaje_objetivo, habilidad)
modificar_vida(cantidad)
modificar_vida_total(cantidad)
modificar_furia(cantidad)
modificar_furia_total(cantidad)
add_habilidad(habilidad)
}
class Habilidad{
String nombre
String danyo
__init__(self, nombre, danyo)
}
class Fisica{
Number coste_furia
__init__(self, nombre, danyo, coste_furia)
}
@enduml
|
28c8a0efa5be14fdbad7d0105269ffedddd82cf8
|
4ef2a0d7b50e772e235e40bf33c1313a11e1d23a
|
/app/docs/asciidoc/models/modelui3.puml
|
82b4ce4a0e61c0975cda14ecc4e74153ddf4eb41
|
[
"Apache-2.0"
] |
permissive
|
SefkanTas/Sonofy
|
4cb768b9eed72f2e133c2ec5b814c70352f39b4c
|
f4d7875d5c4ed996ec9ecc7fdf15ea75706af23a
|
refs/heads/master
| 2023-03-27T03:41:36.030113
| 2021-03-27T20:14:31
| 2021-03-27T20:14:31
| 297,685,348
| 3
| 5
|
Apache-2.0
| 2021-03-27T20:14:32
| 2020-09-22T15:04:53
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 1,184
|
puml
|
@startuml modelui3
title <size:30><b>Diagramme de classes ui pour l'ajout de publication</b></size>
package app{
package ui{
package addpublication{
class AddPublicationActivity extends AppCompatActivity{
- addPublicationViewModel : AddPublicationViewModel
- titreMusiqueEditText : EditText
- youtubeVideoIdEditText : EditText
- progressBar : ProgressBar
+ onCreate(savedInstanceState : Bundle) :void
}
class AddPublicationViewModel extends ViewModel{
- TAG : String
client : OkHttpClient
- isPublicationSaved : MutableLiveData<Boolean>
- isLoading : MutableLiveData<Boolean>
+ isPublicationSaved() : MutableLiveData<Boolean>
+ isLoading() : MutableLiveData<Boolean>
+ savePublication(titre : String, videoId : String) : void
+ addPublication(titre : String, videoId : String) : void
+ onFailure( request : Request, e IOException) : void
}
AddPublicationActivity -[hidden]- AddPublicationViewModel
}
}
}
@enduml
|
ef090ac432de895c2ee2d3378e7defa93c73ae00
|
101a462bd99bd3324c849ff4596d2895e33ceafa
|
/td6.plantuml
|
2db7613cec2f1f40ab4cca8939f193096e34968e
|
[
"MIT"
] |
permissive
|
IUT-Blagnac/bcoo-El-FaroukA
|
4ed612386208f71fed3cc4006b1c17c181cb7f54
|
6442fe0acc2ff098aa0cbfc84fe2740add86e48e
|
refs/heads/main
| 2023-04-24T17:29:21.070171
| 2021-05-03T07:08:54
| 2021-05-03T07:11:21
| 335,633,672
| 0
| 2
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,273
|
plantuml
|
@startuml
'autonumber
hide footbox
@startuml
hide circle
hide empty methods
'------ Classes Métiers
class Qualification {
code
libelle
tauxHoraire
getTH()
getArtisans()
}
class Artisan {
SIRET
nom
adresse
tph
getPayeArtisan( c: Chantier)
}
class Tache {
code
designation
majAvancement(date, duree, Tache, Chantier)
getQualif()
}
class Chantier {
nomProprio
adresseProprio
adresseChantier
telProprio
dateOuverture
dateFermeture
estTermine()
cloturer(Date)
cloturer()
'SetDateFermeture(Date)
}
class Modele {
code
designation
prixVenteM
prixRevientM
dureeConstructionM
getDureeConstruction()
getArtisanQualifies()
}
'------ Classes Associations
class Realiser {
date
duree
setDate()
setDuree()
}
class Executer {
ordre
dureeMoy
getDureeMoy()
}
'------ Associations
Realiser "*" -up- "1" Artisan
Realiser "*" -down- "1" Chantier
Realiser "*" -left- "1" Tache
Tache "*" -up- "1" Qualification
Qualification "1" - "*" Artisan
Modele "0..*" - "1..*" Tache
Modele "1" -down- "*" Chantier
(Tache, Modele) .. Executer
'Main -left-> "*" Artisan
'Main - "*" Chantier
'Main - "*" Modele
@enduml
|
1415bcc4dba6e8a1fb6ede7ba2988cf4f8be50bc
|
e3db6717fc85c8ea94c17ed840b2546805d70d49
|
/resources/LDRuml.puml
|
2d4139f376767e703e10bca3beaf0e0fc30c6f53
|
[] |
no_license
|
hzhang23/LoversQuest
|
ef0a968b72463c74f1d685906c5be11a458320a6
|
d1a65e36e4c036d3c20e140a76bfa67e45b1244e
|
refs/heads/master
| 2022-12-23T13:51:57.817225
| 2020-09-24T21:23:25
| 2020-09-24T21:23:25
| 294,527,650
| 0
| 0
| null | 2020-09-24T21:23:26
| 2020-09-10T21:35:40
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 5,300
|
puml
|
@startuml
package com.loversQuest{
class GameClient{}
package FileHandler{
class ExcelManager
class JsonGetter
}
package gameWorldPieces{
Item <--"is_A" Container
enum CarinalDirection
Item "has"*-- NonPlayerCharacters
RuckSack *--"has_a" Player
NPC_Factory <|-l- "use" Player
NonPlayerCharacters"generate"<--NPC_Factory
NPC_properties "has_A"*-l- NonPlayerCharacters
CarinalDirection "has"*- Location
Location "has_A"*- NonPlayerCharacters
package models_NPC{
NonPlayerCharacters <-u-"is_A" Lover
NonPlayerCharacters <-u-"is_A" Battle_shooter
NonPlayerCharacters <-u-"is_A" Battle_BlueFalcon
NonPlayerCharacters <-u-"is_A" Battle_PT_Studs
NonPlayerCharacters <-d-"is_A" Battle_SickCallRanger
NonPlayerCharacters <-d-"is_A" DrillSGT_CLS
NonPlayerCharacters <-d-"is_A" DrillSGT_PT
NonPlayerCharacters <-d-"is_A" DrillSGT_Range
NonPlayerCharacters <-d-"is_A" DrillSGTDICKS
class Lover{}
class Battle_shooter{}
class Battle_BlueFalcon{}
class Battle_PT_Studs{}
class Battle_SickCallRanger{}
class DrillSGT_CLS{}
class DrillSGT_PT{}
class DrillSGT_Range{}
class DrillSGTDICKS{}
enum NPC_properties{
LOVER,
DRILL_DICKS,
DRILL_PT,
DRILL_RANGE,
DRILL_CLS,
BATTLE_BF,
BATTLE_PT,
BATTLE_SICKCALL,
BATTLE_1S1K,
NON_MISSION
}
}
enum CarinalDirection {
NORTH
SOUTH
EAST
WEST
}
class Container{
-Arraylist<Item> contents
-String Location
+displayItems()
+getItem(String name)
}
class Item {
-String name
-String useResponse
+String use()
}
class Location{
+String name
+String description
+Container container
+Arraylist occupants
+Map directionMap
+Map LocationMap
}
class NonPlayerCharacters{
-String name
-String description
-Location location
+String interact(Player player)
}
class NPC_Factory{
}
class Player{
-String name
-Location currentLocation
+RuckSack ruckSack
+go(String directionInput)
+validateLocation(Location destination)
+look()
+interact()
+useItem()
+addItem(Item item)
+pickUpItem(String itemName)
+inspect() @return <Item>
+isHasCertainItem(String itemName)
+helpGuide()
+displayItems()
+getAllItems() @return ruckSack.items
}
class RuckSack{
#Arraylist<Item> items
+addItem(Item item)
+getItem(String itemName)
+getAllItems() @return <Item>
+displayRuckSackContents() @return String
}
}
package miniGame{
package shootingGame{
RangeGame --|>"has_A" RangePanel
RangeGame --|>"has_A" ScorePanel
RangeGame --|>"has_A" Target
class RangeGame{}
class RangePanel{}
class ScorePanel{}
class Target{}
}
package clsMiniGame{
CLSGame -d-|>"use" AnswerList
CLSGame -d-|>"use" OptionsList
CLSGame -d-|>"use" QuestionsList
class AnswerList{}
class CLSGame{}
class OptionsList{}
class QuestionsList{}
}
package gymGame{
PtGame -|>"use" Ball
Racquet <|-"use" PtGame
class PtGame{}
class Ball{}
class Racquet{}
}
package soldierOfTheMonthGame{
SOMClient-d-|>"use" Counter
SOMClient-d-|>"use" SOMHowItWorks
SOMClient-d-|>"use" SOMLandingPage
SOMClient-d-|>"use" SOMQuestionPanel
SOMClient-|>"use" SOMQuiz
class Counter{}
class SOMClient{}
class SOMHowItWorks{}
class SOMLandingPage{}
class SOMQuestionPanel{}
class SOMQuiz{}
}
}
package GUI <<Frame>>{
GameClient -d--> StartPanel
GameFrame -u-|> "use" Player
GameFrame -d-|> "use" CLSGame
GameFrame -d-|> "use" PtGame
GameFrame -d|> "use" RangeGame
GameFrame -d|>"use" SOMClient
GameFrame -r*"has" JFrameInput
GameFrame -r|>"use" JPanelFactory
GameFrame -r*"has" SafetyBriefPanel
GameFrame -r*"has" StartPanel
GameFrame -u-*"has" MapPanel
GameFrame -u-|>"use" InputParser
GameFrame --|>"use" JsonGetter
GameFrame -|>"use" ExcelManager
JPanelFactory -u-*"has" GameResponsePanel
JPanelFactory -u-*"has" InputPanel
JPanelFactory -u-*"has" InventoryPanel
StartPanel -u-*"has" LoadGamePanel
class StartPanel{
-Player player
-GameFrame gameFrame
+readGameFile()
+gameInit()
}
class GameFrame{
JFrame mainFrame
Player player
String command
JPanels diff_panels
}
class GameResponsePanel{}
class InputPanel{}
class InventoryPanel{}
class JFrameInput{}
class JPanelFactory{}
class LoadGamePanel{}
class MapPanel{}
class SafetyBriefPanel{}
class InputParser{}
}
}
@enduml
|
23dc56e6beb8d698169643ffe82351889b6b2d72
|
62de719e261fac67d2a2bc347a98be5515b48948
|
/docs/blue/1090657/sp3/dm.puml
|
bcf05750fe6bd45c923e5833451e016fca4d877a
|
[] |
no_license
|
raulcorreia7/isep_lapr4_17_18
|
82672fca46e433856d52b3839e3739fa53b8f52c
|
79217fa01912657da37ef6cdb1a05194dd2f5110
|
refs/heads/master
| 2020-04-15T17:52:21.964106
| 2019-01-09T17:13:14
| 2019-01-09T17:13:14
| 164,891,237
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 507
|
puml
|
@startuml workbook.png
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
hide empty methods
class Workbook {
-isPublic
}
class WorkbookDescription {
-name
-description
}
class AccessList
class Access{
-email
-accessType
}
enum AccessType {
READ_WRITE
READ_ONLY
VIEW_ONLY
}
WorkbookDescription *-- Workbook
WorkbookDescription *-- AccessList
AccessList o-- Access
Access -- AccessType
@enduml
|
f76b1437d8f9e8d48411259b9880c40275d8883a
|
03726524c5f152378f7ed47fc6a4a50fdd320f84
|
/src/by/spalex/bmp/ui/controller/controller.plantuml
|
94d925ca475d401f4f7265bd25a0afe91e025855
|
[] |
no_license
|
thatalex/bmpcoder
|
c8718b320908af3201489287fb6b639c992e40eb
|
fa609eeadc65a4c8d1ff153db0054119070e53f0
|
refs/heads/master
| 2020-03-23T13:23:23.935289
| 2018-07-20T14:06:54
| 2018-07-20T14:06:54
| 141,615,339
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,418
|
plantuml
|
@startuml
package by.spalex.bmp.ui {
package by.spalex.bmp.ui.controller {
class CompareController {
{static} - BYTE_PER_ROW : int
{static} - COLUMN_WIDTH : int
{static} - COLORS : String[]
~ referenced : byte[]
- view : TableView<HexItem>
- columnAddress : TableColumn
- header1 : Label
- header2 : Label
- referencedName : String
+ setReferenced()
+ loadImage()
- createColumns()
- getCellCallback()
}
}
}
package by.spalex.bmp.ui {
package by.spalex.bmp.ui.controller {
class HexItem {
- referencedRow : byte[]
- comparedRow : byte[]
- address : byte[]
+ getAddress()
+ setAddress()
}
}
}
package by.spalex.bmp.ui {
package by.spalex.bmp.ui.controller {
class Controller {
+ close()
}
}
}
package by.spalex.bmp.ui {
package by.spalex.bmp.ui.controller {
class DecodeController {
- textArea : TextArea
+ setText()
+ save()
}
}
}
package by.spalex.bmp.ui {
package by.spalex.bmp.ui.controller {
class EncodeController {
- textArea : TextArea
- encodeButton : Button
- statusLabel : Label
- encodeCapacity : int
+ encode()
+ loadText()
+ setBitmap()
+ onKeyReleased()
}
}
}
package by.spalex.bmp.ui {
package by.spalex.bmp.ui.controller {
class MainController {
- encodeButton : Button
- decodeButton : Button
- compareButton : Button
- canvas : Canvas
- listener : InvalidationListener
- image : Image
- statusLabel : Label
- fileName : String
~ openImage()
- paint()
~ initialize()
- createStage()
+ onEncode()
+ onDecode()
+ compareImage()
}
}
}
CompareController -up-|> Controller
CompareController +-down- HexItem
DecodeController -up-|> Controller
DecodeController o-- Decoder : decoder
EncodeController -up-|> Controller
EncodeController o-- Bitmap : bitmap
EncodeController o-- Encoder : encoder
MainController -up-|> Controller
MainController o-- Bitmap : bitmap
@enduml
|
e2dcf110e34a9c34a7d0e4df417d9860740c6410
|
cd01ac7f4b82f5f86eebc3c30b881301915342a6
|
/app/src/main/java/com/teamsayy/drmednotifier/ClassDiagram.puml
|
044850975dbef4ddf652812d7f1d73eb7377ac16
|
[] |
no_license
|
TeamSAYY/Dr._Med_Notifier
|
2e1cc118b7c7f15249d62e5739cc725e743ab9b6
|
f5a65f685e9c2b0534c71d112e25295ede66de71
|
refs/heads/master
| 2023-02-02T03:09:20.735953
| 2020-12-17T04:38:53
| 2020-12-17T04:38:53
| 294,763,549
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 20,777
|
puml
|
@startuml
hide circle
skinparam classAttributeIconSize 0
skinparam legendBackgroundColor white
skinparam legendFontSize 50
skinparam noteFontSize 30
skinparam noteBorderColor black
skinparam linetype polyline
'skinparam linetype ortho
skinparam class {
BackgroundColor white
ArrowColor black
BorderColor black
}
left to right direction
legend left
<back:lightpink> </back> MVC
<back:lightblue> </back> Singleton
<back:wheat> </back> Observer
endlegend
note as N1 #lightpink
MVC
Model:
UserDatabase
UserDao
User
NotifSettingDatabase
NotifSettingDao
NotifSetting
MedicationRepository
MedicationDatabase
MedicationDao
Medication
MedActivityRepository
MedActivityDatabase
MedActivityDao
MedActivity
CreateMedicationViewModel
MedicationsListViewModel
MedActivitiesListViewModel
endnote
note as N2 #lightpink
MVC
View: xml files
endnote
note as N3 #lightpink
MVC
Controller:
Frag_Home
Frag_Add
Frag_Selfreport
Frag_Notification
Medicine_List
Dose_Page
Popup_Window
New_User_Profile
endnote
note as N4 #lightblue
Singleton
UserDatabase
NotifSettingDatabase
MedicationDatabase
MedActivityDatabase
endnote
note as N5 #wheat
Observer
MainActivity
Second_page_get_personaldata
Nav_page
Frag_Home
Frag_Add
Frag_Selfreport
Frag_Notification
Setting_Page
Edit_Medication
Medicine_List
Dose_Page
Popup_Window
New_User_Profile
RingActivity
endnote
package data #lightpink {
UserDatabase "1 " *-- "1 " UserDao : composition
UserDao "1 " o-- "0..1 " User : aggregation
NotifSettingDatabase "1 " *-- "1 " NotifSettingDao : composition
NotifSettingDao "1 " o-- "0..1 " NotifSetting : aggregation
MedicationRepository "1 " o-- "1 " MedicationDatabase : aggregation
MedicationDatabase "1 " *-- "1 " MedicationDao : composition
MedicationDao "1 " o-- "0..* " Medication : aggregation
MedActivityDatabase "1 " *-- "1 " Converters : composition
MedActivityRepository "1 " o-- "1 " MedActivityDatabase : aggregation
MedActivityDatabase "1 " *-- "1 " MedActivityDao : composition
MedActivityDao "1 " o-- "0..* " MedActivity : aggregation
}
MainActivity .right.> Second_page_get_personaldata : intent
Second_page_get_personaldata .right.> Nav_page : intent
Nav_page "1 " *-- "0..1 " Frag_Home : composition
Nav_page "1 " *-- "0..1 " Frag_Add : composition
Nav_page "1 " *-- "0..1 " Frag_Selfreport : composition
Nav_page "1 " *-- "0..1 " Frag_Notification : composition
Nav_page ..> New_User_Profile : intent
Nav_page ..> Setting_Page : intent
Setting_Page ..> Popup_Window : intent
Setting_Page ..> Medicine_List : intent
Setting_Page ..> Dose_Page : intent
Frag_Home ..> Dose_Page : intent
Frag_Home ..> Edit_Medication : intent
Frag_Home "1 " o-- "1 " medicationslist.MedicationsListViewModel : aggregation
Frag_Home "1 " o-- "1 " medicationslist.MedicationRecyclerViewAdapter : aggregation
Medicine_List "1 " o-- "1 " medicationslist.MedicationsListViewModel : aggregation
Medicine_List "1 " o-- "1 " medicationslist.MedicationRecyclerViewAdapter : aggregation
Dose_Page "1 " o-- "1 " medicationslist.MedicationsListViewModel : aggregation
Dose_Page "1 " o-- "1 " medicationslist.MedActivitiesListViewModel : aggregation
Dose_Page "1 " o-- "1 " medicationslist.DoseRecyclerViewAdapter : aggregation
medicationslist.DoseViewHolder "1 " o-up- "1 " medicationslist.MedActivitiesListViewModel : aggregation
Frag_Add "1 " o-- "1 " createmedication.CreateMedicationViewModel : aggregation
Edit_Medication "1 " *-- "1 " Frag_Add : composition
Medication "0..* " o-up- "1 " AlarmManager : aggregation
AlarmManager ..> broadcastreceiver.AlarmBroadcastReceiver : intent
broadcastreceiver.AlarmBroadcastReceiver ..> service.AlarmService : intent
service.AlarmService ..> RingActivity : intent
Frag_Notification ..> service.RescheduleAlarmsService : intent
Frag_Notification ..> service.DescheduleAlarmsService : intent
service.AlarmService ..> application.App : dependency
service.RescheduleAlarmsService ..> application.App : dependency
service.DescheduleAlarmsService ..> application.App : dependency
medicationslist.MedicationRecyclerViewAdapter "1 " *-- "1 " medicationslist.MedicationViewHolder : composition
medicationslist.DoseRecyclerViewAdapter "1 " *-- "1 " medicationslist.DoseViewHolder : composition
Second_page_get_personaldata ..> UserDatabase : dependency
New_User_Profile ..> UserDatabase : dependency
Popup_Window ..> UserDatabase : dependency
createmedication.CreateMedicationViewModel ..> MedicationRepository : dependency
Frag_Notification ..> NotifSettingDatabase : dependency
medicationslist.MedicationsListViewModel ..> MedicationRepository : dependency
medicationslist.MedActivitiesListViewModel ..> MedActivityRepository : dependency
class MainActivity #wheat {
# onCreate(Bundle) : void
+ launchActivity(View) : void
- existingUserInfo() : boolean
- initNotifSettings() : void
}
class Second_page_get_personaldata #wheat {
- editTextFirstName : EditText
- editTextLastName : EditText
- editTextAge : EditText
- mTextWatcher : TextWatcher
# onCreate(Bundle) : void
+ launchActivists(View) : void
+ launchActivistswithnovalue(View) : void
- checkFieldsForEmptyValues() : void
- saveUser() : void
}
class Nav_page #wheat {
- mOnNavigationItemSelectedListener : BottomNavigationView.OnNavigationItemSelectedListener
# onCreate(Bundle) : void
+ onCreateOptionsMenu(Menu) : boolean
+ onOptionsItemSelected(MenuItem) : boolean
# onActivityResult(int, int, Intent) : void
+ click_User_Profile(View) : void
}
class Frag_Home #wheat|lightpink {
- medicationRecyclerViewAdapter : MedicationRecyclerViewAdapter
- medicationsListViewModel : MedicationsListViewModel
+ Frag_Home()
+ onCreate(Bundle) : void
+ onCreateView(LayoutInflater, ViewGroup, Bundle) : View
- getUserInfo(View) : void
}
class Frag_Add #wheat|lightpink {
# name : EditText
# description : EditText
# quantity : EditText
# shape_radioBtnGroup : RadioGroup
# dose_1 : EditText
# dose_2 : EditText
# dose_3 : EditText
# dose_4 : EditText
# button_hide_med_info : Button
# med_info_view : View
# button_hide_schedule : Button
# med_schedule_view : View
# dropdown_freq : Spinner
# specificDays_view_1 : View
# specificDays_view_2 : View
# checkBox_Mon : CheckBox
# checkBox_Tue : CheckBox
# checkBox_Wed : CheckBox
# checkBox_Thu : CheckBox
# checkBox_Fri : CheckBox
# checkBox_Sat : CheckBox
# checkBox_Sun : CheckBox
# dropdown_timesPerDay : Spinner
# text_time_dose_1 : TextView
# time_dose_view_1 : View
# timePicker_1 : TimePicker
# text_time_dose_2 : TextView
# time_dose_view_2 : View
# timePicker_2 : TimePicker
# text_time_dose_3 : TextView
# time_dose_view_3 : View
# timePicker_3 : TimePicker
# text_time_dose_4 : TextView
# time_dose_view_4 : View
# timePicker_4 : TimePicker
# button_save : Button
- createMedicationViewModel : CreateMedicationViewModel
- notifSettingDao : NotifSettingDao
+ Frag_Add()
+ onCreate(Bundle) : void
+ onCreateView(LayoutInflater, ViewGroup, Bundle) : View
- buttonHideView(Button, View) : void
- generateTimeAndDose(TextView, View, TimePicker, int, int) : void
- setMandatoryTextListener() : void
- decideSaveButtonStatus() : void
- populateExistingInfo() : void
- scheduleMedication() : void
- updateMedication() : void
}
class Frag_Selfreport #wheat|lightpink {
+ Frag_Selfreport()
+ onCreateView(LayoutInflater, ViewGroup, Bundle) : View
}
class Frag_Notification #wheat|lightpink {
- switch_noti : Switch
- layout_noti : View
- dropdown_noti_type : Spinner
- dropdown_noti_remind : Spinner
- edit_noti_msg : EditText
- switch_renew_pre : Switch
- layout_renew_pre : View
- dropdown_renew_time : Spinner
- edit_noti__renew_msg : EditText
- notifSettingDao : NotifSettingDao
- notifSetting : NotifSetting
- notif_switchListener : CompoundButton.OnCheckedChangeListener
- refill_switchListener : CompoundButton.OnCheckedChangeListener
- dropdownListener : AdapterView.OnItemSelectedListener
- textWatcher : TextWatcher
+ Frag_Notification()
+ onCreate(Bundle) : void
+ onCreateView(LayoutInflater, ViewGroup, Bundle) : View
- startDescheduleAlarmsService(Context) : void
- startRescheduleAlarmsService(Context) : void
- setNotifSettings() : void
- saveNotifSetting() : void
}
class New_User_Profile #wheat|lightpink {
- userDao : UserDao
- users : List<User>
- editTextFirstName : EditText
- editTextLastName : EditText
- editTextAge : EditText
- mTextWatcher : TextWatcher
# onCreate(Bundle) : void
- checkFieldsForEmptyValues() : void
- setUserProperties() : void
- saveUser() : void
}
class Setting_Page #wheat {
- image : int[]
- headline : String[]
- bottomline : String[]
# onCreate(Bundle) : void
+ CheckboxClickCheck(View) : void
+ click_name_tag(View) : void
+ avatar_click(View) : void
+ onActivityResult(int, int, Intent) : void
- setUserProperties() : void
}
class Popup_Window #wheat|lightpink {
- userDao : UserDao
- users : List<User>
# onCreate(Bundle) : void
+ avatar_change(View view) : void
+ avatar_change1(View view) : void
}
class Medicine_List #wheat|lightpink {
# onCreate(Bundle) : void
}
class Dose_Page #wheat|lightpink {
# onCreate(Bundle) : void
}
class Edit_Medication #wheat {
# onCreate(Bundle) : void
}
class RingActivity #wheat {
# dismiss : Button
# snooze : Button
# clock : ImageView
# message : TextView
# onCreate(Bundle) : void
- animateClock() : void
}
'application
class application.App {
+ CHANNEL_ID : String
+ onCreate() : void
- createNotificationChannel() : void
}
'broadcastreceiver
class broadcastreceiver.AlarmBroadcastReceiver {
{static} + MED_ID : String
{static} + MONDAY : String
{static} + TUESDAY : String
{static} + WEDNESDAY : String
{static} + THURSDAY : String
{static} + FRIDAY : String
{static} + SATURDAY : String
{static} + SUNDAY : String
{static} + RECURRING : String
{static} + TITLE : String
{static} + MED_NAME : String
{static} + MED_DOSE : String
{static} + HOUR : String
{static} + MINUTE : String
+ onReceive(Context, Intent) : void
- alarmIsToday(Intent) : boolean
- startAlarmService(Context, Intent) : void
- startRescheduleAlarmsService(Context) : void
}
'createmedication
class createmedication.CreateMedicationViewModel #lightpink {
- medicationRepository : MedicationRepository
- medActivityRepository : MedActivityRepository
+ CreateMedicationViewModel(Application)
+ insert(Medication) : void
+ update(Medication) : void
+ insert(MedActivity) : void
+ insertAll(List<MedActivity>) : void
+ update(MedActivity) : void
}
'data
abstract class UserDatabase #lightblue {
{static} - INSTANCE : UserDatabase
{abstract} + UserDao()
{static} + getDatabase(Context) : UserDatabase
}
interface UserDao << interface >> {
+ insert(User) : void
+ deleteAll() : void
+ getUser() : List<User>
+ update(User) : void
}
class User {
- userId : int
- firstName : String
- lastName : String
- age : int
- avatar : String
- gender : int
- created : long
+ User(int, String, String, int, int, long)
+ getUserId() : int
+ setUserId(int) : void
+ getFirstName() : String
+ getLastName() : String
+ getAge() : int
+ getAvatar() : String
+ setAvatar() : void
+ getGender() : int
+ isMale() : boolean
+ isFemale() : boolean
+ isOthers() : boolean
+ getCreated() : long
+ setCreated(long) : void
}
abstract class NotifSettingDatabase #lightblue {
{static} - INSTANCE : NotifSettingDatabase
{abstract} + NotifSettingDao()
{static} + getDatabase(Context) : NotifSettingDatabase
}
interface NotifSettingDao << interface >> {
+ insert(NotifSetting) : void
+ deleteAll() : void
+ getNotifSettings() : List<NotifSetting>
+ update(NotifSetting) : void
}
class NotifSetting {
- notifSettingId : int
- enableNotif : boolean
- notifTypeId : int
- remindInMinutesId : int
- notifMessage : String
- enableRefillNotif : boolean
- daysBeforeRefillId : int
- refillNotifMessage : String
- notifSoundId : int
- snoozeMinutes : int
- snoozeTimes : int[]
+ NotifSetting()
+ getNotifSettingId() : int
+ setNotifSettingId(int) : void
+ isEnableNotif() : boolean
+ setEnableNotif(boolean) : void
+ getNotifTypeId() : int
+ setNotifTypeId(int) : void
+ getRemindInMinutesId() : int
+ setRemindInMinutesId(int) : void
+ getNotifMessage() : String
+ setNotifMessage(String) : void
+ isEnableRefillNotif() : boolean
+ setEnableRefillNotif(boolean) : void
+ getDaysBeforeRefillId() : int
+ setDaysBeforeRefillId(int) : void
+ getRefillNotifMessage() : String
+ setRefillNotifMessage(String) : void
+ getNotifSoundId() : int
+ setNotifSoundId(int) : void
+ getSnoozeMinutes() : int
+ setSnoozeMinutes(int) : void
}
class MedicationRepository {
- medicationDao : MedicationDao
- medicationsLiveData : LiveData<List<Medication>>
+ MedicationRepository(Application)
+ insert(Medication) : void
+ update(Medication) : void
+ getMedicationsLiveData() : LiveData<List<Medication>>
+ loadSingle(int) : Medication
+ deleteById(int) : void
}
abstract class MedicationDatabase #lightblue {
{static} - INSTANCE : MedicationDatabase
{static} - NUMBER_OF_THREADS : int
{static} + databaseWriteExecutor : ExecutorService
{abstract} + medicationDao()
{static} + getDatabase(Context) : MedicationDatabase
}
interface MedicationDao << interface >> {
insert(Medication) : void
deleteAll() : void
getMedications() : LiveData<List<Medication>>
loadSingle(int) : Medication
deleteById(long) : void
update(Medication) : void
}
class Medication {
- medId : int
- name : String
- description : String
- quantity : int
- shape_id : int
- monday : boolean
- tuesday : boolean
- wednesday : boolean
- thursday : boolean
- friday : boolean
- saturday : boolean
- sunday : boolean
- times : int
- hour_1 : int
- minute_1 : int
- dose_1 : int
- hour_2 : int
- minute_2 : int
- dose_2 : int
- hour_3 : int
- minute_3 : int
- dose_3 : int
- hour_4 : int
- minute_4 : int
- dose_4 : int
- created : long
+ Medication(int, String, String, int, int, long, boolean, boolean, boolean, boolean, boolean, boolean, boolean, int, int, int, int, int, int, int, int, int, int, int, int, int)
+ Medication(int, String, String, int, int, long, boolean, boolean, boolean, boolean, boolean, boolean, boolean, int, int, int)
+ getQuantity() : int
+ getShape_id() : int
+ getTimes() : int
+ getHour_1() : int
+ getMinute_1() : int
+ getDose_1() : int
+ getHour_2() : int
+ getMinute_2() : int
+ getDose_2() : int
+ getHour_3() : int
+ getMinute_3() : int
+ getDose_3() : int
+ getHour_4() : int
+ getMinute_4() : int
+ getDose_4() : int
+ getMedId() : int
+ setMedId(int) : void
+ isMonday() : boolean
+ isTuesday() : boolean
+ isWednesday() : boolean
+ isThursday() : boolean
+ isFriday() : boolean
+ isSaturday() : boolean
+ isSunday() : boolean
+ getName() : String
+ getDescription() : String
+ getCreated() : long
+ setCreated(long) : void
+ schedule(Context) : void
+ deschedule(Context) : void
}
class Converters {
{static} + fromTimestamp(Long) : Date
{static} + dateToTimestamp(Date) : Long
}
class MedActivityRepository {
- medActivityDao : MedActivityDao
- medActivitiesLiveData : LiveData<List<MedActivity>>
+ MedActivityRepository(Application)
+ insert(MedActivity) : void
+ insertAll(List<MedActivity>) : void
+ update(MedActivity) : void
+ getMedActivitiesLiveData() : LiveData<List<MedActivity>>
+ loadSingle(int) : MedActivity
+ loadByMedDate(int, Date) : MedActivity
}
abstract class MedActivityDatabase #lightblue {
{static} - INSTANCE : MedActivityDatabase
{static} - NUMBER_OF_THREADS : int
{static} + databaseWriteExecutor : ExecutorService
{abstract} + medActivityDao() : MedActivityDao
{static} + getDatabase(Context) : MedActivityDatabase
}
interface MedActivityDao << interface >> {
insert(MedActivity) : void
insertAll(List<MedActivity>) : void
deleteAll() : void
getMedications() : LiveData<List<MedActivity>>
loadSingle(int) : MedActivity
loadByMedDate(int, Date) : MedActivity
update(MedActivity) : void
}
class MedActivity {
- medActivityId : int
- medId : int
- date : Date
- firstMed : boolean
- secondMed : boolean
- thirdMed : boolean
- fourthMed : boolean
+ MedActivity(int, Date)
+ getMedActivityId() : int
+ setMedActivityId(int) : void
+ getMedId() : int
+ setMedId(int) : void
+ getDate() : Date
+ setDate(Date) : void
+ isFirstMed() : boolean
+ isSecondMed() : boolean
+ isThirdMed() : boolean
+ isFourthMed() : boolean
+ getMedStatus(int) : boolean
+ setFirstMed(boolean) : void
+ setSecondMed(boolean) : void
+ setThirdMed(boolean) : void
+ setFourthMed(boolean) : void
+ setMedStatus(int, boolean) : void
}
'medicationslist
class medicationslist.MedicationsListViewModel #lightpink {
- medicationRepository : MedicationRepository
- medicationsLiveData : LiveData<List<Medication>>
+ MedicationsListViewModel(Application)
+ update(Medication) : void
+ getMedicationsLiveData() : LiveData<List<Medication>>
+ deleteById(int) : void
}
class medicationslist.MedicationViewHolder {
- medName : TextView
- medDays : TextView
- medTimes : TextView
+ MedicationViewHolder(View)
+ bind(Medication) : void
}
class medicationslist.MedicationRecyclerViewAdapter {
- medications : List<Medication>
+ MedicationRecyclerViewAdapter()
+ onCreateViewHolder(ViewGroup, int) : MedicationViewHolder
+ onBindViewHolder(MedicationViewHolder, int) : void
+ getItemCount() : int
+ setMedications(List<Medication>) : void
+ getMedByPos(int) : Medication
+ onViewRecycled(MedicationViewHolder) : void
}
class medicationslist.MedActivitiesListViewModel #lightpink {
- medActivityRepository : MedActivityRepository
- medActivitiesLiveData : LiveData<List<MedActivity>>
+ MedActivitiesListViewModel(Application)
+ update(MedActivity) : void
+ getMedActivitiesLiveData() : LiveData<List<MedActivity>>
}
class medicationslist.DoseViewHolder {
- medTime : TextView
- medName : TextView
- medDose : TextView
- checkBox : CheckBox
- application : Application
- year : int
- month : int
- day : int
+ DoseViewHolder(View, Application, int, int, int)
+ bind(Medication) : void
+ bind(Medication, MedActivity, int) : void
}
class medicationslist.DoseRecyclerViewAdapter {
- doses : List<Medication>
- medActivities : List<MedActivity>
- application : Application
- year : int
- month : int
- day : int
+ DoseRecyclerViewAdapter()
+ onCreateViewHolder(ViewGroup, int) : DoseViewHolder
+ onBindViewHolder(DoseViewHolder, int) : void
+ getItemCount() : int
+ setDate(int, int, int) : void
+ setDoses(List<Medication>) : void
+ setMedActivities(Application, List<MedActivity>) : void
}
'service
class service.AlarmService {
- mediaPlayer : MediaPlayer
- vibrator : Vibrator
+ onCreate() : void
+ onStartCommand(Intent, int, int) : int
+ onDestroy() : void
+ onBind(Intent) : IBinder
{static} + isServiceRunningInForeground(Context, Class<?>) : boolean
}
class service.RescheduleAlarmsService {
+ onCreate() : void
+ onStartCommand(Intent, int, int) : int
+ onDestroy() : void
+ onBind(Intent) : IBinder
}
class service.DescheduleAlarmsService {
+ onCreate() : void
+ onStartCommand(Intent, int, int) : int
+ onDestroy() : void
+ onBind(Intent) : IBinder
}
@enduml
|
906d380c5f99cc0c263f054f9dc5da7dd5d353f9
|
186819bc98500f794e563bd3ba5a23073756a2ba
|
/PSP2/Hospital/src/main/java/com/hospital/Hospital/repository/doctorRepositoryImp/doctorRepositoryImp.plantuml
|
6a355db6c190e90116f74cf6e017044019867ff9
|
[] |
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
| 997
|
plantuml
|
@startuml
title __DOCTORREPOSITORYIMP's Class Diagram__\n
package com.hospital.Hospital {
package com.hospital.Hospital.repository.doctorRepository {
package com.hospital.Hospital.repository.doctorRepositoryImp {
class DoctorRepositoryImp {
~ doctors : List<Doctor>
+ getDoctorById()
+ createDoctor()
+ getAllDoctors()
+ deleteDoctor()
+ updateDoctor()
}
}
}
}
DoctorRepositoryImp -up-|> DoctorRepository
DoctorRepositoryImp o-- NormalDoctor : nd1
DoctorRepositoryImp o-- NormalDoctor : nd2
DoctorRepositoryImp o-- NormalDoctor : nd3
DoctorRepositoryImp o-- SurgeonDoctor : sd1
DoctorRepositoryImp o-- SurgeonDoctor : sd2
DoctorRepositoryImp o-- SurgeonDoctor : sd3
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
|
29e695bc798eb634e8659b3b1e14b39af4cd0cce
|
c8f3f6dc0c799f82deb504ddffa8e591ba2ef10d
|
/build/classes/designpatternsproject/designpatternsproject.plantuml
|
8861892a89294e7e872032ea95f66876cb03e574
|
[] |
no_license
|
bahadircetin/DesignPatternsFirstProject
|
0e799a8049db2935142cb8a8835a8f579df2b2a1
|
52bf40c18c3c11d9514df4f90e875cfefdcc11df
|
refs/heads/master
| 2023-07-10T15:17:56.750020
| 2021-08-05T14:49:29
| 2021-08-05T14:49:29
| 393,032,093
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,576
|
plantuml
|
@startuml
title __DES�GNPATTERNSPROJECT's Class Diagram__\n
namespace designpatternsproject {
abstract class designpatternsproject.Customer {
+ Customer()
+ performShopping()
+ setShoppingBehavior()
}
}
namespace designpatternsproject {
class designpatternsproject.ShoppingMain {
+ DesignPatternsProject()
{static} + main()
}
}
namespace designpatternsproject {
interface designpatternsproject.Observer {
{abstract} + update()
}
}
namespace designpatternsproject {
class designpatternsproject.PassiveCustomer {
+ PassiveCustomer()
+ update()
}
}
namespace designpatternsproject {
class designpatternsproject.ShopaholicCustomer {
+ ShopaholicCustomer()
+ update()
- processMessage()
}
}
namespace designpatternsproject {
interface designpatternsproject.ShoppingBehavior {
{abstract} + shop()
}
}
namespace designpatternsproject {
class designpatternsproject.ShoppingOnline {
+ ShoppingOnline()
+ shop()
}
}
namespace designpatternsproject {
class designpatternsproject.ShoppingPhysical {
+ ShoppingPhysical()
+ shop()
}
}
namespace designpatternsproject {
class designpatternsproject.Store {
- customers : List<Observer>
+ Store()
+ addSubscriber()
+ notifySubscribers()
+ removeSubscriber()
}
}
namespace designpatternsproject {
interface designpatternsproject.Subject {
{abstract} + addSubscriber()
{abstract} + notifySubscribers()
{abstract} + removeSubscriber()
}
}
designpatternsproject.Customer o-- designpatternsproject.ShoppingBehavior : shoppingBehavior
designpatternsproject.PassiveCustomer .up.|> designpatternsproject.Observer
designpatternsproject.PassiveCustomer -up-|> designpatternsproject.Customer
designpatternsproject.ShopaholicCustomer .up.|> designpatternsproject.Observer
designpatternsproject.ShopaholicCustomer -up-|> designpatternsproject.Customer
designpatternsproject.ShoppingOnline .up.|> designpatternsproject.ShoppingBehavior
designpatternsproject.ShoppingPhysical .up.|> designpatternsproject.ShoppingBehavior
designpatternsproject.Store .up.|> designpatternsproject.Subject
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
|
56e01704350689f95a1920239e6593a441329156
|
644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc
|
/docs/uml/software/old/device/services/UserInputService.puml
|
508f31d353ba1090ed5013f92178dc33ce15328a
|
[] |
no_license
|
tzAcee/photonized
|
c929a6c04bedd0304a4e427d6c2895cdf73568d3
|
aa53ed7bda18959c58467fe4560dc3ff4e1ae422
|
refs/heads/main
| 2023-05-03T15:13:31.148910
| 2021-05-25T13:55:17
| 2021-05-25T13:55:17
| 316,536,113
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 95
|
puml
|
@startuml
class UserInputService {
{static} + get_user_entry() : DeviceUserEntry
}
@enduml
|
10b261efc1bb60fb7593ea67bf551583ac53e11c
|
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
|
/build/installment-sale@0.7.0.puml
|
3fabbaea1cd67a03ddd3920aac3d2fc6cfc417d8
|
[
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"CC-BY-4.0"
] |
permissive
|
accordproject/cicero-template-library
|
737586850933daac2fbff2ff8b2d60dd50526b80
|
35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea
|
refs/heads/main
| 2023-04-27T01:07:05.932361
| 2022-08-26T13:02:59
| 2022-08-26T13:02:59
| 109,224,687
| 77
| 149
|
Apache-2.0
| 2023-04-20T21:43:00
| 2017-11-02T06:11:37
|
HTML
|
UTF-8
|
PlantUML
| false
| false
| 2,129
|
puml
|
@startuml
class org.accordproject.installmentsale.InitializeRequest << (T,yellow) >> {
+ Double firstMonth
}
org.accordproject.installmentsale.InitializeRequest --|> org.hyperledger.composer.system.Transaction
class org.accordproject.installmentsale.InitializeResponse << (T,yellow) >> {
}
org.accordproject.installmentsale.InitializeResponse --|> org.hyperledger.composer.system.Transaction
class org.accordproject.installmentsale.Installment << (T,yellow) >> {
+ Double amount
}
org.accordproject.installmentsale.Installment --|> org.accordproject.cicero.runtime.Request
class org.accordproject.installmentsale.ClosingPayment << (T,yellow) >> {
+ Double amount
}
org.accordproject.installmentsale.ClosingPayment --|> org.accordproject.cicero.runtime.Request
class org.accordproject.installmentsale.Balance << (T,yellow) >> {
+ Double balance
+ Double total_paid
}
org.accordproject.installmentsale.Balance --|> org.accordproject.cicero.runtime.Request
class org.accordproject.installmentsale.ContractStatus << (E,grey) >> {
+ WaitingForFirstDayOfNextMonth
+ Fulfilled
}
class org.accordproject.installmentsale.MyObligation {
+ String party
}
org.accordproject.installmentsale.MyObligation --|> org.hyperledger.composer.system.Event
class org.accordproject.installmentsale.PaymentObligation {
+ Double amount
}
org.accordproject.installmentsale.PaymentObligation --|> org.accordproject.installmentsale.MyObligation
class org.accordproject.installmentsale.InstallmentSaleState << (A,green) >> {
+ ContractStatus status
+ Double balance_remaining
+ Integer next_payment_month
+ Double total_paid
}
org.accordproject.installmentsale.InstallmentSaleState --|> org.accordproject.cicero.contract.AccordContractState
class org.accordproject.installmentsale.InstallmentSaleContract << (A,green) >> {
+ String BUYER
+ String SELLER
+ Double INITIAL_DUE
+ Double INTEREST_RATE
+ Double TOTAL_DUE_BEFORE_CLOSING
+ Double MIN_PAYMENT
+ Double DUE_AT_CLOSING
}
org.accordproject.installmentsale.InstallmentSaleContract --|> org.accordproject.cicero.contract.AccordContract
@enduml
|
1f25530d21229406577d062d087be1680f09c6e7
|
188aa3bd1c4fc0a88cab9726c2f2299f147e70d8
|
/docs/UC_11/MD.puml
|
a3548d5e0e0d0e428b02bf8c6e8812c6d5bab2d3
|
[] |
no_license
|
botelho-io/lapr2-2020-g029
|
c6a3c15bace1145c94c0495ac5f8ce54b7be478c
|
1834bf842e5ae1f94d20ab61dad8e8124fc9f61b
|
refs/heads/master
| 2023-08-17T00:53:42.364156
| 2020-06-14T22:29:10
| 2020-06-14T22:29:10
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,285
|
puml
|
@startuml MD
skinparam classAttributeIconSize 0
hide methods
left to right direction
class App {
}
class Organization {
- String name
- String NIF
}
class Transaction {
}
class Task {
- String id
- String description
- Integer durationInHours
- Double costPerHourOfJuniorEur
- String category
}
class PaymentDetails {
Boolean isPaid
}
class TaskExecutionDetails {
- LocalDate endDate
- Integer delayInDays
- String DescriptionQualityOfWork
}
class Collaborator {
- String name
- String email
- String password
}
class Manager {
- String name
- String email
- String password
}
class PaymentScheduler {
- Integer dayMonth
- LocalTime timeOfDay
}
class Administrator {
- String name
- String email
- String password
}
class EmailScheduler {
}
class Freelancer {
- String id
- String name
- String levelOfExpertise
- String email
- String NIF
- String bankAccountIBAN
- String address
- String country
}
Transaction "1" -- "1" TaskExecutionDetails : executed with >
Organization "1" -- "1" Collaborator : has >
Organization "1" -- "1" Manager : has >
Organization "1" -- "1" PaymentScheduler : uses >
Organization "1" -- "*" Task : publishes >
Organization "1" -- "*" Transaction : has >
App "1" -- "1" MonetaryUnitConversionAPI : supports >
App "1" -- "*" Organization : has >
App "1" -- "1" EmailAPI : supports >
App "1" -- "1" PaymentAPI : supports >
App "1" -- "*" Administrator : has >
App "1" -- "*" Freelancer : has >
App "1" -- "1" EmailScheduler : has >
(Organization, Transaction) .. PaymentDetails
@enduml
|
8a00432a5ceed0f2d240fd34d91060e2d491f297
|
066a6ab3289dee21155bd6c05b972183cb3adfb3
|
/docs/uml/entity.puml
|
2e02f501f995012d6f44724505b02b8ed6f964d0
|
[
"MIT"
] |
permissive
|
jporsay/boids
|
bcac90c149800a7200a91451356b796b723127ad
|
af20cc0125b1b964c2a4b8552bb4546b2dd89832
|
refs/heads/master
| 2020-04-06T14:54:12.189467
| 2018-12-04T17:57:04
| 2018-12-04T17:57:04
| 157,558,516
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 358
|
puml
|
@startuml
enum Type {
Boid(maxSpeed = 32.0, radius=0.1)
SpecialEntity(maxSpeed = 64.0, radius=1.0)
}
class Entity {
- id: Int
- type: Type
- radius: Double
- position: Vector3D
- velocity: Vector3D
+ toXYZ(): String
+ sees(other: Entity): Bool
+ distance(other: Entity): Double
}
Type *-left- Entity: uses
@enduml
|
b1e7b8a50520a57407bffda8ae001d95c837153e
|
1cf4490d48f50687a8f036033c37d76fec39cd2b
|
/src/main/java/global/skymind/training/advanced/gui/swing/ex3/ex3.plantuml
|
567ce9f212af6c7a73b24055bc30993b102907b0
|
[
"Apache-2.0"
] |
permissive
|
muame-amr/java-traininglabs
|
987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83
|
a93268f60e6a8491b1d156fae183a108ff0d9243
|
refs/heads/main
| 2023-08-06T10:04:57.996593
| 2021-09-28T11:21:00
| 2021-09-28T11:21:00
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 745
|
plantuml
|
@startuml
title __EX3's Class Diagram__\n
namespace global.skymind {
namespace training.advanced.gui.swing.ex3 {
class global.skymind.training.advanced.gui.swing.ex3.MySTextField {
~ button : JButton
~ textField : JTextField
+ actionPerformed()
{static} + main()
+ start()
}
}
}
global.skymind.training.advanced.gui.swing.ex3.MySTextField .up.|> java.awt.event.ActionListener
global.skymind.training.advanced.gui.swing.ex3.MySTextField -up-|> javax.swing.JFrame
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
|
15ef5f69a73bd63d2835a697ab0a762273b02d7d
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/InventoryEntryQuantitySetMessage.puml
|
5f0c24f806786ab356c73eaab730fc310d092149
|
[] |
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,326
|
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 InventoryEntryQuantitySetMessage [[InventoryEntryQuantitySetMessage.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]]
oldQuantityOnStock: Long
newQuantityOnStock: Long
oldAvailableQuantity: Long
newAvailableQuantity: Long
supplyChannel: [[ChannelReference.svg ChannelReference]]
}
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
|
beea393cd118542127de0067098fa22641e42fa0
|
4beec2545e0bc9ae7f36905f46459521726e4747
|
/asciidocs/plantuml/Kinokette.puml
|
03aec82bea24711d961df29a7a33c2343dbff493
|
[] |
no_license
|
2122-4ahif-syp/01-cld-hotel-christophhandel
|
4dd1d15be9d09eb76de47e3a9278930c1fd5898c
|
da57be5124d318c29332773c07f7ac68781fb1ca
|
refs/heads/master
| 2023-08-22T23:31:17.561355
| 2021-10-11T08:32:49
| 2021-10-11T08:32:49
| 415,830,025
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 719
|
puml
|
@startuml
class Vorstellung
class Film
class Kino
class Ticket
class Saal
class Sessel
class Schauspieler
class Regisseur
Vorstellung "many" -left- "one" Kino
Vorstellung "many" -down- "one" Saal
Vorstellung -up- "one" Beginn
Vorstellung "many" -right- "one" Film
Vorstellung "one" -left- "many" Ticket
Film "many" -right- "many" Regisseur
Film "many" -down- "many" Schauspieler
Film -up- "one" Art
Saal "one" --> "many" Sessel
class Sessel{
Sitzpreis
Sitznummer
Sitzreihe
}
class Film{
Titel
Land
Herstellungsjahr
ID
Sprache
Verleih
Dauer
}
class Regisseur{
Vorname
Nachname
Geburtsdatum
Nationalität
Todesdatum
}
class Schauspieler{
Vorname
Nachname
Geburtsdatum
Nationalität
Todesdatum
Bemerkung
}
@enduml
|
874c81f84e342d71937bc8074734822da811c837
|
80c70479e08124fb2137de9bffe3779214c83c32
|
/classes.puml
|
8e19f13de48580b1f0cf54292af5aeb2f4fc616d
|
[] |
no_license
|
senichek/safetynet-project5
|
60e315c6f3bf7e9a7ba81e59cf23e4afc2857b33
|
f36693555b0a41998b6a10525ad1ed1b2aa2a3d6
|
refs/heads/master
| 2023-08-25T07:14:40.337549
| 2021-11-06T15:46:03
| 2021-11-06T15:46:03
| 421,825,308
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 4,667
|
puml
|
@startuml
class JsonReader {
+DataSource getData(String pathToJson)
}
class DataRepo {
+DataSource getData()
}
JsonReader *-- DataRepo
class PersonServiceImpl
interface PersonService {
+Person save(Person person)
+Person delete(Person person)
}
PersonService <|-- PersonServiceImpl
class URLsServiceImpl
interface URLsService {
+DataSource getAllData()
+CoveredByFirestationDTO getAllPeopleByFirestation(int num)
+List<ChildAlertDTO> getChildrenByAddress(String address)
+List<Person> getHousholdMembers(String firstName, String lastName, String address)
+Set<String> getPhonesByFirestation(Integer fStationNumber)
+FireDTO getAllByAddressInCaseOfFire(String address)
+Set<Firestation> getFirestationsByAddress(String address)
+LocalDate getBirthdateByName(String fName, String lName)
+String[] getMedicationsByPersonName(String fName, String lName)
+String[] getAllergiesByPersonName(String fName, String lName)
+int getAgeByPersonName(String fName, String lName)
+List<FloodDTO> getAllByFireStationNumberFlood(Set<Integer> fireStationNums)
+List<PersonFullDetails> getAllByFirstNameAndLastName(String firstName, String lastName)
+Set<String> getEmailsByCityName(String city)
}
URLsService <|-- URLsServiceImpl
class MedicalRecordServiceImpl
interface MedicalRecordService {
+Medicalrecord save(Medicalrecord medicalrecord)
+Medicalrecord delete(Medicalrecord medicalrecord)
}
MedicalRecordService <|-- MedicalRecordServiceImpl
class FirestationServiceImpl
interface FirestationService {
+Firestation save(Firestation firestation)
+Firestation delete(Firestation firestation)
}
FirestationService <|-- FirestationServiceImpl
DataRepo -- PersonServiceImpl
DataRepo -- URLsServiceImpl
DataRepo -- MedicalRecordServiceImpl
DataRepo -- FirestationServiceImpl
class Person{
-private String firstName;
-private String lastName;
-private String address;
-private String city;
-private String zip;
-private String phone;
-private String email;
+getters()
+setters()
+hash()
+equals()
}
class Medicalrecord{
-private String firstName;
-private String lastName;
-private LocalDate birthdate;
-private String[] medications;
-private String[] allergies;
+getters()
+setters()
+hash()
+equals()
}
class Firestation{
-private String address;
-private int station;
+getters()
+setters()
+hash()
+equals()
}
class DataSource{
-private List<Person> persons;
-private List<Firestation> firestations;
-private List<Medicalrecord> medicalrecords;
+getters()
+setters()
+hash()
+equals()
}
class PersonFullDetails{
-private String firstName;
-private String lastName;
-private String address;
-private String city;
-private String zip;
-private String phone;
-private String email;
-private LocalDate birthdate;
-private Integer age;
-private String[] medications;
-private String[] allergies;
-private Set<Firestation> firestations;
+getters()
+setters()
+hash()
+equals()
}
PersonFullDetails o-- Person
PersonFullDetails o-- Medicalrecord
PersonFullDetails o-- Firestation
Firestation *-- DataSource
Medicalrecord *-- DataSource
Person *-- DataSource
class ChildAlertDTO{
-private String firstName;
-private String lastName;
-private int age;
-private List<Person> membersOfHoushold;
+getters()
+setters()
+hash()
+equals()
}
Person *-- ChildAlertDTO
class CoveredByFirestationDTO {
-private List<PersonFullDetails> persons;
-private int numberOfKids;
-private int numberOfAdults;
+getters()
+setters()
+hash()
+equals()
}
PersonFullDetails *-- CoveredByFirestationDTO
class FireDTO{
-private List<PersonFullDetails> persons;
-private Set<Integer> fireStationNumbers;
+getters()
+setters()
+hash()
+equals()
}
PersonFullDetails *-- FireDTO
class FloodDTO{
-private String address;
-private List<PersonFullDetails> people;
+getters()
+setters()
+hash()
+equals()
}
PersonFullDetails *-- FloodDTO
class MainController {
-private URLsService urlService;
}
class PersonController {
-private PersonService personService;
}
Class MedicalrecordController {
-private MedicalRecordService medicalRecordService;
}
class FirestationController {
-private FirestationService firestationService;
}
URLsService *-- MainController
PersonService *-- PersonController
MedicalRecordService *-- MedicalrecordController
FirestationService *-- FirestationController
@enduml
|
fba9655ca7212cb7ffa65fac9c4509bb9393606e
|
8376c811bbf1d42c3252f15990e3d5f43d0ab0cd
|
/plantuml/map-supplier-api.puml
|
d5bdc39e5a3b4f3cee90e185120871d2a9874c3c
|
[] |
no_license
|
poznas/engineering-thesis
|
48e1a95ce65ad6ca9a6a39fff960158f30434065
|
9f0e0b1fcc7279dc5f508dc35f33a0836f228ef0
|
refs/heads/master
| 2022-04-07T23:08:18.733142
| 2020-02-01T11:33:35
| 2020-02-01T11:33:35
| 227,904,496
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,873
|
puml
|
@startuml
left to right direction
hide empty members
set namespaceSeparator none
note as N1
Name: <b><color:royalBlue>MapSupplier</color>
Version: <b><color:royalBlue>0.0.2</color>
end note
enum BasicWindDirection {
- N
- NE
- E
- SE
- S
- SW
- W
- NW
}
enum ChopSize {
- N
- S
- M
- H
}
enum CountryCode {
- PL
- EN
- ...
}
enum Depth {
- SHALLOW
- DEEP
}
class Description {
- content <b>:String</b>
- language <b>:CountryCode</b>
}
enum Difficulty {
- EASY
- MEDIUM
- HARD
- PROS_ONLY
}
class MapSupplierResponse {
- matchedRectangle <b>:Rectangle</b>
- pointIds <b>:PointId[]</b>
- points <b>:PointDetails[]</b>
}
enum ObjectStatus {
- AVAILABLE
- DRAFT
- DECLINED
}
enum ObjectType {
- SPOT
}
class PointCoords {
- latitude <b>:Double</b>
- longitude <b>:Double</b>
}
class PointDetails {
- cluster <b>:Boolean</b>
- coords <b>:PointCoords</b>
- distance <b>:Integer</b>
- pointIds <b>:PointId[]</b>
- <color:royalBlue>spot <b>:Spot</b>
}
class PointId {
- objectId <b>:String</b>
- objectType <b>:ObjectType</b>
}
enum Popularity {
- S
- M
- H
}
class Rectangle {
- pointA <b>:PointCoords</b>
- pointB <b>:PointCoords</b>
}
enum SportType {
- WINDSURFING
- KITESURFING
- SURFING
}
class Spot {
- chopSize <b>:ChopSize</b>
- city <b>:String</b>
- country <b>:CountryCode</b>
- dangers <b>:String</b>
- depth <b>:Depth</b>
- descriptions <b>:Description[]</b>
- difficulty <b>:Difficulty</b>
- facilities <b>:SpotFacility[]</b>
- id <b>:String</b>
- liveCamera <b>:String[]</b>
- name <b>:String</b>
- photoUrls <b>:String[]</b>
- popularity <b>:Popularity</b>
- sportTypes <b>:SportType[]</b>
- state <b>:String</b>
- status <b>:ObjectStatus</b>
- waterCurrent <b>:WaterCurrent</b>
- waterType <b>:WaterType</b>
- waveAvgPeriod <b>:Integer</b>
- waveAvgSize <b>:Integer</b>
- waveMaxSize <b>:Integer</b>
- waveQuality <b>:Integer</b>
- bestWindDirections <b>:BasicWindDirection[]</b>
- worstWindDirections <b>:BasicWindDirection[]</b>
}
class SpotFilters {
- ids <b>:String[]</b>
- status <b>:SpotStatus[]</b>
- country <b>:CountryCode[]</b>
- state <b>:String</b>
- city <b>:String</b>
- name <b>:String</b>
- facilities <b>:SpotFacility[]</b>
- difficulty <b>:Difficulty[]</b>
- depth <b>:Depth[]</b>
- sportTypes <b>:SportType[]</b>
- waterType <b>:WaterType[]</b>
- waveAvgPeriod <b>:IntegerRange</b>
- waveAvgSize <b>:IntegerRange</b>
}
enum SpotFacility {
- SCHOOLS
}
enum WaterCurrent {
- N
- S
- M
- H
}
enum WaterType {
- FLAT
- WAVE
}
abstract class MapQuery {
- referenceLocation <b>:PointCoords</b>
- objectTypes <b>:ObjectType[]</b>
- <color:royalBlue>spotFilters <b>:SpotFilters</b>
}
class RectangleMapQuery {
- rectangle <b>:Rectangle</b>
}
class CircleMapQuery {
- center <b>:PointCoords</b>
- radius <b>:Integer</b>
}
interface MapSupplierApi {
+ <i>queryRectangle(RectangleMapQuery query)</i><b>:MapSupplierResponse</b>
}
interface MapSupplierApi {
+ <i>queryCircle(CircleMapQuery query)</i><b>:MapSupplierResponse</b>
}
MapQuery <|-- RectangleMapQuery
MapQuery <|-- CircleMapQuery
MapSupplierResponse *-- Rectangle
MapSupplierResponse *-- PointId
MapSupplierResponse *-- PointDetails
PointDetails *-- PointCoords
PointDetails *-- PointId
PointDetails *-- Spot
Rectangle *-- PointCoords
Spot *-- Description
MapSupplierApi --> RectangleMapQuery
MapSupplierApi --> CircleMapQuery
MapSupplierApi --> MapSupplierResponse
@enduml
|
25dd4ef1e09c0b3288b72fe986f17b80492b9926
|
2242e2675ed7cb920335ada82f506bf3703df399
|
/UML.puml
|
63756def894878fde55a7381c2e703c912977b49
|
[] |
no_license
|
alfianisnan26/komoditasbuahpohon
|
8f85fad32e40dca0cc4d07cb00b84314b6ce3c7e
|
e152d982ef51a7daa1914edfd7411041dc89a373
|
refs/heads/master
| 2023-04-09T17:33:15.694288
| 2021-04-24T03:01:19
| 2021-04-24T03:01:19
| 361,057,297
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,933
|
puml
|
@startuml
interface oop.tugas.interfaces.Penghijauan {
~ boolean defaultPenghijauan()
~ boolean fotosintesis(double)
~ void tumbuhDaun(double)
~ void rontokDaun(double)
}
class oop.tugas.concretes.buah.BuahDurian {
+ Rasa ubahRasa()
+ UmurBuah ubahUmurBuah()
}
abstract class oop.tugas.abstracts.Buah {
+ UkuranTumbuh beratBuah
+ int kematian
+ Rasa rasa
+ UmurBuah umurBuah
# int umur
+ {abstract}Rasa ubahRasa()
+ {abstract}UmurBuah ubahUmurBuah()
+ UkuranTumbuh tumbuh(double)
}
class oop.tugas.concretes.kalkulasi.UkuranTumbuh {
- double ukuran
- double kecepatan
- double percepatan
+ UkuranTumbuh tumbuh(double)
+ void setKecepatan(double)
+ void setPercepatan(double)
+ void setUkuran(double)
+ double getKecepatan()
+ double getPercepatan()
+ double getUkuran()
}
class oop.tugas.concretes.main.Pertanian {
+ {static} void main(String[])
}
class oop.tugas.concretes.buah.BuahRambutan {
+ Rasa ubahRasa()
+ UmurBuah ubahUmurBuah()
}
interface oop.tugas.interfaces.Komoditas {
~ boolean defaultKomoditas()
~ int getHarga()
~ void setHarga(int)
}
class oop.tugas.concretes.pohon.PohonRambutan {
- int hargaPerKiloBuah
- int indexBuah
+ int getHarga()
+ void setHarga(int)
+ boolean fotosintesis(double)
+ void tumbuhDaun(double)
+ void rontokDaun(double)
+ void generateBuah(int,int)
+ void print()
}
class oop.tugas.concretes.kalkulasi.Randomizer {
- {static} Random random
+ {static} int get(int,int)
+ {static} boolean get()
+ {static} double get(double,double)
}
class oop.tugas.concretes.kalkulasi.Printer {
- {static} int SPACELEN
+ {static} void separator(position)
+ {static} void header(String)
+ {static} void data(String,Object)
}
abstract class oop.tugas.abstracts.Tumbuhan {
- {static} int idCounter
# ArrayList<M> fruits
# UkuranTumbuh batangPokok
# UkuranTumbuh daun
- int kematian
- String name
- int id
+ int totalOksigen
+ int totalKarbondioksida
- double indeksFotosintesis
# int umur
- {static} int getIdCounter()
+ String getName()
+ boolean tumbuh(double)
+ ArrayList<M> petikBuah(Predicate<M>)
+ {abstract}void generateBuah(int,int)
+ {abstract}void print()
}
class oop.tugas.concretes.pohon.PohonDurian {
- int hargaPerKiloBuah
- int indexBuah
+ int getHarga()
+ void setHarga(int)
+ boolean fotosintesis(double)
+ void tumbuhDaun(double)
+ void rontokDaun(double)
+ void generateBuah(int,int)
+ void print()
}
oop.tugas.abstracts.Buah <|-- oop.tugas.concretes.buah.BuahDurian
oop.tugas.abstracts.Buah <|-- oop.tugas.concretes.buah.BuahRambutan
oop.tugas.interfaces.Komoditas <|.. oop.tugas.concretes.pohon.PohonRambutan
oop.tugas.interfaces.Penghijauan <|.. oop.tugas.concretes.pohon.PohonRambutan
oop.tugas.abstracts.Tumbuhan <|-- oop.tugas.concretes.pohon.PohonRambutan
oop.tugas.interfaces.Komoditas <|.. oop.tugas.concretes.pohon.PohonDurian
oop.tugas.interfaces.Penghijauan <|.. oop.tugas.concretes.pohon.PohonDurian
oop.tugas.abstracts.Tumbuhan <|-- oop.tugas.concretes.pohon.PohonDurian
@enduml
|
b95a096ddfe131afd499bc7d47872b9f5b1490f1
|
644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc
|
/photoniced/testiii/device/DeviceChanger.puml
|
e0476ad1ced5cc051fb002f04195dd9c02d810c6
|
[] |
no_license
|
tzAcee/photonized
|
c929a6c04bedd0304a4e427d6c2895cdf73568d3
|
aa53ed7bda18959c58467fe4560dc3ff4e1ae422
|
refs/heads/main
| 2023-05-03T15:13:31.148910
| 2021-05-25T13:55:17
| 2021-05-25T13:55:17
| 316,536,113
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 272
|
puml
|
@startuml
class DeviceChanger {
+ DeviceChanger(console:IConsole)
+ set_parser(parser:ICommandLineParser) : void
+ change() : void
}
IDeviceChanger <|-- DeviceChanger
DeviceChanger --> "_parser" ICommandLineParser
DeviceChanger --> "_Console" IConsole
@enduml
|
64c36f0ed3321e3dafe467cec416366024f94930
|
abf589230768e5ffd04eaf72fe9d9d225b8143a8
|
/assignments/i.murzakov/TP5/src/observer/observer.plantuml
|
a5634ee36e9e75882c18bbf7e3a775ea68a15b39
|
[] |
no_license
|
Nitrogen13/InnopolisDesignPatterns
|
023ef734bc09ba77491c955253b055b87f6b60de
|
2248590ffebd6ddcfd557106da598c5c0414c2da
|
refs/heads/master
| 2022-04-26T15:41:30.482693
| 2020-04-17T16:47:54
| 2020-04-17T16:47:54
| 250,339,363
| 0
| 0
| null | 2020-04-17T06:11:59
| 2020-03-26T18:26:43
|
HTML
|
UTF-8
|
PlantUML
| false
| false
| 3,034
|
plantuml
|
@startuml
title __OBSERVER's Class Diagram__\n
class observer.CourseRecord {
- name : String
- numOfStudents : int
+ CourseRecord()
+ getName()
+ getNumOfStudents()
+ setNumOfStudents()
+ toString()
}
class observer.LayoutConstants {
{static} + barHeight : int
{static} + barSpacing : int
{static} + barWidth : int
{static} + courseColours : Color[]
{static} + graphHeight : int
{static} + maxValue : int
{static} + xOffset : int
{static} + yOffset : int
{static} + paintBarChartOutline()
}
class observer.pattern.BarChartObserver {
- courseData : Vector<CourseRecord>
+ BarChartObserver()
+ paint()
+ update()
+ update()
{static} ~ addIfFound()
}
class observer.pattern.CourseController {
- courseData : CourseData
- coursePanel : JPanel
- sliders : Vector<JSlider>
+ CourseController()
+ actionPerformed()
+ addCourse()
{static} + main()
+ stateChanged()
+ update()
+ update()
}
class observer.pattern.CourseData {
- courseAdditionObservers : Vector<Observer>
- courseChangeObservers : Vector<Observer>
- courseData : Vector<CourseRecord>
+ CourseData()
+ addCourseRecord()
+ attach()
+ changeCourseRecord()
+ getUpdate()
+ notifyObservers()
}
abstract class observer.pattern.Observable {
# observers : Vector<Observer>
+ Observable()
+ attach()
+ detach()
{abstract} + getUpdate()
+ notifyObservers()
}
interface observer.pattern.Observer {
{abstract} + update()
{abstract} + update()
}
class observer.pattern.PieChartObserver {
- courseData : Vector<CourseRecord>
+ PieChartObserver()
+ paint()
+ update()
+ update()
}
observer.pattern.BarChartObserver .up.|> observer.pattern.Observer
observer.pattern.BarChartObserver -up-|> javax.swing.JPanel
observer.pattern.CourseController .up.|> java.awt.event.ActionListener
observer.pattern.CourseController .up.|> javax.swing.event.ChangeListener
observer.pattern.CourseController .up.|> observer.pattern.Observer
observer.pattern.CourseController -up-|> javax.swing.JPanel
observer.pattern.CourseData -up-|> observer.pattern.Observable
observer.pattern.PieChartObserver .up.|> observer.pattern.Observer
observer.pattern.PieChartObserver -up-|> javax.swing.JPanel
class observer.nonpattern.CourseViewer {
- button : JButton
- coursePanel : JPanel
- scrollPane : JScrollPane
- sliderPanel : JPanel
- sliders : Vector<JSlider>
+ CourseViewer()
+ actionPerformed()
+ addCourse()
{static} + main()
+ paint()
+ paintPie()
+ stateChanged()
}
observer.nonpattern.CourseViewer .up.|> java.awt.event.ActionListener
observer.nonpattern.CourseViewer .up.|> javax.swing.event.ChangeListener
observer.nonpattern.CourseViewer -up-|> javax.swing.JFrame
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
|
5263b8d30b100b4129103deba398601b1cbb34fa
|
c7681ac0c02168534736a5fceac56a8735b7f728
|
/mars-rover.puml
|
5dbe8314016f8f485d603a66c35e2fb39b0078b7
|
[] |
no_license
|
abinormal/mars-rover-kata
|
a5fcece7f40db187f4b709c0170f726e593aa9f5
|
af2b05e97a7973d5513499407d9a2a2e3df0b35e
|
refs/heads/main
| 2023-08-28T13:35:35.999178
| 2021-10-19T14:05:56
| 2021-10-19T14:05:56
| 409,541,617
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 768
|
puml
|
@startuml
'https://plantuml.com/class-diagram
Rover }-- Plateau
Rover -- Direction
Error -- Plateau
Error -- Vehicle
class Plateau {
- X_MIN: int = 0
- Y_MIN: int = 0
- X_MAX: int
- Y_MAX: int
+ Plateau(x: int, y: int): void
+ move(x: int, y: int, d: Direction): Error
- collisionCheck(): Error
- edgeCheck(): Error
}
class Vehicle {
- posX: int
- posY: int
- d: Direction
+ Vehicle(x: int, y: int, d: Direction)
+ processMovement(movement: String) : Error
- checkMovementString(movement: String) : Error
- goLeft()
- goRight()
- move(): Error
}
class Rover implements Vehicle {
}
enum Error {
ERROR_OVER_EDGE,
ERROR_TAKEN_SPOT,
ERROR_BAD_MOVEMENT_STRING,
}
enum Direction {
NORTH,
EAST,
SOUTH,
WEST
}
@enduml
|
31213c8cf95f0ed181536d04eeba7e51a56666fd
|
77b62d62f7bb492cb0ba2fe62131338b495f3e52
|
/Documents/Shos.Chatter.Server/Controllers/UsersController.puml
|
476f58d80510c981cee62f54633816eb038fe0cb
|
[
"MIT"
] |
permissive
|
Fujiwo/Shos.Chatter
|
0dc94cda60eab49363b1b04b1e189d014edf5852
|
41a95faba18049f3934b5b4d1268583ee43abc35
|
refs/heads/master
| 2023-03-17T23:26:10.709285
| 2021-03-11T05:37:09
| 2021-03-11T05:37:09
| 323,569,958
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 517
|
puml
|
@startuml
class UsersController {
+ UsersController(context:ChatterContext)
+ <<async>> GetUsers() : Task<ActionResult<IEnumerable<User>>>
+ <<async>> GetUser(id:int) : Task<ActionResult<User>>
+ <<async>> PutUser(id:int, user:User) : Task<IActionResult>
+ <<async>> PostUser(user:User) : Task<ActionResult<User>>
+ <<async>> DeleteUser(id:int) : Task<ActionResult<User>>
UserExists(id:int) : bool
}
ControllerBase <|-- UsersController
UsersController --> "context" ChatterContext
@enduml
|
66e3a8e472aaabd2ae5c5df2538f09c11a5dd353
|
ed45ea4470bcfc497e2584697d7842a540e04fd9
|
/ros2/navigation2/nav2_util/clear_entirely_costmap_service_client.puml
|
fe44bd5521e1b7b887bd145f492a966292ec7b08
|
[] |
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
| 471
|
puml
|
@startuml
'https://plantuml.com/class-diagram
namespace nav2_util{
class ClearEntirelyCostmapServiceClient<nav2_msgs::srv::ClearEntirelyCostmap>{
-- public method --
explicit ClearEntirelyCostmapServiceClient(service_name);
using clearEntirelyCostmapServiceRequest = ServiceClient<ClearEntireCostmap>::RequestType;
using clearEntirelyCostmapServiceResponse =ServiceClient<ClearEntireCostmap>::ResponseTyp
}
ServiceClient <-- ClearEntirelyCostmapServiceClient
}
@enduml
|
14f5f2265fb55afd1d2c5f58a5f3d6715012afe4
|
c6758b96bc0dfee01f3ebad74dd999dcc1924fdc
|
/test3/class1.puml
|
6feca05a14953b96f50042bb962ea5656bf1d531
|
[] |
no_license
|
Neddy1995/is_analysis
|
7be7cc66775ffc82563e50394483c9d705d551c6
|
a0e8f793824b74cea3d0f770e6417fe987c89644
|
refs/heads/master
| 2021-04-09T15:47:26.980495
| 2018-06-07T05:22:36
| 2018-06-07T05:22:36
| 125,832,685
| 1
| 3
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,608
|
puml
|
@startuml
class 馆藏目录{
}
class 馆藏资源品种{
资源名称
国际出版号
价格
简介
馆藏数量
可借数量
}
class 碟片品种{
碟片类型
碟片数
制作公司
}
class 图书品种{
作者
出版社
出版日期
}
class 预定记录{
预定日期
}
class 资源项{
馆藏流水号
状态
}
class 借书记录{
结束日期
归还日期
}
class 读者{
姓名
身份证号
借书卡号
图书限额
已借图书数
碟片限额
已借碟片数
}
class 教师读者{
查看学生借书情况()
}
class 学生读者{
}
class 图书管理员{
职工号
姓名
}
class 教师图书管理员{
授予学生管理员权限()
}
class 学生管理员{
}
class 逾期记录{
预期天数
}
class 罚款细则{
}
class 系统管理员{
职工号
姓名
图书管理()
管理员管理()
读者管理()
}
馆藏目录 "1" --right"1..*" 馆藏资源品种
馆藏资源品种 "1" --up "*" 预定记录:被预定
预定记录 "*" --down "1" 读者
馆藏资源品种 "1"*--right "*"资源项:拥有
馆藏资源品种 o--down 碟片品种
馆藏资源品种 o--down 图书品种
资源项 "1"--down "0..1"借书记录
读者 --left 借书记录
图书管理员 "1"--right"*" 借书记录:登记
借书记录 "1"--down "0..1" 逾期记录
逾期记录 "*"--right"0..1" 罚款细则:使用
读者 <|-- 学生读者
读者 <|-- 教师读者
图书管理员 <|-- 教师图书管理员
图书管理员 <|-- 学生管理员
图书管理员 <|-- 系统管理员
@enduml
|
e3910b3822bddb58020b9ff15cc9ece402028855
|
4291ef524e205e9b7c7c479052e1fe40078a1f60
|
/doc/part_four/co2-sensor.puml
|
4a8f81cf36a161208492983fb6b8d4ea90b2ecec
|
[
"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
| 651
|
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
class dev.nymann.co2_sensor.Main {
+ {static} void main(String[])
}
class dev.nymann.co2_sensor.CO2SensorAdapter {
+ String getName()
+ Double getValue()
+ void start()
+ void stop()
}
dev.nymann.sensor.Sensor <|-- dev.nymann.co2_sensor.CO2SensorAdapter
@enduml
|
efdfffb47b6c145eb252c3dabb5fd3ffe937a75b
|
10ba145e3e26796ec618e76328f3ca90d4521b6a
|
/设计模式/java演示版/design-pattern/src/main/java/com/zhenhunfan/design/pattern/_02_factory/absfactory/pizzastore/披萨店案例类图.puml
|
f4bd4e550cd8cdfc863ff4505291c8f77860bca2
|
[] |
no_license
|
zhenhunfan/learn
|
a7fa4c39ce0e791313abaa51325591a6f98abf09
|
bdb6538de38db9e3d9aa6a827f4a445e57325852
|
refs/heads/main
| 2023-03-30T14:22:26.202669
| 2021-03-30T02:19:20
| 2021-03-30T02:19:20
| 309,221,361
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 684
|
puml
|
@startuml
abstract class Pizza{
void prepare()
void bake()
void cut()
void box()
}
abstract class Hotdog{
void prepare()
void bake()
void cut()
void box()
}
class CheesePizza{}
class PepperPizza{}
class CheeseHotdog{}
class PepperHotdog{}
Pizza <|-- CheesePizza
Pizza <|-- PepperPizza
Hotdog <|-- CheeseHotdog
Hotdog <|-- PepperHotdog
interface FoodFactory{
Pizza createPizza()
Hotdog createHotdog()
}
class CheeseFactory{}
class PepperFactory{}
FoodFactory <|-- CheeseFactory
FoodFactory <|-- PepperFactory
CheeseFactory ..> CheesePizza
PepperFactory ..> PepperPizza
CheeseFactory ..> CheeseHotdog
PepperFactory ..> PepperHotdog
@enduml
|
6542a6b8e36dbe829f3c8f27f737bfacf5bf75b3
|
1ef13285393e39f7cf05fdbdd448d7773c051ab1
|
/docs/diagrams/BackendDB.puml
|
79bbcb66e62e82b16da20acbb8beaa86647a075d
|
[] |
no_license
|
Doodle2Gather/Doodle2Gather
|
3cdd6d476d491ddf20ed471f09d7391c8d2a04dc
|
6f0900b5924485187659b6b43c018b722655eb02
|
refs/heads/main
| 2023-04-12T15:06:21.129117
| 2021-04-28T03:09:17
| 2021-04-28T03:09:17
| 345,558,113
| 10
| 4
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,633
|
puml
|
@startuml
' STYLE START
hide empty members
skinparam shadowing false
' STYLE END
class "PersistedDTStroke" as PersistedDTStroke << (C, DarkSeaGreen) >> {
~{static} schema
~id : UUID?
~roomId : UUID
~doodle : PersistedDTDoodle
~strokeId : UUID
~strokeData : Data
~isDeleted : Bool
~createdBy : String
}
class "PersistedDTAction" as PersistedDTAction << (C, DarkSeaGreen) >> {
~{static} schema
~id : UUID?
~type : String
~roomId : UUID
~doodle : PersistedDTDoodle
~strokes : [PersistedDTStrokeIndexPair]
~createdBy : String
~createdAt : Date?
}
class "PersistedDTDoodle" as PersistedDTDoodle << (C, DarkSeaGreen) >> {
~{static} schema
~id : UUID?
~room : PersistedDTRoom
~strokes : [PersistedDTStroke]
~actions : [PersistedDTAction]
~getStrokes()
~getActions()
}
class "PersistedDTUserAccesses" as PersistedDTUserAccesses << (C, DarkSeaGreen) >> {
~{static} schema
~id : UUID?
~user : PersistedDTUser
~room : PersistedDTRoom
~isOwner : Bool
~canEdit : Bool
~canVideoConference : Bool
~canChat : Bool
~setDefaultPermissions()
}
class "PersistedDTRoom" as PersistedDTRoom << (C, DarkSeaGreen) >> {
~{static} schema
~id : UUID?
~name : String
~inviteCode : String
~createdBy : PersistedDTUser
~accessibleBy : [PersistedDTUser]
~doodles : [PersistedDTDoodle]
-generateInviteCode()
}
class "PersistedDTUser" as PersistedDTUser << (C, DarkSeaGreen) >> {
~{static} schema
~id : String?
~displayName : String
~email : String
~createdRooms : [PersistedDTRoom]
~accessibleRooms : [PersistedDTRoom]
~createdAt : Date?
~updatedAt : Date?
~getAccessibleRooms()
}
class "PersistedDTUser" as PersistedDTUser13 << (X, Orchid) extension >> {
{static} getAllAccessibleRooms(userId:on:)
}
class "PersistedDTUser" as PersistedDTUser14 << (X, Orchid) extension >> {
{static} getSingleById(_:on:)
{static} getAll(on:)
{static} getAllRooms(_:on:)
{static} createUserInfo(req:)
{static} readUserInfo(req:)
{static} getAllRooms(req:)
}
class "PersistedDTRoom" as PersistedDTRoom15 << (X, Orchid) extension >> {
{static} createRoom(_:on:)
}
class "PersistedDTRoom" as PersistedDTRoom16 << (X, Orchid) extension >> {
{static} getSingleById(_:on:)
{static} getSingleByCode(_:on:)
{static} getAllDoodles(_:on:)
{static} getAll(on:)
{static} getRoomDTUserAccesses(_:on:)
{static} getRoomPermissions(roomId:on:)
}
class "PersistedDTStroke" as PersistedDTStroke17 << (X, Orchid) extension >> {
{static} getSingle(_:on:)
{static} getAll(on:)
}
class "PersistedDTAction" as PersistedDTAction18 << (X, Orchid) extension >> {
{static} getAll(on:)
{static} getLatest(on:)
}
class "PersistedDTDoodle" as PersistedDTDoodle19 << (X, Orchid) extension >> {
{static} createDoodle(_:on:)
{static} removeDoodle(_:on:)
}
class "PersistedDTDoodle" as PersistedDTDoodle20 << (X, Orchid) extension >> {
{static} getSingleById(_:on:)
{static} getAllActions(_:on:)
{static} getAllStrokes(_:on:)
{static} getAll(on:)
}
PersistedDTUser --> PersistedDTUser13 : has queries
PersistedDTUser --> PersistedDTUser14 : has queries
PersistedDTRoom --> PersistedDTRoom15 : has queries
PersistedDTRoom --> PersistedDTRoom16 : has queries
PersistedDTStroke --> PersistedDTStroke17 : has queries
PersistedDTAction --> PersistedDTAction18 : has queries
PersistedDTDoodle --> PersistedDTDoodle19 : has queries
PersistedDTDoodle --> PersistedDTDoodle20 : has queries
PersistedDTUserAccesses -up[hidden]- PersistedDTStroke17
PersistedDTRoom -up[hidden]- PersistedDTAction18
PersistedDTUser -up[hidden]- PersistedDTDoodle20
@enduml
|
80487883c801698c3be918d9ad41a050a872755a
|
24cc83f303b034e808e1c775ba8063f9ce01afc4
|
/di/02.puml
|
068ccb5a3d411590fcacf19bbc83cf1e6bd38ffc
|
[] |
no_license
|
iamapen/puml
|
7110aea5171be5bd8f735fb252c674c8a78a9943
|
9a59dad08faee1b494c2dafefbefb32feacb90b6
|
refs/heads/master
| 2020-08-26T19:18:18.364585
| 2020-01-05T17:48:55
| 2020-01-05T17:48:55
| 214,042,778
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 472
|
puml
|
@startuml
title
DI
endtitle
legend top
コンストラクタによるDI。
IHardware を実装したモックを注入すれば、
実際のハードウェアがなくても LowLayer のテストができる。
endlegend
interface IHardware {
+ something()
}
class HardwareImpl {
+ something()
}
IHardware <|.. HardwareImpl
class LowLayer {
- hardware :IHardware
+ construct(hardware:IHardware)
+ doHoge()
}
IHardware <- LowLayer : something()
@enduml
|
4eeb264fb91e97cf72afe691dc8f640861a7e610
|
ae856e50e04474c8ab1f4bd57ca78ba391ac8ccd
|
/ch08-command-patterns/src/exercise/ex02/ex02_1/command-pattern-enhanced-twobutton-controller.puml
|
ddd2666d5ddb7239130cf4e48debdf49ab6c29ea
|
[] |
no_license
|
outofworld98/java-design-patterns
|
d7c41ad0a41bf1f3d1ba4a9f4f2a212658aec427
|
75964a5387cad3f54726d0f7ba98b0765ca0d650
|
refs/heads/master
| 2022-03-29T17:38:14.238273
| 2019-01-17T11:10:00
| 2019-01-17T11:10:00
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 303
|
puml
|
@startuml
class TwoButtonController {
+ setCommand(command1 : Command, command2 : Command)
+ button1Pressed() : void
+ button2Pressed() : void
}
interface Command {
+ execute() : void
}
TwoButtonController -> Command : -command1
TwoButtonController -> Command : -command2
@enduml
|
075f94f57f49245a2d5d9aef5bcb9b02b807e14c
|
ee96a70918e886f49a11a2646742ecd0615cd83d
|
/src/diagrams/firebase/models.puml
|
8741bdc9a4f56bdeb968ecc7ca194599d63c162d
|
[
"MIT"
] |
permissive
|
DorinR/Politisense
|
675c8138b8e768d3962759c8a52c15dfd3b42756
|
921e9ab04b378ebe341186d32e5c9522cab624b6
|
refs/heads/master
| 2023-01-23T12:20:29.224166
| 2020-04-12T00:42:39
| 2020-04-12T00:42:39
| 317,986,401
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 5,183
|
puml
|
@startuml
package Utils #e0e0d1 {
class Condition
}
package Models #e0e0d1 {
abstract class Model {
+ serialise(model: Model) : String
{static} + deserialise(json: Object, proto: Model) : Model
}
Model -up-> Condition
class Bill extends Model{
- id : Number
- number: String
- text: String
- link: String
- dateVoted: String
- sponsorName: String
+ Bill(id : Number, number: String, text: String, link: String, dateVoted: String, sponsorName: String) : Bill
{static} + deserialise(json: Object, proto: Bill) : Bill
}
class BillClassification extends Model {
- bill: String
- raw: String
- category: String
BillClassification(bill: String, raw: String, classification: String) : BillClassification
{static} + deserialise(json: Object, proto: BillClassification) : BillClassification
}
class TfIdfClassification extends Model {
- bill: String
- raw: Object
+ TfIdfClassification(bill: String, raw: Object) : TfIdfClassification
{static} + deserialise(json: Object, proto: TfIdfClassification) : TfIdfClassification
}
class Description extends Model {
- identifier: String
- description: String
+ Description(identifier: String, description: String) : Description
{static} + deserialise(json: Object, proto: Description) : Description
}
class FinancialRecord extends Model {
- member: String
- parent: String
- category: String
- amount: Number
- year: Number
- quarter: Number
+ FinancialRecord(member: String, parent: String, category: String, amount: Number, year: Number, quarter: Number) : FinancialRecord
{static} + deserialise(json: Object, proto: FinancialRecord) : FinancialRecord
}
class LegislativeActivity extends Model {
- number: String
- title: String
- link: String
- description: String
- date: String
- yes: Number
- no: Number
+ LegislativeActivity(number: String, title: String, link: String, description: String, date: String, yes: Number, no: Number) : LegislativeActivity
{static} + deserialise(json: Object, proto: LegislativeActivity) : LegislativeActivity
}
class PoliticalParty extends Model {
- name: String
- seats: Number
- imageUrl: String
+ PoliticalParty(name: String, seats: Number, imageUrl: String) : PoliticalParty
{static} + deserialise(json: Object, proto: PoliticalParty) : PoliticalParty
}
class Politician extends Model {
- name: String
- party: String
- riding: String
- start: Number
- end: Number
- imageUrl: String
+ Politician(name: String, party: String, riding: String, start: Number, end: Number, imageUrl: String) : Politician
{static} + deserialise(json: Object, proto: Politician) : Politician
}
class Riding extends Model {
- code: Number
- nameEnglish: String
- nameFrench: String
- population: Number
+ Riding(code: Number, nameEnglish: String, nameFrench: String, population: Number) : Riding
{static} + deserialise(json: Object, proto: Riding) : Riding
}
class Role extends Model {
- group: String
- title: String
- fromDate: Number
- toDate: Number
- politician: String
- type: String
+ Role(group: String, title: String, fromDate: Number, toDate: Number, politician: String, type: String) : Role
{static} + deserialise(json: Object, proto: Role) : Role
}
class User extends Model {
- email: String
- firstname: String
- lastname: String
- password: String
- postalCode: String
- riding: String
- categories: Object
+ User(email: String, firstname: String, lastname: String, password: String, postalCode: String, riding: String, categories: Object) : User
{static} + deserialise(json: Object, proto: User) : User
}
class Vote extends Model {
- member: String
- vote: String
- yea: Boolean
- paired: Boolean
+ Vote(member: String, vote: String, yea: Boolean, paired: Boolean) : Vote
{static} + deserialise(json: Object, proto: Vote) : Vote
}
class VoteRecord extends Model {
- billNumber: String
- id: Number
- bill: String
- yeas: Number
- nays: Number
- type: String
- year: Number
- month: Number
+ VoteRecord(billNumber: String, id: Number, yeas: Number, nays: Number, type: String, year: Number, month: Number) : VoteRecord
{static} + deserialise(json: Object, proto: VoteRecord) : VoteRecord
}
package Builders #e0e0d1 {
class BillBuilder
class RoleBuilder
class VoteParticipantBuilder
class VoteRecordBuilder
}
Builders -up-> Bill
Builders -up-> Role
Builders -up-> Vote
Builders -up-> VoteRecord
}
@enduml
|
347e8a50117ec3e0664e32e13cebb06c4b9fa80b
|
4e65b4724b9d042bb45c32f217a1111c4259b280
|
/TD3.plantuml
|
97aa52a7db07f4868f12fe735bf4d80b743fb9e0
|
[
"MIT"
] |
permissive
|
IUT-Blagnac/bcoo-gotilarins
|
9802fd2c82069bea9d619236140c7216a8e6cb21
|
10bb2b98ae0bef3696956b72e1bb282d76676d75
|
refs/heads/main
| 2023-04-11T08:07:36.864995
| 2021-04-27T13:32:26
| 2021-04-27T13:32:26
| 335,632,404
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 584
|
plantuml
|
@startuml
hide circle
hide empty methods
hide empty attributes
class Stage{
lieu
dateDebut
dateFin
nomTuteurEntreprise
theme
noteStage
}
class Entreprise{
nom
adresse
siegeSocial
}
class Promotion{
}
class Etudiant{
numINE
nom
prenom
moyenneGenerale
}
class GroupeTP{
nom
}
class GroupeTD{
nom
}
class Enseignant {
nom
prenom
specialite
}
Stage "*" -- "1" Entreprise
Stage -"1" Promotion
Stage --"0..1 tuteur" Enseignant
Etudiant -"1" GroupeTP
GroupeTP -"1" GroupeTD
GroupeTD --"1" Promotion
@enduml
|
ff4cc2cb91f8a6a7db2fb87308f6fce9b9915a25
|
83147b64e04741de0403ef88b6c9aeba85d05361
|
/docs/Iteracao3/UC10/UC10_MD.puml
|
c43fe3c27dea23be2b472252ecc719cbefae5636
|
[] |
no_license
|
antoniodanielbf-isep/ESOFT-2020
|
3af037382ecf70f5b25448765e841a8733cc3968
|
a1bcfcbb7951b58afcc9c1f663265091dde3926e
|
refs/heads/main
| 2023-06-04T23:48:29.068810
| 2021-06-20T18:18:38
| 2021-06-20T18:18:38
| 378,711,541
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,133
|
puml
|
@startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Plataforma {
-String designacao
}
class Organizacao {
-String nome
-String NIF
-String website
-String telefone
-String email
}
class Colaborador {
-String nome
-String funcao
-String telefone
-String email
}
class TipoRegimento
{
-String designacao
-String descricaoRegras
}
class Freelancer {
-String nome
-String NIF
-String telefone
-String email
}
class Anuncio
{
-Date dtInicioPublicitacao
-Date dtFimPublicitacao
-Date dtInicioCandidatura
-Date dtFimCandidatura
-Date dtInicioSeriacao
-Date dtFimSeriacao
}
class Candidatura
{
-Date dataCandidatura
-Double valorPretendido
-Integer nrDias
-String txtApresentacao
-String txtMotivacao
}
class Classificacao{
-Integer lugar
-String justificacao
}
class ProcessoSeriacao{
-Date dataRealizacao
-String conclusao
}
class ProcessoAtribuicao {
-Date dataAtribuicao
}
class Adjudicacao {
-String organizacao
-String freelancer
-String descTarefa
-Date inicPeriodoAdjudicacao
-Date fimPeriodoAdjudicacao
-int valor
-String refAnuncio
-Date dataAdjudicacao
-int numSequencialPAno
}
Plataforma "1" -- "*" Organizacao : tem registadas >
Plataforma "1" -- "*" TipoRegimento : suporta >
Plataforma "1" -- "*" Anuncio : publicita >
Plataforma "1" -- "*" Freelancer : tem/usa >
Organizacao "1" -- "1..*" Colaborador: tem >
Anuncio "*" -- "1" TipoRegimento: rege-se por >
Anuncio "*" -- "1" Colaborador: publicado por >
Anuncio "1" -- "*" Candidatura: recebe >
Anuncio "1" -- "0..1" ProcessoSeriacao: espoleta >
Candidatura "*" -- "1" Freelancer: realizada por >
ProcessoSeriacao "*" -- "1" TipoRegimento: decorre em concordância com >
ProcessoSeriacao "1" -- "1..*" Colaborador: realizado por >
ProcessoSeriacao "1" -- "*" Classificacao: resulta >
ProcessoSeriacao "1" -- "1" ProcessoAtribuicao: prosseguindo com >
ProcessoAtribuicao "1" -- "1" Adjudicacao: resulta >
Classificacao "0..1" -- "1" Candidatura: referente a >
@enduml
|
f1d1cb92cef6bf8396fe3d0befcb17f5a45f11a7
|
ee59870ee11e8404fef50bb7e25b3eb1c8186e92
|
/plantuml/pcbnew_uml.puml
|
00bddf1568081113e90fecc174d1a7898b3477cb
|
[
"Apache-2.0"
] |
permissive
|
trevorpeacock/kicad_mmccoo
|
7c7e46bd4c1353e0429dd66288efa2da8a8b7274
|
3f0efb38549f8de1daf2face6a15377084c5cde6
|
refs/heads/master
| 2021-07-14T10:08:34.038316
| 2020-10-10T03:12:07
| 2020-10-10T03:12:07
| 205,987,511
| 1
| 0
|
Apache-2.0
| 2019-09-03T04:14:29
| 2019-09-03T04:14:29
| null |
UTF-8
|
PlantUML
| false
| false
| 4,651
|
puml
|
# Copyright [2017] [Miles McCoo]
# 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
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
@startuml
pcbnew --> Board
Board --> NetMap
Board o-- "0..*" Pad
Board o-- "0..*" Module
Board o-- ZoneContainer
NetMap o-- "0..*" Net
Pad --> wxPoint
Pad --> Module
Pad --> wxSize
Pad --> PadShape
Board --> EDA_RECT
Board o-- Track
Board o-- DrawSegment
Module o-- Pad
Module o-- DrawSegment
ZoneContainer --> CPolyLine
Net --> NetClass
Net o-- Pad
Net --> Board
Track --> Net
Track --> wxPoint
Track <|-- Via
Via --> ViaType
class pcbnew {
Board GetBoard()
Track TRACK(board)
Via VIA(board)
int LAYER_ID_COUNT
}
class Board {
NetMap GetNetsByNetcode()
NetMap GetNetsByName()
Pad[] GetPads()
EDA_RECT ComputeBoundingBox()
Track[] TracksInNet(int netcode)
# GetTracks() actually returns a track_list
# tracks inclue Vias
Track[] GetTracks()
# there's not an exposed way to cast track->via
VIA GetViaByPosition(wxPoint)
Module[] GetModules()
Module FindModuleByReference(string)
string GetLayerName(int)
# zone stuff
int GetAreaCount()
ZoneContainer GetArea(int)
--
Add(Track)
Remove(Track)
Add(DrawSegment)
Remove(DrawSegment)
ZoneContainer InsertArea(int netcode, 0, int layer, int x, int y, int hatch)
}
class DrawSegment {
string GetLayerName()
wxPoint GetStart()
wxPoint GetEnd()
EDA_RECT GetBoundingBox()
--
SetStart(wxPoint)
SetEnd(wxPoint)
SetLayer(int)
}
class ZoneContainer {
int GetLayer()
string GetLayerName()
Net GetNet()
CPolyLine Outline()
}
class CPolyLine {
int GetContoursCount()
int GetContourStart(int)
int GetContourEnd(int)
int GetContourSize(int)
int GetX(int)
int GetY(int)
int GetPos(int)
int NO_HATCH
int DIAGONAL_FULL
int DIAGONAL_EDGE
--
AppendCorner(int x, int y)
}
class Pad {
string GetPadName()
Net GetNet()
wxPoint GetPosition()
Module GetParent()
wxSize GetSize() # this is affected by the orientation
double GetOrientationDegrees()
int GetShape() # compare to PadShapevalues
}
class Module {
--
string GetReference()
string GetValue()
Pad[] Pads()
# elements of subsheets
# will have similar paths
string GetPath()
# GraphicalItems actually returns EDGE_MODULES but those
# derive from DrawSegment
DrawSegment[] GraphicalItems()
--
SetPosition(pcbnew.wxPoint(x,y))
SetOrientation(degrees*10.0)
}
class NetMap {
Net[] items()
NetIterator find()
}
class Net {
NetClass GetNetClass()
int GetNet() # netcode
string GetNetname()
Pad[] Pads()
Board GetParent()
--
To get tracks, use Board::TracksInNet
}
NetClass : int GetTrackWidth()
class wxPoint {
int x
int y
}
class wxSize {
int x
int y
}
class EDA_RECT {
wxPoint Centre()
int GetX()
int GetY()
int GetWidth()
int GetHeight()
}
class Track {
wxPoint GetStart()
wxPoint GetEnd()
int GetWidth()
int GetLayer()
Net GetNet()
--
SetStart(pcbnew.wxPoint(int, int))
SetEnd(pcbnew.wxPoint(int, int))
SetWidth(int)
SetLayer(int)
SetNet(Net)
}
class Via {
# I haven't found a way to get the layers directly.
# unable to allocate the LAYER_ID objects
LayerPair(LAYER_ID* top_layer, LAYER_ID* bottom_layer )
wxPoint GetPosition()
ViaType GetViaType()
int GetWidth()
--
SetPosition(pcbnew.wxPoint(int, int))
SetViaType(ViaType)
SetWidth(int)
SetLayerPair(int top, int bottom)
# iterate through pcbnew.LAYER_ID_COUNT
bool IsOnLayer()
}
class PadShape {
int pcbnew.PAD_SHAPE_CIRCLE
int pcbnew.PAD_SHAPE_OVAL
int pcbnew.PAD_SHAPE_RECT
int pcbnew.PAD_SHAPE_ROUNDRECT
int pcbnew.PAD_SHAPE_TRAPEZOID
}
class ViaType {
int pcbnew.VIA_THROUGH
int pcbnew.VIA_BLIND_BURIED
int pcbnew.VIA_MICROVIA
int pcbnew.VIA_NOT_DEFINED
}
@enduml
|
1af6fbb28314d849a01c559d30d4d6a189a5bf09
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/OrderSetParcelMeasurementsAction.puml
|
e69711f4b8332e9a2a6879c3938aff6827703a62
|
[] |
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
| 540
|
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 OrderSetParcelMeasurementsAction [[OrderSetParcelMeasurementsAction.svg]] extends OrderUpdateAction {
action: String
parcelId: String
parcelKey: String
measurements: [[ParcelMeasurements.svg ParcelMeasurements]]
}
interface OrderUpdateAction [[OrderUpdateAction.svg]] {
action: String
}
@enduml
|
6f84019765707743f118132417e5e0aef4234c71
|
510e80a99b2eaf84824a20cb12f75d0d7bda7475
|
/UML/interface.puml
|
8012c232f20d90473f087481fe96ac34129afb37
|
[] |
no_license
|
lemon34/javaLearn
|
654a98108c4d0c0c9391448608921e7facf407fc
|
fc8d144e359183c49e7e6684c37f8af508daa17b
|
refs/heads/master
| 2023-08-31T10:39:03.708622
| 2023-08-12T02:22:56
| 2023-08-12T02:22:56
| 220,142,144
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 618
|
puml
|
@startuml
'https://plantuml.com/class-diagram
top to bottom direction
package interface {
class AuthorizationController
class FinanceRequirementController
class SpaceController
}
class AuthorizationController {
+ assignAuthorization()
+ modifyAuthorization()
+ removeAuthorization()
+ queryUserByBizlineAndRole()
+ queryAuthorizationDetail()
+ queryAuthorizationList()
}
class FinanceRequirementController {
+ create()
+ update()
+ userPageQuery()
+ managerPageQuery()
}
class SpaceController {
+ queryBusinessLineDict()
+ queryRoleDict()
}
@enduml
|
3d52ea132172e8e37134231927bbf0e3a7acf3f2
|
76d5ef8f223d9235b15af71ecfce78f44ec67920
|
/docs/plantuml/TclHdlVivado.puml
|
cfab1270c621610b8d0b3d55cc51b53c4e2b6fcc
|
[
"MIT"
] |
permissive
|
pffmachado/TclHdl
|
0c38ec941950f4498844314f501f8b6a2e0cc380
|
8b57c623903539d7f5cac8158ec49da17f18e529
|
refs/heads/master
| 2023-08-17T05:51:25.636519
| 2020-03-22T16:22:04
| 2020-03-22T16:22:04
| 245,398,720
| 5
| 2
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 270
|
puml
|
'--
'-- Copyright (C) 2020 TclHdl
'--
'-- This is free software, licensed under the GNU General Public License v2.
'-- See /LICENSE for more information.
'--
@startuml
class vivado {
+project_create ()
+project_open ()
+project_close ()
+project_close ()
}
@enduml
|
2e1ae5ea5c77872fe66a3cdc9fff4f974bf8bc21
|
6f9566c44e5057a4c32a39985b713e7715e6cffa
|
/uml/snenglish/english_word.plantuml
|
f4002b5579c8ae7f9fc91164886091ae39db7a3d
|
[] |
no_license
|
Alexander-Zyurkalov/MakePhrases
|
e1ffd9e61a83c14265ae5a62923cb3e813ccf115
|
332428a45105780c080a02c378477c5253e0e24e
|
refs/heads/master
| 2020-03-28T11:19:49.916959
| 2018-12-01T18:43:08
| 2018-12-01T18:43:08
| 148,202,580
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 635
|
plantuml
|
@startuml
package SNEnglish{
class EnglishWord{
{static}@HEADER
id
english
russian
sound
picture
example
regex1
added_at
created_at
updated_at
was_updated?(rowHash,the_row_was_created)
set_attrs(rowHash)
add_columns_to_csv(row)
{static}load_csv(csv_database, last_comparing: '170101', account_name: nil, user_id:nil)
{static}update_phrases_count_all()
update_tasks()
}
EnglishWord --|> Base
EnglishWord --> User: creating relation in load_csv
EnglishWord --> WordMatchingTask
}
@enduml
|
f3bb2e7a63e0e0e4c3c63da05226c3bb2bad399c
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/BusinessUnitParentChangedMessagePayload.puml
|
f195ef47b6b385cddd0422dae2cae2d3974f0589
|
[] |
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
| 588
|
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 BusinessUnitParentChangedMessagePayload [[BusinessUnitParentChangedMessagePayload.svg]] extends MessagePayload {
type: String
oldParentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
newParentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
|
368939ce0c0de617f2ab1f49adf665d429fdbf80
|
4cf5737cadb807568ddac14c8f1ff342a6e6cb0a
|
/serviceSchema/ip/uml/serviceModelOverview.puml
|
ae4ee6239f8a6343d88d5a3d72e29d9c33d8e308
|
[
"Apache-2.0"
] |
permissive
|
MEF-GIT/MEF-LSO-Legato-SDK
|
b2ed422108f4bbb5d3aff27123d3f31305fd808f
|
7f723970592cc5020aaaa0d2ffe30de6a73b3d97
|
refs/heads/working-draft
| 2023-07-06T06:44:01.113378
| 2023-06-23T14:14:48
| 2023-06-23T14:14:48
| 94,903,642
| 5
| 4
|
Apache-2.0
| 2022-05-04T10:22:56
| 2017-06-20T15:00:38
| null |
UTF-8
|
PlantUML
| false
| false
| 801
|
puml
|
@startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class Ipvc {
"...attributes are not shown"
}
class IpvcEndPoint {
"...attributes are not shown"
}
class IpUni {
"...attributes are not shown"
}
class IpUniAccessLink {
"...attributes are not shown"
}
class IpUniAccessLinkTrunk {
"...attributes are not shown"
}
class IpEnni {
"...attributes are not shown"
}
class IpEnniLink {
"...attributes are not shown"
}
class IpEnniCommon {
"...attributes are not shown"
}
Ipvc "1" *-->"1..*" IpvcEndPoint
IpUni "0..1" o-->"*" IpvcEndPoint
IpEnni "0..1" o-->"*" IpvcEndPoint
IpUni "1" *-->"1..*" IpUniAccessLink
IpUniAccessLinkTrunk "1..*" *--> "1..*" IpUniAccessLink
IpEnni -- IpEnniCommon
IpEnniCommon "1" --> "1..*" IpEnniLink
@enduml
|
ab2e3d3d39716f138a33fa7bf37dfd3f29b9fb36
|
63114b37530419cbb3ff0a69fd12d62f75ba7a74
|
/plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.puml
|
3139b2217ef9e7dcb0b4063a58b139cf6e070f22
|
[] |
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
| 168
|
puml
|
@startuml
class TMP_PhoneNumberValidator {
+ <<override>> Validate(text:string, pos:int, ch:char) : char
}
TMP_InputValidator <|-- TMP_PhoneNumberValidator
@enduml
|
da25b45b8aafa1febb389d588aac73fb1c091de5
|
d6c36b5e77e9fbf33d30933cdacd341275278be0
|
/doc/modelo.plantuml
|
8ddcd703fc03343716e516b010d5333e8922f1c5
|
[] |
no_license
|
cesardiaz-utp/MisionTIC2022-Ciclo2-Unidad4-GestionEstudiantes
|
d1abee3cc765bdd38e56640587f9e5d7f0a954ad
|
7d8dd0fc18ec36b9f37f4ff7b07477d295902822
|
refs/heads/main
| 2023-06-24T13:42:25.152343
| 2021-07-29T02:21:43
| 2021-07-29T02:21:43
| 390,538,464
| 1
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 643
|
plantuml
|
@startuml gestion estudiantes
skinparam classAttributeIconSize 0
abstract class Persona {
- identificacion: Long
- nombre: String
}
class Profesor extends Persona {
- titulo: String
}
class Estudiante extends Persona {
- codigo: String
}
class Nota {
- nombre: String
- valor: Double
}
class Materia {
- codigo: String
- nombre: String
- semestre: Integer
- programa: String
- creditos: Integer
}
enum Jornada {
DIURNA, NOCTURNA
}
Profesor "1..*" -- "1..*" Materia : dicta
Estudiante "*" -- "*" Materia : asiste
(Estudiante, Materia) "1" -right- "*" Nota
Persona .left.> Jornada
@enduml
|
50656ef836b1635dda5cc3f22b614db7937f3941
|
432be9385e736def167d0898844765d6020787a5
|
/src/org/csc133/a3/a3.plantuml
|
7930a69525a3cab97951c57cbc3b55fce5c88298
|
[] |
no_license
|
PRattan0880/CSC133_Project
|
2b459dfd778c3c5a1268f2d2aed50a55c1e95b1c
|
4432fe74af3f8478f54ee1f77be9a912e23d00ad
|
refs/heads/main
| 2023-07-11T14:43:58.745497
| 2021-08-20T17:21:47
| 2021-08-20T17:21:47
| 398,350,719
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 21,041
|
plantuml
|
@startuml
title __A3's Class Diagram__\n
namespace org.csc133.a3 {
class org.csc133.a3.AboutCommand {
+ AboutCommand()
+ actionPerformed()
+ setTarget()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.AccelerateCommand {
+ AccelerateCommand()
+ actionPerformed()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.AppMain {
- current : Form
- theme : Resources
+ destroy()
+ init()
+ start()
+ stop()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.AttackStrategy {
+ AttackStrategy()
+ apply()
+ attackHeading()
+ getStrategyType()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.BGSound {
- m : Media
+ BGSound()
+ pause()
+ play()
+ run()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.Bird {
- animateBird : Image[]
- index : int
+ Bird()
+ collidesWith()
+ draw()
+ handleCollision()
+ intersects()
+ setHeading()
+ toString()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.BirdCollisionCommand {
+ BirdCollisionCommand()
+ actionPerformed()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.BlimpCollisionCommand {
+ BlimpCollisionCommand()
+ actionPerformed()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.BrakeCommand {
+ BrakeCommand()
+ actionPerformed()
+ setTarget()
}
}
namespace org.csc133.a3 {
abstract class org.csc133.a3.Commands {
+ Commands()
{abstract} + actionPerformed()
{abstract} + setTarget()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.DamageLevelComponent {
{static} + numDigitsShowing : int
- damageDigits : Image[]
+ DamageLevelComponent()
+ animate()
+ paint()
+ setDamageLevel()
+ setLedColor()
# calcPreferredSize()
- getDisplayX()
- getDisplayY()
- setDamageColor()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.DefenseStrategy {
- SKYSCRAPER_1 : int
- SKYSCRAPER_2 : int
+ DefenseStrategy()
+ apply()
+ getSkyScraper1()
+ getSkyScraper2()
+ getStrategyType()
- defenseHeading()
}
}
namespace org.csc133.a3 {
abstract class org.csc133.a3.DigitImageComponent {
- animate : boolean
- digitImages : Image[]
- ledColor : int
+ DigitImageComponent()
+ getAnimate()
+ getComponentWidth()
+ getDigitHeight()
+ getDigitImage()
+ getDigitWidth()
+ getDisplayComponentWidth()
+ getDisplayDigitHeight()
+ getDisplayDigitWidth()
+ getLedColor()
+ getScaleFactor()
+ laidOut()
+ setAnimate()
+ setLedColor()
+ start()
+ stop()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.ExitCommand {
+ ExitCommand()
+ actionPerformed()
+ setTarget()
+ setTarget()
}
}
namespace org.csc133.a3 {
abstract class org.csc133.a3.Fixed {
+ Fixed()
+ setLocation()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.FuelLevelComponent {
{static} + numDigitsShowing : int
- fuelDigits : Image[]
+ FuelLevelComponent()
+ animate()
+ paint()
+ setFuelLevel()
+ setLedColor()
# calcPreferredSize()
- getDisplayX()
- getDisplayY()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.Game {
- downArrow : Button
- gameCommands : Vector<Commands>
- isPaused : boolean
- leftArrow : Button
- rightArrow : Button
- timer : UITimer
- upArrow : Button
+ Game()
+ isPaused()
+ pauseGame()
+ resumeGame()
+ run()
- addCommand()
- addCommandToLeftSide()
- createButton()
- scheduleTimer()
- setUpGameWorld()
- soundCheckBox()
- toggleButton()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.GameClockComponent {
{static} - MS_COLON_IDK : int
- clockDigits : Image[]
- colonImage : Image
- digitWithDot : Image[]
- elapsedTime : long
- ledColor2 : int
- minutes : int
{static} - numDigitsShowing : int
- paused : long
- seconds : int
- start : long
- sumOfElapsed : Vector<Integer>
- tenthOfSecond : int
+ GameClockComponent()
+ animate()
+ getMinutes()
+ getSeconds()
+ getTenthOfSeconds()
+ paint()
+ setLedColor()
+ setPaused()
+ startElapsedTime()
+ stopElapsedTime()
# calcPreferredSize()
- changeTimeColor()
- getDisplayX()
- getDisplayY()
- setCurrentTime()
- setResume()
- setTime()
}
}
namespace org.csc133.a3 {
abstract class org.csc133.a3.GameObject {
- color : int
{static} - gameWorld : GameWorld
- location : Point2D
- size : int
+ GameObject()
{abstract} + collidesWith()
{static} + gameWorldInstance()
+ getBoundingRectangle()
+ getColor()
+ getGameWorld()
+ getLocation()
+ getSize()
{abstract} + handleCollision()
+ setColor()
+ setLocation()
+ toString()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.GameObjectCollection {
- gameCollection : Vector
+ add()
+ getElement()
+ remove()
+ removeAll()
+ size()
~ GameObjectCollection()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.GameWorld {
{static} - HELIPAD_LOC : Point2D
{static} - SKYSCRAPER_LOC1 : Point2D
{static} - SKYSCRAPER_LOC2 : Point2D
{static} - SKYSCRAPER_LOC3 : Point2D
{static} - SKYSCRAPER_LOC4 : Point2D
{static} - SKYSCRAPER_LOC5 : Point2D
- birdCollision : Vector<GameObject>
- blimpCollision : Vector<GameObject>
- gameObserver : Vector
- helicopterCollision : Vector<GameObject>
- lives : int
- maxHeight : int
- maxWidth : int
- maximumDamage : int
- nphCollision : Vector<GameObject>
- skyScraperCollision : Vector<GameObject>
- soundPlaying : boolean
- timer : String
+ accelerate()
+ addObserver()
+ birdCollision()
+ brake()
+ checkpoint()
+ checkpoint()
+ createSound()
+ displayMap()
+ draw()
+ exit()
+ gameOver()
+ getHelicopterDamage()
+ getHelicopterFuelLevel()
+ getHelicopterHeading()
+ getLastCheckpoint()
+ getLives()
+ getMaximumDamage()
+ getObjectCollection()
+ getTimer()
+ helicopterCollide()
+ init()
+ notifyObservers()
+ playSound()
+ refuel()
+ reinitialize()
+ setElapsedTime()
+ setMaxHeight()
+ setMaxWidth()
+ soundOn()
+ stopSound()
+ switchStrategy()
+ tick()
+ toggleSound()
+ turnLeft()
+ turnRight()
- accelerate()
- brake()
- changeBirdHeading()
- changeHeading()
- changeInBounds()
- checkBoundary()
- collision()
- collisionDamage()
- hasFuel()
- hasMaxDamage()
- hasReachedLastCheckpoint()
- helicopterHasFuel()
- inBounds()
- randomNumber()
- refuelHelicopter()
- setLives()
- tick()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.GlassCockpit {
+ GlassCockpit()
+ getDigitComponent()
+ getElapsedTime()
+ update()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.HeadingComponent {
{static} + numDigitsShowing : int
- headingDigit : Image[]
+ HeadingComponent()
+ animate()
+ paint()
+ setHeading()
+ setLedColor()
# calcPreferredSize()
- getDisplayX()
- getDisplayY()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.Helicopter {
{static} - NUMBER_OF_FRAMES : int
- animateHelicopter : Image[]
- damageLevel : int
- fuelConsumptionRate : int
- fuelLevel : int
- index : int
- lastSkyScraperReached : int
- maximumSpeed : int
- myHelicopter : Image
- stickAngle : int
+ Helicopter()
+ collidesWith()
+ draw()
+ getDamageLevel()
+ getFuelLevel()
+ getHeight()
+ getLastSkyScraperReached()
+ getMaxSpeed()
+ getStickAngle()
+ getWidth()
+ handleCollision()
+ intersects()
+ setDamageLevel()
+ setFuelLevel()
+ setHeading()
+ setLastSkyScraperReached()
+ setRemainingFuel()
+ toString()
+ turnLeft()
+ turnRight()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.Helipad {
- helipadImage : Image
+ Helipad()
+ collidesWith()
+ draw()
+ handleCollision()
+ toString()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.HelpCommand {
+ HelpCommand()
+ actionPerformed()
+ setTarget()
+ setTarget()
}
}
namespace org.csc133.a3 {
interface org.csc133.a3.ICollection {
{abstract} + add()
{abstract} + getElement()
{abstract} + remove()
{abstract} + removeAll()
{abstract} + size()
}
}
namespace org.csc133.a3 {
interface org.csc133.a3.ICollider {
{abstract} + collidesWith()
{abstract} + handleCollision()
}
}
namespace org.csc133.a3 {
interface org.csc133.a3.IDrawable {
{abstract} + draw()
}
}
namespace org.csc133.a3 {
interface org.csc133.a3.IGameClock {
{abstract} + getElapsedTime()
}
}
namespace org.csc133.a3 {
interface org.csc133.a3.IObservable {
{abstract} + addObserver()
{abstract} + notifyObservers()
}
}
namespace org.csc133.a3 {
interface org.csc133.a3.IObserver {
{abstract} + update()
}
}
namespace org.csc133.a3 {
interface org.csc133.a3.ISteerable {
{abstract} + turnLeft()
{abstract} + turnRight()
}
}
namespace org.csc133.a3 {
interface org.csc133.a3.IStrategy {
{abstract} + apply()
{abstract} + getStrategyType()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.LeftTurnCommand {
+ LeftTurnCommand()
+ actionPerformed()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.MapView {
+ MapView()
+ paint()
+ start()
+ stop()
+ update()
}
}
namespace org.csc133.a3 {
abstract class org.csc133.a3.Movable {
- heading : int
- speed : int
+ Movable()
+ getHeading()
+ getSpeed()
+ move()
+ setHeading()
+ setSpeed()
+ toString()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.NonPlayerHelicopter {
- animateNph : Image[]
- index : int
- nphImage : Image
+ NonPlayerHelicopter()
+ collidesWith()
+ draw()
+ getStrategy()
+ handleCollision()
+ intersects()
+ invokeStrategy()
+ setRemainingFuel()
+ setSpeed()
+ setStrategy()
+ toString()
+ turnLeft()
+ turnRight()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.NphCollisionCommand {
+ NphCollisionCommand()
+ actionPerformed()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.PlayPauseCommand {
+ PlayPauseCommand()
+ actionPerformed()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.PlayerHelicopter {
{static} - instance : Helicopter
{static} + getInstance()
{static} + removeInstance()
- PlayerHelicopter()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.RaceStrategy {
+ RaceStrategy()
+ apply()
+ getStrategyType()
- raceHeading()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.RefuelingBlimp {
- blimp : Image
- capacity : int
- collidedBlimp : Image
+ RefuelingBlimp()
+ collidesWith()
+ draw()
+ getCapacity()
+ handleCollision()
+ intersects()
+ setCapacity()
+ toString()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.RightTurnCommand {
+ RightTurnCommand()
+ actionPerformed()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.SingleDigitComponent {
{static} + numDigitsShowing : int
- singleDigit : Image[]
+ SingleDigitComponent()
+ animate()
+ paint()
+ setLedColor()
+ setSingleDigit()
# calcPreferredSize()
- getDisplayX()
- getDisplayY()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.SkyScraper {
{static} - NUMBER_OF_SKYSCRAPER : int
- isReached : boolean
- reachedSkyScraper : Image[]
- sequenceNumber : int
- unreachedSkyScraper : Image[]
+ SkyScraper()
+ collidesWith()
+ draw()
+ getSequenceNumber()
+ handleCollision()
+ intersects()
+ setReached()
+ toString()
# calcPreferredSize()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.SkyscraperCollisionCommand {
+ SkyscraperCollisionCommand()
+ actionPerformed()
+ setTarget()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.Sound {
- m : Media
+ Sound()
+ pause()
+ play()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.SoundCommand {
+ SoundCommand()
+ actionPerformed()
+ setTarget()
+ setTarget()
}
}
namespace org.csc133.a3 {
class org.csc133.a3.SwitchStrategyCommand {
+ SwitchStrategyCommand()
+ actionPerformed()
+ setTarget()
+ setTarget()
}
}
org.csc133.a3.AboutCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.AboutCommand o-- org.csc133.a3.Game : game
org.csc133.a3.AboutCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.AccelerateCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.AccelerateCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.AttackStrategy .up.|> org.csc133.a3.IStrategy
org.csc133.a3.AttackStrategy o-- org.csc133.a3.NonPlayerHelicopter : nphHelicopter
org.csc133.a3.AttackStrategy o-- org.csc133.a3.Helicopter : targetHelicopter
org.csc133.a3.BGSound .up.|> java.lang.Runnable
org.csc133.a3.Bird -up-|> org.csc133.a3.Movable
org.csc133.a3.BirdCollisionCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.BirdCollisionCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.BlimpCollisionCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.BlimpCollisionCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.BrakeCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.BrakeCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.Commands -up-|> com.codename1.ui.Command
org.csc133.a3.DamageLevelComponent -up-|> org.csc133.a3.DigitImageComponent
org.csc133.a3.DefenseStrategy .up.|> org.csc133.a3.IStrategy
org.csc133.a3.DefenseStrategy o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.DefenseStrategy o-- org.csc133.a3.NonPlayerHelicopter : nphHelicopter
org.csc133.a3.DigitImageComponent -up-|> com.codename1.ui.Component
org.csc133.a3.ExitCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.ExitCommand o-- org.csc133.a3.Game : game
org.csc133.a3.ExitCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.Fixed -up-|> org.csc133.a3.GameObject
org.csc133.a3.FuelLevelComponent -up-|> org.csc133.a3.DigitImageComponent
org.csc133.a3.Game .up.|> java.lang.Runnable
org.csc133.a3.Game -up-|> com.codename1.ui.Form
org.csc133.a3.Game o-- org.csc133.a3.GlassCockpit : glassCockpit
org.csc133.a3.Game o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.Game o-- org.csc133.a3.MapView : mapView
org.csc133.a3.GameClockComponent -up-|> org.csc133.a3.DigitImageComponent
org.csc133.a3.GameObject .up.|> org.csc133.a3.ICollider
org.csc133.a3.GameObject .up.|> org.csc133.a3.IDrawable
org.csc133.a3.GameObjectCollection .up.|> org.csc133.a3.ICollection
org.csc133.a3.GameWorld .up.|> org.csc133.a3.IObservable
org.csc133.a3.GameWorld o-- org.csc133.a3.BGSound : backgroundSound
org.csc133.a3.GameWorld o-- org.csc133.a3.Sound : birdCrash
org.csc133.a3.GameWorld o-- org.csc133.a3.Sound : blimpCrash
org.csc133.a3.GameWorld o-- org.csc133.a3.GameObjectCollection : gameObjects
org.csc133.a3.GameWorld o-- org.csc133.a3.Sound : heliCheckpoint
org.csc133.a3.GameWorld o-- org.csc133.a3.Sound : helicopterCrash
org.csc133.a3.GlassCockpit .up.|> org.csc133.a3.IGameClock
org.csc133.a3.GlassCockpit .up.|> org.csc133.a3.IObserver
org.csc133.a3.GlassCockpit -up-|> com.codename1.ui.Container
org.csc133.a3.GlassCockpit o-- org.csc133.a3.DamageLevelComponent : damageLevelComp
org.csc133.a3.GlassCockpit o-- org.csc133.a3.FuelLevelComponent : fuelLevelComp
org.csc133.a3.GlassCockpit o-- org.csc133.a3.GameClockComponent : gameTimeComp
org.csc133.a3.GlassCockpit o-- org.csc133.a3.HeadingComponent : headingComp
org.csc133.a3.GlassCockpit o-- org.csc133.a3.SingleDigitComponent : lastComp
org.csc133.a3.GlassCockpit o-- org.csc133.a3.SingleDigitComponent : livesComp
org.csc133.a3.HeadingComponent -up-|> org.csc133.a3.DigitImageComponent
org.csc133.a3.Helicopter .up.|> org.csc133.a3.ISteerable
org.csc133.a3.Helicopter -up-|> org.csc133.a3.Movable
org.csc133.a3.Helipad -up-|> org.csc133.a3.Fixed
org.csc133.a3.HelpCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.HelpCommand o-- org.csc133.a3.Game : game
org.csc133.a3.HelpCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.LeftTurnCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.LeftTurnCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.MapView .up.|> org.csc133.a3.IObserver
org.csc133.a3.MapView -up-|> com.codename1.ui.Container
org.csc133.a3.MapView o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.Movable -up-|> org.csc133.a3.GameObject
org.csc133.a3.NonPlayerHelicopter -up-|> org.csc133.a3.Helicopter
org.csc133.a3.NonPlayerHelicopter o-- org.csc133.a3.IStrategy : curStrategy
org.csc133.a3.NphCollisionCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.NphCollisionCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.PlayPauseCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.PlayPauseCommand o-- org.csc133.a3.Game : game
org.csc133.a3.RaceStrategy .up.|> org.csc133.a3.IStrategy
org.csc133.a3.RaceStrategy o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.RaceStrategy o-- org.csc133.a3.NonPlayerHelicopter : nphHelicopter
org.csc133.a3.RefuelingBlimp -up-|> org.csc133.a3.Fixed
org.csc133.a3.RightTurnCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.RightTurnCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.SingleDigitComponent -up-|> org.csc133.a3.DigitImageComponent
org.csc133.a3.SkyScraper -up-|> org.csc133.a3.Fixed
org.csc133.a3.SkyscraperCollisionCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.SkyscraperCollisionCommand o-- org.csc133.a3.Game : game
org.csc133.a3.SkyscraperCollisionCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.SoundCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.SoundCommand o-- org.csc133.a3.Game : game
org.csc133.a3.SoundCommand o-- org.csc133.a3.GameWorld : gw
org.csc133.a3.SwitchStrategyCommand -up-|> org.csc133.a3.Commands
org.csc133.a3.SwitchStrategyCommand o-- org.csc133.a3.Game : game
org.csc133.a3.SwitchStrategyCommand o-- org.csc133.a3.GameWorld : gw
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
|
e19546c6d3b08db470509c25b44ca2fe739fae2f
|
63114b37530419cbb3ff0a69fd12d62f75ba7a74
|
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRun/Tasks/LegacyEditModeRunTask.puml
|
49c513afae291b9d500055ca54e9c6abd67f23b3
|
[] |
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
| 186
|
puml
|
@startuml
class LegacyEditModeRunTask {
+ LegacyEditModeRunTask()
+ <<override>> Execute(testJobData:TestJobData) : IEnumerator
}
TestTaskBase <|-- LegacyEditModeRunTask
@enduml
|
1c5d51ac6811356b1dbc969208d20b97b4249fed
|
79b1afae05be893d0d860ad88e065a1fe3fe7717
|
/structure/proxy/uml/_example.puml
|
3825d551633f5bd251a3cb54b78554d8c6b27d2b
|
[] |
no_license
|
danielleberre/pattern-repository
|
5dd0c84147f35c9e22abfe30abd93b8cb51560f3
|
68eab140c40174e2fc1769f4b718f7528b440921
|
refs/heads/master
| 2020-04-30T14:20:09.435842
| 2019-03-25T13:07:03
| 2019-03-25T13:07:03
| 176,888,097
| 0
| 0
| null | 2019-03-21T07:00:12
| 2019-03-21T07:00:10
| null |
UTF-8
|
PlantUML
| false
| false
| 519
|
puml
|
@startuml
skinparam nodesep 75
skinparam ranksep 50
hide empty members
class Main <<Client>>
interface Registry <<Subject>> {
+ {abstract} <<operation>> getPhoneNumber(String): String
}
Main .> Registry
class RemoteRegistry <<Registry>> {
+ <<operation>> getPhoneNumber(String): String
}
Registry <|-- RemoteRegistry
class CachedRegistry <<Proxy>> {
+ this(Subject)
__
+ <<operation>> getPhoneNumber(String): String
}
Registry <|-- CachedRegistry
RemoteRegistry "1\ntarget" <- CachedRegistry
@enduml
|
3780c875eef57cea5038bf05ed19c838c00d7be1
|
e2c36562dfa9149d133290ca06c7701d84a12029
|
/app/src/main/java/org/team7/wtp/wtp.plantuml
|
76b21ebb736202fe8b891f7fbe4c0e941a116abd
|
[
"MIT"
] |
permissive
|
lmcintyre/whosthatpokemon
|
cce54779d6fd7d95af1a6a1f62e6a617483ffc96
|
600b07969568cf85316e5fd144b4c2ee7824d26e
|
refs/heads/master
| 2021-06-16T18:54:31.291743
| 2019-03-21T14:59:24
| 2019-03-21T14:59:24
| 174,248,867
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 5,283
|
plantuml
|
@startuml
title __Team7 (Who's That Pokemon) Class Diagram__\n
skinparam monochrome true
package org.team7.wtp {
class GameModeSelectFragment {
+ onCreateDialog()\n - Creates the dialog
- updatePrefsAndGame()\n - Changes the gamemode preference,\nthen restarts the quiz with set mode
- getPkmnFragment()\n - Gets the current PkmnFragment\n (MainActivityFragment)
- getCurrentMode()\n - Gets the current game mode\nfrom PkmnFragment
}
class IgnoredPreference {
+ IgnoredPreference()
+ IgnoredPreference()
+ IgnoredPreference()
# onCreateView()\n - Does nothing, so the preference\nis hidden in the preference fragment
}
class MainActivity {
{static} + REGIONS : String
{static} + MODE : String
- preferencesChanged : boolean
# onStart()
# onCreate()
+ onCreateOptionsMenu()
+ onOptionsItemSelected()
}
enum GameMode {
CLASSIC
ENHANCED
}
class MainActivityFragment {
{static} - TAG : String
- regions : List<Pair<Integer, Integer>>
- imgView : ImageView
- buttons : List<Button>
- progressTextView : TextView
- correctTextView : TextView
- pokePaths : List<String>
- pokes : List<String>
- random : SecureRandom
- handler : Handler
- correctPoke : String
- numQuestions : int
- totalGuesses : int
- correctAnswers : int
- enhancedScore : double
- revealAnimationSpin : Animation
- revealAnimationOpacity : Animation
- revealAnimationSpinAndOpacity : Animation
- setBlack : Animation
- guessButtonListener : OnClickListener
+ onCreateView()
+ reset()\n - Resets the quiz state
+ setMode()\n - Changes the current game mode
+ getMode()\n - Gets the current game mode
+ updateRegions()\n - Changes the current regions the quiz\nwill choose Pokemon from
- pokeInRegions()\n - Determines if a random Pokemon is within\nthe regions selected by the user
- getPokeName()\n - Retrieves a formatted Pokemon name from\nthe filename of its image
- getPokeDexNum()\n - Retrieves the Pokedex number from the\nfilename of its image
- initPokeList()\n - Initializes the list of Pokemon filenames for the quiz
- loadNextPoke()\n - Loads and displays the next Pokemon in the list
- displayResults()\n - Creates and displays a dialog to show the user's score
}
class ObscuringImageView {
+ ObscuringImageView()
+ ObscuringImageView()
+ setSilhouetteBitmap()\n - Provided with a bitmap, this method creates\na version of the same bitmap with any non-alpha\npixels set to black
+ reset()\n - Resets the image to a 1x1 bitmap
}
class ObscuringView {
{static} - TOUCH_TOLERANCE : float
~ bitmap : Bitmap
~ paint : Paint
~ mCanvas : Canvas
~ matrix : Matrix
~ paintScreen : Paint
- pathMap : Map<Integer, Path>
- previousPointMap : Map<Integer, Point>
+ ObscuringView()
+ ObscuringView()
+ reset()\n - Resets the canvas to a 1x1 bitmap
- setUpDrawing()\n - Sets the necessary paint values\nto allow the user to erase a black bitmap
+ setUpBitmap()\n - Sets up the black square bitmap\non the canvas
+ getPercentErased()\n - Determines the amount of the canvas\nthat's been erased
# onDraw()\n - Keeps track of paths and draws\nthem during the draw event
+ onTouchEvent()\n - Begins the touch event/path handling
- touchStarted()\n - Initializes a path to draw
- touchMoved()\n - Modifies that path to draw
- touchEnded()\n - Finalizes the path and commits it to the bitmap
}
class SettingsActivity {
# onCreate()
}
class SettingsActivityFragment {
+ SettingsActivityFragment()
+ onCreate()
}
}
SettingsActivity -up-|> AppCompatActivity : is an AppCompatActivity
SettingsActivityFragment -up-|> PreferenceFragment : is a PreferenceFragment
GameModeSelectFragment -up-|> DialogFragment : is a DialogFragment
IgnoredPreference -up-|> ListPreference : is a ListPreference
MainActivity -up-|> AppCompatActivity
MainActivity o-- MainActivityFragment : pkmnFragment
MainActivity +-down- GameMode : declares GameMode
MainActivityFragment -up-|> Fragment : is a Fragment
MainActivityFragment o-- GameMode : keeps track of mode
MainActivityFragment o-- ObscuringImageView : obsImageView used in MainActivityFragment
MainActivityFragment o-- ObscuringView : obsView used in MainActivityFragment
ObscuringImageView -up-|> AppCompatImageView : is an AppCompatImageView
ObscuringView -up-|> View : is a View
@enduml
|
c9c401e8e18340554ff1dd474a692cdef8aa1a68
|
9428f536152d15f8c8ba0805aae5312a04b80ae2
|
/movierental-v1.puml
|
0dddb8787a6cc874bde94343691cb69fbc5588c1
|
[] |
no_license
|
SENG330/refactoring
|
eb2417ee5c55dcdc90ea8ec38c774ffe001ddae3
|
34f431a0eaa462d72f64a0355b0bafea4f4c6662
|
refs/heads/master
| 2020-04-09T01:09:26.222441
| 2018-12-01T00:42:34
| 2018-12-01T00:42:34
| 159,893,786
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 228
|
puml
|
@startuml
class Rental {
daysRented: int
}
class Movie {
title: String
priceCode: int
}
class Customer {
+ statement(): String
- amountFor(): double
}
Customer "1" -left-> "*" Rental
Rental "1" -left-> "*" Movie
@enduml
|
12edc2ddf6e5eecc507eb028ece36023590ebc1f
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/ShippingRateInputDraft.puml
|
534a14375942f4474e17b9787560540940ad23b2
|
[] |
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
| 5,534
|
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 ShippingRateInputDraft [[ShippingRateInputDraft.svg]] {
type: String
}
interface ClassificationShippingRateInputDraft [[ClassificationShippingRateInputDraft.svg]] {
type: String
key: String
}
interface ScoreShippingRateInputDraft [[ScoreShippingRateInputDraft.svg]] {
type: String
score: Long
}
interface CartDraft [[CartDraft.svg]] {
currency: String
key: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
anonymousId: String
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[LineItemDraft.svg List<LineItemDraft>]]
customLineItems: [[CustomLineItemDraft.svg List<CustomLineItemDraft>]]
taxMode: [[TaxMode.svg TaxMode]]
externalTaxRateForShippingMethod: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]]
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
shippingMode: [[ShippingMode.svg ShippingMode]]
customShipping: [[CustomShippingDraft.svg List<CustomShippingDraft>]]
shipping: [[ShippingDraft.svg List<ShippingDraft>]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
discountCodes: [[String.svg List<String>]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
deleteDaysAfterLastModification: Long
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface CustomShippingDraft [[CustomShippingDraft.svg]] {
key: String
shippingMethodName: String
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingRate: [[ShippingRateDraft.svg ShippingRateDraft]]
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]]
externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
deliveries: [[DeliveryDraft.svg List<DeliveryDraft>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface ShippingDraft [[ShippingDraft.svg]] {
key: String
shippingMethod: [[ShippingMethodReference.svg ShippingMethodReference]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
deliveries: [[DeliveryDraft.svg List<DeliveryDraft>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface CartAddCustomShippingMethodAction [[CartAddCustomShippingMethodAction.svg]] {
action: String
shippingKey: String
shippingMethodName: String
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingRate: [[ShippingRateDraft.svg ShippingRateDraft]]
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]]
externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
deliveries: [[DeliveryDraft.svg List<DeliveryDraft>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface CartAddShippingMethodAction [[CartAddShippingMethodAction.svg]] {
action: String
shippingKey: String
shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
deliveries: [[DeliveryDraft.svg List<DeliveryDraft>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface CartSetShippingRateInputAction [[CartSetShippingRateInputAction.svg]] {
action: String
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
}
interface StagedOrderSetShippingRateInputAction [[StagedOrderSetShippingRateInputAction.svg]] {
action: String
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
}
ShippingRateInputDraft --> ClassificationShippingRateInputDraft #blue;text:blue : "type : Classification"
ShippingRateInputDraft --> ScoreShippingRateInputDraft #blue;text:blue : "type : Score"
ShippingRateInputDraft --> CartDraft #green;text:green : "shippingRateInput"
ShippingRateInputDraft --> CustomShippingDraft #green;text:green : "shippingRateInput"
ShippingRateInputDraft --> ShippingDraft #green;text:green : "shippingRateInput"
ShippingRateInputDraft --> CartAddCustomShippingMethodAction #green;text:green : "shippingRateInput"
ShippingRateInputDraft --> CartAddShippingMethodAction #green;text:green : "shippingRateInput"
ShippingRateInputDraft --> CartSetShippingRateInputAction #green;text:green : "shippingRateInput"
ShippingRateInputDraft --> StagedOrderSetShippingRateInputAction #green;text:green : "shippingRateInput"
@enduml
|
9c7e4e80a7e4b9606806439feecc9a649771d5f9
|
6dd26c98905399713f9b95943accd34d5848fa1d
|
/spisywarka.puml
|
aa2d59deb12ac2b90c704b679028b8b898ea0ceb
|
[
"MIT"
] |
permissive
|
johnykvsky/spisywarka
|
99c1c43e1448b91603c604acdc709202c39ed4d6
|
0822353ac0fcdb841c92789638a5df3e19dbb33f
|
refs/heads/master
| 2023-04-30T21:18:16.112385
| 2022-01-17T20:41:10
| 2022-01-17T20:41:10
| 213,187,384
| 1
| 0
|
MIT
| 2023-04-19T21:10:20
| 2019-10-06T14:53:29
|
PHP
|
UTF-8
|
PlantUML
| false
| false
| 945
|
puml
|
@startuml
title Spisywarka
hide empty methods
hide empty members
class Item {
- id : Uuid
- name : string
- category : Category
- year : ?integer
- format : ?string
- author : ?string
- publisher : ?string
- description : ?string
- store : ?string
- url : ?string
- slug : string
+ Loan[] getLoaned()
+ ItemCollection[] getCollections()
+ Collection[] getItemCollections()
+ void addCollection(ItemCollection)
+ bool isInCollection(Collection)
}
class Collection {
- id : Uuid
- name : string
- description : string
}
class Category {
- id : Uuid
- name : string
- description : string
}
class ItemCollection {
- item : Item
- collection : Collection
}
class Loan {
- id : Uuid
- item : Item
- loaner : ?string
- loanDate : ?DateTime
- returnDate : ?DateTime
}
Item "1" -- "*" Loan
Item "1" -- "1" Category
Item "1" - "*" ItemCollection
ItemCollection "1" -- "1" Collection
@enduml
|
c312fb004850c0178a32d003a3eff683ceb40f54
|
271f0f3e3b3ea50976d5b48135549f5512360d1c
|
/app/src/main/java/keijumt/design_pattern/pattern/state/statePattern.puml
|
0650dc1f36aa0d6be9d72ff054b7ebe158455a01
|
[] |
no_license
|
keijumt/design-pattern
|
cffea9727fa903ac3e4d42842e4ed34f6ec2e3c1
|
ec811a9ea941ec442b20b81fd04a536082eab2bf
|
refs/heads/master
| 2020-03-23T14:45:58.234219
| 2018-07-30T13:58:59
| 2018-07-30T13:58:59
| 141,697,922
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 282
|
puml
|
@startuml
interface State{
+ printState()
}
class StopState{
+ printState()
}
class RunningState{
+ printState()
}
class Service{
+ state:State
+ setState()
+ printServiceState()
}
State <|.. StopState
State <|.. RunningState
Service o-- State
@enduml
|
1075c9286ceec09f19202acbe5edcfa99bebfbbf
|
0e617d1cbd73289a3ed081aa5b690be4f67307fd
|
/src/Class_diagram.puml
|
bfbae17e836201bfd50c4fb7674b3e549a561455
|
[] |
no_license
|
Youssef-Assbaghi/DifferntitaionCalculator
|
057846fcc45b5feaa510bd7885ad8360e22def31
|
302fe08ee9ec6c5fa6d5d19dc8dae2a07e43687b
|
refs/heads/master
| 2023-08-16T01:14:33.757728
| 2021-10-17T15:00:01
| 2021-10-17T15:00:01
| 418,165,891
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,708
|
puml
|
@startuml
class DualNumber{
+double valor
+double derivada
+DualNumber(double x, double y)
+DualNumber()
+getValor()
}
class Expression{
+evaluate(DualNumber s)
+differentiate(String var)
}
class X{
+String str
+X()
+evaluate(DualNumber assignment)
+differentiate(String var)
}
Class ExpressioDosValors{
+Expression leftExp
+Expression rightExp
+ExpressioDosValors(Expression leftExp, Expression rightExp)
+ExpressioDosValors(Expression leftExp, String var)
+ExpressioDosValors(String var1, String var2)
+ExpressioDosValors(String var1, double num)
+ExpressioDosValors(double num, String var1)
+ExpressioDosValors(double num1, double num2)
+ExpressioDosValors(double num1, Expression leftExpression)
+ExpressioDosValors(Expression leftExpression, double num1)
+ExpressioDosValors(String var, Expression leftExpression)
+getLeft()
+getRight()
}
Class ExpressioUnValor{
+Expression exp
+ExpressioUnValor(Double num)
+ExpressioUnValor(Expression exp)
+ExpressioUnValor(String var)
+getExpresion()
}
Class Constant{
+Double num
+Constant(double num)
+evaluate(DualNumber s)
+differentiate(String var)
}
class Sin{
+Sin(Expression expr)
+Sin(double num)
+evaluate(DualNumber s)
+differentiate(String var)
}
class Cos{
+Cos(Expression expr)
+Cos(double num)
+Cos(String var)
+evaluate(DualNumber s)
+differentiate(String var)
}
class Log{
+Log(Expression expr, Expression expr2)
+Log(Expression expr, String expr2)
+Log(String expr, Expression expr2)
+Log(String expr, String expr2)
+evaluate(DualNumber assignment)
+differentiate(String var)
}
class Add{
+Add(Expression expr, Expression expr2)
+Add(Expression expr, double expr2)
+Add(double expr, Expression expr2)
+Add(double expr, double expr2)
+evaluate(DualNumber s)
+differentiate(String var)
}
class Sub{
+Sub(Expression expr, Expression expr2)
+Sub(Expression expr, double expr2)
+Sub(double expr, Expression expr2)
+Sub(double expr, double expr2)
+evaluate(DualNumber s)
+differentiate(String var)
}
class Div{
+Div(Expression expr, Expression expr2)
+Div(Expression expr, String var)
+Div(String var, Expression expr2)
+Div(String var1, String var2)
+Div(String var1, double num)
+Div(double num, String var1)
+Div(double num1, double num2)
+Div(double num1, Expression expr2)
+Div(Expression expr, double num1)
+evaluate(DualNumber assignment)
+differentiate(String var)
}
Class Multiply{
+Multiply(Expression leftExpression, Expression rightExpression)
+Multiply(Expression leftExpression, String var)
+Multiply(String var, Expression leftExpression)
+Multiply(String var1, String var2)
+Multiply(String var1, double num)
+Multiply(double num, String var1)
+Multiply(double num1, double num2)
+Multiply(double num1, Expression leftExpression)
+Multiply(Expression leftExpression, double num1)
+evaluate(DualNumber assignment)
+differentiate(String var)
}
Class Exponent{
+Exponent(Expression leftExpression, Expression rightExpression)
+Exponent(Expression leftExpression, String var)
+Exponent(String var, Expression leftExpression)
+Exponent(String var1, String var2)
+Exponent(String var1, double num)
+Exponent(double num, String var1)
+Exponent(double num1, double num2)
+Exponent(double num1, Expression leftExpression)
+Exponent(Expression leftExpression, double num1)
+evaluate(DualNumber assignment)
+differentiate(String var)
}
Expression <|-down- X
Expression <|-down- Constant
Expression <|-down- ExpressioUnValor
Expression <|-down- ExpressioDosValors
ExpressioUnValor <|-down- Sin
ExpressioUnValor <|-down- Cos
ExpressioDosValors <|-down- Multiply
ExpressioDosValors <|-down- Add
ExpressioDosValors <|-down- Sub
ExpressioDosValors <|-down- Div
ExpressioDosValors <|-down- Log
ExpressioDosValors <|-down- Exponent
@enduml
|
ea00d2278b5823293d74a5aca1bdad1b66c1630c
|
e37016f9bea6aac6954954ba33bde705a1245047
|
/zx-note/src/test/graph/elasticsearch/cluster/block/类图.puml
|
ec299f71325dd3a5ab4a3a04b9115a47508a70bc
|
[] |
no_license
|
zouxiang1993/es_lucene
|
11d558d98a9847b9df1d9d575bc9b362ac548f9b
|
c463345975db890105124c429965ed96ebd8bf92
|
refs/heads/master
| 2023-07-19T21:03:26.092718
| 2019-08-27T16:24:46
| 2019-08-27T16:24:46
| 148,873,770
| 3
| 3
| null | 2023-07-18T02:50:13
| 2018-09-15T05:47:30
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 712
|
puml
|
@startuml
class ClusterBlocks{
// 表示集群级别的阻塞,用来阻止对集群的脏操作。
}
class ClusterBlock{
-int id
-String description
-EnumSet<ClusterBlockLevel> levels
// Should operations get into retry state if this block is present
-boolean retryable
//Should global state persistence be disabled when this block is present.
//Note, only relevant for global blocks.
-boolean disableStatePersistence
-boolean allowReleaseResources
-RestStatus status
}
enum ClusterBlockLevel {
// 阻塞级别
---
READ
WRITE
METADATA_READ
METADATA_WRITE
}
ClusterBlocks "1" *-- "n" ClusterBlock
ClusterBlock *-- ClusterBlockLevel
@enduml
|
169bf87abee80bcfd83ae8710c16ab5a6289188e
|
8f83adb253993728ad2b965efda9e2d0d9167ffd
|
/src/main/doc/resources/org/thegalactic/lattice/LatticeFactory.iuml
|
ecf1eccab41177e1263fa3802ba7db8d0211f6ef
|
[
"CECILL-B"
] |
permissive
|
jcarbonnel/java-lattices
|
3906f29a84526dfeb3af5d24f4429d22d56f82b1
|
6df82e197748a455b1d886247a11ec1a56055def
|
refs/heads/master
| 2021-08-26T05:01:08.308878
| 2017-11-17T11:00:45
| 2017-11-17T11:00:45
| 109,843,590
| 0
| 0
| null | 2017-11-07T14:06:18
| 2017-11-07T14:06:18
| null |
UTF-8
|
PlantUML
| false
| false
| 570
|
iuml
|
package org.thegalactic.lattice {
class LatticeFactory {
.. Constructor ..
+LatticeFactory()
.. Generators ..
{static}+Lattice random(int nb)
{static}+Lattice booleanAlgebra(int nb)
{static}+Lattice permutationLattice(int n)
{static}+Lattice product(Lattice l, Lattice r)
{static}+Lattice doublingConvex(Lattice l, DAGraph c)
.. Operations ..
{static}-recursiveBooleanAlgebra(Node node, Lattice l, int n)
{static}-recursivePermutationLattice(Node node, Lattice l, int n)
}
}
|
0d8817038ea2b1c964ec8068f2a76d9cf8a6bded
|
70b6b3086d64939b4bd08cf8aad93ac5283cf1ac
|
/examples/towards/foldleftimpl.puml
|
9a3947b9d93f8c391bfc65dae41d379e473a3b11
|
[
"MIT"
] |
permissive
|
tizuck/scala-uml-diagrams
|
4a9d35e54a0f6fb3ef753e46eb59e81d7c42a26b
|
c5c432132bff9df7ab60352f0e715583d9d51973
|
refs/heads/main
| 2023-03-01T02:44:15.288794
| 2021-02-03T22:26:55
| 2021-02-03T22:26:55
| 306,687,367
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 506
|
puml
|
@startuml
class Iterable < T > <<trait>> {
<<def>> foldLeft <T2> (z:T2)(op : Function<T2,T,T2>):T2
}
hide circle
skinparam defaultFontName Source Code Pro
skinparam ClassStereotypeFontColor #1b1f23
skinparam class {
BackgroundColor White
BorderColor #1b1f23
ArrowColor #1b1f23
FontColor #6f42c1
}
skinparam note {
BackgroundColor White
BorderColor #1b1f23
ArrowColor #1b1f23
FontColor #d73a49
}
skinparam stereotype {
FontColor #d73a49
}
@enduml
|
61ede4baada86931d6778c343a7ecc55814fb8eb
|
1ac0a5cf0a74b207d7cdac817f81b15f452f494c
|
/Livrables/Diagrammes/Composants/UML/DishWasherController.plantuml
|
c55f46c96878815d212296f606041a4b2369d9d5
|
[
"MIT"
] |
permissive
|
HugoLA1/Projet-programmation-systeme
|
1f143b71a52871ca3536b30d78592c29f19aae97
|
5262fa64cd862283078346b4f8a2aa69246d47d6
|
refs/heads/master
| 2020-06-01T10:33:49.688170
| 2018-12-13T13:22:55
| 2018-12-13T13:22:55
| 190,750,176
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 49
|
plantuml
|
@startuml
class DishWasherController {
}
@enduml
|
a36873b3afe7e0bb5fc2f964deaea3f546468145
|
ba4094501875765afdd3f03caa01840024ddcb9e
|
/app/src/main/java/yyang3/tacoma/uw/edu/craftcellar/phase1.puml
|
38ccc2c93d9855e6cca0ac03de9754ff8a2e9e19
|
[] |
no_license
|
yyang3/CraftCellar
|
1583756584c58de15195fcba447d0a94132a5142
|
3fb4b8ccf98be6f1ffc1f506362079d6416d8c41
|
refs/heads/master
| 2021-01-01T03:39:29.008997
| 2017-04-10T00:44:11
| 2017-04-10T00:44:11
| 57,246,159
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 7,571
|
puml
|
@startuml
class BeverageDetailFragment {
+ BEVERAGE_ITEM_SELECTED : String
+ UPDATE_URL : String
- mBrand: TextView
- mTitle: TextView
- mStyle: TextView
- mYear: TextView
- mDescription: TextView
- mABV: TextView
- mImage: TextView
- mRate: TextView
- mBeverage: Beverage
+ BeverageDetailFragment() <Constructor>
+ updateView(Beverage beverage) : void
+ onCreateView(final LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) : View
+ onStart() : void
}
class BeverageUpdateTask{
+ onPreExecute() : void
+ doInBackground(String... urls) : String
+ onPostExecute(String result) : void
}
class ImageLoadTask {
- url: String
- imageView: ImageView
+ doInBackground(Void... params) : Bitmap
+ onPostExecute(Bitmap result) : void
}
class BeverageKindFragment {
+ USER : String
- allCellar: allBeverageInteractionListener
+ BeverageKindFragment() <Constructor>
+ onAttach(Context context) : void
+ onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) : View
}
interface allBeverageInteractionListener {
+ allBeverageList(): void
}
class RegistrationFragment {
- mListener : UserRegistrationListener
- mUserName : EditText
- mUserpw : EditText
- mUserEmail : EditText
- USER_ADD_URL : String
+ RegistrationFragment() <Constructor>
+ onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) : View
+ onAttach(Context context) : void
- buildUserURL(View v) : String
}
interface UserRegistrationListener {
+ addUser(String url) : void;
}
class BeverageAddFragment {
- myBrand : EditText
- myTitle : EditText
- myStyle : EditText
- myYear : EditText
- myAlcohol : EditText
- myType : EditText
- myDescription : EditText
- myLocation : EditText
- mListener : AddListener
- URLBuilder () : String
}
interface AddListener {
+add(String url) : void
}
class BeverageListFragment {
+ ARG_COLUMN_COUNT : String
- int mColumnCount;
+ BEVERAGE_URL : String
- mListener : OnListFragmentInteractionListener ;
- mRecyclerView : RecyclerView ;
+ BeverageListFragment() <Constructor>
+ onCreate(Bundle savedInstanceState) : void
+ onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) : View
+ onAttach(Context context) : void
+ onDetach() : void
}
interface OnListFragmentInteractionListener {
+ onListFragmentInteraction(Beverage item) : void;
}
class DownloadBeverageTask{
+ doInBackground(String... urls) : String
+ onPostExecute(String result) : void
}
class CellarActivity {
- mSharedPreferences : SharedPreferences
+ onCreate(Bundle savedInstanceState) : void
+ onCreateOptionsMenu(Menu menu) : boolean
+ onOptionsItemSelected(MenuItem item) : boolean
+ toRegister(View v) : void
+ addUser(String url) : void
+ SignIn(String email, String url) : void
+ allBeverageList() : void
+ onListFragmentInteraction(Beverage item) : void
+ add(String url) : void
}
class AddUserTask{
+ doInBackground(String... urls) : String
+ onPostExecute(String result) : void
}
class LoginTask {
+ doInBackground(String... urls) : String
+ onPostExecute(String result) : void
}
class LoginFragment{
- LOG_IN_URL : String
- mEmail : EditText ;
- mPwd : EditText;
- mListener : SignInListener;
+ LoginFragment() <Constructor>
+ onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) : View
+ onAttach(Context context) : void
}
interface SignInListener {
+ SignIn(String email, String url) : void;
}
class MyBeverageRecyclerViewAdapter {
- mValues : List<Beverage>;
- mListener : OnListFragmentInteractionListener;
+ MyBeverageRecyclerViewAdapter(List<Beverage> items,
OnListFragmentInteractionListener listener) < Constructor>
+ onCreateViewHolder(ViewGroup parent, int viewType) : ViewHolder
+ onBindViewHolder(final ViewHolder holder, int position) : void
+ getItemCount() : int
}
class ViewHolder{
+ mView : View;
+ mIdView : TextView;
+ mContentView : TextView;
+ mBeverage : Beverage;
+ toString() : String
}
class Beverage {
- String memail
- int mid
- String mImageAdd
- String mDescription
- int rate
- String mBrand
- String mTitle
- String mLocation
- int mByear
- int mPercentage
- String myBtype
- String mStyle
+ String EMAIL
+ String ID
+ String IMAGEADD
+ String DESCRIPTION
+ String BRAND
+ String TITLE
+ String LOCATION
+ String IMAGE
+ String BDES
+ String BYEAR
+ String BTYPE
+ String STYLE
+ String PERCENTAGE
+ getmBrand(): String
+ setmBrand(String mBrand) :String
+ getmTitle() : String
+ setmTitle(String mTitle) : void
+ getmLocation() : String
+ setmLocation(String mLocation) : void
+ getmByear() : int
+ setmByear(int mByear) : void
+ getmPercentage() : int
+ setmPercentage(int mPercentage) : void
+ getMyBtype() :String
+ setMyBtype(String myBtype) : void
+ getmStyle() :String
+ setmStyle(String mStyle) : void
+ Beverage(String memail, int mid,
String mImageAdd, String mDescription, int rate,
String mBrand, String mTitle, String mLocation,
int mByear, int mPercentage, String myBtype, String mStyle) <Constructor>
+ getMemail() :String
+ setMemail(String memail)
+ getMid() : int
+ setMid(int mid) : void
+ getmImageAdd() :String
+ setmImageAdd(String mImageAdd) : void
+ getmDescription() :String
+ setmDescription(String mDescription) : void
+getRate(): int
+ setRate(int rate) : void
+ parseBeveragesJSON(String beverageJSON, List<Beverage> BeverageList) : String
}
class BeverageAndCellarAddTask{
+ doInBackground(String... urls) : String
+ onPostExecute(String result) : void
}
MyBeverageRecyclerViewAdapter o-- Beverage
MyBeverageRecyclerViewAdapter o-- OnListFragmentInteractionListener
ViewHolder --> Beverage
BeverageDetailFragment ..> Beverage
BeverageDetailFragment ..> BeverageUpdateTask
BeverageDetailFragment ..> ImageLoadTask
BeverageKindFragment --> allBeverageInteractionListener
BeverageListFragment --> OnListFragmentInteractionListener
BeverageListFragment ..> DownloadBeverageTask
OnListFragmentInteractionListener ..> Beverage
LoginFragment --> SignInListener
CellarActivity <|.. OnListFragmentInteractionListener
CellarActivity <|.. allBeverageInteractionListener
CellarActivity <|.. SignInListener
CellarActivity <|.. UserRegistrationListener
CellarActivity ..> LoginFragment
CellarActivity ..> BeverageKindFragment
CellarActivity ..> RegistrationFragment
CellarActivity ..> AddUserTask
CellarActivity ..> LoginTask
CellarActivity ..> BeverageListFragment
CellarActivity ..> BeverageDetailFragment
CellarActivity ..> BeverageAddFragment
CellarActivity ..> BeverageAndCellarAddTask
CellarActivity <|.. AddListener
LoginTask ..> BeverageKindFragment
RegistrationFragment --> UserRegistrationListener
BeverageAddFragment --> AddListener
@enduml
|
d2d25bb263410e2e14d176ed7757f797904896f7
|
0a0e986dd1f62801857242e14aac97cb9a0108c4
|
/Proj/docs/uml/element.puml
|
fc616467795ca69aee012fe82e00f7636f2a736b
|
[] |
no_license
|
JoaoCostaIFG/LPOO
|
6bca97bcf5d65ca79b1d83ef322a70b9c14aa5a3
|
0db8aca4897f50d202ed695750c8ddf10ff100b7
|
refs/heads/master
| 2021-02-07T04:39:57.611429
| 2020-10-19T09:52:19
| 2020-10-19T09:52:19
| 305,335,228
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,722
|
puml
|
@startuml
hide empty members
skinparam classAttributeIconSize 0
skinparam linetype polyline
skinparam shadowing false
/' Behaviours '/
interface Agressive {
+ getAtk() : int
+ setAtk(atk)
}
interface Collidable {
+ getCollider() : Collider
+ collidesWith(colidee) : boolean
+ shadowStep(position) : Position
}
interface Mortal {
+ getHp() : int
+ setHp(hp)
+ takeDamage(dmg)
+ isAlive() : boolean
}
interface Movable {
+ getMovCounter() : int
+ setMovCounter(numTicks)
+ tickMovCounter()
+ setMoveStrat(moveStrat)
+ genMoves(model, element) : List<Position>
}
class AgressiveBehaviour {}
class CollidableBehaviour {}
class ImmortalBehaviour {}
class ImovableBehaviour {}
class MortalBehaviour {}
class MovableBehaviour {}
class NotCollidableBehaviour {}
class PassiveBehaviour {}
abstract class Element {}
/' Elements '/
package "Game Elements" #BBBBEE {
class Civilian {}
class Laser {}
class MeleeGuy {}
class Wall {}
class RangedGuy {}
class Scent {}
class Skane {}
class SkaneBody {}
}
/' Connections '/
AgressiveBehaviour .down.^ Agressive
CollidableBehaviour .down.^ Collidable
ImmortalBehaviour .down.^ Mortal
ImovableBehaviour .down.^ Movable
MortalBehaviour .down.^ Mortal
MovableBehaviour .down.^ Movable
NotCollidableBehaviour .down.^ Collidable
PassiveBehaviour .down.^ Agressive
Element -up-> Agressive
Element -up-> Collidable
Element -up-> Mortal
Element -up-> Movable
Element .up.^ Agressive
Element .up.^ Collidable
Element .up.^ Mortal
Element .up.^ Movable
Civilian --up-^ Element
Laser --up-^ Element
MeleeGuy --up-^ Element
Wall --up-^ Element
RangedGuy --up-^ Element
Scent --up-^ Element
Skane --up-^ Element
SkaneBody --up-^ Element
@enduml
|
0fdbe9dc6c49bf5b144f485f9590b19547479a39
|
9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9
|
/java/resources/plantuml/behavioral/iterator-class_example.puml
|
61719b4bea5b031087822fc4c36735df5adea1cb
|
[
"MIT"
] |
permissive
|
vuquangtin/designpattern
|
4d4a7d09780a0ebde6b12f8edf589b6f45b38f62
|
fc672493ef31647bd02c4122ab01992fca14675f
|
refs/heads/master
| 2022-09-12T07:00:42.637733
| 2020-09-29T04:20:50
| 2020-09-29T04:20:50
| 225,505,298
| 0
| 0
| null | 2022-09-01T23:16:34
| 2019-12-03T01:41:33
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 666
|
puml
|
@startuml
/' Iterator UML class diagram '/
/' By Nika Chkhartishvili '/
title Iterator
interface Iterator {
+first() : void
+next() : void
+isDone() : void
+currentItem() : Object
}
interface Iterable {
+createIterator() : Iterator
}
class Destinations {
+add(String value) : void
-destinations : ArrayList<String>
}
class DestinationsIterator {
-destinations : ArrayList<String>
-position : int
}
class IteratorMain {
+{static}main() : void
}
Iterable <|-- Destinations
Iterator <|-- DestinationsIterator
Destinations -> DestinationsIterator : <<new>>
IteratorMain --> Destinations
IteratorMain --> Iterator
@enduml
|
de5a40b2600863774b77ac27f967cb9bd548c536
|
8a42cf43148c275caa196cb0335d2053559880cc
|
/designpatterns/src/main/java/com/xiaoye/designpatterns/decorator/decorator.puml
|
03766b634e60582971802f19c45d7efd1f8c0b1c
|
[] |
no_license
|
guoyjalihy/learning
|
2c5381f3170a332b28c9286028c8a0fe85d8869c
|
0ba0c4e5201ed1fbc2ad6aacf5c8c90a6a42bfc4
|
refs/heads/master
| 2022-07-05T10:13:57.279407
| 2019-07-16T11:43:13
| 2019-07-16T11:43:13
| 112,556,713
| 0
| 0
| null | 2022-06-17T02:01:52
| 2017-11-30T02:55:06
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 399
|
puml
|
@startuml
title 装饰者模式
abstract class Component{
+method();
}
class ConcreteComponent{
method();
}
Component <|-- ConcreteComponent
Component <|-- Decorator
class Decorator{
method();
otherMethod();
}
class ConcreteDecorator{
Component component;
ConcreteDecorator(Component component){};
method();
otherMethod();
}
Decorator <|-- ConcreteDecorator
@enduml
|
957cc20f965305c5bde056d1a6264376d64adc6c
|
c6c72378a47a34ea7f975cfddd0f6daba6b3b4d2
|
/ch06/excercise/6-2.puml
|
474038c391a853f5db61b5e0e46168a97bb579a3
|
[] |
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
| 238
|
puml
|
@startuml
class 仕訳 {
計上日
登録年月日時刻
}
class 仕訳明細 {
貸借区分
金額
}
class 勘定科目 {
貸借区分
残高
}
仕訳 "1"--"2..*" 仕訳明細
仕訳明細 "*"-r-"1" 勘定科目
@enduml
|
78070ddfa0f14682a5bc6f72fbba26a652dcaef7
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/ProductTypeAddLocalizedEnumValueAction.puml
|
9ab57d4c0a0fcc52354e15f9c27aa01377ff9c2b
|
[] |
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
| 564
|
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 ProductTypeAddLocalizedEnumValueAction [[ProductTypeAddLocalizedEnumValueAction.svg]] extends ProductTypeUpdateAction {
action: String
attributeName: String
value: [[AttributeLocalizedEnumValue.svg AttributeLocalizedEnumValue]]
}
interface ProductTypeUpdateAction [[ProductTypeUpdateAction.svg]] {
action: String
}
@enduml
|
6e1a932cafb49ca273809518a8eab24eb73c5e67
|
373861653fd34beb6f2e073a3e77e07c9ebc7f5d
|
/de.gematik.ti.healthcard.common/src/main/java/de/gematik/ti/healthcard/control/common/overview.plantuml
|
0955f03687cfac4eb52e58160f084b15bdc4ee9f
|
[
"Apache-2.0"
] |
permissive
|
gematik/ref-HealthCardControlCommon
|
3c190515d68689fe3d6aec1afaec3013e75011d5
|
dddb68cecbfe446b6fd76874aac7569ca1fa27a2
|
refs/heads/master
| 2022-01-20T15:15:50.239121
| 2022-01-07T07:24:15
| 2022-01-07T07:24:15
| 214,093,084
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,193
|
plantuml
|
@startuml
namespace de.gematik.ti.healthcard.control.common {
enum CARD_TYPE {
EGK
HBA
SMCB
UNKNOWN
}
class CardGenerationExtractor {
{static} + RADIX_16 : int
{static} + MIN_VERSION_LENGTH : int
+ getCardGeneration()
+ getCardGeneration()
- convertToInt()
- check()
}
class CardDetector {
{static} - LOG : Logger
{static} - TAG : String
{static} - RECEIVE_BUFFER_SIZE : int
{static} - instance : CardDetector
- healthCardMap : Map<ICardReader, IHealthCard>
- CardDetector()
{static} + getInstance()
{static} + startDetection()
{static} + stopDetection()
- register()
- unregister()
+ handleCardPresentEvents()
- createHealthCardWithTypeAndSendEvent()
- extractCardType()
- sendEvent()
- createPresentEventForHealthCardType()
- getHealthCardTypeSmcb()
- getHealthCardTypeHba()
- getHealthCardTypeForEgk()
+ handleCardAbsentEvents()
- sendCardAbsentEvent()
+ handleCardReaderDisconnectedEvents()
- createAbsentEventForHealthCardType()
}
class TrustedChannelPaceKeyRequestHandler {
{static} - LOG : Logger
{static} - TAG : String
{static} - instance : TrustedChannelPaceKeyRequestHandler
- TrustedChannelPaceKeyRequestHandler()
{static} + getInstance()
{static} + startHandling()
{static} + stopHandling()
- register()
- unregister()
+ handleRequestPaceKeyEvent()
}
class CallbackHandlePin {
{static} - LOG : Logger
- card : IHealthCard
- pinResultResultOperation : ResultOperation<PinResult>
- queue : ArrayBlockingQueue<ResultOperation<PinResult>>
+ CallbackHandlePin()
+ abortRequest()
+ call()
+ handlePinNumber()
}
class PinVerifier {
{static} - LOG : Logger
- cardHc : IHealthCard
+ PinVerifier()
{static} + stringToIntarray()
+ verifyPin()
- flapMapSelections()
- getSelectRootResult()
- hookAbsentEvent()
- validatePinResult()
- verifyPin()
}
namespace event {
class AbstractHealthCardEvent {
}
package absent {
}
package present {
}
}
}
de.gematik.ti.healthcard.control.common.CardDetector +-down- de.gematik.ti.healthcard.control.common.CARD_TYPE
de.gematik.ti.healthcard.control.common.CardDetector ..> de.gematik.ti.healthcard.control.common.CardGenerationExtractor
de.gematik.ti.healthcard.control.common.CardDetector ..> de.gematik.ti.healthcard.control.common.event
de.gematik.ti.healthcard.control.common.CallbackHandlePin .up.|> de.gematik.ti.healthcard.control.common.PinVerifier
@enduml
|
e4bc8511a46cd8f911ca4df699de321538a6cc9b
|
088856ec5790009dd9f9d3498a56fe679cfab2e8
|
/src/puml/5/ucmitz/svg/domain_model/bc-custom-content/index.puml
|
4c2c11bc4b0e1021bf0d5d6c85896fad974661a6
|
[] |
no_license
|
baserproject/baserproject.github.io
|
21f244348890652286969afa1fde27c5c4d9e4ad
|
8d61cf720f833854e1a3c97136e22e75baea7bb0
|
refs/heads/master
| 2023-08-09T03:21:53.341423
| 2023-07-27T07:28:50
| 2023-07-27T07:28:50
| 228,826,353
| 0
| 12
| null | 2023-08-17T02:31:05
| 2019-12-18T11:31:51
|
HTML
|
UTF-8
|
PlantUML
| false
| false
| 1,290
|
puml
|
@startuml
skinparam handwritten true
skinparam backgroundColor white
hide method
title ER図:カスタムコンテンツ
skinparam linetype ortho
class "Contents" {
plugin
type
entity_id
}
note right
コンテンツ管理情報を保有
end note
class "CustomContents" {
custom_table_id
}
note right
コンテンツ管理上でコンテンツを生成したタイミングで生成される。
カスタムテーブルのうち、コンテンツタイプのものを選択できる。
end note
class "CustomTables" {
}
note right
カスタムフィールドの中から利用するものを選択できる。
テーブルタイプとしてコンテンツかマスタを選択できる。
end note
class "CustomLinks" {
custom_table_id
custom_field_id
}
note right
フィールドについてレイアウトに関する情報を保持する。
入力必須かどうかを選択できる
end note
class "CustomFields" {
}
note right
フィールドについてレイアウトに関する情報を保持する。
フィールドのタイプと入力必須以外のバリデーション情報を保持する。
end note
"Contents" ||..|| "CustomContents"
"CustomContents" ||..o| "CustomTables"
"CustomTables" ||..o{ "CustomLinks"
"CustomLinks" }o..|| "CustomFields"
@enduml
|
a177c4cdb780a18fdfdd8e07282c162e3cbffdb8
|
fb71f4802819b0f9e5eb2f71bfe356258b8d1f57
|
/ontrack-model/src/main/java/net/nemerosa/ontrack/model/links/branch-links-model.puml
|
11fae907ba8ad8a5d5472d8e3efc4241e63598fc
|
[
"MIT"
] |
permissive
|
nemerosa/ontrack
|
c5abe0556cc2cc6eb4109e0c2f045ae5cff84da3
|
de5ae2ebd9d9a30dce4c717f57e4604da85f0b51
|
refs/heads/master
| 2023-08-31T11:02:35.297467
| 2023-08-28T17:59:07
| 2023-08-28T17:59:07
| 19,351,480
| 111
| 35
|
MIT
| 2023-08-31T13:21:53
| 2014-05-01T17:08:33
|
Kotlin
|
UTF-8
|
PlantUML
| false
| false
| 1,059
|
puml
|
@startuml
class BranchLinksNode {
branch: Branch
build: Build?
}
class BranchLinksEdge {
direction: BranchLinksDirection
}
BranchLinksNode *--> BranchLinksEdge: edges "0..*""
BranchLinksEdge o--> BranchLinksNode: linkedTo "1"
class BranchLinksDecoration {
id: String
text: String
description: String?
iconUrl: String?
link: String?
}
BranchLinksEdge *--> BranchLinksDecoration: decorations "0..*"
interface BranchLinksDecorationExtension {
id: String
getDecoration(source: BranchLinksNode, target: BranchLinksNode, direction: BranchLinksDirection): BranchLinksDecoration?
}
BranchLinksDecorationExtension .up.> BranchLinksDecoration: provides
interface BranchLinksService {
getBranchLinks(branch: Branch, direction: BranchLinksDirection): BranchLinksNode
getBuildLinks(build: Build, direction: BranchLinksDirection): BranchLinksNode
}
enum BranchLinksDirection {
using
usedBy
}
BranchLinksService .left.> BranchLinksNode: computes
BranchLinksService .down.> BranchLinksDirection: uses
@enduml
|
ef292c244f7bb1c3ff38e822096c2cb0e39ec7e2
|
005aa476ac9d11d36d1c0d202daa1e7c86df94c2
|
/hedwig-jdesignpattern/docs/imgs/creational/simplefactory/simplefactory.puml
|
4cc6a27d89c5b6e7ba72b4506b2a0aedc284f41b
|
[] |
no_license
|
qdriven/designpattern-sanity
|
51d2c9ebb1970c24bb2746ac6ba38ffd966a541c
|
c67622c9d153a9154e941fa2aad4ab1c10dd37a9
|
refs/heads/master
| 2022-12-06T22:02:15.117957
| 2020-08-21T05:59:25
| 2020-08-21T05:59:25
| 98,328,079
| 0
| 0
| null | 2020-05-15T19:22:30
| 2017-07-25T16:33:31
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 236
|
puml
|
@startuml
interface Product {
+ void make()
}
Product <|-- BlueProduct
Product <|-- RedProduct
Product <|-- YelloProduct
class SimpleProductFactory{
+ Product create(String productName)
}
SimpleProductFactory --> Product
@enduml
|
447edca70cb6e2f05ae66953610af02f1d2eaffa
|
11eb610c81465b53d61aaf77f1f30bfd16eecd47
|
/diagrams/class-general/src/class-simulation.puml
|
9bd89a0297b4f37e43a8c26b5ce3cf4f83a10369
|
[] |
no_license
|
bauerkamil/hogwartSim
|
a0ff366bb764c325d4d98907edfbf06188a37455
|
cc47e0cd27040520c4916d79cf64b12436591442
|
refs/heads/main
| 2023-05-24T10:08:02.273423
| 2021-06-15T21:42:28
| 2021-06-15T21:42:28
| 361,216,537
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 774
|
puml
|
@startuml
'https://plantuml.com/class-diagram
skinparam classAttributeIconSize 0
skinparam maxMessageSize 125
package hogwartSim{
class Simulation{
- map: IMap
- dumbledore: IDumbledore
- rnd: Random
- creatureList: List<ICreature>
- itemList: List<IItem>
- maxIter: final int
+Simulation(MapCreator, ICreatureCreator,
IItemCreator, IDumbledoreCreator, long, int)
+runSimulation(): void
+main(String[]): void
}
}
package hogwartSim.general{
interface IGeneral
}
Simulation *- "creatureList \n itemList" IGeneral
package hogwartSim.map{
interface IMap
}
Simulation *- "map" IMap
package hogwartSim.dumbledore{
interface IDumbledore
}
Simulation *- IDumbledore
@enduml
|
de5fc74cac27a1752d9cbf69d66d6ec4443e0c61
|
844665d08d1be5dacc41d8495725d881c68dba71
|
/Conferencias/Conferencia 4_ Patrones de Diseño de Comportamiento/PrincipleAndPatternDesign/out/production/PrincipleAndPatternDesign/cu/datys/patterns/gof/behavioral/observer/class-diagram.puml
|
bf2c0ff248cfab3c0e267b8fc21c97107bf993fd
|
[
"MIT"
] |
permissive
|
alexescalonafernandez/curso-patrones-diseno
|
ec1cf0a993707d78c294208e04604a3a0ffd164e
|
f586e27791e1281087df6cc137da87f407179e65
|
refs/heads/master
| 2021-01-25T13:35:26.659206
| 2018-03-02T20:18:06
| 2018-03-02T20:18:06
| 123,588,331
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 672
|
puml
|
@startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam titleFontColor #5cb85c
Title Observer Pattern
abstract class Observable{
+ {abstract} void attach(Observer observer)
+ {abstract} void detach(Observer observer)
+ {abstract} void notify()
}
interface Observer{
+ void update()
}
class ConcreteObservable extends Observable{
+ void attach(Observer observer)
+ void detach(Observer observer)
+ void notify()
}
class ConcreteObserver implements Observer{
+ void update()
}
Observable *-- "many" Observer
@enduml
|
d78203d7d3a8b2e96c2214ac45eadb1e19104823
|
f8e357daee592f0c24cd2e5778c643a77b4a6404
|
/06classdiagram/32_classdiagram_generics.puml
|
a7bbbbe5fc1bbda3685c04f578ffe3008853a0e5
|
[] |
no_license
|
jahmanitheone/plantuml
|
bd3914c882d79157f387aa84268510edbebb05c2
|
dda0a93ca7caabf456c96bd9ef8249c1f3ddf9a1
|
refs/heads/main
| 2023-01-01T12:40:34.242849
| 2020-10-22T17:01:59
| 2020-10-22T17:01:59
| 306,404,003
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 325
|
puml
|
'
'ClassDiagrams: Use generics
'
'You can also use bracket < and > to define generics usage in a class.
'It is possible to disable this drawing using skinparam genericDisplay old command.
'
'< xx>
'
'--------------------------------------
'
@startuml
class Foo<? extends Element> {
int size()
}
Foo *- Element
@enduml
|
1f68783dd62a989fa16e11ccb94acec7599efc1a
|
92692d636eca83bf56f07c92b553265ee7203dcf
|
/src/main/java/com/peppayi/designpattern/headfirst/chapters/chapter07/uml/adapterpattern.puml
|
180662c69d7bea4902fdbc74eff010a2c4b6f486
|
[] |
no_license
|
qingzhusay/design-pattern
|
19aee4b20296b17539db12d5826d3fb97657880f
|
bd31c8a22b79290a65c86501a77516c8969a8318
|
refs/heads/master
| 2022-08-29T20:34:45.487283
| 2020-05-09T14:46:06
| 2020-05-09T14:46:06
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 524
|
puml
|
@startuml
interface Target <<interface>> {
+ request()
}
class Adapter {
+ request()
}
Target <|.. Adapter
note left of Adapter
The Adapter implements the Target interface.
end note
class Adaptee {
+ specificRequest()
}
Adapter -right-> Adaptee
note bottom of Adapter
Adapter is composed with the Adaptee
end note
note bottom of Adaptee
All requests get delegated to the Adaptee.
end note
class Client
Client -right-> Target
note top of Client
The client sees only the Target interface.
end note
@enduml
|
2d40db68f3d356fdd66bea696f9f052990284ed4
|
54ebd9eb2ddadc17b215617d96fac1f93f4acfef
|
/creational/1-simple-factory/2-simple-factory-furniture-simplest.puml
|
47430232b0e8a39971e17447ae07169780e76c6f
|
[] |
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
| 189
|
puml
|
@startuml
note as n2
const creator = new Creator();
const chair = creator.createChair();
end note
class Creator {
+ createChair(): Chair {}
}
class Chair {}
Creator o-- Chair
@enduml
|
f6070505e74d609e76d2908bfa680d80f9c3966f
|
9fe50bbba8408da7cb8e5588f6e9db0a9ee74e3e
|
/项目/实验平台/doc/src_version2/class.puml
|
201ae652cc13f14737a3dd0877fe463d5e47bf12
|
[] |
no_license
|
HaurchefantGreystone/is_analysis
|
6197626fbb133b835e8cb3c0b406a7a85e7c30f7
|
f9eefb43c4798f030efd5ee290baa041f37ac692
|
refs/heads/master
| 2020-04-25T09:51:03.996598
| 2019-05-06T01:22:24
| 2019-05-06T01:22:24
| 172,688,469
| 0
| 0
| null | 2019-02-26T10:20:35
| 2019-02-26T10:20:34
| null |
UTF-8
|
PlantUML
| false
| false
| 3,085
|
puml
|
@startuml
title 基于GitHub的实验管理平台--类图
class users {
<b>user_autoid</b> 用户ID,自动生成
name 用户真实姓名
github_username 用户GitHub账号
update_date 用户GitHub账号修改日期
password 用户密码
disable 用户是否禁用
}
class teachers{
<b>teacher_id</b> 老师工号
<I>user_autoid</I> 用户ID
department 老师所属部门
}
class courses{
<b>course_id</b> 课程编号
<b>course_name</b> 课程名称
department 课程所属部门
credit 学分
nature 课程性质 考试/考查
}
class terms{
<b>term_autoid</b> 学期ID
start_grade 开始年,如2012表示2012-2013
term_num 学期号,只能取1/2,表示上期/下期
}
class teachers_courses{
<b>teacher_course_autoid</b> 老师课程ID
<I>teacher_id</I> 老师工号
<I>course_id</I> 课程编号
<I>term_autoid</I> 学期ID
}
class students_courses{
<b>student_course_autoid</b> 学生课程ID
<I>student_id</I> 学号
<I>teacher_course_autoid</I> 老师课程ID
result_sum成绩汇总
web_sum GitHub网址正确与否汇总
}
class students{
<b>student_id</b> 学号
<I>user_autoid</I> 用户ID
major 专业
grade 年级
class_num 班级号
department 学生所属部门
}
users <|- students
users <|-- teachers
class scores {
<b>test_autoid</b> 实验ID
<b>student_course_autoid</b> 学生课程ID
result 汇总分数
update_date 批改日期
}
class tests {
<b>test_autoid</b> 实验ID
<I>teacher_course_autoid</I> 老师课程ID
test_order 实验编号1..n
title 实验名称
}
class tests_subs {
<b>test_autoid</b> 实验ID
<b>test_sub_order</b> 评分项编号1..n
item_name 评分项名称
item_describe 评分项标准
max_result 评分项的最高分
}
class scores_subs {
<b>test_autoid</b> 实验ID
<b>student_course_autoid</b> 学号
<b>test_sub_order</b> 评分项编号
result 单项分数
memo 评价
}
terms "1" -- "n" teachers_courses
teachers "1" -- "n" teachers_courses
courses "1" -- "n" teachers_courses
students "1" -right- "n" students_courses
teachers_courses "1" -- "n" tests
teachers_courses "1" -- "n" students_courses
tests "1" -- "n" scores
tests "1" *-- "n" tests_subs
scores "1" *-- "n" scores_subs
tests_subs "1" -- "n" scores_subs
students_courses "1" -- "n" scores
note left of tests : 老师选课后,定义该选课的每个实验
note left of tests_subs : 定义每个实验的评分项
note left of teachers_courses : 老师先选课
note right of students_courses : 老师先选课,学生后选课,\n即在老师选课的基础上才能选课。\nresult_sum是成绩列表字符串,如85,80,90,\n其中85是每平成绩,80,90表示第1次和第2次的成绩。\nweb_sum是网址是否正确的字符串,\n如:Y,N 表示第1个网址正确,第2个网址不正确。
note right of scores : 实验成绩,其中result是单项实验的汇总成绩,\n由scores_subs汇总上来。
@enduml
|
d0976e0a6983c40f78cb7acb43c0334c1e530bb2
|
63114b37530419cbb3ff0a69fd12d62f75ba7a74
|
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Utilities/Clipboard.puml
|
718f1495f4c3493b6eb0f32b342403b5543f4fbb
|
[] |
no_license
|
TakanoVineYard/AMHH
|
215a7c47049df08c5635b501e74f85137b9e985b
|
68887a313587a2934fb4ceb2994cbc2a2191d6a3
|
refs/heads/master
| 2023-01-13T02:08:02.787083
| 2020-11-17T14:51:57
| 2020-11-17T14:51:57
| 303,631,593
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,318
|
puml
|
@startuml
class Clipboard {
{static} <<readonly>> kListInitialSize : int = 10
+ Clipboard()
+ CopyItems(items:IEnumerable<ITimelineItem>) : void
CopyItem(clipItem:ClipItem) : ClipItem
{static} CopyItem(markerItem:MarkerItem) : MarkerItem
+ CopyTracks(tracks:IEnumerable<TrackAsset>) : void
+ GetTracks() : IEnumerable<ClipboardTrackEntry>
+ GetCopiedItems() : IEnumerable<ItemsPerTrack>
+ Clear() : void
{static} CreateTimeline() : TimelineAsset
}
class ExposedReferenceTable {
+ SetReferenceValue(id:PropertyName, value:Object) : void
+ GetReferenceValue(id:PropertyName, idValid:bool) : Object
+ ClearReferenceValue(id:PropertyName) : void
+ Clear() : void
}
class ClipboardTrackEntry <<struct>> {
}
class "List`1"<T> {
}
class "Dictionary`2"<T1,T2> {
}
Clipboard o-> "m_ItemsData<ItemsPerTrack>" "List`1"
Clipboard o-> "m_trackData<ClipboardTrackEntry>" "List`1"
Clipboard --> "rootTimeline" TimelineAsset
Clipboard o-> "exposedPropertyTable" IExposedPropertyTable
Clipboard +-- ExposedReferenceTable
IExposedPropertyTable <|-- ExposedReferenceTable
ExposedReferenceTable o-> "m_ReferenceTable<PropertyName,Object>" "Dictionary`2"
Clipboard +-- ClipboardTrackEntry
ClipboardTrackEntry --> "item" TrackAsset
ClipboardTrackEntry --> "parent" TrackAsset
@enduml
|
7852b1574042798198103ee7c7cfea8ca2379f32
|
e7aab27dc3b56328c92d783d7fa8fce12d8ac544
|
/kapitler/media/uml-class-dokumentflyt.iuml
|
b259957c5eaba042170a67f5df992aaf14a642fa
|
[] |
no_license
|
petterreinholdtsen/noark5-tjenestegrensesnitt-standard
|
855019a61c8679a8119549e2824fa32ecc669e66
|
4673ba7134d83a6992bba6f9036c521c7ae1897f
|
refs/heads/master
| 2023-06-11T12:08:52.134764
| 2023-03-05T11:05:21
| 2023-03-05T11:05:21
| 160,586,219
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 312
|
iuml
|
@startuml
class Sakarkiv.Dokumentflyt {
+systemID : SystemID [0..1]
+flytTil : string
+referanseFlytTil : SystemID [0..1]
+flytFra : string
+referanseFlytFra : SystemID [0..1]
+flytMottattDato : datetime
+flytSendtDato : datetime
+flytStatus : FlytStatus
+flytMerknad : string [0..1]
}
@enduml
|
4124058362f0b0b07e7ffd4d3345caa0c962474f
|
f05aa0620a6165d8cbe4ebbefdff7a6a24af4727
|
/doc/zombies.plantuml
|
f1e5cae98faa91b90f9a37024e99f6b5f8441bcb
|
[] |
no_license
|
CDK6182CHR/PlantVsZombie
|
d28e81cdbfa87c64092d5ee696dc9cd79dafd6a7
|
00ce1efc745cadf9a7cbf28d4bd4120484b0ba71
|
refs/heads/master
| 2022-02-27T02:27:13.161851
| 2019-11-09T13:11:38
| 2019-11-09T13:11:38
| 217,850,308
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 948
|
plantuml
|
abstract class AbstractProtector{
抽象僵尸护具
}
class RoadBlock{
路障
}
AbstractProtector <|-- RoadBlock
class CR200J {
垃圾桶
(类名就当个彩蛋吧
}
AbstractProtector <|-- CR200J
class Bucket{
铁桶
}
AbstractProtector <|-- Bucket
class Door{
门板
}
AbstractProtector <|-- Door
abstract class Zombie{
}
class NormalZombie{
普通僵尸
}
Zombie <|-- NormalZombie
class ProtectedZombie <T extends Zombie, P extends AbstractProtector>{
各种带护具的僵尸
}
Zombie <|-- ProtectedZombie
ProtectedZombie "Wears" --> AbstractProtector
class FlagZombie{
摇旗僵尸
}
NormalZombie <|-- FlagZombie
class RugbyZombie{
橄榄球僵尸
}
Zombie <|-- RugbyZombie
class PaperZombie {
读报僵尸
}
Zombie <|-- PaperZombie
class ToyZombie{
玩偶盒僵尸
或小丑僵尸
}
Zombie <|-- ToyZombie
class VaultZombie{
撑杆僵尸
}
Zombie <|-- VaultZombie
|
1311d95007e0090020199c6bd0d9158d75c6e40a
|
c5a5a8438415aa09812db5d065019d31bcd93241
|
/class-match.puml
|
49f43cb5887543272631ec4a52730cf9bcd5e1f1
|
[
"Apache-2.0"
] |
permissive
|
fdlong/fly
|
1fc9e7fd11893e8fdb73fbe6e97c0dd50407c4bf
|
c786288a2d6cb4586204f98f6f3ca26d1bccbe2f
|
refs/heads/master
| 2022-08-21T20:05:21.656846
| 2020-05-23T14:36:28
| 2020-05-23T14:36:28
| 263,578,692
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,830
|
puml
|
@startuml
set namespaceSeparator ::
namespace clarkii {
namespace core {
namespace bean <<交互数据包>> {
class Attrs {
- Attr[] attrs
+ Attr[] getAttrs()
+ Attr getAttr(String name)
}
class Attr {
- String name
- Object value
+ String getName()
+ Object getValue()
}
Attrs +-- Attr
class Contents {
- Content[] contents
+ Content[] getContents()
+ Content getContent(String id)
}
class Content {
- String id
- Serializable value
- Condition condition
- Timestamp startTime
- Timestamp endTime
+ String getId()
+ Serializable getValue()
+ Condition getCondition()
+ Timestamp getStartTime()
+ Timestamp getEndTime()
}
Contents +-- Content
class Condition <K, V> {
~ K left
~ Operator operator
~ V... right
+ {static} Condition of()
+ {static} Condition of(String attr, Operator operator, <Comparable>... values)
+ {static} Condition parse(String text)
+ Condition or(Condition other)
+ Condition or(String attr, Operator operator, <Comparable>... values)
+ Condition and(Condition other)
+ Condition and(String attr, Operator operator, <Comparable>... values)
+ Condition negate()
+ Condition of(String attr, Operator operator, <Comparable>... values)
+ String toJson()
}
class NoCondition extends Condition {
}
class LeafCondition extends Condition {
+ String getAttr()
+ Operator getOperator()
+ Comparable[] getValue()
}
enum Operator {
eq
ne
gt
gte
lt
lte
in
bt
or
and
not
}
}
namespace engine <<检索引擎>> {
class Matcher {
+ Contents match(Attrs attrs)
}
}
}
}
@enduml
|
b0a63375e3358d940d2a1b24a253667a565708b7
|
58f5766244826918a3cf79312f861f76c5aa6f7d
|
/Documents/uml/Services/ViewServiceProvider.puml
|
b0297137fb1114a90de14dc7be350bdf51e49bf2
|
[
"MIT"
] |
permissive
|
BillKrat/CsvEditSharp
|
3835aa9d7955a33830be47b044d3c05763c68dff
|
a91334a8aa1b08c4f7fe38116892b088e92d4da4
|
refs/heads/master
| 2022-01-28T15:31:06.719793
| 2019-07-28T11:39:25
| 2019-07-28T11:39:25
| 198,216,226
| 0
| 1
|
MIT
| 2019-07-22T12:10:45
| 2019-07-22T12:10:44
| null |
UTF-8
|
PlantUML
| false
| false
| 452
|
puml
|
@startuml
class ViewServiceProvider {
+ OpenFileSelectionService : IFileSelectionService <<get>>
+ SaveFileSelectionService : IFileSelectionService <<get>>
+ GenerateConfigDialogService : IModalDialogService<GenerateConfigSettings> <<get>>
+ SaveConfigDialogService : IModalDialogService<SaveConfigSettings> <<get>>
+ ConfigSettingsDialogService : IModalDialogService <<get>>
}
IViewServiceProvider <|-- ViewServiceProvider
@enduml
|
7f84fe4314e349d61437276b49514c5fec92c42a
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/BusinessUnitResourceIdentifier.puml
|
adec2b22742737f3d724963b8d7014872e01252a
|
[] |
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
| 8,791
|
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 BusinessUnitResourceIdentifier [[BusinessUnitResourceIdentifier.svg]] extends ResourceIdentifier {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
interface ResourceIdentifier [[ResourceIdentifier.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
interface BusinessUnitResourceIdentifier [[BusinessUnitResourceIdentifier.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
interface DivisionDraft [[DivisionDraft.svg]] {
key: String
status: [[BusinessUnitStatus.svg BusinessUnitStatus]]
stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
associates: [[AssociateDraft.svg List<AssociateDraft>]]
addresses: [[BaseAddress.svg List<BaseAddress>]]
shippingAddresses: [[Integer.svg List<Integer>]]
defaultShippingAddress: Integer
billingAddresses: [[Integer.svg List<Integer>]]
defaultBillingAddress: Integer
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
parentUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
}
interface BusinessUnitChangeParentUnitAction [[BusinessUnitChangeParentUnitAction.svg]] {
action: String
parentUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
}
interface CartDraft [[CartDraft.svg]] {
currency: String
key: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
anonymousId: String
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[LineItemDraft.svg List<LineItemDraft>]]
customLineItems: [[CustomLineItemDraft.svg List<CustomLineItemDraft>]]
taxMode: [[TaxMode.svg TaxMode]]
externalTaxRateForShippingMethod: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]]
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
shippingMode: [[ShippingMode.svg ShippingMode]]
customShipping: [[CustomShippingDraft.svg List<CustomShippingDraft>]]
shipping: [[ShippingDraft.svg List<ShippingDraft>]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
discountCodes: [[String.svg List<String>]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
deleteDaysAfterLastModification: Long
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface CartSetBusinessUnitAction [[CartSetBusinessUnitAction.svg]] {
action: String
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
}
interface AssociateMissingPermissionError [[AssociateMissingPermissionError.svg]] {
code: String
message: String
associate: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
associateOnBehalf: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
permissions: [[Permission.svg List<Permission>]]
}
interface GraphQLAssociateMissingPermissionError [[GraphQLAssociateMissingPermissionError.svg]] {
code: String
associate: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
associateOnBehalf: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
permissions: [[Permission.svg List<Permission>]]
}
interface MyCartDraft [[MyCartDraft.svg]] {
currency: String
customerEmail: String
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[MyLineItemDraft.svg List<MyLineItemDraft>]]
taxMode: [[TaxMode.svg TaxMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
discountCodes: [[String.svg List<String>]]
country: String
locale: String
deleteDaysAfterLastModification: Long
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface MyDivisionDraft [[MyDivisionDraft.svg]] {
key: String
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
custom: [[CustomFields.svg CustomFields]]
addresses: [[BaseAddress.svg List<BaseAddress>]]
shippingAddresses: [[Integer.svg List<Integer>]]
defaultShippingAddress: Integer
billingAddresses: [[Integer.svg List<Integer>]]
defaultBillingAddress: Integer
parentUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
}
interface MyBusinessUnitChangeParentUnitAction [[MyBusinessUnitChangeParentUnitAction.svg]] {
action: String
parentUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
}
interface MyCartSetBusinessUnitAction [[MyCartSetBusinessUnitAction.svg]] {
action: String
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
}
interface OrderImportDraft [[OrderImportDraft.svg]] {
orderNumber: String
purchaseOrderNumber: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[LineItemImportDraft.svg List<LineItemImportDraft>]]
customLineItems: [[CustomLineItemImportDraft.svg List<CustomLineItemImportDraft>]]
totalPrice: [[Money.svg Money]]
taxedPrice: [[TaxedPriceDraft.svg TaxedPriceDraft]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
shippingInfo: [[ShippingInfoImportDraft.svg ShippingInfoImportDraft]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
paymentState: [[PaymentState.svg PaymentState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
orderState: [[OrderState.svg OrderState]]
state: [[StateReference.svg StateReference]]
country: String
origin: [[CartOrigin.svg CartOrigin]]
completedAt: DateTime
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
BusinessUnitResourceIdentifier --> BusinessUnitResourceIdentifier #blue;text:blue : "typeId : business-unit"
BusinessUnitResourceIdentifier --> DivisionDraft #green;text:green : "parentUnit"
BusinessUnitResourceIdentifier --> BusinessUnitChangeParentUnitAction #green;text:green : "parentUnit"
BusinessUnitResourceIdentifier --> CartDraft #green;text:green : "businessUnit"
BusinessUnitResourceIdentifier --> CartSetBusinessUnitAction #green;text:green : "businessUnit"
BusinessUnitResourceIdentifier --> AssociateMissingPermissionError #green;text:green : "businessUnit"
BusinessUnitResourceIdentifier --> GraphQLAssociateMissingPermissionError #green;text:green : "businessUnit"
BusinessUnitResourceIdentifier --> MyCartDraft #green;text:green : "businessUnit"
BusinessUnitResourceIdentifier --> MyDivisionDraft #green;text:green : "parentUnit"
BusinessUnitResourceIdentifier --> MyBusinessUnitChangeParentUnitAction #green;text:green : "parentUnit"
BusinessUnitResourceIdentifier --> MyCartSetBusinessUnitAction #green;text:green : "businessUnit"
BusinessUnitResourceIdentifier --> OrderImportDraft #green;text:green : "businessUnit"
@enduml
|
69021663aa16aca1b945c0cb8eb379f3eec24b46
|
65d20a2522663f335ac05ff61a0d00cb3c9e02d6
|
/设计模式/行为型模式/14.Command命令/command.puml
|
122a1827ae5c31639a7a0b2f79f0132caf864850
|
[] |
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
| 575
|
puml
|
@startuml
interface Command{
+ {abstract} void execute()
}
class InfoCommand{
- LogReceiver logReceiver
+ InfoCommand(LogReceiver logReceiver)
+ void execute()
}
class ErrorCommand{
- LogReceiver logReceiver
+ ErrorCommand(LogReceiver logReceiver)
+ void execute()
}
class Invoke{
+ void invoke(Command command)
}
class LogReceiver{
+ void logInfo()
+ void logError()
}
class Client{
+{static}void main(String[] args)
}
Invoke..> Command
InfoCommand..|> Command
ErrorCommand..|>Command
InfoCommand-->LogReceiver
ErrorCommand-->LogReceiver
@enduml
|
60cf055f28cbdba604b255f326a1a358aba65fe2
|
17fe0f5df5b8d1ad7ab001775c37cf6c9ca3084e
|
/observer/uml.puml
|
9970c0de5bd0a12d0857cb58994135cf34528822
|
[] |
no_license
|
lazy3311/design_patterns
|
a91c86a17aeb8bda3564c2f4db2cd8f5774b63ea
|
f8da613ecf14d9f47fac67d1efafbafe6156f0b1
|
refs/heads/master
| 2022-12-09T20:32:13.457813
| 2020-09-11T09:25:31
| 2020-09-11T09:25:31
| 286,716,509
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 789
|
puml
|
@startuml observer_pattern
!define DARKORANGE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
abstract class Subject {
+ {abstract} register();
+ {abstract} unregister();
+ {abstract} notify();
}
class ConcreateSubject {
+ registered_observer;
+ register();
+ unregister();
+ notify();
}
abstract class Observer {
+ {abstract} update();
}
class ConcreateObserverA {
+ update();
}
class ConcreateObserverB {
+ update();
}
Subject <|-- ConcreateSubject
Subject o-- Observer
Observer <|-- ConcreateObserverA
Observer <|-- ConcreateObserverB
ConcreateSubject ..> ConcreateObserverA
ConcreateSubject ..> ConcreateObserverB
note left of Subject : notify registered_observer\n with update() method
@enduml
|
a959f3c965159b1ab4c2eab2fbd360ce77d83148
|
baf18fbf9ad3fbc94fc7e7aa22c1daec5dce57ce
|
/ProyectoTDP/src/GameData/GameData.puml
|
ec338b810a998225d44f1272c882671d683f01c0
|
[] |
no_license
|
Nicolas-Guasch/Proyecto-TDP
|
9dc37086538f8f7b96cd2cad2981b0176a858439
|
0e2e0bc65790cf9a8c615163bcd0f3c84bcd3327
|
refs/heads/master
| 2020-03-26T09:52:51.608125
| 2018-11-30T01:31:33
| 2018-11-30T01:31:33
| 144,770,001
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,537
|
puml
|
@startuml
skinparam classAttributeIconSize 0
package GameData{
class GameSettings{
+ TieBulletSpeed: final float
+ TieSpeed: final float
+ FirstBossSpeed: final float
+ PlayerBulletSpeed: final float
-GameSettings()
+ {static} GetInstance():GameSettings
+ bounds():Rect
+ PlaceHolderData(): EntityData
}
GameSettings --"1" GameSettings: (static) -instance
GameSettings -- EntityData:PlayerInitialData >
GameSettings -- EntityData:PlayerData >
GameSettings -- EntityData:TieData >
GameSettings -- EntityData:TieBulletData >
GameSettings -- EntityData:FirstBossData >
class CurrentMatchData{
-score:int = 0
-CurrentMatchData()
+ getMatchData: CurrentMatchData
+ currentScore:int
+ incScore()
+ resetScore()
}
CurrentMatchData -- IBroadcaster: OnScoreChanges: IBroadcaster<Integer>
CurrentMatchData -- Invoker: invokerScoreChanges: Invoker<Integer>
interface ILostOrWin {
{abstract}+AllianceWins()
{abstract}+EmpireWins()
}
class LostOrWin {
-made:boolean
+AllianceWins()
+EmpireWins()
-creditsAndClose()
}
ILostOrWin <|-- LostOrWin
class MatchResult {
+AllianceWins()
+EmpireWins()
+getInstance(): MatchResult
-creditsAndClose()
}
ILostOrWin <|-- MatchResult
MatchResult -- MatchResult:Instance
MatchResult -- "1" ILostOrWin
}
@enduml
|
7512328f609692ef293b92256da2bde1aeac8d45
|
03559493120a4be98d2642fe747ca7c0a3c651ec
|
/app/src/androidTest/java/com/team/deminder/deminder/deminder.plantuml
|
df07df098cc6e03deca37a81433d39c49f80042d
|
[] |
no_license
|
Kalkihe/Deminder
|
f718b4a88133fad05038cd1bc3ab473b8f20f45c
|
879212194c7c3e717ef8ae2310083e266767c21f
|
refs/heads/master
| 2020-03-30T19:38:34.183808
| 2019-06-19T07:34:44
| 2019-06-19T07:34:44
| 151,551,599
| 0
| 4
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 363
|
plantuml
|
@startuml
title __DEMINDER's Class Diagram__\n
package com.team.deminder.deminder {
class ExampleInstrumentedTest {
+ useAppContext()
}
}
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
|
ac283b10977edcf88333c143275c0e673ec87e28
|
4b81e72878f40b705ac32cf8e136311dc4dc3699
|
/app/src/main/java/sud_tanj/com/icare/Frontend/Listener/Listener.plantuml
|
f13c7d1ef6cd2ff6fef573ae92c3e0e03291adf7
|
[] |
no_license
|
sudtanj/iCare-PHR
|
826f6e1ffa0b4217ed128a36386a7494e22c521e
|
2d334a5dd7854b8cc204dd8adbe9f74d86c7d694
|
refs/heads/master
| 2020-03-23T04:46:07.948787
| 2019-12-22T03:22:09
| 2019-12-22T03:22:09
| 141,104,375
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 609
|
plantuml
|
@startuml
title __LISTENER's Class Diagram__\n
package sud_tanj.com.icare {
package sud_tanj.com.icare.Frontend.Listener {
class FirebaseProfilePictureListener {
- drawerProfile : DrawerProfile
- baseActivity : DrawerActivity
+ FirebaseProfilePictureListener()
+ onResourceReady()
}
}
}
FirebaseProfilePictureListener -up-|> SimpleTarget
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
|
94026b16982702941ddc1d25f9f191a1a1fdee25
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/CustomLineItemStateTransitionMessagePayload.puml
|
5dae7ae9e6fe77f8961d90f048da27d92b45c36f
|
[] |
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
| 668
|
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 CustomLineItemStateTransitionMessagePayload [[CustomLineItemStateTransitionMessagePayload.svg]] extends OrderMessagePayload {
type: String
customLineItemId: String
customLineItemKey: String
transitionDate: DateTime
quantity: Long
fromState: [[StateReference.svg StateReference]]
toState: [[StateReference.svg StateReference]]
}
interface OrderMessagePayload [[OrderMessagePayload.svg]] {
type: String
}
@enduml
|
c463bf50815ca3be023358c236542d6cd343892e
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/CustomerSetSalutationAction.puml
|
2e635f3d8783e9c346624ff6ff6ebd46472ae4b3
|
[] |
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
| 455
|
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 CustomerSetSalutationAction [[CustomerSetSalutationAction.svg]] extends CustomerUpdateAction {
action: String
salutation: String
}
interface CustomerUpdateAction [[CustomerUpdateAction.svg]] {
action: String
}
@enduml
|
f2487728a2ae8caa0a23e56b1b7c8893c51816de
|
b615d963ae1cfa22289775c561dd073b55a71ebd
|
/docs/uml-class-diagrams/display01/test/DisplayGpsInterfaceImplementationTests/DisplayGpsInterfaceImplementationTests.puml
|
c2df9e445ade35a908d7d3fab9537e190f25fe03
|
[] |
no_license
|
elilley15/csi-3370-software-project
|
8062dddf435ab0c7941acdf03225f84c18457947
|
d2642cf649dabeafd6d9753c483b9df265d85118
|
refs/heads/main
| 2023-01-18T15:48:03.237629
| 2020-11-28T21:24:10
| 2020-11-28T21:24:10
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 155
|
puml
|
@startuml DisplayGpsInterfaceImplementationTests
package edu.oakland.test.display01 {
class DisplayGpsInterfaceImplementationTests {
}
}
@enduml
|
4ac391e8abbf33917e53c76bcd1a37de776bdaae
|
85f2e796c6c71b5b9e705ba14bc028484d80717a
|
/src/docs/factory_method.puml
|
bf69a1cf22aae4674e8599e90573e3bba4eab0c8
|
[] |
no_license
|
cutem-0104/DesignpatternIntroduction
|
c6c52ce18f9e8290e7ef2320938cf314ebce8b50
|
9786b90ac9eb12733785aa96d4d6f41264046e91
|
refs/heads/master
| 2020-03-22T03:58:16.979520
| 2018-07-02T15:50:06
| 2018-07-02T15:50:06
| 139,463,949
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 554
|
puml
|
@startuml
package framework {
abstract Factory {
create()
{abstract}createProduct()
{abstract}registerProduct()
}
abstract Product {
{abstract}use()
}
Factory -r-> Product: creates
}
package idcard {
class IDCardFactory {
owners
createProduct()
registerProduct()
getOwners()
}
class IDCard {
owner
use()
getOwner()
}
IDCardFactory -u-|> Factory
IDCardFactory -r-> IDCard: creates
IDCard --|> Product
}
@enduml
|
8cc246948bc1676ff5047115a5126bf78a4d3ab6
|
92977ea6ba766b9d87fcfc6dce5b6d0c712aa3d2
|
/docs/diagrams/DietTrackerHeightCommandClassDiagram.puml
|
9be23496fe73d013251652111c040e89cf285065
|
[
"MIT"
] |
permissive
|
WillySeahh/main
|
202ea13b74807727fa8b1010b30139a034b8d94e
|
664611ec114ad35b7528bab89ca4c47876b28f22
|
refs/heads/master
| 2021-01-05T16:17:11.402471
| 2020-04-16T18:11:29
| 2020-04-16T18:11:29
| 241,072,558
| 0
| 0
|
NOASSERTION
| 2020-02-17T09:52:59
| 2020-02-17T09:52:58
| null |
UTF-8
|
PlantUML
| false
| false
| 2,603
|
puml
|
@startuml
/' @author @jarrod-bob'/
/' Got inspiration and adapted
from https://github.com/AY1920S2-CS2103T-W12-1/main/blob/master/docs/images/DeliveredClassDiagram.png '/
skinparam backgroundColor #ffffff
skinparam classAttributeIconSize 0
hide circle
class HeightCommandParser implements Parser {
/' Methods '/
+ parse(args : String) : HeightCommand
}
interface Parser<T extends Command> <<Interface>> {
parse(userInput : String) : HeightCommand
}
abstract class Command<E> {
{abstract} execute(model : E) : CommandResult
}
class HeightCommand extends Command {
/' Fields '/
- height : Height
/' Methods '/
+ execute(dietModel : DietModel) : CommandResult
+ equals(other : Object) : boolean
}
interface DietModel <<Interface>> {
+ PREDICATE_SHOW_ALL_FOODS : Predicate<Food>
+ setUserPrefs(userPrefs : ReadOnlyUserPrefs) : void
+ getUserPrefs() : ReadOnlyUserPrefs
+ getMyselfFilePath() : Path
+ setMyselfFilePath(myselfFilePath : Path) : void
+ setMyself(myself : ReadOnlyMyself) : void
+ getMyself() : ReadOnlyMyself
+ setHeight(height : Height) : void
+ setWeight(weight : Weight) : void
+ getHeight() : Height
+ getWeight() : Weight
+ setMode(mode : Mode) : void
+ printMetrics() : String
+ getMode() : Mode
+ getFoodBookFilePath() : Path
+ setFoodBookFilePath(foodBookFilePath : Path) : void
+ setFoodBook(foodBook : ReadOnlyFoodBook) : void
+ getFoodBook() : ReadOnlyFoodBook
+ hasFood(food : Food) : boolean
+ deleteFood(target : Food) : void
+ addFood(food : Food) : void
+ setFood(target : Food, editedFood : Food) : void
+ getFilteredFoodList() : ObservableList<Food>
+ listFoods(mode : String) : String
+ updateFilteredFoodList(predicate : Predicate<Food>) : void
}
class Height {
/' Fields '/
- heightString : String
- heightFloat : Float
/' Methods '/
+ isValidHeight(test : String) : boolean
+ isZero() : boolean
+ isNotZero() : boolean
}
class ParserUtil {
<u> + parseIndex(oneBasedIndex : String) : Index
<u> + parseCalories(calories : String) : Calories
<u> + parseName(name : String) : Name
<u> + parseTag(tag : String) : Tag
<u> + parseTags(tags : Collection<Tag>) : Set<Tag>
<u> + parseHeight(height : String) : Height
<u> + parseWeight(weight : String) : Weight
<u> + parseDays(days : String) : int
}
HeightCommand ..> DietModel
HeightCommandParser ..> HeightCommand
HeightCommandParser ..> Height
HeightCommandParser ..> ParserUtil
HeightCommand *--> "1" Height
@enduml
|
bc071da97ec0d6351957e137ecb1360371d1bddc
|
7769f6bb151fbe2d58d7bcd54386a0cf7b7a9419
|
/architecture/imap/diagrams/nsImapProtocol.puml
|
2b07a96a176aeda4f482cd3b4f456912eee5ff01
|
[] |
no_license
|
bcampbell/tb-notes
|
b853d11b7aeeebf6e1c7b9069ac25ff05d6aedf4
|
a79031ec11f6aff1592ce55a61afe85153e2433a
|
refs/heads/master
| 2023-05-25T19:34:44.376874
| 2023-05-24T01:12:52
| 2023-05-24T01:12:52
| 145,787,876
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,120
|
puml
|
@startuml
skinparam linetype ortho
left to right direction
interface nsIImapProtocol
interface nsIRunnable
interface nsIInputStreamCallback {
onInputStreamReady(nsIAsyncInputStream)
}
class nsSupportsWeakReference
interface nsIImapProtocolSink
interface nsIMsgAsyncPromptListener
interface nsIProtocolProxyCallback
interface nsIRequest
interface nsIChannel
nsIRequest <|-- nsIChannel
interface nsIStreamListener {
onDataAvailable(...)
}
interface nsIRequestObserver {
onStartRequest(...)
onStopRequest(...)
}
nsIRequestObserver <|-- nsIStreamListener
interface nsITransportEventSink {
onTransportStatus(...)
}
class nsMsgProtocol
nsIChannel <|-- nsMsgProtocol
nsIStreamListener <|-- nsMsgProtocol
nsITransportEventSink <|-- nsMsgProtocol
class nsImapProtocol
nsIImapProtocol <|-- nsImapProtocol
nsIRunnable <|-- nsImapProtocol
nsIInputStreamCallback <|-- nsImapProtocol
nsSupportsWeakReference <|-- nsImapProtocol
nsMsgProtocol <|-- nsImapProtocol
nsIImapProtocolSink <|-- nsImapProtocol
nsIMsgAsyncPromptListener <|-- nsImapProtocol
nsIProtocolProxyCallback <|-- nsImapProtocol
@enduml
|
71c03fe656f0854e99f75a9a9ea2189b1caef5f4
|
e361963948d32c8a83693d38730fd49b46d23442
|
/Akali/src/Akali/Akali.plantuml
|
e020fc6ee1f0edcd5f4b66fc424921f643fbe35a
|
[
"MIT"
] |
permissive
|
Mauville/Akali
|
9a6ce8d9efcd5fa67677ab6bab168cfe98ed3e30
|
17ae85f98980cee790da53c5ae18225800ad7a0e
|
refs/heads/master
| 2020-05-06T15:20:41.293597
| 2019-05-07T16:26:16
| 2019-05-07T16:26:16
| 180,184,899
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 364
|
plantuml
|
@startuml
title __AKALI's Class Diagram__\n
package Akali {
class Main {
+ start()
{static} + main()
}
}
Main -up-|> Application
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
|
055b3878692fd77d96f013f8d7de72ac721c04ff
|
786b8d255485f952a5761abff55a191fd736dc1e
|
/main/java/com/gmail/ib/projectCrypt/ui/ui.plantuml
|
2f15eae76f096b35239da38dd74a63ecc6a46510
|
[] |
no_license
|
notd5a-alt/projectCrypt
|
3e5149217bde9b573b674beecc99e9a09fa70319
|
2f46d41160963bc4f78b49e5ad6a9db6b8ac7845
|
refs/heads/master
| 2022-04-11T10:50:28.626265
| 2020-03-24T11:39:07
| 2020-03-24T11:39:07
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,391
|
plantuml
|
@startuml
title __UI's Class Diagram__\n
namespace com.gmail.ib.projectCrypt {
namespace ui {
class com.gmail.ib.projectCrypt.ui.ConfirmDialog {
+ ConfirmDialog()
}
}
}
namespace com.gmail.ib.projectCrypt {
namespace ui {
class com.gmail.ib.projectCrypt.ui.ErrorView {
- explanation : Span
+ ErrorView()
+ setErrorParameter()
}
}
}
namespace com.gmail.ib.projectCrypt {
namespace ui {
class com.gmail.ib.projectCrypt.ui.MainLayout {
- logoutButton : Button
+ MainLayout()
# onAttach()
- createMenuButton()
- createMenuLink()
- logout()
}
}
}
com.gmail.ib.projectCrypt.ui.ConfirmDialog -up-|> com.vaadin.flow.component.dialog.Dialog
com.gmail.ib.projectCrypt.ui.ErrorView .up.|> com.vaadin.flow.router.HasErrorParameter
com.gmail.ib.projectCrypt.ui.ErrorView -up-|> com.vaadin.flow.component.orderedlayout.VerticalLayout
com.gmail.ib.projectCrypt.ui.MainLayout .up.|> com.vaadin.flow.router.RouterLayout
com.gmail.ib.projectCrypt.ui.MainLayout -up-|> com.vaadin.flow.component.applayout.AppLayout
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
|
8390a260b3e9396191d7c0c715296b63c562863b
|
0b195ec0c59fa8abcecd08c66675e762d401b0b8
|
/src/academy/mindswap/sims/house/house.plantuml
|
8e3023c2a1a926fbb58da04850088a1a8c7ac113
|
[] |
no_license
|
didivassi/Sims
|
e280b3e01885d1d78e7337a1d6f7fbb66ef44ed0
|
1baee7ad17cd90009661dda63d61e1931d8957ef
|
refs/heads/master
| 2023-05-15T02:44:30.300259
| 2021-06-08T08:30:45
| 2021-06-08T08:30:45
| 374,364,223
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,702
|
plantuml
|
@startuml
title __HOUSE's Class Diagram__\n
namespace academy.mindswap {
namespace sims {
namespace house {
class academy.mindswap.sims.house.House {
- MAX_DIRTINESS_LEVEL : int
- dirtinessLevel : int
- rooms : ArrayList<Room>
+ House()
+ addDivision()
+ getDirtinessLevel()
+ getRoom()
+ iterator()
+ listRooms()
+ useRoom()
~ cleanHouse()
}
}
}
}
namespace academy.mindswap {
namespace sims {
namespace house {
class academy.mindswap.sims.house.Maid {
- PAYMENT_FEE : double
+ cleanHouse()
}
}
}
}
namespace academy.mindswap {
namespace sims {
namespace house {
class academy.mindswap.sims.house.Room {
+ Room()
+ getRoomCleanlinessDecrease()
+ getRoomType()
+ toString()
}
}
}
}
namespace academy.mindswap {
namespace sims {
namespace house {
enum RoomType {
BATHROOM
BEDROOM
CINEMA
GYM
KITCHEN
LIBRARY
LIVING_ROOM
OFFICE
SWIMMING_POOL
houseCleanlinessDecrease
}
}
}
}
academy.mindswap.sims.house.House .up.|> java.lang.Iterable
academy.mindswap.sims.house.Room o-- academy.mindswap.sims.house.RoomType : roomType
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
|
faf0406e2f08e2117f14e15a57090c901e04855a
|
3b2c90b89c045353b799ead5a800f95785cda9cd
|
/uml/factory.puml
|
2e103e4f23dbe22a0169041fe95054a2c352fc69
|
[] |
no_license
|
pers0n4/daily-scheduler
|
8f2ae6b5909c7edcebd180095e926d003995a453
|
a09e12a259a303c34a467c6ab179783c11196a5a
|
refs/heads/main
| 2023-05-13T05:17:42.009372
| 2021-06-05T15:40:15
| 2021-06-05T15:40:15
| 361,421,579
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 383
|
puml
|
@startuml factory
interface User {
~getUserName() : String
~getPassword() : String
}
interface UserFactory {
~create(String, String) : User
}
class CommonUser implements User {
~username : String
~password : String
}
class CommonUserFactory implements UserFactory {
~create(String, String) : CommonUser
}
UserFactory .> User
CommonUserFactory .> CommonUser
@enduml
|
fa3da494c6cd8314cad9165cdc69388eb33a9123
|
63114b37530419cbb3ff0a69fd12d62f75ba7a74
|
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Events/Signals/SignalReceiver.puml
|
99bce416731b7813fa9fb90c9968520cb0dc525c
|
[] |
no_license
|
TakanoVineYard/AMHH
|
215a7c47049df08c5635b501e74f85137b9e985b
|
68887a313587a2934fb4ceb2994cbc2a2191d6a3
|
refs/heads/master
| 2023-01-13T02:08:02.787083
| 2020-11-17T14:51:57
| 2020-11-17T14:51:57
| 303,631,593
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,245
|
puml
|
@startuml
class SignalReceiver {
+ OnNotify(origin:Playable, notification:INotification, context:object) : void
+ AddReaction(asset:SignalAsset, reaction:UnityEvent) : void
+ AddEmptyReaction(reaction:UnityEvent) : int
+ Remove(asset:SignalAsset) : void
+ GetRegisteredSignals() : IEnumerable<SignalAsset>
+ GetReaction(key:SignalAsset) : UnityEvent
+ Count() : int
+ ChangeSignalAtIndex(idx:int, newKey:SignalAsset) : void
+ RemoveAtIndex(idx:int) : void
+ ChangeReactionAtIndex(idx:int, reaction:UnityEvent) : void
+ GetReactionAtIndex(idx:int) : UnityEvent
+ GetSignalAssetAtIndex(idx:int) : SignalAsset
}
class EventKeyValue {
+ TryGetValue(key:SignalAsset, value:UnityEvent) : bool
+ Append(key:SignalAsset, value:UnityEvent) : void
+ Remove(idx:int) : void
+ Remove(key:SignalAsset) : void
}
class "List`1"<T> {
}
MonoBehaviour <|-- SignalReceiver
INotificationReceiver <|-- SignalReceiver
SignalReceiver o-> "m_Events" EventKeyValue
SignalReceiver +-- EventKeyValue
EventKeyValue o-> "m_Signals<SignalAsset>" "List`1"
EventKeyValue o-> "m_Events<UnityEvent>" "List`1"
EventKeyValue --> "signals<SignalAsset>" "List`1"
EventKeyValue --> "events<UnityEvent>" "List`1"
@enduml
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.