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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2c12c135ade3c79e0df2fdbfe43f23b4632b2c4f | 8cf018eb6de40017601592f1f125ea67d5de7086 | /docs/Solution/Service-Stack/Application-Development-Framework/Process.puml | acb83e3c8e14a5bfa6cc744b885bbd73a4a92d13 | [] | 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 | 317 | puml | @startuml
partition "Service-Stack/Application-Development-Framework" {
}
partition SubSystem #cccccc {
(*) --> "Create Project"
--> "Write Code"
}
partition "Service-Stack/Application-Development-Framework" {
"Write Code" --> "Test Code"
"Test Code" --> "Deploy Code"
"Deploy Code" --> (*)
}
@enduml
| false | true | false | false | activity |
865e16da59c4d40555e0993801596aa6fdaf4c31 | 2cd586389dbc7e67937e88ba81d8441d5dccbc45 | /uml/GUI_uml.puml | 9d570711d971fdb08b04b9384deae93929dbce75 | [] | no_license | xFebreze/Dussuau-cop3330-assignment4part2 | 56f52c9e60d04d6afcc471d1a856cf55f3986d7b | 4c834440325b3e4f452046a42b50ac433cb7c708 | refs/heads/master | 2023-06-16T12:50:18.987127 | 2021-07-15T03:26:49 | 2021-07-15T03:26:49 | 384,866,331 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 966 | puml | @startuml
'https://plantuml.com/class-diagram
class App{
main()
start()
}
class ItemController{
ItemList: List<Item>
TableView: ItemDisplay
TextField: DescriptionField
DatePicker: DueDate
CheckBox: completeItems
CheckBox: incompleteItems
addItemButtonClicked()
removeItemButtonClicked()
clearItemsButtonClicked()
editItemDescriptionButtonClicked()
editItemDueDateButtonClicked()
markItemCompleteButtonClicked()
DisplayItemsButtonClicked()
SaveListButtonClicked()
LoadListButtonClicked()
HelpButtonClicked()
addItem()
removeItem()
clearItems()
editItemDescription()
editItemDueDate()
markItemComplete()
DisplayItems()
SaveList()
LoadList()
ReadFile()
alerts()
}
class Item{
Description: String
DueDate: String 'YYYY-MM-DD'
Completion: Boolean
constructors()
getters()
}
Item <-* ItemController
App *--> ItemController
@enduml | false | true | false | false | class |
ddff3dd0596a9bfa7ee9ceed27c10b3ad4b1a4a6 | 83e7e36f936f6f329518855c1da0d681db5f9de1 | /Lists/List.puml | 6f2402793cdfd2ac65ca235b14707f421839229f | [] | no_license | SupaGait/AlgorithmsTesting | 327497473fd9510a0321b3fa0bc7daeb0ff1a59b | 0450d2f7e100f2a3f95b7f1be3061b46e2bf11ee | refs/heads/master | 2021-01-10T15:51:25.188118 | 2016-02-22T16:48:32 | 2016-02-22T16:48:32 | 48,748,112 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 912 | puml | @startuml
abstract List<T>{
+ virutal ~List()
+ add(T element)
+ remove(uint position)
+ getAt(uint position) : T&
+ isEmpty() : bool
+ size(): uint
}
class ArrayList<T>{
- arrayData : uniquePtr<T>
- arraySize : uint
+ ArrayList(uint size)
}
note bottom of ArrayList
Array based implementation
- Elements are contiguously laid out in memory
- If more elements are added then the array can hold,
the array with elements is re-allocated
end note
class LinkedList<T>{
- head : Node<T>
- size : uint
}
note bottom of LinkedList
Dynamic based implementation
- Elements are possibly spread across memory
- Each added element is newly created in memory
end note
class Node<T>{
- previous : Node<T>
- next : Node<T>
- element : T
+ getElement() : T
+ setNext(Node<t>)
+ setPrevious(Node<t>)
}
List <|.. ArrayList
List <|.. LinkedList
LinkedList -> Node
@enduml | false | true | false | false | class |
8690fabea68902656a3d17079df5b2d92d3b3dab | 02b0d37dad8182bfbc5414bbd250f36c6e888b28 | /PlantUml/Scripts/Libs/Log.puml | 38913f77d97dd3a46ee50ad8ca4b81e23167d55e | [] | no_license | Darcy97/U3D_Libs | ee8b1afb4e4cdc99fd80ab404fc8171cf2181ca0 | cc6143112916cafa346a00bc1fab7841b7888444 | refs/heads/master | 2020-06-21T16:37:56.155301 | 2019-08-20T07:04:09 | 2019-08-20T07:04:09 | 197,504,293 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 278 | puml | @startuml
class Log {
+ {static} Print(message:string, details:string) : void
+ {static} Print(messageObj:Object, details:string) : void
+ {static} Error(message:string, details:string) : void
+ {static} Error(messageObj:Object, details:string) : void
}
@enduml
| false | true | false | false | class |
17c9f677dfa2876b73c8345ddfad18d86b60a577 | 049c380769758383f3b956c3b9c9b613ce3e3fb5 | /src/main/java/com/lzl/design_pattern/P_Mediator/Mediator.puml | c18ac9f26117dfbfbf3426caf4f334694cd56c61 | [] | no_license | lizanle521/springaop | 81ba30a8d646dd39b824d55d651e5503ff2d3c04 | f45bc79967d2f70a2443c586ba05acaae844e84b | refs/heads/master | 2022-12-21T21:41:15.513565 | 2019-07-01T15:51:51 | 2019-07-01T15:51:51 | 112,455,896 | 1 | 0 | null | 2022-10-04T23:50:10 | 2017-11-29T09:39:29 | Java | UTF-8 | PlantUML | false | false | 475 | puml | @startuml
interface Mediator
interface Colleague
Mediator <|.. LoginFrame
Colleague <|.. ColleagueButton
Colleague <|.. ColleagueTextField
Colleague <|.. ColleagueCheckBox
Button <|-- ColleagueButton
TextField <|-- ColleagueTextField
Checkbox <|-- ColleagueCheckBox
ColleagueButton o.. LoginFrame
ColleagueTextField o.. LoginFrame
ColleagueCheckBox o.. LoginFrame
ColleagueButton ..o LoginFrame
ColleagueTextField ..o LoginFrame
ColleagueCheckBox ..o LoginFrame
@enduml | false | true | false | false | class |
11b5f0fd8ce8799de285b0447579b337425b0c03 | d07e234bbdaa30c3c73189f55020dbe08174e613 | /docs/directed-graph.puml | e7dfd29dda2b6dadaa590de42381ba6fa2daa130 | [
"BSD-3-Clause"
] | permissive | the-matrix/finite-state-machine | e665a8d7ea3f63e3940b2cee91cd784296f9c63f | d850f034e840fc60cddadedc144d8d2498f68f1e | refs/heads/master | 2020-09-02T23:47:22.792278 | 2019-11-07T23:11:27 | 2019-11-07T23:11:27 | 219,333,977 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 101 | puml | @startuml
title Simple directed graph
state A
state B
state C
A --> B
B --> C
C --> A
@enduml | false | true | false | false | state |
7a0c9b1ace240ff2eb2f7acfda60ce999327c5db | f6e8d9ffb0fbe22f284a9771933ad71a3538ac49 | /Diagrams/SequenceDiagrams/seq-reject-2.2.0.plantuml | 69432a1f3e4608d571a70028fd7006f8e700dcef | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | mDuo13/docs-1 | 2b734c7d927e6e7c9714320c6c3c5ef2b49d76b5 | b2b18663510b0bc92a3c8e8768adc8be0e21cd91 | refs/heads/master | 2020-04-30T13:06:06.901776 | 2019-03-14T11:26:50 | 2019-03-14T11:26:50 | 176,845,744 | 0 | 0 | null | 2019-03-21T01:31:09 | 2019-03-21T01:31:08 | null | UTF-8 | PlantUML | false | false | 6,584 | plantuml | /'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
* Georgi Georgiev <georgi.georgiev@modusbox.com>
--------------
******'/
@startuml
' declate title
title 2.2.0. DFSP2 sends a Fulfil Reject Transfer request
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' collections - Kafka Topics
' control - Kafka Consumers
' entity - Database Access Objects
' database - Database Persistance Store
' declare actors
actor "DFSP1\nPayer" as DFSP1
actor "DFSP2\nPayee" as DFSP2
boundary "ML API Adapter" as MLAPI
control "ML API Notification Event Handler" as NOTIFY_HANDLER
boundary "Central Service API" as CSAPI
collections "Fulfil-Topic" as TOPIC_FULFIL
control "Fulfil Event Handler" as FULF_HANDLER
collections "topic-transfer-position" as TOPIC_TRANSFER_POSITION
control "Position Event Handler" as POS_HANDLER
collections "Event-Topic" as TOPIC_EVENTS
collections "Notification-Topic" as TOPIC_NOTIFICATIONS
box "Financial Service Providers" #lightGray
participant DFSP1
participant DFSP2
end box
box "ML API Adapter Service" #LightBlue
participant MLAPI
participant NOTIFY_HANDLER
end box
box "Central Service" #LightYellow
participant CSAPI
participant TOPIC_FULFIL
participant FULF_HANDLER
participant TOPIC_TRANSFER_POSITION
participant TOPIC_EVENTS
participant POS_HANDLER
participant TOPIC_NOTIFICATIONS
end box
' start flow
activate NOTIFY_HANDLER
activate FULF_HANDLER
activate POS_HANDLER
group DFSP2 sends a Fulfil Reject Transfer request
DFSP2 <-> DFSP2: Retrieve fulfilment string generated during\nthe quoting process or regenerate it using\n**Local secret** and **ILP Packet** as inputs
note right of DFSP2 #lightblue
**Note**: In the payload for PUT /transfers/<ID>
only the **transferState** field is **required**
end note
note right of DFSP2 #yellow
Headers - transferHeaders: {
Content-Length: <Content-Length>,
Content-Type: <Content-Type>,
Date: <Date>,
X-Forwarded-For: <X-Forwarded-For>,
FSPIOP-Source: <FSPIOP-Source>,
FSPIOP-Destination: <FSPIOP-Destination>,
FSPIOP-Encryption: <FSPIOP-Encryption>,
FSPIOP-Signature: <FSPIOP-Signature>,
FSPIOP-URI: <FSPIOP-URI>,
FSPIOP-HTTP-Method: <FSPIOP-HTTP-Method>
}
Payload - transferMessage:
{
"fulfilment": <IlpFulfilment>,
"completedTimestamp": <DateTime>,
"transferState": "ABORTED",
"extensionList": {
"extension": [
{
"key": <string>,
"value": <string>
}
]
}
}
end note
note right of DFSP2 #lightgray
**Note**: Payee rejection reason should be captured
in the extensionList within the payload.
end note
DFSP2 -> MLAPI: **PUT - /transfers/<ID>**
activate MLAPI
MLAPI -> MLAPI: Validate incoming token and originator matching Payee
note right of MLAPI #yellow
Message:
{
id: <ID>,
from: <transferHeaders.FSPIOP-Source>,
to: <transferHeaders.FSPIOP-Destination>,
type: application/json,
content: {
headers: <transferHeaders>,
payload: <transferMessage>
},
metadata: {
event: {
id: <uuid>,
type: fulfil,
action: reject,
createdAt: <timestamp>,
state: {
status: "success",
code: 0
}
}
}
}
end note
MLAPI -> TOPIC_FULFIL: Route & Publish Fulfil event for Payee
activate TOPIC_FULFIL
TOPIC_FULFIL <-> TOPIC_FULFIL: Ensure event is replicated as configured (ACKS=all)
TOPIC_FULFIL --> MLAPI: Respond replication acknowledgements have been received
deactivate TOPIC_FULFIL
MLAPI --> DFSP2: Respond HTTP - 200 (OK)
deactivate MLAPI
TOPIC_FULFIL <- FULF_HANDLER: Consume message
ref over TOPIC_FULFIL, TOPIC_EVENTS: Fulfil Handler Consume (Reject/Abort) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-reject-2.2.1.svg 2.2.1.]]} \n
FULF_HANDLER -> TOPIC_TRANSFER_POSITION: Produce message
|||
TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume message
ref over TOPIC_TRANSFER_POSITION, TOPIC_NOTIFICATIONS: Position Handler Consume (Reject) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-position-1.3.3-abort.svg seq-position-1.3.3-abort]]} \n
POS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message
|||
TOPIC_NOTIFICATIONS <- NOTIFY_HANDLER: Consume message
opt action == 'reject'
|||
ref over DFSP1, TOPIC_NOTIFICATIONS: Send notification to Participant (Payer) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-prepare-1.1.4.a.svg 1.1.4.a.]]} \n
NOTIFY_HANDLER -> DFSP1: Send callback notification
end
|||
end
activate POS_HANDLER
activate FULF_HANDLER
activate NOTIFY_HANDLER
@enduml
| false | true | true | false | usecase |
da6b6ccc8bbe06399fde424f1c3f6953258cbf0f | 91cc372e0ac19fe7dd67f5c712801de341d975b8 | /uml/keb 208/data.puml | 7948cd6f4e7c765d3f6433e94dc318f5134c080b | [] | no_license | Alser69rus/A3135 | 76d62eb826d22e96da22774d9210927c4f7a397d | c06155783a1ffa8ff79f746edf441c6df1e82f2f | refs/heads/master | 2022-12-07T12:10:41.344543 | 2020-08-30T14:51:52 | 2020-08-30T14:51:52 | 291,405,161 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 358 | puml | @startuml
class Fill{
t1:datetime
t2:datetime
empty:bool=True
time()
text()
result()
start()
stop()
reset()
}
class Junctions{
empty:bool=True
success()
fail()
reset()
text()
result()
}
class Empty{
t1:datetime
t2:datetime
empty:bool=True
time()
text()
result()
start()
stop()
reset()
}
class Keb{
}
Keb *-- Fill
Keb *-- Junctions
Keb *-- Empty
@enduml | false | true | false | false | class |
ea31c72427cc48ded7bac8d29f65d4e2630d61aa | 9e9676cdfe6aea6d2db11068ad34eda0c3376d56 | /deliveries/final/uml/adrenaline-gui.puml | 6a1323b0ec8efc4093fc9c0d307e107ca64b289e | [
"MIT"
] | permissive | slinkydeveloper/ing-sw-2019-guardiani-mucignat-lischio | 621f17a7631d6c8c3a2ec3b3a7443e76de47e565 | f985abed3a1f7e2c95ae7fa20dcab1870840d110 | refs/heads/master | 2022-12-26T02:14:57.116316 | 2019-07-05T09:49:41 | 2019-07-05T09:49:41 | 176,522,157 | 0 | 0 | MIT | 2020-10-13T13:22:31 | 2019-03-19T13:50:02 | HTML | UTF-8 | PlantUML | false | false | 3,521 | puml | @startuml
package com.adrenalinici.adrenaline.gui <<Folder>> {
class "GuiUtils"
class "GuiView"
}
package com.adrenalinici.adrenaline.gui.controller <<Folder>> {
class "ConnectMatchController"
class "DashboardCellController"
class "DashboardGamePaneController"
class "MainGamePaneController"
class "MyStatusGamePaneController"
class "OtherPlayersGamePaneController"
class "PlayerGamePaneController"
class "StartGuiController"
}
class "ConnectMatchController" {
portText : TextField
hostText : TextField
socketButton : Button
rmiButton : Button
matchesListView : ListView<String>
newMatchButton : Button
view : GuiView
matches : Map<String, Set<PlayerColor>>
registeredHandler : String
startingNewMatch : Boolean
initialize()
onConnectClicked(MouseEvent)
onStartNewMatchClicked(MouseEvent)
}
class "DashboardCellController" {
position : Label
players : HBox
content : Label
initialize()
}
class "DashboardGamePaneController" {
dashboardGridPane : GridPane
remainingSkullsLabel : Label
playerTurnLabel : Label
frenzyModeLabel : Label
playersKillTrackHBox : HBox
cellControllers : DashboardCellController[][]
initialize()
initializeView(DashboardChoice)
initializeView(LightGameModel, PlayerColor)
showGameInfo(LightGameModel)
updateCell(DashboardCellUpdatedEvent)
updateGameModel(GameModelUpdatedEvent)
updateTurnOfPlayer(PlayerColor)
}
class "GuiUtils"
class "GuiView" {
eventBus : ViewEventBus
networkAdapterThread : Thread
adapter : ClientNetworkAdapter
startNetworkAdapter()
stopNetworkAdapter()
}
class "MainGamePaneController" {
dashboardController : DashboardGamePaneController
thisPlayerController : MyStatusGamePaneController
otherPlayersController : OtherPlayersGamePaneController
view : GuiView
registeredHandler : String
firstUpdate : boolean
openedDialog : Dialog
initialize()
start()
}
class "MyStatusGamePaneController" {
playerColorLabel : Label
damagesGrid : GridPane
marksGrid : GridPane
pointsLabel : Label
timesKilledLabel : Label
yellowAmmoLabel : Label
redAmmoLabel : Label
blueAmmoLabel : Label
powerupHBox : HBox
gunsHBox : HBox
thisPlayer : PlayerColor
otherPlayers : List<PlayerColor>
dashboardCellPositions : List<Position>
view : GuiView
initialize()
initializeView(PlayerColor, LightGameModel)
update(PlayerDashboardUpdatedEvent)
}
class "OtherPlayersGamePaneController" {
otherPlayersVBox : VBox
playerGamePaneControllers : Map<PlayerColor, PlayerGamePaneController>
initialize()
initializePlayers(List<PlayerColor>, LightGameModel)
update(PlayerDashboardUpdatedEvent)
}
class "PlayerGamePaneController" {
playerColorLabel : Label
damagesGrid : GridPane
marksGrid : GridPane
pointsLabel : Label
timesKilledLabel : Label
initializePlayer(PlayerColor, LightGameModel)
updatePlayerInfo(List<PlayerColor>, List<PlayerColor>, int, int)
}
class "StartGuiController" {
startButton : Button
changeSceneRmiSocket(ActionEvent)
}
"ConnectMatchController" --> "GuiView" : view
"MainGamePaneController" --> "DashboardGamePaneController" : dashboardController
"MainGamePaneController" --> "GuiView" : view
"MainGamePaneController" --> "MyStatusGamePaneController" : thisPlayerController
"MainGamePaneController" --> "OtherPlayersGamePaneController" : otherPlayersController
"MyStatusGamePaneController" --> "GuiView" : view
"OtherPlayersGamePaneController" --> "PlayerGamePaneController" : playerGamePaneControllers
@enduml | false | true | false | false | sequence |
2edbffc7f37195f819a1fdaa8a647e2e767f96c0 | c6fa8545978b664ac557f530c9b0fab84780d450 | /Proxy/docs/img/Proxy_SD.puml | e61b07de57aae43e8caef058977f6f5153ff6cf4 | [] | no_license | rovany706/design-patterns | 1779eaf3fdea4b865d7160c46ba918fe0540342a | 79eb1e40ebe4e3eb5b3f00f7020bc5e85b0e8fc1 | refs/heads/master | 2020-12-14T15:35:25.922667 | 2020-04-15T09:02:51 | 2020-04-15T09:02:51 | 234,789,540 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 403 | puml | @startuml
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
}
activate Client
Client -> Proxy: Action()
activate Proxy
Proxy -> RealSubject: Action()
activate RealSubject
RealSubject --> Proxy: return
deactivate RealSubject
Proxy --> Client: return
deactivate Proxy
deactivate Client
@enduml | false | true | false | false | sequence |
8e107149dd27294b46eefeb554e7b02acf8a6f53 | 2d2271ce98f9a816cd76bbbb20f63cae940d2fc0 | /puml/flow.puml | eb11f75bc7d148173d4e4bb0efd5f86c8e1cd196 | [] | no_license | madvimer/csv2db-batch-ocp | c78460c80e90d74d29cfe199c73f55a58a3e8bc1 | 59f84e2adfd345af914cb3ae23e5a222d2c5f51d | refs/heads/master | 2021-09-14T05:33:18.289831 | 2018-05-08T17:42:02 | 2018-05-08T17:42:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,046 | puml | @startuml
actor Operator
collections openshiftAPI
collections kubejob_springjob_csv2db
collections kubejob_createcsv
database shared_pv
database postgreSQL
Operator -> openshiftAPI: create csv2db job
openshiftAPI -> kubejob_springjob_csv2db:instantiate()
activate kubejob_springjob_csv2db
kubejob_springjob_csv2db -> openshiftAPI: step 1: create kubejob_createcsv()
openshiftAPI -> kubejob_createcsv: runJob(createCsv)
activate kubejob_createcsv
kubejob_createcsv -> shared_pv: writeCsv
shared_pv -> kubejob_createcsv: done
kubejob_createcsv -> kubejob_createcsv: Exit(0)
kubejob_createcsv -> openshiftAPI: done
deactivate kubejob_createcsv
openshiftAPI -> kubejob_springjob_csv2db: done
kubejob_springjob_csv2db -> kubejob_springjob_csv2db: step 2: read/process/write
kubejob_springjob_csv2db -> shared_pv: read()
kubejob_springjob_csv2db -> kubejob_springjob_csv2db: process(transform)
kubejob_springjob_csv2db -> postgreSQL: writeRows()
kubejob_springjob_csv2db -> kubejob_springjob_csv2db: Exit(0)
deactivate kubejob_springjob_csv2db
@enduml | false | true | false | false | usecase |
f8060e734745ba973211e1a6f965111a7858cd9c | ffbc236cfbbda0b7af27e8f1626b8d538327d707 | /uml/sequence-diagrams/UC-16-BuildRuntimeImages-WP4.puml | 0aaa7d0faaeaffe3677e337a2c47e333f274d640 | [
"Apache-2.0",
"LicenseRef-scancode-free-unknown"
] | permissive | SODALITE-EU/project-wide-documentation | bd035fd455660368675843cdee74f86b8f685629 | 7a7b8ce76add1940c5f501ae2c2280ab47b939de | refs/heads/master | 2021-12-27T17:22:26.360944 | 2021-12-22T15:48:10 | 2021-12-22T15:48:10 | 225,436,822 | 3 | 3 | Apache-2.0 | 2021-12-22T15:49:03 | 2019-12-02T17:59:29 | null | UTF-8 | PlantUML | false | false | 1,900 | puml | @startuml
title Build Runtime Images (WP4)
'Define user actors
actor "Application\nOps Expert" as ops
participant "SODALITE IDE" as editor
participant "Semantic Reasoner" as reasoner
participant "Runtime Image\nBuilder " as SRIBC
participant "Concrete Image\nBuilder " as SCIBC
database "Image Registry " as SIIR
ops->editor: provide image-builder build JSON definition \n (source, build-context, access tokens)
activate editor
editor->SRIBC: BuildImages(json)
note over editor, SRIBC: this is activated when the user triggers the build of images in the IDE
activate SRIBC
loop ArtefactDefinition in ArtefactList
SRIBC->SCIBC: CreateConcreteImageBuilder(TargetArchitecture)
activate SCIBC
SRIBC->SCIBC: ConfigureBuildArtefactImage(ArtefactDefinition)
SCIBC->SCIBC: PreinstallMonitoring(BuildInfo)
SCIBC->SCIBC: BuildArtefactImage(BuildInfo)
SCIBC-->SRIBC: ArtefactImage(BuildInfo)
deactivate SCIBC
'Save the resulting IaC and recipes together with build time information (errors, warnings, information, improvement suggestions - all addressing the abstract model)
SRIBC->SIIR: SaveArtefactImage(ArtefactImage, ModelRef, NodeRef, BuildInfo)
activate SIIR
note over SCIBC, SIIR: Image is registered and retrievable\n through labels written on save\n(eg. ModelRef, NodeRef, version, etc.)
SIIR-->SRIBC: Image saved
deactivate SIIR
SRIBC->SRIBC: AddBuildInfoToList(BuildInfo)
end
'Return the reference to compile/build time information (errors, warnings, information, improvement suggestions - all addressing the abstract model)
SRIBC-->editor: BuildImagesInfoList(humanReadableForm)
deactivate SRIBC
opt
editor->editor: extract target images references
editor->reasoner: store the target images references (project/image-name)
end
editor-->ops: BuildImagesInfoList(humanReadableForm)
deactivate SRIBC
deactivate editor
@enduml
| false | true | false | false | usecase |
89fea30783f8c29d928aee97962d348c0702d563 | 95b53785927421f87a56eec40ba728efb86c3e9c | /2022-tavasz/rails-tanfolyam/first/er.plantuml | c85e0b7283b9f304a3f373b298a583b7f529ee61 | [] | no_license | kir-dev/tanfolyam | 725933f7b187a5df3295578e93765fc837a9d253 | c5ca0ed9393728af02a6d95c2a15cdf82b61eec0 | refs/heads/master | 2023-05-25T20:06:55.433094 | 2023-05-09T09:56:11 | 2023-05-09T09:56:11 | 16,394,462 | 4 | 1 | null | 2023-05-09T09:56:13 | 2014-01-30T23:31:52 | HTML | UTF-8 | PlantUML | false | false | 638 | plantuml | @startuml modell
!theme aws-orange
skinparam classFontSize 15
hide circle
class Jam {
+ int id
+ datetime date_of_creation
+ string recipient_name
}
class JamType {
+ int id
+ string name
}
Jam "0..*" --- "1" JamType
note right of Jam::id
Belső használatú id, a lekvárok egyszerű megkülömbözetésére
end note
note left of Jam::date_of_creation
A lekvár elkészítésének az ideje
end note
note right of Jam::recipient_name
Annak a neve akinek a lekvárt szánják
end note
note right of JamType::name
A típus neve, Pl: 'Barackos'
end note
@enduml | false | true | true | false | class |
c145837875a9ff9f101dd18e427f38f18e19e739 | dc6bc4b4d04aaedd50aaa703bfa05972a32239b0 | /openapi2puml-core/src/main/java/org/openapi2puml/openapi/plantuml/plantuml.plantuml | 229ec0bf3510959f5e798ae3ec555516a62ee208 | [
"Apache-2.0"
] | permissive | openapi2puml/openapi2puml | 1a4586b475b88e5c0f2f676fbf85895d6ab745d7 | db2886ffd2b3e4302c8647ce93a9a229391e912a | refs/heads/master | 2022-02-28T21:11:18.269239 | 2022-01-24T09:25:48 | 2022-01-24T09:25:48 | 203,056,881 | 7 | 6 | Apache-2.0 | 2022-01-24T09:25:49 | 2019-08-18T21:10:51 | Java | UTF-8 | PlantUML | false | false | 1,780 | plantuml | @startuml
title __PLANTUML's Class Diagram__\n
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.FormatUtility {
{static} + toTitleCase()
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.MustacheUtility {
{static} - LOGGER : Logger
+ createPlantUmlFile()
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.PlantUMLCodegen {
{static} ~ CLASS_DIAGRAMS : String
{static} ~ ENTITY_RELATIONS : String
{static} ~ INTERFACE_DIAGRAMS : String
{static} ~ TITLE : String
{static} ~ VERSION : String
{static} - LOGGER : Logger
- generateDefinitionModelOnly : boolean
- includeCardinality : boolean
- swagger : Swagger
- targetLocation : File
+ PlantUMLCodegen()
+ convertSwaggerToPlantUmlObjectModelMap()
+ generatePlantUmlFile()
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.PlantUMLGenerator {
{static} - LOGGER : Logger
+ PlantUMLGenerator()
+ transformOpenApi2Puml()
- generateUmlDiagramFile()
}
}
}
}
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 |
b9decd68a2a5f2e59b84876580d9172f629a8cb3 | 41f0b31b86edc1561e19ffc7f50350e18d7a985c | /generated/structurizr/structurizr-Containers.puml | 2b3d08957268ffbfa062bc6680ce22a29bce6a54 | [] | no_license | codersparks-old/wiki-plantuml-test | 8c464d2107d8de1736f891272999a6d53ec11575 | 09791abc62f6d68126da9512ce118cc7c31dbecf | refs/heads/main | 2023-01-25T02:44:45.418528 | 2020-12-10T11:48:40 | 2020-12-10T11:48:40 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,031 | puml | @startuml(id=Containers)
title Internet Banking System - Containers
skinparam {
shadowing false
arrowFontSize 10
defaultTextAlignment center
wrapWidth 200
maxMessageSize 100
}
hide stereotype
top to bottom direction
skinparam rectangle<<11>> {
BackgroundColor #438dd5
FontColor #ffffff
BorderColor #2E6295
}
skinparam rectangle<<1>> {
BackgroundColor #08427b
FontColor #ffffff
BorderColor #052E56
}
skinparam rectangle<<4>> {
BackgroundColor #999999
FontColor #ffffff
BorderColor #6B6B6B
}
skinparam rectangle<<5>> {
BackgroundColor #999999
FontColor #ffffff
BorderColor #6B6B6B
}
skinparam database<<18>> {
BackgroundColor #438dd5
FontColor #ffffff
BorderColor #2E6295
}
skinparam rectangle<<8>> {
BackgroundColor #438dd5
FontColor #ffffff
BorderColor #2E6295
}
skinparam rectangle<<9>> {
BackgroundColor #438dd5
FontColor #ffffff
BorderColor #2E6295
}
skinparam rectangle<<10>> {
BackgroundColor #438dd5
FontColor #ffffff
BorderColor #2E6295
}
rectangle "==E-mail System\n<size:10>[Software System]</size>\n\nThe internal Microsoft Exchange e-mail system" <<5>> as 5
rectangle "==Mainframe Banking System\n<size:10>[Software System]</size>\n\nStores all of the core banking information about customers, accounts, transactions, etc." <<4>> as 4
rectangle "==Personal Banking Customer\n<size:10>[Person]</size>\n\nA customer of the bank, with personal bank accounts." <<1>> as 1
package "Internet Banking System\n[Software System]" {
rectangle "==API Application\n<size:10>[Container: Java and Spring MVC]</size>\n\nProvides Internet banking functionality via a JSON/HTTPS API." <<11>> as 11
database "==Database\n<size:10>[Container: Oracle Database Schema]</size>\n\nStores user registration information, hashed authentication credentials, access logs, etc." <<18>> as 18
rectangle "==Mobile App\n<size:10>[Container: Xamarin]</size>\n\nProvides a limited subset of the Internet banking functionality to customers via their mobile device." <<9>> as 9
rectangle "==Single-Page Application\n<size:10>[Container: JavaScript and Angular]</size>\n\nProvides all of the Internet banking functionality to customers via their web browser." <<8>> as 8
rectangle "==Web Application\n<size:10>[Container: Java and Spring MVC]</size>\n\nDelivers the static content and the Internet banking single page application." <<10>> as 10
}
11 .[#707070].> 18 : "Reads from and writes to\n<size:8>[JDBC]</size>"
11 .[#707070].> 5 : "Sends e-mail using"
11 .[#707070].> 4 : "Makes API calls to\n<size:8>[XML/HTTPS]</size>"
5 .[#707070].> 1 : "Sends e-mails to"
9 .[#707070].> 11 : "Makes API calls to\n<size:8>[JSON/HTTPS]</size>"
1 .[#707070].> 9 : "Views account balances, and makes payments using"
1 .[#707070].> 8 : "Views account balances, and makes payments using"
1 .[#707070].> 10 : "Visits bigbank.com/ib using\n<size:8>[HTTPS]</size>"
8 .[#707070].> 11 : "Makes API calls to\n<size:8>[JSON/HTTPS]</size>"
10 .[#707070].> 8 : "Delivers to the customer's web browser"
@enduml | false | true | false | false | sequence |
53de88addef0b6b384cc5067d492cb975cf02de1 | a88c11df2c1189b6e651d85cf3dc2388f9fcfc95 | /diagrams/controller_state_diagram.plantuml | c1b4ac0f1b01d25d45311b6bff3c9ae45fad1eb7 | [] | no_license | TomSievers/EVD_Proj | cf6fcb6bfb3cca23a45fb434f8f5097d5aa56f4b | 19abc059668d86b1c4c0d4e93bd8acb38223a36e | refs/heads/develop | 2023-02-20T12:32:11.254938 | 2021-01-21T08:16:31 | 2021-01-21T08:16:31 | 293,806,246 | 0 | 0 | null | 2021-01-21T08:16:32 | 2020-09-08T12:39:05 | C++ | UTF-8 | PlantUML | false | false | 691 | plantuml | @startuml
[*] --> Setup
Setup -> Inactive : setup finished
Setup : On Entry / initialize detectors
Setup : On Do / search boundaries
Inactive -> Active : start recieved
Inactive : On Entry / set history state
Inactive : On Do / use UI controller
Active -> Inactive : stop recieved
Active : On Entry / set history state
Active : On Do / update aid
Calibrate --> [H] : calibrate finished
Calibrate : On Do / apply calibration
Calibrate : On Exit / save calibration
Active --> Calibrate : calibrate recieved
Inactive --> Calibrate : calibrate recieved
state Active {
[*] -> Waiting
Waiting -> Detecting : cue ball is steady
Detecting -> Waiting : cue ball is moving
}
@enduml | false | true | false | false | sequence |
9d75369d788bcfa02cace9f5fdde6f4abc92f2d6 | d3a876dfe2851c165719340252ac30e60912f6e6 | /bg-manager/bg-designPattern/src/main/java/com/mhm/struct/adapter/adapter.puml | 54f924227e756ac8ce0c9b98b367309c30c91a48 | [] | 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 | 324 | puml | @startuml
Target <|-- ConcreteTarget
Target <|-- Adapter
Adaptee <|-- Adapter
Adapter <|-- OjectAdapter
interface Target{
request():void
}
class Adaptee{
adpaterRequest():void
}
class ConcreteTarget{
request():void
}
class Adapter{
request():void
super.adpaterRequest()
}
class OjectAdapter{
request():void
}
@enduml | false | true | false | false | class |
a908fb4f9c2f71fbc033f6e68d965279f8918baa | 06b4f9b29e51db9eef79b9f9828f3aa369840ec1 | /Deliverables/Oblig3/src/main/java/map/map.plantuml | 761b82079ecef0b6a3324ffc7864157c6280b30f | [] | no_license | inf112-v19/Thebadguys | d650f57d5b23824e82498cfc55c7026d29a59762 | ec1cbbd1ab466b1482fb0a72b466f351481d4917 | refs/heads/master | 2020-04-19T11:14:13.465654 | 2019-05-03T17:29:09 | 2019-05-03T17:29:09 | 168,161,605 | 0 | 0 | null | 2019-03-08T14:24:40 | 2019-01-29T13:44:35 | Java | UTF-8 | PlantUML | false | false | 1,305 | plantuml | @startuml
title __MAP's Class Diagram__\n
package map {
class GameMap {
# tiles : IGrid<MapTile>
# x : int
# y : int
+ GameMap()
+ getCell()
+ getHeight()
+ getPlayerGold()
+ getPlayerHitPoints()
+ getWidth()
+ isPlaying()
+ movePlayer()
+ playerCanGo()
+ isValidPosition()
}
}
package map {
interface IGameMap {
{abstract} + getCell()
{abstract} + getHeight()
{abstract} + getPlayerGold()
{abstract} + getPlayerHitPoints()
{abstract} + getWidth()
{abstract} + isPlaying()
{abstract} + movePlayer()
{abstract} + playerCanGo()
}
}
package map {
enum MapTile {
WALL
OPEN
PLAYER
MONSTER
FLAG
LASER
CONVEYERBELT
EXPRESSCONVEYERBELT
GEAR
CHECKPOINT
REPAIRSITE
}
}
package map {
class MovePlayerException {
{static} - serialVersionUID : long
+ MovePlayerException()
}
}
GameMap -up-|> IGameMap
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 |
cb0b7ee9a8044bb477c7cc601a86e581b0de33be | 9135671486239cf7d362921b4454b58553f7ed24 | /heranca/bin/questionario/oo.puml | e7035f5ffa4520584b76d9a894700ca492872ec9 | [] | no_license | LucianoOliver/cursoJava | 8e326d436ba56684fb988fb01170d15764544330 | a5f44ddd503778a15bbb1f173f87bc310bc7b0e0 | refs/heads/master | 2020-03-27T21:15:15.889782 | 2019-04-15T16:58:35 | 2019-04-15T16:58:35 | 147,128,549 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 313 | puml | @startuml
package exercicio05 {
class Animal {
+ andar()
+ correr()
}
class Mamifero {
+ mamar()
}
class Cachorro {
+ latir()
}
class Gato {
+ miar()
}
Animal <|-- Mamifero
Mamifero <|-- Cachorro
Mamifero <|-- Gato
}
@enduml | false | true | false | false | class |
af6f4f00e2af524272016b973e95450cc83f0e1c | 9b3f205e4d2ede67bea3d0edd3d79dabb329df5e | /shepherd/uml.puml | 2507e57b5fbe6fce03b8406f3fc5b910b62275ba | [] | no_license | oatleals/ShepherdUI | 6f86724dc89c54f6c660bbd6d3efb62d4de540fc | a18d67ee26b94db23276108849a8874753186b49 | refs/heads/main | 2023-04-26T00:53:12.826243 | 2021-05-12T01:11:30 | 2021-05-12T01:11:30 | 375,797,524 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,724 | puml | @startuml
set namespaceSeparator ::
class "shepherd::UI::HomePage.dart::HomePage" {
+_HomePageState* createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "shepherd::UI::HomePage.dart::HomePage"
class "shepherd::UI::HomePage.dart::_HomePageState" {
+Widget* build()
+void showClockInDialog()
+void showClockOutDialog()
}
"flutter::src::widgets::framework.dart::State" <|-- "shepherd::UI::HomePage.dart::_HomePageState"
class "shepherd::UI::ClockOutForm.dart::ClockOutForm" {
+_ClockOutFormState* createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "shepherd::UI::ClockOutForm.dart::ClockOutForm"
class "shepherd::UI::ClockOutForm.dart::_ClockOutFormState" {
+Widget* build()
+void recursiveShowDialog()
}
"flutter::src::widgets::framework.dart::State" <|-- "shepherd::UI::ClockOutForm.dart::_ClockOutFormState"
class "shepherd::UI::ClockInForm.dart::ClockInForm" {
+_ClockInFormState* createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "shepherd::UI::ClockInForm.dart::ClockInForm"
class "shepherd::UI::ClockInForm.dart::_ClockInFormState" {
+Widget* build()
}
"flutter::src::widgets::framework.dart::State" <|-- "shepherd::UI::ClockInForm.dart::_ClockInFormState"
class "shepherd::domain_data::LocalDBContainer.dart::LocalDBContainer" {
+Database* localdb
+Future<void>* init()
+Future<void>* insert()
}
"shepherd::domain_data::LocalDBContainer.dart::LocalDBContainer" o-- "sqflite_common::sqlite_api.dart::Database*"
class "shepherd::domain_data::WorkData.dart::WorkData" {
+bool* isClockIn
+bool* isAuthenticated
+int* userId
+int* clientId
+int* clientPass
+double* time
+double* latitude
+double* longitude
+List<String*>* tasks
+Map<String*, dynamic>* stringObjMap()
+Map<String*, String*>* stringStringMap()
}
class "shepherd::location::LocationFinder.dart::LocationFinder" {
+Location* location
-bool* _serviceEnabled
-PermissionStatus* _permissionGranted
+LocationData* locationData
+Future<void>* getLocation()
}
"shepherd::location::LocationFinder.dart::LocationFinder" o-- "location::location.dart::Location*"
"shepherd::location::LocationFinder.dart::LocationFinder" o-- "location_platform_interface::location_platform_interface.dart::PermissionStatus*"
"shepherd::location::LocationFinder.dart::LocationFinder" o-- "location_platform_interface::location_platform_interface.dart::LocationData*"
class "shepherd::provider::GlobalState.dart::GlobalState" {
+bool* isClockedIn
+String* clientId
+String* userId
+LocalDBContainer* localdbContainer
+bool* backendIsVerifying
+int* numTasks
+List<TextEditingController*>* taskControllers
+String* clockButtonRoute
+Text* clockButtonText
+TextEditingController* clientIDController
+TextEditingController* clientPassController
+void clockIn()
+void clockOut()
+void newTask()
}
"shepherd::provider::GlobalState.dart::GlobalState" o-- "shepherd::domain_data::LocalDBContainer.dart::LocalDBContainer*"
"shepherd::provider::GlobalState.dart::GlobalState" o-- "flutter::src::widgets::text.dart::Text*"
"shepherd::provider::GlobalState.dart::GlobalState" o-- "flutter::src::widgets::editable_text.dart::TextEditingController*"
"flutter::src::foundation::change_notifier.dart::ChangeNotifier" <|-- "shepherd::provider::GlobalState.dart::GlobalState"
class "shepherd::main.dart::MyApp" {
+Widget* build()
}
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "shepherd::main.dart::MyApp"
class "shepherd::controllers::ClockController.dart::ClockController" {
{static} +Future<void>* clockIn()
{static} +Future<void>* clockOut()
{static} +void showProgressIndicator()
}
@enduml | false | true | false | false | class |
ec25aef6aa349d79c7bcbb5d3256a17c697302b4 | 32400b49f1a61a28e7f823f4760bb40b46a1b560 | /library-api.puml | a2dc90d6f150eb2c986265fd181e110434920a8d | [] | no_license | wanno-drijfhout/Nerds.Library | 864a3f6aef93d648161907e3a1b5eeda96805be0 | ad3d438421d97adb11c53acc3256b69b0cb6592c | refs/heads/master | 2020-05-19T14:01:09.060243 | 2019-05-05T16:01:13 | 2019-05-05T16:01:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,271 | puml | @startuml
class Organization {
+Name
}
Organization *-- Books.Book
Business.BookBusiness --* Organization
package Books
{
class Book {
#ID
+UniqueBarcode
}
Book -> BookTemplate
class BookTemplate {
#ID
}
BookTemplate --> Publication
BookTemplate --> Title
BookTemplate o--> Author
BookTemplate o--> Genre
class Author {
#ID
+Name
+DayOfBirth
+DayOfDeath
}
class Publication {
+ISBN10
+ISBN13
+PublicationDate
}
Publication --> Publisher
class Publisher {
#ID
+Name
}
class Genre {
#ID
+Caption
}
class Title {
#ID
+Caption
+Subcaption
}
}
package Business
{
class BookBusiness {
+GetAvailableBooks(DateTime, Customer) : Book[]
+Reserve(Book,Customer) : Reservation
+Return(Book,Customer) : Reservation
}
BookBusiness o--> Reservation
BookBusiness o--> Review
BookBusiness o--> Availability
Books.Book "*" <-o BookBusiness
Books.BookTemplate "1" <- BookBusiness
class Reservation {
+BeginTerm
+EndTerm
+IsBookTaken
+IsBookReturned
}
Reservation --> Customer
Books.Book <.. Reservation
class Availability {
+BookId
+UniqueBarcode
+IsAvailable
}
class Customer {
#ID
+Name
+EmailAddress
}
class Review {
#ID
+Stars
+Text
}
Review --> Customer
}
@enduml | false | true | false | false | class |
4944b95d5c8bb75671acec9de3d0ebb3283a9be3 | e85b9c34f894b1bb48a1e75684ac25d2691c0709 | /bmcs_shear/dic_crack/class_diagram.puml | 5e283e0f07115ea2077aa3eb2e90ec82db16a01a | [] | no_license | bmcs-group/bmcs_shear_zone | 3ebe5405102abf64ab2764f19d5ad959f1bec405 | f86705a02e809b84669b3ea80b4c175899e5ae5a | refs/heads/master | 2023-05-11T02:21:54.684942 | 2023-01-26T09:59:01 | 2023-01-26T09:59:01 | 289,317,533 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 502 | puml | @startuml
'https://plantuml.com/class-diagram
interface IDICGrid {
X_IJa
U_TIJa
F_T
time_T
w_T
t
}
class DICGrid {
}
DICGrid --|> IDICGrid
class DICGridTri {
}
DICGridTri --|> IDICGrid
class DICStateFields{
U_TMNa
omega_TMN
}
DICStateFields --> IDICGrid
class DICCrack {
index_range
}
DICCrackList --> DICStateFields
DICCrackList *--> DICCrack
DICCrack --> IDICGrid
DICCrack --> DICStressProfile
DICStressProfile --> IDICGrid
class DICAlign{
}
class DICCOR{
}
@enduml | false | true | false | false | class |
96173ea12d2cff48cef4a4ed34a951224180247d | 967db7f88bdf0e5cb8feca9571b9e85175f7bcc8 | /docs/Actors/Dev-Ops/Activity.puml | 960e976cfef3a62732e110861d2b53a39ca7f09b | [] | no_license | CAADE/edgeville | fd0053d749c259029ef4c7791210663ace87be21 | 6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65 | refs/heads/master | 2020-03-28T06:11:31.554585 | 2019-05-02T17:37:03 | 2019-05-02T17:37:03 | 147,819,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 166 | puml | @startuml
rectangle "Diagram TBD"
@enduml
partition "Dev Ops" #cccccc {
(*) --> "Start Here"
}
partition "Edgeville" #lightblue {
"Start Here" --> "Here"
}
| false | true | false | false | activity |
3a14725b087074918ff061319afa69313097da4f | 44182fd501cdb83876ea4edb3a1ce65d17c24c8f | /uml/class.puml | b46979b1682949e58cb0dfd2778c7c46e6ce1053 | [
"MIT"
] | permissive | Silentdoer/mysql5_client | dd7fb1d119286b024d2599aa79c58b4a8491029f | 76ef419746edf90413266eaf76c4d8d87d38df43 | refs/heads/master | 2023-05-18T16:33:22.950048 | 2021-06-10T12:39:59 | 2021-06-10T12:39:59 | 374,266,915 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,792 | puml | @startuml
class DataReader {
DataReader(Stream<List<int>> stream)
Future?<ReaderBuffer> readBuffer(int length)
}
class ReaderBuffer {
int get payloadLength
bool get isAllRead
ReaderBuffer(List<DataChunk> chunks, int payloadLength)
void skipByte()
void skipBytes(int length)
int checkOneLengthInteger()
int readOneLengthInteger()
int readFixedLengthInteger(int length)
int readLengthEncodedInteger()
String readFixedLengthString(int length)
String readFixedLengthUTF8String(int length)
String readLengthEncodedString()
String readLengthEncodedUTF8String()
String readNulTerminatedString()
String readNulTerminatedUTF8String()
String readRestOfPacketString()
String readRestOfPacketUTF8String()
DataRange readFixedLengthDataRange(int length)
DataRange readLengthEncodedDataRange()
DataRange readRestOfPacketDataRange()
DataRange readNulTerminatedDataRange()
}
class DataChunk {
bool get isEmpty
int get length
DataChunk(List<int> data, [int start = 0, int length])
int checkOneByte()
int extractOneByte()
DataChunk extractDataChunk(int length)
DataRange extractFixedLengthDataRange(int length)
DataRange extractUpToDataRange(int terminator)
}
class DataRange {
int get length
bool get isPending
DataRange(List<int> data, [int start = 0, int length])
DataRange.pending(List<int> data, [int start = 0])
DataRange.nil()
DataRange.byte(int byte)
void addExtraRange(DataRange extraRange)
int toInt()
String toString()
String toUTF8String()
}
DataChunk ..> DataRange : create
ReaderBuffer ..> DataRange : uses
ReaderBuffer "_chunks" o--> "n" DataChunk
DataReader ..> DataChunk : create
DataReader ..> ReaderBuffer : create
@enduml | false | true | false | false | class |
25e200159f5534d6503aa030a37e6ff57448feb1 | ed006f8e98c20dfd1fe16065e9037b6c8efc511d | /doc/design/diagrams/puml_github_workflow.puml | 776b5aa651f4a231761905f8eea39e32deb26dbc | [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-generic-export-compliance"
] | permissive | phongt/iceoryx | 939343855cc4bbe1610ce7c7ed504539a943f795 | efc697cf67a8bc8aedf3d123e2c9df582a5aeb83 | refs/heads/master | 2023-07-26T03:36:03.492954 | 2023-07-19T08:29:19 | 2023-07-19T08:29:19 | 237,723,029 | 0 | 0 | Apache-2.0 | 2023-07-21T19:33:59 | 2020-02-02T05:23:34 | C++ | UTF-8 | PlantUML | false | false | 536 | puml | @startuml
left to right direction
actor Iceoryx_Contributor
Iceoryx_Contributor --> (1. Create Diagram in PlantUML Editor)
Iceoryx_Contributor --> (2. Save it as new .puml file in iceoryx/doc/design/puml)
Iceoryx_Contributor --> (3. Export svg files via script in iceoryx/tools/ folder)
Iceoryx_Contributor --> (4. Create a Link in the Markdown file)
note left
The following snippet can be used to link against a svg file in markdown:
<code>

</code>
end note
@enduml
| false | true | false | false | usecase |
28722cbf5c2f624dd3e19b706a4e7b81fc02da2b | a1b305d6231f056755e3928969c797eefe25f73e | /docs/ex44.puml | 76755294caa47253b83738570186120ff090443a | [] | no_license | maxwellgraeser/Graeser-cop3330-assignment3 | 191cfbd22cced1e260b11a5a048124aa5817c332 | eae96e7462d749e28272f0f341285b0a92798749 | refs/heads/master | 2023-08-26T15:42:02.766281 | 2021-10-12T02:38:55 | 2021-10-12T02:38:55 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 219 | puml | @startuml
class App {
+void main()
+String getInput()
+boolean productCheck(String target, JSONArray jArray)
+void printOutput(String target, JSONArray jArray)
+String input
+JSONParser
+JSONObject jsonObject
}
@enduml | false | true | false | false | class |
4552b90eebe648b292db6f0a0445f2a80d41ada7 | 8b2a1da80f7cf21697a3f3f1c536ea78eb1c7998 | /sb1/src/main/java/com/zxf/test4/Abc.puml | d89e503011d2c2cc99759c9a519aa14fcedc7440 | [] | no_license | zhang6132326/reps4 | b7a6053e23d1bac4afeb766ad15f745e0877eaf6 | 078616768ba8f8c1d37f186b76972c8546eea449 | refs/heads/master | 2023-02-03T11:59:29.903891 | 2020-12-19T12:53:14 | 2020-12-19T12:53:14 | 322,591,549 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 398 | puml | @startuml
abstract class Operation{
String numberA
String NumberB
double getResult()
}
class OperationAdd
class OperationDiv
class OperationMul
class OperationSub
class OperationFactory{
{static} Operation create()
}
class Main
Main..>OperationFactory
OperationFactory ..> Operation
Operation<|--OperationAdd
Operation<|--OperationSub
Operation<|--OperationMul
Operation<|--OperationDiv
@enduml | false | true | false | false | class |
09b6c8e49bcbb82e1032aebca1e69bb0e4c8a048 | e6a585dfa5292761773d2d523832eef2b49e8e9d | /docs/diagrams/ModelComponent.plantuml | 759a3c6d84acccc807f6d2eddf83752976e03e54 | [] | no_license | AY2021S2-CS2113T-F08-3/tp | 82d8b49f18290b6e0d37f1aaa77b711455ace50f | 27db5d4a86be5478fc4e8258997fb8c83257cec6 | refs/heads/master | 2023-04-14T04:07:25.089995 | 2021-04-12T16:53:53 | 2021-04-12T16:53:53 | 344,644,739 | 0 | 4 | null | 2021-04-12T15:56:05 | 2021-03-05T00:12:02 | Java | UTF-8 | PlantUML | false | false | 803 | plantuml | @startuml ModelComponent
hide circle
!define LIGHTGREEN
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
skinparam classAttributeIconSize 0
rectangle Model #Khaki {
class RecommendationList
class ReviewList
}
class RecommendationList #Gold {
- ui : Ui
+ recommendations : ArrayList<Recommendation>
+ addRecommendation()
+ listRecommendations()
+ editRecommendation()
+ deleteRecommendation()
+ convertRecommendation()
}
class ReviewList #Gold {
- ui : Ui
+ reviews : ArrayList<Reviews>
- displayStars : boolean
+ addReview()
+ sortReviews()
+ listReviews()
+ viewReview()
+ editReview()
+ deleteReview()
+ changeDisplay()
}
RecommendationList - ReviewList : converts to >
@enduml
| false | true | false | false | class |
feeb67bffdab0e1a365d7ed377d231c0c3ff0561 | b0e9cae26282811102dfb26280e221ce6eb1f58f | /get_receiver_params_seq.puml | cb15039ed5f5cc1e39d38703eac7781b854b52c8 | [] | no_license | andrewstarks/NMOSXXProposals | ae1189dbcc6f1998ec90a423ac6ee6c1cd6f72c2 | 8f2741ba7904901836fd5f31973c72b2cdfa286e | refs/heads/master | 2022-11-13T02:03:53.222500 | 2020-06-23T19:00:51 | 2020-06-23T19:00:51 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,462 | puml | @startuml Get receiver params sequence diagram
autonumber
hide footbox
actor User
participant "Receiver IS-04"
participant "Receiver IS-XX"
== Looking for a link to Receiver's IS-XX ==
User -> "Receiver IS-04" ++ : GET /receivers/{id}
return Receiver object
|||
User -> User : Find in Receiver object\n an ID of the Device
User -> "Receiver IS-04" ++ : GET /devices/{id}
return Device object
|||
User -> User : Verify that device's controls\n includes IS-XX
note right
{
"label": "pipeline 1 default device",
"id": "67c25159-ce25-4000-a66c-f31fff890265",
<...>
"controls": [
<...>
{
"type": "urn:x-manufacturer:<back:green>control:is-xx</back>",
"href": "http://134.24.64.22/ipmx/is-xx"
},
<...>
]
}
end note
== Getting a Receiver's EDID file ==
User -> "Receiver IS-XX" ++ : GET /receivers/{id}
return array with path: { ["edid"] }
|||
User -> "Receiver IS-XX" ++ : GET /receivers/{id}/edid
return JSON with EDID representation
|||
User -> User : Working with EDID file
note right
{
"edid_version": "v1.4",
"display_type": "RGB",
"horizontal_screen_size": 2048,
"vertical_screen_size": 1080,
"gamma": 2.2,
"color_params": {
"red": {
"x": 256,
"y": 256
},
"green": {
"x": 256,
"y": 256
},
"blue": {
"x": 256,
"y": 256
},
"white": {
"x": 256,
"y": 256
}
}
}
end note
@enduml | false | true | false | false | sequence |
99a5bbfe12adb529e1b7b961c83b5187ae72fc54 | c98f0d828ea8a494db813bef23f3258fef35c628 | /test/sample/docs/architecture.puml | 382efb6ec2ac952bed0984a3bdfd687af293138d | [
"MIT"
] | permissive | Volland/arkit | 6b502171c694419a573d9b30eac72b4ca8c21d4e | c36eef1e83494d36016b24bfdb9e94ad19acbc1b | refs/heads/master | 2020-06-02T12:43:37.874861 | 2019-06-10T09:16:56 | 2019-06-10T09:16:56 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 970 | puml | @startuml
scale max 1920 width
top to bottom direction
skinparam nodesep 12
skinparam ranksep 25
skinparam monochrome true
skinparam shadowing false
skinparam defaultFontName Tahoma
skinparam defaultFontSize 12
skinparam roundCorner 4
skinparam dpi 150
skinparam arrowColor black
skinparam arrowThickness 0.55
skinparam packageTitleAlignment left
' oval
skinparam usecase {
borderThickness 0.5
}
' rectangle
skinparam rectangle {
borderThickness 0.5
}
' component
skinparam component {
borderThickness 1
}
package "Main" {
(main.view)
(singleton)
}
package "Base" {
(base.component)
rectangle "component" as _component
rectangle "model" as _model
}
(<b>main.ts</b>)
(utils.ts)
_component ~~> (base.component)
(<b>main.ts</b>) -[thickness=1]> (main.view)
(<b>main.ts</b>) -[thickness=1]> (utils.ts)
(main.view) --> _component
(main.view) ~~> (singleton)
(singleton) --> _model
(utils.ts) --> _model
@enduml
' View and edit on https://arkit.pro | false | true | false | false | uml-unknown |
ff43283d84a9aa628801b89197e8546294188d04 | a8a94e6c5a115f2aebcc2a72e73b6594ca382e9b | /Documentation/Graph.puml | 0ab8a02af50b506ff7eb469eff888a5f1989421c | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | menturi/piLibrary | 1bc9e3e41c530a73aa1b6dfd8115bcfd8969d82e | 94170fd4b02fae74f6b95bff8acde11692dc1bc5 | refs/heads/main | 2023-08-07T02:40:29.542323 | 2021-10-06T23:14:42 | 2021-10-06T23:14:42 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,914 | puml | @startuml piLibrary Dependency
' this doesn't seem to work... manually editing the SVG
skinparam background transparent
' "level-of-Detail"
hide circle
'hide methods
'hide members
class piCommon [[../../piCommon.spin2]] {
.. ABORT Signals ..
ERROR_NONE
ERROR_UNSPECIFIED
ERROR_INVALIDCALL
ERROR_INVALIDARGUMENT
ERROR_NOTIMPLEMENTED
.. Timeouts ..
TIME_IMMEDIATE
TIME_INFINITE
__
TimeoutToCounts(timeout)
CountsToTimeout(counts)
TimeoutToCT(timeout)
AbortToString(code)
}
class piString {
.. Special Characters ..
NUL, SOH, ...RS, US, SPACE, DEL
.. Config Flags ..
CASE_LOWER, _UPPER
SIGNEDNESS_... SIGNED, _UNSIGNED
SendDec(value)
SendStr(data)
SendFormat(pointer, argptr)
SendFormat_1(data, arg1)
SendFormat_2(data, arg1, arg2)
SendFormat_3(data, arg1, arg2, arg3)
SendFormat_4(data, arg1, arg2, arg3, arg4)
Upper(string)
Lower(string)
Insert(string, position, substring)
NextToken(pointer)
}
class piInlineSerial {
.. Config Flags ..
PARITY_NONE, _EVEN, _ODD
STOPBITS_1, _2
DEFAULT_CONFIG
.. Status Flags ..
RX_FRAMING_ERROR
RX_PARITY_ERROR
RX_OVERFLOW_ERROR
__
Start(baudrate, txPin, rxPin, config, stack)
Stop()
GetStatus()
Write(pointer, size, timeout)
Read(pointer, size, timeout)
ReadLine(pointer, size, timeout)
ReadUntil(pointer, size, ct)
}
class piTerminal {
STACK_SIZE_BASELINE
Start(baudrate, txPin, rxPin, config, callback, buffer, size, stack)
Run(baudrate, txPin, rxPin, config, callback, buffer, size)
Stop()
Prompt(buffer, size)
}
class piDiagnostics {
StackPrepare(pointer, size)
StackGetUnused(pointer, size)
}
'hide piCommon
piString *-- piCommon
piInlineSerial *-- piCommon
piTerminal *-- piString
piTerminal *-- piCommon
piTerminal *-- piInlineSerial
@enduml | false | true | false | false | class |
d026ad760f95c6330e844d1a4dfd2c81ea1c60c0 | 4d76418682cd315d17ac1d169a8e4259779dd4b5 | /src/docs/plantuml/whitebox-hsc-core-level-2.puml | 8a26cac7478737b6810764fe9f2fb42287a59fca | [
"Apache-2.0",
"CC-BY-SA-4.0",
"LicenseRef-scancode-other-copyleft"
] | permissive | aim42/htmlSanityCheck | 268ef6439cbb980687139f46171908a9a0a84c09 | 01aa2e7afa082aa07e23d90444a9cb66bbd06525 | refs/heads/main | 2023-01-12T05:01:16.804667 | 2023-01-04T13:15:17 | 2023-01-04T13:15:17 | 19,579,904 | 63 | 58 | Apache-2.0 | 2023-01-04T13:15:19 | 2014-05-08T16:06:30 | Groovy | UTF-8 | PlantUML | false | false | 917 | puml | @startuml
skinparam componentStyle uml2
skinparam component {
backgroundColor<<planned>> Khaki
backgroundColor White
}
skinparam handwritten true
left footer
<font color=blue>HtmlSanityCheck</font>
https://github.com/aim42/htmlSanityCheck
endfooter
interface "local\nfile system" as files
[FileUtil] as futil
[NetUtil] as netutil
interface "external Websites" as web
frame "HSC Core" as core {
[Configuration] as config
[Reporter] as reporter
[Suggester] as suggester
[Checker] as checker #YellowGreen
[AllChecksRunner] as acr
acr -down-> checker
acr -right-> config
checker -->reporter
checker --> suggester
checker -left-> futil
checker -> netutil
suggester -left-> files
futil -down-> files
netutil -down-> web
}
[HSC Gradle Plugin] as gradleplugin
gradleplugin -down-> config
gradleplugin -down-> acr
checker -down-> web
checker -down-> files
@enduml | false | true | false | false | class |
665cc713a56778359927fe82e3310d35e78c41ec | 6f1febb6cbffcc25e8c63d021c245930ac91b059 | /original.plantuml | 9bca811eb0f9b5f819df70468473a35e6c6f59b3 | [] | no_license | Nigel0583/SDP_Memento | 81b4c7423f7317fd7b81ef652226c6373397295c | cd724e995a5f95f67531a49328fece0baa684bbc | refs/heads/master | 2023-01-28T13:51:57.902866 | 2020-11-29T12:28:26 | 2020-11-29T12:28:26 | 314,869,457 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 971 | plantuml | @startuml
skinparam classAttributeIconSize 0
class DrawGraphic {
- X1 : int
- X2 : int
- Y1 : int
- Y2 : int
- bufferedImage : BufferedImage
- graphics2D : Graphics2D
+ DrawGraphic()
+ black()
+ blue()
+ clear()
+ green()
+ load()
+ red()
+ save()
# paintComponent()
}
class DrawerGUI {
~ btBlack : JButton
~ btBlue : JButton
~ btClear : JButton
~ btGreen : JButton
~ btLoad : JButton
~ btRed : JButton
~ btSave : JButton
~ listener : ActionListener
~ pnDrawer : JPanel
- file : File
- lbFileName : JLabel
- saveCounter : int
+ DrawerGUI()
}
class Driver {
{static} + main()
}
DrawGraphic -up-|> javax.swing.JComponent
DrawerGUI -up-|> javax.swing.JFrame
DrawerGUI o-- DrawGraphic : drawGraphic
@enduml
| false | true | false | false | class |
3d72125cbcc73ec3d29a945f5cb08ebba2d87153 | f567ea15a5ea127d4e1933b2383fe8bd02175c48 | /PUML/Assignment4.puml | 409fde3322a747198f406c4477811271f8c4677b | [] | no_license | nick-vigg/Viggiani-cop330-Assignment4 | 66b2c642310b6df6a48f91c837a809a18129838a | 161eaac5c39b47b5cba5baf59019906cf8a1c3f9 | refs/heads/master | 2023-06-07T14:45:37.352687 | 2021-07-06T02:48:25 | 2021-07-06T02:48:25 | 383,198,137 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 740 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
+ main()
+ start()
}
class Lists{
-lists[] : ArrayList<ToDoList>
-listTitle : String
addList()
removeList()
}
class ToDoList {
- toDoTitle : String
- items[] : ArrayList<Item>
setTitle()
addItem()
removeItem()
}
class Item {
- itemStatus : boolean
- itemDescription : String
- itemDueDate : String
editDescription()
editStatus()
editDueDate()
}
class ItemController{
addItemButtonClicked()
itemDueDateSet()
itemDescriptionSet()
isCompleteSet()
}
class ListController{
addListButtonClicked()
deleteButtonClicked()
displayListButtonClicked()
}
javafx.Application <|- App
App *-- Lists
Lists <-- ToDoList
ToDoList o-- Item
Item - ItemController
Lists - ListController
@enduml | false | true | false | false | class |
cc8a915855cb648e7f1bd1b75a7593c8422c5533 | a49e5f0e798a935e41536bda9522096305c5e277 | /diagrams/dc_visibilidad_atributos.plantuml | 74faae31c6cbf66c1f79ffad25653739fb191b6a | [] | no_license | fiuba/algo3_uml_si_o_si | 8f9514df2f97d29312a9ecede611d379d884c28e | 90a137a51efcabc3b678b335ef498f0d3b710357 | refs/heads/master | 2023-04-13T10:24:55.552593 | 2021-04-29T21:41:54 | 2021-04-29T21:44:15 | 362,944,660 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 250 | plantuml | @startuml
skinparam classAttributeIconSize 0
class Nombre {
- atributoPrivado : ClaseX
+ atributoPublico : ClaseY
# atributoProtegido : ClaseY
+ metodoA() : ClaseY
+ metodoB(param : ClaseZ) : void
}
@enduml
| false | true | false | false | class |
66ad2faee708a3176d355cfa9b54f7d2b1196186 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.puml | 796cb999a999a0c7a531d0050dc241d3edd33af3 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 523 | puml | @startuml
class RecompileScripts {
+ RecompileScripts()
+ RecompileScripts(expectScriptCompilation:bool)
+ RecompileScripts(expectScriptCompilation:bool, expectScriptCompilationSuccess:bool)
+ ExpectDomainReload : bool <<get>>
+ ExpectedPlaymodeState : bool <<get>>
+ ExpectScriptCompilation : bool <<get>>
+ ExpectScriptCompilationSuccess : bool <<get>>
+ Perform() : IEnumerator
}
IEditModeTestYieldInstruction <|-- RecompileScripts
RecompileScripts --> "Current" RecompileScripts
@enduml
| false | true | false | false | class |
ee6a443b615655c76b1c4b5dd58e7484ff65eb06 | ed45ea4470bcfc497e2584697d7842a540e04fd9 | /ros2/navigation2/nav2_costmap_2d/costmap.puml | d1d3cb9a8ffb5fe33feb0e28197aaedd6d4aaa43 | [] | no_license | cf-zhang/documents | ffcd8213587f8aa9c47406cf2491bf77beec9c33 | 8a4439932017b67fba7988ff7fadd9829bce1e4c | refs/heads/master | 2022-03-03T13:52:27.333343 | 2022-02-25T11:31:22 | 2022-02-25T11:31:22 | 154,789,912 | 11 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 19,589 | puml | @startuml
'https://plantuml.com/class-diagram
namespace nav2_costmap_2d{
class ArrayParser{
-- public method --
vector<vector<float>> parseVVF(input, error_return);
}
enum CostValues{
NO_INFORMATION = 255,
LETHAL_OBSTACLE = 254,
INSCRIBED_INFLATED_OBSTACLE = 253,
FREE_SPACE = 0
}
class CollisionCheckerException{
-- public method --
explicit CollisionCheckerException(const std::string description)
}
class IllegalPoseException
{
-- public method --
IllegalPoseException(const std::string name, const std::string description)
-- protected data --
std::string name_;
}
CollisionCheckerException <-- IllegalPoseException
class CostmapMath{
inline double sign(double x)
inline double sign0(double x)
inline double distance(double x0, double y0, double x1, double y1)
double distanceToLine(pX, pY, x0, y0, x1, y1);
bool intersects(std::vector<Point> & polygon, float testx, float testy);
bool intersects(polygon1, polygon2);
}
class footprint{
void calculateMinAndMaxDistances(footprint, min_dist, max_dist);
geometry_msgs::msg::Point toPoint(geometry_msgs::msg::Point32 pt);
geometry_msgs::msg::Point32 toPoint32(geometry_msgs::msg::Point pt);
geometry_msgs::msg::Polygon toPolygon(std::vector<geometry_msgs::msg::Point> pts);
std::vector<geometry_msgs::msg::Point> toPointVector(:Polygon::SharedPtr polygon);
void transformFootprint(x,y,theta,footprint_spec,oriented_footprint);
void transformFootprint(x,y,theta,footprint_spec,oriented_footprint);
void padFootprint(std::vector<geometry_msgs::msg::Point> & footprint, double padding);
std::vector<geometry_msgs::msg::Point> makeFootprintFromRadius(double radius);
bool makeFootprintFromString(footprint_string,footprint);
}
class FootprintSubscriber{
-- public method --
FootprintSubscriber(node, topic_name, footprint_timeout);
FootprintSubscriber(node, topic_name, footprint_timeout);
FootprintSubscriber(node_base, node_topics, node_logging, node_clock, topic_name, footprint_timeout);
~FootprintSubscriber() {}
bool getFootprint(footprint, valid_footprint_timeout);
bool getFootprint(std::vector<geometry_msgs::msg::Point> & footprint);
bool getFootprint(footprint, stamp, valid_footprint_timeout);
-- protected method --
void footprint_callback(const geometry_msgs::msg::PolygonStamped::SharedPtr msg);
-- protected data --
rclcpp::node_interfaces::NodeBaseInterface::SharedPtr node_base_;
rclcpp::node_interfaces::NodeTopicsInterface::SharedPtr node_topics_;
rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr node_logging_;
rclcpp::node_interfaces::NodeClockInterface::SharedPtr node_clock_;
void footprint_callback(const geometry_msgs::msg::PolygonStamped::SharedPtr msg);
std::string topic_name_;
bool footprint_received_{false};
rclcpp::Duration footprint_timeout_;
geometry_msgs::msg::PolygonStamped::SharedPtr footprint_;
rclcpp::Subscription<geometry_msgs::msg::PolygonStamped>::SharedPtr footprint_sub_;
}
class FootprintCollisionChecker<?CostmapT>{
-- public method --
FootprintCollisionChecker();
explicit FootprintCollisionChecker(CostmapT costmap);
double footprintCost(const Footprint footprint);
double footprintCostAtPose(double x, double y, double theta, const Footprint footprint);
double lineCost(int x0, int x1, int y0, int y1) const;
bool worldToMap(double wx, double wy, unsigned int & mx, unsigned int & my);
double pointCost(int x, int y) const;
void setCostmap(CostmapT costmap);
-- protected data --
CostmapT costmap_
}
class CostmapTopicCollisionChecker{
-- public method --
CostmapTopicCollisionChecker(costmap_sub,footprint_sub, tf, name, global_frame, robot_base_frame,transform_tolerance);
~CostmapTopicCollisionChecker()
double scorePose(const geometry_msgs::msg::Pose2D & pose);
bool isCollisionFree(const geometry_msgs::msg::Pose2D & pose);
-- protected method --
void unorientFootprint(const Footprint & oriented_footprint, Footprint & reset_footprint);
Footprint getFootprint(const geometry_msgs::msg::Pose2D & pose);
-- protected data --
std::string name_;
std::string global_frame_;
std::string robot_base_frame_;
tf2_ros::Buffer & tf_;
CostmapSubscriber & costmap_sub_;
FootprintSubscriber & footprint_sub_;
double transform_tolerance_;
FootprintCollisionChecker<std::shared_ptr<Costmap2D>> collision_checker_;
}
CostmapTopicCollisionChecker *-- CostmapSubscriber
CostmapTopicCollisionChecker *-- FootprintSubscriber
CostmapTopicCollisionChecker *-- FootprintCollisionChecker
class Costmap{
}
class MapLocation{
unsigned int x
unsigned int y
}
class MarkCell{
-- public method --
MarkCell(unsigned char * costmap, unsigned char value)
inline void operator()(unsigned int offset)
-- private data --
unsigned char * costmap_;
unsigned char value_;
}
class PolygonOutlineCells{
-- public: method --
PolygonOutlineCells(
inline void operator()(unsigned int offset)
-- private data --
const Costmap2D & costmap_;
std::vector<MapLocation> & cells_;
}
PolygonOutlineCells *-- Costmap2D
PolygonOutlineCells *-- MapLocation
class Costmap2D{
-- public method --
Costmap2D();
virtual ~Costmap2D();
unsigned char getCost(unsigned int mx, unsigned int my) const;
unsigned char getCost(unsigned int index) const;
void setCost(unsigned int mx, unsigned int my, unsigned char cost);
void mapToWorld(unsigned int mx, unsigned int my, double & wx, double & wy) const;
bool worldToMap(double wx, double wy, unsigned int & mx, unsigned int & my) const;
void worldToMapNoBounds(double wx, double wy, int & mx, int & my) const;
void worldToMapEnforceBounds(double wx, double wy, int & mx, int & my) const;
inline unsigned int getIndex(unsigned int mx, unsigned int my) const
inline void indexToCells(unsigned int index, unsigned int & mx, unsigned int & my) const
unsigned char * getCharMap() const;
unsigned int getSizeInCellsX() const;
unsigned int getSizeInCellsY() const;
double getSizeInMetersX() const;
double getSizeInMetersY() const;
double getOriginX() const;
double getOriginY() const;
double getResolution() const;
void setDefaultValue(unsigned char c)
unsigned char getDefaultValue()
bool setConvexPolygonCost()
void polygonOutlineCells()
void convexFillCells()
virtual void updateOrigin(double new_origin_x, double new_origin_y);
bool saveMap(std::string file_name);
void resizeMap()
void resetMap(unsigned int x0, unsigned int y0, unsigned int xn, unsigned int yn);
void resetMapToValue()
unsigned int cellDistance(double world_dist);
typedef std::recursive_mutex mutex_t;
mutex_t * getMutex()
-- protected method --
void copyMapRegion()
virtual void deleteMaps();
virtual void resetMaps();
virtual void initMaps(unsigned int size_x, unsigned int size_y);
inline void raytraceLine(at, x0, y0, x1, y1, max_length)
-- protected data --
unsigned int size_x_;
unsigned int size_y_;
double resolution_;
double origin_x_;
double origin_y_;
unsigned char * costmap_;
unsigned char default_value_;
-- private method --
inline void bresenham2D(at,abs_da,abs_db,error_b,offset_a,offset_b,offset,max_length)
-- private data --
mutex_t * access_;
}
Costmap2D *-- PolygonOutlineCells
Costmap2D *-- MarkCell
class Costmap2DROS{
-- public method --
explicit Costmap2DROS(const std::string & name);
explicit Costmap2DROS(name,parent_namespace, local_namespace);
~Costmap2DROS();
nav2_util::CallbackReturn on_configure(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_activate(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_deactivate(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_cleanup(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_shutdown(const rclcpp_lifecycle::State & state) override;
void start();
void stop();
void pause();
void resume();
void updateMap();
void resetLayers();
bool isCurrent()
bool getRobotPose(geometry_msgs::msg::PoseStamped & global_pose);
std::string getName() const
double getTransformTolerance() const
Costmap2D * getCostmap()
std::string getGlobalFrameID()
std::string getBaseFrameID()
LayeredCostmap * getLayeredCostmap()
geometry_msgs::msg::Polygon getRobotFootprintPolygon()
std::vector<geometry_msgs::msg::Point> getRobotFootprint()
std::vector<geometry_msgs::msg::Point> getUnpaddedRobotFootprint()
void getOrientedFootprint(std::vector<geometry_msgs::msg::Point> & oriented_footprint);
void setRobotFootprint(const std::vector<geometry_msgs::msg::Point> & points);
void setRobotFootprintPolygon(const geometry_msgs::msg::Polygon::SharedPtr footprint);
std::shared_ptr<tf2_ros::Buffer> getTfBuffer() {return tf_buffer_;}
bool getUseRadius() {return use_radius_;}
-- protected method --
void getParameters();
-- protected data --
rclcpp::Node::SharedPtr client_node_;
LifecyclePublisher<PolygonStamped> footprint_pub_;
Costmap2DPublisher * costmap_publisher_{nullptr};
Subscription<Polygon>::SharedPtr footprint_sub_;
Subscription<ParameterEvent>::SharedPtr parameter_sub_;
std::shared_ptr<tf2_ros::Buffer> tf_buffer_;
std::shared_ptr<tf2_ros::TransformListener> tf_listener_;
LayeredCostmap * layered_costmap_{nullptr};
std::string name_;
std::string parent_namespace_;
void mapUpdateLoop(double frequency);
bool map_update_thread_shutdown_{false};
bool stop_updates_{false};
bool initialized_{false};
bool stopped_{true};
std::thread * map_update_thread_
rclcpp::Time last_publish_{0, 0, RCL_ROS_TIME};
rclcpp::Duration publish_cycle_{1, 0};
pluginlib::ClassLoader<Layer> plugin_loader_
bool always_send_full_costmap_{false};
std::string footprint_;
float footprint_padding_{0};
std::string global_frame_;
int map_height_meters_{0};
double map_publish_frequency_{0};
double map_update_frequency_{0};
int map_width_meters_{0};
double origin_x_{0};
double origin_y_{0};
std::vector<std::string> default_plugins_;
std::vector<std::string> default_types_;
std::vector<std::string> plugin_names_;
std::vector<std::string> plugin_types_;
double resolution_{0};
std::string robot_base_frame_;
double robot_radius_;
bool rolling_window_{false};
bool track_unknown_space_{false};
double transform_tolerance_{0};
bool use_radius_{false};
std::vector<geometry_msgs::msg::Point> unpadded_footprint_;
std::vector<geometry_msgs::msg::Point> padded_footprint_;
std::unique_ptr<ClearCostmapService> clear_costmap_service_;
}
LifecycleNode <-- Costmap2DROS
Costmap2DROS *-- Costmap2DPublisher
Costmap2DROS *-- LayeredCostmap
Costmap2DROS *-- ClearCostmapService
class LayeredCostmap{
-- public method --
LayeredCostmap(std::string global_frame, bool rolling_window, bool track_unknown);
~LayeredCostmap();
void updateMap(double robot_x, double robot_y, double robot_yaw);
std::string getGlobalFrameID() const
void resizeMap(size_x, size_y, resolution, origin_x,origin_y, size_locked);
void getUpdatedBounds(double & minx, double & miny, double & maxx, double & maxy)
bool isCurrent();
Costmap2D * getCostmap()
bool isRolling()
bool isTrackingUnknown()
std::vector<std::shared_ptr<Layer>> * getPlugins()
void addPlugin(std::shared_ptr<Layer> plugin)
bool isSizeLocked()
void getBounds(unsigned int * x0, unsigned int * xn, unsigned int * y0, unsigned int * yn)
bool isInitialized()
void setFootprint(const std::vector<geometry_msgs::msg::Point> & footprint_spec);
const std::vector<geometry_msgs::msg::Point> & getFootprint() {return footprint_;}
double getCircumscribedRadius() {return circumscribed_radius_;}
double getInscribedRadius() {return inscribed_radius_;}
bool isOutofBounds(double robot_x, double robot_y);
-- private data --
Costmap2D costmap_;
std::string global_frame_;
bool rolling_window_;
bool current_;
double minx_, miny_, maxx_, maxy_;
unsigned int bx0_, bxn_, by0_, byn_;
std::vector<std::shared_ptr<Layer>> plugins_;
bool initialized_;
bool size_locked_;
double circumscribed_radius_, inscribed_radius_;
std::vector<geometry_msgs::msg::Point> footprint_;
}
LayeredCostmap *-- Costmap2D
LayeredCostmap o-- Layer
class Layer{
-- public method --
Layer();
virtual ~Layer() {}
void initialize(parent, name, tf, node, client_node, rclcpp_node);
virtual void deactivate()
virtual void activate()
virtual void reset()
virtual void updateBounds(robot_x,robot_y,robot_yaw,min_x,min_y,max_x,max_y);
virtual void updateCosts(master_grid,min_i,min_j,max_i,max_j) = 0;
virtual void matchSize() {}
virtual void onFootprintChanged() {}
std::string getName() const
bool isCurrent() const
const std::vector<geometry_msgs::msg::Point> & getFootprint() const;
void declareParameter(const std::string & param_name, const rclcpp::ParameterValue & value);
bool hasParameter(const std::string & param_name);
void undeclareAllParameters();
std::string getFullName(const std::string & param_name);
-- protected method --
virtual void onInitialize() {}
-- protected data --
LayeredCostmap * layered_costmap_;
std::string name_;
tf2_ros::Buffer * tf_;
nav2_util::LifecycleNode::SharedPtr node_;
rclcpp::Node::SharedPtr client_node_;
rclcpp::Node::SharedPtr rclcpp_node_;
bool current_;
bool enabled_;
std::unordered_set<std::string> local_params_;
-- private data --
std::vector<geometry_msgs::msg::Point> footprint_spec_;
}
Layer *-- LayeredCostmap
class CostmapLayer{
-- public method --
CostmapLayer()
bool isDiscretized()
virtual void matchSize();
virtual void clearArea(int start_x, int start_y, int end_x, int end_y);
void addExtraBounds(double mx0, double my0, double mx1, double my1);
-- protected method --
void updateWithTrueOverwrite();
void updateWithOverwrite();
void updateWithMax();
void updateWithAddition();
void touch();
void useExtraBounds(double * min_x, double * min_y, double * max_x, double * max_y);
-- protected data --
bool has_extra_bounds_;
-- private data --
double extra_min_x_, extra_max_x_, extra_min_y_, extra_max_y_;
}
Layer <-- CostmapLayer
Costmap2D <-- CostmapLayer
class StaticLayer{
-- public method --
StaticLayer();
virtual ~StaticLayer();
virtual void onInitialize();
virtual void activate();
virtual void deactivate();
virtual void reset();
virtual void updateBounds();
virtual void updateCosts();
virtual void matchSize();
-- private method --
void getParameters();
void processMap(const nav_msgs::msg::OccupancyGrid & new_map);
void incomingMap(const nav_msgs::msg::OccupancyGrid::SharedPtr new_map);
void incomingUpdate(map_msgs::msg::OccupancyGridUpdate::ConstSharedPtr update);
unsigned char interpretValue(unsigned char value);
-- private data --
std::string global_frame_;
std::string map_frame_;
bool has_updated_data_{false};
unsigned int x_{0};
unsigned int y_{0};
unsigned int width_{0};
unsigned int height_{0};
Subscription<:OccupancyGrid> map_sub_;
Subscription<OccupancyGridUpdate> map_update_sub_;
std::string map_topic_;
bool map_subscribe_transient_local_;
bool subscribe_to_updates_;
bool track_unknown_space_;
bool use_maximum_;
unsigned char lethal_threshold_;
unsigned char unknown_cost_value_;
bool trinary_costmap_;
bool map_received_{false};
tf2::Duration transform_tolerance_;
std::atomic<bool> update_in_progress_;
nav_msgs::msg::OccupancyGrid::SharedPtr map_buffer_;
}
CostmapLayer <-- StaticLayer
enum InputSensorType{
VARIABLE,
FIXED,
ALL
}
class RangeSensorLayer{
-- public method --
virtual void onInitialize();
virtual void updateBounds();
virtual void updateCosts();
virtual void reset();
virtual void deactivate();
virtual void activate();
void bufferIncomingRangeMsg()
-- private method --
void updateCostmap();
void processRangeMsg(Range & range_message);
void processFixedRangeMsg(Range & range_message);
void processVariableRangeMsg(Range & range_message);
void resetRange();
inline double gamma(double theta);
inline double delta(double phi);
inline double sensor_model(double r, double phi, double theta);
inline void get_deltas(double angle, double * dx, double * dy);
inline void update_cell(ox, oy, ot, r, nx, ny, clear);
inline double to_prob(unsigned char c)
inline unsigned char to_cost(double p)
float area(int x1, int y1, int x2, int y2, int x3, int y3)
int orient2d(int Ax, int Ay, int Bx, int By, int Cx, int Cy)
-- private data --
std::function<void(Range & range_message)> processRangeMessageFunc_;
std::mutex range_message_mutex_;
std::list<Range> range_msgs_buffer_;
double max_angle_, phi_v_;
double inflate_cone_;
std::string global_frame_;
double clear_threshold_, mark_threshold_;
bool clear_on_max_reading_;
tf2::Duration transform_tolerance_;
double no_readings_timeout_;
rclcpp::Time last_reading_time_;
unsigned int buffered_readings_;
std::vector<Subscription<Range>::SharedPtr> range_subs_;
double min_x_, min_y_, max_x_, max_y_;
}
CostmapLayer <-- RangeSensorLayer
Class CostmapSubscriber{
-- public method --
CostmapSubscriber(node, topic_name);
CostmapSubscriber(node, topic_name);
CostmapSubscriber(node_base, node_topics, node_logging, topic_name);
~CostmapSubscriber()
std::shared_ptr<Costmap2D> getCostmap();
-- protected method --
void toCostmap2D();
void costmapCallback(const nav2_msgs::msg::Costmap::SharedPtr msg);
-- protected data --
rclcpp::node_interfaces::NodeBaseInterface::SharedPtr node_base_;
rclcpp::node_interfaces::NodeTopicsInterface::SharedPtr node_topics_;
rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr node_logging_;
std::shared_ptr<Costmap2D> costmap_;
nav2_msgs::msg::Costmap::SharedPtr costmap_msg_;
std::string topic_name_;
bool costmap_received_{false};
rclcpp::Subscription<nav2_msgs::msg::Costmap>::SharedPtr costmap_sub_;
}
CostmapSubscriber *-- Costmap
class ClearCostmapService{
-- public method --
ClearCostmapService(node, costmap);
ClearCostmapService() = delete;
void clearExceptRegion(double reset_distance);
void clearAroundRobot( window_size_x, window_size_y);
void clearEntirely();
-- private method --
void clearExceptRegionCallback(request_header, request, response);
void clearAroundRobotCallback(request_header, request, response);
void clearEntireCallback(request_header, request, response);
void clearLayerExceptRegion(costmap, pose_x, pose_y, reset_distance);
bool isClearable(const std::string & layer_name) const;
bool getPosition(double & x, double & y) const;
std::string getLayerName(const Layer & layer) const;
-- private data --
nav2_util::LifecycleNode::SharedPtr node_;
Costmap2DROS & costmap_;
unsigned char reset_value_;
std::vector<std::string> clearable_layers_;
Service<ClearCostmapExceptRegion> clear_except_service_;
Service<ClearCostmapAroundRobot>::SharedPtr clear_around_service_;
Service<ClearEntireCostmap>::SharedPtr clear_entire_service_;
}
class Costmap2DPublisher{
-- public method --
Costmap2DPublisher(ros_node,costmap,global_frame,topic_name,always_send_full_costmap);
~Costmap2DPublisher();
void on_configure()
void on_activate()
void on_deactivate()
void on_cleanup() {}
void updateBounds(x0,xn,y0,yn)
void publishCostmap();
bool active()
-- private method --
void prepareGrid();
void prepareCostmap();
void costmap_service_callback( request_header, request, response);
-- private data --
nav2_util::LifecycleNode::SharedPtr node_;
Costmap2D * costmap_;
std::string global_frame_;
std::string topic_name_;
unsigned int x0_, xn_, y0_, yn_;
double saved_origin_x_;
double saved_origin_y_;
bool active_;
bool always_send_full_costmap_;
LifecyclePublisher<OccupancyGrid>::SharedPtr costmap_pub_;
LifecyclePublisher<OccupancyGridUpdate> costmap_update_pub_;
LifecyclePublisher<Costmap>::SharedPtr costmap_raw_pub_;
Service<GetCostmap>::SharedPtr costmap_service_;
float grid_resolution;
unsigned int grid_width, grid_height;
std::unique_ptr<nav_msgs::msg::OccupancyGrid> grid_;
std::unique_ptr<nav2_msgs::msg::Costmap> costmap_raw_;
static char * cost_translation_table_;
}
ClearCostmapService *-- Costmap2DROS
Costmap2DPublisher *-- Costmap2D
Costmap2DPublisher *-- Costmap
}
std.runtime_error <-- nav2_costmap_2d.CollisionCheckerException
@enduml | false | true | false | false | class |
53bd20ba49ce94051f8ae8f9078af4edc4a99fa1 | 5992899e0dc7e047598bf810d6d66fb171b6b8fa | /src/main/javadoc/resources/fr/kbertet/lattice/ClosureSystem.iuml | 641d8d73e7970d93787cba3a5fa2de40f76683a9 | [
"CECILL-B"
] | permissive | kbertet/java-lattices | 9e237162ce8330f64769e27284a7f98fa189206f | ddca76f97c41024866e3f3a32b719cb0492c034b | refs/heads/master | 2020-12-03T09:19:43.451861 | 2014-12-12T11:20:45 | 2014-12-12T11:20:45 | 29,913,611 | 1 | 0 | null | 2015-01-27T12:41:58 | 2015-01-27T12:41:58 | null | UTF-8 | PlantUML | false | false | 535 | iuml | package fr.kbertet.lattice {
class ClosureSystem {
+{abstract} TreeSet<Comparable> getSet()
+{abstract} TreeSet<Comparable> closure(TreeSet<Comparable> set)
+{abstract} void save(String file)
+ConceptLattice closedSetLattice(boolean diagram)
+ConceptLattice lattice()
+Vector<Concept> allClosures()
+Concept nextClosure(Concept cl)
+DGraph precedenceGraph()
+TreeMap<Object, TreeSet> getReducibleElements()
}
abstract class ClosureSystem
}
| false | true | false | false | class |
e60a4606f0e83c3ec3e26875853ba0b6140c0854 | c85d255daca76e76b7073e0a288849be195b214e | /app/src/main/java/com/architectica/socialcomponents/main/profile/profile.plantuml | 5e77e0d009f97674e9cffa7c2ec8b07ff68c03a1 | [
"Apache-2.0"
] | permissive | AryaAshish/Archcrony | 75bb4646d938b2da11721aff0dde11ad49f4a357 | 3cf972c48e900d513d53ebed857373741c1969b5 | refs/heads/master | 2020-04-29T12:34:32.168647 | 2019-08-01T12:56:05 | 2019-08-01T12:56:05 | 176,141,477 | 1 | 3 | Apache-2.0 | 2019-08-01T12:56:06 | 2019-03-17T18:16:12 | Java | UTF-8 | PlantUML | false | false | 5,527 | plantuml | @startuml
title __PROFILE's Class Diagram__\n
namespace com.architectica.socialcomponents {
namespace main.profile {
class com.architectica.socialcomponents.main.profile.ProfileActivity {
{static} + CREATE_POST_FROM_PROFILE_REQUEST : int
{static} + USER_ID_EXTRA_KEY : String
{static} - TAG : String
- bioTextView : TextView
- currentUserId : String
- followersCounterTextView : TextView
- followingsCounterTextView : TextView
- imageView : ImageView
- likesCountersTextView : TextView
- mAuth : FirebaseAuth
- mGoogleApiClient : GoogleApiClient
- nameEditText : TextView
- postsCounterTextView : TextView
- postsProgressBar : ProgressBar
- progressBar : ProgressBar
- recyclerView : RecyclerView
- skillTextView : TextView
- statusTextView : TextView
- swipeContainer : SwipeRefreshLayout
- userID : String
+ createPresenter()
+ hideLoadingPostsProgress()
+ onConnectionFailed()
+ onCreateOptionsMenu()
+ onOptionsItemSelected()
+ onPostRemoved()
+ onPostUpdated()
+ onStart()
+ onStop()
+ onUnfollowButtonClicked()
+ openCreatePostActivity()
+ openPostDetailsActivity()
+ setBio()
+ setDefaultProfilePhoto()
+ setFollowStateChangeResultOk()
+ setProfileName()
+ setProfilePhoto()
+ setSkill()
+ setStatus()
+ showLikeCounter()
+ showPostCounter()
+ showUnfollowConfirmation()
+ startEditProfileActivity()
+ updateFollowButtonState()
+ updateFollowersCount()
+ updateFollowingsCount()
+ updateLikesCounter()
+ updatePostsCounter()
# onActivityResult()
# onCreate()
- initListeners()
- loadPostsList()
- onRefreshAction()
- scheduleStartPostponedTransition()
- startMainActivity()
- startUsersListActivity()
}
}
}
namespace com.architectica.socialcomponents {
namespace main.profile {
class com.architectica.socialcomponents.main.profile.ProfilePresenter {
- activity : Activity
+ buildCounterSpannable()
+ checkFollowState()
+ checkPostChanges()
+ getFollowersCount()
+ getFollowingsCount()
+ loadProfile()
+ onCreatePostClick()
+ onEditProfileClick()
+ onFollowButtonClick()
+ onPostListChanged()
+ unfollowUser()
~ ProfilePresenter()
~ onPostClick()
- followUser()
}
}
}
namespace com.architectica.socialcomponents {
namespace main.profile {
interface com.architectica.socialcomponents.main.profile.ProfileView {
{abstract} + hideLoadingPostsProgress()
{abstract} + onPostRemoved()
{abstract} + onPostUpdated()
{abstract} + openCreatePostActivity()
{abstract} + openPostDetailsActivity()
{abstract} + setBio()
{abstract} + setDefaultProfilePhoto()
{abstract} + setFollowStateChangeResultOk()
{abstract} + setProfileName()
{abstract} + setProfilePhoto()
{abstract} + setSkill()
{abstract} + setStatus()
{abstract} + showLikeCounter()
{abstract} + showPostCounter()
{abstract} + showUnfollowConfirmation()
{abstract} + startEditProfileActivity()
{abstract} + updateFollowButtonState()
{abstract} + updateFollowersCount()
{abstract} + updateFollowingsCount()
{abstract} + updateLikesCounter()
{abstract} + updatePostsCounter()
}
}
}
com.architectica.socialcomponents.main.profile.ProfileActivity .up.|> com.architectica.socialcomponents.dialogs.UnfollowConfirmationDialog.Callback
com.architectica.socialcomponents.main.profile.ProfileActivity .up.|> com.architectica.socialcomponents.main.profile.ProfileView
com.architectica.socialcomponents.main.profile.ProfileActivity .up.|> com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener
com.architectica.socialcomponents.main.profile.ProfileActivity -up-|> com.architectica.socialcomponents.main.base.BaseActivity
com.architectica.socialcomponents.main.profile.ProfileActivity o-- com.architectica.socialcomponents.views.FollowButton : followButton
com.architectica.socialcomponents.main.profile.ProfileActivity o-- com.architectica.socialcomponents.adapters.PostsByUserAdapter : postsAdapter
com.architectica.socialcomponents.main.profile.ProfilePresenter -up-|> com.architectica.socialcomponents.main.base.BasePresenter
com.architectica.socialcomponents.main.profile.ProfilePresenter o-- com.architectica.socialcomponents.managers.FollowManager : followManager
com.architectica.socialcomponents.main.profile.ProfilePresenter o-- com.architectica.socialcomponents.model.Profile : profile
com.architectica.socialcomponents.main.profile.ProfilePresenter o-- com.architectica.socialcomponents.managers.ProfileManager : profileManager
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 |
04cc3a838d85efc71b2e8f1c31bcc4c821b7a6b6 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ChannelPagedQueryResponse.puml | 07102f87592685620426b28ed697532f4cc5ccaf | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 406 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface ChannelPagedQueryResponse [[ChannelPagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[Channel.svg List<Channel>]]
}
@enduml
| false | true | false | false | class |
01b4719b4bdcd9bf96b0da3a82b337a8128a7ad6 | d8182094b66986f8ee19dac0e173a59cdd4d9315 | /case1.puml | fad5052bef90fb7bfcac778cced25fcd557691e8 | [] | no_license | peeraphonza2143/OOP-work | 42c44b3673618c9d11b1a65fdee7d67127a88180 | 244df2986ce2e4e76a182d64a7d669fc9a579954 | refs/heads/main | 2023-03-29T15:40:45.764061 | 2021-04-09T14:36:52 | 2021-04-09T14:36:52 | 356,301,055 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 112 | puml | @startuml
Me-> (walk to 7-11)
Me--> (Select a product)
seller--> (Charge)
Me--> (Pay) : Have money
@enduml | false | true | false | false | sequence |
b61ebf9b88410d61f8e15070e8c91c2a0df8371e | 531021c0d92723ea2ab9e3609f7bc7ee099099f9 | /todo-code/src/main/kotlin/io/patamon/todo/design_pattern/模板方法设计模式.puml | 19b07e01f3c337f168dad83edfec29c05b06d075 | [] | no_license | IceMimosa/TODO | fba00de99ac6cd99d64c5f0954860863abe78aba | 192c73a827e905f9d0473c602d15d1df7a6623d8 | refs/heads/master | 2022-06-03T15:48:53.673061 | 2022-05-29T13:32:54 | 2022-05-29T13:32:54 | 137,827,298 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 315 | puml | @startuml
package "Parent" {
abstract Parent {
-method()
+abstract childDo()
+hook()
}
}
package "Children" {
class Children1 extends Parent {
+abstract childDo()
}
class Children2 extends Parent {
+abstract childDo()
+hook()
}
}
@enduml
| false | true | false | false | class |
bb985121f9681482493934dba041e8db6554c5eb | 09a8f84c65d9d5c7cde7ab4065c178551b5a4bbd | /doc/Diagramas/Diagramas_Secuencia/OrderedChoice/OrderedChoiceCreacion.puml | dddcc2c4f4d91d45b8dd268dfc0bdee166cb1e23 | [
"MIT"
] | permissive | besednjak/TP2-Programacion-III | e6cb56ae978e4add773cdc597e42e2d24d6e4a1b | 41aa07da9a77272106e06bd2b363dbcb07339485 | refs/heads/main | 2022-12-27T06:08:08.452458 | 2020-10-02T14:45:13 | 2020-10-02T14:45:13 | 300,644,868 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 506 | puml | @startuml
title Creación OrderedChoice Con Opciones Válidas
hide footbox
Kahoot -> CreadorPregunta: CreadorPregunta.crearPregunta(TipoPregunta.OrderedChoice, pregunta, opciones)
CreadorPregunta -> OrderedChoice: new OrderedChoice(pregunta, opciones)
activate OrderedChoice
OrderedChoice -> OrderedChoice: validarOpciones(opciones)
OrderedChoice -> CreadorPregunta: new OrderedChoice(pregunta, opciones)
deactivate OrderedChoice
CreadorPregunta --> Kahoot: new OrderedChoice(pregunta, opciones)
@enduml | false | true | true | false | sequence |
37bec89483ee8ae791cb0cd4b85f32ab3c62eb1c | 6153f22ccad5e550ec60e6465d77bd7088174144 | /DesignPattern/CommandPattern/uml.puml | 34d03b00247101d46eb13695c852ab8521aaa060 | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | zwxbest/Demo | a5093d4e82b269d200d23a7a390e299334301917 | 16ce40b63907d52d65ad93fba6a793847911d216 | refs/heads/master | 2023-06-08T17:15:27.688512 | 2022-03-03T03:53:31 | 2022-03-03T03:53:31 | 123,203,277 | 1 | 7 | MIT | 2023-05-26T22:15:03 | 2018-02-27T23:52:55 | Roff | UTF-8 | PlantUML | false | false | 228 | puml | @startuml
abstract class Command{
ExcuteCommand()
}
class Barbecuer{
}
class Waiter{
}
Command->Barbecuer
BakeMuttonCommand--up|>Command
BakeMuttonCommand--up|>Command
Waiter"1"->"*"Command
Main..>Command
Main..>Waiter
@enduml | false | true | false | false | class |
a8cf5a4fd40be1ae301b9b927b8336313afba0d3 | 3036c22a32729f805d97314fa406f2746b0e5e7a | /src/uml/ATF Class Diagram.puml | 5e4662f369ba98d981ca6249ea612641470085b6 | [] | no_license | Moriceg/ATF_from_scratch_EM | 495ce8bd4ea9bdd08e591959a05d5ac107bc82e9 | 850974515638de48ae7dfe7a5a05ed9a6d2794a3 | refs/heads/master | 2021-07-09T05:23:02.835157 | 2019-04-09T09:40:53 | 2019-04-09T13:56:37 | 133,915,040 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,132 | puml | @startuml
IUiMap ..> UiMap
class UiMap {
-WebDriver _driver
+UiMap(WebDriver driver)
+List<WebElement> getElements()
+WebElement getElement()
+click(String xPath)
+inputData(WebElement element, String xPath)
}
class DriverFactory {
-WebDriver driver
-String browser
-DriverFactory(String browser)
-WebDriver driverInitialize()
+WebDriver getBrowser()
+setDriver(WebDriver driver)
}
IConfiguration ..> Configuration
class Configuration{
+loadConfiguration()
+String getConfigurationSection()
+selectConfigurationSection()
+String getItem(String key)
+setItem(String key)
}
com.atf.LoginTest "1" o-- "1" DriverFactory
class Constants {
+{static}String DRIVERS_DIRECTORY
+{static}String PATH_TO_DRIVERS
+{static}String CHROME_DRIVER_DIRECTORY
+{static}String IE_DRIVER_DIRECTORY
+{static}String FIREFOX_DRIVER_DIRECTORY
+{static}String SYSTEM_UNDERTEST
+{static}String BROWSER
}
class com.atf.LoginTest{
+WebDriver driver
+String browserForTest
+LoginPageObject loginPage
+UiMap uiMap
+setUp()
+tearDown()
--
Others test methods
}
UiMap --> com.atf.LoginTest
Constants --> com.atf.LoginTest
Constants --> DriverFactory
@enduml | false | true | false | false | class |
a7eef53a080707b3b90bd7f6316fdb57cabf8536 | a751888fd29a1b92bb32ef7d272d3e72f664ed30 | /src/design/ccsds-lexical-analysis-sequence-diagram.puml | 5efc7a7f9a509b26d61211354c76e0434dc6d0e1 | [
"Apache-2.0",
"MIT",
"EPL-1.0"
] | permissive | petrushy/Orekit | b532c7db85c992d85b5ac3d858d18d656e2b8c46 | 1f8ff45caf82e0e7e85f8cf9fd4f41c3ba379443 | refs/heads/develop | 2023-08-16T11:37:43.709083 | 2023-07-18T20:13:14 | 2023-07-18T20:13:14 | 42,349,064 | 10 | 2 | Apache-2.0 | 2023-07-21T14:54:14 | 2015-09-12T07:39:56 | Java | UTF-8 | PlantUML | false | false | 3,787 | puml | ' Copyright 2002-2022 CS GROUP
' Licensed to CS GROUP (CS) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' CS licenses this file to You under the Apache License, Version 2.0
' (the "License"); you may not use this file except in compliance with
' the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
@startuml
skinparam svek true
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam SequenceActorBorderColor #6A584B
skinparam SequenceParticipantBackgroundColor #F3EFEB/CCC9C5
skinparam SequenceParticipantBorderColor #6A584B
skinparam SequenceLifeLineBackgroundColor #CCC9C5/F3EFEB
skinparam SequenceLifeLineBorderColor #6A584B
skinparam SequenceArrowColor #6A584B
skinparam SequenceBorderColor #6A584B
skinparam SequenceFontSize 11
hide footbox
box "User application" #F3EDF7
participant Main
end box
participant MessageParser
participant DataSource
participant LexicalAnalyzerSelector
participant BufferedInputStream
participant XyzLexicalAnalyzer
participant ParseToken
participant NdmConstituent
activate Main
create DataSource
Main -> DataSource : new
create MessageParser
Main -> MessageParser : new
Main -> MessageParser : parse(source)
activate MessageParser
MessageParser -> LexicalAnalyzerSelector : select
activate LexicalAnalyzerSelector
LexicalAnalyzerSelector -> DataSource : openStreamOnce
activate DataSource
return stream
deactivate DataSource
create BufferedInputStream
LexicalAnalyzerSelector -> BufferedInputStream : new
LexicalAnalyzerSelector -> BufferedInputStream : read first 24 bytes
activate BufferedInputStream
BufferedInputStream --> LexicalAnalyzerSelector : 24 bytes
deactivate BufferedInputStream
create XyzLexicalAnalyzer
LexicalAnalyzerSelector -> XyzLexicalAnalyzer : new
LexicalAnalyzerSelector -> BufferedInputStream : reset to stream start
activate BufferedInputStream
deactivate BufferedInputStream
LexicalAnalyzerSelector --> MessageParser : selected lexical analyzer
deactivate LexicalAnalyzerSelector
MessageParser -> XyzLexicalAnalyzer : accept(parser)
activate XyzLexicalAnalyzer
XyzLexicalAnalyzer -> MessageParser : reset(fileFormat)
activate MessageParser
deactivate MessageParser
loop until end of message reached
XyzLexicalAnalyzer -> BufferedInputStream : read
activate BufferedInputStream
BufferedInputStream --> XyzLexicalAnalyzer : characters
deactivate BufferedInputStream
create ParseToken
XyzLexicalAnalyzer -> ParseToken : new
XyzLexicalAnalyzer -> MessageParser : process(parseToken)
activate MessageParser
deactivate MessageParser
end
deactivate XyzLexicalAnalyzer
create NdmConstituent
MessageParser -> NdmConstituent : build
MessageParser --> Main : NdmConstituent
deactivate MessageParser
deactivate Main
@enduml
| false | true | false | false | sequence |
1a5a135e40be5b8d8bbf4c936bea2c1554d93336 | e0f79076cdc050bdf5449eb8c5da1f1294378ac6 | /src/main/java/com/atguigu/priciples/segregation/improve/Segragation2.puml | df3a530206856657a19aef3c8ba09790a35d76d7 | [] | no_license | rrong777/design_patterns | 0ab37c77523736dc8d79d29f26de87e844b6a7b6 | 2ff4f4cb82e948d3c11e3c18826dc8a90c34fd8a | refs/heads/main | 2023-05-03T08:42:43.712829 | 2021-05-25T04:42:54 | 2021-05-25T04:42:54 | 368,487,168 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 377 | puml | @startuml
interface Interface1 {
operation1():void
}
interface Interface2 {
operation2():void
operation3():void
}
interface Interface3 {
operation4():void
operation5():void
}
class A{}
class B implements Interface1,Interface2{}
class C{}
class D implements Interface1,Interface3{}
A ..> Interface1
A ..> Interface2
C ..> Interface1
C ..> Interface3
@enduml
| false | true | false | false | class |
f481aa26601ec5d1b749c1027e976bbb48fd5a0f | 537498d7dc9775ed553e8e6e0482142c97ad6bff | /app/src/main/java/com/example/jiana/myapplication/ATM_1.puml | 02e759d8941e70e63e9a738c5bb4367e8f70383a | [] | no_license | zhaohaun/OOD-study | 497deeb71d127dd776b9ba1333587a075b78574f | 9e6107100935e9ee9f27df7efe49cac6191a40c4 | refs/heads/master | 2021-05-10T21:11:29.422477 | 2016-05-18T17:20:25 | 2016-05-18T17:20:25 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 898 | puml | @startuml
abstract Transaction<<abstract>> {
+Execute()
}
class DepositTransaction
class WithdrawalTransaction
class TransferTransaction
interface DepositUI <<interface>>{
+RequestDepositAmount()
}
interface WithdrawalUI <<interface>>{
+RequestWithdrawalAmount()
}
interface TransferUI <<interface>>{
+RequestTransferAmount()
}
interface UI <<interface>>{
+RequestDepositAmount()
+RequestWithdrawalAmount()
+RequestTransferAmount()
}
hide members
show Transaction methods
show DepositUI methods
show TransferUI methods
show WithdrawalUI methods
show UI methods
DepositTransaction -up-|> Transaction
WithdrawalTransaction -up-|> Transaction
TransferTransaction -up-|> Transaction
DepositTransaction ..> DepositUI
WithdrawalTransaction ..> WithdrawalUI
TransferTransaction ..> TransferUI
UI -up-|> DepositUI
UI -up-|> WithdrawalUI
UI -up-|> TransferUI
@enduml | false | true | false | false | class |
afa523fbb33e4146bb9626e9274e53ba5278291f | 99fd128e25c1aef4813198b9594d1366b6e23943 | /Techs/software-craft/know-design/design-pattern/structural-patterns/proxy/proxy_pattern_class.puml | 3c8db22feaa1b73be78da2cfba959573cf2ec321 | [] | no_license | tcfh2016/knowledge-map | 68a06e33f8b9da62f9260035123b9f86850316f0 | 23aff8bf83c07330f1d6422fc6d634d3ecf88da4 | refs/heads/master | 2023-08-24T19:14:58.838786 | 2023-08-13T12:04:37 | 2023-08-13T12:04:45 | 83,497,980 | 2 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 199 | puml | @startuml
class Client {
}
abstract Subject {
}
Client -> Subject
class ConcreteSubject {
}
class Proxy {
}
Subject <|-- ConcreteSubject
Subject <|-- Proxy
ConcreteSubject <- Proxy
@enduml
| false | true | false | false | class |
3eea4a9525ef18344baf61a34726e80874bd9e5e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductRevertStagedChangesAction.puml | deee1994337da425e2822d0e24a462cbf3e7cc0a | [] | 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 | 439 | 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 ProductRevertStagedChangesAction [[ProductRevertStagedChangesAction.svg]] extends ProductUpdateAction {
action: String
}
interface ProductUpdateAction [[ProductUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
9ef4660f3bb30120f4a67ab16ea6ad0a493ce371 | 1ac0a5cf0a74b207d7cdac817f81b15f452f494c | /Livrables/Diagrammes/Composants/UML/MasterChef.plantuml | 9e730199004771a04d0d6102bb28b0639f71ee8b | [
"MIT"
] | permissive | HugoLA1/Projet-programmation-systeme | 1f143b71a52871ca3536b30d78592c29f19aae97 | 5262fa64cd862283078346b4f8a2aa69246d47d6 | refs/heads/master | 2020-06-01T10:33:49.688170 | 2018-12-13T13:22:55 | 2018-12-13T13:22:55 | 190,750,176 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 230 | plantuml | @startuml
class MasterChef {
+ sectionChefs : List<SectionChef> <<get>> <<set>>
+ commandsToDo : List<Command> <<get>> <<set>>
+ posX : int <<get>> <<set>>
+ posY : int <<get>> <<set>>
+ MasterChef()
}
@enduml
| false | true | false | false | class |
9c73a81e80fe6e04e1927868c2539d273c45e358 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyPaymentUpdateAction.puml | d827dbb00319eefa389150cfd9a1910b70dad19e | [] | 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 | 2,345 | 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 MyPaymentUpdateAction [[MyPaymentUpdateAction.svg]] {
action: String
}
interface MyPaymentAddTransactionAction [[MyPaymentAddTransactionAction.svg]] {
action: String
transaction: [[TransactionDraft.svg TransactionDraft]]
}
interface MyPaymentChangeAmountPlannedAction [[MyPaymentChangeAmountPlannedAction.svg]] {
action: String
amount: [[Money.svg Money]]
}
interface MyPaymentSetCustomFieldAction [[MyPaymentSetCustomFieldAction.svg]] {
action: String
name: String
value: [[Object.svg Object]]
}
interface MyPaymentSetMethodInfoInterfaceAction [[MyPaymentSetMethodInfoInterfaceAction.svg]] {
action: String
interface: String
}
interface MyPaymentSetMethodInfoMethodAction [[MyPaymentSetMethodInfoMethodAction.svg]] {
action: String
method: String
}
interface MyPaymentSetMethodInfoNameAction [[MyPaymentSetMethodInfoNameAction.svg]] {
action: String
name: [[LocalizedString.svg LocalizedString]]
}
interface MyPaymentSetTransactionCustomFieldAction [[MyPaymentSetTransactionCustomFieldAction.svg]] {
action: String
name: String
value: [[Object.svg Object]]
}
interface MyPaymentUpdate [[MyPaymentUpdate.svg]] {
version: Long
actions: [[MyPaymentUpdateAction.svg List<MyPaymentUpdateAction>]]
}
MyPaymentUpdateAction --> MyPaymentAddTransactionAction #blue;text:blue : "action : addTransaction"
MyPaymentUpdateAction --> MyPaymentChangeAmountPlannedAction #blue;text:blue : "action : changeAmountPlanned"
MyPaymentUpdateAction --> MyPaymentSetCustomFieldAction #blue;text:blue : "action : setCustomField"
MyPaymentUpdateAction --> MyPaymentSetMethodInfoInterfaceAction #blue;text:blue : "action : setMethodInfoInterface"
MyPaymentUpdateAction --> MyPaymentSetMethodInfoMethodAction #blue;text:blue : "action : setMethodInfoMethod"
MyPaymentUpdateAction --> MyPaymentSetMethodInfoNameAction #blue;text:blue : "action : setMethodInfoName"
MyPaymentUpdateAction --> MyPaymentSetTransactionCustomFieldAction #blue;text:blue : "action : setTransactionCustomField"
MyPaymentUpdateAction --> MyPaymentUpdate #green;text:green : "actions"
@enduml
| false | true | false | false | sequence |
f1aadc7fa87dc065a01e925b42108463760dbf67 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Manipulators/Utils/ManipulatorsUtils.puml | ff4d3e62b1d2e8c8dde87d79212a281d796cd212 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 111 | puml | @startuml
class ManipulatorsUtils <<static>> {
}
ManipulatorsUtils --> "actionModifier" EventModifiers
@enduml
| false | true | false | false | class |
8644288eccc8cb36eb801c639d32050f6fb24ec0 | 82ed48c9ed9ed4ad1c56d5c9d02a9d7574c1f30d | /docs/MoveRobotCollectorSequence.puml | bb4e088a7c6fc7ecddc20663e21b808cdb036582 | [] | no_license | dmorenoh/pollutioncollector | f0fdbfa16a1c8b88b0751c9f36c70d4ae77f5d10 | 016e94ae56cbaf815baf6cedf87ca3cf17ed9ea5 | refs/heads/master | 2020-04-30T12:53:33.318152 | 2019-11-05T21:41:34 | 2019-11-05T21:41:34 | 176,838,304 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 336 | puml | @startuml
actor EventBus
boundary EventHandler
control RobotCommandHandler
entity Robot
database PollutionValues
EventBus -> EventHandler: handle(PollutionCollectionStartedEvent)
EventHandler -> RobotCommandHandler: moveRobot
RobotCommandHandler -> Robot:moveToSpecificPoint
RobotCommandHandler -> PollutionValues: save(PMValue)
@enduml | false | true | false | false | usecase |
9154c00552d4333bf200e4cc34a1a1f9a52f56c3 | 70b52b6b0217b218c77a7ab5acbdf2fce264e89f | /src/main/java/cs/service/core/resources/resources.plantuml | 73c8e876055316a62e07b94d6dd1a0b244acf45f | [] | no_license | 123cs/demo_java | b1f7befdd19640ccd241b85c5b297db02913588d | 209d9edeb6da39fe58e28190ad2327f7cb66645a | refs/heads/master | 2020-04-07T16:25:02.300852 | 2018-11-21T10:51:23 | 2018-11-21T10:51:23 | 158,528,295 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 732 | plantuml | @startuml
title __RESOURCES's Class Diagram__\n
package cs.service.core {
package cs.service.core.resources {
abstract class AbstractResource {
# _systemMain : SystemMain
# copyProperties()
# convertMapToJson()
# outputJson()
}
}
}
package cs.service.core {
package cs.service.core.resources {
class DemoResource {
# sc : SecurityContext
+ demo()
+ demoAuth()
}
}
}
DemoResource -up-|> AbstractResource
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 |
3266350dd5a96e341f7c7a29efb8814cafb30059 | d6ca810d2ec991d97c1bc8581ed06763c57641ce | /development/felica/TestCords/FericaReader/plantuml/FericaLib/FelicaLib.puml | 0da98da5ee89817c05205d5dc730352dbb2bd338 | [] | no_license | miyashita-atsushi/team_a | c847d571c5a522339ee0c3ac2c5ee0cb0753411b | 3cfec172375aafeef64c40a575dddde64f0a8ed3 | refs/heads/master | 2023-02-25T07:39:36.010130 | 2020-05-29T09:12:57 | 2020-05-29T09:12:57 | 254,561,813 | 0 | 1 | null | 2021-01-29T20:47:18 | 2020-04-10T06:33:38 | C# | UTF-8 | PlantUML | false | false | 354 | puml | @startuml
enum SystemCode {
Any= 0xffff,
Common= 0xfe00,
Cyberne= 0x0003,
Edy= 0xfe00,
Suica= 0x0003,
}
class Felica {
+ Felica()
+ Dispose() : void
+ Polling(systemcode:int) : void
+ IDm() : byte[]
+ PMm() : byte[]
+ ReadWithoutEncryption(servicecode:int, addr:int) : byte[]
}
IDisposable <|-- Felica
@enduml
| false | true | false | false | class |
bbc8131caf3e00705a636bcee00d3748fe672fe7 | bd63d80260f1ae132bcb12154952b9127eb7c716 | /presensor.plantuml | bd47351d761e1126767183bbf42ce16b10866724 | [] | no_license | mateuscostaluz/presensor | 73a6a3874d68fd4b61ff2aeee2e810e968c865d5 | 19c11898fed18ea2cb699e18f7786fe831bb147f | refs/heads/main | 2023-06-03T05:12:42.885084 | 2021-06-20T22:39:05 | 2021-06-20T22:39:05 | 291,566,288 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 11,724 | plantuml | @startuml
title __PRESENCE-CONTROL-USING-BLUETOOTH-BEACON's Class Diagram__\n
class br.gov.sp.fatec.presensor.controller.AlunoController {
+ AlunoController()
+ cadastro()
+ findAll()
+ login()
}
class br.gov.sp.fatec.presensor.controller.HorarioDisciplinaController {
+ HorarioDisciplinaController()
+ findAll()
+ findHorarioDisciplinaByDiaSemanaAndHorario()
}
class br.gov.sp.fatec.presensor.controller.PresencaController {
+ PresencaController()
+ findAll()
+ findByCustomFilter()
+ savePresenca()
}
class br.gov.sp.fatec.presensor.dto.AlunoLogin {
- email : String
- senha : String
+ getEmail()
+ getSenha()
}
class br.gov.sp.fatec.presensor.dto.AlunoRq {
- email : String
- nome : String
- ra : Long
- senha : String
+ getEmail()
+ getNome()
+ getRa()
+ getSenha()
+ setEmail()
+ setNome()
+ setRa()
+ setSenha()
}
class br.gov.sp.fatec.presensor.dto.AlunoRs {
- email : String
- nome : String
- ra : Long
{static} + converter()
+ getEmail()
+ getNome()
+ getRa()
+ setEmail()
+ setNome()
+ setRa()
}
class br.gov.sp.fatec.presensor.dto.HorarioDisciplinaRs {
- horarioFim : Time
- horarioInicio : Time
- id : Long
{static} + converter()
+ getDiaSemana()
+ getDisciplina()
+ getHorarioFim()
+ getHorarioInicio()
+ getId()
+ getSala()
+ setDiaSemana()
+ setDisciplina()
+ setHorarioFim()
+ setHorarioInicio()
+ setId()
+ setSala()
}
class br.gov.sp.fatec.presensor.dto.PresencaRq {
- idHorarioDisciplina : Long
- raAluno : Long
+ getIdHorarioDisciplina()
+ getRaAluno()
+ setIdHorarioDisciplina()
+ setRaAluno()
}
class br.gov.sp.fatec.presensor.dto.PresencaRs {
- dataPresenca : LocalDate
- diaSemana : String
- idPresenca : Long
- nomeAluno : String
- nomeDisciplina : String
- numeroSala : Integer
- raAluno : Long
- siglaDisciplina : String
- uuidBeaconSala : String
{static} + converter()
+ getDataPresenca()
+ getDiaSemana()
+ getIdPresenca()
+ getNomeAluno()
+ getNomeDisciplina()
+ getNumeroSala()
+ getRaAluno()
+ getSiglaDisciplina()
+ getUuidBeaconSala()
+ setDataPresenca()
+ setDiaSemana()
+ setIdPresenca()
+ setNomeAluno()
+ setNomeDisciplina()
+ setNumeroSala()
+ setRaAluno()
+ setSiglaDisciplina()
+ setUuidBeaconSala()
}
class br.gov.sp.fatec.presensor.dto.Response {
- data : Object
- message : String
- status : Integer
+ Response()
+ getData()
+ getMessage()
+ getStatus()
+ setData()
+ setMessage()
+ setStatus()
}
class br.gov.sp.fatec.presensor.exception.CustomException {
- httpStatus : HttpStatus
- message : String
{static} - serialVersionUID : long
+ CustomException()
+ getHttpStatus()
+ getMessage()
}
class br.gov.sp.fatec.presensor.model.Aluno {
- email : String
- nome : String
- ra : Long
- role : String
- senha : String
+ getEmail()
+ getNome()
+ getRa()
+ getRole()
+ getRoles()
+ getSenha()
+ setEmail()
+ setNome()
+ setRa()
+ setRole()
+ setSenha()
}
class br.gov.sp.fatec.presensor.model.DiaSemana {
- dia : String
- id : Integer
+ getDia()
+ getId()
+ setDia()
+ setId()
}
class br.gov.sp.fatec.presensor.model.Disciplina {
- nome : String
- sigla : String
+ getNome()
+ getSigla()
+ setNome()
+ setSigla()
}
class br.gov.sp.fatec.presensor.model.HorarioDisciplina {
- horarioFim : Time
- horarioInicio : Time
- id : Long
+ getDiaSemana()
+ getDisciplina()
+ getHorarioFim()
+ getHorarioInicio()
+ getId()
+ getSala()
+ setDiaSemana()
+ setDisciplina()
+ setHorarioFim()
+ setHorarioInicio()
+ setId()
+ setSala()
}
class br.gov.sp.fatec.presensor.model.Presenca {
- dataPresenca : LocalDate
- id : Long
+ getAluno()
+ getDataPresenca()
+ getHorarioDisciplina()
+ getId()
+ setAluno()
+ setDataPresenca()
+ setHorarioDisciplina()
+ setId()
}
enum br.gov.sp.fatec.presensor.model.Role {
ROLE_ADMIN
ROLE_CLIENT
}
class br.gov.sp.fatec.presensor.model.Sala {
- numero : Integer
- uuidBeacon : String
+ getNumero()
+ getUuidBeacon()
+ setNumero()
+ setUuidBeacon()
}
interface br.gov.sp.fatec.presensor.repository.AlunoRepository {
{abstract} + existsByEmail()
{abstract} + findByEmail()
}
interface br.gov.sp.fatec.presensor.repository.DisciplinaRepository {
{abstract} + findBySigla()
}
interface br.gov.sp.fatec.presensor.repository.HorarioDisciplinaRepository {
{abstract} + findByDiaSemanaAndHorarioNamedParams()
}
class br.gov.sp.fatec.presensor.repository.PresencaCustomRepository {
- em : EntityManager
+ PresencaCustomRepository()
+ findBySiglaDisciplinaAndNumeroSalaAndData()
}
interface br.gov.sp.fatec.presensor.repository.PresencaRepository {
{abstract} + findByRaAlunoAndIdHorarioDisciplinaAndData()
}
interface br.gov.sp.fatec.presensor.repository.SalaRepository {
{abstract} + findByNumero()
}
class br.gov.sp.fatec.presensor.security.JwtTokenFilter {
+ JwtTokenFilter()
# doFilterInternal()
}
class br.gov.sp.fatec.presensor.security.JwtTokenFilterConfigurer {
+ JwtTokenFilterConfigurer()
+ configure()
}
class br.gov.sp.fatec.presensor.security.JwtTokenProvider {
- secretKey : String
- validityInMilliseconds : long
+ createToken()
+ getAuthentication()
+ getUsername()
+ resolveToken()
+ validateToken()
# init()
}
class br.gov.sp.fatec.presensor.security.MyUserDetails {
+ loadUserByUsername()
}
class br.gov.sp.fatec.presensor.security.WebConfig {
+ addCorsMappings()
}
class br.gov.sp.fatec.presensor.security.WebSecurityConfig {
+ authenticationManagerBean()
+ passwordEncoder()
# configure()
}
class br.gov.sp.fatec.presensor.service.DateTimeServices {
{static} + getDayOfWeek()
{static} + getLocalDate()
{static} + getLocalTime()
}
class br.gov.sp.fatec.presensor.service.UserService {
- authenticationManager : AuthenticationManager
- passwordEncoder : PasswordEncoder
+ signin()
+ signup()
}
br.gov.sp.fatec.presensor.controller.AlunoController o-- br.gov.sp.fatec.presensor.repository.AlunoRepository : alunoRepository
br.gov.sp.fatec.presensor.controller.AlunoController o-- br.gov.sp.fatec.presensor.service.UserService : userService
br.gov.sp.fatec.presensor.controller.HorarioDisciplinaController o-- br.gov.sp.fatec.presensor.repository.HorarioDisciplinaRepository : horarioDisciplinaRepository
br.gov.sp.fatec.presensor.controller.PresencaController o-- br.gov.sp.fatec.presensor.repository.AlunoRepository : alunoRepository
br.gov.sp.fatec.presensor.controller.PresencaController o-- br.gov.sp.fatec.presensor.repository.HorarioDisciplinaRepository : horarioDisciplinaRepository
br.gov.sp.fatec.presensor.controller.PresencaController o-- br.gov.sp.fatec.presensor.repository.PresencaCustomRepository : presencaCustomRepository
br.gov.sp.fatec.presensor.controller.PresencaController o-- br.gov.sp.fatec.presensor.repository.PresencaRepository : presencaRepository
br.gov.sp.fatec.presensor.dto.HorarioDisciplinaRs o-- br.gov.sp.fatec.presensor.model.DiaSemana : diaSemana
br.gov.sp.fatec.presensor.dto.HorarioDisciplinaRs o-- br.gov.sp.fatec.presensor.model.Disciplina : disciplina
br.gov.sp.fatec.presensor.dto.HorarioDisciplinaRs o-- br.gov.sp.fatec.presensor.model.Sala : sala
br.gov.sp.fatec.presensor.model.HorarioDisciplina o-- br.gov.sp.fatec.presensor.model.DiaSemana : diaSemana
br.gov.sp.fatec.presensor.model.HorarioDisciplina o-- br.gov.sp.fatec.presensor.model.Disciplina : disciplina
br.gov.sp.fatec.presensor.model.HorarioDisciplina o-- br.gov.sp.fatec.presensor.model.Sala : sala
br.gov.sp.fatec.presensor.model.Presenca o-- br.gov.sp.fatec.presensor.model.Aluno : aluno
br.gov.sp.fatec.presensor.model.Presenca o-- br.gov.sp.fatec.presensor.model.HorarioDisciplina : horarioDisciplina
br.gov.sp.fatec.presensor.repository.PresencaCustomRepository o-- br.gov.sp.fatec.presensor.repository.DisciplinaRepository : disciplinaRepository
br.gov.sp.fatec.presensor.repository.PresencaCustomRepository o-- br.gov.sp.fatec.presensor.repository.SalaRepository : salaRepository
br.gov.sp.fatec.presensor.security.JwtTokenFilter o-- br.gov.sp.fatec.presensor.security.JwtTokenProvider : jwtTokenProvider
br.gov.sp.fatec.presensor.security.JwtTokenFilterConfigurer o-- br.gov.sp.fatec.presensor.security.JwtTokenProvider : jwtTokenProvider
br.gov.sp.fatec.presensor.security.JwtTokenProvider o-- br.gov.sp.fatec.presensor.security.MyUserDetails : myUserDetails
br.gov.sp.fatec.presensor.security.MyUserDetails o-- br.gov.sp.fatec.presensor.repository.AlunoRepository : alunoRepository
br.gov.sp.fatec.presensor.security.WebSecurityConfig o-- br.gov.sp.fatec.presensor.security.JwtTokenProvider : jwtTokenProvider
br.gov.sp.fatec.presensor.service.UserService o-- br.gov.sp.fatec.presensor.repository.AlunoRepository : alunoRepository
br.gov.sp.fatec.presensor.service.UserService o-- br.gov.sp.fatec.presensor.security.JwtTokenProvider : jwtTokenProvider
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 |
087182d9b14058ce13633c1e98985193fdbd0395 | bede413c7187440a646e3262d9075a35942b4528 | /docs/diagrams/ParserSequenceDiagram.puml | 2d39d621e24508161f38c1f0ff2158e4bfe0d563 | [] | no_license | yeezao/tp | 01561a6d5e81084f7a3d5b3818614211a4212a88 | d659d8a0a4b96c7c0cd5aaf9bdf4a2ec9dbb3830 | refs/heads/master | 2023-08-31T20:02:40.001168 | 2021-11-08T14:54:06 | 2021-11-08T14:54:06 | 411,917,426 | 1 | 0 | null | 2021-09-30T04:05:28 | 2021-09-30T04:05:28 | null | UTF-8 | PlantUML | false | false | 1,280 | puml | @startuml
'https://plantuml.com/sequence-diagram
actor User
participant ":Parser" as Parser
participant "{abstract}\n:CommandHandler" as CommandHandler
participant "{abstract}\n:CommandExecutor" as CommandExecutor
'Parser check for valid input
loop userInput != Quit
User -> Parser: userInput
activate Parser
Parser -> Parser: parseUserInput
activate Parser
Parser -> Parser: checkValidInput
alt ValidInput
activate Parser
Parser -> CommandHandler: handleCommand
activate CommandHandler
else userInput == Quit || Help || Close
User <-- Parser: Show relevant output
else
User <-- Parser: Request for command again
deactivate Parser
deactivate Parser
deactivate Parser
end ValidInput
CommandHandler -> CommandExecutor: executeCommand
activate CommandExecutor
alt invalidInputParameters
CommandHandler <-- CommandExecutor: Error with input parameters
User <-- CommandHandler: Error message
else
CommandExecutor -> : Call relevant functions
alt invalidParameters
CommandExecutor <-- : Error with input parameters
CommandHandler <-- CommandExecutor: Error with input parameters
deactivate CommandExecutor
User <-- CommandHandler: Error message
deactivate CommandHandler
else
User <-- : Show relevant output
end invalidInputParameters
end invalidParameters
end loop
@enduml | false | true | false | false | sequence |
8d6db404565caa3984b2fdceaa3503fb241cc528 | abf0723c3044635cdc4da287d99d8757c11375fa | /src/com/yuuy/spring/framework/framework.plantuml | 1b876d3dc7bb616ae351b23e46b312e9f256df04 | [] | no_license | YuuyWei/Learn-Java | 9be260ee521c935c08d88a85351840395d557c00 | 8b5c6781741d55d627d9eceda04ab5ccd1600ef8 | refs/heads/master | 2023-04-29T09:55:20.335076 | 2021-05-11T14:33:37 | 2021-05-11T14:33:37 | 364,447,572 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,113 | plantuml | @startuml
title __FRAMEWORK's Class Diagram__\n
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.Autowired {
}
}
namespace com.yuuy.spring.framework {
class com.yuuy.spring.framework.BeanDefinition {
- clazz : Class
- scope : String
+ BeanDefinition()
+ getClazz()
+ getScope()
+ setClazz()
+ setScope()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.BeanNameAware {
{abstract} + setBeanName()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.BeanPostProcessor {
{abstract} + postProcessorAfterInitialization()
{abstract} + postProcessorBeforeInitialization()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.Component {
{abstract} + value()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.ComponentScan {
{abstract} + value()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.InitializeBean {
{abstract} + afterPropertiesSet()
}
}
namespace com.yuuy.spring.framework {
class com.yuuy.spring.framework.MyApplicationContext {
- beanDefinitionMap : Map<String, BeanDefinition>
- beanPostProcessors : List<String>
- configClass : Class
- singletonPools : Map<String, Object>
+ MyApplicationContext()
+ getBean()
- createBean()
- createSingleton()
{static} - getClass()
- getScanPath()
- register()
- registerBeanDefinition()
- registerBeanPostProcessor()
- scan()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.Scope {
{abstract} + value()
}
}
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 |
a0297f79cc9c71e05affcd20e780f7e0cae0ed42 | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/red/1161025/sp1/editEventSSD.puml | 23d95b285aa841cda100edaef23c01c2146ff5fb | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 381 | puml | @startuml analysis2.png
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
actor User
User -> Browser : edit event
Browser ->> Server : editEvent()
database Database
Server -> Database : save
Server -->> Browser : return
Browser -> Browser : display
@enduml
| false | true | false | false | sequence |
636e5488a8ca7c6dfa96c392376bf382e7602fda | f18ba1fbeb7f8d6149aff64633f9c77a92cfc936 | /assignments/e.lukyanchikova/elukyanchikovaTP3/elukyanchikovaTP3.plantuml | 8a542b859696a82bc5b7ee24a0d78224c88ab15d | [] | no_license | kzvdar42/InnopolisDesignPatterns | c34a728b7964f22a6b774a4616b7ac9515ae6263 | b1042e76875c9ccf69017e20edcea4b9e7b5682b | refs/heads/master | 2021-02-07T05:17:54.245396 | 2020-04-19T22:40:48 | 2020-04-19T22:40:48 | 243,987,548 | 0 | 0 | null | 2020-02-29T14:54:34 | 2020-02-29T14:54:34 | null | UTF-8 | PlantUML | false | false | 1,891 | plantuml | @startuml
title __ELUKYANCHIKOVATP3's Class Diagram__\n
class elukyanchikovaTP3.BrestPepperoniPizza {
+ BrestPepperoniPizza()
}
class elukyanchikovaTP3.BrestVegetarianPizza {
+ BrestVegetarianPizza()
}
class elukyanchikovaTP3.Main {
{static} + main()
}
abstract class elukyanchikovaTP3.Pizza {
# pizzaName : String
+ cook()
+ deliver()
+ getPizzaName()
+ pack()
+ prepare()
}
abstract class elukyanchikovaTP3.Pizzeria {
+ orderPizza()
{abstract} ~ createPizza()
}
namespace elukyanchikovaTP3 {
class elukyanchikovaTP3.PizzeriaStyleBrest {
# createPizza()
}
}
class elukyanchikovaTP3.PizzeriaStyleStrasbourg {
# createPizza()
}
class elukyanchikovaTP3.PizzeriaTest {
+ BrestPepperoniPizzaTest()
+ BrestVegetarianPizzaTest()
+ StrasbourgPepperoniPizzaTest()
+ StrasbourgVegetarianPizzaTest()
}
class elukyanchikovaTP3.StrasbourgPepperroniPizza {
+ StrasbourgPepperroniPizza()
}
class elukyanchikovaTP3.StrasbourgVegetarianPizza {
+ StrasbourgVegetarianPizza()
}
elukyanchikovaTP3.BrestPepperoniPizza -up-|> elukyanchikovaTP3.Pizza
elukyanchikovaTP3.BrestVegetarianPizza -up-|> elukyanchikovaTP3.Pizza
elukyanchikovaTP3.PizzeriaStyleBrest -up-|> elukyanchikovaTP3.Pizzeria
elukyanchikovaTP3.PizzeriaStyleStrasbourg -up-|> elukyanchikovaTP3.Pizzeria
elukyanchikovaTP3.StrasbourgPepperroniPizza -up-|> elukyanchikovaTP3.Pizza
elukyanchikovaTP3.StrasbourgVegetarianPizza -up-|> elukyanchikovaTP3.Pizza
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 |
88575becca77b9cf283c775a1afafe042c779418 | 124b894a3ef93319757b58a1fd24ff43d69e7186 | /docs/uml/create read pool.puml | 7487acddd81257794bee28eef32257f8d37dd5ef | [
"MIT"
] | permissive | 0chain/gosdk | 614cc6079609f0a02aefc37f9ef5d3e2164317ff | acf2724b91db051ea886b20f991cf4a34a48665c | refs/heads/staging | 2023-08-31T22:49:21.221247 | 2023-08-16T15:16:35 | 2023-08-16T15:16:35 | 191,593,548 | 30 | 36 | MIT | 2023-09-14T19:54:49 | 2019-06-12T15:04:03 | Go | UTF-8 | PlantUML | false | false | 212 | puml | @startuml
participant "<size:20><&terminal></size> ./zbox rp-create" as cli
collections gosdk
cli -> gosdk: CreateReadPool()
gosdk -> gosdk: check initialized sdk
gosdk -> gosdk: send smart contract txn
@enduml
| false | true | false | false | sequence |
6b4b9031a85e93965f17a6201292f00f2e992393 | 84c8da10fc932034e544e61ba1554901a1a24877 | /baseball.puml | 2e036c3dcb061c4290a00fb7cf8094b93a3bdf76 | [] | no_license | taichiw/baseball201712 | f78ca3d7dc9e483ecfe1a3e370f60fe920062d22 | c7d3aa8c32fe56b4f91088639104f1eb279b5f19 | refs/heads/master | 2021-08-30T17:47:25.304534 | 2017-12-18T22:00:20 | 2017-12-18T22:00:20 | 110,401,406 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 650 | puml | @startuml
component C
component D
component E
component F
component G
component H
component L
component M
component Bs
component S
component T
component DB
C ---> F
C ---> G
C ---> S
C --> DB
E ---> Bs
F ---> C
F -> G
F --> H
F ---> L
F --> S
F --> DB
G ---> C
G -> F
G ---> H
G ---> T
H --> F
H ---> G
H ---> S
H ---> T
H --> DB
L ---> F
L ---> Bs
L ---> T
L -> DB
M ---> T
Bs ---> E
Bs ---> L
Bs ---> T
S ---> C
S --> F
S ---> H
S ---> L
S ---> T
S --> DB
T ---> G
T ---> H
T ---> L
T ---> M
T ---> Bs
T ---> S
DB --> C
DB --> F
DB --> H
DB -> L
DB --> S
@enduml | false | true | false | false | component |
c7a98bcbd5d89bc38d598535476ce7dec1d6c71c | c9c618e7ea0dc7e1e8957ddba74791e0b34419af | /src/main/java/structuration/proxy/eni/proxy.puml | c73c3a4d4a1efee42a41a1be1f95639657f5a953 | [] | no_license | soffiane/java-design-patterns | c978e24723721895e559683ad3334a44ce540a05 | bff3ce4caf56590daa35e8b1a08bdcdf6e118e73 | refs/heads/master | 2020-12-03T06:12:13.046057 | 2020-02-13T21:48:22 | 2020-02-13T21:48:22 | 231,225,139 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 759 | puml | @startuml
note "Proxy est un pattern dont le but est de\nfournir un objet qui va controler l'acces\na un autre. Le proxy a la meme interface\nque l'objet controlé. Ici on a besoin de differer\nle chargement de la video sur la fiche d'un vehicule" as N0
object VueVehicule
interface Animation{
+clic()
+dessine()
}
class Film{
+clic()
+dessine()
+charge()
+joue()
}
class AnimationProxy{
#photo
+clic()
+dessine()
+dessine(photo)
}
VueVehicule --> "1 #animation" Animation
AnimationProxy ..> Animation
Film ..> Animation
AnimationProxy --> "0..1 #film" Film
note bottom of AnimationProxy : if (film != null)\nfilm.dessine();\nelse\ndessine(photo);
note right of AnimationProxy : if(film == null) {\nfilm = new Film();\nfilm.charge();}\nfilm.joue();
@enduml | false | true | true | false | class |
9387a9c2207af0dd0b28fbe0a795631c45d6d3c3 | b00ddf081489cc5abd1cca3355c7cd95d9c88f89 | /src/arc42-markdown/uml/domain-classes.puml | b05ae00fb20e280a21f1cbba5b64036d28112999 | [] | no_license | p-goetz/arc42-gradle | c69e5c7c98e0de840dddfabb18a8ab221f4cad65 | ce710a30d75004b57ae07ca1b3ab85b381375c4a | refs/heads/master | 2021-07-07T01:24:32.564472 | 2016-10-14T13:22:36 | 2016-10-14T13:22:36 | 34,404,371 | 11 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 91 | puml | @startuml
class ExampleParent
class ExampleChild
ExampleParent <|-- ExampleChild
@enduml | false | true | false | false | class |
18044170e2df8ff422d02437f97d25378ced1f32 | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /documentation/serviceApi/inventory/media/src/useCase1Model.puml | c525299da6b5d5a0e73fd67fabb3063b657c8ea4 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 3,562 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class MefServiceConfiguration {
@type*: string
}
class Service {
description: string
endDate: date-time
externalId: string
serviceDate: string
serviceType: string
startDate: date-time
startMode: string
state: ServiceStateType
}
Service *-->"*" Note_BusSof : note
Service *-->"*" RelatedPlaceRefOrValue : place
Service *-->"*" RelatedContactInformation : relatedContactInformation
Service *--> MefServiceConfiguration : serviceConfiguration
Service *-->"*" ServiceOrderItemRef : serviceOrderItem
Service *-->"*" ServiceRelationship : serviceRelationship
class ServiceOrderItemRef {
itemId*: string
serviceOrderHref: string
serviceOrderId: string
}
class ServiceRef {
href: uri
id*: string
}
class ServiceRelationship {
relationshipType*: string
}
ServiceRelationship *--> "1" ServiceRef : service
enum ServiceStateType {
feasibilityChecked
designed
reserved
active
inactive
terminated
}
class RelatedContactInformation {
emailAddress*: string
name*: string
number*: string
numberExtension: string
organization: string
role*: string
}
RelatedContactInformation *--> FieldedAddressValue : postalAddress
class FieldedAddressValue {
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
streetName*: string
streetNr: string
streetNrLast: string
streetNrLastSuffix: string
streetNrSuffix: string
streetSuffix: string
streetType: string
}
FieldedAddressValue *--> GeographicSubAddress : geographicSubAddress
class Note_BusSof {
author*: string
date*: date-time
id*: string
source*: BusSofType
text*: string
}
enum BusSofType {
bus
sof
}
class RelatedPlaceRefOrValue {
@type*: string
@schemaLocation: uri
role*: string
}
class FieldedAddress {
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
streetName*: string
streetNr: string
streetNrLast: string
streetNrLastSuffix: string
streetNrSuffix: string
streetSuffix: string
streetType: string
}
RelatedPlaceRefOrValue <|-- FieldedAddress
FieldedAddress *--> GeographicSubAddress : geographicSubAddress
class FormattedAddress {
addrLine1*: string
addrLine2: string
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
}
RelatedPlaceRefOrValue <|-- FormattedAddress
class GeographicAddressLabel {
externalReferenceId*: string
externalReferenceType*: string
}
RelatedPlaceRefOrValue <|-- GeographicAddressLabel
class GeographicAddressRef {
href: string
id*: string
}
RelatedPlaceRefOrValue <|-- GeographicAddressRef
class GeographicSiteRef {
href: string
id*: string
}
RelatedPlaceRefOrValue <|-- GeographicSiteRef
class GeographicSubAddress {
buildingName: string
levelNumber: string
levelType: string
privateStreetName: string
privateStreetNumber: string
}
GeographicSubAddress *-->"*" GeographicSubAddressUnit : subUnit
class GeographicPoint {
spatialRef*: string
x*: string
y*: string
z: string
}
RelatedPlaceRefOrValue <|-- GeographicPoint
class GeographicSubAddressUnit {
subUnitNumber*: string
subUnitType*: string
}
@enduml
| false | true | false | false | sequence |
e3eb10c9890f1d43f21c9c42a73c72b38efbc078 | 8cf018eb6de40017601592f1f125ea67d5de7086 | /docs/Solution/Service-Stack/Storage-Services/Secondary-Data-Store/Logical.puml | 9c33d8cb34b8ea476303046d0ef278785967aaa0 | [] | 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 | 367 | puml | @startuml
package "Service-Stack/Storage-Services/Secondary-Data-Store" {
interface "Service-Stack/Storage-Services/Secondary-Data-Store" {
}
CLI ()-- "Service-Stack/Storage-Services/Secondary-Data-Store"
REST ()-- "Service-Stack/Storage-Services/Secondary-Data-Store"
Web ()-- "Service-Stack/Storage-Services/Secondary-Data-Store"
}
@enduml
| false | true | false | false | class |
ce27a22ecc64fe26eb7a72a8a78dcb4dbb723c19 | f4f2dd57c8b94d4c9a754002d3e97b29cbf5ff5d | /uml/state_diagrams/bluetooth.plantuml | 43e94918b87eb4cb31b8b70ab54f5339dac78f43 | [] | no_license | markroche92/sw-eng-smart-watch | 53870aad11967c1f600433c9e7b6afbf3e8ac69d | c6f13dbfe7f66950101fb60385b793f4f008a5e4 | refs/heads/master | 2023-02-02T10:41:52.534075 | 2020-12-20T18:19:41 | 2020-12-20T18:19:41 | 312,834,151 | 2 | 1 | null | 2020-12-20T18:19:42 | 2020-11-14T14:34:01 | null | UTF-8 | PlantUML | false | false | 972 | plantuml | @startuml
skinparam shadowing false
title Bluetooth State Diagram
state "Bluetooth Enabled" as E{
state Choice1 <<choice>>
state "Searching" as S : do: Search for bluetooth\ndevices (background)
state "Pairing" as P: entry: Prompt User for Pairing
state "Data Transmission" as T : do: Offboard data to paired device\ndo: Receive data from paired device
[*] -down-> S
S -right-> Choice1 : [New Device Found]
Choice1 -down-> T : [Previously Paired\nwith Device]
Choice1 -down-> P : [Not Previously Paired\nwith Device]
P -up-> S : [Pairing Rejected\nby User (Button B)]
P -right-> T : [Pairing Accepted\nby User (Button A)]
}
state "Bluetooth Disabled" as D : do: No data sent or received
state Choice2 <<choice>>
[*] -left-> Choice2
Choice2 -up-> E : [Stored Bluetooth Setting == Enabled]
Choice2 -down-> D : [Stored Bluetooth Setting == Disabled]
E -down-> D : [Disable Bluetooth]
D -up-> E : [Enable Bluetooth]
@enduml | false | true | false | false | sequence |
3aba955377221011e4ace9fc0918dfc11186f10c | a2869509d73be36578547b153ac7286dabace7eb | /Multisensor/img/SMAP-example2.puml | 69f6f6bd539a07a43cbac79c1a093a065cde21cc | [] | no_license | gerardbdn/VladimirAlexiev.github.io | ac5728d1c03b8462e26d4f899aa8b40de1f60c72 | ac74a61378e8cf8a076d03c60fc95b4cc2640843 | refs/heads/master | 2020-12-30T17:19:40.411134 | 2016-01-22T08:38:16 | 2016-01-22T08:38:16 | 50,588,148 | 0 | 0 | null | 2016-01-28T14:25:29 | 2016-01-28T14:25:28 | null | UTF-8 | PlantUML | false | false | 4,237 | puml | @startuml
hide empty methods
hide empty attributes
hide circle
skinparam classAttributeIconSize 0
class mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_17463923 as "mssoc:civilengineering.dishwasher.energy_crisis.energy_policy.renewable.foodmanufacturing.homeappliances_17463923"
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_17463923 : a sioc:Role
class mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances as "mssoc:civilengineering.dishwasher.energy_crisis.energy_policy.renewable.foodmanufacturing.homeappliances"
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_17463923 --> mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : sioc:has_scope
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_17463923 : ms:has_pagerank 0.0206942
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_17463923 : ms:has_reachability 386.05
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_17463923 : ms:has_overall_influence 0.143948
class twitter_user_243236419 as "twitter_user:243236419"
twitter_user_243236419 : a sioc:UserAccount
class mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_243236419 as "mssoc:civilengineering.dishwasher.energy_crisis.energy_policy.renewable.foodmanufacturing.homeappliances_243236419"
twitter_user_243236419 --> mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_243236419 : sioc:has_function
class twitter_user_17463923 as "twitter_user:17463923"
twitter_user_17463923 : a sioc:UserAccount
twitter_user_17463923 --> mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_17463923 : sioc:has_function
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_243236419 : a sioc:Role
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_243236419 --> mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : sioc:has_scope
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_243236419 : ms:has_pagerank 0.020222
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_243236419 : ms:has_reachability 434.15
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances_243236419 : ms:has_overall_influence 0.143038
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : a sioc:Forum
class twitter_ as "twitter:"
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances --> twitter_ : sioc:has_host
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : dct:subject twitter_tag:energy_crisis
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : dct:subject twitter_tag:dishwasher
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : dct:subject twitter_tag:civilengineering
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : dct:subject twitter_tag:foodmanufacturing
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : dct:subject twitter_tag:homeappliances
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : dct:subject twitter_tag:policy_energy
mssoc_civilengineering_dishwasher_energy_crisis_energy_policy_renewable_foodmanufacturing_homeappliances : dct:subject twitter_tag:renewable
@enduml
| false | true | false | false | sequence |
b5efbc411705621cff2c472effa0386354437661 | e585be0c356bba949ecad37bf513cddc91c22a9f | /uml/7_app_start/bind_application.puml | d9bf35f81d6925a118ef57dcf23dffb746b95a03 | [] | no_license | heavy-james/AndroidStartSequence | b69b9a1cb57764cda5344a542e48a9b0986732c0 | c043546aa56e0cae5bba1f9b34ad08af80a2c8fc | refs/heads/master | 2020-04-25T04:26:36.861476 | 2019-02-26T00:57:10 | 2019-02-26T00:57:28 | 172,510,252 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,143 | puml | @startuml
participant ActivityThread as "ActivityThread.java"
participant ActivityManagerService as "ActivityManagerService.java"
-> ActivityThread : bindApplication(...)
ref over ActivityThread : app_start.puml #step1
deactivate ActivityManagerService
activate ActivityThread
ActivityThread -> ActivityThread : setCoreSettings(coreSettings);
ActivityThread -> ActivityThread : convert args to AppBindData
ActivityThread -> ActivityThread : handleBindApplication(data)
group handleBindApplication
ActivityThread -> ActivityThread : Process.setArgV0(data.processName);\
\n//set process name to package name
ActivityThread -> ActivityThread : disable pseristant process's hardware\
\n acceleration for low-memory device
ActivityThread -> ActivityThread : mProfiler.startProfiling();\
\n//start profiler if need.
ActivityThread -> ActivityThread : AsyncTask.setDefaultExecutor\
\n (AsyncTask.THREAD_POOL_EXECUTOR);\
\n//for MR1 or earlier
ActivityThread -> ActivityThread : reset TimeZone to system, Locale to arg specified
ActivityThread -> ActivityThread : apply resource config to ResourceManager
ActivityThread -> ActivityThread : getPackageInfoNoCheck(data.appInfo, data.compatInfo);\
\n//get LoadedApk instance by application info.
ActivityThread -> ActivityThread : updateDefaultDensity();\
\n//apply density config to DisplayMetrics and BitMap
ActivityThread -> ActivityThread : step1. ContextImpl.createAppContext(this, data.info);\
\n//create Application context with LoadedApk instance
note right of ActivityThread : we just create context here, not application
ref over ActivityThread : create_app_context.puml
ActivityThread -> ActivityThread : set "java.io.tmpdir" value to appContext.getCacheDir()
ActivityThread -> ActivityThread : setupGraphicsSupport(data.info, codeCacheDir);\
\n//pass codeCacheDir to HardwareRenderer.setupDiskCache,\
\n//RenderScriptCacheDir.setupDiskCache,\
\n//if there is only one package for the app.
ActivityThread -> ActivityThread : set 24H or 12H time format
ActivityThread -> ActivityThread : turn on/off View.mDebugViewAttributes by\
\nSettings.Global.DEBUG_VIEW_ATTRIBUTES
ActivityThread -> ActivityThread : StrictMode initialization
alt data.debugMode
else Not IApplicationThread.DEBUG_OFF
ActivityThread -> ActivityThread : Debug.waitForDebugger();
end
alt enableOpenGlTrace
else true
ActivityThread -> ActivityThread : GLUtils.setTracingLevel(1);
end
ActivityThread -> ActivityThread : Trace.setAppTracingAllowed(appTracingAllowed);
ActivityThread -> ActivityThread : Proxy.setHttpProxySystemProperty(proxyInfo);\
\n//enable http proxy to system setting if has
alt data.instrumentationName
else Not Null
ActivityThread -> ActivityThread : step2. mInstrumentation = "create specified instrumentation"
ref over ActivityThread : create_specified_instrumentation.puml
else Null
ActivityThread -> ActivityThread : mInstrumentation = new Instrumentation();
end
ActivityThread -> ActivityThread : handle FLAG_LARGE_HEAP specification.
ActivityThread -> ActivityThread : final StrictMode.ThreadPolicy savedPolicy = StrictMode.allowThreadDiskWrites();
ActivityThread -> ActivityThread : Application app = data.info.makeApplication(data.restrictedBackupMode, null);
note right of ActivityThread : we create the app now!
ActivityThread -> ActivityThread : mInitialApplication = app;\
\n first application instance for multi package app
alt data.restrictedBackupMode
else false
ActivityThread -> ActivityThread : installContentProviders(app, providers);
ActivityThread -> ActivityThread : mH.sendEmptyMessageDelayed(H.ENABLE_JIT, 10*1000);
end
ActivityThread -> ActivityThread : mInstrumentation.onCreate(data.instrumentationArgs);
ActivityThread -> ActivityThread : mInstrumentation.callApplicationOnCreate(app);
end
<-- ActivityThread : bindApplication return
deactivate ActivityThread
@enduml | false | true | false | false | sequence |
46a8901d674d07a65d156215cf62dc15e8666dc8 | 4d0266f64c46f72ad28c797914e6ce7364bc7385 | /doc/conference-client-design-simplified.puml | abfa13ffd187f315d465498b036b15265f624753 | [] | no_license | jonmahei/command-line-parser | 68749ae031e5c007f3f75a91226765e814c986cc | 760a743b0e87edf8775d8c6324ed62708eb83e56 | refs/heads/master | 2023-06-23T00:21:14.009312 | 2018-09-18T15:42:02 | 2018-09-18T15:42:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,381 | puml | -> ConferenceClient: main
ConferenceClient -> ConferenceClient ++: executeCommand(args)
ConferenceClient -> ConferenceClient ++: decodeCommand(args)
ConferenceClient -> ConferenceClient: findCommand(args[0])
create AddTalkCommand
ConferenceClient --> AddTalkCommand:
ConferenceClient -> AddTalkCommand ++: decodeArguments(args)
AddTalkCommand --> Arguments: title := getRequired("title")
AddTalkCommand --> Arguments: description := getRequired("description")
AddTalkCommand --> Arguments: topic := getOptional("topic")
ConferenceClient <-- AddTalkCommand --
ConferenceClient -> Arguments: verifyAllUsed
ConferenceClient <-- ConferenceClient --
ConferenceClient --> AddTalkCommand ++: execute
create HttpPostFormRequest
AddTalkCommand --> HttpPostFormRequest: "POST", "localhost", 8088, payload
AddTalkCommand --> HttpPostFormRequest ++: execute
create HttpResponse
HttpPostFormRequest --> HttpResponse
create Socket
HttpPostFormRequest --> Socket: "localhost" 8088
HttpPostFormRequest --> Socket: "..."
HttpPostFormRequest --> HttpResponse ++: readResponse
HttpResponse --> Socket ++: read line
HttpResponse <-- Socket --: 200 OK
HttpPostFormRequest <-- HttpResponse --
AddTalkCommand <-- HttpPostFormRequest --
ConferenceClient <-- AddTalkCommand --
ConferenceClient -> ConferenceClient -- | false | true | false | false | sequence |
c3a4af38baa91d2a10880e9224d44690f281f4af | e8d9af6370d76e3a069fc319113de2fefea33117 | /docs/diagrams/ConfigurePriorityFlashCardTestSetSequenceDiagram.puml | 2233fe0eb49dc5979c7019f99d55323f818ad777 | [
"MIT"
] | permissive | AY1920S1-CS2103-F09-2/main | ab04fa5d5fa0a1e76b9edefe1ba700021be00231 | c3eb98f0387dbc4a0dacb0e0bd7efe27ae786e39 | refs/heads/master | 2020-07-24T23:24:20.919724 | 2019-11-15T08:26:41 | 2019-11-15T08:26:41 | 208,079,332 | 0 | 7 | NOASSERTION | 2019-11-15T08:26:24 | 2019-09-12T15:07:55 | Java | UTF-8 | PlantUML | false | false | 922 | puml | @startuml
autonumber
-> ExamRunner: ExamRunner(Deck, ratioOfHighPriority)
activate ExamRunner
ExamRunner -> Deck: createSubsetForTest()
activate Deck
opt Number of cards <= 10
Deck --> ExamRunner: return cards
end
Deck -> Deck: compute sizeOfHighPrioritySet
activate Deck #DarkSalmon
deactivate Deck #DarkSalmon
Deck -> Deck: compute sizeOfLowPrioritySet
activate Deck #DarkSalmon
deactivate Deck #DarkSalmon
loop temp
Deck -> Deck: getRandomCard(highPriorityQueue)
activate Deck #DarkSalmon
deactivate Deck #DarkSalmon
Deck -> Deck: add chosen card to test set
activate Deck #DarkSalmon
deactivate Deck #DarkSalmon
end
loop temp2
Deck -> Deck: getRandomCard(lowPriorityQueue)
activate Deck #DarkSalmon
deactivate Deck #DarkSalmon
Deck -> Deck: add chosen card to test set
activate Deck #DarkSalmon
deactivate Deck #DarkSalmon
end
Deck --> ExamRunner: return testSet
deactivate Deck
[<--ExamRunner:
@enduml
| false | true | false | false | sequence |
fea9ebd2a219b45e66c1361f491832bf5587b7ca | d017bad110c8823be7405ea48e300193b31b3274 | /target/site/QcrReportFile02PlantUml.puml | 5846628ec95c9cfd131b5e7e562342b4ad593eb0 | [
"Apache-2.0",
"OpenSSL",
"LicenseRef-scancode-proprietary-license"
] | permissive | qualitesys/openssl | 0d10e224b65670b3feb053d505b8b6f1754dfdea | cbe52e71e3e40fbbec5c613977ebd5bd6aae14e3 | refs/heads/master | 2023-09-04T11:47:48.896512 | 2023-09-04T04:21:29 | 2023-09-04T04:21:29 | 229,987,701 | 0 | 1 | Apache-2.0 | 2020-12-09T20:14:30 | 2019-12-24T18:25:11 | C | UTF-8 | PlantUML | false | false | 59 | puml | @startuml
!pragma layout smetana
package {
}
@enduml
| false | true | false | false | uml-unknown |
2352083df2012dad7900a5685b7805750afde46d | abcba942a7e6d7eee98297db3a9b37d1f95cafd9 | /architecture.puml | 38b2cfa8b15a76acb6589e42e1b41b6467c468cd | [
"Apache-2.0",
"CC-BY-4.0"
] | permissive | muskanmahajan37/markdown-transform | aae466eb68fcef9cefc5c4da192da220acfc92f4 | 2f850724e0da4ad0d0a54f483929a5b57784b688 | refs/heads/master | 2022-04-13T12:20:12.351941 | 2020-02-18T15:36:13 | 2020-02-18T15:36:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 894 | puml | @startuml
package "markdown-cli" {
[parse]
}
package "markdown-common" {
[Markdown String] <-up-> [CommonMark DOM]
}
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 |
dc11f663dfeea76f365f0875f71eb4fe21db99d2 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedQuoteState.puml | f0ae67202053d2db459dc7adaa91b7f53ca048a5 | [] | 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,617 | puml | @startuml
hide methods
enum StagedQuoteState {
IN_PROGRESS
SENT
CLOSED
}
interface StagedQuoteStateChangedMessage [[StagedQuoteStateChangedMessage.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]]
stagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
oldStagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
}
interface StagedQuoteStateChangedMessagePayload [[StagedQuoteStateChangedMessagePayload.svg]] {
type: String
stagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
oldStagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
}
interface StagedQuoteChangeStagedQuoteStateAction [[StagedQuoteChangeStagedQuoteStateAction.svg]] {
action: String
stagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
}
StagedQuoteState --> StagedQuoteStateChangedMessage #green;text:green : "stagedQuoteState"
StagedQuoteState --> StagedQuoteStateChangedMessage #green;text:green : "oldStagedQuoteState"
StagedQuoteState --> StagedQuoteStateChangedMessagePayload #green;text:green : "stagedQuoteState"
StagedQuoteState --> StagedQuoteStateChangedMessagePayload #green;text:green : "oldStagedQuoteState"
StagedQuoteState --> StagedQuoteChangeStagedQuoteStateAction #green;text:green : "stagedQuoteState"
@enduml
| false | true | false | false | sequence |
169f8dcf3b155df3d6a11d4052e3d3c7d3f286e8 | fb399fdc6767c22f28bd8abcd96bb48e6d8257b0 | /src/main/java/edu/kis/vh/nursery/factory/factory.plantuml | a75766a27950f767f63e3529483c6e6e88e2992d | [] | no_license | WojciechPrzerywacz/pio_git_rhymers | 97bde023526c30d77f28780a92dda40b0d9fcbec | ce0f6c711efacc804468030b1a8fb1214c4eb7c3 | refs/heads/master | 2023-02-18T22:15:19.330620 | 2021-01-19T20:11:55 | 2021-01-19T20:11:55 | 321,822,987 | 1 | 0 | null | 2021-01-19T20:22:33 | 2020-12-16T00:22:56 | HTML | UTF-8 | PlantUML | false | false | 908 | plantuml | @startuml
title __FACTORY's Class Diagram__\n
namespace edu.kis.vh.nursery {
namespace factory {
class edu.kis.vh.nursery.factory.DefaultRhymersFactory {
+ getFIFORhymer()
+ getFalseRhymer()
+ getHanoiRhymer()
+ getStandardRhymer()
}
}
}
namespace edu.kis.vh.nursery {
namespace factory {
interface edu.kis.vh.nursery.factory.RhymersFactory {
{abstract} + getFIFORhymer()
{abstract} + getFalseRhymer()
{abstract} + getHanoiRhymer()
{abstract} + getStandardRhymer()
}
}
}
edu.kis.vh.nursery.factory.DefaultRhymersFactory .up.|> edu.kis.vh.nursery.factory.RhymersFactory
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 |
77922ff02045685e28c5af3ed96f22ffb3c568d1 | 4ba293cfb60f22b3324ed2091b7d1e98cd8bcbfa | /mojaloop-technical-overview/central-bulk-transfers/assets/diagrams/sequence/seq-bulk-4.1.0-abort-overview.plantuml | 960998af29ed12d8d5ef530eb00493b393467e47 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | vorburger/documentation | b3c952604959c10b55bd019de85f42771ad005ec | 07fc68e493422933546e55978b061266a6935586 | refs/heads/master | 2022-11-20T06:41:24.534536 | 2020-07-02T16:31:56 | 2020-07-02T16:31:56 | 276,935,693 | 0 | 0 | NOASSERTION | 2020-07-03T15:48:43 | 2020-07-03T15:48:43 | null | UTF-8 | PlantUML | false | false | 8,441 | plantuml | /'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Steven Oderayi <steven.oderayi@modusbox.com>
--------------
******'/
@startuml
' declare title
title 4.1.0. Bulk Transfer Abort
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' collections - Kafka Topics
' control - Kafka Consumers
' entity - Database Access Objects
' database - Database Persistance Store
' declare actors
actor "DFSP1\nPayer" as DFSP1
actor "DFSP2\nPayee" as DFSP2
boundary "Bulk API Adapter" as BULKAPI
control "Bulk API Notification Event Handler" as NOTIFY_HANDLER
boundary "Central Service API" as CSAPI
collections "Bulk-Fulfil-Topic" as TOPIC_BULK_FULFIL
collections "Fulfil-Topic" as TOPIC_FULFIL
control "Bulk Fulfil Event Handler" as BULK_FULFIL_HANDLER
control "Fulfil Event Handler" as FULFIL_HANDLER
collections "topic-transfer-position" as TOPIC_POSITION
control "Position Event Handler" as POS_HANDLER
collections "topic-bulk-processing" as TOPIC_BULK_PROCESSING
control "Bulk Processing Event Handler" as BULK_PROCESSING_HANDLER
collections "Event-Topic" as TOPIC_EVENTS
collections "Notification-Topic" as TOPIC_NOTIFICATIONS
database "Cache" as CACHE
database "Central Services DB" as DB
box "Financial Service Providers" #lightGray
participant DFSP1
participant DFSP2
end box
box "Bulk API Adapter Service" #LightBlue
participant BULKAPI
participant NOTIFY_HANDLER
end box
box "Central Service" #LightYellow
participant CSAPI
participant TOPIC_BULK_FULFIL
participant TOPIC_FULFIL
participant BULK_FULFIL_HANDLER
participant FULFIL_HANDLER
participant TOPIC_POSITION
participant TOPIC_EVENTS
participant POS_HANDLER
participant TOPIC_BULK_PROCESSING
participant BULK_PROCESSING_HANDLER
participant TOPIC_NOTIFICATIONS
participant CACHE
participant DB
end box
' start flow
activate NOTIFY_HANDLER
activate BULK_FULFIL_HANDLER
activate FULFIL_HANDLER
activate FULFIL_HANDLER
activate BULK_PROCESSING_HANDLER
activate POS_HANDLER
group DFSP2 sends a Fulfil Abort Transfer request
note right of DFSP2 #lightblue
**Note**: In the payload for PUT /bulkTransfers/<ID>/error
only the **errorInformation** field is **required**
end note
note right of DFSP2 #yellow
Headers - transferHeaders: {
Content-Length: <Content-Length>,
Content-Type: <Content-Type>,
Date: <Date>,
X-Forwarded-For: <X-Forwarded-For>,
FSPIOP-Source: <FSPIOP-Source>,
FSPIOP-Destination: <FSPIOP-Destination>,
FSPIOP-Encryption: <FSPIOP-Encryption>,
FSPIOP-Signature: <FSPIOP-Signature>,
FSPIOP-URI: <FSPIOP-URI>,
FSPIOP-HTTP-Method: <FSPIOP-HTTP-Method>
}
Payload - errorMessage:
{
"errorInformation": {
"errorCode": <string>,
"errorDescription": <string>,
"extensionList": {
"extension": [
{
"key": <string>,
"value": <string>
}
]
}
}
}
end note
DFSP2 ->> BULKAPI: **PUT - /bulkTransfers/<ID>/error**
activate BULKAPI
note right of BULKAPI #yellow
Message:
{
id: <ID>,
from: <transferHeaders.FSPIOP-Source>,
to: <transferHeaders.FSPIOP-Destination>,
type: application/json,
content: {
headers: <transferHeaders>,
payload: <transferMessage>
},
metadata: {
event: {
id: <uuid>,
type: fulfil,
action: reject,
createdAt: <timestamp>,
state: {
status: "success",
code: 0
}
}
}
}
end note
BULKAPI -> CACHE: Persist request payload with messageId in cache
activate CACHE
note right of BULKAPI #yellow
Message: {
messageId: <string>,
bulkTransferId: <string>,
payload: <object>
}
end note
hnote over CACHE #lightyellow
individualTransferFulfils
end hnote
deactivate CACHE
BULKAPI -> TOPIC_BULK_FULFIL: Produce bulk-fulfil message
BULKAPI -->> DFSP2: Respond HTTP - 200 (OK)
TOPIC_BULK_FULFIL <- BULK_FULFIL_HANDLER: Consume bulk-fulfil message
BULK_FULFIL_HANDLER -> BULK_FULFIL_HANDLER: Perform duplicate check
BULK_FULFIL_HANDLER -> BULK_FULFIL_HANDLER: Validate request
loop n times, n = number of individual transfers
note right of BULK_FULFIL_HANDLER
Message: {
transferId: <string>,
bulkTransferId< <string>,
bulkTransferAssociationRecord: {
transferId: <string>,
bulkTransferId: <string>,
bulkProcessingStateId: <string>,
errorCode: <string>,
errorDescription: <string>
}
}
end note
BULK_FULFIL_HANDLER -> DB: Update bulkTransferAssociation table
activate DB
hnote over DB #lightyellow
bulkTransferAssociation
end hnote
deactivate DB
BULK_FULFIL_HANDLER -> TOPIC_FULFIL: Produce fulfil message with action bulk-abort for each individual transfer
end
|||
loop n times, n = number of individual transfers
TOPIC_FULFIL <- FULFIL_HANDLER: Consume message
ref over TOPIC_FULFIL, TOPIC_EVENTS: Fulfil Handler Consume (bulk-abort)\n
FULFIL_HANDLER -> TOPIC_POSITION: Produce message
end
|||
loop n times, n = number of individual transfers
TOPIC_POSITION <- POS_HANDLER: Consume message
ref over TOPIC_POSITION, BULK_PROCESSING_HANDLER: Position Handler Consume (bulk-abort)\n
POS_HANDLER -> TOPIC_BULK_PROCESSING: Produce message
end
|||
loop n times, n = number of individual transfers
TOPIC_BULK_PROCESSING <- BULK_PROCESSING_HANDLER: Consume individual transfer message
ref over TOPIC_BULK_PROCESSING, TOPIC_NOTIFICATIONS: Bulk Processing Handler Consume (bulk-abort)\n
end
BULK_PROCESSING_HANDLER -> TOPIC_NOTIFICATIONS: Produce message (Payer)
BULK_PROCESSING_HANDLER -> TOPIC_NOTIFICATIONS: Produce message (Payee)
TOPIC_NOTIFICATIONS <- NOTIFY_HANDLER: Consume message (Payer)
TOPIC_NOTIFICATIONS <- NOTIFY_HANDLER: Consume message (Payee)
opt action == 'bulk-abort'
|||
ref over DFSP1, TOPIC_NOTIFICATIONS: Notification Handler (Payer)\n
NOTIFY_HANDLER -> DFSP1: Send callback notification
end
|||
opt action == 'bulk-abort'
|||
ref over DFSP2, TOPIC_NOTIFICATIONS: Notification Handler (Payee)\n
NOTIFY_HANDLER -> DFSP2: Send callback notification
end
|||
end
activate POS_HANDLER
activate FULFIL_HANDLER
activate FULFIL_HANDLER
activate NOTIFY_HANDLER
@enduml
| false | true | true | false | usecase |
842a85b93fa7baff59fdd1a10272b054e2680226 | c452e4f63f50eca1ab44e5bb5fa557cbc5c93515 | /src/main/resources/ex43/ClassDiagrams/FolderType.puml | 583a6bd5d6686303aecea8aa3ac10927d900d94c | [] | no_license | mplekunov/Assignment_3 | b1ca62cde7a6a1dd495bdc8c52e34d494a8e947b | 81138b959274d3c8bf9586c0c4f6c164f6c84780 | refs/heads/master | 2023-05-31T12:28:19.214249 | 2021-06-21T00:40:42 | 2021-06-21T00:40:42 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 91 | puml | @startuml
'https://plantuml.com/class-diagram
enum FolderType {
CSS,
JS
}
@enduml | false | true | false | false | class |
16e098f43c58c51d1ad803b3162de5679266140d | 98c049efdfebfafc5373897d491271b4370ab9b4 | /docs/SPRINT_2/UC29-Drone_delivery_plan/SD.puml | 19d875f4717832162be9656a05ac0f60993a999e | [] | no_license | antoniodanielbf-isep/LAPR3-2020 | 3a4f4cc608804f70cc87a3ccb29cbc05f5edf0f3 | 7ee16e8c995aea31c30c858f93e8ebdf1de7617f | refs/heads/main | 2023-05-27T14:42:05.442427 | 2021-06-20T18:09:59 | 2021-06-20T18:09:59 | 378,709,095 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,195 | puml | @startuml
autonumber
participant ":ScooterDeliveryPlanningTask" as STASK
participant ":DroneDeliveryPlanningTask" as TASK
participant "pharmacyOrders:List<Integer>" as ORDERSIDS
participant "cords:List<String>" as CORDS
participant "db:PlanningDB" as DB
participant "remainingPath:List<String>" as REMAINING
participant "plan:DeliveryPlanning" as SPLAN
participant ":Print" as PRINT
activate STASK
STASK -> TASK :plan(pharmacyOrders, pharmacyID, cords, pharmacyCords, payload, db, plan)
deactivate STASK
activate TASK
TASK -> DB: droneID = getAvailableDrone(pharmacyID, payload)
activate DB
deactivate DB
TASK -> DB: actualBatteryWH = getActualBatteryVehicle(droneID, pharmacyID)
activate DB
deactivate DB
TASK -> DB: allFarmacias = getCordsOfPharmacysWithAvailableChargingStation(VehicleType.DRONE)
activate DB
deactivate DB
TASK --> REMAINING**: create()
TASK -> SPLAN: pathDrone = mostEficientPath(cords, pharmacyCords, VehicleType.DRONE, actualBatteryWH, payload, pesosPorEncomenda, allFarmacias, remainingPath)
activate SPLAN
deactivate SPLAN
TASK -> SPLAN: distanceDrone = pathWeight(pathDrone);
activate SPLAN
deactivate SPLAN
TASK -> SPLAN: energyCost = calculateEnergyCost(pathDrone, payload, VehicleType.DRONE, pesosPorEncomenda)
activate SPLAN
deactivate SPLAN
TASK -> SPLAN: time = getSpentTimeLastDronePath()
activate SPLAN
deactivate SPLAN
TASK -> TASK: idDelivey = finalSteps(db, droneID, pharmacyID, pharmacyOrders, distanceDrone, time, energyCost, pass)
activate TASK
ref over TASK : SD_FinalSteps
deactivate TASK
TASK -> PRINT: printFileDelivery(null, pathDrone, distanceDrone, time, energyCost, idDelivey, outputFileName, actualBatteryWH, payload, droneID, 0, pharmacyCords)
activate PRINT
deactivate PRINT
alt if if (!remainingPath.isEmpty())
TASK -> TASK: tratarRemainingPath(remainingPath, droneID, pharmacyID, plan, pesosPorEncomenda, idDelivey, db, outputFileName)
activate TASK
deactivate TASK
ref over TASK: SD_TratarRemainingPath_UC5
end
TASK -> PRINT: printPhisics(outputFileName, VehicleType.DRONE)
activate PRINT
deactivate PRINT
TASK -> DB: updateOrderStateToDelivered(idDelivey)
activate DB
deactivate DB
deactivate TASK
@enduml
| false | true | false | false | sequence |
f89ba5f55b52ae74bec36a2002818c36a30dd0d3 | 844665d08d1be5dacc41d8495725d881c68dba71 | /Conferencias/Conferencia 4_ Patrones de Diseño de Comportamiento/PrincipleAndPatternDesign/out/production/PrincipleAndPatternDesign/cu/datys/patterns/gof/behavioral/state/traffic/class-diagram.puml | 57f452fd51af648707d407a5168966fd05b6ab70 | [
"MIT"
] | permissive | alexescalonafernandez/curso-patrones-diseno | ec1cf0a993707d78c294208e04604a3a0ffd164e | f586e27791e1281087df6cc137da87f407179e65 | refs/heads/master | 2021-01-25T13:35:26.659206 | 2018-03-02T20:18:06 | 2018-03-02T20:18:06 | 123,588,331 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,614 | puml | @startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam titleFontColor #5cb85c
Title State Pattern Example
abstract class State {
+ {abstract} void handleRequest()
}
class TrafficLight {
- final State red
- final State yellow
- final State green
- State state
+ TrafficLight()
+ void changeState()
+ State getGreenLightState()
+ State getYellowLightState()
+ State getRedLightState()
+ void setState(State state)
}
class GreenTrafficLightState extends State{
- TrafficLight trafficLight
+ GreenTrafficLightState(TrafficLight trafficLight)
+ void handleRequest()
}
class RedTrafficLightState extends State{
- TrafficLight trafficLight
+ RedTrafficLightState(TrafficLight trafficLight)
+ void handleRequest()
}
class YellowTrafficLightState extends State{
- TrafficLight trafficLight
+ YellowTrafficLightState(TrafficLight trafficLight)
+ void handleRequest()
}
TrafficLight --> State: has
note right of TrafficLight::TrafficLight
red = new RedTrafficLightState(this);
yellow = new YellowTrafficLightState(this);
green = new GreenTrafficLightState(this);
state = red;
end note
note right of TrafficLight::changeState
state.handleRequest();
end note
note top of RedTrafficLightState
change to green
end note
note top of GreenTrafficLightState
public void handleRequest() {
State next = trafficLight.getYellowLightState();
trafficLight.setState(next);
}
end note
@enduml | false | true | false | false | sequence |
6a776e119bfa0cce480c97a1270620d173d7c33b | a775a2ceb878c990d1a21acbdf1b21d2a1ff040a | /openhealthcard.common/doc/plantuml/OHCCOM/common.plantuml | 5730e51095d6d8ca298a0b0b2d99daffe5978d80 | [
"Apache-2.0"
] | permissive | gematik/ref-OpenHealthCard-Common-Android | ebcc0df76b7495ba1ea34fcc1876e81466457064 | 1324039e57079fb608f4d8f883c1f6fb0ff1330d | refs/heads/master | 2022-01-21T06:40:25.029973 | 2022-01-07T07:24:31 | 2022-01-07T07:24:31 | 214,091,590 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,386 | plantuml | @startuml
namespace de.gematik.ti.openhealthcard.common {
abstract class de.gematik.ti.openhealthcard.common.AbstractAndroidCardReaderController {
{static} - LOG : Logger
{static} - MAX_SECONDS_WAIT_FOR_PERMISSION : long
- context : Context
- permissionWaitingLock : ReentrantLock
+ setContext()
+ waitForPermission()
# checkContext()
# getContext()
- requestPermissionAndWait()
}
}
namespace de.gematik.ti.openhealthcard.common {
class de.gematik.ti.openhealthcard.common.WaitingPermissionReceiver {
{static} - LOG : Logger
- context : Context
- permission : String
- receivedResult : CompletableFuture<Boolean>
+ onReceive()
# WaitingPermissionReceiver()
~ get()
- registerPermissionReceiver()
- unregisterPermissionReceiver()
}
}
de.gematik.ti.openhealthcard.common.AbstractAndroidCardReaderController .up.|> de.gematik.ti.openhealthcard.common.interfaces.IAndroidCardReaderController
de.gematik.ti.openhealthcard.common.AbstractAndroidCardReaderController -up-|> de.gematik.ti.cardreader.provider.api.AbstractCardReaderController
de.gematik.ti.openhealthcard.common.WaitingPermissionReceiver -up-|> android.content.BroadcastReceiver
@enduml
| false | true | false | false | class |
28fa18b790af55fbceb0e3187d3c56433158f633 | 1d35c189539f3996c81acdec9e5c008da8783e45 | /Aulas/out/production/Aulas/isel/poo/fs/Example.puml | f019298c3893ead31496a9fe6b972256e6f08c89 | [] | no_license | joaocarneiro/POO1920SI | d6baad91d424a66d0d0ef54e5b381b8ae3613793 | ee7557da1350d6e62e2176ed3f31e1863853988d | refs/heads/master | 2020-08-03T23:28:39.694104 | 2019-10-04T00:59:58 | 2019-10-04T00:59:58 | 211,921,200 | 0 | 0 | null | 2019-10-04T00:59:59 | 2019-09-30T17:56:19 | Java | UTF-8 | PlantUML | false | false | 491 | puml | @startuml
object file {
name = "aula.txt"
size = 100
}
object dir {
name = "POO"
}
object disk {
name = "C:"
next = null
}
object "?" as f1 {
name = "file.txt"
size = 1024
}
object "?" as f2 {
name = "Str.java"
size = 2340
next = null
}
object "?" as d1 {
name = "Empty"
first = null
next = null
}
disk o-[hidden]-> f1
disk o--> dir : first
disk o-[hidden]-> d1
dir o--> file : first
dir o-[hidden]-> f2
dir -> f1 : next
f1 -> d1 : next
file -> f2 :next
@enduml
| false | true | false | false | sequence |
e617b49bd3675e2c72559e51af83deae0a37910c | c85d255daca76e76b7073e0a288849be195b214e | /app/src/main/java/com/architectica/socialcomponents/main/search/posts/posts.plantuml | e1ff9405ccbcc471f5f3a365dd2f3281b2ac8cca | [
"Apache-2.0"
] | permissive | AryaAshish/Archcrony | 75bb4646d938b2da11721aff0dde11ad49f4a357 | 3cf972c48e900d513d53ebed857373741c1969b5 | refs/heads/master | 2020-04-29T12:34:32.168647 | 2019-08-01T12:56:05 | 2019-08-01T12:56:05 | 176,141,477 | 1 | 3 | Apache-2.0 | 2019-08-01T12:56:06 | 2019-03-17T18:16:12 | Java | UTF-8 | PlantUML | false | false | 2,799 | plantuml | @startuml
title __POSTS's Class Diagram__\n
namespace com.architectica.socialcomponents {
namespace main.search {
namespace posts {
class com.architectica.socialcomponents.main.search.posts.SearchPostsFragment {
- emptyListMessageTextView : TextView
- progressBar : ProgressBar
- recyclerView : RecyclerView
- searchInProgress : boolean
+ SearchPostsFragment()
+ createPresenter()
+ hideLocalProgress()
+ onActivityResult()
+ onCreate()
+ onCreateView()
+ onSearchResultsReady()
+ openProfileActivity()
+ search()
+ showEmptyListLayout()
+ showLocalProgress()
- initRecyclerView()
- openPostDetailsActivity()
}
}
}
}
namespace com.architectica.socialcomponents {
namespace main.search {
namespace posts {
class com.architectica.socialcomponents.main.search.posts.SearchPostsPresenter {
{static} + LIMIT_POSTS_FILTERED_BY_LIKES : int
- context : Context
+ SearchPostsPresenter()
+ search()
+ search()
- filterByLikes()
- handleSearchResult()
}
}
}
}
namespace com.architectica.socialcomponents {
namespace main.search {
namespace posts {
interface com.architectica.socialcomponents.main.search.posts.SearchPostsView {
{abstract} + hideLocalProgress()
{abstract} + onSearchResultsReady()
{abstract} + showEmptyListLayout()
{abstract} + showLocalProgress()
}
}
}
}
com.architectica.socialcomponents.main.search.posts.SearchPostsFragment .up.|> com.architectica.socialcomponents.main.search.Searchable
com.architectica.socialcomponents.main.search.posts.SearchPostsFragment .up.|> com.architectica.socialcomponents.main.search.posts.SearchPostsView
com.architectica.socialcomponents.main.search.posts.SearchPostsFragment -up-|> com.architectica.socialcomponents.main.base.BaseFragment
com.architectica.socialcomponents.main.search.posts.SearchPostsFragment o-- com.architectica.socialcomponents.adapters.SearchPostsAdapter : postsAdapter
com.architectica.socialcomponents.main.search.posts.SearchPostsPresenter -up-|> com.architectica.socialcomponents.main.base.BasePresenter
com.architectica.socialcomponents.main.search.posts.SearchPostsPresenter o-- com.architectica.socialcomponents.managers.PostManager : postManager
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 |
dd6f165211555afffcfb7c06bdcb614b44dd9d15 | 9471e702598def620e4ae132147d06eced851a36 | /sequence.puml | 622f4f20ded4b690b3d334c56278327510e58a32 | [] | no_license | UniversalMediaServer/api | 82a12e7e127019649ff0528eb6915c240ca98974 | 9ebe5d8ff45fb664877fe0deaf269747c95e3774 | refs/heads/main | 2023-08-30T12:00:55.451599 | 2023-08-28T04:52:49 | 2023-08-28T04:52:49 | 212,042,559 | 10 | 3 | null | 2023-09-12T04:02:42 | 2019-10-01T08:02:32 | TypeScript | UTF-8 | PlantUML | false | false | 700 | puml | @startuml
participant "Universal Media Server Client"
participant "API"
database "API MongoDB"
autonumber
"Universal Media Server Client" -> API: UMS client requests metadata about a media file
== Retrieve an existing metadata record ==
API -> "API MongoDB": Query for existing metadata record
API -> "API MongoDB": Query for existing failed lookup record
"API MongoDB" -> API: Existing metadata found
API -> "Universal Media Server Client": If found, return API response
== Create a new metadata record ==
API -> TMDB : Query source API 1
API -> OpenSubtitles : Query source API 2
API -> "API MongoDB": (3) Save metadata to MongoDB
API -> "Universal Media Server Client": Return API response
| false | true | false | false | sequence |
83e583db1f0ca3e497cc3ed0ea9dbf92615b9c4c | 9e101f61f9893795d4c2c6fcb404b9be386547f0 | /diagrams/authentication/sequence.plantuml | 050bf7c88651589fbd5ac04938cd2c08fc41ac10 | [
"MIT"
] | permissive | tienvx/mbt-assets | 6ed2f3682e2b29c2fcbfdc3ae9eeb97834c84ab4 | ee411bd11e6496e295346077b920ba9af07d3ac6 | refs/heads/master | 2020-05-17T23:53:51.386275 | 2019-04-30T11:56:07 | 2019-04-30T11:56:07 | 184,045,395 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 405 | plantuml | @startuml
actor User as user << Human >>
participant "MBT Bundle" as bundle
database Database as database
user -> bundle : Register
activate bundle
bundle -> database : Create user
activate database
database --> bundle
deactivate database
bundle --> user
deactivate bundle
user -> bundle: Log in
activate bundle
bundle --> user: Token
user -> bundle: Log out
bundle --> user
deactivate bundle
@enduml
| false | true | false | false | sequence |
d1fc9b19981aa537dffc329af2beb1e9b9c7f722 | 856c17570e7975ab81ca242d4e77d068db2d33f6 | /ex45/ex45.puml | 0fcf6b26cd74f60c48ce4d34b34f69e56c7bdb7a | [] | no_license | jpaez11/paez-a04 | 2f66d2f6094d43b598bc796b82e8ec5ada98e903 | b6f74c02be07b00e81c26fb4be00905af7f749c4 | refs/heads/master | 2023-08-15T04:06:10.509682 | 2021-10-18T03:11:44 | 2021-10-18T03:11:44 | 417,701,796 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 338 | puml | @startuml
class baseline.writingFile {
- FileWriter writer
- int countModify
- ArrayList<String> list
+ int getCountModify()
+ void getModification()
}
class baseline.FileRead {
- ArrayList<String> list
- Scanner scanner
- void readile()
+ ArrayList<String> getData()
}
class baseline.solution45 {
+ {static} void main(String[])
}
@enduml | false | true | false | false | class |
922f7c797c65be9163dbc7268726de7b91adddcf | 2b90e7842ab4b6807601859af33123456cdda792 | /MyApplicationdfsd.plantuml | 53de5b43bf1bf4d5acc3b3ee19108803f8125144 | [] | no_license | 616272776/MyApplicationdfsd | 21066b59a9e4b92a1b57dc7d80af3d902484749f | d927e58d522b5867ae2fd4ef9fdb0ab3e7aa79d0 | refs/heads/master | 2023-06-25T12:15:50.758071 | 2021-07-20T07:18:32 | 2021-07-20T07:18:32 | 369,397,617 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 325 | plantuml | @startuml
title __MYAPPLICATIONDFSD's Component Diagram__\n
[MyApplicationdfsd.app] --> [MyApplicationdfsd.rtc_framework]
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 | uml-unknown |
b8d81afa7ebf0a142dc0653721abf890fc77f8f6 | ed006f8e98c20dfd1fe16065e9037b6c8efc511d | /doc/design/diagrams/request_response/overview_class.puml | f0f418f839b454bdfa91e551f1eecb4cc466b5fe | [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-generic-export-compliance"
] | permissive | phongt/iceoryx | 939343855cc4bbe1610ce7c7ed504539a943f795 | efc697cf67a8bc8aedf3d123e2c9df582a5aeb83 | refs/heads/master | 2023-07-26T03:36:03.492954 | 2023-07-19T08:29:19 | 2023-07-19T08:29:19 | 237,723,029 | 0 | 0 | Apache-2.0 | 2023-07-21T19:33:59 | 2020-02-02T05:23:34 | C++ | UTF-8 | PlantUML | false | false | 290 | puml | @startuml
class Client {
}
class Server {
}
class ClientPortUser {
}
class ServerPortUser {
}
Client o-- ClientPortUser
Server o-- ServerPortUser
ClientPortUser o-- ChunkSender
ClientPortUser o-- ChunkReceiver
ServerPortUser o-- ChunkSender
ServerPortUser o-- ChunkReceiver
@enduml
| false | true | false | false | class |
32575e34726a0ab9e0fff0f1c6087ec438f27a32 | 346cbf8076b2b36ea53dacb81b65860af6654643 | /src/main/java/ex43/ex43.puml | 339638db6f7eed4937c6f6b01036ebb0bf0fdd70 | [] | no_license | decortealex/decorte-cop3330-assignment3 | 187acd749f22fdeef87107a40740fc36018a0307 | 058ff15bec6a4dd2cf356112054840e68c9bc14a | refs/heads/master | 2023-06-26T06:36:22.959836 | 2021-07-26T03:08:05 | 2021-07-26T03:08:05 | 377,012,916 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 173 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
+ genSite(String, String, boolean, boolean)
+ genIndex(String, String, String, String)
+ main(String[])
}
@enduml | false | true | false | false | class |
074a0f1a1ceae86a3365cc5b67a44c91d0ee085f | 34acd2aa8d51295c0c4289e43e8961f5e23b5a08 | /PlantUML/raw/Custom/ElCazador.Test/Web/JsonDataStoreTest.puml | b4b9e0920ce27c93778b09820b4bdad455e6d562 | [] | no_license | fisboger/Thesis | a6887e195c7daa8317abe3167de1676420173e33 | 4746126f69da615c641380fd7a33c863f2fedee3 | refs/heads/master | 2020-04-03T15:18:08.671739 | 2019-02-07T11:17:06 | 2019-02-07T11:17:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 443 | puml | @startuml
class JsonDataStoreTest {
- Path : string = @"/Users/elpatron/Documents/Projects/ElCazador/ElCazador.Test"
- HostingEnvironmentMock : Mock<IHostingEnvironment>
- DataStore : IDataStore
+ JsonDataStoreTest()
Target : Target
User : User
+ TestAdd() : void
+ TestDelete() : void
+ TestEdit() : void
+ TestJsonIntegrity() : void
+ Dispose() : void
}
IDisposable <|-- JsonDataStoreTest
@enduml
| false | true | false | false | class |
8d5bc81da39fc3540e99be572dedc6ed4c3742e4 | b36e0c7fe97088c7ae5394b9b821a98e7e270888 | /diagrams/repl.puml | f1f95f821a97e7421a186576a2d6779e3c8a365c | [
"MIT"
] | permissive | calypso-lang/assets | d4833c0104986f0b1e209610a4b328a59ee140bd | 2dc7f59cc325cc17608cb9b28409c653b665c0c6 | refs/heads/main | 2023-04-20T14:54:19.199937 | 2021-05-11T01:34:41 | 2021-05-11T01:34:41 | 314,695,669 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 725 | puml | @startuml repl
' skinparam maxMessageSize 125
actor User as "Blocking IO Service"
actor Ctrl as "Control"
actor Eval as "Evaluator"
actor Cmd1 as "Cmd Evaluator 1"
actor Cmd2 as "Cmd Evaluator 2"
== Regular Input Handling ==
autonumber
User -> Ctrl : ""Load("<INPUT>")""
Ctrl -> Eval : ""Evaluate("<INPUT>")""
== Command Handling ==
autonumber
User -> Ctrl : ""Load(":cmd1 <INPUT>")""
Ctrl -> Cmd1 : ""Evaluate(":cmd1 <INPUT>")""
== Command Handling with Config ==
autonumber
User -> Ctrl : ""Load(":cmd2 <INPUT>")""
Ctrl -> Cmd2 : ""Evaluate(":cmd2 <INPUT>")""
Cmd2 -> Ctrl : ""GetConfigMut""
Ctrl -> User : ""GetConfigMut""
User -> Ctrl : ""ConfigMut(&mut Config)""
Ctrl -> Cmd2 : ""ConfigMut(&mut Config)""
@enduml | false | true | false | false | usecase |
36001284169d56ba7c051c1d1538372bdde35e8c | a3895a50bdbcc8235bb580e0345049cf1ae46e47 | /Mastermind.puml | 87f282dfbc432437500126cd8516d2506512e158 | [] | no_license | JoaquinRamos/ejercicio-2-modelo-de-dominio-mastermind-JoaquinRamos | b8fda71c010479e888020f3056fb209120da9f37 | 70ca336ad1bc37322676e698130a2946b3825e8f | refs/heads/main | 2023-01-25T00:57:22.857149 | 2020-12-05T17:14:03 | 2020-12-05T17:14:03 | 313,089,318 | 0 | 0 | null | 2020-11-15T17:49:48 | 2020-11-15T17:49:47 | null | UTF-8 | PlantUML | false | false | 1,061 | puml |
@startuml
Mastermind *-down-> "2" Jugador
Mastermind *-down- Tablero
Mastermind *-down-> Turno
Jugador <|-down- Maestro
Jugador <|-down- Adivinador
Turno --> "2" Jugador
Tablero *-- CombinaciónSecreta
Tablero --> "0..10" CombinaciónPropuesta
Tablero --> "1..10" ComprobarCombinación
CombinaciónSecreta-up-|> Combinación
CombinaciónPropuesta -up-|> Combinación
Maestro --> ElegirCombinaciónSecreta
ElegirCombinaciónSecreta --> CombinaciónSecreta
Adivinador-->"1..10" ProponerCombinación
ProponerCombinación --> CombinaciónPropuesta
ComprobarCombinación --> CombinaciónSecreta
ComprobarCombinación --> CombinaciónPropuesta
ComprobarCombinación --> Resultado
Resultado *--> "0..4" FichitasNegras
Resultado *--> "0..4" FichitasBlancas
ResultadoFinal -up-|> Resultado
Combinación *--> "4" Posición
Posición *--> Color
FichitasNegras *--> Posición
Verde -up-|> Color
Rojo -up-|> Color
Azul -up-|> Color
Amarilla -up-|> Color
Rosas -up-|> Color
Violeta -up-|> Color
@enduml
| false | true | true | false | class |
cb31f67fa487a538eb4f3b50814fa82d9107f3dd | 4279d4f730f6df88ac1f920a49a6c5862ee6739c | /src/main/java/com/example/customcontrollib/UML/Sequence.puml | 518e5101600e7ea9f714d094c8ad55a8a6cfbe04 | [] | no_license | zhangzhuo1024/customcontrollib | 3be33e3294be9891927a36b0dcb0c6c09a6fed5c | 015f59ba1f33e48849342b4c6a2c5f831fee8f2b | refs/heads/master | 2023-08-14T22:06:55.904052 | 2021-10-12T02:42:20 | 2021-10-12T02:42:20 | 291,948,364 | 0 | 0 | null | 2021-04-23T03:31:12 | 2020-09-01T09:00:12 | Java | UTF-8 | PlantUML | false | false | 106 | puml | @startuml
User -> IconView: init
User --> IconView: setOnclickListener
IconView -> User: onClick
@enduml | false | true | false | false | sequence |
d5fd8b112bcc5bea593e59fa5471efbfa9fe194e | 4830d642871bca9d89b03473d53ee32e8cd64121 | /use-cases/21/use-case-21.puml | 28070e09b3cdadb21b3a755d2edfe19e6afe0356 | [
"Apache-2.0"
] | permissive | eoinkane/sem-coursework | ac12b74e2d7deca4a584c89a521a809b4f189ed6 | 634006895b639327b2dcd053d1de169e0f65a492 | refs/heads/master | 2023-04-17T10:53:39.026338 | 2021-04-30T08:28:10 | 2021-04-30T08:28:10 | 333,163,286 | 3 | 0 | null | 2021-02-06T13:27:57 | 2021-01-26T17:32:14 | null | UTF-8 | PlantUML | false | false | 341 | puml | @startuml
actor Member as "Member of the
organisation"
rectangle Database
rectangle "Population Information System" {
usecase UC21 as "Get the Top N Populated Cities
in a Country where N is Provided by the User."
usecase UCa as "Output the report."
Member - UC21
UC21 ..> UCa : include
UC21 - Database
}
@enduml | false | true | false | false | usecase |
97749927d8b6d1ad94a12b25dabea75fd721d4ab | 9a9ff502b55466e07f5316f4643a3082dd238179 | /src/adocs/puml/06-sendmessage.puml | e3e315392008b6bcbecd35c237221124063dd499 | [
"MIT"
] | permissive | LuisBoto/dechat_es1b | 21842fb426fc3137554c01228c347324c9fb231b | 585f471a9437a43f93f71c296d7f17c0e3d0d854 | refs/heads/master | 2022-01-09T09:41:36.642330 | 2019-05-01T18:31:06 | 2019-05-01T18:31:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 261 | puml | @startuml
title "Send message"
actor UserA as user
participant DeChat
database PODA as poda
database PODB as podb
user -> DeChat : click send
DeChat -> poda : writeOwnPod(message)
DeChat -> podb : writeInbox(notification)
DeChat -> user : refresh UI
@enduml | false | true | false | false | usecase |
7b259b677979227f98852014f59d1af784376437 | 17a3796912a837cb9a28620df36390e0cd030d8b | /PlayDataFlow/struct.puml | 1d0e8d1749fee2b803f714538cba1bc7bf3c15d7 | [] | no_license | goolyuyi/playTask | 156df5c66fbccbf7fb7c7cc9487ba6e07911e5d9 | c0ac92fc96fd267f56cf83e415a3b9dea74ccbda | refs/heads/master | 2023-04-13T16:57:31.629780 | 2021-04-22T10:03:57 | 2021-04-22T10:21:04 | 360,477,441 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,249 | puml | @startuml
interface IDataflowBlock{
Task Completion { get; }
void Complete();
void Fault(Exception exception);
}
interface ISourceBlock {
LinkTo(ITargetBlock);
ReserveMessage
ReleaseReservation
ConsumeMessage
TOutput Receive();
}
IDataflowBlock<|--ISourceBlock
interface IReceivableSourceBlock{
TryReceive();
TryReceiveAll();
}
IDataflowBlock<|--IReceivableSourceBlock
ISourceBlock<|--IReceivableSourceBlock
interface ITargetBlock{
OfferMessage
Post();
}
IDataflowBlock <|-- ITargetBlock
interface IPropagatorBlock
ISourceBlock <|-- IPropagatorBlock
ITargetBlock <|-- IPropagatorBlock
IDataflowBlock <|-- IPropagatorBlock
class ActionBlock
ITargetBlock <|.. ActionBlock
class TransformBlock
IPropagatorBlock <|.. TransformBlock
IReceivableSourceBlock <|.. TransformBlock
class TransformManyBlock
IPropagatorBlock <|.. TransformManyBlock
IReceivableSourceBlock <|.. TransformManyBlock
class BufferBlock
IPropagatorBlock <|.. BufferBlock
IReceivableSourceBlock <|.. BufferBlock
class WriteOnceBlock
IPropagatorBlock <|.. WriteOnceBlock
IReceivableSourceBlock <|.. WriteOnceBlock
class BroadcastBlock
IPropagatorBlock <|.. BroadcastBlock
IReceivableSourceBlock <|.. BroadcastBlock
@enduml | false | true | false | false | class |
ced3c526359c264dd3d79aedaaf46832073d2ef3 | 0ce0ba4aea801c3567528a51185e921ad610912f | /design/api-polling.sequence.puml | d91e0347e2ab8a07917f215dc8ff3f61e8c887df | [] | no_license | JPBlancoDB/csv-importer | 71e65dd508fffb25591ee851e8f34fa60757f18e | 0af813d67b292cbc8c7a5c1aabcc33c845d8f74c | refs/heads/master | 2020-05-19T14:22:46.835174 | 2019-05-17T21:21:50 | 2019-05-17T21:21:50 | 185,058,575 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 672 | puml | @startuml "WebApi Polling Sequence"
actor User
participant Controller
participant JobsService
database Sql
User->>Controller: import csv
activate Controller
Controller-->User: return 202 : job
destroy Controller
note left of Controller
import returns 202 with job information
and location header to retrieve status.
Polling mechanism done by User
endnote
alt Polling
User->Controller: getStatus: job
activate Controller
Controller->JobsService: getJob(jobId:guid) : job
activate JobsService
JobsService->Sql: getJob: job
Sql-->JobsService: return
JobsService-->Controller: return data
destroy JobsService
Controller-->User: return job
destroy Controller
end
@enduml | false | true | false | false | usecase |
ea643d541b2ea5c80adf46b8bc9b794beb717a64 | 853d8c0c34bfd1c4080873b5c5f421d01d107b9b | /Analysis_Design/Use Case/UseCaseGame.puml | 8fb67dafd123ff09137b889c9006ddae6878026a | [] | no_license | mesa123123/battleshipsite | f5e5034ac02280de339a13a19540534a07d6526f | 2a74e1f89b86559337e1665148f7dbf9dc00da7b | refs/heads/master | 2020-03-22T00:11:49.859228 | 2018-07-11T08:23:59 | 2018-07-11T08:23:59 | 139,229,918 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 182 | puml | @startuml
left to right direction
actor User
rectangle System {
User --> (Attack)
User --> (Attack Type)
(Attack) --|> (Attack Type) : depends on
User <- (Inform Defences)
}
@enduml
| false | true | false | false | usecase |
cec65e77e77377e7f37a89594be8c3077f98718c | 729c9a90770a3c1d45991c48a6f1c39a3bb5b914 | /plantUML/timingDiagram.puml | 07675f56e3024cf269c1a8e0d24c1771f30a1ff0 | [] | no_license | raozhanping/demo-frame | 46006704396497bc43e8cec7c619796d30070d49 | fe3c76c8dee55fb13d6d18cc6fadc0d2014be209 | refs/heads/master | 2023-01-16T02:34:04.087960 | 2021-05-28T06:20:58 | 2021-05-28T06:20:58 | 200,223,600 | 0 | 0 | null | 2023-01-06T04:00:18 | 2019-08-02T11:31:13 | JavaScript | UTF-8 | PlantUML | false | false | 1,609 | puml | @startuml timing diagram
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Request
Alice -> Bob: Another authentication Request
Alice --> Bob: Another authentication Request
@enduml
@startuml actor
actor Foo1
boundary Foo2
control Foo3
entity Foo4
database Foo5
collections Foo6
Foo1 -> Foo2 : To boundary
Foo1 --> Foo3: To control
Foo1 -> Foo4: To entity
Foo1 -> Foo5: To database
Foo1 -> Foo6: To collections
@enduml
@startuml use participant
actor Bob #Red
' The only difference between actor
' and participant is the drawing
participant Alice
participant "I have a really\nlong name" as L #99FF99
/'You can also declare:
participant L as "I have a really\nlong name" #99FFF99
'/
Alice -> Bob: Authentication Request
Bob -> Alice: Authentication Request
Bob -> L: Log transaction
@enduml
@startuml use order
participant Last order 30
participant Middle order 20
participant First order 10
@enduml
@startuml use exclude word
Alice -> "Bob()": Hello
"Bob()" -> "This is very\nlong" as Long
' You can also declare:
' "Bob()" -> Long as "This is very \nlong"
Long --> "Bob()": ok
@enduml
@startuml send msg to self
Alice -> Alice: This is a signal to self.\nIt also demonstrates\nmultiline \nnext
@enduml
@startuml arrow style
Bob ->x Alice
Bob -> Alice
Bob ->> Alice
Bob -\ Alice
Bob \\- Alice
Bob //-- Alice
Bob ->o Alice
Bob o\\-- Alice
Bob <-> Alice
Bob <->o Alice
@enduml
@startuml arrow color
Bob -[#red]> Alice: hello
Alice -[#0000FF]-> Bob: ok
@enduml
@startuml autonumber
autonumber
Bob -> Alice: Authentication Request
Bob <- Alice: Authentication Response
@enduml
| false | true | false | false | sequence |
3f5d71d58ea6ba03a1fcbb5e49442defc33e94bf | 37f90cb1b53631755f7214916e41c1368cfe4754 | /docs/model/peer-boosts-recognition.puml | 69c7bcfd0b155d86a951d9473d41917d41e16b84 | [] | no_license | wlucjan/peer-recognition | 9e0dc7c13e01adb468d2e71ed1cf9229d9b268d8 | 4adf69c57c91365403f858c026df732b7d54da47 | refs/heads/master | 2023-01-15T23:22:25.039919 | 2020-04-10T14:14:01 | 2020-04-10T14:14:01 | 251,328,628 | 0 | 0 | null | 2022-12-10T23:37:21 | 2020-03-30T14:22:16 | TypeScript | UTF-8 | PlantUML | false | false | 713 | puml | @startuml
actor User
autoactivate on
User -> PeerRecognitionService: recognise(PeerRecognitionRequest)
PeerRecognitionService -> PeerRepository: findOne(giverId)
return Peer
PeerRecognitionService -> RecognitionRepository: findOne(recognitionId)
return Recognition
PeerRecognitionService -> OrganisationRepository: findOne(giverOrganisationId)
return Organisation
PeerRecognitionService -> Organisation: boost(Peer giver, Recognition recognition)
Organisation -> Organisation : can giver boost recognition?
return yes
Organisation -> Recognition : boost
return Recognition
return Recognition
PeerRecognitionService -> RecognitionRepository: save(Recognition)
return ok
return PeerRecognitionResponse
@enduml | false | true | false | false | usecase |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.