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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ae744ceb02675bae0f9405f68c95b56dedebe60a | 26e1fe33d9f48734e30f9d42601a46fceb1adb88 | /src/docs/dev/client_js_structure.puml | da8f42c78b9a076e4992ae73c8f309baf4999dc7 | [
"Apache-2.0"
] | permissive | fretboardfreak/gridrealm | 69ae5bb18df85f58c750d4aa25f1ae5786127731 | b0fcbc6e569daef186a45fc0531de8a275d6382c | refs/heads/master | 2021-06-30T10:53:59.653912 | 2019-07-02T03:11:14 | 2019-07-02T03:11:14 | 184,120,963 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 911 | puml | @startuml
skinparam packageStyle rectangle
class gridrealm {
+ IIFE DocumentReadyEvent
+ IIFE WindowResizeEvent
}
class auth {
is_logged_in()
toggle_login_state()
create_account()
init_panels()
}
class api {
Enum uri
Object api
Object api_helpers
}
class util {
get_font_size()
build_image_tag()
}
class debug {
add_size()
update_size_record()
}
class chat_panel {
load_chat_panel()
}
class action_panel {
load_action_panel()
}
class multi_panel {
load_multi_panel()
change_multipanel_view()
resize_multipanel_content()
}
class resize {
resize_panels()
}
gridrealm <-- auth
gridrealm <-- resize
auth <-- chat_panel
auth <-- action_panel
auth <-- multi_panel
auth <-- resize
resize <-- multi_panel
resize <-- debug
resize <-- util
chat_panel <-- util
chat_panel <-- api
action_panel <-- util
action_panel <-- api
multi_panel <-- util
multi_panel <-- api
@enduml
|
9d1d37b6f6603335fa1030edf97ad6ee22bf6cac | 06138c54ea48414d6719781898496f22279a6519 | /exercise43/docs/Solution43UML.puml | 27c137d5c3591bd38058f7fb696cc743f9698a03 | [] | no_license | MarcPalacio/palacio-a04 | 8bdb0a0a6bb6bd9175cfbc4f4b69ca96914a4ceb | 2936e5626333922ae1bbb22b836caa38843f3858 | refs/heads/master | 2023-08-18T22:49:06.189370 | 2021-10-17T22:59:07 | 2021-10-17T22:59:07 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 734 | puml | @startuml
class Solution43{
'Methods
+main(String)
}
class FileCreator{
'Methods
'Gets the input from user and calls createFile
+getInput()
'Creates the files
+createFile(String pathSite, String siteName, String authorName,
String choiceJS, String choiceCSS)
'Creates HTML file
-createHTML(String pathSite, String siteName, String author)
}
class Methods{
'Attributes
-in: Scanner
'Methods
'Asks user for input based on question
+askQuestion(String question): String answer
'Asks user for a yes or no (y or n)
'Uses try catch to ensure answer is a string
+verifyInput(String question): String answer
}
Solution43 -- FileCreator
FileCreator -- Methods
@enduml |
e8eda39f0d958245ec2d5240a3fb51e70ff0b9d2 | a2b717706eb8dfd1c36045606e5824934cfc20a5 | /diagrams/factory-method.puml | 493dea994a31b38bd8df37f53c612fb9e1351bcd | [] | no_license | zhongshijun/head-first-design-patterns-cpp | 66f706264f848e26f6791057eb089a6cdf0a44d9 | 3dc4fc23abb884395313b388fd33e87c0b7730c6 | refs/heads/master | 2023-03-18T20:51:13.129157 | 2021-01-25T20:55:26 | 2021-01-25T20:55:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,199 | puml | @startuml factory-method
'Creator
abstract class PizzaStore{
+orderPizza();
+createPizza();
}
class NYPizzaStore{
+createPizza();
}
class ChicagoPizzaStore{
+createPizza();
}
PizzaStore <|-- NYPizzaStore
PizzaStore <|-- ChicagoPizzaStore
'Product
abstract class Pizza{
#name_;
#dough_;
#sauce_;
#toppings_;
+prepare();
+bake();
+cut();
+box();
+getName()
}
class NYStyleCheesePizza{
+NYStyleCheesePizza()
}
class NYStyleClamPizza{
+NYStyleClamPizza()
}
class NYStylePepperoniPizza{
+NYStylePepperoniPizza()
}
class NYStyleVeggiePizza{
+NYStyleVeggiePizza()
}
class ChicagoStyleCheesePizza{
+ChicagoStyleCheesePizza()
+cut()
}
class ChicagoStyleClamPizza{
+ChicagoStyleClamPizza()
}
class ChicagoStylePepperoniPizza{
+ChicagoStylePepperoniPizza()
+cut()
}
class ChicagoStyleVeggiePizza{
+ChicagoStyleVeggiePizza()
}
Pizza <|-- NYStyleCheesePizza
Pizza <|-- NYStyleClamPizza
Pizza <|-- NYStylePepperoniPizza
Pizza <|-- NYStyleVeggiePizza
Pizza <|-- ChicagoStyleCheesePizza
Pizza <|-- ChicagoStyleClamPizza
Pizza <|-- ChicagoStylePepperoniPizza
Pizza <|-- ChicagoStyleVeggiePizza
@enduml
|
01c6d2ebc5c5b9a1d7c9c753d4004bd00e18fa5a | ff37fc7cd12d4fbf1edbfb497f799f0da4f796ed | /plantuml/python-module.puml | 9b5d671ad4a007505f309f4966d294caa21f0dc0 | [] | no_license | abulka/lcodemaps | d3cd2e748cd14026c2a055939b69ba9ba44c3a61 | d40f7437cbe5a3484fb2136118f2c32a87aa7ceb | refs/heads/master | 2022-03-07T13:32:43.446713 | 2022-02-14T00:21:25 | 2022-02-14T00:21:25 | 223,074,570 | 43 | 8 | null | null | null | null | UTF-8 | PlantUML | false | false | 140 | puml | @startuml Example of Python module as pseudo class
class utils <<(M,#FF7700) MODULE utils.py>> {
x
y
---
fred()
}
@enduml
|
149205ad7fdf764ac7f8d85cb193043898be5952 | ae18f3805c2044dd28acb0e54142ffa3a213decf | /decorator/class.puml | 9d1d41f0e0b4d4e88630327bac12b20101168eeb | [] | no_license | GochenRyan/DesignPatternsInPython | c125bff53b4edc73cba0eef4ed4408033ff28711 | 47103f46d9b803c0f53902e83daf7b7be032903b | refs/heads/main | 2023-06-05T12:40:40.219251 | 2021-06-21T16:48:52 | 2021-06-21T16:49:05 | 366,058,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 253 | puml | @startuml
class CPerson {
m_sName
}
class CFinery {
m_oComponent
Decorate(oComponent)
Show()
}
class CTShirts {
}
class CBigTrouser{
}
CPerson <|-- CFinery
CFinery <|-- CTShirts
CFinery <|-- CBigTrouser
CFinery o-- CFinery
@enduml |
c1278856276823d608b21806742464ade7daf9b8 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderPagedQueryResponse.puml | 5094d6b3fc8e48e9e22c75314972c2aab91f0fb7 | [] | 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 | 398 | 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 OrderPagedQueryResponse [[OrderPagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[Order.svg List<Order>]]
}
@enduml
|
5beb200e094446f4d41b39c4aaf2f79601cd3803 | c45ce074df6e9c8bb54ce906f387a4ec1730b2d6 | /diagrams/design/patterns/class/structural/proxy.puml | bd4230b1e9fabc5d384bd9982aafcaed40580c9a | [] | no_license | eromero-kreatech/clean-code | 82a4a62ae6d76985bc77e7a16f5d9890c41b652f | e5a29e0dacead4f25005e67163ffb57fbc4d2d44 | refs/heads/master | 2023-06-26T21:50:19.104747 | 2021-07-24T00:51:11 | 2021-07-24T00:51:11 | 388,963,257 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 445 | puml | @startuml PROXY
class Client
interface Subject {
+ request()
}
class RealSubject {
+ request()
}
class Proxy {
+ request()
}
hide empty members
Subject <|-- RealSubject
Subject <|-- Proxy
RealSubject <- Proxy : represents
Client --> Subject
note as N1
<b><color:royalBlue>Proxy</color></b>
<b>Type:</b> Structural
Provide a surrogate or placeholder for
another object to control access to it.
end note
@enduml |
e4bec51e2bc192e9b0618cd667f21b437d3e30aa | e0197b084ea5fded857ce4b38a53005ee39c64e7 | /ares.plantuml | 88013d80d7a7b733bfe16f0d3b94978286d9f9fb | [
"MIT"
] | permissive | Shiroy/Ares_old | 8bca3e95f5ee80793e5d9aceb76bc5d4a71b72e8 | f8a017dd10c6af9bc1c8789164b0eded1808fae8 | refs/heads/master | 2021-01-18T01:56:07.698989 | 2016-07-26T12:55:28 | 2016-07-26T12:55:28 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 526 | plantuml | @startuml
abstract class Entity {
+position
+collide
+speed
+lifePoint
}
class GameObject
class HumanPlayer
class ComputerPlayer
abstract class Player {
+energies
}
GameObject --|> Entity
HumanPlayer --|> Player
ComputerPlayer --|> Player
Player --|> Entity
class Map
Entity --o Map
class SpellTemplate {
+castTime
+cooldownTime
+energyCost
+lifeCost
}
class Spell
Spell -- SpellTemplate
class AuraTemplate
class Aura
Aura -- AuraTemplate
AuraTemplate --|> SpellTemplate
@enduml
|
4836b3fd6056f6bb2a082772b1ee63123f4263b4 | 5e4a51c38c7f375b715c1aa9679dcaa581f0ffc0 | /app/src/main/java/com/devloper/lloydfinch/neteasedemo/arch/LiveData_class.puml | 7a72cd8b1659de1a3f07e79ce614aa84f54083e9 | [] | no_license | LloydFinch/NetEaseDemo | cda0f5648f482afa76ee9a3d66b2c6c798563967 | d5148b052ee8393586a1f3a511da827f0c3ceadf | refs/heads/master | 2021-07-13T05:16:10.431513 | 2021-02-25T06:27:00 | 2021-02-25T06:27:00 | 231,336,447 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,980 | puml | @startuml
abstract class LiveData<T> {
- final Object mDataLock
- int mActiveCount
- int mVersion
- volatile Object mData
- volatile Object mPendingData
+ void observe(LifecycleOwner owner, Observer observer)
# void setValue(T value)
# void postValue(T value)
+ T getValue()
- void dispatchingValue(ObserverWrapper initiator)
- void considerNotify(ObserverWrapper observer)
# void onActive()
# void onInactive()
}
class MutableLiveData<T> {
+ void setValue(T value)
+ void postValue(T value)
}
LiveData <|-- MutableLiveData
interface Observer<T> {
void onChanged(T t)
}
interface LifecycleOwner {
Lifecycle getLifecycle()
}
abstract class Lifecycle {
+ abstract void addObserver(LifecycleObserver observer)
+ abstract void removeObserver(LifecycleObserver observer)
+ abstract State getCurrentState()
}
class LifecycleRegistry {
+ void addObserver(LifecycleObserver observer)
}
Lifecycle <|-- LifecycleRegistry
class ObserverWithState {
State mState
GenericLifecycleObserver mLifecycleObserver
void dispatchEvent(LifecycleOwner owner, Event event)
- void sync()
}
interface LifecycleObserver {
- final WeakReference<LifecycleOwner> mLifecycleOwner
}
interface GenericLifecycleObserver {
onStateChanged(LifecycleOwner source, Event event)
}
abstract class ObserverWrapper {
# boolean mActive
# int mLastVersion
# final Observer<T> mObserver
abstract boolean shouldBeActive()
void activeStateChanged(boolean newActive)
}
class LifecycleBoundObserver {
boolean shouldBeActive() // >=STARTED才返回true
}
LifecycleObserver <|-- GenericLifecycleObserver
ObserverWrapper <|-- LifecycleBoundObserver
GenericLifecycleObserver <|.. LifecycleBoundObserver
enum State {
DESTROYED
INITIALIZED
CREATED
STARTED
RESUMED
}
enum Event {
ON_CREATE
ON_START
ON_RESUME
ON_PAUSE
ON_STOP
ON_DESTROY
ON_ANY
}
@enduml |
0c937bd3d2601ddd67b7c1743df35c83e855dce7 | d3f5323b94d6a2b82dd03958d8eb834acf0fa55a | /orchid/src/main/resources/help/class-diagram/class-diagram-31.uml | fb02fe1c68c3bbb503391d16973af4c4ed11a773 | [] | no_license | unidal/garden | 620d34166804c5f37a0b800befe08b54e87dfee7 | fd77faadb53b86ac251b8d0b8d6a7055e3a74735 | refs/heads/master | 2022-10-31T16:58:16.907708 | 2021-11-22T09:57:38 | 2021-11-22T09:57:38 | 2,817,716 | 8 | 7 | null | 2022-10-12T20:40:47 | 2011-11-21T05:01:48 | HTML | UTF-8 | PlantUML | false | false | 147 | uml | @startuml
class Student {
Name
}
Student "0..*" - "1..*" Course
(Student, Course) .. Enrollment
class Enrollment {
drop()
cancel()
}
@enduml |
af2b505c98918c72a21f1b6e8571eab55616a031 | c2b83ffbeb0748d1b283e093f0b987bdbc3d27ac | /docs/uml-class-diagrams/middleware02/production/MiddlewareCommDatabaseInterface/MiddlewareCommDatabaseInterface.puml | e2d1071624d2e40bd60e40aa8f6f5a5b909d2f38 | [] | no_license | Slackjaw1431/csi-3370-software-project | 79666760712ee4625bea3daea48c7072e7826465 | af44ad1066695e4f9eff74eda79cebef3ad2b1af | refs/heads/main | 2023-03-23T23:03:17.404846 | 2021-03-17T18:52:02 | 2021-03-17T18:52:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 455 | puml | @startuml MiddlewareCommDatabaseInterface
package edu.oakland.production.middleware02 {
interface MiddlewareCommDatabaseInterface {
__
.. Use Case 1 ..
{abstract} + int checkCurrentRfid()
{abstract} + String requestMode()
{abstract} + TrackData getTrackData()
{abstract} + void storeTrackData(TrackData trackData)
{abstract} + LocationDataPoint getLocationDataPoint(int offset)
}
}
@enduml |
7f329b08c767c20ee8c2be9398f22d692e57c633 | d5d840fab727586ba1b0f5adecd75a64c4653af8 | /lab_1/_code/step4/visitable.puml | 1f858d6830b32dfacbd8a25cacc73f7ce21995af | [] | no_license | mosser/sec-labs | fbdaca27867b68a94615de76c1825ec73a75e27a | 86698ded6515d1cc8dd03208bd1b71d321b30010 | refs/heads/master | 2021-06-22T01:14:53.200889 | 2019-01-10T20:33:48 | 2019-01-10T20:33:48 | 91,062,799 | 8 | 3 | null | 2018-09-26T19:42:23 | 2017-05-12T07:16:31 | Tcl | UTF-8 | PlantUML | false | false | 1,260 | puml | @startuml
interface Visitable {
+ {abstract} void accept(v: Visitor)
}
class App {
+ void accept(v: Visitor) { v.visit(this); }
}
class Actuator {
+ void accept(v: Visitor) { v.visit(this); }
}
class State {
+ void accept(v: Visitor) { v.visit(this); }
}
class Action {
+ void accept(v: Visitor) { v.visit(this); }
}
abstract class Visitor {
+ {abstract} void visit(App a);
+ {abstract} void visit(State s);
+ {abstract} void visit(Action a);
+ {abstract} void visit(Actuator a);
}
class ToC {
+ void visit(App a) {...} ;
+ void visit(State s) {...};
+ void visit(Action a) {...};
+ void visit(Actuator a) {...};
}
class ToXXX {
+ void visit(App a) {...} ;
+ void visit(State s) {...};
+ void visit(Action a) {...};
+ void visit(Actuator a) {...};
}
Visitable <|-- App
Visitable <|-- Actuator
Visitable <|-- State
Visitable <|-- Action
Visitor <|-- ToC
Visitor <|-- ToXXX
Visitable .. Visitor
App *--> State
App *--> Actuator
State --> State
State *--> Action
Action --> Actuator
note "The Visitor Pattern separates the model (left part)\nfrom its visit (right part). It requires an invasive\nmodifcation of the model (implementing Visitable)\nbut new visits can be added by extending Visitor." as N1
@enduml |
cb1a70b67b2918ab31a07fd482e578e29eeaf30d | ccafa1dcfebf3224d1c6566ed50d9b5ca9be6ac0 | /docResources/architecture.puml | 4125fa40ebb97d78a1090d62cc33f55fdaf7e005 | [] | no_license | luigiDB/salesTaxes | ab3ddbe73a242d3c4b161b1b4c5539be88421f60 | b1000dc1d4a7140867ffb04ebbf9744579901436 | refs/heads/master | 2023-02-21T14:22:34.364615 | 2021-01-21T23:28:18 | 2021-01-21T23:28:18 | 330,993,164 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,854 | puml | @startuml
'https://plantuml.com/class-diagram
ITaxableProduct <|-- TaxableProduct
TaxableProduct o-- ITaxingStrategy
ITaxingStrategy <|-- NoTaxStrategy
ITaxingStrategy <|-- RoundedPercentageStrategy
ICart <|-- Cart
ICart o-- ITaxableProduct
ICart <-- IReceipt
IReceiptPrinter <-- IReceipt
IReceiptPrinter <|-- ReceiptPrinter
IReceipt <|-- Receipt
IReceiptProduct <|-- ReceiptProduct
IReceipt *-- IReceiptProduct
ReceiptPrinter <-- IReceiptProduct
IBilledProduct <|-- BilledProduct
Cart <-- IBilledProduct
Receipt <-- IBilledProduct
interface ITaxableProduct {
String getProduct()
BigDecimal getPrice()
BigDecimal getTaxedPrice()
BigDecimal getTaxes()
}
class TaxableProduct {
String getProduct()
BigDecimal getPrice()
BigDecimal getTaxedPrice()
BigDecimal getTaxes()
}
interface ICart {
add(ITaxableProduct, int)
IReceipt bill()
}
class Cart {
add(ITaxableProduct, int)
IReceipt bill()
}
interface IReceipt {
List<IReceiptProduct> billedItems()
BigDecimal getTotal()
BigDecimal getTaxes()
}
class Receipt {
List<IReceiptProduct> billedItems()
BigDecimal getTotal()
BigDecimal getTaxes()
}
interface ITaxingStrategy {
BigDecimal getTaxes(BigDecimal)
}
class NoTaxStrategy {
BigDecimal getTaxes(BigDecimal)
}
class RoundedPercentageStrategy {
BigDecimal getTaxes(BigDecimal)
}
interface IReceiptPrinter {
void print(IReceipt)
}
class ReceiptPrinter {
void print(IReceipt)
}
interface IReceiptProduct {
String getProduct()
int getQuantity()
BigDecimal getPrice()
}
class ReceiptProduct {
String getProduct()
int getQuantity()
BigDecimal getPrice()
}
interface IBilledProduct {
ITaxableProduct getProduct()
int getQuantity()
}
class BilledProduct {
ITaxableProduct getProduct()
int getQuantity()
}
@enduml |
e094c4840647fa2eb92170189336404f81bd37fa | 732b5846d72a834941a5eda950e6902b945c6c6c | /exercise43/Docs/Solution43.puml | c8e66b61a05ce88471a786a201af75c41339cb65 | [] | no_license | JOLeary5/OLeary-a04 | 3311b77920bad93c9aa65ab82efb2045b524fe93 | c5f71be80f52e4bc45a78a6e21c91b5617cac558 | refs/heads/main | 2023-08-22T20:03:14.850015 | 2021-10-18T01:11:19 | 2021-10-18T01:11:19 | 415,963,524 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 240 | puml | @startuml
'https://plantuml.com/class-diagram
class Solution43 {
FUNCTION: LoadSite()
FUNCTION: LoadAuthor()
}
class CreateHTML{
-prompts user for file creation
- creates HTML info
- Stores HTML info
}
Solution43 --|> CreateHTML
@enduml |
ca800f25b1e6b28b8eea2335866c10335f1ae436 | 555a1e45d2ced2f12fc120157aab8efd1de5b301 | /Design/elevator.plantuml | 37bb5bd1be31c012643d9e4e9acca5062f2fb577 | [] | no_license | eivindhstray/Sanntid | 2c09faa775587044b7d882ef0b533abdf09454fa | c4fa8c197f1ff7e9826eec20a08de28a7ce5d530 | refs/heads/master | 2022-04-22T17:06:00.598904 | 2020-04-22T10:56:31 | 2020-04-22T10:56:31 | 235,599,593 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 637 | plantuml | @startuml
class Network{
}
class node{
node_send_action(action,address)
node_receive_state()
}
class IO{
(...)
}
class Lights{
bool inside/outside
int floor
lights_on(inside/outside, floor)
lights_off(inside/outside, floor)
}
enum state{
{IDLE,ARRIVED,RUNNING,EMERGENCY}
}
class Door{
door_open()
door_close()
}
class State{
{IDLE,ARRIVED,RUNNING,EMERGENCY}
}
class Motor {
bool d
int v
set_motor_dir(bool d)
set_motor_voltage(int v)
}
Network <--> node
node <--> State
IO <--> Door
IO <--> Lights
State <-->Lights
State <--> Door
State <--> Motor
Motor <--> IO
@enduml
|
dc0bcbfbbaac0a1ae555eb497a694704890f4f84 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productSchema/ip/internetAccess/MEF 139 resources/media/IP Addressing.puml | 33fd8cd6b8af13ac83e8de8d4cb4f80a2047ab97 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 1,051 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class Ipv4Address {
}
class Ipv4OrIpv6Address {
}
Ipv4OrIpv6Address -u[hidden]-> Ipv4OrIpv6Prefix
class Ipv4PrimarySubnet {
}
Ipv4SecondarySubnet <|-- Ipv4PrimarySubnet
Ipv4PrimarySubnet *--> Ipv4Address : subscriberIpv4Address
class Ipv4SecondarySubnet {
}
Ipv4SecondarySubnet *--> Ipv4Prefix : ipv4Prefix
Ipv4SecondarySubnet *-->"*" Ipv4Address : serviceProviderIpv4Addresses
Ipv4SecondarySubnet *-->"*" Ipv4Prefix : reservedPrefixes
class Ipv4OrIpv6Prefix {
}
Ipv4OrIpv6Prefix *--> Ipv6Prefix : ipv6Prefix
Ipv4OrIpv6Prefix *--> Ipv4Prefix : ipv4Prefix
class Ipv4Prefix {
prefixLength: integer
}
Ipv4Prefix *--> Ipv4Address : ipv4Address
class Ipv6Address {
}
class Ipv6Subnet {
}
Ipv6Subnet *--> Ipv6Prefix : ipv6Prefix
Ipv6Subnet *-->"*" Ipv6Address : serviceProviderIpv6Addresses
Ipv6Subnet *-->"*" Ipv6Prefix : reservedPrefixes
class Ipv6Prefix {
prefixLength: integer
}
Ipv6Prefix *--> Ipv6Address : ipv6Address
@enduml
|
00a29ad3c0f6c6f011fd3c6ff4eb8db737e41d24 | 83db6b9e81ac56978b17ef6aede4233dd4b307aa | /units/src/unit_02/excercise_a/assets/classes-before-refactoring.puml | e732f0489e7510a2617e293b106e36ff1ce945ee | [] | no_license | msg-azubi/java-tutorial | cedefd6b1a213b71bee03d92e8325a2d908f5721 | f8d5bc91d425f2f17361ea086de5c8b46b322e6d | refs/heads/master | 2020-07-31T07:34:57.264426 | 2019-10-01T20:41:41 | 2019-10-01T20:41:41 | 210,532,064 | 0 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,099 | puml | @startuml
class Blume
note left of Blume: Ziel des Refaktorings: \nKonstanten durch Enum-Werte \nersetzen. Aufzählungen werden \ndurch Enums `type-safe`, d.h.\nder Compiler kann nun die Werte \npräzise überprüfen.\n\nAus\n\tint blume\nwird\n\tSorte sorte\nund aus \n\tString farbe\nwird\n\tFarbe farbe.
note right of Blume: Die Klasse Blume ist die Oberklasse \n(engl. super class) zu den Klassen \nRose, Tulpe und Nelke.
note "Die Methode `identifizieren` wird\nin der Oberklasse definiert und\nin der Unterklasse überschrieben.\n\nDie Unterklassen können jederzeit\neiner Variablen vom Typ der Oberklasse \nzugeordnet werden.\n\n\tBlume[] blumen = new Blume[]{\n\t\tnew Rose(), new Tulpe(),new Nelke()};" as TheOverride
Blume .. TheOverride
note "Diese sind die Unterklassen (engl. sub classes): Rose, Tulpe und Nelke.\n\nDie Unterklassen können jederzeit einer Variablen vom Typ der Oberklasse zugeordnet werden.\nAllerdings brauchen Methoden, die nur in der Unterklasse bekannt sind, beim Aufruf eine Unterstützung:\n\n\t (Rose) blume[i].wurzeln() \n\t (Nelke) blume[i].stauden() \n\t (Tulpe) blume[i].zwiebeln() \n\nDie Unterstützung ist ein `Casting` der Oberklasse auf die spezifische Unterklasse. " as TheSubClasses
Rose .. TheSubClasses
Nelke .. TheSubClasses
Tulpe .. TheSubClasses
Blume <|-- Rose
Blume <|-- Tulpe
Blume <|-- Nelke
class Blume {
// Blumensorten, implizit
protected final static int ROSE = 0;
protected final static int TULPE = 1;
protected final static int NELKE = 2;
// Farben, implizit
protected final static String ROT = "rot";
protected final static String GELB = "gelb";
protected final static String BLAU = "blau";
//Instanzfelder
int blume
String farbe
public void farbe()
public void identifizieren()
}
class Rose {
@Override public void identifizieren()
public void wurzeln()
}
class Tulpe {
@Override public void identifizieren()
public void zwiebeln()
}
class Nelke {
@Override public void identifizieren()
public void stauden()
}
center footer excercise_a von unit_02 vor dem Refaktoring: `Konstanten durch Enum-Werte ersetzen`.
@enduml |
a173d4e7ac96ce17436f393a869c65fdb1a52c6f | 6bbee52d396d1aca9dfeb24d5d4a93293e49470c | /src/main/java/com/inspiware/price/aggregator/domain/domain.plantuml | fc70427f17218937d797abd70821aec43c26e453 | [] | no_license | rpayal/price-aggregator | 5d99dc92b87398c2f8001921e0b774eda6e4a86e | 49df131fc3a22dc35fc4d7eb11a12e0a453b1d5f | refs/heads/master | 2021-09-22T01:24:42.470662 | 2018-09-04T06:49:54 | 2018-09-04T06:49:54 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,156 | plantuml | @startuml
title __DOMAIN's Class Diagram__\n
package com.inspiware.price.aggregator {
package com.inspiware.price.aggregator.domain {
interface Entity {
{abstract} + equals()
{abstract} + hashCode()
}
}
}
package com.inspiware.price.aggregator {
package com.inspiware.price.aggregator.domain {
class Instrument {
- id : Long
- symbol : String
- name : String
- currency : String
+ Instrument()
+ getId()
+ getSymbol()
+ getName()
+ getCurrency()
}
}
}
package com.inspiware.price.aggregator {
package com.inspiware.price.aggregator.domain {
class InstrumentPrice {
- bid : BigDecimal
- ask : BigDecimal
- created : Date
+ InstrumentPrice()
+ getInstrument()
+ getVendor()
+ getBid()
+ getAsk()
+ getCreated()
+ getKey()
+ equals()
+ hashCode()
}
}
}
package com.inspiware.price.aggregator {
package com.inspiware.price.aggregator.domain {
class InstrumentPriceKey {
- instrumentId : Long
- vendorId : Long
- priceDate : Date
~ InstrumentPriceKey()
+ getInstrumentId()
+ getVendorId()
+ getPriceDate()
+ equals()
+ hashCode()
}
}
}
package com.inspiware.price.aggregator {
package com.inspiware.price.aggregator.domain {
class Vendor {
- id : Long
- name : String
+ Vendor()
+ getId()
+ getName()
}
}
}
InstrumentPrice -up-|> Entity
InstrumentPrice o-- Instrument : instrument
InstrumentPrice o-- Vendor : vendor
InstrumentPrice o-- InstrumentPriceKey : key
InstrumentPrice +-down- InstrumentPriceKey
InstrumentPriceKey -up-|> Entity
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
|
4077bfc8b306e1d49ef37ca145491fec8d4bddda | 644b7bb773b84596a2de4d31a0603284d9562e56 | /react/bootstrap/button.iuml | d4a08f155548ed38d9d74cbe512c64000b318573 | [] | no_license | M9k/Marvin-Uml | e62d17245cf493d53f0b80f633a47be8ec44569e | 0fe9bc36f947535ae4397181ccf8c85291244a87 | refs/heads/master | 2021-04-15T17:44:22.461549 | 2018-05-10T07:52:19 | 2018-05-10T07:52:19 | 126,618,685 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 220 | iuml | class Button{
--props--
active : boolean
disabled : boolean
href : string
onClick : function
--render--
passing href will use <a>
wihtout href will use <button/>
}
|
cfe8f072bf88a7b06d032d6196ada6f1d00031c0 | c815f9c82c1400f76243750cd0ec609d217b9943 | /naked-objects/etc/naked-objects-dom.urm.puml | 6662a560a683f95d76ab4e9bdf1a621b33b4fe84 | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 1,116 | puml | @startuml
package domainapp.dom.app.homepage {
class HomePageViewModel {
~ simpleObjects : SimpleObjects
+ HomePageViewModel()
+ getObjects() : List<SimpleObject>
+ title() : String
}
class HomePageService {
~ container : DomainObjectContainer
+ HomePageService()
+ homePage() : HomePageViewModel
}
}
package domainapp.dom.modules.simple {
class SimpleObjects {
~ container : DomainObjectContainer
+ SimpleObjects()
+ create(name : String) : SimpleObject
+ findByName(name : String) : List<SimpleObject>
+ listAll() : List<SimpleObject>
+ title() : TranslatableString
}
class SimpleObject {
- container : DomainObjectContainer
- name : String
+ SimpleObject()
+ compareTo(other : SimpleObject) : int
+ default0UpdateName() : String
+ getName() : String
+ getVersionSequence() : Long
+ setName(name : String)
+ title() : TranslatableString
+ updateName(name : String) : SimpleObject
+ validateUpdateName(name : String) : TranslatableString
}
}
HomePageViewModel --> "-simpleObjects" SimpleObjects
@enduml |
44c08f2428a57b6aefc315c4fe7b66026623d48b | 41b9498f48c484fd10eeb0271f8a419ef86d7004 | /src/main/java/establish/factorymethod/003工厂方法-完整解决方案.puml | 97a6d103fc95c8a78f3abd644072179de8f42d5b | [] | no_license | sherwinwu93/design-pattern | 04c155fcc6cccfc2a36f8ce27a58e5fd6ee4cb55 | 372d7edc126b880a55ebe65f7b90bb356269173a | refs/heads/master | 2023-04-06T09:25:32.672206 | 2020-12-28T16:35:46 | 2020-12-28T16:35:46 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 622 | puml | @startuml
class Client
class Logger {
void writeLog()
}
class LoggerFactory {
Logger createLogger()
}
class FileLoggerFactory {
Logger createLogger()
}
class FileLogger {
void writeLog()
}
class DatabaseLoggerFactory {
void createLogger
}
class DatabaseLogger {
void writeLog()
}
Client ..down> LoggerFactory
Client ..down> Logger
FileLoggerFactory ..up|> LoggerFactory
FileLogger ..up|> Logger
FileLoggerFactory ..right> FileLogger : <<create>>
DatabaseLoggerFactory ..up|> LoggerFactory
DatabaseLogger ..up|> Logger
DatabaseLoggerFactory ..right> DatabaseLogger : <<create>>
@enduml
|
2dd51caaa773755ab595819ddd20341b72d522dd | 2bdea266b9dbed4c9c7a2010bf5b3caf61d1174c | /src/main/java/ua/knucea/domain/entity/uml/Order.puml | 2f5f96cb30036c46ded740d656d71ac5c7f44426 | [] | no_license | Spotyk/springApp | e0a5b58f9e99e6cc75c4104fbdfa7864049f34f3 | b1e7da87e211fcb79204e09af15286109516db84 | refs/heads/master | 2021-12-11T16:58:31.134179 | 2021-09-14T17:18:51 | 2021-09-14T17:18:51 | 226,185,934 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 297 | puml | @startuml
class Order {
id:Long
user:User
orderDate:LocalDate
status:OrderStatus
totalSum:Long
getId()
setId()
getUser()
setUser()
getOrderDate()
setOrderDate()
getStatus()
setStatus()
getTotalSum()
setTotalSum()
}
@enduml |
927a416d1db1da49a5bb1f853fec6dc987d234cc | 8ab3265c0db3eef67c98134f35e5b4d40be64bea | /src/main/resources/FactoryPattern.puml | c48601d303c42f0cb885388252844bbf62565c21 | [] | no_license | taoes/DesignPattern | 6826bc6dbb190e9233fef0cf0f2c9bf766efd2a7 | 903a46a60833762cdda0d78b88cf01f4f9aee94c | refs/heads/master | 2021-05-23T12:42:00.744517 | 2020-04-12T13:37:03 | 2020-04-12T13:37:03 | 253,290,931 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 544 | puml | @startuml
title 简单工厂模式
interface Phone {
+ string getModel();
+ void call(phone);
+ bool sendMessage(phone,content)
}
class iPhoneX{
- model;
- price;
+ string getModel();
+ void call(phone);
+ bool sendMessage(phone,content)
}
class Mi6 {
- model;
- price;
+ string getModel();
+ void call(phone);
+ bool sendMessage(phone,content)
}
class PhoneFactory{
+ Phone getPhone(model);
}
class Example {
+ main();
}
Phone <|-- iPhoneX
Phone <|-- Mi6
Example --> PhoneFactory
@enduml
|
694ecb1902c6c4674645406fa2d540c808a0b8fe | ecc219554fe9c14d408eb3e300c88087ddd7879d | /src/main/java/com/shiye/mir/service/impl/MailUML.puml | ccef3d729a4a9fe1850389fe3e31698f3a6b6a30 | [] | no_license | Evilock/bfsu-cs-mir | 219a6c6a068b03e561c8aad68eb5459f7de1c840 | 8f5ad31aecc37215c808a0890ba19643308f7642 | refs/heads/master | 2023-03-19T08:11:10.921532 | 2021-03-18T06:56:39 | 2021-03-18T06:56:39 | 298,587,872 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 912 | puml | @startuml
'https://plantuml.com/class-diagram
interface MailService{
sendHtmlEmail(to, subject, content)
sendSimpleEmail(to, subject, content)
sendAttachmentEmail(to, subject, content, filePath)
sendEmailVerifyCode(to)
}
MailService <|- MailServiceImpl
class MailServiceImpl{
from
sendHtmlEmail(to, subject, content)
sendSimpleEmail(to, subject, content)
sendAttachmentEmail(to, subject, content, filePath)
sendEmailVerifyCode(to)
}
MailServiceImpl <.. JavaMailSender
MailServiceImpl <.. SimpleCharVerifyCodeGen
JavaMailSender <.. MimeMessage
class JavaMailSender{
send(var1)
MimeMessage createMimeMessage()
MimeMessage createMimeMessage(InputStream var1)
}
class MimeMessage
interface SimpleCharVerifyCodeGen{
FONT_TYPES
VALIDATE_CODE_LENGTH
VALIDATE_CODE_LENGTH_FOR_EMAIL
emailVerifyCode(to)
generate()
fillBackground()
}
@enduml |
8b2edae2831254c324d8bfdd3576ac9562cc8e72 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/fixed-interests@0.6.0.puml | 806112661d313de97055dbe42ec1be9d87341d03 | [
"Apache-2.0",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 661 | puml | @startuml
class org.accordproject.interests.Request << (T,yellow) >> {
+ String input
}
org.accordproject.interests.Request --|> concerto.Transaction
class org.accordproject.interests.Response << (T,yellow) >> {
+ String output
}
org.accordproject.interests.Response --|> concerto.Transaction
class org.accordproject.interests.TemplateModel << (A,green) >> {
+ MonetaryAmount loanAmount
+ Double rate
+ Integer loanDuration
}
org.accordproject.interests.TemplateModel --|> org.accordproject.contract.Clause
class org.accordproject.interests.TextResponse {
+ String text
}
org.accordproject.interests.TextResponse --|> concerto.Concept
@enduml
|
6f45a14115ead1c4be18c54b7cc2510f9bf6caab | 4d643dcfa275852670031cf5749921cfd235221c | /patterns/b_Interpreter.puml | 4aa9c1394cd1807c8ccf066d7c6a3048b74db0fb | [] | no_license | ezhov-da/notes | a2552cb0a53ffccf6e426986a06af09d280d2566 | 51e77e442c3db8900eadc3b35c701b26b170911d | refs/heads/master | 2023-05-12T20:58:00.276582 | 2021-05-28T05:37:01 | 2021-05-28T05:37:01 | 275,666,019 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 815 | puml | @startuml
title Интерпретатор (Interpreter)
note as INFO
<b>Тип:</b> <u>Поведенческий</u>
<b>Что это:</b>
Получая формальный язык, опре-
деляет представление его грамматики
и интерпретатор, использующий это
представление для обработки
выражений языка.
endnote
class Client
class Context
interface AbstractExpression{
+interpret(): Context
}
class TerminalExpression{
+interpret(): Context
}
class NonterminalExpression{
+interpret(): Context
}
Client --> Context
Client --> AbstractExpression
TerminalExpression --|> AbstractExpression
NonterminalExpression --|> AbstractExpression
NonterminalExpression *-- AbstractExpression
@enduml |
5d95f03f6e8fc6f12f55fd0e2d9625ff457920c4 | 4e2586435708420f782c03c1303da7219890941e | /docs/diagrams/Formatter.puml | 603fbceb3870bbf4ad977b6c120db41302384883 | [] | no_license | AY2021S1-CS2113-T13-1/tp | 720454016061d5dbc23067e4505e2eac87e04449 | 4345646e211cdaeed2dfdf2e691e334c2d8e32ad | refs/heads/master | 2023-01-19T13:31:58.992002 | 2020-11-10T12:57:57 | 2020-11-10T12:57:57 | 297,301,678 | 0 | 7 | null | 2020-11-10T12:57:58 | 2020-09-21T10:12:20 | Java | UTF-8 | PlantUML | false | false | 1,422 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
class Formatter {
<u>+ LS: String
<u>+ ROW_SPLIT: String
<u>+ COLUMN_START: String
<u>+ COLUMN_END: String
<u>+ EMPTY_SPACE: String
<u>+ CONTINUATION: String
<u>+ TITLE: String
<u>+ NOTE_INDEX: String
<u>+ CONTENT: String
<u>+ EMPTY_CHAR: char
<u>- MAX_ROW_LENGTH: int
<u>- MAX_MESSAGE_LENGTH: int
<u>- ANSI_PREFIX_LENGTH: int
<u>- CONTENT_CUTOFF: int
<u>+ formatNotes(String, String, ArrayList<Note>, ArrayList<Note>, Notebook): String
<u>+ formatNotes(String, ArrayList<Note>, Notebook): String
<u>+ formatNote(String, Note): String
<u>+ formatMonthTimetable(String, HashMap<Integer, ArrayList<Event>>): ArrayList<String>
<u>+ formatTimetable(String, int, int, HashMap<Month, HashMap<Integer, ArrayList<Event>>>): String
<u>+ formatTimetable(String, ArrayList<Event>): String
<u>+ formatEvent(Event): ArrayList<String>
<u>+ formatEventString(String, Event): String
<u>+ formatReminders(String, ArrayList<Reminders>): String
<u>+ formatReminder(Reminder): ArrayList<String>
<u>+ formatString(String): String
<u>+ formatString(ArrayList<String>, boolean): String
<u>+ formatString(String[], boolean, boolean): String
<u>+ generatesHeader(String): String
<u>+ generatesRowSplit(): String
<u>+ encloseTopAndBottom(String): String
<u>+ encloseRow(String): String
<u>+ getNumAsciiCode(String, ArrayList<Integer>, ArrayList<Integer>, ArrayList<String>): int
}
@enduml |
68b45ac125d0741ad2440ddb05d3b639b426c90e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitStoresSetMessage.puml | 968ba0c15506a347d709bb8393bc9098075151ab | [] | 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,199 | 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 BusinessUnitStoresSetMessage [[BusinessUnitStoresSetMessage.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]]
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
}
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
|
6966982e4198bdf9756eb71bd33330fac3f1d9bd | 93a8a02681001999d05b960d0dd8c58fbb522fee | /docs/libwint.puml | 96b33ddd2e1df65d3170d8c07cbaae0b32c0e426 | [] | no_license | tmhuysen/libwint | 2dd9e8ff4caa5c6cf2441410bcc0636e14183676 | eef54653ea9ad8059d69d908578599bd458a7c9e | refs/heads/master | 2021-04-15T09:29:39.649226 | 2018-03-22T18:32:19 | 2018-03-22T18:32:19 | 126,815,700 | 0 | 0 | null | 2018-03-26T11:01:01 | 2018-03-26T11:01:01 | null | UTF-8 | PlantUML | false | false | 6,542 | puml | @startuml
package libint #c6ffb3 {
namespace libint2 #ffffff {
class Atom {
+ atomic_number
+ x
+ y
+ z
}
class Engine {
== constructors ==
**Engine**(Operator oper, size_t max_nprim, int max_l, <..>)
__ public methods __
+ const target_ptr_vec& **results**()
+ const Engine::target_ptr_vec& **calculate**()
}
class BasisSet {
== constructors ==
**BasisSet**(std::string name, const std::vector<Atom>& atoms)
__ public methods __
+ size_type **size**()
+ long **calculateNumberOfBasisFunctions**()
+ size_t **max_nprim**()
+ long **max_l**()
+ const std::vector<size_t>& **shell2bf**()
}
enum Operator {
overlap
kinetic
nuclear
coulomb
}
class cxxapi {
void **initialize**()
void **finalize**()
}
class atom {
inline std::vector<Atom> **read_dotxyz**(std::istream& is, <...>)
}
}
}
namespace libwint {
class AOBasis {
__ private members __
- const std::string basisset_name
- std::vector<libint2::Atom>& atoms
- bool are_calculated_overlap_integrals
- bool are_calculated_nuclear_integrals
- bool are_calculated_kinetic_integrals
- bool are_calculated_electron_repulsion_integrals
- Eigen::MatrixXd S
- Eigen::MatrixXd T
- Eigen::MatrixXd V
- Eigen::Tensor<double, 4> g
== constructors ==
**AOBasis**(const libwint::Molecule& molecule, std::string basisset_name)
__ public methods __
+ Eigen::MatrixXd **get_S**() const
+ Eigen::MatrixXd **get_T**() const
+ Eigen::MatrixXd **get_V**() const
+ Eigen::Tensor<double, 4> **get_g**() const
+ size_t **calculateNumberOfBasisFunctions**() const
+ void **calculateOverlapIntegrals**()
+ void **calculateKineticIntegrals**()
+ void **calculateNuclearIntegrals**()
+ void **calculateTwoElectronRepulsionIntegrals**()
+ void **calculateIntegrals**()
}
class SOBasis {
__ private members __
- const size_t K
- Eigen::MatrixXd h_SO
- Eigen::Tensor<double, 4> g_SO
__ private methods __
- parseFCIDUMPFile()
== constructors ==
**SOBasis**(const libwint::AOBasis& ao_basis, const Eigen::MatrixXd& C)
**SOBasis**(std::string fcidump_filename, size_t K)
__ public methods __
+ const size_t **get_K**() const
+ Eigen::MatrixXd const **get_h_SO**() const
+ Eigen::Tensor<double, 4> const **get_g_SO**() const
+ double **get_h_SO**(size_t i, size_t j) const
+ double **get_g_SO**(size_t i, size_t j, size_t k, size_t l) const
+ void **transform**(const Eigen::MatrixXd& T)
+ void **rotateJacobi**(size_t p, size_t q, double angle)
}
class transformations {
Eigen::MatrixXd **transformOneElectronIntegrals**(const Eigen::MatrixXd& h, const Eigen::MatrixXd& T)
Eigen::Tensor<double, 4> **transformTwoElectronIntegrals**(const Eigen::Tensor<double, 4>& g, const Eigen::MatrixXd& T)
Eigen::MatrixXd **jacobiRotationMatrix**(size_t P, size_t Q, double theta, size_t M)
void **checkJacobiParameters**(size_t p, size_t q, size_t M)
void **checkJacobiParameters**(size_t p, size_t q, const Eigen::MatrixXd& h)
Eigen::MatrixXd **rotateOneElectronIntegralsJacobi**(const Eigen::MatrixXd& h, size_t P, size_t Q, double theta)
Eigen::Tensor<double, 4> **rotateTwoElectronIntegralsJacobi**(const Eigen::Tensor<double, 4> g, size_t P, size_t Q, double theta)
Eigen::MatrixXd **transform_AO_to_SO**(const Eigen::MatrixXd& f_AO, const Eigen::MatrixXd& C)
Eigen::MatrixXd **transform_SO_to_AO**(const Eigen::MatrixXd& f_SO, const Eigen::MatrixXd& C)
Eigen::Tensor<double, 4> **transform_AO_to_SO**(const Eigen::Tensor<double, 4>& g_AO, const Eigen::MatrixXd& C)
}
class LibintCommunicator {
__ private methods __
- **LibintCommunicator**()
== private destructor ==
~ ~LibintCommunicator()
__ public methods __
+ {static} LibintCommunicator& get()
+ LibintCommunicator(LibintCommunicator const& libint_communicator) = delete
+ void operator=(LibintCommunicator const& libint_communicator) = delete
+ Eigen::MatrixXd **calculateOneBodyIntegrals**(libint2::Operator opertype, std::string basisset_name, const std::vector<libint2::Atom>& atoms) const
+ Eigen::Tensor<double, 4> **calculateElectronRepulsionIntegrals**(std::string basisset_name, const std::vector<libint2::Atom>& atoms) const
}
class Molecule {
__ private members __
- const size_t N
- const std::vector<libint2::Atom> atoms
__ private methods __
- std::vector<libint2::Atom> parseXYZFile(std::string filename) const
== constructors ==
**Molecule**(std::string xyz_filename)
**Molecule**(std::string xyz_filename, int molecular_charge)
**Molecule**(const std::vector<libint2::Atom>& atoms)
**Molecule**(const std::vector<libint2::Atom>& atoms, int molecular_charge)
__ public methods __
+ site_t **get_N** () const
+ size_t **numberOfAtoms**() const
+ size_t **calculateTotalNucleicCharge**() const
+ double **calculateInternuclearDistance**(size_t index1, size_t index2) const
+ double **calculateInternuclearRepulsionEnergy**() const
}
}
libwint.AOBasis o--> libwint.Molecule
libwint.AOBasis *--> libwint.LibintCommunicator
libwint.LibintCommunicator *--> libint2.BasisSet
libwint.LibintCommunicator ..> libint2.Operator
libwint.LibintCommunicator *--> libint2.Engine
libwint.LibintCommunicator ..> libint2.cxxapi
libwint.Molecule *--> "1..*" libint2.Atom
libwint.Molecule ..> libint2.atom
libwint.SOBasis ..> libwint.transformations
libwint.SOBasis o--> libwint.AOBasis
@enduml
|
16ed25ec3058dc0c06b9c4971bbd22ab499bf27f | 5bda871fceb094fb9925872cf46794a7bb523678 | /src/main/java/singleton/examples/basic/basic.plantuml | b37aeb4cfc592c542ed82b19bb2ae8014f2e81e5 | [] | no_license | jestin-g/java-design-pattern | 9ec3526091fd4a5b795b035e3d6ae54a064e9ed2 | da908b77cced2e25640f68f22d4bccda88e1321e | refs/heads/master | 2023-02-11T14:12:52.417590 | 2021-01-06T16:48:53 | 2021-01-06T16:48:53 | 307,839,152 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 654 | plantuml | @startuml
title __BASIC's Class Diagram__\n
namespace singleton.examples.basic {
class singleton.examples.basic.BasicSingleton {
{static} - INSTANCE : BasicSingleton
- value : int
{static} + getInstance()
+ getValue()
+ setValue()
- BasicSingleton()
}
}
namespace singleton.examples.basic {
class singleton.examples.basic.BasicSingletonDemo {
{static} + main()
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
5f12011da49ca99bc695285ed43f670c841dae8b | 2099ea9bcbc7ae9c8c28d59f9e0fffbf478c1f03 | /UML/vendor/yiisoft/yii2-dev/framework/captcha.puml | 00d1fa189f3db62caf00122cfa9bfd776f4316ee | [] | no_license | adipriyantobpn/UML-diagram-for-some-PHP-packages | b3e3ed8e8898e4a5d56f0647cfbedaaa9d2dbdd5 | 0a9308fbd2d544c8f64a37cf9f11011edfc40ace | refs/heads/master | 2021-08-19T19:24:34.948176 | 2017-11-27T07:48:10 | 2017-11-27T07:48:10 | 112,164,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,005 | puml | @startuml
skinparam handwritten true
class yii.captcha.Captcha {
+captchaAction : string|array = "site/captcha"
+imageOptions : array = []
+options : array = [
\t"class" => "form-control"
]
+template : string = "{image} {input}"
+{static}checkRequirements() : string
#getClientOptions() : array
+init()
+registerClientScript()
+run()
}
class yii.captcha.Captcha extends yii.widgets.InputWidget
class yii.captcha.CaptchaAction {
+{static}REFRESH_GET_VAR = "refresh"
+backColor : int = 16777215
+fixedVerifyCode : string
+fontFile : string = "@yii/captcha/SpicyRice.ttf"
+foreColor : int = 2113696
+height : int = 50
+imageLibrary : string
+maxLength : int = 7
+minLength : int = 6
+offset : int = -2
+padding : int = 2
+testLimit : int = 3
+transparent : bool = false
+width : int = 120
+generateValidationHash(code : string) : string
#generateVerifyCode() : string
#getSessionKey() : string
+getVerifyCode(regenerate : bool = false) : string
+init()
#renderImage(code : string) : string
#renderImageByGD(code : string) : string
#renderImageByImagick(code : string) : string
+run()
#setHttpHeaders()
+validate(input : string, caseSensitive : bool) : bool
}
class yii.captcha.CaptchaAction extends yii.base.Action
class yii.captcha.CaptchaAsset {
+depends = [
\t0 => "yii\web\YiiAsset"
]
+js = [
\t0 => "yii.captcha.js"
]
+sourcePath = "@yii/assets"
}
class yii.captcha.CaptchaAsset extends yii.web.AssetBundle
class yii.captcha.CaptchaValidator {
+captchaAction : string = "site/captcha"
+caseSensitive : bool = false
+skipOnEmpty : bool = false
+clientValidateAttribute(model, attribute, view)
+createCaptchaAction() : yii.captcha.CaptchaAction
+getClientOptions(model, attribute)
+init()
#validateValue(value)
}
class yii.captcha.CaptchaValidator extends yii.validators.Validator
@enduml
|
cb1b3ad974ff55f1f0bb14ea3e2fcdd7f74279ec | 5635c597a38479879c55c4594c8b09877ef1102b | /src/main/java/org/hfeng/misc/hfdp/ch3/instance-beverage.puml | 2da805032e29c6c399a99a5cd2d93e3602fe7bde | [] | no_license | harrifeng/java-in-action | 6c4d49f51634e5397606690710331438e4835a9f | e9b88ecf2fd2033e1848234c770fb3967fb1ec9d | refs/heads/master | 2020-11-26T18:31:08.066713 | 2015-05-19T01:04:17 | 2015-05-19T01:04:17 | 23,460,887 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 397 | puml | @startuml
abstract class Beverage {
description
milk
soy
mocha
whip
getDescription()
cost()
hasMilk()
setMilk()
hasSoy()
setSoy()
hasMocha()
setMocha()
hasWhip()
setWhip()
}
class HouseBlend extends Beverage {
cost()
}
class DarkRoast extends Beverage {
cost()
}
class Decaf extends Beverage {
cost()
}
class Espresso extends Beverage {
cost()
}
@enduml |
f46ffae4adec90830067fe9c455790986463c3e4 | dceede6e0ffcfdf6fbb800429d0233eb108fb71b | /src/main/java/DesignPatterns/BehavioralType/Template/Hook/Hook.puml | e56d29a26dae036b1d012e5e549fe4196e27ca64 | [] | no_license | GitHub-yuteng/LearningNotes | 543ccda372e0d4498eba9245848059f64b3966c9 | 7a37bc8a33190526fa0a6cca5376651ac434f8c4 | refs/heads/master | 2022-12-22T14:05:05.590359 | 2022-04-27T00:36:30 | 2022-04-27T00:36:30 | 200,153,900 | 2 | 0 | null | 2022-12-16T04:25:16 | 2019-08-02T02:53:39 | Java | UTF-8 | PlantUML | false | false | 422 | puml | @startuml
abstract class SoyaMilk {
final void make()
void select()
abstract void addCondiments();
void soak()
void beat()
boolean customerWantCondiments()//钩子方法
}
class RedBeanSoyaMilk extends SoyaMilk {
void addCondiments()
}
class PureSoyaMilk extends SoyaMilk {
void addCondiments() {
boolean customerWantCondiments()
}
class Client {
}
RedBeanSoyaMilk <.. Client
PureSoyaMilk <.. Client
@enduml |
514591868eae9cbdcb354e3664f31a7bea912d83 | 41a59498034c527e41804f51cffbd1a4f45fab3f | /lab8/diagrams/interpreter-ts-class.puml | 4949cfd99006631026542c49ac6b67ea35aee070 | [
"MIT"
] | permissive | vinogradnick/HsePatternsLab | 0d7242c9245e1ca28b2f8211f1b11dae07ccd6a8 | d8222e56edc2c889eeb854c3372aafe8a165b171 | refs/heads/master | 2021-01-07T22:30:41.031197 | 2020-02-20T09:04:40 | 2020-02-20T09:04:40 | 241,838,221 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 920 | puml | @startuml interpreter-ts-class
skinparam linetype ortho
class Context<T>{
ctx: string;
Output: T;
}
abstract class AbstractExpression<T>{
interpret(context: Context<T>);
abstract MetricType();
abstract StructType();
}
class VoltageExpression{
MetricType();
StructType();
}
class AmperageExpression {
MetricType();
StructType();
}
class PowerExpression {
MetricType();
StructType();
}
class ConsumptionExpression {
MetricType();
StructType();
}
class TempExpression {
MetricType();
StructType();
}
class LightExpression {
MetricType();
StructType();
}
AbstractExpression o-- Context
VoltageExpression <|-- AbstractExpression
AmperageExpression <|-- AbstractExpression
PowerExpression <|-- AbstractExpression
ConsumptionExpression <|-- AbstractExpression
TempExpression <|-- AbstractExpression
LightExpression <|--AbstractExpression
@enduml
|
d1ed837df949bb50eb1e6c74c0d4e0f07b7a7e95 | 3d33f4e31702fdba9b2d095dd3d91d711409264c | /class-diagram/common-config-class.puml | fb8c2384d1b804ff2a196ec141ebe74d53e5824a | [
"Apache-2.0",
"CC-BY-4.0"
] | permissive | JulienGuo/fabric-addsm | 81a181dd4f91160abbd9f131d87e8c187a32c542 | 8a489300031d07c09f44fc0f1687793f6eaaa1c0 | refs/heads/master | 2021-05-04T21:27:43.690594 | 2018-02-02T05:43:34 | 2018-02-02T05:43:34 | 119,926,380 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 17,106 | puml | @startuml
namespace github.com\\hyperledger\\fabric\\common\\config {
class ApplicationGroup {
*Proposer
*ApplicationConfig
mspConfig *msp.MSPConfigHandler
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ApplicationConfig {
*standardValues
applicationGroup *ApplicationGroup
applicationOrgs map[string]ApplicationOrg
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ApplicationOrgProtos {
AnchorPeers *pb.AnchorPeers
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ApplicationOrgConfig {
*OrganizationConfig
protos *ApplicationOrgProtos
applicationOrgGroup *ApplicationOrgGroup
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ApplicationOrgGroup {
*Proposer
*OrganizationGroup
*ApplicationOrgConfig
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ChannelProtos {
HashingAlgorithm *cb.HashingAlgorithm
BlockDataHashingStructure *cb.BlockDataHashingStructure
OrdererAddresses *cb.OrdererAddresses
Consortium *cb.Consortium
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class channelConfigSetter {
target **ChannelConfig
*ChannelConfig
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ChannelGroup {
*ChannelConfig
*Proposer
mspConfigHandler *msp.MSPConfigHandler
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ChannelConfig {
*standardValues
protos *ChannelProtos
hashingAlgorithm func(input []byte)[]byte
appConfig *ApplicationGroup
ordererConfig *OrdererGroup
consortiumsConfig *ConsortiumsGroup
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ConsortiumProtos {
ChannelCreationPolicy *cb.Policy
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ConsortiumGroup {
*Proposer
*ConsortiumConfig
mspConfig *msp.MSPConfigHandler
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ConsortiumConfig {
*standardValues
protos *ConsortiumProtos
orgs map[string]*OrganizationGroup
consortiumGroup *ConsortiumGroup
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ConsortiumsGroup {
*Proposer
*ConsortiumsConfig
mspConfig *msp.MSPConfigHandler
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class ConsortiumsConfig {
*standardValues
consortiums map[string]Consortium
consortiumsGroup *ConsortiumsGroup
}
}
namespace github.com\\hyperledger\\fabric\\common\\config\\msp {
class pendingMSPConfig {
mspConfig *mspprotos.MSPConfig
msp msp.MSP
}
}
namespace github.com\\hyperledger\\fabric\\common\\config\\msp {
class mspConfigStore {
idMap map[string]*pendingMSPConfig
proposedMgr msp.MSPManager
}
}
namespace github.com\\hyperledger\\fabric\\common\\config\\msp {
class MSPConfigHandler {
pendingConfig map[interface { }]*mspConfigStore
pendingLock sync.RWMutex
msp.MSPManager
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class OrdererProtos {
ConsensusType *ab.ConsensusType
BatchSize *ab.BatchSize
BatchTimeout *ab.BatchTimeout
KafkaBrokers *ab.KafkaBrokers
ChannelRestrictions *ab.ChannelRestrictions
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class OrdererGroup {
*Proposer
*OrdererConfig
mspConfig *msp.MSPConfigHandler
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class OrdererConfig {
*standardValues
protos *OrdererProtos
ordererGroup *OrdererGroup
orgs map[string]Org
batchTimeout time.Duration
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class OrganizationProtos {
MSP *mspprotos.MSPConfig
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class OrganizationConfig {
*standardValues
protos *OrganizationProtos
organizationGroup *OrganizationGroup
msp msp.MSP
mspID string
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class OrganizationGroup {
*Proposer
*OrganizationConfig
name string
mspConfigHandler *mspconfig.MSPConfigHandler
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class config {
allocated Values
groups map[string]ValueProposer
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class Proposer {
vh Handler
pending map[interface { }]*config
current *config
pendingLock sync.RWMutex
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class Root {
channel *ChannelGroup
mspConfigHandler *msp.MSPConfigHandler
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class failDeserializer {
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
class standardValues {
lookup map[string]proto.Message
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface Org {
Name()string
MSPID()string
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface ApplicationOrg {
AnchorPeers()[]*pb.AnchorPeer
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface Application {
Organizations()map[string]ApplicationOrg
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface Channel {
HashingAlgorithm()func(input []byte)[]byte
BlockDataHashingStructureWidth()uint32
OrdererAddresses()[]string
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface Consortiums {
Consortiums()map[string]Consortium
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface Consortium {
ChannelCreationPolicy()*cb.Policy
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface Orderer {
ConsensusType()string
BatchSize()*ab.BatchSize
BatchTimeout()time.Duration
MaxChannelsCount()uint64
KafkaBrokers()[]string
Organizations()map[string]Org
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface ValueProposer {
BeginValueProposals(tx interface { },groups []string)(ValueDeserializer,[]ValueProposer,error)
RollbackProposals(tx interface { })
PreCommit(tx interface { })error
CommitProposals(tx interface { })
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface ChannelValues {
HashingAlgorithm()func(input []byte)[]byte
BlockDataHashingStructureWidth()uint32
OrdererAddresses()[]string
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface ValueDeserializer {
Deserialize(key string,value []byte)(proto.Message,error)
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface Values {
Validate(interface { },map[string]ValueProposer)error
Commit()
}
}
namespace github.com\\hyperledger\\fabric\\common\\config {
interface Handler {
Allocate()Values
NewGroup(name string)(ValueProposer,error)
}
}
github.com\\hyperledger\\fabric\\common\\config.ApplicationGroup -|> github.com\\hyperledger\\fabric\\common\\config.Proposer
github.com\\hyperledger\\fabric\\common\\config.ApplicationGroup -|> github.com\\hyperledger\\fabric\\common\\config.ApplicationConfig
github.com\\hyperledger\\fabric\\common\\config.ApplicationGroup ---> github.com\\hyperledger\\fabric\\common\\config\\msp.MSPConfigHandler : mspConfig
github.com\\hyperledger\\fabric\\common\\config.ApplicationConfig -|> github.com\\hyperledger\\fabric\\common\\config.standardValues
github.com\\hyperledger\\fabric\\common\\config.ApplicationConfig ---> github.com\\hyperledger\\fabric\\common\\config.ApplicationGroup : applicationGroup
github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgConfig -|> github.com\\hyperledger\\fabric\\common\\config.OrganizationConfig
github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgConfig ---> github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgProtos : protos
github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgConfig ---> github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgGroup : applicationOrgGroup
github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgGroup -|> github.com\\hyperledger\\fabric\\common\\config.Proposer
github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgGroup -|> github.com\\hyperledger\\fabric\\common\\config.OrganizationGroup
github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgGroup -|> github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgConfig
github.com\\hyperledger\\fabric\\common\\config.channelConfigSetter ---> github.com\\hyperledger\\fabric\\common\\config.ChannelConfig : target
github.com\\hyperledger\\fabric\\common\\config.channelConfigSetter -|> github.com\\hyperledger\\fabric\\common\\config.ChannelConfig
github.com\\hyperledger\\fabric\\common\\config.ChannelGroup -|> github.com\\hyperledger\\fabric\\common\\config.ChannelConfig
github.com\\hyperledger\\fabric\\common\\config.ChannelGroup -|> github.com\\hyperledger\\fabric\\common\\config.Proposer
github.com\\hyperledger\\fabric\\common\\config.ChannelGroup ---> github.com\\hyperledger\\fabric\\common\\config\\msp.MSPConfigHandler : mspConfigHandler
github.com\\hyperledger\\fabric\\common\\config.ChannelConfig -|> github.com\\hyperledger\\fabric\\common\\config.standardValues
github.com\\hyperledger\\fabric\\common\\config.ChannelConfig ---> github.com\\hyperledger\\fabric\\common\\config.ChannelProtos : protos
github.com\\hyperledger\\fabric\\common\\config.ChannelConfig ---> github.com\\hyperledger\\fabric\\common\\config.ApplicationGroup : appConfig
github.com\\hyperledger\\fabric\\common\\config.ChannelConfig ---> github.com\\hyperledger\\fabric\\common\\config.OrdererGroup : ordererConfig
github.com\\hyperledger\\fabric\\common\\config.ChannelConfig ---> github.com\\hyperledger\\fabric\\common\\config.ConsortiumsGroup : consortiumsConfig
github.com\\hyperledger\\fabric\\common\\config.ConsortiumGroup -|> github.com\\hyperledger\\fabric\\common\\config.Proposer
github.com\\hyperledger\\fabric\\common\\config.ConsortiumGroup -|> github.com\\hyperledger\\fabric\\common\\config.ConsortiumConfig
github.com\\hyperledger\\fabric\\common\\config.ConsortiumGroup ---> github.com\\hyperledger\\fabric\\common\\config\\msp.MSPConfigHandler : mspConfig
github.com\\hyperledger\\fabric\\common\\config.ConsortiumConfig -|> github.com\\hyperledger\\fabric\\common\\config.standardValues
github.com\\hyperledger\\fabric\\common\\config.ConsortiumConfig ---> github.com\\hyperledger\\fabric\\common\\config.ConsortiumProtos : protos
github.com\\hyperledger\\fabric\\common\\config.ConsortiumConfig ---> "*" github.com\\hyperledger\\fabric\\common\\config.OrganizationGroup : orgs
github.com\\hyperledger\\fabric\\common\\config.ConsortiumConfig ---> github.com\\hyperledger\\fabric\\common\\config.ConsortiumGroup : consortiumGroup
github.com\\hyperledger\\fabric\\common\\config.ConsortiumsGroup -|> github.com\\hyperledger\\fabric\\common\\config.Proposer
github.com\\hyperledger\\fabric\\common\\config.ConsortiumsGroup -|> github.com\\hyperledger\\fabric\\common\\config.ConsortiumsConfig
github.com\\hyperledger\\fabric\\common\\config.ConsortiumsGroup ---> github.com\\hyperledger\\fabric\\common\\config\\msp.MSPConfigHandler : mspConfig
github.com\\hyperledger\\fabric\\common\\config.ConsortiumsConfig -|> github.com\\hyperledger\\fabric\\common\\config.standardValues
github.com\\hyperledger\\fabric\\common\\config.ConsortiumsConfig ---> github.com\\hyperledger\\fabric\\common\\config.ConsortiumsGroup : consortiumsGroup
github.com\\hyperledger\\fabric\\common\\config\\msp.mspConfigStore ---> "*" github.com\\hyperledger\\fabric\\common\\config\\msp.pendingMSPConfig : idMap
github.com\\hyperledger\\fabric\\common\\config\\msp.MSPConfigHandler ---> "*" github.com\\hyperledger\\fabric\\common\\config\\msp.mspConfigStore : pendingConfig
github.com\\hyperledger\\fabric\\common\\config.OrdererGroup -|> github.com\\hyperledger\\fabric\\common\\config.Proposer
github.com\\hyperledger\\fabric\\common\\config.OrdererGroup -|> github.com\\hyperledger\\fabric\\common\\config.OrdererConfig
github.com\\hyperledger\\fabric\\common\\config.OrdererGroup ---> github.com\\hyperledger\\fabric\\common\\config\\msp.MSPConfigHandler : mspConfig
github.com\\hyperledger\\fabric\\common\\config.OrdererConfig -|> github.com\\hyperledger\\fabric\\common\\config.standardValues
github.com\\hyperledger\\fabric\\common\\config.OrdererConfig ---> github.com\\hyperledger\\fabric\\common\\config.OrdererProtos : protos
github.com\\hyperledger\\fabric\\common\\config.OrdererConfig ---> github.com\\hyperledger\\fabric\\common\\config.OrdererGroup : ordererGroup
github.com\\hyperledger\\fabric\\common\\config.OrganizationConfig -|> github.com\\hyperledger\\fabric\\common\\config.standardValues
github.com\\hyperledger\\fabric\\common\\config.OrganizationConfig ---> github.com\\hyperledger\\fabric\\common\\config.OrganizationProtos : protos
github.com\\hyperledger\\fabric\\common\\config.OrganizationConfig ---> github.com\\hyperledger\\fabric\\common\\config.OrganizationGroup : organizationGroup
github.com\\hyperledger\\fabric\\common\\config.OrganizationGroup -|> github.com\\hyperledger\\fabric\\common\\config.Proposer
github.com\\hyperledger\\fabric\\common\\config.OrganizationGroup -|> github.com\\hyperledger\\fabric\\common\\config.OrganizationConfig
github.com\\hyperledger\\fabric\\common\\config.OrganizationGroup ---> github.com\\hyperledger\\fabric\\common\\config\\msp.MSPConfigHandler : mspConfigHandler
github.com\\hyperledger\\fabric\\common\\config.Proposer ---> "*" github.com\\hyperledger\\fabric\\common\\config.config : pending
github.com\\hyperledger\\fabric\\common\\config.Proposer ---> github.com\\hyperledger\\fabric\\common\\config.config : current
github.com\\hyperledger\\fabric\\common\\config.Root ---> github.com\\hyperledger\\fabric\\common\\config.ChannelGroup : channel
github.com\\hyperledger\\fabric\\common\\config.Root ---> github.com\\hyperledger\\fabric\\common\\config\\msp.MSPConfigHandler : mspConfigHandler
github.com\\hyperledger\\fabric\\common\\config.Org <|- github.com\\hyperledger\\fabric\\common\\config.OrganizationGroup
github.com\\hyperledger\\fabric\\common\\config.ApplicationOrg <|- github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgConfig
github.com\\hyperledger\\fabric\\common\\config.Application <|- github.com\\hyperledger\\fabric\\common\\config.ApplicationConfig
github.com\\hyperledger\\fabric\\common\\config.Channel <|- github.com\\hyperledger\\fabric\\common\\config.ChannelConfig
github.com\\hyperledger\\fabric\\common\\config.Consortiums <|- github.com\\hyperledger\\fabric\\common\\config.ConsortiumsConfig
github.com\\hyperledger\\fabric\\common\\config.Consortium <|- github.com\\hyperledger\\fabric\\common\\config.ConsortiumConfig
github.com\\hyperledger\\fabric\\common\\config.Orderer <|- github.com\\hyperledger\\fabric\\common\\config.OrdererConfig
github.com\\hyperledger\\fabric\\common\\config.ValueProposer <|- github.com\\hyperledger\\fabric\\common\\config.ConsortiumGroup
github.com\\hyperledger\\fabric\\common\\config.ValueProposer <|- github.com\\hyperledger\\fabric\\common\\config.Proposer
github.com\\hyperledger\\fabric\\common\\config.ValueProposer <|- github.com\\hyperledger\\fabric\\common\\config.Root
github.com\\hyperledger\\fabric\\common\\config.ChannelValues <|- github.com\\hyperledger\\fabric\\common\\config.ChannelConfig
github.com\\hyperledger\\fabric\\common\\config.ValueDeserializer <|- github.com\\hyperledger\\fabric\\common\\config.failDeserializer
github.com\\hyperledger\\fabric\\common\\config.ValueDeserializer <|- github.com\\hyperledger\\fabric\\common\\config.standardValues
github.com\\hyperledger\\fabric\\common\\config.Values <|- github.com\\hyperledger\\fabric\\common\\config.ApplicationConfig
github.com\\hyperledger\\fabric\\common\\config.Values <|- github.com\\hyperledger\\fabric\\common\\config.ApplicationOrgConfig
github.com\\hyperledger\\fabric\\common\\config.Values <|- github.com\\hyperledger\\fabric\\common\\config.ConsortiumConfig
github.com\\hyperledger\\fabric\\common\\config.Values <|- github.com\\hyperledger\\fabric\\common\\config.ConsortiumsConfig
github.com\\hyperledger\\fabric\\common\\config.Values <|- github.com\\hyperledger\\fabric\\common\\config.OrdererConfig
github.com\\hyperledger\\fabric\\common\\config.Values <|- github.com\\hyperledger\\fabric\\common\\config.OrganizationConfig
github.com\\hyperledger\\fabric\\common\\config.Handler <|- github.com\\hyperledger\\fabric\\common\\config.ApplicationGroup
github.com\\hyperledger\\fabric\\common\\config.Handler <|- github.com\\hyperledger\\fabric\\common\\config.ChannelGroup
github.com\\hyperledger\\fabric\\common\\config.Handler <|- github.com\\hyperledger\\fabric\\common\\config.ConsortiumGroup
github.com\\hyperledger\\fabric\\common\\config.Handler <|- github.com\\hyperledger\\fabric\\common\\config.ConsortiumsGroup
github.com\\hyperledger\\fabric\\common\\config.Handler <|- github.com\\hyperledger\\fabric\\common\\config.OrdererGroup
github.com\\hyperledger\\fabric\\common\\config.Handler <|- github.com\\hyperledger\\fabric\\common\\config.OrganizationGroup
@enduml |
c836a8c3f405cf6aa508f3b8a779a14317a80c27 | 9eb433261b82c50ceb6740de50bacc6e469a1a34 | /StarTrace_teacher/app/app.plantuml | 0e5ad6b34c4d025db39530e41c13a4134aa8a956 | [] | no_license | ZBRaphael/CourseManager | b983fa2e1b9360fa18e59c34ec6d4fb1b08c6341 | c92adb2e44be9832bdf3a7004f2654cfffff75b7 | refs/heads/master | 2022-12-23T03:11:34.692408 | 2020-07-05T06:59:23 | 2020-07-05T06:59:23 | 270,888,361 | 0 | 0 | null | 2020-07-05T06:52:00 | 2020-06-09T02:54:09 | null | UTF-8 | PlantUML | false | false | 504 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.example.teacherstartrace {
class com.example.teacherstartrace.BuildConfig {
}
}
namespace com.example.teacherstartrace {
namespace util {
class com.example.teacherstartrace.util.URLProviderUtils {
}
}
}
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
|
6b8b225f2030145049f902d20218c8433ad7f9d6 | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/ipc02_02/advanced_workbooks_search/i130339/ipc_02_02_class_diagram_analysis.puml | ff342512dcfc3fa07a45168d9b1b7873efdff5b4 | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 724 | puml | @startuml doc-files/ipc_02_02_class_diagram_analysis.png
class "<<analysis>> FindWorkbooksUI" as UI{
}
class "<<analysis>> WorkBook" as workbook{
-Spreadsheet spreadsheet
+getSpreadsheet()
}
class "<<analysis> Spreadsheet" as spreadsheet{
-Map<Address, Cell> cells
+getCell();
}
class "<<analysis>> Cell" as cell{
-String content
-Address address
+getContent()
+getAddress()
}
class "<<analysis>> Address" as address{
-int column
-int row
+getColumn()
+getRow()
}
workbook <|-- UI
spreadsheet <|-- workbook
cell <|-- spreadsheet
address <|-- cell
@enduml
|
37d2b728c80670634dd23f014f08c61ef30b6140 | a65fe81fdb57e5d389a290fc70f724a593f1cd85 | /01.Observer/src/ES2015-CascadingComboBox/diagrams/MixIn/ClassDiagram.puml | 132e88916be8712a32d2343e6698d08b8e1197ae | [
"MIT"
] | permissive | leoshiang/DesignPatterns | 56a74d317893e96d19e62d789f0379096ae4fe8b | aefa956b0d8caac1e4f80f75e87a5b44b954e8cb | refs/heads/master | 2020-04-01T10:12:37.390007 | 2018-10-15T12:21:22 | 2018-10-15T12:21:22 | 113,122,364 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 413 | puml | @startuml
@startuml
skinparam defaultFontName "Fira Code"
skinparam class {
FontStyle bold
FontSize 12
}
scale 800*800
class Component{
}
class ComponentWithMinxIn
class ComboBoxObserver{
}
class Button{
}
Component <|-down- ComponentWithMinxIn
ComponentWithMinxIn <|-down- Button
ComboBoxObserver <.right. ComponentWithMinxIn
Button .up.> ComboBoxObserver
@enduml |
69099ab7118ff11289ac5434f962ae9f0299ff43 | 088856ec5790009dd9f9d3498a56fe679cfab2e8 | /src/puml/5/ucmitz/svg/class/bc-blog/manage_blog_tags.puml | cbd15fa5851779ab35556a2ab7dd9ad0883ede23 | [] | 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 | 909 | puml | @startuml
skinparam handwritten true
skinparam backgroundColor white
hide circle
skinparam classAttributeIconSize 0
title ブログタグ管理
class Admin\BlogTagsController {
+ 一覧を表示:index()
+ 新規追加:add()
+ 編集:edit()
+ 削除:delete()
}
class BlogTagsService {
+ BlogTagsTable
}
class BlogTagsServiceInterface {
+ 初期データ取得:getNew()
+ 作成:create()
+ 編集:update()
+ 削除:delete()
+ 単一データ取得:get()
+ 一覧データ取得:getIndex()
+ 一括処理:batch()
+ 複数のIDからタイトルリスト取得:getTitlesById()
}
class BlogTagsTable {
}
class BlogTag {
+ タグ名:name
}
Admin\BlogTagsController -down[#Black]-> BlogTagsService
BlogTagsService -down[#Black]-> BlogTagsTable
BlogTagsService -left[dotted,#Black]-|> BlogTagsServiceInterface
BlogTagsTable -down[#Black]-> BlogTag
@enduml
|
9d16f064f8ae79a4cc8eed51ecc64bbe3f321013 | 6ec467bc5852ceec4f207fac67eb52a77b36804c | /spec/docs/overview.plantuml | 7fbfc6753a5a62216c0fbc66cdf6033acf052f93 | [] | no_license | mizhal/lord-of-the-tweets | 21a5164ee5e2d8440beda22392babd18bad9b059 | 5e1df3ac6ac52e1ad3d38daf2a64a1a7b5026a5e | refs/heads/master | 2020-04-10T20:32:29.267079 | 2017-04-10T13:45:23 | 2017-04-10T13:45:23 | 60,689,086 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,815 | plantuml | @startuml
left to right direction
class Profile <<Document>> {
}
class Cluster <<Document>> {
}
package facts {
class Tweet <<Document>> {
}
Tweet --> Profile : belongs-to
}
package habits {
class KnownLocation <<GeoDocument>> {
}
class KnownClient <<Document>> {
}
Profile "1" o--> "*" KnownLocation
Profile "1" o--> "*" KnownClient
}
package sentiment-analysis {
class Domain <<Document>> {
}
class DomainTerm <<DocumentPart>> {
}
class TermOccurrence <<?>> {
}
Domain o--> DomainTerm
DomainTerm <-- TermOccurrence
TermOccurrence "*" --> "1" Profile
}
package metrics {
class TargetingProfile <<Document>> {
}
class InfluenceProfile <<Document>> {
}
class ImpactProfile <<Document>> {
}
class ActivityProfile <<Document>> {
}
class ProfileDataEntry <<DocumentPart>> {
}
Profile "*" -- "*" ImpactProfile
ImpactProfile "*" -- "*" Domain
ImpactProfile *--> "*" ProfileDataEntry
Profile "*" -- "*" InfluenceProfile
InfluenceProfile "*" -- "*" Cluster
InfluenceProfile *--> "*" ProfileDataEntry
Profile "1" -- "1" TargetingProfile
TargetingProfile *--> "*" ProfileDataEntry
Profile "1" -- "1" ActivityProfile
ActivityProfile *--> "*" ProfileDataEntry
}
package graph {
class TwitterLink <<ActiveRel>> {
}
class TwitterCluster <<ActiveNode>> {
}
class TwitterTouch <<ActiveRel>> {
}
class TwitterProfileNode <<ActiveNode>> {
}
TwitterLink --> TwitterProfileNode : first
TwitterLink --> TwitterProfileNode : second
TwitterTouch --> TwitterProfileNode : first
TwitterTouch --> TwitterProfileNode : second
TwitterCluster -- TwitterProfileNode : < belongs
TwitterProfileNode -- Profile : represents >
TwitterCluster -- Cluster: represents >
}
@enduml |
ea822059c5dc2bf978efa37cfbd5cf46c8952290 | 7eb0a3429f021f1a046bed8e667a6911d789d065 | /CompositePattern/CompositePattern.puml | dec43b1dbd7d9a26046deac6b03a97096b70bb1f | [
"MIT"
] | permissive | gama79530/DesignPattern | d99431711fda65cfb7d790b2959ba0a712fa3f86 | 4730c50cdd839072ae50eef975cbed62b5a2a41c | refs/heads/master | 2023-08-03T04:35:54.561642 | 2023-06-08T03:13:08 | 2023-07-31T12:32:13 | 269,562,362 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 333 | puml | @startuml CompositePattern
hide empty members
class Client{
}
interface Component{
operation()
}
class Composite{
operation()
add(component)
remove(component)
getChild()
}
class Leaf{
operation()
}
Client -- Component: use >
Component <|-- Composite
Component <|-- Leaf
Composite o-right- Leaf
@enduml |
948a1a925ad56abd52f5df83b6f286907a71c52a | 3981c0400871641f0639d0ef4570e1ec6993fabf | /PUML/Assignment4.puml | 645e954dc21c9d45fd3202970b90a8dcce00169e | [] | no_license | nick-vigg/Viggiani-COP3330-assignment4part2 | 94dffedf5073c616de728f7a347359ca5225e67a | 4f5b7ab6d8b5601d28455f2172c18346f012abff | refs/heads/master | 2023-06-25T06:58:56.775873 | 2021-07-11T19:55:54 | 2021-07-11T19:55:54 | 383,989,840 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,217 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
+ main()
+ start()
}
class ToDoList {
- toDoTitle : String
- items[] : ArrayList<Item>
setTitle()
getTitle()
addItem()
removeItem()
clearList()
getTitles()
isComplete()
isIncomplete()
}
class Item {
- itemStatus : boolean
- itemDescription : String
- itemDueDate : LocalDate
getItemStatus()
setItemStatus()
getItemDescription()
setItemDescription()
getItemDueDate()
setItemDueDate()
fileToItem()
}
class ListManager {
- toDoListItems : ListView<String>
- completeItems :ListView<String>
- showCompleteItems : RadioButton
- itemDescription : TextField
- itemDue : DatePicker
- isComplete : RadioButton
openButtonIsClicked(ActionEvent actionEvent)
addButtonIsClicked(ActionEvent actionEvent)
removeButtonIsClicked(ActionEvent actionEvent)
clearButtonIsClicked(ActionEvent actionEvent)
setItemStatus(ActionEvent actionEvent)
setToDoListItems()
resetInputs()
editButtonIsClicked(ActionEvent actionEvent)
saveButtonIsClicked(ActionEvent actionEvent)
}
class FileManager{
promptSaveFile()
promptOpenFile()
writeToFile()
readFromFile()
}
javafx.Application <|- App
App *-- ToDoList
ToDoList o-- Item
ListManager - Item
FileManager - ListManager
@enduml |
811ab457645e434d9c59a0baaa8873afb13e8527 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/workforce/media/src/useCase14WorkOrderModel.puml | 5d810643c1523b70adf1ee74013a2c58a9bb7031 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 2,772 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class WorkOrder {
appointmentRequired*: boolean
href: string
id*: string
state*: WorkOrderStateType
tasks*: string
}
WorkOrder *-->"*" AppointmentRef : appointments
WorkOrder *-->"*" Note : note
WorkOrder *-->"*" RelatedPlaceRefOrValue : place
WorkOrder *-->"1..*" RelatedContactInformation : relatedContactInformation
WorkOrder *-->"1..*" RelatedEntity : relatedEntity
enum WorkOrderStateType {
cancelled
completed
inProgress
open
planned
unableToComplete
}
class AppointmentRef {
href: string
id*: string
}
class FieldedAddress {
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
streetName*: string
streetNr: string
streetNrLast: string
streetNrLastSuffix: string
streetNrSuffix: string
streetSuffix: string
streetType: string
}
RelatedPlaceRefOrValue <|-- FieldedAddress
FieldedAddress *--> GeographicSubAddress : geographicSubAddress
class GeographicSubAddress {
buildingName: string
id: string
levelNumber: string
levelType: string
privateStreetName: string
privateStreetNumber: string
}
GeographicSubAddress *-->"*" MEFSubUnit : subUnit
class RelatedContactInformation {
emailAddress*: string
name*: string
number*: string
numberExtension: string
organization: string
role*: string
}
RelatedContactInformation *--> FieldedAddress : postalAddress
class RelatedEntity {
@referredType*: string
href: string
id*: string
role*: string
}
class GeographicAddressRef {
href: string
id*: string
}
RelatedPlaceRefOrValue <|-- GeographicAddressRef
class FormattedAddress {
addrLine1*: string
addrLine2: string
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
}
RelatedPlaceRefOrValue <|-- FormattedAddress
class GeographicAddressLabel {
externalReferenceId*: string
externalReferenceType*: string
}
RelatedPlaceRefOrValue <|-- GeographicAddressLabel
class GeographicSiteRef {
href: string
id*: string
}
RelatedPlaceRefOrValue <|-- GeographicSiteRef
class Note {
author*: string
date*: date-time
id*: string
source*: MEFBuyerSellerType
text*: string
}
class MEFGeographicPoint {
spatialRef*: string
x*: string
y*: string
z: string
}
RelatedPlaceRefOrValue <|-- MEFGeographicPoint
class MEFSubUnit {
subUnitNumber*: string
subUnitType*: string
}
class RelatedPlaceRefOrValue {
@schemaLocation: uri
@type*: string
role*: string
}
@enduml
|
652f5f6f219306cde252c007dbee543c04352a66 | 05f878a673c8a96f43c08ed837aa204cf226be6c | /docs/UML/Json.Results.puml | c1c00574596efc86da4af3c5b3aef5945ad155f3 | [] | no_license | PositiveTechnologies/ptaiPlugins | 10f3e04d093a06a686c12ae12d6db35829b884b7 | 8ba2c863bf70e99eecb41cfaf819236c113de2c8 | refs/heads/master | 2022-03-16T11:39:18.085547 | 2022-02-09T13:53:15 | 2022-02-09T13:53:15 | 178,220,368 | 3 | 2 | null | 2021-09-03T07:59:44 | 2019-03-28T14:28:27 | Java | UTF-8 | PlantUML | false | false | 1,385 | puml | @startuml
class ScanInfo {
+String scanDate
+int TotalFileCount
+int ScannedFileCount
+int VulnerableFiles
+int TotalVulnerabilityCount
+int AcceptedVulnerabilities
+int DiscardedVulnerabilities
+int SuppressedVulnerabilities
+int NewVulnerabilities
+int PreviousVulnerabilities
+int NonFilteredVulnerabilitiesCount
+int NonFilteredAcceptedVulnerabilitiesCount
+int NonFilteredDiscardedVulnerabilitiesCount
+int NonFilteredSuppressedVulnerabilitiesCount
+int NonFilteredNewVulnerabilitiesCount
+int NonFilteredPreviousVulnerabilitiesCount
+int PolicyState
}
class IncludedFilters {
+String ConformationStatuses
}
class ExcludedFilters {
+String SuspectedOrSecondOrder
}
ExcludedFilters --|> IncludedFilters
FilterInformation --> "includedFilters" IncludedFilters
FilterInformation --> "excludedFilters" ExcludedFilters
class Setting {
+int order
+boolean isExternalLink
}
ScanInfo --> "scanSettings[]" Setting
ScanInfo --> "filterInformation" FilterInformation
class BaseDisplayName {
+String displayName
+String value
}
class Level {
+String severity
}
Level --|> BaseDisplayName
Nist --|> BaseDisplayName
Owasp --|> BaseDisplayName
Owaspm --|> BaseDisplayName
Pcidss --|> BaseDisplayName
Sans --|> BaseDisplayName
class Type {
+String id
+String groupId
}
Type --|> BaseDisplayName
Setting --|> BaseDisplayName
@enduml
|
75ab33c99300d9de4782b7625a58a39adaf7e26a | 8ab3265c0db3eef67c98134f35e5b4d40be64bea | /src/main/resources/pattern/多工厂模式.puml | 3ff5f779b93dbaba5b010ae1652b287f8a56715a | [] | no_license | taoes/DesignPattern | 6826bc6dbb190e9233fef0cf0f2c9bf766efd2a7 | 903a46a60833762cdda0d78b88cf01f4f9aee94c | refs/heads/master | 2021-05-23T12:42:00.744517 | 2020-04-12T13:37:03 | 2020-04-12T13:37:03 | 253,290,931 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 625 | puml | @startuml
abstract class Creator<<抽象创建者>>{
+ {abstract} void createProduct(<T extend Product>)
}
class ConcreteCreator1 <<具体创建者1>>{}
class ConcreteCreator2 <<具体创建者2>>{}
Creator <|-- ConcreteCreator1
Creator <|-- ConcreteCreator2
class ConcreteProduct1 <<具体产品1>>{}
class ConcreteProduct2 <<具体产品2>>{}
abstract class Product <<抽象产品>> {
+ void method1(); // 共性方法
+ {abstract} void method2(); // 抽象方法
}
Product <|-- ConcreteProduct1
Product <|-- ConcreteProduct2
ConcreteProduct1 <.. ConcreteCreator1
ConcreteProduct2 <.. ConcreteCreator2
@enduml
|
6834e00d9d59b7936fb6bbe990e35bbf3229b173 | 60e80b1719d9c929747baf3d32537c1731c0168f | /prototype/src/main/resources/MoneyPrototype.puml | 2add0679cedf5a6cd3176ac9ce6672bcb8a09349 | [] | no_license | GilbertXiao/JavaDesignPatterns | 8c0b82634c96107f6311dbacabdaa38119402782 | 35ce09c85b40ae585ecfc8fb7c3247375eb2a40b | refs/heads/master | 2021-07-11T11:10:04.956876 | 2020-07-19T11:59:28 | 2020-07-19T11:59:28 | 179,295,966 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 123 | puml | @startuml
class Money{
- String name
- Integer age
- String color
}
Class Client
Client -> Money
@enduml
|
9a08fd47a8b576d437b167ae62c46a602f983f0b | f0b9d4c0fe2870ce8e52460179b4d8eae0e3647c | /ObjectPool/uml.plantuml | 20e2c9071fb6d4d00f250abc97258102ac69d82c | [
"MIT"
] | permissive | MehmetFiratKomurcu/DesignPatternsCourse | 7fb2b0513ada0cc7e895088a8f2d95501c11d28d | 8e12eb9c2aa50f43e81a71622ca03c05d71aa98a | refs/heads/master | 2022-11-19T05:40:02.452768 | 2020-07-19T18:13:12 | 2020-07-19T18:13:12 | 245,816,331 | 0 | 0 | null | 2020-07-19T18:08:45 | 2020-03-08T13:08:44 | C# | UTF-8 | PlantUML | false | false | 497 | plantuml | @startuml
skinparam classAttributeIconSize 0
left to right direction
class OrderPool{
{static}-Lazy<OrderPool> instance
{static}+string Instance
-int defaultSize
-ConcurrentBag<Order> _bag
-int _currentSize
-int _counter
-object _lockObject
-OrderPool()
+Order AcquireObject()
+ReleaseObject()
}
abstract class Order{
{abstract}+string GatherOrder()
}
class RequestOrder{
}
Order-> OrderPool
RequestOrder -o OrderPool
RequestOrder -|> Order
@enduml |
eaaf32a36356c3104615bd8e1b0bb6614f4fd9d3 | 46e33026e71172b64599f96adde7f212ca59a8e1 | /static/img/plantuml/70_reference_link.puml | f69bbd3fb53a438dda1049d9b0a129a067b2cb53 | [
"Apache-2.0"
] | permissive | argosnotary/docs | f1526bb72e15fd66c84691fcfaad47538b258125 | 35c2f9434dba6408e0abdee3871f9c9e09b4887b | refs/heads/master | 2023-01-02T11:42:22.616185 | 2020-10-22T16:58:58 | 2020-10-22T16:58:58 | 264,984,465 | 0 | 1 | Apache-2.0 | 2020-09-25T09:52:35 | 2020-05-18T15:39:22 | HTML | UTF-8 | PlantUML | false | false | 1,024 | puml | '
' Copyright (C) 2019 - 2020 Rabobank Nederland
'
' 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
caption Link and related Classes
skinparam shadowing<<with_shadow>> true
skinparam backgroundColor #SeaShell
class Link {
runId
}
class Artifact {
uri
hash
}
class LayoutSegment {
}
class LayoutSegment {
}
LayoutSegment "1" -right- "1" Step
Link "1" -right-> "1" LayoutSegment
Link "1" -right-> "1" Step
Link "1" --> "0..*" Artifact: materials
Link "1" --> "0..*" Artifact: products
@enduml
|
3d8d869eb729bbb41ee149dee0b5dd461d01962d | d6ca810d2ec991d97c1bc8581ed06763c57641ce | /development/felica/TestCords/FericaReader/plantuml/DB/ProcessDBTable.puml | 4e68eb84a010497558fb9ded5b3f26bac0e6d033 | [] | no_license | miyashita-atsushi/team_a | c847d571c5a522339ee0c3ac2c5ee0cb0753411b | 3cfec172375aafeef64c40a575dddde64f0a8ed3 | refs/heads/master | 2023-02-25T07:39:36.010130 | 2020-05-29T09:12:57 | 2020-05-29T09:12:57 | 254,561,813 | 0 | 1 | null | 2021-01-29T20:47:18 | 2020-04-10T06:33:38 | C# | UTF-8 | PlantUML | false | false | 128 | puml | @startuml
class ProcessDBTable {
+ ProcessNumber : int <<get>> <<set>>
+ ProcessName : string <<get>> <<set>>
}
@enduml
|
62e15640c7e4f24d171ee7f91c1dfd45264050b3 | 105bd4b4ebe4cd54f5aaddc4e2a535430f51884a | /bouquet/templates/design/Solution/SubSystemName/ClassOverview.puml | 423e39b1ce4e6f26525bbedd1a2a44abd8b7213e | [
"MIT"
] | permissive | mishin/bouquet | d38b4941a0185d9d141448796e1609a10a41fc5f | 608b6c7689f1eca5baa354691ae0932e942f0225 | refs/heads/master | 2021-05-15T19:27:43.342139 | 2017-09-27T05:38:41 | 2017-09-27T05:38:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 206 | puml | @startuml
package "<%= subsystem.name %>" #dddddd {}
package "<%= system.name %>" #ffffaa {
interface "CLI"
interface "Web"
interface "REST"
class "Class1" {
}
}
"CLI" -- "Class1"
@enduml
|
611910c0ad453d1dd01822c66b5e727da9fe0c27 | e4cb8fc1fcc7eb0ed9150a681256c93c2ac0eb7d | /Task02/src/by/khomenko/task02/validator/validator.plantuml | e770d0b2670544a0e6729ac2263dd2ff82cdff93 | [] | no_license | EX22/EpamTraining | 44411ea262885b8f940acb08b22299b88ad99dec | 6258ae08f9927ada9c33c8da9465aac02ea3f32d | refs/heads/master | 2022-07-17T05:46:13.245526 | 2019-05-29T03:17:28 | 2019-05-29T03:17:28 | 170,499,105 | 0 | 0 | null | 2022-06-21T01:09:16 | 2019-02-13T11:48:20 | Java | UTF-8 | PlantUML | false | false | 422 | plantuml | @startuml
title __VALIDATOR's Class Diagram__\n
package by.khomenko.task02.validator {
class ExperimentDataValidator {
+ validateExperiment()
- validatePort()
- validateFleet()
}
}
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
|
ae3f7b27911b8527290c740da3233d42186fbee4 | 7fc07ea3d00c1a762a89675a45b7ebad5cb8604a | /docs/src/diagrams/backend_module_ui_primary_script_exec.puml | aafe1f67d68352eb14bbbc497edda9c392281804 | [
"BSD-3-Clause"
] | permissive | ska-telescope/observation-execution-tool | c6aa5729220fee22868e0edc4efaf71fd97c70da | cace7d3f3fe58e9711730893761cb8380bb7f598 | refs/heads/master | 2023-08-31T03:23:38.430798 | 2023-08-24T09:33:53 | 2023-08-24T09:33:53 | 181,853,839 | 0 | 0 | NOASSERTION | 2021-06-17T12:33:25 | 2019-04-17T08:54:54 | Python | UTF-8 | PlantUML | false | false | 3,766 | puml | @startuml
'https://plantuml.com/class-diagram
package ska_oso_oet_client {
package restclient <<Rectangle>> {
class RestClientUI {
create(...)
start(...)
stop(...)
list(...)
describe(...)
listen(...)
}
}
}
package ska_oso_oet {
package mptools <<Rectangle>> {
note as mptools_note
See the ScriptExecutionService
view for more information on
the ""mptools"" module and its
contents.
end note
}
package main <<Rectangle>> {
class ScriptExecutionServiceWorker {
prepare(...)
start(...)
stop(...)
list(...)
}
class FlaskWorker
class EventBusWorker {
main_loop(...)
main_func(...)
republish(...)
}
ScriptExecutionServiceWorker -up-|> EventBusWorker
FlaskWorker -up-|> EventBusWorker
EventBusWorker -right[dotted]- mptools: uses
EventBusWorker -right[dotted]- pypubsub: uses
}
package ui <<Rectangle>> {
class app <<function return value>> {
}
class ServerSentEventsBlueprint
app o-- ServerSentEventsBlueprint
}
package procedure {
package ui as procedure_ui <<Rectangle>> {
class ProcedureAPI
}
app o-- ProcedureAPI
package application <<Rectangle>> {
note as N1
See the Script Execution module
view for information on objects
from the ""domain"" Python module
that are held as class properties
of some of the classes in the
""application"" package.
end note
class ScriptExecutionService {
prepare(cmd: PrepareProcessCommand) -> ProcedureSummary
start(cmd: StartProcessCommand) -> ProcedureSummary
stop(cmd: StopProcessCommand) -> List[ProcedureSummary]
summarise(pids: List[int]) -> List[[ProcedureSummary]
}
class ProcedureSummary {
id: int
script: domain.ExecutableScript
script_args: ...
state: domain.ProcedureState
}
class ProcedureHistory {
{field} process_states: List[(ProcedureState, time)]
stacktrace: Optional[str]
}
ProcedureSummary --> ProcedureHistory
together {
class PrepareProcessCommand {
script: domain.ExecutableScript
init_args: domain.ProcedureInput
}
class StartProcessCommand {
process_uid: int
fn_name: str
run_args: domain.ProcedureInput
}
class StopProcessCommand {
process_uid: int
run_abort: bool
}
}
PrepareProcessCommand -[hidden]- StartProcessCommand
StartProcessCommand -[hidden]- StopProcessCommand
}
FlaskWorker *-- app
ScriptExecutionServiceWorker --> ScriptExecutionService
}
}
package flask {
class Flask
class Blueprint
Flask -down[hidden]- Blueprint
}
app -|> Flask
ProcedureAPI -|> Blueprint
ServerSentEventsBlueprint --|> Blueprint
package pypubsub {
}
'main -down[hidden]--> application
'restserver -left[hidden]--> application
'restserver -right[hidden]--> flask
'FlaskWorker -down[hidden]--> restserver
ScriptExecutionService -down[hidden]- ProcedureSummary
ScriptExecutionService -down[hidden]- PrepareProcessCommand
PrepareProcessCommand -right[hidden]- ProcedureSummary
@enduml
|
33650f59256d5bd405c5d633a119578aaaafeb4d | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLEnumValuesMustMatchError.puml | 1f00e994cba4d06592b2094deb21770f1c5103a4 | [] | 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 | 430 | 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 GraphQLEnumValuesMustMatchError [[GraphQLEnumValuesMustMatchError.svg]] extends GraphQLErrorObject {
code: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
|
14ffafa7545979498f44d16ade432d5274b5ed12 | dcad9c5857819ab62681f67dd157213cde758484 | /docs/dev/graphs/triggers.puml | a23e421e55a268228470ae7b748f6c2f90563633 | [
"MIT",
"MIT-0"
] | permissive | martin-ueding/vigilant-crypto-snatch | edb51860dc8c099f76fd30d7cc1c65e8ab21059f | c64669ce62d5881748ed168326d74f727616f6c0 | refs/heads/master | 2023-07-27T08:47:59.721006 | 2023-07-15T19:40:35 | 2023-07-15T19:40:35 | 187,399,985 | 26 | 9 | null | 2023-07-15T19:40:37 | 2019-05-18T19:58:39 | Python | UTF-8 | PlantUML | false | false | 1,585 | puml | @startuml
allowmixing
!if ($standalone)
interface marketplace.Marketplace
interface datastorage.Datastore
interface historical.HistoricalSource
!endif
namespace triggers {
class TriggerSpec {
name: Optional[str]
asset_pair: AssetPair
cooldown_minutes: int
delay_minutes: Optional[int]
drop_percentage: Optional[float]
volume_fiat: Optional[float]
percentage_fiat: Optional[float]
start: Optional[datetime.datetime]
fear_and_greed_index_below: Optional[int]
}
core.AssetPair <-- TriggerSpec
interface Trigger {
get_name()
fire()
has_cooled_off()
is_triggered()
}
class BuyTrigger implements Trigger
datastorage.Datastore <-- BuyTrigger
marketplace.Marketplace <-- BuyTrigger
historical.HistoricalSource <-- BuyTrigger
interface TriggeredDelegate {
is_triggered()
}
BuyTrigger --> TriggeredDelegate
interface VolumeFiatDelegate {
get_volume_fiat()
}
BuyTrigger --> VolumeFiatDelegate
class FixedVolumeFiatDelegate implements VolumeFiatDelegate
class RatioVolumeFiatDelegate implements VolumeFiatDelegate
class DropTriggeredDelegate implements TriggeredDelegate
class TrueTriggeredDelegate implements TriggeredDelegate
class FailureTimeout
BuyTrigger --> FailureTimeout
class CheckinTrigger implements Trigger
class DatabaseCleaningTrigger implements Trigger
datastorage.Datastore <-- DatabaseCleaningTrigger
marketplace.Marketplace <-- RatioVolumeFiatDelegate
class FearAndGreedIndexTriggeredDelegate implements TriggeredDelegate
feargreed.FearAndGreedIndex <-- FearAndGreedIndexTriggeredDelegate
}
@enduml |
3f159f9223ab69229cdf1fed6cb5c295304874e3 | c1dd42b9d86d867f50a09339ea46495b75da1cf7 | /src/main/resources/lock.puml | 7d5b39db80721f66955e4548a70b12afddb3ae88 | [] | no_license | vvHhhhh/exercise-java8 | 137dcad1ec35cfb97d21174de336109376a981ef | 828ead292a88ed464ad7b643d89f23c83922990a | refs/heads/master | 2021-07-22T10:19:57.375291 | 2019-10-22T02:55:56 | 2019-10-22T02:55:56 | 183,847,913 | 0 | 0 | null | 2020-06-15T21:58:33 | 2019-04-28T03:02:00 | Java | UTF-8 | PlantUML | false | false | 813 | puml | @startuml
interface Lock{
void lock();
void lockInterruptibly();
boolean tryLock();
boolean tryLock(long time, TimeUnit unit);
void unlock();
Condition newCondition();
}
class ReentrantLock{
ReentrantLock.Sync sync;
}
class WriteLock{
private final Sync sync;
}
class ReadLock{
private final Sync sync;
}
class ReadLockView
class WriteLockView
Lock <|-- WriteLock
Lock <|-- ReadLock
Lock <|-- ReadLockView
Lock <|-- WriteLockView
abstract class AbstractQueuedSynchronizer
class Sync
class NonfairSync
class FairSync
Lock <|-- ReentrantLock
AbstractQueuedSynchronizer <|-- Sync
Sync <|-- NonfairSync
Sync <|-- FairSync
interface ReadWriteLock{
Lock readLock();
Lock writeLock();
}
class ReentrantReadWriteLock{
}
ReadWriteLock <|-- ReentrantReadWriteLock
@enduml |
99777152bd761ec5ca26f362d8174d37c501fdeb | e31b7f835fc74e8fdd19e85432fdd362c11eaef1 | /src/main/resources/ex41.puml | 81364aa68e47a9b8c5f817b5bfa55312ca241b47 | [] | no_license | lhernandez97/hernandez-cop3330-assignment3 | 07e92d8064fc52ed8be32ba5ba5b393721cc8fd2 | 2b69edc66f6e7da7270c422921cd446724909c9c | refs/heads/master | 2023-09-05T20:58:30.576483 | 2021-10-12T03:54:41 | 2021-10-12T03:54:41 | 416,174,982 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 173 | puml | @startuml
'https://plantuml.com/class-diagram
class App
class OutputFile
App <|- OutputFile
class App {
main()
}
class OutputFile {
createOutputFile()
}
@enduml |
d0bae683b9f163becddd4f702ee851ad554cbdc0 | 27bade928da247751c05e64b7baa7cd79bbc4766 | /oodesignpatterns/diagrams/flyweight.puml | 2970453e10206f7a66e326dc71099b7f9ce61300 | [] | no_license | zweibit0110/design-patterns | 7ef005c8f49752545d3093e2de3d7f058c48e278 | c8f88aa916ffdd556026722c4ca80e7555e535fa | refs/heads/master | 2021-07-24T07:50:11.906876 | 2019-11-29T12:51:53 | 2019-11-29T12:51:53 | 224,854,326 | 0 | 0 | null | 2020-10-13T17:50:56 | 2019-11-29T12:55:42 | Java | UTF-8 | PlantUML | false | false | 2,023 | puml | @startuml
skinparam note {
borderColor grey
backgroundColor white
}
skinparam legend {
borderColor white
fontSize 20
fontColor grey
}
package com.deloitte.training.oodesignpatterns.structural.flyweight {
' Classes and interfaces
interface Shape {
+ draw(graphics, x, y, width, height, color)
}
class Line {
+ draw(graphics, x, y, width, height, color)
}
class Oval {
+ draw(graphics, x, y, width, height, color)
}
class Rectangle {
+ draw(graphics, x, y, width, height, color)
}
class ShapeFactory {
+ {static} getShape(shapeType) : Shape
}
class ShapeCreationTest
class DrawingClient
' relationships
Line --> Shape : implements
Oval --> Shape : implements
Rectangle --> Shape : implements
ShapeFactory .^ Shape : create
ShapeFactory --o ShapeCreationTest : use
ShapeCreationTest o-- Shape : use
ShapeFactory --o DrawingClient : use
DrawingClient o-- Shape : use
' hide garbage
hide empty fields
hide empty methods
' notes
note bottom of ShapeCreationTest
<i><size:10><color:grey>Get <b>Shape</b> from the factory and draw it:</color></size></i>
shape = ShapeFactory.getShape(shapeType)
shape.draw(graphics, x, y, width, height, color)
<i><size:10><color:grey>The factory contains a limited number of shapes (one for every shapeType).</color></size></i>
end note
note bottom of ShapeCreationTest
<i><size:10><color:grey>Output:
<i><size:10><color:grey><b>Creating Oval object with fill = true
<i><size:10><color:grey><b>Creating Oval object with fill = false
<i><size:10><color:grey><b>Creating Line object
<i><size:10><color:grey><b>Creating Rectangle object with fill = true
<i><size:10><color:grey><b>Creating Rectangle object with fill = false
end note
}
'legend
legend bottom left
FLYWEIGHT [design pattern]
end legend
@enduml
|
d90ce61193fd1a722ae22bf70f03e618ecd544c4 | 4c5d25e670d887c43e6cab8a1b8658ec62c17f36 | /src/main/java/org/example/example.plantuml | 9f080effcbb315d87dd692027aba0411359837de | [] | no_license | RichardKovacik/bankDAO | e8fba1f74da6110ca6bb82e2fb74789fb7eabc02 | 65caf7429d76efaede5b36120f3074a478da5586 | refs/heads/main | 2023-06-27T20:40:56.671572 | 2021-07-20T15:00:38 | 2021-07-20T15:00:38 | 385,254,693 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 819 | plantuml | @startuml
title __EXAMPLE's Class Diagram__\n
namespace org.example {
class org.example.App {
{static} + main()
}
}
namespace org.example {
class org.example.Banka {
- klienti : List<Klient>
- ucty : List<Ucet>
+ Banka()
+ getKlientService()
+ getUcetService()
+ nacitajUctyKlienta()
+ odoberKlientaPodlaID()
+ odoberUcetKlientovi()
+ pridajKlienta()
+ zalozUcetKlientovi()
}
}
org.example.Banka o-- service.KlientService : klientService
org.example.Banka o-- service.UcetService : ucetService
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
|
1a06f4079d95d17484099fd83d2a42ec1a445976 | e43bb5b4bd248f756bc67d3da64ae7af62462259 | /src/main/java/platform/jade/custome.plantuml | 44741ede4f994f13526c271878602bc628c93660 | [] | no_license | TasMarshall/multiCameraApplicationPlatform | 056a17e409e7d781dd58ade7c996744fb4d106e3 | ec1d1403926fbeaf596ee98fbdda336d1daf00d6 | refs/heads/master | 2020-03-21T16:11:07.823431 | 2018-09-11T13:31:38 | 2018-09-11T13:31:38 | 138,755,729 | 5 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,989 | plantuml | @startuml
scale 1024 width
scale 768 height
title __MultiCameraCore Class Diagram__\n
package platform {
class MultiCameraCore_Configuration {
{static} - LOGGER : Logger
- id : String
- cameraConfigurationFiles : List<String>
- multiCameraGoals : List<MultiCameraGoal>
- additionalFields : Map<String, Object>
{static} + xstream : XStream
{static} + XML_HEADER : String
+ MultiCameraCore_Configuration()
+ writeConfigurationToXML()
+ readMCPConfig()
+ createMCAppFromMCPConfigurationFile()
}
}
package platform {
package platform.cameraManager.core {
class CameraManager {
- id : String
- cameras : List<Camera>
- cameraIdMap : Map<String, Camera>
+ CameraManager()
+ initCameras()
{static} + heartbeat()
+ reinitNotWorkingCameras()
+ initCamera()
+ getWorkingCameras()
+ getNotWorkingCameras()
+ testSimpleAllCameras()
+ addAndInitCameras()
}
}
}
package platform {
class MultiCameraCore {
- multiCameraGoals : List<MultiCameraGoal>
- additionalFields : Map<String, Object>
- agentActions : List<CommunicationAction>
+ MultiCameraCore()
+ setup()
{static} + initDependencyObjects()
+ buildMCAFromConfigFile()
+ init()
+ executeMAPELoop()
- removeNewInfo()
+ monitor()
+ analyse()
+ plan()
+ execute()
+ createGlobalMap()
+ getWorkingCameras()
}
}
package platform {
package platform.utilities {
package platform.utilities.adaptation {
class AdaptationTypeManager {
- stringToAdaptationMap : HashMap<String, AdaptivePolicy>
+ AdaptationTypeManager()
+ getAdaptivePolicy()
}
}
}
}
package platform {
package platform.imageAnalysis {
class AnalysisTypeManager {
- stringToAnalysisMap : HashMap<String, ImageProcessor>
+ AnalysisTypeManager()
+ getImageProcessObject()
}
}
}
package platform {
package platform.map {
class GlobalMap {
- swLong : double
- swLat : double
- neLong : double
- neLat : double
+ GlobalMap()
}
}
}
package platform {
package platform.utilities {
class Heartbeat {
~ timer : int
- cameraHeartbeatReceived : HashMap<String, Boolean>
+ Heartbeat()
+ init()
+ recordHeartbeat()
+ checkHeartBeats()
}
}
}
MultiCameraCore o-- MultiCameraCore : mcp_application
MultiCameraCore o-- CameraManager : cameraManager
MultiCameraCore o-- AnalysisTypeManager : analysisTypeManager
MultiCameraCore o-- AdaptationTypeManager : adaptationTypeManager
MultiCameraCore o-- GlobalMap : globalMap
MultiCameraCore o-- Heartbeat : heartbeat
@enduml
|
0263dc12072fdcda096eb5e898936f276cce3ea8 | 228ac315467160c470c89315fdda71b80b5abbe6 | /ABZ18_ERTMS/domain_models/ertms_etcs_case_study.puml | 3f50a3a216195d971ada72f95d3c740a94e632bb | [] | no_license | stuenofotso/SysML_KAOS_Domain_Model_Parser | 96622ae078ad8aae30b8e9ff97fe6a3e1646625e | c54fe95ca968c0bc61f3a470fed009665d845c7c | refs/heads/master | 2021-06-20T06:37:55.399363 | 2019-08-07T11:55:12 | 2019-08-07T11:55:12 | 98,421,447 | 3 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 653 | puml | @startuml
skinparam class {
BackgroundColor<<association>> Darkorange
BackgroundColor<<concept>> Snow
}
package ertms_etcs_case_study <<Folder>> {
class "NATURAL" as NATURAL <<concept>>
class TRAIN <<concept>> {
connectedTrain : BOOL (0..1) <<variable>>
}
class TRACK <<concept>> {
}
NATURAL <|-- TRACK
class Connected_Train <<concept>> <<variable>> {
}
TRAIN <|-- Connected_Train
object a <<individual>>
NATURAL *-- a : individualOf
object b <<individual>>
NATURAL *-- b : individualOf
Connected_Train "*" -- "1" TRACK : > front <<variable>>
Connected_Train "*" -- "0..1" TRACK : > rear <<variable>>
}
@enduml
|
a52865ea1b3315d98bb909830565ad69378d5d43 | bfd58a34ef0db5799b5335343c8211a04cfc3712 | /src/com/chen/principle/test/test.puml | be525c5f61111c46f0b0db7c1aca8e9d5971a312 | [] | no_license | wq86019595/Design_Patterns | 3420b0e991707951db17caacd1b7c0518e885f8a | cb6dbaebe335a099c7f7cc47e65d88fec0068c22 | refs/heads/master | 2023-06-09T00:35:28.703106 | 2021-06-28T08:01:45 | 2021-06-28T08:01:45 | 380,952,724 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 157 | puml | @startuml
interface Interface1 {
void operation1();
void operation2();
void operation3();
void operation4();
void operation5();
}
@enduml |
c4a5ba235943faf5883867eaea93683f4c6ae9c1 | 4e22d261d7dcf5fe2731d77ba3cfb47c5568977c | /Documentation/Source/Breakdown/Engine/TempestEngine/GamepadSystem-Class.iuml | 12fc9756658476c5991b3922e1c91ba0379de723 | [] | no_license | SeraphinaMJ/Reformed | 2d7424d6d38d1cfaf8d385fade474a27c02103a5 | 8563d35ab2b80ca403b3b57ad80db1173504cf55 | refs/heads/master | 2023-04-06T00:40:34.223840 | 2021-05-06T11:25:51 | 2021-05-06T11:25:51 | 364,884,928 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 317 | iuml | namespace InputSystem {
class GamepadSystem {
{static} +GetName()
+Name()
+GetInputAdapter()
+SetFFB()
#OnInitialize()
#OnStartFrame()
#OnShutdown()
}
GamepadSystem --|> SystemManagement::SystemBase
}
|
dbd54df2b5b381f8600ebd6822a2722e8f5bb44d | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderMessage.puml | 9944ba874afa25b5c53b88565297acb1a01ad6a6 | [] | 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 | 32,959 | 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 OrderMessage [[OrderMessage.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]]
}
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]]
}
interface CustomLineItemStateTransitionMessage [[CustomLineItemStateTransitionMessage.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]]
customLineItemId: String
customLineItemKey: String
transitionDate: DateTime
quantity: Long
fromState: [[StateReference.svg StateReference]]
toState: [[StateReference.svg StateReference]]
}
interface DeliveryAddedMessage [[DeliveryAddedMessage.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]]
delivery: [[Delivery.svg Delivery]]
shippingKey: String
}
interface DeliveryAddressSetMessage [[DeliveryAddressSetMessage.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]]
deliveryId: String
address: [[Address.svg Address]]
oldAddress: [[Address.svg Address]]
shippingKey: String
}
interface DeliveryItemsUpdatedMessage [[DeliveryItemsUpdatedMessage.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]]
deliveryId: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
oldItems: [[DeliveryItem.svg List<DeliveryItem>]]
shippingKey: String
}
interface DeliveryRemovedMessage [[DeliveryRemovedMessage.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]]
delivery: [[Delivery.svg Delivery]]
shippingKey: String
}
interface LineItemStateTransitionMessage [[LineItemStateTransitionMessage.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]]
lineItemId: String
lineItemKey: String
transitionDate: DateTime
quantity: Long
fromState: [[StateReference.svg StateReference]]
toState: [[StateReference.svg StateReference]]
}
interface OrderBillingAddressSetMessage [[OrderBillingAddressSetMessage.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]]
address: [[Address.svg Address]]
oldAddress: [[Address.svg Address]]
}
interface OrderCreatedMessage [[OrderCreatedMessage.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]]
order: [[Order.svg Order]]
}
interface OrderCustomFieldAddedMessage [[OrderCustomFieldAddedMessage.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]]
name: String
value: [[Object.svg Object]]
}
interface OrderCustomFieldChangedMessage [[OrderCustomFieldChangedMessage.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]]
name: String
value: [[Object.svg Object]]
previousValue: [[Object.svg Object]]
}
interface OrderCustomFieldRemovedMessage [[OrderCustomFieldRemovedMessage.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]]
name: String
}
interface OrderCustomLineItemAddedMessage [[OrderCustomLineItemAddedMessage.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]]
customLineItem: [[CustomLineItem.svg CustomLineItem]]
}
interface OrderCustomLineItemDiscountSetMessage [[OrderCustomLineItemDiscountSetMessage.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]]
customLineItemId: String
customLineItemKey: String
discountedPricePerQuantity: [[DiscountedLineItemPriceForQuantity.svg List<DiscountedLineItemPriceForQuantity>]]
taxedPrice: [[TaxedItemPrice.svg TaxedItemPrice]]
}
interface OrderCustomLineItemQuantityChangedMessage [[OrderCustomLineItemQuantityChangedMessage.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]]
customLineItemId: String
customLineItemKey: String
quantity: Long
oldQuantity: Long
}
interface OrderCustomLineItemRemovedMessage [[OrderCustomLineItemRemovedMessage.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]]
customLineItemId: String
customLineItemKey: String
customLineItem: [[CustomLineItem.svg CustomLineItem]]
}
interface OrderCustomTypeRemovedMessage [[OrderCustomTypeRemovedMessage.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]]
previousTypeId: String
}
interface OrderCustomTypeSetMessage [[OrderCustomTypeSetMessage.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]]
customFields: [[CustomFields.svg CustomFields]]
previousTypeId: String
}
interface OrderCustomerEmailSetMessage [[OrderCustomerEmailSetMessage.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]]
email: String
oldEmail: String
}
interface OrderCustomerGroupSetMessage [[OrderCustomerGroupSetMessage.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]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
oldCustomerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
}
interface OrderCustomerSetMessage [[OrderCustomerSetMessage.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]]
customer: [[CustomerReference.svg CustomerReference]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
oldCustomer: [[CustomerReference.svg CustomerReference]]
oldCustomerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
}
interface OrderDeletedMessage [[OrderDeletedMessage.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]]
order: [[Order.svg Order]]
}
interface OrderDiscountCodeAddedMessage [[OrderDiscountCodeAddedMessage.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]]
discountCode: [[DiscountCodeReference.svg DiscountCodeReference]]
}
interface OrderDiscountCodeRemovedMessage [[OrderDiscountCodeRemovedMessage.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]]
discountCode: [[DiscountCodeReference.svg DiscountCodeReference]]
}
interface OrderDiscountCodeStateSetMessage [[OrderDiscountCodeStateSetMessage.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]]
discountCode: [[DiscountCodeReference.svg DiscountCodeReference]]
state: [[DiscountCodeState.svg DiscountCodeState]]
oldState: [[DiscountCodeState.svg DiscountCodeState]]
}
interface OrderEditAppliedMessage [[OrderEditAppliedMessage.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]]
edit: [[OrderEdit.svg OrderEdit]]
result: [[OrderEditApplied.svg OrderEditApplied]]
}
interface OrderImportedMessage [[OrderImportedMessage.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]]
order: [[Order.svg Order]]
}
interface OrderLineItemAddedMessage [[OrderLineItemAddedMessage.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]]
lineItem: [[LineItem.svg LineItem]]
addedQuantity: Long
}
interface OrderLineItemDiscountSetMessage [[OrderLineItemDiscountSetMessage.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]]
lineItemId: String
lineItemKey: String
discountedPricePerQuantity: [[DiscountedLineItemPriceForQuantity.svg List<DiscountedLineItemPriceForQuantity>]]
totalPrice: [[Money.svg Money]]
taxedPrice: [[TaxedItemPrice.svg TaxedItemPrice]]
taxedPricePortions: [[MethodTaxedPrice.svg List<MethodTaxedPrice>]]
}
interface OrderLineItemDistributionChannelSetMessage [[OrderLineItemDistributionChannelSetMessage.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]]
lineItemId: String
lineItemKey: String
distributionChannel: [[ChannelReference.svg ChannelReference]]
}
interface OrderLineItemRemovedMessage [[OrderLineItemRemovedMessage.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]]
lineItemId: String
lineItemKey: String
removedQuantity: Long
newQuantity: Long
newState: [[ItemState.svg List<ItemState>]]
newTotalPrice: [[CentPrecisionMoney.svg CentPrecisionMoney]]
newTaxedPrice: [[TaxedItemPrice.svg TaxedItemPrice]]
newPrice: [[Price.svg Price]]
newShippingDetail: [[ItemShippingDetails.svg ItemShippingDetails]]
}
interface OrderPaymentStateChangedMessage [[OrderPaymentStateChangedMessage.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]]
paymentState: [[PaymentState.svg PaymentState]]
oldPaymentState: [[PaymentState.svg PaymentState]]
}
interface OrderPurchaseOrderNumberSetMessage [[OrderPurchaseOrderNumberSetMessage.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]]
purchaseOrderNumber: String
oldPurchaseOrderNumber: String
}
interface OrderReturnShipmentStateChangedMessage [[OrderReturnShipmentStateChangedMessage.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]]
returnItemId: String
returnShipmentState: [[ReturnShipmentState.svg ReturnShipmentState]]
}
interface OrderShipmentStateChangedMessage [[OrderShipmentStateChangedMessage.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]]
shipmentState: [[ShipmentState.svg ShipmentState]]
oldShipmentState: [[ShipmentState.svg ShipmentState]]
}
interface OrderShippingAddressSetMessage [[OrderShippingAddressSetMessage.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]]
address: [[Address.svg Address]]
oldAddress: [[Address.svg Address]]
}
interface OrderShippingInfoSetMessage [[OrderShippingInfoSetMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
oldShippingInfo: [[ShippingInfo.svg ShippingInfo]]
}
interface OrderShippingRateInputSetMessage [[OrderShippingRateInputSetMessage.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]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
oldShippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
}
interface OrderStateChangedMessage [[OrderStateChangedMessage.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]]
orderState: [[OrderState.svg OrderState]]
oldOrderState: [[OrderState.svg OrderState]]
}
interface OrderStateTransitionMessage [[OrderStateTransitionMessage.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]]
state: [[StateReference.svg StateReference]]
oldState: [[StateReference.svg StateReference]]
force: Boolean
}
interface OrderStoreSetMessage [[OrderStoreSetMessage.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]]
store: [[StoreKeyReference.svg StoreKeyReference]]
}
interface ParcelAddedToDeliveryMessage [[ParcelAddedToDeliveryMessage.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]]
delivery: [[Delivery.svg Delivery]]
parcel: [[Parcel.svg Parcel]]
shippingKey: String
}
interface ParcelItemsUpdatedMessage [[ParcelItemsUpdatedMessage.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]]
parcelId: String
deliveryId: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
oldItems: [[DeliveryItem.svg List<DeliveryItem>]]
shippingKey: String
}
interface ParcelMeasurementsUpdatedMessage [[ParcelMeasurementsUpdatedMessage.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]]
deliveryId: String
parcelId: String
measurements: [[ParcelMeasurements.svg ParcelMeasurements]]
shippingKey: String
}
interface ParcelRemovedFromDeliveryMessage [[ParcelRemovedFromDeliveryMessage.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]]
deliveryId: String
parcel: [[Parcel.svg Parcel]]
shippingKey: String
}
interface ParcelTrackingDataUpdatedMessage [[ParcelTrackingDataUpdatedMessage.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]]
deliveryId: String
parcelId: String
trackingData: [[TrackingData.svg TrackingData]]
shippingKey: String
}
interface ReturnInfoAddedMessage [[ReturnInfoAddedMessage.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]]
returnInfo: [[ReturnInfo.svg ReturnInfo]]
}
interface ReturnInfoSetMessage [[ReturnInfoSetMessage.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]]
returnInfo: [[ReturnInfo.svg List<ReturnInfo>]]
}
OrderMessage --> CustomLineItemStateTransitionMessage #blue;text:blue : "type : CustomLineItemStateTransition"
OrderMessage --> DeliveryAddedMessage #blue;text:blue : "type : DeliveryAdded"
OrderMessage --> DeliveryAddressSetMessage #blue;text:blue : "type : DeliveryAddressSet"
OrderMessage --> DeliveryItemsUpdatedMessage #blue;text:blue : "type : DeliveryItemsUpdated"
OrderMessage --> DeliveryRemovedMessage #blue;text:blue : "type : DeliveryRemoved"
OrderMessage --> LineItemStateTransitionMessage #blue;text:blue : "type : LineItemStateTransition"
OrderMessage --> OrderBillingAddressSetMessage #blue;text:blue : "type : OrderBillingAddressSet"
OrderMessage --> OrderCreatedMessage #blue;text:blue : "type : OrderCreated"
OrderMessage --> OrderCustomFieldAddedMessage #blue;text:blue : "type : OrderCustomFieldAdded"
OrderMessage --> OrderCustomFieldChangedMessage #blue;text:blue : "type : OrderCustomFieldChanged"
OrderMessage --> OrderCustomFieldRemovedMessage #blue;text:blue : "type : OrderCustomFieldRemoved"
OrderMessage --> OrderCustomLineItemAddedMessage #blue;text:blue : "type : OrderCustomLineItemAdded"
OrderMessage --> OrderCustomLineItemDiscountSetMessage #blue;text:blue : "type : OrderCustomLineItemDiscountSet"
OrderMessage --> OrderCustomLineItemQuantityChangedMessage #blue;text:blue : "type : OrderCustomLineItemQuantityChanged"
OrderMessage --> OrderCustomLineItemRemovedMessage #blue;text:blue : "type : OrderCustomLineItemRemoved"
OrderMessage --> OrderCustomTypeRemovedMessage #blue;text:blue : "type : OrderCustomTypeRemoved"
OrderMessage --> OrderCustomTypeSetMessage #blue;text:blue : "type : OrderCustomTypeSet"
OrderMessage --> OrderCustomerEmailSetMessage #blue;text:blue : "type : OrderCustomerEmailSet"
OrderMessage --> OrderCustomerGroupSetMessage #blue;text:blue : "type : OrderCustomerGroupSet"
OrderMessage --> OrderCustomerSetMessage #blue;text:blue : "type : OrderCustomerSet"
OrderMessage --> OrderDeletedMessage #blue;text:blue : "type : OrderDeleted"
OrderMessage --> OrderDiscountCodeAddedMessage #blue;text:blue : "type : OrderDiscountCodeAdded"
OrderMessage --> OrderDiscountCodeRemovedMessage #blue;text:blue : "type : OrderDiscountCodeRemoved"
OrderMessage --> OrderDiscountCodeStateSetMessage #blue;text:blue : "type : OrderDiscountCodeStateSet"
OrderMessage --> OrderEditAppliedMessage #blue;text:blue : "type : OrderEditApplied"
OrderMessage --> OrderImportedMessage #blue;text:blue : "type : OrderImported"
OrderMessage --> OrderLineItemAddedMessage #blue;text:blue : "type : OrderLineItemAdded"
OrderMessage --> OrderLineItemDiscountSetMessage #blue;text:blue : "type : OrderLineItemDiscountSet"
OrderMessage --> OrderLineItemDistributionChannelSetMessage #blue;text:blue : "type : OrderLineItemDistributionChannelSet"
OrderMessage --> OrderLineItemRemovedMessage #blue;text:blue : "type : OrderLineItemRemoved"
OrderMessage --> OrderPaymentStateChangedMessage #blue;text:blue : "type : OrderPaymentStateChanged"
OrderMessage --> OrderPurchaseOrderNumberSetMessage #blue;text:blue : "type : OrderPurchaseOrderNumberSet"
OrderMessage --> OrderReturnShipmentStateChangedMessage #blue;text:blue : "type : OrderReturnShipmentStateChanged"
OrderMessage --> OrderShipmentStateChangedMessage #blue;text:blue : "type : OrderShipmentStateChanged"
OrderMessage --> OrderShippingAddressSetMessage #blue;text:blue : "type : OrderShippingAddressSet"
OrderMessage --> OrderShippingInfoSetMessage #blue;text:blue : "type : OrderShippingInfoSet"
OrderMessage --> OrderShippingRateInputSetMessage #blue;text:blue : "type : OrderShippingRateInputSet"
OrderMessage --> OrderStateChangedMessage #blue;text:blue : "type : OrderStateChanged"
OrderMessage --> OrderStateTransitionMessage #blue;text:blue : "type : OrderStateTransition"
OrderMessage --> OrderStoreSetMessage #blue;text:blue : "type : OrderStoreSet"
OrderMessage --> ParcelAddedToDeliveryMessage #blue;text:blue : "type : ParcelAddedToDelivery"
OrderMessage --> ParcelItemsUpdatedMessage #blue;text:blue : "type : ParcelItemsUpdated"
OrderMessage --> ParcelMeasurementsUpdatedMessage #blue;text:blue : "type : ParcelMeasurementsUpdated"
OrderMessage --> ParcelRemovedFromDeliveryMessage #blue;text:blue : "type : ParcelRemovedFromDelivery"
OrderMessage --> ParcelTrackingDataUpdatedMessage #blue;text:blue : "type : ParcelTrackingDataUpdated"
OrderMessage --> ReturnInfoAddedMessage #blue;text:blue : "type : ReturnInfoAdded"
OrderMessage --> ReturnInfoSetMessage #blue;text:blue : "type : ReturnInfoSet"
@enduml
|
db7a1d9e6de47caef1b4035f7457ae3d19544da3 | 967db7f88bdf0e5cb8feca9571b9e85175f7bcc8 | /docs/Solution/Control/Security/Encryption/Logical.puml | b0f3f5cc2f91aa6140790d27251843de23e2701a | [] | no_license | CAADE/edgeville | fd0053d749c259029ef4c7791210663ace87be21 | 6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65 | refs/heads/master | 2020-03-28T06:11:31.554585 | 2019-05-02T17:37:03 | 2019-05-02T17:37:03 | 147,819,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 405 | puml | @startuml
rectangle "Diagram TBD"
@enduml
package "User" #ffffcc {
}
package "Used" #ffffcc {
}
package "Security Layer/Encryption" #lightblue {
interface "Security Layer/Encryption" {
}
CLI ()-- "Security Layer/Encryption"
REST ()-- "Security Layer/Encryption"
Web ()-- "Security Layer/Encryption"
}
User --> "Security Layer/Encryption"
"Security Layer/Encryption" --> Used
|
88d3c681dbc0cc82adbf47b60f95a8917411aa60 | c11d20c965bd2807d1b4584ce4f2f2958a87d045 | /documentation/extensions.plantuml | 547b7bf15be38503b3b9d4e982f44e71c1cd4452 | [
"MIT"
] | permissive | raphaelhetzel/local-campus-app | b395f68639ca728db2e86f6708c8ad753831da46 | eb1f7f98d9a2a736fc7b9d5fe1d5c8ef14db1ce6 | refs/heads/master | 2020-04-26T06:57:40.019392 | 2019-03-01T23:42:16 | 2019-03-01T23:56:28 | 173,381,066 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,250 | plantuml | @startuml
package "Extension Interface" <<Rectangle>> {
abstract class AddPostFragment {
Context getContext()
AddPostDataProvider getAddPostDataProvider()
void finishActivity()
}
abstract class ShowPostFragment {
Context getContext()
ShowPostDataProvider getDataProivider()
}
interface ShowPostDataProvider {
LiveData<Post> getPost();
LiveData<List<PostExtension>> getPostExtensions();
void addPostExtension(String data);
String getCurrentUser();
void upVote();
void downVote();
}
interface AddPostDataProvider {
void addPost(String data);
}
ShowPostFragment --> ShowPostDataProvider
AddPostFragment --> AddPostDataProvider
}
package "Extension" <<Rectangle>> {
class Registry <<package de.tum.localcampusextension>> {
{static} Class<ShowPostFragment> showPostFragmentClass
{static} Class<AddPostFragment> addPostFragmentClass
{static} String typeId
{static} String typeDescription
}
class ExtensionShowPostFragment {
void onCreateView()
}
class ExtensionAddPostFragment {
void onCreateView()
}
ExtensionShowPostFragment --|> ShowPostFragment
ExtensionAddPostFragment --|> AddPostFragment
Registry --> ExtensionShowPostFragment
Registry --> ExtensionAddPostFragment
}
@enduml |
a3784879991cfd5a1b091211f699faa525adc081 | 1cf4490d48f50687a8f036033c37d76fec39cd2b | /src/main/java/global/skymind/training/intermediate/oop/demo/demo01_object_creation/with_constructor/with_constructor.plantuml | 18b18e12cd2045ac377bf3d45e48b4c85ff0e574 | [
"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 | 996 | plantuml | @startuml
title __WITH_CONSTRUCTOR's Class Diagram__\n
namespace global.skymind {
namespace training.intermediate.oop.demo.demo01_object_creation {
namespace with_constructor {
class global.skymind.training.intermediate.oop.demo.demo01_object_creation.with_constructor.Demo02_ObjectWithConstructor {
{static} + main()
}
}
}
}
namespace global.skymind {
namespace training.intermediate.oop.demo.demo01_object_creation {
namespace with_constructor {
class global.skymind.training.intermediate.oop.demo.demo01_object_creation.with_constructor.Person {
~ age : int
~ name : String
+ Person()
~ eat()
~ intro()
~ walk()
}
}
}
}
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
|
b8855640f5b461ac1391cbd984d8d3002942b33c | 0bc7bf29514e3fa3c2b54d70c6f3bcc6daaff6ab | /cardreader.provider.usb.identos/doc/plantuml/UIDECRP/IdentosCardReaderProvider.plantuml | 732279cd9c7bfbec8561a92efbfb6c70d0caa542 | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderProvider-USB-Identos-Android | 7e74fb4ab0980f27e9288e3b9f2e3e9477c2c3a7 | bbbb80694ade1139b3f004fd4e33115274c738d1 | refs/heads/master | 2022-01-12T21:04:35.091433 | 2022-01-07T07:24:23 | 2022-01-07T07:24:23 | 213,916,220 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 366 | plantuml | @startuml
package de.gematik.ti.cardreader.provider.usb.identos.control {
class IdentosCardReaderProvider {
- providerDescriptor : ProviderDescriptor
+ IdentosCardReaderProvider()
+ getCardReaderController()
+ getDescriptor()
}
}
IdentosCardReaderProvider -up-|> ICardReaderControllerProvider
@enduml
|
b5738d9c2053431204734aff9230e401efc0665d | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P3/STUB_Yeste_Guerrero_Cabezas/out/test/test/org/concordion/internal/runner/runner.plantuml | 3d9974cb33cb3175936062a6089f840831967d33 | [
"WTFPL"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,617 | plantuml | @startuml
title __RUNNER's Class Diagram__\n
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.runner {
class CachedResultsUnitTest {
{static} + EXAMPLE_1_NAME : String
{static} + EXAMPLE_2_NAME : String
- runResults : RunResultsCache
+ before()
+ testCacheInProgress()
+ testCacheInProgressWithExample()
+ testNotFoundInCache()
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.runner {
class JustAnotherClass {
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.runner {
class DefaultConcordionRunnerTest {
+ systemErrRule : SystemErrRule
+ returnsFailureOnJUnitFailure()
+ returnsSuccessOnJUnitSuccess()
+ returnsIgnoredOnJUnitSuccessWhenExpectedToFail()
+ returnsIgnoredOnJUnitSuccessWhenUnimplemented()
+ throwsAssertionErrorOnJUnitFailureWhenExpectedToFail()
+ throwsAssertionErrorOnJUnitFailureWhenUnimplemented()
+ doesNotThrowExceptionOnAssertionErrorWhenExpectedToPass()
+ throwsExceptionOnCheckedException()
+ throwsWrappedExceptionOnThrowable()
+ throwsRuntimeExceptionOnRuntimeException()
+ returnsIgnoredOnJUnitSuccessWhenIgnoredCountGreaterThanZero()
+ logsExceptions()
+ doesNotLogAssertionErrors()
+ doesNotLogAssertionErrorsWhenExpectedToFailEither()
+ doesNotLogAssertionErrorsWhenUnimplementedEither()
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.runner {
class UnannotatedClass {
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.runner {
class ExpectedToFailClass {
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.runner {
class UnimplementedClass {
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.runner {
class TestDefaultConcordionRunner {
# decodeJUnitResult()
}
}
}
}
package org.concordion {
package org.concordion.internal {
package org.concordion.internal.runner {
class StubResult {
{static} - serialVersionUID : long
{static} + SUCCESS : StubResult
{static} + FAILURE : StubResult
- failures : List<Failure>
- ignoreCount : int
+ withFailure()
+ withIgnoreCount()
+ wasSuccessful()
+ getFailures()
+ getIgnoreCount()
}
}
}
}
CachedResultsUnitTest +-down- JustAnotherClass
DefaultConcordionRunnerTest o-- TestDefaultConcordionRunner : runner
DefaultConcordionRunnerTest +-down- UnannotatedClass
DefaultConcordionRunnerTest +-down- ExpectedToFailClass
DefaultConcordionRunnerTest +-down- UnimplementedClass
DefaultConcordionRunnerTest +-down- TestDefaultConcordionRunner
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
|
0a1619994d3b65594176459af8962b3b020691fd | fee23f80a2a94bfaed84b06d0f9d8278ddd3f0a4 | /paros_UML/class.plantuml | 929668bb605ecf19b51738114924adac78672cfc | [] | no_license | blxsheep/SoftArch_KMITL | b6962ab02fa9e3508fc126bdbf75d4d8ed665d42 | 52ada94ec1914fd4310c5d5da0940b45a9f8ee8a | refs/heads/main | 2023-08-29T14:59:25.217820 | 2021-11-04T05:24:08 | 2021-11-04T05:24:08 | 401,194,261 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,317 | plantuml | @startuml Paros
class Paros {
log :Log
cmdLine : Commandline
+ static void main(String[] args)
- void init(String[] args)
- void run()
- void runCommandLine()
- void runGUI()
- void showLicense()
- void checkUpdate()
}
class Constant {
String PROGRAM_NAME
String PROGRAM_VERSION
long VERSION_TAG
+ static String getEyeCatcher()
+ static void setEyeCatcher(String eyeCatcher)
+ static void setSP(boolean isSP)
+ static boolean isSP()
+ Constant()
+ static Constant getInstance()
+ static boolean isWindows()
+ static boolean isLinux()
}
Paros ..> Constant : use
abstract class FileXML {
# Document doc
# DocumentBuilder docBuilder
# DocumentBuilderFactory docBuilderFactory
+ FileXML(String rootElementName)
+ Document getDocument()
}
class Model {
- Session session
- OptionsParam optionsParam
- Database db
+ void init()
+ Database getDb()
+ void moveSessionDb(String destFile)
}
class View {
- MainFrame mainFrame
- HttpPanel requestPanel
- HttpPanel responsePanel
+ void postInit()
+ int showConfirmDialog(String msg)
+ int showYesNoCancelDialog(String msg)
}
class Control {
- static Log log
- Proxy proxy
- MenuFileControl menuFileControl
+ Proxy getProxy()
+ MenuFileControl getMenuFileControl()
+ MenuToolsControl getMenuToolsControl()
}
class session {
- Model model
- String fileName
- String sessionDesc
+ void discard()
+ String getSessionDesc()
+ long getSessionId()
+ Session(Model model)
}
class OptionsParam {
- ProxyParam proxyParam
- ConnectionParam connectionParam
- OptionsParamView viewParam
+ ProxyParam getProxyParam()
+ void setProxyParam(ProxyParam proxyParam)
+ OptionsParamView getViewParam()
}
class Database {
- DatabaseServer databaseServer
- TableHistory tableHistory
- TableSession tableSession
+ DatabaseServer getDatabaseServer()
- void setDatabaseServer(DatabaseServer databaseServer)
- void setTableHistory(TableHistory tableHistory)
}
interface ViewDelegate{
+ MainFrame getMainFrame()
+ SiteMapPanel getSiteTreePanel()
+ OutputPanel getOutputPanel()
}
abstract class AbstractControl {
# ExtensionLoader loader
# Model model
# View view
+ AbstractControl(Model model, View view)
+ ExtensionLoader getExtensionLoader()
# void loadExtension()
}
class Proxy {
- Model model
- ProxyServer proxyServer
- ProxyServerSSL proxyServerSSL
+ void startServer()
+ void stopServer()
+ void setSerialize(boolean serialize)
}
abstract class AbstractParam {
- FileConfiguration config
+ void load(String fileName)
+ void load()
+ FileConfiguration getConfig()
}
class ProxyParam {
- static final String USE_REVERSE_PROXY
- static final String REVERSE_PROXY_IP
- static final String REVERSE_PROXY_HTTP_PORT
+ String getProxyIp()
+ void setProxyIp(String proxyIp)
+ int getProxyPort()
}
class ProxyServer{
# boolean isProxyRunning
# ProxyParam proxyParam
# ConnectionParam connectionParam
+ boolean isEnableCacheProcessing()
+ void setEnableCacheProcessing(boolean enableCacheProcessing)
+ boolean isSerialize()
}
class ProxyServerSSL{
- static SSLConnector ssl
# ServerSocket createServerSocket(String ip, int port)
# ProxyThread createProxyProcess(Socket clientSocket)
}
class ProxyThread {
# ProxyServer parentServer
# ProxyParam proxyParam
# ConnectionParam connectionParam
+ void start()
- void beginSSL()
+ void run()
}
class HttpUtil {
+ static void sleep(int ms)
+ static void closeServerSocket(ServerSocket socket)
+ static void closeSocket(Socket socket)
}
class MenuFileControl{
- View view = null;
- Model model = null;
- Control control = null;
+ MenuFileControl(Model model, View view, Control control)
+ void exit()
+ void newSession(boolean isPromptNewSession)
}
class MenuToolsControl{
- View view
- Model model
- Control control
+ MenuToolsControl()
+ MenuToolsControl(Model model, View view, Control control)
+ void options()
}
Paros ..> Model : use
Paros ..> View : use
Paros ..> Control : use
Model *-- session
Model o-- OptionsParam
Model o-- Database
View ..|> ViewDelegate :implement
Control --|> AbstractControl
Control o-- Proxy
Control o-- session
session --|> FileXML
OptionsParam --|> AbstractParam
OptionsParam o-- ProxyParam
AbstractControl o-- Model
AbstractControl o-- View
Proxy o-- Model
Proxy o-- ProxyServer
Proxy o-- ProxyServerSSL
ProxyParam --|> AbstractParam
ProxyServer o-- ProxyParam
ProxyServerSSL --|> ProxyServer
ProxyServerSSL ..> ProxyThread : Use
ProxyThread o-- ProxyServer
ProxyThread o-- ProxyParam
ProxyServer ..> HttpUtil
Control *-- MenuFileControl
Control *-- MenuToolsControl
MenuFileControl o-- View
MenuFileControl o-- Model
MenuFileControl ..> session :use
MenuToolsControl o-- View
MenuToolsControl o-- Model
@enduml |
121769d7bd4ff31587d48f399d4f8a890a176ed0 | 973dcef38fb285cf4f14a2e937af23e26a05564b | /docs/Solution/Services/doc-node-agent/Logical.puml | 70fa3fe70956b6d53b0b68909212b94253aa170f | [] | no_license | CAADE/CAADE | 6a0d37b31e77fd00eeb1ad056d17d484585cad96 | 3873453a14359879a146f1d5897554ae2e94bd96 | refs/heads/master | 2021-06-09T05:28:17.894441 | 2019-06-07T06:08:10 | 2019-06-07T06:08:10 | 104,078,969 | 1 | 0 | null | 2020-08-20T15:13:40 | 2017-09-19T13:32:11 | JavaScript | UTF-8 | PlantUML | false | false | 211 | puml | @startuml
package "doc-node-agent" #lightblue {
interface "doc-node-agent" {
}
CLI ()-- "doc-node-agent" : 5000
REST ()-- "doc-node-agent" : 3000
Web ()-- "doc-node-agent" : 80
}
@enduml
|
78f6b41324c36e85de34d36ad5c2661d2c411ccc | aae1f65a5158a43ff1685b1a06d9eff12b049e4b | /src/main/java/ex45/exercise45_diagram.puml | c6f12651732764b13cc7fcad5639edd808fae0d6 | [] | no_license | alex-williams-git/williams-cop3330-assignment3 | f86dbf5defbafe8ceb820c1b38093dba131ed15a | eb1012dc8f3dc3cf2df0c449be82fc0edc2f5028 | refs/heads/master | 2023-08-17T20:06:11.233264 | 2021-10-12T00:07:11 | 2021-10-12T00:07:11 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 381 | puml | @startuml
'https://plantuml.com/class-diagram
class main{
String inputFile
String outputFile
String key
String replacement
replaceWord(inputFile, outputFile, key, replacement)
}
class scanInput{
Scanner scan
String ret
return ret
}
class replaceWord{
BufferedWriter writer
Scanner scan
String curLine
while(scan.hasNextLine())
}
replaceWord *-- main
scanInput *-- main
@enduml |
2057fe8173e9619807e35a8081358d0542b2e320 | d3a876dfe2851c165719340252ac30e60912f6e6 | /bg-manager/bg-designPattern/src/main/java/com/mhm/struct/composite/Composite.puml | 946fb0657bf19099fc9fdefa686e70f40c877e9e | [] | no_license | 289562326/bigdata_mhm | 846af37dbc8a00580b3c0424f1cebc21d659c672 | 210636d2ea350c0228deccf1485d3d1a6eb4a39c | refs/heads/master | 2022-07-10T14:41:56.081002 | 2021-04-29T11:33:58 | 2021-04-29T11:33:58 | 190,759,465 | 0 | 0 | null | 2022-06-17T03:33:35 | 2019-06-07T14:42:09 | Java | UTF-8 | PlantUML | false | false | 316 | puml | @startuml
Component <|.. Composite
Component <|.. Leaf
interface Component{
+add(Component c):void
+remove(Component c):void
+getChildren(int index):Component
+operation():void
}
class Composite {
-List<Component> list;
+operation(for...):void
}
class Leaf{
operation():void
}
@enduml |
ee19ff8025a61873c3a54cab852946942c49d67e | 4d97f70d108affdf4620d2275e4826953dad05de | /de.gematik.ti.test.utils/doc/plantuml/TESTUTILS/apduparser.plantuml | 9251d14f654de6ffba671e80c3b7b05eba2cf983 | [
"Apache-2.0"
] | permissive | gematik/ref-Ti-Test-Utils | 8bfbf94bd7cc29cd7a82120dfde9a47d5e541926 | 7a7b0c75d7e82147439fa4643bf4fe0321c163a0 | refs/heads/master | 2022-02-15T19:34:37.818744 | 2022-01-07T07:24:39 | 2022-01-07T07:24:39 | 233,038,026 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 250 | plantuml | @startuml
package de.gematik.ti.test.utils.parser {
class ApduParser {
{static} - LOG : Logger
- ApduParser()
{static} + toCommandApdu()
{static} + toCommandApdu()
{static} - parse()
}
}
@enduml
|
a744e864547523a40bef5b52ed7c8d413cc2d8cf | 1227663ed3c48bca74c62ecef7b88f961367a5ac | /diagrams/ConstrainedSLAM/ConstrainedSLAM.plantuml | 65aaec176268b3e16f471005e12e9dd2669ebf9b | [] | no_license | caomw/SLAM-6 | 01b175a4ef956a2dfaaec24450b8d3263b454892 | 29f47a5c76284a680a957a176d671c876f74cd57 | refs/heads/master | 2021-01-15T15:26:15.455668 | 2015-04-04T09:07:07 | 2015-04-04T09:07:07 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 394 | plantuml | interface ISLAM
interface IPointTracker {
provides tracks
of feature points
}
interface IBASolver {
solving of BA problem
}
interface IScene3D {
combining and
post processing
of the received results
}
class CCOnstrainedSLAM
ISLAM <|-- CCOnstrainedSLAM
CCOnstrainedSLAM *-- IPointTracker
CCOnstrainedSLAM *-- IBASolver
CCOnstrainedSLAM *-- IScene3D
|
e95f4371177224994baf5cbed973bf2deac8a3d7 | 6a75af8c09643fa50a569db459c55ab5df2abc22 | /uml/diagram.puml | 30ac6cea5897b4816f666ead0612ffa110f6b1d3 | [] | no_license | Sachman19/mishra-0172-a5 | 52b70f8e58723a180d81082fb92f41af5de8c30a | 099978bd4ef866c82807355609c4ab3e5af33924 | refs/heads/master | 2023-06-26T14:01:33.806754 | 2021-07-29T04:28:46 | 2021-07-29T04:28:46 | 389,451,463 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 356 | puml | @startuml
'https://plantuml.com/class-diagram
class export
class item
interface arrayList
class importer
importer -> arrayList
arrayList -- item
arrayList -> export
class export {
item[] arrayList
+exportTSV()
+exportHTML()
}
class item {
serial
price
name
+setter()
+getter()
}
class importer {
filename
item[] importArrayList
+import()
}
@enduml |
080b2acd9e3d66a3cf819e73b516e5d18de19eb8 | f843c9d5922c2ef92cc3ca50f20f44184ed27ef8 | /src/main/java/Composite/Graphic/README.puml | 78637027865cfceac77c4be636f148fdcd66ac27 | [] | no_license | yvanross/LOG121-GOF-exemples | c80a4d1b29f0b953e4666e100a82d4fde1923bea | 7cff56d019b40901ed54b85a62d69317cf61da59 | refs/heads/master | 2023-05-04T07:39:48.742354 | 2021-05-21T13:43:50 | 2021-05-21T13:43:50 | 261,219,115 | 2 | 25 | null | 2021-01-25T22:44:14 | 2020-05-04T15:11:44 | Java | UTF-8 | PlantUML | false | false | 994 | puml | @startuml Diagramme de classe
skinparam style strictuml
interface Graphic {
print(): void
}
class Ellipse implements Graphic{
print(): void
}
class CompositeGraphic implements Graphic{
print(): void
}
CompositeGraphic *-- "1..*" Graphic : composed of
@enduml
@startuml Diagramme de séquence
skinparam style strictuml
participant CompositeDemo as m
participant "ellipse1:Ellipse" as e1
participant "ellipse2:Ellipse" as e2
participant "ellipse3:Ellipse" as e3
participant "ellipse4:Ellipse" as e4
participant "graphic2:CompositeGraphic" as g2 <<Graphic>>
participant "graphic3:CompositeGraphic" as g3 <<Graphic>>
participant "graphic1:CompositeGraphic" as g1 <<Graphic>>
->m: main()
m-->e1**: create
m-->e2**: create
m-->e3**: create
m-->e4**: create
m-->g2**: create
m->g2: add(ellipse1)
m->g2: add(ellipse2)
m->g2: add(ellipse3)
m-->g3**: create
m->g3: add(ellipse4)
m-->g1**: create
m->g1: add(graphic2)
m->g1: add(graphic3)
m->g1: add(ellipse1)
m->g1: print()
@enduml |
8924275d7843e20fc18fcd813bd1fb9316af73ba | df4b8c49d650a6d592a3c7479070cb716317af62 | /Biblioteca.Diagramas/Entidades/Autor.puml | 021521bfeb9a69bfc27df884d71a0800c5c91c2f | [] | no_license | p-cuadros/BiblioCore2019 | be932b65f5c1f40b449cae517c4b770e61bcd4b9 | 94c29c1808f5df63a9c7cf6c3c6b8a79f32fdce4 | refs/heads/master | 2020-05-18T04:23:47.773014 | 2020-02-27T02:33:03 | 2020-02-27T02:33:03 | 184,171,812 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 108 | puml | @startuml
class Autor {
+ IDAutor : int <<get>> <<set>>
+ Nombre : string <<get>> <<set>>
}
@enduml
|
c09b89416f078cd0eb1f8c56ee1b70c9b7d920b0 | 85941aa70df3b2bd4a9e2d2f389067a8175da56e | /docs/plantUML/inheritance-applicant-actions.puml | 07722dd5c9066371a55ad89774cf8df9e851bf6d | [] | no_license | chuyunshen/recruitment-system | ce94a33772d2d3bb51824eca98c99d5971af0cde | d4b625f77a12401666052e9cd361becfd7cb6e0f | refs/heads/master | 2020-11-29T01:22:53.328872 | 2019-12-24T11:18:19 | 2019-12-24T11:18:19 | 229,976,040 | 0 | 2 | null | 2019-12-24T16:55:17 | 2019-12-24T16:55:17 | null | UTF-8 | PlantUML | false | false | 2,816 | puml | @startuml
title: Applicant Actions
footer Page 3 of 9
Action <|-- AbstractAction
AbstractAction <|-- ApplicantAction
ApplicantAction <|-- AddRefereeAction
ApplicantAction <|-- ApplyForJobAction
ApplicantAction <|-- GetAccountCreationDateAction
ApplicantAction <|-- GetAllOpenJobPostingsAction
ApplicantAction <|-- GetNumDaysSinceLastApplClosedAction
ApplicantAction <|-- GetApplicationsAction
ApplicantAction <|-- ReadDocumentAction
ApplicantAction <|-- UploadDocumentAction
ApplicantAction <|-- WithdrawApplicationAction
interface Action {
+ collectParameters(): void
+ performAction(): void
+ getDescription(): String
+ getShortcut(): String
}
abstract class AbstractAction {
- description: String
- shortcut: String
+ getDescription(): String
+ getShortcut(): String
}
abstract class ApplicantAction {
# Applicant applicant
+ ApplicantAction(shortcut: String, description: String, applicant: Applicant)
}
class AddRefereeAction {
- allReferees: List<User>
- referee: Referee
+ AddRefereeAction(applicant: Applicant)
+ collectParameters(): void
+ performAction(): void
}
class ApplyForJobAction {
- jobId: int
- today: Date
+ ApplyForJobAction(applicatn: Applicant, today Date)
+ collectParameters(): void
+ performAction(): void
}
class GetAccountCreationDateAction {
+ GetAccountCreationDateAction(applicant: Applicant)
+ collectParameters(): void
+ performAction(): void
}
class GetAllOpenJobPostingsAction {
- tagToJobs: Map<String, List<JobPosting>>
- tagChoice: String
- allOpenJobPostings: List<JobPosting>
- sortingByTagChoice: String
+ GetAllOpenJobPostingsAction(applicant: Applicant)
+ collectParameters(): void
+ performAction(): void
- sortJobPostingsByTags(): void
}
class GetNumDaysSinceLastApplClosedAction {
+ GetNumDaysSinceLastApplClosedAction(applicant: Applicant)
+ collectParameters(): void
+ performAction(): void
}
class GetApplicationsAction {
- CURRENT: String
- PAST: String
- applicationType: String
+ GetApplicationsAction(applicant: Applicant)
+ collectParameters(): void
+ performAction(): void
}
class ReadDocumentAction {
- document: Document
+ ReadDocumentAction(applicant: Applicant)
+ collectParameters(): void
+ performAction(): void
}
class UploadDocumentAction {
- userName: String
- docName: String
- filePath: String
- {static} PREFIX: String
+ UploadDocumentAction(applicant: Applicant)
+ collectParameters(): void
+ performAction(): void
}
class WithdrawApplicationAction {
- today: Date
- applicationId: int
+ WithdrawApplicationAction(applicant: Applicant, today: Date)
+ collectParameters(): void
+ performAction(): void
}
@enduml
|
d8f868ec0e2b3b815598f4ec7d5e41d948bdb4aa | 44a89eb59de29515b1c5ccfc2d7a881d1c22950b | /MyTextAdventureGame.plantuml | 3b6de21ce123c7a501502b7333ab01eb3d9d8816 | [] | no_license | AlexandraCristetiu/MyTextAdventureGame | c97b822e7abc692039e9f2963701bf34fd857d38 | 117d186c9a5b01c5b645e5e435df0d660d7059f2 | refs/heads/master | 2020-05-27T22:53:18.026650 | 2019-06-10T08:46:58 | 2019-06-10T08:46:58 | 188,812,054 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 632 | plantuml | @startuml
title __MYTEXTADVENTUREGAME's Class Diagram__\n
package helper {
class ApplicationConstants {
}
}
package sample {
class Controller {
}
}
package model {
class GameBoard {
}
}
package sample {
class Main {
}
}
package helper {
abstract class SqliteWrapper {
}
}
package helper {
class Utility {
}
}
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
|
b1953f10ff107e410a02737c6599382aca612ebd | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Manipulators/Move/MoveItemHandler.puml | 43b4f8ad47b4bf9a6564d2ddc30d885779fd2603 | [] | 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,281 | puml | @startuml
class MoveItemHandler {
m_Grabbing : bool
+ allowTrackSwitch : bool <<get>>
m_GrabbedModalUndoGroup : int
+ MoveItemHandler(state:WindowState)
+ Grab(items:IEnumerable<ITimelineItem>, referenceTrack:TrackAsset) : void
+ Grab(items:IEnumerable<ITimelineItem>, referenceTrack:TrackAsset, mousePosition:Vector2) : void
+ Drop() : void
IsValidDrop() : bool
Cancel() : void
Done() : void
+ start : double <<get>>
+ end : double <<get>>
+ ShouldSnapTo(snappable:ISnappable) : bool
+ UpdateTrackTarget(track:TrackAsset) : void
+ OnGUI(evt:Event) : void
+ OnAttractedEdge(attractable:IAttractable, manipulateEdges:ManipulateEdges, edge:AttractedEdge, time:double) : void
+ RefreshPreviewItems() : void
{static} ValidateItemDrag(itemsGroup:ItemsPerTrack) : bool
+ OnTrackDetach() : void
}
class "HashSet`1"<T> {
}
IAttractable <|-- MoveItemHandler
IAttractionHandler <|-- MoveItemHandler
MoveItemHandler --> "m_LeftMostMovingItems" MovingItems
MoveItemHandler --> "m_RightMostMovingItems" MovingItems
MoveItemHandler --> "m_ItemGUIs<TimelineItemGUI>" "HashSet`1"
MoveItemHandler --> "m_ItemsGroup" ItemsGroup
MoveItemHandler --> "targetTrack" TrackAsset
MoveItemHandler --> "m_State" WindowState
@enduml
|
8f24584b79af55db0613085a613166c8bdca19e3 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/BrowserExtension/Shared/IListener.puml | 4b83c1465944394ba8d0fea891b0fd02f7a08734 | [
"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 | 564 | puml | @startuml
skinparam linetype ortho
skinparam monochrome true
skinparam classAttributeIconSize 0
class BrowserEvent {
+ BrowserEvent(type : EventType, tabID : number, windowID: number, url : string)
+ timeStamp : Date
+ issuingModule : number
+ type : EventType
+ tabID : number
+ url : URL
+ windowID : number
+ serialize(noUnderScore : boolean) : string
}
IListener .DOWN.> BrowserEvent : creates
interface IListener {
+ IListener(callback : function(BrowserEvent) : void)
+ start() : void
+ stop() : void
}
@enduml
|
8f9b0317ff84536970569e86fd0d7f6a95a597a6 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/minilatedeliveryandpenalty-capped@0.6.0.puml | 80e7d434c1ded7befb1a0690aade448351af4cef | [
"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 | 859 | puml | @startuml
class org.accordproject.minilatedeliveryandpenalty.MiniLateDeliveryClause << (A,green) >> {
+ Party buyer
+ Party seller
+ Duration penaltyDuration
+ Double penaltyPercentage
+ Double capPercentage
+ Duration maximumDelay
}
org.accordproject.minilatedeliveryandpenalty.MiniLateDeliveryClause --|> org.accordproject.contract.Clause
class org.accordproject.minilatedeliveryandpenalty.LateRequest << (T,yellow) >> {
+ DateTime agreedDelivery
+ DateTime deliveredAt
+ Double goodsValue
}
org.accordproject.minilatedeliveryandpenalty.LateRequest --|> org.accordproject.runtime.Request
class org.accordproject.minilatedeliveryandpenalty.LateResponse << (T,yellow) >> {
+ Double penalty
+ Boolean buyerMayTerminate
}
org.accordproject.minilatedeliveryandpenalty.LateResponse --|> org.accordproject.runtime.Response
@enduml
|
9cbdaf97b313a919de88d5e1d0f3736b0dcfc6ee | 694fd70b693c9670161b2492ece407123bf11cad | /plantuml/designpattern/concept-decorator-2.plantuml | cd5d1196eefb56e822cd09e5b406d6a89eb026bb | [
"CC-BY-3.0-US",
"BSD-3-Clause",
"WTFPL",
"GPL-1.0-or-later",
"MIT",
"OFL-1.1"
] | permissive | windowforsun/blog | 4a341a9780b8454a9449c177f189ca304569031b | b0bce013f060f04a42dfa7ef385dbeea1644fdab | refs/heads/master | 2023-09-04T03:17:39.674741 | 2023-08-21T14:39:37 | 2023-08-21T14:39:37 | 170,632,539 | 0 | 1 | MIT | 2023-09-05T17:48:27 | 2019-02-14T05:26:51 | HTML | UTF-8 | PlantUML | false | false | 775 | plantuml | @startuml
abstract class Calculator {
{abstract} double calculate()
}
class SingleCalculator {
double num
SingleCalculator(double num)
double calculate()
}
abstract class Operation {
Calculator calculator
double operand
Operation(double operand, Calculator calculator)
}
class PlusOperation {
PlusOperation(double operand, Calculator calculator)
double calculate()
}
class MinusOperation {
MinusOperation(double operand, Calculator calculator)
double calculate()
}
class MultiplyOperation {
MultiplyOperation(double operand, Calculator calculator)
double calculate()
}
Calculator <|-- SingleCalculator
Calculator <|-- Operation
Calculator <--o Operation
Operation <|-- PlusOperation
Operation <|-- MinusOperation
Operation <|-- MultiplyOperation
@enduml |
d1c03b7f17feee24bbf9ca65708bc4a290d65993 | a249c2addc54fa5250d268f1c9cb71c1f555fec4 | /learn-design-pattern/src/main/java/com/hqbhoho/bigdata/design/pattern/prototype/prototype.puml | 8e3e34810ba202daed8fe611caebcc00f7a3932d | [] | no_license | hqbhoho/learn-bigdata | 3bb16248eed5498758bf3f98179242078ed6ddf7 | cb2eca9b1b795a4a8712850f0ec49a32b2f7922d | refs/heads/master | 2022-11-21T16:48:22.455348 | 2020-09-15T01:30:16 | 2020-09-15T01:30:28 | 173,652,937 | 19 | 7 | null | 2022-11-16T11:46:09 | 2019-03-04T01:31:39 | Java | UTF-8 | PlantUML | false | false | 435 | puml | @startuml
Interface Cloneable{
{abstract} {method} + clone()
}
class Person{
{field} age:int
{field} name:String
{field} car:Car
{method} + clone()
}
class Car{
{field} age:int
{field} name:String
{method} + clone()
}
class Client{
}
Person o-- Car
Cloneable <|.. Person
Person <.. Client
Car <.. Client
note right of Client : Person p1 = new Person(...);\n Person p2 = (Person) p1.clone();
@enduml |
ee58be7f9dd31a0a49daa552421bc3559997ff8a | 327a896950794a3907b06dfb4ab60eb9422e2c5e | /src/tutorial/roughly_scala/trait_/DiamondA.puml | 0651b634889b7f966565f6b7a0eda4c9d18c09ef | [] | no_license | rami2076/scala_training | b4dc6c2686e1aae332855a09b894167a60040ca0 | 4ec8ef4d83bbcb1b819675e0844a1a4f7fcaff80 | refs/heads/master | 2020-09-11T11:01:49.744438 | 2019-12-26T06:27:21 | 2019-12-26T06:27:21 | 222,043,164 | 0 | 0 | null | 2019-12-26T06:27:22 | 2019-11-16T03:48:00 | Scala | UTF-8 | PlantUML | false | false | 377 | puml | @startuml
title Diamond A
interface TraitA_Ex6 {
Unit +greet()
}
interface TraitB_Ex6 {
override Unit +greet()
}
interface TraitC_Ex6{
override Unit +greet()
}
TraitB_Ex6 <|-- TraitA_Ex6
TraitC_Ex6 <|-- TraitA_Ex6
class ClassA_Ex6
ClassA_Ex6 <|-- TraitB_Ex6
ClassA_Ex6 <|-- TraitC_Ex6
note top of ClassA_Ex6:class ClassA_Ex6 extends TraitB_Ex6 with TraitC_Ex6
@enduml |
be1fe7785282527e23444e03b334a5ba4659e2d3 | fb84bca41a00746017b56791cc1900e4cb811be7 | /plantuml/Eats/EatableObjContoroller.puml | fe75d912e54ae9dfcbc3359e35c1af02ecf3bd01 | [] | no_license | MainCastle1212/EverythingEater_Main | 9b3622cc5cca5f78a411cfd7df61fbdec29a8856 | c228f75b78387aee448c6fbb2f3a362dccb724bd | refs/heads/main | 2023-01-12T07:33:38.139825 | 2020-11-12T10:01:22 | 2020-11-12T10:01:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 346 | puml | @startuml
class EatableObjContoroller {
+ <<virtual>> ObjSize : float <<get>>
}
MonoBehaviour <|-- EatableObjContoroller
IEatable <|-- EatableObjContoroller
EatableObjContoroller --> "objSO" EatableObjSO
EatableObjContoroller --> "UIEaten" UIEatenView
note left of EatableObjContoroller : "食べられるもの"にアタッチする
@enduml
|
48ca63845a900f4eb865d7eebb9698e46474bb41 | 8fb8a5af737bf8c4313d50d5988189e7a80d09a6 | /lei-21-s2-1dn-g61-lapr2/docs/SprintD/US14/US14-DM_code.puml | 75bf4e254e673defa14230418f6dd6124d39f4b9 | [] | no_license | tiagooandre/ISEP-LAPR2 | 1633101c5c283361482b14dc35beb65f859b4d44 | 7302fe73505d5828a782eae2e921de34fabf85ec | refs/heads/master | 2023-06-02T04:56:06.992831 | 2021-06-20T16:50:11 | 2021-06-20T16:50:11 | 378,693,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,183 | puml | @startuml
class Employee {
String employeeID;
String name;
String adress;
String phoneNumber;
String codeSOC;
}
class Client {
String citizenCardNumber;
String numberNHS;
String numberTIN;
String birthDate;
string sex;
String phoneNumber;
string name;
}
class Company {
String designation;
}
class Test {
String code;
String NHSCode;
String description;
String dateSample;
String timeSmaple;
String dateChemAnalysis;
String timeChemAnalysis;
String dateDiagnosis;
String timeDiagnosis;
String dateValidTest;
String timeValidTest;
}
class Report {
String text;
}
class Diagnosis
class SpecialistDoctor {
int doctorIndexNumber;
}
Client "1" -- "*" Test: does a >
Employee "1" <|-- "*" SpecialistDoctor
Company "1" -- "*" Employee: has >
Report "1" -- "1" Diagnosis: contains >
SpecialistDoctor "1" -- "*" Diagnosis: checks >
SpecialistDoctor "1" -- "*" Diagnosis: writes >
SpecialistDoctor "1" -- "*" Report: writes >
SpecialistDoctor "1" -- "*" Test: analyzes >
Test "*" -- "1" Client: requested by >
@enduml |
809237a338b767e0783029302e481a55bfe04a0c | b3b11cea9514e63d600cf7914b1a8d22bc6f65b5 | /src/docs/asciidoc/architecture/plantuml/Processor_Event_Autocontrol_Diagram.puml | 562a63f3f80ea18332849d56afb57d52cacf1aff | [] | no_license | jv-it-io/archi-documentation | 4a4690fc1a8b676cb4a8c85a157ab3c06509372d | 40137504ab30935732de8ef2f7596640b9becccb | refs/heads/main | 2023-03-05T07:37:23.587991 | 2020-11-14T19:39:19 | 2020-11-14T19:39:19 | 340,873,929 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,261 | puml | @startuml
package org.springframework.batch.item {
interface ItemProcessor
}
package be.fgov.famhp.autocontrol.pharmacy.proxy.batch.processor {
class ItemProcessorEvent implements ItemProcessor {
Map<String, ProcessorEventService> processorEventMap
process(EventDto event)
}
}
package be.fgov.famhp.autocontrol.pharmacy.proxy.service.processor{
interface ProcessorEventService{
processEvent(EventDto event)
}
class AnnexeDocumentAddedProcessor implements ProcessorEventService{
getDocumentInAutocontrol(Long annexeId, Long dossierId)
getApbNbrInAutocontrol(Long dossierId)
createCommand(EventDto event, ObjectId gridFsId, String apbNbr)
sendToPlato(AddAnnexeDocumentCommand command)
}
class NewFormCompletedProcessor implements ProcessorEventService{
}
class FormCopyCompletedProcessor implements ProcessorEventService{
}
}
package be.fgov.fagg.common.command{
class Command {
}
}
package be.fgov.famhp.plato.backoffice.command{
class NotificationCommand extends Command {
}
class AddAnnexeDocumentCommand extends Command {
}
class NewFormCompletedCommand extends Command {
}
class FormCopyCompletedCommand extends Command {
}
}
@enduml |
3e428fe51158014d4e28f58fb1aa349bbbe53ca0 | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /examples/uml/application.puml | 3f1ba9224032d06d5d983b6e36f8484e04f35b18 | [
"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 | 650 | puml | @startuml
package "MyModel " <<metamodel>> {
class Node {
location:String
}
class MainNode
MainNode " * source" -- " * target" MainNode : Edge
Node " * local-\n nodes" -- "1" MainNode
MainNode --|> Node
}
hide circles
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 |
ecafaa4629673dbed396b89417a3847978344de6 | 625517108615e50180082e3c6d7d1444f643485e | /test/fixtures/method-with-arguments/in.plantuml | f26a5ecd46d7dd1d7871088b75bfba45c3c9294f | [
"TCL",
"BSD-3-Clause",
"HPND",
"LicenseRef-scancode-unknown-license-reference",
"OpenSSL",
"LicenseRef-scancode-openssl",
"MIT",
"LicenseRef-scancode-ssleay-windows",
"ISC",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | Enteee/plantuml-parser | 180c370b3025bb7566bd86576d327364b3d5a425 | 765ac61d0c29c7c8f39310cfa7c385017997aeb8 | refs/heads/master | 2023-07-26T02:00:39.582527 | 2023-03-27T20:49:09 | 2023-03-27T20:49:09 | 177,091,179 | 132 | 33 | Apache-2.0 | 2023-05-21T07:11:53 | 2019-03-22T07:20:31 | TypeScript | UTF-8 | PlantUML | false | false | 108 | plantuml | @startuml
class Dummy {
~method1(int i, boolean b, char c)
+method2(int i, boolean b, char c)
}
@enduml
|
46b6a1956df5fc5f84d37a50d8c73b09b563338f | d702b31e656edcb9944228c0309f153bdff29eec | /src/main/java/de/gematik/ti/healthcardaccess/healthcardaccess.plantuml | 6732c3d0101a2d73b7c3b59afcbeece06e237995 | [
"Apache-2.0"
] | permissive | gematik/ref-HealthCardAccess | 4f3957bfe40c56ffbf82782528a6e543ea00e9e3 | eb9a12f7eea309bb5b23269de9d8fa924f91fe4f | refs/heads/master | 2022-02-14T18:25:41.769547 | 2022-01-07T07:24:17 | 2022-01-07T07:24:17 | 213,916,430 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,200 | plantuml | @startuml
title __HEALTHCARDACCESS's Class Diagram__\n
namespace de.gematik.ti.healthcardaccess {
abstract class de.gematik.ti.healthcardaccess.AbstractHealthCardCommand {
{static} # EXPECT_ALL_WILDCARD : int
{static} # NE_MAX_EXTENDED_LENGTH : int
{static} # NE_MAX_SHORT_LENGTH : int
# cla : int
# data : byte[]
# ins : int
# ne : Integer
# p1 : int
# p2 : int
{static} - CODE_CHANNEL_CLOSED : int
{static} - HEX_FF : int
{static} - LOG : Logger
+ executeOn()
{abstract} + getStatusResponseMessages()
# AbstractHealthCardCommand()
# AbstractHealthCardCommand()
# sendApdu()
- getCommandApdu()
- inferResponseStatusFromResponseCode()
}
}
namespace de.gematik.ti.healthcardaccess {
class de.gematik.ti.healthcardaccess.HealthCard {
{static} + BASIC_CHANNEL_IDX : int
{static} # MAX_LOGICAL_CHANNELS : int
- associatedCard : ICard
- currentCardChannel : ICardChannel
- openChannels : Vector<ICardChannel>
+ HealthCard()
+ closeChannel()
+ getCurrentCardChannel()
+ getStatus()
+ openLogicalChannel()
+ setChannel()
+ setHealthCardType()
# HealthCard()
}
}
namespace de.gematik.ti.healthcardaccess {
interface de.gematik.ti.healthcardaccess.ICardItem {
}
}
namespace de.gematik.ti.healthcardaccess {
interface de.gematik.ti.healthcardaccess.IHealthCard {
{abstract} + getCurrentCardChannel()
{abstract} + getStatus()
}
}
namespace de.gematik.ti.healthcardaccess {
interface de.gematik.ti.healthcardaccess.IHealthCardCommand {
{abstract} + executeOn()
}
}
namespace de.gematik.ti.healthcardaccess {
interface de.gematik.ti.healthcardaccess.IHealthCardStatus {
{abstract} + isValid()
}
}
namespace de.gematik.ti.healthcardaccess {
interface de.gematik.ti.healthcardaccess.IHealthCardType {
}
}
namespace de.gematik.ti.healthcardaccess {
class de.gematik.ti.healthcardaccess.WrongCardChannelException {
+ WrongCardChannelException()
+ WrongCardChannelException()
+ WrongCardChannelException()
}
}
namespace de.gematik.ti.healthcardaccess {
class de.gematik.ti.healthcardaccess.WrongCardDataException {
+ WrongCardDataException()
+ WrongCardDataException()
+ WrongCardDataException()
}
}
de.gematik.ti.healthcardaccess.AbstractHealthCardCommand .up.|> de.gematik.ti.healthcardaccess.IHealthCardCommand
de.gematik.ti.healthcardaccess.AbstractHealthCardCommand o-- de.gematik.ti.healthcardaccess.result.Response : response
de.gematik.ti.healthcardaccess.HealthCard .up.|> de.gematik.ti.healthcardaccess.IHealthCard
de.gematik.ti.healthcardaccess.HealthCard o-- de.gematik.ti.healthcardaccess.IHealthCardStatus : status
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
|
7e19d68ade9bf30ea96d42841da4bc6fc7e267fa | 916a26a84471e37025689168bab1444cca712f04 | /uml/markup/Widget.plantuml | d4199ceb80b1c0b0f013dcf42c020f3609a4a756 | [] | no_license | GaurangTandon/extensible-bowling-game | 8d018a037256f3185bd17dc03054a0d7c3c77fa1 | 04a2698d6dd65ae035f2829d8531991c106e0073 | refs/heads/master | 2022-07-12T18:30:25.259872 | 2020-05-15T03:15:00 | 2020-05-15T03:15:00 | 246,995,191 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,560 | plantuml | @startuml
title __WIDGET's Class Diagram__\n
namespace BowlingGame {
namespace Widget {
class Widget.ButtonPanel {
+ ButtonPanel()
+ ButtonPanel()
+ put()
}
}
}
namespace BowlingGame {
namespace Widget {
class Widget.ContainerPanel {
+ ContainerPanel()
+ ContainerPanel()
+ ContainerPanel()
+ ContainerPanel()
+ ContainerPanel()
+ clear()
+ getPanel()
+ put()
+ put()
+ put()
+ put()
}
}
}
namespace BowlingGame {
namespace Widget {
abstract class Widget.FormPanel {
~ components : HashMap<String, Component>
+ get()
~ FormPanel()
~ FormPanel()
- setupComponentStore()
}
}
}
namespace BowlingGame {
namespace Widget {
abstract class Widget.GenericPanel {
~ panel : JPanel
+ getPanel()
~ GenericPanel()
~ GenericPanel()
~ GenericPanel()
~ GenericPanel()
~ GenericPanel()
}
}
}
namespace BowlingGame {
namespace Widget {
class Widget.GridPanel {
- blockLabel : JLabel[]
- itemLabel : JLabel[]
+ GridPanel()
+ getBlockLabel()
+ getItemLabel()
}
}
}
namespace BowlingGame {
namespace Widget {
class Widget.ScrollablePanel {
- dataList : JList<T>
+ ScrollablePanel()
+ ScrollablePanel()
+ getList()
+ getPanel()
+ setListData()
}
}
}
namespace BowlingGame {
namespace Widget {
class Widget.TextFieldPanel {
+ TextFieldPanel()
+ getText()
+ put()
}
}
}
namespace BowlingGame {
namespace Widget {
class Widget.WindowFrame {
- win : JFrame
+ WindowFrame()
+ destroy()
+ setVisible()
- WindowFrame()
}
}
}
Widget.ButtonPanel -up-|> Widget.FormPanel
Widget.ContainerPanel -up-|> Widget.GenericPanel
Widget.FormPanel -up-|> Widget.GenericPanel
Widget.GridPanel -up-|> Widget.GenericPanel
Widget.ScrollablePanel -up-|> Widget.GenericPanel
Widget.TextFieldPanel -up-|> Widget.FormPanel
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
|
4f9be0d20d019f8163d39f7378766592a088b757 | 353bb4dc0482f7236661c0789f4ab72fc5c5fe72 | /documents/uml/classArchitectrue.plantuml | 32668226d305ca09cfd69ea08d0ff292efb19b39 | [
"MIT"
] | permissive | ISSuh/SimpleRPC | 4cab066cfb766e4b4bc242f1e5f2bfad3bbfb436 | 429f14d26a783ff092f326a49576d945f82ad610 | refs/heads/master | 2023-03-27T09:45:06.030612 | 2021-03-18T14:27:55 | 2021-03-18T14:27:55 | 262,506,782 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,501 | plantuml | @startuml SimpleRPC_Class_Architecture
scale 1280 width
scale 720 height
Network -[hidden]up- Util
Function -[hidden]up- Network
Function -[hidden]up- Util
package "Network" as Network {
package "Server Side" as ServerSide {
component "Decorator Patten" as DP{
}
component "Facotry Method Patten" as FMP{
}
component "Visitor Patten" as VP {
}
interface Server {
}
class TcpServer {
{field} -boost::asio::io_contect
{field} -boost::asio::ip::tcp::socket
{field} -boost::asio::ip::tcp::accepter
{field} -uint32_t port
{method} -acceptionHandle()
{method} +accept()
{method} +run()
{method} +terminate()
}
class ServerHandle {
{field} -std::string host
{field} -uint32_t port
{field} -boost::asio::io_contect
{method} +runServer()
{method} +regist()
}
Server -[hidden]up- VP
TcpServer -up-|> Server
TcpServer -down-> ServerHandle
}
package "Client Side" as ClientSide {
interface Client {
}
class TcpClient {
{field} -boost::asio::ip::tcp::socket
{field} -boost::asio::io_contect
{method} -connectionHandle()
{method} +connect()
{method} +close()
}
class ClientHandle {
{field} -boost::asio::io_contect
{method} -contextRun()
{method} +regist()
}
TcpClient -up-|> Client
TcpClient -down-> ClientHandle
}
package "Session side" as Sessions {
component "Observer Patten" {
}
class Session {
{field} -boost::asio::ip::tcp::socket
{method} -readHandle()
{method} -writeHandle()
{method} +read()
{method} +write()
}
class Message {
}
Session -up-> TcpServer
Session -up-> TcpClient
Message -up-> TcpServer
Message -up-> TcpClient
Message -> Session
}
}
package "RPC Function" as Function {
rectangle "Base Class" as Base {
interface BaseClass {
}
}
rectangle "User Defice Class" as UserDefine {
class UserClass {
}
}
component "Strategy Patten" {
}
ClientHandle -[hidden]down- UserClass
ClientHandle -[hidden]down- BaseClass
UserClass -left-|> BaseClass
}
package "Utilize" as Util {
enum Status {
}
class ThreadPool {
}
class TheadSafeQueue {
}
Status -[hidden]down- ThreadPool
ThreadPool -[hidden]down- TheadSafeQueue
}
Network -[hidden]left- Util
UserClass -up-> ServerHandle
UserClass -up-> ClientHandle
@enduml |
4a143f9ecafda6956e891d5b35775c5c28992456 | afd26a066ad07ed0d651fb2c218636c3b1f09fda | /core/src/main/com/notifications/animations/animations.plantuml | ccb1fb9013f2b3460a5520fe275020144dbeb951 | [] | no_license | thuyhoang-bkuer/socket-assignment | 125c4c7894b4d17558c17687a63617e967188c4b | c67e2477166b43652d5e84b1cf181b31da34ce60 | refs/heads/master | 2020-08-30T18:01:51.960923 | 2019-11-13T10:08:19 | 2019-11-13T10:08:19 | 218,452,024 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,988 | plantuml | @startuml
title __ANIMATIONS's Class Diagram__\n
namespace com.notifications.animations {
class com.notifications.animations.AnimationProvider {
- animationsList : List<TrayAnimation>
+ AnimationProvider()
+ addAll()
+ findFirstWhere()
+ get()
+ where()
}
}
namespace com.notifications.animations {
enum AnimationType {
FADE
POPUP
SLIDE
}
}
namespace com.notifications.animations {
class com.notifications.animations.FadeAnimation {
- dismissAnimation : Timeline
- showAnimation : Timeline
- sq : SequentialTransition
- trayIsShowing : boolean
+ FadeAnimation()
+ getAnimationType()
+ isShowing()
+ playDismissAnimation()
+ playSequential()
+ playShowAnimation()
- setupDismissAnimation()
- setupShowAnimation()
}
}
namespace com.notifications.animations {
class com.notifications.animations.PopupAnimation {
- dismissAnimation : Timeline
- showAnimation : Timeline
- sq : SequentialTransition
- trayIsShowing : boolean
+ PopupAnimation()
+ getAnimationType()
+ isShowing()
+ playDismissAnimation()
+ playSequential()
+ playShowAnimation()
- setupDismissAnimation()
- setupShowAnimation()
}
}
namespace com.notifications.animations {
class com.notifications.animations.SlideAnimation {
- dismissAnimation : Timeline
- showAnimation : Timeline
- sq : SequentialTransition
- trayIsShowing : boolean
+ SlideAnimation()
+ getAnimationType()
+ isShowing()
+ playDismissAnimation()
+ playSequential()
+ playShowAnimation()
- setupDismissAnimation()
- setupShowAnimation()
}
}
namespace com.notifications.animations {
interface com.notifications.animations.TrayAnimation {
{abstract} + getAnimationType()
{abstract} + isShowing()
{abstract} + playDismissAnimation()
{abstract} + playSequential()
{abstract} + playShowAnimation()
}
}
com.notifications.animations.FadeAnimation .up.|> com.notifications.animations.TrayAnimation
com.notifications.animations.FadeAnimation o-- com.notifications.models.CustomStage : stage
com.notifications.animations.PopupAnimation .up.|> com.notifications.animations.TrayAnimation
com.notifications.animations.PopupAnimation o-- com.notifications.models.CustomStage : stage
com.notifications.animations.SlideAnimation .up.|> com.notifications.animations.TrayAnimation
com.notifications.animations.SlideAnimation o-- com.notifications.models.CustomStage : stage
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
|
7a470c530c28a055517975691bbd562d91685215 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/DeliveryItem.puml | 2616d2a7da4a59d8163990aa1d01844efe6d0f61 | [] | 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 | 6,850 | 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 DeliveryItem [[DeliveryItem.svg]] {
id: String
quantity: Long
}
interface DeliveryItemsUpdatedMessage [[DeliveryItemsUpdatedMessage.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]]
deliveryId: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
oldItems: [[DeliveryItem.svg List<DeliveryItem>]]
shippingKey: String
}
interface ParcelItemsUpdatedMessage [[ParcelItemsUpdatedMessage.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]]
parcelId: String
deliveryId: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
oldItems: [[DeliveryItem.svg List<DeliveryItem>]]
shippingKey: String
}
interface DeliveryItemsUpdatedMessagePayload [[DeliveryItemsUpdatedMessagePayload.svg]] {
type: String
deliveryId: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
oldItems: [[DeliveryItem.svg List<DeliveryItem>]]
shippingKey: String
}
interface ParcelItemsUpdatedMessagePayload [[ParcelItemsUpdatedMessagePayload.svg]] {
type: String
parcelId: String
deliveryId: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
oldItems: [[DeliveryItem.svg List<DeliveryItem>]]
shippingKey: String
}
interface StagedOrderAddDeliveryAction [[StagedOrderAddDeliveryAction.svg]] {
action: String
deliveryKey: String
shippingKey: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
address: [[BaseAddress.svg BaseAddress]]
parcels: [[ParcelDraft.svg List<ParcelDraft>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface StagedOrderAddParcelToDeliveryAction [[StagedOrderAddParcelToDeliveryAction.svg]] {
action: String
deliveryId: String
deliveryKey: String
parcelKey: String
measurements: [[ParcelMeasurements.svg ParcelMeasurements]]
trackingData: [[TrackingData.svg TrackingData]]
items: [[DeliveryItem.svg List<DeliveryItem>]]
}
interface StagedOrderSetDeliveryItemsAction [[StagedOrderSetDeliveryItemsAction.svg]] {
action: String
deliveryId: String
deliveryKey: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
}
interface StagedOrderSetParcelItemsAction [[StagedOrderSetParcelItemsAction.svg]] {
action: String
parcelId: String
parcelKey: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
}
interface Delivery [[Delivery.svg]] {
id: String
key: String
createdAt: DateTime
items: [[DeliveryItem.svg List<DeliveryItem>]]
parcels: [[Parcel.svg List<Parcel>]]
address: [[Address.svg Address]]
custom: [[CustomFields.svg CustomFields]]
}
interface DeliveryDraft [[DeliveryDraft.svg]] {
key: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
parcels: [[ParcelDraft.svg List<ParcelDraft>]]
address: [[AddressDraft.svg AddressDraft]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface Parcel [[Parcel.svg]] {
id: String
key: String
createdAt: DateTime
measurements: [[ParcelMeasurements.svg ParcelMeasurements]]
trackingData: [[TrackingData.svg TrackingData]]
items: [[DeliveryItem.svg List<DeliveryItem>]]
custom: [[CustomFields.svg CustomFields]]
}
interface ParcelDraft [[ParcelDraft.svg]] {
key: String
measurements: [[ParcelMeasurements.svg ParcelMeasurements]]
trackingData: [[TrackingData.svg TrackingData]]
items: [[DeliveryItem.svg List<DeliveryItem>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface OrderAddDeliveryAction [[OrderAddDeliveryAction.svg]] {
action: String
deliveryKey: String
shippingKey: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
address: [[BaseAddress.svg BaseAddress]]
parcels: [[ParcelDraft.svg List<ParcelDraft>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface OrderAddParcelToDeliveryAction [[OrderAddParcelToDeliveryAction.svg]] {
action: String
deliveryId: String
deliveryKey: String
parcelKey: String
measurements: [[ParcelMeasurements.svg ParcelMeasurements]]
trackingData: [[TrackingData.svg TrackingData]]
items: [[DeliveryItem.svg List<DeliveryItem>]]
}
interface OrderSetDeliveryItemsAction [[OrderSetDeliveryItemsAction.svg]] {
action: String
deliveryId: String
deliveryKey: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
}
interface OrderSetParcelItemsAction [[OrderSetParcelItemsAction.svg]] {
action: String
parcelId: String
parcelKey: String
items: [[DeliveryItem.svg List<DeliveryItem>]]
}
DeliveryItem --> DeliveryItemsUpdatedMessage #green;text:green : "items"
DeliveryItem --> DeliveryItemsUpdatedMessage #green;text:green : "oldItems"
DeliveryItem --> ParcelItemsUpdatedMessage #green;text:green : "items"
DeliveryItem --> ParcelItemsUpdatedMessage #green;text:green : "oldItems"
DeliveryItem --> DeliveryItemsUpdatedMessagePayload #green;text:green : "items"
DeliveryItem --> DeliveryItemsUpdatedMessagePayload #green;text:green : "oldItems"
DeliveryItem --> ParcelItemsUpdatedMessagePayload #green;text:green : "items"
DeliveryItem --> ParcelItemsUpdatedMessagePayload #green;text:green : "oldItems"
DeliveryItem --> StagedOrderAddDeliveryAction #green;text:green : "items"
DeliveryItem --> StagedOrderAddParcelToDeliveryAction #green;text:green : "items"
DeliveryItem --> StagedOrderSetDeliveryItemsAction #green;text:green : "items"
DeliveryItem --> StagedOrderSetParcelItemsAction #green;text:green : "items"
DeliveryItem --> Delivery #green;text:green : "items"
DeliveryItem --> DeliveryDraft #green;text:green : "items"
DeliveryItem --> Parcel #green;text:green : "items"
DeliveryItem --> ParcelDraft #green;text:green : "items"
DeliveryItem --> OrderAddDeliveryAction #green;text:green : "items"
DeliveryItem --> OrderAddParcelToDeliveryAction #green;text:green : "items"
DeliveryItem --> OrderSetDeliveryItemsAction #green;text:green : "items"
DeliveryItem --> OrderSetParcelItemsAction #green;text:green : "items"
@enduml
|
a9bec5d69a97d78fe880735bff998636292089c7 | 844665d08d1be5dacc41d8495725d881c68dba71 | /Conferencias/Conferencia 3_ Patrones de Diseño Estructurales/PrincipleAndPatternDesign/src/cu/datys/patterns/gof/structural/decorator/component/class-diagram.puml | fc7d03bb687d789e19e2fe3840aeebea800b3532 | [
"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 | 1,849 | puml | @startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam titleFontColor #5cb85c
Title Decorator Pattern Example
'class java.awt.Graphics
interface IComponent {
+ void draw(java.awt.Graphics g)
}
'IComponent --> java.awt.Graphics: use
interface IComposite extends IComponent{
+ boolean add(IComponent child)
+ boolean remove(IComponent child)
}
class Container implements IComposite{
- final List<IComponent> childs
- int x
- int y
' + Container(int x, int y)
+ boolean add(IComponent child)
+ boolean remove(IComponent child)
+ void draw(Graphics g)
}
'class Line implements IComponent{
' - int x1
' - int y1
' - int x2
' - int y2
'' + Line(int x1, int y1, int x2, int y2)
' + void draw(Graphics g)
'}
class Rectangle implements IComponent{
- int x1
- int y1
- int width
- int height
' + Rectangle(int x, int y, int width, int height)
+ void draw(Graphics g)
}
class RectangleDecorator implements IComponent{
- Rectangle rectangle
- boolean fill
+ RectangleDecorator(Rectangle r, boolean f)
+ void draw(Graphics g)
}
RectangleDecorator *-- Rectangle
note left of Container::draw
g.translate(x, y);
for(IComponent c : childs)
c.draw(g);
end note
'note left of Line::draw
' g.drawLine(
' x1, y1,
' x2, y2
' );
'end note
note left of Rectangle::draw
g.drawRect(
x, y,
width,
height
);
end note
note left of RectangleDecorator::draw
Rectangle r =
rectangle;
if(fill){
g.fillRect(
r.getX(),
r.getY(),
r.getWidth(),
r.getHeight()
);
}
else r.draw(g);
end note
@enduml |
63f48a475461246d2cd6af66cff9a6d6642e348b | f307970b839abfefbcd59b5aec6d5f871a961f72 | /src/main/java/com/slas/slas.plantuml | 6fd2e34e3a889c06ecd884e8f776b6d09aaf9b2b | [] | no_license | atanuroy911/SLAS_WEB | f27cd49c8dee735432c9521b77e21db14c1a27b4 | d6dcf31ec7a1d6bc592afdd3bfa6d3841ab21d5e | refs/heads/main | 2023-03-05T06:24:00.145938 | 2021-02-20T00:08:03 | 2021-02-20T00:08:03 | 335,622,112 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 377 | plantuml | @startuml
title __SLAS's Class Diagram__\n
namespace java{
namespace com.slas {
class com.slas.SlasApplication {
{static} + main()
}
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
0b9642d12d7a3dbcaa43e192b8cbedf837227de5 | f9c341a0793f4aa76bd53a9a5e3191f0c17eb4e7 | /backend/src/main/java/com/engineer/lrogozinski/domain/domain.plantuml | 0fb490a7d0d2d9f7c755aa602599707d0838c833 | [] | no_license | LukaszRogozinski/SkillParty | 930f16e59bddb0280faa61ac4b76cc59d0a677e0 | a917e77bd000431faa06028b8fd5dd9fb706eb90 | refs/heads/master | 2020-03-30T12:42:46.963493 | 2019-01-27T19:03:01 | 2019-01-27T19:03:01 | 151,236,325 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,187 | plantuml | @startuml
title __DOMAIN's Class Diagram__\n
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.domain {
class Account {
- id : Integer
- username : String
- password : String
- verified : Boolean
- active : Boolean
- roles : List<Role>
- version : Integer
+ getId()
+ setId()
+ getUsername()
+ setUsername()
+ getVerified()
+ setVerified()
+ getActive()
+ setActive()
+ getVersion()
+ setVersion()
+ getPassword()
+ setPassword()
+ getRoles()
+ setRoles()
+ addRole()
+ getUserData()
+ setUserData()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.domain {
class Event {
- id : Integer
- name : String
- description : String
- avaliableQuantity : Integer
- price : Integer
- averageVote : Double
- imageUrl : String
- votes : List<Vote>
- version : Integer
+ getId()
+ setId()
+ getName()
+ setName()
+ getDescription()
+ setDescription()
+ getAvaliableQuantity()
+ setAvaliableQuantity()
+ getPrice()
+ setPrice()
+ getVersion()
+ setVersion()
+ getUser()
+ setUser()
+ getAverageVote()
+ setAverageVote()
+ getVotes()
+ setVotes()
+ getEventCategory()
+ setEventCategory()
+ getImageUrl()
+ setImageUrl()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.domain {
class EventCategory {
- id : Integer
- name : String
- events : List<Event>
~ userDataList : List<UserData>
- version : Integer
+ getId()
+ setId()
+ getName()
+ setName()
+ getVersion()
+ setVersion()
+ getEvent()
+ addEvent()
+ getUserDataList()
+ setUserDataList()
+ getEvents()
+ setEvents()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.domain {
class Role {
- id : Integer
- role : String
- version : Integer
- accounts : List<Account>
+ getRole()
+ setRole()
+ getVersion()
+ setVersion()
+ getAccounts()
+ setAccounts()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.domain {
class UsedToken {
- id : Integer
- token : String
- date : Date
+ getId()
+ setId()
+ getToken()
+ setToken()
+ getDate()
+ setDate()
+ UsedToken()
+ UsedToken()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.domain {
class UserData {
- id : Integer
- email : String
- name : String
- surname : String
- city : String
- street : String
- houseNo : Integer
- flatNo : Integer
- averageVote : Double
- votes : List<Vote>
- eventList : List<Event>
~ favouriteEventCategories : List<EventCategory>
- version : Integer
+ getId()
+ setId()
+ getEmail()
+ setEmail()
+ getName()
+ setName()
+ getSurname()
+ setSurname()
+ getCity()
+ setCity()
+ getStreet()
+ setStreet()
+ getHouseNo()
+ setHouseNo()
+ getFlatNo()
+ setFlatNo()
+ getAverageVote()
+ setAverageVote()
+ getVersion()
+ setVersion()
+ getEventList()
+ setEventList()
+ getAccount()
+ setAccount()
+ getVotes()
+ setVotes()
+ addEvent()
+ getFavouriteEventCategories()
+ setFavouriteEventCategories()
+ addFavouriteEventCategory()
}
}
}
package com.engineer.lrogozinski {
package com.engineer.lrogozinski.domain {
class Vote {
- id : Integer
- quantity : Integer
+ getId()
+ setId()
+ getQuantity()
+ setQuantity()
+ getEvent()
+ setEvent()
+ getUserData()
+ setUserData()
}
}
}
Account o-- UserData : userData
Event o-- EventCategory : eventCategory
Event o-- UserData : user
UserData o-- Account : account
Vote o-- Event : event
Vote o-- UserData : userData
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
|
46a09fcb47be3524a121a37d0c150d5f5e5df98c | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/DiscountCode.puml | 363662d8319ea2df6d4dd1169dbac51c2a0ca33d | [] | 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,660 | 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 DiscountCode [[DiscountCode.svg]] extends BaseResource {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
name: [[LocalizedString.svg LocalizedString]]
description: [[LocalizedString.svg LocalizedString]]
code: String
cartDiscounts: [[CartDiscountReference.svg List<CartDiscountReference>]]
cartPredicate: String
isActive: Boolean
references: [[Reference.svg List<Reference>]]
maxApplications: Long
maxApplicationsPerCustomer: Long
custom: [[CustomFields.svg CustomFields]]
groups: [[String.svg List<String>]]
validFrom: DateTime
validUntil: DateTime
applicationVersion: Long
}
interface BaseResource [[BaseResource.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
}
interface DiscountCodePagedQueryResponse [[DiscountCodePagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[DiscountCode.svg List<DiscountCode>]]
}
interface DiscountCodeReference [[DiscountCodeReference.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
obj: [[DiscountCode.svg DiscountCode]]
}
DiscountCode --> DiscountCodePagedQueryResponse #green;text:green : "results"
DiscountCode --> DiscountCodeReference #green;text:green : "obj"
@enduml
|
7935f3dddb509eadec11bb6dc0e38cd037976621 | 06635b7c23f7f9249d225578935a6f25e58ba949 | /doc/adapter_wordcount_class_diagram.puml | 5ea04dedc41ea58e8c514cd7fc4f057ffe4eb395 | [
"MIT"
] | permissive | eroatta/freqtable | ff2fe64910a7640e249e1b9212699dfb7f07ecad | 2805226c221351663ac2ce04fde7f3692fd30d6c | refs/heads/master | 2020-09-16T10:14:09.874988 | 2020-02-16T20:06:58 | 2020-02-16T20:06:58 | 223,739,110 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,169 | puml | @@startuml Package adapter/wordcount Class Diagram
package adapter.wordcount {
class adapter.wordcount.Processor {
- config : adapter.wordcount.ProcessorConfig
+ Extract(url string) (map[string]int, error)
- clone(url string, cloner Cloner) (code.Repository, chan code.File, error)
- parse(filesc <-chan code.File) chan code.File
- merge(parsedc <-chan code.File) []code.File
- mine(parsed []code.File, miner Miner) Miner
}
class adapter.wordcount.ProcessorConfig {
+ ClonerFunc : builder.Cloner
+ MinerFunc : builder.Miner
}
interface adapter.wordcount.Cloner {
Clone(url string) (Repository, error)
Filenames() ([]string, error)
File(name string) (Repository, error)
}
interface adapter.wordcount.Miner {
Visit(node ast.Node) ast.Visitor
Results() map[string]int
}
adapter.wordcount.Processor -- adapter.wordcount.ProcessorConfig : set up by >
adapter.wordcount.Processor -- adapter.wordcount.Cloner : acceses repository by >
adapter.wordcount.Processor -- adapter.wordcount.Miner : gets info through >
}
@@enduml |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.