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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
226f5c11f9ae4f8cd29766b4f3aaaac0a70eaa2f | d2bd504225b3226408cd6d694463026901351beb | /TP1/2.2.plantuml | 3066e85203d1443798b27e924f58c2301992a57b | [
"MIT"
] | permissive | IUT-Blagnac/bcoo-Wassim746531 | f1837cb1da547d080a1dff80777a7ee8e74eb0aa | d02f3aa2ace6fbce82314511afaa3fa6cdf3239a | refs/heads/main | 2023-04-05T23:39:11.614138 | 2021-04-27T12:50:28 | 2021-04-27T12:50:28 | 335,635,831 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 330 | plantuml | @startuml
hide circle
hide empty attributes
hide empty methods
class Portable{
prix
valeurActuelle
}
class Clavier{
Type TypeClavier
touches
}
enum TypeClavier{
azerty
qwerty
}
class P as "Proprio"{
nom
prenom
}
Clavier "1" -- "1" Portable
Clavier -up- TypeClavier
Portable "0..1" -- "0..1" P
@enduml
| false | true | false | false | class |
5be95271b4ed43abedb676006ad4177265a73540 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/troubleTicket/media/src/e2eFlowWithAppointment.puml | 5c7a655468ea8c2c21e20438bf0fdb7de11c03b1 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 1,401 | puml | @startuml
hide footbox
participant Buyer
entity "Trouble Ticket" as TT
entity "WorkOrder" as WORK
entity "SearchTimeslot " as SAT
entity "Appointment" as APO
autonumber
Buyer -> TT : POST /troubleTicket request
activate TT
TT -> TT: status: acknowledged
...
note over WORK: The Seller decides WorkOrder for Trouble Ticket is needed.
WORK -> Buyer: POST /workOrderCreateEvent
activate WORK
WORK -> WORK: state: open
WORK --> TT: (causes status change)
TT -> TT: status: pending
note over WORK: The Buyer requests detailed information about a WorkOrder based on a WorkOrder Identifier.
Buyer -> WORK : GET /workOrder/{{id}} request
WORK --> Buyer: GET /workOrder/{{id}} response \n'appointmentRequired=true'
note over SAT: WorkOrder has 'appointmentRequired=true', \nso the Buyer searches for a time slot for scheduling an Appointment.
Buyer -> SAT : POST /searchTimeSlot request
activate SAT
SAT --> Buyer: POST /searchTimeSlot response
deactivate SAT
note over APO: The Buyer schedules an Appointment with confirmed time slot.
Buyer -> APO : POST /appointment request
activate APO
APO -> APO: state: confirmed
APO --> Buyer: /POST appointment response
APO --> WORK: (causes state change)
WORK -> WORK: state: planned
WORK -> Buyer: POST /workOrderStateChangeEvent
WORK --> TT: (causes status change)
TT -> TT: status: inProgress
TT -> Buyer: POST /troubleTicketStatusChangeEvent
...
@enduml
| false | true | false | false | sequence |
80c35e223fb42580c74efd64f52f5d8794a10b38 | df7e33a094bfa3a1bd8875d1fa90e3db0b12a360 | /express-architechtua.puml | 455f957e20488098d88cf023e4debd9a844a7730 | [] | no_license | nhannht/dandaran-blog-backend | 28ddb582131760d3f36e27f008b2207532f015d4 | 16a626b76e4a0046d21bec19db4e037f5b1c4cfe | refs/heads/master | 2023-06-29T20:06:33.991226 | 2021-08-04T07:15:46 | 2021-08-04T16:21:20 | 392,055,645 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 242 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
Frontend <--> Router : view layer pass data to application layer
Router <--> Controller: Controller and router handle data with implementf logic
Controller <--> DataBase
@enduml
| false | true | false | false | sequence |
9fe11c3710a6bff9788258ca6abd787836ed0a94 | 068579f9ad18a1368961dc3b9f812129f4f7e858 | /DesignPattern/State/senza/uml/state_diagram.puml | 8d809f6121acb6c91edf9d8c1e938bdc7af4534e | [] | no_license | AleMidolo/materiale-tutorato-ids | d9c27a9d0da9436842144a7cc8bd6d381f6e3546 | 3d95de651214245b113c92481007ec177ce95471 | refs/heads/master | 2023-03-30T22:05:39.627666 | 2021-04-01T13:53:07 | 2021-04-01T13:53:07 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 417 | puml | ' Documentazione: https://plantuml.com/class-diagram
@startuml
' START STYLE
skinparam {
monochrome true
'shadowing false
classBackgroundColor white
noteBackgroundColor white
classAttributeIconSize 0
'linetype ortho
}
hide circle
' END STYLE
left to right direction
[*] --> Carico
Carico -right-> Scarico: spara
Scarico --> Inceppato: spara
Inceppato --> Scarico: ripara
Scarico --> Carico: ricarica
@enduml | false | true | false | false | sequence |
97014af6c772762895c46c6b71c581fe0d2d5c53 | d3f5323b94d6a2b82dd03958d8eb834acf0fa55a | /orchid/src/main/resources/help/object-diagram/object-diagram-01.uml | 0e987fbec2b4417d0ff79f17a7d69bcf651b0a54 | [] | no_license | unidal/garden | 620d34166804c5f37a0b800befe08b54e87dfee7 | fd77faadb53b86ac251b8d0b8d6a7055e3a74735 | refs/heads/master | 2022-10-31T16:58:16.907708 | 2021-11-22T09:57:38 | 2021-11-22T09:57:38 | 2,817,716 | 8 | 7 | null | 2022-10-12T20:40:47 | 2011-11-21T05:01:48 | HTML | UTF-8 | PlantUML | false | false | 252 | uml | @startuml
object Object01
object Object02
object Object03
object Object04
object Object05
object Object06
object Object07
object Object08
Object01 <|-- Object02
Object03 *-- Object04
Object05 o-- "4" Object06
Object07 .. Object08 : some labels
@enduml | false | true | false | false | class |
ca76c8d3c974b4e1112cc50df53684f8082ac4e1 | 78840a7bfd8e4e2a150bdef7ecb40911ae73fb4f | /src/main/java/Assignment3/Ex41/SortingNames.puml | c27072c3794e51b47d8e8242b2fe48a96c3b13c7 | [] | no_license | RyanKPersad/persad-cop3330-assignment3 | c0b3e6ff5c572a6f15a10f37cc5e266ab89ec87f | a739cd2b7d76f9004bc53495120d62b509bd1e26 | refs/heads/master | 2023-08-26T15:40:52.369486 | 2021-10-12T04:01:52 | 2021-10-12T04:01:52 | 416,087,900 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 122 | puml | @startuml
class NameSort{
-Takes input file
-Counts number of names
}
NameSort --> Sorting
Sorting --> Output
@enduml | false | true | false | false | class |
990dc503e3b1f73d160626c39d5c263c946821ee | 7b13715b0b972ea52b88ad8097cc8cb7b41f2bb1 | /Rendu/doc/javadoc/ch/tofind/commusica/playlist/PlaylistManager.puml | 82b71d15c8ee831422f076a28d7629f446166079 | [] | no_license | heig-vd-pro2017/projet | 8f6e9bb5cc75baaf809eda87b31d7de8c632f713 | db1e7ff720076eea9efe2c4fc8bcad97d80ca2f1 | refs/heads/master | 2021-01-16T23:21:13.159819 | 2017-05-29T17:32:48 | 2017-05-29T17:32:48 | 82,906,602 | 5 | 2 | null | 2017-04-02T16:05:43 | 2017-02-23T08:55:46 | Java | UTF-8 | PlantUML | false | false | 756 | puml | @startuml
class PlaylistManager {
[[PlaylistManager.html]]
{static} -LOG: Logger
{static} -instance: PlaylistManager
-savedPlaylists: List<SavedPlaylist>
-playlist: EphemeralPlaylist
-favoritesPlaylist: SavedPlaylist
{static} +getInstance(): PlaylistManager
+getPlaylist(): EphemeralPlaylist
+createPlaylist(String): SavedPlaylist
+removePlaylist(SavedPlaylist): void
+getSavedPlaylists(): List<SavedPlaylist>
+getFavoritesPlaylist(): SavedPlaylist
+addTrackToFavorites(Track): void
+removeTrackFromFavorites(Track): void
-retrieveFavoritesPlaylist(): SavedPlaylist
-retrievePlaylists(): List<SavedPlaylist>
}
@enduml
| false | true | false | false | class |
ff486dfe7ed72d8500cf77f72a253d6e9ad087c4 | 967db7f88bdf0e5cb8feca9571b9e85175f7bcc8 | /docs/Solution/Cloud/uSDI/Logical.puml | 6202cb88b181297dbb66a6721cada98bc744bbe9 | [] | no_license | CAADE/edgeville | fd0053d749c259029ef4c7791210663ace87be21 | 6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65 | refs/heads/master | 2020-03-28T06:11:31.554585 | 2019-05-02T17:37:03 | 2019-05-02T17:37:03 | 147,819,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 300 | puml | @startuml
rectangle "Diagram TBD"
@enduml
package "User" #ffffcc {
}
package "Used" #ffffcc {
}
package "Cloud/uSDI" #lightblue {
interface "Cloud/uSDI" {
}
CLI ()-- "Cloud/uSDI"
REST ()-- "Cloud/uSDI"
Web ()-- "Cloud/uSDI"
}
User --> "Cloud/uSDI"
"Cloud/uSDI" --> Used
| false | true | false | false | class |
6d62bfc96df7b3a133f24c77552eea4a53dc19b1 | 13dcac461767dd2ddb3b6166386be64c563f5bb1 | /diagrams/diagrams.puml | 0717fda5c5a0ef8cf568869e98f558aa11788f6d | [] | no_license | SOFT2020-Large-System-Development/LSDMaster | b88f5fad7732c6a6f21437b8a9d66899346c39ac | b89b96e436f84fbe0326ae8c2039272ed333f1a0 | refs/heads/master | 2023-01-19T07:11:57.083873 | 2020-11-30T18:31:10 | 2020-11-30T18:31:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,110 | puml | @startuml "logical-data-model"
skinparam Shadowing False
skinparam RoundCorner 10
skinparam DefaultFontColor DimGrey
skinparam Object {
BackgroundColor DodgerBlue
ArrowColor DimGrey
BorderColor White
FontColor White
FontStyle Bold
AttributeFontColor White
StereotypeFontColor White
}
Object Flight {
'This is a combination of carrier code and the three digits
IATA Combined Code
Departure Date & Time
Arrival Data & Time
Number of Seats
Seat Price
}
Object Carrier {
IATA Carrier Code
}
Object Airport {
IATA Airport Code
Name
Time Zone
}
Object Person {
First Name
Last Name
Passport
}
Object Booking {
Price
'if credit card is null booking is paid by Frequent Flyer Number
Credit Card Number
Frequent Flyer Number
}
Object Schedule
Object Agency
Airport o-"*" Flight: Start Destination
Airport o-"*" Flight: End Destination
Flight "*"--"1" Schedule
Flight "*"-"*" Person: PNR
Carrier o-"1" Schedule
Person "1.9"--"*" Booking: Passenger
Person "*"-o Agency: Employee
Booking "*"--"1.*" Flight
@enduml | false | true | false | false | object |
8bc649fb2fde65f53169a46d7324db8c93a017ee | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderEditSetStagedActionsAction.puml | e51f5e03040eb90e03bf3474923162dbe8e30756 | [] | 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 | 524 | 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 OrderEditSetStagedActionsAction [[OrderEditSetStagedActionsAction.svg]] extends OrderEditUpdateAction {
action: String
stagedActions: [[StagedOrderUpdateAction.svg List<StagedOrderUpdateAction>]]
}
interface OrderEditUpdateAction [[OrderEditUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
bb3bcd270a46b9cda16b8206072eeacd0e801bc9 | bb31893bc2bdef5eb3f91946b6f3dd959bb00b59 | /src/main/java/ex46/ex46Model.puml | 768a326d3c639e30e42dab2f3f8aa1f1ee7b98c3 | [] | no_license | LukeFaulknerr/Faulkner-cop3330-assignment3 | 82c7e20bf65d649b76d2abf745e46e77112ed5a8 | 283b1ee2ecfd75af99c9f015c06a6aebbbc2733d | refs/heads/master | 2023-08-27T20:05:33.489105 | 2021-10-11T22:00:19 | 2021-10-11T22:00:19 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,616 | puml | @startuml
'https://plantuml.com/sequence-diagram
class "App" as App{
__Methods__
+Main()
__Variables__
inputFile : File ("src/main/java/ex46/exercise46_input.txt")
freq : ArrayList<wordFreq>
__Attributes__
Selects the input file
Calls another class to create an ArrayList based on the file;
calls another class to organize and print the ArrayList as a histogram
}
class "createArrayList" as createArrayList{
__Methods__
+extractData()
__Variables__
freq : ArrayList<wordFreq>
inputScanner : BufferedWriter
line : String[]
current : String
flag : boolean
w : wordFreq
__Attributes__
Creates an ArrayList based on the input data
}
class "organizeArrayList" as organizeArrayList {
__Methods__
+organize()
+printArrayList()
+tabAmount()
__Attributes__
Organizes a given ArrayList in terms of the highest frequency
Prints given ArrayList as a formatted histogram
Finds the amount of tabs to evenly start the histogram
}
object "wordFreq" as wordFreq{
__Methods__
..Simple Getter Methods..
+getName()
+getFreq()
..Simple Setter Methods..
+setName()
+setFreq()
__Variables__
-name : String
-freq : int
}
note left of wordFreq : Object used in all classes
wordFreq -down- App
wordFreq -down- createArrayList
wordFreq -down- organizeArrayList
App -left-> createArrayList : Sends File that ArrayList will be created off of
createArrayList -right-> App : gives back created ArrayList
App -right-> organizeArrayList : gives ArrayList to be organized and printed
@enduml | false | true | false | false | sequence |
f77917f1cdb1a893012802ce31d8b2d623bbacac | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/fixed-interests-static@0.2.0.puml | 9e789caca6165a5cfd1e50452b6354af67c7fe31 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"CC-BY-4.0"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 658 | puml | @startuml
class org.accordproject.interests.Request << (T,yellow) >> {
+ String input
}
org.accordproject.interests.Request --|> org.accordproject.base.Transaction
class org.accordproject.interests.Response << (T,yellow) >> {
+ String output
}
org.accordproject.interests.Response --|> org.accordproject.base.Transaction
class org.accordproject.interests.TemplateModel << (A,green) >> {
+ Double loanAmount
+ Double rate
+ Integer loanDuration
+ Double monthlyPayment
}
org.accordproject.interests.TemplateModel --|> org.accordproject.cicero.contract.AccordClause
class org.accordproject.interests.TextResponse {
+ String text
}
@enduml
| false | true | false | false | class |
cec546641281b9e12d08c045df49e12bbcfec0bb | d693d21efa0f5de32c6387a041b8cf00882bca34 | /docs/protocol.puml | 3c079e55bfa5757e9153dc7d26a4e800c1fb13dd | [
"Apache-2.0"
] | permissive | UnivParis1/impersonate-cas-apache-wrapper | bec2d20cca38d270e4c20bf57d712957175b3373 | 78f811ccb25d6134c8dccd343644c38a4b56316b | refs/heads/master | 2022-04-01T19:34:40.822802 | 2020-01-27T14:34:35 | 2020-01-27T14:34:35 | 37,655,429 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,304 | puml | actor Alice
participant app
== no impersonate ==
Alice->cas : /login?service=https://app
cas->Alice : 302 https://app/?ticket=x
Alice->app : ?ticket=x
activate app
app -> cas : serviceValidate?service=https://app&ticket=x
activate cas
cas -> app : ...<cas:user>alice</cas:user>...
deactivate cas
app o-> Alice : html for user
deactivate app
== impersonate: Alice is allowed to impersonate for app ==
Alice->cas : /login?service=https://app\ncookie: CAS_IMPERSONATE=bob
cas->Alice : 302 https://app/?ticket=x
Alice->app : ?ticket=x
activate app
app -> cas : serviceValidate?service=https://app&ticket=x
activate cas
cas -> esupUserApps : canImpersonate?uid=bob&service=https://app
esupUserApps -> cas : ["app"]
cas -> app : ...<cas:user>bob</cas:user>...
deactivate cas
app o-> Alice : html for user
deactivate app
== impersonate: Alice is NOT allowed to impersonate for app2 ==
Alice->cas : /login?service=https://app2\ncookie: CAS_IMPERSONATE=bob
cas->Alice : 302 https://app2/?ticket=x
Alice->app : ?ticket=x
activate app
app -> cas : serviceValidate?service=https://app2&ticket=x
activate cas
cas -> esupUserApps : canImpersonate?uid=bob&service=https://app2
esupUserApps -> cas : 403
cas -> app : ...<cas:user>alice</cas:user>...
deactivate cas
app o-> Alice : html for user
deactivate app
| false | true | false | false | sequence |
74f3e80b45ed6a6883774696e2b00fef917cb069 | f37e90775a158ea0ae644e334eac5bba341f4989 | /Documentation+/PlantUml/sequence/destroy.puml | 1ce6b524ea65f5460bfbf60045cc2d48ad5decb0 | [] | no_license | Aleks-Ya/yaal_examples | 0087bbaf314ca5127051c93b89c8fc2dcd14c1e3 | ec282968abf1b86e54fc2116c39f2d657b51baac | refs/heads/master | 2023-09-01T07:40:44.404550 | 2023-08-27T15:24:34 | 2023-08-29T22:01:46 | 14,327,752 | 4 | 2 | null | 2021-06-16T20:39:19 | 2013-11-12T09:26:08 | Java | UTF-8 | PlantUML | false | false | 342 | puml | @startuml
title Destroy with a narrow
autoactivate on
Alice -> Bob ** : new
Alice -> Bob: Authentication Request
Alice <-- Bob: Authentication Response
Alice -> Bob !!: destroy
@enduml
@startuml
title Destroy without narrow
autoactivate on
create Alice
create Bob
Alice -> Bob: new
Bob --> Alice: Authentication Response
destroy Bob
@enduml
| false | true | false | false | sequence |
919ee25bd35f336200877871e6b17296193a529d | 5e25020f21c4bac590768e30fdc2d8f99a835775 | /src/index_accession.puml | 2323115f4e34d538a8030cfdfe93f9a191b95b90 | [] | no_license | 4less/krakenprot | 0b803cc28e08d9d3245cf24be90477328ca3d3eb | 7d97b18e6a96083905503dceccdd84bd2e3757f8 | refs/heads/master | 2020-08-02T20:17:46.713147 | 2019-09-30T13:04:20 | 2019-09-30T13:04:20 | 211,494,423 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 934 | puml | @startuml
left to right direction
skinparam linetype ortho
package index {
package indexbuilder {
class IndexBuilder
class IndexBuilderTask {
reader: FastxReader
taxonomy: NCBITaxonomy
accession: AccessionMap
index: IndexStore
}
}
package indexdb {
Interface IndexLoader {
int getTaxId(String kmer);
IEncoding getEncoder();
void load(String path);
}
Interface IndexStore {
void put(String s, Integer taxid);
}
class SplitLongIndex implements IndexLoader, IndexStore
}
}
package accession {
Interface AccessionMap {
int getTaxId(String accession);
}
class SQLiteAccessionMap extends AccessionMap
}
package report {
class Report
interface UpdateReceiver
interface UpdateSender
}
IndexBuilderTask --o IndexBuilder
@enduml | false | true | false | false | class |
3cd4facba08a7900ba7384e757e7ed463c754079 | c211337d51e433919be2fa87efa2ae57f6ca76c2 | /src/mei/designpattern/behavioral/command/structure/commandstructure.puml | 8e16e52c705f7a3d2bf6a808a89a7e9db39bdb0f | [] | no_license | nyannko/coder-notes | 86ae29bfdffa79f681edea6a207ccbf2f35e5827 | 5789764bfc92379ca4fa9e2703db022fac8e463b | refs/heads/master | 2020-05-29T09:12:21.050431 | 2019-06-10T19:37:17 | 2019-06-10T19:37:17 | 189,054,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 406 | puml | @startuml
class Invoker {
-Command command
+void setCommand(Command c)
+void call()
}
abstract class Command {
+{abstract} void execute()
}
class ConcreteCommand extends Command {
-Receiver receiver
+void execute()
}
class Receiver {
+void action()
}
class Client{
}
ConcreteCommand -left-> Receiver : receiver
Invoker o-right-> Command
Client .left.> Invoker
Client .right.> ConcreteCommand
@enduml | false | true | false | false | sequence |
49ad7d169d94cdcd0fd67e516ecd07a860bb35c9 | 78c44602df98a3f7d37a0772b178122f1ca61d8e | /stars/boundary/boundary.plantuml | 4b6c218e7a37f0984f6393ce7da25a39c4ebd517 | [] | no_license | shengjie98/CZ2002 | 138444b99d5670c77fd9b317ed87df7f3677fb0e | 3cbb827177ecdf71e1e7a50fafad732f546bf91d | refs/heads/master | 2023-01-19T08:19:07.200921 | 2020-11-23T05:39:40 | 2020-11-23T05:39:40 | 306,223,551 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,023 | plantuml | @startuml
title __BOUNDARY's Class Diagram__\n
namespace stars.boundary {
class stars.boundary.AdminUI {
- dateFormatter : DateTimeFormatter
- timeFormatter : DateTimeFormatter
+ AdminUI()
+ displayMenu()
- getallcourses()
- getallstudents()
}
}
namespace stars.boundary {
class stars.boundary.IndexTimingDisplayer {
- HEIGHT : int
- WIDTH : int
+ IndexTimingDisplayer()
+ displayTimetable()
+ pad()
}
}
namespace stars.boundary {
class stars.boundary.IntScanner {
{static} + nextInt()
}
}
namespace stars.boundary {
class stars.boundary.LoginUI {
{static} + main()
{static} - login()
}
}
namespace stars.boundary {
class stars.boundary.PrintIndexTimetableUI {
+ printIndexTimetable()
}
}
namespace stars.boundary {
abstract class stars.boundary.SelectUI {
+ select()
}
}
namespace stars.boundary {
class stars.boundary.StudentUI {
+ StudentUI()
+ displayMenu()
}
}
namespace stars.boundary {
class stars.boundary.TimetableDisplayer {
- HEIGHT : int
- WIDTH : int
+ TimetableDisplayer()
+ displayTimetable()
+ pad()
}
}
stars.boundary.AdminUI -up-|> stars.boundary.SelectUI
stars.boundary.AdminUI o-- stars.controller.AdminController : adminController
stars.boundary.IndexTimingDisplayer o-- stars.entity.Index : index
stars.boundary.PrintIndexTimetableUI -up-|> stars.boundary.SelectUI
stars.boundary.StudentUI -up-|> stars.boundary.SelectUI
stars.boundary.StudentUI o-- stars.controller.StudentController : studentController
stars.boundary.TimetableDisplayer o-- stars.entity.Student : student
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 |
846666b9e88ee29493ba342c9010d6201c214ac9 | 0451c8ba480721dd4f116d8d1c989fc941bf91f8 | /personalFinanceManagement/src/main/java/switch2019/project/controllerLayer/rest/US008_1CreateGroupTransactionControllerRest_P1.puml | 298b8e035c3b4db5fd59cb8bb00f4cf022058253 | [] | no_license | mleitaoribeiro/DevOpsMaven | ee8eac2ea35a3818a4480c7ee57c305f9f8938e3 | c8e4bcb36dfd765a08f8b9140d3b60a260734ae1 | refs/heads/master | 2023-01-01T13:37:18.143028 | 2020-07-02T16:16:52 | 2020-07-02T16:16:52 | 304,918,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,211 | puml | @startuml
skinparam DefaultFontSize 25
participant "HTTP Client (Test)"
participant "inputDTO:\nCreateTransactionInfoDTO"
participant "mvcResult :MvcResult"
participant "mvc:MockMvc"
participant "restController\n:US008CreateTransactionControllerRest"
participant ":LedgerDTOAssembler"
participant "service\n:US008CreateTransactionService"
participant "infoDTO\n:CreateTransactionInfoDTO"
== Arrange ==
autonumber
create "inputDTO:\nCreateTransactionInfoDTO"
"HTTP Client (Test)" -> "inputDTO:\nCreateTransactionInfoDTO": inputDTO = new CreateTransactionInfoDTO\n(amount, currency,description, date,category, accountFrom, accountTo, type, personEmail)
activate "HTTP Client (Test)" #FFBBBB
"HTTP Client (Test)" -> "HTTP Client (Test)": inputJson = mapToJson(inputDTO)
== Act ==
create "mvc:MockMvc"
"HTTP Client (Test)" -> "mvc:MockMvc" :POST /groups/{groupDescription}/ledger/transactions {inputJson}
activate "mvc:MockMvc" #FFBBBB
autonumber 3.1
"mvc:MockMvc" -> "mvc:MockMvc" : deserialize inputJson
create "infoDTO\n:CreateTransactionInfoDTO"
"mvc:MockMvc"-->"infoDTO\n:CreateTransactionInfoDTO": create
"mvc:MockMvc"-> "restController\n:US008CreateTransactionControllerRest": createGroupTransaction(groupId, infoDTO)
activate "restController\n:US008CreateTransactionControllerRest" #FFBBBB
autonumber 3.3.1
"restController\n:US008CreateTransactionControllerRest"-> ":LedgerDTOAssembler": transformToCreateGroupTransactionDTO(groupId, infoDTO)
activate ":LedgerDTOAssembler" #FFBBBB
autonumber 3.3.1.1
create "createGroupTransactionDTO\n:CreateGroupTransactionDTO"
":LedgerDTOAssembler" -> "createGroupTransactionDTO\n:CreateGroupTransactionDTO": create(groupId, personId, amount, currency, date, description, \n category, accountFrom, accountTo, type)
":LedgerDTOAssembler" -> "restController\n:US008CreateTransactionControllerRest" : createGroupTransactionDTO
deactivate ":LedgerDTOAssembler"
autonumber 3.3.2
"restController\n:US008CreateTransactionControllerRest"->"service\n:US008CreateTransactionService": addGroupTransaction(createGroupTransactionDTO)
activate "service\n:US008CreateTransactionService" #FFBBBB
|||
ref over "service\n:US008CreateTransactionService" : US008CreateTransactionControllerRestPart1
autonumber 3.3.2.1
"service\n:US008CreateTransactionService" --> "restController\n:US008CreateTransactionControllerRest" : transactionShortDTO
deactivate "service\n:US008CreateTransactionService"
autonumber 3.3.3
"restController\n:US008CreateTransactionControllerRest"->"restController\n:US008CreateTransactionControllerRest": selfLink = /groups/{groupId}/ledger/transactions/{id}
"restController\n:US008CreateTransactionControllerRest"-> "transactionShortDTO\n:TransactionShortDTO": add(selfLink)
activate "transactionShortDTO\n:TransactionShortDTO" #FFBBBB
deactivate "transactionShortDTO\n:TransactionShortDTO" #FFBBBB
"restController\n:US008CreateTransactionControllerRest"->"restController\n:US008CreateTransactionControllerRest": allTransactionsLink = /groups/{groupId}/ledger/transactions
"restController\n:US008CreateTransactionControllerRest"-> "transactionShortDTO\n:TransactionShortDTO": add(allTransactionsLink)
activate "transactionShortDTO\n:TransactionShortDTO" #FFBBBB
deactivate "transactionShortDTO\n:TransactionShortDTO" #FFBBBB
"restController\n:US008CreateTransactionControllerRest" -> "mvc:MockMvc": responseEntity = Response Entity<>\n(transactionShortDTO,HttpStatus.CREATED)
deactivate "restController\n:US008CreateTransactionControllerRest"
autonumber 3.4
"mvc:MockMvc" -> "mvc:MockMvc" : serialize responseEntity
"mvc:MockMvc" --> "HTTP Client (Test)" : {jsonResponse}
deactivate "mvc:MockMvc"
autonumber 4
create "mvcResult :MvcResult"
"HTTP Client (Test)" -> "mvcResult :MvcResult" : create
activate "mvcResult :MvcResult" #FFBBBB
"HTTP Client (Test)" -> "mvcResult :MvcResult" : status = getStatus()
"HTTP Client (Test)" -> "mvcResult :MvcResult" : result = getContentAsString()
deactivate "mvcResult :MvcResult" #FFBBBB
== Assert ==
"HTTP Client (Test)" -> "HTTP Client (Test)" : assertEquals(201, status)
"HTTP Client (Test)" -> "HTTP Client (Test)" : assertEquals(expected, result)
deactivate "HTTP Client (Test)" #FFBBBB
@enduml
| false | true | false | false | sequence |
636638a49870d34a4a507ccc6f49227ab1371018 | 3b6109a212bf6a265248a2cbf070cefff4b1ff37 | /Assignment1/Client2/src/main/java/java.plantuml | 0357467842dc06adac309831f09ad8ca624f5553 | [] | no_license | xelese/BSDS | aa500d1ce85a0179d7b71a042f3eda69bd5f400d | f11f76d16762708f480cf38c28e5bbda54e19e64 | refs/heads/master | 2023-06-04T05:55:00.561264 | 2021-06-28T16:35:00 | 2021-06-28T16:35:00 | 369,647,746 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 130 | plantuml | @startuml
title __JAVA's Class Diagram__\n
class Client {
{static} + main()
}
right footer
endfooter
@enduml
| false | true | false | false | class |
c13a908d2e8bf5b26efb8806560249aa007d9145 | 1b3ff9ac659860c3aacbed2e30b765a9379f7d9b | /Tareas/T01/uml_classes.puml | 4305d89bdbd1199efcae041f90e08e161a96d852 | [] | no_license | contranton/IIC2233 | 041f18499d26f61d6e455fdd5f38a26638b5010c | 43641cb384c20a2c335952a3e248c7933456291f | refs/heads/master | 2020-05-09T22:52:28.868047 | 2018-06-26T03:24:46 | 2018-06-26T03:24:46 | 181,484,581 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,830 | puml | scale 2
skinparam Linetype ortho
skinparam class{
BackgroundColor<< MainProgramExecution>> Lime
}
title Class Diagram -- Tarea 1: CHAUCRAFT\nJavier Contreras (@contranton)\nIIC2233, 2018-1\n\nDiagram made with <i>plantuml</i>
class Universe{
<get> Galaxy[] galaxies_list
void _acquire_planets_and_galaxies()
void write_content()
}
class Galaxy{
str nombre
<get> Planet[] planets_list
<get/set> int minerales
<get/set> int deuterio
}
Class Edificio #physical{
int vida
bool built
}
Class Cuartel #physical
Class Torre #physical{
<get> int ataque
}
Edificio ^- Cuartel
Edificio ^- Torre
Class Planet{
str nombre
datetime ult_recoleccion
<get/set> Raza raza
bool conquistado
<get/set> Torre torre
<get/set> Cuartel cuartel
int nivel_ataque = 0
int nivel_economia = 0
<get/set> int soldados
<get/set> int magos
<get> int max_soldados
<get> int max_magos
<get> int effective_tasa_minerales
<get> int tasa_minerales
<get/set> int tasa_minerales
<get/set> int tasa_deuterio
<get> int evolucion
<get> int ataque_efectivo
<get> int vida_efectiva
void maximize_stats()
}
Edificio --* Planet
Planet --* Galaxy
Galaxy --* Universe
abstract Class Raza<< Singleton >> #lightskyblue{
str nombre
bool has_mago
int max_pop
int[] costo_soldado
int[] rango_atq_soldado
int[] rango_vid_soldado
int[] costo_mago
int[] rango_atq_mago
int[] rango_vid_mago
str warcry
void habilidad(Entity entity1, Entity entity2)
}
Class Maestro #powderblue
Class Aprendiz #powderblue
Class Asesino #powderblue
Maestro ..|> Raza
Aprendiz ..|> Raza
Asesino ..|> Raza
Raza --o Planet
' Menu system
abstract class Menu #lightcyan{
str title
str content
str prompt
{abstract} bool _validate_input()
bool _interact()
bool run()
}
class NumericalChoiceMenu #lightcyan{
bool is_main
<get/set> items
<get> options
<get> functions
}
class TextInputMenu #lightcyan
class YesNoMenu #lightcyan
class AreYouSureMenu #lightcyan
class InfoMenu #lightcyan
class NumericalInputMenu #lightcyan
Menu ^-- NumericalChoiceMenu
Menu ^-- TextInputMenu
Menu ^-- YesNoMenu
Menu ^-- InfoMenu
Menu ^-- NumericalInputMenu
YesNoMenu ^-- AreYouSureMenu
class MainMenu << MainProgramExecution >>{
Universe universe
bool create_galaxy()
bool modify_galaxy()
bool query_Galaxy()
bool play_galaxy()
bool quit_()
}
class CreateGalaxyMenu #gold{
Universe universe
Galaxy new_galaxy
Planet[] new_planets
}
note left of MainMenu
Different menus are created recursively through program execution. Detailed relationships
concerning which main-like menus inherit which menu types have been obviated to
avoid unnecessary clutter.
end note
class QueryGalaxyMenu #gold{
Universe universe
bool general_info()
bool planet_info()
bool best_galaxy()
bool planet_ranking()
}
class ModifyGalaxyMenu #gold{
Universe universe
bool add_planet()
bool eliminate_conquered()
bool increase_mins_rate()
bool increase_deut_rate()
bool add_soldiers()
bool add_wizards()
}
class PlayGalaxyMenu #gold{
Universe universe
Galaxy galaxy
bool choose_galaxy()
bool visit_planet()
bool write_changes()
}
class VisitConqueredPlanetMenu #moccasin {
void build_building()
void create_units()
void collect_resources()
void make_improvements()
}
class VisitUnconqueredPlanetMenu #moccasin {
void invade()
void purchase()
}
class VisitPlanetMenu #moccasin{
Planet planet
bool event_archmage_invasion()
bool event_asteroid_hit()
}
note bottom of VisitPlanetMenu
Overwrites superclass's run() method to include random events
end note
PlayGalaxyMenu *-- VisitPlanetMenu
VisitPlanetMenu ^-- VisitUnconqueredPlanetMenu
VisitPlanetMenu ^-- VisitConqueredPlanetMenu
Menu ^-- MainMenu
MainMenu *-- Menu
MainMenu --* Universe
' CreateGalaxyMenu --o Universe
' ModifyGalaxyMenu --o Universe
' QueryGalaxyMenu --o Universe
' PlayGalaxyMenu --o Universe
CreateGalaxyMenu --* MainMenu
ModifyGalaxyMenu --* MainMenu
QueryGalaxyMenu --* MainMenu
PlayGalaxyMenu --* MainMenu
note top of PlayGalaxyMenu
This menu manages, <i>all by itself</i> the interactions concerning battles,
the archmage, asteroids, etc, as these are not intrinsic parts of a planet
or galaxy but rather actions performed <i><b>on</b></i> them
end note
Class Entity #snow{
Galaxy galaxia
str name
Raza race
Cuartel cuartel
Torre torre
int[] soldados
int[] magos
bool is_player
bool being_invaded
bool dup_attack
str habilidad(Entity attacker, Entity defender)
void generate_units(int n_soldados, int n_magos)
<get> int ataque
<get/set> int vida
void duplicate_attack()
void steal_minerals(int amount)
void calculate_survivors()
}
Class Archimago #snow{
<get/set> int vida
str habilidad(Entity attacker, Entity defender)
}
Class Battle #snow{
Entity attacker
Entity defender
Planet defender_planet
int turn
Generator battle_turns(Planet defender_planet)
void make_entities(Galaxy galaxy, Planet|Archimago attacker, Planet defending_planet)
void update_planets(Planet planet_attacker, Planet planet_defender)
void _swap_attacker_defender()
void _activate_abilities()
str _generate_info(int attack, int original_life, int final_life)
}
Entity --* Battle
Archimago --^ Entity
Battle --* VisitPlanetMenu
| false | true | false | false | sequence |
27741147fb5356eb710366f7e0ac23f0899a5449 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyDivisionDraft.puml | 067c490b216c8ed4683eeeb8eee813671616fef7 | [] | 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,231 | 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 MyDivisionDraft [[MyDivisionDraft.svg]] extends MyBusinessUnitDraft {
key: String
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
custom: [[CustomFields.svg CustomFields]]
addresses: [[BaseAddress.svg List<BaseAddress>]]
shippingAddresses: [[Integer.svg List<Integer>]]
defaultShippingAddress: Integer
billingAddresses: [[Integer.svg List<Integer>]]
defaultBillingAddress: Integer
parentUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
}
interface MyBusinessUnitDraft [[MyBusinessUnitDraft.svg]] {
key: String
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
custom: [[CustomFields.svg CustomFields]]
addresses: [[BaseAddress.svg List<BaseAddress>]]
shippingAddresses: [[Integer.svg List<Integer>]]
defaultShippingAddress: Integer
billingAddresses: [[Integer.svg List<Integer>]]
defaultBillingAddress: Integer
}
@enduml
| false | true | false | false | class |
ab20617752269ab360e04bb00d42fc971a5aee39 | 98db91bbebf1f48bc591bdfbfd16f8615e238374 | /specs/ekopache/archive/LG-3S_test.puml | f5b8f29f1c8fdefbb8ce18df80d16150d080b88b | [] | no_license | pengtianyue/Solvay_test | c912ef0bcea28150fd0a0b108992e3612c634982 | 35d24a2e13c1d44326e65384fa57db08494bbc59 | refs/heads/master | 2021-01-21T04:50:58.658610 | 2016-04-13T19:36:57 | 2016-04-13T19:36:57 | 49,964,037 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 744 | puml |
@startuml
scale 350 width
[*] --> MAINTAIN_TEMP_COOL
state MAINTAIN_TEMP_COOL{
MAINTAIN_TEMP_COOL : RX_JKT_CTRL_EM SETPOINT = COOL_TARGET
state TEMP_COOL{
TEMP_COOL : RX_JKT_CTRL_EM: ACQUIRE
TEMP_COOL : RX_JKT_CTRL_EM: COOL_TARGET
TEMP_COOL : RX_JKT_CTRL_EM: COOL
}
TEMP_COOL --> START_PROMPT : \n REACTOR TEMP_COOL < \n t RX_JKT_CTRL_EM: COOL_TARGET
START_PROMPT : Prompt_YESNO <Ready to start cofeed?>
START_PROMPT --> PT7 : Yes
START_PROMPT --> NAOH50 : Yes
START_PROMPT --> START_PROMPT : No
NAOH50 : TK50_CHG_EM: CHARGE
}
PT7 --> PRESS
NAOH50 --> PRESS
PT7 : PT7_CHG_EM: CHARGE
PRESS : RX_PRESS_EM: VENT TO ATMOSPHERE
PRESS --> TEMP_HEAT
TEMP_HEAT --> [*]
@enduml | false | true | false | false | sequence |
506865e62aaba342d1f31ce50b9beb5c883387fe | e49567ea3e4e5a6e5c7e988a46e8175f6a39857f | /uml/ItemDate.puml | ed44fd609106da46f9c2edee12041b8f5cf26dcc | [] | no_license | mate-gam/Gamero-cop3330-assignment4 | c5405940b3dd352731beb8b376734cf138d48d57 | 47193a255453dca6d73f4dd6bd2a2f5f3624cb50 | refs/heads/master | 2023-09-05T09:42:47.978569 | 2021-11-01T23:29:04 | 2021-11-01T23:29:04 | 423,345,539 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 129 | puml | @startuml
class ItemDate{
String date
==
.. Get Date ..
+ String getDate()
.. Set Title ..
+ void setDate(String date)
}
@enduml | false | true | false | false | class |
20acbe1213cb98661c81f4587a053f0f8d586e01 | e7b7df0cf36cf83e9c440c3a81f4f85193e37a72 | /4 Activity Diagram/5 More on Branches.puml | f75a02c692e5c49d6be2e3d8a0bdb904a90d274e | [
"MIT"
] | permissive | jys129/PlantUML | 38dd154cc9a45d3206abf26f95bfb45e32d4c186 | f0e62bf90332a1a541ded76d2101ebdd9215adaa | refs/heads/master | 2023-03-16T15:54:12.053012 | 2020-10-18T15:49:08 | 2020-10-18T15:49:08 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 391 | puml | @startuml
(*) --> if "Some Test" then
-->[true] "activity 1"
if "" then
-> "activity 3" as a3
else
if "Other test" then
-left-> "activity 5"
else
--> "activity 6"
endif
endif
else
->[false] "activity 2"
endif
a3 --> if "last test" then
--> "activity 7"
else
-> "activity 8"
endif
@enduml
| false | true | false | false | activity |
68fa20c4552ecd7db72b37b54063a3f4bd14c8d1 | c8e5514bd3ea44e6613f469e88bc0562ba16ae62 | /src/site/sphinx/formatting/puml/colors/HotPink.puml | bb1f77c93b12aa76cd7766d145f3440b77b5b73c | [] | 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 | 310 | puml | @startuml
skinparam ClassBackgroundColor #HotPink
skinparam ClassFontColor #HotPink
skinparam ClassBorderColor #HotPink
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml | false | true | false | false | class |
af56f45e375adf9dcb2f684b79f86bc53cb74612 | ab34cee271099d26d5b5657d46575b2a32948e59 | /OOPDesignPractices/OOPDesignPractices.plantuml | 46888cd797313cdbc90f66d567dc5d5c98182869 | [] | no_license | yiic/coding_practises | 29ead29e6b5eb331e1e3f1fb7ad8341fcd18cee1 | 39df6c93b51107d995548be27dfa2da115e10044 | refs/heads/master | 2020-04-06T16:25:18.289886 | 2018-11-14T22:22:03 | 2018-11-14T22:22:03 | 157,619,014 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 850 | plantuml | @startuml
title __OOPDESIGNPRACTICES's Class Diagram__\n
package ParkingLot {
class Car {
}
}
package ParkingLot {
class Level {
}
}
package ParkingLot {
class ParkingLot {
}
}
package ParkingLot {
class ParkingSpot {
}
}
package ParkingLot {
class Test {
}
}
package ParkingLot {
class Truck {
}
}
package ParkingLot {
abstract class Vehicle {
}
}
package ParkingLot {
enum VehicleSize {
}
}
Car -up-|> Vehicle
ParkingSpot o-- VehicleSize : spotSize
ParkingSpot o-- Vehicle : currentVehicle
Truck -up-|> Vehicle
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 |
02cd9a9082a00a588e28532f0cc691ad62341aaf | 3f9ea4b5447586fef74220d1e8c658d032d27a3a | /wordpress/sip-redirect-refer-reinvite/uml/luke-joe-avarel.plantuml | afd1ffcc9a15651f084efdd69a7e4d773edb2559 | [
"MIT"
] | permissive | sifaserdarozen/bitsandpieces | d4e3898f5240a01150be2294969d859eed438d7a | ed74a28f5020eb91ac347e9b1f9b34dcdd7e69e5 | refs/heads/master | 2023-04-15T15:23:49.929388 | 2023-03-30T00:31:57 | 2023-03-30T00:31:57 | 199,507,309 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 450 | plantuml | @startuml
title Joe Redirects Luke to Avarel
participant "Lucky Luke"
"Lucky Luke" -->> Joe: F1 INVITE
Joe -->> "Lucky Luke": F2 302 Moved Temporarily
"Lucky Luke" -->> Joe: F3 ACK
"Lucky Luke" -->> Avarel: F4 INVITE
Avarel -->> "Lucky Luke": F5 200 OK
"Lucky Luke" -->> Avarel: F6 ACK
note over "Lucky Luke",Avarel
media flow between Lucky Luke and Avarel
end note
"Lucky Luke" -->> Avarel: F7 BYE
Avarel -->> "Lucky Luke": F8 200 OK
@enduml | false | true | false | false | sequence |
1361a627f438abbdc24566cf9daf1b61541a7c93 | e48aa6eb3063f355a4d92a6faa1570453d8f3215 | /design/paper-seq-assemble.puml | 2ab0ace6a04582f1a9159d77bf513c7acf6729d1 | [] | no_license | yaoyaocjj/exam-plantform | 7e10d79fa7383d38a4dccd47f5b64c9f1f8b7cd3 | 899bff475e5125bb74a2ef27021b65657298919f | refs/heads/master | 2022-11-09T08:13:49.363564 | 2020-07-04T12:56:41 | 2020-07-04T12:56:41 | 276,091,946 | 1 | 0 | null | 2020-06-30T12:27:28 | 2020-06-30T12:27:27 | null | UTF-8 | PlantUML | false | false | 362 | puml | @startuml
actor Teacher
Teacher -> PaperController : POST /paper
PaperController -> PaperController: transform()
PaperController -> PaperService : assemblePaper()
PaperService -> PaperRepository: nextPaperId()
entity Paper
PaperService -> Paper : assemble()
PaperService -> PaperRepository: save()
database paperDB
PaperRepository -> paperDB: INSERT ***
@enduml | false | true | false | false | sequence |
bf4c166169805bddbc8618b4262d885798b47d92 | 973dcef38fb285cf4f14a2e937af23e26a05564b | /docs/UseCases/Manage-Build/Modify-Build.puml | 65c3980037e224477cf415ada3ce5700cd02dbaf | [] | no_license | CAADE/CAADE | 6a0d37b31e77fd00eeb1ad056d17d484585cad96 | 3873453a14359879a146f1d5897554ae2e94bd96 | refs/heads/master | 2021-06-09T05:28:17.894441 | 2019-06-07T06:08:10 | 2019-06-07T06:08:10 | 104,078,969 | 1 | 0 | null | 2020-08-20T15:13:40 | 2017-09-19T13:32:11 | JavaScript | UTF-8 | PlantUML | false | false | 262 | puml | @startuml
Actor "actorName" as A
box "Manage-Build" #lightblue
participant CLI as CLI
participant Web as Web
participant "caade" as S
A -> CLI : caade-build-modify()
CLI -> S : build/modify()
A -> Web : build/modify()
Web -> S : build/modify()
end box
@enduml
| false | true | false | false | sequence |
b5f86c4d0f37cfde235d50fccc4bcbdd7979a380 | 0992a598a77d620c86b163e92c2a0259e1c5efe1 | /docs/sprint1/diagrams/ClassDiagram.puml | 501377a92924e1b51638bf3e8e1f31b9a05685bf | [] | no_license | dev-rbatista/Tutorial_Local_Smoke_Test_with_Docker_Containers-Gradle | a78f2c5a85e72035db2091e79b8c75ddfff8c7fb | cad9b52d66a2f91c93919feaee5250303d230752 | refs/heads/master | 2023-06-17T23:27:34.990780 | 2021-07-15T15:36:57 | 2021-07-15T15:36:57 | 386,325,650 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,304 | puml | @startuml
left to right direction
title Class Diagram - SP01
class AddEmailController {
- Application ffmApplication
+ boolean addEmail()
}
class AddFamilyAdministratorController {
- Application ffmApplication
+ List<> familiesWithoutAdministrator()
+ boolean addFamilyAdministrator()
}
class AddFamilyController {
- Application ffmApplication
+ boolean addFamily()
}
class AddFamilyMemberController {
- Application ffmApplication;
- boolean addFamilyMember()
}
class AddRelationController {
- Application ffmApplication
+ boolean createRelation()
}
class AddStandardCategoryController {
- Application ffmApplication;
+ boolean addStandardCategory()
}
class CreateFamilyCashAccountController{
- Application ffmApplication
+ boolean createFamilyCashAccount()
}
class GetCategoryTreeController {
- Application ffmApplication
+ boolean getCategoryTree()
}
class GetFamilyMemberProfileController {
- Application ffmApplication
+ MemberProfileDTO getMemberProfiel()
}
class GetFamilyMembersListController {
- Application ffmApplication
+ boolean getFamilyMemberAndRelation()
}
class GetStandardCategoriesTreeController {
- Application ffmApplication
+ List<StandardCategoryDTO> getStandardCategories()
}
class Application {
- CategoryService categoryService
- FamilyService familyService
+ CategoryService getCategoryService()
+ FamilyService getFamilyService()
}
class CategoryService {
- List<StandardCategory> categories
+ boolean addStandardCategory()
- StandardCategory getStandardCategoryByID()
- boolean isCategoryWithSameNameAlreadyPresent()
- boolean isParentIDInList()
- int generateCategoryID()
+ List<StandardCategory> getCategories()
}
class StandardCategory {
- int categoryID
- String categoryName
- StandardCategory parentCategory
+ int getParentID()
+ int getCategoryID()
+ String getName()
- boolean isNameValid()
+ boolean isIDOfThisCategory()
}
class CustomCategory {
- int categoryID
- String categoryName
- StandardCategory parentStandardCategory
- CustomCategory parentCustomCategory
+ String getCategoryName()
+ int getCategoryID()
+ int getParentID()
- boolean isNameValid()
}
class CategoryTreeDTO {
- List<StandardCategory> standardCategories
- List<CustomCategory> customCategories
+ List getStandardCategories()
+ List getCustomCategories()
+ void printTree()
+ String[] getArrayOfStandardCategoriesName()
+ void printChildren()
}
class FamilyService {
- List<Family> families
- int generateFamilyID()
+ List<CustomCategory> getCustomCategories()
+ boolean addEmail()
- int findFamilyIndexByID()
- boolean checkIfEmailPresent()
+ void addFamily()
+ boolean addFamily()
+ boolean createRelation()
+ Family getFamily()
- boolean checkIfFamilyExists()
+ boolean addFamilyMember()
+ boolean addFamilyAdministrator()
+ boolean verifyAdministratorPermission()
+ List getFamilyMembersRelationDTOList
+ boolean createFamilyCashAccount()
+ MemberProfileDTO getFamilyMemberProfile()
+ List familiesWithoutAdministrator()
}
class FamilyMemberRelationDTO {
- String name
- String relationDesignation
+ String getName()
+ String getRelationDesignation()
}
class FamilyWithoutAdministratorDTO {
- String familyName
- int familyID
}
class Family {
- int familyID
- String familyName
- Date registrationDate
- List <FamilyMember> familyMembers
- List<String> relationDesignations
- CashAccount familyCashAccount
- List<CustomCategory> familyCustomCategories
- boolean isNameValid()
- boolean isDateValid()
+ List<FamilyMember> getFamilyMembers()
+ int getFamilyID()
+ List<CustomCategory> getFamilyCustomCategories()
+ boolean isIDOfThisFamily()
- int findFamilyMemberIndexByID()
+ boolean verifyAdministrator()
+ boolean hasDesignation()
+ boolean checkIfVatExists()
- boolean checkIfCCNumberExists()
+ boolean addToRelationDesignationList()
+ boolean addRelationToFamilyMember()
+ FamilyMember getFamilyMemberByID()
+ void addFamilyMember()
+ void addFamilyMemberArray()
+ int numberOfFamilyMembers()
+ boolean addEmail()
+ boolean addFamilyMember()
+ boolean addFamilyAdministrator()
+ boolean createFamilyCashAccount()
- boolean hasCashAccount()
+ List getFamilyMembersRelationDTOList()
+ boolean hasAdministrator
+ familyWithoutAdministratorDTO()
+ MemberProfileDTO getFamilyMemberProfile()
}
class CashAccount {
- int CashAccountID
- double balance
- boolean validateID()
- boolean validateBalance()
+ int getCashAccountID()
+ double getBalance()
+ void changeBalance()
}
class FamilyMember {
- CCNumber ccNumber
- String name
- String birthDate
- List<PhoneNumber> phoneNumbers
- List<EmailAddress> emails
- VatNumber vatNumber
- Address adress
- Relation relation
- boolean administrator
+ boolean validateName()
+ boolean validateBirthDate()
+ boolean validateEmail()
+ boolean validatePhone()
+ List<EmailAddress> getEmails()
+ int getVatNumber()
+ int getID()
+ String getRelation()
+ String getName()
+ void makeAdmin()
+ boolean isAdministrator()
# String getFamilyMemberID()
+ boolean addEmail()
# void addRelation()
+ MemberProfileDTO createProfile()
+ FamileMemberRelationDTO createFamilyMemberRelation()
}
class MemberProfileDTO {
- String name
- Date birthDate
- List<PhoneNumber> phoneNumbers
- List<EmailAddress> emails
- VatNumber vatNumber
- Address address
- Relation relation
- boolean administrator
}
class Address {
- String street
- String postalCode
- String local
- String city
+ boolean validateStreet()
+ boolean validatePostalCode()
+ boolean validateLocal()
+ boolea validateCity()
}
class CCNumber {
- String ccNumber
+ String getCcNumber()
- boolean validateNumber()
- int GetNumberFromChar()
}
class PhoneNumber {
- int phoneNumber
+ boolean validate()
}
class EmailAddress {
- String email
+ String getEmail()
- boolean validate()
- boolean checkFormat()
}
class Relation {
- String relationDesignation
- void isValid()
+ String getRelationDesignation()
}
class VatNumber {
- int vatNumber
+ boolean validateVatNumber()
+ int getVatNumber()
}
AddEmailController --> Application
AddFamilyController --> Application
AddFamilyAdministratorController --> Application
AddFamilyMemberController --> Application
AddRelationController --> Application
AddStandardCategoryController --> Application
CreateFamilyCashAccountController --> Application
GetCategoryTreeController --> Application
GetFamilyMemberProfileController --> Application
GetFamilyMembersListController --> Application
GetStandardCategoriesTreeController --> Application
Application --> FamilyService
Application --> CategoryService
CategoryService --> CustomCategory
CategoryService --> StandardCategory
CategoryService -left-> CategoryTreeDTO
FamilyService -right-> FamilyWithoutAdministratorDTO
FamilyService --> Family
Family --> CashAccount
Family --> FamilyMember
Family -right-> FamilyMemberRelationDTO
FamilyMember --> Address
FamilyMember --> CCNumber
FamilyMember --> PhoneNumber
FamilyMember --> Relation
FamilyMember -left-> MemberProfileDTO
FamilyMember --> EmailAddress
FamilyMember --> VatNumber
@enduml | false | true | false | false | class |
049c6806e8319ebffeb58de624907cdc3850bd04 | ddd27ef7207e3b508ba557b6f5ca1b2bd172a734 | /app/UML/Conceptual State 2.puml | 958839e3826b5f03f9e1c540f7ef58aed4219d2b | [] | no_license | QRP0002/Wireless_Quote | 7c095f66043b7780f03d624be2fe7956b3369a27 | 0b4762a69db0ebada3d518573e7618a0e57f0368 | refs/heads/master | 2020-06-04T02:48:51.629364 | 2015-05-01T12:49:49 | 2015-05-01T12:49:49 | 33,549,841 | 0 | 0 | null | 2015-04-16T20:57:50 | 2015-04-07T14:57:28 | Java | UTF-8 | PlantUML | false | false | 466 | puml | @startuml
[*] --> BlankField
BlankField --> PartiallyFull : Adding Information
PartiallyFull --> BlankField : Invalid Information
PartiallyFull --> PartiallyFull : Add Information
PartiallyFull --> TextFieldsFull : Complete
PartiallyFull --> Deleting : Delete Field Text
Deleting --> PartiallyFull : Delete Information
Deleting --> BlankField : Deleted Only Text
TextFieldsFull --> [*]
PartiallyFull : do/verify character type
TextFieldsFull : do/verify full
@enduml | false | true | false | false | sequence |
108dd52c42464ea1101b66957c0784472c32a25c | f53f915a4ae704b122a7259164f85b1363888e04 | /exercise46/docs/Solution46plant.puml | 29c016d237d330b43b9512eb890077da8fc07a03 | [] | no_license | cristiamenciso/enciso-a04 | 50cba9bd532816884b94dcd19abe39c1bf81024a | ecd6fb5477e0b4adb59b057de467fccd68e4dd38 | refs/heads/main | 2023-09-04T07:45:53.909559 | 2021-10-17T16:59:22 | 2021-10-17T16:59:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 277 | puml | @startuml
'https://plantuml.com/class-diagram
Solution46 *-- FrequencyCalculator
class FrequencyCalculator {
+Map<String, Integer> readFile()
+void computeFrequency()
+Map<String, Integer> sortMap()
+void printGraph
}
class Solution46 {
main()
}
@enduml | false | true | false | false | class |
67c40c3e57788f9f8deacb628cf56cea6a6b1cfa | d6a7a8ef390f73ed4ddf43a56d247d78a7b8d7cb | /docs/src/uml/CrossAuthorization.puml | 6e32278b284364cd7229ee6188971bc4979792fb | [] | no_license | alfa-laboratory/ratauth | ff98eea6a6e8da6386fa48be19b53abb4a5ab33b | 99c9829f7a68c5dbc49a071c5b9355f44d102f9c | refs/heads/master | 2021-01-19T12:12:30.351104 | 2020-05-13T12:01:28 | 2020-05-13T12:01:28 | 69,041,854 | 10 | 10 | null | 2020-05-13T12:01:30 | 2016-09-23T16:24:56 | Groovy | UTF-8 | PlantUML | false | false | 582 | puml | @startuml
Client -> RPa: crossAuth (refresh_tokenA, aud)
AuthServer <- RPa : authorize (refresh_tokenA, client_idA, secretA)
AuthServer -> AuthServer: checkToken
AuthServer -> AuthServer: checkRPcredentials
AuthServer -> AuthServer: createAuthCode
AuthServer --> RPa: authCode
Client <-- RPa: authCode
Client -> RPb: authorize (authCode)
AuthServer <- RPb : getToken (authCode, client_idB, secretB)
AuthServer -> AuthServer: checkAuthCode
AuthServer -> AuthServer: checkRPcredentials
AuthServer -> AuthServer: generateToken
AuthServer --> RPb: token (tokenB, refreshTokenB)
@enduml
| false | true | false | false | sequence |
6d4a0b9b7ab5734d4e7f382fb9e84242ed7e2c00 | 884f012c11464ab54e3af6e2bed9e2bd5276f979 | /src/main/java/ex43/WebsiteGenerator.puml | c19b7c9b65723555b58cd5cf0c9ed09b12862ad3 | [] | no_license | qburnss/burney-cop3330-assignment3 | e486d34e568432a47b83a17b7d4c76461c50805c | 384b7d711ff90e0c759495dcd74c6946a35fc044 | refs/heads/master | 2023-06-13T23:31:46.389264 | 2021-06-21T03:42:07 | 2021-06-21T03:42:07 | 378,797,710 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 280 | puml | @startuml
'https://plantuml.com/sequence-diagram
class solution43{
+ main
call all string functions
}
class jsandcssfolder{
js folder
css folder
}
class generatewebsite{
create html/index file
create website
}
generatewebsite --> solution43
jsandcssfolder --> solution43
@enduml | false | true | false | false | class |
91dfabfc660b0aa1a8e98de4afb0850a528236a1 | 3576ec713485a374cd82f4db2df455e2108fbf46 | /concepts/0051-dkms/puml/13-recovery-setup.puml | f5221398a4aa6eaf5878bb4d2dc9abbb854c16ef | [
"Apache-2.0",
"LicenseRef-scancode-dco-1.1"
] | permissive | hyperledger/aries-rfcs | b5de0c6f3b6855c6b66039b3f3580e062d238cdf | 097053c6e91f16d4dad18b5367cf338721423dc7 | refs/heads/main | 2023-08-31T08:13:57.556336 | 2023-07-24T21:30:11 | 2023-07-24T21:30:11 | 185,645,683 | 340 | 259 | Apache-2.0 | 2023-09-13T01:20:18 | 2019-05-08T16:49:20 | Python | UTF-8 | PlantUML | false | false | 1,955 | puml | @startuml
skinparam sequenceArrowThickness 2
skinparam roundcorner 15
skinparam maxmessagesize 100
skinparam sequence {
ArrowColor grey
LifeLineBorderColor grey
ParticipantBorderColor grey
boxbordercolor white
ParticipantFontSize 17
actorfontsize 17
boxfontsize 17
boxfontcolor grey
ActorBorderColor grey
Actorbackgroundcolor white
}
actor Alice as al
participant "Alice's\nEdge Agent" as aea
participant "Alice's\nCloud Agent" as aca
participant "Recovery Buddy\nCloud Agent" as rb1
note over aca #f0f0e0
Assumptions: Cloud agent automatically stores encrypted backup of Alice's edge wallets
end note
== recovery setup ==
aea -> al: <i>select options for recovery?
note right
Edge agent recommends Alice sets up a recovery policy
end note
al -> aea: <i>yes
aea -> al: options
note right
Offers offline and social recovery options
end note
al -> aea: choice
aea -> aea: create backup encryption/decryption keypair A<sub>R</sub>
note right
The backup is encrypted using public key
encryption. The public key is stored in the
wallet and used for encryption. The private key
is used for decryption and is sharded and distributed.
end note
aea -> aea: encrypt backup
note right
Will continue as background process
end note
aea -[#blue]> aca: encrypted backup
alt chooses recovery buddies (minimum of 3)
note over al, rb1 #77ccff
Each recovery buddy completes <b>Add Recovery Buddy</b> diagram
end note
group Each recovery buddy
aea -[#blue]> aca: recovery data share
note right
Includes backup encryption key A<sub>R</sub><sup>sk</sup>,
claim link secret A<sub>LS</sub>, and recovery endpoint
end note
aca -[#blue]> rb1: forward share
rb1 -> rb1: store share
par2
rb1 -[#blue]> aca: \nack
else
aca -[#blue]> aea: \n
end
end
else chooses paper wallet backup
aea -> aea: create paper wallet with recovery data
note right
Includes same recovery data as above
end note
aea -> al: display paper wallet
al -> al: save paper wallet
end
@enduml
| false | true | false | false | usecase |
32ca9f5e972825528bd03276834a69646a595da2 | 7bdb1cab91d4914b5b0829286327119ea31ec6bd | /SRP Example - Interface Solution/src/com/company/company.plantuml | a6e090a007dd182d84b35d19c6ffcb668b12345d | [] | no_license | rshahamiriuoa/SOFTENG306Part2LectureCode | 5c6b3c00cf0d2921b75209fff18d941be28365c5 | 49e2a1e64c09938ccb9936ca16b48d81129a855b | refs/heads/master | 2022-12-09T17:59:20.145562 | 2020-09-26T22:29:38 | 2020-09-26T22:29:38 | 278,200,892 | 5 | 4 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,279 | plantuml | @startuml
title __COMPANY's Class Diagram__\n
namespace com.company {
class com.company.Employee {
- employeeID : int
+ Employee()
+ calculatePay()
}
}
namespace com.company {
class com.company.Finance {
+ Finance()
+ generatePaySlip()
- storePayslip()
}
}
namespace com.company {
class com.company.HumanResources {
+ HumanResources()
+ getHourlyRate()
}
}
namespace com.company {
interface com.company.IFinance {
{abstract} + generatePaySlip()
}
}
namespace com.company {
interface com.company.IHumanResources {
{abstract} + getHourlyRate()
}
}
namespace com.company {
interface com.company.IOperations {
{abstract} + getHoursWorked()
}
}
namespace com.company {
interface com.company.ITechnologyServices {
{abstract} + storePayslip()
}
}
namespace com.company {
class com.company.Main {
{static} - employee : Employee
{static} + main()
}
}
namespace com.company {
class com.company.Operations {
+ Operations()
+ getHoursWorked()
}
}
namespace com.company {
class com.company.Payslip {
- employeeID : int
- payAmount : double
+ Payslip()
+ getEmployeeID()
+ getPayAmount()
}
}
namespace com.company {
class com.company.TechnologyServices {
+ TechnologyServices()
+ storePayslip()
}
}
com.company.Employee o-- com.company.IFinance : CFO
com.company.Employee o-- com.company.IOperations : COO
com.company.Employee o-- com.company.IHumanResources : HR
com.company.Finance .up.|> com.company.IFinance
com.company.Finance o-- com.company.ITechnologyServices : CTO
com.company.Finance o-- com.company.Payslip : payslip
com.company.HumanResources .up.|> com.company.IHumanResources
com.company.Operations .up.|> com.company.IOperations
com.company.TechnologyServices .up.|> com.company.ITechnologyServices
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 |
17ec5611eb5349cef4f40c426e9a550bc15383c4 | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1130523/sprint4/ipc_file_sharing_designextension_sd2.puml | b555af3aed6051d140b0e5c6e94e0ed1fe47dd82 | [] | no_license | ABCurado/University-Projects | 7fb32b588f2c7fbe384ca947d25928b8d702d667 | 6c9475f5ef5604955bc21bb4f8b1d113a344d7ab | refs/heads/master | 2021-01-12T05:25:21.614584 | 2017-01-03T15:29:00 | 2017-01-03T15:29:00 | 77,926,226 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 543 | puml | @startuml doc-files/ipc_file_sharing_designextension_sd2.png
participant UIController as UIC
participant ExtensionManager as ExtM
participant "extension : ShareFilesExtension" as EExample
participant "uiExtension : UIExtensionShareFiles" as UIExt
UIC -> ExtM : extensions=getExtensions();
loop for Extension ext : extensions
UIC -> EExample : uiExtension=getUIExtension(this);
activate EExample
create UIExt
EExample -> UIExt : new
deactivate EExample
UIC -> UIC : uiExtensions.add(uiExtension);
end
@enduml | false | true | false | false | sequence |
25d7d27d4b0446a75f14513a8b903123ecdf1edb | cc91605deb730961e88c852ddac1d6b862d41086 | /docs/OsmModel.puml | 6faafbb687e211a25e2a1c900c24964cfc502a62 | [
"BSD-3-Clause"
] | permissive | ie3-institute/PowerSystemUtils | e951190060a1a98bba68b632e2995a40d67b3fcd | f4a60ca43cb36a0d7772c74dcd27fc56668f6c18 | refs/heads/main | 2023-08-22T04:48:50.348541 | 2023-08-17T08:11:29 | 2023-08-17T08:11:29 | 235,127,666 | 6 | 1 | BSD-3-Clause | 2023-09-11T08:47:09 | 2020-01-20T15:01:25 | Java | UTF-8 | PlantUML | false | false | 1,229 | puml | @startuml
class OsmModel {
nodes: List[Node]
ways: List[Ways]
relations: List[Relation]
capturedArea: Polygon
{static} extractBuildings(): List[ClosedWay]
{static} extractLandUses(): List[ClosedWay]
{static} extractHighWays(): List[OpenWay]
}
note left of OsmModel::"extractHighWays(): List[OpenWay]"
If roundabouts are closed ways returning OpenWay won't work
end note
abstract Class OsmEntity {
uuid : UUID
osmId : Int
lastEdited: TimeStamp
tags: Map[String, String]
}
note left: every element type(Way, Relation, Node) has \n it's own id namespace e.g. node with id=100 \n and way with id=100 can exist and are not related
Class Node {
lat: Double
lon: Double
}
abstract Class Way {
nodes: List[Node]
}
Class OpenWay {
}
Class ClosedWay {
getCenter(): Coordinate
}
note left: a Way is closed if the first and last nodes \nare identical
Class Relation {
elements: List[RelationElement]
}
Class RelationElement {
role: String
element: OsmEntity
}
OsmModel *-- Node
OsmModel *-- Way
OsmModel *-- Relation
OsmEntity <|-- Node
OsmEntity <|-- Way
OsmEntity <|-- Relation
Relation *-- RelationElement
Way <|-- OpenWay
Way <|-- ClosedWay
@enduml | false | true | false | false | activity |
e3d36ba0e5c4fe9fee775d5f74796b1c577185e3 | 63d05a2d8db31272352bb47eaf1981b74093b719 | /uml/controller/apps/dnat/_install_local_floatingip.puml | 4bec613f01adb58bdcc13dc72b11d706018bae50 | [
"Apache-2.0"
] | permissive | ChaosXu/dragonflow | b0635a237ed48d9741c1bb4d5ebbc17a5f5d815c | e497928bc34269bcecc7ea4488f22b5c98b972dc | refs/heads/master | 2020-05-05T09:33:07.999625 | 2019-04-25T11:07:00 | 2019-04-25T11:07:00 | 179,908,580 | 0 | 0 | null | 2019-04-07T02:18:32 | 2019-04-07T02:18:32 | null | UTF-8 | PlantUML | false | false | 1,009 | puml | @startuml intall local floatingip
DNATApp->DNATApp:_install_local_floatingip(floatingip)
activate DNATApp
alt self._get_external_cidr(floatingip).version != n_const.IP_VERSION_4
DNATApp-->DNATApp
end
DNATApp->DNATApp:_install_ingress_nat_flows(floatingip)
activate DNATApp
DNATApp->DNATApp:_get_arp_responder(floatingip).add()
DNATApp->DNATApp:_install_source_port_detector(floatingip)
DNATApp->DNATApp:_install_ingress_capture_flow(floatingip)
DNATApp->DNATApp:_install_ingress_translate_flow(floatingip)
DNATApp->DNATApp:_install_ingress_icmp_flows(floatingip)
deactivate
DNATApp->DNATApp:_install_egress_nat_rules(floatingip)
activate DNATApp
DNATApp->DNATApp:_install_egress_capture_flow(floatingip)
DNATApp->DNATApp:_install_egress_translate_flow(floatingip)
DNATApp->DNATApp:_install_egress_icmp_flows(floatingip)
deactivate
note over DNATApp
port_locator.copy_port_binding(floatingip.floating_lport,floatingip.lport)
floatingip.floating_lport.emit_bind_local()
end note
deactivate
@enduml
| false | true | false | false | sequence |
4a1c27d052ac2c8ab1b2863d4cf20337449c85ef | ddd9fceda7accb11f6e5c8f3614ee9b5a717d8e8 | /node/src/deps/libuv/utils.puml | 3facdd26f612c4aca4fae67ad64f0e6155cbdd63 | [] | no_license | Ayase-252/note-figures | e2cf7578aa9363346ac0c97bac38dc88e2afd6c8 | 259f9b7eb718359e7c63f9c5da97b1e6e098b3c2 | refs/heads/master | 2023-04-14T13:19:23.107968 | 2021-05-01T11:26:13 | 2021-05-01T11:26:13 | 337,063,921 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 385 | puml | @startuml deps/libuv/utils
namespace libuv <<ExternalCModule>> {
class utils {
int uv_ip4_addr(const char* ip, int port, struct sockaddr_in* addr)
int uv_ip6_addr(const char* ip, int port, struct sockaddr_in6* addr)
int uv_inet_ntop(int af, const void* src, char* dst, size_t size)
int uv_if_indextoiid(unsigned int ifindex, char* buffer, size_t* size)
}
}
@enduml
| false | true | false | false | class |
a6b0f6a8183409f5dbcf235a421481f611513973 | b39401e2f33ea4b03f3ca4f35e6e9a804f4540d2 | /docs/uml/seq_diag.puml | 81cd62a0408b9fdfe0647681b1fcbb00e4c23207 | [] | no_license | ajaysgowda/sample_test_suite | cf8bd7471f6b1ad9a169d9051167aedfccbe04fe | c9cb6848cfed8aef20f3ca33b0209227effabf82 | refs/heads/master | 2022-11-16T15:38:06.184608 | 2020-07-15T15:03:40 | 2020-07-15T15:03:40 | 279,848,730 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 225 | puml | @startuml
actor operator
operator -> "Start Button"
participant "Ready Light"
"Start Button" -> EBCM
EBCM -> BMS : Turn ON
EBCM -> TPIM : Turn ON
EBCM -> APM: Turn ON
EBCM -> "Other Low voltage Devices": Turn ON
@enduml
| false | true | false | false | sequence |
4bea0b6adaa0901b6425dc4b1cc3d63f5dabb8e6 | e7aab27dc3b56328c92d783d7fa8fce12d8ac544 | /kapitler/media/uml-class-part.puml | aca710fb98a9273b47c7e13fab2889a1bccbb747 | [] | no_license | petterreinholdtsen/noark5-tjenestegrensesnitt-standard | 855019a61c8679a8119549e2824fa32ecc669e66 | 4673ba7134d83a6992bba6f9036c521c7ae1897f | refs/heads/master | 2023-06-11T12:08:52.134764 | 2023-03-05T11:05:21 | 2023-03-05T11:05:21 | 160,586,219 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 698 | puml | @startuml
skinparam nodesep 100
hide circle
class Arkivstruktur.Part {
+systemID : SystemID [0..1]
+partRolle : PartRolle
+virksomhetsspesifikkeMetadata : any [0..1]
}
class Arkivstruktur.Dokumentbeskrivelse <Arkivenhet> {
}
Arkivstruktur.Dokumentbeskrivelse *-- "part 0..*" Arkivstruktur.Part
class Arkivstruktur.Mappe <Arkivenhet> {
}
Arkivstruktur.Mappe *-- "part 0..*" Arkivstruktur.Part
class Arkivstruktur.PartEnhet <Part> {
}
Arkivstruktur.Part <|-- Arkivstruktur.PartEnhet
class Arkivstruktur.PartPerson <Part> {
}
Arkivstruktur.Part <|-- Arkivstruktur.PartPerson
class Arkivstruktur.Registrering <Arkivenhet> {
}
Arkivstruktur.Registrering *-- "part 0..*" Arkivstruktur.Part
@enduml
| false | true | false | false | class |
8ea3ae48c28470441b86b2e269bd1f5863b80733 | ca1cdd8d52a097e0ea0000d245b942f8f0fd70f8 | /Documentation/UML diagrams/exceptions.plantUml | d769dff12012c8be86146f61b11dba792ed677b7 | [] | no_license | SupaGait/JavaProject_Fundamental_class | 5f600f05c59eb0e21a86c790a454b0890a4db785 | a14ca03598424fb97744dc9699067d3951083cd7 | refs/heads/master | 2021-01-09T08:11:44.665377 | 2016-02-08T08:17:04 | 2016-02-08T08:17:04 | 49,128,588 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 195 | plantuml | @startuml
package fr.shazilgerard.findmypatient.exceptions {
class SomeFunctionalExceptions
class UpdateException
class AuthenticationException
class NoAuthorityException
}
@enduml | false | true | false | false | class |
e7500ec53778c9e4f98d305ddd71b29df6a33433 | 357de877c97a76853cad759c1c303b0abc5d8624 | /recibe_me2/doc/UML/createIssueSequence.puml | fa315c6dd489888b6894864a9d04517fa379f37d | [] | no_license | GreCar05/Golang | a9dad9d90fbb5c53a84cda5ddde85d95120e3c45 | 21c93080aecae6c1f3f07f18a6592d56a820ef49 | refs/heads/master | 2023-02-25T03:26:51.293968 | 2021-02-03T23:21:57 | 2021-02-03T23:21:57 | 335,780,018 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 993 | puml | @startuml
hide footbox
autonumber
actor client
box "FRONTEND"
participant ListDeliveryScreen
participant issueTypeScreen
participant issueScreen
end box
box "BACKEND"
participant API
participant database
end box
client -> ListDeliveryScreen: selecciona \nreportar un\nproblema con \nel envio
ListDeliveryScreen -> issueTypeScreen: se muestra la \npantalla de tipos\nde problema
client -> issueTypeScreen: Selecciona el \ntipo de problema
issueTypeScreen-> issueScreen: se abre el formulario \npara crear el problema
client -> issueScreen: Escribe el problema\n y presiona enviar
issueScreen-> API: POST /issues\n { \n\ttoken: "hash_token", \n\tdescription: "descriptionValue" \n}
API->API: validar_token
group if (token valid)
API -> database: Crea el problema
API -> ListDeliveryScreen:code:200\n{\n\tmessage:"operacion exitosa", \n\tdata:{...},\n\terrors:{...}\n}
else
API -> ListDeliveryScreen: code:400\n{\n\tmessage:"error info", \n\tdata:{...},\n\terrors:{...}\n}
end
@enduml
| false | true | false | false | usecase |
0a696f0dc0c4f767770dc689c05d807c079a7639 | 7fbdb3db8e966a7f78cad2d9e6798dfd8aedea01 | /src/com/cjj/designpattern/creator/factory/FactoryClassGraph.puml | a9dfd994dfa724519b1e54cf34bc508829098e53 | [] | no_license | vuquangtin/DesignPattern-1 | 3d1fc64e8412bf5ba3a10a38dde121c68ffc8b9a | 47182c1c6e3f7e4126d33bdca53e055d9f0b3b5d | refs/heads/master | 2021-10-09T20:10:01.009239 | 2019-01-03T01:33:51 | 2019-01-03T01:33:52 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 375 | puml | @startuml
package "framework"{
class Factory{
create()
createProduct()
registerProduct()
}
class Product{
use()
}
Factory ->Product:Create >
}
package "idcard"{
class IDCardFactory{
owners()
createProduct()
registerProduct()
getOwners()
}
class IDCard{
owner()
use()
getOwner()
}
IDCardFactory ->IDCard:Creates >
IDCard --|>Product
IDCardFactory --|>Factory
}
@enduml | false | true | false | false | sequence |
c4c280f0da0086c1085f62a4934d17712271669c | b8c409912c930baf8050f8c85da0cf2e97966b27 | /src/main/resources/uml/case/2_3改变角色的样式.puml | 6536c0467c5f6329b5dd1177d7d7b0267efe7bfd | [] | no_license | tom1120/BaseStudy | 8cd1b735a119e022d54738c7ba3d8a9cd16aa8d5 | 35d1c19a6ebaabbb52870af8b61604d8f0290a5e | refs/heads/master | 2023-07-24T13:22:00.656180 | 2023-07-08T15:53:45 | 2023-07-08T15:53:45 | 135,059,686 | 0 | 0 | null | 2023-07-08T15:54:31 | 2018-05-27T15:40:27 | Java | UTF-8 | PlantUML | false | false | 160 | puml | @startuml
'https://plantuml.com/use-case-diagram
:User: --> (Use)
"Main Admin" as Admin
"User the application" as (Use)
Admin-->(Admin the application)
@enduml | false | true | false | false | uml-unknown |
659c68b28ba67d91b24eabbe433d89ff85d4a55f | 605cac101260b1b451322b94580c7dc340bea17a | /malokhvii-eduard/malokhvii02/doc/plantuml/ua/khpi/oop/malokhvii02/data/DataComputationStatus.puml | e71762e1bd8267b819a56c4fb69b135b0108af78 | [
"MIT"
] | permissive | P-Kalin/kit26a | fb229a10ad20488eacbd0bd573c45c1c4f057413 | 2904ab619ee48d5d781fa3d531c95643d4d4e17a | refs/heads/master | 2021-08-30T06:07:46.806421 | 2017-12-16T09:56:41 | 2017-12-16T09:56:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 153 | puml | @startuml
enum DataComputationStatus {
{static} +SUCCESS
{static} +FAILURE
-DataComputationStatus()
}
@enduml
| false | true | false | false | class |
9601076123c30adfa3a6b0edbf05ea4e05edff78 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductPricesSetMessage.puml | 5c670e5d7ac8ed3d4f31059b6fa0d72b76514b5a | [] | 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,205 | 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 ProductPricesSetMessage [[ProductPricesSetMessage.svg]] extends Message {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
variantId: Long
prices: [[Price.svg List<Price>]]
staged: Boolean
}
interface Message [[Message.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
| false | true | false | false | class |
77f19f0e4aa0069204c142d6e390fd262936ad20 | 6a29809988dc3c9388a571ee323b256f3e96583a | /rzd0024Midterm/app/UML/SystemSequenceDiagram.puml | 32ca64909caa263a0bae1a8da1d4de9922c9420d | [] | no_license | dfremy/WirelessSoftwareDevelopment | c6953a183fbff6de6c0e16b1ac933261eca714ff | c21d618ce7dfd4e1470db99362919ad5e9edaf3d | refs/heads/master | 2021-01-22T02:28:41.638814 | 2015-03-07T02:45:12 | 2015-03-07T02:45:12 | 30,548,772 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 999 | puml | @startuml
actor User
loop while user is not tired
opt select type of word
User --> Haiku: Select type of word
Haiku --> User: Shows spinner with words
end
alt if type of word selected
alt if haiku !empty
opt display
User --> Haiku: Display haiku
Haiku --> User: Shows the haiku
end
opt delete word
User --> Haiku: Delete word
Haiku --> User: Shows new preview of haiku
end
end
alt if haiku !completed
opt select word
User --> Haiku: Select word
Haiku --> User: Shows all words that can be selected
end
opt add word
User --> Haiku: Add word
Haiku --> User: Show new preview of haiku
end
end
opt start over
User --> Haiku: Start Over
Haiku --> User:
end
end
end
@enduml | false | true | false | false | sequence |
e32228a76c70dd495b0542b50791713b9bbfe5f5 | 7b92b67a52d086be6f76697455b03fcdbd811edb | /docs/front/architecture.puml | 9b3c49a3fc7cc102c631cbeed8bad351c24af740 | [] | no_license | TakashiAihara/filtering_google_news_extension | 903be5f02806ea74f3544bb56f83289359bcc7c2 | 609caad0980343f1d502616f291843c0b4ba5863 | refs/heads/main | 2023-06-14T16:39:28.774414 | 2021-07-11T08:06:45 | 2021-07-11T08:06:45 | 372,812,577 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 530 | puml | @startuml Front Architecture
' Page
class Page{}
Page "1" o-- "0..*" Chunk : "List"
' Chunks
abstract class Chunk{
+ baseDiv
}
Chunk <|-- SingleArticleChunk
Chunk <|-- CategorizedArticlesChunk
Chunk <|-- HasChildArticlesChunk
Chunk "1" o- "0..*" Article : "List"
class SingleArticleChunk {}
class CategorizedArticlesChunk {}
class HasChildArticlesChunk {}
class ChunkFactory {}
' Articles
abstract class Article{}
Article <|-- SimpleArticle
Article <|-- ChildArticle
class SimpleArticle{}
class ChildArticle{}
@enduml
| false | true | false | false | class |
3afe3600a99b61f4f7573540cc73628d6665ac5c | 16e30132698b12631bd1cb2175ef3dee29bf5364 | /src/main/UML Class.puml | 709c553485627ec4af1ec4e129df61150e117cf6 | [] | no_license | bazhydlouskim/calculator | 94a1a7f73394bdc3a0706e59092d0d815cc3e4c8 | 69ccde05c13864e921f888e7fe2264d3f5b037dc | refs/heads/master | 2020-05-03T21:14:51.174665 | 2019-04-01T08:39:59 | 2019-04-01T08:39:59 | 178,820,059 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 453 | puml | @startuml
skinparam class {
BackgroundColor Azure
ArrowColor RoyalBlue
BorderColor DeepSkyBlue
}
hide empty members
abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection
List <|-- AbstractList
Collection <|-- AbstractCollection
Collection <|- List
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList
class ArrayList {
Object[] elementData
size()
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml | false | true | false | false | class |
c3f7a702ac1d88214d632848145ed6c0c4cbaf22 | b2be1f2c659ff90e5be7a97f52150c3f278e4c70 | /structural_patterns/adapter/adapter.puml | c268b64678ffd7814ca1d3d9556229dd8930fda1 | [] | no_license | sirejik/software-design-patterns | a3f0aab43a6b73f8e8d0d4ecd13a3f4aa362addc | 67b8ebc373bdf6e5d58d699ed0a84bb3b2666f58 | refs/heads/master | 2023-01-05T09:55:51.669200 | 2020-11-05T17:02:20 | 2020-11-05T17:02:20 | 298,362,438 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 338 | puml | @startuml
interface AbstractAdapter {
request()
}
class Adapter1 {
request()
}
class Adapter2 {
request()
}
AbstractAdapter <|-- Adapter1
AbstractAdapter <|-- Adapter2
class Adaptee1 {
foo1()
}
class Adaptee2 {
foo2()
}
Adapter1 --|> Adaptee1
Adapter2 --|> Adaptee2
class Target
Target --> AbstractAdapter
@enduml
| false | true | false | false | class |
6aa17838c64de60128578687ed2139ded7836084 | 154ae18acbd7d6a84bd4756f0b96ffd4fa405487 | /TP auto ecole/TP auto ecole.puml | 2561cf69aa1735853c2bd66a93e230b87803eb92 | [] | no_license | betessier/E6 | becce05f43b10da9c5ddd6e64107d44f95895738 | 1b977d8861dcdfa6883550708dd0f465d0371edb | refs/heads/master | 2021-03-11T22:59:34.168081 | 2020-03-11T13:41:50 | 2020-03-11T13:41:50 | 246,568,095 | 0 | 0 | null | 2020-03-11T12:50:48 | 2020-03-11T12:42:49 | C# | UTF-8 | PlantUML | false | false | 245 | puml | @startuml
class moniteur{
<u> id </u>
nom
dateEmbauche
}
class leçon{
<u> id </u>
dateLeçon
heureLeçon
}
moniteur "1..1 est donné "--"1..*\ndonné"leçon:donner
@enduml | false | true | true | false | class |
cb2e4780b9b5e7b5a2ea0c15cd462ea43681567e | cf35a5c6ddfb7bac2e4d13d65b28531fda9d324d | /SequenceDiagrams/MakePaymentSD.puml | dd79f048e1c00641350ecad3538f3c50f525a4b1 | [] | no_license | Berkuss/NextGenPOS | 71cda4b67efece836dbd58d351a5971c35bac8ab | 89fd1102613722e4437c87b0249d81d052445468 | refs/heads/master | 2022-12-24T19:05:52.027942 | 2020-09-19T18:57:40 | 2020-09-19T18:57:40 | 296,933,098 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 477 | puml | @startuml
title Make Payment
actor Actor
Actor->":UserInterface":makePayment(cashTendered)
":UserInterface"->":Register":1:makePayment(cashTendered)
":Register"->"currentSale:Sale":1.1:makePayment(cashTendered)
create "payment:Payment"
"currentSale:Sale"->"payment:Payment":1.1.1:create(cashTendered)
":UserInterface"->":Register":2:saveSale
":Register"->"store:Store":2.1: addSale(currnetSale)
"store:Store"->"completedSales:List<Sale>":2.1.1: add(currentSale)
@enduml | false | true | false | false | usecase |
41603c69a57113267486637ade9cf1903f1ca4ce | 10d153ee925c8511a5a2470cbf3dae3e4aa96ac9 | /Diagramme de classe/L2 - Méthodes et visibilité/exemples/dc_2/dc_2.puml | 99207d94efb44bea61ec231d0a7a6a917ca854b7 | [] | no_license | profesig/exosOO | db703060b96949019a6a7bf6a462b1bd6070d633 | 56ec1d91ea4d4f8c1a6480e3e43d483593878e60 | refs/heads/master | 2016-09-05T17:07:28.191472 | 2014-02-27T16:57:44 | 2014-02-27T16:58:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 145 | puml | @startuml
skinparam classAttributeIconSize 0
class Produit {
- prix:double
+ getPrix():double
+ setPrix(nouveauPrix:double):void
}
@enduml | false | true | false | false | class |
be960860a9db3f5316d981530ab6ea362e8ca2f3 | e10cac196aa29d7353b36e26c7bf65fa39c5763b | /docs/DG_Diagrams/Components/UiComponent.puml | c42349cb9c25d6d7159c0df23828be95f73b9abd | [] | no_license | wamikamalik/tp | 174c866802ecc34139def88fa91c79d9c682c7bc | d6beb431ad97a6608bcdf8418f698c6faa779c61 | refs/heads/master | 2023-01-11T22:41:16.157009 | 2020-11-09T13:17:45 | 2020-11-09T13:17:45 | 299,304,875 | 1 | 0 | null | 2020-09-28T12:41:08 | 2020-09-28T12:41:07 | null | UTF-8 | PlantUML | false | false | 286 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
Rectangle Ui {
class Ui {
- {static} in: Scanner
+ {static} printLine()
+ {static} printWelcomeMessage()
+ {static} printHelp()
+ {static} showError()
+ {static} printRouteMessage()
+ {static} printFullRouteMessage()
}
@enduml | false | true | false | false | class |
aceb1275ae30aa9faac80c7d91932f584707bc52 | 8a0653b68453c355f27c1e0909da3d2d37601b65 | /project/uml/CLI_Configuration/VariableManager.puml | f7fda65f9006e43dfc17e6680382af011d0f25fe | [] | no_license | ezequiels/nazz | c605e48262bb7c8386197e370736171c7f964e21 | 3735c58c464bb861b275481ec1216bc8da9ce84e | refs/heads/master | 2021-08-30T04:35:27.576352 | 2017-12-16T02:25:12 | 2017-12-16T02:25:12 | 111,032,955 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 522 | puml | @startuml
participant CLI
participant Variables #greenYellow
create Variables
CLI -> Variables: init(inventoryFile)
CLI -> Variables: load_extra_vars(extraVariablesFiles)
loop for each extraVariablesFile in extraVariablesFiles
Variables -> DataLoader: load_from_file(extraVariablesFile)
DataLoader -> DataLoader: read vars from YAML file
Variables <-- DataLoader: return parsed_data
end loop
CLI <-- Variables: return extra_vars
CLI -> Variables: load_options_vars(options)
CLI <-- Variables: return options_vars
@enduml | false | true | false | false | sequence |
60bca4ea7343b945bcf74a2cd5aad197a3ba69a1 | 98c049efdfebfafc5373897d491271b4370ab9b4 | /docs/SPRINT_3/UC45-Remove_Park/MD.puml | 38526d68ffeae9afd59a30e23be44847f85fb176 | [] | no_license | antoniodanielbf-isep/LAPR3-2020 | 3a4f4cc608804f70cc87a3ccb29cbc05f5edf0f3 | 7ee16e8c995aea31c30c858f93e8ebdf1de7617f | refs/heads/main | 2023-05-27T14:42:05.442427 | 2021-06-20T18:09:59 | 2021-06-20T18:09:59 | 378,709,095 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 337 | puml | @startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Pharmacy {
-Integer id
-String designation
}
class Park {
-Integer id
-Integer maxCapacity
}
/'------------------------------------------------------------------------------------ '/
Pharmacy "1" -- "1..*" Park: has >
@enduml
| false | true | false | false | class |
0bf8ff4e0de271b432e029da75d1eace09e6efa3 | 68cfe56325be29d7f9c318611a604812cc26c04a | /src/main/java/ex41/FileManager_Class_Diagram.puml | a58b8a0eeb90331e15e78554f7f9b2a7b27a0efd | [] | no_license | jamesk08/karlinski-cop3330-assignment3 | 3661b05d5987be4347c31a25b945e5682df84ad4 | 594e40827b97dc1d18f0a7c683dcc5f2530f4efb | refs/heads/main | 2023-08-18T01:37:03.999745 | 2021-10-11T00:12:49 | 2021-10-11T00:12:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 411 | puml | ' UCF COP3330 Fall 2021 Assignment 3 Solution
' Copyright 2021 James Karlinski
@startuml
class ex41.FileManager
{
+ ArrayList<String> getPeopleListFromFile()
+ void writePeopleListToOutputFile(ArrayList<String>)
- {static} String INPUT_FILE_NAME
- {static} String OUTPUT_FILE_NAME
- File createOutputFile()
- void sortPeopleList(ArrayList<String>)
- void output(String)
}
@enduml
| false | true | false | false | class |
7c76e64f97d05b83f1c86e417ac6ccf96de50ae4 | de8a1e04d05dced7044f25dd1e9e6464c99168e0 | /intro-refactoring-d02/doc/DSVideostore.puml | ed9d3f9165c3a7e2545ed0a4619cddbbe00f50cd | [
"Unlicense"
] | permissive | chyeyexx7/Disseny-de-Software-20-21 | cb8049b192291901ab6cf6d14bf642cbf1d85557 | 5d581f19185b8e5aab4e59d7fbe0245013802a67 | refs/heads/main | 2022-12-28T21:26:03.001096 | 2020-10-08T04:39:19 | 2020-10-08T04:39:19 | 302,228,330 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 445 | puml | @startuml
hide footbox
autonumber "<b>[0]"
participant Customer
participant Rental
participant Movie
activate Customer
loop all rentals
Customer -> Rental: getMovie
activate Rental
Rental -->Customer: idMovie
deactivate Rental
Customer -> Movie: getPrice
activate Movie
Movie -> Customer: int
deactivate Movie
Customer -> Rental: getDaysRented
activate Rental
Rental --> Customer: int
deactivate Rental
end loop
@enduml
| false | true | false | false | sequence |
b2c5dfa30e6ab4deecb6db0dedde6b808e607ce2 | 90a64ec8bc53ed7de6e1838755b68b6bb6d51874 | /src/uml/disignCode/commandModeUml.puml | 23c3744757a0def2c4c34ca9e8949036cb3aa686 | [] | no_license | nomenofear/software_Design_Pattern_Experiment | 2733d33c9e796db7cc99b925c6403e7d9f7be912 | 34fb6f20806374b84d12c3adcba4644c24635a35 | refs/heads/main | 2023-04-14T09:11:13.031566 | 2021-05-02T07:36:36 | 2021-05-02T07:36:36 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 659 | puml | @startuml
'https://plantuml.com/class-diagram
class Text{
-Arraylist<String> name
+Command:command
+click()
+undo()
}
class Edit{
-Arraylist<String> name
+Command command
+click()
+undo()
}
interface Command{
+abstract execute():void
+abstract get():String
}
class Undo
class Opencommand
class Createcommand
class Copycommand
class Pastecommand
class BoardScreen{
+open()
+create()
+copy()
+paste()
}
Text-->Command
Edit-->Command
Opencommand--|>Command
Createcommand--|>Command
Copycommand--|>Command
Pastecommand--|>Command
Undo--|>Command
Opencommand-->BoardScreen
Copycommand-->BoardScreen
Createcommand-->BoardScreen
Pastecommand->BoardScreen
@enduml | false | true | false | false | class |
974543a808235943aaa002aa581fe80ce20b98b2 | 2cb0d17b297862de0b2876905bc69fab6a3fda1a | /diagrams/interaction_diagrams/UC 8 - Update Task Status - Make executing.plantuml | eeaeef47dae4bca03fcc697f4ff856a75b6df1ec | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | julienbenaouda/projectJJA | 507bd714ec752d41ce1ef2f7fd05104390f34e92 | 9063388043b79e68640379cda5f674df62f76213 | refs/heads/master | 2021-04-27T17:28:29.111045 | 2018-06-14T19:29:11 | 2018-06-14T19:29:11 | 122,321,355 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,710 | plantuml | @startuml
title "Use Case - Update Task Status - Make executing"
-> ":Controller": makeExecuting(TaskWrapper)
activate ":Controller"
":Controller" -> ":Clock": getTime()
activate ":Clock"
":Controller" <-- ":Clock": LocalDateTime
deactivate ":Clock"
":Controller" -> ":UserManager": getCurrentUser()
activate ":UserManager"
":Controller" <-- ":UserManager": User
deactivate ":UserManager"
":Controller" -> ":Task": makeExecuting(ResourceManager, LocalDateTime, User)
activate ":Task"
":Task" -> ":Task": getPlan()
activate ":Task"
":Task" <-- ":Task": Plan
deactivate ":Task"
":Task" -> ":Plan": isDeveloperFromPlan(User)
activate ":Plan"
":Task" <-- ":Plan": boolean
deactivate ":Plan"
":Task" -> ":Task": getState()
activate ":Task"
":Task" <-- ":Task": TaskState
deactivate ":Task"
":Task" -> ":TaskStatePlanned": execute(Task, ResourceManager, LocalDateTime)
activate ":TaskStatePlanned"
":TaskStatePlanned" -> ":TaskStatePlanned": isAvailable(ResourceManager, Task, LocalDateTime)
activate ":TaskStatePlanned"
":TaskStatePlanned" -> ":Task": getDependencies()
activate ":Task"
":TaskStatePlanned" <-- ":Task": List<Task>
deactivate ":Task"
loop over dependencies
":TaskStatePlanned" -> ":Task": isFinished()
activate ":Task"
":TaskStatePlanned" <-- ":Task": boolean
deactivate ":Task"
end loop
":TaskStatePlanned" -> ":Task": getPlan()
activate ":Task"
":TaskStatePlanned" <-- ":Task": Plan
deactivate ":Task"
":TaskStatePlanned" -> ":Task": getEstimatedDuration()
activate ":Task"
":TaskStatePlanned" <-- ":Task": long
deactivate ":Task"
":TaskStatePlanned" -> ":TimeSpan": TimeSpan(LocalDateTime, LocalDateTime)
activate ":TimeSpan"
":TaskStatePlanned" <-- ":TimeSpan": TimeSpan
deactivate ":TimeSpan"
":TaskStatePlanned" -> ":ResourceManager": canBeRescheduled(Plan, TimeSpan)
activate ":ResourceManager"
":ResourceManager" -> ":Plan": getReservations()
activate ":Plan"
":ResourceManager" <-- ":Plan": List<Reservation>
deactivate ":Plan"
loop over reservations
":ResourceManager" -> ":Reservation": isUserSpecific()
activate ":Reservation"
":ResourceManager" <-- ":Reservation": boolean
deactivate ":Reservation"
":ResourceManager" -> ":Reservation": getResource()
activate ":Reservation"
":ResourceManager" <-- ":Reservation": Resource
deactivate ":Reservation"
":ResourceManager" -> ":Plan": removeReservation()
activate ":Plan"
deactivate ":Plan"
":ResourceManager" -> ":Resource": isAvailable(TimeSpan)
activate ":Resource"
":ResourceManager" <-- ":Resource": boolean
deactivate ":Resource"
":ResourceManager" -> ":ResourceManager": getAlternativeResources(Resource, TimeSpan)
activate ":ResourceManager"
":ResourceManager" -> ":Resource": getType()
activate ":Resource"
":ResourceManager" <-- ":Resource": ResourceType
deactivate ":Resource"
":ResourceManager" -> ":ResourceType": getAvailableResources(TimeSpan)
activate ":ResourceType"
":ResourceManager" <-- ":ResourceType": List<Resource>
deactivate ":ResourceType"
":ResourceManager" <-- ":ResourceManager": List<Resource>
deactivate ":ResourceManager"
":ResourceManager" -> ":Plan": createReservation()
activate ":Plan"
deactivate ":Plan"
end loop
":TaskStatePlanned" <-- ":ResourceManager": boolean
deactivate ":ResourceManager"
":TaskStatePlanned" <-- ":TaskStatePlanned": boolean
deactivate ":TaskStatePlanned"
":TaskStatePlanned" -> ":Task": getPlan()
activate ":Task"
":TaskStatePlanned" <-- ":Task": Plan
deactivate ":Task"
":TaskStatePlanned" -> ":Task": getEstimatedDuration()
activate ":Task"
":TaskStatePlanned" <-- ":Task": long
deactivate ":Task"
":TaskStatePlanned" -> ":TimeSpan": TimeSpan(LocalDateTime, LocalDateTime)
activate ":TimeSpan"
":TaskStatePlanned" <-- ":TimeSpan": TimeSpan
deactivate ":TimeSpan"
":TaskStatePlanned" -> ":ResourceManager": reschedulePlan(Plan, TimeSpan)
activate ":ResourceManager"
":ResourceManager" -> ":Plan": getReservations()
activate ":Plan"
":ResourceManager" <-- ":Plan": List<Reservation>
deactivate ":Plan"
loop over reservations
":ResourceManager" -> ":Reservation": isUserSpecific()
activate ":Reservation"
":ResourceManager" <-- ":Reservation": boolean
deactivate ":Reservation"
":ResourceManager" -> ":Reservation": getResource()
activate ":Reservation"
":ResourceManager" <-- ":Reservation": Resource
deactivate ":Reservation"
":ResourceManager" -> ":Plan": removeReservation()
activate ":Plan"
deactivate ":Plan"
":ResourceManager" -> ":Resource": isAvailable(TimeSpan)
activate ":Resource"
":ResourceManager" <-- ":Resource": boolean
deactivate ":Resource"
":ResourceManager" -> ":ResourceManager": getAlternativeResources(Resource, TimeSpan)
activate ":ResourceManager"
":ResourceManager" -> ":Resource": getType()
activate ":Resource"
":ResourceManager" <-- ":Resource": ResourceType
deactivate ":Resource"
":ResourceManager" -> ":ResourceType": getAvailableResources(TimeSpan)
activate ":ResourceType"
":ResourceManager" <-- ":ResourceType": List<Resource>
deactivate ":ResourceType"
":ResourceManager" <-- ":ResourceManager": List<Resource>
deactivate ":ResourceManager"
":ResourceManager" -> ":Plan": createReservation()
activate ":Plan"
deactivate ":Plan"
end loop
deactivate ":ResourceManager"
":TaskStatePlanned" -> ":Task": setTimeSpan(TimeSpan)
activate ":Task"
deactivate ":Task"
":TaskStatePlanned" -> ":Task": setState(TaskStateExecuting)
activate ":Task"
deactivate ":Task"
deactivate ":TaskStatePlanned"
deactivate ":Task"
deactivate ":Controller"
@enduml
| false | true | false | false | sequence |
9b452ab67012792f18521c21562048ae44508021 | f81119b5904a9392062069e7dc674eb05f4cfcc2 | /out/production/Symulacja_PO/Object Class Intellij 1.puml | 9aa11e83f5b54771d91c0ea90b27f14f5c1660de | [] | no_license | krzysztofhirak/Symulacja_PO | b167452658313bc6c15854a3d844db3ebee96a0a | acd6ad39fb8a37f7cf4b00bc9dda89787fabe05b | refs/heads/main | 2023-05-28T13:24:10.657914 | 2021-06-15T19:07:41 | 2021-06-15T19:07:41 | 358,337,873 | 2 | 0 | null | 2021-04-22T17:54:57 | 2021-04-15T17:19:26 | Java | UTF-8 | PlantUML | false | false | 242 | puml | @startuml
'https://plantuml.com/object-diagram
object London
object Washington
object Berlin
object NewYork
map CapitalCity {
UK *-> London
USA *--> Washington
Germany *---> Berlin
}
NewYork --> CapitalCity::USA
@enduml
| false | true | false | false | sequence |
f56fedaa809ec6d31b8f25687ee3733494356a99 | c815f9c82c1400f76243750cd0ec609d217b9943 | /memento/etc/memento.urm.puml | 316d4047ddbd433b6340836fec438a4c377b0add | [
"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 | 1,151 | puml | @startuml
package com.iluwatar.memento {
-class StarMementoInternal {
- ageYears : int
- massTons : int
- type : StarType
- StarMementoInternal()
+ getAgeYears() : int
+ getMassTons() : int
+ getType() : StarType
+ setAgeYears(ageYears : int)
+ setMassTons(massTons : int)
+ setType(type : StarType)
}
class App {
+ App()
+ main(args : String[]) {static}
}
interface StarMemento {
}
class Star {
- ageYears : int
- massTons : int
- type : StarType
+ Star(startType : StarType, startAge : int, startMass : int)
~ getMemento() : StarMemento
~ setMemento(memento : StarMemento)
+ timePasses()
+ toString() : String
}
enum StarType {
+ DEAD {static}
+ RED_GIANT {static}
+ SUN {static}
+ SUPERNOVA {static}
+ UNDEFINED {static}
+ WHITE_DWARF {static}
- title : String
+ toString() : String
+ valueOf(name : String) : StarType {static}
+ values() : StarType[] {static}
}
}
StarMementoInternal --> "-type" StarType
Star --> "-type" StarType
StarMementoInternal ..+ Star
StarMementoInternal ..|> StarMemento
@enduml | false | true | false | false | class |
facf83286ef8f4d90c56db81558c6d128684eb6a | 80c70479e08124fb2137de9bffe3779214c83c32 | /scheme.puml | 80d4a68737ddf0c8be26ac6801648e0903ed4e02 | [] | no_license | senichek/safetynet-project5 | 60e315c6f3bf7e9a7ba81e59cf23e4afc2857b33 | f36693555b0a41998b6a10525ad1ed1b2aa2a3d6 | refs/heads/master | 2023-08-25T07:14:40.337549 | 2021-11-06T15:46:03 | 2021-11-06T15:46:03 | 421,825,308 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,498 | puml | @startuml API
User -> SafeNet_API: 1. Request (GET): http://localhost:8080/firestation?stationNumber=<station_number>
SafeNet_API--> User : Response: la liste des personnes couvertes par la caserne de pompiers correspondante;
User -> SafeNet_API: 2. Request (GET): http://localhost:8080/childAlert?address=<address>
SafeNet_API--> User : Response: liste d'enfants (tout individu âgé de 18 ans ou moins) habitant à cette adresse;
User -> SafeNet_API: 3. Request (GET): http://localhost:8080/phoneAlert?firestation=<firestation_number>
SafeNet_API--> User : Response: la liste des numéros de téléphone des résidents desservis par la caserne;
User -> SafeNet_API: 4. Request (GET): http://localhost:8080/fire?address=<address>
SafeNet_API--> User : Response: la liste des habitants vivant à l’adresse donnée ainsi que le numéro de la caserne de pompiers la desservant;
User -> SafeNet_API: 5. Request (GET): http://localhost:8080/flood/stations?stations=<a list of station_numbers>
SafeNet_API--> User : Response: la liste de tous les foyers desservis par la caserne. Cette liste doit regrouper les personnes par adresse;
User -> SafeNet_API: 6. Request (GET): http://localhost:8080/personInfo?firstName=<firstName>&lastName=<lastName>
SafeNet_API--> User : Response: le nom, l'adresse, l'âge, l'adresse mail et les antécédents médicaux;
User -> SafeNet_API: 7. Request (GET): http://localhost:8080/communityEmail?city=<city>
SafeNet_API--> User : Response: les adresses mail de tous les habitants de la ville;
User -> SafeNet_API: 8. Request (POST) to SAVE or UPDATE person: http://localhost:8080/person
SafeNet_API--> User : Response: personne qui a été créée ou mise à jour;
User -> SafeNet_API: 9. Request (DELETE): http://localhost:8080/person
SafeNet_API--> User : Response: personne qui a été supprimée;
User -> SafeNet_API: 10. Request (POST): http://localhost:8080/firestation
SafeNet_API--> User : Response: Caserne de pompiers qui a été créée ou mise à jour;
User -> SafeNet_API: 11. Request (DELETE): http://localhost:8080/firestation
SafeNet_API--> User : Response: Caserne de pompiers qui a été supprimée;
User -> SafeNet_API: 12. Request (POST): http://localhost:8080/medicalRecord
SafeNet_API--> User : Response: le dossier médical qui a été créée ou mise à jour;
User -> SafeNet_API: 13. Request (DELETE): http://localhost:8080/medicalRecord
SafeNet_API--> User : Response: le dossier médical qui a été supprimé;
@enduml | false | true | true | false | sequence |
d6aabb6f37b360eedae9c53dc3505f50da95b03b | c808c053ca4ad88d384a4690c612bde8d2b515ac | /cardreader.provider.nfc/doc/plantuml/NFCCRP/NfcCardChannel.plantuml | a7f0c949a3d1477123f09c17573c03dc0606bf04 | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderProvider-NFC-Android | 915c9ff940d467e64c021055d9b6d3858e539d3f | f2b42a1da3b04f742b4f83facbd9cf039339c56a | refs/heads/master | 2022-01-13T13:58:12.947688 | 2022-01-07T07:24:28 | 2022-01-07T07:24:28 | 214,091,391 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 778 | plantuml | @startuml
package de.gematik.ti.cardreader.provider.nfc.entities {
class NfcCardChannel {
- channelNo : int
{static} - MANAGE_CHANNEL_COMMAND_CLOSE : CommandAPDU
{static} - RESPONSE_SUCCESS : int
{static} - LOW_CHANNEL_NUMBER_VALUE : int
{static} - MAX_CHANNEL_NO_VALUE : int
- channelClosed : boolean
+ NfcCardChannel()
+ NfcCardChannel()
+ getCard()
+ getChannelNumber()
+ transmit()
+ transmit()
+ close()
~ modifyCommandForLogicalChannel()
- checkChannelClosed()
}
}
NfcCardChannel -up-|> CardChannel
@enduml
| false | true | false | false | class |
9451413911df2e2da7c984ecfec8d3733ed247d6 | 5311c3ad523918b01c52d8f00a9b96e38b24db9e | /bot/src/main/java/QuizModule/QuizSingle/uml/QuizSingle.plantuml | af900619e969985848d65c6538a52692a818139c | [] | no_license | twgust/DiscordBot | 08bfa99b0e9c3a1baf15b3a04782e518a41f5da9 | 895f8b56dfb7b2c6776c86a88d401cecc2af1d8a | refs/heads/master | 2022-06-04T22:32:34.518640 | 2020-12-20T19:49:56 | 2020-12-20T19:49:56 | 246,451,508 | 1 | 0 | null | 2022-05-20T21:32:36 | 2020-03-11T02:02:05 | Java | UTF-8 | PlantUML | false | false | 1,957 | plantuml | @startuml
title __QUIZSINGLE's Class Diagram__\n
namespace QuizModule {
namespace QuizSingle {
class QuizModule.QuizSingle.QuestionSingle {
- answer : String
- answered : Boolean
- id : long
- question : String
+ QuestionSingle()
+ getAnswer()
+ getAnswered()
+ getId()
+ getQuestion()
+ setAnswer()
+ setAnswered()
+ setId()
+ setQuestion()
}
}
}
namespace QuizModule {
namespace QuizSingle {
class QuizModule.QuizSingle.QuizSingle {
- channel : TextChannel
- eb : EmbedBuilder
- hintCounter : int
- hints : String[]
- isRunning : boolean
- thread : Thread
+ QuizSingle()
+ QuizSingle()
+ checkAnswer()
+ isAlive()
+ run()
+ setDatabaseConnection()
+ setTextChannel()
+ skip()
+ start()
+ stop()
- generateHints()
- getHint()
- postMessage()
}
}
}
namespace QuizModule {
namespace QuizSingle {
class QuizModule.QuizSingle.QuizSingleParser {
- client : HttpClient
- url : String
+ QuizSingleParser()
+ getQuestion()
- createQuestion()
- fixFormat()
- parse()
}
}
}
QuizModule.QuizSingle.QuizSingle .up.|> java.lang.Runnable
QuizModule.QuizSingle.QuizSingle o-- QuizModule.QuizSQLConnector : dbConnection
QuizModule.QuizSingle.QuizSingle o-- QuizModule.QuizSingle.QuizSingleParser : parser
QuizModule.QuizSingle.QuizSingle o-- QuizModule.QuizSingle.QuestionSingle : question
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 |
a9049fa36ceea91ffa29e6a1d3c4db75327f3e68 | 06b4f9b29e51db9eef79b9f9828f3aa369840ec1 | /Deliverables/Oblig3/src/main/java/inf112/skeleton/app/app.plantuml | 61a2bf928cb0105bc30341b4244efabcad18ef4e | [] | no_license | inf112-v19/Thebadguys | d650f57d5b23824e82498cfc55c7026d29a59762 | ec1cbbd1ab466b1482fb0a72b466f351481d4917 | refs/heads/master | 2020-04-19T11:14:13.465654 | 2019-05-03T17:29:09 | 2019-05-03T17:29:09 | 168,161,605 | 0 | 0 | null | 2019-03-08T14:24:40 | 2019-01-29T13:44:35 | Java | UTF-8 | PlantUML | false | false | 5,372 | plantuml | @startuml
title __APP's Class Diagram__\n
package inf112.skeleton.app {
class CardSlots {
- cardSlotTexture : Texture
- cardSlotSprite1 : Sprite
- cardSlotSprite2 : Sprite
- posX : float
- posY : float
- batch : Batch
- insideCardslot : boolean
+ CardSlots()
+ CardSlots()
+ getCardSlotSprite()
+ getIsInsideSlot()
+ setInsideCardslot()
+ getPosX()
+ getPosY()
}
}
package inf112.skeleton.app {
enum CardValues {
BACKUP
MOVE1
MOVE2
MOVE3
ROTATE90
ROTATE180
ROTATEC90
spr
priority
name
}
}
package inf112.skeleton.app {
class Cards {
- cardTexture : Texture
- cardSlotTexture : Texture
- cardSprite : Sprite
- defaultPosX : float
- defaultPosY : float
- posX : float
- posY : float
- batch : Batch
- name : String
- priority : int
- deck : Deck
+ Cards()
+ Cards()
+ getName()
+ getPriority()
+ getCardSprite()
+ getPosX()
+ getPosY()
+ getDefaultPosX()
+ getDefaultPosY()
}
}
package inf112.skeleton.app {
class Deck {
{static} - DeckList : ArrayList<Cards>
+ Deck()
+ getDeckList()
{static} + addCard()
{static} + getCard()
}
}
package inf112.skeleton.app {
class GameEvent {
- flag1X : int
- flag1Y : int
- flag2X : int
- flag2Y : int
- flag3X : int
- flag3Y : int
- flag4X : int
- flag4Y : int
+ updateCheckpoint()
}
}
package inf112.skeleton.app {
class HelloWorld {
- batch : SpriteBatch
- font : BitmapFont
- i : int
+ create()
+ dispose()
+ render()
+ resize()
+ pause()
+ resume()
+ keyDown()
+ keyUp()
+ keyTyped()
+ touchDown()
+ touchUp()
+ touchDragged()
+ mouseMoved()
+ scrolled()
}
}
package inf112.skeleton.app {
interface ICard {
{abstract} + getCardSprite()
{abstract} + getPosX()
{abstract} + getPosY()
{abstract} + getDefaultPosX()
{abstract} + getDefaultPosY()
}
}
package inf112.skeleton.app {
interface IDeck {
{abstract} + getDeckList()
}
}
package inf112.skeleton.app {
interface IRobot {
{abstract} + getPosX()
{abstract} + getPosY()
{abstract} + getTextureStr()
{abstract} + getTexture()
{abstract} + getSprite()
}
}
package inf112.skeleton.app {
class Main {
{static} + main()
}
}
package inf112.skeleton.app {
class RoboRallyDemo {
- tiledMap : TiledMap
- tiledMapRenderer : TiledMapRenderer
- camera : OrthographicCamera
- i : int
- clickedCard : Cards
- CardButton : Cards
- robot : Robot
- counter : int
- isDone : boolean
- cardSlotPos : ArrayList<CardSlots>
- randomSpriteList : ArrayList<Sprite>
- spritePos : ArrayList<Sprite>
- Deck : Deck
# selectedCards : Cards[]
- batch : SpriteBatch
- texture : Texture
- buttonTexture : Texture
- buttonSprite : Sprite
- sprite : Sprite
- cardSprite10 : Sprite
- cardTexture : Texture
- posX : float
- posY : float
- test : boolean
+ RoboRallyDemo()
+ create()
+ dispose()
+ render()
+ resize()
+ pause()
+ resume()
+ keyDown()
+ keyUp()
+ keyTyped()
+ touchDown()
+ touchUp()
+ touchDragged()
+ mouseMoved()
+ scrolled()
+ getCardCenterX()
+ getCardCenterY()
+ getCardSlotCenterX()
+ getCardSlotCenterY()
+ insideCardSlot()
+ insideCard()
- setSprite()
- setCardSprites()
- createDecklist()
- drawCards()
- createCardSlots()
- drawCardSlots()
- getRandomSprite()
- rng()
- addSprites()
}
}
package inf112.skeleton.app {
class Robot {
- sprite : Sprite
- posX : int
- posY : int
- checkpoint : int[]
- flagsPassed : int
- direction : int
+ Robot()
+ Robot()
+ Robot()
+ getPosX()
+ getPosY()
+ getSprite()
+ getCheckpoint()
+ getFlagsPassed()
+ getDirection()
+ setCheckpoint()
+ setFlagsPassed()
+ setPosX()
+ setPosY()
+ rotate_right()
+ rotate_left()
+ moveForward()
+ move()
}
}
Cards -up-|> ICard
Cards o-- Cards : Dummycard0
Deck -up-|> IDeck
HelloWorld -up-|> ApplicationListener
HelloWorld -up-|> InputProcessor
RoboRallyDemo -up-|> ApplicationListener
RoboRallyDemo -up-|> InputProcessor
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 |
168a9dec7d761d841a6482baca3f324ab80174f0 | 5482cd2eb495a0ac03a4876322898e82acd6b5b4 | /fhir401/docs/plant-diagrams/close-open-gap.puml | 1c03bb617ad510c5758704dc1c2fc20e2a6651ea | [] | no_license | QualityMeasurement/davinci-gic | d24b80eacd6474d984c39a4ef6faeccbd339798c | e8583a29d1ae7075d5215c1fff840849e6a3f05f | refs/heads/master | 2023-04-27T01:43:41.142315 | 2021-05-18T18:07:12 | 2021-05-18T18:07:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 602 | puml | @startuml GIC_Close_Open_Gap
title GIC Close Open Gap
participant "Client" as Client
participant "Server" as Server
Server -> Server: Patient data related to Quality Measure
note right: Postman "Config" request
Client -> Server: Request $care-gaps Operation
Server -> Client: $care-gaps Bundle (care gap document)
note right: Postman "Open Gap" request
Server -> Server: Patient data that closes the gap
note right: Postman "Close Gap" request
Client -> Server: Request $care-gaps Operation
Server -> Client: $care-gaps Bundle (care gap document)
note right: Postman "Closed Gap" request
@enduml
| false | true | false | false | sequence |
025d456a26837b54b35e5e79ae06f153784a61cd | b4032a0d3a2036edb6b7bb2e866e7b8bf02f8fe3 | /webui/models/repository.puml | 9819bee76e65eb9d90bb12ce691dce7d339bf6c2 | [] | no_license | khorevaa/go-web-v8storage | 10ea6a4da5b0651ef4ad7c666b08108f8aa265f9 | f4587bca0a6f541e6eebbca7e0294e8ac6ec6e2c | refs/heads/master | 2021-08-22T21:21:24.673451 | 2017-12-01T09:49:27 | 2017-12-01T09:49:27 | 107,035,896 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 243 | puml | @startuml
class storage {
+server_id : int64
+project_id : int64
+void() getProject
name
}
class project {
+id : int64
+key : string
+name : string
+description : string
}
project -> storage
enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml | false | true | false | false | class |
f7da7b93972f5dd9beaaeb26be228b2c16eff6c9 | 29e499c7049d725de515d0f0294f765b6bbb4dc3 | /DesignPattern/out/production/DesignPattern/com/ilike/iterator/Iterator.puml | 5ae14df5d53d560db69a14dc78ca8f40dae9da5f | [] | no_license | dongyuancaizi/designPatternLearning | 70dddd9d156fd3d4e9c07bb4f94f76820b625308 | 1fbde529b073b9a205bffd90607574754d6aac50 | refs/heads/master | 2020-07-04T05:13:23.384529 | 2019-11-19T13:09:10 | 2019-11-19T13:09:10 | 202,167,833 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 546 | puml | @startuml
interface Iterator
interface Aggregate
class ConcreteIterator
class ConcreteAggregate
Iterator <|.. ConcreteIterator
Iterator <|.. ConcreteIterator02
Aggregate <|.. ConcreteAggregate
Aggregate <|.. ConcreteAggregate02
ConcreteIterator <.. ConcreteAggregate
ConcreteIterator02 <.. ConcreteAggregate02
interface Iterator{
boolean hasNext();
E next();
void remove();
}
interface Aggregate{
Iterator createIterator();
}
class ConcreteAggregate{
List<E> elements;
}
class ConcreteAggregate02{
E [] elements;
}
@enduml | false | true | false | false | class |
2865fb604140bd1613b11ab9aa8a64cc9d116ab9 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StandalonePriceTiersSetMessagePayload.puml | 227ceffc0e0a1c1eb8bab8c3b74d090a2fab270b | [] | 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 | 528 | 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 StandalonePriceTiersSetMessagePayload [[StandalonePriceTiersSetMessagePayload.svg]] extends MessagePayload {
type: String
tiers: [[PriceTier.svg List<PriceTier>]]
previousTiers: [[PriceTier.svg List<PriceTier>]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
911e4c8d9125c4c900b9b4df353257d55998f9d8 | 5119774db9924c913a3995c13a7396598e2df576 | /doc/entwicklerhandbuch/BuchService.puml | e5ddce211e5bf5315605109a40800fbeeeee44ce | [] | no_license | Lasse0708/plantproject | 0ec3c1b5d64042335f81bfaaf9d8fc3032257d86 | ceed2914f5f40783ff0dfe69d2147f905d3dfce8 | refs/heads/master | 2023-01-06T23:02:45.443890 | 2020-11-12T15:23:33 | 2020-11-12T15:23:33 | 312,312,515 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,777 | puml | ' Copyright (C) 2019 - present Juergen Zimmermann, Hochschule Karlsruhe
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.
@startuml Anwendungskern
!pragma useNewPackage
skinparam classAttributeIconSize 0
skinparam componentStyle uml2
interface Promise<T>
package shared {
class "sendMail()" as sendMail
hide sendMail circle
}
package pflanze {
package entity {
class PflanzeModel
hide PflanzeModel circle
class "validatePflanze()" as validatePflanze
hide validatePflanze circle
interface PflanzeData <<entity>>
}
package service #DDDDDD {
PflanzeService ..> Promise
PflanzeService ..> PflanzeModel
PflanzeService ..> PflanzeData
PflanzeService ..> validatePflanze
PflanzeService ..> sendMail
class PflanzeService << control >> {
+ async findById(id: string): Promise<PflanzeData | undefined>
+ async find(query?: any): Promise<Array<PflanzeData>>
+ async create(pflanze: PflanzeData): Promise<PflanzeData>
+ async update(pflanze: PflanzeData, version: string): Promise<PflanzeData>
+ async delete(id: string): Promise<boolean>
}
}
}
hide empty members
footer (c) Jürgen Zimmermann
@enduml
| false | true | true | false | class |
b098571ce8ee0d7232d564d7f522f39fcde9d989 | 008380a4479bddd6b17b6d752b0d91ba220e6b33 | /Eureka/Assets/Scripts/plantuml/ListExtension.puml | 592ca09bc9c400d5d297f8ab9d56ea54ea789776 | [] | no_license | xxbokusu/Eureka | bb2b8c92973905c05a38b4661d00d4d0090bf918 | e4e2284d304bfd76ba0aa9cd735fb30f73a3d722 | refs/heads/master | 2023-06-09T06:13:54.758394 | 2023-06-08T03:33:01 | 2023-06-08T03:33:01 | 195,805,623 | 0 | 0 | null | 2023-06-08T03:55:52 | 2019-07-08T12:16:08 | C# | UTF-8 | PlantUML | false | false | 448 | puml | @startuml
class ListExtension <<static>> {
+ {static} AddToNotDuplicate(list:List<T>, t:T) : void
+ {static} RemoveDuplicate(list:List<T>) : void
+ {static} Shuffle(list:List<T>) : List<T>
+ {static} GetAndRemove(list:List<T>, targetNo:int) : T
+ {static} Pop(list:List<T>) : T
+ {static} Dequeue(list:List<T>) : T
+ {static} GetAtRandom(list:List<T>) : T
+ {static} GetAndRemoveAtRandom(list:List<T>) : T
}
@enduml
| false | true | false | false | class |
42fe70aa23cb953ec811ba0be2b1d109a475eb9f | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderSetCustomLineItemTaxAmountAction.puml | f32931d2ce0fca4a13d0701d02c79c5d817ddb88 | [] | 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 | 633 | 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 StagedOrderSetCustomLineItemTaxAmountAction [[StagedOrderSetCustomLineItemTaxAmountAction.svg]] extends StagedOrderUpdateAction {
action: String
customLineItemId: String
customLineItemKey: String
externalTaxAmount: [[ExternalTaxAmountDraft.svg ExternalTaxAmountDraft]]
shippingKey: String
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
d87eaaa3ce9386ba4a067f297357fdb05e247961 | cb4db9f87c49d860c9ee67e04bada466d3aa6137 | /Tomato_UML/Tomato user UML.puml | 7f65c3e1707942c23d12fb7eca4dd77a9fff145d | [] | no_license | r1r3nn3/Tomato | 45404946925b7cd3a854d2e01e753051a0959022 | bd8a528dbdc47b5bdcbdc416a9c567f1f0f25115 | refs/heads/master | 2020-11-24T09:24:40.470020 | 2020-02-07T23:49:07 | 2020-02-07T23:49:07 | 228,077,955 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,594 | puml | @startuml
title Tomato - The Automatic Greenhouse, user mode & automatic system
[*] --> Initialise : E_START / TAGinitialise()
Initialise --> CheckOperationMode : E_CONTINEU
CheckOperationMode --> CheckTimeToPass : E_USER
Error --> CheckOperationMode : E_RESOLVE_ERROR
CheckTimeToPass --> PassTime : E_PASS_TIME
CheckTimeToPass --> CheckLightState : E_DONT_PASS_TIME
PassTime --> CheckLightState : E_TIME_PASSED
PassTime : TimeToPass -= x;
CheckLightState --> ToggleLight : E_LIGHT_TOGGLE
ToggleLight --> CheckLightState : E_LIGHT_TOGGLED
CheckLightState --> Error : E_LIGHT_ERROR
CheckLightState --> CheckHeaterState : E_LIGHT_STATE_OK
CheckWaterLevel --> WaterPlant : E_WATER_PLANT
WaterPlant --> CheckWaterLevel : E_WATERED_PLANT
CheckWaterLevel --> Error : E_WATERING_ERROR
CheckWaterLevel --> CheckMoreTimeToPass : E_PLANT_WATER_OK
CheckHeaterState --> ToggleHeater : E_HEATER_TOGGLE
ToggleHeater --> CheckHeaterState : E_HEATER_TOGGLED
CheckHeaterState --> Error : E_HEATER_ERROR
CheckHeaterState --> CheckWaterLevel : E_HEATER_STATE_OK
CheckMoreTimeToPass --> CheckTimeToPass : E_TIME_TO_PASS
CheckMoreTimeToPass --> WaitForUserInput : E_NO_TIME_TO_PASS
WaitForUserInput --> WaitForUserInput : E_NON_VALID_INPUT
WaitForUserInput --> IncreaseTime : E_TIME
IncreaseTime --> CheckTimeToPass : E_INCREASE_TIME
WaitForUserInput --> PrintUserHelp : E_HELP
PrintUserHelp --> WaitForUserInput : E_HELP_PRINTED
WaitForUserInput --> UpdateSystemInfo : E_UPDATE
UpdateSystemInfo --> WaitForUserInput : E_SYSTEM_INFO_UPDATED
WaitForUserInput --> CheckOperationMode : E_SERVICE
@enduml | false | true | false | false | sequence |
f81b648b62da5439d197501275540a81d4be0c32 | 7041d4eab20296045d22e31c56211bc84b17da1c | /docs/Ajouter devoir/RDCU_Ajouter_Devoir.puml | c8adcb8d983ba562307ff5a319fea95c55761235 | [] | no_license | nerdz88/SGA-TS | ff97ce5cd5c78de97a851e80e0c948f7552b0f2c | 608d0748ff5ceff47ff75a9053cc1b5fee061df9 | refs/heads/main | 2023-07-09T19:54:11.262264 | 2021-07-28T17:39:07 | 2021-07-28T17:39:07 | 397,959,207 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,061 | puml | @startuml recupererTousDevoirsEspaceCours
skinparam style strictuml
skinparam defaultfontname Verdana
title RDCU pour recupererTousDevoirsEspaceCours
participant ":GestionnaireDevoir" as gestionnaireDevoir
participant ":Universite" as universite
participant "espaceCours : EspaceCours" as cours
-> gestionnaireDevoir : devoirs = recupererTousDevoirsEspaceCours(idEspaceCours)
note left : Selon contrôleur,\ncontôleur de session
gestionnaireDevoir -> universite : espaceCours = recupererUnEspaceCours(idEspaceCours)
note left : Selon expert, universite\ncontient les espaceCours
gestionnaireDevoir -> cours : devoirs = recupererTousDevoirs()
note left : Selon expert, espaceCours\ncontient les devoirs
@enduml
@startuml ajouterDevoir
skinparam style strictuml
skinparam defaultfontname Verdana
title RDCU pour ajouter devoir
participant ":GestionnaireDevoir" as gestionnaireDevoir
participant ":Universite" as universite
participant "espaceCours : EspaceCours" as cours
participant "d : Devoir" as devoir
participant "devoirs : Devoirs[]" as devoirs
loop [!terminerDevoir]
->gestionnaireDevoir : devoir = ajouterDevoir(idEspaceCours, id, \nnom, description, noteMaximale,\ndateDebut, dateFin, visible)
note left : Selon contrôleur,\ncontôleur de session
gestionnaireDevoir -> universite : espaceCours = recupererUnEspaceCours(idEspaceCours)
note left : Selon expert, universite a toutes les\ninformations pour recupererUnEspaceCours
gestionnaireDevoir -> cours : ajouterDevoir(id, nom, description, noteMaximale, \ndateDebut, dateFin,visible)
note left : Selon forte cohésion, espaceCours a la reponsabilité\nde gérer l'ajout des devoirs.
cours-->devoir** : create(id, nom, description, noteMaximale, \ndateDebut, dateFin,visible)
note left : Selon créateur, espaceCours\ncontient les devoirs qui\nlui sont associés
cours->devoirs : push(d)
note left : Selon expert, devoirs est l'attribut\nd'espaceCours qui stocke les devoirs
gestionnaireDevoir -> cours : devoir = recupererTousDevoirs()
note left : Selon expert
end
@enduml | false | true | true | false | sequence |
d43079139a7e358259f9d8c84d17fdac07fe659c | cc81f113640c30aeff3159206026c22f9f3448d0 | /1A/TOB/TP10/editeur-menu.plantuml | 304cb373718acbc3f4f9b84e938623cc3a86a16b | [] | no_license | BoukraichiHamza/ENSEEIHT | 6b53823a3971e51b0cd0ee3b34fa02a8d333a868 | dddba3863de06e251f1d2eabb511873d15a27121 | refs/heads/master | 2021-04-28T13:15:10.967338 | 2018-02-19T23:00:11 | 2018-02-19T23:00:11 | 122,098,500 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,384 | plantuml | @startuml
skinparam classAttributeIconSize 0
namespace menu {
class Menu {
- selection: Commande
--
+ estQuitté(): boolean
+ afficher()
+ selectionner()
+ valider()
+ ajouter(txt: String, op: Commande)
}
note top of Menu
afficher():
for(int i = 0; i < entrees.size(); i++):
entrees.get(i).afficher(i + 1)
selectionner():
-- demander un entier et
-- initialiser 'selection' avec la commande associée
valider():
if (selection.estExecutable()):
selection.executer()
else:
out.println("Opération impossible")
end note
class Entree {
- texte: String
--
+ afficher(numéro: int)
__constructeurs__
+ Entree(texte: String, op: Commande)
}
note top of Entree
afficher(numéro: int):
if (opération.estExecutable):
out.print(numéro)
else:
out.print(" ")
out.print(") " + texte)
end note
interface Commande {
--
+ estExecutable(): boolean
+ executer()
}
Menu *-right-> "*\nentree" Entree: " "
Entree o-right-> "1\noperation" Commande: " "
}
class Editeur {
--
+ editer()
__constructeurs__
+ Editeur(l: Ligne)
}
note left of Editeur {
editer():
do:
ligne.afficher()
menuPrincipal.afficher()
menuPrincipal.sélectionner()
menuPrincipal.valider()
while (! estQuitté())
Editeur(l: Ligne):
this.ligne = l
this.menuPrincipal = new Menu()
this.menuPrincipal.ajouter("Avancer curseur",
new AvancerCurseur(l))
this.menuPrincipal.ajouter("Reculer curseur",
new ReculerCurseur(l))
}
Editeur o-down-> "1\nligne" Ligne: " "
Editeur *-up-> "1\nmenuPrincipal" menu.Menu: " "
interface Ligne {
}
class LigneTab implements Ligne {
}
abstract class CommandeLigne implements menu.Commande {
__constructeurs__
CommandeLigne(l: Ligne)
}
CommandeLigne o-left-> Ligne: " "
class AvancerCurseur extends CommandeLigne {
+ estExecutable(): boolean
+ executer()
}
note bottom of AvancerCurseur
estExecutable(): boolean:
return ligne.getCurseur() < ligne.getLongueur()
executer():
ligne.avancer()
end note
class ReculerCurseur extends CommandeLigne {
+ estExecutable(): boolean
+ executer()
}
note bottom of ReculerCurseur
estExecutable(): boolean:
return ligne.getCurseur() > 1
executer():
ligne.reculer()
end note
@enduml
' vim: sw=4 ts=4:
| false | true | true | false | sequence |
02f90a0276ed68900756847c23f9a2f764cf24ea | a18370967839d84d724a58879636b1605687dea6 | /Sample diagrams/learning-UML/sequence 1.txt | 22e2ee0b0aafbcbb1cf858c15c42a6143117f33d | [] | no_license | 03376808-OOAD/plantuml-diagram | 3794d57e8812b7bd4c075904f67dee0e18605f9b | c933d5518f28694d3a2999cbd84626fe50341b9e | refs/heads/master | 2020-04-28T03:12:53.525237 | 2020-02-25T10:01:31 | 2020-02-25T10:01:31 | 174,927,954 | 0 | 4 | null | null | null | null | UTF-8 | PlantUML | false | false | 339 | txt | @startuml
actor Entrant
Entrant -> Ticket : Attend Event Request
activate Ticket
Ticket -> Member : Create Member Request
activate Member
Member -> Member : Create Member
Ticket <-- Member : Create Member Response
deactivate Member
Ticket -> Ticket : Create Ticket
Entrant <-- Ticket : Attend Event Response
deactivate Ticket
@enduml | false | true | false | false | sequence |
4a4e52e4f27dd87978c8cf11673ad920b054396a | 56d2bad8bda60e486164d32f47f7b6e65dd1babe | /app/src/main/java/com/journear/app/core/entities/entities.plantuml | 5c68456183803d598068e626ae546e108d8025a3 | [] | no_license | nikhilgirrajtcd/journear-neo | 27372763833899946bfacf2856d7bd69953c6b21 | 28d90bd4b93e049bcf0f80c0358ab1b88f3a52ee | refs/heads/master | 2022-04-23T11:33:29.383211 | 2020-04-27T15:09:41 | 2020-04-27T15:09:41 | 248,527,974 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,173 | plantuml | @startuml
title __ENTITIES's Class Diagram__\n
namespace com.journear.app {
namespace core {
namespace entities {
class com.journear.app.core.entities.DuplicateItemException {
}
}
}
}
namespace com.journear.app {
namespace core {
namespace entities {
class com.journear.app.core.entities.JnGeocodeItem {
+ id : String
+ latitude : double
+ longitude : double
+ placeString : String
{static} - serialVersionUID : long
+ equals()
+ hashCode()
+ toString()
}
}
}
}
namespace com.journear.app {
namespace core {
namespace entities {
class com.journear.app.core.entities.NearbyDevice {
{static} + CREATOR : Creator<NearbyDevice>
- destination : String
- id : int
- source : String
- travelTime : Time
- user_rating : String
+ NearbyDevice()
+ NearbyDevice()
+ describeContents()
+ equals()
+ getDestination()
+ getDestination2()
+ getId()
+ getSource()
+ getSource2()
+ getTravelTime()
+ getUser()
+ getUser_rating()
+ hashCode()
+ setDestination()
+ setDestination2()
+ setDestination2()
+ setId()
+ setSource()
+ setSource2()
+ setSource2()
+ setTravelTime()
+ setTravelTime()
+ setUser()
+ setUser_rating()
+ writeToParcel()
# NearbyDevice()
}
}
}
}
namespace com.journear.app {
namespace core {
namespace entities {
class com.journear.app.core.entities.StringWrapper {
~ toWrap : String
+ StringWrapper()
+ toString()
}
}
}
}
namespace com.journear.app {
namespace core {
namespace entities {
class com.journear.app.core.entities.User {
+ dobValue : String
+ email : String
+ password : String
+ phoneValue : String
+ userID : String
+ User()
+ getDob()
+ getEmail()
+ getPassword()
+ getPhone()
+ setDobValue()
+ setEmail()
+ setPassword()
+ setPhoneValue()
+ setUserID()
}
}
}
}
namespace com.journear.app {
namespace core {
namespace entities {
class com.journear.app.core.entities.UserSkimmed {
+ gender : String
+ userName : String
+ getGender()
+ getUserName()
+ isSameAs()
+ setGender()
+ setUserName()
}
}
}
}
com.journear.app.core.entities.JnGeocodeItem .up.|> java.io.Serializable
com.journear.app.core.entities.JnGeocodeItem .up.|> java.lang.Cloneable
com.journear.app.core.entities.NearbyDevice .up.|> android.os.Parcelable
com.journear.app.core.entities.NearbyDevice .up.|> com.journear.app.core.interfaces.Persistable
com.journear.app.core.entities.NearbyDevice o-- com.journear.app.core.entities.JnGeocodeItem : destination2
com.journear.app.core.entities.NearbyDevice o-- com.journear.app.core.entities.JnGeocodeItem : source2
com.journear.app.core.entities.NearbyDevice o-- com.journear.app.core.entities.UserSkimmed : user
com.journear.app.core.entities.StringWrapper .up.|> com.journear.app.core.interfaces.Persistable
com.journear.app.core.entities.User .up.|> com.journear.app.core.interfaces.Persistable
com.journear.app.core.entities.User -up-|> com.journear.app.core.entities.UserSkimmed
com.journear.app.core.entities.UserSkimmed .up.|> com.journear.app.core.interfaces.Persistable
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 |
92e33a075d3f2782131d844e86607619a7abdb2d | 93aed2e06b228847b64963a9f2c1020ea02b1a55 | /app/src/main/java/com/uml/sequence/sequence_wu=ith_skinpa.puml | 9c202e3f5cad0e06ea580b66d70e3372752bc8ad | [] | no_license | BlogForMe/ankotlin | 40e0433af6e5d01d0efd652e0d3be7bb313ba394 | 01ada1596e2392440b3ef15cdc19e9a1ecd3d2f6 | refs/heads/master | 2023-08-28T14:14:39.494140 | 2023-08-28T09:36:44 | 2023-08-28T09:36:44 | 186,437,663 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 749 | puml | @startuml sikin
skinparam backgroundColor #EEEBDC
skinparam handwritten true
skinparam sequence {
ArrowColor DeepSkyBlue
ActorBorderColor DeepSkyBlue
LifeLineBorderColor blue
LifeLineBackgroundColor #A9DCDF
ParticipantBorderColor DeepSkyBlue
ParticipantBackgroundColor DodgerBlue
ParticipantFontName Impact
ParticipantFontSize 17
ParticipantFontColor #A9DCDF
ActorBackgroundColor aqua
ActorFontColor DeepSkyBlue
ActorFontSize 17
ActorFontName Aapex
}
actor User
participant "First Class" as A
participant "Second Class" as B
participant "Last Class" as C
User -> A: DoWork
activate A
A -> B: Create Request
activate B
B -> C: DoWork
activate C
C --> B: WorkDone
destroy C
B --> A: Request Created
deactivate B
A --> User: Done
deactivate A
@enduml | false | true | false | false | sequence |
f30cab08f81c5d722e695bbc8d0b90f4addbd490 | 973dcef38fb285cf4f14a2e937af23e26a05564b | /docs/Solution/Automation-Framework/Process.puml | 6d00a87bb207c66e33376b1a2cd8222b7ec0c734 | [] | no_license | CAADE/CAADE | 6a0d37b31e77fd00eeb1ad056d17d484585cad96 | 3873453a14359879a146f1d5897554ae2e94bd96 | refs/heads/master | 2021-06-09T05:28:17.894441 | 2019-06-07T06:08:10 | 2019-06-07T06:08:10 | 104,078,969 | 1 | 0 | null | 2020-08-20T15:13:40 | 2017-09-19T13:32:11 | JavaScript | UTF-8 | PlantUML | false | false | 330 | puml | @startuml
partition "Automation Framework" {
}
partition User #cccccc {
(*) --> "Create Project"
--> "Write Code"
}
partition "Automation Framework" #lightblue {
"Write Code" --> "Test Code"
"Test Code" --> "Deploy Code"
"Deploy Code" --> (*)
}
partition Used #cccccc {
"Test Code" --> "Do Something"
}
@enduml
| false | true | false | false | activity |
e9e4b2c360c3a2ac9d8a0a5c03f01743cd4c86d8 | f8e357daee592f0c24cd2e5778c643a77b4a6404 | /06classdiagram/08_classdiagram__addingmethods.puml | 1c792332c235cbc3161b9ae84a11dbb779fe4a21 | [] | no_license | jahmanitheone/plantuml | bd3914c882d79157f387aa84268510edbebb05c2 | dda0a93ca7caabf456c96bd9ef8249c1f3ddf9a1 | refs/heads/main | 2023-01-01T12:40:34.242849 | 2020-10-22T17:01:59 | 2020-10-22T17:01:59 | 306,404,003 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 414 | puml | '
'ClassDiagrams: Adding methods
'
'To declare fields and methods, you can use the symbol : followed by the field's or method's name.
'The system checks for parenthesis to choose between methods and fields.
'
'ClassName: method()
'
'--------------------------------------
'
@startuml
'Extension
Object <|-- ArrayList
'Method
Object : equals()
'Method
ArrayList : Object[] elementData
ArrayList : size()
@enduml
| false | true | false | false | class |
e846b85e74e830f3f5fd828bac2ff218f6422b38 | 5ca46b0c44b797c4757d12358762ee218eb99b42 | /uml/class.puml | 037f15aab47c35c286724445459c772d7ee35df8 | [] | no_license | buczekxpompa/ProjektTP | 826302276b43bf550785eba4186d3fbc48fc470a | 2db16df8b0d174756fbfcd446b76267c80d821a9 | refs/heads/master | 2021-07-24T11:10:16.800663 | 2019-12-20T10:38:44 | 2019-12-20T10:38:44 | 225,201,268 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,963 | puml | @startuml
package Server {
class Server {
#ServerSocket server
-ArrayList<combinedGames> allGames
#makeServer()
#serverLopp()
}
class ServerThread {
#String line
#BufferedReader input
#PrintWriter output
-PrintWriter player2
-ServerParser parser
-Game game
CombinedGame sheredGame
#connect(Socket socket)
#readInput()
+setPlayer2()
+run()
-playJoin()
-playBot()
-Game createGame()
}
package Game {
class Game {
~BoardField[][] fields
-boolean blackPassed
-boolean whitePassed
-boolean blackTurn
-String id
-Bot aiBot
-int boardSize
---
-randomID()
---
+String getID()
+boolean getBot()
+getSize()
---
+Point botMove()
+boolean won()
+String move(Point)
---
-pass()
-unPass()
== Rules ==
+validateMove(Point)
+countWinner()
-int capture(Point)
-boolean dead(Point)
-boolean occupied(Point)
-boolean koViolation(Point)
-int countTerritory(BoardField color)
}
class Bot {
-Game game
~Point bestMove()
-int eveluatePoint()
}
Bot -* Game
}
package parser {
interface ServerParser{
setLine()
Point parsePoint()
GameConfig parseGameConfig()
String parseMoveResponse()
String parseWinner()
String prepareGameConfig(int size)
String PrepareGames(ArrayList<combinedGame> games)
}
class ServerParserJson {
-String parsedLine
-- implemened functions --
+setLine()
+Point parsePoint()
+GameConfig parseGameConfig()
+String parseMoveResponse()
+String parseWinner()
+String prepareGameConfig(int size)
+String PrepareGames(ArrayList<combinedGame> games)
}
ServerParser <|..ServerParserJson
}
package Blocks {
class ColoredPoint {
BoardField color
+get()
+set()
}
enum BoardField {
BLACK
WHITE
WMPTY
}
class CombinedGame {
-Game game
-ServerThread player
+get()
}
class GameConfig {
-boolean bot
-int size
-String id
+get();
}
class Point {
-int x
-int y
+get()
+set()
}
Point <|-- ColoredPoint
}
ServerParser - ServerThread
Server -- ServerThread
ServerThread -- Game
Game .. Point
ServerParser .. ColoredPoint
Game .. ColoredPoint
ServerThread .. GameConfig
Server .. CombinedGame
ColoredPoint o-- BoardField
Game .. BoardField
Bot .. ColoredPoint
}
package Client {
class Client {
#String line
#PrintWriter output
#BufferedReader input
-boolean reading
-GameFrame gameFrame
-ClientParser parser
---
#connect()
#readInput()
+isReading()
---
+startLobby()
+startSizeFrame()
+joinGame()
+createGame(boolean bot, int size)
+makeMove(int x, int y)
}
package Parser {
interface ClientParser {
String prepareMove(int x, int y)
String prepareGameConfig(boolean bot, int size)
ArrayList<ColoredPoint> parseResponse(String line)
String prepareGameConfig(String id)
int parseGameConfig(String line)
ArrayList<String> parseGames(String line)
}
class ClientParserJson {
-- implemented functions --
+String prepareMove(int x, int y)
+String prepareGameConfig(boolean bot, int size)
+ArrayList<ColoredPoint> parseResponse(String line)
+String prepareGameConfig(String id)
+int parseGameConfig(String line)
+ArrayList<String> parseGames(String line)
}
ClientParser <|.. ClientParserJson
}
package Observer {
interface Observer {
onEvent(ObservableEvent)
}
interface Observable {
addObserver(Observer)
removeObserver()
}
class ObservableEvent {
-int x
-int y
-boolean bot
-int size
-String id
+get()
}
class LobbyObserver {
-Client client
}
class SizeFrameObserver {
-Client client
}
class GameFrameObserver {
-Client client
}
Observer <|.. GameFrameObserver
Observer <|.. LobbyObserver
Observer <|.. SizeFrameObserver
ObservableEvent -- SizeFrameObserver
ObservableEvent -- GameFrameObserver
ObservableEvent -- LobbyObserver
}
package frames {
package elements {
class ButtonCoordinated {
-int coordinateX
-int coordinateY
+set()
+get()
+changeColor(Color)
}
enum FieldColor {
BLACK
WHITE
EMPTY
}
}
class GameFrame {
-boolean win
-Observer observer
-boolean blackTurn
-ArrayList<ButtonCoordinated> fields
-- Observer functions --
+addObserver(Observer)
+removeObserver()
---
+makeMove(Point)
+updateState(ArrayList<ColoredPoint> changes)
-pass()
-updateTurn()
-winner()
}
class Lobby {
-Observer observer
-- observable functions --
+addObserver(Observer)
+removeOserver()
}
class SizeFrame {
-boolean bot
-int size
-Observer observer
---
-accept()
-- observabele functions --
+addObserver(Observer)
-removeObserver()
}
}
Observable <|.. Lobby
Observable <|.. GameFrame
Observable <|.. SizeFrame
LobbyObserver -- Lobby
LobbyObserver -- Client
SizeFrameObserver -- SizeFrame
SizeFrameObserver -- Client
GameFrameObserver -- GameFrame
GameFrameObserver -- Client
Client -- ClientParser
GameFrame -- FieldColor
GameFrame -- ButtonCoordinated
}
Server <- Client
Client <- Server
@enduml | false | true | false | false | class |
78e5953d17c1f544c464960fb585e0cef7c3b644 | 9bcd4da5e5454922139d0afefc782a997988ad1f | /docs/SprintD/US/US9/US9_CD.puml | 2f7d9fa80a8b091c481405dbf1113313597b6337 | [
"MIT"
] | permissive | wjacoud/DynaByte | 13f042b210f17830aa3eb31558d3f83d587ab436 | 3ac6b5e2d2e7559ec3e230db7848a1b43d3b40e3 | refs/heads/main | 2023-08-27T09:20:01.825322 | 2021-11-11T17:15:05 | 2021-11-11T17:15:05 | 427,082,047 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 991 | puml | @startuml
skinparam classAttributeIconSize 0
class Administrator
{
-int idEmployee
-String soc
--
+newTestType(Type, collectingMethods)
+validate(TestType)
+saveTestType()
}
class TestType
{
-String code
-String description
-String collectingMethod
__
+TestType(code, description, collectingMethod)
}
class User {
-name
-email
-password
+login()
}
class Employee{
-String name
-String function
-String phone
-String adress
-String email
}
class TestType {
-String code
-String description
-String collectingMethod
--
+getTestType()
}
class CreateTestTypeUI {
}
class CreateTestTypeController {
--
+newTestType(code, description, collectingMethod)
+registerTestType()
}
CreateTestTypeUI ..> CreateTestTypeController
CreateTestTypeController ..> Administrator
Administrator "1" --> "*" TestType : create new
CreateTestTypeController ..> TestType
Administrator "1" --> "*" Employee : is
Employee "0.1" --> "1" User : has
@enduml | false | true | false | false | sequence |
7615d8b3713eab41fdaa118e41306a9be2cf059d | 2d364119b91651fee014c2e60777583aa618701a | /exercices_rdcu/3-poser-plateau.puml | ab1bcb7a609ac328592f046ba7436e4b449c1477 | [] | no_license | bnel-inc/plantuml-examples | d7a462ab39e25b77ec3bab2c75bcb6df4bd4d0ee | 3e86b4fa8747240efda25e66529f7b1e4a4be6ff | refs/heads/master | 2023-03-01T18:31:24.401126 | 2021-02-04T15:54:51 | 2021-02-04T15:54:51 | 328,886,082 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 712 | puml | @startuml
skinparam style strictuml
skinparam sequence {
MessageAlign center
}
title Ouvrir Caisse <I>Exercice RDCU</i>\nLOG210-01 C. Fuhrman\n Vincent Audette
participant ":Registre" as rg
participant ":Magasin" as mg
participant ":Map<String,\n PlateauBillets>" as mapPb
participant "mp:MisePlateau" as mp
-> rg : poserPlateau\n(identifiant : String)
note right: **Contrôleur** idem qu'au début
rg -> mg: getPlateau\n(identifiant: String)
note right: **Expert** Magasin \nconnait les PlateauBillets
mg -> mapPb: idPlateau: getPlateau\n(identifiant: String)
rg -> mp: mp.setPlateau(idPlateau)
note right: **Expert** MisePlateau est \ncapturée dans Registre
rg -> rg: mp.setPlateau(idPlateau)
@enduml
| false | true | true | false | sequence |
d0bddfbd0f263e6bec1589fdbee272dbcef06e0e | d81865d2d43c83ebfe9f8ccb6790a204a998f2f9 | /api/script/txStates.puml | 2843da663ecd33fdf2dae48e0b0cd513cdbe61da | [
"Apache-2.0"
] | permissive | softwaregroup-bg/ut-transfer | 4e733675616f1882c754e3b83ca25d199cc02867 | eba420e492fb5a06d08f0946a78bf4e8adc67cbc | refs/heads/master | 2020-01-23T21:27:55.316041 | 2019-10-21T14:29:20 | 2019-10-21T14:29:20 | 66,433,967 | 0 | 7 | NOASSERTION | 2019-10-21T14:26:30 | 2016-08-24T05:48:23 | JavaScript | UTF-8 | PlantUML | false | false | 1,641 | puml | @startuml txStates
state Acquirer {
state "Operation\nrequest sent" as acq1
state "Operation\nrequest confirmed" as acq2
state "Operation\nrequest declined" as acq3
state "Operation\nunknown response" as acq4
state "Operation aborted" as acq5
state "Unexpected error" as acq6
acq1: Operation was initiated
acq1: at acquirer's system
acq2: Operation was successfully
acq2: completed by acquirer
acq3: Operation was declined
acq3: by acquirer
acq4: Operation result is unknown
acq5: Operation was not valid
acq5: and was aborted by acquirer
acq5: but recorded in the database
acq6: Operation completion was
acq6: attempted, but failed
[*] --> acq1 : initiate operation
[*] --> acq5 : abort operation
acq1 --> acq2 : confirm operation
acq1 --> acq3 : decline operation
acq1 --> acq6 : error while completing the operation
acq1 --> acq4 : unknown result
}
state "Issuer / Ledger / Merchant" as issuer {
state "Operation\nrequest sent" as iss1
iss1: Operation request was sent
iss1: to the third party system
state "Operation\nrequest confirmed" as iss2
iss2: Operation was confirmed
iss2: by the third party system
state "Operation\nrequest declined" as iss3
iss3: Operation was declined
iss3: by the third party system
state "Operation\nunknown response" as iss4
iss4: The third party system did
iss4: not return a known response
[*] --> iss1 : initiate operation
iss1 --> iss2 : confirm operation
iss1 --> iss3 : decline operation
iss1 --> iss4 : unknown result
}
@enduml | false | true | false | false | sequence |
9218e17a548d6f088f9e73a23ff7b52bc1bc04b0 | f576ded7c7322e8bb02ac9334761cafcf0106385 | /out/DesignPattern.puml | 24cef445fd5c348e22961c80ae13415b3a6f264d | [] | no_license | Zukky55/design_pattern | 233c7befca30d98af43804450c41f9fea36e4b0e | 512464b01c23029db879b48a3e5533ec910724e8 | refs/heads/master | 2023-01-10T17:34:28.021070 | 2020-11-17T06:13:51 | 2020-11-17T06:13:51 | 304,786,374 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 151 | puml | @startuml
class DesignPattern {
{static} Main(args:string[]) : void
- ExampleTemplateMethod() : void
- ExampleSingleton() : void
}
@enduml
| false | true | false | false | class |
7f7d06c0e87e59bbc53fd16d446b5cad2e7a0611 | 06fe5c327e840a4c17bf846fcb86ce6f15ff8b7b | /src/Symfony/Component/Workflow/Tests/fixtures/puml/square/simple-workflow-marking.puml | a316b64253809837efe8fcec0f1dcb21418e53e7 | [
"MIT"
] | permissive | earome/symfony | 0e79aa367308adb76501d0e8a79081fa7546c862 | fe7363fff145481462f8b80693b6e9ee4ec1ab26 | refs/heads/master | 2020-05-05T07:28:39.925623 | 2019-04-06T11:29:01 | 2019-04-06T11:29:01 | 179,826,765 | 2 | 0 | MIT | 2019-04-06T11:48:37 | 2019-04-06T11:48:37 | null | UTF-8 | PlantUML | false | false | 709 | puml | @startuml
allow_mixing
title SimpleDiagram
skinparam titleBorderRoundCorner 15
skinparam titleBorderThickness 2
skinparam state {
BackgroundColor<<initial>> #87b741
BackgroundColor<<marked>> #3887C6
BorderColor #3887C6
BorderColor<<marked>> Black
FontColor<<marked>> White
BackgroundColor<<DeepSkyBlue>> DeepSkyBlue
}
skinparam agent {
BackgroundColor #ffffff
BorderColor #3887C6
}
state "a" <<initial>>
state "b" <<marked>>
state "c" <<DeepSkyBlue>>
agent "t1"
agent "t2"
"a" -[#Purple]-> "t1": "<font color=Grey>My custom transition label 2</font>"
"t1" -[#Purple]-> "b": "<font color=Grey>My custom transition label 2</font>"
"b" -[#Pink]-> "t2"
"t2" -[#Pink]-> "c"
@enduml
| false | true | false | false | sequence |
20fdbd573d03135ce2969ce91bda0f4b6c323e11 | 7a8fe8379fb2b32bec29d1cab6cbd10d1451cf63 | /src/doc/server.puml | 6362d38fac063d7a5cf90d6d72b9b92c766e2a39 | [] | no_license | wss711/Jetty | 45f49fa08b22ede6125aff8b25477fdb52dc8501 | 26316057fccb62ffbea1af863aafd4088f5b5e15 | refs/heads/master | 2021-05-21T15:29:26.230702 | 2020-05-02T14:13:07 | 2020-05-02T14:13:07 | 252,697,617 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,069 | puml | @startuml
class ChatServer {
- port : int
- bossGroup : EventLoopGroup
- workerGroup : EventLoopGroup
- b : ServerBootstrap
- loginRequestHandler : LoginRequestHandler
- chatRedirectHandler : ChatRedirectHandler
- serverExceptionHandler : ServerExceptionHandler
+ run() : void
}
class ServerSession {
+ {static} USER_ID_KEY : AttributeKey<String>
+ {static} SESSION_KEY : AttributeKey<ServerSession>
- channel : channel
- user : User
- sessionId : String
- isLogin : boolean
- map : Map<String,Object>
+ ServerSession()
+ {static}getSession(ChannelHandlerContext ctx) : ServerSession
+ {static}closeSession(ChannelHandlerContext ctx) : void
+ isValid() : boolean
+ close() : synchronized void
+ bind() : ServerSession
+ unbind() : ServerSession
+ buildNewSessionId() : Spring
+ writeAndFlush(Object pmm) : synchronized void
}
class SessionMap {
- {static}INSTANCE : SessionMap
+ {static}getInstance() : SessionMap
- map :ConcurrentHashMap<String,ServerSession>
+ addSession(String sessionId,ServerSession ss):void
+ getSession(String sessionId) :ServerSession
+ getSessionByUserId(String userId) :List<ServerSession>
+ removeSession(String sessionId) : void
+ hasLogin(User user) : boolean
}
class ChatRedirectHandler{
~ chatRedirectProcesser : ChatRedirectProcesser
+ channelRead(ChannelHandlerContext ctx,Object msg) : void
}
class HeartBeatServerHandler{
- {static}READ_IDLE_GAP : int
# HeartBeatServerHandler()
+ channelRead(ChannelHandlerContext ctx,Object msg) : void
# channelIdle(ChannelHandlerContext ctx, IdleStateEvent evt) : void
}
class LoginRequestHandler{
~ loginProcesser : LoginProcesser
+ channelRead(ChannelHandlerContext ctx,Object msg) : void
}
class ServerExceptionHandler{
+ exceptionCaught(ChannelHandlerContext ctx,Throwable t) : void
+ channelReadComplete(ChannelHandlerContext ctx) : void
+ channelInactive(ChannelHandlerContext ctx) : void
}
abstract class AbstractServerProcesser{
# getKey(Channel ch) : String
# setKey(Channel ch,String key) :void
# void checkAuth(Channel ch) : void
}
class ChatRedirectProcesser{
+ type() : ProtoMsg.HeadType
+ action(ServerSession fromSession, ProtoMsg.Message protoMsg) : boolean
}
class LoginProcesser{
~ loginResponceBuilder : loginResponceBuilder
+ type() : ProtoMsg.HeadType
+ action(ServerSession session, ProtoMsg.Message protoMsg) : boolean
- checkUser(User user) : boolean
}
interface ServerProcesser {
~ type() : ProtoMsg.HeadType
~ action(ServerSession session,ProtoMsg.Message protoMsg) : boolean
}
class ChatMsgBuilder{
+{static} buildChatResponse(long seqId, ProtoInstant.ResultCodeEnum rce) : ProtoMsg.Message
+{static} buildLoginResponse(long seqId,ProtoInstant.ResultCodeEnum rce) : ProtoMsg.Message
}
class LoginResponceBuilder {
+ loginResponce(long seqId,String sessionId,ProtoInstant.ResultCodeEnum rce) : ProtoMsg.Message
}
@enduml | false | true | true | false | class |
9037696ad0e5f47bb97bdfa876787b08b3f45ee3 | bb209a68f1d9336a28270a7afbdcb899c91918df | /p06_prototype/prototype.puml | 270e1899226b2ea63f17ad8786d609049f2c4083 | [] | no_license | CrazyBilipala/Design-Patterns-2019 | 25376e46641cff4a200b6d594e10b866b182d7b2 | 17512c6e0e1286e218f139c2ca3fceeeba92e38e | refs/heads/master | 2020-07-14T14:42:01.329685 | 2019-08-30T08:24:26 | 2019-08-30T08:24:26 | 205,336,482 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 54 | puml | @startuml
class Student{
}
clone ()- Student
@enduml | false | true | false | false | class |
4f4df072aced58e7ed5e2a8d5d140ca16772ccd8 | b40e9af07f16d7e6a1a889f9ca240f0020401bf3 | /docs/uml/Strategy_card.puml | d3d1278e52e7c869204c30ba3812703c0c61c136 | [] | no_license | TsarkFC/lpoo-proj | 645feb7a07ee42f063cb319c965594f99bef3c91 | 3b821942d819c3e5bd01d5a8e13de357b823ead2 | refs/heads/master | 2023-01-10T03:47:05.804997 | 2020-05-31T22:46:08 | 2020-05-31T22:46:08 | 312,023,208 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,157 | puml | @startuml strategy
abstract class AcSpecialCard {
+ void activate(ArenaController arenaController)
}
note bottom
Strategy
end note
class PlaySpecialCardCommand{
+ void execute();
}
note bottom
Context
end note
class AcAddHpPerTurn{
- AddHpPerTurn card
+ void activate(ArenaController arenaController)
}
class AcDamageGamble{
- DamageGamble card
+ void activate(ArenaController arenaController)
}
note bottom
Concrete strategy
end note
class AcOnWinDamage{
- OnWinDamage card
+ void activate(ArenaController arenaController)
}
class AcFluxModifierAtoB{
- FluxModifierAtoB card
+ void activate(ArenaController arenaController)
}
class AcStaticModifier{
- StaticModifier card
+ void activate(ArenaController arenaController)
}
class AcInstantDamage{
- InstantDamage card
+ void activate(ArenaController arenaController)
}
AcAddHpPerTurn .right.|> AcSpecialCard
AcDamageGamble .right.|> AcSpecialCard
AcOnWinDamage ..|> AcSpecialCard
AcFluxModifierAtoB ..|> AcSpecialCard
AcStaticModifier..|> AcSpecialCard
AcInstantDamage ..|> AcSpecialCard
PlaySpecialCardCommand -left-> AcSpecialCard
@enduml | false | true | false | false | class |
a7f8d5c37ab25b865915b934accfe201167091b0 | 4e735a2b94ef137437adc8798f08fe9ca8b8b6c5 | /docs/diagrams/syntaxhighlighting-and-autofill/SyntaxHighlightingActivityDiagram.puml | 200f163693c81e8630a0eb47fd53d38591d6d48d | [
"MIT"
] | permissive | AY1920S1-CS2103T-T11-1/main | 077c196c06f1ce91d5fb1afe8b969390ba737f85 | e2e0e05955f04931ddaff41685a3dba64c0e6e86 | refs/heads/master | 2020-07-21T05:18:09.774695 | 2019-11-12T15:45:13 | 2019-11-12T15:45:13 | 206,758,681 | 0 | 7 | NOASSERTION | 2019-11-12T15:18:58 | 2019-09-06T09:19:12 | Java | UTF-8 | PlantUML | false | false | 257 | puml | @startuml
(*) --> "user modifies text"
--> "is highlighting enabled"
If "" then
-->[Yes] "check that input has not been updated for x milliseconds" as sub
else
--> [No](*)
sub --> [Yes] "update syntax highlighting" as up
sub --> [No] sub
up --> (*)
@enduml
| false | true | false | false | activity |
6155f69871e35c98c8231d2d8ce948033131edc7 | f2fd254050edcdb271b1e6c420d50cf4b6907421 | /src/com/zt/mode/factory/FactoryMethod.puml | 182faf11b8b53dc0a148f9c4b818961a05dde666 | [] | no_license | vinson-zhang/softwaredesignmode | 9bf704acfa15d568625fa1ba917756a4f591d4a6 | a96b7b239495c5be5cd4a88d46843c88b9ec264f | refs/heads/master | 2021-10-25T20:38:21.824387 | 2019-04-07T06:42:14 | 2019-04-07T06:42:14 | 102,265,274 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 200 | puml | @startuml
interface Product{
void show();
}
interface FactoryMethod{
Product newProduct();
}
class AppleProduct{
void show(){};
}
class OrangeProduct{
void show(){};
}
@enduml | false | true | false | false | class |
098d919b6533795d4d0173da5996e85457364556 | 0ec9b09bca5e448ded9866a5fe30c7a63b82b8b3 | /documentView/withoutFactoryMethod/docs/diagrams/src/paquetes.plantuml | a577080b583f6ecfe897424536293906b2c9b921 | [] | no_license | pixelia-es/USantaTecla-project-mastermind-java.swing.socket.sql | 04de19c29176c4b830dbae751dc4746d2de86f2e | 2b5f9bf273c67eedff96189b6b3c5680c8b10958 | refs/heads/master | 2023-06-10T13:09:55.875570 | 2021-06-29T15:16:23 | 2021-06-29T15:16:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 18,245 | plantuml | @startuml usantatecla.mastermind
class usantatecla.mastermind.ConsoleMastermind{
- ConsoleMastermind()
+ {static} main(String[])
- play()
}
class usantatecla.mastermind.GraphicsMastermind{
- GraphicsMastermind()
+ {static} main(String[])
- play()
}
class ConsoleView as "usantatecla.mastermind.\nviews.console.\nConsoleView"{}
class GraphicsView as "usantatecla.mastermind.\nviews.graphics.\nGraphicsView"{}
class Game as "usantatecla.mastermind.\nmodels.\nGame"{}
usantatecla.mastermind.ConsoleMastermind *-down-> ConsoleView
usantatecla.mastermind.ConsoleMastermind .down.> Game
usantatecla.mastermind.GraphicsMastermind *-down-> GraphicsView
usantatecla.mastermind.GraphicsMastermind .down.> Game
@enduml
@startuml usantatecla.mastermind.views
class Error as "usantatecla.mastermind.models.\nError"{}
class Color as "usantatecla.mastermind.models.\nColor"{}
class Game as "usantatecla.mastermind.models.\nGame"{}
abstract class usantatecla.mastermind.views.WithGameView {
+ WithGameView(Game)
}
usantatecla.mastermind.views.WithGameView *-down-> Game
abstract class usantatecla.mastermind.views.ColorView{
+ {static} INITIALS: char []
# ColorView()
# ColorView(Color)
+ allInitials(): String
# {abstract} resultInitials(int): String
+ {static} getInstance(char): Color
}
usantatecla.mastermind.views.ColorView *-down-> Color
abstract class usantatecla.mastermind.views.ErrorView{
+ MESSAGES: String []
# ErrorView()
+ ErrorView(Error error)
# {abstract} colorInitials(): String
}
usantatecla.mastermind.views.ErrorView *-down-> Error
enum usantatecla.mastermind.views.Message{
+ ATTEMPTS
+ SECRET
+ RESUME
+ RESULT
+ PROPOSED_COMBINATION
+ TITLE
+ WINNER
+ LOOSER
- message: String
- Message(String)
+ getMessage(): String
}
abstract class usantatecla.mastermind.views.View {
+ View(Game)
+ interact()
# {abstract} start()
# {abstract} propose(): boolean
# {abstract} isNewGame(): boolean
}
usantatecla.mastermind.views.View -up-|> usantatecla.mastermind.views.WithGameView
usantatecla.mastermind.views.View .down.> Game
@enduml
@startuml usantatecla.mastermind.views.console
class Game as "usantatecla.\nmastermind.models.\nGame"
class Error as "usantatecla.\nmastermind.models.\nError"
class Result as "usantatecla.\nmastermind.models.\nResult"
enum Color as "usantatecla.\nmastermind.models.\nColor"
abstract class Combination as "usantatecla.\nmastermind.models.\nCombination"
class ProposedCombination as "usantatecla.\nmastermind.models.\nProposedCombination"
class SecretCombination as "usantatecla.\nmastermind.models.\nSecretCombination"
abstract class WithGameView as "usantatecla.\nmastermind.views.\nWithGameView"
abstract class View as "usantatecla.\nmastermind.views.\nView"
abstract class ColorView as "usantatecla.\nmastermind.views.\nColorView"
abstract class ErrorView as "usantatecla.\nmastermind.views.\nErrorView"
enum Message as "usantatecla.\nmastermind.views.\nMessage"
class Console as "usantatecla.utils.\nConsole"
class YesNoDialog as "usantatecla.utils.\nYesNoDialog"
enum ColorCode as "usantatecla.utils.\nColorCode"
class usantatecla.mastermind.views.console.ConsoleView {
+ ConsoleView(Game)
# start()
# propose() : boolean
# isNewGame() : boolean
}
usantatecla.mastermind.views.console.ConsoleView -up-|> View
usantatecla.mastermind.views.console.ConsoleView *-down-> usantatecla.mastermind.views.console.StartView
usantatecla.mastermind.views.console.ConsoleView *-down-> usantatecla.mastermind.views.console.ProposalView
usantatecla.mastermind.views.console.ConsoleView *-down-> usantatecla.mastermind.views.console.ResumeView
usantatecla.mastermind.views.console.ConsoleView --> Game
class usantatecla.mastermind.views.console.ResumeView {
~ ResumeView(Game)
~ interact() : boolean
}
usantatecla.mastermind.views.console.ResumeView -up-|> WithGameView
usantatecla.mastermind.views.console.ResumeView .down.> Game
usantatecla.mastermind.views.console.ResumeView ..> Message
usantatecla.mastermind.views.console.ResumeView .> YesNoDialog
class usantatecla.mastermind.views.console.StartView {
~ interact()
}
usantatecla.mastermind.views.console.StartView ..> Console
usantatecla.mastermind.views.console.StartView ..> Message
usantatecla.mastermind.views.console.StartView ..> usantatecla.mastermind.views.console.SecretCombinationView
class usantatecla.mastermind.views.console.GameView {
~ GameView(Game)
~ write()
~ isWinnerOrLooser() : boolean
}
usantatecla.mastermind.views.console.GameView -up-|> WithGameView
usantatecla.mastermind.views.console.GameView .down.> Game
usantatecla.mastermind.views.console.GameView *-down-> usantatecla.mastermind.views.console.SecretCombinationView
usantatecla.mastermind.views.console.GameView ..> usantatecla.mastermind.views.console.AttemptsView
usantatecla.mastermind.views.console.GameView ..> usantatecla.mastermind.views.console.ResultView
usantatecla.mastermind.views.console.GameView ..> usantatecla.mastermind.views.console.ProposedCombinationView
usantatecla.mastermind.views.console.GameView ..> Message
usantatecla.mastermind.views.console.GameView ..> Console
class usantatecla.mastermind.views.console.ProposalView {
~ ProposalView(Game)
~ interact() : boolean
}
usantatecla.mastermind.views.console.ProposalView -up-|> WithGameView
usantatecla.mastermind.views.console.ProposalView .down.> Game
usantatecla.mastermind.views.console.ProposalView *-down-> usantatecla.mastermind.views.console.GameView
usantatecla.mastermind.views.console.ProposalView ..> ProposedCombination
usantatecla.mastermind.views.console.ProposalView ..> usantatecla.mastermind.views.console.ProposedCombinationView
class usantatecla.mastermind.views.console.ProposedCombinationView {
~ ProposedCombinationView(ProposedCombination)
~ write()
~ read()
}
usantatecla.mastermind.views.console.ProposedCombinationView *-down-> ProposedCombination
usantatecla.mastermind.views.console.ProposedCombinationView ..> usantatecla.mastermind.views.console.ErrorView
usantatecla.mastermind.views.console.ProposedCombinationView ..> usantatecla.mastermind.views.console.ColorView
usantatecla.mastermind.views.console.ProposedCombinationView ..> Color
usantatecla.mastermind.views.console.ProposedCombinationView ..> Error
usantatecla.mastermind.views.console.ProposedCombinationView ..> Combination
usantatecla.mastermind.views.console.ProposedCombinationView ..> Message
usantatecla.mastermind.views.console.ProposedCombinationView ..> Console
class usantatecla.mastermind.views.console.SecretCombinationView {
~ SecretCombinationView()
~ writeln()
}
usantatecla.mastermind.views.console.SecretCombinationView ..> SecretCombination
usantatecla.mastermind.views.console.SecretCombinationView ..> Message
usantatecla.mastermind.views.console.SecretCombinationView ..> Console
class usantatecla.mastermind.views.console.ResultView {
~ ResultView(Result)
~ writeln()
}
usantatecla.mastermind.views.console.ResultView *-down-> Result
usantatecla.mastermind.views.console.ResultView ..> Message
usantatecla.mastermind.views.console.ResultView ..> Console
class usantatecla.mastermind.views.console.AttemptsView {
~ AttemptsView(int)
~ writeln()
}
usantatecla.mastermind.views.console.AttemptsView ..> Console
usantatecla.mastermind.views.console.AttemptsView ..> Message
class usantatecla.mastermind.views.console.ColorView {
~ ColorView()
~ ColorView(Color)
# resultInitials(int) : String
~ write()
}
usantatecla.mastermind.views.console.ColorView -up-|> ColorView
usantatecla.mastermind.views.console.ColorView ..> ColorCode
usantatecla.mastermind.views.console.ColorView ..> Console
usantatecla.mastermind.views.console.ColorView ..> Color
class usantatecla.mastermind.views.console.ErrorView {
~ ErrorView()
~ ErrorView(Error)
~ writeln()
# colorInitials() : String
}
usantatecla.mastermind.views.console.ErrorView -up-|> ErrorView
usantatecla.mastermind.views.console.ErrorView ..> Error
usantatecla.mastermind.views.console.ErrorView ..> Console
usantatecla.mastermind.views.console.ErrorView ..> usantatecla.mastermind.views.console.ColorView
@enduml
@startuml usantatecla.mastermind.views.graphics
class Game as "usantatecla.\nmastermind.models.\nGame"
class Error as "usantatecla.\nmastermind.models.\nError"
class Result as "usantatecla.\nmastermind.models.\nResult"
enum Color as "usantatecla.\nmastermind.models.\nColor"
abstract class Combination as "usantatecla.\nmastermind.models.\nCombination"
class ProposedCombination as "usantatecla.\nmastermind.models.\nProposedCombination"
class SecretCombination as "usantatecla.\nmastermind.models.\nSecretCombination"
abstract class View as "usantatecla.\nmastermind.views.\nView"
abstract class ColorView as "usantatecla.\nmastermind.views.\nColorView"
abstract class ErrorView as "usantatecla.\nmastermind.views.\nErrorView"
enum Message as "usantatecla.\nmastermind.views.\nMessage"
package javax.swing {}
package java.awt {}
class usantatecla.mastermind.views.graphics.GraphicsView {
+ GraphicsView(Game)
# start()
# propose() : boolean
# isNewGame() : boolean
}
usantatecla.mastermind.views.graphics.GraphicsView -up-|> View
usantatecla.mastermind.views.graphics.GraphicsView *-down-> usantatecla.mastermind.views.graphics.BoardView
usantatecla.mastermind.views.graphics.GraphicsView ..> Game
usantatecla.mastermind.views.graphics.GraphicsView ..> usantatecla.mastermind.views.graphics.ResumeDialog
class usantatecla.mastermind.views.graphics.BoardView {
- {static} GAME_OVER : String
~ GameView(Game)
~ start()
~ propose() : boolean
- drawGameOver() : boolean
- clear()
}
usantatecla.mastermind.views.graphics.BoardView -up-|> javax.swing
usantatecla.mastermind.views.graphics.BoardView *-down-> Game
usantatecla.mastermind.views.graphics.BoardView *-down-> usantatecla.mastermind.views.graphics.SecretCombinationView
usantatecla.mastermind.views.graphics.BoardView *-down-> usantatecla.mastermind.views.graphics.ProposedCombinationsView
usantatecla.mastermind.views.graphics.BoardView *-down-> usantatecla.mastermind.views.graphics.ProposalCombinationView
usantatecla.mastermind.views.graphics.BoardView ..> java.awt
usantatecla.mastermind.views.graphics.BoardView ..> Message
usantatecla.mastermind.views.graphics.BoardView ..> usantatecla.mastermind.views.graphics.Constraints
usantatecla.mastermind.views.graphics.BoardView ..> ProposedCombination
class usantatecla.mastermind.views.graphics.ProposalCombinationView {
- {static} ACCEPT : String
- characters : String
~ ProposalCombinationView(JRootPane)
~ resetCharacters()
~ getCharacters() : String
+ actionPerformed(ActionEvent)
+ keyTyped(KeyEvent)
+ keyPressed(KeyEvent)
+ keyReleased(KeyEvent)
}
usantatecla.mastermind.views.graphics.ProposalCombinationView -up-|> javax.swing
usantatecla.mastermind.views.graphics.ProposalCombinationView .up.|> java.awt
usantatecla.mastermind.views.graphics.ProposalCombinationView ..> Message
usantatecla.mastermind.views.graphics.ProposalCombinationView ..> usantatecla.mastermind.views.graphics.Constraints
class usantatecla.mastermind.views.graphics.ProposedCombinationsView {
~ ProposedCombinationsView(Game)
~ add()
}
usantatecla.mastermind.views.graphics.ProposedCombinationsView -up-|> javax.swing
usantatecla.mastermind.views.graphics.ProposedCombinationsView *-down-> Game
usantatecla.mastermind.views.graphics.ProposedCombinationsView ..> usantatecla.mastermind.views.graphics.AttemptsView
usantatecla.mastermind.views.graphics.ProposedCombinationsView ..> usantatecla.mastermind.views.graphics.ProposedCombinationView
usantatecla.mastermind.views.graphics.ProposedCombinationsView ..> usantatecla.mastermind.views.graphics.ResultView
usantatecla.mastermind.views.graphics.ProposedCombinationsView ..> java.awt
class usantatecla.mastermind.views.graphics.SecretCombinationView {
- {static} TITLE : String
~ SecretCombinationView()
}
usantatecla.mastermind.views.graphics.SecretCombinationView -up-|> javax.swing
usantatecla.mastermind.views.graphics.SecretCombinationView ..> Message
usantatecla.mastermind.views.graphics.SecretCombinationView ..> SecretCombination
usantatecla.mastermind.views.graphics.SecretCombinationView ..> usantatecla.mastermind.views.graphics.Constraints
class usantatecla.mastermind.views.graphics.ProposedCombinationView {
~ ProposedCombinationView(ProposedCombination)
~ ProposedCombinationView()
~ read(String)
+ isValid() : boolean
}
usantatecla.mastermind.views.graphics.ProposedCombinationView -up-|> javax.swing
usantatecla.mastermind.views.graphics.ProposedCombinationView *-down-> ProposedCombination
usantatecla.mastermind.views.graphics.ProposedCombinationView *-down-> Error
usantatecla.mastermind.views.graphics.ProposedCombinationView ..> Color
usantatecla.mastermind.views.graphics.ProposedCombinationView ..> Combination
usantatecla.mastermind.views.graphics.ProposedCombinationView ..> ColorView
usantatecla.mastermind.views.graphics.ProposedCombinationView ..> usantatecla.mastermind.views.graphics.ErrorView
class usantatecla.mastermind.views.graphics.AttemptsView {
~ AttemptsView(int)
}
usantatecla.mastermind.views.graphics.AttemptsView -up-|> javax.swing
usantatecla.mastermind.views.graphics.AttemptsView ..> Message
class usantatecla.mastermind.views.graphics.ColorView {
~ ColorView()
~ ColorView(Color)
# resultInitials(int) : String
}
usantatecla.mastermind.views.graphics.ColorView -up-|> ColorView
usantatecla.mastermind.views.graphics.ColorView ..> Color
class usantatecla.mastermind.views.graphics.Constraints {
~ Constraints(int, int, int, int)
}
usantatecla.mastermind.views.graphics.Constraints -up-|> java.awt
class usantatecla.mastermind.views.graphics.ErrorView {
~ ErrorView()
~ ErrorView(Error)
# colorInitials() : String
}
usantatecla.mastermind.views.graphics.ErrorView -up-|> ErrorView
usantatecla.mastermind.views.graphics.ErrorView ..> usantatecla.mastermind.views.graphics.ColorView
usantatecla.mastermind.views.graphics.ErrorView ..> Error
class usantatecla.mastermind.views.graphics.ResultView {
~ ResultView(Result)
}
usantatecla.mastermind.views.graphics.ResultView -up-|> javax.swing
usantatecla.mastermind.views.graphics.ResultView *-down-> Result
usantatecla.mastermind.views.graphics.ResultView ..> Message
class usantatecla.mastermind.views.graphics.ResumeDialog {
- newGame : boolean
~ ResumeDialog()
~ isNewGame() : boolean
}
usantatecla.mastermind.views.graphics.ResumeDialog -down..> javax.swing
usantatecla.mastermind.views.graphics.ResumeDialog ..> Message
@enduml
@startuml usantatecla.mastermind.models
enum Color as "usantatecla.\nmastermind.types.\nColor"
abstract class usantatecla.mastermind.models.Combination {
- {static} WIDTH: int
# Combination()
+ {static} getWidth(): int
}
usantatecla.mastermind.models.Combination *-down-> "*" Color
class usantatecla.mastermind.models.Game {
- {static} MAX_LONG: int
- attempts: int
+ Game()
+ reset()
+ addProposeCombination(ProposedCombination)
+ isLooser(): boolean
+ isWinner(): boolean
+ getAttempts(): int
+ getProposedCombination(int): ProposedCombination
+ getResult(int): Result
}
usantatecla.mastermind.models.Game *-down-> usantatecla.mastermind.models.SecretCombination
usantatecla.mastermind.models.Game *-down-> "*" usantatecla.mastermind.models.Result
usantatecla.mastermind.models.Game *-down-> "*" usantatecla.mastermind.models.ProposedCombination
class usantatecla.mastermind.models.ProposedCombination {
~ contains(Color, int): boolean
~ contains(Color): boolean
+ getColors(): List<Color>
}
usantatecla.mastermind.models.ProposedCombination -up-|> usantatecla.mastermind.models.Combination
usantatecla.mastermind.models.ProposedCombination ..> Color
class usantatecla.mastermind.models.Result {
- blacks: int
- whites: int
~ Result(int, int)
~ isWinner(): boolean
+ getBlacks(): int
+ getWhites(): int
}
usantatecla.mastermind.models.Result ..> usantatecla.mastermind.models.Combination
class usantatecla.mastermind.models.SecretCombination {
~ SecretCombination()
~ getResult(ProposedCombination): Result
}
usantatecla.mastermind.models.SecretCombination -up-|> usantatecla.mastermind.models.Combination
usantatecla.mastermind.models.SecretCombination ..> usantatecla.mastermind.models.Result
usantatecla.mastermind.models.SecretCombination ..> usantatecla.mastermind.models.ProposedCombination
usantatecla.mastermind.models.SecretCombination ..> Color
@enduml
@startuml usantatecla.mastermind.types
enum usantatecla.mastermind.types.Color {
+ RED
+ BLUE
+ YELLOW
+ GREEN
+ ORANGE
+ PURPLE
+ NULL
+ {static} length(): int
+ isNull() : boolean
}
enum usantatecla.mastermind.types.Error {
+ DUPLICATED
+ WRONG_CHARACTERS
+ WRONG_LENGTH
+ NULL
+ isNull() : boolean
}
@enduml
@startuml usantatecla.utils
class BufferedReader as "java.io.BufferedReader"{}
enum usantatecla.utils.views.ColorCode{
+ RED
+ BLUE
+ YELLOW
+ GREEN
+ ORANGE
+ PURPLE
+ RESET_COLOR
- color: String
~ ColorCode(String)
+ getColor(): String
+ {static} getColorByIndex(int): String
}
class usantatecla.utils.views.Console{
- {static} console: Console
+ {static} getInstance(): Console
+ readString(String): String
+ readString(): String
+ readInt(String): int
+ readChar(String): char
+ writeln()
+ write(String)
+ writeln(String)
+ write(char)
- writeError(String)
}
usantatecla.utils.views.Console *-down-> BufferedReader
class usantatecla.utils.views.YesNoDialog{
- {static} AFIRMATIVE: char
- {static} NEGATIVE: char
- {static} QUESTION: String
- {static} MESSAGE: String
+ YesNoDialog()
+ read(String): boolean
- {static} isAfirmative(char): boolean
- {static} isNegative(char): boolean
}
usantatecla.utils.views.YesNoDialog ..> usantatecla.utils.views.Console
@enduml
| false | true | false | false | class |
44581572076f4ac6535474b80da7b68685238be8 | 4e4ac82b89829b38765fe7982a5015ec2f734a7c | /src/main/java/ex45/ReplacerClasses.puml | 768a9666b61dfeedbcc716b5f11767546572c71d | [] | no_license | JKelleher00/kelleher-cop3330-assignment3 | 0b0a63206bce5eceec0dd13d10d27a924553c340 | fc7db8b2ad1b31a4968d8c58470a86e52e8e2ee0 | refs/heads/master | 2023-06-02T06:12:28.041207 | 2021-06-16T19:11:25 | 2021-06-16T19:11:25 | 377,302,745 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 223 | puml | @startuml
'https://plantuml.com/sequence-diagram
autonumber
Almostuseless->Replacer: old and new word
Replacer->ReadnReplace: old and new word
ReadnReplace<-inputfile:words
Almostuseless<--ReadnReplace:fixed input
@enduml | false | true | false | false | sequence |
5c3822d6f7d854f4e553ccec1e7b78a1c4af7bec | 3a4fbffc931fc3f281e88c0eba61ee7e3111abff | /post/flink-calcite-schema.iuml | 1914f8bc1fc5cd967a2faf474c2aedd046c744cc | [] | no_license | jrthe42/jrthe42.github.io | 801b0f8f4edd30a756400bce7ba12727ac8be6b5 | e831589a82720d9fd8c8a4c69ef535ab59f5719c | refs/heads/master | 2021-05-24T04:01:24.767798 | 2021-03-23T14:25:19 | 2021-03-23T14:25:19 | 34,150,333 | 1 | 0 | null | 2015-08-14T07:00:27 | 2015-04-18T03:06:28 | CSS | UTF-8 | PlantUML | false | false | 759 | iuml | @startuml flink-calcite-schema
class PlannerContext
class CatalogManagerCalciteSchema {
private final CatalogManager catalogManager;
}
class CatalogCalciteSchema {
private final String catalogName;
private final Catalog catalog;
}
class DatabaseCalciteSchema {
private final String databaseName;
private final String catalogName;
private final Catalog catalog;
}
CatalogManagerCalciteSchema --> CatalogCalciteSchema
CatalogCalciteSchema --> DatabaseCalciteSchema
PlannerContext -down-> CatalogManagerCalciteSchema
PlannerContext -down-> FunctionCatalogOperatorTable
class FunctionCatalogOperatorTable {
private final FunctionCatalog functionCatalog;
}
class FunctionCatalog
FunctionCatalogOperatorTable -down-> FunctionCatalog
@enduml | false | true | false | false | class |
b9371c2a6c02ded032e372210e127b5a1ce7a289 | 591d6285020eac5bb5bc126ccb7e7f628b726239 | /2020/10/28/before.puml | 44d57ccba142674cf56addf36ad133752a2ad250 | [] | no_license | wand2016/study | 80a29ba19c63424b3ece1f0b2c0ec0b231713efa | 60daedd9d26c58cf0e676abd801d448a580efac8 | refs/heads/master | 2023-04-22T19:40:17.569887 | 2021-04-30T10:01:35 | 2021-04-30T10:01:35 | 301,466,145 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 275 | puml | @startuml
set namespaceSeparator none
class .
class com.
note right: d-horiyama.com. IN NS ns1-hogehoge.org.
class d-horiyama.com.
note right: d-horiyama.com. IN NS ns1-hogehoge.org.
"." -d-> "com.": <<delegation>>
"com." -d-> "d-horiyama.com.": <<delegation>>
@enduml
| false | true | false | false | sequence |
f98ff2b5cb8fca4322890ee51f4815f3e4bb6590 | 9331c990130f1c44f6661855d6fbbdc9233df32e | /docs/main.puml | e0368728ba58ac4882c9cc1e35f6a5c9f8891ee9 | [] | no_license | alvincfan/hello_go | 782fe29d0b138513eac281030c54a4c2098210f8 | 0d32be86c25d60f2e1dd7e12cf5975406e1caf97 | refs/heads/master | 2021-01-22T15:10:32.554037 | 2018-01-07T18:15:54 | 2018-01-07T18:15:54 | 102,376,756 | 0 | 0 | null | 2017-09-17T16:01:25 | 2017-09-04T15:38:32 | Go | UTF-8 | PlantUML | false | false | 1,547 | puml | @startuml
class Address {
Zipcode string
MailingAddress string
}
class GeoLocation {
Latitude float32
Longitude float32
}
class Manufacture {
ManufactureID string
Name string
YearInService int32
}
class Owner {
OwnerID string
Name string
Transportation []string
}
Address *-- GeoLocation
class Dealership {
Name string
DealershipID string
GroundInventory map[string]*GroundTransportation
}
Dealership *-- Address
Manufacture *-- Address
Owner *-- Address
class GroundTransportation {
Manufacture *Manufacture
Owner *Owner
Location Geolocation
SerialNumber string
}
interface DealershipManager {
GetAllDealership() map[string]*domain.Dealership
AddDealership(dealership *domain.Dealership) error
GetDealership(dealershipID string) *domain.Dealership
RemoveDealership(dealershipID string) error
AddGroundInventory(dealershipID string, ground *domain.GroundTransportation) error
GetGroundInventory(dealershipID string, serialNumber string) (*domain.GroundTransportation, error)
MoveGroundInventory(dealershipID string, serialNumber string) error
SoldGroundInventory(dealershipID string, serialNumber string, owner *domain.Owner) error
}
interface OwnershipManager {
GetOwners() map[string]*domain.Owner
CreateOwner(ownerID string, name string, address *domain.Address) (*domain.Owner, error)
GetOwner(ownerID string) *domain.Owner
UpdateOwner(owner *domain.Owner) bool
DeleteOwner(owner *domain.Owner) bool
IsExisting(ownerID string) bool
}
@enduml | false | true | false | false | class |
e554aa8865628ca510b9a9431f50e7ff204d0b09 | d20c5c47f69154bab730978ab6926273aa912143 | /doc/sequencediagrams/fr8.puml | 35096b0e03100d78ef4929f88d954d88ec8e04eb | [] | no_license | PolyPong/PolyPong | 6343389dfc34c90e017e730e50432b9f190bd0e8 | c51a4ad491351f85d1065dab697dc52dacae7e88 | refs/heads/master | 2023-04-07T02:36:34.103293 | 2021-04-17T05:46:43 | 2021-04-17T05:46:43 | 336,416,757 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,989 | puml | @startuml
'actor user
''
'participant Leaderboard as L
'participant AuthenticationClass as A
'participant User as U
'participant DatabaseHelperClass as db
''
'activate user
'user -> L: view leaderboard (JWT)
'' activate L
'' L -> A: verify JWT
'' activate A
'' alt jwt is valid
'' A --> L: valid
'' L -> U: get user XP
'' activate U
'' U -> db: get user XP
'' activate db
'' db --> U: user XP
'' deactivate db
'' U --> L: user XP
'' deactivate U
'' L -> db: get leaderboard data
'' activate db
'' db --> L: leaderboard data
'' deactivate db
'' L --> user: local leaderboard
'' else
'' A --> L: invalid
'' deactivate A
'' L --> user: invalid JWT
'' end
'deactivate L
''
actor user
participant Leaderboard as L
participant DatabaseHelperClass as db
activate user
user -> L: getLocalLeaderboard(username)
activate L
L -> db: getXP(username)
activate db
db --> L : (usernames, xp)[]
deactivate db
' L -> db: get leaderboard data
' activate db
' db --> L: leaderboard data
' deactivate db
L --> user: local leaderboard
deactivate L
@enduml
| false | true | false | false | usecase |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.