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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
04f8ed3af6e574e9af280ed3db690773ecd59b1d | b372440a479acec475fc87211e4219c5e11714df | /doc/Class-roles.puml | dcc9cbf4ab07e7c501e9b79abc1f9767310e4103 | [] | no_license | hangrproject/bottos | f45e031608bb23fd93122cd16a95d8c496584916 | 2c610d418207b6efc3467e869d409be75edb61a1 | refs/heads/master | 2021-09-04T21:35:00.817835 | 2018-01-22T11:55:52 | 2018-01-22T11:55:52 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 366 | puml | @startuml
class Role
class Action
Class RoleAction
Class TargetObject
class DataProviderRole
class DataRecuritorRole
class ArbitorRole
class AuditorRole
class OracleRole
Role<-->RoleAction
RoleAction <-->Action
RoleAction<-->TargetObject
Role<|-- DataProviderRole
Role<|-- DataRecuritorRole
Role<|-- ArbitorRole
Role<|-- AuditorRole
Role<|-- OracleRole
@enduml | false | true | false | false | class |
87675472029339a26d7f85ef2a7cbd53d5f22430 | f96b41c55e144ed711e3709c7f23650f164de057 | /messaging/messaging-jms-test/src/site/plantuml/messageBrokerStructures.puml | 1b432d99c36996ca041b9cd7e922e427339180c3 | [] | no_license | lennartj/jguru-shared | 36ba7aeb7e6e8421179b216c064398818e3c1380 | b4aed54bdd2f3f3ca58d8bc3d3a2c69dddeb491f | refs/heads/master | 2023-07-09T20:14:24.008064 | 2023-06-26T17:47:23 | 2023-06-26T17:47:23 | 129,443,213 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 750 | puml | '
' Purpose: MessageBroker structure illustration
'
@startuml
'
' Type definitions
'
interface MessageBroker {
val name: String
startBroker()
stopBroker()
getMessageServerURI(): String
getConnectionFactory(configuration: String): ConnectionFactory
}
note right of MessageBroker
Main MessageBroker specification
Implement once per Broker type
end note
class ArtemisMessageBroker {
jmsServer: EmbeddedJMS
isStarted: Boolean
brokerName: String
registry: BindingRegistry
}
class AnotherMessageBrokerImpl {
}
'
' Relations
'
ArtemisMessageBroker -up-|> MessageBroker
AnotherMessageBrokerImpl -up-|> MessageBroker
@enduml | false | true | false | false | class |
a4b4db5067480665f500a2e41df021aeba28f721 | e618e68be491bb98c0573a467be63146a053cc6c | /SA/sequencediagram/transaction/simple/TransactionHistory.puml | 79307f20b19a76fb66fb3f6e212f2862e819aece | [] | 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,526 | puml | @startuml
title: Transaction History Sequence Diagram
actor user
participant BelanjaYukFE
box "BelanjaYuk.id" #LightBlue
participant AppController
participant TransactionService
end box
user -> BelanjaYukFE ++ : click Transaction history menu
activate user
BelanjaYukFE -> AppController ++ : /graphql transaction history
note left of BelanjaYukFE
content type: application/json
request body:
mutation{
transactions: List<Transaction>
}
}
end note
AppController -> AppController : call parseGraphql()
AppController -> TransactionService ++ : call transactions()
note left
passing:
- context
end note
TransactionService --> AppController -- : List<Transaction>
AppController --> BelanjaYukFE -- : List<Transaction>
BelanjaYukFE --> user -- : view transaction list
user -> BelanjaYukFE ++ : Transaction history with status filter
BelanjaYukFE -> AppController ++ : /graphql transaction history with status filter
note left of BelanjaYukFE
content type: application/json
request body:
mutation{
transactions(status): List<Transaction>
}
}
end note
AppController -> AppController : call parseGraphql()
AppController -> TransactionService ++ : call transactions()
note left
passing:
- context
- status: Int
end note
TransactionService --> AppController -- : List<Transaction>
AppController --> BelanjaYukFE -- : List<Transaction>
BelanjaYukFE --> user -- : view transaction list
deactivate user
@enduml | false | true | false | false | usecase |
84d86dc20204da0e96e83667a3304a1d9774b448 | a7b7fc77a24f9303002690c2200a5df124c6b7c5 | /docs/prod-deployment/deployment.puml | 096554e65cf2c2b707b26565bb40cb53ddf27c53 | [
"Apache-2.0"
] | permissive | ostelco/ostelco-core | e2916cc5aefca5f5a3049f4a528e4d2b84e04b86 | b072ada4aca8c4bf5c3c2f6fe0d36a5ff16c11af | refs/heads/develop | 2021-07-21T19:44:47.777138 | 2019-12-18T14:13:16 | 2019-12-18T14:13:16 | 112,729,477 | 38 | 12 | Apache-2.0 | 2021-06-30T14:12:00 | 2017-12-01T10:51:32 | Kotlin | UTF-8 | PlantUML | false | false | 757 | puml | @startuml
package "Handset" {
[App]
[Mobile data]
}
package "Payment service" {
[Payment]
}
package "Authentication service" {
[AUTH]
}
package "Host Operator" {
[PGW]
}
package "GCP - Compute Engine" {
[OCSGW]
}
package "GCP - Kubernetes" {
package "Cloud endpoints"{
[CEP1]
[CEP2]
}
package "PubSub"{
[CCR]
}
database DB
node "Pod" {
[ESP1]
[ESP2]
[Prime]
}
}
[App] -- [AUTH]
[Payment] -- [App]
[Payment] -- [Prime]
[Mobile data] -- [PGW] : gtp
[App] - [CEP1] : https
[CEP1] - [ESP1] : http
[CEP2] - [ESP2]: gRPC
[PGW] - [OCSGW]: diameter
[OCSGW] - [CEP2] : gRPC
[ESP1] - [Prime] : http
[ESP2] - [Prime] : gRPC
[Prime] - DB
[OCSGW] - [CCR] : ccr-topic
[CCR] - [Prime] : ccr-sub
@enduml
| false | true | false | false | sequence |
1ed56c749b789bc8f57db846a0af046e5159018b | 0dcb0e0941d8b31fbdb46bb506b58774b7b5ed8f | /src/main/java/ex45/ex45.puml | c1bf68ba48dcb55d58a57c760da8347be1b6cb3b | [] | no_license | magdasobrino/Sobrino-AlmanzarCOP3330-Assignment3 | 8ba8770a796ce3dc47026b47ffe041cc5994ed63 | 5269495e276ed3b1353e6ba2f39e0626f2a57ee6 | refs/heads/master | 2023-08-19T12:00:16.496353 | 2021-10-12T03:14:51 | 2021-10-12T03:14:51 | 416,165,015 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 170 | puml | @startuml
'https://plantuml.com/sequence-diagram
class newfile {
read (String filePath, String name)
create(String scannedText, String filePath, String name)
}
@enduml | false | true | false | false | class |
bad32cc557247894b79a0adb4882c809413069b7 | 73a2ec211090e75d728bfe08f07f90a50ecde9d4 | /src/uml/class diagrams/Commands(SpendingList).puml | d8589dd1d232e2f6ccd6fa1946c58cde6c84bab2 | [] | no_license | AY2021S1-CS2113T-F14-2/tp | 080d69cd41305be497efb4e92db44b2ea28bb153 | da1045800fbd5bc280f052ed9943717dc2cf66f6 | refs/heads/master | 2023-01-05T11:52:07.039686 | 2020-11-09T15:08:14 | 2020-11-09T15:08:14 | 297,841,937 | 0 | 5 | null | 2020-11-09T15:08:15 | 2020-09-23T03:31:27 | Java | UTF-8 | PlantUML | false | false | 1,982 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
class "{abstract} \n Command"{
+ execute(): void {abstract}
+ isExit(): boolean
}
class "AddCommand" {
+ description: String
+ amount: double
+ currency: String
+ category: String;
- exchangeRates: String[][]
+ execute(): void
- updateAmount(): void
- updateCurrency(): void
}
class "ClearSpendingListCommand" {
- isClearAll: boolean
- clearIndex: int
}
class "ConvertCommand" {
- currencies: String
- outputCurrency: String
- inputCurrency: String
- currentString: Item
- exchangeRate: double
+ newSpendingList: static ArrayList<Item>
+ ConvertCommand()
+ identifyCurrency(): String
- findExchangeRate(): void
+ execute(): void
- updateNewAmount: void
- updateCurrency: void
+ updateBudgetList(): void
+ updateSpendingList(): ArrayList<Item>
}
class "DrawCommand" {
- dateFormatter: DateFormatter
- timePeriod: String
+ DrawCommand()
+ execute(): void
- getCategoryMap(): TreeMap<String, Double>
- getYearMap(): TreeMap<String, Double>
- getMonthMap(): TreeMap<Integer, Double>
- getDayMap(): TreeMap<Integer, Double>
- drawChart(): void
}
class "EditCommand" {
+ description: String;
+ amount: Double;
+ currency: String;
+ index: int;
+ category: String;
+ EditCommand()
+ execute(): void
}
class "SummaryCommand" {
- period: String
+ SummaryCommand()
+ execute(): void
}
AddCommand -[hidden]right-> EditCommand
EditCommand -[hidden]right-> ConvertCommand
EditCommand --|> "{abstract} \n Command"
SummaryCommand -[hidden]right-> DrawCommand
DrawCommand -[hidden]right-> ClearSpendingListCommand
DrawCommand -up-|> "{abstract} \n Command"
AddCommand -|> "{abstract} \n Command"
ConvertCommand -down-|> "{abstract} \n Command"
SummaryCommand -up-|> "{abstract} \n Command"
ClearSpendingListCommand -up-|> "{abstract} \n Command"
@enduml | false | true | false | false | class |
140ceb3779d5c2e506da3bf1378a2ea5d507123f | a7db7f381f681f7b863a0d8fafab1c7be61f07ff | /reponses/serviceprovider.api.puml | bb3d3c9df20addebf699d4f936b26240f6d67340 | [] | no_license | Ramin-Erwyn/mapc-cc1 | 03b0af4fc06a629c3362bfe0ebf5084c626d514b | 04c434f122c324775ca2225a1f0d791147a3b298 | refs/heads/master | 2023-01-03T02:30:50.606721 | 2020-11-03T16:35:35 | 2020-11-03T16:35:35 | 309,746,429 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,300 | puml | @startuml
package serviceprovider.api{
interface serviceprovider.api.AppServerServiceType extends ServiceType{
+ createService(String name) :Service
+ serviceTypeKey() :String
}
enum BasicServiceTypeNames implements ServiceTypeName {
APP_SERVER
LOGGING
MONITORING
STORAGE_SERVER
WEB_SERVER
+getName() :APP_SERVER
+getName() : LOGGING
+getName() : MONITORING
+getName() : STORAGE_SERVER
+getName() : WEB_SERVER
}
interface serviceprovider.api.LoggingServiceType extends ServiceType {
+ createService(String name) :Service
+ serviceTypeKey() :String
}
interface serviceprovider.api.MonitoringServiceType extends ServiceType {
+ createService(String name) :Service
+ serviceTypeKey() :String
}
interface serviceprovider.api.ServiceTypeName extends ServiceType {
+ getName() :String
}
interface serviceprovider.api.StorageServerServiceType extends ServiceType {
+ createService(String name) : Service
+ serviceTypeKey(): String
}
interface serviceprovider.api.WebServerServiceType extends ServiceType{
+ createService(String name) :Service
+ serviceTypeKey() :String
}
}
@enduml | false | true | false | false | class |
5a8183cbd813605fc8da59cd5caae0e59f8511f0 | 7c2a17fd3d19a13fb71558f79900a2908de98c58 | /docs/uml-class-diagrams/middleware02/production/MiddlewareCommInterfaceImplementation/MiddlewareCommInterfaceImplementation.puml | 928809903bedcf22b89946f7a356a113d40b0116 | [] | no_license | casher-ou/csi-3370-software-project | 483b1add9fbab8349f30009eecc123c884bdcc7b | 629fb9cce10429c2b80bd1ad33ab898d1466883b | refs/heads/main | 2023-01-22T00:44:50.062944 | 2020-11-29T23:00:50 | 2020-11-29T23:00:50 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 391 | puml | @startuml MiddlewareCommInterfaceImplementation
package edu.oakland.production.middleware02 {
class MiddlewareCommInterfaceImplementation {
- MiddlewareCommLinkManager middlewareManager
__
+ MiddlewareCommInterfaceImplementation(
\tMiddlewareCommLinkManager middlewareManager)
.. Use Case 1 ..
+ TrackData requestRfid(int rfid)
}
@enduml | false | true | false | false | class |
39b4047560e7d75f0b39dfc105a47be8eeec5c0b | 6e43c89d67e8f3edcfea7d99aa87b09e47680b80 | /Homework11/Homework11.puml | f09b7e7ad4768d99fe0804e145657933367f1aeb | [] | no_license | SteveTsao/DesignPattern | 9fe82d94b6550e0c8501f7eff28fbf13aa57bbfe | 4879a9b9102877143d0e45bc01500a04b1e032d1 | refs/heads/master | 2021-09-12T23:20:23.307109 | 2018-04-22T15:20:17 | 2018-04-22T15:20:17 | 114,538,275 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 633 | puml | @startuml
class OrderService {
+Calculate
}
interface DecoratorInterface {
+GetPrice
}
abstract class AbstractDecorator {
+GetPrice
}
class CouponDecorator {
+GetPrice
}
class DiscountDecorator {
+GetPrice
}
class GiftDecorator {
+GetPrice
}
class PointDecorator {
+GetPrice
}
class RebateDecorator {
+GetPrice
}
OrderService *-> DecoratorInterface
DecoratorInterface <|.. AbstractDecorator
AbstractDecorator <|-- CouponDecorator
AbstractDecorator <|-- DiscountDecorator
AbstractDecorator <|-- GiftDecorator
AbstractDecorator <|-- PointDecorator
AbstractDecorator <|-- RebateDecorator
@enduml | false | true | false | false | class |
760dc136ac9678ae27544a3b153c9f9de6614ff6 | 14be5228d52d9a7e9db16de48d4b262ce33d6257 | /Anno_2018_2019/Papers Please/Assets/class_diagram.puml | 2dc2b427eeb26f6462b742212381def819cc4180 | [] | no_license | a-pucci/GameDev-1anno-2016-2017 | d7625be64b1878ab4e2155aea35c2f141265190a | 0b1298c4524864db30f62c7a6483554786a64fe8 | refs/heads/master | 2021-06-20T13:36:53.455226 | 2019-02-26T20:33:21 | 2021-04-02T18:03:00 | 74,010,542 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 677 | puml | @startuml
hide empty methods
hide empty fields
class Queue {
Popped : Event
Pop() : void
}
class UIManager {
Evaluated : Event
Rang : Event
}
class Day << (S, red) >>
class Generator << (S, red) >> {
maleData : GenderData
femaleData : GenderData
surnames : List<string>
cities : List<string>
nations : List<Nation>
Create() : void
}
class Person << (S, red) >> {
sprite : Sprite
firstName : string
surname : string
sex : Sex
birthDate : Date
city : string
country : string
ID : string
}
Day o- Person
UIManager - Queue
Queue - Day
Queue -- Generator
Character -- Queue
UIPassport -- Queue
@enduml | false | true | false | false | class |
6fe9c06c64b5d419a0c21263e868d71e3a6350bf | f7389ede7c743b8ce3d174eee24ebcab316354f6 | /Diagrammer/Robo_Sumo_Battle/Communication/Classes/TCP/TCPClass.plantuml | 13a93f9c3f6d3347d8901a680954a2b82f048685 | [] | no_license | Solvgraa-mager/E3PRJ3 | 7e2b70775c0d8b8312bc893e0c9014fd766af9b0 | fb507b5528417459714c00b73c75378d6465af19 | refs/heads/master | 2023-01-31T11:01:30.966313 | 2020-12-18T10:28:55 | 2020-12-18T10:28:55 | 294,479,612 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 170 | plantuml | class TCP{
+TCP();
+getPort() : int
+setPort(int port) : void
+getBuffer() : char*
~TCP()
-port_ : int
-buffer_size_ : int
-buffer_[MAX_BUFFER_SIZE] : char
}
| false | true | false | false | class |
fe6b284498591f8441d8612da104cfcb5cc3546a | 3362da038c501e41cbbed213bdc0b11b41a59dac | /01_Tasks/01_Tasks.plantuml | 95166fdf0a80a6252714b6981f3abafa08e9a7cf | [] | no_license | danielirimia/soloQA-team | 4e9909b29d3ca54d58483cf7759bb73ce83c29d8 | 8997e489bc6639d163ccff3e0f12043c4c2abed7 | refs/heads/master | 2023-05-20T04:25:04.350172 | 2021-06-08T16:50:21 | 2021-06-08T16:50:21 | 343,771,894 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,379 | plantuml | @startuml
title __01_TASKS's Class Diagram__\n
namespace tasks.controller {
class tasks.controller.Controller {
}
}
namespace tasks.controller {
class tasks.controller.NewEditController {
}
}
namespace tasks.controller {
class tasks.controller.Notificator {
}
}
namespace tasks.controller {
class tasks.controller.TaskInfoController {
}
}
namespace tasks.model {
class tasks.model.ArrayTaskList {
}
}
namespace tasks.model {
class tasks.model.LinkedTaskList {
}
}
namespace tasks.model {
class tasks.model.Task {
}
}
namespace tasks.model {
abstract class tasks.model.TaskList {
}
}
namespace tasks.model {
class tasks.model.TasksOperations {
}
}
namespace tasks.services {
class tasks.services.DateService {
}
}
namespace tasks.services {
class tasks.services.TaskIO {
}
}
namespace tasks.services {
class tasks.services.TasksService {
}
}
namespace tasks.view {
class tasks.view.Main {
}
}
tasks.controller.Controller o-- tasks.services.DateService : dateService
tasks.controller.Controller o-- tasks.services.TasksService : service
tasks.controller.NewEditController o-- tasks.model.Task : currentTask
tasks.controller.NewEditController o-- tasks.services.DateService : dateService
tasks.controller.NewEditController o-- tasks.services.TasksService : service
tasks.model.ArrayTaskList -up-|> tasks.model.TaskList
tasks.model.LinkedTaskList -up-|> tasks.model.TaskList
tasks.model.LinkedTaskList o-- tasks.model.LinkedTaskList.Node : last
tasks.model.Task .up.|> java.io.Serializable
tasks.model.Task .up.|> java.lang.Cloneable
tasks.model.TaskList .up.|> java.io.Serializable
tasks.model.TaskList .up.|> java.lang.Iterable
tasks.services.DateService o-- tasks.services.TasksService : service
tasks.services.TasksService o-- tasks.model.ArrayTaskList : tasks
tasks.view.Main -up-|> javafx.application.Application
tasks.view.Main o-- tasks.model.ArrayTaskList : savedTasksList
tasks.view.Main o-- tasks.services.TasksService : service
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 |
30336ab579cf5644e801b587489d5246eb13c968 | 44d092f57cbb077c3955cf5725a7d3dbab47dd43 | /system-design.puml | 8dcb42a0223e40dd9eb914302afb73c5c3322e37 | [] | no_license | MasKoding/kotlin-restful-api | 469a6757a0c131ea78e0eabaa3920d1e3e887ec2 | 120a9375720c6c4a82dfecec424b3895f2a7550b | refs/heads/main | 2023-08-18T23:08:51.126298 | 2021-09-17T11:44:15 | 2021-09-17T11:44:15 | 406,709,112 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 327 | 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 |
679ab0cd4ec87c5bbc6a95f1076d653b031885bf | 4ef2a0d7b50e772e235e40bf33c1313a11e1d23a | /app/docs/asciidoc/models/Connexion.puml | e17c67913fb835dfe50f887fbc2838bc9f4ef192 | [
"Apache-2.0"
] | permissive | SefkanTas/Sonofy | 4cb768b9eed72f2e133c2ec5b814c70352f39b4c | f4d7875d5c4ed996ec9ecc7fdf15ea75706af23a | refs/heads/master | 2023-03-27T03:41:36.030113 | 2021-03-27T20:14:31 | 2021-03-27T20:14:31 | 297,685,348 | 3 | 5 | Apache-2.0 | 2021-03-27T20:14:32 | 2020-09-22T15:04:53 | Java | UTF-8 | PlantUML | false | false | 489 | puml | @startuml
actor User as g
participant "::LoginActivity " as act
participant "auth::FirebaseAuth " as user
participant "::FirebaseFirestore " as base
g -> act : Connexion utilisateur
activate act
g -> act : Entrez login, mdp
activate user
act -> user : getInstance()
activate base
user -> base : signInWithEmailAndPassword(mail,mdp)
base --> user : mail, mdp data
deactivate base
user --> act : signInWithEmail:success
deactivate user
act --> g : connexion réussie
deactivate act
@enduml | false | true | true | false | usecase |
7afa26860c05488898d8f5166b783d0978dbf639 | 5dc9e41cc781a3ce07954ad8b4e70ff66ab124ee | /docs/alfresco-identity-service/alfresco-identity-service-6.0.0.puml | e7dbfbddf799ba886152ac4c982fd9e9746f889a | [
"Apache-2.0"
] | permissive | melahn/helm-chartmap | ada77202fdc8002788ac75ef2fe734d06e2c5f7e | 82c99f6ca09b54e7c7901c065f5d3fe6d0d1800d | refs/heads/master | 2022-10-15T08:43:17.746888 | 2022-09-23T00:11:42 | 2022-09-23T00:11:42 | 249,056,151 | 2 | 0 | Apache-2.0 | 2022-01-05T00:16:08 | 2020-03-21T20:33:46 | Java | UTF-8 | PlantUML | false | false | 2,559 | puml | @startuml
skinparam linetype ortho
skinparam backgroundColor white
skinparam usecaseBorderColor black
skinparam usecaseArrowColor LightSlateGray
skinparam artifactBorderColor black
skinparam artifactArrowColor LightSlateGray
title Chart Map for alfresco-identity-service:6.0.0
'There are 5 referenced Helm Charts
artifact "common:1.4.1\n====\n\tType: library\n====\n\tRepo: N/A - Explicit Dependency\n====\n\tMaintainers: Bitnami\n====\n\tKeywords: \n\t\tcommon\n\t\thelper\n\t\ttemplate\n\t\tfunction\n\t\tbitnami" as common_1_4_1 #DarkSeaGreen
artifact "keycloak:16.1.0\n====\n\tType: application\n====\n\tRepo: https://codecentric.github.io/helm-charts\n====\n\tMaintainers: \n\t\tunguiculus\n\t\tthomasdarimont\n====\n\tKeywords: \n\t\tsso\n\t\tidm\n\t\topenid connect\n\t\tsaml\n\t\tkerberos\n\t\tldap" as keycloak_16_1_0 #LightBlue
artifact "postgresql:10.3.13\n====\n\tType: application\n====\n\tRepo: N/A - Explicit Dependency\n====\n\tMaintainers: \n\t\tBitnami\n\t\tdesaintmartin\n====\n\tKeywords: \n\t\tpostgresql\n\t\tpostgres\n\t\tdatabase\n\t\tsql\n\t\treplication\n\t\tcluster" as postgresql_10_3_13 #LightSteelBlue
artifact "alfresco-identity-service:6.0.0\n====\n\tType: application\n====\n\tRepo: https://kubernetes-charts.alfresco.com/stable\n====\n\tMaintainers: Alfresco\n====\n\tKeywords: \n\t\talfresco\n\t\tkeycloak\n\t\tidentity-service" as alfresco_identity_service_6_0_0 #Chartreuse
artifact "common:1.11.3\n====\n\tType: library\n====\n\tRepo: https://charts.bitnami.com/bitnami\n====\n\tMaintainers: Bitnami\n====\n\tKeywords: \n\t\tcommon\n\t\thelper\n\t\ttemplate\n\t\tfunction\n\t\tbitnami" as common_1_11_3 #DarkSeaGreen
'There are 2 referenced Docker Images
usecase "Image\n====\nquay.io\n====\nalfresco/alfresco-identity-service:1.7.0\n====\n1.7.0" as quay_io_alfresco_alfresco_identity_service_1_7_0 #Azure
usecase "Image\n====\ndocker.io\n====\nbitnami/postgresql:11.11.0-debian-10-r31\n====\n11.11.0-debian-10-r31" as docker_io_bitnami_postgresql_11_11_0_debian_10_r31 #DarkSalmon
'Chart Dependencies
alfresco_identity_service_6_0_0--[#green]-|>keycloak_16_1_0
keycloak_16_1_0--[#green]-|>postgresql_10_3_13
postgresql_10_3_13--[#green]-|>common_1_4_1
alfresco_identity_service_6_0_0--[#green]-|>common_1_11_3
keycloak_16_1_0--[#orange]-|>quay_io_alfresco_alfresco_identity_service_1_7_0
postgresql_10_3_13--[#orange]-|>docker_io_bitnami_postgresql_11_11_0_debian_10_r31
center footer Generated on 2022/06/13 20:11:26 by com.melahn.util.helm.PlantUmlChartMapPrinter\nhttps://github.com/melahn/helm-chartmap
@enduml
| false | true | false | false | usecase |
7035db3de330b9dfcb3a39d28d2a3be61a7ac475 | 831ecbaf5ead20c256583b50e520ebb08eaa9812 | /dzienne/G1/pkp_sequencediagram.plantuml | 8f41fe166c4fed5811a3f856e7c5b0ab05265aa5 | [] | no_license | kpodlaski/Projektowanie_obiektowe2020 | 8e71ff68a12d240efe1be353c1a1823e2960e642 | 0ade34f4b8a7e8d346080da8547da8aa98b70b27 | refs/heads/master | 2023-01-30T09:53:25.779580 | 2020-12-10T10:44:52 | 2020-12-10T10:44:52 | 306,864,804 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 541 | plantuml | @startuml
actor Klient
note left UI: scenariusz zakupu gotówka
activate UI
UI -> Biletomat : dane_podrozy()
activate Biletomat
Biletomat -> Baza_Danych : cena(dane_podrozy)
Biletomat -> Drukarka : wydruk()
activate Drukarka
return
return
UI -> UI : forma_platnosci()
'"gotówka"
UI -> UI : pobor_gotowki()
UI --> Biletomat : wplata(kwota)
activate Biletomat
Biletomat -> Kasa : wplata(kwota)
activate Kasa
return
Biletomat -> Kasa : reszta(cena-kwota)
activate Kasa
return reszta
Biletomat -> UI: reszta, bilet
deactivate Biletomat
@enduml | false | true | true | false | usecase |
088ea664ac139ebb7bca058bc046af7403038553 | bdf0d4d3aac186af3ad0ad6ac9f380f9a0573fba | /docs/assets/endorse-public-did.puml | 63de78bb50c1f170ae50d6f95bd1c1c8e3fc5f22 | [
"LicenseRef-scancode-dco-1.1",
"Apache-2.0"
] | permissive | hyperledger/aries-cloudagent-python | f25d961e0717a4d703bf43df3e4b4bc8ec07b908 | 39cac36d8937ce84a9307ce100aaefb8bc05ec04 | refs/heads/main | 2023-09-01T15:37:05.353674 | 2023-08-31T14:13:06 | 2023-08-31T14:13:06 | 193,556,007 | 370 | 530 | Apache-2.0 | 2023-09-14T17:59:34 | 2019-06-24T18:12:14 | Python | UTF-8 | PlantUML | false | false | 2,104 | puml | @startuml
' List of actors for our use case
actor Admin
participant WalletRoutes
participant IndyWallet
participant LedgerRoutes
participant Ledger
participant TransactionManager
participant EventBus
participant OutboundHandler
participant EndorsedTxnHandler
boundary OtherAgent
' Sequence for writing a new DID on the ledger (assumes the author already has a DID)
Admin --> WalletRoutes: POST /wallet/did/create
Admin --> LedgerRoutes: POST /ledger/register-nym
group Endorse transaction process
LedgerRoutes --> Ledger: register_nym()
LedgerRoutes --> TransactionManager: create_record()
LedgerRoutes --> TransactionManager: create_request()
LedgerRoutes --> OutboundHandler: send_outbound_msg()
OutboundHandler --> OtherAgent: send_msg()
OtherAgent --> OtherAgent: endorse_msg()
EndorsedTxnHandler <-- OtherAgent: send_msg()
TransactionManager <-- EndorsedTxnHandler: receive_endorse_response()
TransactionManager <-- EndorsedTxnHandler: complete_transaction()
Ledger <-- TransactionManager: txn_submit()
TransactionManager --> TransactionManager: endorsed_txn_post_processing()
TransactionManager --> EventBus: notify_endorse_did_event()
end
WalletRoutes <-- EventBus: on_register_nym_event()
WalletRoutes --> WalletRoutes:promote_wallet_public_did()
WalletRoutes --> IndyWallet:set_public_did()
group Endorse transaction process
WalletRoutes --> IndyWallet:set_did_endpoint()
IndyWallet --> Ledger:update_endpoint_for_did()
WalletRoutes --> TransactionManager: create_record()
WalletRoutes --> TransactionManager: create_request()
WalletRoutes --> OutboundHandler: send_outbound_msg()
OutboundHandler --> OtherAgent: send_msg()
OtherAgent --> OtherAgent: endorse_msg()
EndorsedTxnHandler <-- OtherAgent: send_msg()
TransactionManager <-- EndorsedTxnHandler: receive_endorse_response()
TransactionManager <-- EndorsedTxnHandler: complete_transaction()
Ledger <-- TransactionManager: txn_submit()
TransactionManager --> TransactionManager: endorsed_txn_post_processing()
' notification that no one is listening to yet
TransactionManager --> EventBus: notify_endorse_did_attrib_event()
end
@enduml
| false | true | false | false | sequence |
5a30f3b6d634f2c00aceb7221dd3f43b19a5e8b8 | a1d366654621b0008e275a2090c3aafd7051a2b7 | /src/doc/modelado.puml | 85017cfc719d1927074db2c06dd86b2165013106 | [] | no_license | h-kANAME/dv-pav-comercio-informatico-lopez-luis | 2edbc39845cb45c9f4c488a6938f7c8c1c0344d9 | 1bd9519239c3ef43a97d5b070dae7e1bdf470e7a | refs/heads/main | 2023-05-14T08:36:05.478656 | 2021-06-06T02:15:19 | 2021-06-06T02:15:19 | 372,294,121 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,507 | puml | @startuml
class Comercio {
- Productos[] productos;
- Historial [] operaciones;
+ public crearInsumo();
+ public crearServicioDeArmado();
+ public crearServicioDeReparacion();
+ public buscarProductoPorNombre();
+ public modificarPrecioListaProducto ();
+ public addOperacion();
+ public mostrarHistorialDeOperaciones();
+ public mostrarProductoDisponibleParaVenta();
}
abstract class Productos{
# String nombre;
# double precioLista;
{abstract} clonar()
{abstract} precioDeVenta()
{abstract} devolverMontoFacturacion()
}
class Operaciones{
- String nombre;
- String fechaVenta;
- double precioLista;
}
class Insumos implements Matematica{
- String tipo;
- Double procentajeGanancia;
+ devolverMontoFacturacion();
}
abstract class Servicios{
# Double horasOcupaServicio;
{abstract} devolverMontoFacturacion();
}
class ServicioArmado{
}
class ServicioReparacion{
- Dificultad dificultad;
}
enum Dificultad{
SIMPLE
NORMAL
COMPLEJO
AVANZADO
EXPERTO
- String descripcion;
- int nivel;
}
enum Tipo{
PERIFERICO
HARDWARE
LIMPIEZA
- String descripcionTipo;
- int nivelTipo;
}
ServicioReparacion ..left Dificultad
Insumos ..down Tipo
interface Matematica{
+ Double resultado;
+ Double delta;
public default sumarPorcentaje();
}
Comercio "1" -- "1..*" Productos
Comercio "1" -- "1..*" Operaciones
Productos <|-- Insumos
Productos <|-- Servicios
Servicios <|-- ServicioArmado
Servicios <|-- ServicioReparacion
@enduml | false | true | false | false | class |
1afd463a1125fb251b63a02d18c54980181f9a16 | 261d4b474b3bea23dbe97b2f0b6a26658012dee3 | /Container.plantuml | 6a437b4c64c18b0d5fdc0852e7e9708b66250ca7 | [] | no_license | josueMerino/practiceUML | 8d9262be6632105d17b9576d9f1844990f6b8e12 | 66f97f906c6a0b66a601ec0949236e77e42c366f | refs/heads/master | 2023-02-19T12:40:58.335838 | 2021-01-11T15:32:27 | 2021-01-11T15:32:27 | 328,631,405 | 0 | 0 | null | 2021-01-11T15:32:28 | 2021-01-11T10:45:19 | null | UTF-8 | PlantUML | false | false | 1,365 | plantuml | @startuml
rectangle nutrixUser[
<b> Nutrix User
----
A Nutrix Platform user,
typically a nutrition
professional.
]
Node "Nutrix Core"{
rectangle Backend_Application[
<b> Backend Application
----
A Nutrix Platform user,
typically a nutrition
professional.
]
rectangle Single_Page_App[
<b> Single-Page App
----
A Nutrix Platform user,
typically a nutrition
professional.
]
Database Database[
<b> Database
----
A Nutrix Platform user,
typically a nutrition
professional.
]
}
rectangle Patient_Management_System[
<b> Patient Management System
----
A Nutrix Platform user,
typically a nutrition
professional.
]
rectangle FCT_System[
<b> FCT System
----
A Nutrix Platform user,
typically a nutrition
professional.
]
[nutrixUser] --> [Backend_Application]: Gives access to
[nutrixUser] --> [Single_Page_App]: Gives access to
[Backend_Application] --> [Database]: Gives access to
[Backend_Application] <- [Single_Page_App]: Gives access to
[Backend_Application] -> [Single_Page_App]: Gives access to
[nutrixUser] --> [FCT_System]: Gives access to
[nutrixUser] --> [Patient_Management_System]: Gives access to
[Single_Page_App] --> [FCT_System]: Gives access to
[Single_Page_App] -> [Patient_Management_System]: Gives access to
@enduml | false | true | false | false | sequence |
a6b1553aee98f6b40707220484be8dc6e0c5fe8d | b72a0bd293c4e2d1ac703536006c53c36c0a4b51 | /session3/ressource/insta-class.puml | 7b5093c4913b94b8e1edf8a08c8872b0b1432a72 | [] | no_license | frederic1979/git_session2 | 1b5c17e69381e7e5e20357a28562f9f8a8f4497c | 69c712b5ec4ba54cf0fdfd6b62b3a1379d05aff0 | refs/heads/master | 2022-12-09T15:45:07.890339 | 2020-02-04T07:50:30 | 2020-02-04T07:50:30 | 219,689,922 | 0 | 0 | null | 2022-12-07T21:35:17 | 2019-11-05T08:05:26 | TSQL | UTF-8 | PlantUML | false | false | 726 | puml | ```plantuml
@startuml
class Photo {
Long id
String caption
Double latitude
Double longitude
String imagePath
Integer imageSize
LocalDateTime creationDate
LocalDateTime lastUpdateDate
}
class User {
Long id
String username
String email
String saltedPassword
String firstName
String lastName
String lastConnectedIp
LocalDateTime registrationDate
LocalDateTime lastLoginDate
}
class Comment {
Long id
String Comment
}
class Like {
Long id
LocalDateTime dateCreated
}
class HashTag {
Long id
String hashtag
}
Photo "0..*" -- "0..*" HashTag
User "1" -- "0..*" Photo
User "1" -- "0..*" Like
Like "0..*" -- "1" Photo
Photo "1" -- "..*" Comment
Comment "0..*" -- "1" User
@enduml
``` | false | true | false | false | class |
b6e060e6c093d5e43272aeface95bec6360dd33b | 72ef24d7b57f53c2b953ba15e60d191412310489 | /docs/sequence_diagrams/seq_3-place-order.plantuml | 35bcd4f77c62fe06c46edd99ef66c92542448304 | [] | no_license | yourfrienddhruv/coffeeshop-services | 2d6c4f3663dfc7ce941ee581fe056b748322313a | b81bc7d5b5c7e72646643564b2bae584917c62c5 | refs/heads/master | 2023-01-23T00:50:41.737577 | 2020-11-29T19:00:41 | 2020-11-29T19:00:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,369 | plantuml | @startuml
== Find a nearby shop ==
Customer -> ShopService: Find nearby Coffee Shops
note left
Customer Lat/Long
end note
Customer <-- ShopService: List of Coffee Shops\nsorted by distance
Customer -> ShopService: Get Shop Details
Customer <-- ShopService: Shop Details
note left
Shop Address
Timings
Status:
- Whether Accepting Orders
- Estimated Wait Time
Shop Contact Details
end note
== Get Menu ==
Customer -> ShopService: Get Menu
note left
Shop Id
end note
Customer <-- ShopService: Menu
== Place Order ==
Customer -> OrderService: Place Order
note left
- Shop Id
- MenuItem Id
- Order Notes
- Payment Details (if any)
end note
OrderService -> ShopService: Check whether shop\nis accepting orders
OrderService <-- ShopService : Confirmation
OrderService -> OrderService: Assign Order to Queue
Customer <-- OrderService: Order Confirmation
note right
Estimated Time
when Order will be ready
Current Number in Queue
end note
== Check Order ==
Customer -> OrderService: Get Order Details
Customer <-- OrderService: Order Details
== Modify/Cancel Order ==
Customer -> OrderService: Update/Cancel Order
ShopService <- OrderService: Check whether \norder can be modified
note right
Don't allow to modify
order if it is being prepared
end note
ShopService --> OrderService: Confirmation
Customer <-- OrderService: Update confirmation
@enduml | false | true | false | false | sequence |
b5d0ab19368389cee1f2732c2434ef38b9fc287a | 878601d59a41aaad280d854f1d789fd7018e6d8d | /diagrams/measurement.puml | 081a58238068d3f06c0b330ddfe98f0042271060 | [
"Apache-2.0",
"MIT"
] | permissive | pendulum-project/statime | 6973fad5ab5d3f5735ab1862035a552dd50bcef7 | da7ac770fb9d21c969bb989df682f8afa5fef6e1 | refs/heads/main | 2023-08-27T20:59:16.340780 | 2023-08-21T13:28:54 | 2023-08-23T07:07:39 | 444,359,788 | 42 | 5 | Apache-2.0 | 2023-09-13T10:16:39 | 2022-01-04T09:29:54 | Rust | UTF-8 | PlantUML | false | false | 459 | puml | @startuml
agent ptp_gm [
PTP Grand Master
(Endrun Ninja with PTP and PPS)
]
agent switch [
ethernet switch (dumb)
]
agent dut [
device under test
(raspberry pi 4 with ptp-enabled networking)
]
agent scope [
oscilloscope (Keysight DSOX1204G)
measuring leading edge time delta
]
switch <--> ptp_gm : ethernet (ptp)
switch <--> dut : ethernet (ptp)
dut --> scope : pps (gpio)
ptp_gm --> scope : pulse signal\n(1Hz to 10Mhz)
@enduml
| false | true | false | false | sequence |
7c012ac6a22f08ba75d6bf1e6b0103603e6a6d6e | c6471b445c6b2e9587818e1245de301b6f37d694 | /uml/api.puml | 8fc005e88244e30c2f206a1ef149fd9f1173f7ec | [] | no_license | punchat/docs | 0d483f3fa83de4c8fe100d9124666a824d5a239d | b225b728576787f84730d9c6f3b730351a1a92a0 | refs/heads/master | 2020-03-08T05:40:09.705149 | 2018-05-13T11:40:43 | 2018-05-13T11:40:43 | 127,953,256 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 697 | puml | @startuml
class User {
Long id
String username
}
class BroadcastMessage {
Long id
Long channelId
Long senderId
User[] addressees
Long resourceId
}
class DirectMessage {
User sender
LocalDateTime sendingTime
User receiver
Long resourceId
}
class BroadcastChannel {
Long id
String name
Privacy privacy
}
class DirectChannel {
Long id
User user
}
enum Privacy {
PUBLIC, PRIVATE
}
class Member {
Long id
User user
Role role
BroadcastChannel channel
}
class Role {
String name
Permission[] permissions
}
enum Permission {
CAN_INVITE_USERS,
CAN_EXCLUDE_USERS,
CAN_WRITE_MESSAGES
}
@enduml | false | true | false | false | class |
c562d8cca5a79056bad4d40fd0ed3bd20b4ccc35 | 77ca229438244df1616594a24c28c82f6e293aa1 | /plantuml/Parser.puml | e9188ada29a612532180a85c932795d4a803c4c0 | [] | no_license | RinwaOwuogba/NameOuterSpace | 4d12cfcbcaaaa9d0acccb88fee7f4518c2e2f193 | 2872e05434296b8d4a8ce9f79494416f8d06088f | refs/heads/master | 2023-08-17T09:19:32.903887 | 2021-09-21T11:29:41 | 2021-09-21T11:29:41 | 391,706,946 | 4 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,010 | puml | @startuml
class AutoDetectParser {
+ {static} GetContextParser(filePath:string) : Parser
}
abstract class Parser {
+ Parser(filePath:string)
+ {abstract} Parse() : string
}
class TxtParser {
+ TxtParser(filePath:string)
+ <<override>> Parse() : string
}
class PresentationParser {
+ PresentationParser(filePath:string)
+ <<override>> Parse() : string
}
class XmlParser {
+ XmlParser(filePath:string)
+ <<override>> Parse() : string
}
class HtmlParser {
+ HtmlParser(filePath:string)
+ <<override>> Parse() : string
}
class PDFParser {
+ PDFParser(filePath:string)
+ <<override>> Parse() : string
}
class DocParser {
+ DocParser(filePath:string)
+ <<override>> Parse() : string
}
class SheetParser {
+ SheetParser(path_to_file:string)
+ <<override>> Parse() : string
}
Parser <|-- TxtParser
Parser <|-- PresentationParser
Parser <|-- XmlParser
Parser <|-- HtmlParser
Parser <|-- PDFParser
Parser <|-- DocParser
Parser <|-- SheetParser
@enduml
| false | true | false | false | class |
fa12efa4a25195aab7d785d1e791a838db1ed5a9 | 3576ec713485a374cd82f4db2df455e2108fbf46 | /concepts/0051-dkms/puml/16-offline-recovery.puml | 23e591a02fafa1dd8b92e6d8e39c6f60ce7aa42c | [
"Apache-2.0",
"LicenseRef-scancode-dco-1.1"
] | permissive | hyperledger/aries-rfcs | b5de0c6f3b6855c6b66039b3f3580e062d238cdf | 097053c6e91f16d4dad18b5367cf338721423dc7 | refs/heads/main | 2023-08-31T08:13:57.556336 | 2023-07-24T21:30:11 | 2023-07-24T21:30:11 | 185,645,683 | 340 | 259 | Apache-2.0 | 2023-09-13T01:20:18 | 2019-05-08T16:49:20 | Python | UTF-8 | PlantUML | false | false | 1,159 | puml | @startuml
skinparam sequenceArrowThickness 2
skinparam roundcorner 15
skinparam maxmessagesize 100
skinparam sequence {
ArrowColor grey
LifeLineBorderColor grey
ParticipantBorderColor grey
boxbordercolor white
ParticipantFontSize 17
actorfontsize 17
boxfontsize 17
boxfontcolor grey
ActorBorderColor grey
Actorbackgroundcolor white
}
actor Alice as al
participant "Alice\nEdge Agent" as aea
participant "Alice\nCloud Agent" as aca
participant "Ledger" as led
note over aca #f0f0e0
Assumptions: Cloud agent automatically stores encrypted backup of Alice's edge wallets
end note
note over al, led #77ccff
include <b>Provision New Agent</b> diagram
end note
== offline recovery process ==
aea -> al: please scan paper wallet
al -> aea: scan paper wallet
aea -> aea: extract recovery endpoint
aea -[#blue]> aca: request encrypted backup
aca -[#blue]> aea: encrypted backup
aea -> aea: decrypt and restore backup data
aea -> aea: replace old agent keys with new agent keys
note over al, led #77ccff
include <b>Update Agent Policy Registry</b> diagram
end note
note over al, led #77ccff
include <b>Rotate DID Key</b> diagram
end note
@enduml
| false | true | false | false | sequence |
243dcfedd293f5d25cab461f15c8b08462f41532 | 2b90e7842ab4b6807601859af33123456cdda792 | /.idea/modules/app/app.plantuml | b0b35fc063592c48776377d8c1763f899e1863d4 | [] | no_license | 616272776/MyApplicationdfsd | 21066b59a9e4b92a1b57dc7d80af3d902484749f | d927e58d522b5867ae2fd4ef9fdb0ab3e7aa79d0 | refs/heads/master | 2023-06-25T12:15:50.758071 | 2021-07-20T07:18:32 | 2021-07-20T07:18:32 | 369,397,617 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,699 | plantuml | @startuml
title __MYAPPLICATIONDFSD.APP's Class Diagram__\n
namespace com.example.myapplicationdfsd {
class com.example.myapplicationdfsd.BuildConfig {
}
}
namespace com.example.myapplicationdfsd {
class com.example.myapplicationdfsd.MainActivity {
}
}
namespace com.example.myapplicationdfsd {
class com.example.myapplicationdfsd.PeerConnectionAdapter {
}
}
namespace com.example.myapplicationdfsd {
class com.example.myapplicationdfsd.SdpAdapter {
}
}
namespace com.example.myapplicationdfsd {
class com.example.myapplicationdfsd.SignalingClient {
}
}
com.example.myapplicationdfsd.MainActivity .up.|> com.example.myapplicationdfsd.SignalingClient.Callback
com.example.myapplicationdfsd.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.myapplicationdfsd.MainActivity o-- org.webrtc.EglBase.Context : eglBaseContext
com.example.myapplicationdfsd.MainActivity o-- org.webrtc.SurfaceViewRenderer : localView
com.example.myapplicationdfsd.MainActivity o-- org.webrtc.MediaStream : mediaStream
com.example.myapplicationdfsd.MainActivity o-- org.webrtc.PeerConnectionFactory : peerConnectionFactory
com.example.myapplicationdfsd.PeerConnectionAdapter .up.|> org.webrtc.PeerConnection.Observer
com.example.myapplicationdfsd.SdpAdapter .up.|> org.webrtc.SdpObserver
com.example.myapplicationdfsd.SignalingClient o-- com.example.myapplicationdfsd.SignalingClient.Callback : callback
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 |
c3b5b5ce7a1a593dc0614f2ab5a2b830e4f7c9ce | 625517108615e50180082e3c6d7d1444f643485e | /test/fixtures/class-types/in.plantuml | a6f3885fa50d96f341f3a65c8ac1fe92899521ad | [
"TCL",
"BSD-3-Clause",
"HPND",
"LicenseRef-scancode-unknown-license-reference",
"OpenSSL",
"LicenseRef-scancode-openssl",
"MIT",
"LicenseRef-scancode-ssleay-windows",
"ISC",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | Enteee/plantuml-parser | 180c370b3025bb7566bd86576d327364b3d5a425 | 765ac61d0c29c7c8f39310cfa7c385017997aeb8 | refs/heads/master | 2023-07-26T02:00:39.582527 | 2023-03-27T20:49:09 | 2023-03-27T20:49:09 | 177,091,179 | 132 | 33 | Apache-2.0 | 2023-05-21T07:11:53 | 2019-03-22T07:20:31 | TypeScript | UTF-8 | PlantUML | false | false | 711 | plantuml | @startuml
title Types - Class Diagram
skinparam componentStyle uml2
abstract class AbstractList {
}
class System << (S,#FF7700) Singleton >>
class Date << (D,orchid) >>
class Foo1<Generics tag> {
You can use
several lines
..
as you want
and group
==
things together.
__
You can have as many groups
as you want
--
End of class
}
class User {
.. Simple Getter ..
+ getName() : String
+ getAddress() : Address
.. Some setter ..
+ setName() : String
__ private data __
-int age
-- crypted --
-String password
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
interface List {
}
annotation SuppressWarnings
class Object << general >>
Object <|--- ArrayList
@enduml
| false | true | false | false | class |
94b809e5fd060e719174248be65fa474426534f0 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/InvalidFieldError.puml | e79e7a42b0440a0ae33a0c8a2462427352a52ab1 | [] | 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 | 526 | 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 InvalidFieldError [[InvalidFieldError.svg]] extends ErrorObject {
code: String
message: String
field: String
invalidValue: [[Object.svg Object]]
allowedValues: [[Object.svg List<Object>]]
}
interface ErrorObject [[ErrorObject.svg]] {
code: String
message: String
}
@enduml
| false | true | false | false | class |
1ea989c91a681ea68b566451cee451accc4add60 | 105bd4b4ebe4cd54f5aaddc4e2a535430f51884a | /bouquet-Scenario/templates/ScenarioName.puml | 7df919fbadcafb8a915b8984d6ea6a140168b343 | [
"MIT"
] | permissive | mishin/bouquet | d38b4941a0185d9d141448796e1609a10a41fc5f | 608b6c7689f1eca5baa354691ae0932e942f0225 | refs/heads/master | 2021-05-15T19:27:43.342139 | 2017-09-27T05:38:41 | 2017-09-27T05:38:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 141 | puml | @startuml
Actor "actorName" as A
box "<%= usecase %>" #lightblue
participant "<%= systemName %>" as S
A -> S : <%= name %>
end box
@enduml
| false | true | false | false | sequence |
ba938335ec4f67af9a23c1b2f6dce8f74ef808d1 | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P2/STUB_Yeste_Guerrero_Cabezas/diagrams/model.plantuml | 897a1ff0abe84bcdfef36534b2ab65c20b1e828a | [
"WTFPL"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,609 | plantuml | @startuml
title __MODEL's Class Diagram__\n
package app.model {
class Actor {
- country : String
+ Actor()
+ getCountry()
+ setCountry()
}
}
package app.model {
class Catalog {
- series : ArrayList<Series>
+ Catalog()
+ getSeries()
+ getEpisode()
+ setSeries()
+ addSerie()
+ episodeExists()
+ getSeries()
}
}
package app.model {
class Director {
- country : String
+ Director()
+ getCountry()
+ setCountry()
}
}
package app.model {
class Episode {
- title : String
- duration : String
- oLanguage : String
- description : String
- link : String
- screenedDate : String
- idSerie : String
- numTemporada : String
- ratings : ArrayList<Rating>
+ Episode()
+ addRating()
+ findRating()
+ getTitle()
+ getRatings()
+ getDuration()
+ getoLanguage()
+ getDescription()
+ getLink()
+ getScreenedDate()
+ getIdSerie()
}
}
package app.model {
class Producer {
- id : String
- year : int
+ Producer()
+ getID()
+ setID()
+ getYear()
+ setYear()
}
}
package app.model {
class Rating {
- device : String
+ Rating()
+ getEmotion()
+ setEmotion()
+ getDevice()
+ setDevice()
+ getfCharacter()
+ setfCharacter()
+ getUser()
}
}
package app.model {
enum Emotion {
GOOD
FUNNY
WOW
SAD
MEH
BAD
ERROR
emot
}
}
package app.model {
class SCharacter {
+ SCharacter()
+ getActor()
+ setActor()
}
}
package app.model {
class Series {
- title : String
- id : String
- description : String
- year : int
- imagePath : String
- seasons : ArrayList<SeriesSeason>
- people : ArrayList<Staff>
+ Series()
+ addStaff()
+ addSeason()
+ getNumberOfSeasons()
+ getSeason()
+ getProducer()
+ getDirector()
+ getTitle()
+ getID()
+ getDescription()
+ getYear()
+ getPicturePath()
+ getSeason()
+ setSeason()
+ setProducer()
+ setDirector()
}
}
package app.model {
class SeriesSeason {
- seasonNumber : int
- nEpisodes : int
- seasonEpisodes : ArrayList<Episode>
+ SeriesSeason()
+ getEpisode()
+ addEpisode()
+ getSeasonNumber()
+ getnEpisodes()
+ getSeasonEpisodes()
+ setSeasonEpisodes()
}
}
package app.model {
abstract class Staff {
- name : String
+ Staff()
+ getName()
+ setName()
}
}
package app.model {
class User {
- nick : String
- name : String
- password : String
- country : String
- birth : String
- id : String
- subscribedList : ArrayList<Episode>
- watchedEpisodes : ArrayList<Episode>
- comingEpisodes : ArrayList<Episode>
- watchedSeriesList : ArrayList<Series>
- nonStartedYetSeriesList : ArrayList<Series>
- watchNextSeriesList : ArrayList<Series>
+ User()
+ addToSubscribedList()
+ getWatchedEpisodes()
+ isWatched()
+ addToWatchedList()
+ getId()
+ getNick()
+ getName()
+ getPassword()
+ getCountry()
+ getBirth()
+ getSubscribedList()
+ setName()
+ setPassword()
+ addWatchedList()
+ addToNonStartedYet()
+ addToWatchNext()
+ getWatchedSeriesList()
+ getNonStartedYetSeriesList()
+ getWatchNextSeriesList()
+ getComingEpisodes()
+ addComingEpisode()
}
}
Actor -up-|> Staff
Director -up-|> Staff
Producer -up-|> Staff
Rating o-- Emotion : emotion
Rating o-- SCharacter : fCharacter
Rating o-- User : user
Rating +-down- Emotion
SCharacter o-- Actor : actor
Series o-- Producer : producer
Series o-- Director : director
SeriesSeason o-- Series : series
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 |
1d4f1b85fd730637df3f6d6d4156dde1abbcf293 | e37b74baf39211f1e75efa9b424de0e1dc8ac464 | /app/src/main/java/com/example/project/UML.puml | d0c9a54d05c988509ae2ef5a31c48547d8e7fa5a | [] | no_license | buraknallar/Book-Store-in-Android-Studio | 8056864204ab77583f7f3c15d474cc5b3d203048 | 8c411ac05df47c4fd857722d551ef82311b0c15d | refs/heads/main | 2023-07-08T10:17:11.187745 | 2021-08-03T11:30:40 | 2021-08-03T11:30:40 | 392,291,411 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,755 | puml | @startuml
class Admin_User extends AppCompatActivity{
Button admin, user
ImageView bookflix
onCreate();
}
class AdminLogin extends AppCompatActivity{
Button login, back;
EditText adminName, adminPass;
String name = "admin";
String password = "1234";
onCreate()
goToAdminPanel()
goToMainPanel()
}
class AdminPanel extends AppCompatActivity, BookDatabaseManager, UserDatabaseManager {
public TabHost tabHost;
public EditText bookID, bookName, bookAuthor, bookPrice, bookYear, usernameDelete;
public Spinner bookGenre, updateGenreSpinner;
public EditText bookID_2, bookName_2;
Button add, displayUser;
ListView admin_tab1_listView, admin_tab2_listView, admin_tab3_listView, admin_tab4_listView, user_tab3_listView;
public EditText bookID_3, bookName_3, bookAuthor_3, bookPrice_3, bookYear_3;
BookDatabaseManager bookManager;
ArrayList<String> genreList = new ArrayList<>();
ArrayAdapter<String> genreAdapter;
ArrayAdapter<String> showAdapter;
SQLiteDatabase database;
String path;
String result;
UserDatabaseManager userManager;
String userPath;
SQLiteDatabase userDatabase;
ArrayAdapter<String> userAdapter;
String[] genres = {"Action and adventure", "Classic","Comic", "Crime", "Drama", "Fantasy",
"Horror", "Mystery", "Science fiction"};
onCreate()
onCreateOptionsMenu()
populateMyFirstMenu()
onOptionsItemSelected()
applyMenuOptionItem()
onCreateContextMenu()
onContextItemSelected()
goToMainPanel()
insert(View v)
display()
userDisplay()
delete()
userDelete()
update()
}
class BookDatabaseManager extends SQLiteOpenHelper {
private static final String DB_NAME = "BOOKS";
private static final int DB_VERSION = 2;
private static final String TABLE = "books_10";
private static final String ID = "id";
private static final String NAME = "name";
private static final String AUTHOR = "author";
private static final String GENRE = "genre";
private static final String PRICE = "price";
private static final String YEAR = "year";
private static final String COMMAND = "CREATE TABLE " + TABLE + " (\n" +
" " + ID + " INTEGER NOT NULL CONSTRAINT employees_pk PRIMARY KEY AUTOINCREMENT,\n" +
" " + NAME + " varchar(255) NOT NULL,\n" +
" " + AUTHOR + " varchar(255) NOT NULL,\n" +
" " + GENRE + " varchar(255) NOT NULL,\n" +
" " + PRICE + " INTEGER NOT NULL,\n" +
" " + YEAR + " INTEGER NOT NULL\n" +
");";
BookDatabaseManager(@Nullable Context context, @Nullable String name, @Nullable SQLiteDatabase.CursorFactory factory, int version)
BookDatabaseManager(@Nullable Context context, @Nullable String name, @Nullable SQLiteDatabase.CursorFactory factory, int version, @Nullable DatabaseErrorHandler errorHandler)
BookDatabaseManager(Context context)
onCreate()
onUpgrade()
insert()
delete()
display()
searchGenre()
update()
}
class MainActivity extends AppCompatActivity {
Button admin, user;
onCreate()
goToAdminPanel()
goToUserPanel()
}
class PaymentClass extends AppCompatActivity {
//defining objects
TextView amount, time, edtPass;
Button exit, submit, password;
onCreate()
exit()
systemDate()
}
class UserDatabaseManager extends SQLiteOpenHelper {
private static final String DB_NAME = "USERS";
private static final int DB_VERSION = 2;
private static final String TABLE = "users";
private static final String USERNAME = "username";
private static final String NAME = "name";
private static final String SURNAME = "surname";
private static final String EMAIL = "email";
private static final String PASSWORD = "password";
private static final String COMMAND = "CREATE TABLE " + TABLE + " (\n" +
" " + USERNAME + " varchar(255) NOT NULL,\n" +
" " + NAME + " varchar(255) NOT NULL,\n" +
" " + SURNAME + " varchar(255) NOT NULL,\n" +
" " + EMAIL + " varchar(255) NOT NULL,\n" +
" " + PASSWORD + " varchar(255) NOT NULL\n" +
");";
UserDatabaseManager(@Nullable Context context, @Nullable String name, @Nullable SQLiteDatabase.CursorFactory factory, int version)
UserDatabaseManager(Context context)
onCreate()
onUpgrade()
insert()
delete()
display()
check()
update()
}
class UserLogin extends AppCompatActivity {
EditText name, pass;
Button login, back, signup;
UserDatabaseManager userManager;
SQLiteDatabase database;
String path;
onCreate()
goToUserPanel()
goToMainPanel()
goToUserSignup()
}
class UserPanel extends AppCompatActivity, BookDatabaseManager {
TabHost tabHost;
ListView user_tab2_listView, user_tab3_listView;
BookDatabaseManager bookManager;
SQLiteDatabase database;
String path;
ArrayAdapter<String> showAdapter;
ArrayAdapter<String> displayAllAdapter;
UserDatabaseManager userManager;
String userPath;
SQLiteDatabase userDatabase;
ArrayAdapter<String> userAdapter;
EditText updateUsername, updateName, updateSurname, updateEmail, updatePassword;
Button pay, reset, exit;
String result;
String resultAll;
TextView tab3_textView;
String[] genres = {"Action and adventure", "Classic","Comic", "Crime", "Drama", "Fantasy",
"Horror", "Mystery", "Science fiction"};
ArrayList<String> genreList = new ArrayList<>();
ArrayAdapter<String> genreAdapter;
Spinner searchSpinner;
ArrayAdapter<String> user_tab3_adapter;
ArrayList<String> tab3_lW = new ArrayList<>();
ArrayList<String> searchBooks = new ArrayList<>();
ArrayAdapter<String> bookSearchAdapter;
int total = 0;
onCreate()
payment()
onActivityResult()
filter()
userDisplayBook()
delete()
update()
onCreateOptionsMenu()
populateMyFirstMenu()
onOptionsItemSelected()
applyMenuOptionItem()
onCreateContextMenu()
onContextItemSelected()
exit()
}
class UserSignup extends AppCompatActivity {
EditText username, name, surname, email, password;
Button signup;
UserDatabaseManager userManager;
SQLiteDatabase database;
String path;
onCreate()
insert()
signUp()
}
@enduml | false | true | false | false | class |
d21eb761de37791b2b79a5a73c9b905884164f4b | 07e1b168bce1233a26b9d2ce8eeaa55516bee6b0 | /src/site/design/differentiation.puml | 8649345def34088559002efc05358c2149186046 | [
"Apache-2.0",
"BSD-3-Clause",
"Minpack",
"LicenseRef-scancode-generic-cla"
] | permissive | apache/commons-math | 1016687acb2c14c9df8060603c006e8ad78df2b8 | 9e02432e06501f94690e172f3856450cd3a55a20 | refs/heads/master | 2023-08-15T01:32:18.953065 | 2023-08-05T16:14:12 | 2023-08-05T16:14:12 | 24,928,494 | 592 | 517 | Apache-2.0 | 2023-07-03T09:08:43 | 2014-10-08T07:00:06 | Java | UTF-8 | PlantUML | false | false | 3,859 | puml | ' Licensed to the Apache Software Foundation (ASF) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' The ASF licenses this file to You under the Apache License, Version 2.0
' (the "License"); you may not use this file except in compliance with
' the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
@startuml
skinparam svek true
skinparam ClassBackgroundColor #F3EFEB
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
package org.apache.commons.math4 #ECEBD8 {
interface "FieldElement<T>" as FieldElement_T_ {
T add(T a)
T subtract(T a)
T negate()
T multiply(int n)
T multiply(T a)
T divide(T a)
T reciprocal()
Field<T> getField()
}
package analysis #DDEBD8 {
interface UnivariateFunction {
double value(double x)
}
package differentiation #DDDBD8 {
class DerivativeStructure {
-DerivativeStructure(DSCompiler compiler)
+DerivativeStructure(int parameters, int order, double value)
+DerivativeStructure(int parameters, int order, int index, double value)
+int getFreeParameters()
+int getOrder()
+double getValue()
+double getPartialDerivative(int[] orders)
+double taylor(double[] delta)
+int getExponent()
+DerivativeStructure compose(double[] f)
+DerivativeStructure cos()
+DerivativeStructure sin()
+DerivativeStructure exp()
+DerivativeStructure sqrt()
}
note bottom
lots of mathematical methods
and constructors ommitted for clarity
end note
class DSCompiler {
{static} +DSCompiler getCompiler(int parameters, int order)
+int getPartialDerivativeIndex(int[] orders)
+int[] getPartialDerivativeOrders(int index)
+int getFreeParameters()
+int getOrder()
+int getSize()
+void checkCompatibility(DSCompiler compiler)
+void compose(double[] operand, int operandOffset, double[] f, double[] result, int resultOffset)
+double taylor(double[] ds, int dsOffset, double[] delta)
+void add(double[] lhs, int lhsOffset, double[] rhs, int rhsOffset, double[] result, int resultOffset)
+void exp(double[] operand, int operandOffset, double[] result, int resultOffset)
}
note bottom
one compiler is built for each pair
(number of parameters, derivation order)
they are cached for efficiency
end note
interface UnivariateDifferentiable {
DerivativeStructure value(DerivativeStructure t)
}
interface UnivariateDifferentiator {
UnivariateDifferentiable differentiate(UnivariateFunction function)
}
FieldElement_T_ <.. DerivativeStructure
DerivativeStructure o--> "1" DSCompiler : delegates computation
UnivariateFunction <|.. UnivariateDifferentiable
UnivariateDifferentiable <-- UnivariateDifferentiator : creates
UnivariateDifferentiable --> DerivativeStructure : uses
}
}
}
@enduml
| false | true | false | false | sequence |
b00349eaecd94e7836cda315ecd176f478881e10 | 188aa3bd1c4fc0a88cab9726c2f2299f147e70d8 | /docs/UC_01/CD.puml | 27de9d2310e74d0f94bcebc5f4304a4f5e6f958d | [] | no_license | botelho-io/lapr2-2020-g029 | c6a3c15bace1145c94c0495ac5f8ce54b7be478c | 1834bf842e5ae1f94d20ab61dad8e8124fc9f61b | refs/heads/master | 2023-08-17T00:53:42.364156 | 2020-06-14T22:29:10 | 2020-06-14T22:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,395 | puml | @startuml CD
skinparam classAttributeIconSize 0
top to bottom direction
class CreateTransactionUI {
}
class CreateTransactionController {
+ getTasks()
+ getFreelancers()
+ newTransaction(Task task, Freelancer freelancer, \nLocalDate endDate, Integer daysDelay, String description)
+ addTransaction()
+ getAmount()
}
class App {
+ getRegistOrganization()
+ getRegistFreelancer()
}
class RegistOrganization {
+ getOrganizationByEmailUser(String email)
}
class RegistFreelancer {
+ getFreelancers()
}
class Organization {
- String name
- String NIF
+ getListTask()
+ getListTransaction()
}
class ListTask {
+ getUnexecutedTaks()
+ getTask(ID)
}
class ListTransaction {
+ newTransaction(Task task, Freelancer freelancer, \nLocalDate endDate, Integer daysDelay, String description)
+ validate(Transaction tr)
+ addTransaction(Transaction tr)
- add(Transaction tr)
}
class Transaction {
+ create(Task task, Freelancer freelancer, \nLocalDate endDate, Integer daysDelay, String description)
+ getAmount()
}
class Task {
- String id
- String description
- Integer durationInHours
- Double costPerHourOfJuniorEur
- String category
+ getExecutor()
}
class PaymentDetails {
Boolean isPaid
}
class TaskExecutionDetails {
- Date endDate
- Integer delayInDays
- String DescriptionQualityOfWork
}
class Freelancer {
- String id
- String name
- String levelOfExpertise
- String email
- String NIF
- String bankAccountIBAN
- String address
- String country
}
CreateTransactionUI ..> CreateTransactionController
CreateTransactionController ..> App
CreateTransactionController ..> RegistOrganization
CreateTransactionController ..> Organization
CreateTransactionController ..> ListTask
CreateTransactionController ..> RegistFreelancer
CreateTransactionController ..> ListTransaction
CreateTransactionController ..> Transaction
Transaction "1" --> "1" Task : knows >
Transaction "*" --> "1" Freelancer : knows >
Transaction "*" --> "1" Organization : knows >
Transaction "1" --> "1" TaskExecutionDetails : has >
Organization "1" --> "1" ListTask : has >
ListTask "1" --> "*" Task : has >
Organization "1" --> "1" ListTransaction : has >
ListTransaction "1" --> "*" Transaction : has >
Task "*" --> "0, 1" Freelancer : knows >
App "1" --> "1" RegistOrganization : has >
RegistOrganization "1" --> "*" Organization : has >
App "1" --> "1" RegistFreelancer : has >
RegistFreelancer "1" --> "*" Freelancer : has >
Transaction "1" --> "1" PaymentDetails : has >
@enduml | false | true | false | false | sequence |
9c448d76ac3ef7ac8f0e00657d391b814e085df6 | 8940d7dd52e97015468ae8531e7e5152c85d512c | /doc/sequence_diagram.puml | cfb35cc9ad3577e3b9a208f628ef475d81fe8d50 | [] | no_license | nkh-lab/relay | c52e1de8ce460eff52cfd73816eb39b6187dace5 | af9ac69f8d27482821329b6627bc3a7d0f325f1d | refs/heads/master | 2023-01-02T19:15:21.773267 | 2020-10-27T11:27:32 | 2020-10-27T12:11:31 | 289,353,018 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,149 | puml | @startuml
participant User
participant Relay
participant Scheduler
alt Not initilized/deinitialized RELAY module
User -> Relay : RELAY_is_inited() = FALSE
User -> Relay : RELAY_get_state() = FALSE
User -> Relay : RELAY_get_error() = FALSE
User -> Relay : RELAY_add_state_listener() = FALSE
User -> Relay : RELAY_add_error_listener() = FALSE
end
alt Correct initilized RELAY module
User -> Relay : RELAY_init()
User -> Relay : RELAY_is_inited() = TRUE
User -> Relay : RELAY_add_state_listener()
User -> Relay : RELAY_add_error_listener()
User -> Scheduler : add RELAY_routine() to scheduler
activate Scheduler
Scheduler -> Scheduler : RELAY_routine(SELF_CHECK)
Scheduler -> User : callback to error_listener() if SELF_CHECK == NOK
deactivate Scheduler
User -> Relay : RELAY_get_state()
User -> Relay : RELAY_get_error()
User -> Relay : RELAY_close() || RELAY_open()
Relay -> Scheduler : RELAY_routine(SWITCHING_CHECK)
activate Scheduler
Scheduler -> User: callback to error_listener() if SWITCHING == NOK
Scheduler -> User: callback to state_listener() if SWITCHING == OK
deactivate Scheduler
User -> Relay : RELAY_deinit()
end
@enduml
| false | true | false | false | sequence |
c31c3610962cb47ecdab4e9be6324fc3104c41e5 | ddd27ef7207e3b508ba557b6f5ca1b2bd172a734 | /app/UML/Blake/BlakeEss6.puml | cd5755ac73c60db8f4a463fc2277aa219c18dd9f | [] | no_license | QRP0002/Wireless_Quote | 7c095f66043b7780f03d624be2fe7956b3369a27 | 0b4762a69db0ebada3d518573e7618a0e57f0368 | refs/heads/master | 2020-06-04T02:48:51.629364 | 2015-05-01T12:49:49 | 2015-05-01T12:49:49 | 33,549,841 | 0 | 0 | null | 2015-04-16T20:57:50 | 2015-04-07T14:57:28 | Java | UTF-8 | PlantUML | false | false | 322 | puml | @startuml
User -> System : Log In
activate System
activate User
System --> User : Display Home Screen
User -> System : Performs Action That Sends Notification
System -> Server : Determine Action
activate Server
Server --> System : Notification Not Found
deactivate Server
System --> User : Receives No Notification
@enduml | false | true | false | false | sequence |
aacfa28e344d1cfe07bc64223bc44f441009203b | eb7171c563dc88963fb043f027b6525d3cb3a153 | /docs/ex43ActivityDiagram.puml | aa57b17e47dd448dfb6c16e50f75d8c80af2cd1d | [] | no_license | xera51/gray-cop3330-assignment3 | 49b441f94e3fa5a6a782373ce4ad249246e0eb22 | bd4358d7022226832df073a30db0f9d99b9f6d15 | refs/heads/master | 2023-05-30T21:11:34.501325 | 2021-06-20T22:10:57 | 2021-06-20T22:10:57 | 377,254,337 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,219 | puml | @startuml
|#DDD|Application|
|#BBB|WebsiteGenerator|
|#AAA|FileLoader|
|#999|ConsoleDataReader|
|Application|
start
:Instantiate Application
object app;
:Instantiate
WebsiteGenerator
websiteGenerator;
:app.websiteGenerator
.setSettingsThroughConsole();
|WebsiteGenerator|
:Call each
prompt method;
|ConsoleDataReader|
:Prompt for Site Name;
|WebsiteGenerator|
:Save to
instance variable;
|ConsoleDataReader|
:Prompt for Author Name;
|WebsiteGenerator|
:Save to
instance variable;
|ConsoleDataReader|
:Prompt for
JS file inclusion;
|WebsiteGenerator|
if(user matches "[Yy]([Ee][Ss])?") then (yes)
:save jsFile
to true;
else (no)
:save jsFile
to false;
endif
|ConsoleDataReader|
:Prompt for
CSS file inclusion;
|WebsiteGenerator|
if(user matches "[Yy]([Ee][Ss])?") then (yes)
:save cssFile
to true;
else (no)
:save cssFile
to false;
endif
|Application|
:app.websiteGenerator.generate();
|WebsiteGenerator|
if(siteName or authorName are blank) then (yes)
:display that site or author
cant be blank;
stop
else
endif
:makeWebsiteDirectory();
|FileLoader|
:get working directory;
|WebsiteGenerator|
:make directory;
:makeSiteNameDirectory();
|FileLoader|
:load file;
|WebsiteGenerator|
:make directory;
if(successful) then (yes)
:return success message;
else (no)
:return fail message;
endif
:makeHtmlFile();
|FileLoader|
:make BufferedWriter for file;
|WebsiteGenerator|
:write information to file;
:close file;
if(successful) then (yes)
:return success message;
else (no)
:return fail message;
endif
if (jsFile == true) then (yes)
:makeJSFile();
|FileLoader|
:make BufferedWriter for file;
|WebsiteGenerator|
:close file;
if(successful) then (yes)
:return success message;
else (no)
:return fail message;
endif
else (no)
endif
if (cssFile == true) then (yes)
:makeCssFile();
|FileLoader|
:make BufferedWriter for file;
|WebsiteGenerator|
:close file;
if(successful) then (yes)
:return success message;
else (no)
:return fail message;
endif
else (no)
endif
:Return all the messages
(success and fail),
appended together;
|Application|
:Display message;
stop
@enduml
| false | true | false | false | activity |
c3bd0faae8a64dbf835a9778ae9318fb313dc61c | a76e7ded7055b62cf913ba91d8f8e745f443530f | /bodyleasing/src/main/kotlin/bodyleasing/After.puml | 8ee10979abe8d12ec1fe48d13ec2fe1fdfc931c2 | [] | no_license | michaem/DDDSample | 7acbbb5d81aa9120a3a7b4611c4c0edc5965c01c | b1887c425a48d8e2a1f87632fd961a234620ed04 | refs/heads/main | 2022-12-27T22:48:48.832296 | 2020-10-13T17:13:41 | 2020-10-13T17:13:41 | 301,216,256 | 6 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,786 | puml | @startuml
package "Identity and access management bounded context" <<Rectangle>> {
class User <<Aggregate Root>> {
- userName: String
- password: String
}
class RoleId <<Value Object>> {
- id: String
}
class Role <<Aggregate Root>> {
- name: String
}
User o-- RoleId : +gainedSecurityRoles
Role o-- RoleId
}
package "Common types" <<Rectangle>> {
class UserId <<Value Object>> {
- id: Char
}
class ProjectId <<Value Object>> {
- id: String
}
class CustomerId <<Value Object>> {
- id: String
}
User o-- UserId
}
package "Freelancer Management Domain Layer" <<Rectangle>> {
class Freelancer <<Aggregate Root>> {
- id: String
- name1: String
- name2: String
- zipCode: String
- city: String
+ getAddress(): Address
+ moveTo(Address)
}
Freelancer o-- UserId
class FreelancerId <<Value Object>> {
- id: String
}
Freelancer o-- FreelancerId
class TimeSheet <<Aggregate Root>> {
- id: String,
- year: Int,
- month: Int,
- hoursWorked: Int
}
TimeSheet o-- FreelancerId
class TimeSheetId <<Value Object>> {
- id: String
}
TimeSheet o-- TimeSheetId
enum ContactType <<Enumeration>> {
FAX
MAIL
MOBILE
}
class CommunicationChannel <<Value Object>> {
- vale: String
}
Freelancer *-- "0..*" CommunicationChannel
CommunicationChannel "0..*" o-- ContactType
class Address<<Value Object>> {
- name1: String,
- name2: String,
- zipCode: String,
- city: String
+ getName1(): String
+ getName2(): String
+ getZipCode(): String
+ getCity(): String
+ changeName1(String): Address
+ changeName2(String): Address
+ changeZipCode(String): Address
+ changeCity(String): Address
}
Freelancer *-- Address
interface EventStore <<Domain Repository>> {
+ store(DomainEvent)
}
class TimeSheetEntered <<Domain Event>> { }
interface FreelancerRepository <<Domain Repository>> {
+ findById(FreelancerId): Freelancer
+ add(Freelancer)
+ remove(Freelancer)
+ findByName(String): Collection<Freelancer>
}
class FreelancerService <<Domain Service>> {
+ timesheetEntered(FreelancerId)
}
FreelancerService o-- EventStore
FreelancerService o-- FreelancerRepository
FreelancerService ..> TimeSheetEntered : "instantiate"
FreelancerService ..> Freelancer : "use"
}
package "Freelancer Management Application Layer" {
class FreelancerApplicationService <<Application Service>> {
+ freelancerMoved(FreelancerApplicationCommand)
+ getPresentationModelFor(FreelancerId): FreelancerPresentationModel
+ timesheetEntered(FreelancerId)
}
FreelancerApplicationService ..> FreelancerService : "use"
}
package "Freelancer Management Infrastructure Layer" {
class HibernateFreelancerRepository {
+ findById(FreelancerId): Freelancer
+ add(Freelancer)
+ remove(Freelancer)
+ findByName(String): Collection<Freelancer>
}
HibernateFreelancerRepository ..|> FreelancerRepository
class HibernateStore { }
HibernateStore ..|> EventStore
class JMSMessagingAdapter <<Timer>> { }
JMSMessagingAdapter ..> HibernateStore : "use"
}
package "Customer Management Domain Layer" <<Rectangle>> {
interface ProjectManagementAdapter {
+ projectExistForCustomer(CustomerId): Boolean
}
interface CustomerRepository <<Customer Repository>> {
+ removedById(CustomerId)
}
class Customer <<Aggregate Root>> {
- name: String
}
Customer o-- CustomerId
class CustomerService <<Domain Service>> {
+ deleteCustomerById(CustomerId)
+ timesheetEntered(TimeSheetEntered)
}
CustomerService o-- ProjectManagementAdapter
CustomerService ..> Customer : "use"
CustomerService ..> CustomerRepository : "use"
CustomerService ..> TimeSheetEntered : "use"
}
package "Customer Management Application Layer" {
class CustomerApplicationService <<Application Service>> {
+ timesheetEntered(TimeSheetEntered)
}
CustomerApplicationService ..> TimeSheetEntered : "use"
CustomerApplicationService ..> CustomerService : "use"
}
package "Customer Management Infrastructure Layer" {
class RestAdapter { }
RestAdapter ..|> ProjectManagementAdapter
class SOAPAdapter { }
SOAPAdapter ..|> ProjectManagementAdapter
class JMSMessageReceiver { }
JMSMessageReceiver ..> CustomerApplicationService : "use"
}
package "Project management Domain Layer" <<Rectangle>> {
interface ProjectRepository <<Domain Repository>> {
+ findById(ProjectId): Project
}
class Project <<Aggregate Root>> {
- name: String
}
Project o-- ProjectId
Project o-- CustomerId
class ProjectService <<Domain Service>> {
+ projectExistsFor(CustomerId) Boolean
}
ProjectService ..> "use" Project
ProjectService o-- ProjectRepository
}
package "Project management Application Layer" <<Rectangle>> {
class ProjectApplicationService <<Application Service>> {
+ projectExistsFor(CustomerId): Boolean
}
ProjectApplicationService ..> ProjectService : "use"
}
package "Project management Infrastructure Layer" <<Rectangle>> {
class ProjectSOAPService <<Web Service EndPoint>> { }
ProjectSOAPService ..> ProjectApplicationService : "use"
class HibernateProjectRepository { }
HibernateProjectRepository ..|> ProjectRepository
}
@enduml | false | true | false | false | class |
0d8c88f63ec5af8ca6e64454ae50187978508838 | ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb | /projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/ui/StaffMgmtMenuUI.puml | 12b0c8f1809b3b3430ab30660277f9595c9a948e | [] | no_license | itachi1706/How-to-use-Git-NTUSCSE1819-Site | d6fcba79d906e9916c3961b11a6e1318d8a0f602 | dbce2f56b42e15be96bd40fd63e75389d397ca34 | refs/heads/master | 2021-07-12T15:24:44.197085 | 2020-08-01T12:31:23 | 2020-08-01T12:31:23 | 172,893,030 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 320 | puml | @startuml
class StaffMgmtMenuUI [[../sg/edu/ntu/scse/cz2002/ui/StaffMgmtMenuUI.html]] {
#generateMenuScreen(): int
-createNewStaff(): void
-editStaffInfo(): void
-removeStaff(): void
-listAllStaff(): void
}
center footer UMLDoclet 1.1.3, PlantUML 1.2018.12
@enduml
| false | true | false | false | class |
995ca174e0ba72fc1b3e670238fcd8eed1f62215 | 1343330838717eca51a9642c1e54657324a089bb | /Diag.puml | 0d323de8462204165696566fa23a26553764cf36 | [] | no_license | aissatoubarryfab/TDComposite2 | 9003843fb0024370c8ae193711c12f3f7321eeb2 | 4ed0c09caf18755edd57900810788ccf4803d442 | refs/heads/main | 2023-08-27T04:58:47.254940 | 2021-10-19T21:56:34 | 2021-10-19T21:56:34 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,429 | puml | @startuml classdiagram
package TD2.fileSystem {
enum ComposantType {
Fichier, Repertoire
}
class FSFactory{
+INSTANCE:FSFactory=new FSFactory() <<final>>
this():FSFactory
+abstractgetInstance():FSFactory
+createComposant(type:ComposantType,name:String,owner:Owner):ComposantFileSystem
}
interface ComposantFileSystem {
+getName():string
+getContent():string
+getOwner():Owner
+getSize():int
+appendContent(in content:string):void
+setOwner(in Owner:Owner):voidj
}
class Owner{
-name: string
+this(in n:string)
+toString():string
}
abstract class composantImplement{
-name:string
+this(in name:stiring,in O:Owner)
+getOwner():Owner
+getName():string
}
composantImplement ...|> ComposantFileSystem
FSFactory ...|> ComposantFileSystem
FSFactory ...|> ComposantType
composantImplement --->"-owner" Owner
class Fichier extends composantImplement{
content:StringBuilder
+this(in name:stiring,O:Owner):Fichier
+getSize():integer
+getContent():stringappendContent(content:string):void
+iscomposite():bool
+toString():string
}
class Repertoire extends composantImplement{
}
Repertoire *-> "-elems *" ComposantFileSystem
}
@enduml
| false | true | false | false | class |
b970c05554bf842f8eede3f3aecd4ea4f4a29b16 | afaba8b7f5d826664155b257db77cf4dbf4b8816 | /oop-pattern/ch07/resources/03-state.puml | 7fef644fe6b2b5691e26f2e88b05598a777852d0 | [
"MIT"
] | permissive | appkr/pattern | b40b621e52c9b27be01f2a21f2f605a459ac998f | 1e635f7b79cc4b89d2e75455cb14e1572619eb20 | refs/heads/master | 2022-11-02T01:56:18.654766 | 2022-10-12T08:45:58 | 2022-10-12T08:47:36 | 71,896,898 | 11 | 2 | MIT | 2018-11-10T15:05:11 | 2016-10-25T12:55:03 | PHP | UTF-8 | PlantUML | false | false | 682 | puml | @startuml
skinparam linetype ortho
class VendingMachine <<context>> {
- state: State
- balance: int
- currentStock: int
+ insertCoin(coin: int): void
+ select(Coffee): Coffee
+ changeState(State): void
+ isEnoughCoinProvidedFor(Coffee): boolean
+ hasNoCoin(): boolean
+ acceptCoin(newCoin: int): void
+ consumeCoin(amount: int): void
+ serve(Coffee): Coffee
}
interface State <<state>> {
+ increaseCoin(coin: int, ctx: VendingMachine): void
+ select(coffee: Coffee, ctx: VendingMachine): Coffee
}
class NoCoinState implements State {}
class SelectableState implements State {}
class SoldoutState implements State {}
VendingMachine -> State
@enduml
| false | true | false | false | class |
996f0a9362450ae52dbbc0cb65ae780f9cc003c4 | e6b5ab2cc2461c64ff9410bb6184adede2b65454 | /doc/model.plantuml | 3f4c0084327dae862dd5dae1885f7198dad63d45 | [] | no_license | dpietruchowski/PemesApps | 2c478b81069327b89b729d3d6a9eafc8204f5228 | 462792bc160400664a34ae458ed0858b589f73d1 | refs/heads/master | 2022-01-07T15:34:21.787440 | 2019-06-05T17:41:18 | 2019-06-05T17:41:18 | 117,719,494 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 265 | plantuml | @startuml
hide methods
package model {
class Package {
float price;
int amount;
}
class Product {
Package package;
string name;
}
class Order {
Date date;
}
Product::package --> Package
}
@enduml | false | true | false | false | class |
e1f02458d2e26ab795e6110258892d037193fdf3 | bcef5d5e3b6f84b83e2435d43204f564b9b08d23 | /src/main/java/com/okcoin/vault/jni/xmr/cold.sign.puml | 4818e3e895cfa769ea397a6bd33a87360548157b | [] | no_license | zhongqiuwood/javawallet | 38b6469b58f538f022a0b7a0c98b7e501e260f77 | 5924832e784205989a1fac48a9fad14344614933 | refs/heads/master | 2020-05-17T19:04:42.538647 | 2019-03-28T07:49:40 | 2019-03-28T07:49:40 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,052 | puml | @startuml
ColdWallet -> ColdWallet: created in /cold by \n <--daemon-address nobody\n --generate-from-spend-key /cold/coldwallet>
HotWallet -> HotWallet: created in /hot by \n <--generate-from-view-key /hot/hotwallet>
HotWallet -> monerod: go to monerod to sync updated blocks
monerod --> HotWallet:
HotWallet -> HotWallet: --command export_outputs /hot/outputs
HotWallet -> ColdWallet: cp /hot/outputs /cold
ColdWallet -> ColdWallet: --command import_outputs /cold/outputs
ColdWallet -> ColdWallet: --command export_keyimages /cold/keyimages
ColdWallet -> HotWallet: cp /cold/keyimages /hot
HotWallet -> HotWallet: --command import_keyimages /hot/keyimages
HotWallet -> HotWallet: use <--command transfer unimportant> to \ngenerate unsigned_monero_tx
HotWallet -> ColdWallet: cp /hot/unsigned_monero_tx /cold
ColdWallet -> ColdWallet: sign: use <--command sign> \nto generate signed_monero_tx
ColdWallet -> HotWallet: cp /cold/signed_monero_tx /hot
HotWallet -> monerod: use <--command submit_transfer> \n to send signed_monero_tx
@enduml | false | true | false | false | sequence |
df6b024e9ada2e2f529c628ad9694ad682005565 | 7e6fa61a8595cd38195713b5c7698f5de6f7c7b3 | /base/044/old/Association22.puml | b4ffa6288e45793f44282043d7a9fd8ea5a9bf17 | [] | no_license | qxcodepoo/arcade | 3ff1852792a47584f00c1ab9fd5011ebb2c4b830 | 3722a8c976a51829b2b6f4913360c23bf114433a | refs/heads/master | 2023-08-31T04:07:06.255292 | 2023-08-25T03:16:42 | 2023-08-25T03:16:42 | 217,410,955 | 36 | 42 | null | 2020-09-24T13:22:18 | 2019-10-24T23:12:40 | C++ | UTF-8 | PlantUML | false | false | 185 | puml | @startuml
skinparam defaultFontName Hasklig
skinparam dpi 150
left to right direction
AssociacaoEsportiva "*" o-- "*" Equipe : < Afiliada
Equipe "*" o-- "*" Jogador : membro
@enduml | false | true | false | false | class |
757f313bfa824c707f4fae50bd1f7d0f74de0a1e | c271cd2b70b09c75e8082ec935d39048959de540 | /conception/d_deployment.puml | da9449c10705979ea7f99e6fe11551ba886215a8 | [] | no_license | prodageo/mniproj2020b-2020a70b | c37a1da9e8682a2ff03960ac83066255563d25f5 | 0980442377244601c73b4a66f7df7c6605909a1b | refs/heads/master | 2023-02-11T22:01:38.951354 | 2021-01-07T15:24:40 | 2021-01-07T15:24:40 | 304,652,859 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 743 | puml | @startuml
rectangle "ServeurWeb" as WS{
component InterfaceWeb as IW
component ServiceWeb as Service
component Redis as Cache
}
node Routeur
rectangle "Navigateur" as WB {
}
rectangle "ServeurBaseDeDonnees" as DS{
database BaseDeDonnees as database {
artifact Images
}
}
actor Utilisateur as User
User <-right-> WB
WB -right- Routeur
Routeur -right- WS
IW <--> Service
Service --> Cache #blue: "1. Interroge le cache"
Cache --> Service #blue: "2. Retourne la donnée si présente"
Service --> Cache #blue: "5. Ajoute la donnée au cache"
Service <-- database #green: "4. Envoi de la donnée"
Service --> database #green: "3. Données non présente \nen chache :\ninterrogation de la BD"
@enduml | false | true | true | false | sequence |
de6c8a588dfb4d13538e0f3e7f5e445609902b60 | 0be0f2a821baca0e9bbab3bfb133dba1011d2d93 | /class-diagram.puml | 7d1ac0766a295b52629e1754e8855c8a998bac18 | [] | no_license | lcalmsky/member | 51ad0d2f74a8ff5c618ce53a511fd81e605688b7 | 58ac40c4ef53c8165b8e6e52ec705d843dacbdfe | refs/heads/master | 2023-05-07T10:03:03.382462 | 2021-05-31T11:29:49 | 2021-05-31T11:29:49 | 371,939,618 | 0 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 212 | puml | @startuml
'https://plantuml.com/class-diagram
class MemberService
interface MemberRepository
class MemoryMemberRepository
MemberRepository -- MemberService
MemberRepository <|-- MemoryMemberRepository
@enduml
| false | true | false | false | class |
5f2ff5a6ddd9c8419870469bf13a87860b8ed587 | fe2ac6b8415a52ed940a16b7d8b8da164bf50d64 | /GuessGame.plantuml | 318ba7a6b8c5acf1a6c8d12a423fa24291053910 | [] | no_license | agatagolonka/GuessGame | faafd4b12dee4c6763d6de25739017630d87bca2 | 3e45e68695f4e23a1b6fc1d55d28929728dd5beb | refs/heads/master | 2023-03-10T04:19:36.725697 | 2021-02-26T16:43:45 | 2021-02-26T16:43:45 | 338,921,153 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,317 | plantuml | @startuml
title __GUESSGAME's Class Diagram__\n
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.AskUser {
}
}
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.CheckDigit {
}
}
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.ComunicatesToUser {
}
}
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.DrawRange {
}
}
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.GenerateDigit {
}
}
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.GetDigit {
}
}
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.Main {
}
}
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.Printer {
}
}
namespace com.github.agatagolonka.GuessGame {
class com.github.agatagolonka.GuessGame.SaySomething {
}
}
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 |
d35022c4e193fa2f9d7a3a67cebc42a64b599c12 | 207145958202d5cbc6e998353a581d3ee8c35144 | /src/main/java/com/redhat/batigerteam/tracing/tracing.plantuml | d43469aa21c46aa2cae65a8edeb7d3f5c2bae43a | [
"Apache-2.0"
] | permissive | mauriziocarioli/Tracing | f9a3c1ddbf63d9d13c4f52aef0954cb2015bb7a3 | f764d2721ed0e3c395e843ef5776f670ff17e2b0 | refs/heads/master | 2020-07-31T16:00:13.768453 | 2020-02-21T15:32:38 | 2020-02-21T15:32:38 | 210,665,546 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,324 | plantuml | @startuml
title __TRACING's Class Diagram__\n
namespace com.redhat.batigerteam.tracing {
abstract class com.redhat.batigerteam.tracing.CustomAgendaEventListener {
+ CustomAgendaEventListener()
+ afterMatchFired()
+ afterRuleFlowGroupActivated()
+ afterRuleFlowGroupDeactivated()
+ agendaGroupPopped()
+ agendaGroupPushed()
+ beforeMatchFired()
+ beforeRuleFlowGroupActivated()
+ beforeRuleFlowGroupDeactivated()
+ matchCancelled()
+ matchCreated()
}
}
namespace com.redhat.batigerteam.tracing {
abstract class com.redhat.batigerteam.tracing.CustomAsynchronousJobListener {
+ afterJobCanceled()
+ afterJobExecuted()
+ afterJobScheduled()
+ beforeJobCanceled()
+ beforeJobExecuted()
+ beforeJobScheduled()
}
}
namespace com.redhat.batigerteam.tracing {
abstract class com.redhat.batigerteam.tracing.CustomDMNRuntimeEventListener {
+ afterEvaluateBKM()
+ afterEvaluateContextEntry()
+ afterEvaluateDecision()
+ afterEvaluateDecisionService()
+ afterEvaluateDecisionTable()
+ beforeEvaluateBKM()
+ beforeEvaluateContextEntry()
+ beforeEvaluateDecision()
+ beforeEvaluateDecisionService()
+ beforeEvaluateDecisionTable()
}
}
namespace com.redhat.batigerteam.tracing {
abstract class com.redhat.batigerteam.tracing.CustomDeploymentEventListener {
+ onActivate()
+ onDeactivate()
+ onDeploy()
+ onUnDeploy()
}
}
namespace com.redhat.batigerteam.tracing {
abstract class com.redhat.batigerteam.tracing.CustomPhaseLifecycleListener {
+ phaseEnded()
+ phaseStarted()
+ solvingEnded()
+ solvingStarted()
+ stepEnded()
+ stepStarted()
}
}
namespace com.redhat.batigerteam.tracing {
abstract class com.redhat.batigerteam.tracing.CustomProcessEventListener {
+ CustomProcessEventListener()
+ afterNodeLeft()
+ afterNodeTriggered()
+ afterProcessCompleted()
+ afterProcessStarted()
+ afterSLAViolated()
+ afterVariableChanged()
+ beforeNodeLeft()
+ beforeNodeTriggered()
+ beforeProcessCompleted()
+ beforeProcessStarted()
+ beforeSLAViolated()
+ beforeVariableChanged()
}
}
namespace com.redhat.batigerteam.tracing {
abstract class com.redhat.batigerteam.tracing.CustomRuleRuntimeEventListener {
+ CustomRuleRuntimeEventListener()
+ objectDeleted()
+ objectInserted()
+ objectUpdated()
}
}
namespace com.redhat.batigerteam.tracing {
abstract class com.redhat.batigerteam.tracing.CustomTaskLifeCycleEventListener {
+ CustomTaskLifeCycleEventListener()
+ afterTaskActivatedEvent()
+ afterTaskAddedEvent()
+ afterTaskClaimedEvent()
+ afterTaskCompletedEvent()
+ afterTaskDelegatedEvent()
+ afterTaskExitedEvent()
+ afterTaskFailedEvent()
+ afterTaskForwardedEvent()
+ afterTaskNominatedEvent()
+ afterTaskNotificationEvent()
+ afterTaskReassignedEvent()
+ afterTaskReleasedEvent()
+ afterTaskResumedEvent()
+ afterTaskSkippedEvent()
+ afterTaskStartedEvent()
+ afterTaskStoppedEvent()
+ afterTaskSuspendedEvent()
+ afterTaskUpdatedEvent()
+ beforeTaskActivatedEvent()
+ beforeTaskAddedEvent()
+ beforeTaskClaimedEvent()
+ beforeTaskCompletedEvent()
+ beforeTaskDelegatedEvent()
+ beforeTaskExitedEvent()
+ beforeTaskFailedEvent()
+ beforeTaskForwardedEvent()
+ beforeTaskNominatedEvent()
+ beforeTaskNotificationEvent()
+ beforeTaskReassignedEvent()
+ beforeTaskReleasedEvent()
+ beforeTaskResumedEvent()
+ beforeTaskSkippedEvent()
+ beforeTaskStartedEvent()
+ beforeTaskStoppedEvent()
+ beforeTaskSuspendedEvent()
+ beforeTaskUpdatedEvent()
}
}
com.redhat.batigerteam.tracing.CustomAgendaEventListener .up.|> org.kie.api.event.rule.AgendaEventListener
com.redhat.batigerteam.tracing.CustomAsynchronousJobListener .up.|> org.jbpm.executor.AsynchronousJobListener
com.redhat.batigerteam.tracing.CustomDMNRuntimeEventListener .up.|> org.kie.dmn.api.core.event.DMNRuntimeEventListener
com.redhat.batigerteam.tracing.CustomDeploymentEventListener .up.|> org.jbpm.services.api.DeploymentEventListener
com.redhat.batigerteam.tracing.CustomPhaseLifecycleListener .up.|> org.optaplanner.core.impl.phase.event.PhaseLifecycleListener
com.redhat.batigerteam.tracing.CustomProcessEventListener .up.|> org.kie.api.event.process.ProcessEventListener
com.redhat.batigerteam.tracing.CustomRuleRuntimeEventListener .up.|> org.kie.api.event.rule.RuleRuntimeEventListener
com.redhat.batigerteam.tracing.CustomTaskLifeCycleEventListener .up.|> org.kie.api.task.TaskLifeCycleEventListener
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 |
fe0d105984200e2b8142c91f68a95492939e3c56 | d50311267155e5ba41837cd5fc3186e70a54e1f1 | /sharding-jdbc-doc/class-design/Lexer-class.puml | 99f78b509e24f1e7e88c81581a4060a608160f74 | [
"Apache-2.0"
] | permissive | wangjianwen/sharding-jdbc | 53dad416e90a273c299ef1d94d9734fac90b113e | b554f7bcd7762dccf8eb87b5b9173bd9c488b187 | refs/heads/master | 2021-07-24T01:54:48.157302 | 2017-11-03T00:47:43 | 2017-11-03T00:47:43 | 105,404,336 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 131 | puml | @startuml
class Lexer
Lexer <|-- MySQLLexer
Lexer <|-- PostgreSQLLexer
Lexer <|-- OracleLexer
Lexer <|-- SQLServerLexer
@enduml | false | true | false | false | class |
8efa73bf52e60c0aa60df53b540c3b63e732e9d1 | bf2c24b99802953a25d0e34d7a1ee47dbdd459da | /src/use-cases/Language Report.puml | 99508a91e46d1b8f57d8a3523cb5dfd4f3de6ac0 | [
"Apache-2.0"
] | permissive | Richard-Herz/SEMethodsSet08103G1 | 734e3fe5ce3e0c9234b16ff6dd5d0170824ec34b | 36b7ce052368c2cd4f59eb823adcd6cf1c1ea265 | refs/heads/master | 2020-04-18T07:20:12.232655 | 2019-05-06T14:24:48 | 2019-05-06T14:24:48 | 167,356,814 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 253 | puml | @startuml
actor HR as "Population Information Worker"
rectangle Database
rectangle "World System" {
usecase UC4 as "Language Report"
usecase UCa as "Print Language Report"
HR - UC4
UC4 ..> UCa : include
UC4 - Database
}
@enduml | false | true | false | false | usecase |
d995e9967ea5fb38c4cf3de78fb76d50353c471a | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/Utils/ITestRunCallback.puml | 8712af9ac5a74d467798e126e3dd4b3822c0eddd | [] | 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 | 216 | puml | @startuml
interface ITestRunCallback {
RunStarted(testsToRun:ITest) : void
RunFinished(testResults:ITestResult) : void
TestStarted(test:ITest) : void
TestFinished(result:ITestResult) : void
}
@enduml
| false | true | false | false | class |
d8acdbbbaaa2cc0c93b098a1d3e05ca38ea60dbc | 967db7f88bdf0e5cb8feca9571b9e85175f7bcc8 | /docs/Solution/Services/app/UserInteraction.puml | 622418a69bcffe79658d4d037b4e187d4b0d26bf | [] | no_license | CAADE/edgeville | fd0053d749c259029ef4c7791210663ace87be21 | 6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65 | refs/heads/master | 2020-03-28T06:11:31.554585 | 2019-05-02T17:37:03 | 2019-05-02T17:37:03 | 147,819,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 79 | puml | @startuml
rectangle "Diagram TBD"
@enduml
actor User
User -> "app": UseCase
| false | true | false | false | sequence |
ad3b5b90bd4609c2891475e8c61a364767a0285c | 9799809e8d3742b4473a4fa0f63c73511d8a8c9d | /diagram/custom-repository-bad-case.plantuml | 145b6bc59b43403e4023ca945be64a0f0817a7e6 | [] | no_license | lcalmsky/spring-data-jpa | 3cec8f46dbebe62746f68bee9df9ebcce221717c | 051b5411ebfcedbfaa0b2c850d2cb8cd7ae6ae20 | refs/heads/master | 2023-06-29T04:39:16.191772 | 2021-07-22T01:56:02 | 2021-07-22T01:56:02 | 380,320,384 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 517 | plantuml | @startuml
interface JpaRepository
interface MemberRepository<Member, Long>
interface CustomMemberRepository {
findByCustomFactor(): Member
}
class CustomMemberRepositoryImpl implements CustomMemberRepository{
}
interface MemberService {
}
class MemberHandler implements MemberService {
- memberRepository: MemberRepository
- customMemberRepository: CustomMemberRepository
}
JpaRepository <|-down- MemberRepository
MemberRepository -down- MemberService
CustomMemberRepository -down- MemberService
@enduml | false | true | false | false | class |
b230a547be768c750b7338e2c26dee69f846887b | 4a46872b586ed5cd62cdfb631d55be145978fe4c | /src/main/java/com/masterarbeit/compare/compare.plantuml | be4090c76f9e470b48d85dcef5a8fb50e05a87e2 | [] | no_license | edegeyer/validator | 3f80d7523f2dd36256e6b7e14ff870ff5b45e301 | 0dedd33202ddc2957b482bfdf387be74242cb146 | refs/heads/master | 2020-04-15T12:30:14.209365 | 2019-07-01T12:30:09 | 2019-07-01T12:30:09 | 164,677,194 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,891 | plantuml | @startuml
title __COMPARE's Class Diagram__\n
package com.masterarbeit {
package com.masterarbeit.compare {
class BoolComp {
+ compare()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
class CompareService {
- sigma : double
~ file : File
+ compareOneOnOne()
+ doCompareSAP()
+ getAbsolute()
+ resultForTable()
+ compareEntities()
+ findTheMostLikely()
+ compareAttribute()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
class Comparer {
~ Comparer()
+ compare()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
interface ComparerInterface {
{abstract} + compare()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
class DateComp {
~ DateComp()
- convertDate()
- gausCompareTwoValues()
+ compare()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
class DoubleComp {
~ DoubleComp()
- ObjecttoDouble()
+ compare()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
class InsuranceNumberComp {
~ InsuranceNumberComp()
+ compare()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
class IntegerComp {
- intToArrayList()
- stringToArrayList()
- longToArrayList()
- compareLength()
+ compare()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
class Sigma {
{static} + Bool : double
{static} + Inte : double
{static} + Intelength : double
{static} + Str : double
{static} + Doub : double
{static} + Monate : double
{static} + Tage : double
{static} + strl_ : double
{static} + strd_ : double
{static} + stro_ : double
+ Strcmp2 : String
+ wert : double
+ tagewert : double
+ monatewert : double
+ strl : double
+ strd : double
+ stro : double
+ typeconv()
+ getStrcmp2()
+ setStrcmp2()
+ getStro()
+ setStro()
+ getStrd()
+ setStrd()
+ getStrl()
+ setStrl()
+ getWert()
+ setWert()
+ getTagewert()
+ setTagewert()
+ getMonatewert()
+ setMonatewert()
+ setSigmaBool()
+ setSigmaInte()
+ setSigmaIntelength()
+ setSigmaStr()
+ setSigmaDoub()
+ setSigmaMonate()
+ setSigmaTage()
+ setSigmastro_()
+ setSigmastrl_()
+ setSigmastrd_()
}
}
}
package com.masterarbeit {
package com.masterarbeit.compare {
class StringComp {
+ StringComp()
+ calculate()
+ calculate_DL()
- min()
+ costOfSubstitution()
- StringToLong()
- StringToHashMap()
- findCharInStringRight()
- findCharInStringLeft()
- getTranspositions()
- getDistribution()
- hammingDistance()
- compareLength()
- compareContent()
- compareDistribution()
- compareOrder()
+ compare()
}
}
}
BoolComp -up-|> ComparerInterface
CompareService o-- IntegerComp : intCompare
CompareService o-- DateComp : dateCompare
CompareService o-- DoubleComp : doubleCompare
CompareService o-- InsuranceNumberComp : insuranceNumberComp
CompareService o-- StringComp : stringCompare
CompareService o-- BoolComp : boolComp
CompareService o-- Comparer : comp
Comparer -up-|> ComparerInterface
Comparer o-- IntegerComp : intComp
Comparer o-- DoubleComp : doubleComp
Comparer o-- DateComp : dateComp
Comparer o-- StringComp : stringComp
Comparer o-- BoolComp : boolComp
DateComp -up-|> ComparerInterface
DateComp o-- IntegerComp : integerComp
DoubleComp -up-|> ComparerInterface
DoubleComp o-- IntegerComp : integerComp
InsuranceNumberComp -up-|> ComparerInterface
InsuranceNumberComp o-- IntegerComp : integerComp
InsuranceNumberComp o-- DateComp : dateComp
IntegerComp -up-|> ComparerInterface
StringComp -up-|> ComparerInterface
StringComp o-- IntegerComp : integerComp
StringComp o-- InsuranceNumberComp : insuranceNumberComp
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 |
ee9ef714b9699993ac4376d262bd573f9c002fcd | 63e91498e20e6d442c874bd0f228e0c4ac06100f | /docs/images/uml-split.puml | 6cc8f2e71752e4c69dbbd91dcd645f38e737ea1e | [
"MIT"
] | permissive | szepeviktor/case-converter | c4f65f62099bbe5dd7fd01e2cc79975d1a9717f8 | 71002918c3dd1430006b793a17cd79fee394e2f9 | refs/heads/master | 2021-07-10T00:20:26.584254 | 2019-10-21T22:01:52 | 2019-10-21T22:01:52 | 227,421,073 | 0 | 0 | MIT | 2019-12-11T17:19:01 | 2019-12-11T17:19:00 | null | UTF-8 | PlantUML | false | false | 935 | puml | @startuml
namespace Jawira.CaseConverter.Split {
class DashSplitter << class >> {
+PATTERN
--
+split()
}
abstract Splitter << abstract >> {
#inputString
--
+__construct()
+<i>split</i>()
#splitUsingPattern()
}
class SpaceSplitter << class >> {
+PATTERN
--
+split()
}
class DotSplitter << class >> {
+PATTERN
--
+split()
}
class UnderscoreSplitter << class >> {
+PATTERN
--
+split()
}
class UppercaseSplitter << class >> {
+split()
#splitUsingUnderscore()
}
}
Jawira.CaseConverter.Split.DashSplitter --|> Jawira.CaseConverter.Split.Splitter
Jawira.CaseConverter.Split.SpaceSplitter --|> Jawira.CaseConverter.Split.Splitter
Jawira.CaseConverter.Split.DotSplitter --|> Jawira.CaseConverter.Split.Splitter
Jawira.CaseConverter.Split.UnderscoreSplitter --|> Jawira.CaseConverter.Split.Splitter
Jawira.CaseConverter.Split.UppercaseSplitter --|> Jawira.CaseConverter.Split.Splitter
@enduml
| false | true | false | false | class |
4f5f6626326d70674073d306b4b77fa6122ae9ba | 4edc50caabd469cf79e1ca850d8d16af851df046 | /haskell/ddd/02-identity-and-entity/doc/Item.puml | 98f0e98ccea4fc9846f9d498f7bb094b6d5fae1a | [] | no_license | suzuki-hoge/dev-note | 0ff64d37969c80642a48ddc659efd399d525a71a | 5793c5586770b6111a4e0599a23304906ec41960 | refs/heads/master | 2020-12-30T22:11:52.602056 | 2017-05-11T09:16:47 | 2017-05-11T09:16:47 | 64,663,648 | 2 | 1 | null | 2017-05-11T09:16:48 | 2016-08-01T12:05:59 | Haskell | UTF-8 | PlantUML | false | false | 203 | puml | @startuml
class Item {
ItemId
ItemName
StockedStatus
ItemStatus
Optional<ArrivalScheduledDate>
Optional<ReceivedDate>
provision()
ship()
receive()
cancel()
returnBack()
}
@enduml | false | true | false | false | class |
0c1b46bc00fbdbe74c34c20788d86b7e79fd09ff | 9fb800bced4689dc1cd56f5fd38f288062d5140c | /src/projects-service/Application/Models/DataTransferObjects/ProjectDto.puml | caadbf32247c4e2a30a2c4d153bf00015bfa3620 | [] | no_license | converge-app/uml-diagrams | b0638f3b801ced52b650025b1b81d29f4ff345fe | 4202d41a464838d7604062e407b065bf512ad8d6 | refs/heads/master | 2020-11-25T09:53:56.136779 | 2019-12-17T12:11:29 | 2019-12-17T12:11:29 | 228,607,152 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 213 | puml | @startuml
class ProjectDto {
+ Id : string <<get>> <<set>>
+ OwnerId : string <<get>> <<set>>
+ FreelancerId : string <<get>> <<set>>
+ ProjectContent : ProjectContentDto <<get>> <<set>>
}
@enduml
| false | true | false | false | class |
9fb46f427b9723d380622ac8dab37445866199ef | 01cf293a1b781ae355c4c8eb8409a6e1c85428e9 | /docs/diagrams/src/version.plantuml | 9c32d63bbbaa3e50a1bfa7baf9dd27a204557c55 | [] | no_license | EnriqueCF/requirements | fe59445d677f9bae4262950cbd9ab61688e90013 | 8afdff6df115f97585ff980abe253d4da387de90 | refs/heads/master | 2023-06-13T23:42:22.698560 | 2021-07-11T18:59:59 | 2021-07-11T18:59:59 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,262 | plantuml | @startuml version
state Básica
state Gráficos
state UndoRedo
state ClienteServidor
State Ficheros
State BasesDatos
[*] --> Sencilla
Sencilla --> Básica :Mantenimiento perfectivo
Sencilla --> Gráficos:Mantenimiento adaptativo
Gráficos --> UndoRedo:Mantenimiento perfectivo
UndoRedo --> ClienteServidor:Mantenimiento adaptativo
ClienteServidor --> Ficheros:Mantenimiento perfectivo
Ficheros --> BasesDatos:Mantenimiento adaptativo
BasesDatos --> [*]
note right of Sencilla #15D2F3
Juego de las 3 en raya con interfaz de consola
y con casos de uso para dos jugadores:
arrancar, jugar y continuará.
end note
note left of Básica #15D2F3
Juego de las 3 en raya con interfaz de consola
y con casos de uso añadiendo un jugador máquina:
arrancar, jugar y continuará.
end note
note right of Gráficos #15D2F3
Añadiendo interfaz gráfica.
end note
note right of UndoRedo #15D2F3
Añadiendo funcionalidad con deshacer
y rehacer jugadas.
end note
note right of ClienteServidor #15D2F3
Añadiendo distribución cliente/servidor.
end note
note right of Ficheros #15D2F3
Añadiendo funcionalidad con persistencia
de ficheros.
end note
note right of BasesDatos #15D2F3
Adaptando persistencia con bases de datos.
end note
@enduml
| false | true | true | false | sequence |
3db18b21632529ab75c75c6426a451c53cd26b29 | b7d2ba71058efa46eff4ed885324819fb3f99266 | /src/doc/WEB_Controllers/RoomMonitoring/US610/US610_sd_RoomMonitoring.puml | 8dd03dd383970f330e6a46f224dcaa619fc11ad4 | [] | no_license | Almadanmp/backend4 | 3aaa5cbe453041917a510ceee83bf318499a9823 | 07ab3c1af9c7de6ff35cf23bf44b0e664db82f46 | refs/heads/master | 2022-11-25T10:30:27.184246 | 2019-06-30T19:26:12 | 2019-06-30T19:26:12 | 194,547,877 | 0 | 0 | null | 2022-11-16T11:54:00 | 2019-06-30T18:24:24 | Java | UTF-8 | PlantUML | false | false | 3,146 | puml | @startuml
skinparam titleBorderRoundCorner 10
skinparam titleBorderThickness 3
skinparam titleBorderColor indianred
skinparam titleBackgroundColor snow
skinparam FontName quicksand
skinparam actor {
BorderColor indianred
backgroundColor Snow
}
skinparam sequence {
LifeLineBackgroundColor indianred
ParticipantBackgroundColor snow
}
skinparam roundcorner 10
skinparam component {
arrowThickness 1
ArrowFontName Verdana
ArrowColor indianred
ArrowFontColor darkslategrey
}
title US610 \n Get Max Temperature in a room in a specific day.
autonumber
actor "HTTP Client"
"HTTP Client" ->> ":SpringResolver": GET ".../houseMonitoring/totalRainfall" \n getTotalRainfallOnGivenDay \n (DateIntervalDTO)
activate "HTTP Client"
activate ":SpringResolver"
":SpringResolver" ->> ":HouseMonitoringControllerWeb": getTotalRainfallOnGivenDay \n (Date)
deactivate ":SpringResolver"
activate ":HouseMonitoringControllerWeb"
":HouseMonitoringControllerWeb" ->> ":GeographicAreaHouseService": getTotalRainfallOnGivenDay \n (Date)
activate ":GeographicAreaHouseService"
":GeographicAreaHouseService" ->> ":HouseRepository": getHouseByID(id)
create ":House"
activate ":HouseRepository"
":HouseRepository" ->> ":House" : create ":House"
":HouseRepository" -->> ":GeographicAreaHouseService": return house
deactivate ":HouseRepository"
":GeographicAreaHouseService" -->> ":House": getMotherAreaID(Long)
activate ":House"
":House" -->> ":GeographicAreaHouseService": return geographicAreaID
deactivate ":House"
":GeographicAreaHouseService" ->> ":GeographicAreaRepository": get(id)
activate ":GeographicAreaRepository"
create ":GeographicArea"
":GeographicAreaRepository" ->> ":GeographicArea": create GeographicArea
activate ":GeographicArea"
":GeographicArea" -->> ":GeographicAreaRepository": return GeographicArea
deactivate ":GeographicArea"
":GeographicAreaRepository" -->> ":GeographicAreaHouseService": return GeographicArea
deactivate ":GeographicAreaRepository"
ref over ":GeographicAreaHouseService"
get getClosestSensorOfGivenType
end ref
create ":Sensor"
":GeographicAreaHouseService" ->> ":Sensor": getReadings()
activate ":Sensor"
":Sensor" -->":GeographicAreaHouseService":return List<Reading>
deactivate ":Sensor"
":GeographicAreaHouseService" -> "ReadingUtils": getValueReadingsInDay(Date, List<Reading>)
activate "ReadingUtils"
"ReadingUtils" --> ":GeographicAreaHouseService": return double
deactivate ":Sensor"
deactivate "ReadingUtils"
alt AreaSensor with Readings (SUCCESS)
":GeographicAreaHouseService" -->> ":HouseMonitoringControllerWeb": return double
":HouseMonitoringControllerWeb" -->> "HTTP Client": return new ResponseEntity<>(double, HttpStatus.SUCCESS)
else if AreaSensor Non-existent or without Readings on the given date
":GeographicAreaHouseService" -->> ":HouseMonitoringControllerWeb": return throw Exception
deactivate ":GeographicAreaHouseService"
":HouseMonitoringControllerWeb" -->> "HTTP Client": return new ResponseEntity<>(failed message, HttpStatus.BAD_REQUEST)
deactivate "HTTP Client"
deactivate ":HouseMonitoringControllerWeb"
end
@enduml | false | true | false | false | usecase |
4b1c73907071c569c882e60d7f676ea51ed261d8 | 286b233fd7e797c9d122461c20e399eba41ff31f | /creation/singleton/uml/singleton_cd.puml | 3b900b4e7990e4b2f25bb767d2be78f6efddad65 | [] | no_license | ace-lectures/pattern-repository | ab18431255285aff7a909ce020d4f0be8f17e4a2 | 126c9f42e8f29e48458196be48ca40dca1023e25 | refs/heads/master | 2021-07-05T20:59:34.369443 | 2020-09-18T14:39:38 | 2020-09-18T14:39:38 | 175,689,148 | 22 | 13 | null | 2020-09-18T14:39:40 | 2019-03-14T19:48:30 | Java | UTF-8 | PlantUML | false | false | 193 | puml | @startuml
skinparam nodesep 75
skinparam ranksep 50
hide empty members
class Singleton {
- {static} Singleton instance
__
- Singleton()
__
+ {static} build(): Singleton
}
@enduml
| false | true | false | false | class |
58d8eeaf6ccf26adc97999e1b0599788a481ede6 | fd2233e5a58b28aa58fbd7b7ec93d129594e31d5 | /edgelet/doc/product-info.plantuml | b045fded4701793976a6d68513936e7d77942bf4 | [
"MIT"
] | permissive | Azure/iotedge | 575c1c194519d1e14afe6f5cc147576765d2be7a | 6d882eaaaa445e298c91950090a596a7d05f5885 | refs/heads/main | 2023-09-04T02:48:24.008800 | 2023-09-01T17:22:54 | 2023-09-01T17:22:54 | 138,646,782 | 1,518 | 534 | MIT | 2023-09-14T20:34:13 | 2018-06-25T20:31:33 | C# | UTF-8 | PlantUML | false | false | 1,151 | plantuml | @startuml
participant "IoT Hub/P360" as iothub
actor "Operator" as operator
control "aziot-edged" as edged
participant "EdgeAgent" as agent
entity "/etc/aziot/edged/config.toml" as config
entity "config.additional_info" as pinfo
entity "OS" as os
operator -> edged : start edged
edged -> config : read configuration
activate config
config -> edged : configuration parameters
edged -> edged : extract additional_info location
edged -> pinfo : read additional_info
activate pinfo
pinfo -> edged : additional_info parameters
deactivate pinfo
deactivate config
edged -> agent : start EdgeAgent
activate agent
agent --> edged : /systeminfo request
edged -> os : /etc/os-release, uname
os -> edged : kernel name, release, version\nOS name, version, architecture
edged -> edged : merge additional_info, preferring additional_info
edged --> agent : /systeminfo response
agent -> agent : encode response as query string
agent -> agent : embed query string in User-Agent comment
agent --> iothub : upstream communication
iothub -> iothub : decode query string
iothub -> iothub : process system info fields
...
iothub --> operator : fleet metrics
@enduml
| false | true | false | false | sequence |
8dc07a1053625cd644daff4d3a2c5a40774ce7af | 33a63a183246febbb4e3813441067038777c403d | /atlas-docs/_book/code_read/atlas_bundle_load/bundle_load_part_2.uml | 495a60fd64aad98f9035a14b11ffda5f40d39380 | [
"Apache-2.0"
] | permissive | wwjiang007/atlas | 95117cc4d095d20e6988fc2134c0899cb54abcc9 | afaa61796bb6b26fe373e31a4fc57fdd16fa0a44 | refs/heads/master | 2023-04-13T22:41:18.035080 | 2021-04-24T09:05:41 | 2021-04-24T09:05:41 | 115,571,324 | 0 | 0 | Apache-2.0 | 2021-04-24T09:05:42 | 2017-12-28T01:21:17 | Java | UTF-8 | PlantUML | false | false | 395 | uml | @startuml
autonumber 8
BundleInstaller --> BundleInstaller : call
BundleInstaller --> Framework : installNewBundle
Framework --> BundleImpl : new
BundleImpl --> BundleImpl : resolveBundle
BundleImpl --> BundleClassLoader : new
BundleImpl --> BundleLifecycleHandler : loaded
BundleLifecycleHandler --> DelegateResources : addBundleResources
Framework --> BundleImpl : optDexFile
@enduml
| false | true | false | false | sequence |
1a35085d6a44841f24f95ff1096acaae323e3862 | a6b1c11511e73b17e53f2c9e45d6c3fda7059bcc | /Exercise 41/docs/diagram.puml | 9410be0f98d50f468fc094f4d81077af1b3c49a4 | [] | no_license | FareedAlly/Ally-a04 | ea4b39b932d973a88b3e3e5f0a9ba587ef19b76c | 9c7e86ced5f08fc6eb3df4791ad6eba751d18dea | refs/heads/main | 2023-08-16T04:59:35.172785 | 2021-10-18T03:55:41 | 2021-10-18T03:55:41 | 417,554,981 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 188 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Solution41
{
+ void main
+ List<String> readNames
+ void sort
+ String output
+ void sendOutputToFile
}
@enduml | false | true | false | false | class |
924cf7ddeefabc901bde8a69b34993ee89aa878d | c8e5514bd3ea44e6613f469e88bc0562ba16ae62 | /src/site/sphinx/formatting/puml/colors/DarkOrchid.puml | 91c10ffe325df92ed47bfb1e17541c8ce8132c5a | [] | no_license | weedySeaDragon/plantuml-documentation | 1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba | 3c23cd2cd7fc1b4a85423ef9861711907fab2296 | refs/heads/develop | 2022-12-09T05:57:04.055959 | 2022-05-12T16:05:20 | 2022-05-12T16:05:20 | 165,910,589 | 55 | 6 | null | 2022-11-22T10:34:29 | 2019-01-15T19:28:35 | SCSS | UTF-8 | PlantUML | false | false | 319 | puml | @startuml
skinparam ClassBackgroundColor #DarkOrchid
skinparam ClassFontColor #DarkOrchid
skinparam ClassBorderColor #DarkOrchid
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml | false | true | false | false | class |
7e1fd567e65b00a63578e45833a9bf022288cdb8 | 105171abc9ad1f14285ff1e839ce907a44a06195 | /out/production/Build-A-Net/application/misc/misc.plantuml | 2b3cf4b14ff54817ef8b4b9237916ca9dbb91868 | [] | no_license | Sam-Malpass/Build-A-Net | 517e20ff04764fc104db7e063da35a38bafff26f | e8259a031b588cd6087cc94f2349bcbb751fb4a2 | refs/heads/master | 2022-12-08T17:01:09.936646 | 2020-09-11T06:46:10 | 2020-09-11T06:46:10 | 232,276,459 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 381 | plantuml | @startuml
title __MISC's Class Diagram__\n
namespace application {
namespace misc {
class application.misc.Rounder {
{static} + round()
}
}
}
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 |
a934004a52ebb190e19833b651dfe92c081f58a6 | 1a8eb7e789f2d6480377aa72563ba49d40f082b9 | /app/app.plantuml | febac52fc830bb1839637a5d3a3db2f61f0e1a40 | [] | no_license | sugoigroup/kotlin_design_pattern_example | ebdeb10b321878d042196a3beb90d1592268a901 | e1b8f0f619924d546e1f8258d04729d78351fed1 | refs/heads/master | 2023-04-01T03:04:35.230490 | 2021-03-31T17:47:23 | 2021-03-31T17:47:23 | 220,974,855 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 347 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.example.myapplication {
class com.example.myapplication.BuildConfig {
}
}
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 |
09b889e84f7cee851347bce9b043338449cf452e | e313af6ff9b250b6d7daf55f4e779659fb141c20 | /docs/diagrams/edition_model.puml | 30d7bfee3a75274d1d4f534121eba44719c0b632 | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | alphagov/whitehall | 71f0806ea856082bd4ea71139ff3f1d299a02294 | bdeb92e9e1dfc88a8693af44a1ae8c708ab94489 | refs/heads/main | 2023-09-03T23:56:44.719006 | 2023-09-01T15:16:37 | 2023-09-01T15:16:37 | 2,416,064 | 773 | 182 | MIT | 2023-09-14T17:54:53 | 2011-09-19T15:10:49 | Ruby | UTF-8 | PlantUML | false | false | 929 | puml | @startuml edition_model
allowmixing
hide empty description
class Document
database documents
Document .> documents
together {
abstract Edition {
state
}
database editions
Edition .> editions
rectangle "(others)" as othereds
Edition <|-- othereds
Edition <|-- Publicationesque
abstract Publicationesque
Publicationesque <|-- Publication
rectangle "(others)" as otherpubs
Publicationesque <|-- otherpubs
}
together {
abstract Attachment
class HtmlAttachment {
content_id
slug
}
database attachments
Attachment .> attachments
Attachment <|-- HtmlAttachment
Attachment <|-- FileAttachment
Attachment <|-- ExternalAttachment
}
Document *-r- Edition : "has_many"
Publicationesque *-r- Attachment: "has_many"
class Document {
content_id
document_type
slug
{method} latest_edition
{method} live_edition
}
@enduml | false | true | false | false | sequence |
0aac561dd4a46b53227891a29c57dfca782e77cc | 926bb2858c182eb8b7e13d6d27d369274303e87a | /src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-checkout-promotion.puml | 3eb89c16f723d02e88d37c1c31651084fbb18213 | [
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | claudiobianco/platform | b6b804b35a7c56789b25217071cb3a74c1204bdb | 5cd13708586bdef84043a2b4601cfef37bef0a61 | refs/heads/master | 2023-03-16T08:32:14.237752 | 2020-12-07T11:19:59 | 2020-12-07T11:19:59 | 307,415,600 | 0 | 0 | MIT | 2020-10-26T15:20:35 | 2020-10-26T15:20:34 | null | UTF-8 | PlantUML | false | false | 8,215 | 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(ShopwareCoreCheckoutPromotionPromotionDefinition, "promotion\n(Discounts with settings)") {
primary_key(id) id
name translated
not_null(active) bool
validFrom dateTime
validUntil dateTime
not_null(maxRedemptionsGlobal) int
not_null(maxRedemptionsPerCustomer) int
not_null(exclusive) bool
code string
not_null(useCodes) bool
not_null(useIndividualCodes) bool
individualCodePattern string
not_null(useSetGroups) bool
customerRestriction bool
orderCount int
ordersPerCustomerCount json
exclusionIds list
not_null(createdAt) createdAt
updatedAt updatedAt
translated json
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition, "promotion_sales_channel\n(Promotion configuration)") {
primary_key(id) id
not_null(promotionId) foreignKey
not_null(salesChannelId) foreignKey
not_null(priority) int
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionIndividualCodePromotionIndividualCodeDefinition, "promotion_individual_code\n(Individual promotion codes)") {
primary_key(id) id
not_null(promotionId) foreignKey
not_null(code) string
payload json
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition, "promotion_discount\n(Discounts)") {
primary_key(id) id
not_null(promotionId) foreignKey
not_null(scope) string
not_null(type) string
not_null(value) float
not_null(considerAdvancedRules) bool
maxValue float
sorterKey string
applierKey string
usageKey string
pickerKey string
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition, "promotion_discount_rule\n(M:N Mapping)") {
primary_key(discountId) foreignKey
primary_key(ruleId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupPromotionSetGroupDefinition, "promotion_setgroup\n(Promotion set groups)") {
primary_key(id) id
not_null(promotionId) foreignKey
not_null(packagerKey) string
not_null(sorterKey) string
not_null(value) float
not_null(createdAt) createdAt
updatedAt updatedAt
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupRulePromotionSetGroupRuleDefinition, "promotion_setgroup_rule\n(M:N Mapping)") {
primary_key(setgroupId) foreignKey
primary_key(ruleId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition, "promotion_order_rule\n(M:N Mapping)") {
primary_key(promotionId) foreignKey
primary_key(ruleId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition, "promotion_persona_customer\n(M:N Mapping)") {
primary_key(promotionId) foreignKey
primary_key(customerId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition, "promotion_persona_rule\n(M:N Mapping)") {
primary_key(promotionId) foreignKey
primary_key(ruleId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition, "promotion_cart_rule\n(M:N Mapping)") {
primary_key(promotionId) foreignKey
primary_key(ruleId) foreignKey
}
TranslationTable(ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition, "promotion_translation\n((Translations))") {
not_null(name) string
not_null(createdAt) createdAt
updatedAt updatedAt
primary_key(promotionId) foreignKey
primary_key(languageId) foreignKey
}
Table(ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPricePromotionDiscountPriceDefinition, "promotion_discount_prices\n(Promotion discounts)") {
primary_key(id) id
not_null(discountId) foreignKey
not_null(currencyId) foreignKey
not_null(price) float
not_null(createdAt) createdAt
updatedAt updatedAt
}
ForeignTable(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel") {
}
ForeignTable(ShopwareCoreContentRuleRuleDefinition, "rule") {
}
ForeignTable(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer") {
}
ForeignTable(ShopwareCoreSystemLanguageLanguageDefinition, "language") {
}
ForeignTable(ShopwareCoreSystemCurrencyCurrencyDefinition, "currency") {
}
' relationshipd
ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupPromotionSetGroupDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionIndividualCodePromotionIndividualCodeDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPricePromotionDiscountPriceDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupRulePromotionSetGroupRuleDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupPromotionSetGroupDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionSetGroupRulePromotionSetGroupRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition --> ShopwareCoreContentRuleRuleDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition --> ShopwareCoreSystemLanguageLanguageDefinition
ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPricePromotionDiscountPriceDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition
@enduml
| false | true | false | false | uml-unknown |
f0f1839eb2af02c527e0a3b3e0ef3bc675334e29 | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/patterns/bi-directional-adapter.puml | 95288d521f71f7f558a741d6d92acf8f6d7b4195 | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 222 | puml | @startuml
interface Target
interface Adaptee
class Adapter
Target <|-r- Adapter
Adaptee <|-r- Adapter
Target <|-- ConcreteTarget
Adaptee <|-- ConcreteAdaptee
Adapter "use" --> Adaptee
Adapter "use" --> Target
@enduml | false | true | false | false | class |
56e09a98a9e1726675b3b4d6e5f9f5e4c753bb70 | 91acf9d39c0488ecb8f35c7ae7d5f6536f1d5860 | /AndroidAPP/UMLDiagram_Sprint2.puml | 86e32b4ce3fe18e59bcfc80881af565a7ace47f6 | [] | no_license | Truper32/ELEC-COEN390_Project | 7d975e00b75ff27a9c1b7c482ce13d821710d77d | 20ac4a005ba3e8f15be0b52baa4b4dc1513289cb | refs/heads/main | 2023-05-03T05:53:00.500881 | 2021-05-12T00:59:15 | 2021-05-12T00:59:15 | 366,551,310 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,271 | puml | @startuml
class edu.coen390.androidapp.Model.User {
- long id
- String firstName
- String lastName
- String userName
- String password
+ long getId()
+ void setId(int)
+ String getFirstName()
+ void setFirstName(String)
+ String getLastName()
+ void setLastName(String)
+ String getUserName()
+ void setUserName(String)
+ String getPassword()
+ void setPassword(String)
}
class edu.coen390.androidapp.View.LiveFeedActivity {
- {static} String TAG
+ {static} String KEY_URL_TO_LOAD
+ {static} String WEB_FORM_URL
+ {static} String JSON_STUDENT_URL
- JSONObject studentInformation
- WebView myWebView
- DatabaseHelper dbHelper
- Course course
- TextView studentName
- TextView studentID
- TextView seatNumber
- ImageView imageView
- Button backButton
- Button saveButton
# void onCreate(Bundle)
- void setButtonListeners()
# void onStart()
- void launchWebView()
- Student getStudentFromJSONObject(JSONObject)
}
class edu.coen390.androidapp.Model.HttpRequest {
- {static} String TAG
+ {static} JSONObject getJSONObjectFromURL(String)
}
class edu.coen390.androidapp.Model.Student {
- int ID
- String[] courses
- String firstName
- String lastName
+ int getID()
+ void setID(int)
+ String[] getCourses()
+ void setCourses(String[])
+ String getFirstName()
+ void setFirstName(String)
+ String getLastName()
+ void setLastName(String)
+ String toString()
}
class edu.coen390.androidapp.Controller.DatabaseHelper {
- {static} String TAG
- {static} String DATABASE_NAME
- {static} int DATABASE_VERSION
+ {static} String strSeparator
- Context context
+ void onCreate(SQLiteDatabase)
+ void onUpgrade(SQLiteDatabase,int,int)
+ long insertStudent(Student)
+ boolean isStudentRegisteredInCourse(Student,Course)
+ void testMethod()
+ {static} String convertArrayToString(String[])
+ {static} String[] convertStringToArray(String)
+ List<Course> getCourses(long)
+ long insertCourse(Course)
+ void addInvigilator(User)
+ boolean verifyInvigilator(String,String)
+ User getInvigilator(long)
}
class edu.coen390.androidapp.View.CourseActivity {
- {static} String TAG
# ListView courseListView
# DatabaseHelper dbHelper
# List<Course> courses
# int invigilator_id
- TextView userNameTextView
# void onCreate(Bundle)
- void setupUI()
- void loadListView(long)
}
class edu.coen390.androidapp.CourseAdapter {
- TextView courseTextView
- List<Course> courses
~ Context mContext
+ int getCount()
+ Object getItem(int)
+ long getItemId(int)
+ View getView(int,View,ViewGroup)
}
class edu.coen390.androidapp.Controller.Config {
+ {static} String DATABASE_NAME
+ {static} String INVIGILATOR_TABLE_NAME
+ {static} String INVIGILATOR_ID
+ {static} String INVIGILATOR_USERNAME
+ {static} String INVIGILATOR_PASSWORD
+ {static} String INVIGILATOR_FIRST_NAME
+ {static} String INVIGILATOR_LAST_NAME
+ {static} String COURSE_TABLE_NAME
+ {static} String COURSE_ID
+ {static} String COURSE_INVIGILATOR_ID
+ {static} String COURSE_TITLE
+ {static} String COURSE_CODE
+ {static} String COURSE_DESCRIPTION
+ {static} String STUDENTS_TABLE_NAME
+ {static} String STUDENT_ID
+ {static} String STUDENT_COURSE_ID
+ {static} String STUDENT_FIRST_NAME
+ {static} String STUDENT_LAST_NAME
+ {static} String STUDENT_USERNAME
+ {static} String STUDENT_PASSWORD
}
class edu.coen390.androidapp.Model.Course {
- long id
- long invigilator_id
- String title
- String code
+ String toString()
+ long getId()
+ void setId(long)
+ long getInvigilator_id()
+ void setInvigilator_id(long)
+ String getTitle()
+ void setTitle(String)
+ String getCode()
+ void setCode(String)
}
class edu.coen390.androidapp.View.LoginActivity {
- {static} String TAG
- WebView myWebView
- Button login
- DatabaseHelper dbHelper
- EditText loginUserName
# void onCreate(Bundle)
- void setupUI()
- void loginUser()
- void newInvigilator()
- void openCourseActivity()
}
class edu.coen390.androidapp.View.VerificationModeActivity {
+ {static} String COURSE_INTENT
- {static} String TAG
- Course course
- Button facialRecognitionButtion
- Button cardScannerButton
# void onCreate(Bundle)
- void setupUI()
}
class edu.coen390.androidapp.Model.Invigilator {
- int ID
- String firstName
- String lastName
- String username
- String password
+ int getID()
+ void setID(int)
+ String getFirstName()
+ void setFirstName(String)
+ String getLastName()
+ void setLastName(String)
+ String getUsername()
+ void setUsername(String)
+ String getPassword()
+ void setPassword(String)
}
java.io.Serializable <|.. edu.coen390.androidapp.Model.User
androidx.appcompat.app.AppCompatActivity <|-- edu.coen390.androidapp.View.LiveFeedActivity
java.io.Serializable <|.. edu.coen390.androidapp.Model.Student
android.database.sqlite.SQLiteOpenHelper <|-- edu.coen390.androidapp.Controller.DatabaseHelper
androidx.appcompat.app.AppCompatActivity <|-- edu.coen390.androidapp.View.CourseActivity
android.widget.BaseAdapter <|-- edu.coen390.androidapp.CourseAdapter
java.io.Serializable <|.. edu.coen390.androidapp.Model.Course
androidx.appcompat.app.AppCompatActivity <|-- edu.coen390.androidapp.View.LoginActivity
java.io.Serializable <|.. edu.coen390.androidapp.View.VerificationModeActivity
androidx.appcompat.app.AppCompatActivity <|-- edu.coen390.androidapp.View.VerificationModeActivity
java.io.Serializable <|.. edu.coen390.androidapp.Model.Invigilator
@enduml | false | true | false | false | class |
f99a247969bb99fbc9ad0dbda824e0c55d5a749b | 907ab2d7a6171db6dc943be39b3f2072fbfac7f6 | /doc/porting_negotiation_simulator.puml | a8cd1f969b32ac936626765d87920727fecc3b35 | [] | no_license | ConSol/simulator-porting-demo | 1700b2c8bb7da935b42f0af20545961f02fbc3b6 | 36ab3160251f81192f0ffe2af35b2b4e9357c132 | refs/heads/master | 2021-09-04T20:52:51.648203 | 2018-01-22T10:39:10 | 2018-01-22T10:39:10 | 98,581,365 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 556 | puml | @startuml
participant "MyTelProviderSimulator(8080)\nScenario 'ReceivingCarrier" as ReceivingCarrier
participant "CoolTelProviderSimulator(9090)\nScenario 'DonatingCarrier'" as DonatingCarrier
ReceivingCarrier -> DonatingCarrier : PortingNegotiationRequest
activate DonatingCarrier
DonatingCarrier -->> ReceivingCarrier : Acknowledgment
deactivate DonatingCarrier
...
DonatingCarrier -> ReceivingCarrier : PortingNegotiationResponse
activate ReceivingCarrier
ReceivingCarrier -->> DonatingCarrier : Acknowledgment
deactivate ReceivingCarrier
@enduml
| false | true | false | false | sequence |
f18ef77f2c0b3576ef6449b2363c6b2cb2fd1dad | 4d82b0d65ad85bca4deb49e6ce4257b358ae4670 | /figure-3.2.puml | 9a079e74c10ef849cc726866c4a7f90099cb9bbe | [] | no_license | netpyoung/bs.uml-distilled | d0877c8e69156560d2c252c6dcc24bf4764105cd | 9ae1c24be4b8d3f0456d2b2e1d6fc8e0843f21bc | refs/heads/master | 2020-04-21T05:10:41.074540 | 2019-02-06T00:10:17 | 2019-02-06T00:11:32 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 147 | puml | @startuml
class Order {
+ dataRecieved() : Date [0..1]
+ isPrepaid() : Boolean [1]
+ lineItems() : OrderLine [*] {oredered}
}
@enduml | false | true | false | false | class |
5441e3338b0f91a5b13665e8d42e20cca54273b1 | dcca4c0aa19e3085bd37640a52b07fa02396b1d8 | /4.Behavioral Design Patterns/8.State/src/main/java/com/tutorialspoint/diagram/StateClassDiagram.puml | 924cf18b2c83b4cb83aa893f7a313b55b89ed90e | [] | no_license | drronidz/design-patterns-java-maven | 8df24c5bdd021dd45018faf3937b767609e880eb | aa580cd4cc6caa25a418a71bd5af06f86bd354a6 | refs/heads/main | 2023-07-15T15:26:04.451482 | 2021-08-25T23:45:35 | 2021-08-25T23:45:35 | 392,855,046 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 522 | puml | @startuml
'https://plantuml.com/class-diagram
interface State <<Java Interface>> {
+ doAction () : void
}
hide State members
show State methods
class Context {
- state : State
+ Context () : void
+ getState () : State
+ setState () : void
}
class StartState implements State {
+ doAction () : void
}
hide StartState members
show StartState methods
class StopState implements State {
+ doAction () : void
}
hide StopState members
show StopState methods
State <-- Context : uses
@enduml | false | true | false | false | state |
5df84e1d00df37b6815f24403fb907d5ea22e074 | 973dcef38fb285cf4f14a2e937af23e26a05564b | /docs/Solution/Automation-Framework/UseCases.puml | 75008e53fba45999c6b046b792ed45e195274f2a | [] | no_license | CAADE/CAADE | 6a0d37b31e77fd00eeb1ad056d17d484585cad96 | 3873453a14359879a146f1d5897554ae2e94bd96 | refs/heads/master | 2021-06-09T05:28:17.894441 | 2019-06-07T06:08:10 | 2019-06-07T06:08:10 | 104,078,969 | 1 | 0 | null | 2020-08-20T15:13:40 | 2017-09-19T13:32:11 | JavaScript | UTF-8 | PlantUML | false | false | 249 | puml | @startuml
left to right direction
actor :User: <<Person>>
actor :SubSystem: <<Person>>
rectangle "Automation Framework" #lightBlue {
UseCase UC1 as "Use Case1"
UseCase UC2 as "Use Case2"
User --> UC1
UC1 --> UC2
UC2 --> SubSystem
}
@enduml
| false | true | false | false | usecase |
e9719382d1b980cbd5933d4b22ea7c8f4aba0495 | ee96a70918e886f49a11a2646742ecd0615cd83d | /src/diagrams/data/scrapers.puml | d331b9615bdfff1d91678fefd76ad0a4e2e4217d | [
"MIT"
] | permissive | DorinR/Politisense | 675c8138b8e768d3962759c8a52c15dfd3b42756 | 921e9ab04b378ebe341186d32e5c9522cab624b6 | refs/heads/master | 2023-01-23T12:20:29.224166 | 2020-04-12T00:42:39 | 2020-04-12T00:42:39 | 317,986,401 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,244 | puml | @startuml
interface Utils::QueueManagers::QueueAction {}
class Utils::QueueManagers::QueueManager
package Scrapers #e0e0d1 {
class BillScraper extends Utils::QueueManagers::QueueManager {
- parliaments: Array<Number>
- sessions: Array<Number>
- originatingChambers: Array<String>
- billTypes: Array<String>
- sponsorAffiliations: Array<String>
- sponsors: Array<String>
- statuses: Array<String>
- params: Array<Object>
- queryCount: Number
- maxQueryCount: Number
# finish(void) : void
- BillScraper(params: Object, wait: Number) : BillScraper
{static} + create(params: Object, wait: Number) : BillScraper
- setParliaments(parliaments: Array<Number>) : void
- setSessions(parliaments: Array<Number>) : void
- setOriginatingChambers(originatingChambers: Array<String>) : void
- setBillTypes(billTypes: Array<String>) : void
- setSponsorAffiliation(sponsorAffiliations: Array<String>) : void
- setSponsors(sponsors: Array<String>) : void
- setStatuses(statuses: Array<String>) : void
- createQueries(url: String): void
- appendQueryStringToUrl(url: String, param: Object): String
}
BillScraper o--> Utils::QueueManagers::QueueAction
class ExpenditureScraper extends Utils::QueueManagers::QueueManager {
- params: Array<Object>
- queryCount: Number
- years: Array<Number>
- maxQueryCount: Number
- createYears(years : Array<Number>) : void
- createQueries(url: String) : void
- ExpenditureScraper(params: Object, wait: Number) : ExpenditureScraper
{static} + create(params: Object, wait: Number) : ExpenditureScraper
}
ExpenditureScraper o--> Utils::QueueManagers::QueueAction
class LegislativeActivityScraper extends Utils::QueueManagers::QueueManager{
- params: Array<Object>
- queryCount: Number
- maxQueryCount: Number
- LegislativeActivityScraper(wait: Number) : LegislativeActivityScraper
{static} + create(wait: Number) : LegislativeActivityScraper
}
LegislativeActivityScraper o--> Utils::QueueManagers::QueueAction
class PoliticianScraper extends Utils::QueueManagers::QueueManager {
- params: Array<Object>
- parliaments: Array<Number>
- caucuses: Array<String>
- provinces: Array<String>
- genders: Array<String>
- lastNamePrefixes: Array<String>
- queryCount: Number
- maxQueryCount: Number
- LegislativeActivityScraper(wait: Number) : LegislativeActivityScraper
- createQueries(url: String) : void
- setParliaments(parliaments: Array<Number>) : void
- setCaucuses(caucuses: Array<String>) : void
- setProvinces(provinces: Array<String>) : void
- setGenders(genders: Array<String>) : void
- setLastNamePrefixes(prefixes: Array<String>) : void
# finish(void) : void
{static} + create(wait: Number) : LegislativeActivityScraper
}
PoliticianScraper o--> Utils::QueueManagers::QueueAction
class RoleScraper extends Utils::QueueManagers::QueueManager {
- params: Array<Object>
- parliaments: Array<Number>
- queryCount: Number
- maxQueryCount: Number
- RoleScraper(params: Object, wait: Number) : RoleScraper
- setParliaments(parliaments: Array<Number>) : void
- createQueries(url: String) : void
# finish(void) : void
{static} + create(params: Object, wait: Number) : RoleScraper
}
RoleScraper o--> Utils::QueueManagers::QueueAction
class VoteParticipantScraper extends Utils::QueueManagers::QueueManager {
- params: Array<Object>
- parliaments: Array<Number>
- sessions: Array<Number>
- queryCount: Number
- maxQueryCount: Number
- VoteParticipantScraper(params: Object, wait: Number) : VoteParticipantScraper
- createParliaments(parliaments: Array<Number>) : void
- createSessions(parliaments: Array<Number>) : void
- createParams(url: String) : void
# finish(void) : void
{static} + create(params: Object, wait: Number) : VoteParticipantScraper
}
VoteParticipantScraper o--> Utils::QueueManagers::QueueAction
class VoteScraper extends Utils::QueueManagers::QueueManager {
- params: Array<Object>
- parliamentSessions: Array<Number>
- billDocumentTypes: Array<Number>
- voteResults: Array<String>
- motionPrefixes: Array<String>
- queryCount: Number
- maxQueryCount: Number
- VoteScraper(params: Object, wait: Number) : VoteScraper
- createParliamentSessions(parliamentSessions: Array<Number>) : void
- createBillDocumentTypes(types: Array<Number>) : void
- createVoteResults(voteResults: Array<String>) : void
- createMotionPrefixes(prefixes: Array<String>) : void
- createParams(url: String) : void
# finish(void) : void
{static} + create(params: Object, wait: Number) : VoteScraper
}
VoteScraper o--> Utils::QueueManagers::QueueAction
}
@enduml | false | true | false | false | sequence |
ca8d32b74d8f6ac5624e9e69e5a0696cbf846408 | 78c44602df98a3f7d37a0772b178122f1ca61d8e | /stars/controller/controller.plantuml | ff6d4c8663178d39970e942028021dd8f832a143 | [] | no_license | shengjie98/CZ2002 | 138444b99d5670c77fd9b317ed87df7f3677fb0e | 3cbb827177ecdf71e1e7a50fafad732f546bf91d | refs/heads/master | 2023-01-19T08:19:07.200921 | 2020-11-23T05:39:40 | 2020-11-23T05:39:40 | 306,223,551 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,720 | plantuml | @startuml
title __CONTROLLER's Class Diagram__\n
namespace stars.controller {
class stars.controller.AdminController {
+ AdminController()
+ addCourse()
+ addIndex()
+ addStudent()
+ addTiming()
+ changeIndexID()
+ createCourse()
+ createIndex()
+ createTiming()
+ dropIndex()
+ editAccess()
+ getCourseList()
+ getStudentList()
+ save()
+ setCourseID()
+ setVacancyLimit()
}
}
namespace stars.controller {
interface stars.controller.Authenticator {
{abstract} + authenticate()
}
}
namespace stars.controller {
class stars.controller.DatabaseManager {
- DATABASE_FILE : String
+ DatabaseManager()
+ addCourse()
+ addStudent()
+ findStudent()
+ getCoursesArray()
+ getStudentArray()
+ saveInformation()
- loadInformation()
}
}
namespace stars.controller {
class stars.controller.FlatFileAdminAuthenticator {
- ADMIN_ACCOUNT_FILE : String
+ authenticate()
}
}
namespace stars.controller {
class stars.controller.FlatFileStudentAuthenticator {
- STUDENT_ACCOUNTS_FILE : String
+ addStudent()
+ authenticate()
+ editAccess()
}
}
namespace stars.controller {
class stars.controller.IndexStudentAdder {
+ addStudent()
}
}
namespace stars.controller {
class stars.controller.IndexStudentDropper {
+ dropStudent()
}
}
namespace stars.controller {
class stars.controller.IndexStudentSwopper {
+ swopStudent()
}
}
namespace stars.controller {
class stars.controller.LoginController {
+ verifyLogin()
}
}
namespace stars.controller {
class stars.controller.SetVacancyLimitController {
+ setVacancyLimit()
}
}
namespace stars.controller {
interface stars.controller.StudentAuthenticator {
{abstract} + addStudent()
{abstract} + editAccess()
}
}
namespace stars.controller {
class stars.controller.StudentController {
+ StudentController()
+ addIndex()
+ changeIndex()
+ displayTimetable()
+ dropIndex()
+ getConfirmedIndex()
+ getCourseList()
+ getRegisteredIndex()
+ getWaitlistedIndex()
+ save()
+ swopIndex()
}
}
namespace stars.controller {
class stars.controller.TimetableClashChecker {
+ checkClash()
+ checkClash()
}
}
namespace stars.controller {
interface stars.controller.UserControllerInterface {
{abstract} + getCourseList()
}
}
stars.controller.AdminController .up.|> stars.controller.UserControllerInterface
stars.controller.AdminController o-- stars.controller.DatabaseManager : dbManager
stars.controller.DatabaseManager o-- stars.entity.Database : db
stars.controller.FlatFileAdminAuthenticator .up.|> stars.controller.Authenticator
stars.controller.FlatFileStudentAuthenticator .up.|> stars.controller.StudentAuthenticator
stars.controller.StudentController .up.|> stars.controller.UserControllerInterface
stars.controller.StudentController o-- stars.controller.DatabaseManager : dbManager
stars.controller.StudentController o-- stars.boundary.TimetableDisplayer : displayer
stars.controller.StudentController o-- stars.entity.Student : myStudent
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 |
1543550eaef2ec9e0184f532ce4c278f4f0a934b | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CustomerGroupUpdate.puml | 6ff1a98e20727d2d941043e8cf9c0c13586560d2 | [] | 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 | 383 | 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 CustomerGroupUpdate [[CustomerGroupUpdate.svg]] {
version: Long
actions: [[CustomerGroupUpdateAction.svg List<CustomerGroupUpdateAction>]]
}
@enduml
| false | true | false | false | class |
ec1c6b35fcd93411097c134fea3b0c5759ed6d0a | b8c409912c930baf8050f8c85da0cf2e97966b27 | /src/main/resources/uml/seq/1_37_1普通箭头.puml | 9b91b4f1117d7ddf64f6f441e634f25848bd6c2f | [] | no_license | tom1120/BaseStudy | 8cd1b735a119e022d54738c7ba3d8a9cd16aa8d5 | 35d1c19a6ebaabbb52870af8b61604d8f0290a5e | refs/heads/master | 2023-07-24T13:22:00.656180 | 2023-07-08T15:53:45 | 2023-07-08T15:53:45 | 135,059,686 | 0 | 0 | null | 2023-07-08T15:54:31 | 2018-05-27T15:40:27 | Java | UTF-8 | PlantUML | false | false | 423 | puml | @startuml
'https://plantuml.com/sequence-diagram
participant Alice as a
participant Bob as b
a->b:""->""
a->>b:""->>""
a-\b:""-\""
a-\\b:""-\\\\""
a-/b:""-/""
a-//b:""-//""
a->x b:""->x""
a x->b:""x->""
a o->b:""o->""
a ->o b:""->o""
a o->o b:""o->o""
a <-> b:""<->""
a o<->o b:""o<->o""
a x<->x b:""x<->x""
a ->>o b:""->>o""
a-\o b:""-\\o""
a-\\o b:""-\\\\o""
a-/o b:""-/o""
a-//o b:""a-//o""
a x->o b:""x->o""
@enduml | false | true | false | false | sequence |
35a814fdf2358c80dceafd649c473511b36bca73 | b419ce172cc07d8edb9a6adadc7af0b641b7c131 | /Rectangulo.puml | 639c29f809e191ec65cb1a06b2745022105334cd | [] | no_license | meschoyez/111mil-2020-PrimerosObjetos | 6bc76c66f041d49817b03dd375472891183a6445 | 942aa117684efd257a8f534a31dfb5baad3b1515 | refs/heads/master | 2022-12-12T21:07:12.840581 | 2020-09-11T14:17:04 | 2020-09-11T14:17:04 | 286,500,237 | 2 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 312 | puml | @startuml App
skinparam ClassAttributeIconSize 0
hide circle
class Rectangulo {
- double lado1
- double lado2
- double x
- double y
+ Rectangulo (double l1, double l2)
+ double getPerimetro ()
+ double getSuperficie ()
+ actualizarPosicion ()
+ determinarColor ()
}
@enduml | false | true | false | false | class |
b0ddd305ff4ef34629325d300da13d39b1d184b9 | 766ed5ff121c74f00b14617d3cc66c320f37037f | /Documentation/plantuml/Laufzeitsicht/generateAnalysis.puml | bc906c41e24ffec513b9687379d741b4610f1c06 | [] | no_license | pfeilda/softwareengineeringProjekt | 6fe14198123690905da2c40c06a055a7a30dcea8 | defe7204c0090e5ac1413a68e12ffbfba4268b18 | refs/heads/master | 2020-03-24T04:06:57.891794 | 2018-05-16T19:49:28 | 2018-05-16T19:49:28 | 142,444,352 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 517 | puml | @startuml
Window -> Window: Ermittle zu benutzende Elementen
Window -> AnalysisFactory: Generiere Analyse mit den zu benutzenden Elementen
AnalysisFactory -> AnalysisFactory: wähle Elemente zufällig aus
loop für jedes ausgewählte Element
AnalysisFactory -> AnalysisFactory: erstelle ein Reagent für die Elemente
end
AnalysisFactory -> AnalysisFactory: erstelle eine Probe mit den Elementen
AnalysisFactory -> AnalysisFactory: erstelle eine Analyse mit der Probe
AnalysisFactory --> Window: Analyse
@enduml | false | true | true | false | sequence |
0a08c40b433334dab2b2a99179c9931ba354ec09 | 59e95a91544586a24cf34dc1a489b4dd74c15fb8 | /test/.puml/actor.fontawesome.puml | aba4c991ea9833aedd5ca1371023d763cee3de5b | [] | no_license | devtestlabs-xyz/plantuml-client-container | 70748104798f08b87d927be051d1aef0b97f2f93 | 561f0cc8f90fc39ab77386b1f270b6b3273a0329 | refs/heads/master | 2021-02-11T09:58:18.469181 | 2020-03-04T21:53:34 | 2020-03-04T21:53:34 | 244,479,948 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 83 | puml | @startuml
skinparam actorStyle awesome
actor "DevOps" <<User>> as user1
@enduml
| false | true | false | false | sequence |
8b1a7b7839c30d27df878f47d0d610feea77c3af | 318ae592d8df5934f3f2b5255be76ee0faaa54ba | /uml/ProjectDiagram.puml | a1f8f114e072d529b38c8fcdafd82a1a15f81988 | [] | no_license | josevalen2001/valencia-3105-a5 | 25bc9e737dbb610aadb353a914ef689d4b82c110 | 35d4b4252d992a8d206c0d2300215c0c11de9cd5 | refs/heads/master | 2023-06-24T05:11:29.190952 | 2021-07-26T03:58:44 | 2021-07-26T03:58:44 | 386,988,479 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,894 | puml | @startuml
'https://plantuml.com/class-diagram
class InventoryTracker {
+ main(String[]): void
+ start(Stage): void
}
class InventoryTrackerController {
- TableView<InventoryItem> inventoryTable
- TableColumn<InventoryItem, String> serialNumberColumn
- TableColumn<InventoryItem, String> nameColumn
- TableColumn<InventoryItem, Double> valueColumn
- Button addItemBtn
- Button removeBtn
- Button editItemBtn
- Button sortByNameBtn
- Button sortBySerialNumberBtn
- Button sortByValueBtn
- Button searchByNameBtn
- Button searchBySerialNumberBtn
- Button viewAllBtn
- Button exportToTxtBtn
- Button exportToHtmlBtn
- Button importBtn
- TextField newSerialNumber
- TextField newValue
- TextField newName
- TextField editSerialNumber
- TextField editName
- TextField editValue
- TextField txtFileName
- TextField txtFileLocation
- TextField htmlFileName
- TextField htmlFileLocation
- TextField importFileLocation
- TextField nameToSearch
- TextField serialNumberToSearch
Inventory mainInventory
ObservableList<InventoryItem> listOfItems
+initialize(URL, ResourceBundle): void
addItemBtnClicked(Event): void
removeBtnClicked(Event): void
editItemBtnClicked(Event): void
exportToTxtBtnClicked(Event): void
exportToHtmlBtnClicked(Event): void
sortByNameBtnClicked(Event): void
sortBySerialNumberBtnClicked(Event): void
sortByValueBtnClicked(Event): void
searchByNameBtnClicked(Event): void
searchBySerialNumberBtnClicked(Event): void
viewAllBtnClicked(Event): void
importBtnClicked(Event): void
}
class Inventory {
ArrayList<InventoryItem> items
+ Inventory()
+ getItems (): ArrayList<InventoryItem>
+ addItem(Item): void
+ removeItem(String): void
+ editNameOfItem(String, String): void
+ editSerialNumberOfItem(String, String): void
+ editValueOfItem(String, double): void
+ sortByName(): void
+ sortBySerialNumber(): void
+ sortByValue(): void
+ searchByName(String): InventoryItem
+ searchBySerialNumber(String): InventoryItem
+ exportTSV(String, String): String
+ exportHTML(String, String): String
+ importInventory(String): void
}
class InventoryItem {
String name;
String serialNumber;
double value;
+ InventoryItem(String, String, double)
+ setName(String): void
+ setSerialNumber(String): void
+ setValue(double): void
+ getName(): String
+ getSerialNumber(): String
+ getValue(): double
+ toString(): String
}
javafx.Application <|-- InventoryTracker
javafx.Initializable <|... InventoryTrackerController
InventoryTracker <-- InventoryTrackerController
InventoryTrackerController *--> Inventory
Inventory *-> InventoryItem
@enduml | false | true | false | false | class |
f8a448e3955823181b547d54c29ee15df0622a71 | 3eb09e6a715cd51237220a02acaf2b5766b117c8 | /test3/borrowreturn.puml | 970cf395a6fe5d4e3251587697bc058260e78dda | [] | no_license | SuperTchain/is_analysis | 7c118b80c4e5c7117b695095d7a164bdc8957351 | e0ac48f38159bc74485891bbe889e12782c657b2 | refs/heads/master | 2021-01-14T06:44:21.003157 | 2020-05-26T17:07:52 | 2020-05-26T17:07:52 | 244,513,732 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 227 | puml | @startuml
object BoughtReturn
BoughtReturn : bookid=1
BoughtReturn : bookname="dad"
BoughtReturn : borrowreaderid=2
BoughtReturn : borrowtime=2020-4-6
BoughtReturn : returntime=2020-4-6
BoughtReturn : returnreaderid=2
@enduml | false | true | false | false | class |
dfb8cc27e1c8e5355f8ad793f2e38b6e4535b6a8 | bede413c7187440a646e3262d9075a35942b4528 | /docs/diagrams/StorageCompClassDiag.puml | 6c00f492d7307fee736dbbe72dcb6e6fb371e85c | [] | no_license | yeezao/tp | 01561a6d5e81084f7a3d5b3818614211a4212a88 | d659d8a0a4b96c7c0cd5aaf9bdf4a2ec9dbb3830 | refs/heads/master | 2023-08-31T20:02:40.001168 | 2021-11-08T14:54:06 | 2021-11-08T14:54:06 | 411,917,426 | 1 | 0 | null | 2021-09-30T04:05:28 | 2021-09-30T04:05:28 | null | UTF-8 | PlantUML | false | false | 848 | puml | @startuml
'https://plantuml.com/class-diagram
hide circle
skinparam classAttributeIconSize 0
class Storage
class FileStorage
Storage --> FileStorage
class Storage {
- {static} listOfTrips : ArrayList<Trip>
- {static} openTrip : Trip
- {static} lastTrip : Trip
- {static} validCommands : ArrayList<String>
- {static} availableCurrency : Hashmap<String, String[]>
+ {static} writeToFile()
+ {static} readFromFile()
+ {static} createNewFile()
- {static} askOverwriteOrClose()
+ {static} getOpenTrip() : Trip
+ {static} setOpenTrip()
+ {static} closeTrip()
}
class FileStorage {
- {static} gson : Gson
+ {static} writeToFile()
+ {static} readFromFile() : String
+ {static} newBlankFile()
- {static} initializeFileWriter() : FileWriter
+ {static} initializeGson()
}
@enduml | false | true | false | false | class |
d3480b304c7b088aae02bdf003122490e92da421 | bba20d50bcbaa6133417230a80fea993064b69c1 | /doc/diagrams/PlanExecutionState.puml | a9270e75586fc09a536262156bfd5ad240ea9527 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-philippe-de-muyter",
"MIT",
"MPL-2.0",
"MPL-1.0",
"LGPL-2.1-or-later",
"Apache-2.0",
"LGPL-2.1-only",
"LicenseRef-scancode-other-copyleft",
"LicenseRef-scancode-generic-cla",
"GPL-3.0-only",
"LGPL-3.0-only",
"LicenseRef-scancode-proprietary-license",
"CC-BY-NC-4.0",
"GPL-2.0-only",
"LGPL-2.0-only",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | nasa/astrobee | ecd2d941b5fb3dc72af9eb6ff0cb3e50b5281874 | ea41de975fd3ed5320cc474c061ad6305ae6b646 | refs/heads/master | 2023-08-28T08:21:00.219849 | 2023-04-04T21:56:03 | 2023-04-04T21:56:03 | 101,815,284 | 914 | 320 | Apache-2.0 | 2023-08-09T17:01:14 | 2017-08-29T23:16:13 | C++ | UTF-8 | PlantUML | false | false | 238 | puml | @startuml
skinparam sameStateWidth true
title Astrobee PlanExecution State (Executive)
[*] -> Idle
Idle --> Paused : set_plan
Paused -> Executing : run_plan
Executing --> Idle : plan_completed
Executing -> Paused : pause_plan
@enduml
| false | true | false | false | sequence |
7e85896665e5a1ddbe6d73801ddbb69ecca7ce51 | 2bdea266b9dbed4c9c7a2010bf5b3caf61d1174c | /src/main/java/ua/knucea/domain/entity/uml/Product.puml | 934a52aaa9b178fe04656b029ac63de436f22779 | [] | no_license | Spotyk/springApp | e0a5b58f9e99e6cc75c4104fbdfa7864049f34f3 | b1e7da87e211fcb79204e09af15286109516db84 | refs/heads/master | 2021-12-11T16:58:31.134179 | 2021-09-14T17:18:51 | 2021-09-14T17:18:51 | 226,185,934 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 251 | puml | @startuml
class ProductEntity {
id:Long
category:CategoryEntity
quantity:int
price:int
imgPath:String
Long getId()
setId()
getCategory()
setCategory()
getQuantity()
setQuantity()
getPrice()
setPrice()
getImgPath()
setImgPath()
}
@enduml | false | true | false | false | class |
a7b6987913261c950c006b15887abc86fc7afb30 | 623fa7e53d2a91643d560cca24da33566c1f9dd7 | /thingml-gen/UML/Teensy_IRPS/Teensy_IRPS/docs/Teensy_IRPS_class_compact.plantuml | c79f9f01bed204d664864a6578a6b2658bc3a641 | [
"MIT"
] | permissive | SINTEF-9012/vive-position-sensor | 65b5eba7a4c77844914d91a6e414d15945e3c103 | 70b4f46a6cf2551c1f6e6397a8e38647d89944ba | refs/heads/master | 2021-01-18T17:06:18.470274 | 2017-08-25T06:58:10 | 2017-08-25T06:58:10 | 100,483,085 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 13,628 | plantuml | @startuml
caption Things used in configuration Teensy_IRPS
class SoftButton <<(T,#F94918)PSM>> {
..Properties..
-long_delay : UInt16 = 1000
-double_delay : UInt16 = 250
..Port Button..
>>press
>>release
..Port Timer..
>>timer_timeout
<<timer_timeout
..Port SoftButton..
<<click
<<double_click
<<long_press
..Functions..
-timeout_button() : void
}
note left of SoftButton : <b>@c_header</b> <color:royalBlue>"#include <Timer.h>"</color>\n<b>@c_global</b> <color:royalBlue>"extern struct SoftButton_Instance softButton_var;"</color>\n
class ButtonMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-press()
-release()
}
class iSoftButton <<(F,#BC74ED)Fragment>> {
..Messages..
-timer_timeout()
}
class SoftButtonMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-click()
-double_click()
-long_press()
}
class PackageReader <<(T,#F94918)PSM>> {
..Port PulseReceiver..
>>pulseDetectedEvent
..Port PackageSender..
<<packageDetectedEvent
..Port StatusSender..
<<status
..Functions..
-pulse(...) : void
}
note left of PackageReader : <b>@c_header</b> <color:royalBlue>"\n #include <constants.h>\n "</color>\n<b>@c_global</b> <color:royalBlue>" \n // startTimes and durations with matching data at same idex\n uint32_t startTimes [STORED_TIME_STEPS]; // default init to zero in C\n uint32_t durations [STORED_TIME_STEPS];\n \n int identifyedSteps = 0;\n int startCount = 0;\n "</color>\n
class IRMessages <<(F,#BC74ED)Fragment>> {
..Messages..
-pulseDetectedEvent(...)
-packageDetectedEvent(...)
-allAngles(...)
-timerOverflow()
}
class StatusMessages <<(F,#BC74ED)Fragment>> {
..Messages..
-status(...)
-currentState(...)
-startPrinting()
-stopPrinting()
}
class AngleReader <<(T,#F94918)PSM>> {
..Messages..
-startTimeCalibrated()
-recalibrate()
..Port PackageReceiver..
>>packageDetectedEvent
..Port AngleSender..
<<allAngles
..Port OverflowNotifyer..
>>timerOverflow
..Port StatusSender..
<<status
..Port Transitions..
>>startTimeCalibrated
>>recalibrate
<<startTimeCalibrated
<<recalibrate
..Functions..
-updateAngles(...) : void
-printAngleInformation(...) : void
-updateLastPackageArrays(...) : void
}
note left of AngleReader : <b>@c_header</b> <color:royalBlue>"\n #include <constants.h>\n \n enum SignalType {\n // b - master, c - slave\n // h - horisontal, v - vertical\n bh = 0, bv = 1, ch = 2, cv = 3, error = 4\n };\n "</color>\n<b>@c_global</b> <color:royalBlue>"\n \n // Last package arrays\n uint32_t L1s [STORED_STEPS];\n uint32_t L2s [STORED_STEPS];\n int signalIndex = 0;\n \n double signalAngles[4]; // Last read angles sufficiently close to its own previous value\n double lastSignalAngles[4]; // Last read angles\n \n uint32_t lastStartTime = 0;\n \n uint32_t calibrationStartTime;\n int calibrationStep = 0;\n int initiationCount = 0;\n int recalibrateCount = 0;\n \n int printWhenZero = 0; // Only print when we have gotten four consecutive angles\n \n enum Signal {\n off = 0, horisontal = 1, vertical = 2\n };\n \n uint32_t average(uint32_t L[], int count) {\n uint32_t sum = 0;\n \n for (int i = 0; i < count; i++) {\n sum += L[i];\n }\n return sum/count;\n }\n \n uint32_t maxVal(uint32_t L[], int count) {\n uint32_t ret = L[0];\n for (int i = 1; i<count; i++) {\n if (L[i] > ret) {\n ret = L[i];\n }\n }\n return ret;\n }\n \n uint32_t minVal(uint32_t L[], int count) {\n uint32_t ret = L[0];\n for (int i = 1; i<count; i++) {\n if (L[i] < ret) {\n ret = L[i];\n }\n }\n return ret;\n }\n \n Signal classifyPulse(uint32_t signal, uint32_t L[], int count) {\n \n int min = minVal(L, count);\n int max = maxVal(L, count);\n \n int category = (7*(signal - min + PULSE_WIDTH_SEPARATION/2))/(max - min);\n \n switch (category) {\n case 0:\n return Signal::horisontal;\n break;\n case 1:\n return Signal::vertical;\n break;\n case 2:\n return Signal::horisontal;\n break;\n case 3:\n return Signal::vertical;\n break;\n default:\n return Signal::off;\n break;\n }\n \n return Signal::off; \n }\n \n SignalType identifySignal(Signal L1, Signal L2) {\n return (L1 == Signal::off) ? (L2 == Signal::horisontal) ? SignalType::ch:(L2 == Signal::vertical) ? SignalType::cv : SignalType::error : (L2 == Signal::off) ? (L1 == Signal::horisontal) ? SignalType::bh : (L1 == Signal::vertical) ? SignalType::bv : SignalType::error : SignalType::error;\n }\n "</color>\n
class Calibrator <<(T,#F94918)PSM>> {
..Port calibrator..
>>calibrate
>>entrypoint
>>receiveangle
>>receivecalibration
<<endcalibrate
<<errcalibrate
<<sendangles
<<calibrationfromserial
..Port StatusSender..
<<status
..Port avt..
>>calibrating
>>calibrationComplete
>>calibrationFailed
<<calibrating
<<calibrationComplete
<<calibrationFailed
..Functions..
-printCalibration() : void
}
note left of Calibrator : <b>@c_header</b> <color:royalBlue>"\n #include <Timer.h>\n #include <constants.h>\n #include <calibration.hpp>\n"</color>\n<b>@c_global</b> <color:royalBlue>"\n double angleValues[CALIBRATION_POINT_COLLECTION_COUNT][4] = {0};\n int angleIndex = 0;\n bool endCalibration = 0;\n \n uint8_t fourCounter = 0;\n"</color>\n
class iCalibration <<(F,#BC74ED)Fragment>> {
..Messages..
-calibrating()
-calibrationComplete()
-calibrationFailed()
}
class eCalibration <<(F,#BC74ED)Fragment>> {
..Messages..
-calibrate()
-entrypoint()
-receiveangle(...)
-receivecalibration(...)
-endcalibrate()
-errcalibrate()
-sendangles(...)
-calibrationfromserial()
}
class Runner <<(T,#F94918)PSM>> {
..Port Progress..
>>run
..Port Position..
>>baseStationAngles
<<cartesianCoordinates
<<lineSeparation
..Port StatusSender..
<<status
}
note left of Runner : <b>@c_header</b> <color:royalBlue>"\n #include <constants.h>\n #include <calibration.hpp>\n"</color>\n<b>@c_global</b> <color:royalBlue>"\n Pose bPose;\n Pose cPose;\n"</color>\n
class RunnerMessages <<(F,#BC74ED)Fragment>> {
..Messages..
-baseStationAngles(...)
-cartesianCoordinates(...)
-lineSeparation(...)
}
class eRunner <<(F,#BC74ED)Fragment>> {
..Messages..
-run()
}
class CalibrationStorer <<(T,#F94918)PSM>> {
..Messages..
-storerToIdle()
..Port storeReader..
>>byteRead
>>configRead
<<readByte
<<readConfig
..Port storeWriter..
>>byteWritten
>>configWritten
<<writeByte
<<writeConfig
..Port storerABC..
>>load
>>save
<<endload
<<errorload
..Port progress..
>>storerToIdle
<<storerToIdle
}
note left of CalibrationStorer : <b>@c_header</b> <color:royalBlue>"\n #import <calibration.hpp>\n"</color>\n<b>@c_global</b> <color:royalBlue>"\n #define STORE_KEY 42\n"</color>\n
class StoreMessages <<(F,#BC74ED)Fragment>> {
..Messages..
-readByte(...)
-readConfig()
-byteRead(...)
-configRead(...)
-writeByte(...)
-writeConfig(...)
-byteWritten()
-configWritten()
}
class eCalibrationStorer <<(F,#BC74ED)Fragment>> {
..Messages..
-load()
-endload()
-errorload()
-save()
}
class Blinker <<(T,#F94918)PSM>> {
..Messages..
-blink()
..Port evt..
>>blink
<<blink
..Port neopixel..
>>stateID
>>statusID
..Functions..
-startLEDFlashAfterDuration(...) : void
-callback_message_flash() : void
-setColorForDuration(...) : void
-callback_message_neopixel() : void
-timeoutColorChangeForDuration(...) : void
-callback_message_timeout() : void
}
note left of Blinker : <b>@c_header</b> <color:royalBlue>"\n#include <Timer.h>\n#include <Adafruit_NeoPixel.h>\n#include <Color_Helper.h>\n"</color>\n<b>@c_global</b> <color:royalBlue>"\nextern struct Blinker_Instance blinker_var;\nboolean current_blink = HIGH;\n\n#define PIN 12\n#define NUM_LEDS 1\n#define BRIGHTNESS 50\n\nuint32_t returnColor = RED;\nbool timeout = false;\nint8_t timeoutPriority = 0;\n\nAdafruit_NeoPixel led = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRBW + NEO_KHZ800);\n"</color>\n
class eblinker <<(F,#BC74ED)Fragment>> {
..Messages..
-statusID(...)
-stateID(...)
}
class PulseReader <<(T,#F94918)PSM>> {
..Messages..
-pulseDetected(...)
..Port PulseSender..
<<pulseDetectedEvent
..Port OverflowNotifyer..
<<timerOverflow
..Port Transitions..
>>pulseDetected
<<pulseDetected
..Functions..
-initialize() : void
-interruptServiceRoutine() : void
}
note left of PulseReader : <b>@c_header</b> <color:royalBlue>"\n #include <constants.h>\n "</color>\n<b>@c_global</b> <color:royalBlue>"\n volatile uint32_t ftm0_cnt_long;\n extern struct PulseReader_Instance pulseReader_var;\n bool STOP = false;\n "</color>\n
class SerialOut <<(T,#F94918)PSM>> {
..Port basic..
>>printStatus
>>printOperationState
>>printN
>>printPoint
>>printAngles
>>printLineSeparation
}
class msgout <<(F,#BC74ED)Fragment>> {
..Messages..
-printStatus(...)
-printOperationState(...)
-printN(...)
-printPoint(...)
-printLineSeparation(...)
-printAngles(...)
}
class SerialIn <<(T,#F94918)PSM>> {
..Port serialcall..
>>waitcalibration
<<calibrationreceived
..Port Timer..
>>serial_timeout
<<serial_timeout
..Functions..
-timeout_serialreader() : void
}
note left of SerialIn : <b>@c_header</b> <color:royalBlue>"#include <Timer.h>\n#include <constants.h>"</color>\n<b>@c_global</b> <color:royalBlue>"extern struct SerialIn_Instance serialIn_var;"</color>\n
class msgin <<(F,#BC74ED)Fragment>> {
..Messages..
-waitcalibration()
-calibrationreceived(...)
}
class iserialin <<(F,#BC74ED)Fragment>> {
..Messages..
-serial_timeout()
}
class Backbone <<(T,#F94918)PSM>> {
..Messages..
-toIdle()
..Port AngleReceiver..
>>allAngles
..Port Position..
>>cartesianCoordinates
>>lineSeparation
<<baseStationAngles
..Port Runner..
<<run
..Port CalibrationStorerABC..
>>endload
>>errorload
<<load
<<save
..Port validator..
>>endvalidate
>>errvalidate
<<validate
..Port calibrator..
>>endcalibrate
>>errcalibrate
>>sendangles
>>calibrationfromserial
<<calibrate
<<entrypoint
<<receiveangle
<<receivecalibration
..Port printer..
<<printStatus
<<printOperationState
<<printN
<<printPoint
<<printAngles
<<printLineSeparation
..Port serialRead..
>>calibrationreceived
<<waitcalibration
..Port pixel..
<<stateID
<<statusID
..Port presser..
>>click
>>double_click
>>long_press
..Port StatusHandler..
>>status
..Port StateHandler..
>>currentState
<<currentState
..Port transitions..
>>toIdle
<<toIdle
..Functions..
-sendStatus(...) : void
-timeout_angleStatus() : void
}
note left of Backbone : <b>@c_header</b> <color:royalBlue>"\n #include <Timer.h>\n #include <constants.h>\n "</color>\n<b>@c_global</b> <color:royalBlue>"\n extern struct Backbone_Instance backbone_var; // for timeout_angleStatus() function\n \n bool angleReadingArrived = false; // For alerting user is no angles are received over longer period\n \n // Globally available debug flags (extern in constants.h)\n bool DEBUG = false; // TODO: read from pin\n bool VERBOSE = false;\n "</color>\n
class eCalibrationValidator <<(F,#BC74ED)Fragment>> {
..Messages..
-validate()
-endvalidate()
-errvalidate()
}
class Button <<(T,#F94918)PSM>> {
..Properties..
-PIN : UInt8 = 7
..Port clock..
>>ms25_tic
<<ms25_tic
..Port evt..
<<press
<<release
..Functions..
-is_pressed() : Boolean
-time_25ms() : void
}
note left of Button : <b>@c_header</b> <color:royalBlue>"#include <Timer.h>"</color>\n<b>@c_global</b> <color:royalBlue>"extern struct Button_Instance button_var;"</color>\n
class TimerMessages <<(F,#BC74ED)Fragment>> {
..Messages..
-ms25_tic()
}
class Storer <<(T,#F94918)PSM>> {
..Port reader..
>>readByte
>>readConfig
<<byteRead
<<configRead
..Port writer..
>>writeByte
>>writeConfig
<<byteWritten
<<configWritten
}
note left of Storer : <b>@c_header</b> <color:royalBlue>"\n #include <constants.h>\n"</color>\n
class CalibrationValidator <<(T,#5BBF09)PIM>> {
..Messages..
-validating()
..Port validator..
>>validate
<<endvalidate
<<errvalidate
..Port avt..
>>validating
<<validating
}
ButtonMsgs <|-- SoftButton
iSoftButton <|-- SoftButton
SoftButtonMsgs <|-- SoftButton
IRMessages <|-- PackageReader
StatusMessages <|-- PackageReader
IRMessages <|-- AngleReader
StatusMessages <|-- AngleReader
iCalibration <|-- Calibrator
eCalibration <|-- Calibrator
StatusMessages <|-- Calibrator
RunnerMessages <|-- Runner
eRunner <|-- Runner
StatusMessages <|-- Runner
StoreMessages <|-- CalibrationStorer
eCalibrationStorer <|-- CalibrationStorer
eblinker <|-- Blinker
IRMessages <|-- PulseReader
msgout <|-- SerialOut
msgin <|-- SerialIn
iserialin <|-- SerialIn
msgout <|-- Backbone
msgin <|-- Backbone
eCalibrationStorer <|-- Backbone
eCalibrationValidator <|-- Backbone
eCalibration <|-- Backbone
SoftButtonMsgs <|-- Backbone
StatusMessages <|-- Backbone
IRMessages <|-- Backbone
RunnerMessages <|-- Backbone
eRunner <|-- Backbone
eblinker <|-- Backbone
ButtonMsgs <|-- Button
TimerMessages <|-- Button
StoreMessages <|-- Storer
eCalibrationValidator <|-- CalibrationValidator
@enduml | false | true | false | false | class |
39f8afcc71fc755cd1c870ea90bf840c4707e67f | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /documentation/serviceApi/pm/performance/media/src/extensionPattern.puml | 5b4365e6d7a198a5e2af22d53850b703250790b8 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 1,446 | puml | @startuml extensionPattern
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
ClassBorderColor<<ServicePayloadSpecificAttributes>> FireBrick
ClassBorderColor<<ResultPayload>> FireBrick
}
set namespaceSeparator none
class PerformanceJob {
id: string
href: string
jobType: JobType
reportingPeriod: ReportingPeriod
scheduleDefinition: ScheduleDefinition
<<... attributes are skipped ...>>
}
class ServicePayloadSpecificAttributes {
@type*: string <<discriminator>>
}
PerformanceJob *-->"1" ServicePayloadSpecificAttributes : servicePayloadSpecificAttributes
class urn:mef:lso:spec:legato:ip-performance-monitoring-configuration:v0.0.1:all <<ServicePayloadSpecificAttributes>> {
<<... attributes are skipped ...>>
}
ServicePayloadSpecificAttributes <|-- "urn:mef:lso:spec:legato:ip-performance-monitoring-configuration:v0.0.1:all"
class PerformanceReport {
id: string
href: string
<<... attributes are skipped ...>>
}
class ReportContent {
}
class ResultPayload {
@type*: string <<discriminator>>
}
PerformanceReport *-->"0..1" ReportContent : reportContent
ReportContent *-->"*" ResultPayload : measurementDataPoints
class urn:mef:lso:spec:legato:ip-performance-monitoring-results:v0.0.1:all <<ResultPayload>> {
<<... attributes are skipped ...>>
}
ResultPayload <|-- "urn:mef:lso:spec:legato:ip-performance-monitoring-results:v0.0.1:all"
@enduml | false | true | false | false | sequence |
1d068a609caede41d38f8cf82332faae4bb42b3b | 61f77755f3ca65fa0a0dfbbdc51137e01ded03fc | /design_model/src/main/java/example/designpattern/behavioral/iterator/iterator pattern.puml | 14fd703bce0d51418548e350b34f925eb2cad1d6 | [] | no_license | lyszhen3/myWeb | 670e02a585ea3193f6c388b9cea37969a94792dc | c1543ec5f48d84e6c6481a95e54b84f04654b323 | refs/heads/master | 2023-07-11T02:29:33.530130 | 2019-02-25T01:39:29 | 2019-02-25T01:39:29 | 78,835,228 | 0 | 1 | null | 2022-12-16T04:38:41 | 2017-01-13T09:31:45 | Java | UTF-8 | PlantUML | false | false | 875 | puml | @startuml
interface AbstractIterator{
+{abstract} void next();
+{abstract} boolean isLast();
+{abstract} previous();
+{abstract} boolean isFirst();
+{abstract} Object getNextItem();
}
abstract class AbstractObjectList{
#List<Object> objects;
+AbstractObjectList(List objects);
+void addObject(Object obj);
+void removeObject(Object obj);
+List getObjects();
+{abstract} AbstractIterator createIterator();
}
class ProductList{
+ProductList(List products);
+ AbstractIterator createIterator();
}
class ProductIterator{
-ProductList productList;
-List products;
-int cursor1;
-int cursor2;
+ProductIterator(ProductList list);
+void next();
+boolean isLast();
+previous();
+boolean isFirst();
+Object getNextItem();
}
ProductIterator .up.|>AbstractIterator
ProductList -up-|>AbstractObjectList
ProductList .right.> ProductIterator
ProductIterator -left->ProductList
@enduml | false | true | false | false | class |
eab6585cd983cf2130cf536a2ef7ba0ed55f4dee | 5a8fafc1af19d5eb6730c0da83db05e0db76d388 | /lists.puml | b28a61e85a1f9caa95b5d7da7f7a162e0bd9df94 | [] | no_license | LuisFajardoF/Diagramas-PUML | d041fcc7be377b5692a864c726d3cdcb19f3be2b | 4b886eefbd2207de708e056767a0a185851efc7f | refs/heads/master | 2023-03-29T01:22:24.559466 | 2021-04-13T17:39:58 | 2021-04-13T17:39:58 | 340,369,399 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,035 | puml | @startuml
abstract class List {
+ List(string*& params, string& content)
+ virtual string getCode()
# string getBegin()
# string getEnd()
# virtual string getContent()
# virtual string generateItems()
# virtual string getParamCode(string& param)
# string getParams()
# void fillItemsVector()
# string trim(string str)
# string* params
# string content
# vector<string> items
# string begin
# string end
}
class UnorderedList {
+ UnorderedList(string*& params, string& content)
+ string getCode()
- void setBegin(string params)
- void setEnd()
- string getContent()
- string generateItems()
- string getParamCode(string& param)
}
class OrderedList {
+ OrderedList(string*& params, string& content)
+ string getCode()
- void setBegin(string params)
- void setEnd()
- string getContent()
- string generateItems()
- string getParamCode(string& param)
}
class NestedList {
+ NestedList(string*& params, string& content)
+ string getCode()
- string getContent()
- string generateItems()
- string getParamCode(string& param)
- string getBegin(string env)
- string getEnd(string env)
- string getItem(string& item, int tab_arr_off)
- string getBeginEnvAndItems(int env_off, string& item, const string env)
- vector<int> tags
- bool active_envs[6]
- string tabs[7]
}
class DescriptionList {
+ DescriptionList(string*& params, string& content)
+ string getCode()
- void setBegin(string params)
- void setEnd()
- string getContent()
- string generateItems()
- string getParamCode(string& param)
}
class ToDoList {
+ ToDoList(string*& params, string& content)
+ string getCode()
- void setBegin()
- void setEnd()
- string getContent()
- string generateItems()
- string getParamCode(string& param)
}
List <|--- UnorderedList
List <|-- OrderedList
List <|--- NestedList
List <|-- DescriptionList
List <|--- ToDoList
@enduml | false | true | false | false | class |
67a04fdf1acc832ba642862da95e4ea9b781b71e | 05c57a1f0f2f8e7f830178d40310ebb093d2ac3c | /src/main/asciidoc/images/map-hierarchy.puml | f594a4cf73ea2096cf9e04a913fe27baca179ec8 | [] | no_license | umons-polytech-odl2017/odl-tp5-laurent_kalpers | 5993211a1612758614781d032580304e822216d7 | 132fae601cd830bde2f4d0454d8451741ccc6805 | refs/heads/master | 2022-12-28T03:39:11.598083 | 2020-10-13T19:38:01 | 2020-10-13T19:38:01 | 109,695,799 | 0 | 0 | null | 2020-10-13T19:38:03 | 2017-11-06T13:00:48 | Java | UTF-8 | PlantUML | false | false | 508 | puml | @startuml
hide empty members
interface Map<K, V> {
+put(key : K, value : V) : V
+get(key : K) : V
+remove(key : k) : V
+keySet() : Set<K>
+values() : Collection<V>
+entrySet() : Set<Map.Entry<K, V>>
}
class HashMap<K, V>
class LinkedHashMap<K, V>
note left of LinkedHashMap : Éléments ordonnés
interface SortedMap<K, V>
class TreeMap<K, V>
note right of TreeMap : Éléments triés
Map <|-- SortedMap
Map <|-- HashMap
HashMap <|-- LinkedHashMap
SortedMap <|-- TreeMap
@enduml
| false | true | true | false | class |
0284b4982ebb2a9b8a7284c387801d77fbb1f31e | 967db7f88bdf0e5cb8feca9571b9e85175f7bcc8 | /docs/UseCases/Manage-Applications/Monitor-Service.puml | aeba9d0a53d2e611297da629afcad1477fdc940f | [] | no_license | CAADE/edgeville | fd0053d749c259029ef4c7791210663ace87be21 | 6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65 | refs/heads/master | 2020-03-28T06:11:31.554585 | 2019-05-02T17:37:03 | 2019-05-02T17:37:03 | 147,819,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 289 | puml | @startuml
Actor "actorName" as A
box "Manage-Applications" #lightblue
participant CLI as CLI
participant Web as Web
participant "Edgeville" as S
A -> CLI : Edgeville-service-monitor()
CLI -> S : service/monitor()
A -> Web : service/monitor()
Web -> S : service/monitor()
end box
@enduml
| false | true | false | false | sequence |
a6c3e38cafbb5a8b6eeece612b19c06692d1a10e | 188aa3bd1c4fc0a88cab9726c2f2299f147e70d8 | /docs/UC_11/CD.puml | 93f74d2de110a582cefc664eac169898bb863929 | [] | no_license | botelho-io/lapr2-2020-g029 | c6a3c15bace1145c94c0495ac5f8ce54b7be478c | 1834bf842e5ae1f94d20ab61dad8e8124fc9f61b | refs/heads/master | 2023-08-17T00:53:42.364156 | 2020-06-14T22:29:10 | 2020-06-14T22:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 271 | puml | @startuml CD
skinparam classAttributeIconSize 0
top to bottom direction
class SerializeUI {
}
class SerializeController {
+ serialize()
}
SerializeUI ..> SerializeController
class App {
+ serialize(String path)
}
SerializeController ..> App
@enduml | false | true | false | false | class |
a9c544453512662487c6d8d70fcd32b5079342a9 | 1cf4490d48f50687a8f036033c37d76fec39cd2b | /src/main/java/global/skymind/training/intermediate/oop/ex04/ex04.plantuml | 8f76c9b87346f638a96774870b47aeadacead29a | [
"Apache-2.0"
] | permissive | muame-amr/java-traininglabs | 987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83 | a93268f60e6a8491b1d156fae183a108ff0d9243 | refs/heads/main | 2023-08-06T10:04:57.996593 | 2021-09-28T11:21:00 | 2021-09-28T11:21:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 422 | plantuml | @startuml
title __EX04's Class Diagram__\n
namespace global.skymind {
namespace training.intermediate.oop.ex04 {
class global.skymind.training.intermediate.oop.ex04.CustomerDatabaseApp {
}
}
}
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 |
ef2130b1f41cb3e28eb01a8f55fab83f0cdb01a3 | 9dc89e0060db7938382768fe3bb3eabb7ea2f034 | /doc/conception/pmul/sequence/save.puml | 789064d602e7b83a665b7d060b5e6ab9b435b0b8 | [] | no_license | Reynault/ShipShop | e06e79384ade8fa5c20ccd6d24b249eba92c35bc | adc6054f0775d4c7695f51490836870b658f309e | refs/heads/master | 2020-08-15T16:11:43.189475 | 2019-12-22T19:22:25 | 2019-12-22T19:22:25 | 215,369,325 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 352 | puml | @startuml
title What happens when the player save the game
autonumber
actor player
player -> GUI: Click on button for save
GUI -> ShipShop: save(File)
note left
The player choose a file
where to save the game
end note
ShipShop -> ObjectOutputStream: writeObject(game)
GUI --> player: See a message \n the game is saved \n successfully
@enduml | false | true | false | false | usecase |
514022686e3f1209951a21bfacc435d2dcbfba8b | 4f2db1e9fa3ebb63cdb5580daef2006bd9b40d87 | /sequence-diagram/comprar-midia.iuml | cc260a4663b093c9d73c661027bead1603808f85 | [] | no_license | arielazzi/desenvolvimento-de-software-II | f3420abbf2ba71e67510b559df918ccfdb9be497 | 99f88a365bc1933b7bd2c3abfd6d88df7e2920e8 | refs/heads/master | 2023-06-05T01:20:56.539391 | 2021-06-23T01:20:05 | 2021-06-23T01:20:05 | 343,940,350 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 688 | iuml | @startuml comprar-midia
actor Academico
participant Usuario << (C,#ADD1B2) >>
participant Midia << (C,#ADD1B2) >>
participant Administrador << (C,#ADD1B2) >>
activate Academico
activate Usuario
activate Administrador
activate Midia
Academico -[#blue]> Usuario: comprarMidia()
Usuario -[#blue]> Usuario: visualizarCreditos()
Usuario -[#blue]> Administrador: verificarSenha()
Administrador -[#green]-> Usuario: sucesso
Usuario -[#blue]> Midia: comprar()
Midia -[#green]-> Usuario: sucesso
Usuario -[#blue]> Usuario: adicionarMidiaEmListaCompradas()
Usuario -[#green]-> Academico: MidiaComprada
deactivate Midia
deactivate Administrador
deactivate Usuario
deactivate Academico
@enduml | false | true | false | false | usecase |
24f9c789eeeeff74a703072a1b0363023215cae8 | 7e76778bf9a2540a68e2f05ad6ad32f99fc70bed | /Assets/Assets/Scripts/PinAnimationControl/PinAnimation.puml | 4a099b303b8fba60d9ecc25af226a8b12df2e9a5 | [] | no_license | JosipSkrlec/TVZ_GuestBook | e047760cd605d9d433406edc09f3f24d8a6c3ba3 | 1455332d4b71d615ea38db23698b31741289b056 | refs/heads/main | 2023-07-16T18:40:16.758495 | 2021-08-28T12:42:11 | 2021-08-28T12:42:11 | 347,311,742 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 73 | puml | @startuml
class PinAnimation {
}
MonoBehaviour <|-- PinAnimation
@enduml
| false | true | false | false | class |
661579a3092258eb6b9405710755faf645da1c90 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/TaxedItemPriceDraft.puml | b8746734a59b1485984ff0961e0cf69607e86209 | [] | 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 | 356 | 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 TaxedItemPriceDraft [[TaxedItemPriceDraft.svg]] {
totalNet: [[Money.svg Money]]
totalGross: [[Money.svg Money]]
}
@enduml
| false | true | false | false | class |
3538b77270ba75c594417818e60efdce140420a7 | 06e63320aa10377121d75749c0ca752765bf221e | /text/0009-BundleTracker-integration/class_diagram.puml | 651a6bf41aa97867462dca9fce6e0867fe803691 | [] | no_license | CppMicroServices/rfcs | dee22a67d20e7e72adf235854d2a7d836feb5637 | d3c457e379b2f092a3f727e4cb1017143a46c437 | refs/heads/master | 2023-08-16T19:23:35.684350 | 2022-08-12T16:43:02 | 2022-08-12T16:43:02 | 139,403,709 | 1 | 7 | null | 2023-09-14T11:00:50 | 2018-07-02T07:00:34 | null | UTF-8 | PlantUML | false | false | 3,942 | puml | @startuml class_diagram
package cppmicroservices {
class "BundleListener" as BL
class "BundleContext" as BC
class "BundleTracker" as BT<T> {
- d : std::unique_ptr<BundleTrackerPrivate<TypeTraits>>
+ Open() : void
+ Close() : void
+ GetBundles() : std::vector<Bundle>
+ GetObject(const Bundle&) : std::optional<TrackedParamType>
+ GetTracked() : std::unordered_map<Bundle, T>
+ GetTrackingCount() : int
+ IsEmpty() : bool
+ Remove(const Bundle&) : bool
+ Size() : size_t
+ AddingBundle(const Bundle&, const BundleEvent&): std::optional<TrackedParamType>
+ ModifiedBundle(const Bundle&, const BundleEvent&, TrackedParamType): void
+ RemovedBundle(const Bundle&, const BundleEvent&, TrackedParamType): void
}
interface "BundleTrackerCustomizer" as BTC<T> {
+ AddingBundle(const Bundle&, const BundleEvent&) : std::optional<TrackedParamType>
+ ModifiedBundle(const Bundle&, const BundleEvent&, TrackedParamType) : void
+ RemovedBundle(const Bundle&, const BundleEvent&, TrackedParamType) : void
}
package detail {
class "BundleTrackerPrivate" as BTP<TTT> {
+ context : BundleContext
+ customizer : std::shared_ptr<BundleTrackerCustomizer<TrackedType>>
+ listenerToken : ListenerToken
+ trackedBundle : Atomic<std::shared_ptr<TrackedBundle<TTT>>>
+ Tracked() : std::shared_pointer<TrackedBundle<TTT>>
+ GetInitialBundles(uint32_t stateMask) : std::vector<Bundle>
+ GetBundles_unlocked(std::vector<Bundle>&, TrackedBundle<TTT>* t) const : void
- q_func() : BundleTracker<T>*
- q_func() const : const BundleTracker<T>*
- q_ptr : BundleTracker<T>*
}
interface "TrackedBundleListener" as TBL {
+ BundleChanged(const BundleEvent&) : void
}
class "TrackedBundle" as TB<TTT> {
- latch : CounterLatch
- bundleTracker : BundleTracker<T>*
- customizer : BundleTrackerCustomizer<T>*
- BundleChanged(const BundleEvent&) : void
- Modified() : void
- CustomizerAdding(const Bundle&, const BundleEvent&) : std::optional<TrackedParamType>
- CustomzierModified(const Bundle&, const BundleEvent&, TrackedParamType) : void
- CustomzierRemoved(const Bundle&, const BundleEvent&, TrackedParamType) : void
}
class "TrackedService" as TS
class "BundleAbstractTracked" as BAT <S, TTT, R> {
+ SetInitial(const std::vector~<S>&) : void
+ TrackInitial() : void
+ Close() : void
+ Track(S, R) : void
+ Untrack(S, R) : void
+ Size_unlocked() : std::size_t
+ IsEmpty_unlocked() : bool
+ GetCustomizedObject_unlocked(S) : std::optional<TrackedParamType>
+ GetTracked_unlocked(std::vector~<S>&) : void
+ Modified() : void
+ GetTrackingCount() : int
+ CopyEntries_unlocked(TrackingMap&) : void
+ CustomizerAdding(S, R&) : std::optional<TrackedParamType>
+ CustomzierModified(S, R&, TrackedParamType&) : void
+ CustomzierRemoved(S, R&, TrackedParamType&) : void
+ TrackAdding(S, R) : void
+ initial : std::list~<S>
+ adding : std::list~<S>
+ closed : std::atmoic<bool>
- tracked : std::unordered_map<S, TrackedParamType>
- trackingCount : std::atomic<int>
- bc : BundleContext
- CustomizerAddingFinal(S, const std::shared_ptr<TrackedParamType>&) : bool
}
}
BTC <|-- BT
BT *-- BTP
BTP o-- BT
BAT <|-- TB
TBL <|-- TB
TB *-- BTP
BTP o-- BC
BTP o-- BL
BTP o-- BTC
BAT <|-- TS
}
@enduml
| false | true | false | false | class |
de8eea58d8c2bab2ad622a596428ab5494b2b062 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderSetDeliveryAddressCustomTypeAction.puml | 38d48a643e23d531389d5a40dfa6183e0fc50d71 | [] | 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 | 638 | 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 StagedOrderSetDeliveryAddressCustomTypeAction [[StagedOrderSetDeliveryAddressCustomTypeAction.svg]] extends StagedOrderUpdateAction {
action: String
deliveryId: String
deliveryKey: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
0f986f7bf0b487beb1e69afa06bcc114916b212d | ee78251e468b32be4595e0670981340b9e48b901 | /specifications/software-design/rating/rating-class-diagram.puml | 5f716a26c3fb4d1e63c818a78d20243ed720344e | [] | no_license | KevenDvorianoff/Comixaire | 10479f840ef5a0054d47f7bf4449c5fa7ea6ce1b | bcc3e3de8d1e3f8f0f6606b6eeaaeee906fcd440 | refs/heads/master | 2023-02-09T23:35:16.619034 | 2021-01-10T15:08:18 | 2021-01-10T15:08:18 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,155 | puml | @startuml
package controller {
class RatingController {
-searchButton: Button
-name: TextField
-unratedItems: CheckBox
-ratedItems: CheckBox
-popupButton: Button
-popupRateButton: Button
-popupSlider: Slider
-popupClose: Button
+search(): void
+rate(): void
+popup(): void
+closePopup(): void
}
}
package rating {
class RatingFacade {
+search(String name, Boolean unratedItems, Boolean ratedItems): Items[]
+rate(Item itemId, float rate)
}
}
package dao {
abstract class DAOFactory {
+getRatingDAO(): RatingDAO
}
interface RatingDAO {
+search(String, Boolean, Boolean): Items[]
+create(Rating rating): void
}
package postgres {
class PostgresRatingDAO implements RatingDAO {
-connection: Connection
+PostgresRatingDAO(Connection: connection)
}
class PostgresDAOFactory extends DAOFactory {
-connection: Connection
}
}
}
PostgresDAOFactory .left> PostgresRatingDAO : "creates"
DAOFactory .left> RatingDAO : "provides"
' Inter-packages relations
RatingFacade -down-> DAOFactory
RatingController --> RatingFacade
@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.