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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
557e0a670c037fc157d512bfae9c39fa694788ea | 636d88cc43ec1ba57c3699ed58d0cec51a1a3084 | /Term Project/Builder/Builder_Class_diagram.puml | 47a69905e75717d5f8ea6ff1e1bf6d392a64da60 | [] | no_license | ahmedAlraimi/Tasarim | 088944d13cbdaeea4e0537f7035b1e7ad618c91c | c5a1ee24b3c57561cca80fd7a6e81359bde5b040 | refs/heads/master | 2020-04-26T15:33:28.741752 | 2019-07-10T13:09:39 | 2019-07-10T13:09:39 | 173,650,584 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 774 | puml | @startuml
skinparam classAttributeIconSize 0
class EventBuilder {
{method} + makeEvent(String, String ,String,String)
}
Interface EventInterface {
{method} + getEventInfo()
}
class Event {
{field} - manager : String
{field} - location : String
{field} - date_time : String
{field} - description : String
{method} + getEventManager()
{method} + getLocation()
{method} + getDateTime()
{method} + getDescription()
{method} + getEventInfo()
}
class EventManager {
{field} - manager : String
{method} + getEventManager()
}
class Location {
{field} - location : String
{method} + getLocation()
}
Event <- EventBuilder : builds
EventBuilder --> EventManager : uses
EventBuilder --> Location : uses
EventInterface <-- Event : implements
@enduml | false | true | false | false | sequence |
cc948f2199b32039fb37a5eb35fc199dfe0cbf6c | fcf2964bea457ff3bc5487edc35cd7fd601a6285 | /docs/diagrams/sequence/singleTableInheritance.puml | 5d09ee58dc428f5239e4fddc383a5b09062d8d01 | [] | no_license | jofrancis1997/ekzameno | e1460196dda7117e9022e2e41df7bea250d7c1dc | b68f02b68740fbdbcf7d4c2fc091d5f17e987ac5 | refs/heads/master | 2023-02-26T02:25:06.586561 | 2020-11-22T00:49:57 | 2020-11-22T00:49:57 | 334,376,922 | 1 | 0 | null | 2021-01-30T09:38:29 | 2021-01-30T09:38:19 | null | UTF-8 | PlantUML | false | false | 746 | puml | @startuml Single Table Inheritance
participant "UserMapper" as A
database Database as B
participant "AdministratorMapper" as C
participant "InstructorMapper" as D
participant "StudentMapper" as E
-> A: findByEmail(email)
activate A
A -> B: SELECT * FROM users where email = 'email'
activate B
B --> A: ResultSet
deactivate B
A -> A: load(rs)
activate A
alt type == "administrator"
A -> C: load(rs)
activate C
C --> A: administrator
deactivate C
else type == "instructor"
A -> D: load(rs)
activate D
D --> A : instructor
deactivate D
else type == "student"
A -> E: load(rs)
activate E
E --> A: student
deactivate E
end
A --> A: user
deactivate A
<-- A: user
deactivate A
@enduml
| false | true | false | false | sequence |
3cd1dafb66127cf41282ffb21056172eabdee9d3 | 81df60c226e8c63ae64cd18c85ff54c3f608d01d | /UML/add_post.puml | 8a2b4fdd4a299fa74c1b3560128e159203917e77 | [] | no_license | kenchi-san/blog-pro | 18e974b855613e4841e631e3fc5ede32679ec859 | 02ca62ab553dd1c04a54d91dd3fecdd37006347e | refs/heads/master | 2023-02-12T00:14:23.721040 | 2021-01-13T00:32:54 | 2021-01-13T00:32:54 | 278,068,036 | 0 | 0 | null | 2020-11-22T20:45:10 | 2020-07-08T11:13:28 | TSQL | UTF-8 | PlantUML | false | false | 441 | puml | @startuml
title Sequence : Ajouter un post
actor Administrateur as Ad
participant Controller as C
participant Model as M
participant SGBD as bdd
ref over Ad,C,M,bdd : Se connecter
Ad->C:nouveauPost(
activate C
C->M: Traitement des données
deactivate C
activate M
M->bdd: Exécution de la requete
activate bdd
bdd-->M:Réponse
deactivate bdd
M-->C:Ajout ok
deactivate M
activate C
C-->Ad: redirection back_office
deactivate C
@enduml | false | true | true | false | sequence |
3f15b8eea9b5680b717789e1a31d75893f48e6ff | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderTransitionLineItemStateAction.puml | 94e5edf5e9c701730581df411416ad88488fd82c | [] | 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 | 708 | 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 StagedOrderTransitionLineItemStateAction [[StagedOrderTransitionLineItemStateAction.svg]] extends StagedOrderUpdateAction {
action: String
lineItemId: String
lineItemKey: String
quantity: Long
fromState: [[StateResourceIdentifier.svg StateResourceIdentifier]]
toState: [[StateResourceIdentifier.svg StateResourceIdentifier]]
actualTransitionDate: DateTime
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
3763940dfc541efb9530337884d4f9e48cf37cbb | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ShoppingList.puml | eed047977e71e5cd80819080933cf9fed76c76ee | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,662 | 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 ShoppingList [[ShoppingList.svg]] extends BaseResource {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
name: [[LocalizedString.svg LocalizedString]]
key: String
customer: [[CustomerReference.svg CustomerReference]]
slug: [[LocalizedString.svg LocalizedString]]
description: [[LocalizedString.svg LocalizedString]]
lineItems: [[ShoppingListLineItem.svg List<ShoppingListLineItem>]]
textLineItems: [[TextLineItem.svg List<TextLineItem>]]
deleteDaysAfterLastModification: Long
anonymousId: String
store: [[StoreKeyReference.svg StoreKeyReference]]
custom: [[CustomFields.svg CustomFields]]
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface BaseResource [[BaseResource.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
}
interface ShoppingListPagedQueryResponse [[ShoppingListPagedQueryResponse.svg]] {
limit: Long
count: Long
total: Long
offset: Long
results: [[ShoppingList.svg List<ShoppingList>]]
}
interface ShoppingListReference [[ShoppingListReference.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
obj: [[ShoppingList.svg ShoppingList]]
}
ShoppingList --> ShoppingListPagedQueryResponse #green;text:green : "results"
ShoppingList --> ShoppingListReference #green;text:green : "obj"
@enduml
| false | true | false | false | sequence |
b78fb78729818d68434857cc73165205edcdc994 | df309fb09dea34be3020b3110527264e51c3975d | /dex/doc/components.puml | 35c4d5e8f8e67d9c75e15bb9b9588ce6c82a4fef | [] | no_license | WTXdEXa-Team/project | 62e383ad055bc7e6f91d1a83099fde6c6ab8a5ee | 758d7ff39ca775e90166868aa00b1a6265ac3829 | refs/heads/master | 2020-06-16T13:11:50.519669 | 2019-07-17T09:04:21 | 2019-07-17T09:04:21 | 195,587,769 | 0 | 0 | null | 2019-10-31T05:23:58 | 2019-07-06T22:22:09 | JavaScript | UTF-8 | PlantUML | false | false | 2,093 | puml | ' Proposed
@startuml
skinparam componentStyle uml2
''''''''''''''''''''''''''''''''''''''''
' Order interface
''''''''''''''''''''''''''''''''''''''''
interface "Get Orders" as getOrders
interface "Place Order" as placeOrder
interface "Cancel Order" as cancelOrder
interface "ActiveOrders" as orderManager__myActiveOrders
''''''''''''''''''''''''''''''''''''''''
' Messaging interface
''''''''''''''''''''''''''''''''''''''''
interface "Request active orders" as topicSubscription
interface "Broadcast Order" as postMessage
interface "Message notification" as notifyMessage
''''''''''''''''''''''''''''''''''''''''
' Contract Events interface
''''''''''''''''''''''''''''''''''''''''
interface "ContractEvents" as contractEventSubscription
''''''''''''''''''''''''''''''''''''''''
' Orderbook interface
''''''''''''''''''''''''''''''''''''''''
interface "Add Order" as orderbook__addOrder
''''''''''''''''''''''''''''''''''''''''
' Blotter interface
''''''''''''''''''''''''''''''''''''''''
interface "ActiveOrders" as blotter__activeOrders
''''''''''''''''''''''''''''''''''''''''
' Components
''''''''''''''''''''''''''''''''''''''''
component [Order Manager] as OrderManager
getOrders -down- [OrderManager]
placeOrder -down- [OrderManager]
cancelOrder -down- [OrderManager]
orderManager__myActiveOrders -down- [OrderManager]
[OrderManager] ..> topicSubscription
[OrderManager] ..> postMessage
[OrderManager] ..> notifyMessage
[OrderManager] .right.> contractEventSubscription
[OrderManager] ..> orderbook__addOrder : Add incoming orders
[OrderManager] ..> blotter__activeOrders
component [Order Broker] as Transport
postMessage -- [Transport]
topicSubscription -- [Transport]
notifyMessage -- [Transport]
[Transport] ..> orderManager__myActiveOrders
component [Contract Watcher] as ContractWatcher
contractEventSubscription - [ContractWatcher]
component [UI] as UI
component [Blotter] as Blotter
blotter__activeOrders - [Blotter]
component [Orderbook] as Orderbook
orderbook__addOrder - [Orderbook]
@enduml
| false | true | false | false | class |
ad69530abe1e4db310dbd150e5a2bbd4f4536f8b | c0287699d6c296fbd3c462df3cddec4619b625eb | /docs/components_scheme.puml | 7187eafaa1abfc6fa31e0d4b13acfbdce9a692b8 | [
"MIT"
] | permissive | hereon-wpi/pedc-view | 775c819b3335ea4fbf08f3d4c2a232bc0b90fb2e | f5f2d5d1efdf7543bccf363acff0265336be495a | refs/heads/master | 2023-09-05T07:01:46.596084 | 2021-11-12T18:53:16 | 2021-11-12T18:53:56 | 385,757,191 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,192 | puml | @startuml
component App
component Navigation
component Route
component PrivateRoute
component LoginPage
component TemplateGenerator
note top
Container for:
__Library__ - List of blocks
that can be customized
and added to the template
__Template__ - List of configured
and added blocks from which
the template will be created.
end note
component Library
component Template
component Document
component TemplateList
component DocumentList
component AttachDocument
note right
Used for attaching
document to current user
end note
package Blocks
note right
Blocks are the components
from which a document
template is assembled.
end note
agent BlockService
note right
Helps to render blocks.
Provides block instances,
default props and config fields.
end note
App -- Navigation
Navigation -> Route
Route -> LoginPage
Navigation --> PrivateRoute
PrivateRoute --> TemplateGenerator
TemplateGenerator --> Library
TemplateGenerator --> Template
PrivateRoute ---> Document
PrivateRoute ---> TemplateList
PrivateRoute ---> DocumentList
PrivateRoute -> AttachDocument
Library .. BlockService
Template .. BlockService
Document .. BlockService
BlockService .. Blocks
@enduml
| false | true | false | false | component |
d6b167d9e5084b567da323889575a4385b204493 | 7e05dd171608f5287af3aa1b71f2bbba972f05ad | /testData/parser/ActorAndConnectionSameName.puml | a8f755fa1634039b478d5bbf15ffeff02012f286 | [] | no_license | Stefku/intellij-puml | f98aa95cf1921742bf6ec67065679c8ad1f6afcd | e81b7a472094f4617a7ecb2c6e3ee9ec6768c535 | refs/heads/master | 2020-06-06T06:22:04.067543 | 2013-01-31T15:38:37 | 2013-01-31T15:38:37 | 7,503,548 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 46 | puml | @startuml
actor User
User -> (UseCase)
@enduml | false | true | false | false | usecase |
e76169fa9f89688ff2ec704a26ac82373b699f7b | e7b7df0cf36cf83e9c440c3a81f4f85193e37a72 | /3 Class Diagram/19a Automatic namespace creation.puml | 01642cec51a7e7bff74f6fbeb63cd378724532d9 | [
"MIT"
] | permissive | jys129/PlantUML | 38dd154cc9a45d3206abf26f95bfb45e32d4c186 | f0e62bf90332a1a541ded76d2101ebdd9215adaa | refs/heads/master | 2023-03-16T15:54:12.053012 | 2020-10-18T15:49:08 | 2020-10-18T15:49:08 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 81 | puml | @startuml
set namespaceSeparator ::
class X1::X2::foo {
some info
}
@enduml | false | true | false | false | class |
df0b407d5e5f78723881b0519886ad7639557c4f | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/Suggestion.puml | a37f2a4014c5850931c8ff8c4a5e141d28c4ebf2 | [] | 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 | 432 | 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 Suggestion [[Suggestion.svg]] {
text: String
}
interface SuggestionResult [[SuggestionResult.svg]] {
}
Suggestion --> SuggestionResult #green;text:green : "/searchKeywords.[a-z]{2}(-[A-Z]{2})?/"
@enduml
| false | true | false | false | sequence |
b9aaa9db23fe751055d67be0e1c95363df1b9704 | 17a6a64d2275c47c9b205f088394b4937292f9f5 | /docs/clamp/acm/plantuml/system-dialogues/CommissionUpdateAcType.puml | 014b76c8f39ca534c191540108862f06dd5bdb07 | [
"Apache-2.0",
"CC-BY-4.0"
] | permissive | onap/policy-parent | 2e8db0a82311ed576a2d3166ac293b8b5687987c | b12c67854c70ae410e02af501126ecf8434e5dd9 | refs/heads/master | 2023-08-16T15:28:59.552318 | 2023-08-04T13:00:54 | 2023-08-08T10:14:28 | 159,416,823 | 3 | 1 | NOASSERTION | 2021-06-29T19:01:07 | 2018-11-27T23:53:56 | null | UTF-8 | PlantUML | false | false | 503 | puml | @startuml
participant REST
participant ACM_Runtime
database ACM_Database
REST -> ACM_Runtime: Commission Automation Composition Type
alt Automation Composition Type exists and has Instances
ACM_Runtime -> REST: Automation Composition Type Commissioning Failed
else
ACM_Runtime -> ACM_Database: Create and Store Automation Composition Type
ACM_Runtime -> ACM_Database: Set Automation Composition Type State to COMMISSIONED
ACM_Runtime -> REST: Automation Composition Type Commissioned
end
@enduml
| false | true | false | false | sequence |
eb1be90fd33eec45c231b977331bb3f064978bfc | b59217cfcbaf8c66265e36a1266398c7e8f43f02 | /src/Final_Project/NFL Player.puml | 2ddd35cd14b694b49f0586791bd9413eba1dc589 | [] | no_license | Malleas/cst_105 | 03809507b55f1c4e3f4a1f77ed8c986ece7a788c | d51ea53e0afa2545c71a61de74f989b4ca998aca | refs/heads/master | 2020-04-12T16:58:02.523312 | 2019-02-09T17:01:13 | 2019-02-09T17:01:13 | 162,629,895 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,443 | puml |
/**
* All work is created by Matt Sievers on 01-22-2019 for use in CST-105
*/
@startuml
+class NFL_Player {
+main
NFL_Player player = newPlayer()
writePlayerToFile(player);
playerStats(player);
==Properties==
-String playerKey;
-String firstName;
-String lastName;
-String position;
-String teamName;
-String fullName;
-int rushingYards;
-int passingYards;
-int totalYardsPerGame;
-int numberOfSuperBowlWins;
}
-class newPlayer{
==Setters==
setPlayerKey(NFL_Player.playerKey());
setFirstName(firstName);
setLastName(lastName);
setPosition(position);
setTeamName(teamName);
setFullName(firstName, lastName);
setRushingYards(rushingYards);
setPassingYards(passingYards);
setTotalYardsPerGame(rushingYards, passingYards);
setNumberOfSuperBowlWins(numberOfSuperBowlWins);
}
-class playerKey{
generation of UUID
}
-class playerStats{
Display stats with getters that concat values
}
-class writePlayerToFile{
Create BufferedWriter
For loop to itterate through multiple players
==Getters==
player.getPlayerKey();
player.getFirstName();
player.getLastName();
player.getPosition();
player.getTeamName();
player.getFullName(player.firstName, player.lastName);
player.getRushingYards();
player.getPassingYards();
player.getTotalYardsPerGame(player.rushingYards, player.passingYards);
player.getNumberOfSuperBowlWins();
}
NFL_Player --> newPlayer
newPlayer --> playerKey
NFL_Player --> playerStats
NFL_Player --> writePlayerToFile
@enduml
| false | true | false | false | uml-unknown |
22ec055409410f90e31e6ab3aa84fdfeffb4ff3f | f4912b210d7eb691deae8a8a396ecbc2b9ae4386 | /assets/Mediatr.puml | 987d3140cf62a21c2465d98c9af8b430b095089e | [
"MIT"
] | permissive | newportg/newportg.github.io | 8eaf3eb41e7502b26c7aa33b55e3e9ec67731536 | 5fae722e228c339cf6707ba4a4747fc7bbbf9705 | refs/heads/master | 2021-06-06T00:04:48.145436 | 2020-03-06T09:18:45 | 2020-03-06T09:18:45 | 152,589,658 | 0 | 1 | null | 2019-02-08T15:05:51 | 2018-10-11T12:40:31 | JavaScript | UTF-8 | PlantUML | false | false | 708 | puml | @startuml
skinparam linetype polyline
skinparam linetype ortho
title Mediator Pattern
' classes
interface INotification
interface INotificationHandler
INotification : mediate()
INotificationHandler : NotifyText()
NotificationMessage : NotifyText()
Notifier1 : Handle()
Notifier2 : Handle()
INotifierMediatorService : NotifyText()
' Set screen position
INotification <- INotificationHandler : mediator
INotification -[hidden]-> NotificationMessage
' Relationship
NotificationMessage --|> INotification
INotificationHandler <|-- Notifier1
INotificationHandler <|-- Notifier2
NotificationMessage -> Notifier1
NotificationMessage -> Notifier2
INotifierMediatorService <|-- NotifierMediatorService
@enduml
| false | true | false | false | class |
4c9b6a15faf5f819568ea6e3d0ae3d2f92746f8e | 0f2ccd0a689a3633eead0d7b8f118c1a4ca81aea | /Structural/Decorator/doc/composite_object_diagram.plantuml | 2f478c6eaf440e3ba026ce58f0e0e288050b3840 | [
"Apache-2.0"
] | permissive | symnoureddine/design-patterns | d6eca7edeb131e7f506900b517050c4f975482aa | b8f088e877d4739527b41aeb6e0c80ac9d29b398 | refs/heads/master | 2020-09-10T18:30:44.513673 | 2019-11-02T22:33:20 | 2019-11-02T22:33:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 518 | plantuml | @startuml
object "logger: Logger" as logger
logger : message = "some message to log"
object "error_level_logger: ErrorLevelLoggerDecorator" as error_level_logger_decorator
error_level_logger_decorator : decoratedLogger = logger
object "date_logger: DateLoggerDecorator" as date_logger_decorator
date_logger_decorator : decoratedLogger = error_level_logger_decorator
error_level_logger_decorator o-- date_logger_decorator
date_logger_decorator o-- logger
right footer © Vlad Riabchenko <contact@vria.eu>
@enduml
| false | true | true | false | class |
ec096f00ea8b750e9305d0c117170fd3316c8c83 | 0ac53e12194c5158f428cfbe5f7ad23acb3579df | /UML/data.puml | b0472705d5c74dd72ce3abe8bc67eab44a6248b0 | [] | no_license | christopherhans/analytics | 8a607f91b248a0999c7131160ee66fd4adecd363 | 6cc387ab2b615b84da17de1300aa4517a004c468 | refs/heads/master | 2020-09-15T20:53:31.702714 | 2019-11-29T10:47:42 | 2019-11-29T10:47:42 | 223,555,019 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 286 | puml | @startuml
class Data {
-- Attributes --
- df
- X_train
- X_test
- y_train
- y_test
- X_train_scaled
- X_test_scaled
- y_train_scaled
- y_test_scaled
- knn_pred
- knn_mse
- lr_pred
- lr_mse
- coef_
- intercept_
}
@enduml | false | true | false | false | class |
fae4e06f0f242408fa657ad65c6e1c115eb6cefd | 14979669c6a0c65aa27cd7f9eacef01e10eac632 | /src/main/java/ex45/ex45App.puml | e9f2fbb3dfc6c2a3e5c5d0d105b3d2df5752c445 | [] | no_license | YHmaiti/Hmaiti-COP3330-Assignment3 | 316326ffb6d83eae6382a41830441b08d5e2acae | c1f591b1bbdfa94724c72e7f43cd1e35be2555e6 | refs/heads/master | 2023-08-13T20:04:06.663057 | 2021-10-07T22:24:37 | 2021-10-07T22:24:37 | 414,767,067 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 237 | puml | /*
* UCF COP3330 Fall 2021 Assignment 3 Solution
* Copyright 2021 Yohan Hmaiti
*/
@startuml
class App{
+ main(String[] args)
+ UpdateOutput(ArrayList<String> input, String output)
+ getInput(String currFile)
}
@enduml | false | true | false | false | class |
67c1860c5ed7e664c142ebe5e4f9ce77cc905bc2 | d2183274fad498784c6b50dbf30e1de6e3e78394 | /images/source/message-sync.plantuml | 138092b03b403b80b184d59ec366b74bd87ff8a7 | [
"BSD-3-Clause"
] | permissive | HL7/fhir | 005c48da72ff5087e4ada923da01d3085f7ac929 | 8c49d6e0e2207d7c124c58017e7b15649b60fa90 | refs/heads/master | 2023-08-25T14:52:56.667977 | 2023-07-28T23:08:18 | 2023-07-28T23:08:18 | 18,617,943 | 424 | 154 | NOASSERTION | 2023-09-14T17:16:13 | 2014-04-10T00:10:18 | HTML | UTF-8 | PlantUML | false | false | 204 | plantuml | @startuml
hide footbox
participant "Data Consumer" as Consumer
participant "Data Source" as Source
Consumer -> Source: 1a. Request message
Consumer <-- Source: 1b. Response ack message (with data)
@enduml | false | true | false | false | sequence |
eb13020d4c942a302cbefa26a3089ea04232db2d | 26ac3733a028bdd66195d7ed8fe2613ce410443b | /docs/diagrams/TaskClassDiagram.puml | 1fda0b6f100352e488f0898d6e5605c55f0fa5cc | [
"MIT"
] | permissive | Hardoh/main | 5e8dd84401772119e903de32e2aba4d551391fb3 | d28cc5d7d6fb1e287dfb43e1c085618ed452d630 | refs/heads/master | 2021-02-12T01:04:26.170984 | 2020-04-15T10:46:30 | 2020-04-15T10:46:30 | 244,546,245 | 0 | 0 | NOASSERTION | 2020-03-03T05:03:01 | 2020-03-03T05:03:01 | null | UTF-8 | PlantUML | false | false | 3,610 | puml | @startuml
Task o-- "1" Name
Task o-- "1" Priority
Task o-- "0..1" Description
Task o-- "*" Tag
Task o-- "0..1" Reminder
Task o--> "0..1" Recurring
Recurring --> "0..1" RecurType
ModelManager --> Recurring
note left: some methods omitted for brevity
LogicManager --> ModelManager
note left: some methods omitted for brevity
class Task {
- name : Name
- priority : Priority
- description : Description
- done : Done
- tags : Set<Tag>
- optionalReminder : Optional<Reminder>
- optionalRecurring : Optional<Recurring>
__
+ getName()
+ getPriority()
+ getDescription()
+ getDone()
+ getOptionalReminder()
+ getOptionalRecurring()
+ getTags()
+ hasTag()
+ isSameTask(Task otherTask)
+ triggerReminderIfPresent()
+ getRecurredTask()
+ equals(Object other)
+ hashcode()
+ toString()
}
class Recurring {
- type : RecurType
- referenceDateTime : LocalDateTime
+ MESSAGE_CONSTRAINTS : String
+ MESSAGE_RECURRING_TASK_SUCCESS : String
+ VALIDATION_REGEX : String
+ stringFormatter : DateTimeFormatter
__
+ static parseDateTime(String dateTimeString)
+ static parseRecurType(String recurringString)
+ shouldUpdateReminder(LocalDateTime reminderDateTime)
+ getUpdatedReminderTime(Reminder currentReminder)
+ static isValidRecurring(String test)
+ getDelayToFirstTrigger()
+ getPeriod()
+ toString()
}
class Name {
+ fullName : String
+ MESSAGE_CONSTRAINTS : String
+ VALIDATION_REGEX : String
__
+ static isValidName(String test)
+ toString()
+ equals(Object other)
+ hashCode()
+ compareTo(Object obj)
}
class Priority {
+ value : String
+ MESSAGE_CONSTRAINTS : String
+ VALIDATION_REGEX : String
__
+ static isValidPriority(String test)
+ toString()
+ equals(Object object)
+ hashCode()
+ compareTo(Object obj)
}
class Description {
+ value : String
+ MESSAGE_CONSTRAINTS : String
__
+ static isValidDescription(String test)
+ toString()
+ equals(Object object)
+ hashCode()
+ compareTo(Object obj)
}
class Tag {
+ tagName : String
+ MESSAGE_CONSTRAINTS : String
+ VALIDATION_REGEX : String
__
+ static isValidTagName(String test)
+ equals(Object other)
+ toString()
+ hashCode()
}
class Reminder {
- reminderDateTime : LocalDateTime
- delay : long
- hasFired : boolean
+ MESSAGE_CONSTRAINTS : String
+ MESSAGE_CONSTRAINTS_PAST : String
+ VALIDATION_REGEX : String
__
- setDelay()
+ setHasFired()
+ static isValidReminder()
+ static calculateDelay()
+ displayReminder()
+ toString()
+ compareTo(Object obj)
}
class ModelManager {
- taskList : TaskList
- pomodoro : Pomodoro
- statistics : Statistics
- pet : Pet
- userPrefs : UserPrefs
- filteredTasks : FilteredList<Task>
- comparator : Comparator<Task>[]
- pomodoroManager : PomodoroManager
- petManager : PetManager
- statisticsManager : StatisticsManager
- observers : ArrayList<Observer>
- recurringTimerTasks : HashMap<Task, TimerTask>
- recurringTimer: Timer
- taskSaver : TaskSaver
__
- setRecurringTimers()
- generateTimerTask()
- cancelTimerTask()
- setTimer()
}
class LogicManager {
- model : Model
- storage : Storage
- taskListParser : TaskListParser
__
- taskSaver()
}
enum RecurType {
static weekIntervalMilliseconds : long
static weekIntervalDays : long
static dayIntervalMilliseconds : long
static dayIntervalDays : long
__
- getDayInterval()
- getInterval()
}
@enduml
| false | true | false | false | class |
1b034adece492bdca48f256ee24075ca83ed2dce | 9cccabca8eff25502a735f8fe4ceff3a09b4c444 | /res/uml/engine-simple.puml | 02b41b3a4a0c282f4888b9a121856f7443cde860 | [
"CC-BY-SA-3.0",
"CC-BY-SA-4.0",
"Apache-2.0"
] | permissive | NiccoMlt/protelis-web-thesis | 1d077bf8180c415789d52f4a7bb9e5c67d470bb3 | 49bf1e3a3b89df55f0a4176bb4c3b3a14941d497 | refs/heads/master | 2020-12-23T14:02:23.293073 | 2020-03-23T19:14:45 | 2020-03-23T19:14:45 | 237,173,330 | 0 | 0 | Apache-2.0 | 2020-03-11T13:34:43 | 2020-01-30T08:51:15 | TeX | UTF-8 | PlantUML | false | false | 2,677 | puml | @startuml engine-simple
skinparam {
linetype ortho
' groupInheritance 2
' monochrome true
' style strictuml
ArrowColor black
backgroundColor transparent
classBackgroundColor transparent
classBorderColor black
participantBackgroundColor transparent
' participantBorderColor black
databaseBackgroundColor transparent
' databaseBorderColor FireBrick
' databaseBorderColor Crimson
databaseBorderColor Maroon
' databaseBorderColor brown
' databaseBorderColor DarkRed
' databaseBorderColor black
actorBackgroundColor transparent
' actorBorderColor black
componentBackgroundColor transparent
' componentBorderColor black
}
' package it.unibo.alchemist.boundary.interfaces {
' interface OutputMonitor <T concentration type\nP position type> << from Alchemist >> {
' + initialized(env)
' + stepDone(env, reaction, time, step)
' + finished(env, time, step)
' }
' }
' package io.vertx {
' package io.vertx.core {
' interface Verticle {
' + init()
' + start()
' + stop()
' }
' package io.vertx.core.eventbus {
' interface EventBus
' }
' }
' package io.vertx.kotlin.coroutines {
' abstract class CoroutineVerticle
' }
' Verticle <|-- CoroutineVerticle
' }
package it.unibo.protelis.web.execution {
package it.unibo.protelis.web.execution.simulated {
abstract class ProtelisOutputMonitor <T concentration type\nP position type> {
# updateMessageGenerator(env): ProtelisUpdateMessage
}
ProtelisObserver <|-- ProtelisOutputMonitor
OutputMonitor <|-- ProtelisOutputMonitor
class ProtelisUpdateAdapter <T concentration type\nP position type>
ProtelisOutputMonitor <|-- ProtelisUpdateAdapter
class SimulatedProtelisEngine {
- alchemistEngine
}
ProtelisEngine <|-- SimulatedProtelisEngine
}
interface ProtelisEngine {
+ setup(sourceCode, observer)
+ start()
+ stop()
}
interface ProtelisObserver {
+ initialized(updateMessage)
+ stepDone(updateMessage)
+ finished(updateMessage)
}
ProtelisEngine o-- ProtelisObserver
class ProtelisUpdateMessage {
+ nodes: List<ProtelisNode>
}
ProtelisObserver --> ProtelisUpdateMessage
class ProtelisNode {
+ id: string
+ coordinates: Pair<Number, Number>
}
ProtelisUpdateMessage *-- ProtelisNode
class AlchemistVerticle {
- engine: ProtelisEngine?
}
' CoroutineVerticle <|-- AlchemistVerticle
AlchemistVerticle o-- SimulatedProtelisEngine
class EventBusProtelisObserver {
- eb: EventBus
}
ProtelisObserver <|-- EventBusProtelisObserver
EventBusProtelisObserver o-- EventBus
}
@enduml
| false | true | false | false | class |
f44a54a1010ec89617b3b0d13678feac83955528 | 56c20102c13a8954fc972d28603045a4f2f2087f | /src/main/java/com/liyi/design/pattern/behavior/state/_State.puml | 78424ac0abd543b8dec68c8d15d158cfb4896c9b | [] | no_license | liyigithub1114/design-pattern | 74234027be2b8e90fe5a50afca64d35e6035be1d | 3a5d9e2c96ec21c9903f34657827ade43140feec | refs/heads/master | 2022-11-21T21:29:20.902171 | 2020-07-22T03:28:02 | 2020-07-22T03:28:02 | 281,564,379 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 999 | puml | @startuml
abstract class MyState{
abstract void deduceMoney();
abstract boolean lottery();
abstract void dispensePrise();
}
class DeduceState extends MyState{
public DeduceState(MyActivity myActivity);
void deduceMoney();
boolean lottery();
void dispensePrise();
}
class LotteryState extends MyState{
public LotteryState(MyActivity myActivity);
void deduceMoney();
boolean lottery();
void dispensePrise();
}
class DispenseState extends MyState{
public DispenseState(MyActivity myActivity);
void deduceMoney();
boolean lottery();
void dispensePrise();
}
class CanNotDispenseState extends MyState{
public CanNotDispenseState(MyActivity myActivity);
void deduceMoney();
boolean lottery();
void dispensePrise();
}
class MyActivity{
MyState deduceState;
MyState LotteryState;
MyState DispenseState;
MyState CanNotDispenseState;
int count;
MyState myState;
}
MyState o--> MyActivity
@enduml | false | true | false | false | class |
878f665b14eb867800544d7bd1d9aa323b7d78d3 | a597590a7109e103eba7ebd109187dd452cec4fe | /Item.iuml | bada31967a07940619d7e10be955b042466d83b4 | [] | no_license | ngoc199/procuretail | e2a3df91074d339262b4a9638b2df4fd476b3158 | 9572e9b31ce22902086bfabf9cb0f9df9f67a62c | refs/heads/master | 2022-11-27T11:28:29.868526 | 2020-08-06T02:53:20 | 2020-08-06T02:53:20 | 285,456,321 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 32 | iuml | @startuml
actor Customer
@enduml | false | true | false | false | sequence |
9eb31c9382aa33a860feb09d4bd9f47fbf88bd42 | 8255480ee8ecef1ad7d65f60b261efce689ba52c | /distribution/fontawesome-6/Regular/Heart.puml | a6d1e902e815aee64a6c8252ce3fad4758ccfba8 | [
"MIT"
] | permissive | tmorin/plantuml-libs | 26e2eca7afa650a54ee8df4e7300e14e19e43ec0 | 006af18927be7a3f7b4a41950db45b9a8026a534 | refs/heads/master | 2023-08-09T03:49:04.516794 | 2023-05-30T19:04:23 | 2023-05-30T19:04:23 | 181,646,969 | 95 | 25 | MIT | 2023-07-20T10:12:29 | 2019-04-16T08:24:49 | TypeScript | UTF-8 | PlantUML | false | false | 700 | puml | ' definition of the Item fontawesome-6/Regular/Heart
sprite $HeartXs [10x10/16z] 1S450S10000Xvhxht_O106hn554tFHDsz07y0cGE124W0GG3
sprite $HeartSm [12x12/16z] LOg30G0n54DJks__QS_yZFGhCyfsMzyEn4wY5RBOhVs8cPymRRnOtD0XpmdZ_YrckndjPR1gJvI1dXh7NG4
sprite $HeartMd [16x16/16z] XOp50SKm5CDKXe3sd_Op-5O7zD1Sggakr2TMU7wlP7jYnH7WT7YYskIbLmegANSpdSKMkJBPCeN9dYcCRmul_ABHdZvJfc2cgJi
sprite $HeartLg [20x20/16z] {
ZS-5bKKX303HUMx0zD_jvco--yMTyBlLC027eIEOZavjwWRLSbxPipEX_6lH9tHws95cae47XrKUn2KUt5EqVpYwC-Z8LL6WrvcpQju_w7Avlq7IBLihPrt6
fOMB7FhuBSF60rtvu0y
}
!procedure Heart($id, $name="", $tech="", $desc="")
IconElement($id, 'IconElement', 'fontawesome-6/Regular/Heart', $name, $tech, $desc)
!endprocedure
| false | true | false | false | class |
4b80341f84c871806ea641e22bbf2ba625a3162b | 2b3e4cbb7ce07639b15a4ee2d0ea908084e34f60 | /library/src/main/java/com/google/android/exoplayer/custom/ts.puml | 07d2c41e2d493916a5195321657a2073b2866406 | [] | no_license | msdgwzhy6/ExoGetTs | 86f5972da836bf9ee5e0fa42aebe82b8e2ca0e08 | 346fe473845f10ab0874a03d4ca6f4790818cf2f | refs/heads/master | 2020-04-11T02:50:10.655771 | 2018-06-12T02:42:43 | 2018-06-12T02:42:43 | 161,458,052 | 1 | 0 | null | 2018-12-12T08:41:50 | 2018-12-12T08:41:49 | null | UTF-8 | PlantUML | false | false | 275 | puml | @startuml
start
-->HlsRendererBuilder
-->AsyncRendererBuilder
-->HlsChunkSource
-->getChunkOperation
-->HlsMediaPlaylist.Segment segment = mediaPlaylist.segments.get(chunkIndex);
-->Uri chunkUri = UriUtil.resolveToUri(mediaPlaylist.baseUri, segment.url);
stop
@enduml | false | true | false | false | activity |
1bebe1f13e807427132f80c92ba6a8656a970095 | 158a2c4c0d8e6baa04be3a9eec08901f91722415 | /docs/design/class_domain.puml | 2721bab443e90c94898217d8ecd5f6aa0e9ee44a | [] | no_license | littlewhywhat/extrace | cb7385e4910e7ad2c911327efb759522591c3a68 | eaa97fa57d8b6a173cf7a6ed52c427573bcedc11 | refs/heads/master | 2021-04-18T21:05:47.688307 | 2018-05-16T05:22:20 | 2018-05-17T23:13:57 | 126,710,382 | 0 | 0 | null | 2018-05-17T23:13:58 | 2018-03-25T15:15:59 | C++ | UTF-8 | PlantUML | false | false | 4,774 | puml | @startuml
title Class Diagram
class TraceApp {
+ startSession(): void
}
hide TraceApp fields
TraceApp *--> "1" TraceSession
abstract class TraceSession {
+ {abstract} run(): void
--
- do(action: TraceAction): void
}
TraceSession "-trace" --> "1" Trace
class AsyncTraceSession {
}
hide AsyncTraceSession methods
hide AsyncTraceSession fields
AsyncTraceSession --|> TraceSession
AsyncTraceSession "-action" --> "1" TraceAction
class TraceAction {
+ {abstract} tryExecuteOn(Trace & trace): bool
}
hide TraceAction fields
class StartTrace {
}
hide StartTrace methods
hide StartTrace fields
StartTrace --|> TraceAction
class StopTrace {
}
hide StopTrace methods
hide StopTrace fields
StopTrace --|> TraceAction
class StreamTrace {
}
hide StreamTrace methods
hide StreamTrace fields
StreamTrace --|> TraceAction
class DumpTrace {
}
hide DumpTrace methods
hide DumpTrace fields
DumpTrace --|> TraceAction
abstract Trace {
+ tryStart(): bool
+ tryStop(): bool
+ tryStream(): bool
+ tryDump(): bool
--
- trySetup(TraceComponent & component)
}
hide Trace fields
Trace "-components" --> "1..*" TraceComponent
Trace "-traceSwitch" -- "1" SwitchFile
interface TraceComponent {
+ trySetup(): bool
+ tryReset(): bool
}
hide TraceComponent fields
class AndroidComponent {
+ addApp(app: AndroidApp): void
+ addCategory(category: AndroidTraceCategory): void
- prepareApps(): void
- prepareCategories(): void
- pokeAndroidTraceSystem(): void
}
hide AndroidComponent fields
AndroidComponent ..> TraceComponent
AndroidComponent "-androidApps" -- "0..*" AndroidApp
AndroidComponent "-androidTraceCategories" -- "0..*" AndroidTraceCategory
AndroidComponent "-androidTraceSystem" -- "1" AndroidTraceSystem
class AndroidApp {
- name: string
}
hide AndroidApp methods
class AndroidTraceCategory {
- tag: uint64
}
hide AndroidTraceCategory methods
class AndroidTraceSystem {
- {static} appsPropertyId: string
- {static} appCntPropertyId: string
- {static} categoriesPropertyId: string
--
+ prepare(apps: vector<AndroidApp>): void
+ prepare(categories: vector<AndroidTraceCategory): void
+ reset(): void
+ pokeAndroidSystem(): void
}
hide AndroidTraceSystem fields
AndroidTraceSystem "-androidSystem" -- "1" AndroidSystem
class AndroidSystem {
+ readProperty(id: string): AndroidProperty
+ saveProperty(androidProperty: AndroidProperty): void
+ poke(): void
+ getCoreService(): AndroidApp
}
hide AndroidSystem fields
AndroidSystem "-properties" -- "0..*" AndroidProperty
class AndroidProperty {
- content: string
- name: string
}
hide AndroidProperty methods
class KernelComponent {
+ addFunction(function: KernelFunction)
+ addCategory(category: KernelTraceCategory)
- tryPrepareFunctions(): bool
- tryPrepareCategory(category: KernelTraceCategory): bool
}
hide KernelComponent fields
KernelComponent ..> TraceComponent
KernelComponent "-functions" -- "0..*" KernelFunction
KernelComponent "-categories" -- "0..*" KernelTraceCategory
KernelComponent "-traceSystem" -- "1" KernelTraceSystem
class KernelTraceSystem {
- map<KernelTraceCategory, list<SwitchFile>>:
--
+ tryPrepareFunctions(functions: vector<KernelFunction>): bool
+ tryPrepareCategory(category: KernelTraceCategory): bool
+ tryReset(): bool
+ isSupportedCategory(category: KernelTraceCategory): bool
}
hide KernelTraceSystem fields
KernelTraceSystem "-kernelSystem" -- "1" KernelSystem
KernelTraceSystem -- "0..*" SwitchFile
KernelTraceSystem -- "1" ListFile
class KernelFunction {
- name: string
}
hide KernelFunction methods
class KernelTraceCategory {
- name: string
}
hide KernelTraceCategory methods
class KernelSystem {
+ tryReadListFile(path: string): ListFile
+ tryWriteListFile(file: ListFile): bool
+ tryEnableSwitchFile(file: SwitchFile): bool
+ tryDisableSwitchFile(file: SwitchFile): bool
+ canBeEnabled(file: SwitchFile): bool
}
hide KernelSystem fields
class SwitchFile {
- isRequired: bool
- path: string
}
hide SwitchFile methods
class ListFile {
- tokens: vector<string>
}
hide ListFile methods
' class SyncTraceSession {
' - duration: int
' - ignores_os_signals: bool
' }
' hide SyncTraceSession circleu
' hide SyncTraceSession methods
'
' SyncTraceSession --|> TraceSession
' SyncTraceSession "1" -- "1" StartTrace: does >
' SyncTraceSession "1" -- "1" StopTrace: does >
' SyncTraceSession "1" -- "1" DumpTraceBuffer: does >
'
' class StreamTraceSession {
' }
' hide StreamTraceSession circle
' hide StreamTraceSession fields
' hide StreamTraceSession methods
'
' StreamTraceSession --|> TraceSession
' StreamTraceSession "1" -- "1" StartTrace: does >
' StreamTraceSession "1" -- "1" StopTrace: does >
' StreamTraceSession "1" -- "1" StreamTrace: does >
@enduml | false | true | false | false | class |
703cc187c2cc1f1001a49b3e0f56d3febed4f9d2 | 555d982a6ffa796e7b3ad1dac1ea647d104e9e3d | /img/CAP.puml | ea0cebb8baaceed5c2dbd0d3107fb205177aaf82 | [] | no_license | VladimirAlexiev/multisensor | 218e99e8a1701be714dc0945e1aa3e7bcbbdb04d | e6359e80fdd1644b6f7093487f74af1df96bcccd | refs/heads/master | 2021-07-16T05:36:54.662918 | 2016-11-02T11:33:29 | 2016-11-02T11:33:29 | 67,613,414 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,818 | puml | @startuml
hide empty methods
hide empty attributes
hide circle
skinparam classAttributeIconSize 0
class _http___data_multisensorproject_eu_CAP_123_ as "<http://data.multisensorproject.eu/CAP/123>"
_http___data_multisensorproject_eu_CAP_123_ : a oa:Annotation
class ms_content_e9c304 as "ms-content:e9c304"
_http___data_multisensorproject_eu_CAP_123_ -up-> ms_content_e9c304 : oa:hasBody
class ms_linking_similar as "ms:linking-similar"
_http___data_multisensorproject_eu_CAP_123_ --> ms_linking_similar : oa:motivatedBy
class _http___data_multisensorproject_eu_agent_CAP_ as "<http://data.multisensorproject.eu/agent/CAP>"
_http___data_multisensorproject_eu_CAP_123_ --> _http___data_multisensorproject_eu_agent_CAP_ : oa:annotatedBy
class ms_content_611047 as "ms-content:611047"
_http___data_multisensorproject_eu_CAP_123_ -up-> ms_content_611047 : oa:hasBody
_http___data_multisensorproject_eu_CAP_123_ : ms:score 1.645
_http___data_multisensorproject_eu_CAP_123_ : oa:annotatedAt "2016-01-11T12:00:00"^^xsd:dateTime
class _http___data_multisensorproject_eu_CAP_124_ as "<http://data.multisensorproject.eu/CAP/124>"
_http___data_multisensorproject_eu_CAP_124_ : a oa:Annotation
_http___data_multisensorproject_eu_CAP_124_ -up-> ms_content_e9c304 : oa:hasBody
class ms_linking_contradictory as "ms:linking-contradictory"
_http___data_multisensorproject_eu_CAP_124_ --> ms_linking_contradictory : oa:motivatedBy
class ms_content_f5c719 as "ms-content:f5c719"
_http___data_multisensorproject_eu_CAP_124_ -up-> ms_content_f5c719 : oa:hasBody
_http___data_multisensorproject_eu_CAP_124_ --> _http___data_multisensorproject_eu_agent_CAP_ : oa:annotatedBy
_http___data_multisensorproject_eu_CAP_124_ : ms:score 1.987
_http___data_multisensorproject_eu_CAP_124_ : oa:annotatedAt "2016-01-12T12:00:00"^^xsd:dateTime
@enduml
| false | true | false | false | sequence |
725ae61a3125ea86915d13e02961b0270ff48f32 | 564af30302f37b368d053430e42c4b27dca1ab8c | /graphic/plantuml/mice_search_list甬道图.puml | 1c11048f723d36ba99eee7b7946f3aa76af0b858 | [
"Apache-2.0"
] | permissive | kris-zhang/resources | cca14b8e92a8985bb4af2c7d09503917970f1de6 | 8493b99f682b6650d1513c5babdc4dcf0ca1d31b | refs/heads/master | 2020-12-25T14:38:01.406766 | 2016-09-19T02:31:13 | 2016-09-19T02:31:13 | 65,270,627 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,118 | puml | @startuml
participant user
user -> list_http_provider : request
activate list_http_provider
list_http_provider -> list_http_provider: adapt()
list_http_provider -> list_core : search()
activate list_core
list_core -> list_engine: searchInEngine()
activate list_engine
list_engine -> list_engine: dubboSearch()
list_engine -> list_engine: adapt()
list_engine -> list_core: EngineSearchResults
deactivate list_engine
list_core -> list_data: retrieve()
activate list_data
list_data -> list_data:cache.get()
list_data->list_core: data
deactivate list_data
list_core -> list_filter: filterChain.filter()
activate list_filter
list_filter -> list_filter: filter()
list_filter -> list_core: data
deactivate list_filter
list_core -> list_rank: rank()
activate list_rank
list_rank -> list_rank: dispatch()
list_rank -> list_rank: rank()
list_rank -> list_rank: merge()
list_rank -> list_core: rankResults
deactivate list_rank
list_core -> list_http_provider
deactivate list_core
list_http_provider -> list_http_provider: convert()
list_http_provider -> user: response
deactivate list_http_provider
@enduml | false | true | false | false | sequence |
bb5a3ee5d5a345365739c1d9bf94ea09a8f3cfd0 | 76cd9c5a65bcc30dfb913e149a76bec870952e91 | /uml/Factory.puml | 6cfa983f9d4b52ef946c96f4f529bea4ee34c932 | [] | no_license | GPS-A-D-2105/API-PERSISTENCIA | fe16df84af6deb3cc24c7f3118dcf6b1589798a2 | 7a941becbb0b5ee142d3c48fd397b605d4632e7b | refs/heads/master | 2021-01-10T17:33:21.427307 | 2015-12-08T07:23:58 | 2015-12-08T07:23:58 | 44,888,139 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 877 | puml | @startuml
class AbstractFactory{
-AbstractFactory()
+{static}getDAOFactory() : DAOFactory
}
interface DAOFactory{
+{abstract} getCarreraDAO(): CarreraDAO;
+{abstract} getComentarioDAO(): ComentarioDAO;
+{abstract} getMateriaDAO(): MateriaDAO;
+{abstract} getMaestroDAO(): MaestroDAO;
}
class DAOJPAFactory {
-carreraDAO : CarreraDAO
-comentarioDAO : ComentarioDAO
-maestroDAO : MaestroDAO
-materiaDAO : MateriaDAO
-DAOJPAFactory()
+{static}getInstance() : DAOFactory
+getCarreraDAO(): CarreraDAO;
+getComentarioDAO(): ComentarioDAO;
+getMateriaDAO(): MateriaDAO;
+getMaestroDAO(): MaestroDAO;
}
AbstractFactory o-- DAOFactory
AbstractFactory o-- DAOJPAFactory
DAOFactory <|-left- DAOJPAFactory
@enduml | false | true | false | false | class |
629a72640692d803f0d8f5d4659de8fc55fc4d83 | f3c4e21c6ac4861eea79be1159f2baa918e0a74e | /src/main/java/ex42/ex42.puml | 6dd04d7a96e4b800deb7bc371a39087179c2aaad | [] | no_license | Mdoyon22/Doyon-cop3330-assignment3 | 4c829b3b195ed502c015ec0bc91a4d15ea680461 | 9046b0c4c9132e595e4bd201a1e59fb555c3854f | refs/heads/master | 2023-08-23T17:59:01.045805 | 2021-10-08T23:59:22 | 2021-10-08T23:59:22 | 413,576,821 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 447 | puml | /*
* UCF COP3330 Fall 2021 Assignment 3 Solution
* Copyright 2021 Michael Doyon
*/
@startuml
'https://plantuml.com/class-diagram
class App
class CSVParser
class TableBuild
App o-- CSVParser
App o-- TableBuild
class CSVParser
{
String path
parsed()
}
class TableBuild
{
List<Map<String, String>> in
String output
build()
getRow()
}
class App
{
String path
CSVParser input
TableBuild output
}
@enduml | false | true | false | false | class |
756cdafaad10c2e10f9835e672dec4b050d896fc | 7769eb2af329185d4ff3d48555d657dde2143657 | /some_assignment-master/classDiagram.puml | 9a7f65b7d55afca3fb58f1d1704d5a872e10ad3b | [] | no_license | AliHeena/JavaProjectX | 287a07d43a6a5f52561fe3fc72551299deabbd9b | aac47d67c529c076066b051db37e922c62c22976 | refs/heads/master | 2020-03-30T13:15:58.588177 | 2018-10-02T14:17:34 | 2018-10-02T14:17:34 | 151,266,207 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 498 | puml | @startuml
class Customer{
- String name
- String address
}
class Account{
- Double balance
}
class Stock{
- String name
- Double unitPrice
}
class InvestmentAccount{
+ buyStock(Stock stock,Integer qty)
}
class SavingsAccount{
- Double interrestRate
}
class StockOrder{
- Integer quantity
- Double ticker
}
InvestmentAccount --|> Account
SavingsAccount --|> Account
Stock "1" --o "*" StockOrder
InvestmentAccount "1" --o "*" StockOrder
Customer "1" --* "*" Account
@enduml | false | true | false | false | class |
e7373bf11eeba0d803ab900628832388db93d3a9 | f3e5470b71219337445bca0f5e5c1ffa32da3af8 | /Documentation/plantuml/Managers/GameManager.puml | fa55baba040162ae9315f2650b09dce76628dcc6 | [
"MIT"
] | permissive | Jaren-Taylor/Smart-City-Dashboard | 65116d7afd09bdc9d5ff33e05213a83bc73b52cb | 7d947637bc1c0b0d4a7a2b781c405518481dc319 | refs/heads/main | 2023-04-14T06:55:40.565340 | 2021-04-26T19:55:52 | 2021-04-26T19:55:52 | 327,404,880 | 0 | 0 | null | 2021-04-19T02:11:24 | 2021-01-06T19:02:38 | C# | UTF-8 | PlantUML | false | false | 314 | puml | @startuml
class GameManager {
Start() : void
+ HandleLog(numer:int) : void
Update() : void
}
MonoBehaviour <|-- GameManager
GameManager --> "inputManager" InputManager
GameManager --> "cameraManager" CameraManager
GameManager --> "gridManager" GridManager
GameManager --> "uiManager" UIManager
@enduml
| false | true | false | false | class |
c7f9b7f1c603a5316f204bbe750028873b2819c3 | 470e1b0ad73919748e95a891489eef87dad1ad68 | /docs/diagrama_secuencias_apuestas.puml | 80b4ca51e28441ce625a52387a29001e49d256ad | [] | no_license | JulianNavarrete/Bookmaker-DS | a1a1ab5cce1807732437fe8a268b555f5a5b829d | 11037b4691538fb5d316800f3492b646f52fdd1b | refs/heads/main | 2023-08-18T00:37:25.744277 | 2021-09-23T23:11:05 | 2021-09-23T23:11:05 | 395,785,676 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,036 | puml | @startuml
actor Cliente
boundary ApuestaResource
participant PartidoSchema
participant ApuestaSchema
participant PartidoModel
participant ApuestaModel
database data
Cliente -> ApuestaResource: GET all
activate ApuestaResource
ApuestaResource -> PartidoModel: get all partidos finalizados
activate PartidoModel
PartidoModel -> data: select all
PartidoModel <- data: registros partidos finalizados
PartidoSchema <- PartidoModel: dump many=True
deactivate PartidoModel
activate PartidoSchema
PartidoSchema -> ApuestaResource: collection Json
deactivate PartidoSchema
Cliente <- ApuestaResource: Json
deactivate ApuestaResource
Cliente -> ApuestaResource: POST
activate ApuestaResource
ApuestaResource -> ApuestaModel: guardar apuesta
activate ApuestaModel
ApuestaModel -> data: Insert
ApuestaModel <- data: Object
ApuestaSchema <- ApuestaModel: Dump Object
deactivate ApuestaModel
activate ApuestaSchema
ApuestaSchema -> ApuestaResource: Json
deactivate ApuestaSchema
Cliente -> ApuestaResource: Json
deactivate ApuestaResource
@enduml | false | true | false | false | sequence |
14a8a970197867d60d69718317f4e5fffb11d2dd | 1e992cebb323e6f1bbddd1e23b6214f8806b7834 | /sip/CallForking/call_forking_design_overview.puml | 46456849536713b90ec492a14a29e8e219901872 | [] | no_license | gongpengjun/code_diagrams | 006c66441ae26331d19a408912af01c84e1bd5f4 | 686a830f47e407ddc58e7f8003331ee4fca5975c | refs/heads/master | 2021-06-26T00:52:25.079556 | 2020-10-27T13:45:34 | 2020-10-27T13:45:34 | 166,416,838 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,957 | puml | @startuml
title call forking: SIP end-to-end message flow
skinparam monochrome true
autonumber "F00 "
hide footbox
'skinparam BoxPadding 40
skinparam headerFontSize 14
header SIP-Forking-Design-Overview
'box "caller"
participant "UAC" as Caller_UAC <<caller>>
'end box
'box "proxy"
participant "Proxy" as Proxy <<server>>
'end box
'box "callee"
participant "UAS 1" as Callee_UAS_1 <<callee>>
participant "UAS 2" as Callee_UAS_2 <<callee>>
participant "UAS 3" as Callee_UAS_3 <<callee>>
'end box
Caller_UAC -> Proxy: INVITE
Caller_UAC <- Proxy: 100
Proxy -> Callee_UAS_1: INVITE (to_tag:1)
Proxy <- Callee_UAS_1: 180 (to_tag:1)
Caller_UAC <- Proxy: 180 (to_tag:1)
Proxy -> Callee_UAS_2: INVITE (to_tag:2)
Proxy <- Callee_UAS_2: 180 (to_tag:2)
Caller_UAC <- Proxy: 180 (to_tag:2)
Proxy -> Callee_UAS_3: INVITE (to_tag:3)
Proxy <- Callee_UAS_3: 180 (to_tag:3)
Caller_UAC <- Proxy: 180 (to_tag:3)
note right of Caller_UAC: ignore to_tag in 1xx response
== wait for HUMAN input: callee user response of `UAS 1` arrive first ==
Proxy <- Callee_UAS_1: 200-699 (to_tag:1)
Proxy <- Callee_UAS_2: 200-699 (to_tag:2)
note right of Proxy: 200-699 of UAS 1 arrive first, responses of other UAS are ignored
Caller_UAC <- Proxy: 200-699 (to_tag:1)
Caller_UAC -> Proxy: ACK (to_tag:1)
Proxy -> Callee_UAS_1: ACK (to_tag:1)
note right of Proxy: cancel other INVITE transactions
|||
Proxy -> Callee_UAS_2: CANCEL (to_tag:2)
note right of Proxy: `UAS 2` has already sent final response 200-699
Proxy <- Callee_UAS_2: 481 (Transaction Does Not Exist) (to_tag:2)
note right of Proxy: send BYE to kick UAS 2 off
Proxy -> Callee_UAS_2: BYE (to_tag:2)
Proxy <- Callee_UAS_2: 200 (BYE) (to_tag:2)
|||
Proxy -> Callee_UAS_3: CANCEL (to_tag:3)
Proxy <- Callee_UAS_3: 200 (CANCEL) (to_tag:3)
Proxy <- Callee_UAS_3: 487 (INVITE) (to_tag:3)
Proxy -> Callee_UAS_3: ACK (487) (to_tag:3)
skinparam footerFontSize 14
footer https://tools.ietf.org/html/rfc3261#page-55
@enduml
| false | true | false | false | sequence |
2dfdeb44a81843ed6d5de28e8962f49924443cb4 | e7b7df0cf36cf83e9c440c3a81f4f85193e37a72 | /7 State Diagram/8b Note.puml | 9e6aa4ac1ec1bbc1167ff5846ad421d28c15f9ce | [
"MIT"
] | permissive | jys129/PlantUML | 38dd154cc9a45d3206abf26f95bfb45e32d4c186 | f0e62bf90332a1a541ded76d2101ebdd9215adaa | refs/heads/master | 2023-03-16T15:54:12.053012 | 2020-10-18T15:49:08 | 2020-10-18T15:49:08 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 67 | puml | @startuml
state foo
note "This is a floating note" as N1
@enduml
| false | true | false | false | state |
931caa075e462e9c5fc28c0b797a02970be9afd0 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ShippingInfo.puml | ad849445a6929b99e8a36594355558ec547f2306 | [] | 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 | 10,133 | 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 ShippingInfo [[ShippingInfo.svg]] {
shippingMethodName: String
price: [[CentPrecisionMoney.svg CentPrecisionMoney]]
shippingRate: [[ShippingRate.svg ShippingRate]]
taxedPrice: [[TaxedItemPrice.svg TaxedItemPrice]]
taxRate: [[TaxRate.svg TaxRate]]
taxCategory: [[TaxCategoryReference.svg TaxCategoryReference]]
shippingMethod: [[ShippingMethodReference.svg ShippingMethodReference]]
deliveries: [[Delivery.svg List<Delivery>]]
discountedPrice: [[DiscountedLineItemPrice.svg DiscountedLineItemPrice]]
shippingMethodState: [[ShippingMethodState.svg ShippingMethodState]]
}
interface Cart [[Cart.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
anonymousId: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalLineItemQuantity: Long
totalPrice: [[CentPrecisionMoney.svg CentPrecisionMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
cartState: [[CartState.svg CartState]]
billingAddress: [[Address.svg Address]]
shippingAddress: [[Address.svg Address]]
shippingMode: [[ShippingMode.svg ShippingMode]]
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
shipping: [[Shipping.svg List<Shipping>]]
itemShippingAddresses: [[Address.svg List<Address>]]
discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
custom: [[CustomFields.svg CustomFields]]
deleteDaysAfterLastModification: Integer
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface Shipping [[Shipping.svg]] {
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingAddress: [[Address.svg Address]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
}
interface OrderShippingInfoSetMessage [[OrderShippingInfoSetMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
oldShippingInfo: [[ShippingInfo.svg ShippingInfo]]
}
interface OrderShippingInfoSetMessagePayload [[OrderShippingInfoSetMessagePayload.svg]] {
type: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
oldShippingInfo: [[ShippingInfo.svg ShippingInfo]]
}
interface Order [[Order.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
orderNumber: String
purchaseOrderNumber: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
anonymousId: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[Address.svg Address]]
shippingAddress: [[Address.svg Address]]
shippingMode: [[ShippingMode.svg ShippingMode]]
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
shipping: [[Shipping.svg List<Shipping>]]
itemShippingAddresses: [[Address.svg List<Address>]]
discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
cart: [[CartReference.svg CartReference]]
quote: [[QuoteReference.svg QuoteReference]]
orderState: [[OrderState.svg OrderState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
paymentState: [[PaymentState.svg PaymentState]]
state: [[StateReference.svg StateReference]]
syncInfo: [[SyncInfo.svg List<SyncInfo>]]
returnInfo: [[ReturnInfo.svg List<ReturnInfo>]]
lastMessageSequenceNumber: Long
custom: [[CustomFields.svg CustomFields]]
completedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface QuoteRequest [[QuoteRequest.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
quoteRequestState: [[QuoteRequestState.svg QuoteRequestState]]
comment: String
customer: [[CustomerReference.svg CustomerReference]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
shippingAddress: [[Address.svg Address]]
billingAddress: [[Address.svg Address]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
country: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
itemShippingAddresses: [[Address.svg List<Address>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
custom: [[CustomFields.svg CustomFields]]
state: [[StateReference.svg StateReference]]
purchaseOrderNumber: String
cart: [[CartReference.svg CartReference]]
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface Quote [[Quote.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
quoteRequest: [[QuoteRequestReference.svg QuoteRequestReference]]
stagedQuote: [[StagedQuoteReference.svg StagedQuoteReference]]
customer: [[CustomerReference.svg CustomerReference]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
validTo: DateTime
sellerComment: String
buyerComment: String
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
shippingAddress: [[Address.svg Address]]
billingAddress: [[Address.svg Address]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
country: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
itemShippingAddresses: [[Address.svg List<Address>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
custom: [[CustomFields.svg CustomFields]]
quoteState: [[QuoteState.svg QuoteState]]
state: [[StateReference.svg StateReference]]
purchaseOrderNumber: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
ShippingInfo --> Cart #green;text:green : "shippingInfo"
ShippingInfo --> Shipping #green;text:green : "shippingInfo"
ShippingInfo --> OrderShippingInfoSetMessage #green;text:green : "shippingInfo"
ShippingInfo --> OrderShippingInfoSetMessage #green;text:green : "oldShippingInfo"
ShippingInfo --> OrderShippingInfoSetMessagePayload #green;text:green : "shippingInfo"
ShippingInfo --> OrderShippingInfoSetMessagePayload #green;text:green : "oldShippingInfo"
ShippingInfo --> Order #green;text:green : "shippingInfo"
ShippingInfo --> QuoteRequest #green;text:green : "shippingInfo"
ShippingInfo --> Quote #green;text:green : "shippingInfo"
@enduml
| false | true | false | false | sequence |
12dd55b1492d6df226ece7a7102a8379c0215053 | e5a08cb9be84408f6eef11216c7478bd2693fcae | /documentation/usecasediagrams/LoadingPreviousStateData.plantuml | 0ce2438c9d809d8d819ea5839511b9ce7bcd78ed | [] | no_license | JamesKang26/ColdCallSystem | bfc938664663af4524b9dd0eb323b062d6b4a575 | 39035c823b2c6d86cf0c1d2b858f690d7c970026 | refs/heads/master | 2021-05-23T17:18:13.790728 | 2020-04-06T04:59:00 | 2020-04-06T04:59:00 | 253,398,079 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 847 | plantuml | @startuml
actor User as User
participant ":Instructor Interface" as InstructorUI
participant ":Cold Call Class List" as List
participant ":Cold Call Queue" as Queue
participant ":Cold Call Class" as Class
participant ":State Persistence" as StatePersistence
participant ":Student" as Student
autoactivate on
== Previous state loading ==
User -> InstructorUI : loads program
InstructorUI -> List : loadClasses()
loop foreach class
List -> Class : loadState()
Class -> StatePersistence : loadState()
StatePersistence -> Student : load Student data
Student --> StatePersistence
StatePersistence --> Class : load saved class data
Class -> Queue : loadQueue()
Queue --> Class
Class --> List : data for this class loaded
end
List --> InstructorUI : data for all classes loaded
InstructorUI --> User : all previous data loaded
@enduml
| false | true | false | false | sequence |
ecf7ead8e8324ee85cbc06b8dd99b4eb23c40da9 | 23eebc652cc34d63a61ab645cccb3e0d12192028 | /documentation/logicalview/analysisview/repository/classanalysis/puml/controllers/OpenDashboardController.puml | ddf321da148835d727d0307c014e01d90d23c12f | [] | no_license | Ruskab/agrimManager | 0e654c5bfc7bb6241f7a8cf4c49e58af55155886 | e264536edc42ad8def85e3714a7b1c15236d7de5 | refs/heads/develop | 2023-09-01T02:36:44.943558 | 2021-08-14T20:15:43 | 2021-08-14T20:15:43 | 166,677,735 | 1 | 2 | null | 2023-09-02T13:25:24 | 2019-01-20T15:37:25 | Java | UTF-8 | PlantUML | false | false | 251 | puml | @startuml
class OpenDashboardController {
+searchVehicle(vehicleId)
+searchActiveInterventions(mechanicId)
}
DashboardView --> OpenDashboardController
OpenDashboardController --> VehiclesDao
OpenDashboardController --> InterventionsDao
@enduml | false | true | false | false | class |
3b741ed4311373ca1a48c17763da6f0762e4920a | 9b5618e782af7c99877b0387c5fc2f426250bf39 | /docs/diagrams/docker-compose/docker-compose-components.puml | e6ae420d190deacdc6593de11d3bdb0f519fa418 | [
"Apache-2.0"
] | permissive | ciprianchelaru/acs-deployment | 429fb6833994cc4fa8692c29f9f33639b07fe21d | d6a5851fc1f4b4c759d6467ebfbd688f161f5b7e | refs/heads/master | 2020-07-21T08:20:04.076919 | 2019-09-07T12:35:24 | 2019-09-07T12:35:24 | 206,794,782 | 0 | 0 | Apache-2.0 | 2019-09-06T13:00:49 | 2019-09-06T13:00:49 | null | UTF-8 | PlantUML | false | false | 1,416 | puml | @startuml
Title: Docker Compose Deployment Overview
skinparam componentStyle uml2
skinparam linetype ortho
skinparam rectangle {
BorderStyle dashed
FontSize 15
FontStyle none
}
actor Client
node "Docker Compose" {
component "NGINX proxy" as proxy #lightgrey
component "Alfresco Digital Workspace" as adw #lightgrey
component "Alfresco Content Services" as acs #lightgrey
component "Alfresco Search Services" as ass #lightgrey
component "PostgreSQL" as psql #lightgrey
component "Alfresco Share" as share #lightgrey
rectangle "Alfresco Transform Service" {
component "Transform Router" as tr #lightgrey
component "Shared File Store" as sfs #lightgrey
component "ActiveMQ" as amq #lightgrey
component "Alfresco PDF Renderer" as pdfr #lightgrey
component "LibreOffice" as libr #lightgrey
component "ImageMagick" as img #lightgrey
component "Tika" as tika #lightgrey
component "Misc" as misc #lightgrey
}
}
Client --> proxy
proxy --> acs
proxy --> share
proxy --> adw
acs <-left-> ass
acs --> psql
acs --> pdfr
acs --> libr
acs --> img
acs --> tika
acs --> misc
acs --> sfs
acs <-left-> amq
tr --> pdfr
tr --> libr
tr --> img
tr --> tika
tr --> misc
tr <-left-> amq
pdfr --> sfs
libr --> sfs
img --> sfs
tika --> sfs
misc --> sfs
share --> acs
center footer Copyright 2019 Alfresco Software Inc
@enduml
| false | true | false | false | sequence |
d35054b97a4f42827144e9f9425c86a14b6e2d45 | 732f2d95f6e75608031ae8858bd61acd53da111d | /src/main/java/ex44/ex44 Class Diagram.puml | 232af7a71ce9f075044eee0644b79581c9790166 | [] | no_license | victoru1/urena-cop3330-assignment3 | 5a5bde2c5ffb6f75a81f8dc6ee941a884bf8e1b8 | a066d4f2b6e6a58cafd105902c51e0e073045e77 | refs/heads/master | 2023-08-22T13:34:16.639505 | 2021-10-12T00:22:36 | 2021-10-12T00:22:36 | 416,078,826 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 754 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Product_Search {
+{static} output: Scanner
+ main(arg: String[]): void
+ productArrayMaker(input: File) : List<Products>
+ getProductName(): String
+ productFinder(products: List<Products> , searchKey: String) : boolean
+ printProductInfo(products: List<Products> , searchKey: String, productExists boolean): void
}
class Products{
name: String;
price: Double;
quantity: Integer;
+Products(name: String, price: Double, quantity: Integer) : void
+toString() : String
+setName(name: String) : void
+setPrice(price: Double) : void
+setQuantity(quantity: Integer): void
+getName(): String
+getPrice(): Double
+getQuantity(): Integer
}
Products <..Product_Search : uses
@enduml | false | true | false | false | class |
3720ebeab4bd1f011e673e0538f127edbbb7e84f | e5c74a82a82e832f5c79b3698519f1da5eba2caa | /docs/code.puml | cef1faef8befe082e5d30d808df634edaa06953c | [
"Apache-2.0"
] | permissive | cocasema/micro-ROS-doc | d835403ddc53ec5785c1336fe7831058f4853e1c | d06fa2aac3d2baf795d64384c14af013b031487d | refs/heads/master | 2020-04-17T16:58:36.357117 | 2019-01-21T07:05:09 | 2019-01-21T07:09:05 | 166,764,491 | 0 | 0 | Apache-2.0 | 2019-01-21T07:03:30 | 2019-01-21T07:03:29 | null | UTF-8 | PlantUML | false | false | 657 | puml | @startuml
Class rmw_node_t
{
const char* implementation_identifier
void* data
const char* name
const char* namespace_
}
Class rmw_publisher_t
{
const char* implementation_identifier
void* data
const char* topic_name
}
Class rosidl_message_type_support_t
{
const char* typesupport_identifier
void* data
const rosidl_message_type_support_t * (* func)(const rosidl_message_type_support_t *, const char *);
}
Class MicroNode
{
udp
session
participant_id
publisher_id[max_publishers]
datawriter_id[max_datawriters]
}
rmw_node_t *-- MicroNode
rmw_publisher_t *-- rosidl_message_type_support_t
@enduml
| false | true | false | false | class |
0322e51e66e8f24de734d90063098e962c8ab253 | c8e5514bd3ea44e6613f469e88bc0562ba16ae62 | /src/site/sphinx/formatting/puml/colors/LawnGreen.puml | c4cd291f8f45bc032d72adbd1191a1ad4e26394d | [] | 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 | 316 | puml | @startuml
skinparam ClassBackgroundColor #LawnGreen
skinparam ClassFontColor #LawnGreen
skinparam ClassBorderColor #LawnGreen
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml | false | true | false | false | class |
a1ed0ce91bd4d27c6f9d3c7a9d89e9c5bc767ee6 | 1c62e6ad04d679c073059c3c25cb9be592d73791 | /plantuml/structural/decorator.puml | 37ab6da8e57c3be4023cb553b602e4d49ee9c3ef | [
"Unlicense"
] | permissive | skr-mams/java-design-patterns | d6c507b2cbd9a4724f3045fb998f329eebd729ca | 5bea71a0a52160fc7f4348dc596c46c0b407c7f1 | refs/heads/main | 2023-08-22T12:35:33.091377 | 2021-09-20T21:47:10 | 2021-09-20T21:47:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 847 | puml | @startuml
interface DataSource {
void writeData(String data)
String readData()
}
note "Interfaz pricipal para las \nclases concretas y decoradoras" as main
DataSource .r. main
class ConsoleDataSource implements DataSource {
void writeData(String data)
String readData()
}
note "Clase concreta" as concrete
ConsoleDataSource .l. concrete
class DataSourceDecorator implements DataSource {
DataSourceDecorator(DataSource source)
void writeData(String data)
String readData()
}
note "Clase base decoradora" as base
DataSourceDecorator .r. base
DataSourceDecorator *--> DataSource
class EncryptionDecorator extends DataSourceDecorator {
EncryptionDecorator(DataSource source)
void writeData(String data)
String readData()
}
note "Clase decoradora" as decorator
EncryptionDecorator .r. decorator
@enduml
| false | true | false | false | class |
ee34ff2d068ea3ad34cbe7725ae09d456bae1d8d | 015af2febe164b9667ae91319080ed064c132b0e | /kms/auth-service/src/main/java/com/uwaterloo/iqc/authservice/authservice.plantuml | 356bcb8b8e2afc38872149eec15c66b7793665f2 | [
"MIT"
] | permissive | crazoter/qkd-net | fb247b3a122821451a64ea587619926d9571444c | 182860ec031bf066fd3a9fa60d6d3629b4d37899 | refs/heads/master | 2022-08-25T23:32:53.109504 | 2020-05-20T02:25:20 | 2020-05-20T02:25:20 | 263,811,400 | 1 | 0 | null | 2020-05-14T04:05:04 | 2020-05-14T04:05:04 | null | UTF-8 | PlantUML | false | false | 1,216 | plantuml | @startuml
title __AUTHSERVICE's Class Diagram__\n
namespace com.uwaterloo.iqc.authservice {
class com.uwaterloo.iqc.authservice.AuthServiceApplication {
{static} - logger : Logger
{static} + main()
}
}
namespace com.uwaterloo.iqc.authservice {
class com.uwaterloo.iqc.authservice.AuthorizationServerConfiguration {
- authenticationManager : AuthenticationManager
- clientDetailsService : ClientDetailsService
+ AuthorizationServerConfiguration()
+ configure()
+ configure()
}
}
namespace com.uwaterloo.iqc.authservice {
class com.uwaterloo.iqc.authservice.DataCLR {
- accountRepository : AccountRepository
- clientRepository : ClientRepository
+ DataCLR()
+ run()
}
}
namespace com.uwaterloo.iqc.authservice {
class com.uwaterloo.iqc.authservice.PrincipalRestController {
~ principal()
}
}
com.uwaterloo.iqc.authservice.DataCLR .up.|> CommandLineRunner
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 |
c727286e4275be3bd8bcd9c2d13f0c26994af13c | 3cbfce031108381b619fa77bd397dfa8af1fcce5 | /src/docs/diagrams/Field.puml | 4881eb294b4dc074c4cfb66f01697023391cb9d1 | [
"Apache-2.0"
] | permissive | HewlettPackard/phased-table-translation | b4f9147d993a63607bce930f29ad9be44e7c1c9e | f2caf5213a0f69df3417aa61165fe04f1132d1bf | refs/heads/master | 2023-08-09T09:19:10.435972 | 2021-05-20T10:07:37 | 2021-05-20T10:07:37 | 187,846,913 | 1 | 2 | Apache-2.0 | 2020-03-10T18:24:38 | 2019-05-21T13:50:04 | Groovy | UTF-8 | PlantUML | false | false | 307 | puml | @startuml
class Field {
boolean mandatory
OriginalFieldType getter(OriginalObjectType inputAlarm)
OriginalFieldType defaulter()
boolean validator(OriginalFieldType inputValue)
ResultFieldType translator(OriginalFieldType inputValue)
void setter(ResultFieldType resultValue)
}
@enduml | false | true | false | false | class |
e9673ddc68f2499d7cf0106405338572fa45535c | dee4f196a2ee74333eb972c57e198d7f41a1706d | /docs/Object Diagram.puml | 2493ece3f647a50c73fff208c32763cd62252556 | [] | no_license | shayco37/Minesweeper | 5c19dec9656d7bdf2238fa8c263129fe81a3a3c7 | a7338ad4e82b642c0af0efbf3f4ef7f262ec8bc6 | refs/heads/master | 2023-01-22T13:46:59.824843 | 2020-08-17T12:54:47 | 2020-08-17T12:54:47 | 90,446,783 | 0 | 0 | null | 2023-01-05T19:34:16 | 2017-05-06T07:53:20 | JavaScript | UTF-8 | PlantUML | false | false | 170 | puml | @startuml
package "Minesweeper" {
HTTP - [First Component]
[Another Component]
}
package "Other Groups" {
FTP - [Second Component]
[First Component] --> FTP
}
@enduml | false | true | false | false | uml-unknown |
00a496e9e696c53b23b2ee20c5a4cdbe5f993b32 | d467bc3942a140514d205e1cb6f737047010297f | /docs/diagrams/DeleteSelectedContact.puml | c0042f170b93f86c327c01fddc87e2b57eeeeaa2 | [] | no_license | AY2122S1-CS2113T-T09-1/tp | 4d53c1fcce2bca1ed6e6e4f100888592286e2682 | 18192ba3e93eec827a28f7d9914b7d2bf1699f3a | refs/heads/master | 2023-08-28T11:36:52.464703 | 2021-11-08T11:51:02 | 2021-11-08T11:51:02 | 410,194,669 | 1 | 0 | null | 2021-11-08T11:51:03 | 2021-09-25T06:25:28 | Java | UTF-8 | PlantUML | false | false | 2,079 | puml | @startuml
hide footbox
mainframe sd delete selected contact
-> ":DeleteContactCommand":deleteSelectedContact()
activate ":DeleteContactCommand"
'obtain contact to be deleted using index
":DeleteContactCommand" -> ":IndexParser": getContactAtIndex(contactIndex: int, contactList: ContactList)
activate ":IndexParser"
":IndexParser" --> ":DeleteContactCommand": deletedContact:Contact
deactivate ":IndexParser"
'confirm delete message
":DeleteContactCommand" -> ":TextUi" :confirmDeleteContactMessage(deletedContact: Contact, contactIndex: int)
activate ":TextUi"
":TextUi" --> ":DeleteContactCommand"
deactivate ":TextUi"
'get confirmation from user to delete
":DeleteContactCommand" -> ":UserInputTextUi":getUserConfirmation()
activate ":UserInputTextUi"
":UserInputTextUi" --> ":DeleteContactCommand" :userConfirmation:String
deactivate ":UserInputTextUi"
alt#gold #lightgreen delete confirmed
'execute delete for selected contact
":DeleteContactCommand" -> ":ContactList":deleteContact(contactIndex: int)
activate ":ContactList"
":ContactList" --> ":DeleteContactCommand"
deactivate ":ContactList"
'get name of deleted contact
":DeleteContactCommand" -> ":Contact" :getName()
activate ":Contact"
":Contact" --> ":DeleteContactCommand":deletedName: String
deactivate ":Contact"
'get size of list for delete message
":DeleteContactCommand" -> ":ContactList": getListSize()
activate ":ContactList"
":ContactList" --> ":DeleteContactCommand": contactListSize: int
deactivate ":ContactList"
'Print message to show delete executed
":DeleteContactCommand" -> ":TextUi": deleteContactMessage(deletedName: String, contactListSize: int)
activate ":TextUi"
":TextUi" --> ":DeleteContactCommand"
deactivate ":TextUi"
else #lightblue delete cancelled
'Print message to show delete cancelled
":DeleteContactCommand" -> ":TextUi":cancelDeleteContactMessage()
activate ":TextUi"
":TextUi" --> ":DeleteContactCommand"
deactivate ":TextUi"
end
deactivate ":DeleteContactCommand"
@enduml | false | true | false | false | sequence |
5d154249722c4c1179c6be6d3eef10b312e8916c | 57fbc019b098405977ffe0e93551d48425ba78d0 | /smart-contracts/erc-721/erc-721-trade.plantuml | 2c63dfc2a3307a4b4675fdef889f380d7798561a | [] | no_license | 3rdstage/models | 40922c538ad3b56a555817d2258ee5f863002fca | 7d6d41020f53fb39eace3fa3987af63a56d0ace3 | refs/heads/master | 2023-07-19T08:53:40.724866 | 2023-01-09T09:00:46 | 2023-01-09T09:00:46 | 205,056,655 | 0 | 2 | null | 2021-11-04T06:22:06 | 2019-08-29T01:39:54 | D | UTF-8 | PlantUML | false | false | 2,623 | plantuml | @startuml
' Trading NFT
' https://plantuml.com/class-diagram
' https://plantuml.com/sequence-diagram
' https://plantuml-documentation.readthedocs.io/en/latest/formatting/all-skin-params.html
' https://plantuml-documentation.readthedocs.io/en/latest/formatting/all-skin-params.html#class
' https://www.w3schools.com/colors/colors_names.asp
skinparam {
'DefaultFontName Consolas
DefaultFontName Monaco
'DefaultFontName Lucida Console
'DefaultMonospacedFontName Consolas
'DefaultFontStyle bold
BackgroundColor transparent
PageMargin 10
BoxPadding 100
ParticipantPadding 20
ArrowFontSize 16
ArrowThickness 1
MinClassWidth 75
ClassFontStyle bold
NoteBackgroundColor SeaShell
NoteBorderColor transparent
NoteShadowing false
}
skinparam Sequence{
DividerBorderThickness 1.5
ReferenceBorderThickness 1.5
MessageAlignment right
ArrowColor DarkSlateGray
ArrowThickness 1.3
LifeLineBorderColor DarkSlateGray
LifeLineBorderThickness 1.3
ActorBorderColor DarkSlateGray
ActorBackgroundColor GhostWhite
ParticipantBorderColor DarkSlateGray
ParticipantBorderThickness 1.5
ParticipantBackgroundColor GhostWhite
BoxBackgroundColor transparent
BoxBorderColor transparent
GroupBorderThickness 1.3
GroupBorderColor DarkBlue
GroupBodyBackgroundColor Azure
}
skinparam Group{
BorderThickness 1.3
BorderShadowing true
}
hide Circle
hide Footbox
Actor "foo:Seller" as seller
Actor "bar:Buyer" as buyer
Participant "broker:Broker" as broker <<contract>>
Participant "ERC721/NFT" as erc721 <<contract>>
Participant "ERC20/FT" as erc20 <<contract>>
note over broker, erc20 : **High Trust with Low Cost**
|||
note over erc721 : delegate to smart contract (not human)
seller -> erc721 ++ : <color blue>**approve(broker,a:NFT)**</color>
seller ++
seller <<-- erc721 --
seller --
seller -> broker ++ : offer(a:NFT,price)
seller ++
broker -> erc721 ++ : <color blue>**ownerOf(a)**</color>
broker <<-- erc721 -- : return 'foo'
seller <<-- broker --
seller --
|||
|||
note over erc721 : delegate to smart contract (not human)
buyer -> erc20 ++ : <color blue>**approve(broker,price)**</color>
buyer ++
buyer <<-- erc20 --
buyer --
buyer -> broker ++ : buy(a:NFT,price)
buyer ++
note over erc721, erc20 : Tamper-proof, Unhackable, Never Comopromising
group atomic/secure
erc20 <- broker ++ : <color blue>**transferFrom(bar,foo,price)**</color>
erc20 -->> broker --
erc721 <- broker ++ : <color blue>**transferFrom(foo,bar,a:NFT)**</color>
erc721 -->> broker --
|||
end
|||
buyer <<-- broker --
buyer --
|||
@enduml
| false | true | false | false | usecase |
83c85f2fac14d9b5fa2f29581d7e6951c686cb26 | 78e54501868a570e9f665310e6f1cce83df66625 | /examples/phd_thesis/wpclassdiag.puml | c3b7025dcafd2d4f3c9719092f0ebb049ede7698 | [
"MIT"
] | permissive | li7300198125/wave-propagation | d26015836324cd06f679336cfb15cbb03b689293 | eff0eb1fc843e4d206b05731e40047e1d810d76f | refs/heads/master | 2022-12-18T14:54:51.035958 | 2020-08-23T20:02:31 | 2020-08-23T20:02:31 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,019 | puml | @startuml
left to right direction
Source <|- GaussAntenna
interface Material {
permittivity(frequency)
conductivity(frequency)
}
interface Source {
frequency
aperture(z_grid)
beam_pattern(angle)
}
class GaussAntenna {
height
beam_width
elevation_angle
}
class Troposphere {
M_profile(x, z)
Terrain terrain
Obstacle[] vegetation
Obstacle[] buildings
knife_edges
}
Troposphere *-- Terrain
Troposphere o- Obstacle
class Terrain {
height(x)
Material material(x)
}
class Obstacle {
shape
Material material
}
Obstacle *-- Material
Terrain o- Material
class Field {
}
class FieldVisualiser {
Field field
Troposphere troposphere
type {pure, pass_loss}
plot2d()
plot_vertical(x, *FieldVisualiser)
plot_horizontal(z, *FieldVisualiser)
}
abstract class TroposphericPropagator {
Source
Troposphere
Field calculate()
}
TroposphericPropagator *-- Source : input
TroposphericPropagator *-- Troposphere : input
TroposphericPropagator *-- Field : result
FieldVisualiser *-- Field
FieldVisualiser *-- Troposphere
@enduml | false | true | false | false | class |
5dd2a13680a1809e0659a2d85cbf542f52e43fbc | ec045d13fcf0af51bf45a464b2935eaa624a0257 | /src/main/java/ex45/ex45.puml | 77d8ac045ce5a2eb852ac7712598b3667829c8b6 | [] | no_license | CameronUCF/McDougal-cop3330-assignment3 | a1b7f69a2443286697e7b0822385ef3cea17e3ad | cf93c72814bf3fa86b2927bd3b3a84f73999cd89 | refs/heads/master | 2023-08-12T09:08:32.036622 | 2021-10-12T01:10:53 | 2021-10-12T01:10:53 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 108 | puml | @startuml
class App
{
void main(String[] args)
void WriteFile(String str, String fileName)
}
@enduml | false | true | false | false | class |
c39dd636e7ea45675e4d450a004980e5c30b773a | 8cf018eb6de40017601592f1f125ea67d5de7086 | /docs/Solution/Cloud-Stack/Common-Cloud-Core/Logical.puml | 48b3957d26ceb500ec13b549dbf396d03998418e | [] | no_license | CAADE/ADC | bec251477e457a9ee4eca673fdab04b65c4290f5 | a81ba7532e7092ab564bcb30f8ec36bab3b71d0b | refs/heads/master | 2021-06-23T22:20:00.239150 | 2019-04-03T05:15:20 | 2019-04-03T05:15:20 | 104,887,854 | 5 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 257 | puml | @startuml
package "Cloud-Stack/Common-Cloud-Core" {
interface "Cloud-Stack/Common-Cloud-Core" {
}
CLI ()-- "Cloud-Stack/Common-Cloud-Core"
REST ()-- "Cloud-Stack/Common-Cloud-Core"
Web ()-- "Cloud-Stack/Common-Cloud-Core"
}
@enduml
| false | true | false | false | class |
3e05cee99fcc07e6cce6fe3595b42bf3eacc3ae1 | 22c062df90adff61becb66216348f35b57920adb | /DesignPatern/src/Structural/diagrams/decorator.puml | 0f57732b6d486df7487ad4951d5011cd7a2b2d04 | [
"BSD-3-Clause"
] | permissive | zainmehdi/software_engineering | 0ca30f6daf526434fbec9ae0240da0685dc5977a | 9b655590d05246d6e859673161de05ecde788b14 | refs/heads/master | 2022-12-29T14:33:41.798904 | 2020-10-12T13:57:20 | 2020-10-12T13:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,455 | puml | @startuml
skinparam classAttributeIconSize 0
interface "<<Interface>>\n Car" as Car
{
# description:string
+{abstract} getDescription():string
+{abstract} getPrice():double;
}
class BaseModel
{
+ getPrice():double
}
note "return 35000" as BaseModelNote
BaseModelNote -left.. BaseModel
class OptionsDecorator
{
# m_car: Car*
+OptionsDecorator(Car *car)
+{abstract} getPrice():double;
+{abstract} getDescription():string;
}
class Navigation
{
getDescription():string
getPrice():double;
}
class SoundSystem
{
getDescription():string
getPrice():double;
}
class LeatherSeat
{
getDescription():string
getPrice():double;
}
class Client{}
OptionsDecorator -up..|> Car
OptionsDecorator o-- Car
SoundSystem -up..|> OptionsDecorator
LeatherSeat -up..|> OptionsDecorator
Navigation -up..|> OptionsDecorator
BaseModel -up..|> Car
Client --> Car
note "Car *base_model=new BaseModel();\nCar *base_model_sound_system=new SoundSystem(base_model);\nCar *base_model_sound_system_navigan=new Navigation(base_model_sound_system);\nbase_model_sound_system_navigan->getDescription();\nbase_model_sound_system_navigan->getPrice()" as ClientNote
ClientNote -left--Client
note "return m_car->getPrice()+ + 500;" as NavigationgetPrice
note "return m_car->getDescription()+ ' + Navigation';" as NavigationgetDescription
NavigationgetDescription -- Navigation::getDescription
NavigationgetPrice -- Navigation::getPrice
@enduml
| false | true | false | false | class |
6930aef1dd070e58508d99d9fcc83e82845e0a75 | 2f03a1e0fed30f50dedba0f77c95970080ec7152 | /src/main/java/ex42/ex42.puml | f30fc2dbeac2318f47d1b9218bd63a3266dd6c22 | [] | no_license | kaleah08/gonzalez-cop3330-assignment3 | 27d689ab1970a7aa191e41b0527be0203f416795 | bac781619bc99e3cf0ae4a0ee519f06a40a8d244 | refs/heads/master | 2023-08-18T08:57:24.887609 | 2021-10-12T03:51:01 | 2021-10-12T03:51:01 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 366 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class App
Data <|-- App
class App {
+void main(String[] args)
List people
List data
+List readFile()
+void print(List people)
-class Data {
-String firstName
-String lastName
-String salary
+ String toString()
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml | false | true | false | false | class |
c5219d304f4ae4e540e7ea7d75fae1d777b0f287 | f8e357daee592f0c24cd2e5778c643a77b4a6404 | /06classdiagram/28_classdiagram_usingnoneletters.puml | 07a349106d109029ef5859a00ede7e1eff35dba0 | [] | no_license | jahmanitheone/plantuml | bd3914c882d79157f387aa84268510edbebb05c2 | dda0a93ca7caabf456c96bd9ef8249c1f3ddf9a1 | refs/heads/main | 2023-01-01T12:40:34.242849 | 2020-10-22T17:01:59 | 2020-10-22T17:01:59 | 306,404,003 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 429 | puml | '
'ClassDiagrams: Using non-letters
'
'If you want to use non-letters in the class (or enum...) display, you can either :
'• Use the as keyword in the class definition
'• Put quotes "" around the class name
'
'"" - surround extra info
'as - alias for info
'
'--------------------------------------
'
@startuml
class "This is my class" as class1
class class2 as "It works this way too"
class2 *-- "foo/dummy" : use
@enduml | false | true | true | false | class |
3c22c08c1be5ff8f6ce363a1a2fcc5fd7baa1966 | aa9620300bc8488f53437e0f5faab824225aab73 | /reweighting_2017/import_seq_6.plantuml | 83321b9ad0a318cc1d003ffc9d35e0396a3bd5af | [
"BSD-3-Clause"
] | permissive | atavory/atavory.github.io | 94daa1b05141ff5c6e9ebfb5055fc87cfd333ca3 | 43d98b45150411d83ab75a92a6d4ab9226927ef0 | refs/heads/master | 2021-01-19T06:15:43.197765 | 2019-11-18T10:58:38 | 2019-11-18T10:58:38 | 100,634,235 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 969 | plantuml | @startuml
skinparam monochrome true
skinparam shadowing false
actor user
autonumber 1 "<font color=grey>"
user -[#grey]> runtime: <back:white>import ibex.sklearn.linear_model</back>
autonumber 2 "<font color=grey>"
runtime -[#grey]> ibex: <back:white>import ibex</back>
autonumber 3 "<font color=grey>"
runtime -[#grey]> ibex.sklearn: <back:white>import ibex.sklearn</back>
autonumber 4 "<font color=grey>"
ibex.sklearn -[#grey]> ibex.sklearn: <back:white>register sys.metapath</back>
autonumber 5 "<font color=grey>"
runtime -[#grey]> loader: <back:white>import ibex.sklearn.linear_model</back>
autonumber 6 "<font color=black>"
loader -[#black]> sklearn.linear_model: <back:grey>dir</back>
autonumber 7 "<font color=grey>"
sklearn.linear_model -[#grey]> loader: <back:white>members</back>
autonumber 8 "<font color=grey>"
loader -[#grey]> loader: <back:white>inspect</back>
autonumber 9 "<font color=grey>"
loader -[#grey]> loader: <back:white>wrap</back>
@enduml | false | true | false | false | sequence |
22fbe850520a53287cdf5df159ee7d12590a7986 | c7144af16e76ac5765e3c5c212eb1fa515ea8f6c | /DesignPattern/ClassDiagram/class-diagram_3-1-4-2.puml | 070bc882992b1f8688c008a85768725b3b7ecc10 | [] | no_license | JungInBaek/TIL | de183dc4e42bb1e7ff1a88a7d79ec33088644334 | 4043c68213ec8955eaeb570e11e7d2fd9bf85924 | refs/heads/main | 2023-08-22T02:15:41.238631 | 2021-10-06T13:55:45 | 2021-10-06T13:55:45 | 399,660,120 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 127 | puml | @startuml
class Calculator {
+ Calculator()
+ calculate(operator : String, firstNumber : int, secondNumber : int)
}
@enduml | false | true | false | false | class |
ebc5676e1983582a5848ec7bb748fce3424ebd0d | 5dc9e41cc781a3ce07954ad8b4e70ff66ab124ee | /docs/alfresco-process-services/alfresco-process-services-0.2.0.puml | c6c3cd9e6400d6082b41aa79ba5aeb9aa1a17b44 | [
"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 | 4,914 | 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-process-services:0.2.0
'There are 8 referenced Helm Charts
artifact "alfresco-process-services:0.2.0\n====\n\tType: application\n====\n\tRepo: https://kubernetes-charts.alfresco.com/stable\n====\n\tMaintainers: Alfresco\n====\n\tKeywords: " as alfresco_process_services_0_2_0 #Gainsboro
artifact "postgresql:0.15.0\n====\n\tType: application\n====\n\tRepo: https://charts.helm.sh/stable\n====\n\tMaintainers: databus23\n====\n\tKeywords: \n\t\tpostgresql\n\t\tpostgres\n\t\tdatabase\n\t\tsql" as postgresql_0_15_0 #LightSteelBlue
artifact "alfresco-infrastructure:4.1.1\n====\n\tType: application\n====\n\tRepo: https://kubernetes-charts.alfresco.com/stable\n====\n\tMaintainers: \n====\n\tKeywords: " as alfresco_infrastructure_4_1_1 #Cornsilk
artifact "postgresql:1.0.0\n====\n\tType: application\n====\n\tRepo: https://charts.helm.sh/stable\n====\n\tMaintainers: \n====\n\tKeywords: \n\t\tpostgresql\n\t\tpostgres\n\t\tdatabase\n\t\tsql" as postgresql_1_0_0 #LightSteelBlue
artifact "alfresco-identity-service:1.1.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_1_1_0 #Chartreuse
artifact "nginx-ingress:0.14.0\n====\n\tType: application\n====\n\tRepo: https://charts.helm.sh/stable\n====\n\tMaintainers: \n\t\tjackzampolin\n\t\tmgoodness\n\t\tchancez\n====\n\tKeywords: \n\t\tingress\n\t\tnginx" as nginx_ingress_0_14_0 #DarkSalmon
artifact "keycloak:4.3.0\n====\n\tType: application\n====\n\tRepo: https://charts.helm.sh/stable\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_4_3_0 #LightBlue
artifact "activemq:1.1.1\n====\n\tType: application\n====\n\tRepo: https://kubernetes-charts.alfresco.com/stable\n====\n\tMaintainers: \n====\n\tKeywords: \n\t\tactivemq\n\t\tmessage broker" as activemq_1_1_1 #LightBlue
'There are 9 referenced Docker Images
usecase "Image\n====\nquay.io\n====\nalfresco/alfresco-process-workspace-app:1.3.4\n====\n1.3.4" as quay_io_alfresco_alfresco_process_workspace_app_1_3_4 #Azure
usecase "Image\n====\nDocker Hub\n====\npostgres\n====\n10.1" as postgres_10_1 #Ivory
usecase "Image\n====\nDocker Hub\n====\njboss/keycloak\n====\n4.8.3.Final" as jboss_keycloak_4_8_3_Final #LemonChiffon
usecase "Image\n====\nDocker Hub\n====\nk8s.gcr.io/defaultbackend\n====\n1.3" as k8s_gcr_io_defaultbackend_1_3 #DarkSeaGreen
usecase "Image\n====\nquay.io\n====\nalfresco/alfresco-process-services-admin:1.10.0\n====\n1.10.0" as quay_io_alfresco_alfresco_process_services_admin_1_10_0 #CadetBlue
usecase "Image\n====\nDocker Hub\n====\npostgres\n====\n9.4.6" as postgres_9_4_6 #Ivory
usecase "Image\n====\nquay.io\n====\nkubernetes-ingress-controller/nginx-ingress-controller:0.12.0\n====\n0.12.0" as quay_io_kubernetes_ingress_controller_nginx_ingress_controller_0_12_0 #LightSkyBlue
usecase "Image\n====\nquay.io\n====\nalfresco/alfresco-process-services:1.10.0\n====\n1.10.0" as quay_io_alfresco_alfresco_process_services_1_10_0 #LightCoral
usecase "Image\n====\nDocker Hub\n====\nalfresco/alfresco-activemq\n====\n5.15.8-java-8-oracle-centos-7-87b15e37ce8b" as alfresco_alfresco_activemq_5_15_8_java_8_oracle_centos_7_87b15e37ce8b #Khaki
'Chart Dependencies
alfresco_process_services_0_2_0--[#green]-|>postgresql_1_0_0
alfresco_process_services_0_2_0--[#green]-|>alfresco_infrastructure_4_1_1
alfresco_infrastructure_4_1_1--[#green]-|>activemq_1_1_1
alfresco_infrastructure_4_1_1--[#green]-|>alfresco_identity_service_1_1_0
alfresco_identity_service_1_1_0--[#green]-|>keycloak_4_3_0
keycloak_4_3_0--[#green]-|>postgresql_0_15_0
alfresco_infrastructure_4_1_1--[#green]-|>nginx_ingress_0_14_0
alfresco_process_services_0_2_0--[#orange]-|>quay_io_alfresco_alfresco_process_services_admin_1_10_0
alfresco_process_services_0_2_0--[#orange]-|>quay_io_alfresco_alfresco_process_services_1_10_0
alfresco_process_services_0_2_0--[#orange]-|>quay_io_alfresco_alfresco_process_workspace_app_1_3_4
postgresql_0_15_0--[#orange]-|>postgres_10_1
postgresql_1_0_0--[#orange]-|>postgres_9_4_6
nginx_ingress_0_14_0--[#orange]-|>k8s_gcr_io_defaultbackend_1_3
nginx_ingress_0_14_0--[#orange]-|>quay_io_kubernetes_ingress_controller_nginx_ingress_controller_0_12_0
keycloak_4_3_0--[#orange]-|>jboss_keycloak_4_8_3_Final
activemq_1_1_1--[#orange]-|>alfresco_alfresco_activemq_5_15_8_java_8_oracle_centos_7_87b15e37ce8b
center footer Generated on 2022/06/13 20:14:07 by com.melahn.util.helm.PlantUmlChartMapPrinter\nhttps://github.com/melahn/helm-chartmap
@enduml
| false | true | false | false | usecase |
5e2f2725b21f110d9e2c30d015ce528e15f7cf58 | cbae2c225bd245204a40e41a25415c41604e6219 | /rasd/sequence_diagram/sequence_diagram_editEvent.plantuml | 1a04b202469f0610129e1e4948739d004a57039a | [] | no_license | fcremo/AlfonsoCarsenzuolaCremonese-ingsw2 | c15da77f1c33c9cdd0dd1dbe0c79bfe7bfea3903 | 931288cf6f6e98e177432e5445c6361a0c3443c4 | refs/heads/master | 2021-03-30T17:25:41.027189 | 2017-11-26T20:43:18 | 2017-11-26T20:43:18 | 105,372,279 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 592 | plantuml | @startuml
actor User
participant System
activate User #FFBBBB
User -> System: SelectEvent
activate System #FFBBBB
System -> System: LoadSelectedEvent
System --> User: ShowSelectedEvent
deactivate System
User -> System: EditEvent
activate System #FFBBBB
System -> System: LoadEditableEventInformation
System --> User: ShowEditableEventInformation
deactivate System
User -> System: InsertEditatedInformation
activate System #FFBBBB
System -> System: VerifyData
deactivate System
alt correct data
System --> User: ShowEditatedEvent
else incorrect data
System --> User: Error
end
@enduml
| false | true | false | false | sequence |
29f385c69fe4156d89a2b871b04d0c98db967cb3 | 3a2607b600dea7be6b832d64c5828c96ad9580b4 | /Behavioral/State/State.puml | 81d9d942f99e88b474173eb082a44016730335a9 | [] | no_license | flashytime/design-patterns-php | c1619e8f4b2affdbca096dfda94870b3c7b2bf9a | 76104721a8a8b367baac6c8eafc0a6f2623839b1 | refs/heads/master | 2018-12-08T12:50:48.245627 | 2018-09-18T08:36:41 | 2018-09-18T08:36:41 | 73,289,635 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 565 | puml | @startuml
interface State {
+ proceedNext(OrderContext $context)
+ toString()
}
class StateCreated {
+ proceedNext(OrderContext $context)
+ toString()
}
class StateShipped {
+ proceedNext(OrderContext $context)
+ toString()
}
class StateDone{
+ proceedNext(OrderContext $context)
+ toString()
}
State <|.. StateCreated
State <|.. StateShipped
State <|.. StateDone
class OrderContext {
- State $state
+ {static} create()
+ setState(State $state)
+ proceedNext()
+ toString()
}
OrderContext o--> State
@enduml | false | true | false | false | state |
af78a436e782a1cee88485931bcce0f55800690a | a8fb6ac1f0604a5f9a67825f286512087388e582 | /Doc/System Design/diagram/outputsequence.puml | fbe4fb2a9a8611f01d80b575e85f70420c208c4b | [] | no_license | apanesarr/capstone | 65f524fb59cd337fde2e340b0828dcc8b0fcf997 | 15b3eee878ea7c943f070d2bcd8928600acb979a | refs/heads/master | 2021-01-02T00:09:19.131182 | 2020-02-10T01:57:06 | 2020-02-10T01:57:06 | 239,405,067 | 0 | 0 | null | 2020-02-10T01:41:24 | 2020-02-10T01:41:23 | null | UTF-8 | PlantUML | false | false | 683 | puml | @startuml
actor "Researcher" as User
participant "User \n Interface" as ui
participant Simulation
participant "Area \n Coverage \n Algorithm" as area
participant "Insect \n tracking" as tracking
participant "Insect \n Measurement \n Sensors" as sensors
participant "Server \n Communication \n interface" as servercomm
participant "Insect \n User \n Communication \n interface" as insectcomm
participant "Insect \n Motor \n Control" as imc
participant "Data \n Storage" as ds
activate User #FFBBBB
activate ui #FFBBBB
User -> ui : ViewResults()
activate ds #FFBBBB
ui -> ds : query(survey)
ds --> ui : return data
deactivate ds
ui -> User : DisplayResults()
deactivate ui
@enduml
| false | true | false | false | usecase |
1c354ba6fa33b14eb97a20900a6602be860f8958 | 81933cc51a9d6dd93639cdd7057e7a40f8254194 | /app/UML/sequence-diagram.puml | 042c2fa6c8bdd6549a75687fc6a45773b532efd9 | [] | no_license | Oakes6/HaikuApp | e6ad09a85d25d84308827943297187960741efe6 | 54d852cdc205aa151cef80451d42950ac77b252a | refs/heads/master | 2021-04-06T01:56:42.599765 | 2018-03-19T03:40:00 | 2018-03-19T03:40:00 | 125,282,772 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 392 | puml | @startuml
User -> HaikuApp: Select Word Type
HaikuApp --> User: Display word choice
User -> HaikuApp: add word to haiku
User <-- HaikuApp: display word in haiku
User -> HaikuApp: delete last word
User <-- HaikuApp: display updated haiku
User -> HaikuApp: click haiku display button
User <-- HaikuApp: display full haiku
User -> HaikuApp: start over
User <-- HaikuApp: clear Haiku
@enduml
| false | true | false | false | sequence |
1a3e2f6f3c19621201fec4f2330d73c249a2e4b0 | c117cce5d888b70a42d9ed67bea5de8b263eda1e | /chapter_one_0100/图1-1.puml | 6be8748727dbfc723d7015f4ded77615fa253f21 | [] | no_license | zhijunhong/design_patterns | b4a6d2d604fa9a38c6a45ba189de7750a298eb4b | 23acdaa5a871ed38ef3a8594ef13474af53f3ee8 | refs/heads/master | 2023-03-16T16:04:03.455962 | 2021-02-24T01:37:39 | 2021-02-24T01:37:39 | 111,893,158 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 207 | puml | @startuml
class ImageLoader
class ImageCache
ImageCache<- ImageLoader
class ImageLoader{
- displayImage(String,ImgeView)
}
class ImageCache{
+ put(String,Bitmap)
+ get(String):Bitmap
}
@enduml
| false | true | false | false | class |
295e90a1788f03c3f0ad5b92c787ef5d0174704a | 9cc7c4099f6330f9a4384b56427d40d46b9d6f4a | /diagrams/multi-container-pod-sharing-volume.puml | 8539a02a52b05e1140f92d4d9fe8f48882198b98 | [
"MIT"
] | permissive | maulvialf/belajar-kubernetes | 0e28a11d9f75b3b1d17ffbe86151ecedf3bb603e | 809ac5514e9c0c188a3775f53e0d340b0587c132 | refs/heads/master | 2022-10-22T09:32:07.830441 | 2020-06-13T17:43:51 | 2020-06-13T17:43:51 | 272,653,376 | 1 | 0 | MIT | 2020-06-16T08:32:21 | 2020-06-16T08:32:20 | null | UTF-8 | PlantUML | false | false | 340 | puml | @startuml
node "Kubernetes Cluster" {
node "Service" as service
node "Pod" as pod{
node "Container 1" as container1
node "Container 2" as container2
file "Volume" as volume
}
}
service --> pod : NodePort
pod --> container1
pod --> container2
container1 --> volume
container2 <-- volume
@enduml
| false | true | false | false | sequence |
97462429a1f5e60047f3f48aa1174c5856a1f19b | b0a840ee583d0f1dd05adb2bb6e08e4951083c3d | /images/ch18_datepicker/datepicker-seq.puml | e4505fca701020a963a9e5adc19818323479a4fe | [] | no_license | selenium-webdriver-book/manuscript | 842ab108c9b3eb8127027c159b3318fd3fcdf59b | c8a8ced2b0ca495cacec6c909b3294ff3074e945 | refs/heads/master | 2021-01-12T14:00:07.309802 | 2017-04-23T15:17:59 | 2017-04-23T15:17:59 | 69,686,355 | 11 | 8 | null | 2017-04-23T15:17:59 | 2016-09-30T17:14:29 | Shell | UTF-8 | PlantUML | false | false | 821 | puml | @startuml
hide footbox
skinparam monochrome true
skinparam shadowing false
participant "Test Script"
participant Datepicker
participant Calendar
participant YearPicker
participant MonthPicker
participant DayPicker
activate "Test Script"
"Test Script" -> Datepicker : pick(APRIL, 1, 2018)
activate Datepicker
Datepicker -> Calendar : show()
activate Calendar
Calendar --> Datepicker
deactivate Calendar
Datepicker -> YearPicker: pickYear(2018)
activate YearPicker
YearPicker --> Datepicker
deactivate YearPicker
Datepicker -> MonthPicker: pickMonth(APRIL)
activate MonthPicker
MonthPicker --> Datepicker
deactivate MonthPicker
Datepicker -> DayPicker: pickDay(1)
activate DayPicker
DayPicker --> Datepicker
deactivate DayPicker
Datepicker --> "Test Script"
deactivate Datepicker
deactivate "Test Script"
@enduml
| false | true | false | false | sequence |
c01e76d9e676443b549db645be070c043bd2890d | f77b263fb89a587b3dd90a5788f2644b9a3dd8c5 | /Assignment_4_part_1.puml | cc340d92de134e73a7e90ae965500314a773a03a | [] | no_license | PugOwner/ruiz-cop-3330-assignment4-part1 | edb83be857e48aff7862b19915997a76c97dd65f | 9bff23434d505657a3e5da03f4506607e281dce0 | refs/heads/master | 2023-08-26T14:20:11.849633 | 2021-11-02T02:00:56 | 2021-11-02T02:00:56 | 423,639,721 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 568 | puml | @startuml
class DisplayAll_ItemsController{
}
class DisplayIncompleteItemsController{
}
class DisplayCompletedItemsController{
}
class HomepageController{
}
class Items{
}
class ItemsEditorController{
}
class ListManager{
}
class Main {
}
class TodoList{
}
javafx.Application <|-- Main
HomepageController -- Main
ListManager -- HomepageController
TodoList - ListManager
Items - TodoList
DisplayAll_ItemsController -- ListManager
DisplayCompletedItemsController -- ListManager
DisplayIncompleteItemsController -- ListManager
ItemsEditorController -- ListManager
@enduml | false | true | false | false | class |
cb77f495a9862e91a94717898494c96d85ed360d | b6854bf459f7b074acd76802e66287b746d01a04 | /SmsBankListener/UML/SMSRecive.puml | 7d5089f2ffc06482ad8cf6c1d9e52230cceb00ad | [] | no_license | GugleGH/sms-bank-listener | e0c1aba3fec81a5a05023e6f85839235e15a93a8 | 969b57cc705d98a42ab0fd3ed31c4feadd7ce391 | refs/heads/master | 2021-01-17T17:06:32.908793 | 2015-03-30T12:10:45 | 2015-03-30T12:10:45 | 33,107,816 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 626 | puml | @startuml
(*) --> "SMSRecive"
SMSRecive --> StartSMSService
if "validateDisplayAddress" then
--> [true] "getOriginatingAddress"
if "validateOriginatingAddress" then
--> [true] "getSMSBody"
if "validateSMSBody" then
--> [true] "getCardNumber"
if "validateCardNumber" then
--> [true] "SaveData"
SaveData --> (*)
else
--> [false] (*)
endif
else
--> [false] (*)
endif
else
--> [false] (*)
endif
else
--> [false] (*)
endif
@enduml | false | true | false | false | activity |
3530cad7e40fcb836a75972c34c71850586c99fb | bdf0d4d3aac186af3ad0ad6ac9f380f9a0573fba | /docs/assets/endorser-design.puml | 39883ea66bcbccddcb41c216b90a6178680f84fe | [
"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 | 603 | puml | @startuml
interface AdminUser
interface OtherAgent
object TransactionRoutes
object TransactionHandlers
AdminUser --> TransactionRoutes: invoke_endpoint()
OtherAgent --> TransactionHandlers: send_message()
object TransactionManager
object Wallet
TransactionManager --> Wallet: manage_records()
TransactionRoutes --> TransactionManager: invoke_api()
TransactionHandlers --> TransactionManager: handle_msg()
object EventBus
TransactionManager --> EventBus: notify()
interface OtherProtocolRoutes
OtherProtocolRoutes --> EventBus: subscribe()
EventBus --> OtherProtocolRoutes: notify()
@enduml
| false | true | false | false | sequence |
0ce4586a00d335c4d397c63c73bc8de1afde3dd9 | b2377dbb97354ebb11f18337fae7a5deb10e9fd1 | /docs/UseCases/UseCases.puml | cc38029ba0d40ad24be21d2459e2df663a6b6497 | [] | no_license | CAADE/H2C | 634e94afdd5302232d234aa7abefcfc61a24ea8e | 91227f94a60c8e3285c24333da340c06a51afa9d | refs/heads/master | 2021-03-27T18:25:35.652782 | 2018-06-01T21:58:49 | 2018-06-01T21:58:49 | 83,159,772 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 304 | puml | @startuml
left to right direction
:Operstions Manager: as ops
:Stack Developer: as stackdev
:Application Developer: as dev
rectangle "H2C" #aaffff {
usecase "Manage Workload" as MW
usecase "Submit Workload" as SW
usecase "Manage Infrastructure" as MI
}
ops --> MW
ops --> SW
ops --> MI
@enduml
| false | true | false | false | usecase |
a0312ec1984fc058da04e66cbb70b9b752e4ba36 | bfd09b43459583c5185ae2d4fbd5d5af637aae7d | /organisation/organisation-model/src/site/markdown/plantuml/entity_integrationtests.puml | 192303d13dc00752dc6c297f2e05f3139acc7698 | [] | no_license | Mithlond/mithlond-services | e82f4f0c747ada3c56f5f744122f61ea0c76dad9 | 81d17c6999d4c562589cd4822c9266b1f945db0b | refs/heads/master | 2021-04-18T18:53:20.515392 | 2019-01-10T21:06:02 | 2019-01-10T21:06:02 | 39,806,233 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,249 | puml | @startuml
actor "Integration Test" as it
boundary EntityManager as em
boundary DbUnit as dbUnit
database "In-memory DB" as db
entity "An Entiy" as ent
[-> it : setup()
activate it
it -> db : Create DB
it -> em : Create schema from\n<i>persistence.xml</i>
em -> db : Create schema from <i>persistence.xml</i>
it -> dbUnit : Insert DB data from\nsetup_<i>methodName</i>
dbUnit -> db : Insert DB data
it -> it : onSetup()
activate it #FFBBBB
deactivate it
deactivate it
[<- it
[-> it : validate<i>Something</i>()
activate it
it -> em : startNewTransaction()
activate em #FFBBBB
it -> em : perform JPA operations
it -> em : commitAndStartNewTransaction();
activate em #FFBBBB
em -> ent : <i>Example: persist</i>
ent --> db : persisting
em <-- db
deactivate em
deactivate em
it -> dbUnit : verify DB state after JTA commit
activate dbUnit #FFBBBB
dbUnit --> db : verifying
deactivate dbUnit
deactivate it
[<- it
[-> it : tearDown()
activate it
it -> it : <i>cleanupTestSchema()</i>
activate it #FFBBBB
it -> dbUnit : dropAllDbObjectsInPublicSchema()
deactivate it
deactivate it
[<- it
@enduml | false | true | false | false | sequence |
efeaab1a05428fdcf8ea627c8ae9c4c597e7efac | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Modules/Mouse/Producers/MouseClickEventProducer.puml | 790c0eee3796405cb787638262c16c361f5bf8f1 | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 277 | puml | @startuml
skinparam monochrome true
skinparam ClassAttributeIconSize 0
class MouseClickEventProducer {
+ StartCapture() : void
+ StopCapture() : void
}
class "DefaultEventQueue<T>" {
}
"DefaultEventQueue<T>" " <MouseClickEvent>" <|-- MouseClickEventProducer
@enduml
| false | true | false | false | class |
7291660008ee9b77ee516a6f774643e9fb92bb24 | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/macros05_03/Insert_Wizard_Advanced_Formula/i120836/macros05_03_design2.puml | fffc74971d144fd7aff8d96fdd8d3c94f4f021f4 | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,438 | puml | @startuml doc-files/marcos05_03_design2.png
actor User
participant "CallFunctionUI" as UI
participant "CallFunctionCtrl" as ctrl
participant "Language" as language
participant "FunctionCaller" as caller
participant "FunctionCall" as f_call
participant "Function" as func
User -> UI : show
activate UI
UI -> ctrl : lf = fillList()
deactivate UI
activate ctrl
ctrl -> language : lf = getFunctions()
deactivate ctrl
activate UI
UI ->ctrl : lf = fillListOperators(lf)
activate ctrl
ctrl -> language : lf = getOpertions()
deactivate ctrl
UI -> UI : fillFunctionsList(lf)
User -> UI : choose function
UI -> ctrl : func_def = chooseFunction(f)
deactivate UI
activate ctrl
ctrl -> language : func = getFunction(f)
deactivate ctrl
activate UI
User -> UI : Fill Data and Enter
UI -> ctrl : validateParameters(lp, func_def)
UI -> ctrl : value = showResult(func_def)
activate ctrl
ctrl -> caller : value = executeFunc(func_def)
deactivate ctrl
caller -> f_call : create(function, arguments)
activate f_call
caller -> f_call : value = evaluate()
deactivate caller
f_call -> func : value = applyTo(arguments)
deactivate f_call
participant "Tree" as tree
UI -> ctrl : tree = getTree()
ctrl -> tree : toStringTree()
tree --> ctrl
ctrl --> UI
alt [if Tree.isSelected()]
UI -> UI : ShowTree()
end
UI -> UI : setText(value)
UI -> ctrl : addFunctionFormulasPanel(func_def)
participant "FormulaPanel" as panel
ctrl -> panel : addFormula(formula)
@enduml | false | true | false | false | usecase |
abd3ec9ecf796335ff93335651367c978a73593b | 71508ad2c864b06ebe1ccdda4e3818447602f39c | /src/headfirst/designpatterns/strategy/duck/Duck.puml | f7dfec76c814e20834c0212c0142be412e6aca0e | [] | no_license | ilovers/Head-First-Design-Patterns | 8135ba0e3a6da4f865c08ad3479bad366eff3581 | d66647bae1e7d81f472cf52af28442f490b55da8 | refs/heads/master | 2022-06-08T14:13:54.009661 | 2020-05-09T01:00:09 | 2020-05-09T01:00:09 | 259,570,755 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 903 | puml | @startuml
class Duck{
FlyBehavior flyBehavior
QuackBehavior quackBehavior
void swim()
{abstract} void display()
void performFly()
void preformQuack()
void setFlyBehavior(FlyBehavior)
void setQuackBehavior(QuackBehavior)
}
class MallardDuck{
void diplay()
}
class ReadheadDuck{
void diplay()
}
class RubberDuck{
void diplay()
}
class DecoyDuck{
void diplay()
}
interface FlyBehavior{
void fly()
}
class FlyWithWings{
void fly()
}
class FlyNoWay{
void fly()
}
interface QuackBehavior{
void quack()
}
class Quack{
void quack()
}
class Squeak{
void quack()
}
class MuteQuack{
void quack()
}
Duck <|-- MallardDuck
Duck <|-- ReadheadDuck
Duck <|-- RubberDuck
Duck <|-- DecoyDuck
FlyBehavior <|.. FlyWithWings
FlyBehavior <|.. FlyNoWay
QuackBehavior <|.. Quack
QuackBehavior <|.. Squeak
QuackBehavior <|.. MuteQuack
Duck --* FlyBehavior
Duck --* QuackBehavior
@enduml | false | true | false | false | class |
5dcca9fac34ad32541052c23b9ce64cd11e0e532 | c2105b92c810f5779b676dfb6b577ec9910d2687 | /Documentation/PUML/gui/cells/CellsDependencies.puml | 1be365c3d862dad1ac710b650d6e95101f20bd8c | [
"MIT"
] | permissive | tunepruner/4wardslegacy | 4df61c9f8a1a6a1d1a22ed164132beac8f46b0e7 | 410e3a26b073139b3dc2013d30a9fc7bb01ddc4d | refs/heads/master | 2023-02-16T19:00:08.988933 | 2021-01-12T23:08:05 | 2021-01-12T23:08:05 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 456 | puml | @startuml
package LittleReminder{
class Cells{
static CellList<Cell>
}
class Cell{
CellMouseBehavior
CellPlacement
CellAnimationBehavior
CellDesign
}
}
Cells *-- Cell
'Dependencies
CellDesign <.. CellMouseBehavior: getCellBounderies()
CellPlacement <.. CellAnimationBehavior: getPosition()
CellMouseBehavior <.> CellPlacement: observer \nrelationship
CellList <..... CellPlacement: getIndex()\nmoveTo() on\ndrag\npossibly\nobserver\nrelationship
@endumlw | false | true | false | false | class |
080ccad39926292242cf1f33ad47ef689e7fb902 | 644b7bb773b84596a2de4d31a0603284d9562e56 | /Solidity/Contracts/Course.iuml | c600757dc64ea20579612d0497c849655cf5f7bd | [] | no_license | M9k/Marvin-Uml | e62d17245cf493d53f0b80f633a47be8ec44569e | 0fe9bc36f947535ae4397181ccf8c85291244a87 | refs/heads/master | 2021-04-15T17:44:22.461549 | 2018-05-10T07:52:19 | 2018-05-10T07:52:19 | 126,618,685 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 460 | iuml | @startuml
class Course{
- name: bytes32
- creditsToGraduation: uint16
- year: Year
- university: UniversityAdmin
__modifiers__
onlyAdmin
__
+ Course(_name: bytes32, _creditsForGraduation: uint16, _university: University)
+@ getExamNumber(): uint
+@ getExamContractAt(uint _index): Exam
+@ getName(): bytes32
+@ getCreditsToGraduate(): uint16
+@ getSolarYear(): uint16
+ addNewExam(_name: bytes32, _credits: uint8, _obbligatoriety: bool) {onlyAdmin}
}
@enduml
| false | true | false | false | class |
db6c8373a0a4d7878b9996328ca71ee36453536f | dda7b506188d7a34ac15ae3b7c3a55f8c94eabe7 | /src/main/java/com/clexel/dp/structural/proxy/proxy.puml | a9fac6f08358c12c8de010d7321e3bc8d7a2fabe | [
"Apache-2.0"
] | permissive | jonathanzhan/design-pattern | 77e7088c37a40320c94f18f4f68dbfff260639d0 | 3b118a1e0769b78127ed806b95ff011db5b15be8 | refs/heads/master | 2021-07-05T21:20:38.942127 | 2019-08-29T09:37:57 | 2019-08-29T09:37:57 | 191,871,045 | 0 | 0 | Apache-2.0 | 2020-10-13T13:53:42 | 2019-06-14T03:37:20 | Java | UTF-8 | PlantUML | false | false | 372 | puml | @startuml
interface Subject{
+ request():void
}
class RealSubject implements Subject {
+ request():void
}
class Proxy implements Subject {
- realSubject:RealSubject
+ request():void
+ preRequest():void
+ postRequest():void
}
Class Client {
}
Client ..> Subject
note as N1
Proxy proxy = new Proxy();
proxy.request();
end note
Client .. N1
@enduml | false | true | false | false | class |
0742efae26a811323dfab5304475f5ce5ecdf9c2 | fa6bebdc0425c0f3a0bf6907ce8ffa0f16b39c23 | /modules/congestion_controller/links/congestion_controller.puml | a9ff58d24d3cad62826ec43382af1813b8f90b9a | [] | no_license | qq175175055/webrtc_summary | 3c0671155222a0f63b8005254c4172d1d74465f3 | 47328d53fe5c8688403d75293566bf48e5068cd2 | refs/heads/master | 2022-10-25T23:01:56.929867 | 2020-06-19T09:05:39 | 2020-06-19T09:05:39 | 255,900,619 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,103 | puml | @startuml congestion_controller
interface NetworkChangedObserver
class ReceiveSideCongestionController
interface CallStatsObserver
interface Module
interface RemoteBitrateEstimator
class WrappingBitrateEstimator
interface RemoteBitrateObserver
class RemoteEstimatorProxy
Module <|-- ReceiveSideCongestionController
CallStatsObserver <|-- ReceiveSideCongestionController
RemoteBitrateEstimator <--* ReceiveSideCongestionController
RemoteBitrateEstimator <|-- WrappingBitrateEstimator
RemoteBitrateObserver <--* WrappingBitrateEstimator
WrappingBitrateEstimator <--* ReceiveSideCongestionController
RemoteEstimatorProxy <--* ReceiveSideCongestionController
interface SendSideCongestionControllerInterface
interface CallStatsObserver
interface Module
interface TransportFeedbackObserver
interface PacketFeedbackObserver
interface NetworkChangedObserver
interface RtcpBandwidthObserver
class SendSideCongestionController
interface PacedSender
CallStatsObserver <|-- SendSideCongestionControllerInterface
Module <|-- SendSideCongestionControllerInterface
TransportFeedbackObserver <|-- SendSideCongestionControllerInterface
PacketFeedbackObserver <--* SendSideCongestionControllerInterface
NetworkChangedObserver <--* SendSideCongestionControllerInterface
RtcpBandwidthObserver <--* SendSideCongestionControllerInterface
SendSideCongestionControllerInterface <|-- SendSideCongestionController
PacedSender <--* SendSideCongestionController
class TransportFeedbackAdapter
class TransportFeedback
class SendTimeHistory
PacketFeedbackObserver <--* TransportFeedbackAdapter
TransportFeedback <--* TransportFeedbackAdapter
SendTimeHistory <--* TransportFeedbackAdapter
class BitrateEstimator
class AcknowledgedBitrateEstimator
BitrateEstimator <--* AcknowledgedBitrateEstimator
interface DelayIncreaseDetectorInterface
class TrendlineEstimator
class DelayBasedBwe
class AimdRateControl
class ProbeBitrateEstimator
DelayIncreaseDetectorInterface <|-- TrendlineEstimator
AimdRateControl <--* DelayBasedBwe
ProbeBitrateEstimator <--* DelayBasedBwe
DelayIncreaseDetectorInterface <--* DelayBasedBwe
@enduml | false | true | false | false | class |
d0c3ef5c945ffec3fd6df2ea4fec67662c182e10 | 1278653a0b662eca599999013fbd7b6dc0cd2b90 | /class-diagram.puml | 54754d0fbff32c6cc96232aee1448d497258d89e | [] | no_license | giedoc/facebook-clone | 531aa72f9ceceab0f83581aab4b72a959ee8ae20 | 6d8aaa1c3e8d34f9b1543802eea769d20941a2a6 | refs/heads/master | 2022-10-24T17:27:55.289315 | 2020-06-12T19:39:48 | 2020-06-12T19:39:48 | 266,257,830 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 820 | puml | @startuml class-diagram
class User << Entity >> {
+ name: string
+ password: string
+ email: string
+ age: int
+ adress:string
+ shares: []
+ socialNetworks: []
+ likeShare()
+ addFriend()
+ sendMessage()
+ sharePost()
+ attend()
}
class Share << Entity >> {
+ name: string
+ type: string
+ shares: []
}
class Photo extends Share {
+ name: string
+ type: string
}
class Video extends Share {
+ name: string
+ type: string
}
class Story extends Share {
+ name: string
+ type: string
}
class Idea extends Share {
+ name: string
+ type: string
}
class SocialNetwork {
+ name: string
+ participants: []
+ showParticipant()
}
User " 0..* " --- "1" SocialNetwork
User " 1 " -- " 0..* " Share
@enduml | false | true | false | false | class |
c8da0c1455a43045d1bdc875c034eaeeaea3c596 | b2c41737dd597336fa57dfdf60e828d3a04ef0d5 | /docs/diagrams/sequence.puml | 0107ee5fd97f26418c108d5015363b96567dc3a8 | [
"Apache-2.0"
] | permissive | ozangunalp/smallrye-stork | 74fbe759f6da90a5ef5052f82fd841cc69c644a5 | 313ac426a0a6f817ac1450e40670ea556daded50 | refs/heads/main | 2023-08-24T06:55:54.526967 | 2021-10-25T06:01:31 | 2021-10-25T06:01:31 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,042 | puml | @startuml
skinparam participant {
BackgroundColor AliceBlue
ArrowColor DarkGrey
BorderColor DarkGrey
}
skinparam roundcorner 20
skinparam sequence {
ArrowColor DarkGrey
ActorBorderColor DarkGrey
LifeLineBorderColor DarkGrey
LifeLineBackgroundColor #A9DCDF
}
skinparam sequenceMessageAlign center
autonumber "<b>(0)"
participant Application
participant Stork
participant ConfigProvider
participant Service
participant "Service Discovery"
participant "Load Balancer"
Application -> Stork : initialize()
Stork -> ConfigProvider : getConfig()
ConfigProvider -> Stork : : List<ServiceConfig>
... ...
Application -> Stork : getService("name")
Stork -> Application: Service
... ...
Application -> Service : selectServiceInstance()
Service -> "Service Discovery" : getServiceInstances()
"Service Discovery" ---> Service : Uni<List<ServiceInstance>>
Service -> "Load Balancer" : selectServiceInstance()
"Load Balancer" ---> Service : Uni<ServiceInstance>
Service ---> Application : Uni<ServiceInstance>
@enduml | false | true | false | false | sequence |
de0c490d42b88ab90ef787f2802fb91da95889c1 | 2c4f2efab569c5d9302f9c00a972298802e61f67 | /Task2_MultiThreading/src/by/training/task2/exception/exception.plantuml | 9bb82673ca51d3670f66b25fb5c911ef339875a3 | [] | no_license | alialiusefi/EPAM_JavaWebDev_Course | 066ffe0c3b3fcdd5b5a51b2e59e887752b1f1157 | b229167d84b118147d6b255229976b0ff3ec23aa | refs/heads/master | 2022-12-04T15:02:37.944559 | 2019-08-03T08:56:54 | 2019-08-03T08:56:54 | 170,365,647 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 408 | plantuml | @startuml
title __EXCEPTION's Class Diagram__\n
package by.training.task2.exception {
class IncorrectDataException {
+ IncorrectDataException()
+ IncorrectDataException()
}
}
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 |
9e9d12bc00836dc8d53b7ea6dec50c96d814fda7 | f114dec852b3918daef613fcf89ab846a6976f66 | /slides/src/main/plantuml/scale-architecture.puml | a257441fdf6c30583f04cd29cc4e8e3db6f64d82 | [] | no_license | amfalmeida/baking-microservice-pie | b039fa023414f69cdd90e939fdf211cae09a6558 | cb4acefa41d3b177865996a7173e731747d0f136 | refs/heads/master | 2020-03-30T15:51:30.364525 | 2018-09-28T10:10:47 | 2018-09-28T10:10:47 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,033 | puml | @startuml
node "pi-client-01" as piclient #grey {
artifact "Angular APP" <<NGINX>> as angular #white
}
node "pi-grom-server-01" as piserver1 #orange {
artifact "Number API" <<Wildfly Swarm>> as numberapi #white
}
node "pi-grom-server-02" as piserver2 #orange {
artifact "Number API" <<Wildfly Swarm>> as numberapi2 #white
}
node "pi-thrall-server-01" as piserver3 #orange {
artifact "Number API" <<Wildfly Swarm>> as numberapi3 #white
}
node "pi-thrall-server-02" as piserver4 #orange {
artifact "Number API" <<Wildfly Swarm>> as numberapi4 #white
}
node "pi-grom-load-balancer" as piserver5 #red {
artifact "Book API" <<TomEE>> as bookapi #white
}
node "pi-grom-database" as piregistry #purple {
artifact "Consul" as consule #white
}
node "Mac" as mac {
artifact "ELK" as elk
}
angular -> bookapi: " HTTP "
bookapi --> numberapi: " HTTP "
bookapi --> numberapi2: " HTTP "
bookapi --> numberapi3: " HTTP "
bookapi --> numberapi4: " HTTP "
@enduml
| false | true | false | false | sequence |
1c4bf864327e3a7fbe70093b27247c5f4cb38b76 | 6721108d0cfbdcf5ebaca4aa18c6132748af3ce1 | /tsn_app/doc/TSNContext.plantuml | 1b620b9474d1aa42a209c4fef961a188b5bf9caf | [] | no_license | ZitaoLi/FakerTSN | 971281637c467e499f575f577641bb776fc3540a | 18af6854249a5d7db82cb1a25cc4f892a627a6c6 | refs/heads/master | 2023-04-23T16:14:01.491101 | 2021-05-07T07:15:22 | 2021-05-07T07:15:22 | 296,300,495 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 162 | plantuml | @startuml TSNContext
class TSNContext
interface ITSNContext
ITSNContext <|- InitTSNContext
ITSNContext <|- RunTSNContext
ITSNContext <|- StopTSNContext
@enduml | false | true | false | false | class |
c107398e8b360eb14517fcd0ae16acfe2a40edab | 43f280dc7d5e9a0a4c0dbfc02d4841862644a293 | /docs/diagrams/src/3-cognito-oidc-logout-of-session.plantuml | 924960cbbea4b80d6ec5e237545ddcd4fe4fc9b4 | [
"MIT"
] | permissive | dyihoon90/aws-cognito-oidc | fd8647c5bb0a019d24973db8026bcb025afe0309 | a8c9bdde57cb357d8f4a999bc644ba6461ca89bc | refs/heads/master | 2023-06-10T21:07:51.949096 | 2021-07-08T04:47:14 | 2021-07-08T04:47:14 | 381,601,657 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,129 | plantuml | @startuml
header
This flow caters for the scenario where the user clicks Logout, or when the access token from the Browser is deemed invalid
endheader
participant Browser
participant Cognito
alt Logout from the current session only
Browser -> Cognito: call Cognito's signout API with SDK cognitoUser.signOut() method
note left
This additional call to Cognito is only required if you need to kick user out from your app immediately on refresh token revocation.
If that is not required, you should skip this call. The user will not be able to get new access token w a revoked refresh token.
So after the access token expires in 5 mins, he will not be able to access any resources.
end note
alt Authorization success
Authorizer_server -> Api_gateway: returns authorization success
Api_gateway->Resource_server: forward request to resource server
Resource_server->Api_gateway: Do work, and return resources in response
Api_gateway->Browser: Forward response from resource server
else Authorization fail
Authorizer_server -> Api_gateway: returns authorization fail
Api_gateway -> Browser: Return authorization fail
end
@enduml
| false | true | false | false | sequence |
c536a2365f263a9166fa8bbf8b04a1e3ca080490 | 41189885f0fa6f54ddc6f48ad8cdf6d1e2c9f479 | /src/capaInterfaz/capaInterfaz.plantuml | a61b8d3759430ffa04a2fc23577b4064f0b41da7 | [] | no_license | miguel-benito-martin/Practica_Migracion | af116a41842d0fb252e00286123710a2da099f85 | ab3dbd3e60629aab622e84ae84930f7f46a8937e | refs/heads/main | 2023-05-01T18:52:03.590117 | 2021-05-26T10:34:40 | 2021-05-26T10:34:40 | 366,121,731 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,512 | plantuml | @startuml
title __CAPAINTERFAZ's Class Diagram__\n
namespace capaInterfaz {
class capaInterfaz.JBarraMenus {
+ menuBar : JMenuBar
- itemAbout : JMenuItem
- itemExit : JMenuItem
- itemHelp : JMenuItem
- itemOptions : JMenuItem
- menuAyuda : JMenu
- menuFichero : JMenu
- menuHerramientas : JMenu
+ JBarraMenus()
+ actionPerformed()
}
}
namespace capaInterfaz {
class capaInterfaz.JButtonOp {
- NumOperacion : int
+ JButtonOp()
+ JButtonOp()
+ JButtonOp()
+ getNumOperacion()
+ setNumOperacion()
}
}
namespace capaInterfaz {
class capaInterfaz.JDialogAboutBox {
- jButtonCloseAboutBox : JButton
+ JDialogAboutBox()
- initComponents()
- jButtonCloseAboutBoxActionPerformed()
}
}
namespace capaInterfaz {
class capaInterfaz.JDialogOperacionFail {
- jButtonOK : JButton
- jLabel1 : JLabel
+ JDialogOperacionFail()
+ JDialogOperacionFail()
- initComponents()
- jButtonOKActionPerformed()
}
}
namespace capaInterfaz {
class capaInterfaz.JDialogOperacionOK {
- jButtonOK : JButton
- jLabel1 : JLabel
+ JDialogOperacionOK()
+ JDialogOperacionOK()
- initComponents()
- jButtonOKActionPerformed()
}
}
namespace capaInterfaz {
class capaInterfaz.JDialogOperacionWarning {
{static} + operacionOK : boolean
- jButtonCancelar : JButton
- jButtonOK : JButton
- jLabel1 : JLabel
- jLabel2 : JLabel
+ JDialogOperacionWarning()
+ JDialogOperacionWarning()
+ JDialogOperacionWarning()
- initComponents()
- jButtonCancelarActionPerformed()
- jButtonOKActionPerformed()
}
}
capaInterfaz.JBarraMenus .up.|> java.awt.event.ActionListener
capaInterfaz.JBarraMenus -up-|> javax.swing.JMenuBar
capaInterfaz.JButtonOp -up-|> javax.swing.JButton
capaInterfaz.JDialogAboutBox -up-|> javax.swing.JDialog
capaInterfaz.JDialogOperacionFail -up-|> javax.swing.JDialog
capaInterfaz.JDialogOperacionOK -up-|> javax.swing.JDialog
capaInterfaz.JDialogOperacionWarning -up-|> javax.swing.JDialog
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 |
adf0849082ad671eccfb030e4726a369d75fd1bc | 9ab481f8ead62e87e5a498c1b6c701a916507c1c | /modules/api_integration/images/PM4ML_transfer_flow_payer_multistage.plantuml | ea383b659b2c475185f90dde029e6bc39bf29775 | [
"Apache-2.0"
] | permissive | pm4ml/documents | d8fee48a60e2981631b67af7b406ca27cdea4041 | dd6cf5110aa6eb53fea82787d48f3733f7f41db2 | refs/heads/master | 2023-08-20T06:56:30.417306 | 2021-10-21T12:24:15 | 2021-10-21T12:24:15 | 367,070,860 | 0 | 1 | Apache-2.0 | 2021-10-04T16:19:27 | 2021-05-13T14:16:09 | CSS | UTF-8 | PlantUML | false | false | 1,880 | plantuml | @startuml
autonumber
skinparam activityFontSize 4
skinparam activityDiamondFontSize 30
skinparam activityArrowFontSize 24
skinparam defaultFontSize 24
skinparam noteFontSize 24
skinparam monochrome true
participant "DFSP Core Backend" as backend
participant "Payment Manager" as sob
participant "Mojaloop Switch" as sw
== send money ==
backend -> sob: POST /sendmoney (sync)
alt Payee not found
sob -> sw: GET /parties/{type}/{id}
sw -> sob: PUT /parties/{type}/{id}/error
sob -> backend: Return error (sync)
else Payee DFSP and Payee found
sob -> sw: GET /parties/{type}/{id}
sw -> sob: PUT /parties/{type}/{id}
sob -> backend: Return party info \n HTTP 200 result (sync)
end
backend -> sob: PUT /sendmoney/{transferId} (sync) \n ("acceptParty": true)
sob -> sw: POST /quotes
alt Quote request fails
sw -> sob: PUT /quotes/{id}/error
sob -> backend: Return error (sync)
else Quote request is successful
sw -> sob: PUT /quotes/{id}
sob -> sob: check quote rules
sob -> backend: Return quote \n HTTP 200 result (sync)
end
backend -> sob: PUT /sendmoney/{transferId} (sync) \n ("acceptQuote": true)
sob -> sw: POST /transfers
sw -> sw: Perform (NDC) liquidity check
alt Transfer execution would exceed NDC
sw -> sob: PUT /transfers/{id}/error
sob -> backend: Return error (sync)
else Transfer execution will not exceed NDC
sw -> sw: Reserve funds
sw -> sw: Perform validation
end
alt Validation successful
sw -> sw: Commit funds
sw -> sob: PUT /transfers/{id} \n transferState=COMMITTED
sob -> backend: Transfer successful \n HTTP 200 result (sync)
else Validation fails
sw -> sw: Cancel reserved funds
sw -> sob: PUT /transfers/{id} \n transferState=ABORTED
sob -> backend: Transfer failed (sync)
end
@enduml | false | true | false | false | sequence |
d6da5b9d318068908eff2f587add9e4e61db847c | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/learning_plan/offer/twenty_six/twenty_six.plantuml | 2a0c3a7382389c8906a40bb88ec4f8a66c4de0eb | [] | no_license | shuile/LeetCode | 8b816b84071a5338db1161ac541437564574f96a | 4c12a838a0a895f8efcfbac09e1392c510595535 | refs/heads/master | 2023-08-17T04:53:37.617226 | 2023-08-15T16:18:46 | 2023-08-15T16:18:46 | 146,776,927 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 614 | plantuml | @startuml
title __TWENTY_SIX's Class Diagram__\n
namespace cn.shui.learning_plan.offer.twenty_six {
class cn.shui.learning_plan.offer.twenty_six.Offer20 {
+ isNumber()
}
}
namespace cn.shui.learning_plan.offer.twenty_six {
class cn.shui.learning_plan.offer.twenty_six.Offer67 {
{static} + main()
+ strToInt()
+ strToInt2()
+ strToInt3()
}
}
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 |
cf6fcfc90bac15e383850a70a9ba65884ea041fa | 82c3bf2ae6f9c301040625f49942e67b4e5fd70e | /frontend/documentation/api.puml | 6e7c763f0eff55122de1a924e2cb598651313173 | [] | no_license | CriusNyx/annotated-map | e3b454e1dadddf054aa09d0d48b620c5d4da5463 | 5adab2d0b625692b92d37e5fa14ad9805a9d0bca | refs/heads/main | 2023-01-12T02:29:37.934221 | 2020-11-08T19:18:39 | 2020-11-08T19:18:39 | 302,800,129 | 0 | 1 | null | 2020-11-08T19:18:40 | 2020-10-10T02:46:36 | TypeScript | UTF-8 | PlantUML | false | false | 393 | puml | @startuml Login
Front --> Back : ./api/validatePasswordLogin
Front --> Back : ./api/validateLinkLogin
@enduml
@startuml Data
actor Front
database Back
Front --> Back : ./api/getAllProjects
Front --> Back : ./api/getAllNodes
Front --> Back : ./api/getAllAnnotations
Front --> Back : ./api/setNodeState
Front --> Back : ./api/setAnnotationState
Front --> Back : ./api/uploadImage
@enduml | false | true | false | false | sequence |
24c6d9b704d87d154a6024ce431f68a71c38b6db | fe5e1ec8aef53ca99ebfa804125c7bdf3b9882a3 | /docs/assets/queue-server-lifetime.plantuml | 0a50487b5ae3779c33654db8f664106a6937f2cd | [
"Apache-2.0"
] | permissive | datastax/fallout | 5c3d96a4909c9ccc842b4698ca7396932b21593b | 7287e32171620ed50388a02600e3257192ce00ba | refs/heads/master | 2023-08-23T18:45:31.492014 | 2023-08-04T14:58:08 | 2023-08-04T14:58:08 | 251,662,339 | 50 | 15 | Apache-2.0 | 2023-07-12T12:08:35 | 2020-03-31T16:23:37 | Java | UTF-8 | PlantUML | false | false | 1,674 | plantuml | @startuml Queue Server Lifetime
hide footbox
actor admin
database DB order 90
admin -> falloutctl++: start-with-runner
falloutctl -> QUEUE1**:start new QUEUE process
falloutctl <-- QUEUE1: write pid to file
falloutctl -> RUNNER1**:start new RUNNER process
falloutctl <-- RUNNER1: write pid to file
deactivate falloutctl
QUEUE1 -> RUNNER1: connect to /status feed
QUEUE1 -> QUEUE1++: TestRunQueue\nget pending testruns
QUEUE1 -> DB: get pending testruns
deactivate QUEUE1
QUEUE1 -> QUEUE1++: TestRunQueueProcessor:\nprocess **TestRun A**\nfrom head of queue
QUEUE1 -> RUNNER1++: start **TestRun A** via /run
RUNNER1 -> DB: update **TestRun A**
QUEUE1 <-- RUNNER1: /status feed says **TestRun A** > CHECKING_RESOURCES
deactivate QUEUE1
admin -> falloutctl: stop
activate falloutctl
falloutctl -> QUEUE1: kill -INT
activate QUEUE1
note over QUEUE1: shutdown gracefully: pause queue, wait\nfor any processing testrun to leave\nTestRunQueueProcessor\n
falloutctl -> QUEUE1: wait for process to exit
deactivate QUEUE1
destroy QUEUE1
falloutctl -> RUNNER1: /shutdown
note right: shutdown gracefully: wait for all\nrunning testruns to complete
deactivate falloutctl
note over RUNNER1, DB: **TestRun A** continues to run\nwith updates sent to DB
admin -> falloutctl++: start-with-runner
falloutctl -> QUEUE2**: start new QUEUE process
falloutctl <-- QUEUE2: write pid to file
falloutctl -> RUNNER2**: start new RUNNER process
falloutctl <-- RUNNER2: write pid to file
deactivate falloutctl
QUEUE2 -> RUNNER2: connect to /status feed
RUNNER1 -> DB: update **TestRun A**
deactivate RUNNER1
RUNNER1 -> RUNNER1: all testruns complete:\nexit process
destroy RUNNER1
@enduml
| false | true | false | false | sequence |
e15c5cbdf3a5e07540a149b8415973f7a13899ee | 7e54066ce2b980f64d5d89c67a2c6d1b054dd689 | /docs/wallet-manager/wallet-msc.plantuml | 7386e12a9514c3b380d0b80dee3ab3c47dc941b8 | [] | no_license | reTHINK-project/dev-java-hyperty | 1da1a59e8213794b7d446c855581ea6e9921f7bb | 68ab9fb39042d49b682b8ea044561c408b0a4a3c | refs/heads/master | 2022-12-13T05:20:07.877512 | 2019-06-28T11:12:05 | 2019-06-28T11:12:05 | 122,315,782 | 0 | 0 | null | 2022-12-08T07:36:54 | 2018-02-21T09:26:00 | Java | UTF-8 | PlantUML | false | false | 983 | plantuml | @startuml
participant "Javascript Wallet Hyperty" as walletO
box "Vertx P2P Stub"
participant "Subscription Manager" as sm
participant "Wallet Reporter" as walletR
participant reporter
end box
box "Vertx Wallet Manager"
participant "Manager" as man
participant "Wallet" as wallet
end box
walletO -> sm : request to create wallet
activate sm
sm -> man : request to create wallet
activate man
man -> man : create()
man -> sm : create wallet
activate sm
sm -> reporter : create()
reporter -> walletR : create()
man <-- sm : 200 ok
deactivate sm
man -> wallet : new
sm <-- man : 200 ok response with wallet address
deactivate man
sm -> walletO : 200 ok response with wallet address
deactivate sm
walletO -> walletR: subscribe
activate walletR
walletO <- walletR: 200 ok
deactivate walletR
...
wallet <- : wallet transfer
wallet -> reporter : update wallet with new transaction
reporter -> walletR : addNewTransaction()
walletR -> walletO : update
@enduml
| false | true | false | false | sequence |
fa076f63702e5193c3155b8e8cc0b7204043c229 | 76cd9c5a65bcc30dfb913e149a76bec870952e91 | /uml/DAOImpl.puml | fdc34f85b6843bfc090db0f2709ca936e48ff63e | [] | no_license | GPS-A-D-2105/API-PERSISTENCIA | fe16df84af6deb3cc24c7f3118dcf6b1589798a2 | 7a941becbb0b5ee142d3c48fd397b605d4632e7b | refs/heads/master | 2021-01-10T17:33:21.427307 | 2015-12-08T07:23:58 | 2015-12-08T07:23:58 | 44,888,139 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,779 | puml | @startuml
interface DataAccessObject<E, Id>{
+{abstract}persistir(E e) : boolean
+{abstract}actualizar(E e) : boolean
+{abstract}eliminar(E e) : boolean
+{abstract}buscarPorId(Id id) : E
+{abstract}buscarPorRangos(offset : int, limite : int) : List<E>
+{abstract}buscarTodos() : List<E>
+{abstract}contar() : int
+{abstract}cerrar() : void
}
interface ComentarioDAO
interface CarreraDAO
interface MaestroDAO{
+{abstract} buscarPorMateria(idMateria: Object) : List<Maestro>
}
interface MateriaDAO{
+{abstract} buscarMateriasPorCarrera(idCarrera: Object) : List<Materia>
}
abstract class GenericJPAImpl<E>{
-clase : Class<E>
-emf : EntityManagerFactory
-em : EntityManager
-{static}PERSISTENCE_UNIT : String
+persistir(E e) : boolean
+actualizar(E e) : boolean
+eliminar(E e) : boolean
+buscarPorId(Id id) : E
+buscarTodos(offset : int, limite : int) : List<E>
+buscarPorId(Id id) : E
+buscarPorRangos(offset : int, limite : int) : List<E>
+buscarTodos() : List<E>
+contar() : int
+cerrar() : void
}
class ComentarioJPAImpl
class CarreraJPAImpl
class MaestroJPAImpl{
+buscarPorMateria(idMateria: Object) : List<Maestro>
}
class MateriaJPAImpl{
+buscarMateriasPorCarrera(idCarrera: Object) : List<Materia>
}
hide interface
DataAccessObject <|-- GenericJPAImpl
DataAccessObject <|-- ComentarioDAO
DataAccessObject <|-- CarreraDAO
DataAccessObject <|-- MaestroDAO
DataAccessObject <|-- MateriaDAO
GenericJPAImpl <|-- ComentarioJPAImpl
GenericJPAImpl <|-- CarreraJPAImpl
GenericJPAImpl <|-- MaestroJPAImpl
GenericJPAImpl <|-- MateriaJPAImpl
ComentarioDAO <|-- ComentarioJPAImpl
CarreraDAO <|-- CarreraJPAImpl
MaestroDAO <|-- MaestroJPAImpl
MateriaDAO <|-- MateriaJPAImpl
@enduml | false | true | false | false | class |
3474c19c98547497514ebd1c6dbbd115c8c037f8 | 9247214a324a808abf381d67a96c38c36644ab74 | /plantUML/object.puml | c9c2a9d3f7acae884bfa5baba7621991ce43e28d | [] | no_license | samuellleow/tp | 15240052af24526ef5ae8cbfa0ec593a9002a721 | 8aa6cf81b2264507f61eafa55b0887c113d3b1e4 | refs/heads/master | 2023-01-07T16:51:11.230982 | 2020-11-13T15:47:10 | 2020-11-13T15:47:10 | 300,105,905 | 0 | 0 | null | 2020-10-01T01:25:59 | 2020-10-01T01:25:58 | null | UTF-8 | PlantUML | false | false | 536 | puml | @startuml
object Parser
object projects
object teamMembers
object tasks
object TaskCommand
object ProjectCommand
object TeamMemberCommand
object otherCommands
TaskCommand <|-- Parser
ProjectCommand <|-- Parser
TeamMemberCommand <|-- Parser
otherCommands <|-- Parser
projects <|- TaskCommand
projects <|- ProjectCommand
projects <|- TeamMemberCommand
projects <|- otherCommands
teamMembers <|--- TaskCommand
teamMembers <|--- ProjectCommand
teamMembers <|--- TeamMemberCommand
teamMembers <|--- otherCommands
tasks *-- projects
@enduml
| false | true | false | false | class |
cf1e9ed52f127ca8c57bb5b36d08c5404bb7ee35 | 8065df92f80f5d95973f297566dec83247ed3827 | /docs/diagrams/BinaryTreeIsLeafSequence.puml | 1f7db7922a83e1ee374aa0fe74efc8f31c5509f8 | [] | no_license | sevenseasofbri/tp | 6661a957f74abd3c7008de259e5f5d5292efa65f | 818fe81dc09436a485aec5bd868ee8bc545dd7c1 | refs/heads/master | 2023-01-07T00:02:47.414093 | 2020-11-09T10:58:36 | 2020-11-09T10:58:36 | 299,066,891 | 1 | 0 | null | 2020-09-27T15:58:45 | 2020-09-27T15:58:44 | null | UTF-8 | PlantUML | false | false | 256 | puml | @startuml
box Logic
participant ":BooleanTemplate" as BooleanTemplate
end box
box Model
participant ":BinaryTree" as BinaryTree
end box
autoactivate on
BooleanTemplate -> BinaryTree : isLeaf(1)
opt non-null node AND null children
return true
end
@enduml | false | true | false | false | sequence |
17a8669b583e42ea54ede653206280f8285565d1 | 6b6249e9c81725f34dd0c78b32360df05a2eb1eb | /architecture.puml | fe22a75205ab7318228a063b891feadfb57f1185 | [
"Apache-2.0",
"CC-BY-4.0"
] | permissive | accordproject/markdown-transform | 1a00158f29dc1bb2959ece2d684d32df2c5cefa6 | 1885c1aff158731db4df3cd02faa8645eeacd23e | refs/heads/main | 2023-08-16T18:59:26.407801 | 2023-08-11T08:43:59 | 2023-08-11T08:43:59 | 200,077,828 | 64 | 75 | Apache-2.0 | 2023-08-11T08:44:01 | 2019-08-01T15:42:01 | JavaScript | UTF-8 | PlantUML | false | false | 943 | puml | @startuml
package "markdown-cli" {
[parse]
}
package "markdown-common" {
[Markdown String] <-up-> [CommonMark DOM]
[CommonMark DOM] -right-> [Plain Text String]
}
note left of [CommonMark DOM]
https://models.accordproject.org/commonmark/markdown.html
end note
note right of [Markdown String]
Markdown formatted text uses the
well-defined commonmark.org parser
and syntax
end note
package "markdown-cicero" {
[CommonMark DOM] <-up-> [CiceroMark DOM]
}
note left of [CiceroMark DOM]
https://models.accordproject.org/ciceromark/ciceromark.html
end note
package "markdown-slate" {
[CiceroMark DOM] <-up-> [Slate DOM]
}
note left of [Slate DOM]
Slate is an HTML rich-text editor
https://www.slatejs.org
end note
package "markdown-html" {
[CiceroMark DOM] <-up-> [HTML String]
}
package "markdown-docx" {
[CiceroMark DOM] <-- [DOCX File]
}
package "markdown-pdf" {
[CiceroMark DOM] <-- [PDF File]
}
@enduml | false | true | false | false | class |
88ae146c4166d069795ff5e1159b017d73a6165c | f1413623ce449fba0d374712c7de4b48f986f69e | /BarnameRizi.plantuml | a7a1e8aeb374b44beb366c189859da3d822f2eb8 | [] | no_license | MohGanji/OO-ClassDiagram-Project | 6bb13390ed5f25d7649422c294d8e93699258d18 | 30a8b0df41eeb1c68ed561693cbc99aad91a79a2 | refs/heads/master | 2020-05-17T19:17:49.066110 | 2019-07-29T09:35:38 | 2019-07-29T09:35:38 | 183,911,459 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,050 | plantuml | @startuml
' skinparam Monochrome true
skinparam roundcorner 8
' skinparam interface {
' backgroundColor RosyBrown
' borderColor orange
' }
' skinparam component {
' FontSize 13
' BackgroundColor<<Apache>> Red
' BorderColor<<Apache>> #FF6655
' FontName Courier
' BorderColor black
' BackgroundColor gold
' ArrowFontName Impact
' ArrowColor #FF6655
' ArrowFontColor #777777
' }
skinparam class {
BackgroundColor #C0C0C0
ArrowColor black
BorderColor IndianRed
}
skinparam stereotypeCBackgroundColor gold
skinparam stereotypeIBackgroundColor AntiqueWhite
skinparam stereotypeABackgroundColor yellow
title \n1.1 - Design level Class Diagram\n
class CourseTypeEnum <<enumeration>> {
theory
practical
}
class DayOfWeek <<enumeration>> {
Sat
Sun
Mon
Tue
Wed
Thu
Fri
}
class College <<enumeration>> {
ece
centeralCollegeOfEngineering
}
class EducationalTerm <<enumeration>> {
Fall
Winter
}
class MojavezState <<enumeration>> {
Rejected
Accepted
Pending
}
class EnteranceYear {
- string year
}
EnteranceYear o-left- EducationalTerm
class Person {
- String firstName
- String lastName
- String phoneNumber
- String nationalCode
}
Person <|- Student
Person <|- Professor
Person <|- MasoulAmoozesh
class Student {
- String sid
}
Student o-- EnteranceYear
class Professor {
- String pid
}
class MasoulAmoozesh {
}
package Schedule <<Folder>> {
' Reshte
class Major {
- string name
}
' Gerayesh
class Field {
- string name
}
Field "*" -- "1" Major
' dars
class Course {
' .. fields ..
- String name
- Number vahed
' .. getters ..
' .. setters ..
' .. methods ..
}
Course "1" o-- "*" Niaz : Pishniaz
Course "1" o-- "*" NiazDarsi : Hamniaz
Course o-right- CourseTypeEnum : courseType
class CourseTermi {
- String year
- String term
}
CourseTermi "*" *---- "1" Course
CourseTermi "*" o-- "*" Professor : professor
CourseTermi "*" o-- "*" Student : students
CourseTermi "1" o-- "1" WeeklyTimeSlot
CourseTermi "1" o-- "1" College : presentationCollege
class WeeklyTimeSlot {
- Time startTime
- Time endTime
}
WeeklyTimeSlot <-- DayOfWeek : weekDay
abstract class Niaz {
}
class NiazDarsi {
}
Niaz <|-down- NiazDarsi
class NiazVahedi {
}
Niaz <|-down- NiazVahedi
class Chart {
}
Chart "1" o-- "1" Field
Chart "*" o--- "*" Course
Chart "*" o-right- "1" EnteranceYear
}
package EntekhabVahed <<Folder>> {
abstract class AkhzCourseState {
}
class RegisteredCourseState {
}
AkhzCourseState <|-- RegisteredCourseState
class PendingCourseState {
}
AkhzCourseState <|-- PendingCourseState
class RegisteredCourse_HazfEzafe_State {
}
AkhzCourseState <|-- RegisteredCourse_HazfEzafe_State
class PendingCourse_HazfEzafe_State {
}
AkhzCourseState <|-- PendingCourse_HazfEzafe_State
class HazfEzterariCourseState {
}
AkhzCourseState <|-- HazfEzterariCourseState
class HazfPezeshkiCourseState {
}
AkhzCourseState <|-- HazfPezeshkiCourseState
abstract class AkhzCourseError {
}
class AdamReayatPishNiazError {
}
AkhzCourseError <|-up- AdamReayatPishNiazError
class KafAkhzVahedError {
}
AkhzCourseError <|-up- KafAkhzVahedError
class SaqfAkhzVahedError {
}
AkhzCourseError <|-up- SaqfAkhzVahedError
class TadakholZamanClassError {
}
AkhzCourseError <|-up- TadakholZamanClassError
class TadakholZamanEmtehanError {
}
AkhzCourseError <|-up- TadakholZamanEmtehanError
class AkhzMojadadError {
}
AkhzCourseError <|-up- AkhzMojadadError
class EtmamZarfiatError {
}
AkhzCourseError <|-up- EtmamZarfiatError
class AkhzKarAmooziWithCourseError {
}
AkhzCourseError <|-up- AkhzKarAmooziWithCourseError
class DarkhastMojavez {
- String description
}
DarkhastMojavez o-- AkhzCourseError
DarkhastMojavez o-- MojavezState
class CourseAkhzShode {
}
CourseAkhzShode "*" o-- "1" CourseTermi
CourseAkhzShode "1" o-- "1" AkhzCourseState
CourseAkhzShode "1" o-- "*" DarkhastMojavez
class EntekhabVahedTerm {
- Number minVahed
- Number maxVahed
}
EntekhabVahedTerm "*" o-- "1" Student
EntekhabVahedTerm "1" o-- "*" CourseAkhzShode
class MojavezHandler {
}
MojavezHandler <-- AkhzCourseError
MojavezHandler <-- DarkhastMojavez
MasoulAmoozesh <-- MojavezHandler
class AkhzCourseHandler {
}
MasoulAmoozesh <-- AkhzCourseHandler
AkhzCourseHandler <-- CourseAkhzShode
}
' class CSVGradeBookParser {
' - filename : String
' + CSVGradeBookParser()
' + parse()
' }
' class FileHandler {
' {static} + contentType()
' + handle()
' }
' class GBServer {
' {static} + main()
' }
' class GradeBook {
' {static} - theGradeBook : GradeBook
' - students : Map<String, StudentInfo>
' {static} + gb()
' {static} + init()
' - GradeBook()
' + getItem()
' + getAll()
' + percentPassed()
' }
' interface GradeBookParser {
' {abstract} + parse()
' }
' class Page {
' - filename : String
' - attributes : Map<String, String>
' + Page()
' + subst()
' + writeTo()
' }
' class PercentPassed {
' + execute()
' }
' abstract class ServiceHandler {
' # params : Map<String, String>
' - extractParams()
' {abstract} + execute()
' + handle()
' }
' class ShowStudentInfo {
' + execute()
' }
' class StudentInfo {
' - name : String
' - scores : Map<String, Double>
' + StudentInfo()
' + setScore()
' + getName()
' + getScore()
' + getTotal()
' }
' class XMLGradeBookParser {
' - filename : String
' + XMLGradeBookParser()
' + parse()
' }
' CSVGradeBookParser --|> GradeBookParser
' FileHandler -up-|> HttpHandler
' PercentPassed -up-|> ServiceHandler
' ServiceHandler --|> HttpHandler
' ShowStudentInfo -up-|> ServiceHandler
' XMLGradeBookParser "1" *-up-> "1" StudentInfo
' XMLGradeBookParser .up.> StudentInfo : create
' CSVGradeBookParser .up.> StudentInfo : create
' GradeBook "1" *-up-> "*" StudentInfo
' GradeBook .up.> StudentInfo
' ShowStudentInfo .up.> StudentInfo
' GradeBookParser .up.> StudentInfo
' XMLGradeBookParser .left.> GradeBookParser
' CSVGradeBookParser .right.> GradeBookParser
' GradeBook .down.> GradeBookParser
' GBServer .up.> XMLGradeBookParser : create
' GBServer .up.> GradeBook
' GBServer .up.> PercentPassed
' GBServer .up.> ShowStudentInfo
' GBServer .up.> FileHandler
' PercentPassed .up.> GradeBook
' PercentPassed .down.> Page
' PercentPassed .up.> ServiceHandler
' ShowStudentInfo .up.> GradeBook : create
' ShowStudentInfo .down.> Page : create
' ShowStudentInfo .up.> ServiceHandler
footer
\n
endfooter
@enduml
| false | true | false | false | class |
b7ad10eb0f0267a324115dcbbdc6829fff414a55 | 4e2586435708420f782c03c1303da7219890941e | /docs/diagrams/PinCommand.puml | e78d4bf5484fa5dd79b4e56118cce7ea5b87a9a0 | [] | no_license | AY2021S1-CS2113-T13-1/tp | 720454016061d5dbc23067e4505e2eac87e04449 | 4345646e211cdaeed2dfdf2e691e334c2d8e32ad | refs/heads/master | 2023-01-19T13:31:58.992002 | 2020-11-10T12:57:57 | 2020-11-10T12:57:57 | 297,301,678 | 0 | 7 | null | 2020-11-10T12:57:58 | 2020-09-21T10:12:20 | Java | UTF-8 | PlantUML | false | false | 1,228 | puml | @startuml
hide footbox
participant ":NotUS" as NotUS
participant ":ParsePinCommand" as ParsePinCommand
participant ":PinCommand" as PinCommand
participant ":Notebook" as Notebook
participant ":StorageManager" as StorageManager
participant ":Note" as Note
create NotUS
activate NotUS
create ParsePinCommand
create StorageManager
activate StorageManager
create PinCommand
activate PinCommand
ParsePinCommand -> PinCommand : <<create>>
deactivate PinCommand
NotUS -> PinCommand: execute()
activate PinCommand
alt PinByIndex
PinCommand -> Notebook: getNotes()
activate Notebook
Notebook --> PinCommand: notes
deactivate Notebook
PinCommand -> Note: get(index)
activate Note
Note --> PinCommand: note
deactivate Note
else getNoteBytitle
ref over PinCommand, Notebook, Note: get Note using title
end
alt note does not exist
PinCommand --> NotUS: Unsuccesful
else
PinCommand -> Note: togglePinned
activate Note
Note --> PinCommand
deactivate Note
PinCommand -> StorageManager: saveAllNoteDetails (bool isArchive)
StorageManager --> PinCommand
PinCommand --> NotUS: note content + pinned status
deactivate PinCommand
end
destroy PinCommand
@enduml | false | true | false | false | sequence |
783c5c14219677fcd62528766a24e085f8659db0 | c5ffaaa249837c517061968c20270f2a87780afd | /Diagrams/isp.plantuml | 9458b3112bb2ffa12680cfe4c357ac25de89ba87 | [
"CC-BY-SA-3.0",
"MIT"
] | permissive | FrederikRothe/BDSA_Assignment4 | 08ed625d211d862716c9ee43aa22bd70cb1bf6c1 | a4279f1167077aa410817d42546354df0be29c78 | refs/heads/main | 2023-08-21T17:24:22.983104 | 2021-10-11T19:01:21 | 2021-10-11T19:01:21 | 412,414,131 | 0 | 0 | MIT | 2021-10-11T19:01:22 | 2021-10-01T09:58:56 | C# | UTF-8 | PlantUML | false | false | 717 | plantuml | @startuml
title Interface Segregation Principle - Bad
interface LargeInterface {
first()
second()
third()
}
class LargeClass {
first()
second()
third()
}
class SmallClass {
first()
second()
third()
}
LargeInterface <-- LargeClass
LargeInterface <-- SmallClass
@enduml
@startuml
title Interface Segregation Principle - Good
interface FirstInterface {
first()
}
interface SecondInterface {
second()
}
interface ThirdInterface {
third()
}
class LargeClass {
first()
second()
third()
}
class SmallClass {
second()
}
FirstInterface <-- LargeClass
SecondInterface <-- LargeClass
ThirdInterface <-- LargeClass
SecondInterface <-- SmallClass
@enduml | false | true | false | false | class |
238446f05b14aecddf766687f9241dcd9267bdbe | 7db21274a1313beb902efebbef605e4ed261efd9 | /notebooks/ljpy-sismic/statecharts_full.puml | 7a2c06f55ad30b64090ef080d452f832525af197 | [
"MIT"
] | permissive | drorspei/misc | df07c63aa5677419db982ab4a50bbf79546e08d9 | cd6aa009c9587b485d86ef5fdbdb119f566c9b0c | refs/heads/master | 2023-04-12T23:00:54.009014 | 2023-03-17T15:24:26 | 2023-03-17T15:24:26 | 176,116,260 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,319 | puml | @startuml
title State Chart for Realz
state "LightAndFanSwitch" as LightAndFanSwitch {
[*] --> NoPower
state "HasMemory" as HasMemory {
[*] --> WithPower
state "JustTurnedOff" as JustTurnedOff {
JustTurnedOff --> historystate : flick
JustTurnedOff --> NoPower : [after(2)]
}
state "WithPower" as WithPower {
[*] --> Components
WithPower --> JustTurnedOff : flick
state "Components" as Components {
state "Fan" as Fan {
[*] --> FanOff
Fan --> FanOff : remotePressedFanOff
Fan --> FanLow : remotePressedLow
Fan --> FanMed : remotePressedMed
Fan --> FanHi : remotePressedHi
state "FanHi" as FanHi {
}
state "FanMed" as FanMed {
}
state "FanLow" as FanLow {
}
state "FanOff" as FanOff {
}
}
--
state "Light" as Light {
[*] --> LightOn
state "LightOff" as LightOff {
LightOff --> LightOn : remotePressedLightON
}
state "LightOn" as LightOn {
LightOn --> LightOff : remotePressedLightOff
}
}
}
state "H*" as historystate {
}
}
}
state "NoPower" as NoPower {
NoPower --> HasMemory : flick
}
}
@enduml | false | true | false | false | sequence |
1b48e72db8a8d7fffcfd16fa4bd835bbf6798cbf | b5a7524951e67f5be0c965ac71e9f817b51c9399 | /docs/uml/bedrock-classes.puml | 1ba0d4904eb3a41d97460ea3219667bb16fa3187 | [
"MIT"
] | permissive | roots/wp-config | 8a61a2662d08db5545a085c18f19b02fa6c12ec7 | a26c7d274b76397a99faa4e8d8d981b5536a24cb | refs/heads/master | 2022-04-30T03:32:00.247278 | 2022-03-18T05:04:18 | 2022-03-18T05:04:18 | 143,754,413 | 45 | 12 | null | 2021-04-29T02:06:37 | 2018-08-06T16:23:16 | PHP | UTF-8 | PlantUML | false | false | 489 | puml | @startuml
class Config {
-{static} $configMap:array
__
..important..
+{static} define(key : string, value):void
+{static} apply():void
..misc..
+{static} get(key : string):mixed
+{static} remove(key : string):void
-{static} defined(key : string):bool
}
package exceptions {
class ConstantAlreadyDefinedException
class UndefinedConfigKeyException
RuntimeException <|-- ConstantAlreadyDefinedException
RuntimeException <|-- UndefinedConfigKeyException
}
@enduml
| false | true | false | false | class |
1ee6d66eeb06f88728803d3b903ffcc804a92674 | d3a876dfe2851c165719340252ac30e60912f6e6 | /bg-manager/bg-designPattern/src/main/java/com/mhm/action/observer/Observer.puml | 0f67156b78e31ebaf3358d9796b98eb839fff865 | [] | no_license | 289562326/bigdata_mhm | 846af37dbc8a00580b3c0424f1cebc21d659c672 | 210636d2ea350c0228deccf1485d3d1a6eb4a39c | refs/heads/master | 2022-07-10T14:41:56.081002 | 2021-04-29T11:33:58 | 2021-04-29T11:33:58 | 190,759,465 | 0 | 0 | null | 2022-06-17T03:33:35 | 2019-06-07T14:42:09 | Java | UTF-8 | PlantUML | false | false | 415 | puml | @startuml
Observer <|.. ConcreteObserver
Observer <-- PropertiesSubject
PropertiesSubject <|-- ServerSubject
class Observer{
+update()
}
class ConcreteObserver{
+update()
}
abstract class PropertiesSubject{
-Vector<Observer> map
+addObserver(Observer observer)
+deleteObserver(Observer observer)
+notifyObservers();
}
abstract class ServerSubject{
+modifyProperties():void
}
@enduml | false | true | false | false | class |
1d4b0fc4275db275e3bafa4dfc32e0f463cbce2d | 08bae0d624d84f5e383b172b423e0c4d6077f63a | /UML/Activity启动流程/不同进程/no1_startActivity_to_schedulePauseActivity.puml | 515e6f4cb91c2ab6674ff4a77263288c87db1584 | [] | no_license | kishimotoindb/AndroidUMLProject | 1992c5d430bc667735ab8bee9e6e3129a576456c | fc05dd0c2065d66b3f5c2d177e7506cb1fe7439b | refs/heads/master | 2020-04-05T17:58:43.346482 | 2018-12-02T04:35:10 | 2018-12-02T04:35:10 | 157,083,654 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,977 | puml | @startuml
participant "Activity\n(Source)" as a
participant "Instrumentation\n(Source)" as instrument
participant "ActivityThread\n(Source)" as at1
participant "ApplicationThread\n(Source)" as apt1
participant "ApplicationThreadNative\n(Source)" as atn1
participant "ActivityManagerProxy\n(Source)" as amp1
boundary "Activity(Source)-AMS"
participant "ApplicationThreadProxy\n(Source)" as atp1
participant ActivityManagerService as ams
participant ActivityStackSupervisor as ass
participant ActivityStack as as
participant "ApplicationThreadProxy\n(Target)" as atp2
boundary "AMS-Activity(Target)"
participant "ActivityManagerProxy\n(Target)" as amp2
participant "ApplicationThreadNative\n(Target)" as atn2
participant "ApplicationThread\n(Target)" as apt2
participant "ActivityThread\n(Target)" as apt2
participant "Activity\n(Target)" as b
boundary process
participant Zygote as zygote
participant Process as proc
-> a: startActivity
activate a
a->a: startActivityForResult
activate a
a->instrument:execStartActivity
activate instrument
deactivate a
deactivate a
instrument->amp1:startActivity
activate amp1
amp1->ams:startActivity
deactivate instrument
activate ams
ams->ams:startActivityAsUser
deactivate amp1
activate ams
ams->ass:startActivityMayWait
activate ass
deactivate ams
deactivate ams
ass->ass:startActivityLocked
activate ass
ass->ass:startActivityUncheckedLocked
activate ass
ass->as:startActivityLocked
activate as
deactivate ass
deactivate ass
deactivate ass
as->ass:resumeTopActivitiesLocked
activate ass
deactivate as
ass->as:resumeTopActivitiesLocked
activate as
deactivate ass
as->as:resumeTopActivityInnerLocked
activate as
as->as:startPausingLocked
activate as
as->atp1:schedulePauseActivity
activate atp1
deactivate as
deactivate as
deactivate as
atp1->atn1:onTransact
activate atn1
deactivate atp1
atn1->apt1:schedulePauseActivity
activate apt1
deactivate atn1
apt1->at1: sendMessage(PauseActivity)
deactivate apt1
@enduml | false | true | false | false | sequence |
811638c3434490411e4d85df854758b3f4d9b8c1 | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/order/permutaions_46/permutaions_46.plantuml | af738d4064c776c65a04543d01ce1319d5dd9344 | [] | no_license | shuile/LeetCode | 8b816b84071a5338db1161ac541437564574f96a | 4c12a838a0a895f8efcfbac09e1392c510595535 | refs/heads/master | 2023-08-17T04:53:37.617226 | 2023-08-15T16:18:46 | 2023-08-15T16:18:46 | 146,776,927 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 509 | plantuml | @startuml
title __PERMUTAIONS_46's Class Diagram__\n
namespace cn.shui.order {
namespace permutaions_46 {
class cn.shui.order.permutaions_46.Solution {
{static} + main()
{static} - permute()
{static} - permuteItem()
{static} - swap()
}
}
}
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 |
11e327842f0fc124f23554d4fc8afbada612c02d | bf49d55ccb1e5a55ad63de65366e8874f2258d94 | /Digital_House-Certified_Tech_Developer/Backend_I/Template_method_pattern/Pizzería/src/Pizzería.puml | 093dd419a2a34b8e41aadadee1a70057b29dea8e | [] | no_license | hfelipeserna/hfelipeserna.github.io | 339f18c116db2738c3e093b748f7c9d746ad1eb5 | 9b643803f672bf4b34add22644919198e50da06d | refs/heads/main | 2023-09-03T19:09:33.411053 | 2021-10-26T14:23:59 | 2021-10-26T14:23:59 | 359,453,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,039 | puml | @startuml
'https://plantuml.com/class-diagram
'___________STYLES___________
title UML - Pizzería
skinparam classAttributeIconSize 0
skinparam backgroundColor White
skinparam RoundCorner 10
skinparam Shadowing true
skinparam class {
ArrowColor Black
BackgroundColor White
HeaderBackgroundColor Gray
BorderColor Black
FontColor White
FontSize 14
AttributeFontSize 12
}
skinparam object{
ArrowColor Black
BackgroundColor White
BorderColor Black
FontColor Black
FontSize 14
AttributeFontSize 12
}
skinparam note {
BackgroundColor LightYellow
BorderColor Black
}
'___________UML___________
abstract Cocinero{
+hacerpizza()
-prepararMasa()
-preCocinarMasa()
#{abstract} prepararIngredientes()
#{abstract} agregarIngredientes()
-cocinarPizza()
-empaquetarPizza()
}
class CocineroVeggie{
+prepararIngredientes()
+agregarIngredientes()
}
class CocineroNoVeggie{
+prepararIngredientes()
+agregarIngredientes()
}
Cocinero <|-- CocineroNoVeggie
Cocinero <|-- CocineroVeggie
@enduml | false | true | true | false | class |
cbfbe821a70ac15b57e8f65e24a8996649499120 | 45bbb603390e0e9668b24be2ff0b181238c341a7 | /src/main/java/utils/utils.plantuml | dd5fa04d87004ec2b6518e444df4fb1002dce909 | [] | no_license | Sirozha19862k18/ServiceTool | 4294cbbc9aa96a2fa03d00e39e9e8a994db4b7b6 | 91fd1178de34d2e417bedf726a6fc4893ce34b61 | refs/heads/master | 2022-07-07T20:09:44.799440 | 2020-04-10T18:17:06 | 2020-04-10T18:17:06 | 252,513,287 | 0 | 0 | null | 2022-06-21T03:07:32 | 2020-04-02T16:48:26 | Java | UTF-8 | PlantUML | false | false | 455 | plantuml | @startuml
title __UTILS's Class Diagram__\n
namespace utils {
class utils.HibernateSessionFactoryUtil {
{static} - sessionFactory : SessionFactory
{static} + getSessionFactory()
- HibernateSessionFactoryUtil()
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.