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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
210313752ae3416dc6ae38df73e802997a161bc5
|
605cac101260b1b451322b94580c7dc340bea17a
|
/malokhvii-eduard/malokhvii04/doc/plantuml/ua/khpi/oop/malokhvii04/shell/commands/text/SearchPalindromesCommand.puml
|
40f10b119b773fe512a1de3d7507b78b788b9a5d
|
[
"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
| 590
|
puml
|
@startuml
class SearchPalindromesCommand {
{static} -description: String
{static} -AMOUNT_OF_PALINDROMES_IN_SINGLE_LINE: int
{static} -keys: List<String>
{static} -RESOURCE_BUNDLE_NAME: String
{static} -resourceBundle: ResourceBundle
+SearchPalindromesCommand()
{static} -printPalindromes(Collection<String>): void
{static} #updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
@enduml
| false
| true
| false
| false
|
class
|
29929d806496c80d236f16c8a055c7d8e313a089
|
58bbfceefa4ee368a32526a05a3a35ba4123772d
|
/diagrams/plantuml-src/delete-events-state.puml
|
22019e6e6797829d1faf011e1f03beb5159b4fde
|
[] |
no_license
|
skarning/software-engineering-gr14-project
|
f16946c93fb0463821b44f8c4de1b9ea8a89a91d
|
44c46809d6b396a9f0253fd9f9cac16c63ab7965
|
refs/heads/master
| 2020-08-02T00:16:42.287934
| 2020-01-10T13:11:56
| 2020-01-10T13:11:56
| 211,172,826
| 2
| 0
| null | 2019-11-18T22:43:16
| 2019-09-26T20:08:31
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 234
|
puml
|
@startuml
title Delete events
[*] --> dew
state "Delete Event Window" as dew {
state "Select event" as se
state "Delete event" as de
state "Delete all events" as dae
se --> de
de --> se
se --> dae
de --> dae
}
@enduml
| false
| true
| false
| false
|
state
|
b2bfd49629f5fb11521152f810b0f20be5bae38a
|
4444b237cb74fd0ebb0f7273c4317e50838279a6
|
/docs/abstract_factory_diagram.puml
|
c2e79f185359aafde95117db09bad9064c5bae6c
|
[
"MIT"
] |
permissive
|
will-r-wang/CMSLearn-Course-Management-System
|
bd3243927b293b324315ac38299a4046979d5559
|
016d7cfa6b65539aac51eb192e6acb8809608b58
|
refs/heads/main
| 2023-04-04T07:11:51.988562
| 2021-04-14T15:05:15
| 2021-04-14T15:05:15
| 340,215,527
| 1
| 2
| null | 2021-04-16T14:31:00
| 2021-02-19T00:33:05
|
Ruby
|
UTF-8
|
PlantUML
| false
| false
| 1,153
|
puml
|
@startuml
package activity.package {
class ResourceFactory {
create_resource(type, kwargs)
}
class DeliverableFactory {
create_deliverable(type, kwargs)
}
class Resource {
title : string,
hyperlink : string,
type : string,
}
abstract Activity
ResourceFactory --> Resource: creates
DeliverableFactory --> Deliverable: creates
Activity <.. Resource : "implements"
Activity <.. Deliverable : "implements"
Resource <.. URL : "implements"
Resource <.. Document : "implements"
Resource <.. Video : "implements"
class Deliverable {
title : string,
weight : float,
type : string
}
class Quiz {
time_opened : string,
time_closed : string,
allotted_time : string,
type : string
}
class Assignment {
due_date : datetime,
submission_type : string,
}
Deliverable <.. Tutorial : "implements"
Deliverable <.. Quiz : "implements"
Deliverable <.. Assignment : "implements"
}
abstract class ActivityFactory {
create_activity(deliverable_type, kwargs)
}
ActivityFactory <.. ResourceFactory : extends
ActivityFactory <.. DeliverableFactory : extends
@enduml
| false
| true
| false
| false
|
sequence
|
4e84ac28797e718f840230878dffda5bcb8f476e
|
f260dc8e2f579c6586df50a3c1caf0afd0fcd06e
|
/brettMenziesUML/useCaseDiagram.puml
|
b0dfc5f76eae0d8ae652146cb9bf201cf339b53d
|
[] |
no_license
|
Team-3-HW-2/UML
|
3c6c4a87f01e25793cf9cab3c43de9e85cc8e2eb
|
be5ad533d6bb2c8848a37ab593c8a23858a2450f
|
refs/heads/master
| 2016-09-06T09:03:31.575956
| 2015-02-02T18:45:37
| 2015-02-02T18:45:37
| 30,058,299
| 0
| 0
| null | 2015-01-31T20:32:07
| 2015-01-30T05:51:11
| null |
UTF-8
|
PlantUML
| false
| false
| 1,148
|
puml
|
@startuml
left to right direction
skinparam packageStyle rect
actor Player
actor Enemy_Combatant
actor Friendly_Player
actor Shopkeeper
rectangle Combat {
(Kill an Enemy) <- (Attack)
(Kill an Enemy) -> Enemy_Combatant
(Attack) <-> Enemy_Combatant
(Reload Weapon) <- (Attack)
(Change Current Weapon) -> (Reload Weapon)
}
rectangle Items {
(Select an Item from Inventory) -> (Open and close Inventory)
(Move an Item in Inventory) -> (Open and close Inventory)
(Pick up Items) -> (Move an Item in Inventory)
(Open and close Inventory)
(Use an Item) -> (Select an Item from Inventory)
(Equip an Item) -> (Select an Item from Inventory)
(Sell an Item) -> (Select an Item from Inventory)
(Sell an Item) <-> Shopkeeper
(Buy an Item) <-> Shopkeeper
}
rectangle Game {
(Start Dungeon) -> (Leave Dungeon) : Prereq
(Leave Dungeon) -> (Close the Game) : Prereq
(Close the Game)
(Save the game) <- (Close the Game)
}
rectangle Basic {
(Level Up)
(Die)
(Move)
(Look at stats)
(Look at mag)
(Dialog) <-> Friendly_Player
}
Player -left-> Combat
Player -right-> Game
Player -left-> Items
Player -down-> Basic
@enduml
| false
| true
| false
| false
|
usecase
|
dece0cf1caba0ae807272a587add96ef87aafeba
|
17ec522efc16da46e9dafa6ff3af640eb4929d67
|
/Java.plantuml
|
1ac551c64ca050c20bc75f73179551569661c0ee
|
[] |
no_license
|
gisellejimenezc/Test
|
cbc363349834c3c3272bd0505e51b2bb407272bc
|
1001ed44aa8eed8bfd200d3548b95b3443df0a37
|
refs/heads/master
| 2020-03-27T18:08:31.485837
| 2018-09-17T14:57:44
| 2018-09-17T14:57:44
| 146,900,999
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 3,415
|
plantuml
|
@startuml
title __JAVA's Class Diagram__\n
package com.m2i.poe {
package com.m2i.poe.genetic {
class ARN {
}
}
}
package com.m2i.poe {
package com.m2i.poe.bank {
class Account {
}
}
}
package com.m2i.poe {
package com.m2i.poe.genetic {
class AminoAcid {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
class Author {
}
}
}
package com.m2i.poe {
package com.m2i.poe.genetic {
class Base {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
class Book {
}
}
}
package com.m2i.poe {
package com.m2i.poe.geometry {
class Carre {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
class Cart {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
class Cd {
}
}
}
package com.m2i.poe {
package com.m2i.poe.bank {
class Customer {
}
}
}
package com.m2i.poe {
package com.m2i.poe.genetic {
class DNA {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
class Dvd {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
interface IMedia {
}
}
}
package com.m2i.poe {
class Main {
}
}
package com.m2i.poe {
package com.m2i.poe.bank {
class Main {
}
}
}
package com.m2i.poe {
package com.m2i.poe.genetic {
class Main {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
abstract class Media {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
class Media2 {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
class MediaMain {
}
}
}
package com.m2i.poe {
package com.m2i.poe.geometry {
class Point {
}
}
}
package com.m2i.poe {
package com.m2i.poe.geometry {
class Point3d {
}
}
}
package com.m2i.poe {
package com.m2i.poe.geometry {
class Program {
}
}
}
package com.m2i.poe {
package com.m2i.poe.media {
class Publisher {
}
}
}
package com.m2i.poe {
package com.m2i.poe.geometry {
class Rectangle {
}
}
}
package com.m2i.poe {
package com.m2i.poe.bank {
class Transaction {
}
}
}
package com.m2i.poe {
package com.m2i.poe.geometry {
class TriangleRectangle {
}
}
}
Account o-- Customer : customer
Book -up-|> Media
Carre -up-|> Rectangle
Cd -up-|> Media
Dvd -up-|> Media
Media -up-|> IMedia
Media o-- Publisher : publisher
Media2 -up-|> IMedia
Point3d -up-|> Point
Rectangle o-- Point : origin
Transaction o-- Account : fromAccount
Transaction o-- Account : toAccount
TriangleRectangle -up-|> Rectangle
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
|
741acb7e8cbc390c74b38fd0b14e98d45022c128
|
06b4f9b29e51db9eef79b9f9828f3aa369840ec1
|
/src/main/java/Server/Server.plantuml
|
0bbb557afcfe0f26cd290763c8554eede6f0f16a
|
[] |
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
| 4,658
|
plantuml
|
@startuml
title __SERVER's Class Diagram__\n
package Server {
class Client {
{static} - serialVersionUID : long
- run : Thread
- listen : Thread
- ready : boolean
- orde : String
- move : String
- order : int[]
- moves : String[][]
- clientCount : int
+ started : boolean
- running : boolean
+ Client()
+ run()
+ send()
+ listen()
+ getBackendClient()
+ askReady()
+ makeMoves()
+ makeOrder()
+ getClientCount()
+ setClientCount()
+ getMoves()
+ getOrder()
+ getStarted()
}
}
package Server {
class ClientBackend {
- name : String
- address : String
- port : int
- socket : DatagramSocket
- ip : InetAddress
- send : Thread
- id : int
+ ClientBackend()
+ getName()
+ setName()
+ openConnection()
+ receive()
+ send()
+ close()
+ setID()
+ getID()
}
}
package Server {
class Identifier {
{static} - ids : List<Integer>
{static} - range : int
{static} - index : int
- Identifier()
{static} + getIdentifier()
}
}
package Server {
class Server {
- socket : DatagramSocket
- port : int
- run : Thread
- manage : Thread
- send : Thread
- receive : Thread
- running : boolean
- started : boolean
- clients : List<ServerClient>
- clientResponse : List<Integer>
- ready : boolean[]
- clientCards : String[][]
- moves : String
- moveOrder : String
- MAX_ATTEMPTS : int
+ Server()
+ run()
- manageClients()
- receive()
- sendToAll()
- sendToAllButMe()
- send()
- process()
- disconnect()
+ clientCount()
+ setStarted()
+ getReady()
+ roundStart()
+ orderMoves()
+ indexOfMax()
+ start()
- quit()
}
}
package Server {
class ServerClient {
+ name : String
+ address : InetAddress
+ port : int
- ID : int
+ attempt : int
+ ServerClient()
+ getID()
}
}
Client -up-|> Runnable
Client -up-|> JFrame
Client o-- ClientBackend : client
AccessibleJFrame -up-|> AccessibleAWTFrame
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTFrame -up-|> AccessibleAWTWindow
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTWindow -up-|> AccessibleAWTContainer
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
WindowDisposerRecord -up-|> DisposerRecord
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
WakingRunnable -up-|> Runnable
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
BltBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
DummyRequestFocusController -up-|> RequestFocusController
FlipBufferStrategy -up-|> BufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
FlipContents -up-|> AttributeValue
SingleBufferStrategy -up-|> BufferStrategy
Server -up-|> Runnable
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
|
1d6a16d8c286c51b98e02ee23c11d744a5ce0522
|
464b64f2144fce0e6a57ce1fccd07696b9357706
|
/architecture/AppApiServer.plantuml
|
7627a7535461d61063c3f07241b8e3d7ca20de04
|
[] |
no_license
|
ambroseled/SENG402-2020
|
62331ffcbe8dbb1fdcd46bf1f6fa8340ea293258
|
04feabfef072ff0b88d081553fe1083689fba4f1
|
refs/heads/master
| 2023-02-21T23:09:58.003542
| 2021-01-29T01:47:18
| 2021-01-29T01:47:18
| 303,280,995
| 2
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,626
|
plantuml
|
@startuml
hide method
hide field
together {
class Startup
class Program
}
package Communication {
package SprayModuleIpc {
interface ISprayModuleBridge
class SprayModuleBridge
}
package Sockets {
interface IUdpSocket
class UdpSocket
}
}
package Io {
package Reports {
interface IUsbReportsExporter
class UsbReportsExporter
}
package SprayPlans {
interface ILocalSprayPlansManager
interface IUsbSprayPointsImporter
class LocalSprayPlansManager
class UsbSprayPointsImporter
}
package Usb {
interface IUsbIo
class UsbIo
}
}
' Controllers
package Controllers {
class FlightController
class HealthController
class LifecycleController
class NozzlesController
class ReportsController
class SprayPointsController
class UsbController
}
Program .down.> Startup
' Utilities implementing interfaces
UdpSocket .up.|> IUdpSocket
SprayModuleBridge .up.|> ISprayModuleBridge
UsbIo .up.|> IUsbIo
LocalSprayPlansManager .up.|> ILocalSprayPlansManager
UsbSprayPointsImporter .up.|> IUsbSprayPointsImporter
UsbReportsExporter .up.|> IUsbReportsExporter
' Utilities composition
UsbReportsExporter *-down- IUsbIo
LocalSprayPlansManager *-up- IUsbSprayPointsImporter
UsbSprayPointsImporter *-down- IUsbIo
SprayModuleBridge *-down- IUdpSocket
' Controller compositions
FlightController *-down- ISprayModuleBridge
NozzlesController *-down- ISprayModuleBridge
ReportsController *-down- IUsbReportsExporter
SprayPointsController *-down- IUsbSprayPointsImporter
SprayPointsController *-down- ILocalSprayPlansManager
UsbController *-down- IUsbIo
@enduml
| false
| true
| false
| false
|
class
|
7e97ed9b7b4212d0094d9aaaea11c22d9c2b5384
|
3662b2e08ec5aef2e3dfd1e527b5e50f44d91e1c
|
/docs/diagrams/ParserClassDiagram.puml
|
11b8259a461c254a662f50d88057ab5b7980b539
|
[] |
no_license
|
AY2021S2-CS2113T-W09-2/tp
|
0585f03b1390bf9385a5caef22f00aa599b18d13
|
7d4443d633ae380505f7a69687cc34ab71e0a06b
|
refs/heads/master
| 2023-04-17T11:33:49.033344
| 2021-04-16T02:46:37
| 2021-04-16T02:46:37
| 343,961,010
| 0
| 5
| null | 2021-04-16T02:46:37
| 2021-03-03T01:14:38
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 257
|
puml
|
@startuml
hide circle
skinparam classAttributeIconSize 0
Parser"1" <-- iGraduate
Parser : +parseCommand(String line):Command
Parser : +createCommand(String[] commandParameters, String[] commandFlags):Command
iGraduate : +run()
iGraduate : +main()
@enduml
| false
| true
| false
| false
|
uml-unknown
|
0d201ad2250501cc5f60e9b3bb1985f06de558e8
|
1c7119cb7a6f9092ec5d3eb84261108d6569ba92
|
/docs/bosch_driver.puml
|
3f9ede005a79ab1b4223d7d6538e03c7b02640de
|
[] |
no_license
|
broha22/HT_Sensor_API
|
9c9dd07cc9844c0db76cc9430e844b5a6b599d2f
|
1e016cda5aa3ac87c324c75fea23b627a6379d89
|
refs/heads/master
| 2020-12-15T19:37:48.632003
| 2020-05-13T22:37:54
| 2020-05-13T22:37:54
| 235,232,139
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 353
|
puml
|
@startuml bsh_driver
skinparam dpi 300
participant "Library call" as lib
participant "Map call\n to read or write" as rw
participant "Map call destination \nto register address" as Map
participant "Write and read data \nto/from I2C line" as write
participant "Return data \nor success/error" as ret
lib -> rw
rw -> Map
Map -> write
write -> ret
@enduml
| false
| true
| false
| false
|
sequence
|
67e85aefc8c8c1b42638556a63c6f06866e9a16b
|
aa9620300bc8488f53437e0f5faab824225aab73
|
/reweighting_2017/import_seq_2.plantuml
|
a6475b1d18a7cdaa212e3c2213523fa2dc8a34e5
|
[
"BSD-3-Clause"
] |
permissive
|
atavory/atavory.github.io
|
94daa1b05141ff5c6e9ebfb5055fc87cfd333ca3
|
43d98b45150411d83ab75a92a6d4ab9226927ef0
|
refs/heads/master
| 2021-01-19T06:15:43.197765
| 2019-11-18T10:58:38
| 2019-11-18T10:58:38
| 100,634,235
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 969
|
plantuml
|
@startuml
skinparam monochrome true
skinparam shadowing false
actor user
autonumber 1 "<font color=grey>"
user -[#grey]> runtime: <back:white>import ibex.sklearn.linear_model</back>
autonumber 2 "<font color=black>"
runtime -[#black]> ibex: <back:grey>import ibex</back>
autonumber 3 "<font color=grey>"
runtime -[#grey]> ibex.sklearn: <back:white>import ibex.sklearn</back>
autonumber 4 "<font color=grey>"
ibex.sklearn -[#grey]> ibex.sklearn: <back:white>register sys.metapath</back>
autonumber 5 "<font color=grey>"
runtime -[#grey]> loader: <back:white>import ibex.sklearn.linear_model</back>
autonumber 6 "<font color=grey>"
loader -[#grey]> sklearn.linear_model: <back:white>dir</back>
autonumber 7 "<font color=grey>"
sklearn.linear_model -[#grey]> loader: <back:white>members</back>
autonumber 8 "<font color=grey>"
loader -[#grey]> loader: <back:white>inspect</back>
autonumber 9 "<font color=grey>"
loader -[#grey]> loader: <back:white>wrap</back>
@enduml
| false
| true
| false
| false
|
sequence
|
cee6e5b47a70ad153c711d21f89039da14fd794a
|
7db21274a1313beb902efebbef605e4ed261efd9
|
/notebooks/ljpy-sismic/statecharts_flick.puml
|
6ee83a0cb9d446cfd38a502234d66f4ed5d9aaec
|
[
"MIT"
] |
permissive
|
drorspei/misc
|
df07c63aa5677419db982ab4a50bbf79546e08d9
|
cd6aa009c9587b485d86ef5fdbdb119f566c9b0c
|
refs/heads/master
| 2023-04-12T23:00:54.009014
| 2023-03-17T15:24:26
| 2023-03-17T15:24:26
| 176,116,260
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 695
|
puml
|
@startuml
title State Chart
state "LightSwitch" as LightSwitch {
[*] --> NoPower
state "HasMemory" as HasMemory {
[*] --> WithPower
state "JustTurnedOff" as JustTurnedOff {
JustTurnedOff --> historystate : flick
JustTurnedOff --> NoPower : [after(2)]
}
state "WithPower" as WithPower {
[*] --> LightOn
WithPower --> JustTurnedOff : flick
state "LightOff" as LightOff {
LightOff --> LightOn : remotePressedON
}
state "LightOn" as LightOn {
LightOn --> LightOff : remotePressedOff
}
state "H" as historystate {
}
}
}
state "NoPower" as NoPower {
NoPower --> HasMemory : flick
}
}
@enduml
| false
| true
| false
| false
|
sequence
|
f9f6754b5e7d554726b1da70a8f0def675f7dba7
|
63114b37530419cbb3ff0a69fd12d62f75ba7a74
|
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/Api/ITestRunnerApi.puml
|
55950e0e4629829371fcd0fbca98b2253b93f7f5
|
[] |
no_license
|
TakanoVineYard/AMHH
|
215a7c47049df08c5635b501e74f85137b9e985b
|
68887a313587a2934fb4ceb2994cbc2a2191d6a3
|
refs/heads/master
| 2023-01-13T02:08:02.787083
| 2020-11-17T14:51:57
| 2020-11-17T14:51:57
| 303,631,593
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 291
|
puml
|
@startuml
interface ITestRunnerApi {
Execute(executionSettings:ExecutionSettings) : string
RegisterCallbacks(testCallbacks:T, priority:int) : void
UnregisterCallbacks(testCallbacks:T) : void
RetrieveTestList(testMode:TestMode, callback:Action<ITestAdaptor>) : void
}
@enduml
| false
| true
| false
| false
|
class
|
2f1b65f849e56145840a6466915e94d8817bf4dd
|
740ec837551b09f09677854163ecd30ba6ea3cb7
|
/documents/sd/plantuml/application/Core/MORR/Data/Transcoding/Exceptions/DecodingException.puml
|
8d9d7448c1ce694ea9cca2cddf5fa8022917e900
|
[
"MIT"
] |
permissive
|
insightmind/MORR
|
913c0c16d14745cbde40af07322ca339a0373f32
|
0830f2155fb3b32dc127587e07cbd780deb0e118
|
refs/heads/develop
| 2020-12-08T00:23:17.488431
| 2020-04-05T20:50:44
| 2020-04-05T20:50:44
| 232,827,908
| 5
| 1
|
MIT
| 2020-04-05T20:55:27
| 2020-01-09T14:28:48
|
HTML
|
UTF-8
|
PlantUML
| false
| false
| 334
|
puml
|
@startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
class DecodingException {
+ <<create>> DecodingException()
+ <<create>> DecodingException(message: string)
+ <<create>> DecodingException(message: string, innerException: Exception)
}
!endsub
Exception <|-- DecodingException
@enduml
| false
| true
| false
| false
|
class
|
18ee506fe2b79afe192c53c3fabae9b4aed0a5f3
|
b98b45a77c5c797e0f5ab7569e25dcd140d16910
|
/src/main/java/ex43/ex43.puml
|
42a3919a091bda46029c996ac6f89bdf1a2e92a7
|
[] |
no_license
|
JMoorC/Moore-cop3330-assignment3
|
1e2cfe9006a57794bdfe53531c843cdf79b0e028
|
bb18814b4d672f1454863e5d13b7c7dae9d99998
|
refs/heads/master
| 2023-08-25T18:41:07.203669
| 2021-10-12T02:58:09
| 2021-10-12T02:58:09
| 415,769,582
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 274
|
puml
|
@startuml
class App{
main()
}
class Website{
-siteName : String
-author : String
-homeDir : String
-hasJS : boolean
-hasCSS : boolean
+Website()
+getInfo()
+formatOutput()
+createIndex()
+createFolder()
}
Website -- App
@enduml
| false
| true
| false
| false
|
class
|
3750ebb282049361032196db0a25492a68a6cd09
|
9c4d736d7c11978f57828197369d9bdb98e80d21
|
/src/site/resources/usecases.puml
|
50307d3a250e37c6379c1857785b939655d0f1d9
|
[] |
no_license
|
mgardos/vsfridge
|
891bc0fad7d5380b870910b61912e758c975f28c
|
e5773b74fcadc36a55c03c8d920dce4d69a20a71
|
refs/heads/master
| 2022-01-22T09:37:54.507099
| 2020-08-26T00:10:22
| 2020-08-26T00:10:22
| 160,563,758
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,160
|
puml
|
@startuml
left to right direction
Actor Consumidor
Actor Tiempo
Actor Proveedor
rectangle "Heladera Inteligente Virtual" {
Consumidor --- (Abrir)
Consumidor --- (Cerrar)
Consumidor -- (Encender)
Consumidor <- (Notificar alimentos\nen vencimiento)
(Cerrar) <.. (Identificar producto\nmanualmente) : <<extend>>
(Cerrar) .> (Identificar producto) : <<include>>
(Encender) .> (Cerrar) : <<include>>
(Identificar producto) <.. (Detectar peso del alimento) : <<extend >>
(Poner productos) .> (Abrir) : <<extend>>
(Abrir) <.. (Tomar productos) : <<extend>>
(Comprar\nalimentos) ---- Proveedor
Consumidor <- (Notificar escasez\nde alimentos)
(Notificar escasez\nde alimentos) ..> (Monitorear escasez\nde alimentos) : <<extend>>
(Comprar\nalimentos) .> (Notificar escasez\nde alimentos) : <<extend>>
Consumidor --- (Agregar\nproveedor)
(Agregar\nproveedor) <. (Comprar\nalimentos) : <<extend>>
(Monitorear vencimiento\nde alimentos) <-- Tiempo
(Notificar alimentos\nen vencimiento) ..> (Monitorear vencimiento\nde alimentos) : <<extend>>
(Monitorear escasez\nde alimentos) <-- Tiempo
}
@enduml
| false
| true
| false
| false
|
usecase
|
b709bd87fc652f4d56a32a4fae25eae1fe3d435d
|
a7b712de405d5cb76e15ec693b786796f8ec4815
|
/diagrams/k8s-storage-seq.puml
|
bff6a0f8cff4ae2cdad394ca30b945089d8126c5
|
[
"MIT"
] |
permissive
|
marekrein/dca-prep-kit
|
3635929d0f38f84576aec071d7b9f994faa52ff3
|
6f78a8e4a109697677afd00de870609a8e5b699c
|
refs/heads/master
| 2023-02-09T01:39:15.272443
| 2021-01-03T15:43:40
| 2021-01-03T15:43:40
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,764
|
puml
|
@startuml k8s-storage-seq
'Icons
!include <kubernetes/k8s-sprites-labeled-25pct>
!include <aws/Compute/AmazonECS/ECScontainer/ECScontainer>
!include <tupadr3/font-awesome-5/user>
'Global Styles
'!include https://raw.githubusercontent.com/Piotr1215/dca-prep-kit/master/diagrams/styles.iuml
skinparam BackgroundColor white
skinparam componentShadowing true
skinparam rectangleRoundCorner 0
skinparam rectangleBorderStyle default
skinparam rectangleBackgroundColor white
skinparam componentBackgroundColor white
skinparam linetype poly
skinparam rectangleShadowing true
skinparam ActorBackgroundColor white
skinparam ParticipantBackgroundColor lightblue
skinparam ArrowColor black
'skinparam monochrome false
!define TITLE Kubernetes PV and PVC Lifecycle
title TITLE
actor "Admin" as admin #green
participant "Persistent Volume" as pv
==Creation==
admin -> pv : Creates
activate pv #lightgray
note left of pv : Backed by phisical storage
actor "Developer" as dev #gray
participant "Persistent Volume Claim" as pvc
dev -> pvc : Creates
activate pvc #lightgray
dev -> pod : Mounts PVC to pod
activate pod #lightgray
==Setup==
pv <- pvc : Claims
pvc -> pvc : Checks pv availability
==Usage==
pvc -> pod : Mounted to
pvc -> pvc : Set to bound
pod <- containers : Use mounted\nvolumes
==Cleanup==
dev -> pvc: Deletes PVC
destroy pvc
group Reclaiming Policies
else Retain
pv --> pv : PV Remains available
else Recycle
note right
Warning: The Recycle reclaim policy is deprecated.
Instead, the recommended approach
is to use dynamic provisioning.
end note
pv --> pv: PV Data is scrubbed, but \nremains available
else Delete
pv -[#red]-> pv : PV is automatically removed\ndata lost
destroy pv
end
@enduml
| false
| true
| false
| false
|
sequence
|
7e9f7740dc7e259d082148fa505bfc0b3f64f96f
|
19f793bed6a7ddbe4f01616e2374a9ddc459e8b1
|
/doc/创建型模式/单例模式-类图(4分).puml
|
6ae61ff425c2b108d464b3291c1a58c2ed7da555
|
[] |
no_license
|
1wang1/design-patterns
|
02a87e8c2f170f2a2de4993e8f11b9ef9a522627
|
5ebd98248ea5a035e19a843f823971676899a212
|
refs/heads/master
| 2022-12-19T04:30:30.790952
| 2020-09-27T11:42:41
| 2020-09-27T11:42:41
| 272,214,620
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 179
|
puml
|
@startuml
class Singleton{
- instance:Singleton
+ getInstance():Singleton
+ singletonOperation():void
-<constructor> Singleton():void
}
Singleton <--o Singleton:instance
@enduml
| false
| true
| false
| false
|
class
|
12d4a711f688ad959cafbdab0a740dc7c548470f
|
ff27e165d649e5947c62e2d619d03771149cc850
|
/teoria_dos_jogos/uml.puml
|
8ac29e2df85898499853d224825695492e945e24
|
[] |
no_license
|
yasmin15carolina/Bens_Publicos
|
705bf1636a12fb4205c8e9aec8599cd8b5885ced
|
26c92cebda2aebcb82e6494d4f08eafd0d084427
|
refs/heads/master
| 2023-09-02T17:23:19.111189
| 2021-11-22T23:31:08
| 2021-11-22T23:31:08
| 413,542,520
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 81,033
|
puml
|
@startuml
set namespaceSeparator ::
class "teoria_dos_jogos::AppLanguage.dart::AppLanguage" {
-Locale _appLocale
+Locale appLocal
+dynamic fetchLocale()
+void changeLanguage()
}
"teoria_dos_jogos::AppLanguage.dart::AppLanguage" o-- "dart::ui::Locale"
"flutter::src::foundation::change_notifier.dart::ChangeNotifier" <|-- "teoria_dos_jogos::AppLanguage.dart::AppLanguage"
class "teoria_dos_jogos::app_localizations.dart::AppLocalizations" {
+Locale locale
{static} +LocalizationsDelegate<AppLocalizations> delegate
-Map _localizedStrings
{static} +AppLocalizations of()
+Future load()
+dynamic translate()
}
"teoria_dos_jogos::app_localizations.dart::AppLocalizations" o-- "dart::ui::Locale"
"teoria_dos_jogos::app_localizations.dart::AppLocalizations" o-- "flutter::src::widgets::localizations.dart::LocalizationsDelegate<AppLocalizations>"
class "teoria_dos_jogos::app_localizations.dart::_AppLocalizationsDelegate" {
+bool isSupported()
+Future load()
+bool shouldReload()
}
"flutter::src::widgets::localizations.dart::LocalizationsDelegate<T>" <|-- "teoria_dos_jogos::app_localizations.dart::_AppLocalizationsDelegate"
class "teoria_dos_jogos::classes::connection.dart::Connection" {
{static} +dynamic checkConnection()
{static} +dynamic loading()
{static} +dynamic loadingConnection()
{static} +dynamic noConnection()
{static} +Future showLoadingDialog()
}
class "teoria_dos_jogos::classes::Database.dart::Database" {
{static} +dynamic validateKey()
{static} +dynamic select()
{static} +dynamic insert()
+dynamic getData()
{static} +dynamic insertUser()
{static} +dynamic insertRounds()
{static} +dynamic getDilemmaVariables()
{static} +dynamic getMaxLength()
}
class "teoria_dos_jogos::classes::excel.dart::Excelfile" {
+Excel excel
+dynamic context
+dynamic createSheetPrisonerDilemma()
+dynamic createSheetPublicGoods()
+dynamic saveExcel()
}
"teoria_dos_jogos::classes::excel.dart::Excelfile" o-- "excel::excel.dart::Excel"
class "teoria_dos_jogos::classes::maxLength.dart::MaxLength" {
+int character_maximum_length
+Map toJson()
{static} -int _stringToInt()
{static} -String _stringFromInt()
}
class "teoria_dos_jogos::classes::pdf.dart::Pdf" {
+Document pdfFile
+dynamic createPdf()
+dynamic salvePdf()
}
"teoria_dos_jogos::classes::pdf.dart::Pdf" o-- "pdf::widgets.dart::Document"
class "teoria_dos_jogos::classes::pdf.dart::PdfWeb" {
}
class "teoria_dos_jogos::classes::time_taken_round_pd.dart::PDTimeRound" {
+int userId
+int round
+Duration dragCard
+dynamic setDragCard()
}
class "teoria_dos_jogos::classes::time_taken_round_pg.dart::PGTimeRound" {
+int userId
+int round
+Duration dragToken
+Duration distribution
+Duration election
+dynamic setDragToken()
+dynamic setDistribution()
+dynamic setElection()
}
class "teoria_dos_jogos::classes::time_taken_tutorial_pd.dart::PDTimeTutorial" {
+int userId
+Duration total
+Duration tutorial
+Duration distribution
+Duration election
+int sawTutorial
+int sawDistribution
+int sawElection
+dynamic setTutorial()
+dynamic sawTutorialCountUp()
}
class "teoria_dos_jogos::classes::time_taken_tutorial_pg.dart::PGTimeTutorial" {
+int userId
+Duration total
+Duration main
+Duration distribution
+Duration election
+int sawMain
+int sawDistribution
+int sawElection
+dynamic setMain()
+dynamic setDistribution()
+dynamic setElection()
+dynamic sawMainCountUp()
+dynamic sawDistributionCountUp()
+dynamic sawElectionCountUp()
}
class "teoria_dos_jogos::classes::user.dart::User" {
+dynamic id
+String name
+dynamic age
+String gender
+String cours
+String imgPath
+String educationLevel
+String occupation
+String experiment
+String device
+DateTime start
+List<FlSpot> cooperateList
+List<FlSpot> defectList
+dynamic graphicCooperate()
+dynamic graphicdefect()
}
class "teoria_dos_jogos::generated::intl::messages_en.dart::MessageLookup" {
+Map<String, dynamic> messages
+String localeName
{static} -dynamic _notInlinedMessages()
}
"intl::message_lookup_by_library.dart::MessageLookupByLibrary" <|-- "teoria_dos_jogos::generated::intl::messages_en.dart::MessageLookup"
class "teoria_dos_jogos::generated::l10n.dart::S" {
{static} +S current
{static} +AppLocalizationDelegate delegate
{static} +Future load()
{static} +S of()
}
"teoria_dos_jogos::generated::l10n.dart::S" o-- "teoria_dos_jogos::generated::l10n.dart::S"
"teoria_dos_jogos::generated::l10n.dart::S" o-- "teoria_dos_jogos::generated::l10n.dart::AppLocalizationDelegate"
class "teoria_dos_jogos::generated::l10n.dart::AppLocalizationDelegate" {
+List<Locale> supportedLocales
+bool isSupported()
+Future load()
+bool shouldReload()
-bool _isSupported()
}
"flutter::src::widgets::localizations.dart::LocalizationsDelegate<T>" <|-- "teoria_dos_jogos::generated::l10n.dart::AppLocalizationDelegate"
class "teoria_dos_jogos::main.dart::MyApp" {
+AppLanguage appLanguage
+Widget build()
}
"teoria_dos_jogos::main.dart::MyApp" o-- "teoria_dos_jogos::AppLanguage.dart::AppLanguage"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::main.dart::MyApp"
class "teoria_dos_jogos::main.dart::ChooseGamePage" {
+dynamic title
+_ChooseGamePageState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::main.dart::ChooseGamePage"
class "teoria_dos_jogos::main.dart::_ChooseGamePageState" {
+TextEditingController keytxt
-GlobalKey<State<StatefulWidget>> _keyLoader
+void initState()
-Future _handleSubmit()
+dynamic validateKey()
+dynamic loadCode()
+Widget build()
}
"teoria_dos_jogos::main.dart::_ChooseGamePageState" o-- "flutter::src::widgets::editable_text.dart::TextEditingController"
"teoria_dos_jogos::main.dart::_ChooseGamePageState" o-- "flutter::src::widgets::framework.dart::GlobalKey<State<StatefulWidget>>"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::main.dart::_ChooseGamePageState"
class "teoria_dos_jogos::main.dart::SliderExample" {
+_SliderExampleState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::main.dart::SliderExample"
class "teoria_dos_jogos::main.dart::_SliderExampleState" {
+double rating
+void initState()
+void dispose()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::main.dart::_SliderExampleState"
class "teoria_dos_jogos::myteste.dart::Myteste" {
+_MytesteState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::myteste.dart::Myteste"
class "teoria_dos_jogos::myteste.dart::_MytesteState" {
+bool start
+bool show
+PublicGoodsVariables variables
+dynamic coinsAnimation
+void dispose()
+dynamic starta()
+Widget build()
}
"teoria_dos_jogos::myteste.dart::_MytesteState" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::myteste.dart::_MytesteState"
class "teoria_dos_jogos::pages::UserForms.page.dart::UserForms" {
+dynamic game
+dynamic variables
+List<MaxLength> lengths
+_UserFormsState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::pages::UserForms.page.dart::UserForms"
class "teoria_dos_jogos::pages::UserForms.page.dart::_UserFormsState" {
+dynamic dropImageValue
+User user
+TextEditingController txtName
+TextEditingController txtAge
+TextEditingController txtCurs
+TextEditingController txtOccupation
+bool other
+bool female
+bool male
+bool superior
+bool otherCurs
+List levels
+List courses
+dynamic dropdownEducation
+dynamic dropdownCurs
+DeviceInfoPlugin deviceInfo
-GlobalKey<FormState> _formKey
+void initState()
+dynamic validator()
+Widget build()
}
"teoria_dos_jogos::pages::UserForms.page.dart::_UserFormsState" o-- "teoria_dos_jogos::classes::user.dart::User"
"teoria_dos_jogos::pages::UserForms.page.dart::_UserFormsState" o-- "flutter::src::widgets::editable_text.dart::TextEditingController"
"teoria_dos_jogos::pages::UserForms.page.dart::_UserFormsState" o-- "device_info::device_info.dart::DeviceInfoPlugin"
"teoria_dos_jogos::pages::UserForms.page.dart::_UserFormsState" o-- "flutter::src::widgets::framework.dart::GlobalKey<FormState>"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::pages::UserForms.page.dart::_UserFormsState"
class "teoria_dos_jogos::pages::welcome.page.dart::WelcomePage" {
+_WelcomePageState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::pages::welcome.page.dart::WelcomePage"
class "teoria_dos_jogos::pages::welcome.page.dart::_WelcomePageState" {
+void initState()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::pages::welcome.page.dart::_WelcomePageState"
class "teoria_dos_jogos::prisoners_dilemma::classes::dilemmaVariables.dart::DilemmaVariables" {
+int id
+String key
+String algorithm
+String secondAlgorithm
+String gameName
+String descri
+int bothCooperate
+int bothDefect
+int cooperateLoses
+int defectWin
+int roundsNumber
+int maxTime
+int stable
+bool showRounds
+bool showClock
+bool showYourPoints
+bool showOtherPoints
+bool yourPointsRand
+bool otherPointsRand
+DateTime start
+DateTime end
+Map toJson()
{static} -int _stringToInt()
{static} -String _stringFromInt()
{static} -bool _stringToBool()
{static} -String _stringFromBool()
{static} +bool parseBool()
}
class "teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::DilemmaGamePage" {
+DilemmaVariables variables
+User user
+dynamic txtOtherChoice
+dynamic txtYourChoice
+PDTimeTutorial timeTutorial
+_DilemmaGamePageState createState()
}
"teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::DilemmaGamePage" o-- "teoria_dos_jogos::prisoners_dilemma::classes::dilemmaVariables.dart::DilemmaVariables"
"teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::DilemmaGamePage" o-- "teoria_dos_jogos::classes::user.dart::User"
"teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::DilemmaGamePage" o-- "teoria_dos_jogos::classes::time_taken_tutorial_pd.dart::PDTimeTutorial"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::DilemmaGamePage"
class "teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::_DilemmaGamePageState" {
+PrisonerDilemmaGame game
+Widget yourChoice
+Widget otherChoice
+int userChoice
+bool draggable
+void initState()
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::_DilemmaGamePageState" o-- "teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::PrisonerDilemmaGame"
"teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::_DilemmaGamePageState" o-- "flutter::src::widgets::framework.dart::Widget"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::prisoners_dilemma::pages::game.page.dart::_DilemmaGamePageState"
class "teoria_dos_jogos::prisoners_dilemma::pages::tutorial.page.dart::DilemmaTutorialPage" {
+DilemmaVariables variables
+User user
+_DilemmaTutorialPageState createState()
}
"teoria_dos_jogos::prisoners_dilemma::pages::tutorial.page.dart::DilemmaTutorialPage" o-- "teoria_dos_jogos::prisoners_dilemma::classes::dilemmaVariables.dart::DilemmaVariables"
"teoria_dos_jogos::prisoners_dilemma::pages::tutorial.page.dart::DilemmaTutorialPage" o-- "teoria_dos_jogos::classes::user.dart::User"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::pages::tutorial.page.dart::DilemmaTutorialPage"
class "teoria_dos_jogos::prisoners_dilemma::pages::tutorial.page.dart::_DilemmaTutorialPageState" {
+int i
+List<InterfaceAndText> exibitionOrder
+DateTime startTutorial
+PDTimeTutorial timeTutorial
+void initState()
+void dispose()
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::pages::tutorial.page.dart::_DilemmaTutorialPageState" o-- "teoria_dos_jogos::classes::time_taken_tutorial_pd.dart::PDTimeTutorial"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::prisoners_dilemma::pages::tutorial.page.dart::_DilemmaTutorialPageState"
class "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::DilemmaRound" {
}
"teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::_DilemmaRoundBase" <|-- "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::DilemmaRound"
"teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::_$DilemmaRound" <|-- "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::DilemmaRound"
abstract class "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::_DilemmaRoundBase" {
+PDTimeRound timeRound
+int oponentChoice
+int userChoice
+bool lostRound
+int stableCount
+int round
+int oponentPoints
+int userPoints
+bool seeYourPoints
+bool seeOtherPoints
+bool yourRand
+bool otherRand
+String result
+dynamic calculateResult()
+dynamic printaLista()
}
"teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::_DilemmaRoundBase" o-- "teoria_dos_jogos::classes::time_taken_round_pd.dart::PDTimeRound"
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::_DilemmaRoundBase"
abstract class "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::_$DilemmaRound" {
-dynamic _$roundAtom
-dynamic _$seeYourPointsAtom
-dynamic _$seeOtherPointsAtom
-dynamic _$yourRandAtom
-dynamic _$otherRandAtom
-dynamic _$resultAtom
-ActionController _$_DilemmaRoundBaseActionController
+int round
+bool seeYourPoints
+bool seeOtherPoints
+bool yourRand
+bool otherRand
+String result
+dynamic calculateResult()
+String toString()
}
"teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::_$DilemmaRound" o-- "mobx::src::core.dart::ActionController"
class "teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::PrisonerDilemmaGame" {
}
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase" <|-- "teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::PrisonerDilemmaGame"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_$PrisonerDilemmaGame" <|-- "teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::PrisonerDilemmaGame"
abstract class "teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase" {
+User user
+dynamic context
+DilemmaVariables variables
+PDTimeTutorial timeTutorial
+AudioCache audioCache
+dynamic yourTxt
+dynamic otherTxt
+bool lastToPlay
+bool endGame
+bool db
+dynamic currentlyAlgorithm
+bool startTiming
+dynamic animateClock
+Widget yourChoiceTarget
+Widget otherChoiceTarget
+bool draggable
+int oponentChoice
+int userChoice
+DilemmaRound dilemmaRound
+dynamic listRounds
+dynamic userId
+int otherPlayerDelay
+int waitDelay
+dynamic toggleYourPoints()
+dynamic toggleOtherPoints()
+dynamic onDragCard()
+dynamic executeAlgorithm()
+dynamic callPlayersDelay()
+dynamic checkStability()
+dynamic showResult()
+dynamic registerRound()
+dynamic nextRound()
+dynamic timeOut()
+dynamic sendDataToDatabase()
+dynamic showGraphic()
+dynamic onEndCardAnimation()
}
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase" o-- "teoria_dos_jogos::classes::user.dart::User"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase" o-- "teoria_dos_jogos::prisoners_dilemma::classes::dilemmaVariables.dart::DilemmaVariables"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase" o-- "teoria_dos_jogos::classes::time_taken_tutorial_pd.dart::PDTimeTutorial"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase" o-- "audioplayers::audio_cache.dart::AudioCache"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase" o-- "flutter::src::widgets::framework.dart::Widget"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase" o-- "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::DilemmaRound"
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_PrisonerDilemmaGameBase"
abstract class "teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_$PrisonerDilemmaGame" {
-dynamic _$startTimingAtom
-dynamic _$animateClockAtom
-dynamic _$yourChoiceTargetAtom
-dynamic _$otherChoiceTargetAtom
-dynamic _$draggableAtom
-dynamic _$oponentChoiceAtom
-dynamic _$userChoiceAtom
-dynamic _$dilemmaRoundAtom
-dynamic _$otherPlayerDelayAtom
-dynamic _$waitDelayAtom
-AsyncAction _$executeAlgorithmAsyncAction
-AsyncAction _$sendDataToDatabaseAsyncAction
-ActionController _$_PrisonerDilemmaGameBaseActionController
+bool startTiming
+dynamic animateClock
+Widget yourChoiceTarget
+Widget otherChoiceTarget
+bool draggable
+int oponentChoice
+int userChoice
+DilemmaRound dilemmaRound
+int otherPlayerDelay
+int waitDelay
+dynamic executeAlgorithm()
+dynamic sendDataToDatabase()
+dynamic toggleYourPoints()
+dynamic toggleOtherPoints()
+dynamic onDragCard()
+dynamic callPlayersDelay()
+dynamic checkStability()
+dynamic showResult()
+dynamic registerRound()
+dynamic nextRound()
+dynamic timeOut()
+dynamic showGraphic()
+dynamic onEndCardAnimation()
+dynamic toString()
}
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_$PrisonerDilemmaGame" o-- "mobx::src::api::async.dart::AsyncAction"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_$PrisonerDilemmaGame" o-- "mobx::src::core.dart::ActionController"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_$PrisonerDilemmaGame" o-- "flutter::src::widgets::framework.dart::Widget"
"teoria_dos_jogos::prisoners_dilemma::store::prisoner_dilemma_game_store.dart::_$PrisonerDilemmaGame" o-- "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::DilemmaRound"
class "teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::PrisonerDilemmaTutorial" {
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_PrisonerDilemmaTutorialBase" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::PrisonerDilemmaTutorial"
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_$PrisonerDilemmaTutorial" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::PrisonerDilemmaTutorial"
abstract class "teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_PrisonerDilemmaTutorialBase" {
+dynamic context
+DilemmaVariables variables
+AudioCache audioCache
+dynamic yourTxt
+dynamic otherTxt
+bool lastToPlay
+Function next
+bool startTiming
+dynamic animateClock
+Widget yourChoiceTarget
+Widget otherChoiceTarget
+bool draggable
+int oponentChoice
+int userChoice
+DilemmaRound dilemmaRound
+dynamic listRounds
+dynamic userId
+int otherPlayerDelay
+int waitDelay
+dynamic toggleYourPoints()
+dynamic toggleOtherPoints()
+dynamic onDragCard()
+dynamic computeChoice()
+dynamic showResult()
+dynamic nextRound()
+dynamic timeOut()
+dynamic sendDataToDatabase()
+dynamic showGraphic()
+dynamic onEndCardAnimation()
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_PrisonerDilemmaTutorialBase" o-- "teoria_dos_jogos::prisoners_dilemma::classes::dilemmaVariables.dart::DilemmaVariables"
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_PrisonerDilemmaTutorialBase" o-- "audioplayers::audio_cache.dart::AudioCache"
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_PrisonerDilemmaTutorialBase" o-- "flutter::src::widgets::framework.dart::Widget"
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_PrisonerDilemmaTutorialBase" o-- "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::DilemmaRound"
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_PrisonerDilemmaTutorialBase"
abstract class "teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_$PrisonerDilemmaTutorial" {
-dynamic _$startTimingAtom
-dynamic _$animateClockAtom
-dynamic _$yourChoiceTargetAtom
-dynamic _$otherChoiceTargetAtom
-dynamic _$draggableAtom
-dynamic _$oponentChoiceAtom
-dynamic _$userChoiceAtom
-dynamic _$dilemmaRoundAtom
-dynamic _$otherPlayerDelayAtom
-dynamic _$waitDelayAtom
-AsyncAction _$computeChoiceAsyncAction
-AsyncAction _$sendDataToDatabaseAsyncAction
-ActionController _$_PrisonerDilemmaTutorialBaseActionController
+bool startTiming
+dynamic animateClock
+Widget yourChoiceTarget
+Widget otherChoiceTarget
+bool draggable
+int oponentChoice
+int userChoice
+DilemmaRound dilemmaRound
+int otherPlayerDelay
+int waitDelay
+dynamic computeChoice()
+dynamic sendDataToDatabase()
+dynamic toggleYourPoints()
+dynamic toggleOtherPoints()
+dynamic onDragCard()
+dynamic showResult()
+dynamic nextRound()
+dynamic timeOut()
+dynamic showGraphic()
+dynamic onEndCardAnimation()
+dynamic toString()
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_$PrisonerDilemmaTutorial" o-- "mobx::src::api::async.dart::AsyncAction"
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_$PrisonerDilemmaTutorial" o-- "mobx::src::core.dart::ActionController"
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_$PrisonerDilemmaTutorial" o-- "flutter::src::widgets::framework.dart::Widget"
"teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::_$PrisonerDilemmaTutorial" o-- "teoria_dos_jogos::prisoners_dilemma::store::dilemmaround_store.dart::DilemmaRound"
class "teoria_dos_jogos::prisoners_dilemma::tutorial::gameExample.dart::DilemmaGameTutorial" {
+DilemmaVariables variables
+dynamic txtOtherChoice
+dynamic txtYourChoice
+bool draggable
+Function next
+_DilemmaGameTutorialState createState()
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::gameExample.dart::DilemmaGameTutorial" o-- "teoria_dos_jogos::prisoners_dilemma::classes::dilemmaVariables.dart::DilemmaVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::gameExample.dart::DilemmaGameTutorial"
class "teoria_dos_jogos::prisoners_dilemma::tutorial::gameExample.dart::_DilemmaGameTutorialState" {
+PrisonerDilemmaTutorial game
+bool hideVariables
+void initState()
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::gameExample.dart::_DilemmaGameTutorialState" o-- "teoria_dos_jogos::prisoners_dilemma::tutorial::dilemma_tutorial_store.dart::PrisonerDilemmaTutorial"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::gameExample.dart::_DilemmaGameTutorialState"
class "teoria_dos_jogos::prisoners_dilemma::tutorial::instruction.dart::Instruction" {
+dynamic txtInstruction
+Alignment alignment
+EdgeInsetsGeometry padding
+Color backgroundColor
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::instruction.dart::Instruction" o-- "flutter::src::painting::alignment.dart::Alignment"
"teoria_dos_jogos::prisoners_dilemma::tutorial::instruction.dart::Instruction" o-- "flutter::src::painting::edge_insets.dart::EdgeInsetsGeometry"
"teoria_dos_jogos::prisoners_dilemma::tutorial::instruction.dart::Instruction" o-- "dart::ui::Color"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::instruction.dart::Instruction"
class "teoria_dos_jogos::prisoners_dilemma::tutorial::matrixExample.dart::MatrixExample" {
+Widget build()
}
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::matrixExample.dart::MatrixExample"
class "teoria_dos_jogos::prisoners_dilemma::tutorial::matrixExample.dart::MatrixCase" {
+Color you
+Color other
+dynamic result
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::matrixExample.dart::MatrixCase" o-- "dart::ui::Color"
class "teoria_dos_jogos::prisoners_dilemma::tutorial::resultExample.dart::DilemmaResultExample" {
+dynamic yourChoice
+dynamic otherChoice
+dynamic result
+Color your
+Color other
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::resultExample.dart::DilemmaResultExample" o-- "dart::ui::Color"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::resultExample.dart::DilemmaResultExample"
class "teoria_dos_jogos::prisoners_dilemma::tutorial::tutorialList.dart::InterfaceAndText" {
+int textIndex
+int interfaceIndex
+bool enableNext
}
class "teoria_dos_jogos::prisoners_dilemma::tutorial::tutorialList.dart::WidgetsList" {
{static} +dynamic orderInterfaceAndText()
{static} +dynamic backWidgets()
{static} +dynamic instructions()
}
class "teoria_dos_jogos::prisoners_dilemma::tutorial::whiteBackground.dart::WhiteBackgroundText" {
+dynamic txt
+double fontScale
+FontWeight fontWeight
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::tutorial::whiteBackground.dart::WhiteBackgroundText" o-- "dart::ui::FontWeight"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::tutorial::whiteBackground.dart::WhiteBackgroundText"
class "teoria_dos_jogos::prisoners_dilemma::widgets::animatedCard.dart::AnimatedCard" {
+Color color
+Function onEnd
+Offset offset
+_AnimatedCardState createState()
}
"teoria_dos_jogos::prisoners_dilemma::widgets::animatedCard.dart::AnimatedCard" o-- "dart::ui::Color"
"teoria_dos_jogos::prisoners_dilemma::widgets::animatedCard.dart::AnimatedCard" o-- "dart::ui::Offset"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::animatedCard.dart::AnimatedCard"
class "teoria_dos_jogos::prisoners_dilemma::widgets::animatedCard.dart::_AnimatedCardState" {
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::animatedCard.dart::_AnimatedCardState"
class "teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::AnimatedResult" {
+Offset offset
+Color color1
+Color color2
+int value1
+int value2
+double p
+_AnimatedResultState createState()
}
"teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::AnimatedResult" o-- "dart::ui::Offset"
"teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::AnimatedResult" o-- "dart::ui::Color"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::AnimatedResult"
class "teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::_AnimatedResultState" {
+AnimationController controller
+Tween<Offset> animationLocation
+Tween<double> animationScale
+bool showLabel
+double begin
+double targetValue
+double end
+void initState()
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::_AnimatedResultState" o-- "flutter::src::animation::animation_controller.dart::AnimationController"
"teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::_AnimatedResultState" o-- "flutter::src::animation::tween.dart::Tween<Offset>"
"teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::_AnimatedResultState" o-- "flutter::src::animation::tween.dart::Tween<double>"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::_AnimatedResultState"
"flutter::src::widgets::ticker_provider.dart::TickerProviderStateMixin<T>" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::animatedResult.dart::_AnimatedResultState"
class "teoria_dos_jogos::prisoners_dilemma::widgets::dilemmaCard.dart::DilemmaCard" {
+Color color
+Color borderColor
+double proportion
+dynamic txt
+dynamic txtTitle
+double fontScale
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::widgets::dilemmaCard.dart::DilemmaCard" o-- "dart::ui::Color"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::dilemmaCard.dart::DilemmaCard"
class "teoria_dos_jogos::prisoners_dilemma::widgets::draggableCard.dart::DraggableCard" {
+Color color
+bool draggable
+Widget build()
}
"teoria_dos_jogos::prisoners_dilemma::widgets::draggableCard.dart::DraggableCard" o-- "dart::ui::Color"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::draggableCard.dart::DraggableCard"
class "teoria_dos_jogos::prisoners_dilemma::widgets::graphic.dart::Graphic" {
+List<FlSpot> cooperate
+List<FlSpot> defect
+_GraphicState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::graphic.dart::Graphic"
class "teoria_dos_jogos::prisoners_dilemma::widgets::graphic.dart::_GraphicState" {
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::graphic.dart::_GraphicState"
class "teoria_dos_jogos::prisoners_dilemma::widgets::resultsMatrix.dart::ResultsMatrix" {
+double p
+bool animate
+dynamic result
+DilemmaVariables variables
+_ResultsMatrixState createState()
}
"teoria_dos_jogos::prisoners_dilemma::widgets::resultsMatrix.dart::ResultsMatrix" o-- "teoria_dos_jogos::prisoners_dilemma::classes::dilemmaVariables.dart::DilemmaVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::resultsMatrix.dart::ResultsMatrix"
class "teoria_dos_jogos::prisoners_dilemma::widgets::resultsMatrix.dart::_ResultsMatrixState" {
+double opacity
+double opInvisible
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::prisoners_dilemma::widgets::resultsMatrix.dart::_ResultsMatrixState"
class "teoria_dos_jogos::public_goods::classes::conditions.dart::Conditions" {
+dynamic context
+List<int> rounds
+bool distribution
+bool electionEnabled
+Function setDistributionTrue
+Function callElection
+Function nextRound
+Function nextLevel
+Function clearLists
+Function lostVote
+Function startSuspension
+Function getSuspensions
+Function electionCountUp
+Function distributionStableCountUp
+Function showGraphic
+PublicGoodsVariables variables
+List<RoundData> roundsData
+bool lostVoteThisRound
+bool suspended
+bool next
+bool endGame
+bool readyToElection
+dynamic checkStability()
+dynamic isStableToDistribution()
+dynamic checkLostVote()
+dynamic isReadyToElection()
+dynamic checkIntermitentElection()
+dynamic checkElection()
+dynamic endSuspension()
}
"teoria_dos_jogos::public_goods::classes::conditions.dart::Conditions" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
class "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables" {
+int id
+String key
+int maxTokens
+int time
+int factor
+int maxTrys
+int realPlayers
+int notRealPlayers
+String name
+String descri
+DateTime start
+DateTime end
+bool showRounds
+int timeDistribution
+int timeElection
+int contributionsVariation
+int distributionVariation
+int unfairDistribution
+int stable
+int limitVotes
+int waitingRounds
+int electionRule
+Map toJson()
{static} -int _stringToInt()
{static} -String _stringFromInt()
{static} -int _ruleToInt()
{static} -String _ruleFromInt()
{static} -bool _stringToBool()
{static} -String _stringFromBool()
{static} +bool parseBool()
{static} +int getRule()
+dynamic maxWalletValue()
}
class "teoria_dos_jogos::public_goods::pages::distributionTutorial.page.dart::DistributionTutorial" {
+PublicGoodsVariables goodsVariables
+Function nextRound
+PGTimeTutorial timeTutorial
+_DistributionTutorialState createState()
}
"teoria_dos_jogos::public_goods::pages::distributionTutorial.page.dart::DistributionTutorial" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"teoria_dos_jogos::public_goods::pages::distributionTutorial.page.dart::DistributionTutorial" o-- "teoria_dos_jogos::classes::time_taken_tutorial_pg.dart::PGTimeTutorial"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::pages::distributionTutorial.page.dart::DistributionTutorial"
class "teoria_dos_jogos::public_goods::pages::distributionTutorial.page.dart::_DistributionTutorialState" {
+int i
+List<Widget> interfaces
+List<Widget> instructions
+List<InterfaceAndText> exibitionOrder
+DateTime startTutorial
+void initState()
+void dispose()
+dynamic next()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::pages::distributionTutorial.page.dart::_DistributionTutorialState"
class "teoria_dos_jogos::public_goods::pages::electionTutorial.page.dart::ElectionTutorial" {
+PublicGoodsVariables goodsVariables
+Function callElection
+PGTimeTutorial timeTutorial
+_ElectionTutorialState createState()
}
"teoria_dos_jogos::public_goods::pages::electionTutorial.page.dart::ElectionTutorial" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"teoria_dos_jogos::public_goods::pages::electionTutorial.page.dart::ElectionTutorial" o-- "teoria_dos_jogos::classes::time_taken_tutorial_pg.dart::PGTimeTutorial"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::pages::electionTutorial.page.dart::ElectionTutorial"
class "teoria_dos_jogos::public_goods::pages::electionTutorial.page.dart::_ElectionTutorialState" {
+int i
+List<Widget> interfaces
+List<Widget> instructions
+List<InterfaceAndText> exibitionOrder
+DateTime startTutorial
+void initState()
+void dispose()
+dynamic next()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::pages::electionTutorial.page.dart::_ElectionTutorialState"
class "teoria_dos_jogos::public_goods::pages::game.page.dart::GamePage" {
+User user
+PublicGoodsVariables variables
+PGTimeTutorial timeTutorial
+_GamePageState createState()
}
"teoria_dos_jogos::public_goods::pages::game.page.dart::GamePage" o-- "teoria_dos_jogos::classes::user.dart::User"
"teoria_dos_jogos::public_goods::pages::game.page.dart::GamePage" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"teoria_dos_jogos::public_goods::pages::game.page.dart::GamePage" o-- "teoria_dos_jogos::classes::time_taken_tutorial_pg.dart::PGTimeTutorial"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::pages::game.page.dart::GamePage"
class "teoria_dos_jogos::public_goods::pages::game.page.dart::_GamePageState" {
+bool start
+Game game
+void initState()
+void dispose()
+Widget build()
}
"teoria_dos_jogos::public_goods::pages::game.page.dart::_GamePageState" o-- "teoria_dos_jogos::public_goods::store::game_store.dart::Game"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::pages::game.page.dart::_GamePageState"
class "teoria_dos_jogos::public_goods::pages::Graphic.page.dart::GraphicPagePG" {
+List<RoundData> gameRounds
+PublicGoodsVariables variables
+_GraphicPagePGState createState()
}
"teoria_dos_jogos::public_goods::pages::Graphic.page.dart::GraphicPagePG" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::pages::Graphic.page.dart::GraphicPagePG"
class "teoria_dos_jogos::public_goods::pages::Graphic.page.dart::_GraphicPagePGState" {
-GlobalKey<State<StatefulWidget>> _globalKey
+bool inside
+Uint8List imageInMemory
+Image img
-Future _capturePng()
+void initState()
+void dispose()
+Widget build()
}
"teoria_dos_jogos::public_goods::pages::Graphic.page.dart::_GraphicPagePGState" o-- "flutter::src::widgets::framework.dart::GlobalKey<State<StatefulWidget>>"
"teoria_dos_jogos::public_goods::pages::Graphic.page.dart::_GraphicPagePGState" o-- "dart::typed_data::Uint8List"
"teoria_dos_jogos::public_goods::pages::Graphic.page.dart::_GraphicPagePGState" o-- "flutter::src::widgets::image.dart::Image"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::pages::Graphic.page.dart::_GraphicPagePGState"
class "teoria_dos_jogos::public_goods::pages::Graphic.page.dart::ResultPubliGoods" {
{static} +dynamic f1Spots()
}
class "teoria_dos_jogos::public_goods::pages::PublicGoodsTutorial.page.dart::PublicGoodsTutorialPage" {
+User user
+PublicGoodsVariables goodsVariables
+_PublicGoodsTutorialPageState createState()
}
"teoria_dos_jogos::public_goods::pages::PublicGoodsTutorial.page.dart::PublicGoodsTutorialPage" o-- "teoria_dos_jogos::classes::user.dart::User"
"teoria_dos_jogos::public_goods::pages::PublicGoodsTutorial.page.dart::PublicGoodsTutorialPage" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::pages::PublicGoodsTutorial.page.dart::PublicGoodsTutorialPage"
class "teoria_dos_jogos::public_goods::pages::PublicGoodsTutorial.page.dart::_PublicGoodsTutorialPageState" {
+PGTimeTutorial timeTutorial
+DateTime startTutorial
+List<InterfaceAndText> indexList
+int i
+List<Widget> instructions
+bool btnIsVisible
+bool toCenter
+bool showCoins
+bool clicked
+dynamic multipleCoinsEnd()
+dynamic instructionDelay()
+void initState()
+void dispose()
+Widget build()
}
"teoria_dos_jogos::public_goods::pages::PublicGoodsTutorial.page.dart::_PublicGoodsTutorialPageState" o-- "teoria_dos_jogos::classes::time_taken_tutorial_pg.dart::PGTimeTutorial"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::pages::PublicGoodsTutorial.page.dart::_PublicGoodsTutorialPageState"
class "teoria_dos_jogos::public_goods::store::distribution_store.dart::DistributionStore" {
}
"teoria_dos_jogos::public_goods::store::distribution_store.dart::_DistributionStoreBase" <|-- "teoria_dos_jogos::public_goods::store::distribution_store.dart::DistributionStore"
"teoria_dos_jogos::public_goods::store::distribution_store.dart::_$DistributionStore" <|-- "teoria_dos_jogos::public_goods::store::distribution_store.dart::DistributionStore"
abstract class "teoria_dos_jogos::public_goods::store::distribution_store.dart::_DistributionStoreBase" {
+int rib
+Function distributionTime
+dynamic displayDistributionScreen()
}
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::public_goods::store::distribution_store.dart::_DistributionStoreBase"
abstract class "teoria_dos_jogos::public_goods::store::distribution_store.dart::_$DistributionStore" {
+dynamic toString()
}
class "teoria_dos_jogos::public_goods::store::election_store.dart::ElectionStore" {
}
"teoria_dos_jogos::public_goods::store::election_store.dart::_ElectionStoreBase" <|-- "teoria_dos_jogos::public_goods::store::election_store.dart::ElectionStore"
"teoria_dos_jogos::public_goods::store::election_store.dart::_$ElectionStore" <|-- "teoria_dos_jogos::public_goods::store::election_store.dart::ElectionStore"
abstract class "teoria_dos_jogos::public_goods::store::election_store.dart::_ElectionStoreBase" {
+int electionId
+Function electionTime
+Function updateVotes
+Function showGraphic
+RoundData roundData
+Function startSuspension
+PublicGoodsVariables variables
+dynamic rounds
+dynamic context
+dynamic displayElectionScreen()
+dynamic concludeElection()
}
"teoria_dos_jogos::public_goods::store::election_store.dart::_ElectionStoreBase" o-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
"teoria_dos_jogos::public_goods::store::election_store.dart::_ElectionStoreBase" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::public_goods::store::election_store.dart::_ElectionStoreBase"
abstract class "teoria_dos_jogos::public_goods::store::election_store.dart::_$ElectionStore" {
+dynamic toString()
}
class "teoria_dos_jogos::public_goods::store::game_store.dart::Game" {
}
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" <|-- "teoria_dos_jogos::public_goods::store::game_store.dart::Game"
"teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" <|-- "teoria_dos_jogos::public_goods::store::game_store.dart::Game"
abstract class "teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" {
+PublicGoodsVariables variables
+bool armazenarBD
+User user
+PGTimeTutorial timeTutorial
+AudioCache audioCache
+bool lastToPlay
+bool pagePopped
+dynamic context
+dynamic rounds
+dynamic contributions
+dynamic distributions
+GlobalKey<FlipCardState> cardKey
+FlareControls flareControls
+bool startTiming
+bool showPanelTokens
+dynamic coinsAnimation
+Function coinsEnd
+dynamic animateClock
+ObservableList<int> tokensList
+RoundData roundData
+RunningNumbers tokensCount
+RunningNumbers walletCount
+RunningNumbers pigCount
+int plasyersLostTime
+dynamic registerRoundData()
+dynamic clearLists()
+dynamic showGraphic()
+dynamic sendDataToDatabase()
+dynamic callElections()
+dynamic onDispose()
+dynamic endRunningNumbers()
+dynamic nextRound()
+dynamic nextLevel()
+dynamic onDragToken()
+dynamic resultWhenPlayed()
+dynamic concludeDistribution()
+dynamic timeOut()
+dynamic callPlayersDelay()
+dynamic onCoinsEndAnimation()
+dynamic endCoinsToPig()
+dynamic remainingTokensToPig()
+dynamic endCountEarningTokens()
+dynamic showCoins()
+dynamic pulseTheClock()
+dynamic blinkPanel()
}
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "teoria_dos_jogos::classes::user.dart::User"
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "teoria_dos_jogos::classes::time_taken_tutorial_pg.dart::PGTimeTutorial"
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "audioplayers::audio_cache.dart::AudioCache"
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "flutter::src::widgets::framework.dart::GlobalKey<FlipCardState>"
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "flare_flutter::flare_controls.dart::FlareControls"
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "mobx::src::api::observable_collections.dart::ObservableList<int>"
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
"teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase" o-- "teoria_dos_jogos::public_goods::store::runningNumbers.dart::RunningNumbers"
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::public_goods::store::game_store.dart::_GameBase"
abstract class "teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" {
-dynamic _$cardKeyAtom
-dynamic _$flareControlsAtom
-dynamic _$startTimingAtom
-dynamic _$showPanelTokensAtom
-dynamic _$coinsAnimationAtom
-dynamic _$coinsEndAtom
-dynamic _$animateClockAtom
-dynamic _$tokensListAtom
-dynamic _$roundDataAtom
-dynamic _$tokensCountAtom
-dynamic _$walletCountAtom
-dynamic _$pigCountAtom
-AsyncAction _$onCoinsEndAnimationAsyncAction
-ActionController _$_GameBaseActionController
+GlobalKey<FlipCardState> cardKey
+FlareControls flareControls
+bool startTiming
+bool showPanelTokens
+dynamic coinsAnimation
+Function coinsEnd
+dynamic animateClock
+ObservableList<int> tokensList
+RoundData roundData
+RunningNumbers tokensCount
+RunningNumbers walletCount
+RunningNumbers pigCount
+dynamic onCoinsEndAnimation()
+dynamic callElections()
+dynamic onDispose()
+dynamic endRunningNumbers()
+dynamic nextRound()
+dynamic nextLevel()
+dynamic onDragToken()
+dynamic resultWhenPlayed()
+dynamic concludeDistribution()
+dynamic timeOut()
+dynamic callPlayersDelay()
+dynamic endCoinsToPig()
+dynamic remainingTokensToPig()
+dynamic endCountEarningTokens()
+dynamic showCoins()
+dynamic pulseTheClock()
+dynamic blinkPanel()
+dynamic toString()
}
"teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" o-- "mobx::src::api::async.dart::AsyncAction"
"teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" o-- "mobx::src::core.dart::ActionController"
"teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" o-- "flutter::src::widgets::framework.dart::GlobalKey<FlipCardState>"
"teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" o-- "flare_flutter::flare_controls.dart::FlareControls"
"teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" o-- "mobx::src::api::observable_collections.dart::ObservableList<int>"
"teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" o-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
"teoria_dos_jogos::public_goods::store::game_store.dart::_$Game" o-- "teoria_dos_jogos::public_goods::store::runningNumbers.dart::RunningNumbers"
class "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData" {
}
"teoria_dos_jogos::public_goods::store::round_data_store.dart::_RoundDataBase" <|-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
"teoria_dos_jogos::public_goods::store::round_data_store.dart::_$RoundData" <|-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
abstract class "teoria_dos_jogos::public_goods::store::round_data_store.dart::_RoundDataBase" {
+PGTimeRound timeRound
+bool distribution
+bool election
+int electionId
+int votes
+int suspentions
+int votesScreen
+int electionCount
+int distributionStable
+int distributionStableAfterSecondElection
+bool suspended
+int round
+int id
+int userTokens
+int wallet
+int positionToken
+int investment
+int total
+int rib
+int earning
+int playersPlay
+int roundPoints
+dynamic playersInvestiment
+dynamic playersEarning
+dynamic printData()
+dynamic setDistributionTrue()
+int lostVote()
+dynamic updateVotes()
+dynamic endSuspension()
+dynamic startSuspension()
+bool electionCountUp()
+bool distributionStableCountUp()
+dynamic distributeRib()
+dynamic calculateRib()
+dynamic generateRound()
+dynamic getPoints()
+int getSuspensions()
+dynamic updateWallet()
+dynamic generateRoundWhenLostTime()
+dynamic definePlayersDelay()
}
"teoria_dos_jogos::public_goods::store::round_data_store.dart::_RoundDataBase" o-- "teoria_dos_jogos::classes::time_taken_round_pg.dart::PGTimeRound"
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::_RoundDataBase"
abstract class "teoria_dos_jogos::public_goods::store::round_data_store.dart::_$RoundData" {
-dynamic _$votesScreenAtom
-dynamic _$suspendedAtom
-dynamic _$roundAtom
-dynamic _$userTokensAtom
-dynamic _$walletAtom
-dynamic _$earningAtom
-dynamic _$playersPlayAtom
-ActionController _$_RoundDataBaseActionController
+int votesScreen
+bool suspended
+int round
+int userTokens
+int wallet
+int earning
+int playersPlay
+dynamic updateVotes()
+dynamic endSuspension()
+dynamic startSuspension()
+String toString()
}
"teoria_dos_jogos::public_goods::store::round_data_store.dart::_$RoundData" o-- "mobx::src::core.dart::ActionController"
class "teoria_dos_jogos::public_goods::store::runningNumbers.dart::RunningNumbers" {
}
"teoria_dos_jogos::public_goods::store::runningNumbers.dart::_RunningNumbersBase" <|-- "teoria_dos_jogos::public_goods::store::runningNumbers.dart::RunningNumbers"
"teoria_dos_jogos::public_goods::store::runningNumbers.dart::_$RunningNumbers" <|-- "teoria_dos_jogos::public_goods::store::runningNumbers.dart::RunningNumbers"
abstract class "teoria_dos_jogos::public_goods::store::runningNumbers.dart::_RunningNumbersBase" {
+bool start
+bool down
+int inicial
+int diference
+int factor
+dynamic startCountUp()
+dynamic startCountDown()
+dynamic stop()
+dynamic setValues()
}
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::public_goods::store::runningNumbers.dart::_RunningNumbersBase"
abstract class "teoria_dos_jogos::public_goods::store::runningNumbers.dart::_$RunningNumbers" {
-dynamic _$startAtom
-dynamic _$downAtom
-dynamic _$inicialAtom
-dynamic _$diferenceAtom
-dynamic _$factorAtom
-ActionController _$_RunningNumbersBaseActionController
+bool start
+bool down
+int inicial
+int diference
+int factor
+dynamic startCountUp()
+dynamic startCountDown()
+dynamic stop()
+dynamic setValues()
+String toString()
}
"teoria_dos_jogos::public_goods::store::runningNumbers.dart::_$RunningNumbers" o-- "mobx::src::core.dart::ActionController"
class "teoria_dos_jogos::public_goods::tutorial::circleIndex.dart::CircleIndex" {
+bool current
+_CircleIndexState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::circleIndex.dart::CircleIndex"
class "teoria_dos_jogos::public_goods::tutorial::circleIndex.dart::_CircleIndexState" {
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial::circleIndex.dart::_CircleIndexState"
class "teoria_dos_jogos::public_goods::tutorial::circlePeople.dart::CirclePeople" {
+bool show
+Function multipleCoinsEnd
+bool toCenter
+PublicGoodsVariables variables
+_CirclePeopleState createState()
}
"teoria_dos_jogos::public_goods::tutorial::circlePeople.dart::CirclePeople" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::circlePeople.dart::CirclePeople"
class "teoria_dos_jogos::public_goods::tutorial::circlePeople.dart::_CirclePeopleState" {
+RoundData roundData
+GlobalKey<FlipCardState> cardKey
+dynamic coinsToCenter()
+dynamic coinsOutCenter()
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::circlePeople.dart::_CirclePeopleState" o-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
"teoria_dos_jogos::public_goods::tutorial::circlePeople.dart::_CirclePeopleState" o-- "flutter::src::widgets::framework.dart::GlobalKey<FlipCardState>"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial::circlePeople.dart::_CirclePeopleState"
class "teoria_dos_jogos::public_goods::tutorial::coinsAround.dart::CoinsAround" {
+double screenHeight
+Function coinsEndAnimation
+Function coinsToCenter
+Function coinsOutCenter
+bool toCenter
+Widget build()
}
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::coinsAround.dart::CoinsAround"
class "teoria_dos_jogos::public_goods::tutorial::instructionArrowContainer.dart::InstructionArrow" {
+dynamic instructiontxt
+double top
+double left
+double right
+double bottom
+bool column
+IconData icon
+double width
+Alignment alignment
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::instructionArrowContainer.dart::InstructionArrow" o-- "flutter::src::widgets::icon_data.dart::IconData"
"teoria_dos_jogos::public_goods::tutorial::instructionArrowContainer.dart::InstructionArrow" o-- "flutter::src::painting::alignment.dart::Alignment"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::instructionArrowContainer.dart::InstructionArrow"
class "teoria_dos_jogos::public_goods::tutorial::instructionContainer.dart::Instruction" {
+dynamic instructiontxt
+bool column
+IconData icon
+double width
+Alignment alignment
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::instructionContainer.dart::Instruction" o-- "flutter::src::widgets::icon_data.dart::IconData"
"teoria_dos_jogos::public_goods::tutorial::instructionContainer.dart::Instruction" o-- "flutter::src::painting::alignment.dart::Alignment"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::instructionContainer.dart::Instruction"
class "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterface.dart::PublicGoodsTutorial" {
+Function function
+PublicGoodsVariables variables
+bool tutorialDistElection
+_PublicGoodsTutorialState createState()
}
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterface.dart::PublicGoodsTutorial" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterface.dart::PublicGoodsTutorial"
class "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterface.dart::_PublicGoodsTutorialState" {
+GlobalKey<FlipCardState> cardKey
+List<int> chipsList
+bool showCoins
+bool isDraggable
+AudioCache audioCache
+RoundData roundData
+bool showRoundPoints
+dynamic timerString
+void initState()
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterface.dart::_PublicGoodsTutorialState" o-- "flutter::src::widgets::framework.dart::GlobalKey<FlipCardState>"
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterface.dart::_PublicGoodsTutorialState" o-- "audioplayers::audio_cache.dart::AudioCache"
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterface.dart::_PublicGoodsTutorialState" o-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterface.dart::_PublicGoodsTutorialState"
class "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceCircle.dart::PublicGoodsCircle" {
+PublicGoodsVariables variables
+_PublicGoodsCircleState createState()
}
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceCircle.dart::PublicGoodsCircle" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceCircle.dart::PublicGoodsCircle"
class "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceCircle.dart::_PublicGoodsCircleState" {
+GlobalKey<FlipCardState> cardKey
+List<int> chipsList
+bool showCoins
+bool isDraggable
+dynamic timerString
+void initState()
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceCircle.dart::_PublicGoodsCircleState" o-- "flutter::src::widgets::framework.dart::GlobalKey<FlipCardState>"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceCircle.dart::_PublicGoodsCircleState"
class "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceTimer.dart::PublicGoodsTimer" {
+PublicGoodsVariables variables
+_PublicGoodsTimerState createState()
}
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceTimer.dart::PublicGoodsTimer" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceTimer.dart::PublicGoodsTimer"
class "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceTimer.dart::_PublicGoodsTimerState" {
+GlobalKey<FlipCardState> cardKey
+List<int> chipsList
+bool showCoins
+bool isDraggable
+dynamic animationClock
+bool startTiming
+AudioCache audioCache
+void initState()
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceTimer.dart::_PublicGoodsTimerState" o-- "flutter::src::widgets::framework.dart::GlobalKey<FlipCardState>"
"teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceTimer.dart::_PublicGoodsTimerState" o-- "audioplayers::audio_cache.dart::AudioCache"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial::publicGoodsInterfaceTimer.dart::_PublicGoodsTimerState"
class "teoria_dos_jogos::public_goods::tutorial::rectInstruction.dart::InstructionRect" {
+dynamic instructiontxt
+Alignment alignment
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::rectInstruction.dart::InstructionRect" o-- "flutter::src::painting::alignment.dart::Alignment"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::rectInstruction.dart::InstructionRect"
class "teoria_dos_jogos::public_goods::tutorial::rectInstruction.dart::PainterLines" {
+double top
+double left
+double stroke
+void paint()
+bool shouldRepaint()
}
"flutter::src::rendering::custom_paint.dart::CustomPainter" <|-- "teoria_dos_jogos::public_goods::tutorial::rectInstruction.dart::PainterLines"
class "teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::TutorialGameStore" {
}
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" <|-- "teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::TutorialGameStore"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" <|-- "teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::TutorialGameStore"
abstract class "teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" {
+PublicGoodsVariables variables
+Function tutorialNext
+AudioCache audioCache
+bool lastToPlay
+dynamic context
+dynamic rounds
+dynamic contributions
+dynamic distributions
+GlobalKey<FlipCardState> cardKey
+FlareControls flareControls
+bool startTiming
+bool showPanelTokens
+dynamic coinsAnimation
+dynamic animateClock
+ObservableList<int> tokensList
+RoundData roundData
+RunningNumbers tokensCount
+RunningNumbers walletCount
+RunningNumbers pigCount
+Function coinsEnd
+dynamic registerRoundData()
+dynamic clearLists()
+dynamic showGraphic()
+dynamic nextLevel()
+dynamic callElections()
+dynamic onDispose()
+dynamic endRunningNumbers()
+dynamic nextRound()
+dynamic onDragToken()
+dynamic resultWhenPlayed()
+dynamic concludeDistribution()
+dynamic timeOut()
+dynamic callPlayersDelay()
+dynamic onCoinsEndAnimation()
+dynamic endCoinsToPig()
+dynamic remainingTokensToPig()
+dynamic endCountEarningTokens()
+dynamic showCoins()
+dynamic pulseTheClock()
+dynamic blinkPanel()
}
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" o-- "audioplayers::audio_cache.dart::AudioCache"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" o-- "flutter::src::widgets::framework.dart::GlobalKey<FlipCardState>"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" o-- "flare_flutter::flare_controls.dart::FlareControls"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" o-- "mobx::src::api::observable_collections.dart::ObservableList<int>"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" o-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase" o-- "teoria_dos_jogos::public_goods::store::runningNumbers.dart::RunningNumbers"
"mobx::src::api::store.dart::Store" <|-- "teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_TutorialGameStoreBase"
abstract class "teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" {
-dynamic _$cardKeyAtom
-dynamic _$flareControlsAtom
-dynamic _$startTimingAtom
-dynamic _$showPanelTokensAtom
-dynamic _$coinsAnimationAtom
-dynamic _$animateClockAtom
-dynamic _$tokensListAtom
-dynamic _$roundDataAtom
-dynamic _$tokensCountAtom
-dynamic _$walletCountAtom
-dynamic _$pigCountAtom
-dynamic _$coinsEndAtom
-AsyncAction _$onCoinsEndAnimationAsyncAction
-ActionController _$_TutorialGameStoreBaseActionController
+GlobalKey<FlipCardState> cardKey
+FlareControls flareControls
+bool startTiming
+bool showPanelTokens
+dynamic coinsAnimation
+dynamic animateClock
+ObservableList<int> tokensList
+RoundData roundData
+RunningNumbers tokensCount
+RunningNumbers walletCount
+RunningNumbers pigCount
+Function coinsEnd
+dynamic onCoinsEndAnimation()
+dynamic nextLevel()
+dynamic callElections()
+dynamic onDispose()
+dynamic endRunningNumbers()
+dynamic nextRound()
+dynamic onDragToken()
+dynamic resultWhenPlayed()
+dynamic concludeDistribution()
+dynamic timeOut()
+dynamic callPlayersDelay()
+dynamic endCoinsToPig()
+dynamic remainingTokensToPig()
+dynamic endCountEarningTokens()
+dynamic showCoins()
+dynamic pulseTheClock()
+dynamic blinkPanel()
+dynamic toString()
}
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" o-- "mobx::src::api::async.dart::AsyncAction"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" o-- "mobx::src::core.dart::ActionController"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" o-- "flutter::src::widgets::framework.dart::GlobalKey<FlipCardState>"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" o-- "flare_flutter::flare_controls.dart::FlareControls"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" o-- "mobx::src::api::observable_collections.dart::ObservableList<int>"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" o-- "teoria_dos_jogos::public_goods::store::round_data_store.dart::RoundData"
"teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::_$TutorialGameStore" o-- "teoria_dos_jogos::public_goods::store::runningNumbers.dart::RunningNumbers"
class "teoria_dos_jogos::public_goods::tutorial::tutorialDesc.dart::PublicGoodsDesc" {
+dynamic text1
+dynamic text2
+Color text2Color
+dynamic redText
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::tutorialDesc.dart::PublicGoodsDesc" o-- "dart::ui::Color"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::tutorialDesc.dart::PublicGoodsDesc"
class "teoria_dos_jogos::public_goods::tutorial::tutorialGame.dart::TutorialGamePage" {
+Function next
+PublicGoodsVariables variables
+_TutorialGamePageState createState()
}
"teoria_dos_jogos::public_goods::tutorial::tutorialGame.dart::TutorialGamePage" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial::tutorialGame.dart::TutorialGamePage"
class "teoria_dos_jogos::public_goods::tutorial::tutorialGame.dart::_TutorialGamePageState" {
+TutorialGameStore game
+void initState()
+void dispose()
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial::tutorialGame.dart::_TutorialGamePageState" o-- "teoria_dos_jogos::public_goods::tutorial::store::pgtutorial_store.dart::TutorialGameStore"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial::tutorialGame.dart::_TutorialGamePageState"
class "teoria_dos_jogos::public_goods::tutorial::tutorialLists.dart::InterfaceAndText" {
+int textIndex
+int interfaceIndex
+bool enableNext
}
class "teoria_dos_jogos::public_goods::tutorial::tutorialLists.dart::TutorialList" {
{static} +dynamic orderInterfaceAndText()
{static} +dynamic backWidgets()
{static} +dynamic instructions()
}
class "teoria_dos_jogos::public_goods::tutorial_distribution::distributionExample.dart::DistributionExample" {
+PublicGoodsVariables goodsVariables
+Function next
+bool confirmEnabled
+_DistributionExampleState createState()
}
"teoria_dos_jogos::public_goods::tutorial_distribution::distributionExample.dart::DistributionExample" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial_distribution::distributionExample.dart::DistributionExample"
class "teoria_dos_jogos::public_goods::tutorial_distribution::distributionExample.dart::_DistributionExampleState" {
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial_distribution::distributionExample.dart::_DistributionExampleState"
class "teoria_dos_jogos::public_goods::tutorial_distribution::distributionSimulation.dart::DistributionSimulation" {
+User user
+PublicGoodsVariables variables
+Function next
+_DistributionSimulationState createState()
}
"teoria_dos_jogos::public_goods::tutorial_distribution::distributionSimulation.dart::DistributionSimulation" o-- "teoria_dos_jogos::classes::user.dart::User"
"teoria_dos_jogos::public_goods::tutorial_distribution::distributionSimulation.dart::DistributionSimulation" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial_distribution::distributionSimulation.dart::DistributionSimulation"
class "teoria_dos_jogos::public_goods::tutorial_distribution::distributionSimulation.dart::_DistributionSimulationState" {
+bool start
+Game game
+void initState()
+void dispose()
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial_distribution::distributionSimulation.dart::_DistributionSimulationState" o-- "teoria_dos_jogos::public_goods::store::game_store.dart::Game"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial_distribution::distributionSimulation.dart::_DistributionSimulationState"
class "teoria_dos_jogos::public_goods::tutorial_distribution::instruction.dart::Instruction" {
+dynamic txtInstruction
+Alignment alignment
+EdgeInsetsGeometry padding
+Color backgroundColor
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial_distribution::instruction.dart::Instruction" o-- "flutter::src::painting::alignment.dart::Alignment"
"teoria_dos_jogos::public_goods::tutorial_distribution::instruction.dart::Instruction" o-- "flutter::src::painting::edge_insets.dart::EdgeInsetsGeometry"
"teoria_dos_jogos::public_goods::tutorial_distribution::instruction.dart::Instruction" o-- "dart::ui::Color"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::tutorial_distribution::instruction.dart::Instruction"
class "teoria_dos_jogos::public_goods::tutorial_distribution::listWidgets.dart::InterfaceAndText" {
+int textIndex
+int interfaceIndex
+bool enableNext
}
class "teoria_dos_jogos::public_goods::tutorial_distribution::listWidgets.dart::TutorialLists" {
{static} +dynamic orderInterfaceAndText()
{static} +dynamic interfaces()
{static} +dynamic instructions()
}
class "teoria_dos_jogos::public_goods::tutorial_distribution::players_moneyBag.dart::PlayersRibRepresentation" {
+double value
+_PlayersRibRepresentationState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial_distribution::players_moneyBag.dart::PlayersRibRepresentation"
class "teoria_dos_jogos::public_goods::tutorial_distribution::players_moneyBag.dart::_PlayersRibRepresentationState" {
+List paths
+double targetValue
+double endPoint
+double startPoint
+double scale
+bool visible
+void initState()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial_distribution::players_moneyBag.dart::_PlayersRibRepresentationState"
class "teoria_dos_jogos::public_goods::tutorial_election::electionExample.dart::ElectionExample" {
+PublicGoodsVariables goodsVariables
+Function next
+_ElectionExampleState createState()
}
"teoria_dos_jogos::public_goods::tutorial_election::electionExample.dart::ElectionExample" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial_election::electionExample.dart::ElectionExample"
class "teoria_dos_jogos::public_goods::tutorial_election::electionExample.dart::_ElectionExampleState" {
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial_election::electionExample.dart::_ElectionExampleState"
class "teoria_dos_jogos::public_goods::tutorial_election::gameScreen.dart::GameScreen" {
+PublicGoodsVariables variables
+Function next
+bool draggable
+_GameScreenState createState()
}
"teoria_dos_jogos::public_goods::tutorial_election::gameScreen.dart::GameScreen" o-- "teoria_dos_jogos::public_goods::classes::publicGoodsVariables.dart::PublicGoodsVariables"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::tutorial_election::gameScreen.dart::GameScreen"
class "teoria_dos_jogos::public_goods::tutorial_election::gameScreen.dart::_GameScreenState" {
+bool start
+Game game
+void initState()
+void dispose()
+Widget build()
}
"teoria_dos_jogos::public_goods::tutorial_election::gameScreen.dart::_GameScreenState" o-- "teoria_dos_jogos::public_goods::store::game_store.dart::Game"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::tutorial_election::gameScreen.dart::_GameScreenState"
class "teoria_dos_jogos::public_goods::tutorial_election::listWidgets.dart::InterfaceAndText" {
+int textIndex
+int interfaceIndex
+bool enableNext
}
class "teoria_dos_jogos::public_goods::tutorial_election::listWidgets.dart::TutorialLists" {
{static} +dynamic orderInterfaceAndText()
{static} +dynamic interfaces()
{static} +dynamic instructions()
}
class "teoria_dos_jogos::public_goods::widgets::clock.dart::Clock" {
+dynamic animation
+double scale
-Future _warmupAnimations()
+Widget build()
}
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::widgets::clock.dart::Clock"
class "teoria_dos_jogos::public_goods::widgets::CountNumbers.dart::Count" {
+Function animationEnds
+bool down
+bool start
+int inicial
+int diference
+int factor
+double fontsize
+_CountState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::CountNumbers.dart::Count"
class "teoria_dos_jogos::public_goods::widgets::CountNumbers.dart::_CountState" {
+AnimationController controller
+int factor
+int mult
+dynamic timerString
+void initState()
+void dispose()
+Widget build()
}
"teoria_dos_jogos::public_goods::widgets::CountNumbers.dart::_CountState" o-- "flutter::src::animation::animation_controller.dart::AnimationController"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::CountNumbers.dart::_CountState"
"flutter::src::widgets::ticker_provider.dart::TickerProviderStateMixin<T>" <|-- "teoria_dos_jogos::public_goods::widgets::CountNumbers.dart::_CountState"
class "teoria_dos_jogos::public_goods::widgets::election.dart::ElectionPopUp" {
+int pId
+int players
+int time
+Function computeVote
+Function nextRound
+bool tutorial
+Function electionTime
+_ElectionPopUpState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::election.dart::ElectionPopUp"
class "teoria_dos_jogos::public_goods::widgets::election.dart::_ElectionPopUpState" {
+List<Vote> listCandidates
+dynamic animation
+bool timing
+int index
+DateTime start
+void initState()
+void dispose()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::election.dart::_ElectionPopUpState"
class "teoria_dos_jogos::public_goods::widgets::election.dart::Vote" {
+int id
+bool vote
}
class "teoria_dos_jogos::public_goods::widgets::electionAnimation.dart::ElectionAnimation" {
+double value
+double fontSize
+dynamic onEndAnimation
+_ElectionAnimationState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::electionAnimation.dart::ElectionAnimation"
class "teoria_dos_jogos::public_goods::widgets::electionAnimation.dart::_ElectionAnimationState" {
+double targetValue
+double endPoint
+double startPoint
+int delay
+void initState()
+dynamic startAnimation()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::electionAnimation.dart::_ElectionAnimationState"
class "teoria_dos_jogos::public_goods::widgets::graphicDoubleYAxis.dart::GraphicDoubleY" {
+List<FlSpot> f1
+List<FlSpot> f2
+Color colors1
+Color colors2
+dynamic title1
+dynamic title2
+double maxChips
+double maxRounds
+double maxWallet
+double gWidth
+double fontSize
+double subtitleSquad
+Widget build()
}
"teoria_dos_jogos::public_goods::widgets::graphicDoubleYAxis.dart::GraphicDoubleY" o-- "dart::ui::Color"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::widgets::graphicDoubleYAxis.dart::GraphicDoubleY"
class "teoria_dos_jogos::public_goods::widgets::moneyDistribution.dart::MoneyDistribution" {
+int total
+int players
+int time
+Function distribute
+bool tutorial
+bool btnEnabled
+Function distributionTime
+_MoneyDistributionState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::moneyDistribution.dart::MoneyDistribution"
class "teoria_dos_jogos::public_goods::widgets::moneyDistribution.dart::_MoneyDistributionState" {
+double userEarning
+dynamic animation
+bool timing
+bool handVisible
+DateTime start
+void initState()
+void dispose()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::moneyDistribution.dart::_MoneyDistributionState"
class "teoria_dos_jogos::public_goods::widgets::nextAnimation.dart::NextAnimation" {
+double value
+dynamic message
+double fontSize
+dynamic onEndAnimation
+_NextAnimationState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::nextAnimation.dart::NextAnimation"
class "teoria_dos_jogos::public_goods::widgets::nextAnimation.dart::_NextAnimationState" {
+double targetValue
+double endPoint
+double startPoint
+int delay
+void initState()
+dynamic startAnimation()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::nextAnimation.dart::_NextAnimationState"
class "teoria_dos_jogos::public_goods::widgets::panel.dart::Panel" {
+dynamic title
+Widget label
+double fontsize
+Widget build()
}
"teoria_dos_jogos::public_goods::widgets::panel.dart::Panel" o-- "flutter::src::widgets::framework.dart::Widget"
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "teoria_dos_jogos::public_goods::widgets::panel.dart::Panel"
class "teoria_dos_jogos::public_goods::widgets::panelFade.dart::PanelFade" {
+Widget child
+dynamic start
+_PanelFadeState createState()
}
"teoria_dos_jogos::public_goods::widgets::panelFade.dart::PanelFade" o-- "flutter::src::widgets::framework.dart::Widget"
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::panelFade.dart::PanelFade"
class "teoria_dos_jogos::public_goods::widgets::panelFade.dart::_PanelFadeState" {
-AnimationController _controller
+Animation animation
+void initState()
+void dispose()
+dynamic fade()
+Widget build()
}
"teoria_dos_jogos::public_goods::widgets::panelFade.dart::_PanelFadeState" o-- "flutter::src::animation::animation_controller.dart::AnimationController"
"teoria_dos_jogos::public_goods::widgets::panelFade.dart::_PanelFadeState" o-- "flutter::src::animation::animation.dart::Animation"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::panelFade.dart::_PanelFadeState"
"flutter::src::widgets::ticker_provider.dart::SingleTickerProviderStateMixin<T>" <|-- "teoria_dos_jogos::public_goods::widgets::panelFade.dart::_PanelFadeState"
class "teoria_dos_jogos::public_goods::widgets::popUpWithTimer.dart::PopUpWithTimer" {
+dynamic message
+Duration duration
+Function callback
+_PopUpWithTimerState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::popUpWithTimer.dart::PopUpWithTimer"
class "teoria_dos_jogos::public_goods::widgets::popUpWithTimer.dart::_PopUpWithTimerState" {
+void initState()
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::popUpWithTimer.dart::_PopUpWithTimerState"
class "teoria_dos_jogos::public_goods::widgets::timer.dart::TimerCount" {
+Function animationEnds
+Function getTime
+bool start
+int time
+_TimerCountState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::timer.dart::TimerCount"
class "teoria_dos_jogos::public_goods::widgets::timer.dart::_TimerCountState" {
+AnimationController controller
+dynamic timerString
+void initState()
+void dispose()
+dynamic getTime()
+Widget build()
}
"teoria_dos_jogos::public_goods::widgets::timer.dart::_TimerCountState" o-- "flutter::src::animation::animation_controller.dart::AnimationController"
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::timer.dart::_TimerCountState"
"flutter::src::widgets::ticker_provider.dart::TickerProviderStateMixin<T>" <|-- "teoria_dos_jogos::public_goods::widgets::timer.dart::_TimerCountState"
class "teoria_dos_jogos::public_goods::widgets::token.dart::GameToken" {
+int value
+bool isDraggable
+int round
+int maxValue
+List<int> list
+_GameTokenState createState()
+dynamic colors()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "teoria_dos_jogos::public_goods::widgets::token.dart::GameToken"
class "teoria_dos_jogos::public_goods::widgets::token.dart::_GameTokenState" {
+Widget build()
}
"flutter::src::widgets::framework.dart::State<T>" <|-- "teoria_dos_jogos::public_goods::widgets::token.dart::_GameTokenState"
@enduml
| false
| true
| false
| false
|
class
|
e3660319bdaa572b647138bf7dae2a8a496addb1
|
85681beae82be673566d614bf55427853d44e4f0
|
/doc/dia/domain.puml
|
d1232f319d2b68ed77b2e072bcbe55c8a03cc7cc
|
[
"MIT"
] |
permissive
|
maciejmalecki/inventory
|
a5273ad1cff8d8907310978e8c2e9e2ca72281ac
|
05680ded9c9039089a4170606909ba3280e8527d
|
refs/heads/main
| 2023-03-31T11:40:23.872071
| 2021-03-19T11:16:29
| 2021-03-19T11:16:29
| 306,044,059
| 2
| 0
|
MIT
| 2021-03-17T11:53:00
| 2020-10-21T14:04:08
|
Kotlin
|
UTF-8
|
PlantUML
| false
| false
| 154
|
puml
|
@startuml
package shared #lightgrey {
}
package items #lightyellow {
}
package inventory #lightyellow {
}
items ...> shared
inventory ...> shared
@enduml
| false
| true
| false
| false
|
class
|
f51421451cedd0ae2ca79ada66211a92b7fa772f
|
8b8243a4e97eecae09af5810248ad7f6e88c1a65
|
/docs/sequence_diagrams/startup.puml
|
d6d41341592b7e9ed63ae00bf781adc7548e7878
|
[] |
no_license
|
mugoftblog/qankiadd
|
df58033d54ed25110cbc0110d48fd60a8c967da4
|
ebf7000a2f8787e9fe9ed58d5f82e3d97f7d7232
|
refs/heads/master
| 2020-03-27T10:08:11.309090
| 2018-08-27T20:29:55
| 2018-08-27T20:29:55
| 146,397,676
| 0
| 0
| null | 2018-08-28T05:45:58
| 2018-08-28T05:45:58
| null |
UTF-8
|
PlantUML
| false
| false
| 737
|
puml
|
@startuml
main -> User: <<get config_idx>>
main <-- User: config_idx
main -> config: get_config(config_idx)
' currently this behaviour is considered as bad '
/' loop for each field within this config
config -> field: _init_
field -> data_provider: get_data_provider(name)
field <-- data_provider: data_provder
config -> field: get_hotkey()
config <-- field: hotkey_str
end '/
config --> main: config
main -> gui: _init_(config)
main -> keylistener: _init_(gui)
main -> keylistener: register_keys()
keylistener -> GUI: get_hotkeys()
gui <- gui: <<hotkeys of the gui>>
gui -> config: get_hotkeys()
gui <-- config: <<hotkeys of all fields>>
keylistener <-- GUI: <<array with all hotkeys>>
main -> keylistener: start_listening()
@enduml
| false
| true
| false
| false
|
sequence
|
359c9a65da277565ae897585d27c526477a7de40
|
7a1ad09761a9607fa91422fa6464daed599090ff
|
/project_description/diagrams_src/WymianaTemperaturyMiędzyPokojami.puml
|
48784286238b943829ba8dab1e81c4ea8bf88b8f
|
[] |
no_license
|
michalMilewski-8/SmartBuilding_Agent_MiNI_Project
|
d0daa7f7ccbb286aa25d0bc79149485718cee4e9
|
b196ec6129a57abc668132b0999e519bc149c11e
|
refs/heads/master
| 2021-02-16T12:39:58.624684
| 2020-06-29T19:06:41
| 2020-06-29T19:06:41
| 245,006,263
| 0
| 0
| null | 2020-06-29T19:02:00
| 2020-03-04T21:20:03
|
Python
|
UTF-8
|
PlantUML
| false
| false
| 210
|
puml
|
@startuml
actor AgentPokoju1_dowolny
actor AgentPokoju2_dowolny
AgentPokoju1_dowolny -> AgentPokoju2_dowolny : room_data_exchange_request
AgentPokoju2_dowolny -> AgentPokoju1_dowolny : room_data_inform
@enduml
| false
| true
| false
| false
|
sequence
|
d26159ed6b721bb8f8c6026c5e7d37c75b2fb36c
|
7638fb3218b31ffa418b07707e7760d3872f1838
|
/diagrams/datadog_core_metrics_05.puml
|
b808538bcc955d9f37cc450185ba981d6d6f31d0
|
[
"Apache-2.0"
] |
permissive
|
d3sw/conductor
|
68e594b8dc1a794cb7d421e809ba135be13733b6
|
5275bdcaf3656e5e50ef8c15fb2beeba1720ac82
|
refs/heads/main
| 2023-09-04T00:50:19.087947
| 2023-08-01T18:30:47
| 2023-08-01T18:30:47
| 95,158,890
| 3
| 0
|
Apache-2.0
| 2023-09-14T12:18:30
| 2017-06-22T21:41:59
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 1,678
|
puml
|
@startuml
'https://plantuml.com/sequence-diagram
autonumber
participant "Conductor\nWorkflowExecutor.java" as wfe
participant "Conductor\nMetricService.java" as msj
participant "External Service\ndatadog.service.{env}" as dds
participant "SaaS\nData Dog" as saas
alt Workflow start/fail/complete/restart/other actions
note over wfe
The block shows start workflow only.
The rest workflow related push metrics are similar
end note
wfe -> wfe: startWorkflow invoked
wfe -> msj: Invokes workflowStart (workflow)
msj -> dds: Increment counter value (metric:deluxe.conductor.workflow.start)
dds -> saas: Pushes metrics
end
alt Async task execution requested
wfe -> wfe: executeSystemTask invoked
wfe -> wfe: Checks exceeding InProgressLimit/RateLimitPerFrequency
wfe -> wfe: Is InProgressLimit or RateLimitPerFrequency exceeded ?
activate wfe
wfe -> msj: Invokes taskRateLimited (task type, task ref name, task def name)
msj -> dds: Increment counter value (metric:deluxe.conductor.task.rate.limit)
dds -> saas: Pushes metrics
deactivate wfe
wfe -> msj: Invokes taskWait (task type, task ref name, task def name, queue wait time)
msj -> dds: Records execution time (metric:deluxe.conductor.task.queue.wait.time)
dds -> saas: Pushes metrics
end
alt Task update requested
wfe -> wfe: updateTask invoked
wfe -> wfe: Is task in terminal status ?
activate wfe
wfe -> msj: Invokes taskComplete (task type, task ref name, task def name, status, start time)
msj -> dds: Increment counter value (metric:deluxe.conductor.task.complete)
dds -> saas: Pushes metrics
msj -> dds: Records time (metric:deluxe.conductor.task.complete.time)
dds -> saas: Pushes metrics
deactivate wfe
end
@enduml
| false
| true
| false
| false
|
sequence
|
c925b9278f457f9712676c3ff2ac5c88aecee52a
|
6963c449644e055485ae448bb253435a0c773965
|
/src/main/resources/class.puml
|
97ce98abf35c2fc30cbffffb2638f69059636faa
|
[] |
no_license
|
rimonmostafiz/fp-movies
|
a33abf94bd59c5fc11bcb2a5a41faedac9939497
|
3601e7893c01e5d5096d22eefacf371f7d20046d
|
refs/heads/master
| 2023-08-14T01:51:56.364097
| 2021-09-23T17:37:57
| 2021-09-23T17:37:57
| 407,966,915
| 0
| 0
| null | 2021-09-20T06:19:37
| 2021-09-18T21:01:29
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 1,672
|
puml
|
@startuml
skinparam minClassWidth 50
class Movie {
- id : Long
- budget : Long
- homepage : String
- String originalLanguage : String
- String originalTitle : String
- String overView : String
- Double popularity : Double
- releaseDate : LocalDate
- revenue : Long
- runtime : Integer
- status : Status
- tagline : String
- title : String
- voteAverage : Double
- voteCount : Integer
}
class Genre {
id : Long
name : String
}
class Keyword {
id : Long
name : String;
}
enum Gender {
OTHER(0)
Male(1)
Female(2)
}
class ProductionCompany {
- id : Long
- name : String
}
class ProductionCountry {
- iso : String
- name : String
}
class SpokenLanguage {
- iso : String
- name : String
}
enum Status {
Released
}
class Credit {
- movieId : Long
- title : String
}
class Cast {
- castId : Long
- character : String
- creditId : String
- gender : Gender
- id : Long
- name : String
- order : Integer
}
class Crew {
- creditId : String
- department : Department
- gender : Gender
- id : Long
- job : String
- name : String
}
enum Department {
Actors
Editing
Camera
Sound
Writing
Production
Art
Directing
CostumeAndMakeUp
Crew
. . . . .
. . . . .
}
Movie -> "1..*" Genre
Movie -> "1..*" Keyword
Movie -> "1..*" ProductionCountry
Movie -> "1..*" ProductionCompany
Movie -> "1..*" SpokenLanguage
Movie *-- Credit
Movie --> "1" Status
Credit -- "*" Crew
Credit -- "*" Cast
Crew --> "1..*" Department
Crew --> "1" Gender
Cast --> "1" Gender
@enduml
| false
| true
| false
| false
|
class
|
e1a990b6acdb92512906087032c631c07ca60d9e
|
d99806bb17e4a22325f775539981c6b7799b9d16
|
/docs/red/1160634/sp1/analysis4.puml
|
3cd55df8564870b10809b85c6d2099e0d3a158fc
|
[] |
no_license
|
Fuel4us/GWTFinalProject
|
3d0e1194f142cfcbdfc3d24f37a7537ff3a30dfb
|
b6c2f6add1687ca7800a9ec243edbe067ca6090c
|
refs/heads/master
| 2020-03-21T19:47:13.534718
| 2018-06-28T05:33:43
| 2018-06-28T05:33:43
| 138,969,901
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 462
|
puml
|
@startuml analysis4.png
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
actor User
collections CTextNotes
User -> CTextNotes : select a text note
CTextNotes -> TextNotes : see the history of modifications
TextNotes -> TextNotes : display history
collections CTimeStamp
loop
TextNotes -> CTimeStamp : display the time stamp and the first line
end
@enduml
| false
| true
| false
| false
|
sequence
|
5cf5ff0586ac04050abe433636d4c27bbcc2dacb
|
553f0bf87ffb874ea3172086b3671e7524d3fb65
|
/documents/version4/diagramme.puml
|
01e371e05ddb8f15c21122ff00396ba5566adce5
|
[] |
no_license
|
MichelGrolet/2d-game
|
18e6467de68899057d520d61d5a4c18bf47e7acc
|
5d2714985fa270be60a60e7232d22267dddd7293
|
refs/heads/main
| 2023-05-26T06:11:18.518661
| 2021-06-11T10:00:13
| 2021-06-11T10:00:13
| 370,970,154
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,018
|
puml
|
@startuml
class Main {}
class Labyrinthe {
- {static} taille : int
+ Labyrinthe()
+ Case getCase(int x, int y)
+ ArrayList<Case> getCasesLibres()
+ void genererMurs(int choix)
+ Case[][] getTabCase()
}
Labyrinthe "1" --> "*" Case : - cases
class Case {
- x : int
- y : int
- libre : boolean
+ Case(int x, int y)
+ boolean : getLibre()
+ boolean equals()
+ int : getX()
+ int : getY()
}
class Mur extends Case {
+ Color getCouleur();
}
class Sol extends Case {
+ Color getCouleur();
}
class Entite {
- x : Int
- y : Int
- pv : int
+ Entite(JeuPerso jeu)
+ void attaquer(Entite e)
+ void subirDegats()
+ boolean etreMort()
+ int getPv()
+ int getX()
+ int getY()
+ void setX(int x)
+ void setY(int y)
+ ArrayList<Case> deplacementAutour(ArrayList<Case> libres)
}
class Personnage extends Entite {
+ Personnage()
+ String toString()
+ void seDeplacer(Commande c)
}
class Monstre extends Entite {
+ Monstre(int x, int y)
+ void seDeplacer(ArrayList<Case> libres, Personnage p)
}
interface Jeu {
+ void evoluer()
+ boolean etreFini()
}
interface DessinJeu {
+ void dessiner()
}
class JeuPerso implements Jeu {
- timer : int
+ JeuPerso()
+ String toString()
+ void evoluer(Commande commande)
+ boolean etreFini()
+ Personnage getPj()
+ void deplacerMonstres()
+ void genererMonstres(int nbMonstres)
+ ArrayList<Case> getCasesLibres()
+ Labyrinthe getLabyrinthe()
+ ArrayList<Monstre> getMonstres()
+ boolean faireApparaitre(Monstre m)
}
JeuPerso "1" --> "1" Labyrinthe : - labyrinthe
JeuPerso "1" --> "1" Personnage : - pj
JeuPerso "1" --> "*" Monstre : - monstres
class DessinPerso implements DessinJeu {
- {static} int tailleCase
+ DessinPerso(Jeu j)
+ void dessinerObjet(String s, int x, int y, BufferedImage im)
+ void dessiner(BufferedImage im)
}
DessinPerso "1" -> "1" JeuPerso : - jeu
@enduml
| false
| true
| false
| false
|
sequence
|
efac7b146efe11d69a158e709f9e94a79e4d1a85
|
f4e746d7627fa2f2c1d91f40f73018d49587b40b
|
/src/Models/ColumnManager/ColumnManager.puml
|
debc58a125cc5f1b43e08642181c61d8300fd3d2
|
[] |
no_license
|
ui-package/table-component
|
cd428ce66e972bd3d2a7bed1fa47efa0e8f8194f
|
a5705a8428cc4561362e01d74800051f85a53b56
|
refs/heads/master
| 2021-05-13T23:04:39.299701
| 2018-03-21T07:14:54
| 2018-03-21T07:14:54
| 116,505,364
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 430
|
puml
|
@startuml
interface ColumnManagerInterface <T> {
createBodyColumns(entity: T): ColumnBodyEntityInterface[]
getHeadColumns(): ColumnHeadEntityInterface[]
}
interface ColumnHeadEntityInterface
interface ColumnBodyEntityInterface
ColumnManagerInterface "1 .. *" *-- ColumnHeadEntityInterface
ColumnManagerInterface ..> ColumnBodyEntityInterface
note left on link
It create array of ColumnBodyEntityInterface
end note
@enduml
| false
| true
| false
| false
|
class
|
b5563ac86530f52ceec741c163523dce03a9473c
|
e2af34c95c3628d291848b6ad1f3b013b137eecd
|
/exercise41/docs/NameSorter.puml
|
ac4ce0ed5d931589d8926d76d4481f9cd2bcaef6
|
[] |
no_license
|
RyanTheGuyInSpace/hodge-a04
|
1b430a286859c01c1b9b42d570abe5d694b76485
|
66488f242574224ab55e6efe6c8224afa903b871
|
refs/heads/main
| 2023-08-24T03:24:42.233804
| 2021-10-18T03:39:42
| 2021-10-18T03:39:42
| 416,139,019
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 495
|
puml
|
@startuml
class Solution41 {
+main(String[])
' NameSorter ns = new NameSorter()
' ArrayList<String> names = ns.readNames()
' ns.sortNames(names)
' ns.writeNames(names)
}
class NameSorter {
-ArrayList<String> names;
' init name list
' store values from readNames() in name list
' sort the name list
' use writeNames to write the list
+readNames(String fileName)
+sortNames()
+writeNames(String fileName)
}
Solution41 --o NameSorter
@enduml
| false
| true
| false
| false
|
class
|
27ae823107b2a04ceb344ba95b6729bd995c4e2f
|
844665d08d1be5dacc41d8495725d881c68dba71
|
/Conferencias/Conferencia 4_ Patrones de Diseño de Comportamiento/PrincipleAndPatternDesign/src/cu/datys/principles/ocp/drawing/good/class-diagram.puml
|
0271c6090871baadda320e2bc366fd8555eabbd2
|
[
"MIT"
] |
permissive
|
alexescalonafernandez/curso-patrones-diseno
|
ec1cf0a993707d78c294208e04604a3a0ffd164e
|
f586e27791e1281087df6cc137da87f407179e65
|
refs/heads/master
| 2021-01-25T13:35:26.659206
| 2018-03-02T20:18:06
| 2018-03-02T20:18:06
| 123,588,331
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 492
|
puml
|
@startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam titleFontColor #5cb85c
Title OCP: Uso correcto
interface IShape{
+ void draw()
}
class Rectangle implements IShape
class Circle implements IShape
class GraphicEditor{
+ void drawShape(Shape shape)
}
GraphicEditor --> IShape: use
note right of GraphicEditor::drawShape
shape.draw();
end note
@enduml
| false
| true
| false
| false
|
sequence
|
ae8844598408d013b2308c74c2dcf19ff523e4c7
|
9e8e943a3e6b3aeb396a0f270f6b38382fac6540
|
/state_closed_arbitration.plantuml
|
9d5ad06a89b297cb9042bce63f8072c4b76021f7
|
[
"MIT"
] |
permissive
|
icocheck/techspecs
|
ccb59d1207420f6bb6be8000bfa40f04261e4558
|
a1b38d9e7d088bcd3fa16b5603ba767ddc44360e
|
refs/heads/master
| 2021-07-05T13:05:55.324357
| 2017-10-01T12:21:52
| 2017-10-01T12:21:52
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,698
|
plantuml
|
@startuml
state "Data Check & Cognitive Work" as cognition {
state "..." as prev2
[*] --> prev2
prev2 --> [*]
}
state "Validation" as validation {
state "..." as prev
state "Delivering results, payouts & mining" as delivering
delivering: – Can have "partial validation" status
delivering: – In this case QA stake is partially repaid to the Client
delivering: – Payouts and cognitive mining
prev --> delivering: ...
delivering --> [*]
}
prev2 --> validation
state "Closed Arbitration" as closed {
state "Lottery for arbiters" as lottery
state "Gathering arbiters" as gathering
state "Validating" as validating
state "Disclosing Veto" as disclosing
state "Counting votes" as counting
state "Fineing arbiters" as fineing
state "Waiting appeal" as waiting
state "Killing Faulty nodes" as killing
lottery: – All arbiter nodes participate
lottery: – Chances are proportional to stake and reputation
gathering: – Awaits congirmations from
gathering: all selected arbiters
gathering: – Timeout leads to penalty
gathering: and arbiter replacements
validating: – Limited by time
validating: – Timeout initiates new
validating: lottery to replace delayed
validating: arbiters with a new ones
validating: and leads to a fine
disclosing: – Limited by time
disclosing: – Timeout leads to fine
disclosing: arbiters are not replaced
fineing: – Arbiters are fined
fineing: loosing reputation and stakes
counting: – Defines True and Faulty Nodes
counting: – Required 100% votes
waiting: – Wait for public appeals
waiting: with some given timeout time
killing: – Removing stakes/reputation from
killing: the Nodes reported Faulty
validation --> lottery: initial appeal\nwas submitted
lottery --> gathering
lottery --> delivering: not enough\narbiters
gathering --> lottery: some arbiters\nrejected or\ntimed out
gathering --> validating: all arbiters\nresponded
gathering --> delivering: timeout\nlimit\nreached
validating --> disclosing: all arbiters\nsumitted results
validating --> lottery: for timed out\narbiters
validating --> validating: first\ntimeouts
disclosing --> counting: arbiters\nsubmitted keys
disclosing --> fineing: some arbiters\ntimed out
fineing --> counting
counting --> delivering: no Faulty\nnodes
counting --> waiting: Faulty nodes\nfound
waiting --> killing: No appeals\nwere submitted
killing --> delivering
}
state "Public Arbitration" as public {
state "..." as more
}
waiting --> public: public appeal\nwas submitted
counting --> public: unanimous Verdict\nis not reached
public --> delivering
@enduml
| false
| true
| true
| false
|
sequence
|
e650630ee33f4ed8aad8040d3184a4d6e5b89f66
|
c5ba091cb650334f8538409bff1947d8d35d1ddd
|
/Coding/fw/doc/design/FW_Hierarchy.plantuml
|
aba8bca7aa5ea4219938ffbf519e2037f3d4ad0f
|
[
"BSD-3-Clause"
] |
permissive
|
zengqz98/esp32-can-iot
|
d457b2ad9c06868c2b71b933e9ee838285dee3d0
|
7d3f17cc18107fe80ecb2b8c116964ef7bebb800
|
refs/heads/master
| 2023-03-11T17:58:16.487406
| 2021-02-23T06:39:56
| 2021-02-23T06:39:56
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,615
|
plantuml
|
@startuml
title Hierarchy Diagram
node {
package src{
component Main
component Adapters
}
Main -right-> Adapters
package lib{
component CAN
component IO
component Lawicel
component Settings
component WebServer
component ESP32SJA1000
component Board
component FlashMem
component WLAN
component AsyncWebServer
}
Main --> Lawicel
Main --> Settings
Main --> IO
Adapters --> Lawicel
Adapters --> CAN
Adapters --> WebServer
CAN --> ESP32SJA1000
IO --> Board
Settings --> FlashMem
Settings --> WLAN
WebServer --> AsyncWebServer
package Service{
component CANController
component GPIO
component WiFi
component Preferences
component AsyncTCP
}
ESP32SJA1000 --> CANController
Board --> GPIO
FlashMem --> Preferences
WLAN --> WiFi
AsyncWebServer --> AsyncTCP
package HAL {
component Arduino
}
CANController --> Arduino
GPIO --> Arduino
Preferences --> Arduino
WiFi --> Arduino
AsyncTCP --> Arduino
package Hardware{
interface WiFi_Anthena
interface USB
interface CAN_Transceiver
interface Button
interface LEDs
}
Arduino --> WiFi_Anthena
Arduino --> USB
Arduino --> CAN_Transceiver
Arduino --> Button
Arduino --> LEDs
}
component Laptop
component CAN_BUS
component User
LEDs --> User
Button --> User
CAN_Transceiver --> CAN_BUS
USB --> Laptop
WiFi_Anthena --> Laptop
@enduml
| false
| true
| false
| false
|
class
|
e604d4e2b866211da11089530ce26b08541c9d79
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/StagedQuoteDraft.puml
|
178cbbebc54988ec310862d2f819c405f7d53d76
|
[] |
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
| 560
|
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 StagedQuoteDraft [[StagedQuoteDraft.svg]] {
quoteRequest: [[QuoteRequestResourceIdentifier.svg QuoteRequestResourceIdentifier]]
quoteRequestVersion: Long
quoteRequestStateToAccepted: Boolean
key: String
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
state: [[StateReference.svg StateReference]]
}
@enduml
| false
| true
| false
| false
|
state
|
cf17d7d3c8aed88c606428c2ef28219474b55fd2
|
7b13715b0b972ea52b88ad8097cc8cb7b41f2bb1
|
/Rendu/doc/javadoc/ch/tofind/commusica/ui/PlaylistTrackCell.puml
|
fd2ee10228c368993fff7f27c8aa7cae8e86dcbe
|
[] |
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
| 657
|
puml
|
@startuml
class PlaylistTrackCell {
[[PlaylistTrackCell.html]]
{static} -LOG: Logger
{static} -FAV_EMPTY_IMAGE: String
{static} -FAV_FULL_IMAGE: String
{static} -FXML_FILE: String
-playlistTrack: PlaylistTrack
-track: Track
-trackPane: AnchorPane
-albumLabel: Label
-artistLabel: Label
-titleLabel: Label
-votesLabel: Label
-favoriteImageView: ImageView
+PlaylistTrackCell(PlaylistTrack)
+getPane(): AnchorPane
-downvote(MouseEvent): void
-favorite(MouseEvent): void
-upvote(MouseEvent): void
}
@enduml
| false
| true
| false
| false
|
class
|
a647569df0848fdfdb6872dba787385dbe0147ce
|
3a01c48123c37cbe5853adda0adc2c9077a75afb
|
/.idea/modules/app/app.plantuml
|
467472cbecb1302b846200e1af2644d04ee526af
|
[] |
no_license
|
TomerReiner/ML-For-All
|
e9ecc4d09b8c4a59d906b2a644c01cfe9f4d7d0e
|
e1f19d77b9e2f7bb24308f8bd8dcc5d9b690ea95
|
refs/heads/master
| 2023-05-02T06:13:39.999902
| 2021-05-12T12:50:59
| 2021-05-12T12:50:59
| 335,345,695
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 4,488
|
plantuml
|
@startuml
title __ML_FOR_ALL.APP's Class Diagram__\n
namespace com.example.mlforall {
class com.example.mlforall.AboutActivity {
}
}
namespace com.example.mlforall {
class com.example.mlforall.BuildConfig {
}
}
namespace com.example.mlforall {
class com.example.mlforall.CreateMachineLearningModelActivity {
}
}
namespace com.example.mlforall {
class com.example.mlforall.DatabaseHelper {
}
}
namespace com.example.mlforall {
class com.example.mlforall.DialogHelper {
}
}
namespace com.example.mlforall {
class com.example.mlforall.FileHelper {
}
}
namespace com.example.mlforall {
class com.example.mlforall.LinearEquation {
}
}
namespace com.example.mlforall {
class com.example.mlforall.LinearRegression {
}
}
namespace com.example.mlforall {
class com.example.mlforall.LinearRegressionHelper {
}
}
namespace com.example.mlforall {
class com.example.mlforall.MachineLearningModel {
}
}
namespace com.example.mlforall {
class com.example.mlforall.MainActivity {
}
}
namespace com.example.mlforall {
class com.example.mlforall.MenuHelper {
}
}
namespace com.example.mlforall {
class com.example.mlforall.MyModelsActivity {
}
}
namespace com.example.mlforall {
class com.example.mlforall.MyModelsListViewAdapter {
}
}
namespace com.example.mlforall {
class com.example.mlforall.MyProfileActivity {
}
}
namespace com.example.mlforall {
class com.example.mlforall.PlottingHelper {
}
}
namespace com.example.mlforall {
class com.example.mlforall.ShowModelActivity {
}
}
namespace com.example.mlforall {
class com.example.mlforall.User {
}
}
com.example.mlforall.AboutActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.mlforall.AboutActivity o-- com.example.mlforall.DatabaseHelper : db
com.example.mlforall.AboutActivity o-- com.example.mlforall.MenuHelper : menuHelper
com.example.mlforall.CreateMachineLearningModelActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.mlforall.CreateMachineLearningModelActivity o-- com.example.mlforall.DatabaseHelper : db
com.example.mlforall.CreateMachineLearningModelActivity o-- com.example.mlforall.LinearEquation : equation
com.example.mlforall.CreateMachineLearningModelActivity o-- com.example.mlforall.MenuHelper : menuHelper
com.example.mlforall.CreateMachineLearningModelActivity o-- com.example.mlforall.LinearRegression : model
com.example.mlforall.DatabaseHelper -up-|> android.database.sqlite.SQLiteOpenHelper
com.example.mlforall.DialogHelper o-- com.example.mlforall.DatabaseHelper : db
com.example.mlforall.LinearRegression o-- com.example.mlforall.LinearEquation : linearEquation
com.example.mlforall.MachineLearningModel o-- com.example.mlforall.LinearEquation : linearEquation
com.example.mlforall.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.mlforall.MainActivity o-- com.example.mlforall.DatabaseHelper : db
com.example.mlforall.MainActivity o-- com.example.mlforall.MenuHelper : menuHelper
com.example.mlforall.MenuHelper o-- com.example.mlforall.DatabaseHelper : db
com.example.mlforall.MenuHelper o-- com.example.mlforall.DialogHelper : dialogHelper
com.example.mlforall.MyModelsActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.mlforall.MyModelsActivity o-- com.example.mlforall.MyModelsListViewAdapter : adapter
com.example.mlforall.MyModelsActivity o-- com.example.mlforall.DatabaseHelper : db
com.example.mlforall.MyModelsActivity o-- com.example.mlforall.MenuHelper : menuHelper
com.example.mlforall.MyModelsListViewAdapter -up-|> android.widget.BaseAdapter
com.example.mlforall.MyProfileActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.mlforall.MyProfileActivity o-- com.example.mlforall.DatabaseHelper : db
com.example.mlforall.MyProfileActivity o-- com.example.mlforall.MenuHelper : menuHelper
com.example.mlforall.ShowModelActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.mlforall.ShowModelActivity o-- com.example.mlforall.PlottingHelper : plottingHelper
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
|
74d7b5eea86f19f74f978ffd8b427c8691bf5dba
|
78237393c31d23f59faddfd1b017f7f6fe5f3fb1
|
/documentation/Kitchen/UC-KIT-11/UC-KIT-11.puml
|
2bb2cb7fd3ad748f65e55f62546e7487fea9be8d
|
[] |
no_license
|
raulcorreia7/isep_eapli_17_18
|
c86cab2b1302c59bc1730c3ac9b414d5e7788874
|
9691cbd6c56ce2721ebd00555ab4b9d8029062e6
|
refs/heads/master
| 2020-04-15T17:48:21.819808
| 2018-05-29T13:28:14
| 2018-05-29T13:28:14
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,812
|
puml
|
@startuml
-> ui : starts
ui -> User: Requests login and password
User -> ui: Inserts information
ui -> ui: Logs in
menu -> ui: display main menu options
User -> ui: invokes traceability menu
ui -> menu: request traceability menu
menu -> ui: display traceability menu
User -> ui: choose option to register batch used in meal
ui -> RegisterBatchUI: new RegistertUsedBatchUI()
RegisterBatchUI -> RegisterBatchController: new RegisterBatchController()
RegisterBatchController -> RegisterBatchUI: request meal type
User -> RegisterBatchUI: inserts meal type
RegisterBatchUI -> User: request date
User -> RegisterBatchUI: inserts date
RegisterBatchUI -> RegisterBatchController: gets available meals for date and type
RegisterBatchUI -> User: show available meals, requests confirmation to continue
alt if no
RegisterBatchUI -> ui: Use case ends
else
loop while
RegisterBatchUI -> User: Display meal in session
loop while (materialCode != end)
RegisterBatchController -> MaterialRepository: showMaterialList()
RegisterBatchUI -> User: Display available materials
RegisterBatchUI -> User: request material code
User -> RegisterBatchUI: inserts material code
RegisterBatchUI -> RegisterBatchController: Get available batches
RegisterBatchUI --> User: Display available batches
RegisterBatchUI --> User: request batch id
User -> RegisterBatchUI: insert batch id
RegisterBatchUI --> User: request quantity
User -> RegisterBatchUI: quantity = inserts quantity
RegisterBatchUI -> RegisterBatch: register batch used
RegisterBatchController -> MealMaterialRepository: insertBatch(batch, quantity)
end
RegisterBatchController -> RegisterBatchUI: display used batches for meal
end
end
RegisterBatchController -> RegisterBatchUI: End Message
@enduml
| false
| true
| false
| false
|
sequence
|
98d46882e7cbdc21f44414e0a09a141c5d02a68f
|
2bc551f9c2ecb57ec0cb93ad18d3ce0bafbddb34
|
/设计模式/设计模式尚硅谷/designpatternlearning/src/main/java/tk/designpattern/factory/abstractfactory/order-service.puml
|
fd08dacafb7cfcb6f563e3d7135ab58f75a96714
|
[] |
no_license
|
YiboXu/JavaLearning
|
c42091d6ca115826c00aad2565d9d0f29b1f5f68
|
97b4769ebbe096e0ab07acb6889fb177e2ca5abe
|
refs/heads/master
| 2022-10-27T23:47:54.637565
| 2020-06-16T09:12:09
| 2020-06-16T09:12:09
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,182
|
puml
|
@startuml
abstract class Pizza{
- String name;
+ String getName()
+ abstract void prepare();
+ void bake()
+ void cute()
+ void box()
+ String toString()
}
together {
class ChinaMilkPizza{
+ void prepare()
}
class ChinaCheesePizza{
+ void prepare()
}
class JapanMilkPizza{
+ void prepare()
}
class JapanCheesePizza{
+ void prepare()
}
}
together {
class ChinaPizzaFactory{
# Pizza createPizza(String orderType)
}
class JapanPizzaFactory{
# Pizza createPizza(String orderType)
}
}
interface PizzaFactory {
Pizza createPizza(String orderType);
}
class OrderService {
- PizzaFactory pizzaFactory;
+ void setPizzaFactory(PizzaFactory pizzaFactory)
+ void order()
}
Pizza <|-- ChinaMilkPizza
Pizza <|-- ChinaCheesePizza
Pizza <|-- JapanMilkPizza
Pizza <|-- JapanCheesePizzao
ChinaMilkPizza <|-- ChinaPizzaFactory
ChinaCheesePizza <|-- ChinaPizzaFactory
JapanMilkPizza <|-- JapanPizzaFactory
JapanCheesePizza <|-- JapanPizzaFactory
PizzaFactory <|-- ChinaPizzaFactory
PizzaFactory <|-- JapanPizzaFactory
PizzaFactory - OrderService
@enduml
| false
| true
| false
| false
|
class
|
b7d4147f7503693c379c3e1d5e0d161db9798b3e
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/AssociateRoleBuyerAssignableChangedMessage.puml
|
aaf1553097aee5cfd8ec4ffb9bb9784d6a1e4bee
|
[] |
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,194
|
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 AssociateRoleBuyerAssignableChangedMessage [[AssociateRoleBuyerAssignableChangedMessage.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]]
buyerAssignable: 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
|
a36788d0a546542b3f7d832186ad946f357aaa89
|
2658a42eb6bbcc140cae19c1120864277f893b2f
|
/documentation/src/orchid/resources/assets/diagrams/scope.puml
|
19c7ff2c4445d54bb025d1c31e24f5f22fe83b17
|
[
"Apache-2.0"
] |
permissive
|
tuProlog/2p-kt
|
0935dbeb88272f79df1ebbd2339767bccc8ecfa4
|
6510ea0414985b708dd492ee240727f2e261176c
|
refs/heads/master
| 2023-08-17T18:41:12.310798
| 2023-07-19T10:34:16
| 2023-07-19T13:13:27
| 230,784,338
| 84
| 15
|
Apache-2.0
| 2023-09-13T22:49:25
| 2019-12-29T17:51:34
|
Kotlin
|
UTF-8
|
PlantUML
| false
| false
| 2,003
|
puml
|
@startuml
skinparam shadowing false
interface Scope {
+ _: Var
+ variables: Map<String, Var>
+ contains(variable: Var): Boolean
+ contains(variable: String): Boolean
+ get(variable: String): Var?
+ varOf(name: String): Var
+ anonymous(): Var
+ whatever(): Var
+ atomOf(value: String): Atom
+ structOf(functor: String, vararg args: Term): Struct
+ structOf(functor: String, args: Sequence<Term>): Struct
+ tupleOf(vararg terms: Term): Tuple
+ tupleOf(terms: Iterable<Term>): Tuple
+ listOf(vararg terms: Term): List
+ emptyList(): EmptyList
+ emptySet(): EmptySet
+ listOf(terms: Iterable<Term>): List
+ listFrom(terms: Iterable<Term>, last: Term? = null): List
+ setOf(vararg terms: Term): LogicSet
+ setOf(terms: Iterable<Term>): LogicSet
+ factOf(head: Struct): Fact
+ ruleOf(head: Struct, body1: Term, vararg body: Term): Rule
+ directiveOf(body1: Term, vararg body: Term): Directive
+ clauseOf(head: Struct?, vararg body: Term): Clause
+ consOf(head: Term, tail: Term): Cons
+ indicatorOf(name: Term, arity: Term): Indicator
+ indicatorOf(name: String, arity: Int): Indicator
+ numOf(value: BigDecimal): Real
+ numOf(value: Double): Real
+ numOf(value: Float): Real
+ numOf(value: BigInteger): Integer
+ numOf(value: Int): Integer
+ numOf(value: Long): Integer
+ numOf(value: Short): Integer
+ numOf(value: Byte): Integer
+ numOf(value: String): Numeric
+ truthOf(value: Boolean): Truth
---
+ {static} empty(): Scope
+ {static} <R> empty(lambda: Scope.() -> R): R
+ {static} of(vararg vars: String): Scope
+ {static} of(vararg vars: String, lambda: Scope.() -> Unit): Scope
+ {static} of(vararg vars: Var): Scope
+ {static} of(vararg vars: Var, lambda: Scope.() -> Unit): Scope
+ {static} <R> of(vararg vars: String, lambda: Scope.() -> R): R
+ {static} <R> of(vararg vars: Var, lambda: Scope.() -> R): R
}
@enduml
| false
| true
| false
| false
|
sequence
|
208c3470306924d7a288f6ff8154c104b60fe48f
|
4f888511d8f2d81ed6b4ec6cf34845720ef88cd8
|
/reports/img/T2.puml
|
fced541cd0c111d09e5cf3013994823f4d4ab884
|
[] |
no_license
|
zachscheider/SecureGroupFileServer
|
0a4e854aae29584a9a626e1552da21e8bce88f29
|
8ae8115c3e5b12bdfebdba3a0d7d14231f1d94d5
|
refs/heads/master
| 2021-04-30T04:47:56.009107
| 2017-12-08T04:49:16
| 2017-12-08T04:49:16
| 121,544,859
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 293
|
puml
|
@startuml
title __T2: Token Modification/Forgery__
actor Bob
participant GroupServer
Bob <--> GroupServer: Share K<sub>GB</sub>
Bob -> GroupServer: Bob || {Request Token || GroupList[]}K<sub>GB</sub>
GroupServer -> Bob: {pToken || [H(pToken)]k<sub>G</sub><sup>-1</sup>}K<sub>GB</sub>
@enduml
| false
| true
| false
| false
|
usecase
|
796a9da7d3617fbdbe61f0ff27eb52867ebdfe98
|
227c32f7a5991c0ce2de069dd1f0448c1e6949fb
|
/PlantUML/PointCloudMap/PointCloudMapGT/PointCloudMapGT_Class.puml
|
a2c83f70642abfca1bb58663baa1297bf7f0b882
|
[] |
no_license
|
ShisatoYano/SLAMDesignUML
|
2b3af745ecf8ff1b88845e248a72c589fe9aa1ba
|
bb8678908952205d1fdc2ea5e49c9ca752e123b9
|
refs/heads/master
| 2022-11-25T17:49:03.514885
| 2020-08-02T00:27:38
| 2020-08-02T00:27:38
| 261,206,484
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 662
|
puml
|
@startuml
skinparam classAttributeIconSize 0
class PointCloudMapGT{
+ std::vector<LPoint2D> allLps
+ NNGridTable nntab
+ PointCloudMapBS(){allLps.reserve()MAX_POINT_NUM}
+ ~PointCloudMapBS()
+ virtual void addPose(const Pose2D &p)
+ virtual void addPoints(const std::vector<LPoint2D> &lps)
+ virtual void makeGlobalMap()
+ virtual void makeLocalMap()
+ void subsamplePoints(std::vector<LPoint2D> &sps)
+ virtual void remakeMaps(const std::vector<Pose2D> &newPoses)
}
PointCloudMapGT --|> PointCloudMap
PointCloudMapGT o-- NNGridTable
PointCloudMap o-- Pose2D
PointCloudMap o-- Scan2D
PointCloudMap o-- LPoint2D
@enduml
| false
| true
| false
| false
|
class
|
955b7fa25f1e5487c6740c89c046228dee8933fc
|
8c59fbc94a2ba7fa9a12c10991fe334cda0df128
|
/metrics/web/docs/features/firestore_emulator_for_driver_tests/diagrams/firestore_emulator_sequence_diagram.puml
|
0148f25b2c1be7d719fff5bca0648c7d9e58ad7f
|
[
"Apache-2.0"
] |
permissive
|
solid-vovabeloded/flank-dashboard
|
7e952fa1399585d3f15cae2ed2cab435fb82df3f
|
15dae0c40823cc12886a1bb0c087442c0697ac89
|
refs/heads/master
| 2023-07-11T19:54:58.430004
| 2021-08-06T10:29:26
| 2021-08-06T10:29:26
| 389,593,827
| 0
| 0
|
Apache-2.0
| 2021-07-26T10:33:52
| 2021-07-26T10:25:59
| null |
UTF-8
|
PlantUML
| false
| false
| 1,813
|
puml
|
@startuml firestore_emulator_sequence_diagram
skinparam ParticipantPadding 20
skinparam BoxPadding 10
actor Bob
participant FlutterWebDriver
participant ProcessManager
participant FirestoreEmulatorRunner
participant FirebaseProcess
participant FlutterDriveProcessRunner
participant "Application tests"
participant FirestoreEmulatorConfig
participant FirestoreInstance
Bob -> FlutterWebDriver : runs tests
activate FlutterWebDriver
FlutterWebDriver -> ProcessManager : creates
activate ProcessManager
deactivate FlutterWebDriver
ProcessManager -> FirestoreEmulatorRunner : run()
activate FirestoreEmulatorRunner
FirestoreEmulatorRunner -> FirebaseProcess : start()
activate FirebaseProcess
deactivate FirestoreEmulatorRunner
FirebaseProcess --> FirebaseProcess : runs the emulator (firebase emulators:start --only firestore)
FirebaseProcess -> ProcessManager : emulator is started
deactivate FirebaseProcess
ProcessManager -> FlutterDriveProcessRunner : run()
activate FlutterDriveProcessRunner
deactivate ProcessManager
deactivate FirebaseProcess
FlutterDriveProcessRunner -> "Application tests" : runs and test
deactivate FlutterDriveProcessRunner
activate "Application tests"
"Application tests" -> FirestoreEmulatorConfig : fromEnvironment()
activate FirestoreEmulatorConfig
FirestoreEmulatorConfig --> "Application tests" : FirestoreEmulatorConfig instance
deactivate FirestoreEmulatorConfig
"Application tests" -> FirestoreInstance : settings(localEmulatorHost)
activate FirestoreInstance
FirestoreInstance --> FirestoreInstance : points to the local emulator
FirestoreInstance --> "Application tests" : settings applied
deactivate FirestoreInstance
"Application tests" --> "Application tests" : runs tests
"Application tests" --> Bob : tests result
deactivate "Application tests"
@enduml
| false
| true
| false
| false
|
usecase
|
dcaedf8a0d876fd12dd49bc4f44cf263db8bfda2
|
abb2ed8f5ef28347d757a9d650870797ebf97fd7
|
/Doc/ClassDiagram_View.puml
|
de0a6f9ca261a6f3616b5417781fca823f181cc6
|
[] |
no_license
|
centervil/NavigationServiceTest
|
c186a021e3f4d07f463c5d29aad114b805c16155
|
47f995d2b96e69a664c93e11129fbd3cd26fb66b
|
refs/heads/master
| 2021-04-14T03:39:44.614502
| 2020-03-30T15:23:18
| 2020-03-30T15:23:18
| 249,204,772
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 352
|
puml
|
@startuml ViewClass
class App
class Resource
class MainWindow
class NavigationServiceEx
class ResourceServiceEx
class DialogService
App *-- MainWindow
App *-- Resource
App *-- NavigationServiceEx
App *-- ResourceServiceEx
App *-- DialogService
NavigationServiceEx --> MainWindow
DialogService --> MainWindow
ResourceServiceEx ..> Resource
@enduml
| false
| true
| false
| false
|
class
|
6ed5f18ef7f09aff6dae9e89d9fa15f8e77aacb5
|
545c8b9e1a37abacea24ce951851b99a879a9dd5
|
/src/main/java/ro/mta/se/lab/UML/UseCaseMeteo.puml
|
3b0a747b2762bf1a402a75f3535a72314d5145f3
|
[] |
no_license
|
andrei945/MeteoTema2
|
6babac8f436d3fcfce8e705db87ca5b0b259a1b9
|
cbb1ca535a7e4a7cba1573f766cb3572ca86ea3a
|
refs/heads/master
| 2023-06-05T12:34:44.375875
| 2021-06-30T10:48:53
| 2021-06-30T10:48:53
| 380,732,306
| 0
| 0
| null | 2021-06-30T10:48:54
| 2021-06-27T12:19:32
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 801
|
puml
|
@startuml
'https://plantuml.com/use-case-diagram
(Interact with "Select" button) as (Use)
(Show City and Country GUI\nLoad GUI with data from file) as (Use2)
(Interact and select City and\n Country) as (Use3)
(Press "OK" button\n Initialise API and get\n JSON Data) as (Use4)
(Exit App with Close Button) as (Use6)
User -- (Main Start)
User --> (Use)
(Use) - (Use2)
User -> (Use3)
(Use2) - (Use3)
(Use3) --> (Use4)
(Use) <-- (Use4)
User -> (Use6)
note left of User: I'm a user.
note "Set-up country_list_combo.valueProperty().addListener\nfor data changed event to populate cities ComboBox." as N3
note "Load FXMLoader from main(), inject GUI code,\ncall @FXML initialize() function. Setup Select\n button listener for mouse click event." as N2
(Main Start) .. N2
N2 .. N3
N3 .. (Use)
@enduml
| false
| true
| false
| false
|
uml-unknown
|
a4c5dd45d32efabefd5aa4bc97fd7ccf4bd7df87
|
568565f45f162e249ddc2cd84c367b8c8b1030ea
|
/calcite_uml/class/resultset_rel_class.puml
|
62aa77097ebf344688bb61f0b0c432cb90fee13f
|
[] |
no_license
|
YSMull/calcite-tutorial
|
36b908954435b9524f1db20e6b740974fd6df934
|
867b90abd775f3291a5f9cab692200eca6a1c28b
|
refs/heads/master
| 2022-11-08T21:51:29.514937
| 2020-06-24T08:28:55
| 2020-06-24T08:28:55
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 193
|
puml
|
@startuml
class CalciteResultSet
CalciteResultSet *--> IteratrCursor
IteratrCursor *--> AbstractEnumerable
AbstractEnumerable *--> ResultSetEnumerator
ResultSetEnumerator *--> ResultSet
@enduml
| false
| true
| false
| false
|
class
|
0d612f58d39db1fed123ce0455bd9814b3c364bf
|
36e8e37a895ba9b2666e81c1da40f7fd0580d37b
|
/src/javaLang/interpreter/解释器模式类图.puml
|
124bb45734d5a27cdcd8808601ce10ec373f3e18
|
[] |
no_license
|
xhSun9527/DesignPatterns
|
0b08185780882a8e1b7e065c39a44e7c19838e17
|
1ed5099b9156853601e6b3a9cdf0c1d6090a6812
|
refs/heads/master
| 2023-02-01T06:22:45.580510
| 2020-12-17T08:55:19
| 2020-12-17T08:55:19
| 287,001,208
| 1
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 470
|
puml
|
@startuml
abstract class AbstractExpression{
+ interpret(context) : int
}
class TerminalExpression{
+ interpret(context) : int
}
class NonterminalExpression{
+ interpret(context) : int
}
class Client{}
class Context{}
AbstractExpression <|-- TerminalExpression
AbstractExpression <|-- NonterminalExpression
AbstractExpression <-- NonterminalExpression
NonterminalExpression o-- AbstractExpression
Context <-- Client
AbstractExpression <-- Client
@enduml
| false
| true
| false
| false
|
class
|
cde79ed406dd441f7133237e6fb92a32b39db1c5
|
151965d67cc85b609324a819633cefaf903cf3a6
|
/hvcontrol/code/Sm1.c.plantuml
|
f7d577f7e59f0d5bec64b8610027044f03ed7a26
|
[] |
no_license
|
afk-olkie/central-vac
|
99e246e30be17bcdd9f143bca4f3a900e197e9d9
|
0315eaafcb4f1d35d79b060e2a24e48516c9373b
|
refs/heads/master
| 2020-11-29T06:15:27.555188
| 2019-12-29T19:07:54
| 2019-12-29T19:07:54
| 230,043,115
| 0
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,760
|
plantuml
|
@startuml
skinparam state {
FontName<<class_ortho>> Impact
BorderColor<<class_ortho>> #AA0000
BorderColor Black
}
note top of ROOT
Full state path to current diagram being exported:
ROOT
end note
state "ROOT" as ROOT {
state "DISABLED" as DISABLED {
DISABLED : ENTER / rec_entry_time();
DISABLED : ENTER / clear_requests();
}
DISABLED --> TIMED_OFF : [enabled_req]
state "ENABLED" as ENABLED {
state "TIMED_OFF" as TIMED_OFF {
TIMED_OFF : ENTER / { \n rec_entry_time();\n cool_down_duration += secs(2);\n //clamp(cool_down_duration, secs(4), secs(30));\n set_onoff_timeout_dur(cool_down_duration);\n}
}
TIMED_OFF --> OFF_READY : [onoff_timed_out]
state "DEC_TIMEOUT" as DEC_TIMEOUT {
state "OFF_READY" as OFF_READY {
OFF_READY : ENTER / rec_entry_time();
}
OFF_READY --> ON : [on_req]
state "ON" as ON {
ON : ENTER / rec_entry_time();
ON : ENTER / turn_on_output()
ON : [pop_onoff_if_req_on()] / set_onoff_timeout_from_req()
ON : EXIT / turn_off_output()
}
ON --> TIMED_OFF : [pop_onoff_if_req_off() OR\nonoff_timed_out]
DEC_TIMEOUT : DO[time_in_state() > secs(30)] / {\n dec_duration(cool_down_duration);\n}
}
ENABLED : [pop_xable_if_req_enable()] / set_enabled_timeout_from_req()
ENABLED : DO / dec_duration(onoff_time_left); dec_duration(enable_time_left);
}
ENABLED --> DISABLED : [pop_xable_if_req_disable() OR\nenabled_timed_out]
ENABLED --> DISABLED_BAD_SWITCH : [cool_down_duration > secs(15)]
state "DISABLED_BAD_SWITCH" as DISABLED_BAD_SWITCH {
DISABLED_BAD_SWITCH : ENTER / rec_entry_time();
}
ROOT : [true] / sm->event_handled = true; //for loop efficiency
}
@enduml
| false
| true
| false
| false
|
sequence
|
8910ce49d4da857c4c2c0ac6a83e6959215e5a40
|
7eb0a3429f021f1a046bed8e667a6911d789d065
|
/StrategyPattern/StrategyPattern.puml
|
eec666f7aa1d0801e15a08f379ce0f14ff5c6da8
|
[
"MIT"
] |
permissive
|
gama79530/DesignPattern
|
d99431711fda65cfb7d790b2959ba0a712fa3f86
|
4730c50cdd839072ae50eef975cbed62b5a2a41c
|
refs/heads/master
| 2023-08-03T04:35:54.561642
| 2023-06-08T03:13:08
| 2023-07-31T12:32:13
| 269,562,362
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 191
|
puml
|
@startuml StrategyPattern
hide empty members
class Contex{
+ Strategy strategy
+ invokeStrategyMethod()
}
interface Strategy{
+ strategyMethod()
}
Contex *-- Strategy
@enduml
| false
| true
| false
| false
|
class
|
0bf78ad8f5f1e94d65a6e5e331dc4e3a8798bf7f
|
b87082ff7afb11904a4db7fa177f6f77a1166978
|
/app/src/main/uml/adapters.class.puml
|
b4170f508f645272ab25f75e018292c655b0108a
|
[] |
no_license
|
integrer/mir_gar
|
6bf30e2c037c87a12806bc42191d02278eb170f1
|
73a6b3f07d1c51e9852dddb2d7039a90a29fdc22
|
refs/heads/master
| 2020-04-27T02:56:40.649910
| 2019-03-05T20:03:58
| 2019-03-05T20:03:58
| 174,009,924
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 150
|
puml
|
@startuml
class IconGreedAdapter
EditAppealActivity +- IconGreedAdapter
BaseAdapter <|-- IconGreedAdapter
hide EditAppealActivity members
@enduml
| false
| true
| false
| false
|
class
|
e0b9ceb7042f27bef01238bd6d4d6abb063d96e7
|
f2b3f0970d1b8c52a9cec82be4107ffe1f33a8a2
|
/lei20_21_s4_2dk_03/docs/USE_CASES/UC7-2010#11/SD.puml
|
374fa739d00fa05046fbda4c6e01723663b01c0e
|
[
"MIT"
] |
permissive
|
antoniodanielbf-isep/LAPR4-2021
|
b98ed96809e4726957ede0904b4265825a1083c6
|
f665064e65cc4f917514c10950af833f053c9b3b
|
refs/heads/main
| 2023-05-31T14:29:45.364395
| 2021-06-20T17:55:26
| 2021-06-20T17:55:26
| 378,706,704
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,120
|
puml
|
@startuml
'https://plantuml.com/sequence-diagram
autonumber
actor "Gestor de Servico" as ator
participant CriarNivelUI as UI <<presentation>>
participant CriarNivelController as Controller <<application>>
participant NivelBuilder as Builder <<builder>>
participant "nivel:Nivel" as Nivel <<domain>>
participant PersistenceContext as Persistence <<persistence>>
participant RepositoryFactory as Factory <<factory>>
database NivelRepository as Repository <<repository>>
ator --> UI : criarNivel
activate UI
UI -> Controller**: create
UI --> ator: pede informacao(etiqueta, cor, valorEscala, objetivoDistinto, designacaoNivel)
ator --> UI : insere informacao
UI -> Controller: criarNivel(etiqueta, cor, valorEscala, objetivoDistinto, designacaoNivel)
activate Controller
Controller -> Nivel**: create
note right of Controller: set the information
Controller -> Builder:setEtiqueta()
activate Builder
Controller -> Builder:setCor()
Controller -> Builder:setValorEscala()
Controller -> Builder:setObjetivoDistinto()
Controller -> Builder:setDesignacaoNivel()
Controller -> Builder:criarNivel()
Builder -> Nivel: criarNivel(etiqueta, cor, valorEscala, objetivoDistinto, designacaoNivel)
activate Nivel
Nivel->Builder: nivel
deactivate Nivel
Builder -> Controller: nivel
deactivate Builder
Controller -> Persistence: repositories()
activate Persistence
note right of Persistence: pode criar repositório em memória ou JPA
Persistence -> Factory**: create
Persistence -> Controller: factory
deactivate Persistence
Controller -> Factory: niveis()
activate Factory
Factory -> Repository: criarNivel
activate Repository
deactivate Repository
Factory -> Controller: userRepository
deactivate Factory
Controller->Repository:save(nivel)
activate Repository
deactivate Repository
Controller->UI: nivel
deactivate Controller
UI-->ator: mostrarNivelInfo
deactivate UI
@enduml
| false
| true
| true
| false
|
usecase
|
2e3832efcd20317c8de2f74c625ac950e0ff9434
|
f18ba1fbeb7f8d6149aff64633f9c77a92cfc936
|
/assignments/k.mukhametzyanov/TP3/src/tests/tests.plantuml
|
74245e97cf386bf98f1a0026ffd546263531105a
|
[] |
no_license
|
kzvdar42/InnopolisDesignPatterns
|
c34a728b7964f22a6b774a4616b7ac9515ae6263
|
b1042e76875c9ccf69017e20edcea4b9e7b5682b
|
refs/heads/master
| 2021-02-07T05:17:54.245396
| 2020-04-19T22:40:48
| 2020-04-19T22:40:48
| 243,987,548
| 0
| 0
| null | 2020-02-29T14:54:34
| 2020-02-29T14:54:34
| null |
UTF-8
|
PlantUML
| false
| false
| 470
|
plantuml
|
@startuml
title __TESTS's Class Diagram__\n
namespace tests {
class tests.Tests {
+ JimmyPizzeriaFourCheesesTest()
+ JimmyPizzeriaHawaiiTest()
+ RobbyPizzeriaFourCheesesPizzaTest()
+ RobbyPizzeriaInnopolisPizzaTest()
}
}
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
|
42490d73f724b155b143e74fa1018554876c9635
|
1bb5688062270907b57fb76dfd05a5f34ba8be1e
|
/uml/ClassDiagram.puml
|
02dc829d381c4f2c00ab214d8e17b808f4c4ee5d
|
[] |
no_license
|
MattyYeet/neet-5280-a5
|
6e4a2d3310016474fe9a7affd3873e5f2f925320
|
7062030c27f1325d4e4200061f8aa74129709c8c
|
refs/heads/master
| 2023-06-23T15:16:31.977872
| 2021-07-26T22:34:08
| 2021-07-26T22:34:08
| 387,655,152
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 984
|
puml
|
@startuml
class ItemOrganizerApp{
run
}
class ListofItemsController{
+makeNewItem()
+editItem()
+deleteItem()
+searchItem()
+refreshList()
+saveList(json, tsv, html)
+loadList(json, tsv, html)
}
class Items{
price
serial number
name
}
class ItemVerifier{
+checkSN()
+checkPrice()
+checkName()
}
class FileSaved
class FileLoaded
class NameHelpController
class SNHelpController
class PriceHelpController
class ItemMade
class ItemEdited
class ItemDeleted
ItemOrganizerApp -> ListofItemsController
ListofItemsController --> Items
ListofItemsController <--> FileLoaded
ListofItemsController <--> FileSaved
Items --> ItemVerifier
ItemVerifier ---> NameHelpController
ItemVerifier ---> PriceHelpController
ItemVerifier ---> SNHelpController
ItemVerifier --> ItemMade
ItemVerifier --> ItemEdited
ItemVerifier --> ItemDeleted
ItemMade ---> ListofItemsController
ItemEdited ---> ListofItemsController
ItemDeleted ---> ListofItemsController
@enduml
| false
| true
| false
| false
|
class
|
989272577a6ced8764ca4ebc6ca252e97557af3d
|
8c59fbc94a2ba7fa9a12c10991fe334cda0df128
|
/metrics/web/docs/features/debug_menu/diagrams/debug_menu_presentation_layer_class_diagram.puml
|
8c3ebccb71e9be27c899407045463e60c69bb279
|
[
"Apache-2.0"
] |
permissive
|
solid-vovabeloded/flank-dashboard
|
7e952fa1399585d3f15cae2ed2cab435fb82df3f
|
15dae0c40823cc12886a1bb0c087442c0697ac89
|
refs/heads/master
| 2023-07-11T19:54:58.430004
| 2021-08-06T10:29:26
| 2021-08-06T10:29:26
| 389,593,827
| 0
| 0
|
Apache-2.0
| 2021-07-26T10:33:52
| 2021-07-26T10:25:59
| null |
UTF-8
|
PlantUML
| false
| false
| 2,393
|
puml
|
@startuml debug_menu_presentation_layer_class_diagram
package debug_menu {
package domain {
package usecases {
class OpenLocalConfigStorageUseCase {}
class ReadLocalConfigUseCase {}
class UpdateLocalConfigUseCase {}
class CloseLocalConfigStorageUseCase {}
}
package parameters {
class LocalConfigParam {}
}
}
package presentation {
package state {
class DebugMenuNotifier {
+ isLoading : bool
+ isInitialized: bool
- _localConfig : LocalConfig
- _localConfigFpsMonitorViewModel : LocalConfigFpsMonitorViewModel
- _updateLocalConfigUseCase : UpdateLocalConfigUseCase
- _readLocalConfigUseCase : ReadLocalConfigUseCase
- _closeLocalConfigStorageUseCase : CloseLocalConfigStorageUseCase
- _openLocalConfigStorageUseCase : OpenLocalConfigStorageUseCase
+ Future<void> initializeLocalConfig()
+ void initializeDefaults()
+ void toggleFpsMonitor()
- void _setIsLoading(bool isLoading)
- void _setLocalConfig(LocalConfig config)
}
}
package view_models {
class LocalConfigFpsMonitorViewModel {
+ isEnabled : bool
}
}
package widgets {
class CoolWidget {}
}
}
}
DebugMenuNotifier -right-> LocalConfigFpsMonitorViewModel : uses
DebugMenuNotifier -down-> OpenLocalConfigStorageUseCase : uses
DebugMenuNotifier -down-> ReadLocalConfigUseCase : uses
DebugMenuNotifier -down-> UpdateLocalConfigUseCase : uses
DebugMenuNotifier -down-> CloseLocalConfigStorageUseCase : uses
DebugMenuNotifier -down-> LocalConfigParam : uses
OpenLocalConfigStorageUseCase -right[hidden]-> ReadLocalConfigUseCase
ReadLocalConfigUseCase -right[hidden]-> UpdateLocalConfigUseCase
UpdateLocalConfigUseCase -right[hidden]-> CloseLocalConfigStorageUseCase
CloseLocalConfigStorageUseCase -right[hidden]-> LocalConfigParam : uses
CoolWidget -down-> DebugMenuNotifier : uses
DebugMenuNotifier -up-> CoolWidget : notifies
@enduml
| false
| true
| false
| false
|
sequence
|
ee6ecd45339a10b4fbb6691bcdf38818ace3f195
|
dae17dc99be527188b7cbe7ee0ddefd9dcf1491a
|
/fabrica.puml
|
bbda4beabb1903113a7491ebd8eb3f72e2d86372
|
[] |
no_license
|
sarosilla/practicas-PLANTUML
|
75bc9173ce15f4320f5bc2ea4b1e261466a48a97
|
4505b05e095f0b8008a8ff96de106afe9f9d6074
|
refs/heads/master
| 2022-04-23T06:42:42.247983
| 2020-04-21T20:20:18
| 2020-04-21T20:20:18
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 786
|
puml
|
@startuml Fabrica
left to right direction
skinparam packagestyle rectangulo de
actor cliente
actor socio
actor fabrica
rectangle {
fabrica - (productos): produce
socio - (productos): retira
cliente - (consultar)
socio -- (venta de productos): beneficios
productos -- (venta de productos)
productos -- (consumo propio)
fabrica - (consultar)
(consultar) -- (web)
(venta de productos) <... (web): extends
(venta de productos) <... (a otro socio): extends
(venta de productos) <... (tienda propia): extends
(venta de productos) <... (fabriba): extends
(web) <.. (catalogo) : include
(web) <.. (precio): include
(web) <.. (stock): include
(web) <.. (pedidos): include
}
@enduml
| false
| true
| false
| false
|
usecase
|
374e978089d890e6590bc58654dbd2bd54fbc09a
|
d20c5c47f69154bab730978ab6926273aa912143
|
/doc/sequencediagrams/fr26.puml
|
b581dfb9b6cc8292b7bac8b9b9184baa170bda46
|
[] |
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
| 246
|
puml
|
@startuml
actor user
participant Player as P
'participant Game as G
'participant Paddle as pad
'participant Ball as B
activate user
user -> P: applyPowerup(PathTrace)
activate P
P --> user: success
deactivate P
deactivate user
@enduml
| false
| true
| false
| false
|
usecase
|
854872e7896c4cba86171f74c0e6a2a1b6abb3da
|
056dfb4f94b3f69604d36a49aac363f9f498bc41
|
/use-cases/DB system.puml
|
f8c2ff62edfe88e11d34a04663519e62889bacc2
|
[
"Apache-2.0"
] |
permissive
|
pabferir/Software-Engineering-Methods-G6
|
43e85b064885554f01f614e7cada694d66071a6f
|
4c51e3ad880fc1d456e9598e3fa779cf431c1d51
|
refs/heads/master
| 2020-07-23T09:31:46.815624
| 2019-05-06T16:43:13
| 2019-05-06T16:43:13
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 785
|
puml
|
@startuml
actor DA as "Data Analyst"
rectangle Database
rectangle DS as "DB System" {
usecase UC1 as "Print Languages from Most Speakers"
usecase UC2 as "Print Population in Cities of Territory"
usecase UC3 as "Print Population in Territory"
usecase UC4 as "Print Most Populated Cities in Area"
usecase UC5 as "Print Capital Cities Ordered from Largest Population"
usecase UC6 as "Print Top Populated cities in Territory"
usecase UC7 as "Print Cities ordered by most Populated"
usecase UC8 as "Print Top Populated Countries in Territory"
usecase UC9 as "Print Countries Populated From Largest"
DA - UC1
DA - UC2
DA - UC3
DA - UC4
DA - UC5
DA - UC6
DA - UC7
DA - UC8
DA - UC9
DS - Database
}
@enduml
| false
| true
| false
| false
|
usecase
|
9a8918586169aa8a94a615d95caccb189fea139d
|
68ab6123e5646851343e8ac1303f89c74e163d65
|
/docs_other/plantuml/todomvc-oo-event-flow-gituml-134.puml
|
9e688f65d359ec5a26224d347ac8450fed4b178e
|
[] |
no_license
|
abulka/todomvc-oo
|
2026ee52c46ca9135a928cdff24fde36c0ff0412
|
d41b327a7d9ae8d236c9a7ff222e60092e497d4f
|
refs/heads/master
| 2022-05-24T12:20:05.729460
| 2020-05-25T07:26:45
| 2020-05-25T07:26:45
| 243,655,901
| 1
| 1
| null | 2022-03-26T06:32:28
| 2020-02-28T01:48:45
|
JavaScript
|
UTF-8
|
PlantUML
| false
| false
| 11,810
|
puml
|
' From https://www.gituml.com/editz/134
'Literate Code Map macros
!procedure method($name, $params="")
.. def <u><b>$name</b></u>($params) ..
!endprocedure
!procedure xref($dest, $kind="dest")
!if ($kind == "source")
<color:Red><u>$dest</u></color>
!else
<color:Red>$dest</color>
!endif
!endprocedure
!$code = "<color:royalBlue><size:14>"
!$codeb = "<color:DarkSlateGray><size:12>"
!$codeg = "<color:Gray><size:12>"
!$codeb = "<color:royalBlue>"
!$codep = "<color:Purple><size:14>"
' GENERATED
class App {
constructor()
add()
delete()
---
method("constructor", "")
Event wiring - listening for these events ocurring in the system
upon receiving this event, (event) => { this.delete(event.detail.from) })
LISTEN << <color:Tomato>deleted_todoitem</color>
<color:royalBlue><size:14> document.addEventListener("deleted todoitem",
method("add", "")
will tell e.g. footer controller to update displayed count
BROADCAST >> <color:LimeGreen>app_model_changed</color>
<color:royalBlue><size:14> notify_all("app model changed", this)
method("delete", "")
called as a result of listening to the <color:Tomato>deleted_todoitem</color> event
will now tell e.g. footer controller to update displayed count
BROADCAST >> <color:LimeGreen>app_model_changed</color>
<color:royalBlue><size:14> notify_all("app model changed", this)
method("Load", "")
all todo item controllers listen for and will receive this <color:DeepSkyBlue>modified_todoitem</color>
no listeners except root debug listener, displaying the model debug view ("app model changed")
BROADCAST >> <color:DeepSkyBlue>modified_todoitem</color>
BROADCAST >> <color:LimeGreen>app_model_changed</color>
<color:royalBlue><size:14> notify_all("modified todoitem", this, options)
<color:royalBlue><size:14> notify_all("app model changed", this)
}
class ControllerTodoItem {
method("constructor", "")
The modified and deleted events will come from todo model item, whereas the <color:Sienna>filter changed</color>
event will come from the footer controller.
LISTEN << <color:DeepSkyBlue>modified_todoitem</color>
LISTEN << <color:Tomato>deleted_todoitem</color>
LISTEN << <color:Sienna>filter_changed</color>
<color:royalBlue><size:14> document.addEventListener("modified todoitem", this.notify_func)
<color:royalBlue><size:14> document.addEventListener("deleted todoitem", this.notify_func)
<color:royalBlue><size:14> document.addEventListener("filter changed", this.notify_func)
method("_delete_gui", "")
delete the GUI element and unwire any listeners to this controller
UNLISTEN <<X <color:DeepSkyBlue>modified_todoitem</color>
UNLISTEN <<X <color:Tomato>deleted_todoitem</color>
UNLISTEN <<X <color:Sienna>filter_changed</color>
<color:royalBlue><size:14> document.removeEventListener("modified todoitem", this.notify_func, false)
<color:royalBlue><size:14> document.removeEventListener("deleted todoitem", this.notify_func, false)
<color:royalBlue><size:14> document.removeEventListener("filter changed", this.notify_func, false)
method("notify", "event")
Listened for events end up here. <<
Checks for event.type and performs what is required.
Note: this method is not called as a result of the gui events, but as a
result of listening to internal events
<color:royalBlue><size:14> if (event.type == "modified todoitem" ... // <color:DeepSkyBlue>modified_todoitem</color>
<color:royalBlue><size:14> else if (event.type == "deleted todoitem" ... // <color:Tomato>deleted_todoitem</color>
<color:royalBlue><size:14> else if (event.type == "filter_changed") ... // <color:Sienna>filter_changed</color>
}
class ControllerFooter {
method("constructor", "")
LISTEN << <color:LimeGreen>app_model_changed</color>
LISTEN << <color:DeepSkyBlue>modified_todoitem</color>
<color:royalBlue><size:14> document.addEventListener("app model changed", (event) => { this.notify(event) })
<color:royalBlue><size:14> document.addEventListener("modified todoitem", (event) => { this.notify(event) })
method("filter_click", "e")
this broadcast goes to all the todoitem controllers
BROADCAST >> <color:Sienna>filter_changed</color>
<color:royalBlue><size:14> notify_all("filter changed", this, {'filter': this.filter});
method("notify", "event")
Renders the footer area, incl. count of number of todo items yet to complete.
}
class TodoItem {
method("delete", "")
BROADCAST >> <color:Tomato>deleted_todoitem</color>
<color:royalBlue><size:14> notify_all("deleted todoitem", this)
method("dirty", "")
Called when modify any of the todo item's attributes
e.g. 'completed' or 'title'
BROADCAST >> <color:DeepSkyBlue>modified_todoitem</color>
<color:royalBlue><size:14> notify_all("modified todoitem", this, {during_load: false})
}
'package Events <<Rectangle>> {
class deleted_todoitem <<event>> << (E,orchid) >> #Tomato {}
class app_model_changed <<event>> << (E,orchid) >> #LimeGreen {}
class modified_todoitem <<event>> << (E,orchid) >> #DeepSkyBlue {}
class filter_changed <<event>> << (E,orchid) >> #Sienna {}
'}
App <.. deleted_todoitem #Tomato
App --> app_model_changed #LimeGreen : App \n sends * \n<b><color:LimeGreen>app_model_changed</color></b> event \n during add, delete
App --> modified_todoitem #DeepSkyBlue : App \n sends * \n <b><color:DeepSkyBlue>modified_todoitem</color></b> \n during load
ControllerTodoItem <.. modified_todoitem #DeepSkyBlue
ControllerTodoItem <.. deleted_todoitem #Tomato
ControllerTodoItem <.. filter_changed #Sienna
ControllerFooter <.. app_model_changed #LimeGreen
ControllerFooter <.. modified_todoitem #DeepSkyBlue
ControllerFooter --> filter_changed #Sienna : ControllerFooter \n sends * \n <b><color:Sienna>filter_changed</color></b> \n when users clicks
TodoItem --> modified_todoitem #DeepSkyBlue : TodoItem \n sends * \n <b><color:DeepSkyBlue>modified_todoitem</color></b>
TodoItem --> deleted_todoitem #Tomato : TodoItem \n sends * \n <b><color:Tomato>deleted_todoitem</color></b>
' CUSTOM
center footer Generated by GitUml www.gituml.com
class App {
constructor()
add()
delete()
---
method("constructor", "")
Event wiring - listening for these events ocurring in the system
upon receiving this event, (event) => { this.delete(event.detail.from) })
LISTEN << <color:Tomato>deleted_todoitem</color>
```
document.addEventListener("deleted todoitem",
```
method("add", "")
will tell e.g. footer controller to update displayed count
BROADCAST >> <color:LimeGreen>app_model_changed</color>
```
notify_all("app model changed", this)
```
method("delete", "")
called as a result of listening to the <color:Tomato>deleted_todoitem</color> event
will now tell e.g. footer controller to update displayed count
BROADCAST >> <color:LimeGreen>app_model_changed</color>
```
notify_all("app model changed", this)
```
method("Load", "")
all todo item controllers listen for and will receive this <color:DeepSkyBlue>modified_todoitem</color>
no listeners except root debug listener, displaying the model debug view ("app model changed")
BROADCAST >> <color:DeepSkyBlue>modified_todoitem</color>
BROADCAST >> <color:LimeGreen>app_model_changed</color>
```
notify_all("modified todoitem", this, options)
notify_all("app model changed", this)
```
}
class ControllerTodoItem {
method("constructor", "")
The modified and deleted events will come from todo model item, whereas the <color:Sienna>filter changed</color>
event will come from the footer controller.
LISTEN << <color:DeepSkyBlue>modified_todoitem</color>
LISTEN << <color:Tomato>deleted_todoitem</color>
LISTEN << <color:Sienna>filter_changed</color>
```
document.addEventListener("modified todoitem", this.notify_func)
document.addEventListener("deleted todoitem", this.notify_func)
document.addEventListener("filter changed", this.notify_func)
```
method("_delete_gui", "")
delete the GUI element and unwire any listeners to this controller
UNLISTEN <<X <color:DeepSkyBlue>modified_todoitem</color>
UNLISTEN <<X <color:Tomato>deleted_todoitem</color>
UNLISTEN <<X <color:Sienna>filter_changed</color>
```
document.removeEventListener("modified todoitem", this.notify_func, false)
document.removeEventListener("deleted todoitem", this.notify_func, false)
document.removeEventListener("filter changed", this.notify_func, false)
```
method("notify", "event")
Listened for events end up here. <<
Checks for event.type and performs what is required.
Note: this method is not called as a result of the gui events, but as a
result of listening to internal events
```
if (event.type == "modified todoitem" ... // <color:DeepSkyBlue>modified_todoitem</color>
else if (event.type == "deleted todoitem" ... // <color:Tomato>deleted_todoitem</color>
else if (event.type == "filter_changed") ... // <color:Sienna>filter_changed</color>
```
}
class ControllerFooter {
method("constructor", "")
LISTEN << <color:LimeGreen>app_model_changed</color>
LISTEN << <color:DeepSkyBlue>modified_todoitem</color>
```
document.addEventListener("app model changed", (event) => { this.notify(event) })
document.addEventListener("modified todoitem", (event) => { this.notify(event) })
```
method("filter_click", "e")
this broadcast goes to all the todoitem controllers
BROADCAST >> <color:Sienna>filter_changed</color>
```
notify_all("filter changed", this, {'filter': this.filter});
```
method("notify", "event")
Renders the footer area, incl. count of number of todo items yet to complete.
}
class TodoItem {
method("delete", "")
BROADCAST >> <color:Tomato>deleted_todoitem</color>
```
notify_all("deleted todoitem", this)
```
method("dirty", "")
Called when modify any of the todo item's attributes
e.g. 'completed' or 'title'
BROADCAST >> <color:DeepSkyBlue>modified_todoitem</color>
```
notify_all("modified todoitem", this, {during_load: false})
```
}
'package Events <<Rectangle>> {
class deleted_todoitem <<event>> << (E,orchid) >> #Tomato {}
class app_model_changed <<event>> << (E,orchid) >> #LimeGreen {}
class modified_todoitem <<event>> << (E,orchid) >> #DeepSkyBlue {}
class filter_changed <<event>> << (E,orchid) >> #Sienna {}
'}
App <.. deleted_todoitem #Tomato
App --> app_model_changed #LimeGreen : App \n sends * \n<b><color:LimeGreen>app_model_changed</color></b> event \n during add, delete
App --> modified_todoitem #DeepSkyBlue : App \n sends * \n <b><color:DeepSkyBlue>modified_todoitem</color></b> \n during load
ControllerTodoItem <.. modified_todoitem #DeepSkyBlue
ControllerTodoItem <.. deleted_todoitem #Tomato
ControllerTodoItem <.. filter_changed #Sienna
ControllerFooter <.. app_model_changed #LimeGreen
ControllerFooter <.. modified_todoitem #DeepSkyBlue
ControllerFooter --> filter_changed #Sienna : ControllerFooter \n sends * \n <b><color:Sienna>filter_changed</color></b> \n when users clicks
TodoItem --> modified_todoitem #DeepSkyBlue : TodoItem \n sends * \n <b><color:DeepSkyBlue>modified_todoitem</color></b>
TodoItem --> deleted_todoitem #Tomato : TodoItem \n sends * \n <b><color:Tomato>deleted_todoitem</color></b>
| false
| true
| false
| false
|
sequence
|
3708c8a8efa40949961b752ef3f874b03309db83
|
f467bd687e9e28ab9ca2441451cc7cb6bbf48cf6
|
/TP/TP.plantuml
|
ac6245d16c43231283f2b6de2d297bedddcc7e89
|
[] |
no_license
|
mihal09/3SEM
|
3146dd16a94375f28b02ca3d3c50d08dc0dfe46a
|
f08b5b5202049a2afb1bcf770f516ef5721a61e8
|
refs/heads/master
| 2022-07-22T16:50:43.801729
| 2019-11-25T14:43:50
| 2019-11-25T14:43:50
| 219,431,239
| 2
| 0
| null | 2022-07-07T22:11:50
| 2019-11-04T06:20:47
|
HTML
|
UTF-8
|
PlantUML
| false
| false
| 2,121
|
plantuml
|
@startuml
title __TP's Class Diagram__\n
namespace sample {
class sample.DodawanieFakturyController {
}
}
namespace sample {
class sample.DodawanieKlientaController {
}
}
namespace sample {
class sample.DodawanieUslugiController {
}
}
namespace sample {
class sample.Faktura {
}
}
namespace sample {
class sample.FakturyStorage {
}
}
namespace sample {
interface sample.ILoader {
}
}
namespace sample {
class sample.Klient {
}
}
namespace sample {
class sample.KlientStorage {
}
}
namespace sample {
class sample.MainController {
}
}
namespace sample {
class sample.MockingLoader {
}
}
namespace sample {
class sample.ObliczCeneFaktury {
}
}
namespace sample {
class sample.ObliczCeneUslugi {
}
}
namespace sample {
class sample.ResourceManager {
}
}
namespace sample {
class sample.Usluga {
}
}
namespace sample {
class sample.WyswietlanieFakturyController {
}
}
sample.DodawanieFakturyController o-- sample.MainController : mainController
sample.DodawanieFakturyController o-- sample.Faktura : tworzonaFaktura
sample.DodawanieFakturyController o-- sample.Klient : wybranyKlient
sample.DodawanieUslugiController o-- sample.DodawanieFakturyController : dodawanieFakturyController
sample.Faktura o-- sample.Klient : klient
sample.MainController -up-|> javafx.application.Application
sample.MainController o-- sample.ILoader : loader
sample.MockingLoader .up.|> sample.ILoader
sample.ResourceManager o-- sample.FakturyStorage : fakturyStorage
sample.ResourceManager o-- sample.KlientStorage : klientStorage
sample.WyswietlanieFakturyController o-- sample.MainController : mainController
sample.WyswietlanieFakturyController o-- sample.Klient : wybranyKlient
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
|
c84d8ee1c724ddb0889ed2b8544c53195169d239
|
06219b6931afcaa1b64162cdd18595e328b9bb3f
|
/uml/all-class-diagram.puml
|
e123b22c29f3ee2049285ef6be181caf3b7671a9
|
[] |
no_license
|
glqdlt/myhome-manager
|
8ff5672e74954761744db6a5007c8a05eafa5f3d
|
5cb71ac84b0bc3b117d3f95b0ba4ab094c408b46
|
refs/heads/master
| 2023-05-12T20:49:13.004486
| 2023-05-05T05:22:00
| 2023-05-05T05:22:00
| 139,995,214
| 0
| 0
| null | 2018-07-21T04:01:21
| 2018-07-06T14:30:20
|
HTML
|
UTF-8
|
PlantUML
| false
| false
| 947
|
puml
|
@startuml
package persistence.server.entity{
class Server{
seq : Integer
name : String
ip : String
}
}
package persistence.author.entity{
class Author{
seq : Integer
name : String
regDate : Date
}
}
package persistence.member.entity{
class Member {
seq : Integer
id : String
password : String
name : String
type : MemberType
}
enum MemberType{
USER,ADMIN
}
}
package persistence.book.entity {
abstract class Book{
seq : Integer
title : String
author : Author
regDate : Date
expireDate : Date
register : Member
descriptionUrl : String
tags : List<Tag>
}
class Tag {
seq : Integer
value : String
}
Book <|-- ScanBook
Book <|-- RidiBook
class ScanBook{
fileName : String
fileHash : String
path : String
server : Server
size : Integer
}
class RidiBook{
url : String
ridiUserId : String
}
}
@enduml
| false
| true
| false
| false
|
class
|
fdf51c36dab9be8b325da777b267ba190e816f5a
|
5dae7c3097624dac7d3ef75feb19633a34af4c6b
|
/src/sequence/Upload New Request.puml
|
f56bb22cd17bdede21041878a164a8cc888ba42f
|
[] |
no_license
|
Cavitedev/plantuml_examples
|
497a94db406367cc3a017a23d00170f7d90207fa
|
f3e8a1dadb6e1c69f2624808729a10bbdd48ca2e
|
refs/heads/master
| 2023-02-03T09:40:36.156097
| 2020-12-17T20:30:03
| 2020-12-17T20:30:03
| 318,535,441
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 813
|
puml
|
@startuml
scale 650 width
actor User
'actor Technician
'actor President
boundary UI_Request
control Control_Request
entity E_Request
entity E_ListRequests
User -> UI_Request ++: Add Request
UI_Request -> Control_Request ++: Create Request
Control_Request -> E_Request ** : New
Control_Request --> UI_Request --: Empty Form
deactivate UI_Request
Loop User has not finished
User -> UI_Request ++: Update Form
UI_Request -> Control_Request ++: Update Request
Control_Request -> E_Request ++: Update Request
return Updated Request
return Display Updated Info
deactivate UI_Request
end
'Loop
User -> UI_Request ++: Save
UI_Request -> Control_Request ++: Save Request
deactivate UI_Request
Control_Request -> E_Request ++: Get Request
return : Request
Control_Request -> E_ListRequests --: Save Request
@enduml
| false
| true
| false
| false
|
sequence
|
a47e55fc5649b834c50056f332a9a3bcca50ba6d
|
a967a3605dbba3c30465b53d37586644b5160918
|
/Q2/Q2 With Strategy.puml
|
0d0f12fe25396bcdcdc7783067555f37aabe3ae9
|
[] |
no_license
|
AbhiniveshP/OOAD-Project-2
|
1009fdf37df18434c8ea086895643ed66097d890
|
cb3c95b8edadc219d1b4137c19f87107ce60e519
|
refs/heads/master
| 2020-08-02T12:45:03.301537
| 2019-10-04T22:57:32
| 2019-10-04T22:57:32
| 211,357,239
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,194
|
puml
|
@startuml Q2-With-Strategy
left to right direction
Zookeeper "1" - "*" Animal
Animal "1" - "1" Roamer : strategy >
Runner -up|> Roamer
Stalker -up|> Roamer
Stomper -up|> Roamer
Zookeeper : {field} +Animal[] animalsList
Zookeeper : +main()
Zookeeper : +wakeAnimals()
Zookeeper : +feedAnimals()
Zookeeper : +letAnimalsRoam()
Zookeeper : +rollCallAnimals()
Zookeeper : +putAnimalsToBed()
Animal : {field} #string name
Animal : {field} #Roamer roamer
Animal : +Sleep()
Animal : +Wakeup()
Animal : +Roam()
Animal : {abstract} Eat()
Animal : {abstract} makeNoise()
Roamer : {abstract} roam()
Runner : +roam()
Stalker : +roam()
Stomper : +roam()
Canine -|> Animal
Feline -|> Animal
Pachyderm -|> Animal
Dog -up|> Canine
Wolf -|> Canine
Cat -|> Feline
Lion -|> Feline
Tiger -|> Feline
Elephant -|> Pachyderm
Hippo -|> Pachyderm
Rhino -|> Pachyderm
Dog : +eat()
Dog : +makeNoise()
Wolf : +eat()
Wolf : +makeNoise()
Cat : +eat()
Cat : +makeNoise()
Cat : +makeNoiseCat()
Cat : +randomBehavior()
Lion : +eat()
Lion : +makeNoise()
Tiger : +eat()
Tiger : +makeNoise()
Elephant : +eat()
Elephant : +makeNoise()
Hippo : +eat()
Hippo : +makeNoise()
Rhino : +eat()
Rhino : +makeNoise()
@enduml
| false
| true
| false
| false
|
uml-unknown
|
aea7985e05b6be8e60e3c5c8d9801d7b795f8464
|
5b9092e6cb6760e2471483e438520451f408511e
|
/doc/3_sprint/diagrams/puml/class/character.puml
|
a735ded20c56e0577811fb7a315fd62555b80f2b
|
[] |
no_license
|
Reynault/ACL_2019_Zelpop
|
ac8be33233a78ecb010ffc7c3135031dfece3dd6
|
0edbfabd698ac2ef2e16e5cf70f41d8f9a310219
|
refs/heads/master
| 2020-08-15T14:32:19.385568
| 2019-12-10T16:59:19
| 2019-12-10T16:59:19
| 215,357,337
| 2
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,630
|
puml
|
@startuml
package entity{
abstract Entity{
- position: Position
- hp: int
- passThrought: boolean
- reward: int
- regen: int
- defence: int
+ getPosition():(int, int, Cmd)
+ setPosition(int direction)
+ setPosition(int x, int y)
+ canPassThrought(): boolean
+ {abstract} draw()
+ behave(maze: Maze, Cmd direction): Direction
+ getReward(): int
+ attack(maze: Maze)
+ takeDamage(dmg: int)
+ isAlive(): boolean
+ isHero(): boolean
+ getDmg(): int
+ getCounter(): int
+ applyRegen()
}
class Hero {
- score: int
+ increaseScore(bonus: int)
+ getScore(): int
+ isHero(): boolean
+ draw()
}
package npc{
class Monster{
+ isHero(): boolean
}
class Gobelin{
+ draw()
}
class Ghost{
+ draw()
}
class Thieve{
+ draw()
}
note top: Thieves are former monsters from\nsprint one and two
}
package behavior{
class Behavior{
}
note left: Class diagram of behavior
}
class EntityFactory(){
+ generateHero(): Entity
+ getHero(): Entity
+ getRandomMonster(position: Position): Entity
}
note left: EntityFactory is controlling the creation of Hero.\nThere must be only one.
}
Hero --|> Entity
Monster --|> Entity
Entity --> "1" Behavior: - behavior
Gobelin --|> Monster
Ghost --|> Monster
Thieve --|> Monster
@enduml
| false
| true
| false
| false
|
sequence
|
51f7ac7eb03b4a12054219c4f12a2a08a8656943
|
9e8e943a3e6b3aeb396a0f270f6b38382fac6540
|
/state_contracts.plantuml
|
18ae1ffee67a6928ac4c5565be97566348fa0830
|
[
"MIT"
] |
permissive
|
icocheck/techspecs
|
ccb59d1207420f6bb6be8000bfa40f04261e4558
|
a1b38d9e7d088bcd3fa16b5603ba767ddc44360e
|
refs/heads/master
| 2021-07-05T13:05:55.324357
| 2017-10-01T12:21:52
| 2017-10-01T12:21:52
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,763
|
plantuml
|
@startuml
state "Main Contract" as main {
state "Cognitive Work Initialization" as cwi
state "Cognitive Work Lottery" as cwl
state "Waiting Workers" as wait_wrk
[*] --> cwi: client request
cwi --> work: create
cwl --> wait_wrk
wait_wrk --> cwl: upon rejections\n& timeouts
}
state "Cognitive Work Contract" as work {
state "Init" as work_init
state "Waiting Results" as cognition
state "Data Arbitrage" as data_arb
state "Validation" as validation
[*] --> work_init
work_init --> cwl: callback
work_init --> cognition
cwl --> cognition: workers
' cognition --> cwl: upon rejections\nand timeouts
cognition --> validation: upon all results\nare collected
cognition --> data_arb: incorrect\ndata\nreported
}
state "Initial Worker Contract" as worker {
state "Idle" as idle
state "Won Lottery" as won
state "Checking Data" as checking
state "Cognitive Work" as working
state "Under Validation" as validating
state "True Node" as true
state "False Node" as false
state "Appealing" as appealing
state "Under Investigation" as investigation
[*] --> idle
cwl --> won: to winner nodes
won --> checking: downloads\nand checks data
won --> wait_wrk: busy (=reject)
won --> idle: if rejected
won --> [*]: went offline
checking --> wait_wrk: accept
checking --> cognition: incorrect data
checking --> working: data are ok
working --> validating: results are submitted
working --> cognition: results
validating --> true: results are correct
true --> idle: return to base
validating --> false: results are incorrect
false --> idle: accepted or timeouted
false --> appealing: decided to appeal
appealing --> investigation
investigation --> true
investigation --> false
}
@enduml
| false
| true
| false
| false
|
sequence
|
1e4481bdd7f42570fa47aab7137689f4770f2f25
|
42194f73930634a1295b81c785aaa1f0ec6b9e7d
|
/src/structure/list/GBList.iuml
|
51f704320073eb24e68f11f01782b8ff8f7bd8a1
|
[] |
no_license
|
Adbistju/Geekbrains8lvl2
|
3443d0be69862186aa0aeab869493360875fd41c
|
83e594e607aa5ad1ed24720cbdc810b16525a7e6
|
refs/heads/main
| 2023-01-21T21:06:43.032612
| 2020-11-17T14:27:35
| 2020-11-17T14:27:35
| 313,644,265
| 1
| 0
| null | 2020-11-18T22:26:09
| 2020-11-17T14:26:33
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 373
|
iuml
|
@startuml
interface GBList extends GBIterable {
+ {abstract} add(String val): void
+ {abstract} remove(String val): boolean
+ {abstract} get(int index): String
+ {abstract} size(): int
}
interface GBIterable {
+ {abstract} iterator(): GBIterator
}
interface GBIterator {
+ {abstract} hasNext(): boolean
+ {abstract} next(): String
}
@enduml
| false
| true
| false
| false
|
class
|
99303b6169a88541043f0852b542d1eaef895fc1
|
7041d4eab20296045d22e31c56211bc84b17da1c
|
/docs/Récupérer devoir/RDCU_RecupererDevoir.puml
|
9dab8e5cbb2cb72cff1b734ab36f2485973f4a53
|
[] |
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
| 882
|
puml
|
@startuml recupererUnDevoir
skinparam style strictuml
skinparam defaultfontname Verdana
title RDCU pour recupererUnDevoir
participant ":GestionnaireDevoir" as gestionnaireDevoir
participant ":Universite" as universite
participant "espaceCours : EspaceCours" as cours
participant "devoirs : Devoirs[]" as devoirs
-> gestionnaireDevoir : devoir = recupererUnDevoir(idEspaceCours: number,\nIdDevoir: number)
note left : Selon contrôleur,\ncontôleur de session
gestionnaireDevoir -> universite : espaceCours = recupererUnEspaceCours(idEspaceCours : int)
note left : Selon expert, universite\ncontient les espaceCours
gestionnaireDevoir -> cours : devoir = recupererUnDevoir(IdDevoir)
note left : Selon expert, espaceCours\ncontient les devoirs
cours -> devoirs : devoir = find(idDevoir)
note left : Selon expert, devoirs est l'attribut\nd'espaceCours qui stocke les devoirs
@enduml
| false
| true
| true
| false
|
sequence
|
5348edfd9f6b541f8a14e3553eab7c26645059dc
|
e430ee214e4896daf91a49d2664b596074102b92
|
/docs/Types.puml
|
fc49981efee74992247cdc581539fd11fd8ff5e9
|
[] |
no_license
|
alkeicam/flowblocks
|
674f5774fa9321f883245f045a62d83b17e8ceed
|
f0a112653b10587f351c8a059b552074e7b18377
|
refs/heads/master
| 2022-09-20T09:57:38.048513
| 2022-09-06T13:39:43
| 2022-09-06T13:39:43
| 239,135,422
| 0
| 0
| null | 2020-03-23T08:49:26
| 2020-02-08T13:19:59
|
JavaScript
|
UTF-8
|
PlantUML
| false
| false
| 867
|
puml
|
@startuml
class TypeConfigurables {
{field} configurables[] (array of configurable items)
}
TypeConfigurables ..> Configurable : configurables[]
class Configurable {
{field} String id (business id of the configurable)
{field} String label (label of the configurable)
{field} String placeholder (placeholder of the configurable)
{field} String type (type of configurable - TEXT, NUMBER, LIST, BOOLEAN, CODE)
{field} Boolean required (is the configurable requred - true | false)
{field} Function validation (when provided field will be validated using this function on save )
{field} Function|String|Number|Boolean default (default value to be presented)
{field} Function|Array options (available options - for LIST configurable - each option {v: value, l: label})
{field} String lang (code language - for CODE configurable)
}
@enduml
| false
| true
| false
| false
|
class
|
dd98c0537c4ebb2f6d58e01d6bbcad4798a3acc3
|
13565a0b6077f78b773576035cbd2752871240bc
|
/Babenko/BabenkoDydykDiplomaProject/out/production/BabenkoDydykDiplomaProject/GeneticRace/repositories/repositories.plantuml
|
97572757b076fdbdc272b98495dd72a085dfc44f
|
[
"Apache-2.0"
] |
permissive
|
vbabenk/GeneticRace
|
92ff1da794f7a83fba01e3dbeca91c1b36b7fcbd
|
37f1731fc003755b1c1d03caaa09b0ace55bedd6
|
refs/heads/master
| 2021-08-02T19:02:15.575865
| 2021-07-30T15:26:45
| 2021-07-30T15:26:45
| 218,497,240
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 433
|
plantuml
|
@startuml
title __REPOSITORIES's Class Diagram__\n
package GeneticRace.repositories {
class PatientRepository {
- patientList : ArrayList<Patient>
+ PatientRepository()
+ getPatientList()
}
}
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
|
3d31b71ff42a9b96c69f3729845ca36c2f06d841
|
2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8
|
/CleanSheets/src/main/java/csheets/worklog/n1130980/sprint4/lang06_3_Design.puml
|
1aa2a5b3265af600838fbc61e46ca2a47c112fb0
|
[] |
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
| 1,204
|
puml
|
@startuml doc-files/LANG06_3_Design.png
Actor User
participant Form as F
participant FormE as FE
participant UIController as UICtrl
participant Workbook as Wb
participant FormEditor as FEd
participant FormEditorController as Ctrl
participant Value as V
participant Notification as N
participant Notifier as Nr
User->F: start process
F->UICtrl: getActiveWorkbook()
UICtrl->Wb: getForm(name)
alt if(FormE == null)
F->FE: new(name)
F->UICtrl: getActiveWorkbook()
UICtrl->Wb: addFormE(name, FormE)
F->FE: setEditable(true)
end
F->FEd: new(FormE.name(), modal)
FEd->FEd: initComponents()
FEd->FEd: setModal(boolean)
FEd->Ctrl: new(FormE.cell)
FEd->FEd: checkBox.setSelected(FormE.isEditable)
FEd->FE: isEditable()
alt if(checkBox.isSelected())
FEd->FE: setEditable(true)
FEd->FEd: updateButton.setVisible(true)
FEd->FEd: this.setEnable(true)
end
alt else
FEd->FE: setEditable(true)
FEd->FEd: updateButton.setVisible(true)
FEd->FEd: this.setEnable(true)
end
FEd->N: formInformer()
N->Nr: addObserver(this)
alt for(Widget widget: FormE.lstWidgets)
FEd->FEd: createPanel(widget, widget.content())
FEd->FEd: addPanel(new Widget(content))
end
FEd->FEd: refreshUI()
FEd->FEd: setVisible(true)
F->V: new()
@enduml
| false
| true
| false
| false
|
usecase
|
a16b63a2f02ae6615b587b5caa33657d936f6c72
|
be5064571912720d754c51c68b0bbe9d2ba0af8e
|
/use-cases/use-cases-dayle.puml
|
74384fa6c824123fc0d2ca4e3f6ff00fbb1f8755
|
[
"Apache-2.0"
] |
permissive
|
NapierSpartans/sem-group-project
|
c85801bf070f897448690867b356d22287f2e189
|
44779a3dc656ea5360b4aaa5894d9a722e475fd1
|
refs/heads/master
| 2022-06-21T12:56:33.536298
| 2020-02-18T16:03:02
| 2020-02-18T16:03:02
| 238,193,835
| 1
| 0
|
Apache-2.0
| 2022-06-21T02:44:29
| 2020-02-04T11:50:42
|
TSQL
|
UTF-8
|
PlantUML
| false
| false
| 3,772
|
puml
|
@startuml
/'#9'/
/'As a Staff Member, I want to view the cities an a region organised by population descending.'/
actor staff9 as "Staff Member"
rectangle Database9 as "Database"
rectangle "World Database UC9" {
usecase UC9 as "Get cities an a region
by population"
usecase UC9a as "Print countries"
usecase UC9b as "Get Name of Region"
staff9 - UC9
UC9 ..> UC9b : include
UC9 ..> UC9a : include
UC9 - Database9
}
/'#10'/
/'As a Staff Member, I want to view cities in a country by population.'/
actor staff10 as "Staff Member"
rectangle Database10 as "Database"
rectangle "World Database UC10" {
usecase UC10 as "Get cities in country
by population"
usecase UC10a as "Print cities"
usecase UC10b as "Get name of country"
staff10 - UC10
UC10 ..> UC10a : include
UC10 ..> UC10b : include
UC10 - Database10
}
/'#11'/
/'As a Staff Member, I want to view cities in a District by population.'/
actor staff11 as "Staff Member"
rectangle Database11 as "Database"
rectangle "World Database UC11" {
usecase UC11 as "Get cities in District
by population"
usecase UC11a as "Print cities"
usecase UC11b as "Get name of District"
staff11 - UC11
UC11 ..> UC11a : include
UC11 ..> UC11b : include
UC11 - Database11
}
/'#13'/
/'As a Staff Member, I want to view the top N populated cities in a continent where N is provided by the user.'/
actor staff13 as "Staff Member"
rectangle Database13 as "Database"
rectangle "World Database UC13" {
usecase UC13 as "Get the top N populated cities in a continent"
usecase UC13a as "Print cities"
usecase UC13b as "Get name of continent"
usecase UC13c as "Get N"
staff13 - UC13
UC13 ..> UC13a : include
UC13 ..> UC13b : include
UC13 ..> UC13c : include
UC13 - Database13
}
/'#16'/
/'As a Staff Member, I want to view the top N populated cities in a district where N is provided by the user.'/
actor staff16 as "Staff Member"
rectangle Database16 as "Database"
rectangle "World Database UC16" {
usecase UC16 as "Get the top N populated cities in a district"
usecase UC16a as "Print cities"
usecase UC16b as "Get name of district"
usecase UC16c as "Get N"
staff16 - UC16
UC16 ..> UC16a : include
UC16 ..> UC16b : include
UC16 ..> UC16c : include
UC16 - Database16
}
/'#26'/
/'As a Staff Member, I want to view the population of the world.'/
actor staff26 as "Staff Member"
rectangle Database26 as "Database"
rectangle "World Database UC26" {
usecase UC26 as "Get the population of the world"
usecase UC26a as "Print population"
staff26 - UC26
UC26 ..> UC26a : include
UC26 - Database26
}
/'#31'/
/'As a Staff Member, I want to view the population of a city.'/
actor staff31 as "Staff Member"
rectangle Database31 as "Database"
rectangle "World Database UC31" {
usecase UC31 as "Get the population of a city"
usecase UC31a as "Print population"
usecase UC31b as "Get City"
staff31 - UC31
UC31 ..> UC31a : include
UC31 ..> UC31b : include
UC31 - Database31
}
/'#32'/
/'As a Staff Member, I want to view the number of people who speak a language, from greatest number to smallest (Including percentage)'/
actor staff32 as "Staff Member"
rectangle Database32 as "Database"
rectangle "World Database UC32" {
usecase UC32 as "Get the number of people who
speak a language by number of speakers as a
including percentage"
usecase UC32a as "Print language and number of speakers"
usecase UC32b as "Print Percentage of all fluent speakers"
staff32 - UC32
UC32 ..> UC32a : include
UC32 ..> UC32b : include
UC32 - Database32
}
left to right direction
@enduml
| false
| true
| false
| false
|
usecase
|
54f2c96978e6b48d2551905d2ea7c6a55df4e37b
|
935fbccebbb287e83e9ef25cb7f04d89f6c9609d
|
/docs/sequence diagram/must have/modify_profile.puml
|
84c524006ea1cf9fcdbf8a27b108a467c8cb6b43
|
[] |
no_license
|
enneagone/alexandrie-front
|
a1a141a3c1d00c515eee7954fbd46f39836435c7
|
b9072d73469e3b7265ee0e5f84b148127597019a
|
refs/heads/master
| 2023-01-06T22:35:40.799718
| 2020-06-05T20:37:14
| 2020-06-05T20:37:14
| 246,086,608
| 1
| 0
| null | 2023-01-06T02:38:47
| 2020-03-09T16:28:15
|
TypeScript
|
UTF-8
|
PlantUML
| false
| false
| 306
|
puml
|
@startuml
Actor Utilisateur As U
Participant Application As A
U->A: sélectionne l'onglet "User"
A->>U: redirige vers la page
U->A: entre le nouveau mdp
Alt mdp correcte
U->A: entre le nouveau mdp
A->>A: enregistre le nouveau mdp
Else mdp incorrecte
A->>U: indique que le mdp est incorrect
end
@enduml
| false
| true
| true
| false
|
sequence
|
e8dc16e0c0bf851627f1d014f11b2e93d8719c9f
|
716457c1b6c8e63fd6d30d736b43a92293784b8c
|
/doc/uml/diagram_sequence_startAcq_timestamp_1.puml
|
233507f18f382ad3feca779a844f2d0e3b8a6d48
|
[] |
no_license
|
soleil-ica/Lima-tango-cpp
|
bcb4c922f506e9c4d74cccbce9e045d9b8a27402
|
a7c0164dd872fc870fcc6c052354b08dbe898357
|
refs/heads/master
| 2023-08-05T08:28:09.351194
| 2023-07-21T17:26:29
| 2023-07-21T17:30:30
| 45,253,740
| 0
| 20
| null | 2023-08-31T13:46:09
| 2015-10-30T13:52:13
|
C++
|
UTF-8
|
PlantUML
| false
| false
| 2,654
|
puml
|
@startuml
title
<font color=red>Lima</font>
<font color=red>StartAcq & timestamp computation</font>
<b>Diagram Sequence</b>
16/11/2017
<u>Arafat Noureddine</u>
end title
actor User
participant "LimaDetector" as Device
box "TANGO" #LightGreen
participant Device
end box
participant "Controller" as Ctrl
participant "BufferMgr" as Buffer
box " LIMA CORE " #Orange
participant Ctrl
participant Buffer
end box
participant "Camera" as Cam
participant "ThreadFunction" as Thread
box "PLUGIN" #LightBlue
participant Cam
participant Thread
end box
User -> Device: Snap()
activate Device
Device -> Ctrl : prepareAcq()\t\t\t
activate Ctrl
note over Device, Ctrl
**See Diagram of prepareAcq for more details : **
...
//Diagram_sequence_prepareAcq_allocbuffers_1.png//
end note
Ctrl --> Device
deactivate Ctrl
Device -> Ctrl: startAcq()
activate Ctrl
Ctrl -> Cam : startAcq()
activate Cam
Cam -> Buffer : setStartTimestamp()
activate Buffer
note over Buffer, Cam
[relative timestamp]
This fix the start timestamp, it can be used in newFrameReady()
to compute the relative timestamp (now-start)
end note
Buffer --> Cam
deactivate Buffer
Cam -> Thread : Activate the thread ...
activate Thread
Thread --> Cam
deactivate Thread
Cam --> Ctrl
deactivate Cam
Ctrl --> Device
deactivate Ctrl
Device --> User
deactivate Device
hnote over Device
State = RUNNING
end note
loop while currentFrame < nbFrames AND no Stop() command AND no Errors occured
Thread -> Buffer: ptr = getFrameBufferPtr()
activate Thread
activate Buffer
Buffer --> Thread
deactivate Buffer
deactivate Thread
Thread -> Detector: Get the image through library/socket/zmq/etc...
activate Thread
activate Detector
Detector --> Thread
deactivate Thread
deactivate Detector
Thread -> Thread : Copy the image into the frame buffer ptr ...
activate Thread
deactivate Thread
Thread -> Buffer: newFrameReady()
activate Thread
activate Buffer
note over Thread
[absolute timestamp]
if necessary we can fix an absolute timestamp here using
frame_info.frame_timestamp = Timestamp::now();
end note
alt frame_timestamp is not explicitly set (relative timestamp)
Buffer -> Buffer: timestamp = Timestamp::now() - getStartTimestamp()
end
alt frame_timestamp is already explicitly set (absolute timestamp)
Buffer -> Buffer: timestamp is not changed (see note above)
end
Buffer --> Thread
deactivate Buffer
deactivate Thread
end
deactivate Cam
@enduml
| false
| true
| false
| false
|
usecase
|
ec0928b190d3df08707e7dc8ba77ba647c89d8a6
|
8abe619f29b522a7a25ee5812733053ba6da30ab
|
/src/UML/Diagram_Sekwencji.puml
|
2a93be3d171eeed47d7d880e686ff0f6b351b9c0
|
[] |
no_license
|
MaciejSawicki/Forex-study-project
|
1e77433fd615a19f2096fbc5c714e33292b340cb
|
e4f923fdb5b922b9710f2d08599583613d2ebdc9
|
refs/heads/master
| 2022-12-10T22:41:28.026954
| 2020-09-25T15:20:47
| 2020-09-25T15:20:47
| 297,472,396
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,230
|
puml
|
@startuml
participant User
== Registration ==
User -> A: Register
activate A
A -> B: << createRequest >>
activate B
B -> Server: << verifyRequest >>
activate Server
Server -> Server: Save User
Server --> B: User Created
deactivate Server
B --> A: Request Created
deactivate B
A --> User: Registration finished
deactivate A
== Sign In ==
User -> Server: Authentication Request
Server --> User: Authentication Response
== Charging account ==
participant "Payment Supplier" as Payment
User -> A: Charge account request
activate A
A -> Payment : Redirect to supplier page
activate Payment
Payment -> Payment : Add assets
Payment -> Server : User charged account
deactivate Payment
activate Server
Server -> Server : Change User balance
Server -> A : << Create Response >>
deactivate Server
A -> User : Recharged Account Response
deactivate A
== Buying/Selling Asset ==
User -> A: Choose pair
activate A
A -> B: Specify volume to BUY/Sell
deactivate A
activate B
B -> Server: << Create Request >>
deactivate B
activate Server
Server -> Server: Check User Balance
Server -> Server: Make Transaction History Record
Server -> Server: Change User Balance
Server -> User: << Create Response >>
deactivate Server
@enduml
| false
| true
| false
| false
|
sequence
|
3f78d086a0c2b149d87f3928b288b7db7f8bc0db
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/ProductSelectionAssignment.puml
|
105870f6759d966681ca991f44b88940470592c9
|
[] |
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
| 923
|
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 ProductSelectionAssignment [[ProductSelectionAssignment.svg]] {
product: [[ProductReference.svg ProductReference]]
productSelection: [[ProductSelectionReference.svg ProductSelectionReference]]
variantSelection: [[ProductVariantSelection.svg ProductVariantSelection]]
variantExclusion: [[ProductVariantExclusion.svg ProductVariantExclusion]]
}
interface ProductsInStorePagedQueryResponse [[ProductsInStorePagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[ProductSelectionAssignment.svg List<ProductSelectionAssignment>]]
}
ProductSelectionAssignment --> ProductsInStorePagedQueryResponse #green;text:green : "results"
@enduml
| false
| true
| false
| false
|
sequence
|
eb1365f24c8dabf52c516da752f81b4c97b065a1
|
2a5138a8138272a94b4f26a3dffa2d24e1a0eb7d
|
/docs/Diagrams/MapDataAccess.plantuml
|
fc3ad28fdf299bd0e2b433956137615aeaa45fb6
|
[] |
no_license
|
Stryse/DungeonGame
|
f109e9f7a30689aa52c7f60f9316351eb41abaae
|
f0a8aeb47a70f00c42bcd26475f51f31faf13654
|
refs/heads/master
| 2022-12-29T09:17:42.875468
| 2020-10-18T21:03:47
| 2020-10-18T21:03:47
| 300,079,856
| 0
| 0
| null | 2020-09-30T22:36:53
| 2020-09-30T22:35:56
|
C++
|
UTF-8
|
PlantUML
| false
| false
| 532
|
plantuml
|
# MapDataAccessImpl
@startuml
skinparam classAttributeIconSize 0
interface IMapDataAccess{
+{abstract} isAvailable() : **bool**
+{abstract} loadMaps(target : **QVector<Map*>&**) : **bool**
}
class MapDataAccessImpl{
+{abstract} isAvailable() : **bool** <<override>>
+{abstract} loadMaps(target : **QVector<Map*>&**) : **bool** <<override>>
-loadMapsFromDirectory(target : **QVector<Map*>&**, dirPath : **QString&**) : **bool**
-loadMapFromFile(filePath : **QString&**) : **Map***
}
IMapDataAccess <|-- MapDataAccessImpl
@enduml
| false
| true
| false
| false
|
class
|
6b2c43663f2951a457dbae207bf52e1c9d23ac82
|
73933ab5fc088abdca1b0b394c2c1e8e4cc306b7
|
/docs/design/design.plantuml
|
2288947ead96b813c747d14b4a9090a6c70c0040
|
[
"BSD-3-Clause",
"GPL-3.0-only"
] |
permissive
|
mario-bermonti/mspelling
|
beb45ceb35171d53adc7188d1054e497ca838eff
|
e5325980a50052c0fd84877b715ba016a89b5380
|
refs/heads/master
| 2023-08-03T08:25:13.316946
| 2023-07-31T12:44:29
| 2023-07-31T12:44:29
| 177,338,763
| 1
| 0
|
BSD-3-Clause
| 2023-07-31T12:42:49
| 2019-03-23T20:50:25
|
Dart
|
UTF-8
|
PlantUML
| false
| false
| 2,187
|
plantuml
|
@startuml entities_responsibilities
!theme spacelab
entity MSpellingApp {
Basic config
Start app
}
entity SetupController {
Choose appropriate screen
}
entity SetupView {
Show loading screen while setup completes
}
entity WorkspaceView {
Present screen to choose dir
Go to appropriate screen
}
entity LoginView {
Collect participant id
Pass participant id to handler
}
entity LoginController {
Store participant id
}
entity BeginView {
Present begin message
Go to next screen
}
entity SpellingController {
Setup everything
Manage trial sequence
Provide access to data
Provide access to stim
Submit data
Save data
}
entity TrialStimView {
Presents stim cue
Run present stim
}
entity TrialResponseView {
Cue participant for response
Collect response
Pass response to handler
}
entity TrialResponseController {
Submit response
Continue trial sequence
}
entity RestView {
Cue participant to rest
}
entity RestController {
Resume activity after an ISI
}
entity EndView {
Present end message
}
entity StimController {
Interact with the AudioController
Interact with the stimuli package
Prepare stim
Present the stim
}
entity AudioController {
Play audio
Setup audio device
Validate audio file
}
MSpellingApp --> SetupView
SetupView --> SetupController
SetupView --> LoadingView
SetupController --> WorkspaceView
SetupController --> LoginView
WorkspaceView --> SetupController
LoginView --> LoginController
LoginController --> BeginView
BeginView --> SpellingController
SpellingController --> TrialStimView
TrialStimView --> StimController
SpellingController --> TrialResponseView
TrialResponseView --> TrialResponseController
TrialResponseController --> SpellingController
SpellingController --> RestView
RestView --> RestController
RestController --> SpellingController
SpellingController --> EndView
SpellingController --> LoginController
SpellingController --> StimController
SpellingController --> SetupController
SpellingController --> DataBase
StimController --> AudioController
StimController --> SpellingController
@enduml
| false
| true
| false
| false
|
sequence
|
8503e0ccff5cd44a2799327a04bf92d0a8888c8f
|
651412b832de323736df833013f52a1f32b62298
|
/TikTok/app/app.plantuml
|
013fd34f1aa16c10fa027d73bcf5ec6b1e3311b2
|
[] |
no_license
|
Wangyl147/HomeWork
|
48b1a80228e90fa36774bb6d06e71ab21a42384b
|
3ffe4ea7812cc6a08d6c4da24ab6f51b97d54c7a
|
refs/heads/master
| 2022-10-13T15:22:15.886266
| 2020-06-10T03:50:08
| 2020-06-10T03:50:08
| 270,881,325
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,391
|
plantuml
|
@startuml
title __APP's Class Diagram__\n
namespace com.bumptech.glide {
class com.bumptech.glide.GeneratedAppGlideModuleImpl {
}
}
namespace com.bumptech.glide {
class com.bumptech.glide.GeneratedRequestManagerFactory {
}
}
namespace com.example.tiktok {
interface com.example.tiktok.ApiService {
}
}
namespace com.example.tiktok {
class com.example.tiktok.BuildConfig {
}
}
namespace com.example.tiktok {
class com.example.tiktok.GlideApp {
}
}
namespace com.example.tiktok {
class com.example.tiktok.GlideOptions {
}
}
namespace com.example.tiktok {
class com.example.tiktok.GlideRequest {
}
}
namespace com.example.tiktok {
class com.example.tiktok.GlideRequests {
}
}
namespace com.example.tiktok {
class com.example.tiktok.MainActivity {
}
}
namespace com.example.tiktok {
class com.example.tiktok.MyAdapter {
}
}
namespace com.example.tiktok {
class com.example.tiktok.MyAppGlideModule {
}
}
namespace com.example.tiktok {
class com.example.tiktok.VideoItem {
}
}
com.bumptech.glide.GeneratedAppGlideModuleImpl -up-|> com.bumptech.glide.GeneratedAppGlideModule
com.bumptech.glide.GeneratedAppGlideModuleImpl o-- com.example.tiktok.MyAppGlideModule : appGlideModule
com.bumptech.glide.GeneratedRequestManagerFactory .up.|> com.bumptech.glide.manager.RequestManagerRetriever.RequestManagerFactory
com.example.tiktok.GlideOptions .up.|> java.lang.Cloneable
com.example.tiktok.GlideOptions -up-|> com.bumptech.glide.request.RequestOptions
com.example.tiktok.GlideRequest .up.|> java.lang.Cloneable
com.example.tiktok.GlideRequest -up-|> com.bumptech.glide.RequestBuilder
com.example.tiktok.GlideRequests -up-|> com.bumptech.glide.RequestManager
com.example.tiktok.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.tiktok.MainActivity o-- com.example.tiktok.MyAdapter : mAdapter
com.example.tiktok.MyAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.tiktok.MyAppGlideModule -up-|> com.bumptech.glide.module.AppGlideModule
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
|
55f24751e327a0d895d621776b7986d6dc1814b3
|
ea9d93c21cc3d049d15ae3e4273d762d0c824af7
|
/Deployments/arm/demo/cisco/demo-core-cisco-3-firewalls/diagram/dependsOn.puml
|
fa83f47f731c031e65ebde3f3b27b451070b1703
|
[
"MIT",
"LicenseRef-scancode-proprietary-license"
] |
permissive
|
canada-ca/accelerators_accelerateurs-azure
|
85c071e09e30be0c1c517497fa5e88d4633dd1b0
|
c60275cad6b4862d0be800c74d8f1225ab2293e2
|
refs/heads/master
| 2022-04-29T21:33:48.970078
| 2022-04-21T02:10:44
| 2022-04-21T02:10:44
| 181,213,642
| 38
| 20
|
MIT
| 2022-04-21T02:09:25
| 2019-04-13T18:35:53
|
PowerShell
|
UTF-8
|
PlantUML
| false
| false
| 1,259
|
puml
|
@startuml
artifact routes_core
artifact routes_mgmt_ad
artifact routes_mgmt_mgmttocore
artifact routes_mgmt_rds
artifact routes_mgmt_test
artifact routes_shared_ad
artifact routes_shared_crm
artifact routes_shared_rds
artifact routes_shared_sandbox
artifact routes_shared_sharedtocore
artifact vnet_subnet_core
artifact vnet_subnet_mgmt
artifact vnet_subnet_shared
artifact vnet_peering_core
artifact vnet_peering_mgmt
artifact vnet_peering_shared
artifact core_cisco_asav
artifact mgmt_cisco_asav
artifact shared_cisco_asav
vnet_subnet_core --> routes_core
vnet_subnet_mgmt --> routes_mgmt_ad
vnet_subnet_mgmt --> routes_mgmt_mgmttocore
vnet_subnet_mgmt --> routes_mgmt_rds
vnet_subnet_mgmt --> routes_mgmt_test
vnet_subnet_shared --> routes_shared_ad
vnet_subnet_shared --> routes_shared_crm
vnet_subnet_shared --> routes_shared_rds
vnet_subnet_shared --> routes_shared_sandbox
vnet_subnet_shared --> routes_shared_sharedtocore
vnet_peering_core --> vnet_subnet_core
vnet_peering_core --> vnet_subnet_mgmt
vnet_peering_core --> vnet_subnet_shared
vnet_peering_mgmt --> vnet_peering_core
vnet_peering_shared --> vnet_peering_core
core_cisco_asav --> vnet_subnet_core
mgmt_cisco_asav --> vnet_peering_mgmt
shared_cisco_asav --> vnet_peering_shared
@enduml
| false
| true
| false
| false
|
deployment
|
b41d995dd594db1a75ad47723fd96d81ff6636a1
|
91cc372e0ac19fe7dd67f5c712801de341d975b8
|
/uml/keb 208/prepare.puml
|
290dec6c08bc4c323a46c7a592a1d502907949b3
|
[] |
no_license
|
Alser69rus/A3135
|
76d62eb826d22e96da22774d9210927c4f7a397d
|
c06155783a1ffa8ff79f746edf441c6df1e82f2f
|
refs/heads/master
| 2022-12-07T12:10:41.344543
| 2020-08-30T14:51:52
| 2020-08-30T14:51:52
| 291,405,161
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 166
|
puml
|
@startuml
[*]-->install_rd
install_rd-->reset_ptc:yes
reset_ptc-->voltage
voltage-->install_keb:yes
install_keb-->prepare_pressure:yes
prepare_pressure-->[*]
@enduml
| false
| true
| false
| false
|
sequence
|
2bded1e07408ca1b76be732ee97ebb429004a34f
|
bb0e7ce1398fd3fbcc907af3d920e7bfb43f52ff
|
/app/docs/diagrams/sequence_diagram_user.puml
|
ada5457bc211500cfbc16898046fb5ba49a98fc8
|
[] |
no_license
|
w-e-ll/user-api
|
a6d205db035619518c957daeee16f5e900f53c71
|
a82f418313df9c1a598586c6b92b32a00f17a173
|
refs/heads/master
| 2022-06-09T04:42:56.241277
| 2020-02-28T00:30:52
| 2020-02-28T00:30:52
| 243,391,584
| 0
| 0
| null | 2022-06-03T22:45:50
| 2020-02-26T23:59:41
|
Python
|
UTF-8
|
PlantUML
| false
| false
| 4,072
|
puml
|
@startuml
actor Client
control Server
database DB
== GET /get_user_by_uuid/{user_uuid} ==
Client -> Server: GET /get_user_by_uuid/{user_uuid}
Server -> Server: VALIDATE\nHEADER
alt VALIDATION ERROR
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\nRETURN\n_error_\nJSON(405/406/415)
Server -> Server: VALIDATE\nBODY
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\n_error_\nJSON(400)
else VALIDATION OK
Server <-> DB: CHECK\n if user_uuid IN DB
alt USER_UUID IS NOT PRESENT IN DB
Server -> Server: PREPARE\n _error_\nJSON
Server --> Client: _error_\nJSON(404)
else USER_UUID IS PRESENT IN DB
Server <-> DB: READ \n user record
Server -> Server: PREPARE _user_\nJSON
Server --> Client: RETURN\nuser_collection\nJSON(200)
end
end
newpage
== GET /get_user_by_email/{user_email} ==
Client -> Server: GET /get_user_by_email/{user_email}
Server -> Server: VALIDATE\nHEADER
alt VALIDATION ERROR
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\nRETURN\n_error_\nJSON(405/406/415)
Server -> Server: VALIDATE\nBODY
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\n_error_\nJSON(400)
else VALIDATION OK
Server <-> DB: CHECK\n if user_email IN DB
alt USER_EMAIL IS NOT PRESENT IN DB
Server -> Server: PREPARE\n _error_\nJSON
Server --> Client: _error_\nJSON(404)
else USER_EMAIL IS PRESENT IN DB
Server <-> DB: READ \n user record
Server -> Server: PREPARE _user_\nJSON
Server --> Client: RETURN\nuser_collection\nJSON(200)
end
end
newpage
== POST /post_user ==
Client -> Server: POST /post_user
Server -> Server: VALIDATE\nHEADER
alt VALIDATION ERROR
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\nRETURN\n_error_\nJSON(405/406/415)
Server -> Server: VALIDATE\nBODY
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\n_error_\nJSON(400)
else VALIDATION OK
Server -> Server: CALCULATE\nDIGEST
Server <-> DB: CHECK \nIS DIGEST IN DB
alt DIGEST IS PRESENT IN DB
Server <-> DB: READ present\n user record
Server -> Server: PREPARE _user_\nJSON
Server --> Client: _user_\nJSON (200)
else DIGEST IS NOT PRESENT IN DB
Server -> Server: PREPARE user\n object to save\n to DB
Server -> DB: WRITE user\n to DB
Server <-> DB: READ created\n user record
Server -> Server: PREPARE _user_\nJSON
Server --> Client: RETURN\nuser_collection\nJSON(201)
end
end
newpage
== PUT /update_user/{user_uuid} ==
Client -> Server: PUT /update_user/{user_uuid}
Server -> Server: VALIDATE\nHEADER
alt VALIDATION ERROR
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\nRETURN\n_error_\nJSON(405/406/415)
Server -> Server: VALIDATE\nBODY
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\n_error_\nJSON(400)
else VALIDATION OK
Server <-> DB: CHECK\n if user_uuid IN DB
alt USER_UUID IS NOT PRESENT IN DB
Server -> Server: PREPARE\n _error_\nJSON
Server --> Client: _error_\nJSON(404)
else USER_UUID IS PRESENT IN DB
Server -> Server: CALCULATE\nDIGEST
Server <-> DB: CHECK \nIS DIGEST IN DB
alt DIGEST IS PRESENT IN DB
Server <-> DB: READ present\n user record
Server -> Server: PREPARE _user_\nJSON
Server --> Client: _user_\nJSON (200)
else DIGEST IS NOT PRESENT IN DB
Server -> Server: PREPARE user\n object to update\n in DB
Server -> DB: WRITE user\n to DB
Server <-> DB: READ created\n user record
Server -> Server: PREPARE _user_\nJSON
Server --> Client: RETURN\users_collection\nJSON(200)
end
end
end
newpage
== DELETE /delete_user/{user_uuid} ==
Client -> Server: DELETE /delete_user/{user_uuid}
Server -> Server: VALIDATE\nHEADER
alt VALIDATION ERROR
Server -> Server: IF ERROR\nPREPARE \n_error_ \nJSON
Server --> Client: IF ERROR\nRETURN\n_error_\nJSON(405)
else VALIDATION OK
Server <-> DB: CHECK\n if user_uuid IN DB
alt USER IS NOT PRESENT IN DB
Server -> Server: PREPARE\n _error_\nJSON
Server --> Client: _error_\nJSON(404)
else USER IS PRESENT IN DB
Server <-> DB: DELETE record
Server --> Client: RETURN No Content (204)
end
end
@enduml
| false
| true
| false
| false
|
usecase
|
19f75741d6e001d9829d7393669af2a1e5dd8ecd
|
6df2ccd23a0d459442d8d3333c8779600e9aee1a
|
/osa0/t6_uusi_muistiinpano_spa.puml
|
d88b31c84f97209bbdff77b4a80cadab84ac14d3
|
[] |
no_license
|
atarv/fullstack-open-2019
|
dfdd8b91e2e856b1abcdf770c2105b1309a773bb
|
9265c46f83e32573ee3f7e75a38ed97ec7dcc5f3
|
refs/heads/master
| 2020-05-20T06:18:01.585107
| 2019-11-27T20:04:54
| 2019-11-27T20:04:54
| 185,425,851
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 214
|
puml
|
@startuml t6_uusi_muistiinpano_spa
note over asiakas : käyttäjä tekee uuden\nmusitiinpanon ja painaa\n"talleta"
asiakas -> palvelin : HTTP POST {uusi muistiinpano}
palvelin --> asiakas : HTTP 201 Created
@enduml
| false
| true
| true
| false
|
sequence
|
7abd15be7fa1774ff929aff4c8bdbc3692ecdce0
|
0e43f538adbf1cefc637a4d4d51dd1daebb92c2a
|
/UMLs/frameManagers.plantuml
|
c8e73162616b2e078d5e3dcb45440a95974021ad
|
[] |
no_license
|
plspeziali/jpacman
|
ce7be0f6e4121f89ce5e667383af7dd20fa2c9e4
|
559734c443bcff46e4281b28c9b3f33cc70e92db
|
refs/heads/master
| 2022-12-03T17:06:41.978403
| 2020-08-23T10:38:24
| 2020-08-23T10:38:24
| 280,392,795
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,401
|
plantuml
|
@startuml
title __FRAMEMANAGERS's Class Diagram__\n
namespace frameManagers {
class frameManagers.FrameManager {
# delay : int
# down : ArrayList<ImageIcon>
# left : ArrayList<ImageIcon>
# right : ArrayList<ImageIcon>
# up : ArrayList<ImageIcon>
# forward : boolean
# index : int
+ FrameManager()
+ getFrameAt()
+ getNextFrame()
}
class frameManagers.GhostFrameManager {
- eatenDown : ImageIcon
- eatenLeft : ImageIcon
- eatenRight : ImageIcon
- eatenUp : ImageIcon
- frightened : ArrayList<ImageIcon>
- frightenedDelay : int
- frightenedForward : boolean
- frightenedIndex : int
+ GhostFrameManager()
+ getNextFrameEaten()
+ getNextFrameFrightened()
}
class frameManagers.PacmanFrameManager {
- death : ArrayList<ImageIcon>
- deathDelay : int
- deathIndex : int
+ PacmanFrameManager()
+ getNextFrameDeath()
}
}
frameManagers.GhostFrameManager -up-|> frameManagers.FrameManager
frameManagers.PacmanFrameManager -up-|> frameManagers.FrameManager
sprites.Pacman o-- frameManagers.PacmanFrameManager : frameManager
sprites.Ghost o-- frameManagers.GhostFrameManager : frameManager
@enduml
| false
| true
| false
| false
|
class
|
74097a55ba511e4cff42c276a16b9a0af9089e78
|
3ed609a21e150d9a7c968413838f6c9590bc4910
|
/Docs/UMLdiagrams_1.0/UML.puml
|
d4ce8992265f33c1e6c8eaf09456fb35a20f16f7
|
[] |
no_license
|
GabovYegor/Java_practice
|
534490f20c5463dbafe50680efdb701610e57921
|
eb56eb29d66a96bead1b9277b4b7f85965580e41
|
refs/heads/master
| 2020-06-09T19:17:59.200245
| 2019-07-12T17:28:22
| 2019-07-12T17:28:22
| 193,491,668
| 1
| 0
| null | 2019-07-11T20:47:34
| 2019-06-24T11:22:47
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 1,819
|
puml
|
@startuml
package "DataClasses" #DDDDDD{
class Graph {
- nodeList : ArrayList<Node>;
+ Graph()
+ addNode(name:char)
+ addEdge(start:char, end:char, weight:double)
+ nodeCount() : int
+ nodeIndex(name:char)
+ nodeName(index:int)
+ isNodeExists(name:char)
+ countOfEdgesFromNode(index:int)
}
class Node {
- name : char;
- adjacencyList : ArrayList<Edge>;
- Node(name:char)
- addEdge(endNodeName:char, weight:double)
- edgeCount() : int
}
Node *-- Graph: contains
class Node << (C,orchid) >>
class Edge {
- endNodeName : char;
- weight : double;
- Edge(endNodeName : char, weight : double)
}
Edge *-- Node: contains
class Edge << (C,orchid) >>
}
package "Visualiazation" #63ffdb{
class DrawingPanel extends JPanel{
- Graph graph;
DrawingPanel(graph:Graph)
# paintComponent (g:Graphics)
- drawBlackLine(g2:Graphics2D, from:Point, to:Point)
- drawWhiteLine(g2:Graphics2D, from:Point, to:Point)
- drawLine(g2:Graphics2D, from:Point, to:Point)
- calculateNodesLocation(graph:Graph)
}
class MainWindow extends JFrame {
- boxVInputPanel : Box;
- lblNode : JLabel;
- lblEdgeFrom : JLabel;
- JLabel lblEdgeTo : JLabel;
- txtfNode : JTextField;
- txtfEdgeFrom : JTextField;
- txtfEdgeTo : JTextField;
- btnEdgeAdd : JButton;
- btnNodeAdd : JButton;
- btnFinish : JButton;
- txtaLog : JTextArea;
- drawingPanel : DrawingPanel;
- boxVOutputPanel : Box;
- btnNextStep : JButton;
- btnPreviousStep : JButton;
- btnReset : JButton;
- graph : Graph;
+ MainWindow(title:String, graph:Graph)
- initVariables() : void
- windowSettings() : void
- layoutSettins() : void
- buttonsSettings() : void
- layoutInputSettings() : void
- layoutDrawingPanelSettings() : void
- layoutOutputSettings() : void
}
@enduml
| false
| true
| false
| false
|
class
|
2344e959526aa7b74f4c4c683b2ec1f46c7e262b
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/FieldType.puml
|
df5fd2b92fee4722f30d1850c13769375ca50339
|
[] |
no_license
|
commercetools/commercetools-api-reference
|
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
|
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
|
refs/heads/main
| 2023-09-01T05:22:42.100097
| 2023-08-31T11:33:37
| 2023-08-31T11:33:37
| 36,055,991
| 52
| 30
| null | 2023-08-22T11:28:40
| 2015-05-22T06:27:19
|
RAML
|
UTF-8
|
PlantUML
| false
| false
| 2,944
|
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 FieldType [[FieldType.svg]] {
name: String
}
interface CustomFieldBooleanType [[CustomFieldBooleanType.svg]] {
name: String
}
interface CustomFieldDateTimeType [[CustomFieldDateTimeType.svg]] {
name: String
}
interface CustomFieldDateType [[CustomFieldDateType.svg]] {
name: String
}
interface CustomFieldEnumType [[CustomFieldEnumType.svg]] {
name: String
values: [[CustomFieldEnumValue.svg List<CustomFieldEnumValue>]]
}
interface CustomFieldLocalizedEnumType [[CustomFieldLocalizedEnumType.svg]] {
name: String
values: [[CustomFieldLocalizedEnumValue.svg List<CustomFieldLocalizedEnumValue>]]
}
interface CustomFieldLocalizedStringType [[CustomFieldLocalizedStringType.svg]] {
name: String
}
interface CustomFieldMoneyType [[CustomFieldMoneyType.svg]] {
name: String
}
interface CustomFieldNumberType [[CustomFieldNumberType.svg]] {
name: String
}
interface CustomFieldReferenceType [[CustomFieldReferenceType.svg]] {
name: String
referenceTypeId: [[CustomFieldReferenceValue.svg CustomFieldReferenceValue]]
}
interface CustomFieldSetType [[CustomFieldSetType.svg]] {
name: String
elementType: [[FieldType.svg FieldType]]
}
interface CustomFieldStringType [[CustomFieldStringType.svg]] {
name: String
}
interface CustomFieldTimeType [[CustomFieldTimeType.svg]] {
name: String
}
interface CustomFieldSetType [[CustomFieldSetType.svg]] {
name: String
elementType: [[FieldType.svg FieldType]]
}
interface FieldDefinition [[FieldDefinition.svg]] {
type: [[FieldType.svg FieldType]]
name: String
label: [[LocalizedString.svg LocalizedString]]
required: Boolean
inputHint: [[TypeTextInputHint.svg TypeTextInputHint]]
}
FieldType --> CustomFieldBooleanType #blue;text:blue : "name : Boolean"
FieldType --> CustomFieldDateTimeType #blue;text:blue : "name : DateTime"
FieldType --> CustomFieldDateType #blue;text:blue : "name : Date"
FieldType --> CustomFieldEnumType #blue;text:blue : "name : Enum"
FieldType --> CustomFieldLocalizedEnumType #blue;text:blue : "name : LocalizedEnum"
FieldType --> CustomFieldLocalizedStringType #blue;text:blue : "name : LocalizedString"
FieldType --> CustomFieldMoneyType #blue;text:blue : "name : Money"
FieldType --> CustomFieldNumberType #blue;text:blue : "name : Number"
FieldType --> CustomFieldReferenceType #blue;text:blue : "name : Reference"
FieldType --> CustomFieldSetType #blue;text:blue : "name : Set"
FieldType --> CustomFieldStringType #blue;text:blue : "name : String"
FieldType --> CustomFieldTimeType #blue;text:blue : "name : Time"
FieldType --> CustomFieldSetType #green;text:green : "elementType"
FieldType --> FieldDefinition #green;text:green : "type"
@enduml
| false
| true
| false
| false
|
sequence
|
1a8214909ce204738667f29701370500867eb30a
|
b2be1f2c659ff90e5be7a97f52150c3f278e4c70
|
/structural_patterns/composite/composite.puml
|
cb4d4fc09c2c3023ab44d6063a033aa772ff0513
|
[] |
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
| 207
|
puml
|
@startuml
interface Component {
operation()
}
class Leaf {
operation()
}
class Composite {
operation()
add()
}
Component <|-- Leaf
Component <|-- Composite
Composite o--> Component
@enduml
| false
| true
| false
| false
|
class
|
9b38828f7d0ab09033b83731742d5bfbd0cb370b
|
871ba6698c0980d786b9bd8329e487dcb320c336
|
/ad_request.puml
|
d5469c1225a8c2857ffe3c2fa7c54d6c53e87e11
|
[] |
no_license
|
jianjunhuang/AdSdk
|
2a4d33ae28dc219738120314c7392b480ea91702
|
d89f5668c0d97c3949717e7a0b48d9fd490d21f9
|
refs/heads/master
| 2020-12-03T05:46:45.802467
| 2019-08-14T12:48:01
| 2019-08-14T12:48:01
| 231,218,294
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 304
|
puml
|
@startuml
BannerAd -> AdController: void loadAd(AdRequest)
AdController -> AdPicker: AdSdk picker(Callback)
AdPicker -> AdFactory: AdAdapter getAd()
AdFactory --> AdPicker: AdAdapter
AdPicker --> AdController: callback
AdController --> BannerAd: callback
BannerAd -> BannerAd: void showAd(View)
@enduml
| false
| true
| false
| false
|
sequence
|
84a51fc13993433fa1931be064b24ca36eb804e3
|
e7b7df0cf36cf83e9c440c3a81f4f85193e37a72
|
/4 Activity Diagram/4b Branches.puml
|
0af16ac6cfe277fca7bf136535b4dd35ccd5d14c
|
[
"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
| 167
|
puml
|
@startuml
(*) --> "check input"
If "input is verbose" then
--> [Yes] "turn on verbosity"
--> "run command"
else
--> "run command"
Endif
-->(*)
@enduml
| false
| true
| false
| false
|
activity
|
7fed6f5d36658e7af98d4416ee64d058a139625e
|
8d91ff31e22d4f0f2082ebba0c6da8ec4391e8f4
|
/src/doc/sequenceDiagram/playertype.puml
|
5e802da05ffd504a6e69a6059125d972a8b65897
|
[] |
no_license
|
suraj903/sportsgeek_backend-1
|
fe54372687c96ac6a92a8e76d913bf60f44ffee7
|
99fe51fa81a9df4599f2b3eeac299846d5bf835d
|
refs/heads/master
| 2023-07-28T02:16:51.481764
| 2021-09-13T14:43:12
| 2021-09-13T14:43:12
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 4,955
|
puml
|
@startuml
header SportsGeek
title PlayerType CRUD
skinparam ParticipantPadding 10
skinparam BoxPadding 20
actor Admin
box "SportsGeek System"
participant sportsGeek
end box
box "Player Type Service"
participant playerType
end box
box "database"
database database
end box
Admin -> sportsGeek: Get all playerType Details
activate "sportsGeek" #lightblue
alt #white Get All playerTypes
sportsGeek -> "playerType" : Get All playerTypes
activate playerType #lightblue
"playerType" -> "database" : Get All playerTypes
activate "database" #lightblue
"database" --> "playerType" : <font color=darkblue><b>Response Get All playerType Details
deactivate "database"
"playerType" --> "sportsGeek" : <font color=darkblue><b> Response Get All playerType Details
deactivate "playerType"
"sportsGeek" --> Admin : <font color=darkblue><b> Response playerType Details
deactivate "sportsGeek"
end alt
Admin -> "sportsGeek": Get playerType Detail By Id
activate "sportsGeek" #lightblue
alt #white Get playerType By Id
note right #yellow
*params*
playerTypeId=123
end note
"sportsGeek" -> "playerType" : Get playerType By Id
activate playerType #lightblue
"playerType" -> "database" : Get playerType By Id
activate "database" #lightblue
"database" --> "playerType" : <font color=darkblue><b> Response playerType Details
"playerType" --> "sportsGeek" : <font color=darkblue><b> Response playerType Details
"sportsGeek" --> Admin : <font color=darkblue><b> Response playerType Details
else #pink Not Found
"database" --> "playerType" : <font color=darkblue><b>Response playerType Id Not Found
deactivate "database"
"playerType" --> "sportsGeek" : <font color=darkblue><b>Response playerType Id Not Found
deactivate "playerType"
"sportsGeek" --> Admin : <font color=darkblue><b>Response playerType Id Not Found
deactivate "sportsGeek"
end alt
Admin -> "sportsGeek": Add playerType Details
activate "sportsGeek" #lightblue
note right #yellow
*params*
typeName=xyz
end note
alt #white Add playerTypes
"sportsGeek" -> "playerType" : Add playerType Details
activate playerType #lightblue
playerType -> "database" : Add playerType Details
activate "database" #lightblue
"database" --> "playerType" : <font color=darkblue><b>Response playerType Added Successfully
"playerType" --> "sportsGeek" : <font color=darkblue><b> Response playerType Added Successfully
"sportsGeek" --> Admin : <font color=darkblue><b>Response playerType Added Successfully
else #pink Unable to Add playerType
"database" --> "playerType" : <font color=darkblue><b>Response Unable to add playerType
deactivate "database"
"playerType" --> "sportsGeek" : <font color=darkblue><b>Response Unable to add playerType
deactivate "playerType"
"sportsGeek" --> Admin : <font color=darkblue><b>Response Unable to add playerType
deactivate "sportsGeek"
end alt
Admin -> "sportsGeek": Update playerType Details
activate "sportsGeek" #lightblue
note right #yellow
*params*
playerTypeId=1
typeName=xyz
end note
alt #white Update playerType
"sportsGeek" -> "playerType" : Update playerType
activate playerType #lightblue
playerType -> "database" : Update playerType
activate "database" #lightblue
"database" --> "playerType" : <font color=darkblue><b>Response playerType Updated Successfully
"playerType" --> "sportsGeek" : <font color=darkblue><b>Response playerType Updated Successfully
"sportsGeek" --> Admin : <font color=darkblue><b> Response playerType Updated Successfully
else #pink Not Found
"database" --> "playerType" : <font color=darkblue><b>Response playerType Id not found
deactivate "database"
"playerType" --> "sportsGeek" : <font color=darkblue><b>Response playerType Id not found
deactivate "playerType"
"sportsGeek" --> Admin : <font color=darkblue><b>Response playerType Id not found
deactivate "sportsGeek"
end alt
Admin -> "sportsGeek": Delete playerType
activate "sportsGeek" #lightblue
note right #yellow
*params*
playerTypeId=1
end note
alt #white Delete playerType
"sportsGeek" -> "playerType" : Delete playerType
activate playerType #lightblue
playerType -> "database" : Delete playerType
activate "database" #lightblue
"database" --> "playerType" : <font color=darkblue><b>Response playerType Deleted Successfully
"playerType" --> "sportsGeek" : <font color=darkblue><b>Response playerType Deleted Successfully
"sportsGeek" --> Admin : <font color=darkblue><b>Response playerType Deleted Successfully
else #pink Not Found
"database" --> "playerType" : <font color=darkblue><b>Response playerType Id not found
deactivate "database"
"playerType" --> "sportsGeek" : <font color=darkblue><b>Response playerType Id not found
deactivate "playerType"
"sportsGeek" --> Admin : <font color=darkblue><b>Response playerType Id not found
deactivate "sportsGeek"
end alt
@enduml
| false
| true
| false
| false
|
sequence
|
bc07631e68ef432ac6295b687456426889e989d2
|
4cf5737cadb807568ddac14c8f1ff342a6e6cb0a
|
/documentation/serviceApi/pm/performance/media/src/useCase6Notification.puml
|
26da4350ef3001dea12cb60589b2c246afff7ea0
|
[
"Apache-2.0"
] |
permissive
|
MEF-GIT/MEF-LSO-Legato-SDK
|
b2ed422108f4bbb5d3aff27123d3f31305fd808f
|
7f723970592cc5020aaaa0d2ffe30de6a73b3d97
|
refs/heads/working-draft
| 2023-07-06T06:44:01.113378
| 2023-06-23T14:14:48
| 2023-06-23T14:14:48
| 94,903,642
| 5
| 4
|
Apache-2.0
| 2022-05-04T10:22:56
| 2017-06-20T15:00:38
| null |
UTF-8
|
PlantUML
| false
| false
| 931
|
puml
|
@startuml useCase6Notification
hide footbox
participant "Buyer/Client" as B
participant "Seller/Server" as S
B -> S: POST {{baseUrl}}/hub with {{callbackUrl}} details
S --> B: 201 confirmation with {{id}}
...
B -> S: POST {{baseUrl}}/performanceJob (PerformanceJob_Create)
S -> S: basic validation
alt succesful inquiry
S --> B: 201 PerformanceJob with {{id}}, `acknowledged` state
S -> B: {{callbackUrl}}/listener/performanceJobCreateEvent ({{id}})
B --> S: 204 confirmation
...
group loop [until Performance Job in terminal state]
S -> B: {{callbackUrl}}/listener/performanceJobStateChangeEvent ({{id}})
B --> S: 204 confirmation
B -> S: GET {{baseUrl}}/performanceJob/{{id}}
return 200 PerformanceJob in current state
end
else validation or internal problem
S --> B : 4xx or 5xx error response
end
...
B -> S : DELETE {{baseUrl}}/hub/{{id}}
S --> B : 204 confirmation
@enduml
| false
| true
| false
| false
|
sequence
|
8b61b8d93b88243a310b628dfe66c72050874804
|
16a31cca5765cb1bf4808d4de4dc3f0c9ad953d3
|
/CircuitSim.plantuml
|
787351bc40cbc1a077ce90e15695a3f6b78157d9
|
[] |
no_license
|
AndreiGhita2002/CircuitSim
|
96778889da156ae8f78ef9193a1e8dfddcb0ed7d
|
d482d7596842b36c90f3aeb7eb040e64e52b6dd7
|
refs/heads/master
| 2023-08-23T11:37:39.699662
| 2021-10-20T12:00:09
| 2021-10-20T12:00:09
| 288,380,444
| 1
| 1
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,624
|
plantuml
|
@startuml
title __CIRCUITSIM's Class Diagram__\n
namespace circuit {
class circuit.Battery {
}
}
namespace circuit {
class circuit.Circuit {
}
}
namespace circuit {
class circuit.CircuitBuilder {
}
}
namespace circuit {
abstract class circuit.Component {
}
}
namespace circuit {
class circuit.Editor {
}
}
namespace circuit {
class circuit.Lamp {
}
}
namespace circuit {
class circuit.Resistor {
}
}
namespace circuit {
class circuit.Switch {
}
}
namespace circuit {
class circuit.VisualComponent {
}
}
namespace circuit {
abstract class circuit.VisualEntity {
}
}
namespace circuit {
class circuit.VisualWireNode {
}
}
namespace circuit {
class circuit.WireNode {
}
}
circuit.Battery -up-|> circuit.Component
circuit.CircuitBuilder o-- circuit.Circuit : circuit
circuit.Component -up-|> org.jgrapht.graph.DefaultEdge
circuit.Editor -up-|> javafx.application.Application
circuit.Lamp -up-|> circuit.Component
circuit.Resistor -up-|> circuit.Component
circuit.Switch -up-|> circuit.Component
circuit.VisualComponent -up-|> circuit.VisualEntity
circuit.VisualComponent o-- circuit.Component : component
circuit.VisualEntity -up-|> javafx.scene.image.ImageView
circuit.VisualWireNode -up-|> circuit.VisualEntity
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
|
a3084401fe56b9bc20fe8c870073d39779a98a7d
|
daf7bf561d5b05b60a5b73a7a3c825dbf16a2460
|
/Specification/Wi-SUN_sequence.puml
|
f05e7fdce7f5c8518d4cc6ea7919f5d07586e67b
|
[] |
no_license
|
whitedog-tetsu/ecofishy
|
661ab761429aa0b12345d579658137a999d10cd7
|
77bd233a5153b434282dda116149b88a53a193eb
|
refs/heads/main
| 2023-03-10T20:18:06.549807
| 2021-02-26T13:10:33
| 2021-02-26T13:10:33
| 303,121,854
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 2,073
|
puml
|
@startuml
scale 1000*800
group Connection Initialization
Coordinator -> Coordinator: "SKSTART"
SensorNode -> SensorNode: Wait for timeout 30 seconds
SensorNode -> Coordinator: SKSCAN 2 FFFFFFFF 6 0
SensorNode -> SensorNode: Wait for "MAC address"
Coordinator --> SensorNode: EPANDESC Channel:XX Channel Page:XX ... PairID:XX
SensorNode -> SensorNode: Get Coodinator MAC address
SensorNode -> SensorNode: SKLL64 Coordinator's MAC address
alt Connection Success case
Coordinator -> Coordinator: Wait for recieving "Ready"
SensorNode -> Coordinator: Send "Ready"
SensorNode -> SensorNode: Wait for "Ack"
Coordinator --> SensorNode: Reply "Ack"
else Fail any cases repeating 3 times
Coordinator -> Coordinator: Wait for recieving data
SensorNode -> Coordinator: Send "Ready" until timeout
SensorNode -> SensorNode: Wait for "Ack"
Coordinator --> SensorNode: Reply "Ack"
end
end
group Compute Initialization
alt Compute Initialization Success case
SensorNode -> Coordinator: Inquire configuration data "REQCONFIG"
SensorNode --> SensorNode: Wait for configuration data
Coordinator --> SensorNode: Reply configuration data
SensorNode -> SensorNode: Update configuration
SensorNode -> Coordinator: Send complete updating
Coordinator --> SensorNode: Reply "Ack"
SensorNode -> SensorNode: Wait for "Ack" until timeout
Coordinator -> Coordinator: Wait for recieving data
else Fail to get configuration data
SensorNode -> Coordinator: Inquire configuration data
Coordinator --> SensorNode: Reply configuration data
else Fail to get update configuration (Invalid configuration value etc)
SensorNode -> Coordinator: Send NG status
Coordinator --> SensorNode: Reply configuration data
end
end
group Data Send
loop 1min(default) period
SensorNode --> Coordinator: Sequence No. + data[16bytes]degC + status
end
end
@enduml
| false
| true
| false
| false
|
sequence
|
f7066a73df7989b67b9bc14721837d519d20811b
|
0992a598a77d620c86b163e92c2a0259e1c5efe1
|
/docs/sprint5/diagrams/fluxdiagram.puml
|
e27538d2daa5cc544ac499971fa5fffa302ed0a8
|
[] |
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
| 1,456
|
puml
|
@startuml
left to right direction
title SysManager View
Index <<Sys>> --> Categories
Categories --> OPTIONS/ /categories
Categories --> GET/ /categories (category tree)
Categories --> POST/ /categories (create standard category)
Index <<Sys>> --> Families
Families --> OPTIONS/ /families
Families --> POST/ /families (create family)
@enduml
@startuml
left to right direction
title FamilyAdmin View
Index <<Sys>> --> Families
Families --> OPTIONS/ /families/{familyID}
Families --> POST/ /families/{familyID}/relations (add relation)
Families --> PATCH/ /families/{familyID}/relations (change relation)
Families --> POST/ /families/{familyID}/categories (create custom category)
Families --> GET/ /families/{familyID}/categories (get family categories)
Index <<Sys>> --> Accounts
Accounts --> OPTIONS/ /accounts
Accounts --> POST/ /accounts (create account)
Accounts --> GET/ /accounts/{accountID} (check balance)
Index <<Sys>> --> Members
Members --> OPTIONS/ /members
Members --> GET/ /members (get family members and their relations)
Members --> POST/ /members (create member)
@enduml
@startuml
left to right direction
title Members View
Index <<Sys>> --> Members
Members --> OPTIONS/ /members⁄{memberID}
Members --> GET/ /members/{memberID} (get profile info)
Index <<Sys>> --> Accounts
Accounts --> OPTIONS/ /accounts
Accounts --> POST/ /accounts (create account)
Accounts --> GET/ /accounts/{accountID} (check balance)
@enduml
| false
| true
| true
| false
|
uml-unknown
|
c1f71fa6d1741b7314cf4dd7bf451a44a5c405ef
|
63114b37530419cbb3ff0a69fd12d62f75ba7a74
|
/plantuml/Assets/Test/Script/ResultJudgeTest.puml
|
590ca567d16c972f162609641af512b26c9f4955
|
[] |
no_license
|
TakanoVineYard/AMHH
|
215a7c47049df08c5635b501e74f85137b9e985b
|
68887a313587a2934fb4ceb2994cbc2a2191d6a3
|
refs/heads/master
| 2023-01-13T02:08:02.787083
| 2020-11-17T14:51:57
| 2020-11-17T14:51:57
| 303,631,593
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 633
|
puml
|
@startuml
class ResultJudgeTest {
+ Start() : void
Update() : void
+ ShowResult() : void
+ TapToBackTitleButton() : void
+ DerayGameLoadRun() : void
}
MonoBehaviour <|-- ResultJudgeTest
ResultJudgeTest --> "resultMaxComboObj" GameObject
ResultJudgeTest --> "resultScoreTextObj" GameObject
ResultJudgeTest --> "resultScoreGreatObj" GameObject
ResultJudgeTest --> "resultScoreGoodObj" GameObject
ResultJudgeTest --> "resultScoreBetterObj" GameObject
ResultJudgeTest --> "resultScoreNotBadObj" GameObject
ResultJudgeTest --> "resultScoreBadObj" GameObject
ResultJudgeTest --> "resultScoreMissObj" GameObject
@enduml
| false
| true
| false
| false
|
class
|
d6e04addfe32457c4bb0a0d132d948d79d93bb95
|
68ab6123e5646851343e8ac1303f89c74e163d65
|
/docs_other/plantuml/mvca-architecture-v1-deprecated-gituml-136.puml
|
89498d8a03a74cfdf1dccf8b194a36938718aebf
|
[] |
no_license
|
abulka/todomvc-oo
|
2026ee52c46ca9135a928cdff24fde36c0ff0412
|
d41b327a7d9ae8d236c9a7ff222e60092e497d4f
|
refs/heads/master
| 2022-05-24T12:20:05.729460
| 2020-05-25T07:26:45
| 2020-05-25T07:26:45
| 243,655,901
| 1
| 1
| null | 2022-03-26T06:32:28
| 2020-02-28T01:48:45
|
JavaScript
|
UTF-8
|
PlantUML
| false
| false
| 1,692
|
puml
|
@startuml
header
MVC-A Architecture - MVC plus App Architecture,
emphasizing Controllers Roles
Also on https://www.gituml.com/editz/136
by Andy Bulka 2020
endheader
center footer Generated by GitUml www.gituml.com
class Model {
data
setters
}
class Controllers {
app
model
gui
event_handler()
dom_event_handler()
}
class App {
model
view state
boot()
business_logic1()
business_logic2()
}
class View << GUI / DOM >> {
}
App --> "*" Model : 2. owns
App --> Model : 8. modifies
Model ..> App #DeepSkyBlue : <color:DeepSkyBlue>9. event</color>
Controllers --> Model : 7. modify
Model ..> Controllers #DeepSkyBlue : <color:DeepSkyBlue>9. event</color>
App --> Controllers : 3. creates
App ..> Controllers #DeepSkyBlue : <color:DeepSkyBlue>event</color>
Controllers --> App : 7. call business logic/ \n access view state
Controllers --> View : 4. creates
Controllers --> View : 10. maintains
View ..> Controllers #LimeGreen : <color:LimeGreen>6. DOM</color> \n <color:LimeGreen>event</color>
class Scenario1 < Instance of App() created ><< (S,#FF7700) start here >>
class Scenario2 < User interacts with DOM GUI control ><< (S,#FF7700) start here >>
Scenario1 ...> App : 1. new
Scenario2 ...> View : 5. user interaction
note as N9727
This "literate code map" shows the MVC-A Architecture
which means MVC plus App Architecture.
This architectural design pattern clearly defines:
* the role mediating Controllers play
* the need for an App object
* the direction and flow of events
The App object is central to this architecture:
* holds refs to models
* creates controllers
* holds view state
* contains some business logic methods
end note
@enduml
| false
| true
| false
| false
|
sequence
|
22b52c321f19cb6395249fdc2b7bfb78736f5c98
|
0e43f538adbf1cefc637a4d4d51dd1daebb92c2a
|
/UMLs/image.plantuml
|
45fd528fbc92345cfce14389549650bc8cff3c62
|
[] |
no_license
|
plspeziali/jpacman
|
ce7be0f6e4121f89ce5e667383af7dd20fa2c9e4
|
559734c443bcff46e4281b28c9b3f33cc70e92db
|
refs/heads/master
| 2022-12-03T17:06:41.978403
| 2020-08-23T10:38:24
| 2020-08-23T10:38:24
| 280,392,795
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 345
|
plantuml
|
@startuml
title __IMAGE's Class Diagram__\n
namespace image {
enum ImageList {
BLINKY
BLINKY_D0
BLINKY_D1
...
RED_PORTAL
SMALL_PANEL
WALL
}
class imageList.ImageFactory {
{static} + createImage()
{static} - getFile()
}
}
@enduml
| false
| true
| false
| false
|
class
|
8f475b6b21e82d6f100d3a9b3faf25231e40ee09
|
67d416449fd583479edff467439fe1ae7a782f82
|
/uml/diagram.puml
|
1fd95b441a99c9cf7a814cb26d73f16f4d9530b6
|
[] |
no_license
|
TSnowdon/snowdon-cop3330-assignment4
|
1bdb795a4bb3ceff8acc6b25de150b1193349309
|
55bb5152f2aea40c617b8c2a8d89c69a0d3af2f0
|
refs/heads/master
| 2023-08-25T23:57:19.101544
| 2021-11-10T16:56:36
| 2021-11-10T16:56:36
| 415,985,237
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 1,086
|
puml
|
@startuml
class App
class Application
class Task
class TaskList
class FXMLController
enum StatusType
App -- TaskList
TaskList -- Task
StatusType -- Task
StatusType -- App
FXMLController -- App
class App extends Application {
Main Application that will handle
all external and internal events.
__ Attributes __
- ArrayList<TaskList> lists
__ Methods __
+ {static} start()
+ {static} void main()
+ {static} importTaskList()
+ {static} exportTaskList()
}
class Task {
Data Class for storing Task Information.
__ Attributes __
- StatusType status
- String description
- Date dueDate
__ Methods __
+ StatusType getStats()
+ String getDescription()
+ Date getDueDate()
}
class TaskList {
Data Class for storing Tasks.
__ Attributes __
- ArrayList<Task> tasks
- String name
__ Methods __
+ ArrayList<Task> getTasks()
+ String getName()
}
class Application {
Application class from
which JavaFX applications extend.
}
class FXMLController {
Application class for JavaFX
that handles events that happen
through buttons, text fields, etc.
}
enum StatusType {
EARLY
LATE
}
@enduml
| false
| true
| false
| false
|
class
|
7dff4d95e0fe78ec8feb7c4f5451f8afe210aaac
|
a416aa726f893f6dfc5334fa2d23f727ade07c99
|
/examples/proof-of-concept/azure-iot/docs/device-management.puml
|
a82c203738937abdc4f19b42320a8af6de9b183a
|
[
"Apache-2.0"
] |
permissive
|
javaservlets/iot-edge
|
13d6f12ec49c51bfb5df633bf7691bc4b6bea96c
|
8ba309a2e98dd3dff89f4fcb86e34756aa64e6e1
|
refs/heads/main
| 2023-01-25T05:12:01.282055
| 2020-11-22T12:29:54
| 2020-11-23T13:08:07
| 315,394,017
| 0
| 0
|
Apache-2.0
| 2020-11-23T17:42:34
| 2020-11-23T17:42:33
| null |
UTF-8
|
PlantUML
| false
| false
| 681
|
puml
|
@startuml
skinparam sequence {
ArrowFontColor #062b8c
ArrowColor #062b8c
LifeLineBorderColor #062b8c
ParticipantBorderColor #062b8c
ParticipantBackgroundColor #fc6700
ParticipantFontColor #062b8c
ActorBorderColor #062b8c
ActorBackgroundColor #fc6700
ActorFontColor #062b8c
}
actor "User" as us
participant Device as dv
actor "Admin" as ad
participant "FR Platform" as fr
participant "MS Azure IoT" as az
ad -> az : Provision device
fr -> az : Query device twins
az --> fr
ad -> fr : Manage User and \nDevice relationship
us -> dv : Request access
dv -> fr : Authorize based \non relationship
fr --> dv
dv --> us : Access authorized
@enduml
| false
| true
| false
| false
|
sequence
|
040630b9847d6d25127f92122ad6cf4b524cdb37
|
697dbbf929c29060ac754e379dbe9b6d5cf4096f
|
/actors/runtime/src/main/java/cloud/orbit/actors/net/pipeline.puml
|
f23b3e8185221977add524c34b5b5b13b25d84e4
|
[
"BSD-3-Clause",
"BSD-2-Clause"
] |
permissive
|
ceckhardt/orbit
|
f198765e5e459bda843ab1d239fa0ea8079c96db
|
20b7caeffaec1766961da974bf9f14b36011007b
|
refs/heads/master
| 2021-01-22T09:39:40.501471
| 2019-04-12T18:55:59
| 2019-04-12T18:55:59
| 76,073,946
| 1
| 1
|
NOASSERTION
| 2019-04-12T18:56:00
| 2016-12-09T22:07:21
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 867
|
puml
|
@startuml
actor Application
note right of Application : Actors, etc
artifact Channel {
agent Handler_1
agent Handler_2
agent Handler_3
usecase Connection
note right of Handler_1 : ex: pending response completion, timeout
note right of Handler_2 : ex: serialization
note right of Handler_3 : ex: message framing, boundaries
note right of Connection : ex: websockets, tcp, jgroups
}
cloud Network
Application --> Handler_1 : [ send message ]
Handler_1 --> Handler_2 : [ onWrite ]
Handler_2 --> Handler_3 : [ onWrite ]
Handler_3 --> Connection : [ onWrite ]
Connection --> Network : [ send bytes ]
Network --> Connection : [ receive bytes ]
Connection --> Handler_3 : [ onRead ]
Handler_3 --> Handler_2 : [ onRead ]
Handler_2 --> Handler_1 : [ onRead ]
Handler_1 --> Application : [ receive message]
@enduml
| false
| true
| false
| false
|
usecase
|
5be4fa38bd803e7a13e55ca9843fa80f8604500c
|
c8e5514bd3ea44e6613f469e88bc0562ba16ae62
|
/src/site/sphinx/formatting/puml/colors/GoldenRod.puml
|
e65919b1724676fdb458f82ca0b45e0941fe8312
|
[] |
no_license
|
weedySeaDragon/plantuml-documentation
|
1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba
|
3c23cd2cd7fc1b4a85423ef9861711907fab2296
|
refs/heads/develop
| 2022-12-09T05:57:04.055959
| 2022-05-12T16:05:20
| 2022-05-12T16:05:20
| 165,910,589
| 55
| 6
| null | 2022-11-22T10:34:29
| 2019-01-15T19:28:35
|
SCSS
|
UTF-8
|
PlantUML
| false
| false
| 316
|
puml
|
@startuml
skinparam ClassBackgroundColor #GoldenRod
skinparam ClassFontColor #GoldenRod
skinparam ClassBorderColor #GoldenRod
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml
| false
| true
| false
| false
|
class
|
fbabc967bf9337645b463648ba61f32fe525f4ae
|
2f22952e07ffc3eb8933d52a20f6a5bfd02e8b35
|
/Structural/Decorator/uml.puml
|
05191f4330696f6cbc170d9a8ac3b1fd371c00b9
|
[
"MIT"
] |
permissive
|
ervin-meng/PHPDesignPatterns
|
c7b868148231f28226e7efd12283798890aae0f2
|
19cd506970898ae6db87d3e838d53658a2876ae7
|
refs/heads/master
| 2022-12-08T11:38:04.190536
| 2020-09-01T09:12:07
| 2020-09-01T09:12:07
| 291,909,626
| 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 368
|
puml
|
@startuml
abstract class AbstractComponent
{
render()
}
abstract class AbstractDecorator extends AbstractComponent
{
protected $component;
render()
__construct(AbstractComponent $component)
}
class Decorator extends AbstractDecorator {
render()
}
class Component extends AbstractComponent {
render()
}
Decorator o-left- Component
@enduml
| false
| true
| false
| false
|
class
|
e6cb3ac280dd69cda86ed96fed1e28ce4fc48420
|
9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9
|
/java/resources/plantuml/creational/Singleton.puml
|
77ce000a4440c534d98894353c2098b976ecf62c
|
[
"MIT"
] |
permissive
|
vuquangtin/designpattern
|
4d4a7d09780a0ebde6b12f8edf589b6f45b38f62
|
fc672493ef31647bd02c4122ab01992fca14675f
|
refs/heads/master
| 2022-09-12T07:00:42.637733
| 2020-09-29T04:20:50
| 2020-09-29T04:20:50
| 225,505,298
| 0
| 0
| null | 2022-09-01T23:16:34
| 2019-12-03T01:41:33
|
Java
|
UTF-8
|
PlantUML
| false
| false
| 238
|
puml
|
@startuml Singleton
scale 1024 height
class Singleton {
static uniqueInstance
singletonData
static Instance()
SingletonOperation()
GetSingletonData()
}
note right of Singleton::Instance
return uniqueInstance
end note
@enduml
| false
| true
| false
| false
|
class
|
c973435a31b7e80ba86b0c7de2c707c0ee966c13
|
d97b774fd95a8e98e37c46ee1771f6e6e407a148
|
/uml/api/ClassificationShippingRateInputDraft.puml
|
a4bef4c78273eb953280177137d5dd438ef2f370
|
[] |
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
| 468
|
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 ClassificationShippingRateInputDraft [[ClassificationShippingRateInputDraft.svg]] extends ShippingRateInputDraft {
type: String
key: String
}
interface ShippingRateInputDraft [[ShippingRateInputDraft.svg]] {
type: String
}
@enduml
| false
| true
| false
| false
|
class
|
ed51c3400459948df3961255f72d65b362c8c1ab
|
39bfa4bd87577047e322968f68c06c5a523efcb7
|
/docs/uml/Vision.puml
|
2028b097ec3f132889d1712f63bb5ab30b2abed1
|
[
"Apache-2.0"
] |
permissive
|
jimbok8/visionforge
|
bad5a71a667a5af69ce8d1d0bc3cb93fb777baf6
|
456e01fcfa48f798a03cc5866acc5d4c557e00c3
|
refs/heads/master
| 2023-07-06T13:31:12.072403
| 2021-07-29T14:09:21
| 2021-07-29T14:09:21
| null | 0
| 0
| null | null | null | null |
UTF-8
|
PlantUML
| false
| false
| 610
|
puml
|
@startuml
'https://plantuml.com/class-diagram
interface Vision{
val parent: Vision?
fun getProperty(name): MetaItem?
fun setProperty(name, value)
}
class VisionBase{
basic vision
implementation
}
Vision <|-- VisionBase
interface VisionGroup{
A group of Visions
}
Vision <|-- VisionGroup
interface Solid{
The base for 3D geometry
}
Vision <|-- Solid
class SolidGroup
Solid <|-- SolidGroup
VisionGroup <|-- SolidGroup
class Composite
Solid <|-- Composite
VisionGroup <|-- Composite
class Box
Solid <|-- Box
class Tube
Solid <|-- Tube
class Sphere
Solid <|-- Sphere
@enduml
| false
| true
| false
| false
|
class
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.