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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
be8964aa1a17a4447945375c28018af75f2926fe | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/order/implement_strStr/implement_strStr.plantuml | 96031a317eed69ebfbd778522b18f3b3a7f52869 | [] | no_license | shuile/LeetCode | 8b816b84071a5338db1161ac541437564574f96a | 4c12a838a0a895f8efcfbac09e1392c510595535 | refs/heads/master | 2023-08-17T04:53:37.617226 | 2023-08-15T16:18:46 | 2023-08-15T16:18:46 | 146,776,927 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 451 | plantuml | @startuml
title __IMPLEMENT_STRSTR's Class Diagram__\n
namespace cn.shui.order {
namespace implement_strStr {
class cn.shui.order.implement_strStr.Solution {
{static} + main()
{static} + strStr()
}
}
}
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 |
1ac8a6754d0475742c7f584e2cdfd4ea1c954c01 | 4935844c2139585e84961bdcf391f9d1c4a80fb5 | /python/Architecture/PDF/DrawingPdfScript002/doc/algorithm.puml | fb740c583caaeca92e662b18a3d6e76eafe582af | [] | no_license | JKCHacking/PTCC_SCRIPTS | 4666aa29bdb93b00495193d36203be59b4356e4f | e3aa120f504d9b2c59ce741c6c42c3d5e12d191b | refs/heads/master | 2023-08-30T23:43:25.840705 | 2023-08-21T05:12:11 | 2023-08-21T05:12:11 | 241,763,400 | 3 | 1 | null | 2022-11-22T10:36:42 | 2020-02-20T01:10:07 | Python | UTF-8 | PlantUML | false | false | 438 | puml | @startuml
Main -> PdfScript: get_document(pdf_fp)
Activate PdfScript
PdfScript --> Main: document
Deactivate PdfScript
Main -> PdfScript: read_document(document)
Activate PdfScript
loop page in document
loop lettering, shapes in page
loop shape in shapes
alt color of shape is in color comment list
PdfScript -> PdfScript: bbox of shape
end alt
end loop
end loop
end loop
@enduml | false | true | false | false | sequence |
1f93afe9320d6127b6964e49bdd91de13d3320fe | bf3e610c8668e525aedcca58ddbe9da7c19e427e | /docs/design/hub-and-spoke/v6/wfm.puml | 1b1ae0ce1f0aabe6c74d907a54c707d1d10a634e | [
"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,100 | puml | v6
@startuml
hide footbox
participant NB
participant "ACK Bolt" as ack
box "Hub" #LightBlue
participant "Spout" as sp_hub
participant "Bolt" as bolt_hub
end box
participant "Kafka" as bus
box "Worker" #LightGreen
participant "Spout" as sp_work
collections "Bolt" as bolt_work
end box
participant "Async Job" as async_job
NB ->> bus : request
sp_hub <<- bus
sp_hub ->> bolt_hub : create H-tuple
bolt_hub -> bolt_hub : prepare async jobs
== Hub to Worker communications ==
bolt_hub ->> bus : request for\nasync process
sp_work <<- bus
sp_work ->> bolt_work : create W-tuple
== Async Operations ==
bolt_work ->> bus
async_job <<- bus
async_job -> async_job
async_job ->> bus
== Handle responses ==
sp_work <<- bus
sp_work ->> bolt_work : create WR-tuple
bolt_work ->> ack : ack on WR-tuple
bolt_work ->> ack : ack on W-tuple
bolt_work ->> bus : result of async op
sp_hub <<- bus
sp_hub ->> bolt_hub: create HR-tuple
bolt_hub -> bolt_hub : collect requests and\nprocess them
bolt_hub ->> ack : ack on HR-tuple
bolt_hub ->> ack : ack on H-tuple
bolt_hub ->> bus
NB <<- bus
@enduml | false | true | false | false | sequence |
9c7857b53696c9a74e0daf7f5624e59efb49110b | 431046704f58c384387de9aeceb913959bf52bdd | /system-design.puml | 32038c827a80cbcb78371fd6198fe6d18f5444bd | [] | no_license | erikrios/kotlin-restful-api | 477cddd83ffdd80b010aaf20f2d80f3e05e1e7e3 | fdebb9b20b354c70bbf144716488eb5fc891ee62 | refs/heads/master | 2023-03-16T18:02:31.244909 | 2021-03-03T16:28:34 | 2021-03-03T16:28:34 | 343,992,984 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 313 | puml | @startuml
actor "User" as user
node "Kotlin RESTful API" {
component "Controller" as controller
component "Service" as service
component "Repository" as repository
}
database "PostgreSQL" as database
user <-> controller
controller <-> service
service <-> repository
repository <-> database
@enduml | false | true | false | false | sequence |
54e310e2c52cf983a0d3b604a3f7f5149a921291 | 6fc140fb905846f7d7ed40190fecd249c7b45dd0 | /facebook.plantuml | 2d57050bea69e5a2d81bd2089f8ecc09be949d46 | [] | no_license | weaversam8/yc-hackathon-2019 | 7b1569abda3069836f4a9c79606122219f9a691a | 441e9ca19235574a86ddf528720b0f3c20090125 | refs/heads/master | 2020-09-15T23:04:29.160855 | 2019-11-23T23:45:05 | 2019-11-23T23:45:05 | 223,577,789 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 915 | plantuml | @startuml
:we: --> (information) : <&caret-right> must process\l<&caret-right> provide\l<&caret-right> use\l<&caret-right> process\l<&caret-right> analyze\l<&caret-right> collect\l<&caret-right> connect
:we: --> (things) : <&caret-right> delete\l<&caret-right> can do
:you: --> (part) : <&caret-right> are
:you: --> (features) : <&caret-right> use
:we: --> (cookies) : <&caret-right> use
:we: --> (data) : <&caret-right> store\l<&caret-right> use\l<&caret-right> receive
:you: --> (control) : <&caret-right> will have
:we: --> (access) : <&caret-right> can provide
:they: --> (information) : <&caret-right> can receive
:we: --> (developers) : <&caret-right> will remove
:them: --> (interactions) : <&caret-right> understand
:we: --> (advertisers) : <&caret-right> provide
:we: --> (changes) : <&caret-right> make
:you: --> (questions) : <&caret-right> have
:we: --> (disputes) : <&caret-right> may resolve
@enduml
| false | true | false | false | sequence |
365035c0b5b244264cdf174a689615c4e9d702df | 8eeaa622bd21c275f3c6995d3f1b3657b68b0618 | /src/Docs/_new/2-internals/1-core/10-erd/_puml/erd-shopware-core-content-category.puml | 915dd1b3ea74505f6782bf13e191a62962531a61 | [
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | Gamingpc/platform | 79282f0e78f9346b4fa02a7907975890200d8ac8 | 47169962a2d7fa4b232ad63d3611ac392ba3ddf4 | refs/heads/6.0-dp | 2023-04-06T14:37:58.066081 | 2019-07-15T06:24:42 | 2019-07-15T06:24:42 | 188,271,256 | 3 | 2 | MIT | 2023-04-04T01:25:29 | 2019-05-23T16:35:37 | PHP | UTF-8 | PlantUML | false | false | 3,955 | puml | @startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
!define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >>
!define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
hide empty members
skinparam backgroundColor #FFFFFF
' entities
Table(ShopwareCoreContentCategoryCategoryDefinition, "category\n(Category tree)") {
primary_key(id) id
primary_key(versionId) version
parentId parentFk
not_null(parentVersionId) referenceVersion
afterCategoryId foreignKey
not_null(afterCategoryVersionId) referenceVersion
mediaId foreignKey
not_null(displayNestedProducts) bool
autoIncrement int
level treeLevel
path treePath
childCount childCount
not_null(type) string
visible bool
active bool
name translated
customFields translated
slotConfig translated
externalLink translated
description translated
cmsPageId foreignKey
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
translated json
}
TranslationTable(ShopwareCoreContentCategoryAggregateCategoryTranslationCategoryTranslationDefinition, "category_translation\n((Translations))") {
not_null(name) string
slotConfig json
externalLink string
description longTextWithHtml
customFields customFields
not_null(createdAt) createdAt
not_null(updatedAt) updatedAt
primary_key(categoryId) foreignKey
primary_key(languageId) foreignKey
primary_key(categoryVersionId) referenceVersion
}
Table(ShopwareCoreContentCategoryAggregateCategoryTagCategoryTagDefinition, "category_tag\n(M:N Mapping)") {
primary_key(categoryId) foreignKey
primary_key(categoryVersionId) referenceVersion
primary_key(tagId) foreignKey
}
ForeignTable(ShopwareCoreContentMediaMediaDefinition, "media") {
}
ForeignTable(ShopwareCoreContentProductAggregateProductCategoryProductCategoryDefinition, "product_category") {
}
ForeignTable(ShopwareCoreContentProductAggregateProductCategoryTreeProductCategoryTreeDefinition, "product_category_tree") {
}
ForeignTable(ShopwareCoreContentCmsCmsPageDefinition, "cms_page") {
}
ForeignTable(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel") {
}
ForeignTable(ShopwareCoreFrameworkLanguageLanguageDefinition, "language") {
}
ForeignTable(ShopwareCoreSystemTagTagDefinition, "tag") {
}
' relationshipd
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreContentMediaMediaDefinition
ShopwareCoreContentCategoryAggregateCategoryTranslationCategoryTranslationDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreContentProductAggregateProductCategoryProductCategoryDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreContentProductAggregateProductCategoryTreeProductCategoryTreeDefinition
ShopwareCoreContentCategoryAggregateCategoryTagCategoryTagDefinition --> ShopwareCoreContentCategoryCategoryDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreContentCmsCmsPageDefinition
ShopwareCoreContentCategoryCategoryDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreContentCategoryAggregateCategoryTranslationCategoryTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition
ShopwareCoreContentCategoryAggregateCategoryTagCategoryTagDefinition --> ShopwareCoreSystemTagTagDefinition
@enduml
| false | true | false | false | uml-unknown |
7a4efcb55f0e7ec395b6f48367bb663032407e62 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/order/media/src/product_spec_UNI.puml | d968c1094b132d115e4f97949823667457d7fd04 | [
"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 | 3,008 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor<<API>> Black
}
hide <<API>> stereotype
class MEFProductRefOrValue<<API>> {
}
class MEFProductConfiguration<<API>> {
@type*: string
}
MEFProductRefOrValue *--> MEFProductConfiguration : productConfiguration
class BwpFlow {
envelopeRank*: integer
couplingFlag*: boolean
envelopeId*: string
tokenRequestOffset*: integer
colorMode*: ColorMode
}
BwpFlow *-->"1" InformationRate : eirMax
BwpFlow *-->"1" InformationRate : cirMax
BwpFlow *-->"1" DataSize : cbs
BwpFlow *-->"1" DataSize : ebs
BwpFlow *-->"1" InformationRate : cir
BwpFlow *-->"1" InformationRate : eir
class CarrierEthernetPhysicalLink {
physicalLink*: PhysicalLink
id*: string
}
enum ColorMode {
COLOR_BLIND
COLOR_AWARE
}
class ConversationIdToAggregationLinkMap {
aggLinkList*: integer[]
conversationIDs*: ConversationIdRange[]
}
class DataSize {
dataSizeUnits*: DataSizeUnits
dataSizeValue*: integer
}
enum DataSizeUnits {
BYTES
KBYTES
MBYTES
GBYTES
TBYTES
PBYTES
EBYTES
ZBYTES
YBYTES
}
enum EnabledDisabled {
ENABLED
DISABLED
}
class Envelope {
couplingFlagForIndexZero*: boolean
envelopeID*: string
}
class InformationRate {
irValue*: number
irUnits*: IrUnits
}
enum IrUnits {
BPS
KBPS
MBPS
GBPS
TBPS
PBPS
EBPS
ZBPS
YBPS
}
class L2cpPeering {
destinationAddress*: string
linkIdList: string[]
protocolID*: L2cpProtocol
}
enum LinkAggregation {
NONE
2_LINK_ACTIVE_STANDBY
ALL_ACTIVE
OTHER
}
class OperatorUni as "Operator Uni v1.0.0" {
defaultCeVlanId: integer
maximumNumberOfEndPoints: integer
lagLinkMeg: EnabledDisabled
linkOam: EnabledDisabled
meg: EnabledDisabled
linkAggregation: LinkAggregation
maximumNumberOfCeVlanIdsPerEndPoint: integer
tokenShare: EnabledDisabled
maximumServiceFrameSize: integer
}
MEFProductConfiguration <|-- OperatorUni
OperatorUni *-->"*" ConversationIdToAggregationLinkMap : aggregationLinkMap
OperatorUni *-->"*" BwpFlow : ingressBandwidthProfile
OperatorUni *-->"1..*" UniPhysicalLink : listofPhysicalLinks
OperatorUni *-->"*" BwpFlow : egressBandwidthProfile
OperatorUni *-->"*" L2cpPeering : l2cpPeering
OperatorUni *-->"*" Envelope : envelopes
enum PhysicalLink {
10BASE_T
100BASE_T
1000BASE_T
25GBASE_T
40GBASE_T
400GBASE_SR8
... And many modre...
OTHER
}
enum UniConnectorGender {
SOCKET
PLUG
}
enum UniConnectorType {
SC
LC
RJ45
FC
D4
OTHER
}
class UniPhysicalLink {
}
CarrierEthernetPhysicalLink <|-- UniPhysicalLink
UniSpecifcAttributes <|-- UniPhysicalLink
class UniSpecifcAttributes {
uniConnectorGender*: UniConnectorGender
synchronousEthernet*: EnabledDisabled
uniConnectorType*: UniConnectorType
precisionTiming*: EnabledDisabled
}
@enduml
| false | true | false | false | sequence |
442220e68995899d4d9c3e64e546daa454dd44db | ee6841e96c76962e9f74ba032a25d2e923b7e42c | /tech-apache/apache-lang/src/main/resources/apache/collections/multimap.puml | 5b07cb5e964e4583aa7dbbe4e1b81370a9df6e7e | [] | no_license | physicsLoveJava/java-miscellaneous | 614cfbad7dd7679e99c561b210ebbbf1a9df941e | e7563fdc9b5f955662cba40fc48614e45747d020 | refs/heads/master | 2021-07-19T13:30:51.096326 | 2019-01-21T09:09:50 | 2019-01-21T09:09:50 | 105,858,854 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 847 | puml | @startuml
interface MultiValuedMap
abstract class AbstractMultiValuedMap
abstract class AbstractListValuedMap
interface MultiListValuedMap
abstract class AbstractMultiValuedMapDecorator
interface SetValuedMap
MultiValuedMap <|-- AbstractMultiValuedMap
MultiListValuedMap <|-- AbstractListValuedMap
AbstractMultiValuedMap <-- AbstractListValuedMap
MultiValuedMap <|-- MultiListValuedMap
MultiValuedMap <|-- AbstractMultiValuedMapDecorator
MultiValuedMap <|-- SetValuedMap
SetValuedMap <|-- AbstractSetValuedMap
AbstractMultiValuedMap <|-- AbstractSetValuedMap
AbstractMultiValuedMap <|-- ArrayListValuedHashMap
AbstractMultiValuedMap <|-- HashSetValuedHashMap
AbstractMultiValuedMapDecorator <|-- TransformedMultiValuedMap
AbstractMultiValuedMapDecorator <|-- UnmodifiableMultiValuedMap
Unmodifiable <|-- UnmodifiableMultiValuedMap
@enduml | false | true | false | false | class |
8b8c520d630b674e63d077733d0f14060c621526 | 8e0e85b3875e06a4d76b4298decb879026847d7f | /docs/Skeleton/diagrams/Solar-Flare/Queue-Solar-Flare-Com.puml | 06d31ba51e4038ee30186a50465c65ec521a1815 | [] | no_license | viseguard-studios/Documentation | fba5030594be0303374d70019c7ea759316a96fe | 290312ddbeab9cf9a28147c868f3330475aebd6d | refs/heads/main | 2023-05-13T12:00:34.417075 | 2021-06-06T07:52:49 | 2021-06-06T07:52:49 | 338,383,487 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 175 | puml | @startuml
'autonumber "0:"
skinparam linestyle ortho
actor Tester as Tester
rectangle "gm : GameManager" as gm
Tester --> gm: "1 : -> QueueSolarStorm()" "2 : <--"
@enduml | false | true | false | false | sequence |
6318fb39e729da9a00eb8a2c90391111565ecc1f | 649c1923b6b5ebf4a5a48a05b80e701227229ecd | /src/BundleDeal/Decorator.plantuml | 435cce50571ae3a0db94c1ac5ad5cd9d233b2b13 | [] | no_license | Kenzki/design-patterns-dvd-rental-system | dacd28792b4bdabad8866f1bca3c54734c6e44c7 | 5d5b185567a06cfd583dd8bc4f31adb219a8bd80 | refs/heads/master | 2020-12-03T22:16:26.228848 | 2020-01-05T17:48:42 | 2020-01-05T17:48:42 | 231,503,438 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,277 | plantuml | @startuml
title __BUNDLEDEAL's Class Diagram__\n
abstract class BundleDeal.BundleDeal {
~ description : String
{abstract} + cost()
+ getDescription()
}
abstract class BundleDeal.BundleDealDecorator {
{abstract} + getDescription()
}
class BundleDeal.DrinkBundle {
+ DrinkBundle()
+ cost()
+ getDescription()
}
class BundleDeal.NewRelease {
+ NewRelease()
+ cost()
}
class BundleDeal.OldRelease {
+ OldRelease()
+ cost()
}
class BundleDeal.SnackBundle {
+ SnackBundle()
+ cost()
+ getDescription()
}
BundleDeal.BundleDealDecorator -up-|> BundleDeal.BundleDeal
BundleDeal.DrinkBundle -up-|> BundleDeal.BundleDealDecorator
BundleDeal.NewRelease -up-|> BundleDeal.BundleDeal
BundleDeal.OldRelease -up-|> BundleDeal.BundleDeal
BundleDeal.SnackBundle -up-|> BundleDeal.BundleDealDecorator
BundleDeal.BundleDeal --o BundleDeal.BundleDealDecorator
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 |
56fff4d9e2de1c7b407d70c0a8700a6bb1ccde81 | eb128063cc0f3cec7981d146509c648fa8f8d1e6 | /puml/infrastructure_discovery_with_etcd/etcd.puml | 45c6cf62714780e589a6cd6deb7c66ad01e7568c | [] | no_license | iwalz/blog | c71c87a86c8910fd778d867e1b4da01d4e719841 | d80282312e6e2e8c6065415c8dcca8794da875d9 | refs/heads/master | 2020-06-27T19:24:09.508096 | 2016-12-24T16:02:13 | 2016-12-24T16:02:13 | 66,873,047 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,112 | puml | @startuml
skinparam cloud {
BackgroundColor white
BorderColor black
}
skinparam component {
BackgroundColor white
BorderColor black
}
skinparam artifact{
BackgroundColor white
BorderColor black
}
skinparam actor {
BackgroundColor white
BorderColor black
}
skinparam node {
BackgroundColor white
BorderColor black
}
cloud "public discovery\nservice" as public
node machine1 <<systemd timer>>
node machine2 <<systemd timer>>
node machine3 <<systemd timer>>
node machine4 <<systemd timer>>
node machine5 <<systemd timer>>
node machine6 <<systemd timer>>
node machine7 <<systemd timer>>
node machine8 <<systemd timer>>
node machine9 <<systemd timer>>
node machine10 <<systemd timer>>
node "ETCD Cluster" as cc {
node etcd1 <<etcd server>>
node etcd2 <<etcd server>>
node etcd3 <<etcd server>>
etcd1 -> etcd2
etcd1 --> etcd3
etcd2 --> etcd3
}
machine1 ---> cc
machine2 ---> cc
machine3 ---> cc
machine4 ---> cc
machine5 ---> cc
cc <----- machine6
cc <----- machine7
cc <----- machine8
cc <----- machine9
cc <----- machine10
public .... cc
@enduml | false | true | false | false | deployment |
248821a18fb60adb913fff176f72633da36a1b76 | c2d010172294682884b47a14824e4f291d78386f | /docs/DiagramVehicles.puml | c54d3966d868a0f25a8da3ba1b08116b263a9e75 | [
"MIT"
] | permissive | MysteriousBaboon/Car-project | e178b40e67d784da55e8c356e64f284d64356b7d | 882351a266c6922c8e9bf27def7aff5481bedc87 | refs/heads/main | 2023-04-15T15:20:17.894565 | 2021-04-02T08:50:00 | 2021-04-02T08:50:00 | 317,547,481 | 0 | 0 | null | 2020-12-07T14:02:13 | 2020-12-01T13:19:44 | Python | UTF-8 | PlantUML | false | false | 2,095 | puml | @startuml
class Vehicle{
.. PROPERTIES ..
+string <b>name
+int <b>x
+int <b>y
+int <b>width
+int <b>height
+int <b>speedX
+int <b>speedY
+int <b>positionX
+int <b>offsetX
+int <b>gotoX
+pygame.Surface <b>image
.. CONSTRUCTOR ..
+void <b>__init__</b>(VehicleModel <b>vehicleModel</b>, int <b>speedX=1</b>, int <b>speedY=1</b>, int <b>numColumn=2</b>, int <b>numRow=-1</b>)
.. FUNCTIONS ..
+void <b>updatePosition</b>()
}
class Player{
.. PROPERTIES ..
+int <b>remainingLives
.. CONSTRUCTOR ..
+void <b>__init__</b>(VehicleModel <b>vehicleModel</b>, int <b>speedX=1</b>, int <b>speedY=1</b>, int <b>numColumn=2</b>, int <b>numRow=7</b>)
+void <b>changeDestination</b>(int <b>keyPressed</b>)
}
class Bot{
.. CONSTRUCTOR ..
+void <b>__init__</b>(VehicleModel <b>vehicleModel</b>, int <b>speedX=1</b>, int <b>speedY=1</b>, int <b>numColumn=2</b>, int <b>numRow=-1</b>)
+void <b>changeDestination</b>(int <b>numColumn</b>)
}
Vehicle <- Player
Vehicle <-- Bot
VehicleModel -- Vehicle
class VehicleModel{
+int <b>x
+int <b>y
+int <b>width
+int <b>height
+pygame.Surface <b>image
.. CONSTRUCTOR ..
+void <b>__init__</b>()
.. SETTER ..
+void <b>setLocation</b>(string <b>location</b>)
+void <b>setSize</b>(string <b>size</b>)
}
class Vehicles{
.. PROPERTIES ..
+VehicleModel[] <b>vehicleModels
+Vehicle[] <b>vehiclesOnTheRoad
.. CONSTRUCTOR ..
+void <b>__init__</b>()
.. FUNCTIONS ..
-void <b>_loadModels</b>()
-pygame.Surface <b>_getImageInModel</b>(int <b>x</b>, int <b>y</b>, int <b>width</b>, int <b>height</b>)
+bool <b>checkCollisions</b>()
+void <b>generateBot</b>()
+void <b>addBot</b>()
+void <b>addPlayer</b>()
+void <b>updateThoseOnTheRoad</b>()
}
@enduml | false | true | false | false | class |
d46573891e2adb32b445d717a19dafb42c9020e0 | 676e3dba55b97d1185a640dacd8db9e88f6ffd5e | /uml/PlantUML_tabs_controller.puml | a788d2af27cca637eaad9af3d8b2132c96c2993b | [] | no_license | spenserTac/tacinelli-cop3330-assignment4 | 1354ef5b26c1efc6afdc0d9097ea34db343b3358 | 70d58c8dfe8ccc707e296fd949e4a04a41ad09bc | refs/heads/main | 2023-08-23T00:59:38.010492 | 2021-11-01T21:33:09 | 2021-11-01T21:33:09 | 417,236,873 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 290 | puml | @startuml
'https://plantuml.com/sequence-diagram
class tabs_controller {
private Stage stage;
private Scene scene;
private Parent root;
public void switch_to_selected_tab(ActionEvent event)
public void close_current_tab(ActionEvent event)
}
@enduml | false | true | false | false | class |
9f1691a7c4b5bd5e66ae7debbf94393ca44c7c4b | d2842222a7e264d11d8140d114a6265b255f33b1 | /WebParkhaus/ClassDiagram.plantuml | 10de3e68346049a3a8aa6c9e9fe10ce26645a582 | [] | no_license | MuabDev/SE-Team32 | 0213c30ef1bbbda3bb6e4aab54832de729f58a91 | a195a30364617fd9c00555938b5e4615d4ca96b1 | refs/heads/master | 2022-12-23T10:09:53.754513 | 2020-09-26T16:14:20 | 2020-09-26T16:14:20 | 261,794,032 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,764 | plantuml | @startuml
class AvgView [[java:AvgView]] {
~float avg
~float view()
+void update()
}
class View [[java:View]] {
}
View <|-l- AvgView
interface EinweiserIF [[java:EinweiserIF]] {
int enter(Auto in)
Auto leave(Auto out)
void addCar(Auto in)
List<Auto> getCars()
int getSize()
int getMax()
void setMax(int m)
}
class Berechnung [[java:Berechnung]] {
}
class SumView [[java:SumView]] {
}
class AvgView [[java:AvgView]] {
}
class ParkhausServlet [[java:ParkhausServlet]] {
-{static}long serialVersionUID
+ParkhausServlet()
#void doGet(HttpServletRequest request, HttpServletResponse response)
#void doPost(HttpServletRequest request, HttpServletResponse response)
-{static}String getBody(HttpServletRequest request)
}
class Berechnung [[java:Berechnung]] {
}
ParkhausServlet -r-> Berechnung : calc
class Einweiser [[java:Einweiser]] {
}
ParkhausServlet --> Einweiser : guide
class SumView [[java:SumView]] {
}
ParkhausServlet -r-> SumView : sum
class AvgView [[java:AvgView]] {
}
ParkhausServlet -r-> AvgView : avg
class HttpServlet [[java:javax.servlet.http.HttpServlet]] {
}
HttpServlet <|-- ParkhausServlet
abstract class View [[java:View]] {
+void subscribe(Berechnung m)
+{abstract}void update()
}
class Berechnung [[java:Berechnung]] {
}
View -u-> Berechnung : model
class Einweiser [[java:Einweiser]] {
-int max
+Einweiser()
+int enter(Auto in)
+Auto leave(Auto out)
+void addCar(Auto in)
+List<Auto> getCars()
+int getSize()
+int getMax()
+void setMax(int m)
}
class Auto [[java:Auto]] {
}
Einweiser --> Auto : cars
interface EinweiserIF [[java:EinweiserIF]] {
}
EinweiserIF <|.. Einweiser
interface BerechnungIF [[java:BerechnungIF]] {
void addCost(float cost)
List<Float> getCosts()
int getSize()
}
class Auto [[java:Auto]] {
-int parkplatz
-String ticket
+Auto()
+Auto(int p, String t)
+int getParkplatz()
+String getTicket()
+void setParkplatz(int p)
+void setTicket(String t)
}
interface AutoIF [[java:AutoIF]] {
}
AutoIF <|.l. Auto
class AbstractPublisher [[java:AbstractPublisher]] {
+void addView(View v)
+void update()
}
class View [[java:View]] {
}
AbstractPublisher -l-> View : views
interface AutoIF [[java:AutoIF]] {
int getParkplatz()
String getTicket()
void setParkplatz(int p)
void setTicket(String t)
}
class Berechnung [[java:Berechnung]] {
~List<Float> costs
+Berechnung()
+void addCost(float cost)
+List<Float> getCosts()
+int getSize()
}
class AbstractPublisher [[java:AbstractPublisher]] {
}
AbstractPublisher <|-u- Berechnung
interface BerechnungIF [[java:BerechnungIF]] {
}
BerechnungIF <|.d. Berechnung
class SumView [[java:SumView]] {
~float sum
~float view()
+void update()
}
class View [[java:View]] {
}
View <|-- SumView
class EinweiserIF [[java:EinweiserIF]] {
}
@enduml | false | true | false | false | sequence |
b0d87e915dfe8040b8f4967949498bfb736279cd | 7434fc14a1eec0716e2320cdb1ccc8488a81f32e | /core/src/test/resources/xcall.puml | a132cdd880907369ed8e9cdd77260c51f20d38ea | [
"Apache-2.0"
] | permissive | elite-se/plantestic-team-2 | 07b6f0e6f6f817b2cd3a68e7520518f4feb4f1c7 | e0db4a4496e546efe3ba06c813fe6169103c7a0e | refs/heads/master | 2022-11-30T06:51:33.348412 | 2020-08-04T16:19:11 | 2020-08-04T16:19:15 | 270,653,236 | 0 | 0 | Apache-2.0 | 2020-07-19T11:47:52 | 2020-06-08T12:05:42 | JavaScript | UTF-8 | PlantUML | false | false | 1,475 | puml | @startvariant
id="123"
eventId="645"
vin="987"
@endvariant
@startuml
participant "Voicemanager" as VM
participant XCS
participant DataService
participant CRS
participant EventNotifier
participant ELOS
participant CCC
autoactivate on
XCS -> DataService : request(GET, "/vehicle/internal/${vin}")
return response(200, {homeCountry : "/homeCountry", positionCountry : "/positionCountry", brand : "/brand"})
XCS -> CRS : request(POST, "routingTargets/find", {eventId : "${eventId}", serviceType : "${serviceType}", vin : "${vin}", homeCountry : "${homeCountry}", positionCountry : "${positionCountry}", brand : "${brand}"})
return response(200, {voiceTargets : "/voiceTargets"})
alt "${xcsServiceType} == 'ACall'"
XCS -> EventNotifier : request(PUT, "xcs/notify/${eventId}", {homeCountry : "${homeCountry}", positionCountry : "${positionCountry}", brand : "${brand}"})
return response(200)
end
alt "${xcsServiceType} == 'BCall'"
XCS -> ELOS : request(PUT, "xcs/notify/${eventId}", {homeCountry : "${homeCountry}", positionCountry : "${positionCountry}", brand : "${brand}"})
return response(200)
end
XCS -> CCC : request(POST, "xcs/eventReceived", {eventId : "${eventId}", serviceType : "${serviceType}", homeCountry : "${homeCountry}", positionCountry : "${positionCountry}", brand : "${brand}"})
return response(200)
XCS -> VM : request(POST, "/setupCall", {eventId : "${eventId}", vin : "${vin}", voiceTargets : "${voiceTargets}"})
return response(200)
@enduml
| false | true | false | false | sequence |
6efc0e76c40b04e068e6392dc32e68d7db363219 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/QuoteRequestTransitionStateAction.puml | 2772b01506b69f3fa1c9cfeb4ae836779e19da6e | [] | 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 | 542 | 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 QuoteRequestTransitionStateAction [[QuoteRequestTransitionStateAction.svg]] extends QuoteRequestUpdateAction {
action: String
state: [[StateResourceIdentifier.svg StateResourceIdentifier]]
force: Boolean
}
interface QuoteRequestUpdateAction [[QuoteRequestUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | state |
3635cd0a46c35be53c898475422f1bc068a5ce56 | f8e357daee592f0c24cd2e5778c643a77b4a6404 | /02basics/04basics_participant_rename.puml | ad5db69c6930da2d95ef049683288d994fa6872b | [] | no_license | jahmanitheone/plantuml | bd3914c882d79157f387aa84268510edbebb05c2 | dda0a93ca7caabf456c96bd9ef8249c1f3ddf9a1 | refs/heads/main | 2023-01-01T12:40:34.242849 | 2020-10-22T17:01:59 | 2020-10-22T17:01:59 | 306,404,003 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 486 | puml | @startuml
'
'Basics: participant
'Rename a participant using the as keyword.
'You can also change the background color of actor or participant.
'
actor Bob #red
' The only difference between actor
'and participant is the drawing
participant Alice
participant "I have a really\nlong name" as L #99FF99
/' You can also declare:
participant L as "I have a really\nlong name" #99FF99
'/
Alice->Bob: Authentication Request
Bob->Alice: Authentication Response
Bob->L: Log transaction
@enduml | false | true | false | false | sequence |
c6af01306fab709e88f56c81523ae601d59ad604 | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1141042/sprint2/forms_editor_analysis.puml | 2804ff351ded26e50fe05a75c0021f8e1019acd0 | [] | 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 | 472 | puml | @startuml doc-files/forms_editor_analysis.png
actor User
User->System: Starts the process.
System->User: Opens the window with options add or remove a line.
System->User: Presents the option to add remove a line.
User->System: Chooses an option.
System->User: ask the name of the label and the textbox description
User->System: Answer.
System->User: Adds a new line.
User->System: If the chosen option is to remove.
System->User: Removes one line in the window.
@enduml | false | true | false | false | sequence |
23830743f901782d40bf73dae9a4df9c833ff777 | 1bb1c097237b01cd71de26efa466c24737ff89fe | /diagrammes/src/sequences/register.puml | da8e9ab2640083de2fbd5e307b6dfc5e1f953130 | [] | no_license | assimhabeek/memoire | 4934892d884848692d9bf3f16dbd83ee5fbbcec1 | f11fd97c6a7a75dd681cf11408ff519e67656c7f | refs/heads/master | 2021-03-22T05:12:20.753268 | 2018-05-01T16:25:14 | 2018-05-01T16:25:14 | 121,604,872 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,498 | puml | @startuml
skinparam backgroundColor #fff
skinparam defaultFontColor #37474f
skinparam defaultFontSize 14
skinparam defaultFontName serif
skinparam defaultFontStyle bold
skinparam actorBackgroundColor #fff
skinparam actorBorderColor #000
skinparam boundaryBackgroundColor #fff
skinparam boundaryBorderColor #000
skinparam controlBackgroundColor #fff
skinparam controlBorderColor #000
skinparam entityBackgroundColor #fff
skinparam entityBorderColor #000
skinparam participantBackgroundColor #fff
skinparam participantBorderColor #000
skinparam ArrowColor #000
skinparam sequenceLifeLineBorderColor #000
skinparam sequenceBoxBorderColor #FFF
skinparam ParticipantPadding -80
title Diagramme de séquence : Créer un nouveau compte - scénario nominal
hide footbox
actor Étudiant as student
boundary InscrireTemplate
boundary EmailVeriTemplate
control InscrireComposant
entity UtilisateursDépôt
participant GestionnaireEmail
student -> InscrireTemplate : cliquez sur\n s'inscrire
InscrireTemplate -> InscrireComposant : soumettre(user)
InscrireComposant -> UtilisateursDépôt : insérer(user)
UtilisateursDépôt -> GestionnaireEmail: envoyerEmail()
GestionnaireEmail ->]: envoyer()
GestionnaireEmail --> UtilisateursDépôt : ok
UtilisateursDépôt --> InscrireComposant :ok
InscrireComposant--> InscrireTemplate :Nous avons envoyé\nun lien vers votre email
destroy InscrireTemplate
create EmailVeriTemplate
student -> EmailVeriTemplate:cliquez sur le lien\n qui a été envoyé
@enduml | false | true | true | false | usecase |
9d731218a5a8f35d1fd61d2ebb1894a63478d63f | 7aab8973fd79dbc882f015ccda2817e521f1e1bc | /aqa.puml | 1a5d9da593b991849b7ebfc13e19e4c1912a147d | [] | no_license | MrStaf/MS_Paint | b68ddc9306b2c824ffe385c85e39f7c872962cfd | a4d32e06b9b3664aa7beb5444cec70a0f654cc73 | refs/heads/main | 2023-05-29T00:30:19.559329 | 2021-06-08T10:56:51 | 2021-06-08T10:56:51 | 366,804,825 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 288 | puml | @startuml
class Main.DrawCanvas
class Main.MainFrame
class java.util.Collections
class javax.swing.JFrame
class javax.swing.JPanel
interface Main.GraphicsShape
Main.DrawCanvas ..> java.util.Collections
Main.DrawCanvas --|> javax.swing.JPanel
Main.MainFrame --|> javax.swing.JFrame
@enduml | false | true | false | false | class |
1940b70bdb3d78a4508a111e2e748983c4707e81 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.puml | 426df54fb987320f43b66f9ec0b8f96130943e27 | [] | 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 | 337 | puml | @startuml
class PlayModeRunnerCallback {
+ RunFinished(testResults:ITestResult) : void
+ TestFinished(result:ITestResult) : void
+ OnGUI() : void
+ RunStarted(testsToRun:ITest) : void
+ TestStarted(test:ITest) : void
}
MonoBehaviour <|-- PlayModeRunnerCallback
ITestRunnerListener <|-- PlayModeRunnerCallback
@enduml
| false | true | false | false | class |
cab29f4f65e285628cfbafc8e527fe411c787a03 | db2d58e72e59c738697159f931185874c3b73951 | /PokeArenaNetwork/PokeArenaNetwork-Class-Diagram.puml | 527f8c0e98e70d5fccc32b61aa6010db9c50648e | [] | no_license | gryzel1/PokeArena | 872bce9d79342874468613dbc52212cbc0ff9857 | 16abdf9af74492828556d9a5c7de07fdedcb708b | refs/heads/main | 2023-05-10T01:09:36.862489 | 2021-06-18T02:14:31 | 2021-06-18T02:14:31 | 352,564,767 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,124 | puml | @startuml
'https://plantuml.com/sequence-diagram
abstract WebSocketClient {}
abstract WebSocketServer {}
package PokeArenaNetwork {
enum PokeArenaServerState {
WAITING_FOR_CLIENT1_TO_JOIN
WAITING_FOR_CLIENT2_TO_JOIN
WAITING_FOR_START
IN_BATTLE
BATTLE_ENDED
WAITING_FOR_CLIENTS_ACTIONS
WAITING_FOR_CLIENT_1_ACTION
WAITING_FOR_CLIENT_2_ACTION
PROCESSING_ACTIONS
}
class PokeArenaServer extends WebSocketServer {
-String hostname
-int portNumber
-PokeArenaServerState state
-PokeArenaProtocol protocol
-WebSocket client1WS
-WebSocket client2WS
+PokeArenaServer(String hostname, int portNumber)
+sendPacket(PokeArenaPacket packet)
+onOpen(WebSocket ws, ClientHandshake clientHandshake)
+onClose(WebSocket ws, int code, String reason, boolean remote)
+onMessage(WebSocket ws, String message)
+onError(WebSocket ws, Exception e)
+onStart()
+int getPortNumber()
+String getHostname()
+PokeArenaServerState getState()
+setState(PokeArenaServerState state)
PokeArenaServer(InetSocketAddress address)
}
PokeArenaServer "1" -- "1" PokeArenaProtocol
class PokeArenaClient extends WebSocketClient {
+connect(String serverHostname, int portNumber)
+disconnect()
+sendMove(Move move)
+sendForfeit()
+sendItem(Item item)
+sendChangePokemon(Pokemon pokemon)
+sendTeam(equipe de pokemon)
+sendPacket(PokeArenaPacket packet)
+onOpen(ServerHandskake serverHandshake)
+onClose(int code, String reason, boolean remote)
+onMessage(String message)
+onError(Exception e)
+PokeArenaClient(URI serverURI)
}
class PokeArenaProtocol{
+PokeArenaPacket processPacket(PokeArenaPacket request)
}
abstract PokeArenaPacket {
}
class PokeArenaMovePacket extends PokeArenaPacket
class PokeArenaPingPacket extends PokeArenaPacket
class PokeArenaPongPacket extends PokeArenaPacket
class PokeArenaUtilities {
-{static}TypeToken<PokeArenaPacket> requestListTypeToken
-{static}RuntimeTimeAdapterFactory<?> typeFactory
-{static}Gson GSON
+PokeArenaPacket createPacket(PokeArenaPacketType packetType, <D> packetData)
+PokeArenaPacket parseJsonPacket(String jsonPacket)
+String toJson(PokeArenaPacket packet)
}
@enduml | false | true | false | false | class |
6e841a4a2b0497c497d23dde065e74d72fef022f | a7f8d8e116a9f42a87389cb344ca347d3e7e6893 | /libs/core/src/logger/docs/diagrams/src/Interfaces.puml | 7afe6b242e32aed4f828d5823e64865a15010103 | [] | no_license | gammaper-devop/claro_crm_reportes | e3fc36baeb5c9f3be248b849a888e966254fb060 | 28ded2b48d7331deb80823cdf4b7e7faa5377812 | refs/heads/master | 2023-08-16T20:25:01.587208 | 2021-09-25T02:34:56 | 2021-09-25T02:34:56 | 402,591,385 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 794 | puml | @startuml Interfaces
interface ILoggerConfig {
level?: ELoggerLevels;
secretKey?: string;
serverLog?: { url: string; level?: ELoggerLevels; };
customLog?: { method: Function; level?: ELoggerLevels; };
i18nLang?: string;
}
interface ILogger {
setHeader(accessToken: string, headerName?: string, tokenType?: string): void;
info(messageToPrint: string, additionalInfo?: any): void;
debug(messageToPrint: string, additionalInfo?: any): void;
log(messageToPrint: string, additionalInfo?: any): void;
trace(messageToPrint: string, additionalInfo?: any): void;
warn(messageToPrint: string, additionalInfo?: any): void;
error(messageToPrint: string, additionalInfo?: any): void;
}
interface IMessages {
secret_key_not_found: string;
circular_object: string;
}
@enduml
| false | true | false | false | class |
59e2e709a3fb41af33c4b17b135dcf7219d7dbb7 | 32e2538ddaa7ec24dcabc39032926faff5f6179b | /packages/loco_flutter/diagram.puml | 6c58af097aef4ecc5775adaa05cdc03936e0397f | [
"MIT"
] | permissive | dartlib/loco | 96d817b165d5e312381ec52c82681332f68d0a6f | 209144829f8130626dc3d498df1bbb79fb134464 | refs/heads/master | 2020-09-07T05:22:18.919900 | 2019-11-21T15:58:32 | 2019-11-21T15:58:32 | 220,668,355 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 10,276 | puml | @startuml
set namespaceSeparator ::
abstract class "loco_flutter::views_extension.dart::ViewsExtension<T>" {
}
"loco::extension.dart::Extension<State>" <|-- "loco_flutter::views_extension.dart::ViewsExtension<T>"
"loco_flutter::views.dart::Views" <|-- "loco_flutter::views_extension.dart::ViewsExtension<T>"
class "loco_flutter::view_wrapper.dart::ViewWrapperEvent<T>" {
}
class "loco_flutter::view_wrapper.dart::ViewWrapper<T>" {
+ViewBase child
+Channel channel
+_ViewWrapperState createState()
}
"loco_flutter::view_wrapper.dart::ViewWrapper<T>" o-- "loco_flutter::widgets::view_base.dart::ViewBase"
"loco_flutter::view_wrapper.dart::ViewWrapper<T>" o-- "loco::channel.dart::Channel"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "loco_flutter::view_wrapper.dart::ViewWrapper<T>"
class "loco_flutter::view_wrapper.dart::_ViewWrapperState<T>" {
-dynamic Function() _cancelSubscription
+void initState()
+void dispose()
-void _handleEvent()
+Widget build()
}
"loco_flutter::view_wrapper.dart::_ViewWrapperState<T>" o-- "loco::event_bus.dart::dynamic Function()"
"flutter::src::widgets::framework.dart::State<T>" <|-- "loco_flutter::view_wrapper.dart::_ViewWrapperState<T>"
class "loco_flutter::view_logic.dart::ViewLogic" {
-Channel _parentChannel
+Channel viewChannel
+void onState()
+void dispatch()
+void viewDispatcher()
}
"loco_flutter::view_logic.dart::ViewLogic" o-- "loco::channel.dart::Channel"
"loco::logic.dart::OnRegister" <|-- "loco_flutter::view_logic.dart::ViewLogic"
"loco::logic.dart::OnInit" <|-- "loco_flutter::view_logic.dart::ViewLogic"
abstract class "loco_flutter::widgets::view.dart::View<TProps>" {
+TProps props
{static} +dynamic $()
+void onAttach()
{static} +T of()
}
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "loco_flutter::widgets::view.dart::View<TProps>"
"loco_flutter::mixins::channel_mixin.dart::ChannelMixin" <|-- "loco_flutter::widgets::view.dart::View<TProps>"
"loco_flutter::mixins::state_builder_mixin.dart::StateBuilderMixin" <|-- "loco_flutter::widgets::view.dart::View<TProps>"
"loco_flutter::slots.dart::Slots" <|-- "loco_flutter::widgets::view.dart::View<TProps>"
"loco_flutter::widgets::view_base.dart::ViewBase" <|-- "loco_flutter::widgets::view.dart::View<TProps>"
abstract class "loco_flutter::widgets::view_base.dart::ViewBase" {
}
class "loco_flutter::widgets::state_builder2.dart::StateBuilder2<T, V>" {
+dynamic Function(Channel) onListen
+Map<Type, dynamic> Function(BuildContext) builder
+dynamic Function(BuildContext) orElse
+AsyncSnapshot initial()
+AsyncSnapshot afterConnected()
+AsyncSnapshot afterData()
+AsyncSnapshot afterError()
+AsyncSnapshot afterDone()
+AsyncSnapshot afterDisconnected()
+Widget build()
+State createState()
}
"loco_flutter::widgets::state_builder2.dart::StateBuilder2<T, V>" o-- "loco_flutter::widgets::common::listen_callback.dart::dynamic Function(Channel)"
"loco_flutter::widgets::state_builder2.dart::StateBuilder2<T, V>" o-- "loco_flutter::widgets::state_builder2.dart::Map<Type, dynamic> Function(BuildContext)"
"loco_flutter::widgets::state_builder2.dart::StateBuilder2<T, V>" o-- "loco_flutter::widgets::state_builder2.dart::dynamic Function(BuildContext)"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "loco_flutter::widgets::state_builder2.dart::StateBuilder2<T, V>"
class "loco_flutter::widgets::state_builder2.dart::_StateBuilderState<T, V>" {
-StreamSubscription<T> _subscription
-AsyncSnapshot<T> _state
-Stream<T> _stream
-Channel _channel
+void initState()
+Widget build()
+void dispose()
-Future _subscribe()
-void _unsubscribe()
}
"loco_flutter::widgets::state_builder2.dart::_StateBuilderState<T, V>" o-- "dart::async::StreamSubscription<T>"
"loco_flutter::widgets::state_builder2.dart::_StateBuilderState<T, V>" o-- "flutter::src::widgets::async.dart::AsyncSnapshot<T>"
"loco_flutter::widgets::state_builder2.dart::_StateBuilderState<T, V>" o-- "dart::async::Stream<T>"
"loco_flutter::widgets::state_builder2.dart::_StateBuilderState<T, V>" o-- "loco::channel.dart::Channel"
"flutter::src::widgets::framework.dart::State<T>" <|-- "loco_flutter::widgets::state_builder2.dart::_StateBuilderState<T, V>"
abstract class "loco_flutter::widgets::view_part.dart::ViewPart" {
}
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "loco_flutter::widgets::view_part.dart::ViewPart"
"loco_flutter::mixins::state_builder_mixin.dart::StateBuilderMixin" <|-- "loco_flutter::widgets::view_part.dart::ViewPart"
"loco_flutter::widgets::view_base.dart::ViewBase" <|-- "loco_flutter::widgets::view_part.dart::ViewPart"
abstract class "loco_flutter::widgets::stateful_view.dart::StatefulView<TProps>" {
+TProps props
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "loco_flutter::widgets::stateful_view.dart::StatefulView<TProps>"
"loco_flutter::widgets::view_base.dart::ViewBase" <|-- "loco_flutter::widgets::stateful_view.dart::StatefulView<TProps>"
"loco_flutter::mixins::channel_mixin.dart::ChannelMixin" <|-- "loco_flutter::widgets::stateful_view.dart::StatefulView<TProps>"
"loco_flutter::mixins::state_builder_mixin.dart::StateBuilderMixin" <|-- "loco_flutter::widgets::stateful_view.dart::StatefulView<TProps>"
class "loco_flutter::widgets::common::view_props.dart::ViewProps" {
+Key key
}
"loco_flutter::widgets::common::view_props.dart::ViewProps" o-- "flutter::src::foundation::key.dart::Key"
abstract class "loco_flutter::widgets::view_builder.dart::ViewBuilder<V>" {
+dynamic buildState()
+dynamic buildStates()
}
class "loco_flutter::widgets::state_builder.dart::StateBuilder<T, V>" {
+dynamic Function(Channel) onListen
+Widget Function(BuildContext, AsyncSnapshot<T>) builder
+AsyncSnapshot initial()
+AsyncSnapshot afterConnected()
+AsyncSnapshot afterData()
+AsyncSnapshot afterError()
+AsyncSnapshot afterDone()
+AsyncSnapshot afterDisconnected()
+Widget build()
+State createState()
}
"loco_flutter::widgets::state_builder.dart::StateBuilder<T, V>" o-- "loco_flutter::widgets::common::listen_callback.dart::dynamic Function(Channel)"
"loco_flutter::widgets::state_builder.dart::StateBuilder<T, V>" o-- "flutter::src::widgets::async.dart::Widget Function(BuildContext, AsyncSnapshot<T>)"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "loco_flutter::widgets::state_builder.dart::StateBuilder<T, V>"
class "loco_flutter::widgets::state_builder.dart::_StateBuilderState<T, V>" {
-StreamSubscription<T> _subscription
-AsyncSnapshot<T> _state
-Stream<T> _stream
-Channel _channel
+void initState()
+Widget build()
+void dispose()
-Future _subscribe()
-void _unsubscribe()
}
"loco_flutter::widgets::state_builder.dart::_StateBuilderState<T, V>" o-- "dart::async::StreamSubscription<T>"
"loco_flutter::widgets::state_builder.dart::_StateBuilderState<T, V>" o-- "flutter::src::widgets::async.dart::AsyncSnapshot<T>"
"loco_flutter::widgets::state_builder.dart::_StateBuilderState<T, V>" o-- "dart::async::Stream<T>"
"loco_flutter::widgets::state_builder.dart::_StateBuilderState<T, V>" o-- "loco::channel.dart::Channel"
"flutter::src::widgets::framework.dart::State<T>" <|-- "loco_flutter::widgets::state_builder.dart::_StateBuilderState<T, V>"
abstract class "loco_flutter::core::core_events.dart::CoreEvent" {
}
class "loco_flutter::core::core_events.dart::StartAppEvent" {
}
"loco_flutter::core::core_events.dart::CoreEvent" <|-- "loco_flutter::core::core_events.dart::StartAppEvent"
class "loco_flutter::view_dependencies.dart::ViewDependencies" {
+Channel channel
}
"loco_flutter::view_dependencies.dart::ViewDependencies" o-- "loco::channel.dart::Channel"
abstract class "loco_flutter::app.dart::App<BaseState>" {
}
"loco::extension.dart::Extension<State>" <|-- "loco_flutter::app.dart::App<BaseState>"
"loco_flutter::mixins::navigation_mixin.dart::NavigationMixin" <|-- "loco_flutter::app.dart::App<BaseState>"
class "loco_flutter::view_dispatcher.dart::ViewDispatcher" {
{static} +dynamic of()
}
abstract class "loco_flutter::view_list.dart::ViewList" {
+List build()
}
"loco_flutter::mixins::channel_mixin.dart::ChannelMixin" <|-- "loco_flutter::view_list.dart::ViewList"
"loco_flutter::mixins::state_builder_mixin.dart::StateBuilderMixin" <|-- "loco_flutter::view_list.dart::ViewList"
"loco_flutter::slots.dart::Slots" <|-- "loco_flutter::view_list.dart::ViewList"
"loco_flutter::widgets::view_base.dart::ViewBase" <|-- "loco_flutter::view_list.dart::ViewList"
class "loco_flutter::views.dart::ViewsLogic" {
+Channel channel
-Map<Type, dynamic> _instances
-Map<Type, Map<String, dynamic>> _slots
-Map<Type, dynamic> _views
+void registerView()
+ViewWrapper getView()
+ViewWrapper getViewWithProps()
-T _getView()
-T _getViewWithProps()
+T getViewList()
+T getViewListWithProps()
+void setSlot()
+void setSlots()
}
"loco_flutter::views.dart::ViewsLogic" o-- "loco::channel.dart::Channel"
"loco::logic.dart::BaseLogic<BaseState>" <|-- "loco_flutter::views.dart::ViewsLogic"
abstract class "loco_flutter::views.dart::Views" {
+ViewsLogic views
}
"loco_flutter::views.dart::Views" o-- "loco_flutter::views.dart::ViewsLogic"
abstract class "loco_flutter::mixins::state_builder_mixin.dart::StateBuilderMixin" {
+Widget buildState()
+Widget buildStates()
}
abstract class "loco_flutter::mixins::navigation_mixin.dart::NavigationMixin" {
+Map<String, Route<dynamic> Function(Map<String, dynamic>)> routes
+dynamic addRoute()
+Route onGenerateRoute()
+PageRouteBuilder buildRoute()
}
abstract class "loco_flutter::mixins::channel_mixin.dart::ChannelMixin" {
-ViewDependencies _viewDependencies
+Channel channel
+Function onEvent()
+void dispatch()
+void setChannel()
}
"loco_flutter::mixins::channel_mixin.dart::ChannelMixin" o-- "loco_flutter::view_dependencies.dart::ViewDependencies"
"loco_flutter::mixins::channel_mixin.dart::ChannelMixin" o-- "loco::channel.dart::Channel"
abstract class "loco_flutter::slots.dart::Slots" {
-Map<String, ViewWrapper<ViewWrapperEvent<ViewBase>>> _slots
-Map<String, List<ViewWrapper<ViewWrapperEvent<ViewBase>>>> _multiSlots
+dynamic setSlot()
+dynamic setMultiSlot()
+ViewWrapper slot()
+List multiSlot()
}
@enduml
| false | true | false | false | class |
b9503b8defc38686cc602cf66f7415b2d195ba99 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productSchema/ip/internetAccess/MEF 139 resources/media/ConnectionAddressing.puml | bf385023f218e1265fed757fe2ffb3a17075fca1 | [
"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 | 983 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class BasicIaUniIpv4ConnectionAddressing {
}
BasicIaUniIpv4ConnectionAddressing *--> Ipv4PrimarySubnet : ipv4PrimarySubnet
class UniIpv4ConnectionAddressing {
ipv4AddressingType: Ipv4AddressingType
}
UniIpv4ConnectionAddressing *--> Ipv4PrimarySubnet : ipv4PrimarySubnet
UniIpv4ConnectionAddressing *-->"*" Ipv4SecondarySubnet : ipv4SecondarySubnetList
class BasicIaUniIpv6ConnectionAddressing {
ipv6AddressType: BasicIaUniIpv6AddressingType
}
BasicIaUniIpv6ConnectionAddressing *--> Ipv6Subnet : ipv6Subnet
class UniIpv6ConnectionAddressing {
ipv6AddressingType: Ipv6AddressingType
}
UniIpv6ConnectionAddressing *--> Ipv6Address : subscriberIpv6Address
UniIpv6ConnectionAddressing *-->"*" Ipv6Subnet : ipv6Subnet
class Ipv4Subnet {
<<skipped>>
}
class Ipv4PrimarySubnet {
<<skipped>>
}
class Ipv6Subnet {
<<skipped>>
}
class Ipv6Address {
<<skipped>>
}
@enduml | false | true | false | false | sequence |
a8ee7d1e40e818b5e15dde0c360f9bd73f299fe6 | 54445e30c74df01cccd6bab3419b1998a22ad599 | /documentation/it03/ucd.puml | 229283ead1d99275459dd80d53cac4636ef1c9cb | [] | no_license | danieljfgoncalves/arqsi2017-3da-1151159-1151452 | 68694c11c692eb0a6724af986206dd4f7d326772 | 905e8b061f9c763be31107db0b5245a062e0bab0 | refs/heads/master | 2021-05-05T06:27:14.764693 | 2017-12-13T12:55:08 | 2017-12-13T12:55:08 | 118,801,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 936 | puml | @startuml UCD.puml
actor :Physician: as D
actor :Pharmacist: as F
actor :System: as S
actor :Patient: as P
actor :Anonymous: as A
usecase (Create receipts) as crr
usecase (Edit receipts) as er
usecase (Consult receipts) as cr
usecase (Consult prescriptions) as cp
usecase (Fill prescriptions) as fp
usecase (Alert patients\nwith new receipts) as ap
usecase (Register as patient) as ru
usecase (Authenticate \nuser) as auth
usecase (List presentation) as lp
usecase (Comment \npresentation) as comp
usecase (Consult posologies) as consp
usecase (Alter patient for the \nexpiration date proximity) as alp
S -> ap
D -> crr
D -> er
D -> cr
D -> cp
F -> cr
F -> cp
F -> fp
P --> cr
P -> cp
A ---> ru
A --> auth
lp <- A
D ---> comp
consp <- P
S -> alp
S --[hidden]> D
D -[hidden]> F
F --[hidden]> P
@enduml
DM <- F
D -> CM
D --> PM
APEP <-S
OD <- P
CP <- P
' Just for display purposes
I --[hidden]> D
F --[hidden]> S
S --[hidden]> P | false | true | false | false | usecase |
5866be7142d5300fb66b6e4a15a14429269665d1 | bb575cb6055bbbe51c3cfdbd9540e9145a3d2610 | /src/main/java/ex43/ex43.puml | 98e80f36cdff0a2c58e8866837fcaf5deb3b032b | [] | no_license | zarinniha/Tasnim-cop3330-assignment3 | a9509c75f44b9e15b05072b909d389a94ef1683e | 3cad41cd1d6d8a7a35f1c928f048dc3d651cbb17 | refs/heads/master | 2023-08-29T01:03:19.002118 | 2021-10-12T03:00:02 | 2021-10-12T03:00:02 | 416,162,265 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 688 | puml | @startuml
'https://plantuml.com/sequence-diagram
class websiteGenerator
{
-site,author,jsAns,cssAns: String
main()
+user=askUser() object
+create=createHTML() object
}
class askUser
{
-sc:Scanner
+getSiteName():String
+getAuthorName():String
+getjsAnswer():String
+getcssAnswer():String
}
class createHTML
{
+websiteExists(File):boolean
+createFolder(String,String)
+createHTML(String,String,String)
+printOutput(String,String,String,String)
}
websiteGenerator "ask user the author,site name and answer to make js and css folder"--askUser
websiteGenerator "create and printthe HTML,css,js folder based on the user input"--createHTML
@enduml | false | true | false | false | class |
e03290d186f0fad671a997a8291b24c3221d9f2e | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.puml | 26a6da5af9e1abc6efe30aabd42a9992799779cd | [] | 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 | 353 | puml | @startuml
class ResultsWriter {
+ WriteResultToFile(result:ITestResultAdaptor, filePath:string) : void
CreateDirectory(filePath:string) : void
+ WriteResultToStream(result:ITestResultAdaptor, streamWriter:StreamWriter, settings:XmlWriterSettings) : void
WriteResultsToXml(result:ITestResultAdaptor, xmlWriter:XmlWriter) : void
}
@enduml
| false | true | false | false | class |
ade97021985b3f4f6f3d1c09a36a0001587a79b8 | 34afe8ccb444b0c7c009b413b4ef3843889c2c26 | /versioned_docs/version-v2.7.x/user-guide/api-mediation/diagrams/rest-api-components.plantuml | 83e8287fdfc0784fc6eef2c405c9e5f55d1a9292 | [
"LicenseRef-scancode-dco-1.1",
"CC-BY-4.0"
] | permissive | zowe/docs-site | ba3a2a547a330c29a5b175a9e16341ff2eda3981 | 9bdfa3ccacf53d3f7c28e0e0220267631afbf5da | refs/heads/master | 2023-08-31T06:00:52.483979 | 2023-08-30T16:56:27 | 2023-08-30T16:56:27 | 143,049,506 | 70 | 190 | CC-BY-4.0 | 2023-09-14T19:15:02 | 2018-07-31T18:03:07 | JavaScript | UTF-8 | PlantUML | false | false | 1,303 | plantuml | @startuml rest-api-components
skinparam rectangle {
roundCorner<<Service>> 25
BackgroundColor<<API>> LightBlue
BackgroundColor<<Service>> PaleGreen
}
rectangle gateway [
<b>API Gateway</b>
===
/api/v1/service1
/api/v2/service1
---
/api/v2/service2
---
/api/v1/service3
]
rectangle service1 <<Service>> {
rectangle api1v1 <<API>> [
<b>/v1</b>
==
/endpoint1
/endpoint2
]
}
node "Web Application Server" as server {
rectangle service3 <<Service>> {
rectangle api3v1 <<API>> [
<b>/v1</b>
==
/endpoint1
/endpoint2
]
}
rectangle service2 <<Service>> {
rectangle api2v2 <<API>> [
<b>/v2</b>
==
/endpoint1
/endpoint2
]
rectangle api2v1 <<API>> [
<b>/v1</b>
==
/endpoint1
/endpoint2
]
}
}
note bottom of server: A web server can host\none or more API services
note bottom of service1: A service usually provides one API\n\nA service can run\nin its own embedded web server
note bottom of service2: A service can provide\nmultiple versions of a REST API
note right of gateway: API Gateway routes\nHTTP requests to REST APIs
gateway --> api1v1
gateway --> api2v1
gateway --> api2v2
gateway --> api3v1
@enduml | false | true | false | false | deployment |
63bed4fa831b6ef2b5834b5620e0a5e054bb1672 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartChangeTaxCalculationModeAction.puml | 0883a6d27db5cfa0bbcb94fe4ab18e041f482744 | [] | 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 | 504 | 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 CartChangeTaxCalculationModeAction [[CartChangeTaxCalculationModeAction.svg]] extends CartUpdateAction {
action: String
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
acfb3c73bf32aaf2fbcf7ef4961c85b645bd64ac | a682de962407bca5a4a4f619c2814a2089002f81 | /uml/Assignment4.puml | 5450399b8059d612084e69eac5b59ec21b769cfe | [] | no_license | SmokeIce593/parrish-cop3330-assignment4part2 | b13a3c0a13fc47324a57158e7291edd6c9c711ca | 9a65fc1e63f0a17ddcb37437825efc1d9c08edcd | refs/heads/master | 2023-08-30T09:06:21.435287 | 2021-11-16T01:10:18 | 2021-11-16T01:10:18 | 428,313,439 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,203 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
start(Stage stage)
}
class AppController {
+ ToDoListMain.ToDoList CurrentList
+ ItemMain.Items CurrentItem
+ List<ItemMain.Items> ItemList
+ List<ItemMain.Items> FilterItemList
+ int EditFlag
+ void initialize()
+ void EditItemButton()
+ void CreateItemButton()
+ void AddEditBackPress()
+ void ClearList()
+ void DeleteItemButton()
+ void SaveListButton()
+ void ImportListButton()
+ void CreateItemSubmitButton()
+ void wipe(int FilterFlag)
+ void ConfirmFilterButton()
}
class Filter {
+ {static} List<ItemMain.Items> CompleteItems(List<ItemMain.Items> ItemList, List<ItemMain.Items> FilterItemList)
+ {static} List<ItemMain.Items> AllItems(List<ItemMain.Items> ItemList)
+ {static} List<ItemMain.Items> InCompleteItems(List<ItemMain.Items> ItemList, List<ItemMain.Items> FilterItemList)
}
class ImportExport {
+ {static} List<ItemMain.Items> ExportItems(List<ItemMain.Items> ItemList, String Path)
+ {static} List<ItemMain.Items> ImportItems(List<ItemMain.Items> ItemList, String Path)
String current
String name
String description
String duedate
String status
int location
}
class ItemMain {
+ {static} List<ItemMain.Items> CreateItem(List<ItemMain.Items> ItemList, String Name, String Description, String Duedate, String Status)
+ {static} Items EditItemGetObj(List<ItemMain.Items> ItemList, String name)
+ {static} List<ItemMain.Items> DestroyItem(List<ItemMain.Items> ItemList, String Current)
+ {static} List<ItemMain.Items> EditItem(List<ItemMain.Items> ItemList, String Current, int EditFlag)
}
class ToDoListMain {
}
class Items{
+ String name
+ String description
+ String duedate
+ String status
}
class ToDoList{
+ int ID
+ String Name
+ List<ItemMain.Items> ItemList
}
ItemMain *-- Items
ToDoListMain *-- ToDoList
App <|-- AppController
AppController <|-- Filter
AppController <|-- ImportExport
AppController <|-- ItemMain
AppController <|-- ToDoListMain
@enduml | false | true | false | false | class |
22aae45b1c287a50acfefe977087378360e5b760 | 0992a598a77d620c86b163e92c2a0259e1c5efe1 | /docs/sprint2/diagrams/ImplementationViewGeneral.puml | 2bd121c3ef953500c48f8769f484abcc68f3e06c | [] | no_license | dev-rbatista/Tutorial_Local_Smoke_Test_with_Docker_Containers-Gradle | a78f2c5a85e72035db2091e79b8c75ddfff8c7fb | cad9b52d66a2f91c93919feaee5250303d230752 | refs/heads/master | 2023-06-17T23:27:34.990780 | 2021-07-15T15:36:57 | 2021-07-15T15:36:57 | 386,325,650 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 465 | puml | @startuml
title General Implementation View - SP02
rectangle a [
Correlated with "Family \nFinance Management System" \ncomponent of System Overview
]
package FFMSystem {
package ui
package controllers
package domain
}
rectangle b [
Correlates with "FFM_UI" \ncomponent of LogicView
]
rectangle c [
Correlates with "FFM_BusinessLogic" \ncomponent of LogicView
]
a -. FFMSystem
ui -> controllers
controllers -> domain
ui -. b
controllers -. c
domain -. c
@enduml | false | true | false | false | uml-unknown |
c476a0bea385d845aa0472bdb97090d0a7eb835e | 681aaba01c866e4d616e28400aaddd0359b88c09 | /backend/microservice-node-block/node-block/blockchain.plantuml | 60d8d9860bca14d8e0e189dfd0aac402b7879b54 | [] | no_license | Chrisnb1/java-project-blockchain | fb8749dd3035d16b04077b9f84f1b2137c8530b3 | c947d426ab98dd03969ce1fe4c45522255ffa8d9 | refs/heads/main | 2023-06-16T01:15:15.788382 | 2021-07-13T02:06:41 | 2021-07-13T02:06:41 | 369,318,669 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,986 | plantuml | @startuml
title __BLOCKCHAIN's Class Diagram__\n
namespace maven{
class MavenWrapperDownloader {
}
}
namespace app{
namespace com.app.blockchain {
class com.app.blockchain.BlockchainApplication {
}
}
}
namespace app{
namespace com.app.blockchain {
class com.app.blockchain.RestClient {
}
}
}
namespace app{
namespace com.app.blockchain {
namespace controller {
class com.app.blockchain.controller.BlockController {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace controller {
class com.app.blockchain.controller.NodeController {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace blockdto {
class com.app.blockchain.dto.BlockDTO {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace dto {
class com.app.blockchain.dto.NodeDTO {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace model {
class com.app.blockchain.model.Block {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace model {
class com.app.blockchain.model.Node {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace repository {
interface com.app.blockchain.repository.IBlockRepository {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace repository {
interface com.app.blockchain.repository.INodeRepository {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace service {
class com.app.blockchain.service.BlockService {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace service {
interface com.app.blockchain.service.IBlockService {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace service {
interface com.app.blockchain.service.INodeService {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace service {
class com.app.blockchain.service.NodeService {
}
}
}
}
namespace app{
namespace com.app.blockchain {
namespace util {
class com.app.blockchain.util.SHA256 {
}
}
}
}
com.app.blockchain.BlockchainApplication .up.|> org.springframework.boot.CommandLineRunner
com.app.blockchain.BlockchainApplication o-- com.app.blockchain.repository.IBlockRepository : blockRepository
com.app.blockchain.BlockchainApplication o-- com.app.blockchain.repository.INodeRepository : nodeRepository
com.app.blockchain.BlockchainApplication o-- com.app.blockchain.service.INodeService : nodeService
com.app.blockchain.controller.BlockController o-- com.app.blockchain.service.IBlockService : blockService
com.app.blockchain.controller.BlockController o-- com.app.blockchain.service.INodeService : nodeService
com.app.blockchain.controller.NodeController o-- com.app.blockchain.service.INodeService : nodeService
com.app.blockchain.service.BlockService .up.|> com.app.blockchain.service.IBlockService
com.app.blockchain.service.BlockService o-- com.app.blockchain.repository.IBlockRepository : blockRepository
com.app.blockchain.service.NodeService .up.|> com.app.blockchain.service.INodeService
com.app.blockchain.service.NodeService o-- com.app.blockchain.service.IBlockService : blockService
com.app.blockchain.service.NodeService o-- com.app.blockchain.repository.INodeRepository : nodeRepository
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 |
32817105f7e4c8e3b7aa8753ea6bf1587df35b50 | 8a4057d8c754c93b16c13815b4f1b7c4b3251bb7 | /Docs/asynchronous-processing-read-model.puml | 15bb6c9b20778b434eca4af7ec78aff21ebe8e1e | [
"MIT"
] | permissive | sygnowskip/modular-monolith | 0cf414d84122e18277dadb4259ce25a0e1679997 | d02b570a1febd9b8ce4e7fc1ce2b333c65660e48 | refs/heads/master | 2022-03-11T22:44:48.018280 | 2022-02-06T18:12:06 | 2022-02-06T18:12:06 | 244,965,038 | 1 | 0 | MIT | 2022-02-06T18:12:07 | 2020-03-04T17:41:32 | C# | UTF-8 | PlantUML | false | false | 311 | puml | @startuml
Title "Asynchronous processing - update read models based on domain events"
queue RabbitMQ
participant "Event handlers" as EventHandler
database "Read-only database" as ReadOnlyDatabase
EventHandler -> RabbitMQ : Reacts on event from
EventHandler -> ReadOnlyDatabase : Update read model on
@enduml | false | true | false | false | sequence |
fafdbcf5c81bd79a5934094fa63b2a4531b218c7 | 79614dbcf56b41061d2538fe496c8aedd03315b8 | /docs/classdiagram.puml | 446cff9f6dfa9bb53dfb206bef8ed473cd764a11 | [] | no_license | gitmirgut/bb_stitcher | 3b73657ac0ea2c755790664a78bcbc5f934d59a9 | 08ab2f4d9adfe56d7b959cd8be867243f5d9eaee | refs/heads/master | 2021-01-20T11:41:51.949903 | 2018-01-07T15:39:45 | 2018-01-07T15:39:45 | 84,866,881 | 2 | 0 | null | 2017-04-02T21:12:53 | 2017-03-13T19:35:00 | Python | UTF-8 | PlantUML | false | false | 1,157 | puml | @startuml
package Module:preperation <<Frame>> {
class Rectificator{
ndarray: intr_m
ndarray: dist_c
+ rectify_image()
+ rectify_points()
- __get_affine_mat_and_new_size()
}
class ModuleFunctions <<(M, orchid)>> {
+ rotate_image()
+ rotate_points()
}
}
package Module:stitcher <<Frame>> {
class Stitcher{
ndarray: homo_left
ndarray: homo_right
tuple: pano_size
---
+ estimate_transform(image_left, image_right)
+ compose_panorama(image_left, image_right)
+ stitch(image_left, image_right)
+ map_left_points(points)
+ map_right_points(points)
.. should be overridden by a sublcass ..
+ estimate_transform(image_left, image_right)
}
class FeatureBasedStitcher {
+ compose_panorama(image_left, image_right)
# _calc_feature_mask(size_left, size_right, overlap, border_top, border_bottom)
}
class RectangleStitcher {
+ compose_panorama(image_left, image_right)
}
Stitcher <|-- FeatureBasedStitcher
Stitcher <|-- RectangleStitcher
}
@enduml | false | true | false | false | class |
50bc954af9819ff8c9e4b9fc1c0ebd9e376fdd5e | a0f2059f355f66dacea855c9339318803935f332 | /rocketmq-go/docs/package.puml | ebeacdf6677e9d4345799a580cee4cc956515a2b | [
"Apache-2.0"
] | permissive | InsZVA/incubator-rocketmq-externals | a330a5d47d64240517ada7c3e35edd0f50e6abe6 | 86eead31af2ea32aa293c63ed0d2b1dd764465d8 | refs/heads/master | 2021-08-30T13:01:21.563528 | 2017-12-18T03:25:07 | 2017-12-18T03:25:07 | 114,590,220 | 0 | 0 | null | 2017-12-18T03:07:18 | 2017-12-18T03:07:18 | null | UTF-8 | PlantUML | false | false | 2,519 | puml | @startuml
interface api.MQProducer{
}
interface api.MQConsumer{
}
interface api.MQClientInstance{
}
namespace api{
MQClientInstance o-- kernel.MqClientManager
MQProducer o-- kernel.DefaultMQProducer
MQConsumer o-- kernel.DefaultMQPushConsumer
MQConsumer o-- kernel.DefaultMQPullConsumer
}
class kernel.MqClientManager{
kernelState
}
class kernel.PullMessageController{
}
class kernel.AllocateMessageQueueStrategy{
}
class kernel.ClientFactory{
mqConsumerTable
mqProducerTable
}
class kernel.DefaultMQPushConsumer{
}
class kernel.DefaultMQPullConsumer{
to be done
}
class kernel.DefaultMQProducer{
}
class kernel.MqClient{
}
class kernel.MessageListener{
}
class remoting.RemotingClient{
invokeSync
invokeAsync
invokeOneWay
}
class remoting.RemotingCommand{
customHeader
requestCode
responseCode
}
class remoting.ClientConfig{
nameSrvAddr
clientIP
instanceName
}
class remoting.ClientRequestProcessor{
receive request and invoke the method.
GET_CONSUMER_STATUS_FROM_CLIENT
GET_CONSUMER_RUNNING_INFO
...
}
class remoting.SerializerHandler{
JsonSerializer
RocketMqSerializer
}
namespace kernel{
kernel.PullMessageController *-- kernel.ClientFactory:contains
MqClientManager o-- PullMessageController
MqClientManager o-- ClientFactory
kernel.ClientFactory *-- DefaultMQPushConsumer:contains
kernel.ClientFactory *-- DefaultMQPullConsumer:contains
DefaultMQPushConsumer *-- kernel.MqClient : contains
DefaultMQPushConsumer *-- kernel.OffsetStore : contains
DefaultMQPushConsumer *-- kernel.Rebalance : contains
DefaultMQPushConsumer *-- kernel.ConsumeMessageService : contains
kernel.ClientFactory *-- DefaultMQProducer:contains
DefaultMQProducer *-- kernel.MqClient :contains
}
namespace kernel{
MqClient o-- remoting.RemotingClient:contains
OffsetStore o-- MqClient
Rebalance o-- MqClient
Rebalance o-- OffsetStore
Rebalance o-- AllocateMessageQueueStrategy
ConsumeMessageService o-- SendMessageBackProducerkernel
ConsumeMessageService o-- OffsetStore
ConsumeMessageService o-- MessageListener
}
namespace remoting {
RemotingClient *-- RemotingCommand
RemotingClient *-- ClientConfig
RemotingClient *-- ClientRequestProcessor
RemotingClient *-- SerializerHandler
}
note top of remoting.RemotingClient :(sync|aysc|oneWay)
note top of remoting :net,serialize,connect,request response
@enduml | false | true | true | false | class |
c745a49c2546735b3d65b769bff900d1ab8ce39b | 30f5da32db8497206a3d573994ce410a47b02549 | /diagram/xxx.puml | ba83518d8a31d689640372015e3b273196ede660 | [] | no_license | MichealyChen/redisTest | e6bf70ec69a02f0378292f987f2a7b62949149c7 | e391c73ea174194f52b206006eaa083db0fe473f | refs/heads/master | 2023-06-09T10:01:06.788257 | 2019-07-13T02:59:34 | 2019-07-13T02:59:34 | 191,711,171 | 0 | 0 | null | 2023-05-26T22:15:16 | 2019-06-13T07:15:59 | Java | UTF-8 | PlantUML | false | false | 238 | puml | @startuml
participant User
User -> A: DoWork
activate A #FFBBBB
A -> A: Internal call
activate A #DarkSalmon
A -> B: << createRequest >>
activate B
B --> A: RequestCreated
deactivate B
deactivate A
A -> User: Done
deactivate A
@enduml | false | true | false | false | sequence |
698134bc5374175073e9e23e28e9bc24b2afc613 | 4da8d3dea8d3d93a5932ab3e2f3cdce618d04396 | /src/main/java/database/database.plantuml | 2a9cf607c396ccd7b55b8c3ce919d39e1dfc5184 | [
"MIT"
] | permissive | signofthefour/chatServer2 | b761fa544c5f3972bbf305942de034c705fcd249 | b0d7b919ee7475f8e86486de89264806f4abc316 | refs/heads/master | 2022-10-14T09:55:32.795035 | 2020-06-09T22:32:40 | 2020-06-09T22:32:40 | 268,006,340 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,229 | plantuml | @startuml
title __DATABASE's Class Diagram__\n
namespace database {
class database.AccountManager {
+ insertUser()
+ loginValidate()
}
}
namespace database {
class database.DatabaseControl {
+ addNewAccount()
{static} + checkDatabase()
+ connect()
+ loginValidate()
+ test()
}
}
namespace database {
class database.MysqlUser {
- jdbcURL : String
- name : String
- password : String
~ getJdbcURL()
~ getName()
~ getPassword()
}
}
namespace database {
class database.User {
- email : String
- name : String
- password : String
+ User()
+ getEmail()
+ getName()
+ getPassword()
+ verifyAccount()
- setEmail()
- setName()
- setPassword()
}
}
database.DatabaseControl o-- database.AccountManager : accountManager
database.DatabaseControl o-- database.MysqlUser : mysqlUser
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 | sequence |
5cb43296f946227fe0c9e56decd952034de5605e | 691fb0a80441b4c34a51f387ae29e195d8433e76 | /src/main/java/com/philips/research/spdxbuilder/persistence/blackduck/blackduck.puml | 99e55249a4f2681b31cad48801909cf551e5b1c0 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | syllogy/spdx-builder | 34d61813e8c5718a123422a6d28c87f162df0457 | 66d8d3ad914fa85c7f1997d03deeaec3b2085f94 | refs/heads/main | 2023-06-01T06:46:09.252197 | 2021-03-15T16:25:44 | 2021-03-15T16:25:44 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 687 | puml | @startuml
title Black Duck BOM representation
class License {
UUID
name:String
spdxId:String
}
class Origin {
UUID
externalNamespace:String
externalId:String
}
note left of Origin: Provides\nPackage URL
class ComponentVersion {
UUID + UUID
name:String
version:String
description:String
ignored:boolean
}
ComponentVersion o--> "*" License: licenses\n<AND/OR>
ComponentVersion o-d-> "*" Origin: origins
ComponentVersion --> "*" ComponentVersion: children
class ProjectVersion{
UUID
versionName:String
}
ProjectVersion *-> "*" ComponentVersion: BOM
class Project {
UUID
name:String
}
Project *-> "*" ProjectVersion
@enduml
| false | true | false | false | sequence |
0b97aa7dc5d2b5624791d099848188a6ca78a7d2 | cce29a57ba4a057a882f22a930a104546431ccc4 | /ch2/observer_example/pattern_observer.puml | bd13371d18c9102184c2dd1d8b51acf5da6f4281 | [] | 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 | 968 | puml | @startuml Observer pattern a.k.a "Publish-Subscribe"
scale 2
class NotificationHandle{
updateAddr:UpdateFuncPtr
}
class AbstractSubject{
nSubcribers:int = 0
subscribe(updateFuncAddr:UpdateFuncPtr):void
unsubscribe(updateFuncPtr:UpdateFuncPtr):void
notify():void
}
class AbstractObserver <<file>> {
update(instanceNum:int, value:int):void
install():void
deinstall():void
}
class UpdateFuncPtr{
typedef void (*UpdateFuncPtr)(int instanceNum, int value);
}
class ConcreteSubject{
}
note bottom: Formal Parameters of patterns
class ConcreteObserver <<file>> {
}
note bottom: Formal Parameters of patterns
NotificationHandle <-- NotificationHandle : isNotificationHandle
NotificationHandle <-- AbstractSubject
AbstractSubject <-- AbstractObserver
UpdateFuncPtr <.. NotificationHandle: <<usage>>
UpdateFuncPtr <.. AbstractSubject: <<usage>>
AbstractSubject <|--ConcreteSubject
AbstractObserver <|-- ConcreteObserver
@enduml | false | true | false | false | class |
622f5e21f9d8f5b65e239dbd8f5f470029f7f0ef | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitCreatedMessage.puml | 9e9a8d8dda5caeece22f1809a561702ec17b222e | [] | 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,185 | 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 BusinessUnitCreatedMessage [[BusinessUnitCreatedMessage.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]]
businessUnit: [[BusinessUnit.svg BusinessUnit]]
}
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 |
e675d01d3b5ab397c6301efa8aa540933b562c0b | 19c8cf12c2433ce45c00c02593d98ace63b0eb2d | /design/flow/envoy-reattach-local-monitors.plantuml | ecfca63a86d6d2b7d446c8d484ff0d3a1bc20cf1 | [
"Apache-2.0"
] | permissive | racker/salus-docs | 269ca0a88757798b2fe1aee33938f6a6f0d4924c | 83a44cb1732b79b14adee0ee88af97f53b2bb6f4 | refs/heads/master | 2021-06-24T19:58:49.516310 | 2021-01-19T14:44:28 | 2021-01-19T14:44:28 | 194,307,660 | 3 | 0 | Apache-2.0 | 2022-06-06T16:48:45 | 2019-06-28T17:02:08 | null | UTF-8 | PlantUML | false | false | 1,458 | plantuml | @startuml
title Sequence Detail for Envoy Re-Attachment
participant Envoy
participant Ambassador
participant ResourceMgmt
note over Envoy,ResourceMgmt
This sequence diagram specifically
focuses on the re-attachment
of an Envoy and purposely omits
other aspects of ResourceEvent usage.
end note
Envoy-->Ambassador: re-attach
note right: with new envoy ID
Ambassador-->UMB: AttachEvent
UMB-->ResourceMgmt: consume AttachEvent
activate ResourceMgmt
ResourceMgmt->ResourceMgmt: handleEnvoyAttach
alt existing resource previously associated with an envoy
ResourceMgmt-->UMB: ResourceEvent
note over ResourceMgmt,UMB
In this case contains at least:
- tenant ID
- resource ID
- re-attached envoy ID
end note
end
deactivate ResourceMgmt
UMB-->MonitorMgmt: consume ResourceEvent
activate MonitorMgmt
alt inclusion of re-attached envoy ID
MonitorMgmt->MonitorMgmt: re-assign local monitors
MonitorMgmt->DB: query local monitors\nassigned to resource
loop for each bound monitor
MonitorMgmt->DB: set new envoy ID
end
MonitorMgmt-->UMB: MonitorBoundEvent
end
note over MonitorMgmt,UMB
Contains
- old envoy ID
Keeps the system consistent just in case a new Envoy is
"stealing" the resource designation from a still-running
Envoy.
end note
MonitorMgmt-->UMB: MonitorBoundEvent
note over MonitorMgmt,UMB
Contains
- new envoy ID
end note
deactivate MonitorMgmt
UMB->Ambassador: consume MonitorBoundEvent
@enduml | false | true | false | false | sequence |
62ec1c8c4a49b2517cb1a6ccaa2bfa2571b1701d | 4291ef524e205e9b7c7c479052e1fe40078a1f60 | /doc/part_four/sensor.puml | 0705aadebd405086c5fbfbb635d0599b09df0876 | [
"BSD-2-Clause"
] | permissive | nymann/portfolio-assignment | 4136ab71b2bac64d6a4474c76b16ee5e57f9d21d | abb6d840d6d9ae59b90e8417f140c2314b1e7a27 | refs/heads/master | 2023-04-27T00:19:10.391313 | 2021-05-21T21:02:46 | 2021-05-21T21:02:46 | 367,152,436 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 625 | puml | @startuml
skinparam roundCorner 10
skinparam shadowing false
skinparam classFontName Lato
skinparam classFontSize 16
skinparam defaultFontName Source Code Pro
skinparam defaultFontSize 14
skinparam ClassAttributeFontStyle normal
skinparam ClassBackgroundColor white
skinparam ClassBorderColor black
skinparam ClassBorderThickness 1
skinparam ArrowColor black
skinparam linetype polyline
abstract class dev.nymann.sensor.Sensor {
+ {abstract}void start()
+ {abstract}void stop()
}
interface dev.nymann.sensor.ISensor {
~ String getName()
~ Double getValue()
}
dev.nymann.sensor.ISensor <|.. dev.nymann.sensor.Sensor
@enduml
| false | true | false | false | class |
4c2bdb182e6b7198ae84444e8580bee1b434b090 | 1c70d2377c157d5fbdc09fd1b632dc0c4bf995cc | /de.gematik.ti.openhealthcard.events/doc/plantuml/OHCEVENTS/callbacks.plantuml | 7b7bed83cd9bb0c3a4d1f9d0e9f5f9e2581df4a5 | [
"Apache-2.0"
] | permissive | gematik/ref-OpenHealthCard-Events | 8bbe0eadbb401f4266728adfd09f4f6fe53a428c | 7e295edba16ded76504226edf8960d7875691b76 | refs/heads/master | 2022-02-03T17:08:51.607464 | 2022-01-07T07:35:58 | 2022-01-07T07:35:58 | 214,091,929 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 933 | plantuml | @startuml
namespace de.gematik.ti.openhealthcard.events.response.callbacks {
interface de.gematik.ti.openhealthcard.events.response.callbacks.ICardAccessNumberResponseListener {
{abstract} + handleCan()
}
}
namespace de.gematik.ti.openhealthcard.events.response.callbacks {
interface de.gematik.ti.openhealthcard.events.response.callbacks.IGeneralResponseListener {
+ abortRequest()
}
}
namespace de.gematik.ti.openhealthcard.events.response.callbacks {
interface de.gematik.ti.openhealthcard.events.response.callbacks.IPaceKeyResponseListener {
{abstract} + handlePaceKey()
}
}
namespace de.gematik.ti.openhealthcard.events.response.callbacks {
interface de.gematik.ti.openhealthcard.events.response.callbacks.IPinNumberResponseListener {
{abstract} + handlePinNumber()
}
}
@enduml
| false | true | false | false | class |
05982ada862e4c9a098bd67cf2d03ffa8c111c3e | 553f0bf87ffb874ea3172086b3671e7524d3fb65 | /documents/version6/diagramme.puml | bd9daa1c9e8a8e9af54cb84e92b69209fe94f51d | [] | no_license | MichelGrolet/2d-game | 18e6467de68899057d520d61d5a4c18bf47e7acc | 5d2714985fa270be60a60e7232d22267dddd7293 | refs/heads/main | 2023-05-26T06:11:18.518661 | 2021-06-11T10:00:13 | 2021-06-11T10:00:13 | 370,970,154 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,805 | puml | @startuml
class Main {}
class Labyrinthe {
- {static} taille : int
+ Labyrinthe()
+ Case getCase(int x, int y)
+ ArrayList<Case> getCasesLibres()
+ void genererMurs(int choix)
+ Case[][] getTabCase()
}
Labyrinthe "1" --> "*" Case : - cases
class Case {
- x : int
- y : int
- libre : boolean
+ Case(int x, int y)
+ boolean : getLibre()
+ boolean equals()
+ int : getX()
+ int : getY()
+ void dessiner(Graphics2D g)
}
class Mur extends Case {
+ dessiner(Graphics2D g)
}
class Sol extends Case {
- active : boolean
+ dessiner(Graphics2D g)
+ void getActive()
+ void declencherEffet(Personnage p)
}
abstract class CaseSpeciale extends Sol {
+ {abstract} void effet()
+ void declencherEffet(Personnage p)
+ void dessiner(Graphics2D g)
}
class CasePiege extends CaseSpeciale {
- {static} int DEGATS
+ void effet()
+ void declencherEffet(Personnage p)
+ void dessiner(Graphics2D g)
}
class CaseForce extends CaseSpeciale {
- {static} int BOOST
+ void effet()
+ void declencherEffet(Personnage p)
+ void dessiner(Graphics2D g)
}
class Entite {
- x : Int
- y : Int
- pv : int
- puissance : int
+ Entite(JeuPerso jeu)
+ void attaquer(Entite e)
+ void subirDegats()
+ boolean etreMort()
+ int getPuissance()
+ int getPv()
+ int getX()
+ int getY()
+ void setX(int x)
+ void setY(int y)
+ void setPv(int x)
+ void setPuissance(int x)
+ ArrayList<Case> deplacementAutour(ArrayList<Case> libres)
}
class Personnage extends Entite {
+ Personnage()
+ String toString()
+ void seDeplacer(Commande c)
+ void ramasserObjet(Objet o)
}
class Monstre extends Entite {
- vitesse : int
+ int getVitesse()
+ Monstre(int x, int y)
+ void seDeplacer(ArrayList<Case> libres, Personnage p)
}
class Fantome extends Monstre {
+ Fantome(int x, int y)
+ ArrayList<Case> deplacementAutour(ArrayList<Case> libres)
+ void dessiner(Graphics2D g)
}
class Orc extends Monstre {
+ Orc(int x, int y)
+ void dessiner(Graphics2D g)
}
class Gobelin extends Monstre {
+ Gobelin(int x, int y)
+ void dessiner(Graphics2D g)
}
interface Jeu {
+ void evoluer()
+ boolean etreFini()
}
interface DessinJeu {
+ void dessiner()
}
class JeuPerso implements Jeu {
- timer : int
+ JeuPerso()
+ String toString()
+ void evoluer(Commande commande)
+ boolean etreFini()
+ Personnage getPj()
+ void deplacerMonstres()
+ void genererMonstres(int nbMonstres)
+ ArrayList<Case> getCasesLibres()
+ Labyrinthe getLabyrinthe()
+ ArrayList<Monstre> getMonstres()
+ boolean faireApparaitre(Monstre m)
}
JeuPerso "1" --> "1" Labyrinthe : - labyrinthe
JeuPerso "1" --> "1" Personnage : - pj
JeuPerso "1" --> "0..*" Monstre : - monstres
JeuPerso "1" --> "0..*" Objet : - objets
class DessinPerso implements DessinJeu {
- {static} int tailleCase
+ DessinPerso(Jeu j)
+ void dessinerObjet(String s, int x, int y, BufferedImage im)
+ void dessiner(BufferedImage im)
}
DessinPerso "1" -> "1" JeuPerso : - jeu
class Objet {
- x : int
- y : int
+ Objet(int x, int y)
+ int getX()
+ int getY()
+ void setPersonnage(Personnage p)
+ void dessiner(Graphics2D g)
+ void dessinerInventaire(Graphics2D g)
}
class CreerPattern {
- char[][] : pattern1
- char[][] : pattern2
- char[][] : pattern3
+ CreerPattern(pattern1, pattern2, pattern3)
+ void genererPattern()
+ void main()
}
class Amulette extends Objet {
+ void dessiner(Graphics2D g)
+ void dessinerInventaire(Graphics2D g)
}
Personnage "0..*" -> "1" Objet : - inventaire
Objet "0..1" -> "1" Personnage : p
@enduml | false | true | false | false | sequence |
f6abf3ff99060eb937a6791e031b36ffea886467 | 417585d7b22d15cbaffe680ad1794580d29f1edf | /tools/plantuml/userguide/sequence/alt_1.puml | 2e0c92930bb29ce9f36b198ebb87d2cc1ab1dbf9 | [
"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 | 651 | puml | @startuml
title Decision making
hide footbox
participant A
participant B
participant C
A <--] : Stimulus from environment
A -> A
note right: Verify truth value from stimulus\nand decide the path to take
activate A
alt Truth
create B
A -> B
activate B
||45||
A <- B
destroy B
||10||
else Falsity
create C
A -> C
activate C
||75||
A <- C
destroy C
||10||
end 'of alt
A -> A
note right: Update memory with the decision taken
A -->] : Update environment
deactivate A
@enduml
| false | true | false | false | sequence |
164940c946d5b0bdc779ff58e88299871eaeaa1b | ed4c8840395cd0f08ac6a5c8dcc44627995e0c36 | /docs/architecture/diagrams/model-view.puml | fa1e17cb7cc08cb112befe8631850baea1c2b060 | [] | no_license | lazarljubenovic/grafaro | 25de0f7826bc9bcce92a25bc31ee3664e3c99887 | 596d344a4a2cd105c169ac98c880a857a990c67d | refs/heads/master | 2021-01-12T13:20:55.711617 | 2017-02-23T07:56:27 | 2017-02-23T07:56:27 | 72,202,276 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,467 | puml | @startuml
package Model {
class StateManager <<injectable>> {
- _combine$
-_graph
-_rootId
-_isPlaying$
-_clock$
-_algorithm
-_currentStateIndex
-_state$
-_getTotalNumberOfStates()
-_isFirst()
-_isLast()
-_fixCurrentStateIndex()
-_emitState()
+getNormalizedState()
+goToFirst()
+goToLast()
+goToPrevious()
+goToNext()
+play()
+pause()
+goTo(stateIndex: number)
+getAlgorithm()
}
class GraphManager <<injectable>> {
-_graph
-isMaster
+graph$
- existsNodeWithLabel(nodeLabel)
- existsEdgeWithLabel(edgeLabel)
+ emit()
+ getNodeId(nodeLabel)
+ getEdgeId(edgeLabel)
+ getNodeLabel(nodeId)
+ getEdgeLabel(edgeId)
+ getEdgeByNodes(from, to)
+ suggestNewNodeName()
+ suggestNewEdgeName()
+ addNode(position)
+ addNodeOnRandomPlace()
+ removeNode(nodeId)
+ renameNode(oldNodeLabel, newNodeLabel)
+ changeNodeWeight(nodeId, newWeight)
+ renameEdge(oldEdgeLabel, newEdgeLabel)
+ changeEdgeWeight(edgeId newWeight)
+ linkNodes(nodeA, nodeB, weight = 1)
+ linkNodesByLabel(labelA, labelB)
+ unlinkNodes(nodeA, nodeB)
+ unlinkNodesByLabel(labelA, labelB)
+ removeEdge(edgeId)
+ setPosition(nodeLabel, position)
+ moveNode(nodeId, position)
+ graphFromSocket(graphJson)
}
class AlgorithmManager <<injcetable>> {
-algorithmFactory
-_algorithmWithOptions
+algorithmWithOptions$
+setAndEmit(formOptions)
}
}
package Controler {
class AlgorithmPickerComponent <<component>>
class ControlsComponent <<component>>
class ToolbarComponent <<component>>
class GraphComponent <<component>>
class AlgorithmComponent <<component>>
class DebugTableComponent <<component>>
class GraphComponent <<component>>
class MatrixComponent <<component>>
}
class ToolbarService <<injectable>>
StateManager ..> "graph$" GraphManager : <<DI>>
StateManager ..> "algorithm$" AlgorithmManager : <<DI>>
AlgorithmPickerComponent ..> "graph$" GraphManager : <<DI>>
AlgorithmPickerComponent ..> "algorithm$" AlgorithmManager : <<DI>>
MatrixComponent ..> "graph$" GraphManager : <<DI>>
ToolbarService ..> GraphManager : <<DI>>
ToolbarComponent ..> ToolbarService : <<DI>>
GraphComponent ..> "state$" StateManager : <<DI>>
ControlsComponent ..> StateManager : <<DI>>
DebugTableComponent ..> StateManager : <<DI>>
AlgorithmComponent ..> StateManager : <<DI>>
@enduml
| false | true | false | false | class |
2d4435b933ed48663bcf4c6757e60fef8ee368c0 | 9e4d458015a49dc4c836d6df454bc6e319d75dd5 | /use-cases/use-case-1.puml | ceb3b6ab26a24498e67670fe44a909ed129245d8 | [
"Apache-2.0"
] | permissive | eoinkane/sem | 5e6e99da39e8785f59d162c4d3b44ebede8b7b1c | db3d43a11d9705746a793aad413a988540545ec6 | refs/heads/master | 2023-03-21T13:13:20.756161 | 2021-03-18T14:56:56 | 2021-03-18T14:56:56 | 330,828,710 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 229 | puml | @startuml
actor HR as "HR Advisor"
rectangle Database
rectangle "HR System" {
usecase UC1 as "Get all
salaries"
usecase UCa as "Print salaries"
HR - UC1
UC1 ..> UCa : include
UC1 - Database
}
@enduml
| false | true | false | false | usecase |
f7c9f86ec7fbcd9a85bb60305c2697d1ebdcbad6 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/GUI/IGuiHelper.puml | 510c35c5523184c72e352831e5a8660370c98afe | [] | 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 | 299 | puml | @startuml
interface IGuiHelper {
OpenScriptInExternalEditor(stacktrace:string) : bool
OpenScriptInExternalEditor(type:Type, method:MethodInfo) : void
GetFileOpenInfo(type:Type, method:MethodInfo) : IFileOpenInfo
FilePathToAssetsRelativeAndUnified(filePath:string) : string
}
@enduml
| false | true | false | false | class |
3996f475f3da287fdf61508e48bf8ca02b4b4bda | 8eea3d156ed8f8c32a5c4df3fad10c1fcd3a8ed4 | /design/lexis-cs.puml | 71d0ff11fe140bfbdf7b004cbfa9a007553d5ef9 | [] | no_license | alpheios-project/documentation | e9c949f9f78ac3c8ba5b6af424adfa31bcdad9b1 | 3b452dfcd0b94832ec0d0718ff51c099d2ba66f7 | refs/heads/master | 2021-06-06T01:33:49.616128 | 2021-04-24T12:56:24 | 2021-04-24T12:56:24 | 129,736,263 | 0 | 0 | null | 2021-01-04T14:36:49 | 2018-04-16T12:02:23 | null | UTF-8 | PlantUML | false | false | 669 | puml | @startuml
title A sequence diagram for interaction between ClientAdapters and client-side lexical services aka LexisCS
box "Application" #LightGreen
participant ClientAdapter
boundary "Messaging Service" as AMS
end box
box "service iframe" #LightBlue
boundary "Messaging Service" as IMS
entity "CEDICT Data Object" as CDO
database "CEDICT Data" as CData
end box
ClientAdapter -> AMS: getWords request
AMS -> IMS: getWords RequestMessage
IMS -> CDO: getWords() function call
CDO -> CData: words lookup query
CData --> CDO: a list of words found
CDO --> IMS: getWords() returns results
IMS --> AMS: getWords ResponseMessage
AMS --> ClientAdapter: getWords request
@enduml | false | true | false | false | sequence |
b52eaeb3cd2cbb3fd8f5f007742775f650db031a | d082f824b547d2ce3bfc66ee5a24239488551919 | /examples/diagrams/activity.plantuml | 9d9ccf9dbbeca7d6ab980d484b632ebebe82336e | [
"MIT"
] | permissive | iris-retail/plantuml-styles | 26f1469c007cc38897723f15efca6f5606056213 | 52c1a0f038ba7ec69b96b909679852e5b9e48509 | refs/heads/main | 2023-03-28T04:33:38.849941 | 2021-03-13T20:18:51 | 2021-03-13T20:18:51 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 859 | plantuml | @startuml Activity Example
(*) --> "ClickServlet.handleRequest()"
--> "new Page"
if "Page.onSecurityCheck" then
->[true] "Page.onInit()"
if "isForward?" then
->[no] "Process controls"
if "continue processing?" then
-->[yes] ===RENDERING===
else
-->[no] ===REDIRECT_CHECK===
endif
else
-->[yes] ===RENDERING===
endif
if "is Post?" then
-->[yes] "Page.onPost()"
--> "Page.onRender()" as render
--> ===REDIRECT_CHECK===
else
-->[no] "Page.onGet()"
--> render
endif
else
-->[false] ===REDIRECT_CHECK===
endif
if "Do redirect?" then
->[yes] "redirect request"
--> ==BEFORE_DESTROY===
else
if "Do Forward?" then
-left->[yes] "Forward request"
--> ==BEFORE_DESTROY===
else
-right->[no] "Render page template"
--> ==BEFORE_DESTROY===
endif
endif
--> "Page.onDestroy()"
-->(*)
@enduml | false | true | false | false | activity |
3401da8d822fd52f9b7daac33c4c7ce4d5fc32bc | 3662b2e08ec5aef2e3dfd1e527b5e50f44d91e1c | /docs/diagrams/DoneCommandSequenceDiagram.puml | 17f5f8fce2531fef835cda060ecb94a3e40ec0fb | [] | 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 | 1,388 | puml | @startuml
hide footbox
participant ":iGraduate" as iGraduate
participant ":Parser" as Parser
participant ":DoneCommand" as DoneCommand
participant ":ModuleList" as ModuleList
participant ":Storage" as Storage
participant ":Ui" as Ui
iGraduate -> Parser: parseCommand("done CS1010 -g A")
activate Parser #FFBBBB
Parser -> Parser: createDoneCommand(commandParameters:ArrayList<String>, commandFlags:ArrayList<String>)
activate Parser #DarkSalmon
create DoneCommand
Parser -> DoneCommand: DoneCommand("CS1010", "A")
activate DoneCommand
DoneCommand --> Parser: new DoneCommand("CS1010", "A")
deactivate DoneCommand
deactivate Parser
Parser --> iGraduate: new DoneCommand("CS1010", "A")
deactivate Parser
iGraduate -> DoneCommand: execute(moduleList, ui, storage)
activate DoneCommand
DoneCommand -> ModuleList: getByCode("CS1010")
activate ModuleList
ModuleList --> DoneCommand: module:Module
deactivate ModuleList
ModuleList -[hidden]-> ModuleList
DoneCommand -> ModuleList: markAsDone(module)
activate ModuleList
deactivate ModuleList
ModuleList -[hidden]-> ModuleList
DoneCommand -> ModuleList: setGrade(module, "A")
activate ModuleList
deactivate ModuleList
DoneCommand -> Storage: saveModulesToFile(moduleList)
activate Storage
deactivate Storage
DoneCommand -> Ui: printMarkAsTakenMessage(module)
activate Ui
deactivate Ui
deactivate DoneCommand
destroy DoneCommand
@enduml | false | true | false | false | sequence |
dfb14bea2e1d253156cd7213f0a9f3d8b8a422d4 | e764201f43dd9c32440080dfbd9872c23c72526b | /asp-doc/src/doc/asciidoc/diagrams/overview.puml | 72998c211af4f99d27024fcf1177f69c2fc999c6 | [
"Apache-2.0"
] | permissive | de-jcup/asp | f3a2a0cc2a06f13a7ad384604d34481ce475939d | 8e9eef61a58219f6bca6185b1b55d8a43644da90 | refs/heads/master | 2022-05-15T08:13:39.383737 | 2022-04-29T23:54:00 | 2022-04-29T23:55:26 | 190,183,210 | 8 | 3 | NOASSERTION | 2022-04-29T23:55:26 | 2019-06-04T10:52:47 | Java | UTF-8 | PlantUML | false | false | 1,225 | puml | @startuml
'skinparam linetype ortho
'skinparam linetype polyline
'top to bottom direction
Frame "Server access" {
package "de.jcup.asp.server.core" {
[CoreAspServer] as core_server
}
package "de.jcup.asp.server.asciidoctorj" {
component "Launcher" {
component "Embedded" {
[EmbeddedAsciidoctorJServerLauncher] as embedded_launcher
}
component "External process" {
[AsciidoctorJServerApplication] as standalone_application
[ExternalProcessAsciidoctorJServerLauncher] as standalone_launcher
}
}
[AsciidoctorJServer] as server
}
}
package "de.jcup.asp.client" {
[AspClient] as client
}
package "org.asciidoctor" {
[AsciidoctorJ] as asciidoctorj
[JRuby] as jruby
[Asciidoctor] as ad
}
standalone_launcher --> standalone_application
standalone_application -> server
embedded_launcher -> server
server ---> asciidoctorj
server "starts" -up-> core_server
note right of core_server
Provides server communication protocol
for client.
end note
asciidoctorj -> jruby
jruby->ad
client <.down...> core_server
@enduml
| false | true | false | false | class |
3568361540eec8449f29fa8ca62b10b068e795da | dda7b506188d7a34ac15ae3b7c3a55f8c94eabe7 | /src/main/java/com/clexel/dp/uml/interface.puml | bafbd1b076407efc18bec33d8c1911bd6fa1201f | [
"Apache-2.0"
] | permissive | jonathanzhan/design-pattern | 77e7088c37a40320c94f18f4f68dbfff260639d0 | 3b118a1e0769b78127ed806b95ff011db5b15be8 | refs/heads/master | 2021-07-05T21:20:38.942127 | 2019-08-29T09:37:57 | 2019-08-29T09:37:57 | 191,871,045 | 0 | 0 | Apache-2.0 | 2020-10-13T13:53:42 | 2019-06-14T03:37:20 | Java | UTF-8 | PlantUML | false | false | 53 | puml | @startuml
interface List {
size():int
}
@enduml | false | true | false | false | class |
03e2a5d3826dc3052c5c2f8226d8bc52c89bb3c1 | 1e3dba3f02025ce0e7ff066565f56eeb516bcea0 | /docs/SprintC/US_5/UC5_SD.puml | 979e43bbca860c2a61ce0bc7f7e8dd11ef345283 | [] | no_license | RuiRioPina/ManyLabs | 1e3f413a08ef6ed2ad35b0326f992fef2808a4c7 | 4ef550952a81c0ce24b47dd85b3062e0c32df05b | refs/heads/master | 2023-06-10T21:37:15.884362 | 2021-06-20T21:44:38 | 2021-06-20T21:44:38 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,270 | puml | @startuml
autonumber
actor "Medical Lab Technician" as MEDLT
participant ":GenerateSampleUI" as UI
participant ":GenerateSampleController" as CTRL
participant ":Company" as CMP
participant ":ClinicalAnalysisLaboratory" as LAB
participant "ts:\nTestStore" as TS
participant "bcc:\nBarcodeController" as BCC
participant ":API" as API
participant "s:\nSample" as S
activate MEDLT
MEDLT -> UI : register new samples
activate UI
UI -> CTRL : lt=getTestsWithoutSamples()
activate CTRL
CTRL -> CMP : ts=getTestStore()
activate CMP
CMP -> LAB : ts=getTestStore()
activate LAB
deactivate LAB
deactivate CMP
CTRL -> TS : lt=getTestsWithoutSamples()
activate TS
deactivate TS
deactivate CTRL
UI --> MEDLT : shows tests list and ask to select one
deactivate UI
MEDLT -> UI : selects a test
activate UI
UI --> MEDLT : request how many samples to create
deactivate UI
MEDLT -> UI : types the number of samples to create
activate UI
UI -> CTRL : createSamples(testCode, numberOfSamples)
activate CTRL
CTRL -> TS : t=getTestByInternalCode(testCode)
activate TS
deactivate TS
loop until all the samples are created
ref over CTRL, TS , S, BCC, API: UC5_SD_CreatingSamples.svg
end loop
UI --> MEDLT : informs operation success
deactivate CTRL
deactivate UI
deactivate MEDLT
@enduml | false | true | false | false | usecase |
44558f289030ada12e5d0e5faeae45352406fa39 | 4b81e72878f40b705ac32cf8e136311dc4dc3699 | /app/src/main/java/sud_tanj/com/icare/Backend/Plugins/Plugins.plantuml | 6df777e8d44e06570b0cb543a12a5e1c54f52f74 | [] | no_license | sudtanj/iCare-PHR | 826f6e1ffa0b4217ed128a36386a7494e22c521e | 2d334a5dd7854b8cc204dd8adbe9f74d86c7d694 | refs/heads/master | 2020-03-23T04:46:07.948787 | 2019-12-22T03:22:09 | 2019-12-22T03:22:09 | 141,104,375 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,051 | plantuml | @startuml
title __PLUGINS's Class Diagram__\n
package sud_tanj.com.icare {
package sud_tanj.com.icare.Backend {
package sud_tanj.com.icare.Backend.Plugins {
abstract class BasePlugin {
{static} - basePluginList : List<BasePlugin>
+ BasePlugin()
{static} + init()
# onEventListenerFired()
+ fireEventListener()
+ onDispose()
{static} + getBasePluginList()
}
}
}
}
package sud_tanj.com.icare {
package sud_tanj.com.icare.Backend {
package sud_tanj.com.icare.Backend.Plugins {
interface PluginListener {
{static} + dataSnapshot : DataSnapshot
{abstract} + processInBackground()
}
}
}
}
BasePlugin -up-|> Runnable
BasePlugin -up-|> BaseAbstractComponent
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 |
508aad18dc0b0d006b6e59d9a09069d99c3fe87e | 564a8e6f2693ce6670d069a552ccdc139c229df4 | /address-saga.puml | 51b214e5c6c8414d2549292028f11a9155377b66 | [] | no_license | CardosoGit/axon-multi | ecae5bf07e6769c0e7b3e6cbd23b4bac48137e9c | 560d6ac05959c408630879543126f4ee339ee3d0 | refs/heads/master | 2023-04-09T10:30:17.769677 | 2021-04-15T05:11:58 | 2021-04-15T05:11:58 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,047 | puml | @startuml
actor "User" as U
boundary "API" as I
participant "Command\nBus" as C
entity "Person" as P
participant "Event\nBus" as E
control "Saga" as S
entity "Address" as A
database "DB" as D
autonumber
U -> I: POST:\n/person/{personId}/address
I -> C: CMD:\nRequestPrivateAddressAssignmentCommand
C -> P: CMD:\nRequestPrivateAddressAssignmentCommand
P --> E: EVT:\nPrivateAddressAssignmentRequestedEvent
E --> S: EVT:\nPrivateAddressAssignmentRequestedEvent\n<b>START</b>
S -> D: JPA:\npersist Saga
S -> C: CMD:\nCreatePrivateAddressCommand
C -> A: CMD:\nCreatePrivateAddressCommand
A --> A: EVT:\nPrivateAddressCreatedEvent
A -> D: JPA:\npersist address
A --> E: EVT:\nPrivateAddressCreatedEvent
E --> S: EVT:\nPrivateAddressCreatedEvent
S -> C: CMD:\nAssignPrivateAddressCommand
C -> P: CMD:\nPrivateAddressAssignedEvent
P --> P: EVT:\nPrivateAddressAssignedEvent
P --> D: JPA:\npersist person/address relation
P --> E: EVT:\nPrivateAddressAssignedEvent
E --> S: EVT:\nPrivateAddressAssignedEvent\n<b>END</b>
S -> D: JPA\nremove Saga
@enduml | false | true | false | false | sequence |
6e9f03be4091df56be58ff5af94e469f7e2fc003 | 466b6cc80d7496018369c1eb3d2796f506c37099 | /diagram.puml | d4acfbfe40eec051a2f6f818eeaa9b01c3f091bb | [] | no_license | CyanoFresh/oop-coursework-s3 | 7959da5c3f954a4c112f8287721885481f6c4464 | a7bdaf31f291a9a5c8902861434cd4ae68c00d5a | refs/heads/master | 2020-09-26T07:40:43.510968 | 2020-01-06T01:10:22 | 2020-01-06T01:10:22 | 210,690,052 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,079 | puml | @startuml
interface Readable {
read()
}
interface Writeable {
write()
}
class Array<T> {
+assign(T)
+operator[](int)
}
class Date {
- int year
- int month
- int day
}
class Customer {
- long id
- float total
- float discount
+ operator+(int)
}
class Product {
- string name
- float price
- bool hasDiscount
+ operator+(int)
}
class Order {
- Customer customer
- Array<Product *> products
- Date date
- float totalWithDiscount
- float total
+ addProduct(Product)
}
class DailyReport {
- Array<Order *> orders
- Date date
+ addOrder(Order)
}
Order *- Date
Order o-- Product
Order o-- Customer
DailyReport o-- Order
DailyReport *-- Date
Writeable <|.. Order
Writeable <|. Product
Writeable <|. Customer
Writeable <|. Date
Writeable <|.. DailyReport
Readable <|. Date
Readable <|. Customer
Readable <|. Product
Readable <|.. Order
Readable <|.. DailyReport
class std::invalid_argument {
}
class ValidationException {
}
std::invalid_argument <|-- ValidationException
@enduml | false | true | false | false | class |
b9bfe8bc08e25b82f7d0270bfd9e599cdb11d485 | eec795fe8c5846fabbe68b2aa68f87ca7f024ffc | /Diagrams/SequenceDiagrams/seq-position-1.3.0.plantuml | 64a65881321939c194cb1ed3dab8037e4d84681e | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | AlbogastAman/docs | 933dac710c40be2533bab257f3b13a505d3bdd45 | d179f6df93770e8c00bbe168b49f9ee5104faf3b | refs/heads/master | 2020-04-22T20:23:12.401158 | 2019-02-12T14:34:13 | 2019-02-12T14:34:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,926 | plantuml | /'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Georgi Georgiev <georgi.georgiev@modusbox.com>
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
* Miguel de Barros <miguel.debarros@modusbox.com>
--------------
******'/
@startuml
' declate title
title 1.3.0. Position Handler Consume (single message)
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' collections - Kafka Topics
' control - Kafka Consumers
' entity - Database Access Objects
' database - Database Persistance Store
' declare actors
collections "topic-transfer-position" as TOPIC_TRANSFER_POSITION
control "Position Handler" as POS_HANDLER
collections "Transfer-Topic" as TOPIC_TRANSFERS
' entity "Position DAO" as POS_DAO
collections "Event-Topic" as TOPIC_EVENTS
collections "Notification-Topic" as TOPIC_NOTIFICATIONS
' entity "Participant DAO" as PARTICIPANT_DAO
' entity "Transfer DAO" as TRANS_DAO
' database "Central Store" as DB
box "Central Service" #LightYellow
participant TOPIC_TRANSFER_POSITION
participant POS_HANDLER
participant TOPIC_EVENTS
participant TOPIC_TRANSFERS
participant TOPIC_NOTIFICATIONS
' participant POS_DAO
' participant PARTICIPANT_DAO
' participant TRANS_DAO
' participant DB
end box
' start flow
activate POS_HANDLER
group Position Handler Consume
alt Consume Prepare message for Payer
TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume Position event message for Payer
activate TOPIC_TRANSFER_POSITION
deactivate TOPIC_TRANSFER_POSITION
break
group Validate Event
POS_HANDLER <-> POS_HANDLER: Validate event - Rule: type == 'position' && action == 'prepare'\n<color #FF0000><b>Error codes:</b> 2001</color>
end
end
group Persist Event Information
|||
POS_HANDLER -> TOPIC_EVENTS: Publish event information
ref over POS_HANDLER, TOPIC_EVENTS : Event Handler Consume {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-event-9.1.0.svg 9.1.0.]]} \n
|||
end
|||
ref over POS_HANDLER: Prepare Position Handler Consume {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-position-1.3.1-prepare.svg 1.3.1-prepare]]} \n
POS_HANDLER -> TOPIC_TRANSFERS: Produce message
POS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message
else Consume Fulfil message for Payee
TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume Position event message for Payee
activate TOPIC_TRANSFER_POSITION
deactivate TOPIC_TRANSFER_POSITION
break
group Validate Event
POS_HANDLER <-> POS_HANDLER: Validate event - Rule: type == 'position' && action == 'commit'\n<color #FF0000><b>Error codes:</b> 2001</color>
end
end
group Persist Event Information
|||
POS_HANDLER -> TOPIC_EVENTS: Publish event information
ref over POS_HANDLER, TOPIC_EVENTS : Event Handler Consume {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-event-9.1.0.svg 9.1.0.]]} \n
|||
end
|||
ref over POS_HANDLER: Fulfil Position Handler Consume {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-position-1.3.2-fulfil.svg 1.3.2-fulfil]]} \n
POS_HANDLER -> TOPIC_TRANSFERS: Produce message
POS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message
else Consume Abort message
TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume Position event message
activate TOPIC_TRANSFER_POSITION
deactivate TOPIC_TRANSFER_POSITION
break
group Validate Event
POS_HANDLER <-> POS_HANDLER: Validate event - Rule: type == 'position' &&\naction IN ['timeout-reserved', 'reject', 'fail']\n<color #FF0000><b>Error codes:</b> 2001</color>
end
end
group Persist Event Information
|||
POS_HANDLER -> TOPIC_EVENTS: Publish event information
ref over POS_HANDLER, TOPIC_EVENTS : Event Handler Consume {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-event-9.1.0.svg 9.1.0.]]} \n
|||
end
|||
ref over POS_HANDLER: Abort Position Handler Consume {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-position-1.3.3-abort.svg 1.3.3-abort]]} \n
POS_HANDLER -> TOPIC_TRANSFERS: Produce message
POS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message
end
end
deactivate POS_HANDLER
@enduml
| false | true | true | false | sequence |
0e46ac30a07e610f5c574c1984fa0455ae310970 | 80e2fa90b879f10a582396aa28d98767110fcba9 | /src/main/java/AdapterPattern/Adapter_default.puml | fa077e5fea3e21f173759db8a7ced416af9785dc | [] | no_license | zhutianpeng/design-pattern-example | c964ff1c71a023e32bc5abe68182f704ce61c56e | 5b8603ce4fa9e39369429ab8b432b7605f00b620 | refs/heads/master | 2020-08-23T10:32:34.781374 | 2019-11-04T15:32:05 | 2019-11-04T15:32:05 | 216,596,581 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 266 | puml | @startuml
class AbstractService{
+method1()
+method2()
+method3()
+method4()
}
class ServiceAdapter{
+method1()
+method2()
+method3()
+method4()
}
class Class{
+method1()
+method2()
}
AbstractService <|.right. ServiceAdapter
ServiceAdapter<|-right- Class
@enduml | false | true | false | false | class |
6f400d16a67537870a5f5c70988c2482d05feab7 | 4e72f7815a4d7103056f782b0b4036fe0f7e4d5a | /django-app/meta_files/diagrams/Controllers.puml | 56f2f8933b941fbe16915d5965cf66f4b03b1e42 | [] | no_license | krylovam/lfmsh_bank | bc2d561db2971d6845c4f893118d33391f99eace | 9e0ffcb61e1db235c199acb2425e78af78b27ad3 | refs/heads/master | 2023-08-16T19:51:15.762584 | 2022-07-31T09:06:39 | 2022-07-31T09:06:39 | 228,545,204 | 0 | 0 | null | 2019-12-17T06:07:39 | 2019-12-17T06:07:38 | null | UTF-8 | PlantUML | false | false | 1,170 | puml | @startuml
title: Controllers
skinparam class {
BackgroundColor #f5f5f5
ArrowColor #8d7edc
BorderColor #8d7edc
}
class TransactionService{
TransactionControllerFactory transaction_controller_factory
+ update(Transaction transaction, Map new_creation_map)
+ create_from_existing(Transaction transaction)
+ create(Map creation_map, TransactionType type)
+ revert(Transaction transaction)
+ apply(Transaction transaction)
}
class TransactionControllerFactory{
- Map<TransactionType, TransactionController> registred_transaction_controllers
+ TransactionController get_controller_for(TransactionType)
}
interface TransactionController <<Singleton>>{
View transactionForm
Transaction create(Map creation_map)
}
class SeminarTransactionController <<Singleton>>{
}
class LectureTransactionController <<Singleton>>{
}
class DefaultTransactionController <<Singleton>>{
}
SeminarTransactionController ..|> TransactionController
LectureTransactionController ..|> TransactionController
DefaultTransactionController ..|> TransactionController
TransactionControllerFactory --* TransactionService
TransactionController --* TransactionControllerFactory
@enduml | false | true | false | false | class |
9b4149dbb3f90436d821035f7e3d45aa7178fe91 | e618e68be491bb98c0573a467be63146a053cc6c | /SA/sequencediagram/category/DeleteCategory.puml | 6526f559f0ef93d3049a41985eb41a1598a3334d | [] | no_license | dedeandress/belanjayukid-be-services | 14101c676e2bdd56c5df72b9ccddae648951cf8b | 9bedbf42cdd0b764e27c9dc839df8b401ac0bb62 | refs/heads/master | 2022-04-07T04:29:30.602535 | 2020-02-28T05:39:33 | 2020-02-28T05:39:33 | 194,123,362 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,897 | puml | @startuml
title: Delete Category Sequence Diagram
actor user
participant BelanjaYukFE
database BelanjaYukDB
box "BelanjaYuk.id" #LightBlue
participant BelanjaYukBE
participant CategoryResolver
participant CategoryService
participant CategoryRepository
participant JWTUtility
participant BelanjaYukDB
end box
user -> BelanjaYukFE ++ : delete category menu
BelanjaYukFE -> BelanjaYukBE ++ : /graphql delete category
note right of BelanjaYukFE
content type: application/json
request body:
mutation{
deleteCategory(categoryId)
}
end note
BelanjaYukBE -> CategoryResolver ++ : call CategoryResolver
CategoryResolver -> CategoryService ++ : call CategoryService
note left
passing:
- context
- categoryId
end note
CategoryService -> JWTUtility: validate token and claim role
alt #LightGreen token is not expired
CategoryService -> CategoryRepository ++ : update status category to false
CategoryRepository -> BelanjaYukDB ++ : update category set status is passed from request
BelanjaYukDB --> CategoryRepository -- : affected row no error
CategoryRepository --> CategoryService -- : affected row no error
CategoryService --> CategoryResolver : category deleted
CategoryResolver --> BelanjaYukBE : category deleted
BelanjaYukBE --> BelanjaYukFE : category deleted
alt #LightYellow role is admin or cashier
else error: role is not admin or cashier
CategoryService --> CategoryResolver : Error: Not Authorized
CategoryResolver --> BelanjaYukBE : Error: Not Authorized
BelanjaYukBE --> BelanjaYukFE: Message: You're not authorize
end alt
else token is expired
CategoryService --> CategoryResolver -- : Error: token expired
CategoryResolver --> BelanjaYukBE -- : Error: token expired
BelanjaYukBE --> BelanjaYukFE -- : Message: token was expired
end alt
@enduml | false | true | false | false | usecase |
cb6849d41c176d0e543ac0faf7f19ed4effbc704 | d3f5323b94d6a2b82dd03958d8eb834acf0fa55a | /orchid/src/main/resources/help/class-diagram/class-diagram-16.uml | 620123ed6922b07d808f6bbfa7195703a9083840 | [] | no_license | unidal/garden | 620d34166804c5f37a0b800befe08b54e87dfee7 | fd77faadb53b86ac251b8d0b8d6a7055e3a74735 | refs/heads/master | 2022-10-31T16:58:16.907708 | 2021-11-22T09:57:38 | 2021-11-22T09:57:38 | 2,817,716 | 8 | 7 | null | 2022-10-12T20:40:47 | 2011-11-21T05:01:48 | HTML | UTF-8 | PlantUML | false | false | 122 | uml | @startuml
class "This is my class" as class1
class class2 as "It works this way too"
class2 *-- "foo/dummy" : use
@enduml | false | true | false | false | class |
97ffe30cfee85854b9a6b6e08430b74d7705e176 | e10cac196aa29d7353b36e26c7bf65fa39c5763b | /docs/DG_Diagrams/BusCommand/getBusStop.puml | 5548d93c9a65e141c09cf33950bfa6889e42c186 | [] | no_license | wamikamalik/tp | 174c866802ecc34139def88fa91c79d9c682c7bc | d6beb431ad97a6608bcdf8418f698c6faa779c61 | refs/heads/master | 2023-01-11T22:41:16.157009 | 2020-11-09T13:17:45 | 2020-11-09T13:17:45 | 299,304,875 | 1 | 0 | null | 2020-09-28T12:41:08 | 2020-09-28T12:41:07 | null | UTF-8 | PlantUML | false | false | 1,014 | puml | @startuml
mainframe **sd** get bus stop
box Logic
participant ":BusCommand"
participant ":SimilarityCheck" <<Class>>
end box
box Model
participant ":BusStops" <<Class>>
end box
box Ui
participant ":Ui" <<Class>>
end box
activate ":BusCommand"
":BusCommand"->":BusCommand": similarLocations(busStop)
activate ":BusCommand"
":BusCommand"->":SimilarityCheck": similarLoc(busStop)
activate ":SimilarityCheck"
":SimilarityCheck"-->":BusCommand": ArrayList<String> possibleLocation
deactivate ":SimilarityCheck"
":BusCommand"-->":BusCommand"
deactivate ":BusCommand"
alt "possibleLocation empty"
":BusCommand"->":BusCommand": setBusStop(busStop)
activate ":BusCommand"
":BusCommand"->":BusStops": findBusStop(busStop)
activate ":BusStops"
":BusStops"-->":BusCommand"
deactivate ":BusStops"
":BusCommand"-->":BusCommand"
deactivate ":BusCommand"
else "possibleLocation not empty"
":BusCommand"->":Ui": printPossibleLocsMessage(possibleLocations)
activate ":Ui"
":Ui"-->":BusCommand"
deactivate ":Ui"
end
@enduml | false | true | false | false | sequence |
35ce689710f788f17a29d3bd2ee33532da26a2f3 | f18ba1fbeb7f8d6149aff64633f9c77a92cfc936 | /assignments/k.mukhametzyanov/TP3/tp3.plantuml | 47397b03a4efb044597c551cb20eb1fe2715c2b7 | [] | no_license | kzvdar42/InnopolisDesignPatterns | c34a728b7964f22a6b774a4616b7ac9515ae6263 | b1042e76875c9ccf69017e20edcea4b9e7b5682b | refs/heads/master | 2021-02-07T05:17:54.245396 | 2020-04-19T22:40:48 | 2020-04-19T22:40:48 | 243,987,548 | 0 | 0 | null | 2020-02-29T14:54:34 | 2020-02-29T14:54:34 | null | UTF-8 | PlantUML | false | false | 1,007 | plantuml | @startuml
title __TP3's Class Diagram__\n
namespace pizzas {
class pizzas.FourCheesesPizza {
}
}
namespace pizzas {
class pizzas.HawaiiPizza {
}
}
namespace pizzas {
class pizzas.InnopolisPizza {
}
}
namespace pizzas {
abstract class pizzas.Pizza {
}
}
namespace pizzas {
abstract class pizzas.Pizzeria {
}
}
namespace pizzas {
class pizzas.PizzeriaJimmy {
}
}
namespace pizzas {
class pizzas.PizzeriaRobby {
}
}
namespace tests {
class tests.Tests {
}
}
pizzas.FourCheesesPizza -up-|> pizzas.Pizza
pizzas.HawaiiPizza -up-|> pizzas.Pizza
pizzas.InnopolisPizza -up-|> pizzas.Pizza
pizzas.PizzeriaJimmy -up-|> pizzas.Pizzeria
pizzas.PizzeriaRobby -up-|> pizzas.Pizzeria
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 |
0557d675ac7bbb355102492b5e6877c347c7e8dd | a6beb27668771757ce139b884c9fe22ac5358759 | /docs/process_sequence.puml | 419254935561e2f6642105ee3be1b86ca29c024f | [
"MIT"
] | permissive | kai5263499/diy-jarvis | d7cc8f4165d3595b4365648adbefb8ba65603b90 | 2de36560d204deebfbc87e76367ce2c54e629ccf | refs/heads/master | 2023-03-04T05:16:23.456145 | 2023-02-20T00:19:55 | 2023-02-20T00:19:55 | 191,369,321 | 10 | 1 | MIT | 2023-02-20T00:19:57 | 2019-06-11T12:42:04 | Go | UTF-8 | PlantUML | false | false | 385 | puml | @startuml Process sequence view
mic_capture --> deepspeech: <<RegisterAudioSourceRequest>> with SourceID
deepspeech --> mic_capture: Connect and listen for raw WAV data on SourceID topic
deepspeech <-- mic_capture: Sends raw WAV data
deepspeech --> text_processor: <<TextRequest>> with text from speech
text_processor --> speaker_output: <<OutputRequest>> with action results
@enduml | false | true | false | false | sequence |
9cb0f2d73b252ad400d13451b372be8306bd248c | 452c3c60610e00b087ff890b90f4d18b4112e8df | /images/state-machine.plantuml | f61762b8e0d6d70866c1efc549c721e790da3566 | [
"MIT"
] | permissive | torsteis/vipps-invoice-api | a1a48746e7892ff093536c0f2b11ebe7691664a1 | 9c579ab29b671e13034bb084739c425cb0f0a850 | refs/heads/master | 2020-03-27T22:03:05.137722 | 2018-11-05T11:16:55 | 2018-11-05T11:16:55 | 147,200,118 | 0 | 0 | MIT | 2018-09-03T12:11:53 | 2018-09-03T12:11:53 | null | UTF-8 | PlantUML | false | false | 539 | plantuml | @startuml
skinparam monochrome true
Title State machine for an invoice
[*] --> Created
Created --> Pending : T1
Created --> Rejected : T2
Created --> Revoked : T3
Pending --> Expired : T4
Pending --> Deleted : T5
Pending --> Approved : T6
Pending --> Revoked : T7
Approved --> Approved : T8
Approved --> Pending : T9
Approved --> Deleted : T10
Expired --> [*]
Revoked --> [*]
Deleted --> [*]
Rejected --> [*]
Approved : - Amount\n- Due
Rejected : - Problems
note bottom of Approved
Final state.
Not verifiable
end note
@enduml | false | true | false | false | sequence |
7409bc645d2d46dda73205bee27ae6b732dc6907 | e0c70b2616b12f210c542c6c6511e7e9b83fd461 | /plaid-service/docs/plaid_sequence_diagram.puml | 406b3a9e2dfff05aee8b436b822b2b8b9a532a40 | [] | no_license | fnxpt/backbase-plaid | 9da8efb3fbe3a849cb125d764e1c6826ad049842 | 052231bc5ee764397c0417f39f39d95c44c9fbb3 | refs/heads/main | 2023-03-03T05:18:51.394461 | 2021-02-18T10:11:36 | 2021-02-18T10:11:36 | 340,009,503 | 0 | 0 | null | 2021-02-18T10:11:15 | 2021-02-18T10:11:14 | null | UTF-8 | PlantUML | false | false | 3,937 | puml | @startuml
actor User
participant App
box "Plaid Link" #LightYellow
participant "Plaid Link" as PLink
end box
box "Backbase Plaid Service" #LightBlue
participant "Plaid Link Service" as PLServe
participant "Item Service" as IServe
participant "Account Service" as AServe
participant "WebhookService" as WServe
participant "Transaction Service" as TServe
database "Backbase Database" as BD
end box
box "Backbase DBS"
participant "Product Ingestion Saga" as S #lightGreen
participant "Transaction Ingestion Saga" as TS #lightGreen
participant "Access Control" as AC
participant "Product Summary" as PS
participant "Transactions" as T
end box
box "Plaid" #LightYellow
participant "Plaid" as Plaid
end box
box "External Bank" #FFBBBB
participant "External Bank" as EB
end box
== Link external accounts ==
User -> App: Link Accounts (Create item)
activate App
App -> PLServe: Create Plaid Link
activate PLServe
PLServe -> Plaid: <<linkTokenCreateRequest>> request containing configuration properties
activate Plaid
Plaid --> PLServe: linkTokenCreateResponse, contains Link Token
deactivate Plaid
App <-- PLServe: Link Token
deactivate PLServe
App-> PLink: Invoke link UI
activate PLink
PLink -> User: Link UI
activate User
User -> User: User selects Bank
User -> EB: User authenticates with External Bank and gives Consent to Plaid
activate EB
EB -> Plaid: Consent
Plaid -> PLink: Public Access Token
PLink -> App: Public Access Token
deactivate EB
deactivate PLink
deactivate User
deactivate
App -> PLServe: Public Token
activate PLServe
PLServe -> Plaid: <<Public Token Exchange>> exchanges the public token for an access token and an Item ID
Plaid --> PLServe: Exchange response contain Access token and Item ID
PLServe -> BD: Persist Item ID, user ID, access Token
== ingest accounts ==
PLServe -> AServe: Ingest Plaid Accounts, access token
activate AServe
AServe -> Plaid: <<Request Plaid Accounts>> access token
activate Plaid
Plaid --> AServe: List of Plaid accounts for the users Item
deactivate Plaid
AServe-> BD: accounts
AServe -> AServe: Map Accounts to Arrangements
AServe -> S: Ingest Product Group
activate S
S -> PS: Post Arrangements
PS -> S: Ingested Arrangements
S -> AC: Greate Data Group
AC -> S: Data Group
S -> AC: Assign Data Group with Permissions
S -> AC: Link Data Group to Service Agreement
deactivate S
deactivate AServe
== webhooks ==
PLServe -> WServe: Set up webhook, access token item id
activate WServe
WServe -> BD: Store webhook data
WServe -> Plaid: <<Item Webhook Update request>> contains access token and webhook url
Plaid --> WServe: Item webhook update response, contains Item available for update
deactivate WServe
== ingest transactions ==
PLServe -> TServe: Ingest transactions, access token
activate TServe
PLServe -> App: Link Created
deactivate PLServe
TServe -> Plaid: <<Get transactions for Item>> \naccess token, start date of transactions end date of transactions\n(with offset for pagination)
Plaid --> TServe: List of transactions
TServe -> TS: Ingest Transactions
deactivate TServe
== plaid push transactions ==
Plaid -> WServe: Webhook containing number of updated tranactions
activate WServe
WServe -> TServe: Ingest Transactions
deactivate WServe
activate TServe
TServe -> Plaid: <<Get transactions for Item>> \naccess token, start date of transactions end date of transactions\n(with offset for pagination)
Plaid --> TServe: List of transactions
TServe -> TS: Processes Transactions
deactivate TServe
deactivate WServe
@enduml | false | true | false | false | usecase |
c00f8be363e258f41602877be633a49d5c7f415b | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/red/1161391/sp1/design2.puml | a971b1585446e82c06d118cf2d121acf44c1c89f | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,148 | puml | @startuml design2.png
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
actor User
boundary MenuView
control MenuPresenter
control NoteService
control NoteController
control NoteServiceImpl
entity NoteRepository
entity UserRepository
database Database
box "NSheets Client"
participant MenuView
participant MenuPresenter
end box
box "Server"
participant NoteServiceImpl
participant NoteController
participant NoteService
participant UserRepository
participant NoteRepository
end box
box "Database"
participant Database
end box
User -> MenuPresenter : onReveal() / navigate to page
MenuPresenter ->> NoteServiceImpl: getNotesByUser(String username)
NoteServiceImpl -> NoteController : getNotesByUser(String username)
NoteController -> UserRepository: User user = getUserByUsername(String username)
NoteController -> NoteService : getNotesByUser(User user)
NoteService -> NoteRepository : getNotesByUser(User user)
NoteRepository -> Database : fetch
NoteController ->> MenuPresenter : onSuccess()
MenuPresenter -> MenuView : refreshNotes()
@enduml | false | true | false | false | usecase |
10123e82d4015d97e51b3bbab950b8f1b740ea9a | 328ad53d13281389d3fbf7aef294ec1f4080c297 | /docs/go-graphsync.puml | 61f1b2ef7d3208d82d11a62bb48949e6dd21f307 | [
"Apache-2.0",
"MIT"
] | permissive | jimpick/go-graphsync | 8fc83ad2b1c6e8e0b5c367b94268062d1874138d | 1bdc5585248c9c77b82473ee2d05a4cd6e25db19 | refs/heads/master | 2023-02-02T16:07:37.271810 | 2020-12-17T18:21:23 | 2020-12-17T18:21:23 | 301,290,968 | 0 | 0 | NOASSERTION | 2020-10-05T04:22:39 | 2020-10-05T04:16:20 | null | UTF-8 | PlantUML | false | false | 12,017 | puml | @startuml "GraphSync"
package "go-ipld-prime" {
interface Node {
}
interface NodeBuilder {
}
interface Path {
}
interface Link
package traversal {
package selector {
interface Selector {
}
}
interface AdvVisitFn {
}
class Config {
}
class Progress {
WalkAdv(Node, Selector, AdvVisitFn)
}
Progress *-- Config
}
interface Storer {
}
interface Loader {
}
}
package "go-graphsync" {
interface Cid2BlockFn {
}
class GraphSync {
Request(ctx context.Context, p peer.ID, rootedSelector Node) (chan ResponseProgress, chan error)
GetBlocks(ctx context.Context, p peer.ID, rootedSelector Node) (chan blocks.Block, chan error)
ReceiveMessage(ctx context.Context, sender peer.ID, incoming GraphSyncMessage)
ReceiveError(error)
}
GraphSync *-- Loader
package network {
interface Receiver {
ReceiveMessage(ctx context.Context, sender peer.ID, incoming GraphSyncMessage)
ReceiveError(error)
}
interface GraphSyncNetwork {
SendMessage(ctx context.Context, receiver peer.Id, m GraphSyncMessage)
SetDelegate(receiver Receiver)
ConnectTo(ctx context.Context, peer.ID) error
NewMessageSender(context.Context, peer.ID) (MessageSender, error)
}
interface MessageSender {
SendMsg(context.Context, GraphSyncMessage) error
Close() error
Reset() error
}
Receiver <|-- GraphSync : receiver for
class libP2PGraphSyncNetwork {
}
GraphSyncNetwork <|-- libP2PGraphSyncNetwork
object "Package Public Functions" as goGraphSyncNetworkPF {
NewLibP2PNetwork(host libp2pHost.Host) GraphSyncNetwork
}
goGraphSyncNetworkPF .. libP2PGraphSyncNetwork
}
package messagequeue {
class MessageQueue {
AddRequest(GraphSyncRequest)
AddResponses([]GraphSyncResponse, []Block) <-chan struct{}
Startup()
Shutdown()
}
object "PackagePublicFunctions" as goMessageQueuePF {
New(context.Context, peer.ID, GraphSyncNetwork) *MessageQueue
}
GraphSync .. goMessageQueuePF
MessageQueue *-- GraphSyncNetwork
}
package peermanager {
class PeerManager {
Connected(p peer.ID)
Disconnected(p peer.ID)
ConnectedPeers() []peer.ID
GetProcess(peer.ID) PeerProcess
}
class PeerMessageManager {
SendRequest(peer.ID, GraphSyncRequest)
SendResponses(peer.ID, []GraphSyncResponse, []Block)
}
object "Package Public Functions" as goPeerManagerPF {
New(ctx context.Context, createPeerProcess func(context, peer.ID) PeerProcess)
NewMessageManager(ctx context.Context, createPeerQueue func(context, peer.ID) MessageQueue)
}
GraphSync .. goPeerManagerPF
PeerManager <|-- PeerMessageManager
PeerMessageManager *-- MessageQueue
}
package linktracker {
class LinkTracker {
ShouldSendBlockFor(Link) bool
RecordLinkTraversal(GraphSyncRequestID, Link, bool)
FinishRequest(GraphSyncRequestID) bool
}
object "Package Public Functions" as goLinkTrackerPF {
New() *LinkTracker
}
}
package requestmanager {
package types {
interface ResponseProgress {
}
interface AsyncLoadResult {
}
}
package "loader" as reqLoader {
interface AsyncLoadFn {
}
object "Package Public Functions" as goRequestLoaderPF {
WrapAsyncLoader(context.Context, AsyncLoadFn, GraphSyncRequestID, chan error)
}
}
package asyncloader {
package loadattempqueue {
interface LoadRequest {
}
interface LoadAttempter {
func(GraphSyncRequestID, ipld.Link) ([]byte, error)
}
class LoadAttemptQueue {
AttemptLoad(LoadRequest, bool)
ClearRequest(GraphSyncRequestID)
RetryLoads()
}
object "Package Public Functions" as goLoadAttemptQueuePF {
NewLoadRequest(GraphSyncRequestID, ipld.Link, chan AsyncLoadResult) LoadRequest
New(LoadAttempter) *LoadAttemptQueue
}
}
package unverifiedblockstore {
class UnverifiedBlockStore {
AddUnverifiedBlock(ipld.Link, []byte)
PruneBlocks(func(ipld.Link) bool)
VerifyBlock(ipld.Link) ([]byte, error)
}
object "Package Public Functions" as goUnverifiedBlockStore {
New(Storer) *UnverifiedBlockStore
}
}
package responsecache {
class ResponseCache {
FinishRequest(GraphSyncRequestID)
AttemptLoad(GraphSyncRequestID, ipld.Link) ([]byte, error)
ProcessResponse(map[GraphSyncRequestID]Metadata, []blocks.Block)
}
object "Package Public Functions" as goResponseCachePF {
New(UnverifiedBlockStore) *ResponseCache
}
ResponseCache *-- LinkTracker
ResponseCache *-- UnverifiedBlockStore
ResponseCache .. goLinkTrackerPF
}
class AsyncLoader {
StartRequest(GraphSyncRequestID)
ProcessResponse(map[graphsync.RequestID]metadata.Metadata, []blocks.Block)
AsyncLoad(requestID graphsync.RequestID, link ipld.Link) AsyncLoadResult
CompleteResponsesFor(GraphSyncRequestID)
CleanupRequest(GraphSyncRequestID)
}
object "Package Public Functions" as goAsyncLoaderPF {
New(context.Context, ipld.Loader, ipld.Storer) *AsyncLoader
}
AsyncLoader *-- LoadAttemptQueue
AsyncLoader *-- ResponseCache
AsyncLoader *-- Loader
AsyncLoader *-- Storer
AsyncLoader .. goUnverifiedBlockStore
AsyncLoader .. goResponseCachePF
AsyncLoader .. goLoadAttemptQueuePF
}
class RequestManager {
SetDelegate(peerHandler PeerMessageManager)
SendRequest(ctx context.Context, p peer.ID, cidRootedSelector Node) chan ResponseProgress, chan error
ProcessResponses(peer.ID, []GraphSyncResponse, []blocks.Block)
}
object "Package Public Functions" as goRequestManagerPF {
New(ctx context.Context, asyncLoader AsyncLoader) *RequestManager
}
RequestManager *-- AsyncLoader
RequestManager *-- PeerManager
RequestManager .. goRequestLoaderPF
GraphSync *-- RequestManager
GraphSync .. goRequestManagerPF
}
package responsemanager {
package peertaskqueue {
package peertask {
class Task {
}
class TaskBlock {
MarkPrunable(Identifier)
PruneTasks()
Index()
SetIndex(int)
}
interface Identifier {
}
object "Package Public Functions" as goPeerTaskPF {
FIFOCompare(a, b *TaskBlock) bool
PriorityCompare(a, b *TaskBlock) bool
WrapCompare(func(a, b *TaskBlock) bool) func(a, b pq.Elem) bool
NewTaskBlock([]Task, int, peer.ID, func([]Task)) *TaskBlock
}
}
package peertracker {
class PeerTracker {
StartTask(Identifier)
TaskDone(Identifier)
Index()
SetIndex(int)
PushBlock(peer.ID, []Task, func([]Task))
PopBlock() *TaskBlock
Remove(Identifier)
Freeze()
Thaw() bool
FullThaw()
IsFrozen() bool
}
object "Package Public Functions" as goPeerTrackerPF {
New() *PeerTracker
PeerCompare(a, b pq.Elem) bool
}
PeerTracker *-- TaskBlock
PeerTracker .. goPeerTaskPF
}
class PeerTaskQueue {
PushBlock(to peer.ID, tasks ...Task)
PopBlock() *TaskBlock
Remove(identifier Identifier, p peer.ID)
ThawRound()
FullThaw()
}
PeerTaskQueue *-- PeerTracker
PeerTaskQueue .. goPeerTrackerPF
object "Package Public Functions" as goPeerTaskQueuePF {
New() *PeerTaskQueue
}
GraphSync .. goPeerTaskQueuePF
}
package "loader" as resLoader {
object "Package Public Functions" as goResponseLoaderPF {
WrapLoader(Loader,GraphSyncRequestID, PeerResponseSender) Loader
}
}
package responsebuilder {
class ResponseBuilder {
AddBlock(Block)
AddLink(GraphSyncRequestID, Link, bool)
AddCompletedRequest(GraphSyncRequestID, graphsync.ResponseStatusCode)
Empty() bool
Build() ([]GraphSyncResponse, []Block, error)
}
object "Package Public Functions" as goResponseBuilderPF {
New() *ResponseBuilder
}
}
package peerresponsemanager {
class PeerResponseManager {
SenderForPeer(p peer.ID) PeerResponseSender
}
class PeerResponseSender {
Startup()
Shutdown()
SendResponse(GraphSyncRequestID,Link,[]byte)
FinishRequest(GraphSyncRequestID)
FinishWithError(GraphSyncRequestID, graphsync.ResponseStatusCode)
}
object "Package Public Functions" as goPeerResponseManagerPF {
New(Context, func(Context, peer.ID) PeerResponseSender) *PeerResponseManager
NewResponseSender(Context, peer.ID, PeerMessageManager) PeerResponseSender
}
PeerResponseManager *-- PeerResponseSender
PeerResponseSender *-- LinkTracker
PeerResponseSender *-- ResponseBuilder
PeerResponseSender *-- PeerMessageManager
PeerResponseSender .. goLinkTrackerPF
PeerResponseSender .. goResponseBuilderPF
GraphSync .. goPeerResponseManagerPF
}
class ResponseManager {
ProcessRequests(context, peer.ID, []GraphSyncRequests)
}
object "Package Public Functions" as goResponseManagerPF {
New(Context, Loader, PeerResponseManager, PeerTaskQueue) *ResponseManager
}
GraphSync *-- ResponseManager
ResponseManager *-- Loader
ResponseManager *-- PeerResponseManager
ResponseManager *-- PeerTaskQueue
ResponseManager .. goResponseLoaderPF
GraphSync .. goResponseManagerPF
}
package message {
object "Package Public Functions" as goGraphSyncMessagePF {
func FromPBReader(pbr ggio.Reader) (GraphSyncMessage, error)
func FromNet(r io.Reader) (GraphSyncMessage, error)
func New() GraphSyncMessage
func NewRequest(GraphSyncRequestID, []byte, GraphSyncPriority) GraphSyncRequest
func CancelRequest(GraphSyncRequestID) GraphSyncRequest
func NewResponse(GraphSyncRequestID, graphsync.ResponseStatusCode, []byte) GraphSyncResponse
}
goGraphSyncMessagePF .. libP2PGraphSyncNetwork
class GraphSyncRequest {
Selector() []bytes
Priority() Priority
ID() int
IsCancel() bool
}
class GraphSyncResponse {
RequestID() int
Status() GraphSyncStatus
Extra() []bytes
}
interface GraphSyncMessage {
Requests() : []GraphSyncRequest
Responses() : []GraphSyncResponse
Blocks() : []Blocks
AddRequest(GraphSyncRequest)
AddResponse(GraphSyncResponse)
AddBlock(Block)
}
interface Exportable {
ToProto()
ToNet(w io.Writer) error
}
Exportable --|> GraphSyncMessage
GraphSyncRequest --* GraphSyncMessage
GraphSyncResponse --* GraphSyncMessage
}
package ipldutil {
object "Package Public Functions" as goIpldutilPF {
EncodeNode(ipld.Node) ([]byte, error)
DecodeNode([]byte) (ipld.Node, error)
ParseSelector(selector ipld.Node) (Selector, error)
Traverse(ctx context.Context, loader Loader, root ipld.Node, s Selector, fn AdvVisitFn) error
}
}
object "PackagePublicFunctions" as goGraphsyncPf {
New(ctx context.Context, network GraphSyncNetwork, loader Loader, storer Storer) GraphSync
}
}
package "go-filecoin" {
class "go-filecoin" {
}
"go-filecoin" *-- GraphSync
"go-filecoin" .. goGraphsyncPf
"go-filecoin" .. goGraphSyncNetworkPF
"go-filecoin" *-- RawLoader
"go-filecoin" *-- MulticodecDecodeTable
"go-filecoin" *-- LinkTargetNodePrototypeChooser
}
@enduml
| false | true | false | false | class |
572eadb66d700b6c49a4e99dc3b4e76ad5c4f101 | 9f09af28721bdfc9fe24d1c31e41f838eda258b9 | /asciidoc/uml/UML_UseCase.puml | 665335aba3fa2fd94079f922df091d20c3e9b5c9 | [] | no_license | wy8162/xperia | 9eac83ebf685b47a6abc1d51ca127fc7a428b523 | 606df647b7b891aabbf2eb5dd0ab80d029578ef4 | refs/heads/master | 2023-06-21T15:18:41.733277 | 2022-05-26T02:44:19 | 2022-05-26T02:44:19 | 208,347,338 | 0 | 0 | null | 2023-06-14T22:47:54 | 2019-09-13T21:12:02 | Java | UTF-8 | PlantUML | false | false | 448 | puml | @startuml
header Use Case
title Use Case
left to right direction
actor client
package Supermarket {
usecase "Buy Fruit" as UC1
usecase "Checkout" as UC2
}
client --> UC1
client --> UC2
package Parking {
usecase "Open Car Door" as UC3
usecase "Start Car" as UC4
}
note "Walking to parking lot" as N1
client .. N1
N1 .. UC3
client --> UC4
client --> (Leaving Home)
:Registar: --> UC2
note left of client : this is a client
@enduml
| false | true | false | false | usecase |
532a20888dd5121300e2764c807382cdd9eec422 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderReturnShipmentStateChangedMessagePayload.puml | 0e08fcfb8533835d56fe88fcf865b1273adf80cd | [] | 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 | 559 | 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 OrderReturnShipmentStateChangedMessagePayload [[OrderReturnShipmentStateChangedMessagePayload.svg]] extends OrderMessagePayload {
type: String
returnItemId: String
returnShipmentState: [[ReturnShipmentState.svg ReturnShipmentState]]
}
interface OrderMessagePayload [[OrderMessagePayload.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
95b1d46d4256ea9dc56878b857b2fcb2d6d61b40 | 6bbee52d396d1aca9dfeb24d5d4a93293e49470c | /src/main/java/com/inspiware/price/aggregator/store/store.plantuml | af2e6e9438d7096aa84d3f75d1d20eb16dca3813 | [] | no_license | rpayal/price-aggregator | 5d99dc92b87398c2f8001921e0b774eda6e4a86e | 49df131fc3a22dc35fc4d7eb11a12e0a453b1d5f | refs/heads/master | 2021-09-22T01:24:42.470662 | 2018-09-04T06:49:54 | 2018-09-04T06:49:54 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 991 | plantuml | @startuml
title __STORE's Class Diagram__\n
package com.inspiware.price.aggregator {
package com.inspiware.price.aggregator.store {
class InstrumentPriceMapStore {
- name : String
- internalStore : ConcurrentMap<K, V>
+ InstrumentPriceMapStore()
+ getName()
+ get()
+ getAll()
+ addOrUpdatePrice()
+ delete()
}
}
}
package com.inspiware.price.aggregator {
package com.inspiware.price.aggregator.store {
interface Store {
{abstract} + get()
{abstract} + getAll()
{abstract} + addOrUpdatePrice()
{abstract} + delete()
}
}
}
InstrumentPriceMapStore -up-|> Store
InstrumentPriceMapStore o-- K : instrumentPriceKey
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 |
babe0e14d4cac318ad73303bd1d3deb1a8fbc793 | a59ae1fdcde1e543454f10f63d0d4f8c1dc6c563 | /Udemy-Java-Kurs-OOP_II/src/com/company/company.plantuml | 1ff2fc5f66fb97d2eeca676c0a2d731cffd32928 | [] | no_license | MesutCevik/JavaLeichtGemacht | 5f15b6be1e68b16a99d7b61b086e01e51c3c018a | 9cee1733935aafe6b814ddca2364a6212a7efc37 | refs/heads/master | 2020-04-15T16:19:53.124237 | 2019-03-06T12:09:07 | 2019-03-06T12:09:07 | 164,494,367 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,509 | plantuml | @startuml
title __COMPANY's Class Diagram__\n
package com.company {
class Audi {
~ quattro : boolean
+ Audi()
+ starten()
}
}
package com.company {
class Auto {
~ marke : String
~ ps : int
~ tuerenAnzahl : int
~ fahrzeugTyp : String
+ Auto()
+ starten()
}
}
package com.company {
class BMW {
~ xDrive : boolean
+ BMW()
+ starten()
}
}
package com.company {
class Hund {
~ zaehne : int
+ Hund()
+ bellen()
+ essen()
}
}
package com.company {
class Kuh {
~ hufe : int
+ Kuh()
+ essen()
}
}
package com.company {
class Main {
{static} + main()
}
}
package com.company {
class Mercedes {
}
}
package com.company {
class Opel {
}
}
package com.company {
class Schaf {
~ mengeWolle : int
+ rasieren()
}
}
package com.company {
class Tier {
~ name : String
~ gewicht : int
~ groesse : int
+ Tier()
+ essen()
}
}
package com.company {
class VW {
}
}
Audi -up-|> Auto
BMW -up-|> Auto
Hund -up-|> Tier
Kuh -up-|> Tier
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 |
634ad5ed09dd74b2d44d690a5e5f022bda497e49 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/acceptance-of-delivery@0.13.2.puml | 8c47b81b7d492f3c59e1c3ac9fcc7b3f2c3bbd59 | [
"Apache-2.0",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 1,030 | puml | @startuml
class org.accordproject.acceptanceofdelivery.InspectDeliverable << (T,yellow) >> {
+ DateTime deliverableReceivedAt
+ Boolean inspectionPassed
}
org.accordproject.acceptanceofdelivery.InspectDeliverable --|> org.accordproject.cicero.runtime.Request
class org.accordproject.acceptanceofdelivery.InspectionStatus << (E,grey) >> {
+ PASSED_TESTING
+ FAILED_TESTING
+ OUTSIDE_INSPECTION_PERIOD
}
class org.accordproject.acceptanceofdelivery.InspectionResponse << (T,yellow) >> {
+ InspectionStatus status
+ Organization shipper
+ Organization receiver
}
org.accordproject.acceptanceofdelivery.InspectionResponse --|> org.accordproject.cicero.runtime.Response
class org.accordproject.acceptanceofdelivery.AcceptanceOfDeliveryClause << (A,green) >> {
+ Organization shipper
+ Organization receiver
+ String deliverable
+ Long businessDays
+ String attachment
}
org.accordproject.acceptanceofdelivery.AcceptanceOfDeliveryClause --|> org.accordproject.cicero.contract.AccordClause
@enduml
| false | true | false | false | class |
a527af875b136873b354a317412b5583260402f5 | 21607427b056effbb50bbdc7a05d3e26705455af | /app/docs/asciidoc/models/modelui3.puml | 2e69dac7495db4e2514cc38c598db994b6c6ec2d | [
"Apache-2.0"
] | permissive | Kazetavi/Sonofy | 302d17585945847c4eb2972113991cc547823fa6 | dbbfe3791bfa1f3d9fef6185d4ea4725789292d6 | refs/heads/master | 2023-02-08T15:43:15.903753 | 2020-12-31T20:01:47 | 2020-12-31T20:01:47 | 325,859,551 | 0 | 0 | Apache-2.0 | 2020-12-31T19:12:49 | 2020-12-31T19:11:36 | null | UTF-8 | PlantUML | false | false | 1,154 | puml | @startuml modelui3
title <size:30><b>Diagramme de classes ui pour l'ajout de publication</b></size>
package app{
package ui{
package addpublication{
class AddPublicationActivity extends AppCompatActivity{
# addPublicationViewModel : AddPublicationViewModel
- titreMusiqueEditText : EditText
- youtubeVideoIdEditText : EditText
- publierButton : Button
- progressBar : ProgressBar;
+ onCreate(savedInstanceState : Bundle) :void
}
class AddPublicationViewModel extends ViewModel{
- TAG : String
client : OkHttpClient
- isPublicationSaved : MutableLiveData<Boolean>
- isLoading : MutableLiveData<Boolean>
+ isPublicationSaved() : MutableLiveData<Boolean>
+ isLoading() : MutableLiveData<Boolean>
savePublication(titre : String, videoId : String) : void
addPublication(titre : String, videoId : String) : void
}
AddPublicationActivity -[hidden]- AddPublicationViewModel
}
}
}
@enduml | false | true | false | false | class |
9f6f1fcf8f699d852532f5282a7108675488aff5 | 99f487418f83f529029c110a27d57c1f4b5c1561 | /Docs/Diagrams/Message_Bus_Class_Diagram.puml | 1a25c17f0cf07fcfc24aeebbf7d05cb685f3a294 | [
"MIT"
] | permissive | felipe-coutto/skirmisher-engine | adf9311ac470505b05c586128cc060a293beed6e | ce29f3c369e34bcb154f4f941de5645a48e4c738 | refs/heads/main | 2023-01-03T09:19:46.003227 | 2020-10-30T10:36:30 | 2020-10-30T10:36:30 | 304,119,497 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 830 | puml | @startuml
title Message Bus
Interface IPublishMessage {
+void publish(Message)
}
Interface ISubscribeMessage {
+void subscribe(MessageType)
+void unsubscribe(MessageType)
+bool getNextMessage(out Message)
}
class Publisher implements IPublishMessage {
-string m_name
-BusPtr m_bus_ptr
}
class Bus {
+PublisherPtr createPublisher(name)
+SubscriberPtr createSubscriber(name)
~void publishMessage(msg, publisher)
-map<MessageType, ListenerPtr> m_message_sub
-list<Publisher> m_publishers
}
class Subscriber implements ISubscribeMessage {
~void deliverMessage(Message)
-string m_name
-BusPtr m_bus_ptr
-queue<Message> m_message_queue
}
abstract Message {
-string m_publisher_name
-
}
Publisher -> Bus
Bus -> Subscriber
Subscriber - Message
@enduml | false | true | false | false | class |
dea9fb246c72afdffd188ee64b39d247ce26a1d4 | de5ce8483acba08aed1084817b2275f5fdb07372 | /apc/conceptual-data-model.puml | b788e053dee03d4446a54a797d6c96df7bef713c | [] | no_license | A-Fromell-ITxPT/SpecTest | f0f43005a709af125978a907a1519ff6dba5769b | 365f0b162fb712ec6f88aaabc001c9198d453422 | refs/heads/main | 2023-06-19T09:15:47.810278 | 2021-07-16T14:36:33 | 2021-07-16T14:36:33 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 598 | puml | @startuml
skinparam backgroundColor white
class "PASSENGER\nSPACE" as PS #line.bold;back:FFF176
class "PASSENGER\nENTRANCE" as PE #line.bold;back:FFF176
class "PASSENGER\nSPACE CAPACITY" as PSC #line.bold;back:FFF176
class "PASSENGER\nENTRANCE COUNT" as PEC
together {
class "PASSENGER SPACE\nENTRANCE COUNT" as PSEC
class "PASSENGER SPACE\nOCCUPANCY COUNT" as PSOC
}
<> diamond
PS "part-of 0..*" o-left- diamond
PS "contain 0..*" o-left- diamond
PS -down-o "1..*" PE : to/from
PS -up- "1" PSC
PS -right-* "1" PSOC
PS -right-* "1" PSEC
PE -right-* "1" PEC
@enduml
| false | true | false | false | class |
f9121f0171762a9c21eaf8360d9be015dca68a81 | 84e711faa0f6399f5c84f7945b96d29a7eafe764 | /diagrams/appointment-missed-current.puml | d3facb3fc32bbb4adc0157ff87d937d0c88c7320 | [] | no_license | bsavage-dbi/dbi-assets | f44c7c18e7c2ddeaf0080a58a38f13f8f22fb5e0 | 44a7d83d8ec9846f26bed8be66c9e2c5e74db2d2 | refs/heads/main | 2023-07-18T09:55:30.245979 | 2021-08-30T15:32:08 | 2021-08-30T15:32:08 | 381,825,744 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,402 | puml | @startuml
skinparam sequenceBoxBorderColor #black
skinparam NoteBorderColor #black
skinparam sequence {
ArrowColor DarkBlue
ActorBackgroundColor White
ActorBorderColor black
LifeLineBorderColor DarkBlue
LifeLineBackgroundColor #A9DCDF
BoxPadding 20
ParticipantPadding 20
ParticipantBorderColor Black
ParticipantBackgroundColor White
}
autonumber "<b>[00] "
footer created by Brian Savage 06/10/2021 \n all rights reservrd David's Bridal Inc.
title Appointment Missed Text Messages - Current
box "DBI" #D4E1F5
participant "Data Services" as DBI_DATA
participant "API Services" as DBI_API
actor "DBI Stylist" as DBI_STY
end box
box "Liveperson" #D4E1F5
participant "Conversational Cloud" as LPCC
participant "Proactive Messaging API Service" as LPPM
end box
box "Twiliow" #D4E1F5
participant "OPT OUT API Service" as TWAS
end box
actor "DBI Customer" as DBI_CUS
DBI_DATA -> DBI_API : Send Data
DBI_API -> LPPM : send message
note over DBI_STY, LPCC #EEE
<b>Payload Sent to Proactive Messaging
- "variables": {"1": "MESSAGE CONTENT"}
- "skill": "Greeter Bot/Skill",
end note
LPPM -> TWAS : send message for OPT OUT Check
TWAS -> DBI_CUS : send message to customer
activate LPCC
LPCC <- DBI_CUS : she replies to text
LPCC <-> DBI_CUS : skill interacts with her
DBI_STY <- LPCC : skill to stylist
deactivate LPCC
DBI_STY <-> LPCC : stylist to customer
@enduml | false | true | false | false | sequence |
6be30d6dcb8a5a0002888cd9686bf739708e0d67 | 3662b2e08ec5aef2e3dfd1e527b5e50f44d91e1c | /docs/diagrams/AddCommandSequenceDiagramBackup.puml | 011e8b722c206478f8ac83c5658e694946893002 | [] | 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 | 1,531 | puml | @startuml
hide footbox
participant ":iGraduate" as iGraduate
participant ":Parser" as Parser
participant ":AddCommand" as AddCommand
participant ":Module" as Module
participant ":ModuleList" as ModuleList
participant ":Storage" as Storage
participant ":Ui" as Ui
iGraduate -> Parser: parseCommand("add Programming -c CS1010 -mc 4 -t core")
activate Parser #FFBBBB
Parser -> Parser: createAddCommand(commandParameters, commandFlags)
activate Parser #DarkSalmon
create AddCommand
Parser -> AddCommand: AddCommand("CS1010", ["-c", "CS1010", "-mc", 4, "-t", "core"])
activate AddCommand
AddCommand --> Parser: new AddCommand("CS1010", ["-c", "CS1010", "-mc", 4, "-t", "core"])
deactivate AddCommand
deactivate Parser
Parser -> iGraduate: new AddCommand("CS1010", ["-c", "CS1010", "-mc", 4, "-t", "core"])
deactivate Parser
iGraduate -> AddCommand: execute(moduleList, ui, storage)
activate AddCommand
AddCommand -> AddCommand: createModuleByType()
activate AddCommand #DarkSalmon
AddCommand -> Module: new Module("CS1010", "Programming Methodology", 4.0, "not taken", "nil", ArrayList<String> preRequisites, ArrayList<String> untakenPreRequisites)
activate Module
return module:Module
return module:Module
AddCommand -> ModuleList: add(module:Module)
activate ModuleList
deactivate ModuleList
AddCommand -> Storage: saveModulesToFile(moduleList:ModuleList)
activate Storage
deactivate Storage
AddCommand -> Ui: printAddedModuleSuccess(module:Module)
activate Ui
deactivate Ui
deactivate AddCommand
destroy AddCommand
@enduml | false | true | false | false | sequence |
988577d18d9e3114238dcc8284582bcd88a18b4e | f2b3f0970d1b8c52a9cec82be4107ffe1f33a8a2 | /lei20_21_s4_2dk_03/docs/USE_CASES/UC6-2002#3/CD.puml | a8dc7d104d6a0d6f514830baedc524e4a178fbbd | [
"MIT"
] | permissive | antoniodanielbf-isep/LAPR4-2021 | b98ed96809e4726957ede0904b4265825a1083c6 | f665064e65cc4f917514c10950af833f053c9b3b | refs/heads/main | 2023-05-31T14:29:45.364395 | 2021-06-20T17:55:26 | 2021-06-20T17:55:26 | 378,706,704 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,441 | puml | @startuml
'https://plantuml.com/class-diagram
class EspecificarServicoUI <<presentation>>{
}
class EspecificarServicoController <<application>>{
createServico(codigoUnico, tituloServico, requerFeedback)
mostrarCatalogos()
associarCatalogo(cat)
associarKeywords()
associarIcone()
associarDescBreve()
associarDescCompleta()
guardarServico()
especificarFormulario()
adicionarNomeFormulario(NomeFormulario)
adicionarAtributoFormulario(nomeVariavelAtributo,EtiquetaApresentacaoAtributo,\nDescricaoAjudaAtributo,TipoDadosBaseAtributo,ExpressaoRegularAtributos)
adicionarScriptValidacaoFormulario(ScriptValidacaoFormulario)
procurarServico(codigoUnicoServico)
}
interface RepositoryFactory <<factory>>{
servicos()
catalogos()
}
class PersistenceContext <<Persistence>>{
repositories()
}
class Servico <<domain>>{
create(codigoUnico,tituloServico)
associarFormularioAServico(formulario)
associarCatalogo(cat)
associarKeywords()
associarIcone()
associarDescBreve()
associarDescCompleta()
}
class ServicoBuilder <<Builder>>{
withCatalogo(cat)
withKeywords()
withcone()
withDescBreve()
withDescCompleta()
createServico()
withFormularioAServico(formulario)
buidl()
}
class ServicoRepository <<repository>>{
create()
findById(codigoUnicoServico)
save(servico)
}
class CatalogoRepository <<repository>>{
create()
findAll()
}
class Formulario <<domain>>{
adicionarNomeFormulario(NomeFormulario)
adicionarAtributoRequeridoFormulario(novoAtributoRequeridoFormulario)
adicionarScriptValidacaoFormulario(ScriptValidacaoFormulario)
}
class Script <<domain>>{
}
class NivelCriticidade <<domain>>{
}
class AtributoRequeridoFormulario <<domain>>{
create(nomeVariavelAtributo,EtiquetaApresentacaoAtributo,DescricaoAjudaAtributo,\n TipoDadosBaseAtributo,ExpressaoRegularAtributos)
}
EspecificarServicoUI --> EspecificarServicoController : theController
EspecificarServicoUI ..> Servico : Servico
EspecificarServicoController --> Servico : Servico
EspecificarServicoController --> Formulario : Formulario
Formulario --> AtributoRequeridoFormulario : AtributoRequeridoFormulario
Servico --> Script : Script
Servico --> NivelCriticidade : NivelCriticidade
EspecificarServicoController --> ServicoBuilder : theBuilder
EspecificarServicoController --> RepositoryFactory : factory
EspecificarServicoController --> PersistenceContext : persistence
PersistenceContext --> ServicoRepository : repo
PersistenceContext --> CatalogoRepository : repo
@enduml | false | true | false | false | sequence |
d5a842b728378e4e4cdba704a0d09964fe1ad602 | 065da8d391be577d7fc71aa024ab81e35c39618b | /PlantUml/Dolphin.Common/InvalidIndexException.puml | d644eb14ea33f35263ff5c29c2175681ac61dae2 | [] | no_license | leoshiang/Dolphin.CSharp | 1fc921ea04a4a721b49557748f7ca15f89f9e414 | 61438432f088c6b380356afdcba4c627985fa152 | refs/heads/master | 2023-04-17T03:59:19.871766 | 2023-03-30T02:03:42 | 2023-03-30T02:03:42 | 204,225,824 | 0 | 0 | null | 2022-12-08T04:32:20 | 2019-08-25T00:02:55 | C# | UTF-8 | PlantUML | false | false | 222 | puml | @startuml
class InvalidIndexException {
+ InvalidIndexException()
+ InvalidIndexException(message:string)
+ InvalidIndexException(message:string, inner:Exception)
}
Exception <|-- InvalidIndexException
@enduml
| false | true | false | false | class |
3b19e45898e346364e208860cbeccf0e637d3136 | a68f448a661b738c093056989669b415b7ae0d0f | /backend/database/schema.puml | 544eb785eb419ff8c748258da3e8aea3dca0fe6e | [] | no_license | pitikdmitry/MailWinterSchool | c472cdea1e336759604a9b4192c6cc057f9da896 | cd5b508a8b0982db146d83f7f5226de63fc96f73 | refs/heads/master | 2021-10-25T21:05:50.577665 | 2019-04-07T17:35:50 | 2019-04-07T17:35:50 | 119,703,818 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 727 | puml | @startuml
player: player_id [INT]
player: nickname [TEXT]
player: first_name [TEXT]
player: surname [TEXT]
player: about [TEXT]
player: email [TEXT]
player: password [TEXT]
player: kills [INT]
player: deaths [INT]
player: team_id [INT]
player --> stats
player --> team
team: team_id [INT]
team: title [TEXT]
team: games_win [INT]
team: games_lose [INT]
team: games_draw [INT]
game: game_id [INT]
game: team_1_id [INT]
game: team_2_id [INT]
game: points_1 [INT]
game: points_2 [INT]
game --> team: team1
game --> team: team2
tournament: tournament_id [INT]
tournament: title [TEXT]
tournament: date_starts [DATETIME]
tournament: date_ends [DATETIME]
tournament: teams []
tournament --> team: arrayof teams in tourn
@enduml | false | true | false | false | sequence |
6dc331c81f04a689884cf027b29eb7ace246a2ee | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLAttributeNameDoesNotExistError.puml | 9ce8ae29d6e9acb9610c53beed29561b77a672ed | [] | 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 | 475 | 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 GraphQLAttributeNameDoesNotExistError [[GraphQLAttributeNameDoesNotExistError.svg]] extends GraphQLErrorObject {
code: String
invalidAttributeName: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
| false | true | false | false | class |
34b6728e14769c371ddd0f46a532b01871b3b969 | 261f3d4fd238b13676398b33df2304142bf505a0 | /docs/EventDiagram/EventArchi2.puml | 333ebff6b249b9f72747443c6c54d9e38bb796a6 | [] | no_license | AY2021S1-CS2113T-F14-1/tp | 8a917e7e02274af464095b31ee695282f294737c | 9e05f06f9f338e4059e96faa992c22a1bad412e7 | refs/heads/master | 2023-01-09T19:46:16.021830 | 2020-11-13T12:07:10 | 2020-11-13T12:07:10 | 300,518,941 | 0 | 4 | null | 2020-11-13T12:07:11 | 2020-10-02T06:13:45 | Java | UTF-8 | PlantUML | false | false | 262 | puml |
@startuml
scale max 1024 width
hide circle
class "{abstract} \n Command" {
}
"{abstract} \n Command" <|-down- EventCommands
EventCommands -down> Event
Eventlist -> EventCommands
EventCommands -> Eventlist
Duke -> Ui
Ui -> "{abstract} \n Command"
@enduml | false | true | false | false | class |
13036ba39a34b428b240acc4ecaaf8844428980a | 912d65be9bbd436a671d948abe8dadf356eb5216 | /src/main/java/com/kafka/dao/dao.plantuml | f12401b96a591ad4b71193ca5c34612fa29ebe1a | [] | no_license | ljhpole/netty-lecture | 02318e9992f488f03425c93b981e8718582b1b4b | a20bef9e6db5d1061a6f37ec0593087588ea1a0a | refs/heads/main | 2023-02-24T21:52:42.964037 | 2021-01-31T15:35:18 | 2021-01-31T15:35:18 | 334,686,240 | 0 | 1 | null | 2021-01-31T15:35:19 | 2021-01-31T15:19:40 | null | UTF-8 | PlantUML | false | false | 350 | plantuml | @startuml
title __DAO's Class Diagram__\n
namespace com.kafka {
namespace dao {
class com.kafka.dao.OriginalData {
}
}
}
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 |
61c854ce71d81131e4722be4624c3c7cdfc01865 | 1e797c11546cb9db795b28c623dfa79ebf9a0ecd | /docs/architecture.plantuml | 9a4b63cebf1a975a77c09b6fc87af6b519e20ea5 | [
"Apache-2.0"
] | permissive | sleroy/migration-framework | 6ba215fed07434bd8b46e72af4dde9b8acc39ad9 | 999a3d4dfe97202a06fe1eae5080cd6997f86455 | refs/heads/master | 2023-07-15T03:47:13.326979 | 2023-03-11T20:47:44 | 2023-03-11T20:47:44 | 229,290,610 | 0 | 0 | Apache-2.0 | 2023-06-21T05:04:14 | 2019-12-20T15:36:58 | Java | UTF-8 | PlantUML | false | false | 366 | plantuml | @startuml
title Components - Component Diagram
[Workspace]
[FileResource]
[Resource]
[Decorator]
[DecoratedResource]
[Parser]
Parser --> Workspace : decoration lookup
Workspace *--> FileResource : contains
FileResource ..> Resource : extends
Decorator --> FileResource : scan
DecoratedResource --> FileResource
Decorator --> DecoratedResource : decorate
@enduml | false | true | false | false | sequence |
a9be1cc210fc5de59610306ccc59daf2a95711fb | 0c5e47ecc8c280c7b6c41e585aace67524473bd4 | /src/main/resources/uebung4/exercise011c0.puml | d9f43b2c1a4cdfd5f36b1fdf3817fa6bba487e96 | [] | no_license | phbenisc/msiComplexTheorie | bad88319e1ffe89bcb9c09d71b48447afab12897 | 24ba533c2915308f1edc304d37583cbed76c386f | refs/heads/master | 2023-02-27T21:38:58.384128 | 2021-02-01T07:57:27 | 2021-02-01T07:57:27 | 306,917,234 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 263 | puml | @startuml
'scale 350 width
left to right direction
skinparam state {
BackgroundColor<<YES>> LightGreen
BackgroundColor<<NO>> Red
BorderColor Gray
}
[*] --> n0
state "nein" as n0 <<NO>>
state "ja" as j0 <<YES>>
n0: 0
j0: 1
n0 --> j0: ab(a|b)*ab
@enduml
| false | true | false | false | sequence |
2755bb4c6694cc750705ddf158d35af07a55eed7 | 29e06a727e2951557b086ea8c5cf74d1deac8ff4 | /input/images-source/creation-of-treatment.plantuml | 69b72327800c22fda025f90eef1a2faf2b54cc90 | [
"CC0-1.0"
] | permissive | costateixeira/hl7-be-fhir-medication | 8f715f8dc918cb32bb482c1d4c895173716b30c3 | e7de80006725f75ffc3eb09a713c6e4c10fb1df3 | refs/heads/master | 2023-07-13T23:41:06.234140 | 2021-08-20T09:01:07 | 2021-08-20T09:01:07 | 379,354,108 | 0 | 0 | CC0-1.0 | 2021-06-22T17:44:08 | 2021-06-22T17:44:07 | null | UTF-8 | PlantUML | false | false | 568 | plantuml | @startuml
title Starting new Treatment
skinparam actorStyle awesome
hide footbox
'!include ./style.iuml
actor "**Patient**" as P
actor "**Physician**" as PHY
Participant "** Central **\n** System **" as PIS
P --> PHY : Goes to an appointment
activate PHY
PHY --> P: Prescription
activate PIS
PHY --> PIS: Prescription
PHY --> PIS: Start New Treament
deactivate PHY
PIS -> PIS : **Create New Treatment**
PIS -> PIS : **Create New Treatment Line**
PIS -> PIS : **Links Prescription to Treatment Line**
PIS -> PIS : Create New Scheduled Administrations
@enduml
| false | true | false | false | sequence |
771c42dc7cc552e1d60fe605ec879e19865f2975 | 5b9df0d4cc0c38b4c14456aca5a793a932e95c10 | /dasist-0.2.0/docs/uml/invoice/usecase.puml | 1f4ff1c584b5779e7b3465c6d1542bee0a895955 | [] | no_license | tieugene/tipython | 611eba89da9a8390bb37f783e3420e6871063729 | a284f5e640a34d2a5f92b072dbd53fe4a701f539 | refs/heads/master | 2022-08-29T20:52:19.967531 | 2022-07-18T13:51:34 | 2022-07-18T13:51:34 | 42,436,206 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 610 | puml | @startuml
'https://plantuml.com/sequence-diagram
left to right direction
actor Mgr
actor Chief
actor Lawyer
actor Boss
actor BookKeeper
rectangle Bills {
usecase Create
usecase Edit
usecase Delete
usecase Start
usecase Restart
usecase Approve
usecase Reject
usecase Pay
usecase Payed
usecase Archive
}
Mgr --> Create
Mgr --> Edit
Mgr --> Delete
Mgr --> Start
Mgr --> Restart
Mgr --> Archive
Chief --> Approve
Chief --> Reject
Lawyer --> Approve
Lawyer --> Reject
Boss --> Approve
Boss --> Reject
BookKeeper --> Reject
BookKeeper --> Pay
BookKeeper --> Payed
@enduml | false | true | false | false | usecase |
7932387d5bea493c7a0c4efce4809e75b374b24f | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /SingleClass/ICommentForm.plantuml | a3794e6dc4ae8c8c8bdca76d93e04fb03c042d57 | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 237 | plantuml | @startuml iCommentForm
class ICommentForm <<interface>> {
+ create_comment(token, topic_id, posted_by, content, resource)
+ validate(token, topic_id, posted_by, content, resource)
+ delete_comment(token, comment_id)
}
@enduml | false | true | false | false | class |
d115a0a657a7d55233c59d1331586a0b86b5b5c7 | c3871e3e33b6862aa9747997af2d9f5e714a00c7 | /app/src/main/java/com/lt/personal_stadiumbookingsystem/ui/fragment/fragment.plantuml | 9c20c02b7ab06d68cfd7f3a98f2ed13b604c5524 | [] | no_license | zuilintan/Personal_StadiumBookingSystem_Client | 47610baea349acbc4d6b4744aacedc134ba53a0d | c5bd349196cf4c8bf95c1b0979e4b75de625a926 | refs/heads/master | 2020-06-03T22:25:35.310902 | 2019-06-13T12:12:41 | 2019-06-13T12:12:41 | 191,756,309 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,332 | plantuml | @startuml
title __FRAGMENT's Class Diagram__\n
package com.lt.personal_stadiumbookingsystem {
package com.lt.personal_stadiumbookingsystem.ui.fragment {
class GymFragment {
- mSrlGym : RefreshLayout
- mGymList : List<Gym>
- mLayoutManager : GridLayoutManager
- mRcvGym : RecyclerView
{static} + newInstance()
# setLayoutResId()
# bindData()
# bindView()
# initData()
# initView()
# initListener()
}
}
}
package com.lt.personal_stadiumbookingsystem {
package com.lt.personal_stadiumbookingsystem.ui.fragment {
class HistoryFragment {
- mOrderList : List<Order>
- mSrlHistory : RefreshLayout
- mLayoutManager : LinearLayoutManager
- mRcvHistory : RecyclerView
- mPage : int
- mLimit : int
{static} + newInstance()
# setLayoutResId()
# bindData()
# bindView()
# initData()
# initView()
# initListener()
}
}
}
package com.lt.personal_stadiumbookingsystem {
package com.lt.personal_stadiumbookingsystem.ui.fragment {
class MeFragment {
- mSrlMe : SmartRefreshLayout
- mIvMeAvatar : ImageView
- mTvMeNickname : TextView
- mTvMeCoin : TextView
- mCslMeInfo : ConstraintLayout
- mCslMeTheme : ConstraintLayout
- mCslMeSetting : ConstraintLayout
- mCslMeAbout : ConstraintLayout
{static} + newInstance()
# setLayoutResId()
# bindData()
# bindView()
# initData()
# initView()
# initListener()
- setAvatar()
- setNickName()
- setCoin()
}
}
}
GymFragment -up-|> BaseFragment
GymFragment o-- GymAdapter : mGymAdapter
SavedState -up-|> Parcelable
HistoryFragment -up-|> BaseFragment
HistoryFragment o-- HistoryAdapter : mHistoryAdapter
SavedState -up-|> Parcelable
MeFragment -up-|> BaseFragment
SavedState -up-|> Parcelable
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 |
4c76e73eec407657bddb610e054ce9a25c3a1b17 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderAddLineItemAction.puml | d5f0dd0e492b75ab8a2a9c3e07ab80242824f952 | [] | 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,108 | 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 StagedOrderAddLineItemAction [[StagedOrderAddLineItemAction.svg]] extends StagedOrderUpdateAction {
action: String
key: String
productId: String
variantId: Long
sku: String
quantity: Long
addedAt: DateTime
distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]]
supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]]
externalPrice: [[Money.svg Money]]
externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]]
externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
670806e747b2c41abd4c5b4db3e14f05d0d7802e | 694fd70b693c9670161b2492ece407123bf11cad | /plantuml/designpattern/concept-abstractfactory-1.plantuml | b8d2086cd7b784aee1e7919301948633471a67ab | [
"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 | 840 | plantuml | @startuml
package factory <<folder>> {
abstract class AbstractFactory{
{abstract} createProduct1()
{abstract} createProduct2()
}
abstract class AbstractProduct1 {
{abstract} doSomethingProduct1()
}
abstract class AbstractProduct2 {
{abstract} doSomethingProduct2()
}
}
package concretefactory <<folder>> {
class ConcreteFactory {
createProduct1()
createProduct2()
}
class ConcreteProduct1 {
doSomethingProduct1()
}
class ConcreteProduct2 {
doSomethingProduct2()
}
}
AbstractFactory <|-- ConcreteFactory
AbstractProduct1 <|-- ConcreteProduct1
AbstractProduct2 <|-- ConcreteProduct2
AbstractProduct1 <-left- AbstractFactory : < Creates
AbstractProduct2 <-right- AbstractFactory : < Creates
ConcreteProduct1 <-left- ConcreteFactory : < Creates
ConcreteProduct2 <-right- ConcreteFactory : < Creates
@enduml | false | true | false | false | class |
9d4c0f57c99776cbeaa119a166b81e053c80e9b4 | 3369be282c316d3230e0986e803f85effe7f6c3b | /uml/InventoryManagerDiagram.puml | 48b3171db0b13b7daebe4ebb848c254b200a1ca8 | [] | no_license | joshfeds/Inventory-Manager-Summer-2021 | bf496feb1a60c4eb1ddbe64f6a9edeee3281d640 | 95942c4563d833e6829f0349a5b7bdb002750fd8 | refs/heads/master | 2023-06-22T17:58:52.570047 | 2021-07-26T02:40:35 | 2021-07-26T02:40:35 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,644 | puml | @startuml
'https://plantuml.com/class-diagram
MainApp --|>InventoryManager
Item --*InventoryManager
InventoryManager --|> EditItem
InventoryManager --|> ValidateItem
InventoryManager --|> FileMenu
InventoryManager --|> SearchItem
InventoryManager --|> ErrorWindow
class EditItem{
editName()
editSerial()
editValue()
}
class ErrorWindow{
}
class FileMenu{
fileExists()
createTSV()
listToTabString()
createHTML()
listToHTML()
loadTSV()
listFromTSV()
loadHTML()
listFromHTML()
}
class InventoryManager{
--Public--
+ObservableList<Item> list
+FilteredList<Item> filteredList
+SortedList<Item> sortedList
--Private--
-nameID
-serialCodeID
-searchNumberID
-searchNameID
-fileNameID
-fileLocationID
-tableView
-editItem
-nameColumn
-serialColumn
-valueColumn
--Initialize List--
initialize()
--Sort List--
SortButton()
--TextField--
nameField()
serialCodeField()
valueField()
searchNumberField()
searchNameField()
editItemField()
fileNameField()
fileLocationField()
--Add/Remove
addItemButton()
removeItemButton()
--Search--
searchNameButton()
searchNumberButton()
--Edit--
editNameButton()
editSerialCodeButton()
editValueButton()
--Save/Load--
saveTSVButton()
saveHTMLButton()
loadTSVButton()
loadHTMLButton()
--Get Selected Item--
getCurrentItem()
}
class Item{
--Item--
name
serial
value
Item
--Getter--
getName()
getSerial()
getValue()
--Setter--
setName()
setSerial()
setValue()
}
class MainApp{
main()
start()
}
class SearchItem{
nameExists()
serialExists()
}
class ValidateItem{
--Checks Item Input--
addItem()
isName()
isSerial()
isValue()
--Value to Dollar--
formatToDollar()
--Add or Remove Item--
addToList()
removeFromList()
}
@enduml | false | true | false | false | class |
7d00bedd49ec5ccea8735c91a0887a784a82338d | 0adabba61ed12d21fdd9723f1a4ef1c780ac0932 | /Object/object-template.puml | 2b5c424315f6287d2913ab372b8f270e844e2e7a | [] | no_license | DavidHartman-Personal/PlantUML-Reference | eba988bce0a89661a50511805ce59798d962f7cb | 20167b2520dad0c14d0d114d6760e9568810ffdf | refs/heads/main | 2023-07-19T09:47:20.703635 | 2021-09-09T07:45:53 | 2021-09-09T07:45:53 | 403,338,071 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 267 | puml | @startuml
'https://plantuml.com/object-diagram
object London
object Washington
object Berlin
object NewYork
map CapitalCity {
UK *-> London
USA *--> Washington
Germany *---> Berlin
}
NewYork --> CapitalCity::USA
note left
click on <&wifi>
end note
@enduml
| false | true | false | false | sequence |
98f6eb8afc86cb9365cb491b680974adbb52b6cc | 8c59fbc94a2ba7fa9a12c10991fe334cda0df128 | /metrics/web/docs/features/in_progress_builds/diagrams/presentation_layer_strategies_class_diagram.puml | a1f9ad7a5c36792e64771268ec34b4f400f64cc1 | [
"Apache-2.0"
] | permissive | solid-vovabeloded/flank-dashboard | 7e952fa1399585d3f15cae2ed2cab435fb82df3f | 15dae0c40823cc12886a1bb0c087442c0697ac89 | refs/heads/master | 2023-07-11T19:54:58.430004 | 2021-08-06T10:29:26 | 2021-08-06T10:29:26 | 389,593,827 | 0 | 0 | Apache-2.0 | 2021-07-26T10:33:52 | 2021-07-26T10:25:59 | null | UTF-8 | PlantUML | false | false | 4,720 | puml | @startuml presentation_layer_class_diagram
'https://plantuml.com/class-diagram
left to right direction
hide empty members
package presentation {
package widgets as PW {
class ProjectBuildStatus {
+ buildStatus: ProjectBuildStatusViewModel
+ buildStatusStyleStrategy: ProjectBuildStatusStyleStrategy
+ build(BuildContext): Widget
}
class BuildResultBarGraph {
+ buildResultMetric: BuildResultMetricViewModel
+ durationStrategy: BuildResultDurationStrategy
+ build(BuildContext): Widget
}
class BuildResultBarComponent {
+ buildResult: BuildResultViewModel
+ strategy: BuildResultBarPaddingStrategy
+ build(BuildContext): Widget
}
class BuildResultBar {
+ buildResult: BuildResultViewModel
+ build(BuildContext): Widget
}
class BuildResultPopupCard {
+ buildResultPopupViewModel: BuildResultPopupViewModel
+ build(BuildContext): Widget
}
class StabilityCirclePercentage {
+ stability: StabilityViewModel
+ build(BuildContext): Widget
}
class CoverageCirclePercentage {
+ coverage: CoverageViewModel
+ build(BuildContext): Widget
}
BuildResultBarGraph -left-> BuildResultBarComponent: uses
BuildResultBarComponent -left-> BuildResultPopupCard: uses
BuildResultBarComponent -left-> BuildResultBar: uses
}
package strategies {
class BuildResultBarAppearanceStrategy<MetricsColoredBarStyle, BuildStatus> {
+ getWidgetAppearance(MetricsThemeData themeData, BuildStatus status): MetricsColoredBarStyle
}
class BuildResultBarPaddingStrategy {
+ buildResults: List<BuildResultViewModel>
+ getBarPadding(BuildResultViewModel): EdgeInsets
}
class BuildResultPopupImageStrategy<BuildStatus> {
+ getImageAsset(BuildStatus): String
}
class MetricsValueStyleStrategy<CirclePercentageStyle, double> {
+ {static} //static// highPercentBound: double;
+ {static} //static// mediumPercentBound: double;
+ {static} //static// lowPercentBound: double;
+ getWidgetAppearance(MetricsThemeData metricsTheme, double value): CirclePercentageStyle
}
class ProjectBuildStatusImageStrategy<BuildStatus> {
+ getImageAsset(BuildStatus): String
}
class ProjectBuildStatusStyleStrategy<ProjectBuildStatusStyle, BuildStatus> {
+ getWidgetAppearance(MetricsThemeData metricsTheme, BuildStatus value): ProjectBuildStatusStyle
}
class BuildResultDurationStrategy {
+ getBuildDuration(BuildResultViewModel, Duration): Duration
}
}
ProjectBuildStatus --> ProjectBuildStatusStyleStrategy: uses
ProjectBuildStatus --> ProjectBuildStatusImageStrategy: uses
BuildResultBarGraph --> BuildResultDurationStrategy: uses
BuildResultBarComponent --> BuildResultBarPaddingStrategy: uses
BuildResultBar --> BuildResultBarAppearanceStrategy: uses
BuildResultPopupCard --> BuildResultPopupImageStrategy: uses
StabilityCirclePercentage --> MetricsValueStyleStrategy: uses
CoverageCirclePercentage --> MetricsValueStyleStrategy: uses
}
package common.presentation as CP {
package value_image.strategy as valueimage {
interface ValueBasedImageAssetStrategy<T> {
+ {abstract} getImageAsset(T value): String
}
}
package metrics_theme.widgets.strategy as theme {
interface ValueBasedAppearanceStrategy<ReturnType, ValueType> {
+ {abstract} getWidgetAppearance(MetricsThemeData themeData, ValueType value): ReturnType
}
}
package colored_bar.strategy as coloredbar {
interface MetricsColoredBarAppearanceStrategy<MetricsColoredBarStyle, T> {
+ {abstract} getWidgetAppearance(MetricsThemeData themeData, T value): MetricsColoredBarStyle
}
}
ValueBasedAppearanceStrategy <|-- MetricsColoredBarAppearanceStrategy
ValueBasedAppearanceStrategy -[hidden]down-> ValueBasedImageAssetStrategy
MetricsColoredBarAppearanceStrategy -[hidden]left--> ValueBasedImageAssetStrategy
}
BuildResultBarAppearanceStrategy .|> MetricsColoredBarAppearanceStrategy
ProjectBuildStatusStyleStrategy ..|> ValueBasedAppearanceStrategy
MetricsValueStyleStrategy ..|> ValueBasedAppearanceStrategy
BuildResultPopupImageStrategy ..|> ValueBasedImageAssetStrategy
ProjectBuildStatusImageStrategy ...|> ValueBasedImageAssetStrategy
@enduml
| false | true | false | false | sequence |
e855011d3b0d5c69159c117daafc02512e2f9764 | c3679277db13cee150496904963ef5d624c1d144 | /test/src/main/java/com/gaga/pumlTest/case/TestCase3.puml | c60688c7b929c04cc426b802a9c7a891e9eade20 | [] | no_license | jialiu123/dataTodata | 1d7f392bc8e9df53d7ac21023b94f0fe4ce069c3 | 56702a45afe8f1a6b199c45a9c744594ab96c2cd | refs/heads/master | 2023-03-12T21:40:29.489302 | 2021-03-03T00:51:41 | 2021-03-03T00:51:41 | 293,486,188 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 306 | puml |
@startuml
left to right direction
actor Guest as g
package Professional {
actor Chef as c
actor "Food Critic" as fc
}
package 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 |
a639b8b6da0cd99f137a552371bf09a3a80e12ff | 6c21f810f45b6eff4b8accddfe5b35bcf9672d58 | /app/src/main/java/com/example/farmersmarket/fragment/fragment.plantuml | f59849459bb2df01d871c1544655ed87ce6cee8c | [] | no_license | hieuthanh19/farmer_market | b59a0d29a437203641bc07102018a5b1b94cb0bc | 2ea33a5d957317ad507371d8f92d3fb724cfc7d0 | refs/heads/master | 2023-08-15T00:44:18.507238 | 2021-09-17T03:07:59 | 2021-09-17T03:07:59 | 309,298,108 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,936 | plantuml | @startuml
title __FRAGMENT's Class Diagram__\n
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.AccountFragment {
- logoutBtn : Button
- warehouse : TextView
+ AccountFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
}
}
}
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.CategoryFragment {
{static} + CATEGORY : String
{static} - ARG_PARAM2 : String
- mParam1 : String
- mParam2 : String
+ CategoryFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
}
}
}
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.HomeFragment {
~ bannerImages : int[]
~ carouselView : CarouselView
~ home_cart : ImageButton
+ HomeFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
- imageListener()
}
}
}
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.InfomationCheckoutFragment {
~ arrCart : List<OrderDetail>
~ btnCheckOut : Button
~ fragmentCheckouttxtAddressResult : TextView
~ fragmentCheckouttxtProductCostResult : TextView
~ fragmentCheckouttxtShippingCostResult : TextView
~ fragmentCheckouttxtShippingUnitResult : TextView
~ fragmentCheckouttxtTotalCostResult : TextView
~ imgClose : ImageView
~ totalPriceProduct : double
+ findView()
+ onCreate()
+ onCreateView()
- getDateTime()
}
}
}
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.LoginConfirmFragment {
- inputPassword : TextInputLayout
+ LoginConfirmFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
- isFilled()
- login()
}
}
}
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.LoginPhoneFragment {
{static} + tempAccount : Account
- inputPhone : TextInputLayout
- signUp : TextView
+ LoginPhoneFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
- isFilled()
- loadFragment()
- login()
}
}
}
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.NotificationFragment {
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
- mParam1 : String
- mParam2 : String
+ NotificationFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
}
}
}
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.OrderFragment {
~ arrOrder : List<Orders>
~ dateOrder : Date
~ recyclerView : RecyclerView
~ txtEmpty : TextView
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
- mParam1 : String
- mParam2 : String
+ OrderFragment()
+ builAdapter()
+ findView()
{static} + newInstance()
+ onCreate()
+ onCreateView()
}
}
}
namespace com.example.farmersmarket {
namespace fragment {
class com.example.farmersmarket.fragment.PageNotFoundFragment {
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
- mParam1 : String
- mParam2 : String
+ PageNotFoundFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
}
}
}
com.example.farmersmarket.fragment.AccountFragment -up-|> androidx.fragment.app.Fragment
com.example.farmersmarket.fragment.AccountFragment o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.fragment.CategoryFragment -up-|> androidx.fragment.app.Fragment
com.example.farmersmarket.fragment.HomeFragment -up-|> androidx.fragment.app.Fragment
com.example.farmersmarket.fragment.InfomationCheckoutFragment -up-|> com.google.android.material.bottomsheet.BottomSheetDialogFragment
com.example.farmersmarket.fragment.InfomationCheckoutFragment o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.fragment.InfomationCheckoutFragment o-- com.example.farmersmarket.object.Account : ac
com.example.farmersmarket.fragment.InfomationCheckoutFragment o-- com.example.farmersmarket.object.ShippingUnit : spu
com.example.farmersmarket.fragment.LoginConfirmFragment -up-|> androidx.fragment.app.Fragment
com.example.farmersmarket.fragment.LoginPhoneFragment -up-|> androidx.fragment.app.Fragment
com.example.farmersmarket.fragment.NotificationFragment -up-|> androidx.fragment.app.Fragment
com.example.farmersmarket.fragment.OrderFragment -up-|> androidx.fragment.app.Fragment
com.example.farmersmarket.fragment.OrderFragment o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.fragment.OrderFragment o-- com.example.farmersmarket.viewadapter.OrderListAdapter : orderListAdapter
com.example.farmersmarket.fragment.PageNotFoundFragment -up-|> androidx.fragment.app.Fragment
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 |
af3031248c4708883b9da2ed8509fdfe5f1f9ef4 | c931fab627d76aac94f223642e63dc0f5358c800 | /app/src/main/java/com/example/aflah/tracki_master/Data/Data.plantuml | 0350eaa75fd3b4e2bb411b1593dc51eda998dbec | [] | no_license | aflahtaqiu/tracki-android | 842c78ad53d0717f51e094721150a6d8205e3a7a | 6990d21cf21771cd1e5927e44564b06f4b2c8391 | refs/heads/master | 2020-04-15T02:03:17.136741 | 2019-01-06T12:02:17 | 2019-01-06T12:02:17 | 164,301,470 | 0 | 0 | null | 2019-01-06T11:40:37 | 2019-01-06T11:40:36 | null | UTF-8 | PlantUML | false | false | 8,683 | plantuml | @startuml
title __DATA's Class Diagram__\n
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
class DetailPromoRepository {
+ DetailPromoRepository()
+ getPromotionById()
+ sendRedeemData()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface DetailPromoSource {
{abstract} + getPromotionById()
{abstract} + sendRedeemData()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetPromotionByIdCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface SendRedeemDataCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
class ProductRepository {
+ ProductRepository()
+ getProductById()
+ getMakanan()
+ getMinuman()
+ getSearchList()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface ProductSource {
{abstract} + getProductById()
{abstract} + getMakanan()
{abstract} + getMinuman()
{abstract} + getSearchList()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetProductByIdCallBack {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetMakananCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetMinumanCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetSearhList {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
class PromotionRepository {
+ PromotionRepository()
+ getAllPromotion()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface PromotionSource {
{abstract} + getAllPromotion()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetPromotionCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
class ReviewTokoRepository {
+ ReviewTokoRepository()
+ getReview()
+ sendReview()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface ReviewTokoSource {
{abstract} + getReview()
{abstract} + sendReview()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetReviewByStoreCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface SendReviewByStoreCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
class StoreRepository {
+ StoreRepository()
+ getStoreUrlImages()
+ getStoreDetail()
+ getSearchList()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface StoreSource {
{abstract} + getStoreUrlImages()
{abstract} + getStoreDetail()
{abstract} + getSearchList()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetStoreImagesUrlCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetStoreDetailCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetSearhList {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
class UserRepository {
+ UserRepository()
+ updateProfile()
+ getUserById()
+ resetUserPassword()
+ registerUser()
+ loginUser()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface UserSource {
{abstract} + updateProfile()
{abstract} + getUserById()
{abstract} + resetUserPassword()
{abstract} + registerUser()
{abstract} + loginUser()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface UpdateProfileCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface GetUserByIdCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface ResetUserPasswordCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface RegisterUserCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
package com.example.aflah.tracki_master {
package com.example.aflah.tracki_master.Data {
interface LoginUserCallback {
{abstract} + onSuccess()
{abstract} + onFailure()
}
}
}
DetailPromoRepository -up-|> DetailPromoSource
DetailPromoRepository o-- DetailPromoRemoteDataSource : detailPromoRemoteDataSource
DetailPromoSource +-down- GetPromotionByIdCallback
DetailPromoSource +-down- SendRedeemDataCallback
ProductRepository -up-|> ProductSource
ProductRepository o-- ProductRemoteDataSource : productRemoteDataSource
ProductSource +-down- GetProductByIdCallBack
ProductSource +-down- GetMakananCallback
ProductSource +-down- GetMinumanCallback
ProductSource +-down- GetSearhList
PromotionRepository -up-|> PromotionSource
PromotionRepository o-- PromotionRemoteDataSource : promotionRemoteDataSource
PromotionSource +-down- GetPromotionCallback
ReviewTokoRepository -up-|> ReviewTokoSource
ReviewTokoRepository o-- ReviewRemoteDataSource : reviewRemoteDataSource
ReviewTokoSource +-down- GetReviewByStoreCallback
ReviewTokoSource +-down- SendReviewByStoreCallback
StoreRepository -up-|> StoreSource
StoreRepository o-- StoreRemoteDataSource : storeRemoteDataSource
StoreSource +-down- GetStoreImagesUrlCallback
StoreSource +-down- GetStoreDetailCallback
StoreSource +-down- GetSearhList
UserRepository -up-|> UserSource
UserRepository o-- UserRemoteDataSource : userRemoteDataSource
UserSource +-down- UpdateProfileCallback
UserSource +-down- GetUserByIdCallback
UserSource +-down- ResetUserPasswordCallback
UserSource +-down- RegisterUserCallback
UserSource +-down- LoginUserCallback
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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.