blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 227 | content_id stringlengths 40 40 | detected_licenses listlengths 0 28 | license_type stringclasses 2 values | repo_name stringlengths 6 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 61 values | visit_date timestamp[us]date 2015-08-14 10:26:58 2023-09-06 07:53:38 | revision_date timestamp[us]date 2011-01-31 21:28:29 2023-09-05 14:54:58 | committer_date timestamp[us]date 2011-01-31 21:28:29 2023-09-05 14:54:58 | github_id int64 206k 631M ⌀ | star_events_count int64 0 108k | fork_events_count int64 0 34.4k | gha_license_id stringclasses 13 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 79 values | src_encoding stringclasses 12 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 8 1.29M | extension stringclasses 17 values | code stringlengths 8 1.29M | non_uml bool 1 class | uml bool 1 class | has_non_ascii bool 2 classes | has_non_latin bool 1 class | uml_subtype stringclasses 10 values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2467e147aa3287572cb77f51f70958f35e2f6ea0 | 889236917422daafcd5ea676c3aef2fe5c6af7da | /app/src/main/java/com/mgtv/lib/protobuf/protobuf.plantuml | 7cfd5860acb5f89ab84d32fa58966beb96951991 | [] | no_license | HJBSFLD/AndroidProtoBufTest | 69897b870596a59fb2584fbea2f31bccaf01cb3d | a39aa7cc70c63b97a4db17a843101e5d3e8be4e5 | refs/heads/master | 2022-11-27T21:27:48.055954 | 2020-08-13T07:09:29 | 2020-08-13T07:09:29 | 287,207,248 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 880 | plantuml | @startuml
title __PROTOBUF's Class Diagram__\n
namespace com.mgtv.lib.protobuf {
class com.mgtv.lib.protobuf.MainActivity {
# onCreate()
}
}
namespace com.mgtv.lib.protobuf {
class com.mgtv.lib.protobuf.ProtoTest {
{static} + main()
{static} - buildJsonSamples()
{static} - buildProtoBufSample()
{static} - buildSamples()
{static} - readJsonSample()
{static} - readProtoBufSample()
}
}
namespace com.mgtv.lib.protobuf {
class com.mgtv.lib.protobuf.TestProto {
{static} + main()
}
}
com.mgtv.lib.protobuf.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
9ebacec40f2267bebdd651a8841d18dac43e2960 | 65d20a2522663f335ac05ff61a0d00cb3c9e02d6 | /设计模式/行为型模式/21.Strategy策略/strategy.puml | 66387e1cc71da06171653d4094898529625942be | [] | no_license | GungnirLaevatain/doc | 3f436387665cd67b93e84df0a0c92f9f894ad4a3 | 519643453e49a5a82e4a971597d186bfdc280116 | refs/heads/master | 2020-08-08T15:52:54.217559 | 2020-03-16T02:10:08 | 2020-03-16T02:10:08 | 213,863,201 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 404 | puml | @startuml
class Context{
- Strategy strategy
+ void setStrategy(Strategy strategy)
+ int operation(int num1, int num2)
}
interface Strategy{
+ {abstract} int operation(int num1, int num2)
}
class AddOperation{
+ int operation(int num1, int num2)
}
class SubOperation{
+ int operation(int num1, int num2)
}
AddOperation ..|> Strategy
SubOperation ..|> Strategy
Context-->Strategy
@enduml | false | true | false | false | class |
09b948faff73e559bb2f5185f22f3702d39d4419 | af65b167bf85ea4a167384bacbc6f8a4e6db5420 | /sequence-diagrams/symptom-check-authenticated-user.puml | e6a1d94c479651d8a59bc1c119bb9dc804709f4c | [] | no_license | ruoat/definitions | 7d70885e359067e2d5859d1ff5d442f67f69518e | 87906b7d8d0fcad0b1969f03ee718aca9f483c9e | refs/heads/master | 2020-05-24T08:00:53.120759 | 2017-03-23T14:42:12 | 2017-03-23T14:42:12 | 84,837,584 | 0 | 0 | null | 2017-03-13T14:42:27 | 2017-03-13T14:42:27 | null | UTF-8 | PlantUML | false | false | 2,922 | puml | @startuml
header
Sequence diagram for authenticated user to fill in symptom check
endheader
participant ODA_WEB_UI
participant ODA_FHIR_API
note left of ODA_WEB_UI #aqua
Pre-Condition 1: User is logged in
Pre-Condition 2: Patient/person is stored in the phr
Pre-Condition 3: UI knows patient's/person's phr identifier
Pre-Condition 4: Questionnaire is stored in the phr
end note
box "ODA 2" #LightBlue
participant ODA_WEB_UI
participant ODA_FHIR_API
end box
ODA_WEB_UI -> ODA_FHIR_API: GET [oda-fhir-base]/Questionnaire?useContext=[system]|[code]
ODA_FHIR_API -> ODA_PHR: GET [oda-fhir-base]/Questionnaire?useContext=[system]|[code]
ODA_FHIR_API <-- ODA_PHR: HTTP 200 OK [Bundle - collection of questionnaires]
ODA_WEB_UI <-- ODA_FHIR_API: Bundle [collection of questionnaires]
ODA_WEB_UI -> ODA_WEB_UI: Select the questionnaire
ODA_WEB_UI -> ODA_FHIR_API: POST [oda-fhir-base]/Questionnaire/[id]/$populate
ODA_FHIR_API -> ODA_PHR: GET [phr-fhir-base]/Questionnaire/[id]
ODA_FHIR_API <-- ODA_PHR: HTTP 200 OK [Questionnaire]
ODA_FHIR_API -> ODA_FHIR_API: resolve pre-population Observation codes from Questionnaire
ODA_FHIR_API -> ODA_PHR: GET [oda-fhir-base]/Observation?code=[system]|[code],[system]|[code],[system]|[code] ...
ODA_FHIR_API <- ODA_PHR: HTTP 200 OK [Bundle - collection of latest observations]
ODA_FHIR_API -> ODA_PHR: GET [oda-fhir-base]/QuestionnaireResponse?questionnaire=[id]
ODA_FHIR_API <- ODA_PHR: HTTP 200 OK [Latest QuestionnaireResponse for Questionnaire]
ODA_FHIR_API -> ODA_FHIR_API: Pre-populate the QuestionnaireResponse [use Observations and latest QuestionnaireResponse]
ODA_WEB_UI <-- ODA_FHIR_API: HTTP 200 OK [QuestionnaireResponse]
ODA_WEB_UI -> ODA_WEB_UI: Fill in the questionnaire response
ODA_WEB_UI -> ODA_FHIR_API: POST [oda-fhir-base]/QuestionnaireResponse/$checkSymptoms
ODA_FHIR_API -> ODA_FHIR_API: Generate DSSRequest
ODA_FHIR_API -> ODA1: POST [oda1_base]/DSSRequest
ODA_FHIR_API <-- ODA1: DSSResponse
ODA_FHIR_API -> ODA_FHIR_API: generate CarePlan (include QuestionnaireResponse as a CarePlan.support reference)
ODA_WEB_UI <-- ODA_FHIR_API: HTTP 200 OK [CarePlan]
ODA_WEB_UI -> ODA_WEB_UI: View/Edit/Confirm/Cancel CarePlan
ODA_WEB_UI -> ODA_FHIR_API: POST [oda-fhir-base]/CarePlan
ODA_FHIR_API -> ODA_PHR: POST [phr-fhir-base]/CarePlan
ODA_FHIR_API <-- ODA_PHR: HTTP 201 Created, Location: [phr-fhir-base]]/CarePlan/[id]/_history/[vid]
ODA_FHIR_API -> ODA_PHR: POST [phr-fhir-base]/QuestionnaireResponse
ODA_FHIR_API <- ODA_PHR: HTTP 201 Created, Location: [phr-fhir-base]/QuestionnaireResponse/[id]/_history/[vid]
ODA_FHIR_API -> ODA_FHIR_API: Generate Observations
ODA_FHIR_API -> ODA_PHR: POST [phr-fhir-base]/?_format=transaction [Bundle - collection of observations]
ODA_FHIR_API <- ODA_PHR: HTTP 200 OK [Bundle - collection of observations]
ODA_WEB_UI <- ODA_FHIR_API: HTTP 201 Created, Location: [phr-fhir-base]/CarePlan/[id]/_history/[vid]
@enduml | false | true | false | false | sequence |
ae457bfef81f15e8a9877a3faa927c51a9fd8760 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.puml | 34f0640f64eb7c0f4f1ff58c20bf69f0b63d2b8c | [] | 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 | 106 | puml | @startuml
class DropdownSample {
+ OnButtonClick() : void
}
MonoBehaviour <|-- DropdownSample
@enduml
| false | true | false | false | class |
1529c0615413b3a415e7ec01753836979153c848 | cce29a57ba4a057a882f22a930a104546431ccc4 | /ch4/queuing/classdiagram_queuing.puml | d7bc6126d8060108c51b49bccc3aa17382ec65a1 | [] | no_license | Jonghwanshin/embedded_design_pattern | 9c98654aa7016ed36f2c7e8bc6db42b013e84160 | 751ac291d27a336060144c8d805406aa18d5926f | refs/heads/master | 2021-04-26T04:39:32.035639 | 2019-10-05T04:24:36 | 2019-10-05T04:24:36 | 124,033,966 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,195 | puml | @startuml Queuing Example
class GasDataQueue{
head:int = 0
size:int = 0
tail:int = 0
sema:OSSempahore* = NULL
getNextIndex(index: int): int
insert(g:GasData): int
remove(): GasData*
isFull(): unsigned char
isEmpty(): unsigned char
Init()
Cleanup()
}
class GasData{
gType: GAS_TYPE = UNKNOWN_GAS
conc:double=0.0
flowInCCPerMin:unsigned int=0
}
package SensorThread{
class itsO2Sensor{
conc
flow
getO2Data()
}
class itsN2Sensor{
conc
flow
getN2Data()
}
class itsHeSensor{
conc
flow
getHeData()
}
}
package GasProcessingThread{
class itsGasController{
handleGasData()
}
class itsGasDisplay{
printGasData()
}
itsGasController --> itsGasDisplay
}
GasData "GAS_QUEUE_SIZE" --* "1" GasDataQueue
SensorThread -left--> "1, itsGasDataQueue" GasDataQueue
GasDataQueue "itsGasDataQueue" <-- "1" GasProcessingThread
@enduml | false | true | false | false | class |
2b320d63e5fbe21a376801d50006691f15c81ff9 | 366b04c0ecc60f4f827ccc25cc47201652cf29e8 | /src/decorator/uml/decorator.puml | ac979f8f9b1ffc6003b1275bf3222fc03c223677 | [] | no_license | vitalispopoff/designPatterns | c14b6d222603d6873229b17254b4e001b1b23bac | 9d90e87ddbd6f964ba681c7bb13b94551383ff07 | refs/heads/master | 2022-11-16T10:20:38.580475 | 2020-06-20T21:36:16 | 2020-06-20T21:36:16 | 267,718,159 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 623 | puml | @startuml
package decorator{
abstract class EquationComponent {
+{field} Double value
+{method} Double getValue ()
+{method} void setValue ()
+{method} double evaluate ()
}
+class Equation extends EquationComponent {
--
}
+abstract class EquationDecorator extends EquationComponent{
+{field} EquationDecorator
--
}
+class EquationDecoratorAdd extends EquationDecorator {
}
+class EquationDecoratorMultiply extends EquationDecorator {
}
EquationDecorator --o EquationComponent
}
@enduml | false | true | false | false | class |
216f18f3e3c92f118281d66a6113a42a7b8c8c01 | d3748d9913134ebe4cf96189f910bf5b18c3a216 | /docs/Solution/Logical.puml | d8e8e5557bb3e2207ee03f096942949ef2373b02 | [] | no_license | madajaju/fleet | 5449a4cd1e0979d8a6c370baf179ac4a08234371 | 259fc03531375aa0053651a23659f605687b2840 | refs/heads/master | 2023-04-27T09:53:37.670570 | 2018-06-30T12:55:13 | 2018-06-30T12:55:13 | 138,994,303 | 0 | 0 | null | 2023-04-25T22:53:31 | 2018-06-28T09:08:25 | JavaScript | UTF-8 | PlantUML | false | false | 221 | puml | @startuml
skinparam packageStyle rect
package fleet {
package "SubSystem1" #aaffff {
}
package "SubSystem2" #aaffaa {
}
package "SubSystem3" #ffaaaa {
}
}
SubSystem1 --> SubSystem2
SubSystem2 --> SubSystem3
@enduml
| false | true | false | false | uml-unknown |
c914d5383785701fd724eeeb9676eab30d2dd2cf | 228b6c61ca5e56452453f465e5911f681b04af00 | /Diagrams/certification-diagram.puml | 61bec96237c002b5cd360e6b4481077a1e01d688 | [
"Apache-2.0"
] | permissive | JaewookByun/EPCIS-1 | ea2f8f125fecd1cfc314563d8c5f291ba3992fb6 | b355ab427a46a28e3836f10858371fe2dbe5a4ef | refs/heads/master | 2023-07-10T14:01:12.837897 | 2021-08-18T03:41:18 | 2021-08-18T03:41:18 | 283,368,059 | 0 | 0 | Apache-2.0 | 2020-07-29T01:31:20 | 2020-07-29T01:31:20 | null | UTF-8 | PlantUML | false | false | 825 | puml | @startuml
hide empty attributes
hide empty methods
hide circle
class CertificationDetails1 as "gs1:CertificationDetails"
class CertificationDetails2 as "gs1:CertificationDetails"
class Place as "gs1:Place"
class Product as "gs1:Product"
EPCISEvent --> CertificationDetails1 : gs1:certification
EPCISEvent --> CertificationDetails2 : gs1:certification
EPCISEvent --> Place : bizLocation
EPCISEvent --> Product : epcList
CertificationDetails1 --> Place : gs1:certificationSubject
CertificationDetails1 <-- Place : gs1:certification
CertificationDetails2 --> Product : gs1:certificationSubject
CertificationDetails2 <-- Product : gs1:certification
CertificationDetails1 : gs1:certificationStandard "Place Fire-Safety Standard"@en
CertificationDetails2 : gs1:certificationStandard "Product Child-Safety Standard"@en
@enduml
| false | true | false | false | sequence |
7fb9aeabec48e5063152f56ede43fdd9773f5e13 | efa5b99fe2d0382aeb23be601b7872579bf5c726 | /ler_2_database/doc/files/database_api_ler_automation.puml | cc90661a987663de2cbbbee9f1a15394450b56ca | [] | no_license | DennisJensen95/digital-ledningsregistrering | ef83e19917afe7026ab13f45848e4dfdcda32163 | 1670befae0bba30a08f4c10665c9cb252ba7c1b8 | refs/heads/main | 2023-04-05T16:51:11.490627 | 2021-04-18T20:42:52 | 2021-04-18T20:42:52 | 344,870,158 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 359 | puml | @startuml
participant "LER server" as ler_server
participant "LER Automation client" as client
participant "Database API" as server
client -> ler_server : Polling dig requests
ler_server -> client : There is a new dig request
client -> server : Area of interest
server -> client : Area of interest data
client -> ler_server : Response on dig request
@enduml | false | true | false | false | sequence |
36d63a51dc85ff0ec841283e9b972747d8a44c90 | 6f8bbf3a66dce3b5609200777ddb204e55b7c5dd | /docs/cocoscreator.puml | 8ebc55b1c475df9676007d66de409a56aa5f3553 | [
"MIT"
] | permissive | iLoongV/grace | b3faa340564765982a569e2a4723feb410736d3a | 9057e02aa658827ed10c88f7ac55d799b295542d | refs/heads/master | 2020-03-15T18:54:33.324571 | 2018-03-04T00:03:39 | 2018-03-04T00:03:39 | 132,295,118 | 1 | 0 | MIT | 2018-05-06T00:41:52 | 2018-05-06T00:41:51 | null | UTF-8 | PlantUML | false | false | 275 | puml | @startuml
class cc.Node {
- components[]
}
class cc.Component {
+ node
}
cc.Node "1" o-- "n" cc.Component
cc.Component <|-- cc.Sprite
cc.Component <|-- cc.Button
cc.Component <|-- cc.Label
cc.Sprite *-- cc.Node
cc.Button *-- cc.Node
cc.Label *-- cc.Node
@enduml | false | true | false | false | class |
c4453b26a450d67333552f7c3c0d7981338c551e | df258c782d7a6e660c4383c75c596fc5c8312b9b | /doc/communication.puml | cb7dc77ddb9ce5d7bead0f7d7d2e090630091592 | [
"MIT"
] | permissive | LABORA-UFG/omf | 88d2df907af344fcacc343ef13285ee9964fe554 | b1e6b730ea79c4b47aa583fd1b7091abb66266d1 | refs/heads/amqp | 2021-06-16T23:42:00.875111 | 2019-10-03T20:03:46 | 2019-10-03T20:03:46 | 65,040,660 | 1 | 2 | MIT | 2018-04-19T20:38:18 | 2016-08-05T18:31:37 | Ruby | UTF-8 | PlantUML | false | false | 1,377 | puml |
@startuml
enum MessageType {
CREATE
CONFIGURE
REQUEST
INFORM
RELEASE
}
class Message {
MessageType type
publish()
..
on_error(onError : Block)
}
Message ..> MessageType
class Topic {
create_message(msg_type : MessageType) : Message
subscribe(onMessage : Block)
unsubscribe()
..
release()
on_error(onError : Block)
..
// Create 'sub' topics
create(topic_name : String, onMessage : Block) : Topic
get(topic_name : String, onMessage : Block) : Topic
}
Topic ..> Message
class TopicFactory {
create(absolute_topic_name : String, onMessage : Block) : Topic
get(absolute_topic_name : String, onMessage : Block) : Topic
}
TopicFactory ..> Topic
class ResourceStub {
configure(configuration: Hash, on_inform : Block)
request(property_names : Array || nil, conditions : Hash || nil, on_inform : Block)
on_inform(context : Object, on_inform : Block)
release()
...
get(resource_name : String) : ResourceAdapter // child resource
}
ResourceStub "1" *-- "1" Topic : topic
class ResourceStubFactory {
get(absolute_resource_name : String) : ResourceStub
}
ResourceStubFactory ..> ResourceStub
class ResourceProxy {
on_create(msg : Message)
on_configure(msg : Message)
on_request(msg : Message)
on_release(msg : Message)
}
ResourceProxy "1" *-- "1" Topic : topic
@enduml
| false | true | false | false | class |
4c988cbf968a19fcf71e35328d5ddc1f7eada67e | b8c409912c930baf8050f8c85da0cf2e97966b27 | /src/main/resources/uml/case/2_5使用包.puml | b78c917f1c08104a6b2e20e46768d40e43c5d91f | [] | no_license | tom1120/BaseStudy | 8cd1b735a119e022d54738c7ba3d8a9cd16aa8d5 | 35d1c19a6ebaabbb52870af8b61604d8f0290a5e | refs/heads/master | 2023-07-24T13:22:00.656180 | 2023-07-08T15:53:45 | 2023-07-08T15:53:45 | 135,059,686 | 0 | 0 | null | 2023-07-08T15:54:31 | 2018-05-27T15:40:27 | Java | UTF-8 | PlantUML | false | false | 350 | puml | @startuml
'https://plantuml.com/use-case-diagram
left to right direction
actor Guest as g
package Professional{
actor Chef as c
actor "Fodd Critic" as fc
}
rectangle Restaurant{
usecase "Eat Food" as UC1
usecase "Pay for Food" as UC2
usecase "Drink" as UC3
usecase "Review" as UC4
}
fc-->UC4
g-->UC1
g-->UC2
g-->UC3
@enduml | false | true | false | false | usecase |
8c0df1aebbf40b720b674af832022752201d0844 | 373861653fd34beb6f2e073a3e77e07c9ebc7f5d | /de.gematik.ti.healthcard.common/src/main/java/de/gematik/ti/healthcard/control/common/event/present/presentEvents.plantuml | 179a779e0d80c9aeb38908bca90e06471f290587 | [
"Apache-2.0"
] | permissive | gematik/ref-HealthCardControlCommon | 3c190515d68689fe3d6aec1afaec3013e75011d5 | dddb68cecbfe446b6fd76874aac7569ca1fa27a2 | refs/heads/master | 2022-01-20T15:15:50.239121 | 2022-01-07T07:24:15 | 2022-01-07T07:24:15 | 214,093,084 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,929 | plantuml | @startuml
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
abstract class AbstractEgkHealthCardPresentEvent {
# AbstractEgkHealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
abstract class AbstractHbaHealthCardPresentEvent {
# AbstractHbaHealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
abstract class AbstractHealthCardPresentEvent {
# AbstractHealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
abstract class AbstractSmcbHealthCardPresentEvent {
# AbstractSmcbHealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
class Egk21HealthCardPresentEvent {
+ Egk21HealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
class Egk2HealthCardPresentEvent {
+ Egk2HealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
class Hba21HealthCardPresentEvent {
+ Hba21HealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
class Hba2HealthCardPresentEvent {
+ Hba2HealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
class Smcb21HealthCardPresentEvent {
+ Smcb21HealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
class Smcb2HealthCardPresentEvent {
+ Smcb2HealthCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
package de.gematik.ti.healthcard.control.common.event.present {
class UnknownCardPresentEvent {
+ UnknownCardPresentEvent()
}
}
}
package de.gematik.ti.healthcard.control.common.event {
abstract class AbstractHealthCardEvent {
# AbstractHealthCardEvent()
+ getHealthCard()
}
}
package de.gematik.ti.cardreader.provider.api.events {
abstract class AbstractCardReaderEvent {
}
}
AbstractHealthCardEvent -up-|> AbstractCardReaderEvent
AbstractEgkHealthCardPresentEvent -up-|> AbstractHealthCardPresentEvent
AbstractHbaHealthCardPresentEvent -up-|> AbstractHealthCardPresentEvent
AbstractHealthCardPresentEvent -up-|> AbstractHealthCardEvent
AbstractSmcbHealthCardPresentEvent -up-|> AbstractHealthCardPresentEvent
Egk21HealthCardPresentEvent -up-|> AbstractEgkHealthCardPresentEvent
Egk2HealthCardPresentEvent -up-|> AbstractEgkHealthCardPresentEvent
Hba21HealthCardPresentEvent -up-|> AbstractHbaHealthCardPresentEvent
Hba2HealthCardPresentEvent -up-|> AbstractHbaHealthCardPresentEvent
Smcb21HealthCardPresentEvent -up-|> AbstractSmcbHealthCardPresentEvent
Smcb2HealthCardPresentEvent -up-|> AbstractSmcbHealthCardPresentEvent
UnknownCardPresentEvent -up-|> AbstractHealthCardPresentEvent
@enduml
| false | true | false | false | class |
9d892598b6a22cc58815b6fd7eae8f42f6ed45fb | 22c062df90adff61becb66216348f35b57920adb | /UML/Extensibility/diagrams/WebClientUser.puml | 2f44c4275a574be22f6d0271ace9d5b15f229b9b | [
"BSD-3-Clause"
] | permissive | zainmehdi/software_engineering | 0ca30f6daf526434fbec9ae0240da0685dc5977a | 9b655590d05246d6e859673161de05ecde788b14 | refs/heads/master | 2022-12-29T14:33:41.798904 | 2020-10-12T13:57:20 | 2020-10-12T13:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 154 | puml | @startuml
left to right direction
class "«Metaclass» \n User " as User
class "«stereotype» \n Web Client" as WebClient
WebClient --|> User
@enduml
| false | true | true | false | class |
5bd422dd9927bbf7f23555f2d2c40a130ac60aba | 8d4967da1adacdd7f5b7c5fd668cd6bb8b76f6de | /command/etc/command.urm.puml | a8b773418ee39270aae1b05d042dadbf07b2655f | [
"MIT"
] | permissive | wsbhacker/java-design-patterns | 2de669372337522bcf23ada37711fd6d4ab0e398 | bbc00cb6b22f0bc3907cf1671476ef8b783693ec | refs/heads/master | 2021-01-10T23:21:17.634334 | 2020-04-18T15:44:36 | 2020-04-18T15:44:36 | 70,596,323 | 1 | 0 | MIT | 2020-04-18T15:44:38 | 2016-10-11T13:30:03 | Java | UTF-8 | PlantUML | false | false | 1,920 | puml | @startuml
package com.iluwatar.command {
class App {
+ App()
+ main(args : String[]) {static}
}
abstract class Command {
+ Command()
+ execute(Target) {abstract}
+ redo() {abstract}
+ toString() : String {abstract}
+ undo() {abstract}
}
class Goblin {
+ Goblin()
+ toString() : String
}
class InvisibilitySpell {
- target : Target
+ InvisibilitySpell()
+ execute(target : Target)
+ redo()
+ toString() : String
+ undo()
}
class ShrinkSpell {
- oldSize : Size
- target : Target
+ ShrinkSpell()
+ execute(target : Target)
+ redo()
+ toString() : String
+ undo()
}
enum Size {
+ NORMAL {static}
+ SMALL {static}
- title : String
+ toString() : String
+ valueOf(name : String) : Size {static}
+ values() : Size[] {static}
}
abstract class Target {
- LOGGER : Logger {static}
- size : Size
- visibility : Visibility
+ Target()
+ getSize() : Size
+ getVisibility() : Visibility
+ printStatus()
+ setSize(size : Size)
+ setVisibility(visibility : Visibility)
+ toString() : String {abstract}
}
enum Visibility {
+ INVISIBLE {static}
+ VISIBLE {static}
- title : String
+ toString() : String
+ valueOf(name : String) : Visibility {static}
+ values() : Visibility[] {static}
}
class Wizard {
- LOGGER : Logger {static}
- redoStack : Deque<Command>
- undoStack : Deque<Command>
+ Wizard()
+ castSpell(command : Command, target : Target)
+ redoLastSpell()
+ toString() : String
+ undoLastSpell()
}
}
Target --> "-size" Size
Wizard --> "-undoStack" Command
ShrinkSpell --> "-oldSize" Size
InvisibilitySpell --> "-target" Target
ShrinkSpell --> "-target" Target
Target --> "-visibility" Visibility
Goblin --|> Target
InvisibilitySpell --|> Command
ShrinkSpell --|> Command
@enduml | false | true | false | false | class |
79119236dee8ae8d34ad42486617c119dea10ad9 | df0eb8ca6f3fb341d7319848cafceec002f2f8e8 | /sequence-diagrams/puml/menu.puml | f0f688060e61039ea69e9d3fd4a6b14fd58c4b16 | [] | no_license | grigoresc/architecture-katas | 8b2097fd8fc9d29fd539220b950f7584d80e51a6 | 88346df560f0dc43c8ee2c9747ef80bb3502e473 | refs/heads/main | 2023-01-20T19:19:57.091686 | 2020-12-02T10:01:11 | 2020-12-02T10:01:11 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 228 | puml | @startuml
actor "Vendor" as V
actor "Admin" as A
actor "Customer" as U
participant "Menu Srv" as M
A -> M: Add/Edit/Remove/Disable items in Menu
V -> M: Add/Edit/Remove/Disable items in Menu
U -> M : View/Search Menu
@enduml
| false | true | false | false | sequence |
4616c46ddb2358c4283789c561dbf5e70dcb655a | 063a0cbebe7fe10f0be7483645383255f0abe67d | /muduo/TimerQueue/TimerQueue.puml | 6fe1e6fc2cdb379338f596896672b250e4a1f42f | [] | no_license | Jackistang/Jackis | bc9d3a82ce7ca7a3bd5e3993c1b8616707481843 | d984f9d19620603c37fc3018b6e0c2408ec6628d | refs/heads/main | 2023-07-13T10:14:42.254860 | 2021-08-25T11:58:12 | 2021-08-25T11:58:12 | 323,780,573 | 4 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,012 | puml | @startuml
class Timer {
- callback_ : const TimerCallback
- expiration_ : Timestamp
- interval_ : const double
- repeat_ : const bool
+ Timer(const TimerCallback& cb, Timestamp when, double interval)
+ run() const : void
+ expiration() const : Timestamp
+ repeat() const : bool
+ restart(Timestamp now) : void
}
class TimerId {
- value_ : Timer *
+ TimerId(Timer *timer)
}
class TimerQueue {
- typedef std::pair<Timestamp, Timer*> Entry
- typedef std::set<Entry> TimerList
- loop_ : EventLoop *
- timerfd_ : const int
- timerfdChannel_ : Channel
- timers_ : TimerList
+ TimerQueue()
+ ~TimerQueue()
+ addTimer(const TimerCallback &cb, Timestamp when, double interval) : TimerId
+ cancel(TimerId timerId) : void
- getExpired(Timestamp now) : std::vector<Entry>
- handleRead() : void
- reset(const std::vector<Entry>& expired, Timestamp now) : void
- insert(Timer* timer) : bool
}
@enduml
@startuml
class Timer {
- callback_ : const TimerCallback
- expiration_ : Timestamp
- interval_ : const double
- repeat_ : const bool
+ Timer(const TimerCallback& cb, Timestamp when, double interval)
+ run() const : void
+ expiration() const : Timestamp
+ repeat() const : bool
+ restart(Timestamp now) : void
}
@enduml
@startuml
class TimerId {
- value_ : Timer *
+ TimerId(Timer *timer)
}
@enduml
@startuml
class TimerQueue {
- typedef std::pair<Timestamp, Timer*> Entry
- typedef std::set<Entry> TimerList
- loop_ : EventLoop *
- timerfd_ : const int
- timerfdChannel_ : Channel
- timers_ : TimerList
+ TimerQueue()
+ ~TimerQueue()
+ addTimer(const TimerCallback &cb, Timestamp when, double interval) : TimerId
+ cancel(TimerId timerId) : void
- getExpired(Timestamp now) : std::vector<Entry>
- handleRead() : void
- reset(const std::vector<Entry>& expired, Timestamp now) : void
- insert(Timer* timer) : bool
}
@enduml | false | true | false | false | class |
5096d66b44a8904f9e18f77dd83a5a029169ba79 | f90c39ffff44a5a39493336c9c18331db8f8760f | /docs/useCaseView/MoveFromWasteToTableau.plantuml | 4e713863c98544d06b5ead156ae3a34c4d6c85ca | [] | no_license | Sertinell/klondike | e60d49defc893f459218c491a084e1872fddaa44 | 7c10f627fda6caf8b1ddc9e2cd6a59b218f34c53 | refs/heads/master | 2023-04-11T08:18:00.482272 | 2021-04-22T12:46:28 | 2021-04-22T12:46:28 | 338,658,308 | 0 | 9 | null | 2021-04-22T12:46:29 | 2021-02-13T19:59:43 | null | UTF-8 | PlantUML | false | false | 517 | plantuml | @startuml Player Moves Card From Waste to Tableau
hide empty description
state "**OPEN_GAME**" as 0
state " " as 1
state " " as 2
state " " as 3
state "**ShowBoard**" as 4
state "**OPEN_GAME**" as 5
0 -down-> 1 : Player selects move from\n waste to tableau
state choice <<choice>>
1 -down-> choice : Is waste empty
choice --> 0
choice -down-> 3: No
3 -down-> 2 : Player selects destination
state choice1 <<choice>>
2 -down-> choice1 : Is valid destination?
choice1 -down-> 4 : Yes
choice1 --> 3
4 -down-> 5
@enduml
| false | true | false | false | sequence |
c87364bdd8e23fea0de30db53ad1b80274157572 | 5635c597a38479879c55c4594c8b09877ef1102b | /src/main/java/org/hfeng/misc/hfdp/ch6/simpleremote/simple-remote.puml | 722f8fc388ab3fb3428da43261bee27bcbbf3fb2 | [] | 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 | 735 | puml | @startuml
interface Command {
execute()
}
class LightOnCommand implements Command{
execute()
}
class LightOffCommand implements Command{
execute()
}
class SimpleRemoteControl {
Command slot
setCommand()
buttonWasPressed()
}
class Light {
on()
off()
}
SimpleRemoteControl -right--> Command :has one
LightOnCommand -left--> Light :has one
LightOffCommand -left--> Light :has one
Client -right--> Light : creating Light
Client -right--> LightOnCommand : creating LightCommand and setting its Receiver: Light
note top of SimpleRemoteControl : This is Invoker
note bottom of LightOnCommand : This is ConcreteCommand
note bottom of LightOffCommand : This is ConcreteCommand
note bottom of Light : This is Reciver
@enduml | false | true | false | false | sequence |
8baa15a00d3f1df4344f765351ccea2191926dc3 | ff7c256e07033fc9caac6750b75e244e3161dd8d | /umls/strategy-id.puml | bb7d4008cd3473de35dd64b32b998a90a2b3a39e | [
"MIT"
] | permissive | reouno/tomatorader | 17a02148520bc745c5784b2a40c8f0320610df13 | b781206051129fa59439a0f314f4f1ed647a6852 | refs/heads/main | 2022-12-21T01:51:09.711011 | 2020-10-07T07:15:41 | 2020-10-07T07:15:41 | 301,954,935 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 174 | puml | @startuml
package HowToManageStrategyId {
entity Strategy {
id: int
}
class StrategyManager {
strategies: Dict[int, Strategy]
}
}
@enduml | false | true | false | false | sequence |
5465d530a4034a7f48ff70b34df7948bec3dcdad | 84d49c29cfedd2d78f8d4381859b6e48d20b3509 | /sequence_diagram_wiki_add.puml | 3c10df2b524a61ef63fd9a8bdfc19d7233d2da6d | [] | no_license | poznas/hydra-aimo | 9e79ff6a0ff4a38871815bdd4ee33435a1a43c31 | e1497ee5e689e8d9f81f4c2e989924e2c355ace3 | refs/heads/master | 2020-04-14T00:45:27.398473 | 2019-01-21T12:25:05 | 2019-01-21T12:25:05 | 163,541,573 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,795 | puml | @startuml
actor User
boundary WikiScreen
boundary AddWikiInfoScreen
control HydraController
control WikiService
control PrivilegeService
control HydraRepository
database DB
box "Client" #LightBlue
participant WikiScreen
participant AddWikiInfoScreen
end box
box "Server" #Pink
control HydraController
control WikiService
control PrivilegeService
control HydraRepository
end box
box "Model" #Orange
participant DB
end box
User -> WikiScreen : clickAddButton()
activate WikiScreen
group RETRIEVE USER PRIVILEGES FROM SERVER
ref over WikiScreen : **UC_4 / DECORATE**\n**REQUEST WITH**\n**JWT TOKEN**
WikiScreen -> HydraController : **GET /auth/prigileges** (token)
ref over HydraController : **UC_4 / VALIDATE USER TOKEN**
activate HydraController
group GET USER PRIVILEGES
HydraController -> PrivilegeService : getUserPrivileges(userId)
activate PrivilegeService
PrivilegeService -> HydraRepository : getUserPrivileges(userId)
activate HydraRepository
HydraRepository -> DB
activate DB
DB --> HydraRepository
deactivate DB
HydraRepository --> PrivilegeService : List<Privilege>
deactivate HydraRepository
PrivilegeService --> HydraController : List<Privilege>
deactivate PrivilegeService
end
HydraController --> WikiScreen : List<Privilege>
deactivate HydraController
end
alt user has FN_PRV_CREATE_INFORMATION
WikiScreen -> AddWikiInfoScreen : //<< navigate >>//
activate AddWikiInfoScreen
ref over AddWikiInfoScreen : **UC_4 / DECORATE**\n**REQUEST WITH**\n**JWT TOKEN**
AddWikiInfoScreen -> HydraController : **GET /wiki/companies** (token)
ref over HydraController : **UC_4 / VALIDATE USER TOKEN**
activate HydraController
HydraController -> WikiService : getCompanies()
activate WikiService
WikiService -> HydraRepository : getCompanies()
activate HydraRepository
HydraRepository -> DB
activate DB
DB --> HydraRepository
deactivate DB
HydraRepository --> WikiService : List<Company>
deactivate HydraRepository
WikiService --> HydraController : List<Company>
deactivate WikiService
HydraController --> AddWikiInfoScreen : List<Company>
deactivate HydraController
AddWikiInfoScreen -> AddWikiInfoScreen : updateCompanyPicker()
User -> AddWikiInfoScreen : completeForm()
User -> AddWikiInfoScreen : clickSubmitButton()
ref over AddWikiInfoScreen : **UC_4 / DECORATE**\n**REQUEST WITH**\n**JWT TOKEN**
AddWikiInfoScreen -> HydraController : **POST /wiki/info/add** (token, information)
ref over HydraController : **UC_4 / VALIDATE USER TOKEN**
activate HydraController
HydraController -> WikiService : addWikiInfo(userId, information)
ref over WikiService : **GET USER PRIVILEGES**
activate WikiService
alt user has FN_PRV_CREATE_INFORMATION
WikiService -> HydraRepository : addWikiInfo(information)
activate HydraRepository
HydraRepository -> DB
activate DB
DB --> HydraRepository
deactivate DB
HydraRepository --> WikiService : ok
deactivate HydraRepository
WikiService --> HydraController : ok
deactivate WikiService
HydraController --> AddWikiInfoScreen : ok
deactivate HydraController
else no FN_PRV_CREATE_INFORMATION
activate WikiService
WikiService --> HydraController : error message
deactivate WikiService
activate HydraController
HydraController --> AddWikiInfoScreen : error message
deactivate HydraController
AddWikiInfoScreen -> AddWikiInfoScreen : showErrorMessage()
end
AddWikiInfoScreen -> WikiScreen : //<< navigate >>//
end
@enduml | false | true | false | false | usecase |
7356f60604a94445ab5a7ee4400b23aa926c6cf2 | 550615633ff8691106f37bd4de08a857470fd407 | /slides/architecture.puml | 2276dba3c1ad98bd62e4dc3d6ad30c4019577e1c | [] | no_license | johns10/elixtron | 1af4ef66fedd7ede1e91647ae8d138fdf5d10435 | 7787fe36a10d8d0a8382bad10a3525abdce33f08 | refs/heads/master | 2023-05-08T18:48:51.995154 | 2021-06-04T13:08:45 | 2021-06-04T13:08:45 | 372,980,353 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 440 | puml | @startuml
cloud {
[Elixir Host]
}
package "browser" {
() hooks
() ui
[Elixir Host] <-down-> [LiveView]
hooks <-up-> [LiveView]
ui <-up-> [LiveView]
}
package "localhost" {
hooks <-down-> [Electron]
[Electron] <-left-> [Puppeteer]
[Puppeteer] <-left-> [Chrome]
}
ui <-left-> [User]
[User] <-down-> Chrome
[User]
Chrome <-down-> [LAN Device]
Chrome <-down-> [WAN Device]
@enduml | false | true | false | false | deployment |
a7e53298d2901395f068e11f981f806cc783436a | 46983a2de2b4b5078d4f5bed6ed20276a3d4a2a8 | /example.puml | 6dcdd1078bda2d1792441f7e8ac536fe59227f95 | [] | no_license | seesleestak/seq-diagram-poc | 6fa3ddefa25ba7b158d85a30e342f2422c56cbd0 | bdd44db01be5c47fb7cea0af1d9f34794bfb7d49 | refs/heads/master | 2020-11-29T03:10:43.285318 | 2019-12-31T16:42:40 | 2019-12-31T16:42:40 | 230,004,773 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 638 | puml | @startuml
title Example
Frontend -> Middletier: GET /posts
Middletier -> Backend: GET [[http://example.com /comments]]
Backend -> Service: comments
Service --> Backend: return(comments)
Backend --> Middletier: return(comments)
alt links not provided
Middletier -> Backend: GET [[http://example.com /thumbnails]]
Backend --> Middletier: return(thumbnails)
Middletier -> Backend: GET [[http://example.com /likes]]
Backend --> Middletier: return(likes)
else links provided
Middletier -> Backend: POST [[http://example.com /links]]
Backend --> Middletier: return(links)
end
Middletier --> Frontend: return(posts)
@enduml
| false | true | false | false | sequence |
7b805a38e2e1ce1b23bfe7c41f5c13e32f4b1002 | c629acfffbec95f0b3eca4c11a7fe61d0f882041 | /core/docs/core_components.puml | af2edb1c096e5341276b392beaa5f552d2b6a803 | [] | no_license | saratoga8/sights_detect | 6ebe37ecc3deff31e0509200efa0fb32c05e3d95 | 5be3a6f865f2e187d8bdfa83caca8158dbf0f34c | refs/heads/master | 2021-07-24T07:37:15.928914 | 2020-10-01T09:19:40 | 2020-10-01T09:19:40 | 194,370,159 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,465 | puml | @startuml
package "controllers" {
[Controller]
}
package "detections" {
[Detection]
[Detections]
[DetectionsStorage]
}
package "seekers" {
[Seeker]
package "objects" {
[ObjectSeekersFactory]
[ObjectSeeker]
package "google" {
[GoogleResponse]
[GoogleObjSeeker]
}
}
package "pics" {
[PicSeekersFactory]
[DesktopFS]
[PicSeeker]
}
}
package "statistics" {
[Statistics]
[StatisticsData]
[DetectionError]
[DetectionInfo]
}
package "net" {
[Request]
}
[Controller] ..> [Detections]
[Controller] ..> [DetectionsStorage]
[Controller] ..> [Detection]
[Controller] ..> [Seeker]
[Controller] ..> [Statistics]
[Controller] ..> [StatisticsData]
[Controller] ..> [PicSeekersFactory]
[Controller] ..> [ObjectSeekersFactory]
[Request] ..> [GoogleResponse]
[ObjectSeeker] ..> [Detection]
[ObjectSeeker] ..> [Seeker]
[GoogleObjSeeker] ..> [Detection]
[GoogleObjSeeker] ..> [Detections]
[GoogleObjSeeker] ..> [ObjectSeeker]
[DesktopFS] ..> [Detection]
[PicSeekersFactory] ..> [Seeker]
[PicSeekersFactory] ..> [Detection]
[PicSeeker] ..> [Detection]
[PicSeeker] ..> [Seeker]
[DetectionError] ..> [Detection]
[DetectionInfo] ..> [Detection]
[StatisticsData] ..> [Detection]
[StatisticsData] ..> [Detections]
@enduml | false | true | false | false | class |
a2c59650de9ab2b924cb6533d40653fa2a223094 | 372e13940be1f116c671dbb746617a331f06899e | /Assets/TPPackages/com.cocoplay.core/Documentation-/puml/Runtime/Utility/MathUtil.puml | dd915e66a801083ed0eb6687eba79f02c2fb5b03 | [] | no_license | guolifeng2018/CIGA-Game-Jam | 797734576510e27b5c5cee2eb17c1444f51d258c | fcd03e5579bef3bffe2cb51f52ba11a49a9cc02d | refs/heads/master | 2022-12-10T19:21:15.522141 | 2020-08-16T10:06:23 | 2020-08-16T10:06:23 | 285,986,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 168 | puml | @startuml
class MathUtil <<static>> {
+ {static} Approximately(v1:float, v2:float, errorRange:float) : bool
+ {static} WrapAngle(angle:float) : float
}
@enduml
| false | true | false | false | class |
7c3ffb7452ff1f433103753e389db4adabab33d5 | 7c52c02af747a0413d53bd373ec154a1826bbd0d | /src/main/resources/ex43.puml | 4e30fa343ce4bddf1e673944658bf8b9d035fa00 | [] | no_license | oleksii-kulyk/kulyk-cop3330-assignment3 | 607cbd85f489980938a752c0a952e16bc017b342 | dd9c0867931157800384b351171a81a62c890d32 | refs/heads/master | 2023-06-01T21:15:00.173412 | 2021-06-21T03:58:17 | 2021-06-21T03:58:17 | 378,577,784 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 318 | puml | @startuml
title exercise 41 - Class Diagram
class App {
+File input41
+Scanner input
void main()
}
class SiteBuilder {
String siteName
String siteAuthor
String Path
String create_dir(String path)
String write_index(String name, String author, String path)
}
App <|-down- SiteBuilder: uses
@enduml | false | true | false | false | class |
42f586043430747e61d541dc0b8413978c74a578 | e02b559aa78a602139766e0c722b71c77978a1bf | /src/wiki/_Home/uml/class_04.puml | 3da19698469ffd3f0acb2813b3c1a5724284c552 | [] | no_license | vitalispopoff/DSA_LectureAnalysis | ccb06eebdd404565442e965874ca3aa56cc58bcb | 3689ccdfd2299c2402c5bd0415336216eaeadc31 | refs/heads/master | 2022-12-29T20:46:03.754180 | 2020-08-03T21:05:50 | 2020-08-03T21:05:50 | 238,289,756 | 0 | 0 | null | 2020-10-13T19:23:20 | 2020-02-04T19:37:41 | Java | UTF-8 | PlantUML | false | false | 90 | puml | @startuml
hide members
class Equation {
}
class Result{
}
Equation ..> Result
@enduml | false | true | false | false | class |
0b382b95691bd597aa4697c99f90549f9622173b | b18eca10731183c9830c8f81deaa9b2fcf42cdb0 | /app/src/test/java/com/example/danie/flexicuapplication/flexicuapplication.plantuml | a1c92f8b8f469ff58ad9fb3af69a34a4fa9d8ea2 | [] | no_license | DanielGreibe/FlexicuApplication | 5f703d39d2fcdf409883d4ace15534a9dc64cfe3 | 5fa4b060abb9374d4edd146aadc9bb7b90c72a91 | refs/heads/master | 2020-04-02T17:58:59.432702 | 2019-01-25T09:34:39 | 2019-01-25T09:34:39 | 154,681,997 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 380 | plantuml | @startuml
title __FLEXICUAPPLICATION's Class Diagram__\n
package com.example.danie.flexicuapplication {
class ExampleUnitTest {
+ addition_isCorrect()
}
}
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
| false | true | false | false | class |
952af9e6eb73a636aa2dd76417192e53ceed6495 | 417585d7b22d15cbaffe680ad1794580d29f1edf | /tools/plantuml/examples/sequence/ab.puml | c4eaa6415d500befb16eeb563d9221666ecf32d6 | [
"MIT"
] | permissive | satishgoda/visualization | f455336238e433624da0438580eb354a30efe3da | 0bdbd9bde49853c203abcc3fd2f01ec904c11e77 | refs/heads/master | 2020-12-25T17:05:04.981649 | 2020-01-25T01:30:29 | 2020-01-25T01:30:29 | 18,647,091 | 1 | 0 | null | 2016-07-02T13:47:25 | 2014-04-10T18:27:23 | Python | UTF-8 | PlantUML | false | false | 222 | puml | @startuml
hide footbox
[-> a
create b
a -> b
activate b
note right: Starting processing
||25||
==25% done==
||25||
==50% done==
...
==100% done==
b --> a
note right: Done with processing
deactivate b
[<- a
@enduml
| false | true | false | false | sequence |
c20951c98aa16258b7f386973b80233b28afc1e9 | 0451c8ba480721dd4f116d8d1c989fc941bf91f8 | /personalFinanceManagement/src/main/java/switch2019/project/controllerLayer/rest/US007CreateGroupAccountJPAInteraction.puml | 34fd9248a1981cb46e85576da138d8929be99a61 | [] | no_license | mleitaoribeiro/DevOpsMaven | ee8eac2ea35a3818a4480c7ee57c305f9f8938e3 | c8e4bcb36dfd765a08f8b9140d3b60a260734ae1 | refs/heads/master | 2023-01-01T13:37:18.143028 | 2020-07-02T16:16:52 | 2020-07-02T16:16:52 | 304,918,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,225 | puml | @startuml
->"accountRep:AccountRepository": createAccount(accountDenomination, accountDescription, groupID);
activate "accountRep:AccountRepository" #FFBBBB
participant ":AccountDomainDataAssembler"
autonumber 1.9.1
create "account:Account"
"accountRep:AccountRepository"-->"account:Account": create(accountDenomination, accountDescription, groupID)
"accountRep:AccountRepository"->":AccountDomainDataAssembler": toData(account)
autonumber 1.9.2.1
activate ":AccountDomainDataAssembler" #FFBBBB
":AccountDomainDataAssembler"->"account:Account" : groupID = getOwnerID()
activate "account:Account" #FFBBBB
":AccountDomainDataAssembler"->"account:Account" : accountDenomination = getDenomination()
":AccountDomainDataAssembler"->"account:Account" : accountDescription = getDescription()
":AccountDomainDataAssembler"->"account:Account" : accountBalance= getBalance();
deactivate "account:Account"
create "accountJpa:AccountJpa"
":AccountDomainDataAssembler"-->"accountJpa:AccountJpa" : create(groupID, accountDenomination, accountDescription, accountBalance)
":AccountDomainDataAssembler"-->"accountRep:AccountRepository" : accountJPA
deactivate ":AccountDomainDataAssembler" #FFBBBB
autonumber 1.9.3
|||
"accountRep:AccountRepository"->"accountRep:AccountRepository": savedAccountJpa = save(accountJPA)
|||
"accountRep:AccountRepository"->":AccountDomainDataAssembler":toDomain(savedAccountJpa)
activate ":AccountDomainDataAssembler" #FFBBBB
autonumber 1.9.4.1
":AccountDomainDataAssembler"->"accountJpa:AccountJpa" : groupID = getAccountIDJpa().getOwnerID();
activate "accountJpa:AccountJpa" #FFBBBB
":AccountDomainDataAssembler"->"accountJpa:AccountJpa" : accountDenomination = getDenomination()
":AccountDomainDataAssembler"->"accountJpa:AccountJpa" : accountDescription = getDescription()
":AccountDomainDataAssembler"->"accountJpa:AccountJpa" : accountBalance = getAmount()
deactivate "accountJpa:AccountJpa"
create "savedAccount:Account"
":AccountDomainDataAssembler"-->"savedAccount:Account": create(accountDenomination, accountDescription, groupID, accountBalance)
":AccountDomainDataAssembler"-->"accountRep:AccountRepository" : savedAccount
autonumber 1.9.5
<--"accountRep:AccountRepository": savedAccount
@enduml | false | true | false | false | sequence |
495950a75d1175de3bcd37e9925e52dc914bd2aa | 83d541adf53100e24afa3038d70ae4491680bf01 | /diagrams/api/request-flow.puml | 258d8257a564d6b94cce6f4df741145cdadc3bbc | [] | no_license | Rachnerd/remia-poc | 2d7c2a97f2fb489fa8bb7436bac714b2b3d5b755 | e95e368a41cd1977594b5858fa1b1d370542eb06 | refs/heads/master | 2023-03-17T22:11:58.810477 | 2019-10-07T20:32:42 | 2019-10-07T20:32:42 | 210,914,107 | 0 | 0 | null | 2023-03-08T03:13:08 | 2019-09-25T18:31:50 | TypeScript | UTF-8 | PlantUML | false | false | 945 | puml | @startuml
actor Client
Client -> Middleware: query/mutation
Middleware -> Middleware: authenticate()
Middleware -> Resolver: query/mutation
Resolver -> Service: getEntity(params)
Service -> AuthService: authorize()
Service <-- AuthService: roles
Service -> ValidationServiceN: validate(params)
Service <-- ValidationServiceN: isValid
Service -> BusinessLogicServiceN: doSomethingElse()
Service <-- BusinessLogicServiceN: result
Service -> Repository: interactWithDatabase()
Service <-- Repository: entity
Resolver <-- Service: entity
Resolver -> Resolver: convertToGqlDto(entity)
Middleware <-- Resolver: entityGqlDto
Client <-- Middleware: Gql data
skinparam ParticipantPadding 20
skinparam BoxPadding 10
box "Controller"
participant Resolver
end box
box "Service"
participant Service
participant AuthService
participant ValidationServiceN
participant BusinessLogicServiceN
end box
box "Repository"
participant Repository
end box
@enduml
| false | true | false | false | usecase |
0e4188f845ceb40f15688eb78a3004aeafc9ffa9 | 808dca6cbf1bb97cd65c434ed1fc2c4727b9bac6 | /test.puml | 6f2d364744a14d5d332fde5061af30d2b73a992f | [
"MIT"
] | permissive | thexdesk/develop | 4b909d695c5f17bfbf9eca44a420ace4adc6537a | 8a70f739cba227cfd3e8068be7f59132813ffc29 | refs/heads/develop | 2023-03-06T07:18:09.023293 | 2019-04-28T03:00:54 | 2019-04-28T03:00:54 | 405,447,785 | 0 | 0 | NOASSERTION | 2023-02-24T09:56:16 | 2021-09-11T17:58:42 | null | UTF-8 | PlantUML | false | false | 13,772 | puml | @startuml
scale 0.9
class Codex.Projects.Commands.MakeProject {
#configFilePath : string
+handle()
+__construct(configFilePath : string)
}
class Codex.Projects.Commands.FindProjects {
#docsDir : null|string
+handle() : array
+__construct(docsDir : string = null)
}
class Codex.Projects.Project {
+{static}CASTS_PATH = "casts"
+{static}DEFAULTS_PATH = "defaults"
+{static}INHERITS_PATH = "inherits"
#children : Codex.Revisions.RevisionCollection
#fsm : Illuminate.Contracts.Filesystem.Factory
+mergePaths = ["codex.projects.inherits"]
#parent : Codex.Codex
+getDefaultDiskName() : string
+getDefaultRevisionKey()
+getDisk() : Illuminate.Contracts.Filesystem.Filesystem
+getDiskConfig() : Illuminate.Support.Collection
+getDiskName() : array|.Codex.Model.Collection|mixed
+getFsm() : Illuminate.Contracts.Filesystem.Factory
+getRevision(key) : Codex.Contracts.Revisions.Revision|mixed
+getRevisions() : Codex.Revisions.RevisionCollection
+hasRevision(key) : bool
+newCollection(models : array = []) : Codex.Projects.ProjectCollection|.Illuminate.Database.Eloquent.Collection
+revisions()
+setDiskName(diskName) : $this
+setFsm(fsm : Illuminate.Contracts.Filesystem.Factory) : Codex.Contracts.Projects.Project
+setMergedAttributes(attributes)
+updateDisk()
}
class Codex.Projects.Project extends Codex.Mergable.Model
class Codex.Projects.Project implements Codex.Contracts.Projects.Project
class Codex.Projects.Project implements Codex.Contracts.Mergable.ChildInterface
class Codex.Projects.Project implements Codex.Contracts.Mergable.ParentInterface
class Codex.Projects.ProjectCollection {
+getCodex() : mixed
+getDefaultKey() : mixed
#makeModel(key) : Codex.Contracts.Projects.Project
#resolveLoadable() : array
+get($key) : \Codex\Projects\Project
}
class Codex.Projects.ProjectCollection extends Codex.Mergable.ModelCollection
class Codex.Projects.Events.ResolvedProject {
#project : Codex.Contracts.Projects.Project
+getProject() : Codex.Contracts.Projects.Project
+__construct(project : Codex.Contracts.Projects.Project)
}
class Codex.Addons.Addon {
#enabled : bool = false
#extensions : array|string[]
#installed : bool = false
#path : string
#slug : string
#vendor : string
+getExtensions() : array|string[]
+getName()
+getPath() : null
+getServiceProvider() : string
+getSlug() : string
+getVendor() : string
+isEnabled() : bool
+isInstalled() : bool
+newServiceProvider() : Illuminate.Support.ServiceProvider
+path(parts)
+setEnabled(enabled : bool) : Addon
+setExtensions(extensions : array|string[]) : Addon
+setInstalled(installed : bool) : Addon
+setPath(path : null) : Addon
+setSlug(slug : string) : Addon
+setVendor(vendor : string) : Addon
+__toString()
}
class Codex.Addons.AddonProvider {
#application : Illuminate.Contracts.Foundation.Application
#events : Illuminate.Contracts.Events.Dispatcher
#instances : array = []
#providers : array = []
#router : Illuminate.Routing.Router
#bindAliases(provider : Codex.Addons.AddonServiceProvider)
+register(addon : Codex.Addons.Addon)
#registerCommands(provider : Codex.Addons.AddonServiceProvider)
#registerConfig(provider : Codex.Addons.AddonServiceProvider)
#registerEvents(provider : Codex.Addons.AddonServiceProvider)
#registerProviders(provider : Codex.Addons.AddonServiceProvider)
' +__construct(application : Illuminate.Contracts.Foundation.Application, router : Illuminate.Routing.Router, events : Illuminate.Contracts.Events.Dispatcher)
}
class Codex.Addons.AddonRegistry {
#filePath : string
#fs : Illuminate.Filesystem.Filesystem
#registry : array
+create(name : Codex.Addons.string)
+delete(name : Codex.Addons.string)
+exists(name)
#get(name, key, default = null)
+isEnabled(name : Codex.Addons.string)
+isInstalled(name : Codex.Addons.string)
#load(reload = false)
#save()
#set(name, key, value)
+setDisabled(name : Codex.Addons.string)
+setEnabled(name : Codex.Addons.string)
+setInstalled(name : Codex.Addons.string)
+setUninstalled(name : Codex.Addons.string)
+__construct(fs : Illuminate.Filesystem.Filesystem)
}
class Codex.Addons.AddonLoader {
+load(path) : $this
}
class Codex.Addons.AddonManager {
#addons : Codex.Addons.AddonCollection
#config : Illuminate.Contracts.Config.Repository
#dispatcher : Illuminate.Contracts.Events.Dispatcher
#finder : Codex.Addons.AddonFinder
#integrator : Codex.Addons.AddonIntegrator
#registry : Codex.Addons.AddonRegistry
+disable(addon : Codex.Addons.Addon)
+enable(addon : Codex.Addons.Addon)
+install(addon : Codex.Addons.Addon)
+register()
+uninstall(addon : Codex.Addons.Addon)
' +__construct(finder : Codex.Addons.AddonFinder, integrator : Codex.Addons.AddonIntegrator, registry : Codex.Addons.AddonRegistry, addons : Codex.Addons.AddonCollection, dispatcher : Illuminate.Contracts.Events.Dispatcher, config : Illuminate.Contracts.Config.Repository)
}
class Codex.Addons.AddonIntegrator {
#addonProvider : Codex.Addons.AddonProvider
#collection : Codex.Addons.AddonCollection
#events : Illuminate.Contracts.Events.Dispatcher
#extensions : Codex.Addons.Extensions.ExtensionCollection
#registry : Codex.Addons.AddonRegistry
#getComposerData(path)
+register(path)
' +__construct(collection : Codex.Addons.AddonCollection, extensions : Codex.Addons.Extensions.ExtensionCollection, registry : Codex.Addons.AddonRegistry, addonProvider : Codex.Addons.AddonProvider, events : Illuminate.Contracts.Events.Dispatcher)
}
class Codex.Addons.AddonCollection {
+disabled() : AddonCollection
+enabled() : AddonCollection
+installed() : AddonCollection
+uninstalled() : AddonCollection
}
class Codex.Addons.AddonCollection extends Illuminate.Support.Collection
class Codex.Addons.AddonFinder {
#baseDir
+find()
+getBaseDir() : string
+setBaseDir(baseDir : string) : AddonFinder
+__construct()
}
class Codex.Addons.Console.AddonCommand {
#signature = "codex:addon {operation : install/uninstall/enable/disable/list} {name?}"
+handle(addons : Codex.Addons.AddonCollection, manager : Codex.Addons.AddonManager)
}
class Codex.Addons.Console.AddonCommand extends Illuminate.Console.Command
class Codex.Addons.Events.AddonsHaveRegistered {
#addons : Codex.Addons.AddonCollection
+getAddons() : Codex.Addons.AddonCollection
+__construct(addons : Codex.Addons.AddonCollection)
}
class Codex.Addons.Events.AddonWasRegistered {
}
class Codex.Addons.Events.AddonWasRegistered extends Codex.Addons.Events.AddonEvent
class Codex.Addons.Events.AddonWasDisabled {
}
class Codex.Addons.Events.AddonWasDisabled extends Codex.Addons.Events.AddonEvent
class Codex.Addons.Events.AddonWasInstalled {
}
class Codex.Addons.Events.AddonWasInstalled extends Codex.Addons.Events.AddonEvent
class Codex.Addons.Events.AddonWasUninstalled {
}
class Codex.Addons.Events.AddonWasUninstalled extends Codex.Addons.Events.AddonEvent
class Codex.Addons.Events.AddonEvent {
#addon : Codex.Addons.Addon
+getAddon() : Codex.Addons.Addon
+__construct(addon : Codex.Addons.Addon)
}
class Codex.Addons.Events.AddonWasEnabled {
}
class Codex.Addons.Events.AddonWasEnabled extends Codex.Addons.Events.AddonEvent
class Codex.Addons.Extensions.RegisterExtension {
#addon
#class : string[]
+handle(extensions : Codex.Addons.Extensions.ExtensionCollection)
+__construct(class : array|string[]|string, addon : Codex.Addons.Addon = null)
}
class Codex.Addons.Extensions.ExtensionCollection {
' +addon(addon : Codex.Addons.Addon) : Codex.Addons.Extensions.ExtensionCollection|.Codex.Addons.Extensions.Extension[]
+find(key : mixed) : null|Extension
' +search(pattern : mixed, strict : bool = false) : ExtensionCollection|.Codex.Addons.Extensions.Extension[]
}
class Codex.Addons.Extensions.ExtensionCollection extends Illuminate.Support.Collection
class Codex.Addons.Extensions.Extension {
#addon
#provides
+getAddon() : mixed
+getProvides() : mixed
+setAddon(addon : mixed) : Extension
+setProvides(provides : mixed) : Extension
}
class Codex.Documents.Commands.MakeDocument {
#documentPath
#revision : Codex.Contracts.Revisions.Revision
+handle() : Codex.Contracts.Documents.Document
+__construct(revision : Codex.Contracts.Revisions.Revision, documentPath)
}
class Codex.Documents.Commands.FindDocuments {
#revision : Codex.Contracts.Revisions.Revision
+handle() : mixed
+__construct(revision : Codex.Contracts.Revisions.Revision)
}
class Codex.Documents.Document {
+{static}CASTS_PATH = "casts"
+{static}DEFAULTS_PATH = "defaults"
+{static}INHERITS_PATH = "inherits"
#content : string
+mergePaths : array = ["codex.documents.inherits"]
#parent : Codex.Contracts.Revisions.Revision
#postProcessed = false
#preProcessed = false
+getContent()
+{static}getKeyFromPath(path) : string
+getLastModified()
+getRevision() : mixed
+newCollection(models : array = []) : Codex.Documents.DocumentCollection|.Illuminate.Database.Eloquent.Collection
+postprocess()
+preprocess()
+setContent(content) : $this|.Codex.Contracts.Documents.Document
+__construct(attributes : array, revision : Codex.Contracts.Revisions.Revision)
+getParent() : Revision
+getExtension() : string
+getKey() : string
+getPath() : string
}
class Codex.Documents.Document extends Codex.Mergable.Model
class Codex.Documents.Document implements Codex.Contracts.Documents.Document
class Codex.Documents.Document implements Codex.Contracts.Mergable.ChildInterface
class Codex.Documents.DocumentCollection {
+getDefaultKey() : mixed
+getRevision() : Codex.Contracts.Revisions.Revision
#makeModel(key) : mixed
#resolveLoadable() : array
+get($key) : \Codex\Contracts\Documents\Document
}
class Codex.Documents.DocumentCollection extends Codex.Mergable.ModelCollection
class Codex.Documents.Listeners.ProcessDocument {
#extensions : Codex.Addons.Extensions.ExtensionCollection
+handle(event : Codex.Documents.Events.ResolvedDocument)
+__construct(extensions : Codex.Addons.Extensions.ExtensionCollection)
}
class Codex.Documents.Events.ResolvedDocument {
#document : Codex.Contracts.Documents.Document
+getDocument() : Codex.Contracts.Documents.Document
+__construct(document : Codex.Contracts.Documents.Document)
}
abstract class Codex.Documents.Processors.ProcessorExtension {
#defaultConfig
#depends = []
#document : Codex.Contracts.Documents.Document
#pre = false
+config(key = null, default = null, document : Codex.Contracts.Documents.Document = null)
+getDefaultConfig() : null
+getDependencies()
+getHandle()
+getName()
+getProvides()
+handle(document : Codex.Contracts.Documents.Document)
+isEnabledForDocument(document : Codex.Contracts.Documents.Document)
+isPre()
+onRegistered(config : Illuminate.Contracts.Config.Repository)
+process(document : Codex.Contracts.Documents.Document)
+setDefaultConfig(defaultConfig : null) : ProcessorExtension
+setDepends(depends : array) : ProcessorExtension
+setPre(pre : Codex.Documents.Processors.bool) : ProcessorExtension
}
class Codex.Documents.Processors.ProcessorExtension extends Codex.Addons.Extensions.Extension
class Codex.Documents.Processors.ProcessorExtension implements Laradic.DependencySorter.Dependable
class Codex.Documents.Processors.ParserProcessorExtension {
#defaultConfig = "codex.processor-defaults.parser"
#depends = ["attributes"]
#pre = true
#getDocumentParser(document : Codex.Contracts.Documents.Document)
+getName()
+process(document : Codex.Contracts.Documents.Document)
}
class Codex.Documents.Processors.ParserProcessorExtension extends Codex.Documents.Processors.ProcessorExtension
class Codex.Documents.Processors.AttributeProcessorExtension {
#defaultConfig = "codex.processor-defaults.attributes"
#pre = true
+checkHasOpenTag(str : Codex.Documents.Processors.string)
#getAttributes(content)
+getName()
#getTagsPattern()
#mapPregQuote(items)
+process(document : Codex.Contracts.Documents.Document)
}
class Codex.Documents.Processors.AttributeProcessorExtension extends Codex.Documents.Processors.ProcessorExtension
interface Codex.Documents.Processors.Parser.ParserInterface {
+parse(string : string) : string
+setOptions(options)
}
class Codex.Documents.Processors.Parser.MarkdownParser {
#options = []
+setOptions(options)
}
class Codex.Documents.Processors.Parser.MarkdownParser extends cebe.markdown.GithubMarkdown
class Codex.Documents.Processors.Parser.MarkdownParser implements Codex.Documents.Processors.Parser.ParserInterface
interface Codex.Contracts.Projects.Project {
}
interface Codex.Contracts.Documents.Document {
}
interface Codex.Contracts.Revisions.Revision {
}
interface Codex.Contracts.Mergable.MergableDataProviderInterface {
+get(key : string, default : null = null) : array
}
interface Codex.Contracts.Mergable.ParentInterface {
+getChildren()
}
interface Codex.Contracts.Mergable.Mergable {
+{static}CASTS_PATH = "casts"
+{static}DEFAULTS_PATH = "defaults"
+{static}INHERITS_PATH = "inherits"
+getAttributes()
+getDefaultAttributes()
+getInheritableKeys()
+getMergableAttributesCasts()
+getParentAttributes()
+setMergedAttributes(attributes)
}
interface Codex.Contracts.Mergable.ChildInterface {
+getParent() : null
+setParent(parent)
}
@enduml
| false | true | false | false | class |
66f37490ae25ec802872564af23f633dbe2c55d5 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.puml | 631215cfff97faa6e967aa6902a064bd25958339 | [] | 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 | 286 | puml | @startuml
class PlatformSpecificSetup {
+ PlatformSpecificSetup()
+ PlatformSpecificSetup(target:BuildTarget)
+ Setup() : void
+ PostBuildAction() : void
+ PostSuccessfulBuildAction() : void
+ PostSuccessfulLaunchAction() : void
+ CleanUp() : void
}
@enduml
| false | true | false | false | class |
8d2181303f2a78719bfec9d60db383c8f2c74944 | d6abee5015be461f6f7c358eb5e9e132e8241bbe | /diagram.puml | f0adb3c650e5a9957939d1a03afb97b95778341a | [] | no_license | adry29/ChatJAXB | 81b871f416f91fa56abe2f50e9587ba818cd6d13 | 42f9b22d2c7fccdafc87a6d7e26c9691c74c4dca | refs/heads/master | 2023-08-22T05:14:37.836621 | 2021-10-14T18:01:47 | 2021-10-14T18:01:47 | 417,221,819 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,484 | puml | @startuml
annotation jakarta.xml.bind.annotation.XmlAccessorType
annotation jakarta.xml.bind.annotation.XmlElement
annotation jakarta.xml.bind.annotation.XmlRootElement
class com.mycompany.chatjaxb.classes.Message
class com.mycompany.chatjaxb.classes.Room
class com.mycompany.chatjaxb.classes.User
class jakarta.xml.bind.annotation.XmlAccessType
class jakarta.xml.bind.annotation.XmlType
class java.security.Timestamp
class java.time.LocalDateTime
class java.time.format.DateTimeFormatter
class java.util.ArrayList
com.mycompany.chatjaxb.classes.Message ..> jakarta.xml.bind.annotation.XmlAccessorType
com.mycompany.chatjaxb.classes.Message ..> jakarta.xml.bind.annotation.XmlRootElement
com.mycompany.chatjaxb.classes.Message ..> jakarta.xml.bind.annotation.XmlAccessType
com.mycompany.chatjaxb.classes.Message ..> jakarta.xml.bind.annotation.XmlType
com.mycompany.chatjaxb.classes.Message ..> java.security.Timestamp
com.mycompany.chatjaxb.classes.Message ..> java.time.LocalDateTime
com.mycompany.chatjaxb.classes.Message ..> java.time.format.DateTimeFormatter
com.mycompany.chatjaxb.classes.Room ..> jakarta.xml.bind.annotation.XmlAccessorType
com.mycompany.chatjaxb.classes.Room ..> jakarta.xml.bind.annotation.XmlElement
com.mycompany.chatjaxb.classes.Room ..> jakarta.xml.bind.annotation.XmlRootElement
com.mycompany.chatjaxb.classes.Room ..> jakarta.xml.bind.annotation.XmlAccessType
com.mycompany.chatjaxb.classes.Room ..> java.util.ArrayList
@enduml | false | true | false | false | class |
b6af1829788a6f13590f3909b2f3848af9c6b3d0 | 9c3a0ebf00856a2c7bc4e2336849d8a60324ee81 | /diagram.iuml | 751ec6cbb8055f3200c85c0077dd5c874dc21599 | [] | no_license | oliver-ni/lichen | bf5eaeec42b49e24c60a144704dc85b40e9476b3 | 3cff0168c5c199105b94494dfe58bdc514a6ac80 | refs/heads/master | 2023-05-04T16:27:37.476489 | 2021-06-01T08:21:47 | 2021-06-01T08:21:47 | 367,816,722 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,922 | iuml | @startuml
package Backend <<Rectangle>> {
package Lichen {
class Fingerprinter
class Preprocessor
class Winnower
class Lichen
interface Language
class Python
class Java
}
package LichenAPI {
class LichenAPI
class Endpoint
class LanguageRegistry
}
}
package JavaClient <<Rectangle>> {
package ni.oliver.lichen.apiclient {
class LichenClient
class Request
class Response
class Result
}
package ni.oliver.lichen {
class App
class MainController
class FilePane
class Utils
}
}
Preprocessor : preprocess(s: str, language: Language): str
Winnower : winnow(s: str): list[int]
Language <|-- Java
Language <|-- Python
Preprocessor *-- Language
Fingerprinter *-- Preprocessor
Fingerprinter *-- Winnower
Lichen *-- Fingerprinter
Lichen <.. LichenAPI
LichenAPI *-- Endpoint
LichenAPI *-- LanguageRegistry
LichenClient *-- Request
LichenClient *-- Response
Response *-- Result
Endpoint <.. LichenClient
App <.. Utils
App *-- MainController
MainController *-- LichenClient
MainController *-- FilePane
' ------------- '
' Style Options '
' ------------- '
hide empty methods
hide empty fields
!define STYLE_ACCENT #0277BD
!define STYLE_BGC #FFF
!define STYLE_FGC #000
skinparam {
DPI 300
Shadowing false
DefaultFontName -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji
DefaultMonospacedFontName SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace
DefaultFontColor STYLE_FGC
ArrowColor STYLE_ACCENT
ActivityBorderColor STYLE_ACCENT
ActivityDiamondBorderColor STYLE_ACCENT
ActorBorderColor STYLE_ACCENT
AgentBorderColor STYLE_ACCENT
ArtifactBorderColor STYLE_ACCENT
BoundaryBorderColor STYLE_ACCENT
ClassBorderColor STYLE_ACCENT
CloudBorderColor STYLE_ACCENT
CollectionsBorderColor STYLE_ACCENT
ComponentBorderColor STYLE_ACCENT
ControlBorderColor STYLE_ACCENT
DatabaseBorderColor STYLE_ACCENT
EntityBorderColor STYLE_ACCENT
FileBorderColor STYLE_ACCENT
FolderBorderColor STYLE_ACCENT
FrameBorderColor STYLE_ACCENT
InterfaceBorderColor STYLE_ACCENT
LegendBorderColor STYLE_ACCENT
NodeBorderColor STYLE_ACCENT
NoteBorderColor STYLE_ACCENT
ObjectBorderColor STYLE_ACCENT
PackageBorderColor STYLE_ACCENT
ParticipantBorderColor STYLE_ACCENT
PartitionBorderColor STYLE_ACCENT
QueueBorderColor STYLE_ACCENT
RectangleBorderColor STYLE_ACCENT
SequenceBoxBorderColor STYLE_ACCENT
SequenceDividerBorderColor STYLE_ACCENT
SequenceGroupBorderColor STYLE_ACCENT
SequenceLifeLineBorderColor STYLE_ACCENT
SequenceReferenceBorderColor STYLE_ACCENT
StackBorderColor STYLE_ACCENT
StateBorderColor STYLE_ACCENT
StorageBorderColor STYLE_ACCENT
SwimlaneBorderColor STYLE_ACCENT
UsecaseBorderColor STYLE_ACCENT
ActivityBackgroundColor STYLE_BGC
ActivityDiamondBackgroundColor STYLE_BGC
ActorBackgroundColor STYLE_BGC
AgentBackgroundColor STYLE_BGC
ArtifactBackgroundColor STYLE_BGC
BackgroundColor STYLE_BGC
BoundaryBackgroundColor STYLE_BGC
ClassBackgroundColor STYLE_BGC
ClassHeaderBackgroundColor STYLE_BGC
CloudBackgroundColor STYLE_BGC
CollectionsBackgroundColor STYLE_BGC
ComponentBackgroundColor STYLE_BGC
ControlBackgroundColor STYLE_BGC
DatabaseBackgroundColor STYLE_BGC
EntityBackgroundColor STYLE_BGC
FileBackgroundColor STYLE_BGC
FolderBackgroundColor STYLE_BGC
FrameBackgroundColor STYLE_BGC
IconPackageBackgroundColor STYLE_BGC
IconPrivateBackgroundColor STYLE_BGC
IconProtectedBackgroundColor STYLE_BGC
IconPublicBackgroundColor STYLE_BGC
InterfaceBackgroundColor STYLE_BGC
LegendBackgroundColor STYLE_BGC
NodeBackgroundColor STYLE_BGC
NoteBackgroundColor STYLE_BGC
ObjectBackgroundColor STYLE_BGC
PackageBackgroundColor STYLE_BGC
ParticipantBackgroundColor STYLE_BGC
PartitionBackgroundColor STYLE_BGC
QueueBackgroundColor STYLE_BGC
RectangleBackgroundColor STYLE_BGC
SequenceBoxBackgroundColor STYLE_BGC
SequenceDividerBackgroundColor STYLE_BGC
SequenceGroupBackgroundColor STYLE_BGC
SequenceGroupBodyBackgroundColor STYLE_BGC
SequenceLifeLineBackgroundColor STYLE_BGC
SequenceReferenceBackgroundColor STYLE_BGC
SequenceReferenceHeaderBackgroundColor STYLE_BGC
StackBackgroundColor STYLE_BGC
StateBackgroundColor STYLE_BGC
StereotypeABackgroundColor STYLE_BGC
StereotypeCBackgroundColor STYLE_BGC
StereotypeEBackgroundColor STYLE_BGC
StereotypeIBackgroundColor STYLE_BGC
StereotypeNBackgroundColor STYLE_BGC
StorageBackgroundColor STYLE_BGC
TitleBackgroundColor STYLE_BGC
UsecaseBackgroundColor STYLE_BGC
roundcorner 8
}
@enduml | false | true | false | false | class |
f87565e506a2af5fd6cff96613adb141cbab19f7 | 7f2c3c7279d02ef9a0f540cb3f5465ec150fc274 | /Part2/documentation/Diagrams PUML/UCSuppliers.puml | 2848592b7cf60044482995cd251b1ea8f86feb2e | [] | no_license | UpSkillCobol/lab2 | 50af33d8a3dc2de7d582439bae1d0a2b0661af85 | 0bd40727e16972be0188d9b98865d92752226811 | refs/heads/main | 2023-04-05T14:51:59.017317 | 2021-03-25T16:42:50 | 2021-03-25T16:42:50 | 325,392,334 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 429 | puml | @startuml
left to right direction
header
UPskillCobol: Breadwich
endheader
title \nDeliciousSandwich\n
package Suppliers {
usecase "UC1: Add suppliers interactively" as UC1
usecase "UC1: Add suppliers from file" as UC2
usecase "UC2: Modify suppliers" as UC3
usecase "UC3: Remove suplliers" as UC4
usecase "UC4: View Suppliers" as UC5
}
Admin --> UC1
Admin --> UC2
Admin --> UC3
Admin --> UC4
Admin --> UC5
@enduml | false | true | false | false | usecase |
d4c8aac8894e3d577778a650226442aa42146c3e | 36db73c5823d3a3341521879ef6c90460df0cbcb | /s3/replication/doc/sequencediagrams/fdmi-to-replication-manager.plantuml | 0df354c42da93bb659d1f8a78f9853b06ab50494 | [
"Apache-2.0"
] | permissive | gauravchaudhari02/cortx-multisite | 6e9a158235d3c4bc4bf767ede449383550457a76 | 97b1b4812b505a21be497648c12ddd328c8cd2a9 | refs/heads/main | 2023-08-13T07:11:45.875375 | 2021-09-23T04:44:48 | 2021-09-23T04:44:48 | 409,490,578 | 0 | 0 | Apache-2.0 | 2021-09-23T07:24:14 | 2021-09-23T07:24:13 | null | UTF-8 | PlantUML | false | false | 1,422 | plantuml | @startuml
title FDMI events for replication.\n
== Queue replication jobs ==
rnote over FDMI: node-1
FDMI -> ReplicationManager: fdmi event (ev1:key1) with s3 metadata
activate ReplicationManager
ReplicationManager -> MOTR_KVS : GET-KV(ev1:key1)
MOTR_KVS --> ReplicationManager : not-found
rnote over ReplicationManager: Persist the new entry
ReplicationManager -> MOTR_KVS : PUT-KV(ev1:key1, value{copies:0})
MOTR_KVS --> ReplicationManager : success
return status : ack fdmi event
rnote over FDMI: node-2
FDMI -> ReplicationManager: fdmi event (ev1:key1) with s3 metadata
activate ReplicationManager
ReplicationManager -> MOTR_KVS : GET-KV(ev1:key1)
MOTR_KVS --> ReplicationManager : found
rnote over ReplicationManager: deduplicate &\nmark first copy received
ReplicationManager -> MOTR_KVS : PUT-KV(ev1:key1, updated-value{copies:1})
MOTR_KVS --> ReplicationManager : success
return status : ack fdmi event
rnote over FDMI: node-3
FDMI -> ReplicationManager: fdmi event (ev1:key1) with s3 metadata
activate ReplicationManager
ReplicationManager -> MOTR_KVS : GET-KV(ev1:key1)
MOTR_KVS --> ReplicationManager : found
rnote over ReplicationManager: deduplicate &\nmark second copy received
ReplicationManager -> MOTR_KVS : PUT-KV(ev1:key1, updated-value{copies:2})
MOTR_KVS --> ReplicationManager : success
return status : ack fdmi event
rnote over ReplicationManager: No more events expected for ev1
@enduml
| false | true | false | false | sequence |
095dfadbddb8c0939aad059be8a1eb24075778ea | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/workforce/media/src/useCase7Flow.puml | 3f0f21bf4c3ffe9b8145047a1022724c18b0a49d | [
"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 | 331 | puml | @startuml
hide footbox
participant Buyer
participant Seller
Buyer -> Seller : POST searchTimeSlot request
Seller -> Seller : validate Request
alt successful inquiry
Buyer <-- Seller : 201 SearchTimeSlot (with availableTimeSlot)
else validation or internal problem
Buyer <-- Seller: 4xx/5xx : error response
end
@enduml | false | true | false | false | sequence |
c29824c7855ce16bb40ae6aa9312705df7aa7d5b | 6490d7d65059fe272a48566c4a38d586a1001b25 | /doc/update.puml | a61a44f54cca9e756dcf789c4ea55bb45f6717b4 | [
"Apache-2.0"
] | permissive | meatlink/northstar | 69e38d695846469512b5f2650d2f83106a4d3582 | 5ffd216d1edc23909c3b26322bb4a926b0857fba | refs/heads/master | 2022-12-10T02:44:43.399145 | 2020-08-16T07:07:48 | 2020-08-16T07:28:57 | 286,704,877 | 0 | 0 | Apache-2.0 | 2020-08-11T09:40:52 | 2020-08-11T09:40:51 | null | UTF-8 | PlantUML | false | false | 354 | puml | @startuml Update Process
Downloader -> North: Versionlist Request
activate North
North --> Downloader: Versionlist Response
deactivate North
activate Downloader
Downloader -> Downloader: Fetch Updates
Downloader -> North: Download Info
deactivate Downloader
activate North
North -> North: Install Updates
return Update Report
deactivate North
@enduml | false | true | false | false | sequence |
8b9ed1ac4bc3144fbf6688c7d4c822f2ba4cbcce | f3b48e85a708f4625f32cbc0c2d8c5e5dfd7c063 | /src/main/GenerationSequence.puml | 12c400c17fa1ca78a376ae8706e11720ab08572a | [
"CC0-1.0"
] | permissive | pmolodyk/MinecraftFabricMod | b2aa7f26c39b087b7ccfdb4a3dbd8004a8ed33bb | ab9ab5c03503ac40beead5e67ad627a1265147c9 | refs/heads/master | 2023-04-25T01:33:56.544636 | 2021-05-20T21:16:24 | 2021-05-20T21:16:24 | 342,383,533 | 0 | 0 | CC0-1.0 | 2021-05-16T06:17:16 | 2021-02-25T21:27:07 | Java | UTF-8 | PlantUML | false | false | 1,025 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
actor Player
entity Minecraft
Player -> Minecraft : Launches Game
participant BuildingsMod
Minecraft -> BuildingsMod : Loads mod Jar
database MinecraftRegistry
BuildingsMod -> MinecraftRegistry : Registers building feature
Player -> Minecraft : Creates new world
Minecraft -> MinecraftRegistry : Reads features
MinecraftRegistry -> Minecraft : Returns BuildingsMod
participant BuildingFeature
Minecraft -> BuildingFeature : Calls generate(...)
participant HouseBuilder
BuildingFeature -> HouseBuilder : Calls build(...)
participant LayoutGenerator
participant ExternalWallGenerator
participant CeilingGenerator
HouseBuilder -> LayoutGenerator : Calls generate(...)
HouseBuilder -> ExternalWallGenerator : Calls generate(...)
HouseBuilder -> CeilingGenerator : Calls generate(...)
HouseBuilder -> BuildingFeature : Returns build success
BuildingFeature -> Minecraft : Return feature generation success
Minecraft -> Player : Displays new world
@enduml | false | true | false | false | usecase |
d0e28ed917ade48f8b2491fcfad8993a95aabd89 | 41a59498034c527e41804f51cffbd1a4f45fab3f | /lab8/diagrams/interpreter-ts.puml | c4d52bc2e66b821f5d296aee9a0fa0ba0e809852 | [
"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 | 1,006 | puml | @startuml interpreter-ts
activate Client
Client -> Context: createContext()
activate Context
Client <-- Context: return Context
deactivate Context
Client-->AbstractExpression: parseContext()
activate AbstractExpression
AbstractExpression --> VoltageExpression: interpet(Context context)
activate VoltageExpression
deactivate VoltageExpression
AbstractExpression --> AmperageExpression: interpet(Context context)
activate AmperageExpression
deactivate AmperageExpression
AbstractExpression --> PowerExpression: interpet(Context context)
activate PowerExpression
deactivate PowerExpression
AbstractExpression --> ConsumptionExpression: interpet(Context context)
activate ConsumptionExpression
deactivate ConsumptionExpression
AbstractExpression --> TempExpression: interpet(Context context)
activate TempExpression
deactivate TempExpression
AbstractExpression --> LightExpression: interpet(Context context)
activate LightExpression
deactivate LightExpression
deactivate AbstractExpression
@enduml
| false | true | false | false | sequence |
21e7d9be64a73b0ad67debf8f88afa6fa2436214 | 1fef2f0f0ad13aebb3d3f732d0cae8867ee8e87c | /plantuml/Microwave.Classes/Controllers/UserInterface.puml | 4c938ceaffbc9201bdc63ac4be8869dcc642eb98 | [] | no_license | eengstroem/MicrowaveOven | b9711c314f053f00f9208cae69085d7bdf0ba3d4 | ac721f24f0025f5e10f50d4d58c4a7ad30f9fbd2 | refs/heads/master | 2023-04-25T09:55:42.513911 | 2021-05-24T16:45:23 | 2021-05-24T16:45:23 | 363,380,008 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 509 | puml | @startuml
class UserInterface {
+ UserInterface(powerButton:IButton, timeButton:IButton, startCancelButton:IButton, door:IDoor, display:IDisplay, light:ILight, cooker:ICookController)
+ OnPowerPressed(sender:object, e:EventArgs) : void
+ OnTimePressed(sender:object, e:EventArgs) : void
+ OnStartCancelPressed(sender:object, e:EventArgs) : void
+ OnDoorOpened(sender:object, e:EventArgs) : void
+ OnDoorClosed(sender:object, e:EventArgs) : void
+ CookingIsDone() : void
}
@enduml
| false | true | false | false | class |
4a42dae1bbb8e2aa248c792bba1117221d603b6c | 831ecbaf5ead20c256583b50e520ebb08eaa9812 | /zaoczne/G1/pkp_class_diagram.plantuml | 704bba931e05c5301d636d4318e597cef3d17250 | [] | no_license | kpodlaski/Projektowanie_obiektowe2020 | 8e71ff68a12d240efe1be353c1a1823e2960e642 | 0ade34f4b8a7e8d346080da8547da8aa98b70b27 | refs/heads/master | 2023-01-30T09:53:25.779580 | 2020-12-10T10:44:52 | 2020-12-10T10:44:52 | 306,864,804 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,089 | plantuml | @startuml
class Bilet{
cel
termin
cena
klasa
}
class Paragon{
'bilet przeniosono na poziom asocjacji
cena
vat
}
class Potwierdzenie{
id_tans
cena
}
class Kasjer{
imie
nazwisko
}
class Kasa{
suma
wplata()
}
class Drukarka{
wydruk()
}
class Baza {
zapis()
}
class Bank{
aktywacja()
}
class SystemSprzdarzy{
kup_bilet()
}
class Drukarka_Biletow{
wyduk()
}
class Drukarka_Paragonow{
wyduk()
}
class Drukarka_Potwierdzen{
wyduk()
}
class UI{
wprowadzanie_danych()
wyświetlanie_informacji()
}
class Konsola{
}
class GUI{}
class WebUI{}
Kasa o-- Kasjer
SystemSprzdarzy *-- Kasa
SystemSprzdarzy *-- Drukarka
SystemSprzdarzy -- Baza
SystemSprzdarzy -- Bank
UI -- SystemSprzdarzy
Bank -- Drukarka
Bank .. Potwierdzenie : <<create>>
SystemSprzdarzy .. Bilet : <<create>>
SystemSprzdarzy .. Paragon : <<create>>
Drukarka <|-- Drukarka_Biletow
Drukarka <|-- Drukarka_Paragonow
Drukarka <|-- Drukarka_Potwierdzen
UI <|-- Konsola
UI <|-- GUI
UI <|-- WebUI
Paragon "bilet" -- Bilet
@enduml | false | true | true | false | class |
f2667336ff9e7a5d5177bd6af2f3c46b4a7dc0b1 | 5419ba65627214efbf640b0643d5524c4f2a646f | /Architecture/01.SACP#16/SLAL#17.class.1.plantuml | 75ddf485ce772c90728c7f82a66e26aec9d83f7c | [] | no_license | ovidiomanteiga/horuslauncher | 3ed7ce5283dd4a267b1284f6bc192c0426b98150 | 26159c90e70d3042f2ac04d8cb8284c1c8c26de2 | refs/heads/master | 2020-09-14T05:44:31.073187 | 2019-07-22T19:55:47 | 2019-07-22T19:55:47 | 223,037,096 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,379 | plantuml |
@startuml SLAL#17.class.1
skinparam monochrome true
package UI {
class MainActivity <<Activity>> {
}
class AllActionsFragment <<Fragment>> {
}
MainActivity -u-> AllActionsFragment
}
package Domain {
class HorusAction <<Entity>> {
Drawable icon
UUID identifier
LocalizableString name
}
class AllActions <<Aggregate>> {
}
class GetAllActions <<Interactor>> {
+ AllActions actions
+ void perform()
}
interface AllActionsRepository <<Repository>> {
+ AllActions getAll()
}
AllActionsRepository .u.> AllActions
GetAllActions .u.> AllActions
GetAllActions -r-> AllActionsRepository
AllActions o-u-> "*" HorusAction
}
package Infrastructure {
class AllAppsRepository {
+ AllActions getAll()
}
class App <<Adapter>> {
}
class AllApps {
}
AllApps o-u-> "*" App
}
package Android_SDK {
class Intent {
}
class Context {
}
}
AllActionsFragment -u-> GetAllActions
AllActionsFragment .u.> GetAllActions: <<create>>
AllActionsFragment .r.> AllAppsRepository: <<create>>
AllApps -u-|> AllActions
AllAppsRepository .u.|> AllActionsRepository
AllAppsRepository .u.> AllApps
AllAppsRepository -u-> Context
App -u-|> HorusAction
App -d-> "1" Intent
Context -[hidden]u-> Intent
hide empty members
@enduml
| false | true | false | false | class |
429ba48dfac36bd13f2d8cda1e89c5bf28e8a7fc | c50587b333895b4bea9ab01741ae9b3cb746e97c | /时序图.puml | 4066fd97b04367e79a75f3fd8857c01c206ba52c | [] | no_license | ivan-code-cell/check-info-tool | ad4e2672a18edbd3405875d21aa4e17cf07b478e | 469a62527702fa9c2c6ddeee4f5cba1940a89006 | refs/heads/master | 2022-12-13T16:54:25.520533 | 2020-09-21T13:32:37 | 2020-09-21T13:32:37 | 294,952,075 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,016 | puml | @startuml
database database
activate database
actor CheckInfo
activate CheckInfo
activate GUI
CheckInfo <- GUI: get device file path
CheckInfo -> CheckInfo: file read and process
activate JobListParser
CheckInfo -> JobListParser: reading and get job info
deactivate JobListParser
CheckInfo -> GUI: set job list
CheckInfo <- GUI: get loaded job
activate FlowTableParser
CheckInfo -> FlowTableParser: reading and get flow info
deactivate FlowTableParser
activate InstanceParser
CheckInfo -> InstanceParser: reading and get instance info
deactivate InstanceParser
activate SpecParser
CheckInfo -> SpecParser: reading and get spec info
deactivate SpecParser
activate LevelParser
CheckInfo -> LevelParser: reading and get level info
deactivate LevelParser
activate TimingParser
CheckInfo -> TimingParser: reading and get timing info
deactivate TimingParser
activate PatternParser
CheckInfo -> PatternParser: reading and get pattern info
deactivate PatternParser
CheckInfo -> CheckInfo: data processing and output
@enduml | false | true | false | false | sequence |
77a13663b66f3f152c6ea26fb7730d7e186bf055 | 9d6de05cee68ea1f34432e8063eaefe74c66dc1b | /docs/c4-sequence.puml | 7b94d95736aff67548dce02e17128d6992d15912 | [] | no_license | mettyoung/automated-valet-car-parking-system | 5d44d0209dc6161c259967bb2ab1b9456c43dfd5 | a675f4477b5eeb946ba4cc4f4117c1759459def3 | refs/heads/master | 2023-04-11T09:07:56.708421 | 2021-04-23T16:10:55 | 2021-04-23T16:10:55 | 360,509,718 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,144 | puml | @startuml
actor user
boundary ConsoleApplication
boundary ConsoleInputInterpreter
boundary Files
boundary InitCommandInterpreter
boundary VehicleSlots
boundary EnterVehicleCommandInterpreter
boundary EnterVehicleCommand
boundary ExitVehicleCommandInterpreter
boundary ExitVehicleCommand
boundary DefaultInterpreter
boundary ParkingSpace
boundary Vehicle
boundary VehicleTypeRepository
user -> ConsoleApplication: executes
ConsoleApplication -> ConsoleInputInterpreter: creates a chain of\ninterpreters of init,\nenter, exit and\ndefault interpreters
ConsoleApplication -> Files: read input file
group for each line
ConsoleApplication -> ConsoleInputInterpreter: call chain of\ninterpreters
end
... InitCommandInterpreter is invoked ...
InitCommandInterpreter -> VehicleSlots: creates vehicle slots from input
InitCommandInterpreter -> ParkingSpace: Allocate vehicle slots
InitCommandInterpreter --> user: Shows success message
alt on failure
InitCommandInterpreter --> user: Shows failure message
end
... EnterVehicleCommandInterpreter is invoked ...
EnterVehicleCommandInterpreter -> VehicleTypeRepository: fetches vehicle type given input
EnterVehicleCommandInterpreter -> Vehicle: creates vehicle given input
EnterVehicleCommandInterpreter -> EnterVehicleCommand: creates EnterVehicleCommand\nwith success and failure handlers
EnterVehicleCommandInterpreter -> EnterVehicleCommand: execute
EnterVehicleCommand --> user: Shows success message
alt on failure
EnterVehicleCommand --> user: Shows failure message
end
... ExitVehicleCommandInterpreter is invoked ...
ExitVehicleCommandInterpreter -> VehicleTypeRepository: fetches vehicle type given input
ExitVehicleCommandInterpreter -> Vehicle: creates vehicle given input
ExitVehicleCommandInterpreter -> ExitVehicleCommand: creates ExitVehicleCommand\nwith success and failure handlers
ExitVehicleCommandInterpreter -> ExitVehicleCommand: execute
ExitVehicleCommand --> user: Shows success message
alt on failure
ExitVehicleCommand --> user: Shows failure message
end
... DefaultInterpreter is invoked ...
DefaultInterpreter --> user: Shows default message
@enduml | false | true | false | false | sequence |
d70a64493b7e441e6524b1d9957c17c83bca5240 | 25cf4385e20632db32024255367d97f13ebef022 | /asciidocs/plantuml/hotelbetrieb-cld.puml | 4d1a6858532773d475ff8412a426e58e33b4f28a | [] | no_license | 2122-4ahif-syp/01-cld-hotel-markusremplbauer | 85b4a2ea153690d2a056676e5ad7375fa5244c3f | 8b4f28a8cc88f5955d6c6e681c25aa6e4d0bf114 | refs/heads/master | 2023-08-14T18:14:15.813791 | 2021-10-17T20:45:06 | 2021-10-17T20:45:06 | 418,227,779 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,628 | puml | @startuml
left to right direction
class Hotelzimmer {
- nummer: int
- personen: int
}
class Kategorie {
- id: int
- bezeichnung: String
}
class HotelzimmerKategorie {
- hotelZimmer: Hotelzimmer
- kategorie: Kategorie
}
class Mitarbeiter {
- svnr: String
- name: String
- adresse: String
}
class HotelzimmerMitarbeiter {
- hotelZimmer: HotelzimmerMitarbeiter
- mitarbeiter: Mitarbeiter
}
class Betreuer {
- mitarbeiter: Mitarbeiter
- fach: String
}
class Gast {
- kundenNr: int
- name: String
- adresse: Adresse
}
class Buchung {
- hotelZimmer: Hotelzimmer
- gast: Gast
- anreiseDatum: LocalDate
- abreiseDatum: LocalDate
}
class Leistungspaket {
- bezeichnung: String
- preis: BigDecimal
}
class LeistungspaketBuchung {
- leistungspaket: Leistungspaket
- buchung: Buchung
- anzahl: int
}
class LeistungspaketBetreuer {
- leistungspaket: Leistungspaket
- beteuer: Betreuer
}
class Luxuspaketpaket{
- bezeichnung: String
- leistungspaket: Leistungspaket
}
class HotelzimmerMitarbeiter {
- hotelZimmer: Hotelzimmer
- mitarbeiter: Mitarbeiter
- datum: LocalDate
}
Buchung "*" --> "1" Gast
Buchung "*" --> "1" Hotelzimmer
(Hotelzimmer, Kategorie) .. HotelzimmerKategorie
(Leistungspaket, Buchung) .. LeistungspaketBuchung
(Leistungspaket, Mitarbeiter) .. LeistungspaketBetreuer
(Hotelzimmer, Mitarbeiter) .. HotelzimmerMitarbeiter
Leistungspaket "1" -- "*"Luxuspaketpaket
note right: ein Luxuspaketpaket hat mehrere Einträge mit der gleichen Bezeichnung
Mitarbeiter <|-- Betreuer
@enduml | false | true | true | false | class |
5a6e0274ae5e17064004cdebae3e74a41737efbf | dff544740079c422b535e1bc5ef7d288394c0e9b | /w41/src/Task2/ClassDiagram.puml | 6abe90772c98bdbc5b0c9ed59ebe2fffb872075f | [] | no_license | AugustRead/Assignments | 4a9dc7b82d922ebd19232f80decdb1c14ca2fa2f | a6183246ca610162b54964dd40405953e849d7f1 | refs/heads/main | 2023-08-20T05:21:11.320902 | 2021-10-29T07:47:38 | 2021-10-29T07:47:38 | 408,515,646 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 376 | puml | @startuml
'https://plantuml.com/class-diagram
ComputerVAT o-- Controller
Controller o-- Dialog
Controller o-- CalculateVAT
Controller o-- View
class CalculateVAT {
int PRCVAT
doVAT()
}
class ComputerVAT {
}
class Controller {
String MSG
Dialog dialog
View view
CalculateVAT VAT
runController()
}
class Dialog {
doDiag()
}
class View {
String CURRENCY
doView()
}
@enduml | false | true | false | false | class |
f2daa4b84499a58f89e0943b153942649cbeb39a | 2faf2dd7027fab48cf4915f912222116a4f733a4 | /docs/uploads/SW diagrams/Alarm Modes.plantuml | 9a066a3d44d8db2bf25c1e7b36460131a907e32e | [] | no_license | cat101/CasaC | eda63e6f8539af6fdbca6f7798db8efe9220efd8 | e3df92185986f83ca8732f3f19d5953e164e0de8 | refs/heads/master | 2022-10-19T07:23:48.778255 | 2022-09-28T12:30:28 | 2022-09-28T12:30:28 | 69,825,683 | 7 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,666 | plantuml |
@startuml "Alarm Modes.png"
[*] --> LoadPreviousMode
LoadPreviousMode --> Disarmed
LoadPreviousMode --> Away
state Away {
[*] --> OnAwayEntry
Away : Exit /
OnAwayEntry : alarmArmCommon()
OnAwayEntry : play ALARM_EXIT_PERIOD
OnAwayEntry : taskExitPeriod.start()
OnAwayEntry --> ExitPeriod
OnHolidayEntry --> OnAwayEntry
OnHolidayEntry : Turn off AC, isHoliday & sched prescence simulation
ExitPeriod --> AwayMode : evTimer / enableAwayDistpatcher()
ExitPeriod --> Disarmed : EvDisarmCode, EvDisarmDuressCode
AwayMode --> AwayMode : evZoneOpen (not entry) or Tamper / triggerAlarm()
AwayMode --> AwayMode : evZoneOpen (entry) or Tamper / triggerEntryPeriod()
}
note bottom of AwayMode
zoneOpen: Interior | Perimeter_All_year | Panic | Perimeter_winter
entry: PB_L02_I, PB_L04_I, PB_L03_M, PB_L06_M
end note
state Stay {
[*] --> OnStayEntry
OnStayEntry : alarmArmCommon()
OnStayEntry : Enable/disable winter zone
OnStayEntry --> StayMode : / Enable Stay dispatcher
StayMode --> StayMode : evZoneOpen/Tamper (not winter zone) / triggerEntryPeriod()
StayMode --> StayMode : evZoneOpen/Tamper (winter zone && isWinter) / triggerEntryPeriod()
}
StayMode --> Disarmed : EvDisarmCode
StayMode --> Disarmed : EvDisarmDuressCode / triggerDuress()
AwayMode --> Disarmed : EvDisarmCode
AwayMode --> Disarmed : EvDisarmDuressCode / triggerDuress()
note top of Away
alarmArmCommon()
* record 60s from all cameras
* log arming user & duress
triggerEntryPeriod()
* record 60s from all cameras
* log trigger zone/reason
* scheduleTask(triggerAlarm())
triggerAlarm()
* record from all cameras while siren timer is on
* log trigger zone/reason
* Start siren timer & internal audio & external siren
* Start dialer. Dial alarm people and play message (star or away)
end note
state Disarmed {
[*] --> OnDisarmedEntry
OnDisarmedEntry : record 60s from all cameras
OnDisarmedEntry : Disable away & stay dispatchers
OnDisarmedEntry : log disarm user & duress
OnDisarmedEntry : stop arming sequence & countdown message
OnDisarmedEntry : stop siren timer & internal audio & external siren
OnDisarmedEntry : stop dialer service (if not duress)
OnDisarmedEntry : * if trigered notify everything is ok
OnDisarmedEntry --> DisarmedMode : / Enable Disarmed dispatcher
Disarmed --> Away : EvArmCodeAway
Disarmed --> OnHolidayEntry : EvArmCodeAwayHoliday
Disarmed --> Stay : EvArmCodeStay
Disarmed --> Disarmed : EvDisarmCode / stop duress & notify everything ok
}
note bottom of Disarmed
triggerDuress()
* dial duress people and play message
end note
@enduml | false | true | true | false | sequence |
70fd0ef199cb450b94efe4d85b74bc1f75d7b162 | 644eadbf61d5ce9b79f5f299348d625dff3017e0 | /vrops-exporter.puml | 1d7e57fdef5d88c5df6a59d0b6b0d99b56b1f656 | [] | no_license | christopherhans/uml | e7e24c12daa3af126785be5375cca708604f5054 | 81343e3c34174897df33101dc34a69e924397932 | refs/heads/master | 2020-09-20T23:05:03.280318 | 2019-11-28T10:25:50 | 2019-11-28T10:25:50 | 224,612,908 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 563 | puml | @startuml
Vcenter *- Cluster
Cluster *- Host
Host *- VirtualMachine
class Vcenter {
-- Attributes --
+ str uuid
+ str name
+ list clusters
+ str datacenter
-- Methods --
+ add_cluster()
}
class Cluster {
-- Attributes --
+ str name
+ str uuid
+ list hosts
-- Methods --
+ add_host()
}
class Host {
-- Attributes --
+ str name
+ str uuid
+ list vms
-- Methods --
+ add_vm()
}
class VirtualMachine {
-- Attributes --
+ str uuid
+ str project_id
+ name
}
@enduml | false | true | false | false | class |
7e85ed88462040061cd30d1b394b36bffd2ef15c | bf3e610c8668e525aedcca58ddbe9da7c19e427e | /docs/design/y-flow/y-flow-persistence-model.puml | 94344c4ec20a6f9ef0cc0497d65f558134c7bf73 | [
"Apache-2.0"
] | permissive | telstra/open-kilda | 874b5204f8c2070860a2e7fc6f8be368a5d18726 | 686d31220f1033595d7f1d4374544af5ba9c42fe | refs/heads/develop | 2023-08-15T21:24:21.294425 | 2023-08-14T08:51:52 | 2023-08-14T08:51:52 | 104,974,693 | 82 | 70 | Apache-2.0 | 2023-09-14T19:11:22 | 2017-09-27T05:13:18 | Java | UTF-8 | PlantUML | false | false | 1,156 | puml | @startuml
title Y-Flow Persistence Model
object YFlow <<Node>> {
yflow_id
..
status : FlowStatus
..
shared_endpoint_switch_id : SwitchId
shared_endpoint_port
..
maximum_bandwidth
path_computation_strategy : PathComputationStrategy
encapsulation_type : FlowEncapsulationType
max_latency
max_latency_tier2
ignore_bandwidth
periodic_pings
pinned
priority
strict_bandwidth
description
allocate_protected_path
..
ypoint : SwitchId
protected_path_ypoint : SwitchId
..
meter_id : MeterId
protected_path_meter_id : MeterId
shared_endpoint_meter_id : MeterId
__
unique constraint on yflow_id
index on yflow_id
}
object YSubFlowFields <<Relation>> {
yflow_id
subflow_id
..
shared_endpoint_vlan
shared_endpoint_inner_vlan
..
endpoint_switch_id: SwitchId
endpoint_port
endpoint_vlan
endpoint_inner_vlan
__
unique constraint on yflow_id + subflow_id
index on yflow_id
index on subflow_id
}
object Flow <<Node>> {
flow_id
...
}
YFlow }-- YSubFlowFields
YSubFlowFields --> Flow
@enduml | false | true | false | false | class |
38212dc749227cbb01c917142731975ecf3ff868 | 4d66b0a15e5d42eb96ed5e7527ff506757d74285 | /src/lattice/ImplicationalSystem.iuml | a2ebb12c5e178a2c17d55c73ba9c9fa7c4061824 | [
"CECILL-B"
] | permissive | ngocbichdao/java-lattices | 1ac847eaa2bbbcc73ceeb61ec9c5cfa618bac574 | 6742e87de51205923e158db93fd495ffa381f10a | refs/heads/master | 2020-04-05T18:57:29.576127 | 2014-04-04T08:53:29 | 2014-04-04T08:53:29 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,947 | iuml | package lattice {
class ImplicationalSystem {
-TreeSet<Rule> sigma
-TreeSet<Comparable> set
.. Constructors ..
+ImplicationalSystem()
+ImplicationalSystem(Collection<Rule> sigma)
+ImplicationalSystem(ImplicationalSystem s)
+ImplicationalSystem(String filename)
.. Generators ..
{static}+ImplicationalSystem random(int nbS, int nbR)
.. Accessors ..
+TreeSet<Rule> getRules()
+TreeSet<Comparable> getSet()
+int nbElements()
+nbRules()
.. Modifications ..
+boolean addElement(Comparable e)
+boolean addAllElements(TreeSet<Comparable> x)
+boolean deleteElement(Comparable e)
+boolean addRule(Rule r)
+boolean removeRule(Rule r)
+boolean replaceRule(Rule r1, Rule r2)
.. Predicates ..
+boolean checkRuleElements(Rule r)
+boolean containsRule(Rule r)
+boolean isProper()
+boolean isUnary()
+boolean isCompact()
+boolean isRightMaximal()
+boolean isLeftMinimal()
+boolean isDirect()
+boolean isMinimum()
+boolean isCanonicalDirectBasis()
+boolean isCanonicalBasis()
+boolean isIncludedIn(ImplicationalSystem is)
.. Transformers ..
+String toString()
+void toFile(String filename)
.. Operations ..
+int makeProper()
+int makeUnary()
+int makeCompact()
+int makeRightMaximal()
+int makeLeftMinimal()
+int makeDirect()
+int makeMinimum()
+int makeCanonicalDirectBasis()
+int makeCanonicalBasis()
+DGraph representativeGraph()
+DGraph dependencyGraph()
+TreeMap<Comparable, TreeSet<Comparable>> reduction()
+TreeSet<Comparable> closure(TreeSet<Comparable> x)
}
ClosureSystem <|-- ImplicationalSystem
ImplicationalSystem o-- Rule
}
| false | true | false | false | class |
056c0a48388952cb4e369a1dfc22f490b5849efc | e781b0dfd0a193fa229c81dd816f8977529e9c47 | /design/catch-up-all.puml | f8e37ae1c33a34b8cda46bf622567d253f31e949 | [
"Apache-2.0"
] | permissive | ddntechssi/indy-plenum | b8a2ac597b8249994fa0b9e0aa3bb7965c02a693 | 16868467e1340a5557f7d610370dce5a59c6097b | refs/heads/master | 2020-04-30T04:35:54.054594 | 2019-03-19T18:41:28 | 2019-03-19T18:41:28 | 176,614,246 | 1 | 0 | Apache-2.0 | 2019-03-19T23:27:13 | 2019-03-19T23:27:13 | null | UTF-8 | PlantUML | false | false | 1,445 | puml | @startuml
[*] --> Ready
state Ready {
note "One nested finite-state machine per ledger" as NestedFsmForReadyState
[*] --> Idle
Idle --> Checking : CheckIfLedgerLagged(x) / request LedgerStatuses(x) from others
state Checking_LedgerStatus <<choice>>
Checking --> Checking_LedgerStatus : LedgerStatus(x)
state Checking_LedgerStatus_Newer <<choice>>
Checking_LedgerStatus --> Checking_LedgerStatus_Newer : [newer]
state Checking_LedgerStatus_NotNewer <<choice>>
Checking_LedgerStatus --> Checking_LedgerStatus_NotNewer : [not newer]
Checking_LedgerStatus_Newer --> Checking : [did not gather f+1 newer LSes(x)]
Checking_LedgerStatus_Newer --> Idle : [gathered f+1 newer LSes(x)] / StartCatchup
Checking_LedgerStatus_NotNewer --> Checking : [did not gather n-f-1 not newer LSes(x)]
Checking_LedgerStatus_NotNewer --> Idle : [gathered n-f-1 not newer LSes(x)]
}
Ready --> CatchingUpLedgers : StartCatchup / lastTxn3PCs = []; StartLedgerCatchup(0)
state CatchingUpLedgers_LedgerCatchupFinished <<choice>>
CatchingUpLedgers --> CatchingUpLedgers_LedgerCatchupFinished : LedgerCatchupFinished(i, lastTxn3PC) / lastTxn3PCs.append(lastTxn3PC)
CatchingUpLedgers_LedgerCatchupFinished --> CatchingUpLedgers : [i+1 < len(ledgers)] / StartLedgerCatchup(i+1)
CatchingUpLedgers_LedgerCatchupFinished --> Ready : [i+1 == len(ledgers)] / last3PC = max(lastTxn3PCs); CatchupFinished(last3PC)
@enduml
| false | true | false | false | sequence |
00becbe3a73ec00be1efb4dd8c79f31f9f0c8c9d | 4b530ac0e761ea1137383655bc952ba3e6f7c8f9 | /k0s-student-project/docs/spec/5_diagrams/user - stop container.puml | 7702af838fe77bfcd48132e59a6554206f38ceb4 | [] | no_license | allgreed/uni-bachelors | a6321a99fd581fdf4e6d77d843cf340d1ecbcaae | 29399749a91e0b7a5858e75cadefc659cd98569e | refs/heads/master | 2022-12-30T02:56:38.611656 | 2020-10-11T00:07:04 | 2020-10-11T00:07:04 | 303,008,627 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 893 | puml | @startuml
title Stop Container
actor User
boundary UI
participant Main
participant Cluster
database Postgres
database LDAP
activate UI
User -> UI:List containers
UI -> Main:List containers
activate Main
Main -> LDAP: List containers
activate LDAP
LDAP --> Main: Containers list
deactivate LDAP
Main --> UI: Containers list
deactivate Main
UI -> User: Containers list
User -> UI: Stop container
UI -> Main: Stop container
activate Main
Main ->> Postgres: Save request
activate Postgres
Postgres -> Postgres:Save request
Main -> Cluster: Stop container
activate Cluster
deactivate Postgres
Cluster -> Cluster: Stop container
Cluster --> Main: Container status
deactivate Cluster
Main -> LDAP: Update container status
activate LDAP
LDAP -> LDAP: Update container
LDAP --> Main: Update status
deactivate LDAP
Main --> UI: Container status
deactivate Main
UI --> User: Container status
@enduml
| false | true | false | false | sequence |
aed172b6c1d06ae5a6aeb72ba3572dda94b67669 | ace1c9322bee274dec6c4418355ba53b5364a01f | /com.plantuml | ce72476ff3883ec01e6fd076c821d35108b5d2aa | [] | no_license | javastudent2019/java | 3be4fd302595189523f25a8e6e9a91aac7f0df44 | 29721a67821ce1a45282c575d5b951d1fe1833c4 | refs/heads/master | 2020-07-18T20:02:08.710010 | 2019-09-04T11:43:11 | 2019-09-04T11:43:11 | 206,304,184 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,779 | plantuml | @startuml
title __COM's Class Diagram__\n
namespace Tom.com {
class Tom.com.ConversionAssistant {
{static} + scanner : Scanner
{static} + conversionMenu()
{static} + milesToKilometers()
{static} + kilometersToMiles()
{static} + gallonsToliters()
{static} + poundstoKilos()
{static} + ounceToGrams()
{static} + dollarsToEuros()
{static} + eurosToDollars()
{static} + fahrenheitTocelsius()
{static} + celsiusToFarhenheit()
}
}
namespace Tom.com {
class Tom.com.DigitalAssistant {
- username : String
{static} - scanner : Scanner
+ DigitalAssistant()
+ getDriveAssistant()
+ getDigitalWallet()
+ getDigitalDiary()
+ getUsername()
+ startAssistant()
+ mainMenu()
{static} + welcome()
{static} + initialiseusername()
{static} + initialisemilestodrive()
{static} + initialisebudget()
+ exit()
}
}
namespace Tom.com {
class Tom.com.DigitalDiary {
- scanner : Scanner
- placesVisited : ArrayList<String>
+ DigitalDiary()
+ digitalDiaryMenu()
+ addPlaceVisited()
+ printPlacesVisitedList()
}
}
namespace Tom.com {
class Tom.com.DigitalWallet {
~ scanner : Scanner
- budget : double
- spend : double
- earned : double
+ DigitalWallet()
+ getBudget()
+ setBudget()
+ getSpend()
+ setSpend()
+ getEarned()
+ setEarned()
+ digitalWalletMenu()
+ useBudget()
+ earnings()
+ getRemainingbudget()
}
}
namespace Tom.com {
class Tom.com.DriveAssistant {
- milesToDrive : double
- milesDriven : double
- remainingMiles : double
{static} + scanner : Scanner
+ DriveAssistant()
+ getMilesToDrive()
+ setMilesToDrive()
+ getMilesdriven()
+ setMilesdriven()
+ getRemainingmiles()
+ setRemainingmiles()
+ driveAssistantMenu()
+ addMilesdriven()
+ RemainingMiles()
}
}
namespace Tom.com {
class Tom.com.Main {
{static} + main()
}
}
Tom.com.DigitalAssistant o-- Tom.com.DriveAssistant : driveAssistant
Tom.com.DigitalAssistant o-- Tom.com.DigitalWallet : digitalWallet
Tom.com.DigitalAssistant o-- Tom.com.ConversionAssistant : conversionAssistant
Tom.com.DigitalAssistant o-- Tom.com.DigitalDiary : digitalDiary
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
| false | true | false | false | class |
d878f7cbb1525f4f20f037c1f97e7699ef7b7877 | ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb | /projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/ui/MenuChoiceInvalidException.puml | 9e9071e7c208488e76b48b9078adafedff55518a | [] | no_license | itachi1706/How-to-use-Git-NTUSCSE1819-Site | d6fcba79d906e9916c3961b11a6e1318d8a0f602 | dbce2f56b42e15be96bd40fd63e75389d397ca34 | refs/heads/master | 2021-07-12T15:24:44.197085 | 2020-08-01T12:31:23 | 2020-08-01T12:31:23 | 172,893,030 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 233 | puml | @startuml
class MenuChoiceInvalidException [[../sg/edu/ntu/scse/cz2002/ui/MenuChoiceInvalidException.html]] {
+MenuChoiceInvalidException(tag:String)
}
center footer UMLDoclet 1.1.3, PlantUML 1.2018.12
@enduml
| false | true | false | false | class |
05717fed9aa1cd9afbb37bcff381dd8c6dbcff81 | 3b44dc0cd3bbe2b72fea1b6eba7fb98a6fc531b9 | /architecture.puml | c4607470ce4934e8a441522ac81341644ea03d18 | [] | no_license | SteadyUA/crispy-parakeet | 37200f1277e520df294e1ece959bbd5db735dfc3 | 8628279968953abf7a085d1d7fde0d2a4eb663b9 | refs/heads/master | 2022-04-23T09:10:44.060436 | 2020-04-24T15:42:17 | 2020-04-24T15:42:17 | 258,550,631 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,354 | puml | For preview install the PhpStorm plantUML plugin. Or use online editor.
@startuml
hide fields
hide methods
skinparam package {
backgroundColor white
}
package packages/user-team <<Rectangle>> #EEEBDC {
package User\Auth {
interface AuthService
AuthService <|-- Service\Auth
}
package User\Profile {
interface ProfileService
ProfileService <|-- Service\Profile
interface Service\ProfileStorage
Service\Profile --> Service\ProfileStorage
Service\ProfileStorage <|-- Infrastructure\InFileProfileStorage
}
package Web\User #EEEEEE {
AuthController --> AuthService
class IndexController
}
}
package packages/com-team <<Rectangle>> #EEEBDC {
package Communication\Messages {
interface MessagesProjection
interface SendMessageAware
MessagesProjection <|-- Service\Messages
SendMessageAware <|-- Service\Messages
interface Service\MessagesStorage
Service\Messages --> Service\MessagesStorage
}
package Communication\MessagesStorage {
Service\MessagesStorage <|-- InFileMessagesStorage
}
package Communication\MemberList {
interface MemberAware
interface MembersProjection
MemberAware <|-- Service\Member
MembersProjection <|-- Service\Member
interface Service\Storage
Service\Member --> Service\Storage
Service\Storage <|-- Infrastructure\InFileStorage
}
package Web\Communication #EEEEEE {
MessagesController --> SendMessageAware
MessagesController --> MessagesProjection
MembersController --> MembersProjection
}
package Console\Communication #EEFFEE {
MessagesCommand --> MessagesProjection
}
}
package Web\App #EEEEEE {
App --> Controller
interface Controller
Controller <|-- AuthController
Controller <|-- IndexController
Controller <|-- MembersController
Controller <|-- MessagesController
}
MemberAware <.. Service\Messages
ProfileService <.. Service\Messages
ProfileService <.. Service\Member
ProfileService <.. Service\Auth
MemberAware <.. Service\Auth
package Util\InFileStorage #EEEEEE {
interface Dao
}
Infrastructure\InFileStorage ..> Dao
Infrastructure\InFileProfileStorage ..> Dao
InFileMessagesStorage ..> Dao
@enduml
| false | true | false | false | class |
2aef7ce5a0ea282e92767b36bdb444d03888b4b0 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyShoppingListAddTextLineItemAction.puml | 900fba2961e929811feeb397aebfd21febb79955 | [] | 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 | 686 | 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 MyShoppingListAddTextLineItemAction [[MyShoppingListAddTextLineItemAction.svg]] extends MyShoppingListUpdateAction {
action: String
name: [[LocalizedString.svg LocalizedString]]
key: String
description: [[LocalizedString.svg LocalizedString]]
quantity: Long
addedAt: DateTime
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface MyShoppingListUpdateAction [[MyShoppingListUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
0ec76bc40dbaa98e013499600c8d2346d5f2a78c | 7a39024fa5bf95430534bd8a23eb58a32903b226 | /src/main/PlantUML Diagrams/Sequence Diagrams/Login Sequence Diagram.puml | a5fe81f054cdb3f836c581d6fefb120c9ab9a9ad | [] | no_license | benskov95/Cupcake_Webshop | 51f837428c0bbbf06fa86282685f40ad58cfa787 | 2de2a6fdcb0a1857f2013394523d5865360193c2 | refs/heads/master | 2022-07-19T08:21:58.508937 | 2020-04-01T16:18:42 | 2020-04-01T16:18:42 | 247,524,921 | 0 | 0 | null | 2022-06-21T02:59:42 | 2020-03-15T18:19:00 | Java | UTF-8 | PlantUML | false | false | 1,135 | puml | @startuml
autonumber
Title Login Sequence Diagram
actor Customer
actor Admin
boundary index.jsp
boundary start.jsp
boundary adminstart.jsp
control FrontController
participant Command
participant Login
participant LogicFacade
participant CustomerMapper
database CupCakeDatabase
Customer -> index.jsp : email & password
Admin -> index.jsp : email & password
index.jsp -> FrontController : doPost()
FrontController -> FrontController : processRequest()
FrontController -> Command : from()
Command --> FrontController : login
FrontController -> Login : execute()
Login -> LogicFacade : login()
LogicFacade -> CustomerMapper : login()
CustomerMapper -> CupCakeDatabase : executeQuery()
CupCakeDatabase --> CustomerMapper : resultset
CustomerMapper --> CustomerMapper : validate resultset
CustomerMapper --> LogicFacade : OK
LogicFacade --> Login : OK
Login --> FrontController : return "start"
Login --> FrontController : if (admin) return "adminstart"
FrontController --> start.jsp : forward()
FrontController --> adminstart.jsp : forward()
start.jsp --> Customer : Welcome (customer name)
adminstart.jsp --> Admin : Welcome Admin
@enduml | false | true | false | false | usecase |
8c1e94ff97866ba00aaefabec9bde8f0e86a2287 | 227c32f7a5991c0ce2de069dd1f0448c1e6949fb | /PlantUML/MapDrawer/MapDrawer_Activity_drawScanGp.puml | 3a869d45c7ea32a5d6ff722f9f4667824cb79164 | [] | no_license | ShisatoYano/SLAMDesignUML | 2b3af745ecf8ff1b88845e248a72c589fe9aa1ba | bb8678908952205d1fdc2ea5e49c9ca752e123b9 | refs/heads/master | 2022-11-25T17:49:03.514885 | 2020-08-02T00:27:38 | 2020-08-02T00:27:38 | 261,206,484 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 188 | puml | @startuml
/'
draw scan point
input: Scan2D &scan
'/
(*) --> "vector<Pose2D> poses"
--> "Pose2D pose"
--> "poses.emplace_back(pose)"
--> "drawGp(scan.lps, poses)"
--> (*)
@enduml | false | true | false | false | class |
3aac656f8e607ebd1d354bb8fef9b469c65c6353 | d702b31e656edcb9944228c0309f153bdff29eec | /doc/plantuml/HCARDA/command/EnableVerificationRequirementCommand.plantuml | cb761fc5d199597c2c142828c1f04dc3cef90143 | [
"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 | 1,529 | plantuml | @startuml
package de.gematik.ti.healthcardaccess {
interface IHealthCardCommand {
{abstract} + executeOn()
}
}
package de.gematik.ti.healthcardaccess {
abstract class AbstractHealthCardCommand {
{static} - LOG : Logger
{static} # NE_MAX_EXTENDED_LENGTH : int
{static} # NE_MAX_SHORT_LENGTH : int
{static} # EXPECT_ALL : int
# cla : int
# ins : int
# p1 : int
# p2 : int
# data : byte[]
# ne : int
# AbstractHealthCardCommand()
# AbstractHealthCardCommand()
{abstract} + getTechnicalResponseApdus()
- inferResponseStatusFromResponseCode()
+ executeOn()
# sendApdu()
- getCommandApdu()
}
}
package de.gematik.ti.healthcardaccess {
package de.gematik.ti.healthcardaccess.commands {
class EnableVerificationRequirementCommand {
{static} - CLA : int
{static} - INS : int
{static} - MODE_VERIFICATION_DATA : int
{static} - MODE_NO_VERIFICATION_DATA : int
{static} - technicalResponseApdus : Map<Integer, ResponseStatus>
+ getTechnicalResponseApdus()
+ EnableVerificationRequirementCommand()
+ EnableVerificationRequirementCommand()
}
}
}
AbstractHealthCardCommand -up-|> IHealthCardCommand
EnableVerificationRequirementCommand -up-|> AbstractHealthCardCommand
@enduml | false | true | false | false | class |
ceeb9e37f7da23a3cd52cd764dc952342049e236 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.puml | 7d41a5895d0fb4e66ebeddb319d80c21c864aeb5 | [] | 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 | 700 | puml | @startuml
class TestExtensions <<static>> {
+ {static} HasCategory(test:ITest, categoryFilter:string[]) : bool
+ {static} GetAllCategoriesFromTest(test:ITest) : List<string>
+ {static} ParseForNameDuplicates(test:ITest) : void
+ {static} GetChildIndex(test:ITest) : int
+ {static} HasChildIndex(test:ITest) : bool
{static} GetAncestorPath(test:ITest) : string
+ {static} GetUniqueName(test:ITest) : string
+ {static} GetFullName(test:ITest) : string
+ {static} GetSkipReason(test:ITest) : string
+ {static} GetParentId(test:ITest) : string
+ {static} GetParentFullName(test:ITest) : string
+ {static} GetParentUniqueName(test:ITest) : string
}
@enduml
| false | true | false | false | class |
1e1f99bb6d3334e34dc358d6de8b066f467c8158 | fb71f4802819b0f9e5eb2f71bfe356258b8d1f57 | /ontrack-docs/src/docs/asciidoc/model.puml | 5097c298bcf7a8e53802b355cbbb27297d130b82 | [
"MIT"
] | permissive | nemerosa/ontrack | c5abe0556cc2cc6eb4109e0c2f045ae5cff84da3 | de5ae2ebd9d9a30dce4c717f57e4604da85f0b51 | refs/heads/master | 2023-08-31T11:02:35.297467 | 2023-08-28T17:59:07 | 2023-08-28T17:59:07 | 19,351,480 | 111 | 35 | MIT | 2023-08-31T13:21:53 | 2014-05-01T17:08:33 | Kotlin | UTF-8 | PlantUML | false | false | 666 | puml | @startuml
object Project
object Branch
object Build
object "Promotion level" as PromotionLevel
object "Validation stamp" as ValidationStamp
object "Promotion run" as PromotionRun
object "Validation run" as ValidationRun
object "Validation run status" as ValidationRunStatus
object "Run info" as RunInfo
Project o-- "*" Branch
Branch o-- "*" Build
Branch o-- "*" PromotionLevel
Branch o-- "*" ValidationStamp
Build o-- "*" PromotionRun
PromotionRun --> "1" PromotionLevel
Build --> "*" Build
Build o-- "*" ValidationRun
ValidationRun --> "1" ValidationStamp
ValidationRun o-- "*" ValidationRunStatus
Build o-- "1" RunInfo
ValidationRun o-- "1" RunInfo
@enduml
| false | true | false | false | class |
25a18d8f4d62fa554c7df63c39636bdf17d5668c | 3662b2e08ec5aef2e3dfd1e527b5e50f44d91e1c | /docs/diagrams/CommandClassDiagram3.puml | 852d2da45553a4393e9fc3082fdf66d8c4c74bfe | [] | no_license | AY2021S2-CS2113T-W09-2/tp | 0585f03b1390bf9385a5caef22f00aa599b18d13 | 7d4443d633ae380505f7a69687cc34ab71e0a06b | refs/heads/master | 2023-04-17T11:33:49.033344 | 2021-04-16T02:46:37 | 2021-04-16T02:46:37 | 343,961,010 | 0 | 5 | null | 2021-04-16T02:46:37 | 2021-03-03T01:14:38 | Java | UTF-8 | PlantUML | false | false | 711 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
class "{abstract}\n<i>Command" {
+<i>execute(ModuleList:moduleList, Ui:ui, Storage:storage)
}
class "InfoCommand" {
#moduleCode:String
+execute(ModuleList:moduleList, Ui:ui, Storage:storage)
}
class "DoneCommand" {
#moduleCode:String
#moduleGrade:String
+execute(ModuleList:moduleList, Ui:ui, Storage:storage)
}
class "ExitCommand" {
}
class "ListCommand" {
-scope:String
+execute(ModuleList:moduleList, Ui:ui, Storage:storage)
}
"{abstract}\n<i>Command" <|-- "ExitCommand"
"{abstract}\n<i>Command" <|-- "ListCommand"
"{abstract}\n<i>Command" <|-- "DoneCommand"
"{abstract}\n<i>Command" <|-- "InfoCommand"
@enduml | false | true | false | false | class |
5285aa3f8ff3633ee2672a4138cdb0b4ddd305bb | 19de0597a5790bab6ff021899b4479506ae0829a | /uml/skeleton_seq_diagrams/dying/settlerdies.plantuml | 566a5800cecac7ba1307bf82612ea44b69a3d14a | [] | no_license | bbucsy/projlab_holy_oil | e703a3ac579555a6c62f91051d7fbb5572c88d30 | a1c4e9b953e7f7c22dabbd935abb461f9cacd409 | refs/heads/master | 2023-05-02T06:22:36.234536 | 2021-05-09T09:46:04 | 2021-05-09T09:46:04 | 342,634,410 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 804 | plantuml | @startuml
skinparam SequenceLifeLineBackgroundColor LightYellow
title "Settler dies"
actor Controller as control
participant "s: Settler" as settler
participant "GameController" as game
participant "a: Asteroid" as asteroid
actor Tester as tester
participant "ps: PlayerStorage" as storage
control -> settler ++: Die()
settler -> game ++: RemoveSettler(s)
game --> settler --
settler -> asteroid ++: RemoveCrewmante(s)
asteroid --> settler--
settler-> tester ++: Are there teleporters on me?
tester --> settler --: yes
settler -> storage ++: GetTeleporters()
storage --> settler --: teleporters
alt settler has at least one teleporter
participant "teleporters[0]: TeleportGate" as teleporter
settler -> teleporter ++: Explode()
teleporter--> settler --
end
settler --> control --
@enduml | false | true | false | false | usecase |
4ca61b01c8cb577c4919ae2e7fba0d0abbd169c1 | b8c60a6f70aa7ad7adbdc393d9bda57ad0cc37cf | /BehaviorsInStates.plantuml | 2e37528cf3da2fb2e22674ad23f75155f5723e34 | [] | no_license | nozomukuwae/UML-StateMachine | 332a0bedf519f46f52a01f8a4f096aa074669ba3 | 7b6b6673007793152d6a1fb94a43d5a9e3c8268d | refs/heads/master | 2022-12-08T01:26:58.663573 | 2020-08-14T10:57:09 | 2020-08-14T10:57:09 | 287,511,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 870 | plantuml | @startuml
state DisplayPage {
RoomList : entry / display device list
DeviceList : entry / display device data
OnOffDeviceInfo : entry / display device info \n entry / lock device \n exit / release deivce \n do / poll device status \n device status changed / display device info
OpenClosedDeviceInfo : entry / display device info \n entry / lock device \n exit / release deivce \n do / poll device status \n device status changed / display device info
RoomList --> DeviceList : select room
DeviceList --> RoomList : back
DeviceList --> OnOffDeviceInfo : select device \n[device Class==OnOffDevice]
OnOffDeviceInfo --> DeviceList : back
DeviceList --> OpenClosedDeviceInfo : select device \n[device Class==OpenClosedDevice]
OpenClosedDeviceInfo --> DeviceList : back
}
[*] --> RoomList : enter page
DisplayPage --> [*] : leave page
@enduml
| false | true | false | false | sequence |
ffe21ea7ba6d1a4ef67ee14e59d4f6c36837f4a8 | 2f9950f2f20c5260b217175bca467776eb5afdd9 | /doc/design/supervision-tree.puml | f5805d448e414042a8d1cc7312b8309991f77e53 | [] | no_license | samuelrivas/moka | fecb6cf8be6ad6db813a766033cc18d9fdcc3b76 | 92521e43d1d685794f462ed49403c99baeae0226 | refs/heads/master | 2021-01-01T15:40:35.863642 | 2014-02-01T10:18:37 | 2014-02-01T10:18:37 | 4,950,744 | 5 | 1 | null | 2014-02-01T10:28:56 | 2012-07-08T22:59:42 | Erlang | UTF-8 | PlantUML | false | false | 426 | puml | @startuml
class Moka <<application>>
class MainSup <<supervisor>>
class MokaSup <<supervisor>>
class MokaServer <<genserver>>
class History <<genserver>>
class CallHandler <<genserver>>
class FunWorker <<temporary process>>
Moka *--> MainSup
MainSup *--> "*" MokaSup
MokaSup *--> MokaServer
MokaSup *--> History
MokaSup *--> "*" CallHandler
CallHandler *--> "*" FunWorker
@enduml | false | true | false | false | class |
5839b8257c4c5578babd66b48e3c86e58c4ec744 | 5852f6b38b87d13b732b67c8fdef4c22ae215a8f | /docs/diagrams/src/movies11.plantuml | 35f5cda095ba9163c34efa24e59fbf82eead61fd | [] | no_license | ivlago/Refactor | bbc940ba59aa2b397d52c3c041e3b1db97f8b22d | 5fc9ddb4517bc21dba3a8df0b629637b213cff79 | refs/heads/main | 2023-04-05T18:22:56.671516 | 2021-04-22T20:14:21 | 2021-04-22T20:14:21 | 359,514,464 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 822 | plantuml | @startuml movies
class Customer {
- String name;
- List<Rental> rentals;
+ Costumer(String name)
+ void addRental(Rental rental)
+ String getName()
+ String statement()
- double getTotalCharge()
- int getTotalFrequentRenterPoints()
}
class Rental {
- Movie movie;
- int daysRented;
+ Rental(Movie movie, int daysRented)
+ int getDaysRented()
+ Movie getMovie()
+ double getCharge()
+ int getFrequentRenterPoints()
}
class Movie {
+ static final int REGULAR = 0;
+ static final int NEW_RELEASE = 1;
+ static final int CHILDRENS = 2;
- String title;
- int priceCode;
+ Movie(String title, int priceCode)
+ double getCharge(int daysRented)
+ int getFrequentRenterPoints(int daysRented)
+ int getPriceCode()
+ void setPriceCode(int priceCode)
+ String getTitle()
}
Customer o-down-> Rental
Rental -down-> Movie
@enduml
| false | true | false | false | class |
9fac04d395c7052c1741c8a25bf1b2bb976f8b85 | f843c9d5922c2ef92cc3ca50f20f44184ed27ef8 | /src/main/java/TemplateMethod/Starbuzz/README.puml | 1f57489757e472da9a9bf8ac32bcf21ddbf2cd14 | [] | 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 | 1,153 | puml | @startuml Diagramme de classe
class Boisson <<Abstract>>{
preparer(): void
bouillir_eau(): void
infusser(): void
verser_tasse(): void
ajouter_condiments(): void
}
class The extends Boisson{
infuser(): void
ajouter_condiment(): void
}
class Cafe extends Boisson{
infuser(): void
ajouter_condiments(): void
}
@enduml
@startuml ds-preparer
skinparam style strictuml
participant ":StarbuzzTest" as S
participant ":The" as T
participant ":Boisson" as B
participant "System.out" as P
-> S: preparer_the()
S --> T: create()
T --> B: create()
S -> T: prepare()
activate T
T -> B: prepare()
activate B
B -> B: bouillir_eau()
activate B
B -> P: println(...)
deactivate B
B -> T: infuser()
activate T
T -> P: println(...)
deactivate T
B -> B: verser_tasse()
activate B
B -> P: println(...)
deactivate B
B -> T: ajouter_condiments()
activate T
T -> P: println(...)
deactivate T
deactivate B
deactivate T
@enduml | false | true | false | false | sequence |
9d020e16954b421b5b8f7ccab06b666f3a069a87 | 73ee347b13741631cf216e2f9f9e99a96a51a553 | /docs/overview.plantuml | 68cfa4bbbfc575652bdbeecca9853d9dd325bc5b | [
"Apache-2.0"
] | permissive | mauroprojetos/openshift-kube-vip-ansible | 1e82f087d62f93acbe9f4af5bdc6c09ade3a1d26 | e7dd9a9b7b2dedd0fb87cc416eb95d91dfef0fb9 | refs/heads/master | 2023-02-20T08:52:01.024753 | 2021-01-18T20:00:32 | 2021-01-18T20:00:32 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 991 | plantuml | @startuml
node "Admin" as client
node "Master 1" as master1 {
component "kube-vip" as master1_kube_vip
component "kube-apiserver (192.168.1.11:8443)" as master1_kube_apiserver
}
node "Master 2" as master2 {
component "kube-vip (192.168.1.1:8443)" as master2_kube_vip
component "kube-apiserver (192.168.1.12:8443)" as master2_kube_apiserver
}
node "Master 3" as master3 {
component "kube-vip" as master3_kube_vip
component "kube-apiserver (192.168.1.13:8443)" as master3_kube_apiserver
}
client ..> master1_kube_vip
client --> master2_kube_vip
client ..> master3_kube_vip
master1_kube_vip --> master1_kube_apiserver
master1_kube_vip --> master2_kube_apiserver
master1_kube_vip --> master3_kube_apiserver
master2_kube_vip --> master1_kube_apiserver
master2_kube_vip --> master2_kube_apiserver
master2_kube_vip --> master3_kube_apiserver
master3_kube_vip --> master1_kube_apiserver
master3_kube_vip --> master2_kube_apiserver
master3_kube_vip --> master3_kube_apiserver
@enduml
| false | true | false | false | class |
b8fba8368e96a7939be70fc5f572bf1a40a3e6d0 | b511574ac3a58a8e61d987b33bcc11bd97fcd0bf | /docs/diagrams/AddBudgetCommandClassDiagram.puml | 3efac7f21a4a7e65681dd37316d0ff7583deb80e | [
"MIT"
] | permissive | briyanii/main | 78914ac3ebcac79ddeb491afc02ec87102353b20 | a35ffba3265a0abe0546dc3465572560f1a21468 | refs/heads/master | 2020-07-28T09:38:24.226164 | 2019-11-01T07:34:37 | 2019-11-01T07:34:37 | 209,382,846 | 0 | 0 | NOASSERTION | 2019-10-02T17:58:33 | 2019-09-18T18:57:56 | Java | UTF-8 | PlantUML | false | false | 478 | puml | @startuml
class AddBudgetCommand {
+{static} COMMAND_WORD: String
+{static} MESSAGE_USAGE: String
+{static} MESSAGE_SUCCESS: String
+{static} MESSAGE_DUPLICATE_BUDGET: String
#validate(model: Model)
#execute(model: Model): CommandResult
}
abstract class UndoableCommand
AddBudgetCommand -up-|> UndoableCommand
AddBudgetCommand -right-> "1" Budget: toAdd
AddBudgetCommand ..> Model
AddBudgetCommand ..> CommandResult
AddBudgetCommand .left.> CommandException: throws
@enduml
| false | true | false | false | sequence |
66915a27d64721719361dba4760c3a35578d120a | 3e8de74dfe19cd437fd7842887394d4921a109d7 | /docs/images/etat5.plantuml | c1124d0bb376d89529a093782d763a3a9ab79c0a | [] | no_license | jmbruel/InnopolisDesignPatterns | 62c5f1df870883cd44245d6459243c83b96d0995 | a9ffbfc16a29ed3d560d5be12e8fb1d2f1bed50e | refs/heads/master | 2021-02-04T20:34:22.378185 | 2020-11-16T17:40:28 | 2020-11-16T17:40:28 | 243,707,157 | 0 | 7 | null | 2020-10-23T08:58:33 | 2020-02-28T07:49:59 | JavaScript | UTF-8 | PlantUML | false | false | 239 | plantuml | @startuml
'-----------------------------------
' UML patterns illustrated
' JMB 2014
'-----------------------------------
state E1
E1 --> Destination : événement1
E2 --> Destination : événement2
Destination : entry / action
@enduml
| false | true | true | false | sequence |
90ee479b80bcb83587384c261f0786b190a60b8d | 1796581f86afff7ca46e44c51358bc4b38a5375a | /programming/design-pattern/plantuml/decorator.puml | d2f19e30ad9c1a7d35e4eb313d5bf8bf9305f13c | [] | no_license | ruleless/ORG | 7de911d850c3861d44ecb5ee395874c637e22380 | cd3021a55f2ac47e0c1271fe745c1d2c28289eca | refs/heads/master | 2023-06-01T04:41:54.376093 | 2023-05-17T14:28:44 | 2023-05-17T14:28:44 | 44,298,812 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 419 | puml | @startuml Decorator
class Component {
+Operation()
}
class ConcreteComponent {
+Operation()
}
Component <|-- ConcreteComponent
class Decorator {
+Operation()
}
Component <|-- Decorator
Component --o Decorator
class ConcreteDecoratorA {
+Operation()
}
Decorator <|-- ConcreteDecoratorA
class ConcreteDecoratorB {
+Operation()
+AddedBehavior()
}
Decorator <|-- ConcreteDecoratorB
@enduml | false | true | false | false | class |
1d78d3f304fd50facad887059f0ca282feffc968 | ea8df3c7306a15dcfe74e7faaa1c1b782a76ea83 | /user-guide/puml/norm-database-schema.puml | 59fc272ef8d6eab36f9fbeefb435cbb01a2a6fd7 | [
"MIT"
] | permissive | InseeFr/ARC | 0d1569bca2d1b0e26f57a2f7d2847b90b6fe04f6 | 7bfff28d86a6b4e728d1dc0e3872ac15ab8b87aa | refs/heads/master | 2023-09-01T00:32:19.872539 | 2023-08-22T07:15:27 | 2023-08-22T07:15:27 | 187,840,296 | 13 | 8 | MIT | 2023-04-25T14:45:36 | 2019-05-21T13:12:52 | Java | UTF-8 | PlantUML | false | false | 372 | puml | @startuml database_norm
!define table << (T,orchid) >>
!define primary_key(x) <u>x</u>
hide methods
hide stereotypes
class norm_family << table >> {
text primary_key(id_family)
}
class norm << table >> {
text primary_key(id_norm)
text periodicity
text def_norm
text def_validity
text state
}
norm_family "1" -right- "0..n" norm : < implements
@enduml | false | true | false | false | class |
59d0a34a8abc8d2c198e63b1acd3457d61211aab | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AssociateRoleDeletedMessage.puml | 31b9cff5f4c964340474e292dea5926186ab3f2b | [] | 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,135 | 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 AssociateRoleDeletedMessage [[AssociateRoleDeletedMessage.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]]
}
@enduml
| false | true | false | false | class |
299c822f48c51b1d9e0ca5238af11f70ae06a6c4 | beda9c9d389e567cd4a1c12b86d75a69a1eaf249 | /diagrams/activity/activity.puml | a49bb92fb1f752598c78a17a4f1b5fe884c60783 | [] | no_license | OmarAlghamdi/swe363-project-react | 004aa3954a3c671f9ecf8cb5cb3d243046725145 | 805587fafe35034b97fff4232d0a85250fddcde4 | refs/heads/master | 2020-09-11T18:16:24.446474 | 2020-05-20T06:24:48 | 2020-05-20T06:24:48 | 222,149,691 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,674 | puml | @startuml
title
Anonymous User Registration
end title
(*) --> if "[user is registered]" then
-->[false] "sign up"
--> "fill in form"
if "[valid]" then
--> [true] "submit request"
else
--->[false] "fill in form"
endif
else
->[true] "sign in"
endif
"submit request" --> (*)
@enduml
======================================
@startuml
title
Request Activity
endtitle
(*) --> "browse activities"
--> === f1 ===
--> "search particular activity"
=== f1 === --> "select activity"
"search particular activity" -> "select activity"
"select activity" --> "request activity"
If "[logged in]" then
--> [true] "update database"
else
-> [false] "sign in"
If "[success]" then
--> [true] "update database"
else
--> [false] (*2)
"update database" --> (*3)
Endif
Endif
@enduml
======================================
@startuml
title
Sign In
end title
(*) --> "input"
"input" --> "find user"
If "[found]" then
--> [true] "check password"
If "[correct]" then
--> [true] "check status"
If "[not blocked]" then
--> [false] "show error"
else
--> [true] (*2)
Endif
else
--> [false] "show error"
Endif
else
---> [false] "show error"
If "" then
--> [cancel] (*3)
else
--> [try agian] "input"
Endif
Endif
@enduml
======================================
@startuml
title
Accept/Reject Registration Request
end title
(*) --> "recieve registration request"
"recieve registration request" --> "view registration requests"
If "[request exists]" then
--> [true] "choose request"
If "" then
--> "accept request"
"accept request" --> "add user to database"
"add user to database" --> (*3)
else
-> "reject request"
"reject request" -> "remove user from database"
"remove user from database" -> (*2)
Endif
else
-> [false] "show message"
"show message" -> (*1)
Endif
@enduml
=====================================
@startuml
title
Generate Report
endtitle
start
:select generate report;
:choose type;
:submit;
:fetch data from database;
:generate report;
stop
@enduml
====================================
@startuml
title
Block/Delete User
endtitle
(*) --> "view users"
"view users" --> "select user"
If "" then
-left-> "block user"
"block user" --> "select duration"
"select duration" --> "update database"
"update database" --> (*1)
else
-> "delete user"
"delete user" --> "remove from database"
"remove from database" --> (*2)
Endif
@enduml
====================================
@startuml
title
Accept/Reject Activity Request
end title
(*) --> "recieve activity request"
"recieve activity request" --> "view activity requests"
If "[request exists]" then
--> [true] "choose request"
If "" then
--> "accept request"
"accept request" --> "add activity to database"
"add activity to database" --> (*3)
else
-> "reject request"
"reject request" -> "remove activity from database"
"remove activity from database" -> (*2)
Endif
else
-> [false] "show message"
"show message" -> (*1)
Endif
@enduml
===================================
@startuml
title
Accept/Reject Participation Request
end title
(*) --> "recieve participation request"
"recieve participation request" --> "view participation requests"
If "[request exists]" then
--> [true] "choose request"
If "" then
--> "accept request"
"accept request" --> "add user to activity database"
"add user to activity database" --> (*3)
else
-> "reject request"
"reject request" -> "remove user from activity database"
"remove user from activity database" -> (*2)
Endif
else
-> [false] "show message"
"show message" -> (*1)
Endif
@enduml
===================================
@startuml
title
Send Feedback
end title
(*) --> "view activity"
if "[registered]"then
--> [true] "send feedback"
else
-> [false] "request participation"
Endif
"send feedback" --> "fill details"
If "[valid]" then
--> [true] "submit"
else
---> [false] "fill details"
Endif
"submit" --> (*)
@enduml
===================================
@startuml
title
Update Profile
end title
(*) --> "select update profile"
"select update profile" --> "view profile details"
"view profile details" --> "enter new values"
If "[valid]" then
--> [true] "submit"
else
---> [false] "enter new values"
Endif
"submit" --> "update profile"
"update profile" --> (*)
@enduml
===================================
@startuml
title
Edit/End Activity
endtitle
(*) --> "view activities"
"view activities" --> "select activity"
If "" then
-left-> "edit activity"
"edit activity" --> "enter new values"
If "[valid]" then
--> [true] "submit"
else
---> [false] "enter new values"
Endif
"submit" --> "update activity"
"update activity" --> (*)
else
-> "end activity"
"end activity" --> "update database"
"update database" --> (*2)
Endif
@enduml
====================================
@startuml
title
Reply To Comments
endtitle
(*) --> "view activities"
"view activities" --> "select activity"
"select activity" --> "view comments"
"view comments" --> "select comment"
"select comment" --> "add reply"
"add reply" --> (*)
@enduml
=====================================
@startuml
title
Offer Activity
end title
(*) --> [user is in homepage] "add activity"
"add activity" --> "fill in form"
if "[valid]" then
--> [true] "submit request"
else
--->[false] "fill in form"
endif
"submit request" --> (*)
@enduml
======================================
@startuml
title
Edit/Cancel Request
endtitle
(*) --> "view requests"
"view requests" --> "select requests"
If "" then
-left-> "edit requests"
"edit requests" --> "enter new values"
If "[valid]" then
--> [true] "submit"
else
---> [false] "enter new values"
Endif
"submit" --> "update requests"
"update requests" --> (*)
else
-> "cancel requests"
"cancel requests" --> "update database"
"update database" --> (*2)
Endif
@enduml
| false | true | false | false | activity |
9a8855fe93291af44c0ba300214ba0987c1d44fd | d62eb36247d422453d13124cdadb4cce6042d1f7 | /diagramas/secuenciaAgregarEjercitos.puml | 104168f96c457ad2f4b1031fee1026c06bf2c0f5 | [
"MIT"
] | permissive | valengutierrez/algo3_tp2 | d5579f678ffd301b284e1b5a3c4b4842520ca485 | 7435ad6d2cf44df9baadcdb6557017a133c98840 | refs/heads/master | 2023-07-07T21:35:37.949278 | 2021-08-13T17:51:03 | 2021-08-13T17:51:03 | 382,075,823 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 954 | puml | @startuml agregarEjercitos
title Un Jugador agrega ejercitos a un pais
skinparam style strictuml
participant Juego
participant "unJugador:Jugador" as Jugador1
participant "otroJugador:Jugador" as Jugador2
participant "Argentina:Pais" as Argentina
participant "ejercitoArgentino:Ejercito" as ejercitoArgentino
participant "Brasil:Pais" as Brasil
participant "ejercitoBrasilero:Ejercito" as ejercitoBrasilero
participant "Chile:Pais" as Chile
participant "ejercitoChileno:Ejercito" as ejercitoChileno
Juego -> Jugador1: colocar(5)
loop mientras tenga fichas disponibles
Jugador1 -> Argentina: incrementarEjercito(4)
Argentina -> ejercitoArgentino: incrementar(4)
Jugador1 -> Brasil: incrementarEjercito(1)
Brasil -> ejercitoBrasilero: incrementar(1)
end
Juego -> Jugador2: colocar(5)
loop mientras tenga fichas disponibles
Jugador2 -> Chile: incrementarEjercito(5)
Chile -> ejercitoChileno: incrementar(5)
end
@enduml | false | true | false | false | sequence |
fcc2ed8e39e6bf9a543183f699442eb9ffb2f73a | 0a760efca05360378cddf19f68cd7418a30354de | /Biblio/UML/threads.puml | 7bcb4c350a5e6c2ea580dbd06910d0f68f7abe7b | [] | no_license | EmileClement/Space_Invaders | 0f819babcc0af0af3133ee0ad1c3c8deb0ccc5fa | 72bff4a8a64dbc371f213cb0af52b17399735c7f | refs/heads/master | 2023-06-15T05:14:02.269370 | 2021-07-17T18:07:01 | 2021-07-17T18:07:01 | 355,173,402 | 0 | 0 | null | 2021-05-09T12:56:46 | 2021-04-06T12:03:25 | C++ | UTF-8 | PlantUML | false | false | 1,267 | puml | @startuml Architecture projet
interface "CAN Joystick" as CAN
interface "Ecran" as LCD
interface "Ethernet" as ether
Queue "Queue_J\nchoc joueur" as Queue_J
Queue "Queue_E\nchoc ennemie" as Queue_E
Queue "Queue_F\nfin du jeu" as Queue_F
Queue "Queue_N\nnouveau projectile" as Queue_N
component t_gm[
Thread : game_master
===
T = 20 ms
---
gère l'apparition des porjectiles,
gère les autres Thread,
fait l'affichage des scores
]
component t_j1[
Tread : joueur_1
===
T = 20 ms
---
gère le joystick,
la vie du joueur,
la position du joueur 1,
et l'affichage du joueur
]
component t_ennemie[
Tread : Ennemies
===
T = 20 ms
---
gère les ennemies
]
component t_proj[
Tread : projectile
===
T = 20 ms
---
gère les projectiles
gère les colisions
]
[t_j1] --( CAN : lit la valeur
[t_proj] --> Queue_E : touché
[t_proj] --> Queue_J : touché
Queue_E --> [t_ennemie]
Queue_J --> [t_j1]
[t_j1] --> Queue_F : plus de vie
[t_ennemie] --> Queue_F : plus d'ennemie
Queue_F --> [t_gm]
[t_gm] --> Queue_N : nouveau tire du joueur
[t_j1] --> Queue_N : nouveau tire des ennemie
Queue_N --> [t_proj]
[t_j1] --( LCD
[t_ennemie] --( LCD
[t_proj] --( LCD
[t_gm] --( LCD
[t_gm] --( ether
[t_gm]..>[t_j1] : suspend
[t_gm]..>[t_ennemie] : suspend
[t_gm]..>[t_proj] : suspend
@enduml
| false | true | true | false | sequence |
4925dad2db6c10645572f15bd5ec9ef75d24a5e4 | 2060d9177e8c16b1d5259477f6337437d7c17f41 | /P1/ADD/views/SequenceUC1Diagram.puml | 17a81a0337ca7ab9d8302d4b086bff07dc5114d2 | [] | no_license | diogoc21/ISEP.Master.ARQSOFT_2019 | 664a5bdbfde383c910e844caadf1079468f3c087 | e76a7a2cca6b247605d2b2316fd14d65244f1e3c | refs/heads/master | 2022-04-08T09:32:58.983176 | 2019-12-19T19:21:48 | 2019-12-19T19:21:48 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 906 | puml | @startuml SequenceUC1Diagram
actor CookingTeam
boundary GorgeousMealUI
control MealItemController
participant MealItemRepository
entity MealItem
database MealDB
CookingTeam -> GorgeousMealUI : Select Add Meal Item
GorgeousMealUI --> CookingTeam : Meal Item Data?
CookingTeam -> GorgeousMealUI : Inserts Meal Item Data
GorgeousMealUI-> MealItemController : AddMealItem(data)
MealItemController -> MealItemController : ValidateData(data)
MealItemController -> MealItemRepository : PostMealItem(data)
MealItemRepository -> MealItemRepository : ValidateData(data)
MealItemRepository -> MealItem : new MealItem(data)
MealItem --> MealItemRepository : return mealItem
MealItemRepository -> MealDB : AddMealItem(mealItem)
MealItemRepository --> MealItemController : return success
MealItemController --> GorgeousMealUI : return success
GorgeousMealUI --> CookingTeam : Informs the operation's success
@enduml | false | true | false | false | usecase |
d9db93a888ec45482385967fd14ab6b38a8c8296 | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/macros03_02/advanced_functions/i130419/sequence_diagram.puml | b05b5d5a794af9caa1c6cc89da5746a3d3c27797 | [] | 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 | 1,690 | puml | @startuml doc-files/sequence_diagram.png
actor User
participant "CellEditor" as UI
participant "CellImpl" as cell
participant "Formula" as formula
participant "FormulaCompiler" as formulaCompiler
participant "Expression" as expression
participant "ExpressionCompiler" as expressionCompiler
participant "ANTLRStringStream" as antlr
participant "FormulaLexer" as formulaLexer
participant "CommonTokenStream" as tokStream
participant "FormulaParser" as formulaParser
participant "CommonTree" as tree
participant "Function" as func
User -> UI : actionPerformed()
UI -> cell : setContent(string)
cell -> cell : storeContent(string)
cell -> formula : formula = create()
cell -> formulaCompiler : formula = compile(this,string)
formulaCompiler -> expression : expression = create()
formulaCompiler -> expressionCompiler : expression = compile(cell, string)
expressionCompiler -> antlr : input = create(string)
expressionCompiler -> formulaLexer : lexer = create(input)
expressionCompiler -> tokStream : tokens = create(lexer)
expressionCompiler -> formulaParser : parser = create(tokens)
expressionCompiler -> tree : tree = create()
expressionCompiler -> formulaParser : tree = expression().getTree()
expressionCompiler -> expressionCompiler : expression = convert(cell, tree)
formulaCompiler <-- expressionCompiler : expression
formulaCompiler --> cell : formula
cell -> cell : updateDependencies()
cell -> cell : fireContentChanged()
cell -> cell : reevaluate()
cell -> formula : evaluate()
formula -> expression : evaluate()
expression -> func : applyTo(args)
func --> expression : Value
expression --> formula : Value
formula --> cell : Value
cell -> cell : printMatrix()
@enduml | false | true | false | false | usecase |
69a2b33fe913f100207c323fc0d09fec9f18fa8f | 94db8bf82cab4aeef38721ec5e730199415d49be | /asciidocs/plantuml/cld.puml | 6d2b82bf1236b30fb6b5738faf331dc03dc5e353 | [] | no_license | 2122-5ahif-nvs/02-microproject-danielandricic | de2d479f9756c94353425f70c2ec31d09d0222ca | ec639ff3997a35910393aef9316bf1e1105a7115 | refs/heads/main | 2023-08-28T00:09:27.500170 | 2021-10-15T10:36:21 | 2021-10-15T10:36:21 | 414,311,492 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 503 | puml | @startuml
Author "1" <-right- "*" Article : writes >
Reader "1" <-left- "*" Article : reads >
class Author {
-id: Long
+firstName: String
+lastName: String
+birthDate: LocalDate
+String getFullName()
+String toString()
}
class Article {
-id: Long
+name: String
+content: String
+releaseDate: LocalDate
+authorID: Long
}
class Reader {
-id: Long
+firstName: String
+lastName: String
+birthDate: LocalDate
+String toString()
}
@enduml
| false | true | false | false | class |
6d1b4a5fb0fb9ba35dba0062ec1695afb4c4abea | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyCartSetLineItemShippingDetailsAction.puml | 95265118a3b84c73d358b29560c614c5861602cc | [] | 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 | 574 | 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 MyCartSetLineItemShippingDetailsAction [[MyCartSetLineItemShippingDetailsAction.svg]] extends MyCartUpdateAction {
action: String
lineItemId: String
lineItemKey: String
shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]]
}
interface MyCartUpdateAction [[MyCartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
7d5c857a681053a7c46d9c8ce08f6b91299b8cec | 8acb6cba492b0f28b54f190763be30107cef2716 | /DesignDocuments/UML/Sequence/WriteByte.plantuml | e22ffb0461ca1645c0756762787c9b646dfabb10 | [] | no_license | ShujiMikami/OneWireDriver | 011b60f7a26462cec7cb225c2b9e5200c02b7752 | 5d537499f25a2b4ef7c3f01ecd1b76bcb151e0dd | refs/heads/master | 2020-03-25T15:41:53.432404 | 2018-08-13T14:21:41 | 2018-08-13T14:21:41 | 143,896,913 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 527 | plantuml | @startuml
hide footbox
title WriteByte sequence
participant "OneWireDriver" as ModuleOneWireDriver<<M,Green>>[[../Class/OneWireDriver.svg]]
-> ModuleOneWireDriver : WriteByte(byteData : uint8_t)
activate ModuleOneWireDriver
loop cnt[0:7]
opt bit[cnt] of byteData = 1
ref over ModuleOneWireDriver
write0()
[[./write0.svg]]
end ref
else
ref over ModuleOneWireDriver
write1()
[[./write1.svg]]
end ref
end
end
<-- ModuleOneWireDriver
deactivate ModuleOneWireDriver
@enduml
| false | true | false | false | sequence |
f1a9294138ca30e4e15f0a6b450126ab438cc15c | 8491af28b929c9dd8c3e95cd2cc9859519a004bd | /src/assets/diagram/uc-req.plantuml | 2bd0fbafc8ce38de4d5b55e4b81ee37bd067e44e | [] | no_license | smolijar/gitwiki-thesis | 143e3df3d9b9c1549649f2d2b3694f4a95dd46e2 | a683eabeeb1ff3d6381bd677c051079e0ab9c34b | refs/heads/master | 2023-05-01T01:03:01.240639 | 2018-06-12T18:05:28 | 2018-06-12T18:05:28 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,063 | plantuml | @startuml
left to right direction
skinparam packageStyle rectangle
' rectangle "UC" {
usecase "UC1 **Git remote**\n**access**" as uc1
usecase "UC2 **Sign in**" as uc2
usecase "UC3 **Traverse tree**" as uc3
usecase "UC4 **Show file**" as uc4
usecase "UC5 **Select**\n**repository**" as uc5
usecase "UC6 **Select**\n**revision**" as uc6
usecase "UC7 **Change**\n**content**" as uc7
usecase "UC8 **Edit**\n**contents**" as uc8
usecase "UC9 **Manage**\n**files**" as uc9
usecase "UC10 **Create**\n**revision**" as uc10
usecase "UC11 **Manage user**\n**access permissions**" as uc11
' }
' rectangle "FREQ" {
rectangle "F1 **Authentication**" as f1
rectangle "F2 **Authorization**" as f2
rectangle "F3 **Content management**" as f3
rectangle "F4 **Content browsing**" as f4
rectangle "F5 **Authorization management**" as f5
' }
f1 -- uc1
f1 -- uc2
f2 -- uc3
f2 -- uc4
f2 -- uc7
f2 -- uc11
f3 -- uc8
f3 -- uc9
f3 -- uc10
f3 -- uc7
f3 -- uc11
f4 -- uc3
f4 -- uc4
f4 -- uc5
f4 -- uc6
f5 -- uc11
@enduml
| false | true | false | false | usecase |
d4abe1c4c09204bb4550c89571a8816cf5ea2f88 | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1140263/sprint2/ipc07.1_getInstances_sendResquest.puml | a21b81f7e31b1af49c9a0cd44d9aaf61319e42ce | [] | no_license | ABCurado/University-Projects | 7fb32b588f2c7fbe384ca947d25928b8d702d667 | 6c9475f5ef5604955bc21bb4f8b1d113a344d7ab | refs/heads/master | 2021-01-12T05:25:21.614584 | 2017-01-03T15:29:00 | 2017-01-03T15:29:00 | 77,926,226 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 968 | puml | @startuml doc-files/ip07.1_getInstances.png
actor User
participant "<<analysis>>\nGameUI" as GameUI
participant "<<analysis>>\nGameController" as GameController
participant "<<analysis>>\nVolt.UdpClient" as Volt.UdpClient
participant "<<analysis>>\nVolt.UdpServer" as Volt.UdpServer
User->GameUI: starts operation
GameUI->GameController: new ()
activate GameController
GameController->Volt.UdpClient: new ()
GameController->Volt.UdpServer: new ()
deactivate GameController
GameUI->GameController: List<String> lst = getOtherInstances()
loop
activate GameController
GameController->Volt.UdpClient: send(":broadcast")
note right of GameController: manager.after(1).every(5).fire(broadcast)
GameController->Volt.UdpServer: expect(":ip|:port")
deactivate GameController
end
GameUI->User: Shows other available instances
note left of GameUI: in a sidebar window
User->GameUI: Selects instance
note right of GameUI: String target = instance.ip+":"instance.port
@enduml | false | true | false | false | usecase |
4d770c9c684209c486f706f9f5f8cd7820533af1 | 3652eb1544783c098246f4c773abc276d54398b2 | /UMLProyecto/CodePlant/Diagrama de Clases.puml | c9cea582e33046f04bbc265711b3567df5c4d533 | [] | no_license | ManuBenito98/seisdos | 306c7289ea84d735a2e14ee0c6809ed6787170d3 | 39bec7279e61fad0257b95762b137cfae493e42f | refs/heads/master | 2018-12-06T04:37:15.740773 | 2018-11-30T00:52:37 | 2018-11-30T00:52:37 | 145,494,186 | 0 | 0 | null | null | null | null | WINDOWS-1250 | PlantUML | false | false | 24,264 | puml | @startuml
package "diagrama de clases"{
package Collisions{
interface Visitable{
}
ColliderMaster "-instance" -->"1" ColliderMaster
ColliderMaster "-collisions"-->"0..*" Collider
class ColliderMaster{
-ColliderMaster()
{static} + getInstance()
+ removeCollider(c:Collider)
+ findCollisions(c:Collider):Collection<Collider>
+ addCollider(c:Collider)
}
PowerUpVisitor<|--UnfrozeVisitor
class UnfrozeVisitor{
+UnfrozeVisitor()
+visitEnemyController(e:VisitableEnemyController)
}
Visitable<|--Collider
Collider "c" --> "1" ColliderMaster
Collider "o" --> "1" DestroyableObject
Collider "v" --> "1" Visitor
Collider "collisions" --> "0..*" Collider
abstract class Collider{
# x:float
# y:float
# ex:float
# ey:float
# dx:float
# dy:float
+ Collider(o:DestroyableObject)
+ update()
# solveCollision()
# scanCollisions()
+ intersects(co:Collider):boolean
+ getX():float
+ getY():float
+ getEx():float
+ getEy():float
+ getO():DestroyableObject
+ destroySelf()
}
Collider<|--CommonBarricadeCollider
class CommonBarricadeCollider{
+CommonBarricadeCollider(commonBarricade:CommonBarricade)
+accept(v:Visitor)
+update()
}
Visitor<|--CommonBarricadeVisitor
class CommonBarricadeVisitor{
+visitPlayerBullet(b:PlayerBulletCollider)
+visitEnemyBullet(b:EnemyBulletCollider)
+visitPiercingBullet(b:PiercingBulletCollider)
}
Collider<|--DummyCollider
class DummyCollider{
+DummyCollider(o:DestroyableObject)
+accept(v:Visitor)
}
Visitor<|-- DummyVisitor
Collider<|--EnemyBarricadeCollider
class EnemyBarricadeCollider{
+EnemyBarricadeCollider(c:EnemyBarricade)
+accept(v:Visitor)
+update()
}
Visitor<|--EnemyBarricadeVisitor
class EnemyBarricadeVisitor{
+visitPlayerBullet(b:PlayerBulletCollider)
+visitPiercingBullet(b:PiercingBulletCollider)
}
Collider<|--EnemyBulletCollider
EnemyBulletCollider "collided" --> "0..*" Collider
class EnemyBulletCollider{
+EnemyBulletCollider(o:EnemyBullet)
+accpet(v:Visitor)
#solveCollisions()
+update()
}
Visitor<|--EnemyBulletVisitor
class EnemyBulletVisitor{
#d:float
+EnemyBulletVisitor(dmg:float)
+visitPlayer(p:PlayerCollider)
+visitEnemyBarricade(b:EnemyBarricadeCollider)
+visitPowerUp(b:PowerUpCollider)
+visitCommonBarricade(b:CommonBarricadeCollider)
+visitKamikazeShield(b:KamikazeShieldCollider)
}
Collider<|--EnemyCollider
class EnemyCollider{
#danio:float
+EnemyCollider(o:Enemy,d:float)
+accept(v:Visitor)
}
Visitor<|--EnemyVisitor
class EnemyVisitor{
#d:float
+EnemyVisitor(dmg:float)
+visitPlayer(p:PlayerCollider)
+visitKamikazeShield(b:KamikazeShieldCollider)
+visitPiercingBullet(b:PiercingBulletCollider)
}
PowerUpVisitor<|--FrozeVisitor
class FrozeVisitor{
+FrozeVisitor()
+visitEnemyController(e:VisitableEnemyController)
}
Collider<|--KamikazeShieldCollider
class KamikazeShieldCollider{
+KamikazeShieldCollider(o:DestroyableObject)
+accept(v:Visitor)
}
PlayerVisitor<|--KamikazeShieldVisitor
class KamikazeShieldVisitor{
+KamikazeShieldVisitor()
+visitEnemy(e:EnemyCollider)
}
Collider<|--PiercingBulletCollider
PiercingBulletCollider "collided"-->"0..*" Collider
class PiercingBulletCollider{
+PiercingBulletCollider(o:PiercingBullet)
+accept(v:Visitor)
}
PlayerBulletVisitor<|--PiercingBulletVisitor
class PiercingBulletVisitor{
PiercingBulletVisitor(danio:float)
}
Collider<|--PlayerBulletCollider
class PlayerBulletCollider{
+PlayerBulletCollider(o:PlayerBullet)
+accept(v:Visitor)
}
Visitor<--PlayerBulletVisitor
class PlayerBulletVisitor{
+PlayerBulletVisitor(d:float)
+visitEnemy(e:EnemyCollider)
+visitEnemyBarricade(b:EnemyBarricadeCollider)
+visitCommonBarricade(b:CommonBarricadeCollider)
}
Collider<|--PlayerCollider
class PlayerCollider{
+PlayerCollider(o:Player)
+accept(v:Visitor)
}
Visitor<|--PlayerVisitor
class PlayerVisitor{
+PlayerVisitor()
+visitEnemy(e:EnemyCollider)
+visitPlayerBullet(b:PlayerBulletCollider)
+visitEnemyBullet(b:EnemyBulletCollider)
+visitCommonBarricade(b:CommonBarricadeCollider)
+visitPlayer(p:PlayerCollider)
+visitEnemyBarricade(b:EnemyBarricadeCollider)
+visitPowerUp(b:PowerUpCollider)
+visitKamikazeShield(b:KamikazeShieldCollider)
+visitPiercingBullet(b:PiercingBulletCollider)
}
Collider<|--PowerUpCollider
class PowerUpCollider{
+PowerUpCollider(o:AbstractPU)
+accept(v:Visitor)
+trigger(o:AbstractPU)
}
Visitor<|--PowerUpVisitor
class PowerUpVisitor{
+visitEnemyController(e:VisitableEnemyController)
}
interface Visitable{
accept(v:Visitor)
}
abstract class Visitor{
+visitEnemy(e:EnemyCollider)
+visitPlayerBullet(b:PlayerBulletCollider)
+visitEnemyBullet(b:EnemyBulletCollider)
+visitPlayer(p:PlayerCollider)
+visitEnemyBarricade(b:EnemyBarricadeCollider)
+visitPowerUp(b:PowerUpCollider)
+visitKamikazeShield(b:KamikazeShieldCollider)
+visitPiercingBullet(b:PiercingBulletCollider)
+visitCommonBarricade(commonBarricadeCollider:CommonBarricadeCollider)
}
}
package Controllers{
Behaviour "direc" --> "1" Vector2
Behaviour "m" --> "1" MovementPattern
abstract class Behaviour{
#isPaused:boolean
{abstract} +getDir():Vector2
#updateDir()
+pause()
+unPause()
+isPaused()
}
Behaviour<|--DizzyBehaviour
class DizzyBehaviour{
+DizzyBehaviour()
+getDir()
}
MovementPattern<|--DizzyMovement
class DizzyMovement{
+DizzyMovement()
+getX():float
+getY():float
}
Behaviour<|--EnemyBehaviour
class EnemyBehaviour{
+EnemyBehaviour(mov:MovementPattern)
+getDir():Vector2
#updateDir()
}
MovementController<|--EnemyMovementController
VisitableEnemyController<|--EnemyMovementController
abstract class EnemyMovementController{
+EnemyMovementController()
+update(map:Map)
+destroyMe(map:Map)
{abstract} +activate()
{abstract} +setBehaviour()
+accept(v:PowerUpVisitor)
+Freeze()
+Unfreeze()
+isFrozen():boolean
}
IFireController<|--FighterFireController
FighterFireController "controlled"-->"1" EnemyFighter
class FighterFireController{
+FighterFireController(f:EnemyFighter)
+destroyMe(map:Map)
#checkShoot()
+update(map:Map)
+fire():boolean
}
EnemyMovementController<|--FighterMovementEnemyMovementController
class FighterMovementEnemyMovementController{
+FighterMovementEnemyMovementController(pos:GameObject)
+setBehaviour(be:Behaviour)
+activate()
}
Behaviour<|--FollowBehaviour
class FollowBehaviour{
+FollowBehaviour(or:GameObject,de:GameObject)
+getDir():Vector2
}
EnemyMovementController<|--FollowerMovementEnemyMovementController
class FollowerMovementEnemyMovementController{
+FollowerMovementEnemyMovementController(pos:GameObject)
+activate()
+setBehaviour(be:Behaviour)
}
MovementPattern<|--FollowMovement
FollowMovement "o"-->"1" Vector2
FollowMovement "d"-->"1" Vector2
FollowMovement "so"-->"1" GameObject
FollowMovement "sd"-->"1" GameObject
class FollowMovement{
#distX:float
#x1:float
#x2:float
#y1:float
#y2:float
+FollowMovement(or:GameObject,de:GameObject)
+getX():float
+getY():float
-updateP()
}
Behaviour<|--FormationBehaviour
class FormationBehaviour{
-radioGral:float
+FormationBehaviour()
+getDir():Vector2
#updateDir()
}
EnemyMovementController<|--FormationMovementEnemyMovementController
class FormationMovementEnemyMovementController{
+FormationMovementEnemyMovementController(f:Formation)
+setBehaviour(be:Behaviour)
+activate()
}
EnemyMovementController<|--HybridFollowerMovementEnemyMovementController
class HybridFollowerMovementEnemyMovementController{
-health:float
+HybridFollowerMovementEnemyMovementController(pos:GameObject)
+activate()
+setBehaviour(be:Behaviour)
+update(map:Map)
}
EnemyMovementController<|--HybridMovementEnemyMovementController
class HybridMovementEnemyMovementController{
-health:float
+HybridMovementEnemyMovementController(pos:GameObject)
+setBehaviour(be:Behaviour)
+activate()
+update(map:Map)
}
IUpdateable<|--IController
interface IController
IController<|--IFireController
abstract class IFireController{
+IFireController()
}
IMovementController "r" --> "1" Icon
IMovementController "l" --> "1" Icon
IMovementController "d" --> "1" Icon
IMovementController "u" --> "1" Icon
IMovementController "lu" --> "1" Icon
IMovementController "ru" --> "1" Icon
IMovementController "rd" --> "1" Icon
IMovementController "ld" --> "1" Icon
IMovementController "c" --> "1" Icon
IMovementController "m" --> "1..*" Icon
IMovementController "b" --> "1" Behaviour
abstract class IMovementController{
{abstract} #move(vec:Vector2)
+update(map:Map)
#armarVector():Vector2
+destroyMe(map:Map)
}
EnemyMovementController<|--KamikazeMovementEnemyMovementController
class KamikazeMovementEnemyMovementController{
+KamikazeMovementEnemyMovementController(pos:GameObject)
+activate()
+setBehaviour(be:Behaviour)
}
IMovementController<|--MovementController
abstract class MovementController{
#controlled:E
#move(vec:Vector2)
}
abstract class MovementPattern{
#ampy:float
#ampx:float
#t:float
{abstract} +getX():float
{abstract} +getY():float
#updateT()
}
IController<|--PlayerFireController
class PlayerFireController{
+PlayerFireController()
+Fire()
+update(map:Map)
+destroyMe(map:Map)
}
MovementController<|--PlayerMovementController
class PlayerMovementController{
+PlayerMovementController(p:Player)
+update(map:Map)
+destroyMe(map:Map)
#armarVector():Vector2
}
Behaviour<|--PowerUpBehaviour
class PowerUpBehaviour{
+PowerUpBehaviour()
+getDir():Vector2
}
MovementPattern<|--PowerUpMovement
class PowerUpMovement{
#randomSpeed:int
+PowerUpMovement()
+getX():float
+getY():float
}
IMovementController<|--PowerUpMovementController
class PowerUpMovementController{
+PowerUpMovementController(o:AbstractPU,b:Behaviour)
#move(vec:Vector2)
+update(map:Map)
}
MovementPattern<|--Sinusoidal
class Sinusoidal{
+Sinusoidal()
+getX():float
+getY():float
}
interface VisitableEnemyController{
accept(v:PowerUpVisitor)
Freeze()
Unfreeze()
}
}
package GameMaster{
IUpdateable<|--DoWhen
class DoWhen{
-Condition:Callable<Boolean>
-Action:Runnable
-excecuted:boolean
+DoWhen(condition:Callable<Boolean>,action:Runnable)
+update(map:Map)
+destroyMe(map:Map)
}
Thread<|--Level
Level "map"-->"1" Map
class Level{
#nanostowait:long
#seguir:boolean
+Level()
+run()
}
Callable<|--Timer
interface Callable
class Timer{
-current:long
-ending:long
+Timer(t:long)
+call():Object
}
}
package Map{
abstract class AbstractControllerFactory{
{abstract} +createController(pos:GameObject):EnemyMovementController
}
AbstractControllerFactory<|--FighterControllerFactory
class FighterControllerFactory{
+FighterControllerFactory()
+createController(pos:GameObject):EnemyMovementController
}
AbstractControllerFactory<|--FollowerControllerFactory
class FollowerControllerFactory{
+FollowerControllerFactory()
+createController(pos:GameObject):EnemyMovementController
}
Enemy<|--Formation
Formation "enemies"-->"0..*" EnemyMovementController
Formation "factories"-->"0..*" AbstractControllerFactory
Formation "offset"-->"1" Vector2
class Formation{
#lvl:int
#contToPositionMap:Map<EnemyMovementController,OffsetPosition>
#distX:int
#distY:int
#initialized:boolean
-cont:int
+Formation(d:int)
+createEnemies()
+affectPowerUp(v:PowerUpVisitor)
+update(map:Map)
#updatePosition(m:Map)
-createFactories()
+removeCont(e:EnemyMovementController)
+destroySelf()
}
IUpdateable<|--GraphicObject
GraphicObject "object"-->"1" DestroyableObject
GraphicObject "model"-->"1" JLabel
class GraphicObject{
+GraphicObject(o:DestroyableObject,l:JLabel)
+update(map:Map)
+destroyMe(map:Map)
+destroy()
}
AbstractControllerFactory<|--HybridControllerFactory
class HybridControllerFactory{
+HybridControllerFactory()
+createController(pos:GameObject):EnemyMovementController
}
AbstractControllerFactory<|--HybridFollowerControllerFactory
class HybridFollowerControllerFactory{
+HybridFollowerControllerFactory()
+createController(pos:GameObject):EnemyMovementController
}
AbstractControllerFactory<|--KamikazeControllerFactory
class KamikazeControllerFactory{
+KamikazeControllerFactory()
+createController(pos:GameObject):EnemyMovementController
}
Map "toDestroy"-->"0..*" IUpdateable
Map "list"-->"0..*" IUpdateable
Map "toAdd"-->"0..*" IUpdateable
Map "form"-->"1" Formation
Map "instance"-->"1" Map
class Map{
-lvl:int
-wind:Window
-Map(w:Window)
{static} +getInstance():Map
{static} +newInstance():Map
+add(o:GameObject)
+add(o:DestroyableObject)
+add(u:IUpdateable)
+update()
+remove(upda:IUpdateable)
+destroy(gam:GameObject)
+destroy(controller:IController)
+getFormation():Formation
+newLevel()
+getLevel():int
}
GameObject<|--OffsetPosition
OffsetPosition "offset"-->"1" Vector2
OffsetPosition "followed"-->"1" MovingObject
class OffsetPosition{
+ObjectPosition(f:MovingObject,o:Vector2)
+update(map:Map)
+destroyMe(map:Map)
}
}
package "Game Objects" {
IUpdateable<|--GameObject
abstract class GameObject{
#ubication:Vector2
#fieldLimitX:int
#fieldLimitY:int
getUbication(): Vector2
setUbication(u:Vector2)
getX():int
getY():int
}
GameObject <|-- DestroyableObject
DestroyableObject "c" --* "1" Collider
abstract class DestroyableObject{
#health: float
#sprite: icon
+update()
+getSprite():Icon
+getHealth():float
+getCollider():Collider
+isAlive():boolean
+destroySelf()
+damage(d:float)
}
DestroyableObject<|--MovingObject
abstract class MovingObject{
#speed:float
#{static}maxSpeed:float
#dir:Vector2
+update()
#updatePosition(m:Map)
+destroyMe(m:Map)
+setDirec(v:Vector2)
+setSprite(s:icon)
+destroySelf()
}
MovingObject<|--Ship
abstract class Ship{
+updatePosition()
}
class Vector2{
-x:float
-y:float
+{static}UP()
+{static}DOWN()
+{static}LEFT()
+{static}RIFGHT()
+{static}ORiGIN()
+{static}UP(len:float)
+{static}DOWN(len:float)
+{static}LEFT(len:float)
+{static}RIFGHT(len:float)
+getY():float
+getX():float
+sum(v:Vector2):Vector2
+prod(constante:float):Vector2
+large():float
+versor():Vector2
+max(l:float):Vector2
}
package player{
abstract class Weapon{
#gunPosition:int
#gunPhaseShift:int
#damage:float
+{abstract}shoot()
}
Weapon <|-- BasicWeapon
class BasicWeapon{
+BasicWeapon(dmg:float)
+shoot()
}
Weapon <|-- MissilWeapon
class MissilWeapon{
+MissilWeapon(dmg:float)
+shoot()
}
Weapon <|-- PiercingWeapon
class PiercingWeapon{
+PiercingWeapon(dmg:float)
+shoot()
}
Shield "modifiers" --o "0..*" Modifiers
class Shield{
-baseReduction:float
-extraPower:float
+Shield(baseR:float)
+calculateDamage(d:float):float
+addPower(p:float)
}
abstract class Modifiers{
+{abstract}modify(d:float):float
}
Ship<|--Player
Player "instance"--*"1"Player
Player "shield" o-- "1"Shield
class Player{
-damage:int
-attackSpeed:int
-loaded:boolean
-time:long
-weapon:Weapon
-initialPosition:Vector2
-Player()
+getInstance:Player
+update()
+fire()
#updatePosition(map:Map)
+getShield():Shield
+damage(d:float)
+setCollider(c:Collider)
+getDamage():float
+setWeapon(w:Weapon)
+setHealth(h:float)
}
}
package "Enemies"{
Ship<|--Enemy
abstract class Enemy{
#score:int
#speed:float
#kamikazeDamage:float
#level:int
#posInicial:Vector2
+destroySelf()
}
Enemy<|--FollowerEnemy
class FollowerEnemy{
+FollowerEnemy()
+update()
}
Enemy<|--HybridFollowerEnemy
class HybridFollowerEnemy{
+HybridFollowerEnemy()
+update()
}
Enemy<|--KamikazeEnemy
class KamikazeEnemy{
+KamikazeEnemy()
+update()
}
Enemy<|--EnemyFighter
abstract class EnemyFighter{
#damage:float
#attackSpeed:int
#loaded:boolean
#time:long
#gunPosition:int
#gunPhaseShift:int
+fire()
}
EnemyFighter<|--EnemyFighterOnlyShoot
class EnemyFighterOnlyShoot{
+EnemyFighterOnlyShoot()
+update()
}
EnemyFighter<|--EnemyFighterHybrid
class EnemyFighterHybrid{
+EnemyFighterHybrid()
+update()
}
}
package "Bullets"{
Ship<|--Bullet
abstract class Bullet{
#danio:float
+getDanio():float
+destroyMe(map:Map)
+destroySelf()
#updatePosition
}
Bullet<|--PlayerBullet
PlayerBullet<|--BasicPlayerBullet
class BasicPLayerBullet{
+BasicPlayerBullet()
+update()
}
PlayerBullet<|--PiercingPlayerBullet
class PiercingPlayerBullet{
+PiercingPlayerBullet()
+update()
}
PlayerBullet<|--MissilPlayerBullet
class MissilPLayerBullet{
+MissilPlayerBullet()
+update()
}
Bullet<|--EnemyBullet
EnemyBullet<|--EnemyFighterBullet
class EnemyFighterBullet{
+EnemyFighterBullet()
+update()
}
}
package "Barricades"{
DestroyableObject<|--Barricade
Barricade<|--CommonBarricade
class CommonBarricade{
+CommonBarricade()
+destroyMe(map:Map)
+destroySelf()
+update()
}
Barricade<|--EnemyBarricade
class EnemyBarricade{
+EnemyBarricade()
+destroyMe(map:Map)
+destroySelf()
+update()
}
}
}
package "Power Ups"{
MovingObject <|-- AbstractPU
abstract class AbstractPU{
#controller:IMovementController
#revert:Reversion
#time:long
------
+UpdatePosition(map :Map)
+destroySelf()
+trigger()
}
AbstractPU <|-- FrozePU
FrozePU "-frozev" --> "1" FrozeVisitor
class FrozePU{
+FrozePU(pos: Vector2)
+trigger()
+update(map:Map)
+destroySelf
}
AbstractPU <|-- KamikazeShieldPU
class KamikazeShieldPU{
+KamikazeShieldPU(pos: Vector2)
+trigger()
+update(map:Map)
+destroySelf
}
AbstractPU <|-- MissilPU
class MissilPU{
+MissilPU(pos: Vector2)
+trigger()
+update(map:Map)
+destroySelf
}
AbstractPU <|-- PierceBulletPU
class PierceBulletPU{
+PierceBulletPU(pos: Vector2)
+trigger()
+update(map:Map)
+destroySelf
}
AbstractPU <|-- PotionPU
class PotionPU{
+PotionPU(pos: Vector2)
+trigger()
+update(map:Map)
+destroySelf
}
AbstractPU <|-- ShieldPU
class ShieldPU{
+ShieldPU(pos: Vector2)
+trigger()
+update(map:Map)
+destroySelf
}
package "Reverters"{
DoWhen <|-- Reverter
abstract class Reverter{
+Reverter(condition:Callable<Boolean>, action:Reversion)
}
Reverter <|-- BasicWeaponReverter
class BasicWeaponReverter{
+BasicWeaponReverter(condition:Callable<Boolean>, action:Reversion)
}
Reverter <|-- FrozenReverter
class FrozenReverter{
+FrozenReverter(condition:Callable<Boolean>, action:Reversion)
}
Reverter <|-- KSReverter
class KSReverter{
+KSReverter(condition:Callable<Boolean>, action:Reversion)
}
Runnable <|-- Reversion
interface Reversion
Reversion <|-- BasicWeaponReversion
Reversion <|-- FrozenReversion
Reversion <|-- KamikazeReversion
class BasicWeaponReversion{
+BasicWeaponReversion()
+run()
}
FrozenReversion "-v" --> "1" UnfrozeVisitor
class FrozenReversion{
+FrozenReversion()
+run()
}
}
package "PowerUpFactories"{
abstract class AbstractPowerUpFactory{
+{abstract}newPowerUp´:AbstractPowerUp
}
AbstractPowerUpFactory <|-- FrozePUFactory
class FrozePUFactory{
+FrozePUFactory()
+newPowerUp(vec:Vector2):AbstractPowerUp
}
AbstractPowerUpFactory <|-- KamikazeShieldFactory
class KamikazeShieldFactory{
+KamikazeShieldFactory()
+newPowerUp(vec:Vector2):AbstractPowerUp
}
AbstractPowerUpFactory <|-- MissilPUFactory
class MissilPUFactory{
+MissilPUFactory()
+newPowerUp(vec:Vector2):AbstractPowerUp
}
AbstractPowerUpFactory <|-- PierceBulletPUFactory
class PierceBulletPUFactory{
+PierceBulletPUFactory()
+newPowerUp(vec:Vector2):AbstractPowerUp
}
AbstractPowerUpFactory <|-- PotionPUFactory
class PotionPUFactory{
+PotionPUFactory()
+newPowerUp(vec:Vector2):AbstractPowerUp
}
AbstractPowerUpFactory <|-- ShieldPUFactory
class ShieldPUFactory{
+ShieldPUFactory()
+newPowerUp(vec:Vector2):AbstractPowerUp
}
PowerUpPool "instance" --> "1" PowerUpPool
PowerUpPool "pool" --> "1..*" AbstractPowerUpFactory
class PowerUpPool{
-PowerUpPool()
+getInstance():PowerUpPool
+getPool():LinkedList<AbstractPowerUpFactory>
}
}
}
}
@enduml | false | true | true | false | class |
a0030410c333765ea4f971674a3342fc9f51edd3 | 24d430dfed99e935320511aeee6e14d444d5e519 | /docs/source/UML/MainMenu.puml | 97ab7e1d0016ee9cc75f0a6846cb67f8dfe74c8e | [
"MIT"
] | permissive | deeppunster/Christmas-Labels | 987400108efc171a8971d0e630b6f9a14b1b85a6 | 98c109ebdd70a3abe06be0fcd30dfb7964b2b792 | refs/heads/master | 2022-12-12T06:18:03.815549 | 2020-09-24T04:25:46 | 2020-09-24T04:25:46 | 174,074,935 | 0 | 2 | MIT | 2022-12-08T10:53:52 | 2019-03-06T05:02:51 | Python | UTF-8 | PlantUML | false | false | 789 | puml | @startuml
(Main Menu) as (main)
User -> (main)
(Manage Contacts) as (mc)
(main) --> (mc)
(Manage Contacts Screen) as (mcs)
(mc) --> mcs
(Print Labels) as (pl)
(main) --> (pl)
(Print Labels Screen) as (pls)
(pl) --> (pls)
(Other Activities) as (oa)
(main) --> (oa)
(Other Activities Screen) as (oas)
(oa) --> (oas)
(Quit) as (q)
(main) --> (q)
(Quit Screen) as (qs)
(q) --> (qs)
note right of (main)
The main menu has choices for:
- managing contacts,
- printing labels,
- other activities or
- quit the application.
end note
@enduml
note "User has filled, sealed\n and labeled a box." as N2
(Checkin) .. N2
note as N3
Labels include a QR code, the product, year of expiration and
optionally the part of the year (e.g. quarter it expires)
end note
N2 .. N3
N3 ..(Use)
| false | true | false | false | uml-unknown |
0fcce5368a1574eb1697e7c605974e045568ae4f | a8e5b8bc028ab50ec3264245ab000671ac38e2c0 | /model.puml | c69885721bb50b8ef49670ec8b8b07574084ba1f | [] | no_license | cikasfm/portfolio-tracker-service | 6780909f184500a835bb640100fb3579dbeeb2ea | 55c59fac7cd1a684d9fb9c0ad5fc60b8d99a4af3 | refs/heads/main | 2023-05-02T19:38:25.459889 | 2021-05-27T00:44:55 | 2021-05-27T00:44:55 | 369,327,460 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 743 | puml | @startuml
'https://plantuml.com/class-diagram
Account *-- Holding
Account *-- Trade
Stock o-- Holding
Stock o-- StockPrice
Stock o-- Trade
Trade -- DirectionEnum
class Account {
accountName : String
accountNumber : String
}
class Stock {
stock : String
description : String
}
class StockPrice {
stock : String
date : Date
price : BigDecimal
increaseAlertSent : boolean
decreaseAlertSent : boolean
}
class Holding {
accountNumber : String
stock : String
avgPrice : BigDecimal
quantity : BigDecimal
}
class Trade {
txId : Long
timestamp : Date
stock : String
direction : DirectionEnum
price : BigDecimal
quantity : BigDecimal
getValue() : BigDecimal
}
enum DirectionEnum {
BUY
SELL
}
@enduml | false | true | false | false | class |
4974efc94826ecb2df08dc1fa0bc9770c04acf72 | f1cbfce2cd9914fdab33210429a8d12cdae07015 | /asciidocs-slides/plantuml/pipeline2.puml | 90d05e269aeb5e6932a45509969a4ef25515d6fd | [] | no_license | chrissyraffeiner/leo-database-learner-slides | 7498e5d54b572c06efde05963a7a031d1fe8cb16 | 43ea1eb1e5af4676081f294dac0825800f39addc | refs/heads/main | 2023-08-19T22:41:09.045811 | 2021-10-22T07:10:15 | 2021-10-22T07:10:15 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 395 | puml | @startuml
left to right direction
node gitrepo {
file ".java" as code
}
node "gh-build-server" <<ubuntu>> as ghserver {
queue {
agent compile
agent package
agent test
agent deploy
}
}
node "remote-server oravm" <<ubuntu>> as remoteserver {
node production
}
code --> compile
compile --> package
package --> test
test --> deploy
deploy --> production
@enduml | false | true | false | false | deployment |
b72f23a25c6377ee1978946498d33db4bb738862 | 0c4947dd88f0571925ba65e79fd2ea6c6f35cdda | /src/main/java/cn/strategy/InstantiationStrategy.puml | 09af7cc08d8a9b7b9a560435e2a2b148f0046b94 | [] | no_license | zou2561789/springuml | e31ad444152730d961a37d900951f1a1d3dd9609 | 15a505af77591b3e08a091dda2382940e8e6c48e | refs/heads/master | 2020-05-05T08:10:03.561315 | 2019-06-15T10:36:34 | 2019-06-15T10:36:34 | 179,853,364 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,900 | puml | @startuml
class CglibSubclassingInstantiationStrategy{
-{static,final} PASSTHROUGH
-{static,final} LOOKUP_OVERRIDE
-{static,final} METHOD_REPLACER
Object instantiateWithMethodInjection(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner)
Object instantiateWithMethodInjection(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner, @Nullable Constructor<?> ctor, Object... args)
}
class CglibSubclassCreator{
-{static,final} Class<?>[] CALLBACK_TYPES
-{final} RootBeanDefinition beanDefinition
-{final} BeanFactory owner
+ Object instantiate(@Nullable Constructor<?> ctor, Object... args)
- Class<?> createEnhancedSubclass(RootBeanDefinition beanDefinition)
}
class LookupOverrideMethodInterceptor{
Object intercept(Object obj, Method method, Object[] args, MethodProxy mp) throws Throwable
}
class ReplaceOverrideMethodInterceptor{
Object intercept(Object obj, Method method, Object[] args, MethodProxy mp) throws Throwable
}
class CglibIdentitySupport{
-{final} RootBeanDefinition beanDefinition
+ boolean equals(Object other)
+ int hashCode()
}
class SimpleInstantiationStrategy{
-{static,final} ThreadLocal<Method> currentlyInvokedFactoryMethod
+{static} Method getCurrentlyInvokedFactoryMethod()
+ Object instantiate(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner)
Object instantiateWithMethodInjection(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner)
+ Object instantiate(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner, final Constructor<?> ctor, Object... args)
Object instantiateWithMethodInjection(RootBeanDefinition bd, @Nullable String beanName,BeanFactory owner, @Nullable Constructor<?> ctor, Object... args)
+ Object instantiate(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner,@Nullable Object factoryBean, final Method factoryMethod, Object... args)
}
interface InstantiationStrategy{
Object instantiate(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner) throws BeansException
Object instantiate(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner, Constructor<?> ctor, Object... args) throws BeansException
Object instantiate(RootBeanDefinition bd, @Nullable String beanName, BeanFactory owner, @Nullable Object factoryBean, Method factoryMethod, Object... args) throws BeansException
}
CglibSubclassingInstantiationStrategy --|>SimpleInstantiationStrategy
SimpleInstantiationStrategy --|>InstantiationStrategy
CglibSubclassingInstantiationStrategy <--o CglibSubclassCreator
CglibSubclassCreator <--o Enhancer
CglibSubclassCreator <--o LookupOverrideMethodInterceptor
CglibSubclassCreator <--o ReplaceOverrideMethodInterceptor
LookupOverrideMethodInterceptor --|> CglibIdentitySupport
ReplaceOverrideMethodInterceptor --|> CglibIdentitySupport
@enduml | false | true | false | false | class |
cc802390115f93d8656c0df8f9adab105bac07b1 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Modules/WebBrowser/Producers/WebBrowserEventProducer.puml | 6165ea2a732afa8d9e5ac0206ff96ad31b8456b8 | [
"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 | 556 | puml | @startuml
skinparam monochrome true
skinparam ClassAttributeIconSize 0
!startsub default
abstract class "WebBrowserEventProducer<T>" {
+ <<virtual>> Notify(eventJson:System.Text.Json.JsonElement) : void
+ EnqueueFinished() : void
}
abstract class "DefaultEventQueue<T>" {
}
interface "IWebBrowserEventObserver"
enum "EventLabel"
!endsub
"DefaultEventQueue<T>" " <WebBrowserEvent>" <|-- "WebBrowserEventProducer<T>"
IWebBrowserEventObserver <|-- "WebBrowserEventProducer<T>"
"WebBrowserEventProducer<T>" --> "HandledEventLabel" EventLabel
@enduml
| false | true | false | false | class |
4fc2294784507fc9c7f27f1b05ee78b30dccec3b | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartFreezeCartAction.puml | c3548d71f0c5fd40a79d1147d64ccfa256daeb10 | [] | 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 | 406 | 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 CartFreezeCartAction [[CartFreezeCartAction.svg]] extends CartUpdateAction {
action: String
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
640cbe773b77c245ac85a7279ab002cf05f86a44 | 694fd70b693c9670161b2492ece407123bf11cad | /plantuml/kubernetes/concept-service-kube-proxy-userspace-plant.plantuml | 44ef61899175988d30998decefd549dd1a1cddc8 | [
"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 | 330 | plantuml | @startuml
rectangle "Node" {
rectangle "Client" as c {
}
rectangle "ClusterIP(iptables)" as ci {
}
rectangle "kube-proxy" as kp {
}
c --> ci
ci --> kp
}
rectangle "kube-apiserver" as ka {
}
rectangle "Pod" as p1 {
}
rectangle "Pod" as p2 {
}
rectangle "Pod" as p3 {
}
ka --> kp
kp --> p1
kp --> p2
kp --> p3
@enduml | false | true | false | false | uml-unknown |
ce3f0c6e543a32999c6a746e7172d56a855f4b3b | b2db9d95ea3d4e78d4f4cf115dfefc4feeb70a52 | /docs/component.puml | 7bc119b511aefb4c31f3ccf9969c47a5d5f971b8 | [
"MIT"
] | permissive | jruizaranguren/atoming | 547267c5674eb14207caad19555407b9404ff441 | b1dafaaee1c194bee2417111d0dbe7ab773d0e8f | refs/heads/master | 2016-09-13T09:35:57.435404 | 2016-05-06T08:23:21 | 2016-05-06T08:23:21 | 58,153,938 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 146 | puml | @startuml
title Component diagram
package "System" {
cloud "notifications"
cloud "register"
}
[notifications] "u" --> "d" [register]
@enduml
| false | true | false | false | deployment |
b7505fa1fbc6aac1f88e38f894ec60927d26601e | bdd433c3af2f10384f0a4fb06a6354b51a70750e | /plantuml/Sequence Diagrams/Design/UC2.puml | caac7811a35435e876f8e480d5d04511336ffdc5 | [] | no_license | I4PRJ4/I4PRJ4-plantuml | d6188b60011e5a5f6f3cf7853393cba43996dfbf | 2b528f0a911917d5ee61a6d0051d46ea59282c5a | refs/heads/master | 2023-05-14T13:43:29.403199 | 2021-06-03T10:33:59 | 2021-06-03T10:33:59 | 348,710,373 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 336 | puml | @startuml
mainframe **sd** Use Case 2 - læs tip
hide footbox
actor Studerende as stud
boundary ":TipsViewIndex" as tipsindex
stud -> tipsindex: Trykker på ønsket tip for at læse mere
note left
Første del af use casen
er udeladt og kan ses
i sekvensdiagrammet
"Indledende sekvensdiagram"
end note
@enduml
| false | true | true | false | sequence |
0b30cc24ea9c7701bdea4f0949fe2c9efc5c3759 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/QuoteDeletedMessage.puml | 04b0ec4d4e9443bc424aba0c5d8d748fd991cab4 | [] | 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,119 | 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 QuoteDeletedMessage [[QuoteDeletedMessage.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]]
}
@enduml
| false | true | false | false | class |
3d2ee59ee420474acd002c71611627db42f9ebee | 01afc7bcf0d0b9c9e5f336ab706dcafcc99a10f6 | /design/customer-get-by-id-sequence.puml | c7ee56bd4a8cb8832b7ef19fbfcd3cbaadada556 | [] | no_license | brianrook/medium-customer | 7dcb1b54334c651976d5e303a6bf89bd8b70d8b2 | cbb035fd47db649cf1a0c69b5005a1fe419efa7c | refs/heads/master | 2021-03-22T07:14:58.710017 | 2020-04-10T17:52:44 | 2020-04-10T17:52:44 | 247,342,275 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 416 | puml | @startuml
participant "Client" as client
participant "Controller" as ctrl
participant "Service" as svc
participant "DAO" as dao
client->ctrl: get customer by id
ctrl->svc: get customer by id
svc->dao: get customer by id
alt customer exists
svc->ctrl: return customer
ctrl->client: 200: return customer
else customer does not exist
svc->ctrl: return null
ctrl->client: 200: empty response
end
@enduml | false | true | false | false | sequence |
00699491a34acc29ab3fdc4b1b23c8fc0250d9db | 470e3aac8b627ec99783a4dbf2b8a39e4b97471d | /factory-pattern/abstract-factory-pattern/classdiagram.puml | efebe82349c39da09ff8b9b23f7b2d7286c35790 | [] | no_license | Almaentregua/Head-First-Design-Patterns | b68bee107c14deb30d8d291f271c65a5398deca1 | eb9660e15bdb6a7ffd8aa8b7d81fbaec32209b61 | refs/heads/master | 2023-02-06T11:33:52.449439 | 2020-12-30T20:55:07 | 2020-12-30T20:55:07 | 284,276,498 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 776 | puml | @startuml
class client {}
interface AbstractFactory {
CreateProductA()
CreateProductB()
}
interface AbstractProductA {}
interface AbstractProductB {}
Class ConcreteFactory1 implements AbstractFactory {
AbstractProductA CreateProductA()
AbstractProductB CreateProductB()
}
Class ConcreteFactory2 implements AbstractFactory {
AbstractProductA CreateProductA()
AbstractProductB CreateProductB()
}
class ProductA1 implements AbstractProductA {}
class ProductA2 implements AbstractProductA {}
class ProductB1 implements AbstractProductB {}
class ProductB2 implements AbstractProductB {}
client --> AbstractFactory
ConcreteFactory1 --> ProductA1
ConcreteFactory1 --> ProductB1
ConcreteFactory2 --> ProductA2
ConcreteFactory2 --> ProductB2
@enduml | false | true | false | false | class |
01a45af6ef40b4f1f9d5a173327ea5c0115aa312 | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao3/UC4/UC4_CD_Completo.puml | ab8334d05bbab148058a732ea9cd758840f5cf52 | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,009 | puml | @startuml
skinparam classAttributeIconSize 0
class CompetenciaTecnica {
-String codigo
-String descBreve
-String descDetalhada
+CompetenciaTecnica(String cod, String dsBreve, String dsDet, AreaAtividade at)
+void addGrauProficiencia(Integer valor, String designacao)
}
class GrauProficiencia {
-Integer valor
-String designacao
+GrauProficiencia(Integer valor, String designacao)
}
class AreaAtividade {
-String codigo
-String descBreve
-String descDetalhada
}
class Plataforma {
-String designacao
+RegistoAreasAtividade getRegistoAreasAtividade()
+RegistoCT getRegistoCT()
}
class RegistoAreasAtividade {
+List<AreaAtividade> getAreasAtividade()
+AreaAtividade getAreaAtividadeByCod(String atCod)
}
class RegistoCT {
+CompetenciaTecnica novaCompetencia(String cod, String dsBreve, String dsDet, String atCod)
+void registaCompetencia(CompetenciaTecnica ct)
-void validaCompetencia(CompetenciaTecnica ct)
-void addCompetencia(CompetenciaTecnica ct)
}
class EspecificarCompetenciaTecnicaController {
+List<AreaAtividade> getAreasAtividade()
+void novaCompetencia(String cod, String dsBreve, String dsDet, String atCod)
+void addGrauProficiencia(Integer valor, String designacao)
+void registaCompetencia()
}
class EspecificarCompetenciaTecnicaUI {
}
EspecificarCompetenciaTecnicaUI ..> EspecificarCompetenciaTecnicaController
EspecificarCompetenciaTecnicaController ..> Plataforma
EspecificarCompetenciaTecnicaController ..> RegistoAreasAtividade
EspecificarCompetenciaTecnicaController ..> RegistoCT
EspecificarCompetenciaTecnicaController ..> AreaAtividade
EspecificarCompetenciaTecnicaController ..> CompetenciaTecnica
CompetenciaTecnica "*" -> "1" AreaAtividade : referente
CompetenciaTecnica "1" -> "*" GrauProficiencia : aplica
Plataforma "1" --> "1" RegistoAreasAtividade : possui
Plataforma "1" --> "1" RegistoCT : possui
RegistoAreasAtividade "1" --> "*" AreaAtividade : possui
RegistoCT "1" --> "*" CompetenciaTecnica : possui
@enduml
| false | true | false | false | sequence |
f8e9b45c1942474943487a1166cf8ab0005b2586 | bf3e610c8668e525aedcca58ddbe9da7c19e427e | /docs/design/connected-devices-arp/arp-catching-isl.puml | 42817135947ae8522e887efae76ff0c5cdc1f5e0 | [
"Apache-2.0"
] | permissive | telstra/open-kilda | 874b5204f8c2070860a2e7fc6f8be368a5d18726 | 686d31220f1033595d7f1d4374544af5ba9c42fe | refs/heads/develop | 2023-08-15T21:24:21.294425 | 2023-08-14T08:51:52 | 2023-08-14T08:51:52 | 104,974,693 | 82 | 70 | Apache-2.0 | 2023-09-14T19:11:22 | 2017-09-27T05:13:18 | Java | UTF-8 | PlantUML | false | false | 835 | puml | @startuml
title Detect Connected Devices on Isl Port
participant "Switch A\ninput table " as SWAIT
participant "Switch A\negress table " as SWAE
participant "Switch A\ntransit table " as SWAT
participant "Switch B " as SWB
collections "Floodlights " as FL
control "kilda.floodlight.\nconnected.devices.priv " as TP
participant "ConnectedDevicesTopology " as CDT
database DB
activate SWAIT
SWAIT -> SWAE: Send to egress
deactivate SWAIT
activate SWAE
SWAE-> SWB : Send to next\nswitch if egress
SWAE-> SWAT : Send to transit\n table otherwise
deactivate SWAE
activate SWAT
SWAT -> SWB : Send to next switch\nif transit
SWAT -> FL : Match ARP packet\n otherwise
deactivate SWAT
activate FL
FL -> TP : ArpInfoData
deactivate FL
TP -> CDT : ArpInfoData
activate CDT
CDT -> DB : Save/update\nConnected Device
deactivate CDT
@enduml
| false | true | false | false | sequence |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.