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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
00b1739e106a93d1942e9199c854cbfe33988767 | ed45ea4470bcfc497e2584697d7842a540e04fd9 | /ros2/navigation2/exceptions.puml | 8e9d41294d578e4821c1f0e2f538cd6339e1cb3f | [] | 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 | 977 | puml | @startuml
'https://plantuml.com/class-diagram
namespace nav2_core{
class PlannerException{
-- public method --
explicit PlannerException(const std::string description)
using Ptr = std::shared_ptr<PlannerException>;
}
}
namespace dwb_core{
class PlannerTFException
{
-- public method --
explicit PlannerTFException(const std::string description)
}
class IllegalTrajectoryException
{
-- public method --
IllegalTrajectoryException(const std::string critic_name, const std::string description)
std::string getCriticName() const {return critic_name_;}
-- protected data --
std::string critic_name_;
}
class NoLegalTrajectoriesException
{
public:
explicit NoLegalTrajectoriesException(const IllegalTrajectoryTracker & tracker)
IllegalTrajectoryTracker tracker_;
}
nav2_core.PlannerException <-- nav2_core.PlannerTFException
nav2_core.PlannerException <-- nav2_core.IllegalTrajectoryException
nav2_core.PlannerException <-- nav2_core.NoLegalTrajectoriesException
}
@enduml | false | true | false | false | class |
a4c36092389a5caf67493fadfea0be9cd9d63599 | 2266e3dac74c737199a009593aecb2afcb451b58 | /chess-publicview.puml | dac3a9ff92eae32440a60980845df978274f6484 | [] | no_license | Master-Desarrollo-20-21/ejercicio-4-ajedrez-polimorfismo-kodenix | 328c4177e7bdf9f3cb047f08be05857cacc5b7e0 | fa730f0594b1805af0640f9074098b929c6a5a13 | refs/heads/main | 2023-01-25T01:37:58.622750 | 2020-11-21T10:40:39 | 2020-11-21T10:40:39 | 311,366,163 | 1 | 2 | null | 2020-11-21T10:40:40 | 2020-11-09T14:33:29 | Java | UTF-8 | PlantUML | false | false | 1,852 | puml | @startuml ChessPublicView_v2_0_2
title Chess Public View v2.0.2
class Chess {
+play()
}
class Turn {
+getCurrentPlayer()
+change()
}
class Player {
+boolean isWinner()
+Color getColor()
+void playTurn(Board)
}
enum Color {
BLACK
WHITE
}
class Board {
-Square[8][8] squares
+Board()
+void show()
+Square getSquare(Coordinate)
}
abstract class Piece {
+Piece(Color)
+Color getColor()
+String getSimbol()
+boolean isKing()
+abstract boolean isValidMoveRule(Coordinate origin, Coordinate destination)
}
class Coordinate {
+Coordinate(String coordinateText)
+int getRowNumber()
+int getColumNumber()
+boolean hasVerticalDirectionWith(Coordinate)
+boolean hasOneStepVerticalDirectionWith(Coordinate)
+boolean hasHorizontalDirectionWith(Coordinate)
+boolean hasOneStepHorizontalDirectionWith(Coordinate)
+boolean hasDiagonalDirectionWith(Coordinate)
+boolean hasOneStepDiagonalDirectionWith(Coordinate)
}
class Square {
+Square(Coordinate)
+void clean()
+void putPiece(Piece)
+boolean isEmpty()
+Piece getPiece()
+boolean isValidMoveRuleForContainedPiece()
+boolean containKing()
}
class Movement {
+Movement(Coordinate origin, Coordinate destination)
+MatchResult perform(Board, Color currentUserColor)
}
enum MatchResult {
CAPTURE
NOT_ALLOWED
EMPTY_SQUARE
CHECKMATE
}
class King extends Piece {
}
class Rook extends Piece {
}
class Queen extends Piece {
}
Chess *--> "1" Board
Chess *--> Turn
Turn *--> "2" Player
Player o--> Color
Piece o--> Color
Piece ..> Coordinate
Player ..> Coordinate
Player ..> Movement
Player --> Board
Board *--> "64" Square
Board *--> "32" Piece
Square o--> "0..1" Piece
Square *--> "1" Coordinate
Movement *--> MatchResult
Movement --> Board
Movement --> Square
Movement ..> Piece
@enduml | false | true | false | false | class |
db2f7d888e6dda6fcb55986d91b0ec8653d16595 | 8cf018eb6de40017601592f1f125ea67d5de7086 | /docs/Solution/Cloud-Stack/Data-Exchange/Physical.puml | 96b28696093c5798d06961177a2b4fd3d8ba683d | [] | 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 | 157 | puml | @startuml
package "Cloud-Stack/Data-Exchange" {
component component1
component component2
interface i1
}
i1 - component1
component1 --> component2
@enduml
| false | true | false | false | class |
db7fe574055ece12919981b852c338b875edd3a3 | c72d1b50d499a5dfc83611cba34da91b1be678db | /uml/MAT-169_measure_cql_workspace_definitions.puml | d6e86438b10bf8c70e7aaaa34247fae6853fa1e8 | [
"CC0-1.0"
] | permissive | MeasureAuthoringTool/MeasureAuthoringTool | ea392f61b85b0a6c455c9c91849b728a38e8c0f0 | 68e8d703bc649090b5c0fc2fc6b2e28234ab2253 | refs/heads/develop | 2023-08-30T21:41:28.515221 | 2023-07-11T17:54:31 | 2023-07-11T17:54:31 | 209,829,177 | 10 | 7 | CC0-1.0 | 2023-09-09T02:43:19 | 2019-09-20T15:57:26 | JavaScript | UTF-8 | PlantUML | false | false | 3,191 | puml | @startuml
header as-is current state
actor User order 10
participant "MAT GWT" as gwt order 20
participant "MAT Server" as srv order 30
title CQL Workspace - Definition - Add or Modify Definition
User -> gwt: add/modify definition
gwt --> User: done
User -> gwt: save
opt validation failed
note over gwt
#definition name is a valid expression name, not empty, not a keyword, not Patient
#definition Name has no special chars
#definition comment < 250 chars
#definition comment contains no invalid chars
end note
gwt -[#red]> User: show error
destroy gwt
end
gwt -> srv: MeasureService::saveAndModifyDefinitions(\n\tmeasureId, \n\tmodified definition, \n\tcurrent definition, \n\tlist of defnitions,\n\t isFormattable: true)
opt current measure not editable
srv --[#red]> gwt: result {success: false}
destroy srv
end
srv -> srv: load measure xml by measureId
group CqlService::saveAndModifyDefinitions (xml, modified definition, current definition, definition list, isFormattable)
srv -> srv: create cqlModel from xml
note over srv
validate the new identifier, unless it was equal to the definition
# validate no special chars
# validate identifier name is not duplicated
# validate comment is not too long
end note
srv -> srv: update cql definition in the model
srv -> srv: insert cql definition and then parse cql for errors
opt isFormattable
srv -> srv: format definition
end
end
srv -> srv: update xml with risk adjustment variables
srv -> srv: update xml, replace cqlLookUp with measure
srv -> srv: save measure xml to DB
srv -> gwt: return result {success: true}
'------------------------------------------------------
newpage CQL Workspace - Definition - Delete Definition
User -> gwt: Delete definition, [confirmation == Yes]
gwt -> srv: MeasureService::deleteDefinition (\n\tmeasureId, \n\tto be modified cql definition)
srv -> srv: MeasureLibraryService::deleteDefinition (\n\tmeasureId, \n\tto be modified cql definition)
alt measure is not editable
srv --[#red]> gwt: result = SaveUpdateCQLResult(success = false)
else measure is editable
srv -> srv: load measure xml by measureId from the DB
srv -> srv: result = CqlService::deleteDefinition (xml, \n\tto be modified cql definition))
note over srv
CqlService::saveCQLCodes does xml processing,
# parses CQLModel from xml
# remove definition by id
# update xml from CQLModel
# return result : SaveUpdateCQLResult (updated model, updated definition)
end note
srv -> srv: update xml value with cqlResult xml returned from CqlService
srv -> srv: <b><color #RED>update xml populations and groups
srv -> srv: store xml to the DB MeasurePackageService::saveMeasureXml
srv --> gwt: result
end
alt result is success
gwt -> gwt: update the view with cql parameters from result::getCqlModel()::getCqlParameters()
gwt --> User: show success message
else result is not success
gwt --[#red]> User: show validation error
else error
gwt --[#red]> User: Window.alert( error message )
end
footer actual on 01/22/2020
@enduml | false | true | false | false | usecase |
bbb1028a1ec0d0c5ccfc0d509c732ff8a3e1ee7b | f3443452332df248865d8c59e128df6fb465c09b | /src/main/java/design/CodeBlockObjects.puml | 91165ce2084925e5759b61f84c415bd436d22689 | [] | no_license | yilmazerd/simplerest01 | a176030b1d6e3d21fd7cf66662199b20f2f56b74 | a6db08dd27e2d105e96ff6b2bc4261b615be170e | refs/heads/main | 2023-08-13T11:52:11.915391 | 2021-10-06T03:16:09 | 2021-10-06T03:16:09 | 312,758,586 | 0 | 0 | null | 2021-10-06T02:50:33 | 2020-11-14T06:17:18 | HTML | UTF-8 | PlantUML | false | false | 574 | puml | @startuml
class CodeBlock {
- String : code
- UUID: codeBlockId
- Compiler <Enum>: compiler
- Instant: timeStamp
-- Methods --
+ String getCustomerCode()
+ UUID getId()
-- Builder --
+ withCode (String code) <Required>
+ withId (UUID id) <Optional>
+ withCompiler (Compiler c) <Required>
+ withTimeStamp (Instant i) <Optional>
}
class CBRequest <POJO> {
- String : code
- String : userPrimaryKey
- String : userSecondary
- String : Compiler
}
class CBResponse <POJO> {
- String : url
- CBResponseError : cbResponseError
}
@enduml | false | true | false | false | class |
37f058fc56e210cf5537f69a651261e9014c1070 | 7546aa3cd88e77126ec2ef50574d45cc96b9bc5b | /test/PlantUmlClassDiagramGeneratorTest/uml/GenericsType.puml | 37641932e767f8f093743a8d5977ca7c00d848ed | [
"MIT"
] | permissive | gjuttla/PlantUmlClassDiagramGenerator | 6806db6b2e313fdd1044b8118da94dd1858edf06 | 6480a2958bb23e7c72c1f5e03973ba7be189b718 | refs/heads/master | 2020-03-22T05:17:39.856579 | 2018-07-03T19:05:49 | 2018-07-03T19:05:49 | 139,555,932 | 1 | 1 | null | 2018-07-03T08:56:29 | 2018-07-03T08:56:29 | null | UTF-8 | PlantUML | false | false | 486 | puml | @startuml
class GenericsType {
+ Value : object <<get>>
}
class "GenericsType`1"<T> {
+ Value : T <<get>>
}
class "GenericsType`2"<T1,T2> {
+ Value1 : T1 <<get>>
+ Value2 : T2 <<get>>
}
class SubClass {
+ Value1 : string <<get>>
+ Value2 : int <<get>>
}
class "SubClass`1"<T> {
+ Value1 : GenericsType<int> <<get>>
+ Value2 : T <<get>>
}
"GenericsType`2" "<string,int>" <|-- SubClass
"GenericsType`2" "<GenericsType<int>,T>" <|-- "SubClass`1"
@enduml
| false | true | true | false | class |
56923d8eafdc4969d3651eb75ef7f6bca99d0afb | c4f7d455bd5f34d0875b667304c2767143ef9ac3 | /doc/plantuml/HCARDC/pin.plantuml | cb7a88706520900be06522d93a07c0f92c590f3b | [
"Apache-2.0"
] | permissive | gematik/ref-HealthCardControl | 6b7482826e2e35242bfe6a3367dd2888244178d0 | 26a0e1be00206ca74785b4c7c008f17d863d854f | refs/heads/master | 2022-01-22T11:48:22.199071 | 2020-02-20T13:12:39 | 2020-02-20T13:12:39 | 214,092,133 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 601 | plantuml | @startuml
namespace de.gematik.ti.healthcard.control {
namespace entities {
namespace card {
namespace pin {
enum PinState {
NO_ERROR
PASSWORD_DISABLED
PASSWORD_NOT_FOUND
RETRY_COUNTER_COUNT_00
RETRY_COUNTER_COUNT_01
RETRY_COUNTER_COUNT_02
RETRY_COUNTER_COUNT_03
SECURITY_STATUS_NOT_SATISFIED
TRANSPORT_STATUS_EMPTY_PIN
TRANSPORT_STATUS_TRANSPORT_PIN
}
}
}
}
}
@enduml
| false | true | false | false | class |
5054a75b0f29f1a58ecdf44465e7612aa62427ba | 065da8d391be577d7fc71aa024ab81e35c39618b | /PlantUml/Dolphin.IO/SearchFilter.puml | 325860d069d0b8694be28753556fb0ecc91a8f17 | [] | no_license | leoshiang/Dolphin.CSharp | 1fc921ea04a4a721b49557748f7ca15f89f9e414 | 61438432f088c6b380356afdcba4c627985fa152 | refs/heads/master | 2023-04-17T03:59:19.871766 | 2023-03-30T02:03:42 | 2023-03-30T02:03:42 | 204,225,824 | 0 | 0 | null | 2022-12-08T04:32:20 | 2019-08-25T00:02:55 | C# | UTF-8 | PlantUML | false | false | 610 | puml | @startuml
class SearchFilter {
+ ExcludeDirectories(directories:string[]) : ISearchFilter
+ ExcludeDirectory(directory:string) : ISearchFilter
+ ExcludeExtension(extension:string) : ISearchFilter
+ ExcludeExtensions(extensions:string[]) : ISearchFilter
+ IncludeDirectories(directories:string[]) : ISearchFilter
+ IncludeDirectory(directory:string) : ISearchFilter
+ IncludeExtension(extension:string) : ISearchFilter
+ IncludeExtensions(extensions:string[]) : ISearchFilter
+ Match(files:IEnumerable<string>) : IEnumerable<string>
}
ISearchFilter <|-- SearchFilter
@enduml
| false | true | false | false | class |
bc80cf1adc5bafad8abdd87ad508a5f809d76124 | 69710f02e6406b4661d6eeb82fe8b995ce27ec04 | /pml/d1.plantuml | f2faa2be376dbcc9da41d56e4457aabe6b682b40 | [] | no_license | 1091643978/sequence | 347ec8336d54c412af22825513012ff745155f8a | e946d503470929fb94bf06c0c87a6099d1b1aa93 | refs/heads/master | 2023-02-19T04:16:54.342944 | 2021-01-22T07:01:38 | 2021-01-22T07:01:38 | 295,281,292 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,254 | plantuml | @startuml
start
:ClickServlet.handleRequest();
:new page;
if (Page.onSecurityCheck) then (true)
:Page.onInit();
if (isForward?) then (no)
:Process controls;
if (continue processing?) then (no)
stop
endif
if (isPost?) then (yes)
:Page.onPost();
else (no)
:Page.onGet();
endif
:Page.onRender();
endif
else (false)
endif
if (do redirect?) then (yes)
:redirect process;
else
if (do forward?) then (yes)
:Forward request;
else (no)
:Render page template;
endif
endif
stop
@enduml
@startuml
title Dodawanie hosta
actor UI #red
box "Kontroler" #LightBlue
control Kontroler
database kontrolerDB
end box
box "Monitor" #DarkSalmon
control Monitor
database monitorDB
end box
autonumber
UI -> Kontroler: POST /host
Kontroler -> Kontroler: Walidacja danych
alt dane poprawne
Kontroler -> kontrolerDB: dodaj do bazy
Kontroler -> Monitor: POST /host
Monitor -> Monitor: Walidacja danych
alt dane poprane
Monitor -> monitorDB: Dodaj do bazy
Monitor --> Kontroler: status 201
Kontroler --> UI: status 201
else dane niepoprawne
Monitor -> Kontroler: status 400
Kontroler --> UI: status 400
end
else danie niepoprawne
Kontroler --> UI: status 400
end
@enduml
| false | true | false | false | usecase |
04e0738546244d011391cd5afee151127568c027 | f3e5470b71219337445bca0f5e5c1ffa32da3af8 | /Documentation/plantuml/Managers/CameraManager.puml | 658bb4be410431208a8b84ce2f413683c933e0c4 | [
"MIT"
] | permissive | Jaren-Taylor/Smart-City-Dashboard | 65116d7afd09bdc9d5ff33e05213a83bc73b52cb | 7d947637bc1c0b0d4a7a2b781c405518481dc319 | refs/heads/main | 2023-04-14T06:55:40.565340 | 2021-04-26T19:55:52 | 2021-04-26T19:55:52 | 327,404,880 | 0 | 0 | null | 2021-04-19T02:11:24 | 2021-01-06T19:02:38 | C# | UTF-8 | PlantUML | false | false | 484 | puml | @startuml
class CameraManager {
+ defaultRotation : int
+ Size : float <<get>> <<set>>
+ Rotation : int <<get>> <<set>>
ResetSize() : void
ResetPosition() : void
ResetRotation() : void
ResetCamera() : void
Start() : void
RotateLeft() : void
RotateRight() : void
Update() : void
}
MonoBehaviour <|-- CameraManager
CameraManager --> "mainCamera" Camera
CameraManager --> "defaultPosition" Vector2
CameraManager --> "Position" Vector3
@enduml
| false | true | false | false | class |
01907f32e861989e6f36c6c7fa8d52ba9c7209c2 | 13fd168c2136098087aeca7ec84ec06079f92c52 | /app/UML/SSD.puml | 36fc917007ab06b353d1a7190eb47f53172ae95b | [] | no_license | llittle3701/AubieMemory | 1c2975bc6fafc8881b6fe9283002a5fa20c67a73 | 1bc7418f24ca71ee066ffbc01fbf5c73045ec843 | refs/heads/master | 2020-03-10T07:39:52.297182 | 2018-05-02T05:00:48 | 2018-05-02T05:00:48 | 129,268,057 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 755 | puml | @startuml
title AubieMemory System Sequence Diagram
actor Player
participant MemoryGame
participant HighScoreManager
group SD: Memory
Player -> MemoryGame: Choose difficulty
Player <-- MemoryGame: display buttons
loop while (game in progress)
Player <-- MemoryGame: play tone sequence
Player -> MemoryGame: input sequence
alt correct input
Player <- MemoryGame: extend sequence
Player <-- MemoryGame: update score
opt score > high score
MemoryGame --> HighScoreManager: transmit High Score
Player <-- MemoryGame: update high score
end
else incorrect input
Player <- MemoryGame: end game
Player <- MemoryGame: display 'play again' button
end
end
Player -> MemoryGame: view high scores
Player <-- HighScoreManager: show high scores
end
@enduml | false | true | false | false | usecase |
720eb24de3fd73b2aa3a5a9644059e21c6030d58 | 743358bee6d4cb2757abd892ec42be938f3f994e | /videochat_docs/uml/activity/create_room_activity.puml | 1c1e0998768379c1313f56434a911b5a5503aa46 | [] | no_license | kariandreyka/Salam | 4efbd69a0b38ab08e2fddd4a673c2f46d780f5d6 | 85deb54340266678a1376b713945fee9bb21df4e | refs/heads/master | 2023-02-03T10:35:02.726276 | 2020-12-16T00:03:53 | 2020-12-16T00:03:53 | 317,249,569 | 0 | 5 | null | 2020-12-16T00:03:54 | 2020-11-30T14:31:11 | JavaScript | UTF-8 | PlantUML | false | false | 146 | puml | @startuml Use Case Diagram
(*) --> "Send user name to server"
--> "Create room"
--> "Return room id"
--> "Redirect to room link"
--> (*)
@enduml | false | true | false | false | uml-unknown |
9f22357ace021b82bb4e1fea561ca467e1450ba9 | 8d91ff31e22d4f0f2082ebba0c6da8ec4391e8f4 | /src/doc/sequenceDiagram/autneticateUser.puml | a06d7906538b20a22690e81a334326614647b38f | [] | no_license | suraj903/sportsgeek_backend-1 | fe54372687c96ac6a92a8e76d913bf60f44ffee7 | 99fe51fa81a9df4599f2b3eeac299846d5bf835d | refs/heads/master | 2023-07-28T02:16:51.481764 | 2021-09-13T14:43:12 | 2021-09-13T14:43:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,492 | puml | @startuml
header SportsGeek
title Authenticate User
skinparam ParticipantPadding 10
skinparam BoxPadding 20
actor User
box "SportsGeek System"
participant sportsGeek
end box
box "Authentication Service"
participant authenticate
end box
box "database"
database database
end box
User -> sportsGeek: Enter the credentials
activate sportsGeek #lightblue
note right #yellow
*params*
username=xyz123
password=*****
end note
alt #white
sportsGeek -> "authenticate" : Enter the credentials
activate authenticate #lightblue
authenticate -> "database" : Check user credentials
activate "database" #lightblue
"database" --> authenticate : <font color=darkblue><b>Response Get User Details
deactivate "database"
authenticate --> "authenticate" : authenticate user credentials
alt #lightgreen user is valid
"authenticate" --> "sportsGeek" : <font color=darkblue><b>Response Valid User
"sportsGeek" --> User : <font color=darkblue><b>Response Valid User
else #pink Bad Credentials
"authenticate" --> "sportsGeek" : <font color=darkblue><b>Response Invalid username or password
"sportsGeek" --> User : <font color=darkblue><b>Response Invalid username or password
else #pink user is invalid
"authenticate" --> "sportsGeek" : <font color=darkblue><b>Response Sorry! you have been blocked by the admin
deactivate "authenticate"
"sportsGeek" --> User : <font color=darkblue><b>Response Sorry! you have been blocked by the admin
deactivate "sportsGeek"
end alt
end alt
@enduml | false | true | false | false | sequence |
5682ca03755220f9b146988c7d3927bfec65f8fe | 9e9e2b7277fa0e53ee3143a58479a7adcf60667a | /src/main/java/ex45/WordFinderDiagram.puml | cc79950fe6aee08077594b90e8f64c109a492fed | [] | no_license | rebeccapinap/practicecode-cop3330-assignment3 | 17b68485b1b9c337a8228e860766ee92109d8dfc | c8b4cee0ce6e269c947d3496fcc6f5dde0510cac | refs/heads/master | 2023-08-19T08:45:17.028607 | 2021-10-12T02:29:19 | 2021-10-12T02:29:19 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 254 | puml | @startuml
'https://plantuml.com/sequence-diagram
class WordFinder
{
+ static void main( String[] args )
+ static String scanFile (File input)
+ static String replace (String inputStr)
+ static void writeFile (String outputStr)
}
@enduml | false | true | false | false | class |
03305da353810fc3e94942bbfbcb63fa74998d35 | 83818be369b000b5720194d651ede7cd540dd56e | /diagrams/sample.puml | 4612715ab374636eea55e63cdcf7fd2bdf38411d | [
"MIT"
] | permissive | bjsvwcur/components | 4937a0fb40df16736277dc712f63d2978f2d8ed8 | d25b88b64e2636a5b0eaf95ffedbe1b5bc45a467 | refs/heads/master | 2022-04-15T02:54:35.532760 | 2020-04-02T05:02:40 | 2020-04-02T05:02:40 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 293 | puml | @startuml
[client] as c
node {
[mapservice] as s
() WMS as si
s -right- si
}
package "FeatureInfo - FI" {
[FeatureInfo] as fi
[SpatialQuery] as sq
[Py-Module] as m
() "WMS - FI" as fii
fii -right- fi
fi <|-- sq
fi <|-- m
}
c --> si
c --> fii
@enduml
| false | true | false | false | class |
0680d70f7a49c504763bf9b4e176c75882f3c454 | 0adabba61ed12d21fdd9723f1a4ef1c780ac0932 | /multi-page-example.puml | 9f6fbe9da366de5d4125e797c66c6f9a35f83122 | [] | no_license | DavidHartman-Personal/PlantUML-Reference | eba988bce0a89661a50511805ce59798d962f7cb | 20167b2520dad0c14d0d114d6760e9568810ffdf | refs/heads/main | 2023-07-19T09:47:20.703635 | 2021-09-09T07:45:53 | 2021-09-09T07:45:53 | 403,338,071 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 518 | puml | @startuml
title Setup & Initiate
'caption Figure 1
actor test
participant ":InputStream" as IS
box "eu.ensure.packproc" #LightBlue
participant ":BasicProcessorContext" as PC
participant ":ProcessorManager" as PM #99FF99
end box
autonumber
test -->> IS : load configuration
test -->> PC : create context for processors
test -->> PM : create processor manager
autonumber stop
newpage Invoke
autonumber
test -->> IS : load input file
test -> PM : apply(input file, context)
autonumber stop
PM -> PM : asdf
@enduml | false | true | false | false | usecase |
751e2ac056608752b6ca7d9ee240be245784c20a | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Control/ControlPlayableAsset.puml | 410de29818890a383dc9a0dcf876320fb93f204b | [] | 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 | 2,172 | puml | @startuml
class ControlPlayableAsset {
<<const>> k_MaxRandInt : int = 10000
+ updateParticle : bool = true
+ particleRandomSeed : uint
+ updateDirector : bool = true
+ updateITimeControl : bool = true
+ searchHierarchy : bool = false
+ active : bool = true
m_Duration : double
m_SupportLoop : bool
+ OnEnable() : void
+ <<override>> duration : double <<get>>
+ <<override>> CreatePlayable(graph:PlayableGraph, go:GameObject) : Playable
{static} ConnectPlayablesToMixer(graph:PlayableGraph, playables:List<Playable>) : Playable
CreateActivationPlayable(root:GameObject, graph:PlayableGraph, outplayables:List<Playable>) : void
SearchHiearchyAndConnectParticleSystem(particleSystems:IEnumerable<ParticleSystem>, graph:PlayableGraph, outplayables:List<Playable>) : void
SearchHierarchyAndConnectDirector(directors:IEnumerable<PlayableDirector>, graph:PlayableGraph, outplayables:List<Playable>, disableSelfReferences:bool) : void
{static} SearchHierarchyAndConnectControlableScripts(controlableScripts:IEnumerable<MonoBehaviour>, graph:PlayableGraph, outplayables:List<Playable>) : void
{static} ConnectMixerAndPlayable(graph:PlayableGraph, mixer:Playable, playable:Playable, portIndex:int) : void
{static} GetControlableScripts(root:GameObject) : IEnumerable<MonoBehaviour>
GetParticleSystemRoots(go:GameObject) : IList<ParticleSystem>
{static} GetParticleSystemRoots(t:Transform, roots:ICollection<ParticleSystem>) : void
+ GatherProperties(director:PlayableDirector, driver:IPropertyCollector) : void
}
class "List`1"<T> {
}
class "ExposedReference`1"<T> {
}
PlayableAsset <|-- ControlPlayableAsset
IPropertyPreview <|-- ControlPlayableAsset
ITimelineClipAsset <|-- ControlPlayableAsset
ControlPlayableAsset o-> "k_EmptyDirectorsList<PlayableDirector>" "List`1"
ControlPlayableAsset o-> "k_EmptyParticlesList<ParticleSystem>" "List`1"
ControlPlayableAsset --> "sourceGameObject<GameObject>" "ExposedReference`1"
ControlPlayableAsset --> "prefabGameObject" GameObject
ControlPlayableAsset --> "m_ControlDirectorAsset" PlayableAsset
ControlPlayableAsset --> "clipCaps" ClipCaps
@enduml
| false | true | false | false | class |
eec9fea3dadb83c0e48c9dbd2f57072bf1c9e769 | 67b794119881212426459655fed63b9cdc0dfe1e | /docs/proposals/images/controlplane/controlplane-init-1.plantuml | 4f681d01e1c0741b9667ecc0a590ccd26401bbf1 | [
"Apache-2.0"
] | permissive | kubernetes-sigs/cluster-api | 203e1912a218222cffc2b0f15cd1b025d32f3d73 | b3e0615367f421302933c5ff6bcc48ecdcf9a8da | refs/heads/main | 2023-09-01T04:53:16.329644 | 2023-08-31T18:16:48 | 2023-08-31T18:16:48 | 124,157,517 | 3,053 | 1,232 | Apache-2.0 | 2023-09-14T20:07:21 | 2018-03-07T00:49:50 | Go | UTF-8 | PlantUML | false | false | 1,823 | plantuml | @startuml
title User creates a Cluster with KubeadmControlPlane
actor User
' -- GROUPS START ---
box #lightgreen
participant "API Server"
end box
box #lightslategray
participant "Cluster API Cluster Controller"
end box
' -- GROUPS END ---
User->"API Server":kubectl apply -f cluster.yaml
"API Server"-->>"Cluster API Cluster Controller": New Cluster
"Cluster API Cluster Controller"-> "Cluster API Cluster Controller":Cluster Controller Reconcile
activate "Cluster API Cluster Controller"
note over "Cluster API Cluster Controller": - ✅ Cluster.Status.InfrastructureReady is false\n- ✅ Cluster.Spec.ControlPlaneRef is populated\n- ✅ Cluster.Spec.ControlPlaneRef -> Status.Ready is false
opt #FFFFFFCC Required only if the object hasn't been seen before
"Cluster API Cluster Controller"-> "Cluster API Cluster Controller":Add watcher for \nCluster.Spec.ControlPlaneRef.Kind objects
end
opt #FFFFFFCC Required only if the infrastructure object doesn't have a Cluster owner reference
"Cluster API Cluster Controller"-> "Cluster API Cluster Controller":Set Cluster.Spec.InfrastructureRef -> OwnerReferences[0] to Cluster
"Cluster API Cluster Controller"->"API Server": Patch AWSCluster
"Cluster API Cluster Controller"<<--"API Server": Response
end
opt #FFFFFFCC Required only if the control plane object doesn't have a Cluster owner reference
"Cluster API Cluster Controller"-> "Cluster API Cluster Controller":Set Cluster.Spec.ControlPlaneRef -> OwnerReferences[0] to Cluster
"Cluster API Cluster Controller"->"API Server": Patch KubeadmControlPlane
"Cluster API Cluster Controller"<<--"API Server": Response
end
"Cluster API Cluster Controller"->"API Server": Patch Cluster Status
"Cluster API Cluster Controller"<<--"API Server": Response
deactivate "Cluster API Cluster Controller"
hide footbox
@enduml
| false | true | true | false | sequence |
e47887d7372dacd21b261da8ffa576d9f1e59670 | 36e89b5c2578ecc0324a2488e3d7acdb07a9e156 | /UML/ProjectClasses.puml | a35b16f1d99a9f0012c3d6bc4d9c8f577100d8da | [] | no_license | dylanmodugno/ULAProjectExample | 455db60c611c7a9569f9d6a7c055441fce5efc44 | 3f6090b16d01a71f8cd290ca97925d2f82f90e19 | refs/heads/master | 2023-06-06T06:41:14.938155 | 2021-06-29T20:01:27 | 2021-06-29T20:01:27 | 381,466,783 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 186 | puml | @startuml
'https://plantuml.com/class-diagram
class Project {
main()
start()
}
class ProjectController {}
Javafx.Applictaion <|-- Project
Project -- ProjectController
@enduml | false | true | false | false | class |
788da4860c11737e073dcdc172697a450da5025c | 60aadb2730b3830abe44bc8f5d14c641b1634d69 | /tests/Relational-Model.png.puml | 0382fa7c3fc3fcc7ae853b054d9e9f5979cc8448 | [
"Apache-2.0"
] | permissive | ashwinsajiv/sysl | 90f4a86c5f618c06c903bc46f2917013c193cd07 | 7fe9896fce2e89156805cd6824cd5178d5a15284 | refs/heads/master | 2020-10-02T06:00:37.424362 | 2020-08-12T04:18:09 | 2020-08-12T04:18:09 | 227,716,908 | 1 | 0 | Apache-2.0 | 2020-02-28T00:45:59 | 2019-12-12T23:43:43 | Go | UTF-8 | PlantUML | false | false | 883 | puml | @startuml
title empdata
''''''''''''''''''''''''''''''''''''''''''
'' ''
'' AUTOGENERATED CODE -- DO NOT EDIT! ''
'' ''
''''''''''''''''''''''''''''''''''''''''''
class "RelModel.Breed" as _0 << (D,orchid) >> {
+ breedId : int
+ breedName : string
+ legRank : int
+ numLegs : int
+ species : string
}
class "RelModel.Employee" as _1 << (D,orchid) >> {
+ dob : date
+ employeeId : int
+ error : int
+ name : string
+ petId : **EmployeeTendsPet.petId** <<FK>>
}
class "RelModel.EmployeeTendsPet" as _2 << (D,orchid) >> {
+ employeeId : **Employee.employeeId** <<FK>>
+ petId : **Pet.petId** <<FK>>
}
class "RelModel.Pet" as _3 << (D,orchid) >> {
+ breedId : **Breed.breedId** <<FK>>
+ dob : date
+ name : string
+ numLegs : int
+ petId : int
}
_1 }-- " " _2
_2 }-- " " _1
_2 }-- " " _3
_3 }-- " " _0
@enduml
| false | true | false | false | class |
20013cdc028936568ecc2a4b17a2a113a2070ad7 | 5e5ae138b7826c3f3f579942be8be29d2f5b7537 | /smart-security/VideoEventDetection.puml | 2158b2df108e520ba7f50334ef1aed77761c0e1b | [
"Apache-2.0"
] | permissive | praveen-sjsu/architecture-diagrams | 64b0cd5b67eb7d6ebafd23c0717ee8257c3b9122 | ce31f9e3a3c8c8d9a92edb3f724666dae71d45c3 | refs/heads/master | 2020-08-29T00:51:42.040679 | 2018-08-24T16:20:49 | 2018-08-24T16:20:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 796 | puml | @startuml;
skinparam componentStyle uml2
!define BASEURL https://raw.githubusercontent.com/smartsdk/architecture-diagrams/master
!includeurl BASEURL/data-management/Data-ContextManagement-SmartSDK-extension.puml
[Video \n Streaming] as vs
hide encryption
hide timeseries
hide sth
hide ckan
hide cep
hide sdk
package "SmartSecurity FrontEnd" as scfrontend {
SMARTSDK(eventsgui,"Events GUI",component)
}
package "SmartSecurity BackEnd" as scbackend {
SMARTSDK(eventsmgt,"Events Management",component)
SMARTSDK(secfilter,"Video Security Events\nDetection",component)
}
SMARTSDK(seceventdata,"Security Event\nDatamodel",database)
ctx -down- seceventdata
secfilter -left- kurento
secfilter -right- eventsmgt
eventsmgt -up- eventsgui
interface RTSP
vs -up- RTSP
RTSP -up- kurento
@enduml
| false | true | false | false | class |
e888c3ea8c2c61efb86fee1852fe7ae5e6586e97 | 784420293504203e0485674947e252b9a884f9cf | /asciidoctor-editor-other/testscripts/diagrams/bugfix/issue-188-not-rendered-before.puml | aaac60750bdc49a9378c886aeb510eaddf475523 | [
"Apache-2.0"
] | permissive | de-jcup/eclipse-asciidoctor-editor | db5515421613e8ccfec749318fb6366b1f838e76 | 5dbbb4fdeac0634eec94c1cb6773246457ac2c3f | refs/heads/master | 2023-02-16T00:20:39.858165 | 2023-02-10T21:52:39 | 2023-02-10T21:52:54 | 125,332,958 | 49 | 18 | NOASSERTION | 2022-08-21T23:26:15 | 2018-03-15T08:06:29 | Java | UTF-8 | PlantUML | false | false | 245 | puml | @startuml
hide circle
entity Entity {
* identifying_attribute
--
* mandatory_attribute
optional_attribute
}
' zero or one
Entity |o--o| B
' exactly one
C ||--|| D
' zero or many
E }o--o{ Entity
' one or many
G }|--|{ H
@enduml | false | true | false | false | sequence |
f7bafa353493bebea59eaf33c7de3ba96fe4a2f8 | 7a1c1634b4282cb15e41476ff74ee268a740e45b | /src/Burger/Burger.plantuml | 518bc7183fa0db08a924f63d7159774d94700114 | [] | no_license | jestin-g/p10-miage-m1-designpattern-td1 | 1a8ca57892de7b931da148b33b4396f540384f82 | b9a3fc6ba42f4c2bddef05bda6722bdaa26253b6 | refs/heads/master | 2022-12-19T21:12:47.164302 | 2020-10-06T21:49:47 | 2020-10-06T21:49:47 | 299,641,961 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 322 | plantuml | @startuml
title __BURGER's Class Diagram__\n
namespace Burger {
class ingredient.IngredientFactory {
}
}
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 |
33a5a918c5bfe13509c85885ce829958a5f8ce87 | 3d7ad0a6988420c0f0a7f7c28f1d54808878e746 | /tests/simple_classes.puml | f64b2348ff0ba1f8a77e2da7095d12c16d0be974 | [
"MIT"
] | permissive | cheoljoo/hpp2plantuml | 33691a8324e4aa4fba3bfed7f0c40cf9c59005b8 | be88721a62f50fe8adfb69f474901b7c28e5802d | refs/heads/master | 2020-03-26T19:52:47.172326 | 2018-08-19T09:57:40 | 2018-08-19T09:57:40 | 145,291,221 | 0 | 0 | MIT | 2018-08-19T09:54:05 | 2018-08-19T09:54:05 | null | UTF-8 | PlantUML | false | false | 830 | puml | @startuml
abstract class Class01 {
+{abstract} AbstractPublicMethod(int param) : bool
+PublicMethod(int param) : bool {query}
+{static} StaticPublicMethod(bool param) : bool
#{abstract} _AbstractMethod(int param) : bool
#_ProtectedMethod(int param) : bool
#{static} _StaticProtectedMethod(bool param) : bool
#_protected_var : int
+public_var : int
}
class Class02 {
+AbstractPublicMethod(int param) : bool
-_AbstractMethod(int param) : bool
-_PrivateMethod(int param) : bool
-{static} _StaticPrivateMethod(bool param) : bool
-_private_var : int
}
class Class03 <template<typename T>> {
+Class03()
+~Class03()
-_data : Class01*
-_obj : Class01*
-_typed_obj : T*
-_obj_list : list<Class02>
}
enum Enum01 {
VALUE_0
VALUE_1
VALUE_2
}
Class01 <|-- Class02
Class03 "2" o-- Class01
Class03 o-- Class02
@enduml
| false | true | false | false | class |
ecb4b14bf822f570962f229e71b2768b08d50160 | 67b794119881212426459655fed63b9cdc0dfe1e | /docs/proposals/images/clusterctl-extensible-templates/yamlProcessor.plantuml | da1820b80d26818fba686df23fdcc561800c4d88 | [
"Apache-2.0"
] | permissive | kubernetes-sigs/cluster-api | 203e1912a218222cffc2b0f15cd1b025d32f3d73 | b3e0615367f421302933c5ff6bcc48ecdcf9a8da | refs/heads/main | 2023-09-01T04:53:16.329644 | 2023-08-31T18:16:48 | 2023-08-31T18:16:48 | 124,157,517 | 3,053 | 1,232 | Apache-2.0 | 2023-09-14T20:07:21 | 2018-03-07T00:49:50 | Go | UTF-8 | PlantUML | false | false | 197 | plantuml | @startuml
interface YamlProcessor{
{method} ArtifactName(version, flavor string) string
{method} GetVariables([]byte) ([]string, error)
{method} Process([]byte) ([]byte, error)
}
@enduml
| false | true | false | false | class |
befeb599ff0cfb88391557bcb2397883bf922c65 | 74c770248992ccf153f049539902a89521211242 | /doc/uml/01_contexte.puml | 1c613c563f5eeb7182bfc3ce30992b5c8c0da542 | [] | no_license | Zepmanbc/oc_dapython_pr4 | 2e714fbae237bd01302db6c1ddc2856c295fe4af | 410fe16d2427a5e8bb4688cad51928daf2444589 | refs/heads/master | 2020-04-14T22:19:00.503173 | 2019-01-28T21:15:10 | 2019-01-28T21:15:10 | 164,157,948 | 0 | 0 | null | 2019-01-07T21:05:14 | 2019-01-04T21:46:56 | null | UTF-8 | PlantUML | false | false | 413 | puml | @startuml 01_contexte
title Diagramme de contexte
rectangle OC_Pizza {
}
actor Gestionnaire_de_commande as GESTCMD
actor Client as CUSTOMER
actor Gestionnaire_de_stock as GESTSTOCK
actor Pizzaiolo as PZLO
actor Banque <<system>> as BANK
actor Responsable as BOSS
GESTSTOCK - OC_Pizza
PZLO -- OC_Pizza
BOSS -- OC_Pizza
OC_Pizza - BANK
OC_Pizza -- CUSTOMER
OC_Pizza -- GESTCMD
@enduml | false | true | false | false | sequence |
6cd1de936c8d109b5713e9f32950603c8c45488a | 4c5d25e670d887c43e6cab8a1b8658ec62c17f36 | /src/main/java/entity/entity.plantuml | 871352e54a1bf6a2b49317323660e54666d872cd | [] | no_license | RichardKovacik/bankDAO | e8fba1f74da6110ca6bb82e2fb74789fb7eabc02 | 65caf7429d76efaede5b36120f3074a478da5586 | refs/heads/main | 2023-06-27T20:40:56.671572 | 2021-07-20T15:00:38 | 2021-07-20T15:00:38 | 385,254,693 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,400 | plantuml | @startuml
title __ENTITY's Class Diagram__\n
namespace entity {
class entity.Klient {
- id : int
- meno : String
- priezvisko : String
- uctyKlienta : List<Ucet>
- vek : int
+ Klient()
+ Klient()
+ getId()
+ getMeno()
+ getNarodnost()
+ getPocetUctovKlienta()
+ getPriezvisko()
+ getUctyKlienta()
+ getVek()
+ nacitajUcty()
+ odoberUcet()
+ pridajUcet()
+ setId()
+ setMeno()
+ setNarodnost()
+ setPriezvisko()
+ setVek()
+ toString()
- jeRovnakeCisloUctu()
}
}
namespace entity {
class entity.Ucet {
- cisloUctu : String
- id : int
- mnozstvoPenazi : double
+ Ucet()
+ Ucet()
+ getCisloUctu()
+ getId()
+ getKlient()
+ getMnozstvoPenazi()
+ getTyp()
+ setCisloUctu()
+ setId()
+ setMnozstvoPenazi()
+ setTyp()
+ toString()
}
}
entity.Klient o-- enums.Narodnost : narodnost
entity.Ucet o-- entity.Klient : klient
entity.Ucet o-- enums.TypUctu : typ
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | sequence |
d6fea9c5fec9822a07b843cedb2f3426c82d70f1 | 042b522e8f6e05d7c8edda35106abf9b0b32d10d | /gha/src/hu.bme.mit.mcmec.c2xta/src/main/java/hu/bme/mit/mcmec/c2xta/c2xta.plantuml | 1c0ef85a0a8ccc5c05c0edc06fde69dd7d4035f8 | [] | no_license | leventeBajczi/prog3 | c5a3024c58f2e964f1b809feb6fc5f03756a1a5d | 23cd59006c03331deb7b33ce1e389df2dd350e4b | refs/heads/master | 2020-03-28T02:34:29.312264 | 2018-11-03T21:32:47 | 2018-11-03T21:32:47 | 147,580,561 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 359 | plantuml | @startuml
title __C2XTA's Class Diagram__\n
package hu.bme.mit.mcmec.c2xta {
class C2Xta {
{static} + transform()
+ run()
}
}
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 |
67aaab727aa1a646acd35f46f8c69e7777578288 | aff68ebcc42563768b200a9de86989646287b29e | /doc/diagrams/SchemaMappingDefinitionExample.puml | c783cc673f217107f71410d13a941e930ab0b194 | [
"MIT"
] | permissive | exasol/dynamodb-virtual-schema | fc17be7abb687acaa442d7b7cc363ab76c175c22 | 4910b40e4b6f840b7bc494d045c63056d889be26 | refs/heads/main | 2023-07-06T22:09:56.793653 | 2023-07-04T08:30:51 | 2023-07-04T08:30:51 | 238,997,495 | 1 | 1 | MIT | 2023-07-04T08:30:53 | 2020-02-07T18:31:48 | Java | UTF-8 | PlantUML | false | false | 328 | puml | @startuml
object ":SchemaMapping" as schema{
}
object "books :TableMapping" as books{
exasolName: "BOOKS"
remoteName: "books"
pathInRemoteTable: /
}
object "booksTopics :TableMapping" as tableTopics{
exasolName: "BOOKS_TOPICS"
remoteName: "books"
pathInRemoteTable: /topics
}
schema --> books
schema --> tableTopics
@enduml
| false | true | false | false | object |
66e2528c82761ce383cbc38151009bbdbcfd21d7 | 60d59fb5374170bdb6f9b6cd89c69d71d7163914 | /UML/SimpleFactoryPattern.puml | d9a8d9a7cd5c3410223e24fb54027c7a7d4c0be2 | [] | no_license | mliumeng/DesignParrern | 9a7720681a0e075fa9091d7b29509abd0a04bfc9 | 4d0a0b0dc736f64bbf248129ea9db0446984f5a4 | refs/heads/master | 2021-01-23T19:26:15.304042 | 2017-09-28T14:31:01 | 2017-09-28T14:31:01 | 102,824,296 | 6 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 408 | puml | @startuml
interface IProduct{
+ setColor():Object
}
class ProductA{
+ <<Implement>> setColor():Object
}
class ProductB{
+ <<Implement>> setColor():Object
}
class ProductC{
+ <<Implement>> setColor():Object
}
class Factory{
+ createProduct():IProduct
}
Factory --|> ProductA
Factory --|> ProductB
Factory --|> ProductC
ProductA ..> IProduct
ProductB ..> IProduct
ProductC ..> IProduct
@enduml
| false | true | false | false | class |
7730ea5b870d8e4f20fa5ab184f2a7f36f9bb13c | 4e22d261d7dcf5fe2731d77ba3cfb47c5568977c | /Documentation/Source/Breakdown/Engine/TempestEngine/SceneManagement/GameObject-Class.iuml | d3e211d6435fdbb98e4800f354f8d41e512229db | [] | no_license | SeraphinaMJ/Reformed | 2d7424d6d38d1cfaf8d385fade474a27c02103a5 | 8563d35ab2b80ca403b3b57ad80db1173504cf55 | refs/heads/master | 2023-04-06T00:40:34.223840 | 2021-05-06T11:25:51 | 2021-05-06T11:25:51 | 364,884,928 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 697 | iuml | namespace SceneManagement {
class GameObject {
+GetID()
+Read()
+Write()
+GetName()
+SetName()
+ToTypeRT()
+ApplyFromTypeRT()
+GetComponentTypeSet()
+AddComponent()
+RemoveComponent()
+GetComponent()
+GetComponents()
+GetAllComponents()
+GetComponentCount()
+GetParent()
+DetachFromParent()
+SetParent()
+IsTopLevelObject()
+GetChildren()
+AddChild()
+RemoveChild()
+GetSpace()
+CloneObject()
}
}
| false | true | false | false | class |
b8876b2cd7565ca17e2fca27f49af0efd35278f3 | b084e5a0ab4edf22313b30eacc19748ee4046540 | /uml/estados_de_actividad.puml | d6a342537d3ee389277cef15e16c6283489454c9 | [
"MIT"
] | permissive | CarlosRA97/AprendizajeServicioVoluntario | 59ce8b5a3155be97c288b35c8fabfbdf66a6e552 | 7470baf10ae5a0636b238af6ac392b35ec21bd81 | refs/heads/master | 2022-05-29T20:49:18.221203 | 2020-05-02T21:08:53 | 2020-05-02T21:08:53 | 244,902,134 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,894 | puml | @startuml estados_de_actividad
' Estados principales
state EnTramite : La actividad esta siendo \nevaluada por el administrador.
state Modificada : La activida ha sido modificada \ny debe ser reevaluada \n por el ofertante.
state Denegada : La activida no es apta para su implementacion.
state Cerrada : La activida ha llenado todas sus plazas o las plazas han sido cerradas.
' Estados de modificacion
state ModificacionEnTramite : La midificacion esta siendo \nevaluada por el administrador.
state ModificacionAplicada : La modificacin es visible para los demandantes.
state ModificacionDenegada : La modificacion no a sido aceptada.
' Diagrama Principal
[*] --> EnTramite : Creacion de una actividad
EnTramite -left-> Denegada
EnTramite -right-> Modificada : El Administrador ha \nmodificado la actividad
EnTramite --> EnCurso : La actividad ha sido aceptada \npor el Administrador y Ofertante
Modificada -left-> EnTramite : El Ofertante ha aceptado \ny/o modificado la actividad
state EnCurso {
state Aceptada : La activida esta aprobada \npara su publicacion.
state Oculta : La activida no es visible para los demandantes.
state Publicada : La actividad es visible para los demandantes.
state Abierta : Las plazas de la actividad \nestan abiertas para los demandantes.
[*] --> Aceptada
Aceptada --> Oculta : No ha llegado \nla fecha de publicacion
Aceptada --> Publicada : No se ha indicado fecha de publicacion \no dicha fecha se a vencido
Oculta --> Publicada : La fecha de publicacion a vencido
Publicada --> Abierta : Ha llegado la fecha de apertura de plazas
}
Abierta --> Cerrada : Ha llegado la fecha de cierre de plazas \no las plazas estan llenas
Modificada --> [*] : El Ofertante a cancelado la actividad
Cerrada --> [*]
Denegada --> [*]
@enduml | false | true | false | false | sequence |
5a6391c704f115bbc223017d1f21838b3a913dbf | ddb07377235419bf526803b94ae05ad1a6e0042b | /meet.puml | dece39d2a94cd3904e273297501e7605f78ce169 | [] | no_license | vantonov1/meet | 4b441fdb607d9005f81eb537f1df7716aff1dec6 | ac37b7334f5d99b5bb9ceb1adb0f47601658f2d1 | refs/heads/master | 2021-07-07T03:59:18.545728 | 2020-02-25T09:16:39 | 2020-02-25T09:16:39 | 234,753,022 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 511 | puml | @startuml
hide members
class Equity
class Photo
class Agent
class Customer
class Request
class TimeSlot
class Comment
Equity <-- Photo: of
Equity --> Customer : ownedBy
Equity --> Agent : responsible
Meeting --> Agent : scheduledBy
Meeting --> Customer : attends
Meeting --> Equity : at
Meeting -> Request : from
Request --> Equity : about
Request --> Customer : issuedBy
Request --> Agent : assignedTo
Request <- TimeSlot : forRequest
Comment -> Customer: createdBy
Comment -> Equity : about
@enduml | false | true | false | false | sequence |
b2de368bdfd27c7d306df633d8deb06b5fc84dd2 | c977869d420f43f6edc77a4cabe9ea68a7f02f04 | /vendor/bartlett/umlwriter/docs/processor.puml | d763075481630629b3609fa1f1199def2a03643d | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | risfat/ElanceBD | 24d782ce1c81f3f741d8f119c6d5a343687470ad | c55696b5ccc110592a1d4a89887d92ac7504d8bd | refs/heads/main | 2023-01-30T05:58:45.893601 | 2020-12-12T06:43:36 | 2020-12-12T06:43:36 | 316,232,495 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,437 | puml | @startuml
namespace Bartlett.UmlWriter.Processor {
abstract AbstractProcessor << abstract >> {
#reflector
#graphId
#objects
#edges
-spaces
-linebreak
--
+__construct()
+setGraphId()
+renderClass()
+renderNamespace()
+render()
#renderEdges()
#formatLine()
#writeObjectElement()
#writeObjectInheritance()
#writeObjectInterfaces()
#writeConstantElements()
#writePropertyElements()
#writeMethodElements()
#<i>pushObject</i>()
#<i>pushEdge</i>()
#formatClassStereotype()
-reset()
}
class GraphvizProcessor << class >> {
#namespaceSeparator
--
#renderObjects()
#renderEdges()
#writeGraphHeader()
#writeGraphFooter()
#pushObject()
#pushEdge()
-attributes()
}
interface ProcessorInterface << interface >> {
+GLOBAL_NAMESPACE
--
+renderClass()
+renderNamespace()
+render()
}
class PlantUMLProcessor << class >> {
#namespaceSeparator
--
#renderObjects()
#renderEdges()
#writeGraphHeader()
#writeGraphFooter()
#pushObject()
#pushEdge()
}
}
Bartlett.UmlWriter.Processor.GraphvizProcessor --|> Bartlett.UmlWriter.Processor.AbstractProcessor
Bartlett.UmlWriter.Processor.GraphvizProcessor ..|> Bartlett.UmlWriter.Processor.ProcessorInterface
Bartlett.UmlWriter.Processor.PlantUMLProcessor --|> Bartlett.UmlWriter.Processor.AbstractProcessor
Bartlett.UmlWriter.Processor.PlantUMLProcessor ..|> Bartlett.UmlWriter.Processor.ProcessorInterface
@enduml
| false | true | false | false | class |
6ec3f73fcab68e04a4cc2e38c2c41ce15e0113f2 | 1fa78caa225ab245bcbf45a8f37c0ae0456699bb | /docs/diagrams/CommandClassDiagram.puml | 020fb8a6a8e795b5281663bb0fd6541173457142 | [] | no_license | AY2021S2-CS2113T-W09-1/tp | 4fc8be000ca7413ef1fcf6792df8964c9d56dc80 | f6b64fca1af322a0af026b665f5f4a576cf4a768 | refs/heads/master | 2023-04-01T13:54:23.209787 | 2021-04-12T15:46:53 | 2021-04-12T15:46:53 | 343,957,852 | 0 | 5 | null | 2021-04-12T15:46:54 | 2021-03-03T00:58:58 | Java | UTF-8 | PlantUML | false | false | 1,139 | puml | @startuml
skinparam classAttributeIconSize 0
hide circle
note "Private methods are omitted.\nexecute() parameters omitted for brevity." as N1
abstract class "{abstract}\nCommand" as Command {
{abstract} +execute()
}
enum RecordType <<enumeration>> {
EXPENSE
LOAN
SAVING
ALL
}
class AddCommand {
{static} #COMMAND_ADD: String
-amount: BigDecimal
-issueDate: LocalDate
-description: String
-borrowerName: String
-recordType: RecordType
+AddCommand(:ArrayList<String>)
+execute()
}
class CreditScoreCommand {
{static} #COMMAND_CREDIT_SCORE: String
-borrowerName: String
+CreditScoreCommand(:ArrayList<String>)
+execute()
}
class ExitCommand {
{static} #COMMAND_EXIT: String
+ExitCommand(:ArrayList<String>)
+execute()
}
class HelpCommand {
{static} #COMMAND_HELP: String
-helpType: String
+HelpCommand(:ArrayList<String>)
+execute()
}
skinparam linetype polyline
skinparam groupInheritance 3
Command <|-- AddCommand
Command <|-- CreditScoreCommand
Command <|-- ExitCommand
Command <|-- HelpCommand
hide RecordType empty members
@enduml | false | true | false | false | class |
0bbba7ac49f5694c1d0c73bb0573340f379ca10d | c2ef7c48e236c3d1780fdcac75abce25c672c652 | /src/main/resources/uml/IteratorUml.puml | 9bd86be1a0d7f9ee81905572609436cf7bc3e704 | [] | no_license | ToryZhou/design-pattern | 8d63b720ef54c9633eb10122c4cbeae45ae7ea1c | c9bcd6ae5cfb398e86d3af9a6a704e70a604b5cd | refs/heads/master | 2022-09-10T09:57:10.616533 | 2022-08-22T02:48:42 | 2022-08-22T02:48:42 | 132,232,311 | 62 | 31 | null | 2022-08-22T02:48:43 | 2018-05-05T09:11:57 | Java | UTF-8 | PlantUML | false | false | 954 | puml | @startuml
title Iterator
abstract class Aggregate{
+createIterator(): Iterator
}
abstract class Iterator{
+first(): Object
+next(): Object
+isDone(): boolean
+first(): currentItem
+current(): int
}
class ConcreteAggregate{
+createIterator(): Iterator
}
class ConcreteIterator{
-concreteAggregate: ConcreteAggregate
-current: int
+first(): Object
+next(): Object
+isDone(): boolean
+first(): currentItem
+current(): int
}
class ConcreteIteratorDesc{
-concreteAggregate: ConcreteAggregate
-current: int
+first(): Object
+next(): Object
+isDone(): boolean
+first(): currentItem
+current(): int
}
Iterator <|-- ConcreteIterator
Iterator <|-- ConcreteIteratorDesc
Aggregate <|-- ConcreteAggregate
ConcreteIterator --> ConcreteAggregate
ConcreteAggregate ..> ConcreteIterator
ConcreteIteratorDesc --> ConcreteAggregate
ConcreteAggregate ..> ConcreteIteratorDesc
@enduml | false | true | false | false | class |
635be166d8c5044332de4eb0cc3534942e57d999 | 9b9216e6ff465e2ca33b476a554d4bbc080bb737 | /requirements/puml/DomainModelDesign.puml | 7fd3d2f6ff7e6be4e632bdc85a7e47ad34528b19 | [] | no_license | jumpering/Hanged | 00b22fc8f12889cac3121d9b45778f779d98d196 | efee06ada5a9fe450dcf704aedd099034da70e8b | refs/heads/main | 2023-08-26T06:24:02.132882 | 2021-10-31T20:10:24 | 2021-10-31T20:10:24 | 387,567,922 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 790 | puml | @startuml
class Hanged{
+ run() : void
}
class Turn{
- players[] : Player
+ next() : void
+getCurrent() : Player
}
class BoardPaper{
- secretWord : SecretWord
- proposedChar : ProposedWord
- proposedWord : ProposedChar
- hangedParts[] : int
+ getAttempts() : int
+isWinner() : boolean
}
class SecretWord{
}
abstract class Word{
- chars[] : char
+ {static} isValid(String input) : boolean
+ {abstract} isEquals() : boolean
+ {abstract} clearShow() : String
}
class Player{
- name : String
+ play()
}
Word <|-- SecretWord
Word <|--ProposedChar
Word <|-- ProposedWord
Hanged *--> Turn
Turn *--> "1..n" Player
Hanged *--> BoardPaper
Player --> "0..9" ProposedChar
Player --> "0..1" ProposedWord
BoardPaper *--> SecretWord
BoardPaper o--> ProposedChar
BoardPaper o--> ProposedWord
@enduml | false | true | false | false | class |
be67d920a63917bb121a7f56ffed95b0e70ba633 | 45ec0ffd0819021ea21d6d36830972a0febbf9a8 | /ToDoKata-FullStack-Reactive/design/component.puml | 6a99a38b9d933c7b200dd221b1265621bb8286c5 | [] | no_license | Kl4rity/Kata | 23fec07f81ebbbdb7008f314e4b67187158b61f8 | b71705f00c0fc2ca6af96b2bbd96f8be0ebea18a | refs/heads/master | 2023-01-22T08:35:34.885752 | 2021-07-10T12:55:18 | 2021-07-10T12:55:18 | 136,005,372 | 0 | 0 | null | 2023-01-07T09:05:31 | 2018-06-04T09:53:25 | JavaScript | UTF-8 | PlantUML | false | false | 502 | puml | @startuml
component "Angular Frontend" {
component "Apollo Client" as c1
}
component "Appollo Federation" as federation
component "TodoList Service" as todo {
component "Apollo" as a1
component "Application" as app1
component "H2" as h1
}
component "User Service" as user {
component "Apollo" as a2
component "Application" as app2
component "H2" as h2
}
c1 --> federation
federation --> todo
federation --> user
a1 --> app1
app1 --> h1
a2 --> app2
app2 --> h2
@enduml | false | true | false | false | component |
5c021dda19c4f3b053c1f441ea5518a0403705dd | 47d3b6c26cdbf6cba6db12d5788773f08ecae337 | /uml-output/0xaf16a0ff6b6989d8628a7875a2f431946639b14e2d794a7088291acb9ab06984.puml | a1f853068db259668f3b77e9065cbdd977daa9a9 | [] | no_license | cds-blog-code-samples/Reentrant | 735c5f68689e0dffd8be141231f152db2e0a7d49 | f1b9bcd0cc86f467aff4ad55f806c10479c3c82e | refs/heads/master | 2023-01-28T11:18:48.609986 | 2021-02-20T16:56:22 | 2021-03-03T16:47:35 | 140,290,855 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,370 | puml |
@startuml
autonumber
skinparam legendBackgroundColor #FEFECE
<style>
header {
HorizontalAlignment left
FontColor purple
FontSize 14
Padding 10
}
</style>
header Insights by Truffle
title Txn Hash: 0xaf16a0ff6b6989d8628a7875a2f431946639b14e2d794a7088291acb9ab06984
actor EOA as "EOA"
participant TestGuard_01 as "TestGuard_01"
participant ReentrancyMock_01 as "ReentrancyMock_01"
"EOA" -> "TestGuard_01" ++: beforeEach()
"TestGuard_01" -> "ReentrancyMock_01" ++: constructor()
"ReentrancyMock_01" -> "TestGuard_01" --:
"TestGuard_01" -> "ReentrancyMock_01" ++: callback()
"ReentrancyMock_01" -> "ReentrancyMock_01" ++: count()
"ReentrancyMock_01" -> "ReentrancyMock_01" --:
"ReentrancyMock_01" -> "TestGuard_01" --:
"TestGuard_01" -> "ReentrancyMock_01" ++: callback()
"ReentrancyMock_01" -> "ReentrancyMock_01" ++: count()
"ReentrancyMock_01" -> "ReentrancyMock_01" --:
"ReentrancyMock_01" -> "TestGuard_01" --:
"TestGuard_01" -> "EOA" --:
legend
Participant details
<#FEFECE,#D0D000>|= Alias |= Contract name |= Address |
<#FEFECE>| EOA | Externally Owned Account | 0x074879d0D753cf4A850a6a3614D60d0b2309A58F |
<#FEFECE>| TestGuard_01 | TestGuard | 0x63fb898997d985983B63843bd5a1d6A7AD11b95A |
<#FEFECE>| ReentrancyMock_01 | ReentrancyMock | 0x237c1Ba4bB1cc689Bbb1034dBC154020c54FF0b5 |
endlegend
@enduml | false | true | false | false | sequence |
5feda1893e16a5dc8b5efc949a24c0b0faddb44a | 26ece645f8575988be92132c985fcff0ee3d4887 | /positioning.puml | 4f9fa590852e4a6659a30a538941782b83e147d2 | [] | no_license | Kamshanski/BluetoothPositioning | 66ddb43484c2fd023373c7441e280ba47c4525f8 | c39d28c9e468773d559510b4354ad20f16c7530e | refs/heads/master | 2023-05-25T09:59:20.570296 | 2021-06-13T14:41:54 | 2021-06-13T14:41:54 | 376,566,730 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 444 | puml | @startuml
class com.kamshanski.blepositioning.model.methods.Positioning {
~ NiceFilter rssiFiltersBunchSample
~ HashMap<Beacon,NiceFilter> rssiFilters
~ HashMap<Beacon,MeanVariance> meanFunctions
~ HashMap<Beacon,DistanceFunction> distanceFunctions
~ Estimator coordinatesEstimator
~ FilterBunch xFilter
~ boolean meanFirst
+ PositioningStorage storage
- StringBuilder log
+ Dimensions of(HashMap<Beacon,double[]>)
+ String getLog()
}
@enduml | false | true | false | false | class |
274cf4e734cb64646ab16af73811f31aa5ca3733 | 4dcbed7250f56c32875dd8be113d75beb4000964 | /docs/component.puml | 5c1b1e637eae7ad28cfb482531cb593650869007 | [] | no_license | TraningCenter2017-2018/cms_kovalenko | ff5b13398bf6c89cb4d298d179a4b17b34fdc91c | ef05d32ca6a0b3fe7dc57083b1bf605fe203cde8 | refs/heads/master | 2021-04-12T04:23:19.790646 | 2018-04-18T17:46:43 | 2018-04-18T17:46:43 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 639 | puml | @startuml
node "Content manager" {
database "CM database" {
[Texts]
[Pictures]
}
[CM Controller] --> [Texts]
[CM Controller] --> [Pictures]
}
node "Post manager" {
database "PM Database" {
[Posts]
[Users]
}
[PM Controller] .left.> [Post manager]
[PM Controller] .right.> [User manager]
[Post manager] --> [Posts]
[User manager] --> [Users]
}
node "User Interface" {
[UI Server] --> [PM Controller] : REST
[UI Client] ..> [UI Server]
}
node "Proxy Server" {
[UI Server] -left- [Proxy] : REST
[Proxy] --> [CM Controller] : REST
}
@enduml | false | true | false | false | sequence |
dc0a70d3d3d3123cfc1c2b1f07e736b8c3d70ab7 | d467bc3942a140514d205e1cb6f737047010297f | /docs/diagrams/MainParser.puml | cfb0f758224ade20336b7f3ead8fbd08cca4b40a | [] | no_license | AY2122S1-CS2113T-T09-1/tp | 4d53c1fcce2bca1ed6e6e4f100888592286e2682 | 18192ba3e93eec827a28f7d9914b7d2bf1699f3a | refs/heads/master | 2023-08-28T11:36:52.464703 | 2021-11-08T11:51:02 | 2021-11-08T11:51:02 | 410,194,669 | 1 | 0 | null | 2021-11-08T11:51:03 | 2021-09-25T06:25:28 | Java | UTF-8 | PlantUML | false | false | 680 | puml | @startuml
hide footbox
'https://plantuml.com/sequence-diagram
->":MainParser":userInput:String
activate ":MainParser"
":MainParser"->":MainParser":parseCommand(userInput:String)
activate ":MainParser"
":MainParser"->":MainParser":getCommandType(userInput:String)
activate ":MainParser"
":MainParser"-->":MainParser":commandType:CommandType
deactivate ":MainParser"
":MainParser"->":MainParser":getCommandWord(userInput:String)
activate ":MainParser"
":MainParser"-->":MainParser":commandWord:CommandWord
deactivate ":MainParser"
ref over ":MainParser": Detailed Parsing\nbased on CommandType
<--":MainParser"::Command
deactivate ":MainParser"
deactivate ":MainParser"
@enduml | false | true | false | false | sequence |
100498643bbb20d52245866b938ebeeb9b014e46 | 3075b6c51514546942e45db273543621aef99dc2 | /plantUmlDiagrams/State.puml | 5ecc4d3199be4a35540118719da42ab45441616d | [] | no_license | DeclanBU/Design_Patterns_Project | 8192788cd784740e14d55eb14741d7cbad9ca0e5 | 7329048e0ba5ce7b7725f92694ba4a0629f3d9e1 | refs/heads/master | 2020-03-29T00:26:47.891280 | 2018-12-01T23:01:46 | 2018-12-01T23:01:46 | 149,339,795 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 979 | puml | @startuml
interface DrivingState {
void gotStopped(String character);
void gotBreathilised(String character);
void gotLucky(String character);
class Drunk implements DrivingState{
RoadUser roadUser;
public Drunk(RoadUser roadUser)
public void gotStopped(String character)
public void gotBreathilised(String character)
public void gotLucky(String character)
}
class Drunk implements DrivingState{
RoadUser roadUser;
public Drunk(RoadUser roadUser){
public void gotStopped(String character) {
public void gotBreathilised(String character) {
public void gotLucky(String character) {
}
class Sober implements DrivingState{
RoadUser roadUser;
public Sober(RoadUser roadUser){
public void gotStopped(String character) {
System.out.println(character + " had no drink");
public void gotBreathilised(String character) {
public void gotLucky(String character) {
}
@enduml | false | true | false | false | class |
f37eb45b5da5e47f5c712e0a4be4eebaf56d61e5 | c815f9c82c1400f76243750cd0ec609d217b9943 | /resource-acquisition-is-initialization/etc/resource-acquisition-is-initialization.urm.puml | 81560c7f52892bd828c99c31256a24c8ae613f02 | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 272 | puml | @startuml
package com.iluwatar.resource.acquisition.is.initialization {
class App {
+ App()
+ main(args : String[]) {static}
}
class SlidingDoor {
+ SlidingDoor()
+ close()
}
class TreasureChest {
+ TreasureChest()
+ close()
}
}
@enduml | false | true | false | false | class |
34e37931f555f099cadbe7ab3907b93c5ffe65e7 | 3b8fb858575959a11f454645b40f4dafb0ab4aa0 | /src/main/java/ex45/ex45UML.puml | 5a7ef2bb349f929473927d571f9cdf57272bcdd1 | [] | no_license | Elizene9/creighton-cop3330-assignment3 | 86297e7998bd9cb9f2e67d8ae9e69ccd1020224c | 75134be7038425d6152de392fa7db8d234258e60 | refs/heads/master | 2023-06-02T02:12:38.569612 | 2021-06-21T03:07:22 | 2021-06-21T03:07:22 | 378,791,728 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 422 | puml | @startuml
'https://plantuml.com/class-diagram
class WordFinder {
input : Scanner
fileCall : Scanner
callFile : PrintWriter
call : GenerateText
+main(args : String[])
fileName : String
text : List<String>
}
WordFinder o--> GenerateText
class GenerateText {
+newList(text : List<String>) : List<String>
+fileText(text : List<String>) : String
totalText : String
}
@enduml | false | true | false | false | class |
efcf28e4e505c5ac2a5f44585a8c2a18cdfb5dda | 065ab474790aa3afa4aa110affce1007b1528e99 | /packages/oda-model/src/models/model.puml | ad2aadb878b9dfd0eee97192161f5958774413f3 | [
"MIT"
] | permissive | ODA-js/oda-server | 042ab6e2796edd08cc9f7630e83586c6b30338aa | 6cd03c874973ff688b4238cdcf450accc355553d | refs/heads/master | 2020-04-09T13:33:37.014320 | 2019-04-23T14:33:49 | 2019-04-23T14:33:49 | 160,375,140 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 833 | puml | @startuml
ModelBase ----|> Element
EntityReference --|> Element
RelationBase --|> Element
BelongTo --|> RelationBase
BelongToMany --|> RelationBase
HasOne --|> RelationBase
HasMany --|> RelationBase
Directive --|> ModelBase
Args --|> ModelBase
Enum ---|> ModelBase
Enum --* EnumItem
EnumItem --|> ModelBase
Mutation ---|> ModelBase
Operation ---|> ModelBase
PackageBase ----|> ModelBase
MetaModel --|> PackageBase
ModelPackage --|> PackageBase
ModelHook --|> PackageBase
Query --|> ModelBase
Union --|> ModelBase
Scalar --|> ModelBase
EntityBase ----|> ModelBase
Entity --|> EntityBase
Mixin --|> EntityBase
FieldBase -----|> ModelBase
RelationFieldBase --|> FieldBase
SimpleField --|> FieldBase
RelationField --|> RelationFieldBase
EntityField --|> RelationFieldBase
InputType ----|> ModelBase
InputFIeld ----|> ModelBase
@enduml
| false | true | false | false | sequence |
afbdd7abfd0f1d98b7b49a8c8acbab574288cbad | 02b0d37dad8182bfbc5414bbd250f36c6e888b28 | /PlantUml/Scripts/Design Patterns/Base/PatternMonoBase.puml | 5e28bec3f97506aba1f6e425513b906aebcca09f | [] | 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 | 141 | puml | @startuml
class PatternMonoBase {
# ButtonRegister(path:string, onClick:UnityAction) : void
}
MonoBehaviour <|-- PatternMonoBase
@enduml
| false | true | false | false | class |
cdaaf73f4e85fa5f1fffad4d0e79a5bff3105c82 | a6cca9465a58ca132e13de6c76b3ee61fcdd26ab | /doc/uml/class-diagram-technical.puml | 8bac53411c2dde122b8177b7527736e8860e5e61 | [
"MIT",
"CC-BY-4.0"
] | permissive | uhafner/codingstyle | 711c73acaa3c93a6913d34ed02d3cb4d17ffae85 | 956ff6de0924aa07004c65cb6d971226dac1688f | refs/heads/main | 2023-08-17T05:05:25.513883 | 2023-07-08T14:01:01 | 2023-07-08T14:01:01 | 25,323,750 | 29 | 67 | NOASSERTION | 2023-09-14T16:01:32 | 2014-10-16T21:56:27 | Java | UTF-8 | PlantUML | false | false | 2,695 | puml | @startuml
skinparam package {
BackgroundColor #efefef
BorderColor #a0a0a0
BackgroundColor<<Main>> gold
BorderColor black
ArrowColor black
FontName Arial Unicode MS
FontSize 20
}
skinparam class {
BackgroundColor #white
BorderColor #f4f4f4
BackgroundColor<<Main>> gold
BorderColor black
ArrowColor black
FontName Arial Unicode MS
FontSize 20
}
skinparam classFontSize 24
skinparam classAttributeIconSize 0
skinparam defaultFontSize 20
skinparam ArrowColor black
skinparam ArrowThickness 2
hide circle
package java.util {
class Observable {
- changed: boolean
- observers: Vector<Observer>
+registerObserver(o: Observer)
+unregisterObserver(o: Observer)
#notifyObservers()
}
interface Observer <<interface>> {
+update() {abstract}
}
}
note "Package" as Package
note "Subpackage" as Subpackage
note "Klasse" as Class
note "Interface" as Interface
note "Vererbung" as Vererbung
note "Implementierung" as Implementierung
note "gerichtete Assoziation" as Assoziation
note "generischen Typ binden" as Generics
note "gerichtete Abhängigkeit" as Dependency
class ConcreteObservable {
-concreteState: State
+getState(): State
+setState(s: State)
}
Observable <|-- ConcreteObservable
hide interface fields
abstract class AbstractObserver < T extends Observer > {
+update()
#handleUpdate(o: Observer) {abstract}
}
class ConcreteObserver {
#handleUpdate(o: Observer)
}
class StringUtils {
+isEmpty(value: String) {static}
}
note right of ConcreteObservable::concreteState
Objektvariable
vom Typ <i>State</i>
end note
note right of ConcreteObservable::getState
Methode mit
Rückgabetyp <i>State</i>
end note
note right of ConcreteObservable::setState
Methode mit
Parametertyp <i>State</i>
end note
Observable o- Observer : \t\t
Observer <|.. AbstractObserver
AbstractObserver <|-- ConcreteObserver : <<bind>> \n<T -> ConcreteObserver>
ConcreteObservable <-left- ConcreteObserver : \t\t
java .up. Package
util .up. Subpackage
Observable .up. Class
Observable .. Vererbung
ConcreteObservable .up. Vererbung
Observer .up. Interface
Observer .down. Implementierung
AbstractObserver .up. Implementierung
ConcreteObserver .down. Assoziation
ConcreteObservable .down. Assoziation
ConcreteObservable .down.> StringUtils : <<use>>
ConcreteObserver .up. Generics
AbstractObserver .down. Generics
ConcreteObservable .down. Dependency
StringUtils .up. Dependency
note right of StringUtils::isEmpty
statische Methode
end note
note as floating
<u><b>Sichtbarkeiten</b></u>
+ public
# protected
~ package private
- private
end note
@enduml
| false | true | true | false | class |
ee20dfb96c3eeb0149a9a70b7c83b3780634d622 | b5c2a14e617ed7c41060f08322fe2192736972a4 | /Design Phase/SequenceDiagrams/Hover Label.plantuml | 7856d680314ee2f17648fc71288d999794824e63 | [] | no_license | AlpTorac/PSE-Report | 621f8f2ec69f215764d9ad5f23e9ee3ebd381c38 | 55a3dedcdda36639cacd5386b224fd094961f165 | refs/heads/main | 2023-04-03T10:29:33.111467 | 2021-04-06T15:43:51 | 2021-04-06T15:43:51 | 315,664,095 | 0 | 1 | null | 2021-01-07T11:02:59 | 2020-11-24T14:53:15 | TeX | UTF-8 | PlantUML | false | false | 1,047 | plantuml | @startuml HoverLabelDiagram
actor user as user
participant "dvdc.part : JComponent" as DVDCP
participant "listener : MouseAdapter" as EL
participant "dvdc : DiagramValueDisplayComponent" as DVDC
participant "hoverLabel : HoverLabel" as HL
note over DVDCP
dvdc.part represents an
attribute in dvdc, which
extends JComponent
(transitively or direct)
end note
user -> DVDCP: Hovers on dvdc.part \n with mouse pointer
DVDCP -> EL ++: MouseEntered(MouseEvent me)
EL -> DVDC ++: showHoverLabel()
DVDC -> HL ++: setCaption(dvdc.value)
return
DVDC -> HL ++: show()
return
return
return
user <-- DVDCP
user -> DVDCP: Moves the mouse pointer \n inside dvdc.part
DVDCP -> EL ++: MouseMoved(MouseEvent me)
EL -> DVDC ++: refreshHoverLabelPosition()
DVDC -> HL ++: setXPos(me.getX())
return
DVDC -> HL ++: setYPos(me.getY())
return
return
return
user <-- DVDCP
user -> DVDCP: Moves the mouse pointer \n out of dvdc.part
DVDCP -> EL ++: MouseExited(MouseEvent me)
EL -> DVDC ++: hideHoverLabel()
DVDC -> HL ++: hide()
return
return
return
user <-- DVDCP
@enduml | false | true | false | false | usecase |
21f9739a725de1a871986b9121335d6736c72672 | 2f22952e07ffc3eb8933d52a20f6a5bfd02e8b35 | /Structural/Flyweight/uml.puml | 8a65e93c5b4fb3e21407e4408709271f565dc3f4 | [
"MIT"
] | permissive | ervin-meng/PHPDesignPatterns | c7b868148231f28226e7efd12283798890aae0f2 | 19cd506970898ae6db87d3e838d53658a2876ae7 | refs/heads/master | 2022-12-08T11:38:04.190536 | 2020-09-01T09:12:07 | 2020-09-01T09:12:07 | 291,909,626 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 441 | puml | @startuml
abstract class AbstractFlyweight
{
public $internalState;
public $externalState;
abstract public function render();
__construct($externalState)
}
class FlyweightFactory
{
protected $flyweights = [];
getFlyweight($externalState)
}
class Flyweight extends AbstractFlyweight
{
render()
}
class UnsharedFlyweight extends AbstractFlyweight
{
render()
}
Flyweight <.. FlyweightFactory
@enduml | false | true | false | false | class |
fdad3a78608e970c1763aeec11323ba687a35254 | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/ipc08_01/file_sharing/i120836/ipc08_01_design2.puml | 32c7d03ce915708ba89010dc76d6e9e0c660a947 | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 794 | puml | @startuml doc-files/ipc08_01_design2.png
participant "uic: UIController" as uic
participant "uiExtension : UIExtensionFileSharing" as UIExt
participant "FileSharingPanel : JPanel" as cp
participant "FileSharingController" as ctrl
participant "FileSharingUI : JFrame" as fsui
participant "TCP : TCP" as tcp
participant "Socket : Socket" as skt
UIExt -> cp : new(uic)
cp -> ctrl : new(uic)
uic -> cp : ActionPerformed()
cp -> ctrl : ActionPerformed()
alt true
ctrl -> ctrl : startService()
ctrl -> fsui : create()
ctrl-> tcp : ServerFilesList()
ctrl ->tcp : getClientFilesList()
tcp --> ctrl :
ctrl -> fsui : display()
end
alt false
ctrl -> ctrl : stopService()
end
@enduml
| false | true | false | false | sequence |
f13be4661b92c811b04fb171b121e7d33e529c87 | 6a8d5b6c54bb374b1ca33c901f321164a1f2bdf2 | /documentation/DomainModel.puml | 92aff6ed1143286373de00ed3bce48c76da26500 | [] | no_license | danieljfgoncalves/p2p-file-share-app | c45e37e20b994ce5fe019744394fa29a4befebc0 | f18207670ad78f0b1c7b459580eb510947987051 | refs/heads/master | 2021-05-05T06:23:24.986309 | 2017-05-21T19:23:34 | 2017-05-21T19:23:34 | 118,799,289 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,793 | puml | @startuml
'http://plantuml.com/skinparam.html'
skinparam handwritten true
skinparam monochrome false
skinparam defaultFontName FG Virgil
skinparam shadowing false
title P2P-FileShare
package "presentation" {
class DirectoryTableView
class DownloadingDialog
class EditConfigurationDialog
class RemoteFilenamesTableView
class P2PFileShareApp {
+ {static} main : void
}
}
package "application" {
class ManageSharedFilesController
class CommunicationsController
class EditConfigurationsController
}
package "networking" {
class UdpCommunication
class TcpCommunication
class RemoteFilenameListProtocol
}
package "domain" {
class RemoteFilename {
filename : String
username : String
address : InetAddress
tcpPort : Integer
active : Boolean
+activate()
+refresh()
-deactivate()
+notifyObservers()
}
class RemoteFilenameList {
list : ObservableList
+update()
}
class Directory {
directory : Path
filter : FileFilter
watcher : WatchService
+getFiles() : File[]
}
}
package "util" {
class Constants
class ByteUtil
class OSUtil
class StringUtil
}
application .> domain
application ...> networking
networking ...> domain
presentation ...> application
networking ..> util
domain ..> util
presentation ..> util
application ..> util
@enduml
P2PFileShareApp ..> DirectoryTableView
P2PFileShareApp ..> DownloadingDialog
P2PFileShareApp ..> EditConfigurationDialog
P2PFileShareApp ..> RemoteFilenamesTableView
/'
Class01 <|-- Class02
Class03 *-- Class04
Class05 o-- Class06
Class07 .. Class08
Class09 -- Class10
class UdpCommunication {
username
password
+sign_in()
}
'/ | false | true | false | false | class |
c24475b6705233cbbebaf4a3cb69adfb436219ca | 227c32f7a5991c0ce2de069dd1f0448c1e6949fb | /PlantUML/PoseEstimatorICP/PoseEstimatorICP_Class.puml | a4abe0b23e3bcac7db5e72e229567ae4e20023e6 | [] | no_license | ShisatoYano/SLAMDesignUML | 2b3af745ecf8ff1b88845e248a72c589fe9aa1ba | bb8678908952205d1fdc2ea5e49c9ca752e123b9 | refs/heads/master | 2022-11-25T17:49:03.514885 | 2020-08-02T00:27:38 | 2020-08-02T00:27:38 | 261,206,484 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 898 | puml | @startuml
skinparam classAttributeIconSize 0
class PoseEstimatorICP{
- const Scan2D *curScan
- size_t usedNum
- double pnrate
- poseOptimizer *popt
- dataAssociator *dass
+ double totalError
+ double totalTime
+ PoseEstimatorICP() : usedNum(0), pnrate(0), totalError(0), totalTime(0)
+ ~PoseEstimatorICP()
+ void setPoseOptimizer(PoseOptimizer *p){popt = p}
+ void setDataAssociator(dataAssociator *d){dass = d}
+ double getPnrate(){return(pnrate)}
+ size_t getUsedNum(){return(usedNum)}
+ void setScanPair(const Scan2D *c, const Scan2D *r){curScan = c; dass->setRefBase(r->lps)}
+ void setScanPair(const Scan2D *c, const std::vector<LPoint2D> &refLps){curScan = c; dass->setRefBase(&refLps)}
+ double estimatePose(Pose2D &initPose, Pose2D &estPose)
}
PoseEstimatorICP o-- PoseOptimizer
PoseEstimatorICP o-- DataAssociator
@enduml | false | true | false | false | class |
7a3555a11080f8c36fd5db425bda1ff1a8efdc34 | a08307073b81a594154a842f5ef87508df391d1c | /class diagrams/main/engine/gameElements/gameElements.plantuml | c78e93e207c9a2876b81564c82d617be5ec89fd3 | [] | no_license | AlexisDel/Colt-Express | c99050ae00feefcb62faee50faa1ba124a5de380 | 96402eddae52b181f01575492eda6e497b1a0979 | refs/heads/master | 2023-05-25T04:27:02.337566 | 2021-06-14T14:28:04 | 2021-06-14T14:28:04 | 376,847,116 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,917 | plantuml | @startuml
title __GAMEELEMENTS's Class Diagram__\n
namespace main {
namespace engine {
namespace gameElements {
class main.engine.gameElements.Bandit {
- actions : List<Action>
- bounties : ArrayList<Bounty>
- bullets : int
+ Bandit()
+ addAction()
+ addBounty()
+ clearActions()
+ doAction()
+ dropBounty()
+ getActions()
+ getBounty()
+ getBullets()
+ getMoney()
+ rob()
+ shoot()
+ update()
}
}
}
}
namespace main {
namespace engine {
namespace gameElements {
class main.engine.gameElements.Bounty {
~ type : String
~ value : int
+ Bounty()
+ getType()
+ moveTo()
}
}
}
}
namespace main {
namespace engine {
namespace gameElements {
class main.engine.gameElements.Character {
- name : String
+ getName()
+ move()
~ Character()
~ Character()
}
}
}
}
namespace main {
namespace engine {
namespace gameElements {
class main.engine.gameElements.Entity {
# type : String
# x : int
# y : int
+ Entity()
+ getType()
+ getX()
+ getY()
}
}
}
}
namespace main {
namespace engine {
namespace gameElements {
class main.engine.gameElements.Marshall {
- NERVOSITE_MARSHALL : double
- stunned : boolean
+ Marshall()
+ autoMove()
+ catchBandit()
+ stun()
+ update()
}
}
}
}
namespace main {
namespace engine {
namespace gameElements {
class main.engine.gameElements.Train {
- NB_WAGONS : int
- entities : ArrayList<Entity>
+ Train()
+ addEntity()
+ getBandits()
+ getBountyAt()
+ getEntities()
+ getMarshall()
+ getTrainHeight()
+ getTrainLength()
+ removeEntity()
}
}
}
}
main.engine.gameElements.Bandit -up-|> main.engine.gameElements.Character
main.engine.gameElements.Bounty -up-|> main.engine.gameElements.Entity
main.engine.gameElements.Character -up-|> main.engine.gameElements.Entity
main.engine.gameElements.Entity o-- main.engine.gameElements.Train : train
main.engine.gameElements.Marshall -up-|> main.engine.gameElements.Character
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 |
18bc0d80be252c092c16b428bf9b681e5093e83f | 8d6f528da6210d4a44b5cd033e26cfe96b586e45 | /documentation/structure-chaining/chaining.puml | 4ac7ada912204dafd94ce0581f502422c5dfdfbc | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | stephensmitchell-forks/Silk.NET | d1b453ffa5d0dddec0b7ce67cd5c4c8cde1ec9fb | de7342935b5e05b31069e573b2319a6d7951168c | refs/heads/master | 2023-08-19T10:12:41.815570 | 2023-08-04T14:30:43 | 2023-08-04T14:30:43 | 264,128,171 | 0 | 0 | MIT | 2020-05-15T07:36:00 | 2020-05-15T07:36:00 | null | UTF-8 | PlantUML | false | false | 1,599 | puml | @startuml
!theme black-knight
package "Interfaces" {
interface IStructuredType {
+StructureType StructureType()
}
interface IChainable {
+BaseInStructure* PNext { get; set; }
}
interface IExtendsChain<TChain> {
}
interface IChainStart {
}
IStructuredType <|-- IChainable
IChainable <|-- IExtendsChain
IChainable <|-- IChainStart
}
package "Structures" {
class BaseInStructure implements IChainable {
+StructureType SType
+BaseInStructure* PNext
+BaseInStructure* IChainable.PNext { get; set; }
+StructureType IStructureType.StructureType()
}
class PhysicalDeviceFeatures2 implements IChainStart {
+StructureType SType
+BaseInStructure* PNext
+PhysicalDeviceFeatures Features
+BaseInStructure* IChainable.PNext { get; set; }
+StructureType IStructureType.StructureType()
}
IExtendsChain <|.. PhysicalDeviceFeatures2
class PhysicalDeviceVariablePointersFeatures implements IExtendsChain {
+StructureType SType
+BaseInStructure* PNext
+Bool32 VariablePointersStorageBuffer
+Bool32 VariablePointers
+BaseInStructure* IChainable.PNext { get; set; }
+StructureType IStructureType.StructureType()
}
IExtendsChain <|.. PhysicalDeviceVariablePointersFeatures
IExtendsChain <|.. PhysicalDeviceVariablePointersFeatures
IExtendsChain <|.. PhysicalDeviceVariablePointersFeatures
}
@enduml | false | true | true | false | class |
1019caf930e8d2d8986df7085471d52ea2d8fbf9 | d292b249c98c79dfa24321012e3c1661f12ad9e4 | /docs/sequenceDiagrams/DoneCommand.puml | 81a0f4614a4317a6166a95238dedbd4e1919496f | [] | no_license | amanda-chua/tp | 6008f6183783e947e1f3773b89a4491ea613a855 | a4a8d45f12986bf843204aab714d866e108c42e9 | refs/heads/master | 2023-01-14T02:13:39.444311 | 2020-11-09T15:49:07 | 2020-11-09T15:49:07 | 297,545,009 | 0 | 0 | null | 2020-09-22T05:29:23 | 2020-09-22T05:29:22 | null | UTF-8 | PlantUML | false | false | 534 | puml | @startuml
hide footbox
title Done
participant "command:DoneCommand" as DoneCommand
participant "tasklist:TaskList" as TaskList
participant "task:Task" as Task
participant "athenaUi:AthenaUi" as AthenaUI
->DoneCommand: execute()
activate DoneCommand
DoneCommand->TaskList: markTaskAsDone()
activate TaskList
TaskList->Task**
activate Task
Task->Task++:setDone()
Task-->Task--:
return task
return task
DoneCommand->AthenaUI: printTaskDone()
activate AthenaUI
AthenaUI->Task++: getName()
return string
return
<--DoneCommand--
@enduml | false | true | false | false | sequence |
b68b1d180091f2ed6709597f038caf963e28e53b | e996fa8ecacb2f092ee170ba4703cdafd464097a | /bouquet-SubSystem/templates/UseCases.puml | 7a3d06436dbbd91c27ef52d734645c3dfad58c49 | [
"MIT"
] | permissive | madajaju/bouquet | 24f46a8786cc9829eee8b7a2c452137b1481683a | 3224eef247bae360d30e90bd4928eb2cde29f3ac | refs/heads/master | 2023-04-28T22:12:20.533376 | 2018-11-21T13:45:09 | 2018-11-21T13:45:09 | 90,114,169 | 2 | 1 | null | 2023-04-18T11:23:53 | 2017-05-03T06:08:04 | JavaScript | UTF-8 | PlantUML | false | false | 280 | puml | @startuml
rectangle "UseCase Diagram TBD"
@enduml
left to right direction
actor :User: <<Person>>
actor :SubSystem: <<Person>>
rectangle "<%= nameSpaces %>" #lightBlue {
UseCase UC1 as "Use Case1"
UseCase UC2 as "Use Case2"
User --> UC1
UC1 --> UC2
UC2 --> SubSystem
}
| false | true | false | false | usecase |
259bcfa7f02d0331a6f1fbadd6c55cfe739bfba2 | 45fad34528b24e239c94f23c44d0e48fcc388f70 | /src/app/behavioral/state/state.puml | 8e663adac08081fc509d05c712aa620dd8d52113 | [
"MIT"
] | permissive | bad199xqn/design-patterns | 2a164d1c42d767a18366afb76314f4b511fd1e1c | 6ac1d9956918d5180be77a3faf4919c2037ce329 | refs/heads/main | 2023-07-15T06:48:26.231897 | 2021-08-23T18:14:56 | 2021-08-23T18:14:56 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 837 | puml | @startuml
skinparam class {
backgroundColor pink
arrowColor firebrick
borderColor firebrick
}
class HydrogenOxide <PRE> {
- state: State
constructor(state: State)
+ cool(): string
+ warm(): string
+ changeState(state: State): void
+ showName(): string
}
abstract class State {
# hydrogenOxide: HydrogenOxide
+ {abstract} lowerTemperature(): string
+ {abstract} raiseTemperature(): string
+ setHydrogenOxide(hydrogenOxide: HydrogenOxide): void
+ showChemicalFormula(): string
}
package states.class.ts {
class LiquidState
class SolidState
}
class LiquidState <XOR> {
+ lowerTemperature(): string
+ raiseTemperature(): string
}
class SolidState <XOR> {
+ lowerTemperature(): string
+ raiseTemperature(): string
}
HydrogenOxide o-> State
State <|-- LiquidState
State <|-- SolidState
@enduml
| false | true | false | false | state |
0230e54824b7579c70a19dae3072bcdb949d1a84 | 1f1ceedff0ac7ccc3e78c39481a1df35b0a23029 | /sequenceDiagram3.plantuml | d074748a018b7dea8ce60548ab86940413dd8a0c | [] | no_license | akarsh27/Ride-Sharing-Application | 20977b039c7f3671f3d69ab8baa37de76f233c9e | c08d83eb8c101a2eaef07b2476d6290e9e21736d | refs/heads/main | 2023-02-01T13:17:54.164953 | 2020-12-20T05:05:41 | 2020-12-20T05:05:41 | 322,994,325 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,766 | plantuml | @startuml SequenceDiagram3
skinparam BackgroundColor #CAE1FF
skinparam NoteBackgroundColor white
skinparam NoteBorderColor #000033
skinparam ParticipantBackgroundColor #f0ffff
skinparam ParticipantBorderColor #000033
skinparam SequenceLifeLineBackgroundColor #75cbec
skinparam SequenceLifeLineBorderColor #000033
skinparam ArrowColor #191970
skinparam Linetype ortho
skinparam ActorBackgroundColor #f0ffff
skinparam ActorBorderColor #000033
participant ":Web Application" order 20
participant ":Server" order 30
participant ":Company Database" order 40
participant ":Web Application" order 20
participant ":Server" order 30
participant ":Company Database" order 40
skinparam style strictuml
skinparam SequenceMessageAlignment center
title My Account
actor User
group MyProfile
User -> ":Web Application" : viewMyProfile
activate ":Web Application"
":Web Application" -> ":Company Database" : get(profileDetails)
activate ":Company Database"
":Company Database" -> ":Web Application" : give(profileDetails)
":Web Application" -->> User : display(name,picture,IDs,contact,email)
User -> ":Web Application" : updateDrivingLicense
":Web Application" -> ":Company Database" : verify(DrivingLicense)
":Company Database" -->> ":Server" : Verification Successful
activate ":Server"
":Company Database" -->> ":Company Database" : updateDrivingLicense
":Server" -->> User : Driving License Updated
deactivate ":Server"
deactivate ":Company Database"
deactivate ":Web Application"
end
newpage
group MyVehicles
User -> ":Web Application" : viewMyVehicles
activate ":Web Application"
":Web Application" -> ":Company Database" : get(MyVehicleDetails)
activate ":Company Database"
":Company Database" -->> ":Web Application" : give(MyVehicleDetails)
":Web Application" -->> User : display(vehicleDetails)
User -> ":Web Application" : AddVehicle(vehicleno,model,colour,image)
":Web Application" -> ":Company Database" : updateMyVehicles
":Company Database" -->> ":Company Database" : updateVehicles
":Server" -->> User : NewVehicleAdded
deactivate ":Company Database"
deactivate ":Web Application"
end
newpage
group MyRides
User -> ":Web Application" : viewMyRides
activate ":Web Application"
":Web Application" -> ":Company Database" : get(MyRideDetails)
activate ":Company Database"
":Company Database" -->> ":Web Application" : give(MyRideDetails)
deactivate ":Company Database"
":Web Application" -->> User : display(MyRideDetails)
User -> ":Web Application" : CheckRides(date)
":Web Application" -> User : displayRides(date)
deactivate ":Web Application"
end
@enduml | false | true | false | false | usecase |
272785a91c5e366549c43dc3c05aed0ef8b03b3e | 3b41c603613ab482d3255ca221460363aea7119a | /src/main/java/ex42/ParsingData.puml | e534edeed7d52ff1f7e94b96b394237855d8c118 | [] | no_license | thachvo530/vo-cop3330-assignment3 | 96476f07dbac91809fbcbddd701e45820695aaf2 | 4799bde3bc42297b55a2104009fbe3b35c1b850d | refs/heads/master | 2023-08-19T09:15:08.950173 | 2021-10-11T14:01:08 | 2021-10-11T14:01:08 | 415,389,531 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 114 | puml | @startuml
'https://plantuml.com/class-diagram
class ParsingData
{
+ +main()
+ +printEmployees()
}
@enduml | false | true | false | false | class |
9eec1f0d57999dbae084f3664ef4a9f6f6180a84 | bebdf7c96ad9f6e844265b479ace3ecaecb89ebe | /diagrams/EventStore.puml | 24bbc941012c90d797be2b93515f3ca0cfbb41f5 | [
"Apache-2.0"
] | permissive | jet/equinox | 006563a3a89db566311014c1ffd4ca320940a315 | da083a37ae520a1ad1f710f947b07d891c04c9bb | refs/heads/master | 2023-08-17T16:52:57.655413 | 2023-08-09T17:28:09 | 2023-08-09T17:28:09 | 101,387,536 | 439 | 80 | Apache-2.0 | 2023-09-14T01:30:20 | 2017-08-25T09:15:13 | F# | UTF-8 | PlantUML | false | false | 2,088 | puml | @startuml
!includeurl https://raw.githubusercontent.com/skleanthous/C4-PlantumlSkin/master/build/output/c4.puml
title Component diagram for Equinox.EventStore / Equinox.SqlStreamStore
caption Moving parts for an Equinox app using integrated projections in EventStore / SqlStreamStore etc
actor "Applications" <<Internal>> as apps
rectangle "Application Consistent Processing" <<External Container>> {
rectangle aggregate <<Component>> [
Aggregate / Service
Events: codec
Fold: initial, fold
interpret / decide
Service
]
rectangle stream <<Component>> [
Equinox.Decider
]
interface IStream <<Component>>
}
rectangle "Equinox.EventStoreDb" <<Container>> {
rectangle eqxes <<Component>> [
Equinox.EventStoreDb OR
Equinox.SqlStreamStore
]
database esstore <<Internal>> [
**Consistent Store**
__EventStore/SqlStreamStore__
App Streams
]
database memorycache <<Internal>> [
**System.MemoryCache**
StreamName -> version+state
]
database esproj <<External>> [
**Store Projections**
$all streams (SSS + ES)
$ec, $et streams (ES only)
]
}
database caches <<External>> [
**Read Models**
]
rectangle reactors <<Component>> [
**Reactors**
]
rectangle projectors <<Component>> [
**Publishers**
]
rectangle outputs <<External Component>> [
**Output Feeds**
]
apps <-R-> aggregate : transact\nagainst
apps <.L. caches : reference\neventually\nconsistent
aggregate <-R-> stream : Transact/\nQuery
stream -R-> IStream : Load/\nSync
eqxes .U.> IStream : implements
eqxes <-R-> memorycache : TryGet/\nUpdate
eqxes <-L-> esstore : ReadStreamEvents/\nAppendEvents\n[EventStore.ClientAPI]
esstore .L.> esproj : feeds into
esproj .U.> projectors : handle events fed from
esproj .U.> reactors : track relevant events fed from
reactors .R.> caches : maintain\nviews\nin
projectors .U.> outputs : emit to
@enduml
| false | true | false | false | usecase |
1d10036a45584241a37f486526e0eea67802f521 | ea92b794f64577cf3f9895848ed841a2482a6d1e | /docs/assets/images/ITaskItem-umlClassDiagram-72.puml | a329de54d1454a55ee21e1d763a03945886a2cc4 | [
"MIT"
] | permissive | dreambo8563/todo-core | a1cdd6e14ec6445dd1dae84d0ba03bf80b1b09da | 96b2af2b5b5c0ba1d1aaa15eba7061c52cafc611 | refs/heads/master | 2022-11-21T11:51:16.649734 | 2020-07-18T17:57:03 | 2020-07-18T17:57:03 | 274,677,442 | 0 | 0 | MIT | 2020-06-28T10:36:09 | 2020-06-24T13:36:10 | TypeScript | UTF-8 | PlantUML | false | false | 335 | puml | @startuml
hide empty methods
hide empty fields
interface "ITaskItem" {
+content : TaskContentType
+id : string
+status : ETaskStatus
+toggle() : void
}
class "Task" {
+content : T
+id : string
+status : ETaskStatus
-setStatus(s: ETaskStatus) : void
+toggle() : void
}
"ITaskItem" <|.. "Task"
@enduml | false | true | false | false | class |
2fc3979370ac21e9888f88475193f30f5e371353 | c8e5514bd3ea44e6613f469e88bc0562ba16ae62 | /src/site/sphinx/formatting/puml/colors/Red.puml | 35cae812d66f494f954d03f0e48e5bf4a48b8ba8 | [] | no_license | weedySeaDragon/plantuml-documentation | 1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba | 3c23cd2cd7fc1b4a85423ef9861711907fab2296 | refs/heads/develop | 2022-12-09T05:57:04.055959 | 2022-05-12T16:05:20 | 2022-05-12T16:05:20 | 165,910,589 | 55 | 6 | null | 2022-11-22T10:34:29 | 2019-01-15T19:28:35 | SCSS | UTF-8 | PlantUML | false | false | 298 | puml | @startuml
skinparam ClassBackgroundColor #Red
skinparam ClassFontColor #Red
skinparam ClassBorderColor #Red
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml | false | true | false | false | class |
a1ab3aaa3e84fa008df9707e07bc4556637432d8 | a4637ee4b83aed9723d523e23a69a135ebee495c | /assignment-1/pacman-project-structure.puml | fc21b450ab3da4016e8470f21549f62d369131d7 | [] | no_license | BacLuc/soco21-group8-myfork | 0006f2d06d3c136b51b2a4a1eb4e3c80ab5d490e | 1c50f0d325fd6eba3e6f070cc58db8887fc76286 | refs/heads/initial-setup | 2023-08-22T04:31:32.323492 | 2021-10-05T20:30:44 | 2021-10-05T20:30:44 | 413,869,021 | 0 | 0 | null | 2021-10-09T16:12:59 | 2021-10-05T15:12:13 | Java | UTF-8 | PlantUML | false | false | 74 | puml | @startuml
object package1
object package2
package1 <-- package2
@enduml
| false | true | false | false | object |
0ec9f89efb01e743f145e11bfe8ebc7eb02ad825 | d14f4f3fe0bbc94f3392ef5fc2aafb2ceff6d96d | /out/production/pattern_game/classD.puml | f4194b4170b06e763e2dfb7638803aa3008143c3 | [] | no_license | urban-cosmonaut-tales/pattern_game | 12af72066730d5ba9f07cbde76f95a35262a40cc | 40058162ec1862cbf81b3583e646fbbdbd8f8ac9 | refs/heads/master | 2021-06-01T00:41:32.798545 | 2016-06-19T21:46:44 | 2016-06-20T20:41:31 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 400 | puml | @startuml
abstract class Unit{
}
class Archer{
}
class Healer{
}
class Catapult{
}
Archer -|> Unit
Unit <|- Healer
class Berserker{
}
Unit <|- Berserker
abstract class Factory{
+createUnit() : Unit;
}
class ArcherFactory{
+createUnit() : Unit;
}
class HealerFactory{
+createUnit() : Unit;
}
class BerserkerFactory{
+createUnit() : Unit;
}
class CatapultFactory{
+createUnit() : Unit;
}
@enduml | false | true | false | false | class |
ef189307a6556dab0c6330bf9bcc0d44b62ff423 | 002cce44acedf7993c3c7ec9e946c38dfe613d61 | /designpattern/com/xzy/factory/simplefactory/nofactory.puml | 3d6ce0583bdc34da9ea83b0939c5fd22c9f0f5da | [] | no_license | blueskyxzy/algorithms_java | ee240e3a9ad950ef9338189121f81000288f30d5 | 6d3a839d6409087042a0315828c83377f41d15ee | refs/heads/master | 2022-09-06T02:43:16.271881 | 2019-09-15T12:47:33 | 2019-09-15T12:47:33 | 133,464,892 | 2 | 0 | null | 2022-09-01T23:06:37 | 2018-05-15T05:43:36 | Java | UTF-8 | PlantUML | false | false | 176 | puml | @startuml
interface Car{
void run();
}
class Audi{
void run();
}
class BaoMa{
void run();
}
class Cliet1{
void main()
}
Car <|-- Audi
Car <|-- BaoMa
@enduml | false | true | false | false | class |
b941e9413a6d0bc949c6bb27bfbbe50137a49df7 | 4ecb4b2f0ad24d95c070d6a1efc168b0a7a1faef | /postframeEvent.plantuml | 297e59edab988f1a28eb876156f036854eaf6057 | [] | no_license | Mr-Bulijiojio/NotesTIproject | 5fcead61c5979ad88272f51c84df9724a9af5ccc | fb02451211001e55b98808444d5ef9afc6c274c3 | refs/heads/master | 2023-02-10T10:17:09.188580 | 2020-12-21T12:22:22 | 2020-12-21T12:22:22 | 321,225,796 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,226 | plantuml | @startuml postframeEvent
partition DSS
(*)--> DPC_ObjectDetection_execute() is done #CCFFFF
-->return DPM_execute() #CCFFFF
-->return to MmwDemo_DPC_ObjectDetection_dpmTask() #CCFFFF
partition "MmwDemo_DPC_ObjectDetection_dpmTask"
-->Cycleprofiler_getTimeStamp()
-->MmwDemo_updateObjectDetStats()
--> MmwDemo_copyResultToHSRAM()
-->DPM_sendResult()
note right
call DPM_mboxSendResult()
call DPM_mboxMsgSend()
----
DPM_MessageId_RESULT
end note
end partition
==S1== --> DPM_msgRecv()*
-->"retVal = gDPMMessageFxnTable[fxnTableIndex] (ptrDPM, &rxMsg, &respMsg, errCode)
----
which is DPM_msgDPCCfgHandler()"
-->"ptrDPM->procChainCfg.ioctlFxn()
----
which is DPC_ObjectDetection_ioctl()"
--> [DPC_OBJDET_IOCTL__DYNAMIC_EXECUTE_RESULT_EXPORTED]DPC_ObjDetDSP_reconfigSubFrame()
end partition
partition MSS
partition DPM_execute()
"DPM_sendResult()"-->DPM_msgRecv()
end partition
note left
then it calls
ptrDPM->initCfg.reportFxn(DPM_Report_NOTIFY_DPC_RESULT...)
MmwDemo_DPC_ObjectDetection_reportFxn()
MmwDemo_handleObjectDetResult()
end note
partition MmwDemo_handleObjectDetResult
"DPM_msgRecv()"-->MmwDemo_handleObjectDetResult()
--> read result from HSRAM #CCFFFF
--> [if used H/W or S/W LVDS]transfer data via LVDS #CCFFFF
-->MmwDemo_transmitProcessedOutput()
note left
Transmit processing results for the frame via UART
end note
--> MmwDemo_getNextSubFrameIndx()
--> MmwDemo_processPendingDynamicCfgCommands()
note left
Dynamic Configeration
end note
--> MmwDemo_ADCBufConfig()
-->"DPM_ioctl()
----
DPM_MessageId_DPC_CFG
DPC_OBJDET_IOCTL__DYNAMIC_EXECUTE_RESULT_EXPORTED"
--> ==S1==
end partition
end partition
@enduml | false | true | false | false | activity |
15987511685074a305500e3c6cd170a3d7f1365f | cd526799134795e04eec4399a2076e313eeaa4de | /doc/usecases/diagrams/PaymentInitOAuthWithoutSca.puml | 821bb95653f1b13dc8887286d603889bf48d9070 | [
"Apache-2.0"
] | permissive | berezkin88/xs2a | db73702dc49211fe3adffd3b8f3e0c183ac2023d | cb863fdd3d1dbb4bf40e59a2c26e84f2dfbfe9e2 | refs/heads/master | 2023-08-03T22:21:45.360741 | 2020-07-31T10:22:52 | 2020-07-31T10:22:52 | 284,695,034 | 0 | 0 | Apache-2.0 | 2020-08-03T12:33:05 | 2020-08-03T12:33:04 | null | UTF-8 | PlantUML | false | false | 4,461 | puml | @startuml
title OAuth Approach without SCA
participant PSU as psu
participant TPP as tpp
participant XS2A as xs2a
participant SPI as spi
participant CMS as cms
participant IDP as idp
participant "Core Banking" as cbs
== Initiate Payment ==
psu -> tpp: initiate payment
activate tpp
activate psu
tpp -> xs2a: initiate payment\nPSU data and TPP data with token\nREST Call Initiate payment\nPOST "/v1/payments/{payment-product}"
activate xs2a
xs2a -> spi: Java Call SPIinitiatePayment
activate spi
|||
alt 'Sca Exempted' = TRUE
|||
spi-->xs2a: SpiSinglePaymentInitiationResponse\n'scaExempted=true'
|||
xs2a->spi: executePaymentWithoutSca
|||
spi->idp: executePaymentWithoutSca
|||
idp->cbs: executePaymentWithoutSca
|||
else 'Sca Exempted' = FALSE
|||
spi->xs2a: SpiSinglePaymentInitiationResponse\n'scaExempted=false'
|||
deactivate spi
|||
xs2a-->tpp:Payment initiation response + PaymentID
deactivate xs2a
|||
tpp->xs2a: REST Call Initiate authorithation \nPOST"/v1/{payment-service }/{payment-product}/\n{paymentId}/authorisations"
activate xs2a
note left
in case of Multilevel SCA
the authorisation steps
should be repeated for other PSU
end note
|||
xs2a-->tpp:Start authorisation response\n"link_scaRedirect"
deactivate xs2a
|||
tpp --> psu: Feedback to the customer\nAuthorise the transaction
psu -> idp: login + SCA (with PaymentID)
activate idp
idp -> cms: REST Call GetPaymentByRedirectId\n"GET/psu-api/v1/payment/redirect/{redirect-id}"
activate cms
cms-->idp: CmsPaymentResponse
|||
idp->cms: REST Call UpdatePsuIdPayment\n"PUT/psu-api/v1/payment/authorithation/\n{authorisation-id}/psu-data"
|||
cms-->idp: Response "http Codes: 200 successful or 400 error"
deactivate cms
|||
idp-->psu: Authorisation Process Response
deactivate idp
|||
psu->idp: The psu Authorises the Payment
activate idp
|||
idp->cms: REST Call UpdateAuthorisationStatus\n"PUT/psu-api/v1/payment/{payment-id}/authorisation/\n{authorisation-id}/status/{status}"
activate cms
|||
cms-->idp: Response "http Codes: 200 successful or 400 error"
deactivate cms
idp->cbs: Execute Payment
activate cbs
|||
cbs-->idp: Response PaymentStatus
deactivate cbs
idp->cms: REST Call UpdatePaymentStatus\n"PUT/psu-api/v1/payment/{payment-id}/status/{status}"
activate cms
|||
cms-->idp: Response "http Codes: 200 successful or 400 error"
deactivate cms
|||
idp --> psu: Payment confirmed
|||
end
deactivate psu
deactivate tpp
deactivate idp
psu->tpp: Redirect back to tpp
deactivate psu
activate tpp
|||
tpp->xs2a: REST Call get payment status\n"GET/v1/{payment-service}/{paymentId}/status"
activate xs2a
|||
xs2a->cms: REST Call GetPaymentById
activate cms
|||
cms-->xs2a: Payment Object Response
deactivate cms
|||
xs2a->spi: Java Call SPI GetPaymentStatusByid
activate spi
|||
spi->cbs: GetPaymentStatusById
activate cbs
|||
cbs-->spi: Transaction Status Response + Sca Exempted Status
deactivate cbs
|||
spi-->xs2a: Transaction Status Response\n+ Sca Exempted Status
deactivate spi
|||
xs2a->cms: REST Call UpdateTransactionStatus
activate cms
|||
cms->xs2a: UpdateTransactionStatus Response
deactivate cms
|||
xs2a-->tpp: Transaction Status Response\n+ Sca Exempted Status
deactivate xs2a
|||
tpp->xs2a: REST Call Get Payment Request "GET/v1/\n{payment-service}/{paymentId}"
deactivate tpp
activate xs2a
xs2a->cms: REST Call GetPaymentById
activate cms
|||
cms-->xs2a: Payment Object Response
deactivate cms
|||
xs2a->spi: Java Call SPIGetPaymentbyId
activate spi
|||
spi->cbs: GetPaymentById
activate cbs
|||
cbs-->spi: Payment Object Response
deactivate cbs
spi-->xs2a: SpiSinglrPayment /\nSpiPeriodicPayment /\nSpiBulkPayment /\nSpiPaymentInfo
deactivate spi
|||
xs2a->cms: REST Call UpdatePayment
activate cms
|||
cms-->xs2a: UpdatePayment Response
deactivate cms
|||
xs2a-->tpp: Get Payment Response
deactivate xs2a
activate tpp
|||
tpp->xs2a: REST Call Get Authorisation Sub-resources\n"GET/v1/{payment-service}/{payment-product}\n/{paymentId/authorisations}"
activate xs2a
|||
xs2a->cms: GetAuthorisationsByPaymentId
activate cms
|||
cms-->xs2a: GetAuthorisationsByPaymentId Response
deactivate xs2a
xs2a-->tpp: Authorisation Ids List
|||
tpp->xs2a: REST Call Get Authorisation\n"GET/v1/{payment-service}/{payment-product}/\n{paymentId/authorisations}/{authorithationId}"
xs2a->cms: GetAuthorisationScaStatus
activate cms
|||
cms-->xs2a: GetAuthorisationScaStatus Response
deactivate cms
xs2a-->tpp: Sca Status
deactivate xs2a
deactivate tpp
@enduml
| false | true | false | false | sequence |
d5c4bd378eee29ca84721d5958349a527997c98c | 74aa36ca3dbd19fa73930269b83e632a2e547db5 | /app/app_classes.puml | a0de9a0651f43fe70366170c0f225a8cf52e1cfa | [] | no_license | inputmethod/PinyinIME | 81254c2f18c4497b61fe1c6b088b0a912c4b03ce | 8050fd13f151883b97a27e446c6349be6232f446 | refs/heads/master | 2022-04-16T02:05:00.001870 | 2020-03-19T15:24:41 | 2020-03-19T15:24:41 | 103,228,456 | 0 | 0 | null | 2017-09-12T05:58:46 | 2017-09-12T05:58:46 | null | UTF-8 | PlantUML | false | false | 1,367 | puml |
' SeeTo:
' http://plantuml.com/zh/class-diagram
' Goal: present all classes in this application
' Note:
' 1. the color of framework will be gray
'
@startuml
' Android framework interfaces/classes
package android <<Rectangle>> {
interface Preference.OnPreferenceChangeListener #gray
class Service #gray
class InputMethodService #gray
class PreferenceActivity #gray
class Configuration #gray
}
' interfaces/classes
package main <<Rectangle>> {
class PinyinDecoderService
class PinyinIME {
+onCreate():void
+onDestroy():void
+onConfigurationChanged(Configuration):void
+onKeyDown(int, KeyEvent):boolean
+onKeyUp(int, KeyEvent):void
+onCreateCandidatesView():View
+responseSoftKeyEvent(SoftKey):void
+onCreateInputView():View
+onStartInput(EditorInfo, boolean):void
+onStartInputView(EditorInfo, boolean):void
+onFinishInputView(boolean):void
+onFinishInput():void
+onFinsihCandidatesView(boolean):void
+onDisplayCompletion(CompletionInfo[]):void
+requestHideSelf(int):void
+showOptionsMenu():void
}
class SettingsActivity
}
' relationship
' inheritance
Service <|-- PinyinDecoderService
InputMethodService <|-- PinyinIME
PreferenceActivity <|-- SettingsActivity
Preference.OnPreferenceChangeListener <|.. SettingsActivity
' decomposition
@enduml
| false | true | false | false | class |
b768ce220e231ed79d008169b9f25094c477df17 | e3da63c3ef35e8251d9c86e32ec06e893d90197e | /diagrams/ex42.puml | 3ab222f5a71f445a5358fec8bfaabf6006e9ef81 | [] | no_license | kyubifang/jackson-cop3330-assignment3 | 58f376ccdbf4924e9e8ad8641db85157b80839cc | 4037c5c7682b36b2e886756aa57e9deefc11767e | refs/heads/master | 2023-07-04T11:28:30.354835 | 2021-07-26T03:58:43 | 2021-07-26T03:58:43 | 378,800,036 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 646 | puml | @startuml
'https://plantuml.com/sequence-diagram
class App {
+ Input()
grabInput()
+ generateOutput(fin)
sout(output)
}
class Input {
- List: fInputs
File()
if(exercise42_input.txt?)
Scanner in(file)
while (in.hasNextLine?)
fInputs.add, replace commas
else
:FileNotFoundException;
"File not found"
stop
endif
}
interface generateOutput {
sout (Last First Salary)
sout (-----------------)
String output = ""
for (i < list size)
writeListToOutput()
return output
}
App o--> Input
Input o--> App
generateOutput *-- App
@enduml | false | true | false | false | activity |
3741f0dcdff9f3c39e69e3d1d642730d3d216e5a | 61d700bfd51aa9767b51da4245709ea541e77f6c | /planning/midi.puml | 2695754acb5dba96379ab5c4a528d7d95c9c55f6 | [
"Apache-2.0"
] | permissive | MicroTransactionsMatterToo/MidiKit | 0d0003170725932e8231c16489d047d0c9ff23f7 | 77c2754a36566522227271b43476a153ac0beef2 | refs/heads/master | 2021-01-12T12:59:34.464736 | 2016-09-23T06:31:36 | 2016-09-23T06:31:36 | 68,863,741 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 228 | puml | @startuml
class "MIDI Device" as midi {
** Ports **
..
# MIDI Thru
# MIDI Out
# MIDI In
--
** Channels **
..
+ [1 - 16]
}
class "MIDI Controller" as midicntrl {
}
midi -|> midicntrl : extends >
@enduml
| false | true | false | false | class |
8de2b729a5aec1a9b76cc5eb8b70432921229820 | bf031f6b92d2fc8bc0723b4948642fe42b243226 | /uml/structural/adaptor_pattern/objectAdaptor.puml | d55fa1680c639e682e4e8c74cbf0985abc772cf8 | [] | no_license | Junhuan-Peng/Go-Design-Pattern | f1936fce24abfc1cbdf89119acba0000a2b542cd | bbbe88543223e50ad5d1bd1ac662e0534fad1a4a | refs/heads/main | 2023-04-08T11:19:55.603967 | 2021-04-17T15:03:29 | 2021-04-17T15:03:29 | 317,451,939 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 242 | puml | @startuml Object Adaptor
class Client{
}
interface Target{
requests()
}
class Adaptee{
specficRequest()
}
class Adapter implements Target {
Adaptee adaptee
requests()
}
Client -r-> Target
Adapter::adaptee -r-> Adaptee
@enduml | false | true | false | false | class |
265e8d0fd36ef3501251391ea6489835a0e3aa06 | 6669afd15b835e4029133102cfffbdc63764286e | /docs/diagrams/TipCommandSequenceDiagram.puml | 7a7b39fdee3fe8f0e7a7a8797abd6a3ce0757d89 | [] | no_license | jerichochua/tp | 852d34673f31b7d728af310a7985d51cd6409c99 | d8b562a2aab468abf75cdd0f28b9d64eeb7ca1c1 | refs/heads/master | 2023-01-21T17:48:15.520953 | 2020-11-09T15:38:41 | 2020-11-09T15:38:41 | 297,093,690 | 0 | 0 | null | 2020-09-20T14:27:09 | 2020-09-20T14:27:08 | null | UTF-8 | PlantUML | false | false | 710 | puml | @startuml
skinparam Shadowing false
participant ":Fitr" as Fitr
participant ":TipList" as TipList
participant ":StorageManager" as StorageManager
participant ":TipManager" as TipManager
participant ":Ui" as Ui <<class>>
activate Fitr
create TipList
Fitr -> TipList++
TipList -> StorageManager++ : loadTipList()
return tipList
deactivate StorageManager
TipList --> Fitr: tipList
deactivate TipList
create TipManager
Fitr -> TipManager++: tipList
return
Fitr -> TipManager++: execute()
TipManager -> TipManager++: getTip(totalNumberOfTips)
return tip
TipManager -> Ui++: printMessageInYellow(tip)
return
return
TipManager -[hidden]-> Fitr
destroy TipManager
destroy TipList
deactivate Fitr
hide footbox
@enduml
| false | true | false | false | sequence |
65a0990a409096d260c9a83dfbfefe89ac744985 | f4912b210d7eb691deae8a8a396ecbc2b9ae4386 | /assets/DataHug-Sequence.puml | ee4aa6037d673108b34da3da6e18f2f1ac2bf796 | [
"MIT"
] | permissive | newportg/newportg.github.io | 8eaf3eb41e7502b26c7aa33b55e3e9ec67731536 | 5fae722e228c339cf6707ba4a4747fc7bbbf9705 | refs/heads/master | 2021-06-06T00:04:48.145436 | 2020-03-06T09:18:45 | 2020-03-06T09:18:45 | 152,589,658 | 0 | 1 | null | 2019-02-08T15:05:51 | 2018-10-11T12:40:31 | JavaScript | UTF-8 | PlantUML | false | false | 1,338 | puml | @startuml
skinparam ParticipantPadding 20
skinparam BoxPadding 10
== Initialization ==
box "Internal Service"
participant Hub
end box
box "DataHug Service"
participant Authentication
participant Service
end box
Hub -> Authentication: Authentication Request
activate Authentication
rnote right Authentication
**URL**
https://apps.datahug.com/identity/connect/token
**Header**
Accept:application/json; charset=utf-8"
Content-Type:application/x-www-form-urlencoded
**Body**
client_id: **clientId**
client_secrect: **secret**
grant_type:client_credentials
scope:datahug_api
endrnote
return 200 Authentication Response JWT
deactivate Authentication
== Service Request ==
Hub -> Service :
activate Service
rnote right Service
**URL**
https://api.datahug.com/.....
**Header**
Accept:application/json"
Content-Type:application/json; charset=utf-8
ImpUsername: **<Imporsonate Email Address>**
Autorisation: Bearer **<JWT Token>**
endrnote
return 200 Success Response
deactivate Service
alt Error Response
Hub -> Service : Request
rnote right Service
**Error Responses**
invalid_request
invalid_client
unauthorized_client
access_denied
unsupported_response_type
unsupported_grant_type
invalid_scope
server_error
temporarily_unavailable
endrnote
return 40x error response
end
@enduml | false | true | false | false | sequence |
35ae48cb6ec681381da8cf29a596b2c9641c0e32 | 95dfd37091234d9efea1dacab52af729bbd5d741 | /docs/classes.puml | f1f69c7217c766527ba87f4975cc61ea7fccd76d | [
"Unlicense"
] | permissive | TeamTIMO/timo-settings | a786915306b1d4d4932c121b94ceccfb68869c40 | 9ceb2efd09330db0a18bedb723b88754a5eedaab | refs/heads/master | 2021-05-05T22:19:45.052770 | 2018-01-09T14:57:57 | 2018-01-09T14:57:57 | 116,143,864 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 306 | puml | @startuml
class settings {
- Object settings
- String file
+ {method} void list(callback: function)
+ {method} void getSetting(String: name, callback: function)
+ {method} void updateSetting(String: name, String: Value, callback: function)
- {method} void saveFile(callback: function)
}
@enduml | false | true | false | false | class |
e9e91d6107585fee3a77d24e9f8ec1d9e9597aba | f72b4d9755e98bc7538fe54c43898ef4abb930ef | /src/main/asciidoc/demo8.puml | 126ce3cd8f0dc145cccb4a5afb6aaabaad9d8d6b | [
"MIT"
] | permissive | sroach/latex-asciidoc-plantuml-extension | c303f3c190211a03fe773cf477aa5b9906d05d28 | 4ad2ec95ee787f93a81b93e21fc76aa5f81cb5fa | refs/heads/main | 2023-06-07T04:06:24.972238 | 2021-07-02T22:50:50 | 2021-07-02T22:50:50 | 377,987,835 | 0 | 0 | MIT | 2021-07-02T12:13:51 | 2021-06-17T23:56:28 | CSS | UTF-8 | PlantUML | false | false | 472 | puml | @startuml
!theme silver
left to right direction
skinparam dpi 192
skinparam componentStyle uml2
[<back:gray><latex>P(y|\mathbf{x}) \mbox{ or } f(\mathbf{x})+\epsilon</latex></back>] as fx
[<color:blue><latex>\mathcal{D}</latex></color>] as D
[<latex>\mathcal{H}</latex>] as H
[<latex>\mathcal{g}</latex>] as g
[<latex>P(\mathbf{x})</latex>] as Px
(<latex>\mathcal{A}</latex>) as A
Px --> D
fx --> D
D --> A
H --> A
A --> g
g .-> fx: <latex>\mbox{Loss}(f,g)</latex>
@enduml | false | true | false | false | sequence |
76553afdcdd8135ca49c6d620c6470c79a0e5159 | 27a045c374d7118b8019e71c6a166ccfef66a4cc | /JavaBasics/src/com/sourcecode/reentrantreadwritelock/Condition.puml | 04aa69f3ececdcbaed807207fe49ce00c7248c97 | [] | no_license | colonel8377/code | 6f422c687226bae928ab6e377e321e4671d70d18 | 07ee8b4fc0d325341c6866395b5bda6d44271707 | refs/heads/master | 2022-01-04T20:09:21.777194 | 2018-12-26T14:15:39 | 2018-12-26T14:15:39 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 620 | puml | @startuml
interface Condition {
void await() throws InterruptedException;
long awaitNanos(long nanosTimeout) throws InterruptedException;
boolean await(long time, TimeUnit unit) throws InterruptedException;
void awaitUninterruptibly();
boolean awaitUntil(Date deadline) throws InterruptedException;
void signal();
void signalAll();
}
class AbstractQueuedSynchronizer.ConditionObject implements Condition, java.io.Serializable {
private static final long serialVersionUID = 1173984872572414699L;
private transient Node firstWaiter;
private transient Node lastWaiter;
}
@enduml | false | true | false | false | class |
ee57a9942204ec45ae2b9ad06d151ded5b1b1ddf | 20391c18be0f5d9fa3adee5029be766534a0cf8e | /state-pattern/example1/state-solution-1/uml.plantuml | f37cff7f0e5859643c5fbbf558e3e90f7b327c80 | [] | no_license | Caballerog/blog | 34ee257ea9e033dfab732d15b7eff7b2a03a59a0 | c02c18b49cd65894ebd5e4f7eebc946195cde0f6 | refs/heads/master | 2023-04-28T15:00:41.602153 | 2023-04-21T19:56:59 | 2023-04-21T19:56:59 | 169,620,009 | 28 | 7 | null | 2022-12-11T21:37:16 | 2019-02-07T18:22:56 | TypeScript | UTF-8 | PlantUML | false | false | 901 | plantuml | @startuml
skinparam titleBorderRoundCorner 15
skinparam titleBorderThickness 2
skinparam titleBorderColor blue
title State Pattern
header
<font color=red>Warning:</font>
Educational Purposes
endheader
center footer Carlos Caballero ([[https://www.carloscaballero.io https://www.carloscaballero.io]])
Client -[dashed]-> Context : "<<use>>"
ConcreteStateA <-> ConcreteStateB
abstract class State {
# context: Context
+ setContext(context: Context): void
+ abstract handle1(): void;
+ abstract handle2(): void;
}
class ConcreteStateA extends State {
+ handle1(): void
+ handle2(): void
}
class ConcreteStateB extends State {
+ handle1(): void
+ handle2(): void
}
class Context {
- state: State
--
+ constructor(state: State)
+ request1(): void
+ request2(): void
+ transitionTo(state: State): void
}
Context o-> State
@enduml | false | true | false | false | sequence |
69610508f4d95510402adf9983ac869837a50cdb | 1656774271bfaa85871f6c52a9f018a1842d8443 | /docs/Stdlib/dynamic3.1.puml | 3ee0a3b2777a115e6ef8e13bb873ec3dc8fae2ee | [] | no_license | starkmapper/PlayingWithPlantUMLSource | e522a0d7b874bc027bbb05ab13c8607ed64f3c24 | 6a3102305852eae8d8b2a3376489a142840b8228 | refs/heads/master | 2022-09-13T17:00:13.963876 | 2020-06-01T19:10:56 | 2020-06-01T19:10:56 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,146 | puml | @startuml
'all sprites in a category would be included in an all.puml file for that category
'==================================================================================================
' Styling
' ##################################
!define TECHN_FONT_SIZE 12
skinparam defaultTextAlignment center
skinparam wrapWidth 200
skinparam maxMessageSize 150
skinparam rectangle {
StereotypeFontSize 12
}
skinparam rectangle {
backgroundColor white
}
skinparam cloud {
backgroundColor white
}
!define LAYOUT_TOP_DOWN top to bottom direction
!define LAYOUT_LEFT_RIGHT left to right direction
sprite $Analytics [64x64/16z] {
xTK5WiGW38NXbn1WGkv_tjMwDwml__YqNrtmNRK8tISXfBj5W4UVhDpBTExBtVweRxvv5TfCz9eNnCqWrpo9bOrCwAelc_bzJYdNU0QWvlTAe0glJ14-tt7L
w5d_h6yBJ-hR_W9wMCSTNf0OiUFtVCUj23f-smjojmbSNiR_7BwRkz-dN7l-k7pz-IyXWC9cX13ap3CuxCRWCwyGsqsWPxvaIDn9a2zilqYxnJzv_sg-UQlp
KU_sc7b77-V1mHEFioLN-0iz0m
}
!unquoted procedure $ANALYTICS ($alias, $description="", $label="", $technology="", $scale=1, $colour="693CC5", $shape="rectangle", $textsize="12", $focus="")
%invoke_procedure($SpriteDecorator, "$Analytics", $alias, $description, $label, $technology, $scale, $colour, $shape, $textsize, $focus)
!endprocedure
sprite $AppSync [64x64/16z] {
xPRdrkCW34IlGAYmx_-yMr89PwtZBxzzquF6rWoupFznSN6HuVONZ_n6x5ru8DtpX-eX85tjBze5PEGyZmcevxiNXJY_SmNTTXT-NjveHVK9US_vFGsTXqJa
h55w8GVfmuie7SbLCCPQRDp9G_F26jq066jpYBiU6pJMiK3CX5YpOSm2uRFTSNzxaBH4idBVvwuVs3ByIx4gVD_IqB6iN1URGQ_Qpsrxi2QIVuVbs43Izjcu
vxVIYMFxEbVqvdzhU6m1R7ajn3rhmOkY5VlSTBl_z4zNVbPlJrt7JkhVGp5KY9SF7R4LrVaPG7iR0MpBhvg_5CmRbZUCvWQvp5-nVZBotaZmmfUbAMIvVXsz
Br97sWt1vkntVRr-dNxtr-W3_9aVsf_7dMBryNlp5mtUXGQqk-lakFt8QNIHMvtxgsxzDHZ5kQifeFEOe3Zwj06K_bevEjErIPmukHTa9PUStwD8VA-EHZil
zwqq1p-vh2RqxVv1R9udJO2czfTHtB-KKxdSFzbNkTVtRnSN5ty
}
!unquoted procedure $APPSYNC ($alias, $description="", $label="", $technology="", $scale=1, $colour="CC2264", $shape="rectangle", $textsize="12", $focus="")
%invoke_procedure($SpriteDecorator, "$AppSync", $alias, $description, $label, $technology, $scale, $colour, $shape, $textsize, $focus)
!endprocedure
sprite $ApplicationIntegration [64x64/16z] {
xTO5GiOm30NWbwIIXFlVbxL8AROrmzdxPVfDQ_YkNA67AK7AQZB0mvSRNupDtdikVtahxyHslH5eAkBJ4jcUBr0RSH6t4KNPzMG-qloJ6Erx36zLUVPOyPK0
nBr2L2M5VQ8-5_ViST_dgdkjOMyC4KYRrPoAhNgtp4pDLu31jkP7-J7Qh295lQBsrt7Caxyu_wDtslUG5dLBRKea8kZNZpPtm3CBi7d6WvUqUMavUFsK-bEt
kVuTl7vxzDfyfFoaVlsqpGddL9UzSTlOdBIjQTMxbPIrB-QsggxwEPI-pPTidazSlm24x77FEQj7VQJyKDp7-wzu_tc-_xx6FvVFjXgTV20Vvy4I2O_JKYZu
2xa5
}
!unquoted procedure $APPLICATIONINTEGRATION ($alias, $description="", $label="", $technology="", $scale=1, $colour="CC2264", $shape="rectangle", $textsize="12", $focus="")
%invoke_procedure($SpriteDecorator, "$ApplicationIntegration", $alias, $description, $label, $technology, $scale, $colour, $shape, $textsize, $focus)
!endprocedure
'=============================DECORATORS==================================
' We define 1 or more sprite decorators in stdlib
' Define our decorators that we know now - and can easily define new ones in future with as manty new parameters
' as we want, that we don't even know about yet
' Let's say SpriteDecorator is defined month 1, SpriteDecorator2 is defined month 2, SpriteDecorator3 is defined month 3
'
' https://plantuml.com/preprocessing Conditions to show technology "[ ]" only if technology specified
'""== $label\n": "==" is creole syntax for "Large heading" https://plantuml.com/creole
' rectangle $alias <<$alias>> is in form "shape alias <<stereo>>" where skinparam can be specified for a stereo per https://plantuml.com/skinparam last example
' https://plantuml.com/preprocessing Conditions to show technology "[ ]" only if technology specified
' https://plantuml-documentation.readthedocs.io/en/latest/formatting/all-skin-params.html for all skinparams
'---------------------------------------------------
'add a new shape parameter + a textsize parameter
'---------------------------------------------------
!unquoted procedure $SpriteDecorator($MySprite, $alias, $description="", $label="", $technology="", $scale=1, $colour="blue", $shape="cloud", $textsize="18", $focus="" )
!if ($focus == "hi")
skinparam rectangle {
backgroundColor<<$alias>> yellow
borderColor<<$alias>> yellow
shadowing<<$alias>> true
BorderThickness<<$alias>> 20
}
!endif
!if ($focus == "lo")
skinparam rectangle {
backgroundColor<<$alias>> gainsboro
borderColor<<$alias>> gainsboro
shadowing<<$alias>> false
}
!endif
!if ($technology == "")
$shape $alias <<$alias>> as "
== $label\n
<color:$colour><$MySprite*$scale></color>
$description "
!else
$shape $alias <<$alias>> as "
== $label\n
<color:$colour><$MySprite*$scale></color>
//<size:$textsize>[$technology]</size>//
$description "
!endif
!endprocedure
!$SpriteDecorator = "$Sprite"+ "Decorator"
'=============================END DECORATORS==================================
LAYOUT_LEFT_RIGHT
' User can specify what they want in order (legacy mode), or via named arugments (standard mode)
package modes {
'legacy mode
$ANALYTICS("legacy1", "description", "label", "technology", 1)
$ANALYTICS("legacy2", "desc", "label", "tech", 2, "brown")
'mixed mode
$ANALYTICS("mixed", $shape="cloud")
'standard mode
$APPSYNC($alias="standard", $description="description", $label="label")
}
package scale {
$ANALYTICS($alias="x0.5", $scale="0.5")
$ANALYTICS($alias="x1" )
$ANALYTICS($alias="x1.5", $scale="1.5")
'NOTE: if we use 1.5 instead of "1.5" then it's interpreted as .5 i.e. wrong
x0.5 -->x1
x1--> x1.5
}
'standard mode
package focus {
$APPSYNC($alias="lofocus", $description="description", $label="lo focus", $technology="technology", $focus="lo")
$APPSYNC($alias="normal", $description="description", $label="normal", $technology="technology")
$APPSYNC($alias="hifocus", $description="description", $label="hi focus", $technology="technology", $focus="hi")
lofocus -->normal
normal--> hifocus
}
footer %filename() rendered with PlantUML version %version()\nThe Hitchhiker’s Guide to PlantUML
@enduml | false | true | true | false | uml-unknown |
2661365d747dbcd9f5ef9740aeb7050927c9dd01 | 817bcf63e099537e7e982dd0bd1e938505704d24 | /src/main/java/com/ubb/locexchange/diagrams/domainDiagram.puml | ed1250b59b9cd91114a2ec3d6435ac767c9e13fd | [] | no_license | ciprian197/locexchange | 6179d8b9a6f4c25bc48596889ce9ee1d4a60b5cf | 29935a22cab10e56362dd64d3f17760b0128ffd7 | refs/heads/master | 2022-05-05T14:42:23.777622 | 2022-03-30T08:41:55 | 2022-03-30T08:41:55 | 126,591,269 | 1 | 0 | null | 2020-06-21T14:44:15 | 2018-03-24T11:05:26 | Java | UTF-8 | PlantUML | false | false | 509 | puml | @startuml
enum UserStatus
enum Role
class User
class Address
User o-- Role
User *-- Address
User o-- UserStatus
class User {
-String id
-String webSessionId
-String username
-String firstName
-String lastName
-Role role
-Address address
-GeoJsonPoint location
-UserStatus userStatus
}
class Address {
-String id
-String country
-String city
-String street
-int number
-int apartmentNumber
}
enum Role {
PROVIDER
CLIENT
}
enum UserStatus {
CONNECTED
IN_MISSION
DISCONNECTED
}
@enduml | false | true | false | false | class |
3a232ed48f599ffea5030748b41de1b59628e74a | 3a7fddd38ce5135367381819b01974528b47c912 | /doc/diagrams/OperatingState.puml | df810b40164f67c28607d71568fc087f9ab38561 | [
"Apache-2.0",
"LGPL-2.1-only",
"LGPL-2.0-or-later",
"LGPL-3.0-only",
"MIT",
"GPL-3.0-only",
"LicenseRef-scancode-proprietary-license",
"BSD-3-Clause",
"CC-BY-NC-4.0",
"GPL-2.0-only",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-generic-cla",
"LicenseRef-scancod... | permissive | Hackjaku/astrobee | 8409b671d88535d8d729a3f301019726d01e78d1 | 0ee5a7e90939ab7d81835f56a81fa0d329da0004 | refs/heads/master | 2020-03-30T02:49:58.241804 | 2018-09-27T18:17:47 | 2018-09-27T18:17:47 | 150,653,073 | 3 | 0 | Apache-2.0 | 2018-09-27T22:03:21 | 2018-09-27T22:03:21 | null | UTF-8 | PlantUML | false | false | 908 | puml | @startuml
skinparam sameStateWidth true
'skinparam dpi 300
title Astrobee Operating State (Executive)
[*] --> Ready
Ready -l> Teleoperation : move
Teleoperation -r> Ready : move_completed
Teleoperation -> Ready : stop
Teleoperation -> Ready : idle
Teleoperation -> Teleoperation : move
Ready -r-> PlanExecution : run_plan
PlanExecution -l-> Ready : plan_completed
PlanExecution -l-> Ready : stop
PlanExecution -l-> Ready : pause_plan
PlanExecution -l-> Ready : idle
Ready ---> AutoReturn : dock_return
AutoReturn --> Ready : return_complete
AutoReturn --> Ready : stop
AutoReturn --> Ready : idle
state Fault
note left of Fault
Transition into Fault upon fault
response. Can be transition to from any
other state. Fault can transition to ready
after response is complete or if triggered
by a blocking fault, it requires "clearing"
(by engineer) to return to Ready.
end note
Fault --> Ready
@enduml
| false | true | false | false | sequence |
eb4b1be1c892f174eb59965363e51c0fdb34a742 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/Zone.puml | 6de0a9aaaf22d0a9619395cfa6b66da5813fd98c | [] | 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,126 | 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 Zone [[Zone.svg]] extends BaseResource {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
name: String
description: String
locations: [[Location.svg List<Location>]]
}
interface BaseResource [[BaseResource.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
}
interface ZonePagedQueryResponse [[ZonePagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[Zone.svg List<Zone>]]
}
interface ZoneReference [[ZoneReference.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
obj: [[Zone.svg Zone]]
}
Zone --> ZonePagedQueryResponse #green;text:green : "results"
Zone --> ZoneReference #green;text:green : "obj"
@enduml
| false | true | false | false | sequence |
ef2e973b3bde55c871c604d8faadba37079a4d84 | e2440ea4941db7a0e5fcc2b63a4f7a6d983ecd4e | /ANC3-Diagramme/UC_UPD_MATCH/SD_UPD_MATCH.puml | 885b4769c6ce5a4c16d4cd39cca3d5dba6853ed4 | [] | no_license | rerys/TournamentManager | f744dd6a176a080c78d35f60f011e6c0fcc9cae9 | b2e16f58d030b37c6a821ac16cbe730bd5604492 | refs/heads/master | 2022-11-07T21:55:11.651161 | 2019-05-03T08:11:52 | 2019-05-03T08:11:52 | 275,202,490 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 866 | puml | @startuml SD_UPD_MATCH
hide footbox
skinparam shadowing false
actor user as u
participant ":Tournoi" as v <<View>>
participant ":Controller" as c <<controller>>
participant ":ListeTournois" as lt <<ListeTournois>>
participant ":Tournois" as t <<Tournois>>
activate u
u -> v :setJoueur1(j1 : Joueur)
activate v
deactivate v
u -> v :setJoueur2(j2: Joueur)
activate v
deactivate v
u -> v :setResultats(r: resultats)
activate v
deactivate v
u -> v : updMatch(Joueur j1,Joueur j2,Resultats r)
deactivate u
activate v
activate c
v -> c : updMatch(Joueur j1,Joueur j2,Resultats r)
activate lt
c -> lt : updMatch(Joueur j1,Joueur j2,Resultats r)
activate t
lt -> t :updMatch(Joueur j1,Joueur j2,Resultats r)
t -> t : set(Joueur j1,Joueur j2,Resultats r)
t --> lt : boolean
lt --> c : boolean
c --> v : boolean
deactivate v
deactivate lt
deactivate t
deactivate c
@enduml | false | true | false | false | usecase |
536a3aae0baa8c7f7004e1d5442b04082aab7546 | b56a0dfcbfce78597aa9889f5940b3bea386fab0 | /docs/ex44.puml | 5a7c52c3cc48e12cd7c6e95eeb1db86b973f7847 | [] | no_license | Melisac105/cabrera-cop3330-assignment3 | bbf0694912a2bb5abcda40228273b2951752351f | c314618574b6a73722932aeb9d699f7477dd72fc | refs/heads/master | 2023-06-03T04:29:55.100477 | 2021-06-21T00:44:34 | 2021-06-21T00:44:34 | 377,669,128 | 0 | 0 | null | 2021-06-19T15:49:01 | 2021-06-17T01:16:24 | Java | UTF-8 | PlantUML | false | false | 509 | puml | @startuml
'https://plantuml.com/sequence-diagram
class App {
}
class Files {
+{static}getFileContent()
+{static}parseJson()
}
class Process {
-{static}getProduct()
+{static}process()
}
class Products {
-products : ArrayList<>
+Products()
+getProducts()
}
class Product {
+product()
+getName()
+getPrice()
+getQuantity()
}
class UsrInput {
+getProductName()
}
App o-->Files
App o-->Process
App o-->Products
App o-->UsrInput
Product*-->Products
@enduml | false | true | false | false | class |
cd57dfa75931a6d07b95dc44aa4797590094ca9e | 1c7bd6a3cce56ba3f79777baa62112c7e6d7e5e2 | /examples/class/example-class.puml | bb7344aa142a0b0c6ea0c2fb888353c918e77a68 | [] | no_license | maykonlf/plantuml-style | a1ee5cee3fb406cc1e40bb662f82cc9cefbcb30c | de54fff1fd6f9a7e43162036ba8cbf66f2551126 | refs/heads/main | 2023-08-14T23:22:40.774459 | 2021-10-09T15:22:59 | 2021-10-09T15:22:59 | 414,757,349 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 578 | puml | @startuml
!define DARKBLUE
!include https://raw.githubusercontent.com/maykonlf/plantuml-style/main/style.puml
' !include style.puml
class Object << general >>
Object <|--- ArrayList : parent
note top of Object : In java, every class\nextends this one.
note "This is a floating note" as N1
note "This note is connected\nto several objects." as N2
Object .. N2
N2 .. ArrayList : a message
class Foo {
-privateField
+publicField
#protectedField
~classProtected
styled method01();
void method02();
}
note bottom: On last defined class
Foo -[hidden]> Object
@enduml | false | true | false | false | class |
f27a16ad03a5554c19a700acfb7856f0c1737c67 | 80f7f4282634a6e4687c974e3fe9f48f988fed03 | /doc/puml/ClientClasses.puml | c6008982f3fbe943cd0c5ccc577e8bb47f56f379 | [
"Apache-2.0"
] | permissive | ConsensusJ/consensusj | ccea2432aadf1b9f02df4f96711facdbc07d9b9e | c7ab776d5700409fa52cb77a5e8651d82f59d9e4 | refs/heads/master | 2023-08-22T19:12:44.882289 | 2023-08-15T09:30:37 | 2023-08-15T16:04:45 | 40,155,526 | 69 | 29 | Apache-2.0 | 2023-08-28T13:02:50 | 2015-08-04T01:00:20 | Java | UTF-8 | PlantUML | false | false | 1,376 | puml | @startuml
skinparam packageStyle Rect
skinparam shadowing false
hide empty members
namespace org.consensusj.jsonrpc {
interface UntypedRPCClient
abstract class AbstractRPCClient
class RPCClient
UntypedRPCClient <|.. AbstractRPCClient
AbstractRPCClient <|-- RPCClient
}
namespace org.consensusj.jsonrpc.groovy {
interface DynamicRPCFallback << Groovy, trait >>
class DynamicRPCClient << Groovy >>
org.consensusj.jsonrpc.UntypedRPCClient <|.. DynamicRPCFallback
org.consensusj.jsonrpc.RPCClient <|-- DynamicRPCClient
DynamicRPCFallback <|.. DynamicRPCClient
}
namespace org.consensusj.bitcoin.rpc {
class BitcoinClient
class BitcoinExtendedClient
class BitcoinScriptingClient << Groovy >>
class BitcoinCLIClient << Groovy >>
org.consensusj.jsonrpc.RPCClient <|-- BitcoinClient
BitcoinClient <|-- BitcoinExtendedClient
BitcoinExtendedClient <|-- BitcoinScriptingClient
org.consensusj.jsonrpc.groovy.DynamicRPCFallback <|.. BitcoinScriptingClient
BitcoinClient <|-- BitcoinCLIClient
}
namespace org.consensusj.namecoin.rpc {
class NamecoinClient
class NamecoinScriptingClient << Groovy >>
org.consensusj.bitcoin.rpc.BitcoinClient <|-- NamecoinClient
NamecoinClient <|.. NamecoinScriptingClient
org.consensusj.jsonrpc.groovy.DynamicRPCFallback <|.. NamecoinScriptingClient
}
@enduml
| false | true | false | false | class |
0faadeef5bc6c029adef21ee7fcfee4a42c450bb | 2f155271d292d377036fa1f443bf6ad4635f3469 | /sequence_diagram/modifyEffectPresent.puml | 9c580780b7b8c3efbb8c2e0c116df399b052c130 | [] | no_license | austudio-team/austudio-uml-graph | 1519a4589469e943a11d899d743d023b3f42b584 | e22788d17814ae3e61703e0daf414f60bab2b25c | refs/heads/master | 2021-03-03T09:13:02.261657 | 2020-03-29T17:54:45 | 2020-03-29T17:54:45 | 245,948,897 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 480 | puml | @startuml
actor User
User -> DropdownItem: handleOpenEffectPanel()
activate DropdownItem
DropdownItem -> AudioEffectAction: openEffectPanel()
deactivate DropdownItem
User -> EffectPanel: handlePresentChange()
activate EffectPanel
EffectPanel -> AudioEffectAction: modifyEffect()
AudioEffectAction -> AudioEffectSaga: updateEffectSaga()
AudioEffectSaga -> EventEmitter: emit('EFFECT_UPDATE_EFFECT');
EventEmitter -> AudioController: updateEffect();
deactivate EffectPanel
@enduml | false | true | false | false | usecase |
08b0b29b4011afd18ea5258e672c3714004155de | b13c95e4bfbc92cb752396b82dd0995b8c7f32b1 | /docs/recoverwallet.puml | e89743a402e0d626d07be3ba40c5e0418ac2d740 | [
"MIT"
] | permissive | 0chain/zwalletcli | f9222e9a64d8d7738192a374e621fc8024c097dc | 1d0a8fd963140f747adef9989813b7b81b2bf8dc | refs/heads/staging | 2023-08-05T08:39:43.774548 | 2023-07-27T16:05:27 | 2023-07-27T16:05:27 | 191,838,462 | 20 | 19 | MIT | 2023-09-13T15:01:55 | 2019-06-13T21:57:24 | Go | UTF-8 | PlantUML | false | false | 430 | puml | @startuml
participant "<size:20><&terminal></size> ./zwallet recoverwallet" as cli
participant "<size:20><&file></size> \~/.zcn/wallet.json" as wallet
collections miners
collections sharders
cli -> cli: create wallet from mnemonics
cli -> wallet: create wallet file
cli -> miners: register wallet
cli -> cli: create "create pool" SC txn
cli -> miners: send "create pool" SC txn
cli -> sharders: poll for txn confirmation
@enduml | false | true | false | false | sequence |
c3c4cc165d1bb2d7d92416f31b6d348bde05f8be | c2b6bfee8da36cc39de688e146ba107b74218b12 | /plantuml/objectmodel/details/condition.plantuml | 12cea20eb1287f6a76d83e09c15e76fbfc8570f1 | [
"Apache-2.0"
] | permissive | TOMP-WG/TOMP-API | 02bbd268c6ece21f7a5d28f4e42e1b456233e8e9 | 2aa6ae3d6b355a12a8936ff1069821bb7c89a743 | refs/heads/master | 2023-09-01T16:13:50.445300 | 2023-07-25T12:08:52 | 2023-07-25T12:08:52 | 189,022,994 | 80 | 34 | Apache-2.0 | 2023-08-22T12:36:34 | 2019-05-28T12:21:59 | null | UTF-8 | PlantUML | false | false | 939 | plantuml | @startuml generated
class Condition {
+String conditionType
String id
}
class ConditionDeposit {
}
ConditionDeposit -up-|> Condition
class ConditionPayWhenFinished {
}
ConditionPayWhenFinished -up-|> Condition
class ConditionPostponedCommit {
+String ultimateResponseTime
}
ConditionPostponedCommit -up-|> Condition
class ConditionRequireBookingData {
+String requiredFields
String claims
}
ConditionRequireBookingData -up-|> Condition
class ConditionReturnArea {
String stationId
Coordinates coordinates
}
ConditionReturnArea -up-|> Condition
ConditionReturnArea -- "0..1" GeojsonPolygon : returnArea >
ConditionReturnArea -down-{ SystemHours : returnHours >
class GeojsonPolygon {
}
class SystemHours {
String userType
String stationId
String regionId
+String startTime
+String endTime
}
SystemHours -down-{ Day : days >
enum Day {
}
class ConditionUpfrontPayment {
}
ConditionUpfrontPayment -up-|> Condition
@enduml
| false | true | false | false | class |
f9ae785881601055bfdb1d8b661565cf7c5a8675 | 19583f5446f1ae5122400ffdeacd9eda078166a8 | /resources/puml/cookie-sequence.puml | f2d056f77eb5aebffbb4736f298da904e84fe836 | [] | no_license | raghavendranvc/dp | 18369890c940e5bb6e05c53f14e4fde1d3d648fb | afcda7732e83688fcf0ce1ff3c033d1c3b77265e | refs/heads/master | 2022-11-30T19:42:27.191095 | 2020-07-22T13:59:31 | 2020-07-22T13:59:31 | 108,888,554 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,979 | puml | @startuml
actor Client
participant UserService
participant APILazlo
boundary MBus
box "RCLS" #LightGrey
participant RCLSListener
participant RCLSWorker
participant RCLS
participant RaaS
database DB
end box
participant JanusAggregator
group "Erase Message Publish"
activate Client
Client -> UserService: POST /Erase/userUUID
activate UserService
UserService -> UserService: Erase Personal Data
UserService --> MBus: erased topic
activate MBus
UserService <-- MBus
deactivate MBus
Client <-- UserService
deactivate UserService
deactivate Client
end
group "Message Listener"
activate MBus
MBus -> RCLSListener: erased topic
activate RCLSListener
RCLSListener -> RaaS: Enqueue/userUUID
activate RaaS
RCLSListener <-- RaaS
deactivate RaaS
MBus <-- RCLSListener
deactivate RCLSListener
deactivate MBus
end
group "Erasure Message Processing"
RCLSWorker -> RCLSWorker: BackgroundJob, RedisQueueListener
activate RCLSWorker
RCLSWorker -> RaaS: Dequeue/userUUID
activate RaaS
RCLSWorker <-- RaaS
deactivate RaaS
alt
RCLSWorker -> JanusAggregator: GET Map userBCookie/userUUID
activate JanusAggregator
RCLSWorker <-- JanusAggregator: List<BCookie>
deactivate JanusAggregator
RCLSWorker -> DB: Store<BCookie,UserUUID>
activate DB
DB <-- RCLSWorker
deactivate DB
RCLSWorker -> MBus: Publish erased completed
activate MBus
RCLSWorker <-- MBus
deactivate MBus
else "on Exception"
RCLSWorker -> RaaS: EqueueFailure/userUUID
activate RaaS
RCLSWorker <-- RaaS
deactivate RaaS
end
deactivate RCLSWorker
end
group Cookie Validation
activate Client
Client -> APILazlo: GET /status API
activate APILazlo
APILazlo -> RCLS: GET /validateBCookie API
activate RCLS
RCLS -> DB: search
activate DB
RCLS <-- DB
deactivate DB
APILazlo <-- RCLS
deactivate RCLS
Client <-- APILazlo
deactivate APILazlo
deactivate Client
end
@enduml
| false | true | false | false | sequence |
67b1938e7356e1c46fd1ce23b8d656a73466d9a3 | 55261e1e9a841f514598d8fb0fbe95a7493460e3 | /class/classes/modules/delegates.puml | ca4075db6c06a25e4f041f8d7d4f3cd8881390c6 | [] | no_license | LucasIsasmendi/lisk-core-plantuml | ac01094fd56590b361ab8992b52f0cfc3175aa60 | e0941f6e800dc16a9dc0f8367304149fbf2200e1 | refs/heads/master | 2021-01-21T11:53:42.861882 | 2017-05-24T12:56:58 | 2017-05-24T12:56:58 | 91,758,697 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,542 | puml | @startuml
class Delegates < module > {
- __private: {}
- self: this
.. __private ..
- assetTypes[2]: new Delegate (schema)
- blockReward: new BlockReward ()
.. library..
- logger
- sequence
- ed
- db
- network
- schema
- balancesSequence
- logic.transaction
- config.forging.secret
- config.forging.access.whiteList
.. modules..
- loader
- rounds
- accounts
- blocks
- transport
- transactions
- delegates
-- Methods --
+ Delegates (cb, scope)
+ generateDelegateList (height, cb)
+ getDelegates (query, cb)
+ checkConfirmedDelegates (publicKey, votes, cb)
+ checkUnconfirmedDelegates (publicKey, votes, cb)
+ fork (block, cause)
+ validateBlockSlot (block, cb)
+ sandboxApi (call, args, cb)
+ onBind (scope)
+ onBlockchainReady ()
+ cleanup (cb)
+ isLoaded ()
.. __private ..
- getKeysSortByVote (cb)
- getBlockSlotData (slot, height, cb)
- forge (cb)
- checkDelegates (publicKey, votes, state, cb)
- loadDelegates (cb)
-- API --
.. shared ..
+ getDelegate (publicKey, username, cb)
+ getNextForgers (limit, cb)
+ search (orderBy, q, limit, cb)
+ count (*, cb)
+ getVoters (publicKey, cb)
+ getDelegates (schema, cb)
+ getFee (*, cb)
+ getForgedByAccount (start, end, generatorPublicKey, cb)
+ addDelegate (secret, publicKey, cb)
.. internal ..
- forgingEnable (secret, publicKey, cb)
- forgingDisable (secret, publicKey,cb)
- forgingStatus (publicKey, cb)
- forgingEnableAll (*, cb)
- forgingDisableAll (*, cb)
}
@enduml
| false | true | false | false | class |
3786c73a56783bd3163719a10711ee4caf4a2ab3 | 981d1e050c027cba8a5dd9d2ac37e7193a9a4e06 | /src/main/java/ex42/base/ex42plant.puml | cb70eae70dbcce1101ed07682da2abace8c1ebbd | [] | no_license | cristiam193/enciso-cop3330-assignment3 | 1a3ae88a3321941111774d95fb6253ccbd9c41ae | 8641fe7d5ca905449e0bf4277cad5dc0b2be27ec | refs/heads/master | 2023-06-02T03:56:44.526844 | 2021-06-21T01:56:26 | 2021-06-21T01:56:26 | 378,743,144 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 381 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
+main()
+getOutput()
}
class PersonList {
+parseList()
+printTable()
}
class Person {
-String firstName
-String lastName
-String Salary
+setFirstName()
+getFirstName()
+setLastName()
+getLastName()
+setSalary()
+getSalary()
}
App o-> PersonList
PersonList o-> Person
@enduml | false | true | false | false | class |
a6c5856136cb660135c767311e74f978680ce0ca | 231b061922747841571a49399cc149ff95b0dc15 | /coding/frontend/app/src/main/java/com/example/guesswhereapp/guesswhereapp.plantuml | 5f18230fd2a25cc7e7d527915ee7916b623b8381 | [] | no_license | Eightdays1/guesswhere | 721dbe495bddc3b3f0a63e25f45d0f8eeedd96f2 | f4c85dcb4c1b80d8f6945faa006afdee10be0100 | refs/heads/main | 2023-05-15T08:49:55.801962 | 2021-06-16T07:59:00 | 2021-06-16T07:59:00 | 301,965,334 | 0 | 1 | null | 2021-06-16T07:34:18 | 2020-10-07T07:57:11 | Java | UTF-8 | PlantUML | false | false | 5,271 | plantuml | @startuml
title __GUESSWHEREAPP's Class Diagram__\n
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.Database_test {
{static} + changePassword()
{static} + create_user()
{static} + database_check()
{static} + getNewImage()
{static} + request_access_token()
{static} + saveGame()
{static} + requestStatistic()
{static} + deleteStatistic()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.GameScreen {
{static} + coordinate_1 : float
{static} + coordinate_2 : float
{static} + guessed_coordinate_1 : float
{static} + guessed_coordinate_2 : float
{static} + whichscreen : int
~ imageView : ImageView
# onCreate()
- startAnotherGameActivity()
- startLocationPickerActivity()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.HelpScreen {
+ returnToMain()
# onCreate()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.LocationPickerActivity {
{static} - DROPPED_MARKER_LAYER_ID : String
- droppedMarkerLayer : Layer
- hoveringMarker : ImageView
- mapView : MapView
- mapboxMap : MapboxMap
- permissionsManager : PermissionsManager
- selectLocationButton : Button
+ onExplanationNeeded()
+ onLowMemory()
+ onMapReady()
+ onPause()
+ onPermissionResult()
+ onRequestPermissionsResult()
+ onResume()
# onCreate()
# onDestroy()
# onSaveInstanceState()
# onStart()
# onStop()
- enableLocationPlugin()
- initDroppedMarker()
- reverseGeocode()
- startAnotherGameActivity()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.LoginScreen {
+ openDialog()
+ startRegisterActivity()
# onCreate()
- login()
- reload_main()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.MainScreen {
{static} + popupMessage : String
{static} + user : User
{static} + whichPopup : int
+ MainScreen()
# onCreate()
- openDialog()
- startGameActivity()
- startHelpActivity()
- startLocationPickerActivity()
- startLoginActivity()
- startMapActivity()
- startOptionsActivity()
- startStatisticsActivity()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.MapActivity {
+ mapboxMap : MapboxMap
- mapView : MapView
# onCreate()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.OptionsScreen {
{static} + whichscreen : int
# onCreate()
- openDialog()
- startAnotherOptionsActivity()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.Popup {
+ onCreateDialog()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.RegisterScreen {
# onCreate()
- openDialog()
- reload_main()
- try_creating_user()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.StatisticsScreen {
# onCreate()
{static} + loadData()
{static} + deleteStatistics()
}
}
namespace com.example.guesswhereapp {
class com.example.guesswhereapp.User {
- AccessToken : String
- Username : String
{static} + factory()
+ getAccessToken()
+ getUsername()
- User()
}
}
com.example.guesswhereapp.Database_test -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.GameScreen -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.HelpScreen -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.LocationPickerActivity .up.|> com.mapbox.android.core.permissions.PermissionsListener
com.example.guesswhereapp.LocationPickerActivity .up.|> com.mapbox.mapboxsdk.maps.OnMapReadyCallback
com.example.guesswhereapp.LocationPickerActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.LoginScreen -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.MainScreen -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.MapActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.OptionsScreen -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.Popup -up-|> androidx.appcompat.app.AppCompatDialogFragment
com.example.guesswhereapp.RegisterScreen -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.StatisticsScreen -up-|> androidx.appcompat.app.AppCompatActivity
com.example.guesswhereapp.User -up-|> androidx.appcompat.app.AppCompatActivity
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
4cb28e04478e345c9fbc211b473d45c359531af9 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartSetCustomFieldAction.puml | 558e5235215261b508af4908854631998b788da4 | [] | 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 | 464 | 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 CartSetCustomFieldAction [[CartSetCustomFieldAction.svg]] extends CartUpdateAction {
action: String
name: String
value: [[Object.svg Object]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
3e745d2fc466ff232eff6e3ddce366e7904c8437 | 4e66b60562009e54e3249595d08d88573c1d7fba | /test/PlantUmlClassDiagramGeneratorTest/uml/NotAttributeRequired.puml | 4056abddf5009c1189238583dbb5f7dee462aeb0 | [
"MIT"
] | permissive | pierre3/PlantUmlClassDiagramGenerator | a17a7ec5e3b547b0a9d5afee1d74436c6d602782 | 00bd84d543a14f05c95857426060e677c4668cc8 | refs/heads/master | 2023-07-06T01:15:15.436366 | 2023-05-31T13:39:56 | 2023-06-02T10:24:02 | 41,860,665 | 598 | 123 | MIT | 2023-08-20T06:56:51 | 2015-09-03T13:17:42 | C# | UTF-8 | PlantUML | false | false | 937 | puml | @startuml
class ClassA {
}
class ClassB {
}
interface IInterfaceA {
Num2 : double <<get>>
}
interface IInterfaceB {
Num2 : double <<get>>
}
class RecordA <<record>> {
+ Prop1 : string <<get>>
+ Prop2 : string <<get>>
+ RecordA(prop1:string, prop2:string)
}
class RecordB <<record>> {
+ Prop1 : string <<get>>
+ Prop2 : string <<get>>
+ RecordB(prop1:string, prop2:string)
}
class StructA <<struct>> {
+ StructA(field1:RecordA)
}
class StructB <<struct>> {
+ StructB(field1:RecordB)
}
class RecordStructA <<record>> <<struct>> {
+ X : int <<get>> <<init>>
+ Y : int <<get>> <<init>>
}
class RecordStructB <<record>> <<struct>> {
+ X : int <<get>> <<init>>
+ Y : int <<get>> <<init>>
}
enum EnumA {
A,
B,
C,
}
enum EnumB {
A,
B,
C,
}
StructA --> "field1" RecordA
StructA --> RecordA : "use"
StructB --> "field1" RecordB
StructB --> RecordB : "use"
@enduml
| false | true | true | false | sequence |
2bf0c9e6eff5c8e510168926e67a0735bfc78383 | 4e11061662730c155952dc6b85ac7d56db58ab2d | /docs/design/network-discovery/ISL-FSM.puml | 379d920f6af3040359319378b3373141f58a9d40 | [
"Apache-2.0"
] | permissive | puneetd7th/open-kilda | 9890cd76cb836d5d8c70b4fa8bab0f14064ad11d | 91304361706de401765b09b705fbaf6d0acbb70c | refs/heads/master | 2022-11-12T10:33:46.156725 | 2020-07-07T12:39:35 | 2020-07-07T12:39:35 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,239 | puml | Internal data:
* reference
* effective-status
* port-state-monitor
* poll-monitor
* bfd-monitor
* round-trip-monitor
Input signals:
* isl-up
* isl-down
* isl-move
* BFD-up
* BFD-down
* round-trip-status
Internal(self-injected) signals
* _become_down
Output signals:
* bisl-up (notify BFD-port, notify reroute)
* bisl-down (notify reroute)
* bisl-bfd-enable
* bisl-bfd-disable
* isl-move
@startuml
title ISL FSM
[*] --> OPERATIONAL
state OPERATIONAL {
[*] --> PENDING
PENDING --> ACTIVE : _become_up
PENDING --> INACTIVE : _become_down
PENDING --> MOVED : _become_moved
state ACTIVE {
[*] --> SET_UP_RESOURCES
SET_UP_RESOURCES --> USABLE : _resources_done
SET_UP_RESOURCES : enter / init attempts count from config
SET_UP_RESOURCES : enter / send install isl rules for A-end
SET_UP_RESOURCES : enter / send install isl rules for Z-end
SET_UP_RESOURCES : isl-rule-installed / mark setup done for mentioned endpoint
SET_UP_RESOURCES : isl-rule-installed [both sides are valid] / emit _setup_done
SET_UP_RESOURCES : isl-rule-timeout [has attempts] / emit install isl rules for timeout endpoint
SET_UP_RESOURCES : isl-rule-timeout [!has attempts] / emit _setup_done
USABLE : enter / persist state
USABLE : enter [enable_bfd in DB is set] / emit bisl-bfd-enable
USABLE : enter / emit reroute-down
}
ACTIVE --> INACTIVE : _become_down
ACTIVE --> MOVED : _become_moved
INACTIVE --> ACTIVE : _become_up
INACTIVE -r-> MOVED : _become_moved
INACTIVE : enter / persist state
INACTIVE : enter / emit isl-down
INACTIVE : enter / emit reroute-affected
MOVED --> ACTIVE : _become_up
MOVED : enter / persist state
MOVED : enter / emit isl-move
MOVED : enter / emit bisl-bfd-disable
MOVED : enter / emit reroute-affected
}
OPERATIONAL --> CLEAN_UP_RESOURCES : isl-remove [effective_status != ACTIVE]
OPERATIONAL : enter / setup discovery monitors
OPERATIONAL : enter / load persisted state
OPERATIONAL : enter [effective_status == ACTIVE && enable_bfd in DB is set] / emit bisl-bfd-enable
OPERATIONAL : isl-(up|down|move) / evaluate-state (can emit sync and|or _become_(up|down|moved))
OPERATIONAL : bfd-(up|down|kill) / evaluate-state (can emit sync and|or _become_(up|down))
OPERATIONAL : round-trip-status / evaluate-state (can emit sync and|or _become_(up|down))
OPERATIONAL : _flush / persist discovery data
OPERATIONAL : exit / emit bisl-bfd-disable
CLEAN_UP_RESOURCES : enter / init attempts count from config
CLEAN_UP_RESOURCES : enter / send remove isl rules for A-end endpoint
CLEAN_UP_RESOURCES : enter / send remove isl rules for Z-end endpoint
CLEAN_UP_RESOURCES : isl-rule-installed / mark remove done for mentioned endpoint
CLEAN_UP_RESOURCES : isl-rule-removed [both endpoints are valid] / emit isl-remove-finished
CLEAN_UP_RESOURCES : isl-rule-timeout [has attempts] / emit remove isl rules for timeout endpoint
CLEAN_UP_RESOURCES : isl-rule-timeout [!has attempts] / emit isl-remove-finished
CLEAN_UP_RESOURCES --> DELETED : _resources_done
CLEAN_UP_RESOURCES --> OPERATIONAL : isl-(up|down|move)|bfd-(up|down|kill)|round-trip-status
DELETED -> [*]
@enduml
| false | true | false | false | sequence |
1adeeff8605b8cb93f626f0eb743a3c26c8c0848 | 2c4f2efab569c5d9302f9c00a972298802e61f67 | /Task2_MultiThreading/src/by/training/task2/validator/validator.plantuml | 107537bbd467323cea3db08c5e3e7e2f2f33dc01 | [] | no_license | alialiusefi/EPAM_JavaWebDev_Course | 066ffe0c3b3fcdd5b5a51b2e59e887752b1f1157 | b229167d84b118147d6b255229976b0ff3ec23aa | refs/heads/master | 2022-12-04T15:02:37.944559 | 2019-08-03T08:56:54 | 2019-08-03T08:56:54 | 170,365,647 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 383 | plantuml | @startuml
title __VALIDATOR's Class Diagram__\n
package by.training.task2.validator {
class DataValidator {
- INT_REGEX : String
+ validateData()
}
}
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 |
53986da33bdab44b752cc2c19f24143f75aac60d | 50c462c631857f7e639d4aa9dff911336959f83a | /class-diagram-new.plantuml | d856ad5510750c1eb7c1a72227275a009b800407 | [] | no_license | TeamSWT7/02-AirTrafficMonitoring | 1b7d36d643ab237a68b8005bbc6ca69f9077a64d | 4fe4247a88b30e5432ee8467d9037f94a73c2974 | refs/heads/master | 2020-04-27T00:23:28.546334 | 2019-03-25T17:28:30 | 2019-03-25T17:28:30 | 173,932,543 | 0 | 0 | null | 2019-03-24T17:06:49 | 2019-03-05T11:18:02 | C# | UTF-8 | PlantUML | false | false | 4,949 | plantuml | @startuml
skinparam shadowing false
skinparam monochrome true
skinparam backgroundColor transparent
skinparam classBackgroundColor transparent
skinparam style strictuml
class AirTrafficMonitor {
- _flightTransponderHandler : FlightTransponderHandler
- _flightParser : FlightParser
- _flightValidator : FlightValidator
- _flightHandler : FlightHandler
- _conflictHandler: ConflictHandler
+ _printer : IPrinter
--
+ SetPrinter(IPrinter printer) : void
}
AirTrafficMonitor o--- FlightTransponderHandler
AirTrafficMonitor o--- FlightParser
AirTrafficMonitor o--- FlightValidator
AirTrafficMonitor o--- FlightHandler
AirTrafficMonitor o--- ConflictHandler
AirTrafficMonitor o-- Airspace
AirTrafficMonitor o-- Printer
interface IObserver<T> {
+ Update(T) : void
}
interface ISubject<T> {
- _observers : List<Observer<T>>
--
+ Attach(Observer<T>) : void
+ Detach(Observer<T>) : void
+ Notify(T) : void
}
interface IConflictHandler {
GetConflicts() : List<Conflict>
CheckForConflicts(Flight flight1, Flight flight2) : void
CheckHorizontalDistance(Flight flight1, Flight flight2) : bool
CheckVerticalDistance(Flight flight1, Flight flight2) : bool
}
ISubject <|-- IConflictHandler
IObserver <|-- IConflictHandler
interface IFlightHandler {
GetFlights() : List<Flight>
HandleFlight(Flight next) : void
UpdateFlightInfo(Flight prev, Flight next) : void
CalculateVelocity(Flight prev, Flight next) : double
CalculateDirection(Flight prev, Flight next) : double
}
ISubject <|-- IFlightHandler
IObserver <|-- IFlightHandler
interface IFlightParser {
GetNext() : Flight
ParseString(string s) : void
ParseDate(string s) : DateTime?
}
IObserver <|-- IFlightParser
ISubject <|-- IFlightParser
interface IFlightTransponderHandler {
GetNext() : string
OnReceivedData(object sender, RawTransponderDataEventArgs e) : void
}
IObserver <|-- IFlightTransponderHandler
ISubject <|-- IFlightTransponderHandler
interface IFlightValidator {
ValidateFlight(Flight flight) : void
}
IObserver <|-- IFlightValidator
ISubject <|-- IFlightValidator
interface IPrinter {
SetFlightHandler(IFlightHandler handler) : void
}
IObserver <|-- IPrinter
ISubject <|-- IPrinter
class Airspace {
+ Position : Coords <<get>> <<set>>
+ Width : int <<get>> <<set>>
+ Length : int <<get>> <<set>>
+ Height : int <<get>> <<set>>
+ InArea(Flight flight): bool
}
FlightValidator o-- Airspace
class Conflict {
- _first : Flight
- _second : Flight
+ ToString() : string
}
ConflictHandler o--Conflict
class ConflictHandler {
- _conflicts : List<Conflict> <<readonly>>
+ GetConflicts() : List<Conflict>
+ Update(IFlightHandler fh) : void
+ CheckForConflicts(Flight flight1, Flight flight2) : void
+ CheckHorizontalDistance(Flight flight1, Flight flight2) : void
+ CheckVerticalDistance(Flight flight1, Flight flight2) : void
}
IConflictHandler <|--ConflictHandler
Subject <|--ConflictHandler
class Coords{
+ x : int
+ y : int
+ z : int
+ Equals(object obj) : bool
+ ToString() : string
}
Airspace o-- Coords
Flight o-- Coords
class Flight{
+ tag : string
+ position : Coords
+ timestamp : DateTime
+ velocity : double
+ direction : double
+ Equals(object obj) : bool
+ ToString() : string
}
Conflict o--Flight
FlightParser o--Flight
FlightHandler o--Flight
FlightValidator o--Flight
class FlightHandler{
- flights : List<Flight>
+ Update(IFlightParser flightParser) : void
+ HandleFlight(Flight next) : void
+ UpdateFlightInfor(Flight prev, Flight next) : void
+ CalculateVelocity(Flight prev, Flight next) : double
+ CalculateDirection(Flight prev, Flight next) : double
+ GetFlights() : List<Flight>
}
IFlightHandler <|-- FlightHandler
Subject <|-- FlightHandler
Printer o-- FlightHandler
class FlightParser{
- flights : List<Flight>
+ Update(IFlightTransponderHandler fth) : void
+ GetNext() : Flight
+ ParseString(string s) : void
+ ParseDate(string s) : DateTime?
}
IFlightParser <|-- FlightParser
Subject <|-- FlightParser
class FlightTransponderHandler{
- _receiver : ITransponderReceiver
- _flightStrings : List<string>
+ GetNext() : string
+ OnReceivedData(object sender, RawTransponderDataEventArgs e) : void
}
Subject <|--FlightTransponderHandler
IFlightTransponderHandler <|-- FlightTransponderHandler
class FlightValidator{
- _flights : List<Flight>
- _airspace : Airspace
+ Update(IFlightHandler fh) : void
+ ValidateFlight(Flight flight) : void
}
IFlightValidator <|--FlightValidator
Subject <|-- FlightValidator
class Subject{
+ _observers : List<IObserver<T>>
+ Attach(IObserver<T> observer) : void
+ Detach(IObserver<T> observer) : void
+ Notify(T s) : void
}
ISubject <|-- Subject
class Printer{
- _flightHandler : IFlightHandler
+ Update(IConflictHandler ch) : void
+ SetFlightHandler(IFlightHandler handler) : void
}
IPrinter <|-- Printer
@enduml
| false | true | false | false | class |
82c30a1d9ff32c4030dfc878c86ed293f161b17a | 427b4b7ee49422ecf39bfd90f9612f7cfe62afb6 | /src/State.puml | becf4aebe7450c248120d6ff9b322c3f37bdf5f9 | [
"Apache-2.0"
] | permissive | EasyKotlin/kotlin-demo | deed59bdfe7fac89a36c3fe0eed21d7d5c2e1c35 | 35dc28d8b08df08ffc6f2201466cc6e0d9b989bd | refs/heads/master | 2020-07-01T21:35:13.667782 | 2019-10-17T07:39:30 | 2019-10-17T07:39:30 | 201,309,642 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 201 | puml | @startuml
[*] --> A
state A {
[*] -> X
X -> B : f
}
state B {
[*] --> C
C --> D : x
D --> C : y
D --> C : z
state C {
R -> S: t
}
}
state E {
F -> G
B -> E
}
@enduml
| false | true | false | false | sequence |
c61f22d885f495579160f922c543afae6d212dec | ca0a47ab46b3f7a5c5bfaa2c7c4bf078e3646c32 | /PlantUML/src/GUIcomponentDiagram.plantuml | 8fa223b77dd708ebdd990c9e1aaed73c3495d4f4 | [] | no_license | LasseKrarup/Laser-Tag-Project | 4ea4b496c2e59c54512c4275247bf1bf3f452c5f | 07510f50a6c98d9ffb59550b63838435da25ca4a | refs/heads/master | 2021-07-14T09:54:43.202288 | 2019-06-26T11:41:30 | 2019-06-26T11:41:30 | 171,651,265 | 4 | 0 | null | 2020-07-07T04:42:06 | 2019-02-20T10:22:59 | HTML | UTF-8 | PlantUML | false | false | 792 | plantuml | @startuml GUIcomponentDiagram
skinparam {
monochrome true
dpi 300
padding 5
packageStyle rectangle
packageStyle frame
shadowing false
}
frame "**GUI** - Component diagram" {
interface "WebSocket" as ws
interface "Feedback" as fb
interface "Input"
actor User
[Electron] --> [Main Window]: creates
[Electron] --> [Menu]: creates
[Main Window] --> [React App]: contains
[Main Window] --> [WebSocket Client]: uses
[WebSocket Client] - ws
[FormArea] - Input
[React App] --> [PlayerList] : renders
[React App] --> [FormArea] : renders
[React App] --> [ErrorMessage] : renders
[React App] --> [GameTimer] : renders
[ErrorMessage] - fb
User -up-> Input: Enters to
User -up-> fb: Reads from
}
@enduml | false | true | false | false | sequence |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.