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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
977b65f6ad4fab4ef068b92c9c1354dc397214d4 | d93164272b4c67d091d300a30b68c9df3f55a2d3 | /docs/diagrams/class/class-player-side.plantuml | d6c957b46dbea6b3be7e3c036ad99f2b8fbdf02a | [
"MIT"
] | permissive | mati1297/tp2_algoblocks | ceca0aff4eaf09c6bb8c19d154e28b297b0de7f1 | c02c5453f21bfe7361fbb19d8ee06ee16be6ebb5 | refs/heads/master | 2023-03-16T19:10:57.644392 | 2021-03-08T20:38:03 | 2021-03-08T20:38:03 | 319,747,541 | 0 | 0 | MIT | 2021-03-08T20:34:48 | 2020-12-08T20:02:33 | Java | UTF-8 | PlantUML | false | false | 1,213 | plantuml | @startuml
skinparam classAttributeIconSize 0
class Game {
}
class Player {
+ run(sequence : Sequence) : Drawing
+ move(direction : Direction)
}
class Coordinates {
}
class Coordinate {
- coordinate : int
+ inc() : Coordinate
+ dec() : Coordinate
}
class Pencil {
+ draw(start : Coordinates, finish : Coordinates) : Shape
+ raise()
+ lower()
}
interface PencilState {
{abstract}+ draw(start : Coordinates, finish : Coordinates) : Shape
}
class RaisedPencilState {
}
class LoweredPencilState {
}
class Movement {
- grid : Grid
+ move(direction : Direction, position : Coordinates) : Coordinates
}
interface Direction {
{abstract}+ move(actualCoords : Coordinates) : Coordinates
}
class Drawing {
- shapes : ArrayList<Shape>
+ addShape(newShape : Shape)
}
Game "1" o-- "1" Player
Coordinates "1" o-- "2" Coordinate
Player "1" o--left "1" Pencil
Player "1" o--down "1" Coordinates
Player "1" o-- "1" Movement
Player o--right "1" Drawing
Sequence .. Player
Direction <..left Player
Pencil o--down "1" PencilState
PencilState <|.. RaisedPencilState
PencilState <|.. LoweredPencilState
Direction <.. Movement
Coordinates <.. Movement
@enduml | false | true | false | false | class |
5077234e19232e9689701aa4c5fcdbe92c123f59 | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao2/MD_a3.puml | 9ac49c63bb697c2fb35e554df286e4d4ce71b879 | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,940 | puml | @startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Plataforma {
-String designacao
}
class AreaAtividade {
-String codigo
-String descBreve
-String descDetalhada
}
class CompetenciaTecnica {
-String codigo
-String descBreve
-String descDetalhada
}
class Categoria {
-String id
-String descricao
}
class Organizacao {
-String nome
-String NIF
-String website
-String telefone
-String email
}
class Colaborador {
-String nome
-String funcao
-String telefone
-String email
}
class EnderecoPostal {
-String local
-String codPostal
-String localidade
}
class CaraterCT {
-Boolean obrigatoria
}
class Tarefa {
-String referencia
-String designacao
-String descInformal
-String descTecnica
-Integer duracaoEst
-Double custoEst
}
class Freelancer {
}
class Administrativo {
}
class Utilizador {
-String nome
-String email
-String password
}
Plataforma "1" -- "*" AreaAtividade : possui >
Plataforma "1" -- "*" CompetenciaTecnica : possui >
Plataforma "1" -- "*" Organizacao : tem registadas >
Plataforma "1" -- "*" Freelancer : tem/usa >
Plataforma "1" -- "*" Administrativo : tem >
Plataforma "1" -- "*" Categoria : possui >
Plataforma "1" -- "*" Tarefa: possui >
Organizacao "1" -- "1..*" Colaborador: tem >
Organizacao "1" -- "1" Colaborador: tem gestor >
Organizacao "1" -- "1" EnderecoPostal: localizada em >
CompetenciaTecnica "*" -- "1" AreaAtividade : referente a >
Categoria "1" -- "1" AreaAtividade: enquadra-se em >
Categoria "*" -- "*" CompetenciaTecnica: requer >
(Categoria, CompetenciaTecnica) .. CaraterCT
Tarefa "*" -- "1" Categoria: enquadra-se em >
Tarefa "*" -- "1" Colaborador: especificada por >
Tarefa "*" -- "1" Organizacao: pertence a >
Freelancer "0..1" -- "1" Utilizador: atua como >
Administrativo "0..1" -- "1" Utilizador: atua como >
Colaborador "0..1" -- "1" Utilizador: atua como >
@enduml
| false | true | false | false | class |
bf541bbf04525b06232ec51c09c4b80e9ab8bc6f | 6bdb6f1e0e094792856dfc063fa7772df9c19bd6 | /PlantUML/Importer/Importer_Run_Sequence.puml | c168e8b1414e4b3061b595888ca011b990e436be | [
"MIT"
] | permissive | mixapiy/import-frame | 965e1fef4bfca71075c1c650ff364b989187a67f | f51bcacafd0fb09fcff2bc75a87230c61a595e88 | refs/heads/master | 2020-03-27T17:56:24.890655 | 2018-08-31T19:49:01 | 2018-08-31T19:49:01 | 146,886,513 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,085 | puml | @startuml
title The logic of importing data using the <i> __Importer class__</i>
skinparam guillemet false
participant Importer << (I,#8b00ff) IImporter >>
participant Api << (I,#8b00ff) IAPI >>
participant Converter << (I,#8b00ff) IConverter >>
participant Strategy << (I,#8b00ff) IStrategy >>
box "private field in Importer"
participant Api
participant Converter
participant Strategy
end box
activate Importer
activate Api
activate Converter
activate Strategy
[-> Importer : Run($context)
Importer -> Importer : doRun()
activate Importer #green
Importer -> Api : run($context)
Api -> Importer : return $data
Importer -> Converter : run($data)
Converter -> Importer : return $formattedData
Importer -> Strategy : run($formattedData)
Strategy -> Importer : return strategyResponce
deactivate Importer
[<- Importer : return strategyResponce
deactivate Importer
deactivate Api
deactivate Converter
deactivate Strategy
@enduml | false | true | false | false | sequence |
f7c398a353131676fa66fbbfd10679578ea276aa | 7b1ce1748bcac8e50a16f77d1a59bc4382f3a26d | /uml/get-sequence.puml | c0a8501d7333b251c8bead34e207791cadd8b550 | [] | no_license | Edu237/arq-web | d218190a947dd1b5f0fead07912f71b8a3205013 | ccd9965cc09b91982754744555d04d988a4b97ac | refs/heads/master | 2020-07-09T20:26:08.832568 | 2019-11-15T23:00:34 | 2019-11-15T23:00:34 | 204,073,492 | 0 | 0 | null | 2019-11-15T19:40:51 | 2019-08-23T21:40:47 | JavaScript | UTF-8 | PlantUML | false | false | 501 | puml | @startuml
title Todos los pedidos GET
actor Cliente as U
boundary endpoint.js as E
control control as C
entity dbCaballos as D
U -> E: HTTP GET (path,req)
activate E
E -> E: app.get(path, (req,res))
activate E
E -> C: getdatos(req)
activate C
C -> C: Generar query
group MySQL driver
C -> D: Connect
C -> D: SQL SELECT
D -> C: Resultados
C -> C: Convertir en objeto
end
C --> E: Obj resultado
deactivate C
deactivate E
E -> E: stringify(resultado)
E --> U: res.end(resultado)
deactivate E
@enduml
| false | true | false | false | usecase |
74fe2ef1af5f80103b79fa93fe46fad6eb965503 | 6fedb79cb2a26d55ec22595e3a001378b97b8f74 | /app/src/main/java/com/alex/kotlin/javadesignmode/builder/uml/time.puml | d6855623e94bd12940ac420d3d6ae87b03866e90 | [] | no_license | AlexTiti/JavaDesignMode | e3b283b9547207a82b3d1ea7e12e617038a5aacb | c605ca319c20d8628d7fa38c42c5776943568e06 | refs/heads/master | 2020-05-04T19:34:08.751540 | 2019-09-09T08:44:44 | 2019-09-09T08:44:44 | 179,399,468 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 287 | puml | @startuml
title Bulder
Client -> ConcreteBuilder : create
Client -> Director :create
Client -> Director :construct
Director -> ConcreteBuilder : printFirst
ConcreteBuilder --> Director
Director -> ConcreteBuilder : printSecond
ConcreteBuilder --> Director
Director --> Client
@enduml | false | true | false | false | sequence |
37b614b557fac135001da358a5f934da0b9ac319 | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/administrator/DeletePegawaiTU.puml | a51c1761a2cb58522aac5a625d5610f272741003 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 779 | puml | @startuml
autonumber
hide footbox
title Menghapus Pegawai TU
Actor Administrator
boundary Dashboard_V
boundary PegawaiTU_V
control Admin_C
control Pegawai_C
Entity Pegawai_E
Admin_C --> Dashboard_V: load->view()
Dashboard_V --> Administrator: Halaman Dashboard
Administrator --> Dashboard_V: klik menu Pegawai TU
Dashboard_V --> Pegawai_C: index()
Pegawai_C --> Pegawai_E:
Pegawai_E --> Pegawai_C:
Pegawai_C --> PegawaiTU_V: load->view()
PegawaiTU_V --> Administrator: Halaman Pegawai TU
Administrator --> PegawaiTU_V: klik tombol Delete Pegawai TU
PegawaiTU_V --> Pegawai_C: deletepegawaitu()
Pegawai_C --> Pegawai_E:
Pegawai_E --> Pegawai_C:
Pegawai_C --> PegawaiTU_V: load->view()
PegawaiTU_V --> Administrator: Halaman Pegawai TU
@enduml | false | true | false | false | sequence |
1de624b4a3bc6cd54603aa242d9b048a9efd76a5 | 3b28c08d6947fff509fd18670b53cee1e5aa1d56 | /docs/sequence-channel-verification.puml | 4ec8aa0d59cad1341dcfc5bb58acedd3a4c9cb06 | [] | no_license | WaterGenie35/discord-lwm-clan-bot | a4f159e6aad835688a96d6a15e4d7691965e5b3b | 1635541cdc94fd856f7bb5c326ef64fd17d0cac4 | refs/heads/main | 2023-02-04T14:28:11.733603 | 2020-11-15T16:18:35 | 2020-11-15T16:18:35 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,513 | puml | @startuml
title Verification Channel
participant "Discord" as discord
participant "Message View" as view
participant "Channel Controller" as controller
participant "Persistence Model" as persistence
participant "Storage" as storage
activate controller
activate discord
group Initialisation
persistence -> storage: read_discord_config()
activate storage
return config
end
group Mutator
discord --> controller: !channel set-verification
controller -> persistence: set_verification_channel(channel)
activate persistence
persistence -> persistence: config.verification_channel = channel
persistence -> storage: save_discord_config()
activate storage
return success
return success
controller -> view: format_message(success)
activate view
return message
controller --> discord: display(message)
end
group Accessor
discord --> controller: !channel get-verification
controller -> persistence: get_verification_channel()
activate persistence
return config.verification_channel
alt channel is not none
controller -> view: format_message(channel)
activate view
return message
else channel is none
controller -> view: get_mutator_help()
activate view
return message
end
controller --> discord: display(message)
end
deactivate controller
deactivate discord
@enduml
| false | true | false | false | sequence |
e326e43eb4d05b479d7cfdfa72ca00bcc778e9e8 | 418493e99ee0c87456da7cb3ef22aa4bcb83be60 | /documentation/software_design/manage_split_participation/serverSide_diagSequence.puml | 341c318d68a85559c02f82e16c5822e70c9d0e08 | [] | no_license | AyoubMoujane/SplitPay | 8fc6fe1eb09b5d1566015994b5443e77eb5ec2a4 | 8408108f732a77ed837dfc695e9a712c33b614a7 | refs/heads/main | 2023-02-16T11:40:57.259756 | 2021-01-17T07:26:19 | 2021-01-17T07:26:19 | 311,427,277 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,003 | puml | @startuml
autonumber
participant ConnectionToClient
participant AdaptableSplitServer
participant ObservableSplitServerFacade
participant SplitServerFacade
ConnectionToClient -> AdaptableSplitServer: receiveMessageFromClient(Object, ConnectionToClient)
AdaptableSplitServer -> AdaptableSplitServer: handleMessageFromClient(Object, ConnectionToClient)
AdaptableSplitServer -> ObservableSplitServerFacade: handleMessageFromClient(Object, ConnectionToClient)
ObservableSplitServerFacade -> ObservableSplitServerFacade: setChanged()
ObservableSplitServerFacade -> ObservableSplitServerFacade: notifyAllObservers(OriginatorMessage)
ObservableSplitServerFacade -> SplitServerFacade: update(OriginatorMessage)
SplitServerFacade -> SplitServerFacade: handleMessageFromClient(Object, ConnectionToClient)
ObservableSplitServerFacade <- SplitServerFacade: sendToAllClient()
ObservableSplitServerFacade -> AdaptableSplitServer: sendToAllClient()
AdaptableSplitServer -> ConnectionToClient: sendToClient()
@enduml
| false | true | false | false | sequence |
0d3c75410d77917db6b55868e95f024012ac9e8c | 946a6220ac789dcbc3930afb17abb3160e573392 | /src/main/java/ex46/ex46-diagram.puml | d61e8d2cc891c2e30d40de734a305ce0c3165af1 | [] | no_license | LuisFigueroa1/figueroa-cop3330-assignment3 | 9ab1d842f6a5a7c524210ffe120b2bef8657e919 | 099c1a83df9fcb328f60405e3d69023c65c965b2 | refs/heads/master | 2023-08-18T07:40:14.466540 | 2021-10-12T02:40:51 | 2021-10-12T02:40:51 | 416,157,675 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 203 | puml | @startuml
class App46
{
+public static void main(array[]: String)
}
inF->main : input
main->TreeMap : input
hashMap->inF : TreeMap
hashMap-> main : key counter +1
main->output : word amount of *
@enduml | false | true | false | false | sequence |
7babcc2ebeaaf0633291750c12482fad88a04e84 | 9f9ab0789b0a2e5a5c9dc43652cba0ed342761d2 | /src/main/java/ex43/ex43-ClassDiagram.puml | d06bda07e9b1aa109b2b3270936095945495665d | [] | no_license | kieran-l-jimenez/jimenez-cop3330-assignment3 | afbe07bcdad58058589ac957e0e53af9fbe02230 | aba5f9e482b5b3b6d81d8e5431d8a669c98baa6d | refs/heads/master | 2023-06-05T16:28:21.426526 | 2021-06-21T03:41:51 | 2021-06-21T03:41:51 | 378,733,105 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 247 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
void main()
}
App <- websiteInfo
class websiteInfo {
String SiteName
String AuthorName
boolean JScriptFolder
boolean CSSFolder
websiteInfo promptInfo()
void generateWebsite()
}
@enduml | false | true | false | false | class |
7ba87d47bbf1bb3c4bdfac3e9bb1a1207ca92f67 | 2bc551f9c2ecb57ec0cb93ad18d3ce0bafbddb34 | /设计模式/设计模式尚硅谷/designpatternlearning/src/main/java/tk/designpattern/adapter/objectadapter/classAdapter.puml | 3ca6af8ebabbcc5868ae9904357804942abcc0d3 | [] | 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 | 437 | puml | @startuml
together {
class Voltage220 {
+ int output220()
}
interface PhoneCharging {
public int output5();
}
class VoltageAdapter implements PhoneCharging{
- Voltage220 voltage220
+ int output5()
}
}
class Phone {
- PhoneCharging phoneCharging;
+ Phone(PhoneCharging phoneCharging)
+ void charging()
}
VoltageAdapter <|- Voltage220
Phone o- PhoneCharging
@enduml | false | true | false | false | class |
101f2c488c0943a0691356e9fb1993942a0daaf4 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AttributeEnumType.puml | d6e79041959daf29c99d1c9d0960b6f907084107 | [] | 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 | 461 | 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 AttributeEnumType [[AttributeEnumType.svg]] extends AttributeType {
name: String
values: [[AttributePlainEnumValue.svg List<AttributePlainEnumValue>]]
}
interface AttributeType [[AttributeType.svg]] {
name: String
}
@enduml
| false | true | false | false | class |
bbeb4df04fd820519df26b1bfe1196abbc0088aa | 18b4e69bde9fea40420885366ac6242dc51459fd | /dailyquote-uml/backup/backup-class.puml | be898888a908264129129fe8c365bbd2aa8806db | [] | no_license | nianhuaxpj/dailyquote | be82df4038441d00191ecbabefd4548944970217 | e0eed5a7857c1f7e2ddf169a7ae85e51a4960d98 | refs/heads/master | 2021-02-12T00:37:04.374100 | 2015-05-28T06:10:37 | 2015-05-28T06:10:37 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 334 | puml | @startuml
interface Runnable
class Main
abstract class DailyQuoteBackupThread
class BackupSHQuoteThread
class BackupSZQuoteThread
Main --> BackupSHQuoteThread
Main --> BackupSZQuoteThread
Runnable <|-- DailyQuoteBackupThread
BackupSHQuoteThread --|> DailyQuoteBackupThread
BackupSZQuoteThread --|> DailyQuoteBackupThread
@enduml | false | true | false | false | class |
1b4a2e63be0d728e681fd75bb9ee3287b2c44dc1 | a4eea143d187a7dd41c044569ad9764ee6de3508 | /src/fr/esilv/simpleparql/UML/Converter.puml | 1d10de557e8c24564675d9552197a7fea833f517 | [] | no_license | absabry/SimplePARQL | 0238db78c8484f80ff0413761b5569ac8c2dbe14 | ed77e7850d6f810ac5c7443c00f5226e8fa1ebec | refs/heads/master | 2021-01-20T12:41:12.886429 | 2017-11-27T12:31:31 | 2017-11-27T12:31:31 | 90,390,303 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 8,847 | puml | @startuml
enum fr.esilv.simpleparql.source.model.POSITION {
SUBJECT
PREDICATE
OBJECT
}
note top of fr.esilv.simpleparql.source.model.POSITION: position in a triple.
enum fr.esilv.simpleparql.source.model.VARIABLES {
VARIABLE
LABEL
TMP1
TMP2
}
note top of fr.esilv.simpleparql.source.model.VARIABLES: variables created name.
enum fr.esilv.simpleparql.source.model.PAGE {
FIRST
SECOND
THIRD
}
note bottom of fr.esilv.simpleparql.source.model.PAGE: result's page.
enum fr.esilv.simpleparql.source.model.TRUC_TYPE {
STRING
WORD
SLASH
}
note bottom of fr.esilv.simpleparql.source.model.TRUC_TYPE: type of the truc created.
interface fr.esilv.simpleparql.source.converter.filter.FilterGenerator {
createSPARQLFilter(truc:String, variable:String ) : String
}
note top of fr.esilv.simpleparql.source.converter.filter.FilterGenerator: Interface to handle strategies.
class fr.esilv.simpleparql.source.converter.filter.FilterDefault{
createSPARQLFilter(truc:String, variable:String ) : String
}
note bottom of fr.esilv.simpleparql.source.converter.filter.FilterDefault: Class to handle default strategy.
class fr.esilv.simpleparql.source.converter.filter.FilterVirtuoso{
+createSPARQLFilter(truc:String, variable:String ) : String
}
note bottom of fr.esilv.simpleparql.source.converter.filter.FilterVirtuoso: Class to handle virtuoso strategy.
class fr.esilv.simpleparql.source.converter.filter.FilterRegex{
+createSPARQLFilter(truc:String, variable:String ) : String
}
note bottom of fr.esilv.simpleparql.source.converter.filter.FilterRegex: Class to handle regex strategy.
class fr.esilv.simpleparql.source.converter.filter.FilterCommon{
+createSPARQLFilter(truc:String, variable:String ) : String
+removeIgnoredPropreties(variable:String, ignored:List<String>):String
+createSPARQLLanguageFilter(variable:String, language:String):String
}
note top of fr.esilv.simpleparql.source.converter.filter.FilterCommon: Filters that will be the same everywhere.
fr.esilv.simpleparql.source.converter.filter.FilterGenerator <|.. fr.esilv.simpleparql.source.converter.filter.FilterDefault
fr.esilv.simpleparql.source.converter.filter.FilterGenerator <|.. fr.esilv.simpleparql.source.converter.filter.FilterVirtuoso
fr.esilv.simpleparql.source.converter.filter.FilterGenerator <|.. fr.esilv.simpleparql.source.converter.filter.FilterRegex
note top of fr.esilv.simpleparql.source.converter.filter: generate any queries' filters.
class fr.esilv.simpleparql.source.converter.query.SPARQLQueryGenerator{
-truc:Truc
-generatedComposants:ArrayList<Composant>
-filterGenerator: fr.esilv.simpleparql.source.converter.filter.FilterGenerator
- page : PAGE
+SPARQLQueryGenerator(Truc truc, fr.esilv.simpleparql.source.converter.filter.FilterGenerator filterGenerator, PAGE page)
+PageThird()
+PageSecond()
+PageFirst()
+generateRessources(Truc truc, PAGE page)
+generateProprieties(Truc truc, PAGE page)
+generatelabels(Truc truc, PAGE page)
+createGeneratedTriples()
+getGeneratedComposants()
}
note top of fr.esilv.simpleparql.source.converter.query.SPARQLQueryGenerator : Generate composants in order to use in SPARQLQueries.
class fr.esilv.simpleparql.source.converter.SparqlQueries{
- parser : SimplePARQLParser
- simpleARQLTrucs : ArrayList<Truc>
-counter : int
-filterGenerator : fr.esilv.simpleparql.source.converter.filter.FilterGenerator
- page : PAGE
-generatedQueries : ArrayList<SPARQLQueryGenerated>
-{static} logger : final Logger
-optionnal : boolean
SparqlQueries(SimplePARQLParser parser, fr.esilv.simpleparql.source.converter.filter.FilterGenerator filterGenerator, PAGE page, boolean optionnal)
SparqlQueries(SimplePARQLParser parser)
SparqlQueries(SimplePARQLParser parser, fr.esilv.simpleparql.source.converter.filter.FilterGenerator filterGenerator)
SparqlQueries(SimplePARQLParser parser, boolean optionnal)
SparqlQueries(SimplePARQLParser parser, PAGE page)
addFilterToTree(Pair<ParserRuleContext, Integer> groupGraphPattern, String filterText)
addTripleToTree(Pair<ParserRuleContext, Integer> groupGraphPattern, String filterText)
containsFilter(Pair<ParserRuleContext, Integer> groupGraphPattern, String filterText)
containsTruc()
createTruc(ParseTree trucInTree)
findInTree(ParserRuleContext tree, Truc element, int ruleIndex)
generateCartesianProductTrees(SPARQLQueryGenerated tree, Truc truc)
getGreaterPage(PAGE page1, PAGE page2)
mainGenerate()
removeOptionnalTrucFromTree(SPARQLQueryGenerated tree, Truc truc)
}
note top of fr.esilv.simpleparql.source.converter.SparqlQueries: SimplePARQL SPARQL converter.
class fr.esilv.simpleparql.source.model.Truc{
- parents : ArrayList<Pair<ParserRuleContext, Integer>>
- name : String
- position : fr.esilv.simpleparql.source.model.POSITION
- counter : int
- currentTriple : fr.esilv.simpleparql.source.model.Triple
- variables : HashMap<fr.esilv.simpleparql.source.model.VARIABLES, String>
+getCounter()
+getPosition()
+getCurrentTriple()
+getVariables()
+getName()
+getParents()
-createParentTree(ParseTree node)
-computePosition()
-find(int ruleIndex)
-generateTripleComposantes()
-clean(String text)
-generateVariables()
+isOptionnal()
+equals(Object other)
}
note top of fr.esilv.simpleparql.source.model.Truc : SimpleARQL new structure.
hide fr.esilv.simpleparql.source.model.Truc members
class fr.esilv.simpleparql.source.model.Triple{
- String subject
- String predicate
- String object
+getSubject()
+getPredicate()
+getObject()
+get(POSITION position)
}
note top of fr.esilv.simpleparql.source.model.Triple : Subject,predicate,object.
hide fr.esilv.simpleparql.source.model.Triple members
class fr.esilv.simpleparql.source.model.Constants{
+{static} VARIABLE = " ?SimplePARQL_" : final String
+{static} VARIABLE_LABEL = " ?label_" : final String
+{static} VARIABLE_TMP_1 = " ?tmp_var1_" : final String
+{static} VARIABLE_TMP_2 = " ?tmp_var2_" : final String
+{static} RDF = " rdfs:label " : final String
+{static} FILTER = "FILTER" : final String
+{static} CONTAINS_BIF = "bif:contains" : final String
+{static} CONTAINS = "CONTAINS" : final String
+{static} UCASE = "UCASE" : final String
+{static} STR = "STR" : final String
+{static} AND = " && " : final String
+{static} treeToString(SimplePARQLParser parser, ParserRuleContext query)
+{static} getNodeIndex(ParseTree node)
+{static} printTree(SimplePARQLParser parser, ParserRuleContext query, String title)
+{static} getTreeOfText(String text)
}
note top of fr.esilv.simpleparql.source.model.Constants : Constants used in the project.
hide fr.esilv.simpleparql.source.model.Constants members
class fr.esilv.simpleparql.source.model.Composant{
- filter : String
- triple : String
- page : PAGE
+getFilter()
+getPage()
+getTriple()
+Composant(String triple, String filter, PAGE page)
}
hide fr.esilv.simpleparql.source.model.Composant members
note bottom of fr.esilv.simpleparql.source.model.Composant : Filter(s), triple and all composant of the new query
class fr.esilv.simpleparql.source.model.SPARQLQueryGenerated{
- page : PAGE
- query :ParserRuleContext
+ SPARQLQueryGenerated(ParserRuleContext query, PAGE page)
+getQuery()
+getPage()
}
note bottom of fr.esilv.simpleparql.source.model.SPARQLQueryGenerated : Final SPARQL queries with page.
hide fr.esilv.simpleparql.source.model.SPARQLQueryGenerated members
class fr.esilv.simpleparql.source.model.SimplePARQLQuery{
- parser : SimplePARQLParser
+SimplePARQLQuery(SimplePARQLParser parser)
+getParser()
-{static} RearrangeQuery(SimplePARQLParser parser)
-{static} getComposantesOfTriples(ParseTree triplesSameSubject)
-{static} createNewChildren(ParseTree triplesSameSubject, ArrayList<Triple> triples)
-{static} join(ArrayList<Triple> list, String delimter)
}
note bottom of fr.esilv.simpleparql.source.model.SimplePARQLQuery : Delete ; and , from query.
hide fr.esilv.simpleparql.source.model.SimplePARQLQuery members
class fr.esilv.simpleparql.source.model.TreePrintListener{
- parser : SimplePARQLParser
- ruleNames:final List<String>
- builder : final StringBuilder
+visitTerminal(TerminalNode node)
+visitErrorNode(ErrorNode node)
+enterEveryRule(ParserRuleContext ctx)
+exitEveryRule(ParserRuleContext ctx)
}
note bottom of fr.esilv.simpleparql.source.model.TreePrintListener : Override displaying tree'smembers.
hide fr.esilv.simpleparql.source.model.TreePrintListener members
fr.esilv.simpleparql.source.model -- fr.esilv.simpleparql.source.converter.SparqlQueries : < use
fr.esilv.simpleparql.source.converter.filter -- fr.esilv.simpleparql.source.converter.SparqlQueries : < use
fr.esilv.simpleparql.source.converter.query -- fr.esilv.simpleparql.source.converter.SparqlQueries : < use
fr.esilv.simpleparql.source.converter.SparqlQueries -[hidden]--> fr.esilv.simpleparql.source.converter.query
fr.esilv.simpleparql.source.converter.SparqlQueries -[hidden]--> fr.esilv.simpleparql.source.converter.filter
@enduml | false | true | false | false | class |
b14502aa78a4de54e08f7f3f6a955a16390f7a9e | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao2/UC4_SSD.puml | 0916d42dd2fbc88d6c8d75dce3a27e910cee4ca0 | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 601 | puml | @startuml
autonumber
actor "Administrativo" as ADM
activate ADM
ADM -> ":Sistema" : inicia a especificação de uma competência técnica
activate ":Sistema"
":Sistema" --> ADM : solicita os dados \n(código, área de atividade, descrição breve e detalhada)
deactivate ":Sistema"
ADM -> ":Sistema" : introduz os dados solicitados
activate ":Sistema"
":Sistema" --> ADM : apresenta os dados e solicita confirmação
deactivate ":Sistema"
ADM -> ":Sistema" : confirma os dados
activate ":Sistema"
":Sistema" --> ADM : informa do sucesso da operação
deactivate ":Sistema"
deactivate ADM
@enduml
| false | true | true | false | usecase |
3b3fa3db09cad7b11023e51976d48554d83c006d | 42288958c7f153c0980ffa1cbefc41cb18048b88 | /diagrams/enunciado_2/dc_ficha.plantuml | b935d73d89549b0841db67950a127af9d11025b1 | [] | no_license | fiuba/algo3_tateti | ab628407b13362bf2379057bfa62cc67ff523fa8 | dc72b90f4441bc7a7d5c471b5ebfa7dc76b08485 | refs/heads/master | 2023-06-27T05:16:31.159128 | 2021-08-01T16:24:33 | 2021-08-01T16:40:28 | 379,771,379 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 656 | plantuml | @startuml
class Ficha {
- caracter : Chart
+ igualA(otra : Ficha) : Boolean
+ contextoDeY(l : Linea3, c : Celda) : Ficha
+ funcionoComo() : Ficha
+ hayNumeroParDeOpuestos() : Ficha
+ opuesta() : Ficha
}
class Linea3 {
+ todasLasFichasSonDe(j : Jugador) : Boolean
+ hayNumeroParDeOpuestos(f : Ficha) : Boolean
}
class Celda {
- contenido : Ficha
+ contiene(f : Ficha) : Boolean
+ tieneColumnaPar() : Boolean
}
class Vacio {
+ inicializar()
}
Vacio --|> Ficha
Ficha o- Linea3: "fichasEnColumna2 >"
Ficha o- Celda: "celdaDondeMeAgregaron >"
@enduml
| false | true | false | false | class |
cf23c93b1a9cca3ceb9943f029164611bf625633 | f25a1ff7b99c78a4e932bff0a8d47efa9bc8f988 | /src/main/java/org/apache/ibatis/transaction/transaction.puml | 22fa9454d394178db07f8b343c8ed505d8e20fef | [
"Apache-2.0",
"BSD-3-Clause"
] | permissive | zhhongCai/mybatis-3 | bda1eb38e1ecd1a03518042bf1c05ae9bac4c030 | 3bde2f5305465682ff3fc5aaabaf6db77565ab0c | refs/heads/master | 2020-08-27T04:09:08.352011 | 2019-11-21T00:13:56 | 2019-11-21T00:13:56 | 217,238,620 | 1 | 0 | NOASSERTION | 2019-10-24T07:30:45 | 2019-10-24T07:30:42 | null | UTF-8 | PlantUML | false | false | 680 | puml | @startuml
interface Transaction {
+ getConnection() Connection throws SQLException;
+ commit() throws SQLException;
+ rollback() throws SQLException;
+ close() throws SQLException;
+ getTimeout() Integer throws SQLException;
}
interface TransactionFactory {
+ setProperties(Properties props)
+ newTransaction(Connection conn) Transaction
+ newTransaction(DataSource, TransactionIsolationLevel, boolean) Transaction
}
class ManagedTransaction implements Transaction {
}
class JdbcTransaction implements Transaction {
}
class ManagedTransactionFactory implements TransactionFactory {
}
class JdbcTransactionFactory implements TransactionFactory {
}
@enduml | false | true | false | false | class |
e2893c90bebb2fd4391ba81ff7e86bc1b425947f | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/pemberitahuan/administrator bkd/Pemberitahuan surat bkd.puml | 724faf31e4846a4d988a998edd2ed614f19bc88c | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kurniado729/sistem_kp | f456f7a22392f99c117797370c9a8d70c96b0df4 | c77c7bc9aa28fe414be3254880112dbffb4b2ab2 | refs/heads/master | 2023-02-01T21:00:47.861038 | 2019-12-20T18:52:46 | 2019-12-20T18:52:46 | 220,038,247 | 0 | 1 | MIT | 2023-02-01T02:14:20 | 2019-11-06T16:12:42 | HTML | UTF-8 | PlantUML | false | false | 533 | puml | @startuml
autonumber
hide footbox
title Pemberitahuan Surat BKD
Actor AdministratorBKD
boundary Dashborad_V
boundary SuratBKD_V
control Admin_C
control BKD_C
Entity SuratDisposisi_E
Admin_C --> Dashborad_V: load->view()
Dashborad_V --> AdministratorBKD: Halaman Dashborad
AdministratorBKD --> Dashborad_V: klik tombol pemberitahuan
Dashborad_V --> BKD_C: index()
BKD_C --> SuratDisposisi_E:
SuratDisposisi_E --> BKD_C:
BKD_C --> SuratBKD_V: load->view()
SuratBKD_V --> AdministratorBKD: Halaman Surat BKD
@enduml | false | true | false | false | sequence |
48058a749de55ca55db123f2a4bfe0699cb437f0 | d20c5c47f69154bab730978ab6926273aa912143 | /doc/sequencediagrams/fr19.puml | 55eca4347e273c09a069ec2558537cfa2d7d014e | [] | 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 | 292 | puml | @startuml
actor user
'expand paddle
participant Player as P
participant Paddle as pad
activate user
user -> P: applyPowerup(BumpyPaddle)
activate P
P -> pad: changeShape(Bumpy)
activate pad
pad --> P: success
deactivate pad
P --> user: success
deactivate P
deactivate user
@enduml
| false | true | false | false | usecase |
e507647a81514bae9abcf6feb4b51415e692f3b6 | 505c97f3546dc685f00fa445d92261b612c1e5d2 | /docs/diagrams/UnenrollState0.puml | 7fb925da1d097ca010b505a55d1666fd5557c075 | [] | no_license | MGRL2201/CS2103T-Team-Project | ac27e2cbe46f98e996f9e8305f2e2f98f0d4809d | 374bf74abf670bf3b32a5e4a6d88d7e1dd54fa3e | refs/heads/master | 2023-08-29T10:22:52.942056 | 2021-11-08T14:31:05 | 2021-11-08T14:31:05 | 406,035,520 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 619 | puml | @startuml
skinparam ClassFontColor #000000
skinparam ClassBorderColor #000000
title Initial state
package TuitiONE <<rectangle>> {
package Lessons <<rectangle>> {
object "<u>l:Lesson" as Lesson {
lessonCode = Math-P2-Wed-1800
grade = P2
size = 2
}
}
package Students <<rectangle>> {
object "<u>:Student" as Alice {
name = Alice
grade = P2
}
object "<u>:Student" as John {
name = John
grade = P2
}
}
}
John -[hidden]-> Alice
Lesson <-r-> John
Lesson <-r-> Alice
@end
| false | true | false | false | object |
7bab3c113695c714d787a5363932d58680e2d6e7 | 3177cc08d47a97d5502a475da208c8293cc39fb7 | /Analyse/diagramme/CDD-parkour.puml | c3546dc8ef764f95233c9d2876046965666b0c00 | [] | no_license | anpnv/spclub | 9eaebf51843dedcdbf418eada3488c4c5c11d8eb | eb3d24389ce37b2436735fb587f7bd8cb5a9083b | refs/heads/main | 2023-08-03T07:34:51.252263 | 2021-09-30T16:18:26 | 2021-09-30T16:18:26 | 412,136,691 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,502 | puml | @startuml CDD
skinparam Shadowing false
skinparam defaultFontName Consolas
skinparam Linetype ortho
hide methods
class Hall {
idHall : int
name : string
address : Address
hour : string
}
class Address{
address : string
zip : string
city : string
}
class Competition {
idCompetition : int
nom : String
match: Match
address : Address
winner : Team
}
class Match {
idMatch : int
date : Date
startTime : time
team : Team
}
class Team {
idTeam : int
idMembers : int[3]
numberOfParticipant : int
name : string
}
class Member {
idMember : int
role : Role
lastName : string
firstName : string
pseudo : string
birthDate : string
address : Address
email : string
}
enum Role{
Student, Teacher, Manager
}
enum Type{
Course, Event
}
class Inscription {
idReservation : int
idMember : int
date : datetime
numberOfParticipantMax : int
hall : Hall
price : int
type : Type
}
class MembershipFee {
duration : int
priceMonth : int
}
Inscription "1" -left- "1" MembershipFee : has >
Inscription "0..*" -down- "1" Member : do <
Inscription "1" -- "1" Hall : possesses <
Inscription "1" -right- "1" Competition : has <
Competition "1" *-right- "1..*" Match : contains >
Match "1" -down- "2" Team : is composed of >
Address "1" -- "1" Hall : has <
Address "1" -- "1" Member : possesses <
Address "1..*" -- "1" Competition : takes place at <
@enduml | false | true | false | false | class |
8955b30be696be89deb822d96bacce002f250d65 | 9108816ca808326745f1d92f7a70a8f120f7b702 | /assets/uml/stats-spec.plantuml | 85696b74189d8ff6daeb3ba5e7454919ad55b33e | [
"MIT"
] | permissive | ohm-softa/13-map-reduce-collect | 3d71ce9e97648ae5c9589349c868048e1e810147 | a73df2a920c9f08dc2e89eded864d2f9b90de5e6 | refs/heads/master | 2023-07-06T03:10:29.321225 | 2023-07-01T15:12:39 | 2023-07-01T15:12:39 | 176,165,203 | 0 | 72 | null | null | null | null | UTF-8 | PlantUML | false | false | 432 | plantuml | @startuml TrumpTweetStats
package ohm.softa.a13.tweets {
+class TrumpTweetStats {
+{static}calculateSourceAppStats(tweetStream: Stream<Tweet>): Map<String, Long>
+{static}calculateTweetsBySourceApp(tweetStream: Stream<Tweet>): Map<String, Set<Tweet>>
+{static}calculateWordCount(tweetStream: Stream<Tweet>, stopWords: List<String>): Map<String, Integer>
}
}
@enduml
| false | true | false | false | uml-unknown |
481d4db60d4a5825dc953bf98e7fbd5e943094f2 | 922014e5faff4bb4ec2e3cf365ceb9af45d7a6e3 | /docs/diagrams/t-srad-bank.puml | 4d37a02841b203c6346b2909e8e8a558b79f0695 | [
"MIT"
] | permissive | arnlaugsson/t-srad-demo | 104800a8abeccda97f66bfda100a3fedb86ebf6b | 0d1c42eadd773f6a2200fcc3866ec5bd23ac0d11 | refs/heads/main | 2023-03-24T18:30:28.303178 | 2021-03-22T09:06:52 | 2021-03-22T09:06:52 | 350,264,747 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,944 | puml | @startuml T-SRAD-Bank
hide empty description
hide empty members
title T-SRAD Bank
package T-SRAD-Bank {
class Branch {
id: int {unique}
}
class Logger {
monitorAccess()
}
class Employee {
employeeId: str
viewAccount(account)
}
class Account {
number: int {unique}
procurationHolder: Individual[]
interestRate: float
transactionHistory: transaction[1..*]
/id: string
/<u>totalBalance: float
--
calculateMonthlyInterests()
calculateYearlyInterests()
deposit(amount)
withdraw(amount)
transfer(Account, amount)
}
note as N1
<i>Account::id</i> is formatted as
{branch}-{type}-{number}
-> example: 0515-2-000343
end note
enum AccountType {
CheckingAccount
SavingsAccount
}
class Loan {
upPayFee: Percentage
initialAmount: float
numberOfPayments: int
interest: float
--
calculatePayments()
}
enum LoanType {
CarLoan
HousingLoan
RenevationLoan
}
abstract Owner {
ssn: str
email: Email[1..*]
telephone: Telephone[1..*]
makeLoanPayment(Loan, amount)
payUpLoan(Loan)
seeAccountStatus(Account)
seeLoanStatus(Loan)
}
class Individual {
name: str
overdraftTotalAllowance: float
--
applyForAnOverdraft(account, amount)
}
class Company {
entityName: str
contact: Individual[1..*]
}
Branch "1" o-- Account
Logger ..> Employee
Account ..> "1" AccountType
N1 -- Account
Branch "1" o-- "1..*" Employee
Branch "1" o-- Loan
Loan ..> "1" LoanType
Loan -- "[1..2]" Owner
Owner <|-- Individual
Employee --|> Individual
Owner <|-- Company
Account -- "1" Owner
Individual - Company : CEO
}
@enduml | false | true | false | false | sequence |
cd62dc5a1751d9bad10b96a5d6dd2744306e2c84 | 3e42a3533e38dfc8912d3bb6e59e942c718fd57e | /src/com/zjh/factory/simplefactory/pizzastore/pizza.puml | b09404431a51b7ff0c563e5ed5639b9337903e34 | [] | no_license | zjh-escape/DesignPattern | d2c90dc1380322d9ed3fb85cb4fdc8e88b1bf1a5 | e268fff5cf556e8a6b64208855c50a0b0d36bc64 | refs/heads/master | 2022-04-24T16:54:50.067028 | 2020-04-18T07:45:29 | 2020-04-18T07:45:29 | 256,657,447 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 376 | puml | @startuml
abstract class Pizza{
+ void prepare()
+ void bake()
+ void cut()
+ void box()
}
class CheesePizza
class GreekPizza
class PepperPizza
class OrderPizza
class PizzaStore
Pizza <|-- CheesePizza
Pizza <|-- GreekPizza
Pizza <|-- PepperPizza
Pizza <.. OrderPizza
CheesePizza <.. OrderPizza
GreekPizza <.. OrderPizza
OrderPizza <.. PizzaStore
@enduml | false | true | false | false | class |
b200f0e433a1a7f6757d26032d9059567337d3cc | 61cea96cbba874de2e7ce6df2c24e6a6e502a58d | /detailed diagram.puml | d6c5c08693f60dd5b66330072cacee9da532d8a3 | [] | no_license | Noorquacker/FE07-AMS | 2694307da1ab3d2c62f0ef9e89a0cedd31e48134 | 935c081edb657ef2b25c8bca807803ad0af63f59 | refs/heads/master | 2023-08-16T04:31:27.485039 | 2021-09-26T20:59:16 | 2021-09-26T20:59:16 | 409,803,582 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,805 | puml | @startuml
[*] --> Boot: Entry Point
state Boot {
[*] --> BootInit
BootInit: Initialize various TI things (gio, spi, etc)
BootInit --> sciSetBaudrate
sciSetBaudrate: For BMS communication
sciSetBaudrate --> BMSInit
state BMSInit {
[*] --> Wake
Wake --> Wake: Loop for every board
Wake: Assert Wake bit to wake up bq76 BMS boards
Wake --> InitialConfig
InitialConfig: (1.2.1) Send 0xF21010E0 to all boards
InitialConfig --> StartAutoAddress
StartAutoAddress: (1.2.2) Tell BMSs to use auto addressing, then enter the auto-address mode
StartAutoAddress --> SetAutoAddress
SetAutoAddress: (1.2.3) Write the address to the Device Address Register
SetAutoAddress --> SetAutoAddress: Loop for all boards
SetAutoAddress --> CheckHeartbeats
CheckHeartbeats: (1.2.4) Checks to see if all BMSs respond with a heartbeat message (with proper CRC of course). The final check to make sure all boards are alive before doing anything fancy
CheckHeartbeats --> Wake: RESTART if failed
CheckHeartbeats --> DisableTopHighRX
DisableTopHighRX: (1.2.5) Make sure the top-most board doesn't try receiving on a floating port
DisableTopHighRX --> DisableBottomLowRX
DisableBottomLowRX: (1.2.6) Same as DisableTopHighRX but for bottom-most board
DisableBottomLowRX --> ConfigGPIO
ConfigGPIO: (5.2) Set all GPIO as inputs
ConfigGPIO --> SetSampleDelay
SetSampleDelay: (2.2.1) UNKNOWN: Check PDF
SetSampleDelay --> SetSamplePeriod
SetSamplePeriod: (2.2.2) UNKNOWN: Check PDF
SetSamplePeriod --> CheckBMSFaults
CheckBMSFaults: (2.2.4) Checks BMS boards for any faults
CheckBMSFaults --> SetChannels
SetChannels: (2.2.5.2) Tell BMSs how many channels (16) to use (CHECK MORE DOCUMENTATION)
ClearFaults: (1.2.7) Clear all faults from the individual BMS boards
}
}
@enduml
| false | true | false | false | sequence |
a7d3e9e7704ee332bfebf1890e6d7d664273bd5b | 0f27249a02fb539045e262ded3f23b145e44314f | /DZ3_UML/src/diagram.puml | 73325d4911f9a61c0cc76e3d842901239a67a625 | [] | no_license | DmitriyAl/JavaWEB_20160124_DZ | f05e19b7ba83526e1ba310242b7298ee0d112a33 | bb4c6f9ee0c0a0c7203a5cfb32e61e583e85c13b | refs/heads/master | 2021-01-10T18:03:13.672941 | 2016-01-27T14:58:23 | 2016-01-27T14:58:23 | 50,513,725 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,078 | puml | @startuml
interface WeatherChangingListener {
updateReadings()
}
interface WeatherChangingSubject{
addWeatherChangingListener()
removeWeatherChangingListener()
notifyWeatherChangingListeners()
}
interface DisplayElement{
display()
}
class WeatherData{
ArrayList<WeatherChangingListener> listeners
getTemperature()
getHumidity()
getPressure()
measurementsChanged()
addWeatherChangingListener()
removeWeatherChangingListener()
notifyWeatherChangingListeners()
}
WeatherChangingSubject <|... WeatherData
class CurrentStateDisplay{
updateReadings()
display()
}
class StatisticDisplay{
updateReadings()
display()
}
class ForecastDisplay{
updateReadings()
display()
}
class SomeOtherDisplay{
updateReadings()
display()
}
WeatherChangingListener <|... CurrentStateDisplay
WeatherChangingListener <|... StatisticDisplay
WeatherChangingListener <|... ForecastDisplay
WeatherChangingListener <|... SomeOtherDisplay
DisplayElement <|... CurrentStateDisplay
DisplayElement <|... StatisticDisplay
DisplayElement <|... ForecastDisplay
DisplayElement <|... SomeOtherDisplay
@enduml | false | true | false | false | class |
bb4ca0023b32daa98c61fb285ec919a0a329f70a | f18ba1fbeb7f8d6149aff64633f9c77a92cfc936 | /assignments/a.repryntseva/TP1.plantuml | 774b25471885be48eae3b2be26d834864165c85c | [] | 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 | 2,083 | plantuml | @startuml
title __SRC's Class Diagram__\n
abstract class Canard {
{abstract} + afficher()
+ cancaner()
+ defComportementCancan()
+ defComportementVol()
+ nager()
+ voler()
}
class CanardEnPlastique {
+ CanardEnPlastique()
+ afficher()
}
class Colvert {
+ Colvert()
+ afficher()
}
class SuperCanard {
{static} + main()
}
namespace behaviours.cancaner {
interface behaviours.cancaner.ComportementCancan {
{abstract} + cancaner()
}
namespace impl {
class CanardMuet {
+ cancaner()
}
class Cancan {
+ cancaner()
}
class Coincoin {
+ cancaner()
}
}
}
behaviours.cancaner.impl.CanardMuet .up.|> behaviours.cancaner.ComportementCancan
behaviours.cancaner.impl.Cancan .up.|> behaviours.cancaner.ComportementCancan
behaviours.cancaner.impl.Coincoin .up.|> behaviours.cancaner.ComportementCancan
namespace behaviours.voler {
interface behaviours.voler.ComportementVol {
{abstract} + voler()
}
namespace impl {
class behaviours.voler.impl.NePasVoler {
+ voler()
}
class behaviours.voler.impl.VolerAvecDesAiles {
+ voler()
}
}
}
behaviours.voler.impl.NePasVoler .up.|> behaviours.voler.ComportementVol
behaviours.voler.impl.VolerAvecDesAiles .up.|> behaviours.voler.ComportementVol
Canard o-- behaviours.cancaner.ComportementCancan : comportementCancan
Canard o-- behaviours.voler.ComportementVol : comportementVol
CanardEnPlastique -up-|> Canard
Colvert -up-|> Canard
right footer
Done by Anastasiia Repryntseva
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 |
62055b81be0e0c60dd08d92bfca3f5c176d02b65 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductSelectionAddProductAction.puml | 6af05b8dc9ed85bb3d2e9ca8e5953a48297da552 | [] | 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 | 617 | 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 ProductSelectionAddProductAction [[ProductSelectionAddProductAction.svg]] extends ProductSelectionUpdateAction {
action: String
product: [[ProductResourceIdentifier.svg ProductResourceIdentifier]]
variantSelection: [[ProductVariantSelection.svg ProductVariantSelection]]
}
interface ProductSelectionUpdateAction [[ProductSelectionUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
872dafaa1e58545fca71b0537d1d76c8d6b4d55d | 372d0fe94d7e59fd48620c687fee8fc94841408b | /deadheat-lock-example/microservices-example/financial-service/src/main/java/com/vrush/microservices/financial/specifications/builder/builder.plantuml | c119645245bfabb45339e18f56f01daecc3c41fb | [
"Apache-2.0"
] | permissive | vrushofficial/deadheat-lock | 4ae44e23fea2ad57db17aadeba58e39ef4f63822 | 11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2 | refs/heads/main | 2023-01-14T17:28:38.161881 | 2020-11-29T11:11:55 | 2020-11-29T11:11:55 | 310,531,739 | 2 | 1 | null | 2020-11-19T08:16:25 | 2020-11-06T08:06:52 | CSS | UTF-8 | PlantUML | false | false | 980 | plantuml | @startuml
title __BUILDER's Class Diagram__\n
namespace com.vrush.microservices.financial {
namespace specifications {
namespace builder {
class com.vrush.microservices.financial.specifications.builder.SpecificationBuilder {
- filters : List<SpecificationFilter>
+ buildList()
+ buildSpec()
+ createFiltersByEntity()
{static} + init()
+ withBiggerFilter()
+ withCustomFilter()
+ withEqualFilter()
+ withEqualInListFieldFilter()
+ withEqualInSubclassFilter()
+ withLikeFilter()
+ withSmallerFilter()
- addFilterIfValueIsNotNull()
- addFilterIfValueIsNotNull()
}
}
}
}
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 |
77447b37865fbbe00b3149ef57e6be89e5a72731 | 6857fe99dc7482333ea889a5dd382596b57955ea | /info202_project/diagrams/filterByCategory_sequence.puml | 1f67617812687bb2207c2b276e8f26befcec029d | [] | no_license | wduggan/INFO202-Project | dd0f153e07412b5587d0bcd766aa38ba577336d4 | d86ba178e73d39c5aa378aa45dca01b2eaa154ca | refs/heads/main | 2023-05-01T05:33:38.776482 | 2021-05-12T10:44:25 | 2021-05-12T10:44:25 | 366,676,127 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,966 | puml | @startuml
' style tweaks to make the diagram a little more readable
skinparam {
Style strictuml
RoundCorner 5
Database {
' the default border no longer matches the normal colours (bug?), so fix this
BorderColor #A80036
}
Sequence {
' make activations yellow too
LifeLineBackgroundColor #FDFDCD
' make stereotypes less ugly
Stereotype {
Font {
Size 11
Style plain
}
}
}
}
actor User as user
participant ":Main" as main
participant ":MainMenu" as menu <<frame>>
participant ":ProductViewer" as dialog <<dialog>>
participant "dao\n:ProductJdbcDAO" as dao <<ProductDAO>>
participant "categoryModel\n:SimpleListModel" as categoryModel
participant "productModel\n:SimpleListModel" as model
database "H2\nDatabase" as db
create dao
main -> dao : <<construct>>
create menu
main -> menu : <<construct(dao)>>
user -> menu++ : clicks 'View Products'
create dialog
menu -> dialog++ : <<construct(dao)>>
dialog -> dao : getProducts()
dao++
dao -> db++ : select * from product
return ResultSet
return products
create model
dialog -> model : <<construct>>
dialog -> model++ : updateItems(products)
model--
dialog -> dialog : listViewProducts.setModel(productsModel)
dialog -> dao : getCategories()
dao++
dao -> db++ : select distinct category from product
return ResultSet
return categories
create categoryModel
dialog -> categoryModel : « construct »
dialog -> categoryModel++ : updateItems(categories)
categoryModel--
dialog -> dialog : cmbCategory.setModel(categoryModel)
return
menu -> dialog++ : setVisible(true)
user -> dialog++ : selects Category
dialog -> dialog : comboCategory.getSelectedItem();
dialog -> dao++ : filterByCategory(category)
dao -> db++ : select * from Product where category = ?
return ResultSet
return
dialog -> model++ : updateItems(dao.filterByCategory())
model--
dialog -> dialog : setModel(productsModel)
dialog -> dialog : dispose()
dialog --> menu
destroy dialog
@enduml | false | true | true | false | usecase |
2d6ce6f13b4c6188a0e14f1a12b08c3eedda98f9 | 015fb8b88cc26429d6aa75269f9c86f5ef0d33a3 | /System-Programming-Fundamentals-5th-Term/Lab6-TCP/diagrams/state.plantuml | 7a04b1596d863c9aa2f5ca52062f6ecfb149009a | [] | no_license | timlathy/itmo-third-year | fd1e2a6d97b5d49b4efdee8e08d30a3d6a5b48be | 44bd4202beb115e27939add2e51fe13ff4d8b54e | refs/heads/master | 2021-08-17T01:19:56.811533 | 2020-07-31T03:12:21 | 2020-07-31T03:12:21 | 208,321,854 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 845 | plantuml | @startuml
[*] --> ClientInitialization
state ClientInitialization {
[*] --> CheckingArgs
CheckingArgs --> ErrorDisplay : Incorrect arguments
ErrorDisplay -> [*]
CheckingArgs -> ConnectingToServer : Connection info
ConnectingToServer --> ErrorDisplay : Error
ConnectingToServer --> SendingRequest : Directory paths
SendingRequest --> ServerProcessing : Packed request
}
state ServerProcessing {
[*] --> ReadingRequest
ReadingRequest --> ListingDirContents : Directory paths
ListingDirContents --> ListingDirContents : Next directory path
ListingDirContents --> SendingResponse : Directory content listings
SendingResponse --> ClientDisplay : Packed response
}
state ClientDisplay {
[*] --> ReadingResponse
ReadingResponse --> DisplayingListings : Directory content listings
DisplayingListings --> [*]
}
@enduml
| false | true | false | false | sequence |
932edf1032631365cb545810f0f9743bdbf183fb | 22c062df90adff61becb66216348f35b57920adb | /DesignPatern/src/Behavioral/diagrams/observer.puml | cc21786f94886c3c60d0bbc30b68dcd85fa0821f | [
"BSD-3-Clause"
] | permissive | zainmehdi/software_engineering | 0ca30f6daf526434fbec9ae0240da0685dc5977a | 9b655590d05246d6e859673161de05ecde788b14 | refs/heads/master | 2022-12-29T14:33:41.798904 | 2020-10-12T13:57:20 | 2020-10-12T13:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 939 | puml | @startuml
skinparam classAttributeIconSize 0
interface "Interface \n Observer" as Observer{
- string m_name;
# Car * m_car;
+ Observer(Car * car, std::string name):m_car(car),m_name(name){}
+{abstract} update():void
}
interface "Interface \n Car(Subject)" as Car{
+double m_speed;
+int m_temperature;
+vector<Observer *> m_ObserverList;
+notify():void
+attach(Observer *obs):void
+detach(Observer *obs):void
+getSpeed():double
+setSpeed(double speed):void
+getTemperature():int
+setTemperature(int temperature):void
}
class TemperatureObserver{
+update():void
}
class SpeedObserver{
+update():void
}
note "for all Observer in m_ObserverList\n Observer.update() " as CarNotify
note "m_speed=speed\n notify()" as CarSetSpeed
CarNotify -left.. Car::notify
CarSetSpeed -right.. Car::setSpeed
TemperatureObserver -up--|> Observer
SpeedObserver -up--|> Observer
Car *--Observer
@enduml
| false | true | false | false | class |
da19cc2aaa26e54d2c038b564dade9ffee6b26a8 | fafaf973381b21bea8eb334545ded62282cba3a2 | /sunum/Adapter/Adapter.plantuml | fbc1cfc3dbcade01d4ce0cf61609825a1e290f06 | [] | no_license | recepkaraca/DesignPatternsCourse | d9edc61009b4313a08b0383473b0d97f8fb0a2dd | 69f507ebec842c6b50e9a2a093496f62760170fe | refs/heads/master | 2022-09-11T10:19:54.206890 | 2020-06-02T22:51:09 | 2020-06-02T22:51:09 | 245,816,321 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 562 | plantuml | @startuml scenario_uml
left to right direction
class CPUs{
+int getCoreCount()
+int getThreadCount()
+double getBaseClockSpeed()
+int getCacheSize()
+int getReleaseYear()
}
class CPU{
#string CPUName
#int CoreCount
#int ThreadCount
#double BaseClockSpeed
#int CacheSize
#int ReleaseYear
+CPU()
+virtual void GetData()
}
class CPUInformations{
-CPUs _cpus
+CPUInformations()
+override void GetData()
}
class Client{
}
CPUInformations --|> CPU
CPUInformations --> CPUs
Client -> CPU
@enduml | false | true | false | false | class |
73fd61f301e8d70c08d1aa84c8acfbee2573ba8c | b7c218e3ce20014749661c88165ffdf2dfc44762 | /tests/Flagbit/Plantuml/Fixtures/testClass.puml | 13859f1aa596744bbbee3e1478458a01a553efab | [
"BSD-2-Clause"
] | permissive | scips/php-plantumlwriter | d23583ea7f53ab776d8f86cb7f5b9e2a6cea2525 | ec3e0f67f65ca5af6a6941a529a1c5ba310f3b02 | refs/heads/master | 2021-01-16T20:43:17.780119 | 2016-10-11T21:51:44 | 2016-10-11T21:51:44 | 62,056,439 | 0 | 1 | null | 2016-06-28T14:40:14 | 2016-06-27T13:01:21 | PHP | UTF-8 | PlantUML | false | false | 37 | puml | @startuml
class OneClass {
}
@enduml
| false | true | false | false | class |
f5825965f8a63e040895438dee6d1366500dd964 | 1fbbc898e2ebaa5b2be2f3523a87109f2722112f | /input/aws-advanced.puml | e5ef08c43dab039017f11747bf2d6e47beb02a09 | [] | no_license | danial-k/plantuml | 017a97596787959fd1e907b7dcb8125853469e6e | 6cc8a9ac624cdea767d3a05ba1822cc5626f3795 | refs/heads/main | 2022-12-28T05:35:08.738274 | 2020-10-06T10:51:35 | 2020-10-06T10:51:35 | 301,558,880 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 882 | puml | @startuml AWS-Advanced
!define AWSPuml https://raw.githubusercontent.com/awslabs/aws-icons-for-plantuml/master/dist
!includeurl AWSPuml/AWSCommon.puml
!includeurl AWSPuml/General/Users.puml
!includeurl AWSPuml/Mobile/APIGateway.puml
!includeurl AWSPuml/SecurityIdentityAndCompliance/Cognito.puml
!includeurl AWSPuml/Compute/Lambda.puml
!includeurl AWSPuml/Database/DynamoDB.puml
left to right direction
Users(sources, "Events", "millions of users")
APIGateway(votingAPI, "Voting API", "user votes")
Cognito(userAuth, "User Authentication", "jwt to submit votes")
Lambda(generateToken, "User Credentials", "return jwt")
Lambda(recordVote, "Record Vote", "enter or update vote per user")
DynamoDB(voteDb, "Vote Database", "one entry per user")
sources --> userAuth
sources --> votingAPI
userAuth <--> generateToken
votingAPI --> recordVote
recordVote --> voteDb
@enduml
@enduml
| false | true | false | false | uml-unknown |
b812923236d16e4e437fac0d0a86cda07c878b52 | 2ed26e4235a2dd2abe15418ccc770cb313afc083 | /intercepting-filter/etc/intercepting-filter.urm.puml | 2b090cfff25890cd813ac1e7a33cc81b71b32060 | [
"MIT"
] | permissive | secorjeretweaz/java-design-patterns | 38ffb25f9cf212a5edf74eb44a709879bdc876f9 | b2eaa6676430cda29663735125f026df5bb5dcbc | refs/heads/master | 2020-03-29T19:47:22.792134 | 2018-10-02T08:26:07 | 2018-10-02T08:26:07 | 150,280,998 | 0 | 0 | MIT | 2018-09-25T14:41:40 | 2018-09-25T14:41:39 | null | UTF-8 | PlantUML | false | false | 2,279 | puml | @startuml
package com.iluwatar.intercepting.filter {
abstract class AbstractFilter {
- next : Filter
+ AbstractFilter()
+ AbstractFilter(next : Filter)
+ execute(order : Order) : String
+ getLast() : Filter
+ getNext() : Filter
+ setNext(filter : Filter)
}
class AddressFilter {
+ AddressFilter()
+ execute(order : Order) : String
}
class App {
+ App()
+ main(args : String[]) {static}
}
class ContactFilter {
+ ContactFilter()
+ execute(order : Order) : String
}
class DepositFilter {
+ DepositFilter()
+ execute(order : Order) : String
}
interface Filter {
+ execute(Order) : String {abstract}
+ getLast() : Filter {abstract}
+ getNext() : Filter {abstract}
+ setNext(Filter) {abstract}
}
class FilterChain {
- chain : Filter
+ FilterChain()
+ addFilter(filter : Filter)
+ execute(order : Order) : String
}
class FilterManager {
- filterChain : FilterChain
+ FilterManager()
+ addFilter(filter : Filter)
+ filterRequest(order : Order) : String
}
class NameFilter {
+ NameFilter()
+ execute(order : Order) : String
}
class Order {
- address : String
- contactNumber : String
- depositNumber : String
- name : String
- order : String
+ Order()
+ Order(name : String, contactNumber : String, address : String, depositNumber : String, order : String)
+ getAddress() : String
+ getContactNumber() : String
+ getDepositNumber() : String
+ getName() : String
+ getOrder() : String
+ setAddress(address : String)
+ setContactNumber(contactNumber : String)
+ setDepositNumber(depositNumber : String)
+ setName(name : String)
+ setOrder(order : String)
}
class OrderFilter {
+ OrderFilter()
+ execute(order : Order) : String
}
~class DListener {
~ DListener()
+ actionPerformed(e : ActionEvent)
}
}
AbstractFilter --> "-next" Filter
DListener --+ Target
FilterManager --> "-filterChain" FilterChain
FilterChain --> "-chain" Filter
AbstractFilter ..|> Filter
AddressFilter --|> AbstractFilter
ContactFilter --|> AbstractFilter
DepositFilter --|> AbstractFilter
NameFilter --|> AbstractFilter
OrderFilter --|> AbstractFilter
@enduml | false | true | false | false | class |
da8fb095ee2c4829c532910c8cc9b32529ceccdb | 96d48952312778fe2c57b273f826bd9bd6d2396c | /Sample/Class/Relations_And_Labels.puml | 3ba21e7ec7f34adac70b5ef21e1983b2c06592d3 | [
"Apache-2.0"
] | permissive | MathB/PlantUML-NB | d757f6ef77f749eda5e6e9998ee6a3f7f25133eb | 2a63699858c5074714fca3af286ae542a32142bd | refs/heads/master | 2021-01-10T16:19:50.268639 | 2014-06-02T06:51:59 | 2014-06-02T06:51:59 | 44,731,558 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 496 | puml | @startuml
scale 900 width
Class01 <|-- Class02
Class03 *-- Class04
Class05 o-- Class06
Class07 .. Class08
Class09 -- Class10
Class11 <|.. Class12
Class13 --> Class14
Class15 ..> Class16
Class17 ..|> Class18
Class19 <--* Class20
Class01 "1" *-- "many" Class02 : contains
Class03 o-- Class04 : agregation
Class05 --> "1" Class06
class Car
Driver - Car : drives >
Car *- Wheel : have 4 >
Car -- Person : < owns
@enduml
| false | true | false | false | class |
c7e5aa612c93c9c9db92572b4897db39dc0c04fe | de0aea976255b18123dfb3ff5cd037f198b6d2fb | /src/test/java/be/tomcools/advancedtestingpatterns/database/h2liquibase.puml | ef88b222ca42a832ee257be3d55548c58c6528df | [] | no_license | MahatmaFatalError/AdvancedTestingPatterns | fb0fb39881c284fe365570c5c609b3e32c806f0a | 7c574c0138c332a70d924ffbc79e53ff69cae7b1 | refs/heads/master | 2023-02-22T14:10:24.363528 | 2021-01-26T13:06:24 | 2021-01-26T13:06:24 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 332 | puml | @startuml
cloud {
[Velo Service] as velo
}
package "IN OUR CONTROL" {
package "Spring Boot" {
database "In Memory Database" as Database
[Spring Boot Service] as spring
spring -> Database: Liquibase: Creates tables on startup
spring <--> Database
spring <--> velo: Sync every 30 seconds
}
}
HTTP --> spring: REST API
@enduml
| false | true | false | false | sequence |
33ad4fcc6704a5663ebd1f6c078b713a9ca231d8 | 58f5766244826918a3cf79312f861f76c5aa6f7d | /Documents/uml/Models/CompletionData.puml | d36668a0c9308e1527b2e4f67a6a7555e85bfcfa | [
"MIT"
] | permissive | BillKrat/CsvEditSharp | 3835aa9d7955a33830be47b044d3c05763c68dff | a91334a8aa1b08c4f7fe38116892b088e92d4da4 | refs/heads/master | 2022-01-28T15:31:06.719793 | 2019-07-28T11:39:25 | 2019-07-28T11:39:25 | 198,216,226 | 0 | 1 | MIT | 2019-07-22T12:10:45 | 2019-07-22T12:10:44 | null | UTF-8 | PlantUML | false | false | 396 | puml | @startuml
class CompletionData {
+ Content : object <<get>> <<set>>
+ Description : object <<get>> <<set>>
+ Image : ImageSource <<get>> <<set>> = null
+ Priority : double <<get>> <<set>> = 0
+ Text : string <<get>> <<set>>
+ Complete(textArea:TextArea, completionSegment:ISegment, insertionRequestEventArgs:EventArgs) : void
}
ICompletionData <|-- CompletionData
@enduml
| false | true | false | false | class |
23a2bc8b224570ad128cd90319767779a09c271d | 27384bec452cc817f92ab6cc2f31485377c82afe | /report/architecture.puml | 70aeec24618288843fbeeb5c9a1e932530d307bb | [] | no_license | rwerthman/ece575 | baf9e8f8f9a947a17355543c00b2fe5c5152e9a0 | 00c95ff460928adc790b55943cb96a5edd38cf43 | refs/heads/master | 2020-09-14T08:08:34.396108 | 2019-12-09T02:02:10 | 2019-12-09T02:05:03 | 223,073,788 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,109 | puml | @startuml
class CPU
{
init( instructionMemory )
cycle()
}
class ControlUnit
{
RegDst
RegWrite
ALUSrc
ALUOp
MemWrite
MemRead
MemToReg
__init__()
setControlSignals( operation )
}
class InstructionDecode
{
registerFile
readRegister1
readRegister2
immediate
writeRegister
supportedInstructions
execute()
readFromRegister( register )
writeToRegister( data )
}
class InstructionFetch
{
PC
instructionMemory
instruction
__init__( instructionMemory )
execute()
}
class Execution
{
ALUResult
execute()
}
class MemoryAccess
{
dataMemory
readData
execute()
}
class WriteBack
{
execute()
}
CPU *-- ControlUnit
CPU *-- InstructionDecode
CPU *-- InstructionFetch
CPU *-- Execution
CPU *-- MemoryAccess
CPU *-- WriteBack
InstructionDecode *-- ControlUnit
InstructionDecode *-- InstructionFetch
Execution *-- ControlUnit
Execution *-- InstructionDecode
MemoryAccess *-- ControlUnit
MemoryAccess *-- InstructionDecode
MemoryAccess *-- Execution
WriteBack *-- ControlUnit
WriteBack *-- InstructionDecode
WriteBack *-- Execution
WriteBack *-- MemoryAccess
@enduml | false | true | false | false | class |
16827daf509e85f58dace2de00227d9bc2f344fb | d8e031344c4e288cf59556ed66b364b1587a90fe | /documents/uml/sequence/ChangePin.puml | 82b077006c46e38668ae2c9c6ea5ef542d2ed180 | [
"MIT"
] | permissive | SadCoochie/hey-app | 067d5301008010eb83fd5fe86931ff49492f43e9 | 8717c8e8cd2b1de9ea4f2dcd98eb45f551b25175 | refs/heads/master | 2023-07-10T12:21:46.573805 | 2021-08-30T09:36:52 | 2021-08-30T09:36:52 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 404 | puml | @startuml
actor User
participant AuthServer
database AuthDB
User -> AuthServer: change pin
AuthServer -> AuthServer: authorize user
opt isPermitted is false
AuthServer --> User: unauthorize
end
AuthServer -> AuthServer: is old pin correct
opt correct is false
AuthServer --> User: old pin is incorrect
end
AuthServer -> AuthDB: update pin
AuthServer --> User: change pin successfully
@enduml | false | true | false | false | sequence |
13fed4be1a04db1ccf52ba33b549dcb9427e7b43 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AttributeLocalizedEnumValue.puml | 474bb7b6324b70dd52b788e18bb903ddd1fc04a7 | [] | 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,653 | 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 AttributeLocalizedEnumValue [[AttributeLocalizedEnumValue.svg]] {
key: String
label: [[LocalizedString.svg LocalizedString]]
}
interface AttributeLocalizedEnumType [[AttributeLocalizedEnumType.svg]] {
name: String
values: [[AttributeLocalizedEnumValue.svg List<AttributeLocalizedEnumValue>]]
}
interface ProductTypeChangeLocalizedEnumValueOrderAction [[ProductTypeChangeLocalizedEnumValueOrderAction.svg]] {
action: String
attributeName: String
values: [[AttributeLocalizedEnumValue.svg List<AttributeLocalizedEnumValue>]]
}
interface ProductTypeAddLocalizedEnumValueAction [[ProductTypeAddLocalizedEnumValueAction.svg]] {
action: String
attributeName: String
value: [[AttributeLocalizedEnumValue.svg AttributeLocalizedEnumValue]]
}
interface ProductTypeChangeLocalizedEnumValueLabelAction [[ProductTypeChangeLocalizedEnumValueLabelAction.svg]] {
action: String
attributeName: String
newValue: [[AttributeLocalizedEnumValue.svg AttributeLocalizedEnumValue]]
}
AttributeLocalizedEnumValue --> AttributeLocalizedEnumType #green;text:green : "values"
AttributeLocalizedEnumValue --> ProductTypeChangeLocalizedEnumValueOrderAction #green;text:green : "values"
AttributeLocalizedEnumValue --> ProductTypeAddLocalizedEnumValueAction #green;text:green : "value"
AttributeLocalizedEnumValue --> ProductTypeChangeLocalizedEnumValueLabelAction #green;text:green : "newValue"
@enduml
| false | true | false | false | sequence |
7c528ce662f64d3253a14ff9e153f98ffdfd1d88 | 29e499c7049d725de515d0f0294f765b6bbb4dc3 | /DesignPattern/out/production/DesignPattern/com/ilike/memento/game/Game.puml | 868bc409083c1eca2ac293ee36491e3bceb8bc93 | [] | no_license | dongyuancaizi/designPatternLearning | 70dddd9d156fd3d4e9c07bb4f94f76820b625308 | 1fbde529b073b9a205bffd90607574754d6aac50 | refs/heads/master | 2020-07-04T05:13:23.384529 | 2019-11-19T13:09:10 | 2019-11-19T13:09:10 | 202,167,833 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 233 | puml | @startuml
class Memento{
int vit;
int def;
}
Caretaker o--Memento
GameRole -->Memento
client -->Memento
client -->GameRole
class Caretaker{
Memento memento;
}
class GameRole{
Memento createMemento();
}
@enduml | false | true | false | false | class |
cf403df8354955e904833fa5939dcb03f25e52bf | 2a55af90da354874b8bae9e25185474f446cd695 | /application/application.puml | 93156c6ad5b143d0208313e2e7a55b824e37875f | [
"Apache-2.0"
] | permissive | sunw31/boilerplate | acb9adfd4923c6cdc18e095701f5de92c24c34a7 | e7197a5ce99c0fa8219117b5765907ecbd5c3017 | refs/heads/master | 2020-12-29T05:26:08.590998 | 2020-02-04T03:45:41 | 2020-02-04T03:50:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,180 | puml | @startuml
package "debug" {
class "Config" as debug.Config <<V,Orchid>> {
-ctx: context.Context
-clientRepo: debug.ClientRepository
+Config(ctx: context.Context): (debug.ClientWithContexter, error)
+Connect(m: debug.ClientWithContexter): (context.Context, error)
}
}
package "debug" {
interface "ConfigGetContexter" as debug.ConfigGetContexter {
+GetContext(): context.Context
}
}
package "debug" {
interface "Configer" as debug.Configer {
+Config(: context.Context): (debug.ClientWithContexter, error)
+Connect(: debug.ClientWithContexter): (context.Context, error)
}
}
package "debug" {
interface "ConnectGetContexter" as debug.ConnectGetContexter {
+GetContext(): context.Context
}
}
package "debug" {
class "clientRepository" as debug.clientRepository <<E,#FFCC00>> {
+Config(ctx: context.Context): (debug.ClientWithContexter, error)
+Connect(m: debug.ClientWithContexter): error
}
}
package "debug" {
class "topic" as debug.topic <<V,Orchid>>
}
package "event" {
interface "EventLoggerGetContexter" as event.EventLoggerGetContexter {
+GetContext(): context.Context
}
}
package "event" {
class "Saver" as event.Saver <<V,Orchid>> {
+Saver: event.Saver
+Save(m: keyvalue.KeyValueWithContexter): (context.Context, error)
}
}
event.Saver --> event.Saver
package "event" {
interface "SaverGetContexter" as event.SaverGetContexter {
+GetContext(): context.Context
}
}
package "event" {
interface "StartGetContexter" as event.StartGetContexter {
+GetContext(): context.Context
}
}
package "event" {
class "topic" as event.topic <<V,Orchid>>
}
package "exporter" {
class "GlobalMonitoredResource" as exporter.GlobalMonitoredResource <<V,Orchid>> {
-projectID: string
+MonitoredResource(): (string, map[string]string)
}
}
package "run" {
class "topic" as run.topic <<V,Orchid>>
}
package "update" {
class "topic" as update.topic <<V,Orchid>>
}
debug.Config -up-|> debug.Configer
debug.ConfigGetContexter -up-|> debug.ConnectGetContexter
debug.ConfigGetContexter -up-|> event.EventLoggerGetContexter
debug.ConfigGetContexter -up-|> event.SaverGetContexter
debug.ConfigGetContexter -up-|> event.StartGetContexter
debug.ConnectGetContexter -up-|> debug.ConfigGetContexter
debug.ConnectGetContexter -up-|> event.EventLoggerGetContexter
debug.ConnectGetContexter -up-|> event.SaverGetContexter
debug.ConnectGetContexter -up-|> event.StartGetContexter
event.EventLoggerGetContexter -up-|> debug.ConfigGetContexter
event.EventLoggerGetContexter -up-|> debug.ConnectGetContexter
event.EventLoggerGetContexter -up-|> event.SaverGetContexter
event.EventLoggerGetContexter -up-|> event.StartGetContexter
event.SaverGetContexter -up-|> debug.ConfigGetContexter
event.SaverGetContexter -up-|> debug.ConnectGetContexter
event.SaverGetContexter -up-|> event.EventLoggerGetContexter
event.SaverGetContexter -up-|> event.StartGetContexter
event.StartGetContexter -up-|> debug.ConfigGetContexter
event.StartGetContexter -up-|> debug.ConnectGetContexter
event.StartGetContexter -up-|> event.EventLoggerGetContexter
event.StartGetContexter -up-|> event.SaverGetContexter
@enduml
| false | true | false | false | class |
2d898ead85b1166e7bdf560be0ae2794a8e47120 | 0b4c1591a4b0e8944cd4924d6f53032dc188334f | /app/src/main/java/fi/delektre/ringa/ring_thesis/adapters/adapters.plantuml | e83d1f29db7dff46822440297f3c9f959754e519 | [] | no_license | MrFreeman0/Thesis-Ring-App | d3b987c4a5bca8c903d72241508f8a9bc3358c04 | 8539bf1e6bc255df1a9439affc3aba9c6e7cc367 | refs/heads/master | 2020-09-14T18:05:06.282231 | 2019-11-21T15:52:42 | 2019-11-21T15:52:42 | 223,206,710 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,692 | plantuml | @startuml
title __ADAPTERS's Class Diagram__\n
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
abstract class fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase {
+ items : List<T>
+ getItemCount()
+ onCreateViewHolder()
{abstract} # onCreateItemView()
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
class fi.delektre.ringa.ring_thesis.adapters.SectionStatePagerAdapter {
- mFragmentList : List<Fragment>
- mFragmentTitleList : List<String>
+ SectionStatePagerAdapter()
+ addFragment()
+ getCount()
+ getItem()
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
class fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter {
+ buttonPosition : int
+ lineChart : LineChart
+ lineDataSetBloodPressure : LineDataSet
+ lineDataSetFluidBalance : LineDataSet
+ lineDataSetPulse : LineDataSet
+ lineDataSetTemperature1 : LineDataSet
+ lineDataSetTemperature2 : LineDataSet
+ lineDataSetsTemperatures : ArrayList<ILineDataSet>
+ mContext : Context
+ tempData : LineData
~ context : Context
~ yAxesFluid : ArrayList<Entry>
~ yAxesPressure : ArrayList<Entry>
~ yAxesPulse : ArrayList<Entry>
~ yAxesTemp1 : ArrayList<Entry>
~ yAxesTemp2 : ArrayList<Entry>
- mSelectorOptions : ArrayList<SelectorOption>
+ initGraphsDataSets()
+ onBindViewHolder()
# onCreateItemView()
}
}
}
namespace fi.delektre.ringa.ring_thesis {
namespace adapters {
class fi.delektre.ringa.ring_thesis.adapters.ViewWrapper {
+ ViewWrapper()
+ getView()
}
}
}
fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
fi.delektre.ringa.ring_thesis.adapters.SectionStatePagerAdapter -up-|> androidx.fragment.app.FragmentStatePagerAdapter
fi.delektre.ringa.ring_thesis.adapters.SelectorRecyclerViewAdapter -up-|> fi.delektre.ringa.ring_thesis.adapters.RecyclerViewAdapterBase
fi.delektre.ringa.ring_thesis.adapters.ViewWrapper -up-|> androidx.recyclerview.widget.RecyclerView.ViewHolder
fi.delektre.ringa.ring_thesis.adapters.ViewWrapper o-- V : view
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 |
e879cb963d029178d8181ec6e3ddfb5dc4fa8bb8 | c24bf51cd487613207f96c659dfad8aca0c00366 | /app/src/main/java/com/example/multiplication/multiplication.plantuml | fd3291ab804d52a0ea47c06727636acb58dd5fa1 | [] | no_license | wetterbrandt/Multiplication | f8a49f9f3be9725b741641dd17239f59a1113142 | 69ff988699ffdbc93e1478877ed8bd639a0210e2 | refs/heads/master | 2020-09-06T03:33:54.377200 | 2019-12-11T11:09:45 | 2019-12-11T11:09:45 | 220,306,121 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,656 | plantuml | @startuml
title __MULTIPLICATION's Class Diagram__\n
namespace com.example.multiplication {
class com.example.multiplication.CustomListAdapter {
- answers : String[]
- context : Activity
- correctAnswers : String[]
- resultArray : String[]
+ CustomListAdapter()
+ getView()
}
}
namespace com.example.multiplication {
class com.example.multiplication.Game {
{static} - answerList : String[]
- nbrOfQuestions : int
- questionNbr : int
~ Game()
~ getCurrentQuestionPosition()
~ getEverythingList()
~ getNbrOfQuestions()
~ nextQuestion()
~ setAnswer()
- getCorrectAnswerList()
- getNbrOfCorrectlyAnsweredQuestions()
- getQuestionStringList()
}
}
namespace com.example.multiplication {
class com.example.multiplication.Game1Activity {
~ answerTextEdit : EditText
~ questionText : TextView
# onCreate()
# onPause()
# onResume()
# onStart()
# onStop()
- getNextQuestion()
- openResultActivity()
}
}
namespace com.example.multiplication {
class com.example.multiplication.Game2Activity {
~ answerTextEdit : EditText
~ chooseTableText : TextView
~ questionText : TextView
# onCreate()
# onPause()
# onResume()
# onStart()
# onStop()
- getNextQuestion()
- openResultActivity()
}
}
namespace com.example.multiplication {
class com.example.multiplication.MainActivity {
# onCreate()
- openActivity1()
- openActivity2()
}
}
namespace com.example.multiplication {
class com.example.multiplication.Question {
- correctAnswer : int
- nbr1 : int
- nbr2 : int
+ Question()
+ equals()
~ correctAnswer()
~ getCorrectAnswer()
~ getQuestion()
~ getQuestionsAndAnswer()
}
}
namespace com.example.multiplication {
class com.example.multiplication.QuestionList {
- list : Question[]
- nbrOfQuestions : int
+ QuestionList()
~ getQuestion()
- checkListForDuplicateQuestions()
- generateListWithQuestions()
}
}
namespace com.example.multiplication {
class com.example.multiplication.ResultActivity {
~ answers : String[]
~ correctAnswers : String[]
~ newGame : Button
~ resultView : ListView
~ results : String[]
# onCreate()
- generateLists()
- openMainActivity()
}
}
com.example.multiplication.CustomListAdapter -up-|> android.widget.ArrayAdapter
com.example.multiplication.Game o-- com.example.multiplication.QuestionList : questionList
com.example.multiplication.Game1Activity .up.|> java.io.Serializable
com.example.multiplication.Game1Activity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.multiplication.Game1Activity o-- com.example.multiplication.Game : game
com.example.multiplication.Game2Activity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.multiplication.Game2Activity o-- com.example.multiplication.Game : game
com.example.multiplication.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.multiplication.ResultActivity -up-|> androidx.appcompat.app.AppCompatActivity
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
f13c9aef8169eb61e2de1adf4d9709a85de2c014 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ShoppingListLineItemDraft.puml | 450aef361d8e76a6908169d17cd5ffce86091b5e | [] | 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,761 | 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 ShoppingListLineItemDraft [[ShoppingListLineItemDraft.svg]] {
key: String
productId: String
variantId: Long
sku: String
addedAt: DateTime
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
quantity: Long
}
interface MyShoppingListDraft [[MyShoppingListDraft.svg]] {
name: [[LocalizedString.svg LocalizedString]]
description: [[LocalizedString.svg LocalizedString]]
lineItems: [[ShoppingListLineItemDraft.svg List<ShoppingListLineItemDraft>]]
textLineItems: [[TextLineItemDraft.svg List<TextLineItemDraft>]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
deleteDaysAfterLastModification: Long
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
}
interface ShoppingListDraft [[ShoppingListDraft.svg]] {
name: [[LocalizedString.svg LocalizedString]]
slug: [[LocalizedString.svg LocalizedString]]
customer: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
key: String
description: [[LocalizedString.svg LocalizedString]]
anonymousId: String
deleteDaysAfterLastModification: Long
lineItems: [[ShoppingListLineItemDraft.svg List<ShoppingListLineItemDraft>]]
textLineItems: [[TextLineItemDraft.svg List<TextLineItemDraft>]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
ShoppingListLineItemDraft --> MyShoppingListDraft #green;text:green : "lineItems"
ShoppingListLineItemDraft --> ShoppingListDraft #green;text:green : "lineItems"
@enduml
| false | true | false | false | sequence |
374821e94e12dc168ab3fa398521b2e0235e7365 | 25204319e8958e58cefcfc88491a090f36252c13 | /arch/request-provider.class.puml | 659b5e059f3a75fa708899ba7466421f9ed56aae | [] | no_license | eigen-space/base-http-client | fec16f9623f5c7cea3aa132629f37fa13f0b4d65 | 45ed2cc145ff88cd1d5285364a0544d96697827f | refs/heads/master | 2023-08-29T13:15:46.683171 | 2021-11-10T11:40:29 | 2021-11-10T11:40:29 | 313,590,194 | 0 | 0 | null | 2021-11-10T11:39:39 | 2020-11-17T10:54:13 | TypeScript | UTF-8 | PlantUML | false | false | 1,048 | puml | @startuml
!startsub RequestProvider
interface RequestProvider<N> {
+ fetch<T>(\nurl: string, \noptions: RequestProviderOptions\n): RequestProviderResponse<N, T>;
}
!endsub
class SpecificProvider
abstract RequestProviderResponse<N, T> {
# contentTypeToHandler: Dictionary<Function>;
+ constructor(nativeResponse: N): RequestProviderResponse<N, T>;
+ data(): Promise<T>;
+ {abstract} status(): HttpStatusCode | number;
# {abstract} json(): Promise<T>;
# {abstract} contentType(): ContentType;
}
interface RequestProviderOptions {
+ headers: AnyDictionary [0..1];
+ method: HttpRequestMethod [0..1];
+ body: AnyDictionary [0..1];
}
class SpecificRequestProviderResponse
class SpecificLibraryResponse
SpecificProvider -up..|> RequestProvider
RequestProviderOptions <--left[hidden] RequestProvider
RequestProvider -[hidden] RequestProviderResponse
SpecificRequestProviderResponse -up-|> RequestProviderResponse
SpecificLibraryResponse "- nativeResponse" -down--o SpecificRequestProviderResponse
@enduml | false | true | false | false | class |
bf042f33520a80e4bba44bcdd5e9d44ca362fb04 | f8e357daee592f0c24cd2e5778c643a77b4a6404 | /02basics/08basics_nonletterparticipant.puml | 0c2f02e368dc5d356820a525b7bab0be1b434e4f | [] | no_license | jahmanitheone/plantuml | bd3914c882d79157f387aa84268510edbebb05c2 | dda0a93ca7caabf456c96bd9ef8249c1f3ddf9a1 | refs/heads/main | 2023-01-01T12:40:34.242849 | 2020-10-22T17:01:59 | 2020-10-22T17:01:59 | 306,404,003 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 331 | puml | @startuml
'
'Basics: Use non-letters in participants
'You can use quotes to define participants. And you can
'use the as keyword to give an alias to those participants.
Alice -> "Bob()" : Hello
"Bob()" -> "This is very\nlong" as Long
' You can also declare:
' "Bob()" -> Long as "This is very\nlong"
Long --> "Bob()" : ok'
@enduml | false | true | false | false | sequence |
2529750ad3a986d11224e3e3fe30a0dd0dde5ea1 | 5f138671e1fe29fe57a7476602cd3e1272d7ce2f | /entwurf/testsystem.plantuml | 94ef48c2dbbe409b9cf5cf7a86901e4f53bf70f1 | [] | no_license | erlangh8er/Nachrichtendienst | 60585b30d4bd6f7e059407339cd34d654a41a730 | 6318fa96bded4c0105f1edecf278a6f9b7b08a71 | refs/heads/main | 2023-04-01T03:29:14.601625 | 2021-04-07T13:44:26 | 2021-04-07T13:44:26 | 355,560,416 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,275 | plantuml | @startuml
skinparam monochrome true
title Lab*.cpt.haw-hamburg.de
actor Steffen
participant Lab33
participant Lab34
participant Lab35
participant Lab36
participant Lab37
activate Steffen
Steffen -> Lab33 : towerHub:hubInit().
activate Lab33
Steffen -> Lab34 : tower:vcInit({twKLChub,'twKLChub@lab33.cpt.haw-hamburg.de'},false).
note right
steffensVCTower
end note
activate Lab34
Lab34 --> Lab33 : {registerTower,Tower,From}
Steffen -> Lab35 : towerClock:vcInit({twKLChub,'twKLChub@lab33.cpt.haw-hamburg.de'},true).
note right
twKLCclock
end note
activate Lab35
Lab35 --> Lab33 : {registerTower,Tower,From}
Steffen --> Lab36 : botVCs:go().
activate Lab36
Lab36 --> Lab36 : botVC:start().
destroy Lab36
Steffen --> Lab37 : botVCs:go().
activate Lab37
Lab37 --> Lab37 : botVC:start().
destroy Lab37
Steffen --> Lab34 : steffensVCTower ! {printMessagestamp,self()}.
Lab34 --> Lab34 : timeMap98.dot
Steffen --> Lab34 : steffensVCTower ! {printTimeLine,4,self()}.
Lab34 --> Lab34 : timeLine4_42.dot
Steffen --> Lab35 : twKLCclock ! {printTimeLine,4,self()}.
Lab35 --> Lab35 : timeLine4_66.dot
Steffen --> Lab34 : steffensVCTower ! kill.
destroy Lab34
Steffen --> Lab35 : twKLCclock:vcKill().
destroy Lab35
Steffen --> Lab33 : towerHub:hubKill().
destroy Lab33
@enduml
| false | true | false | false | usecase |
74426cba29a7147e164e68dac64c297b658afd12 | 7d6d23fe2b4b8a25e316194a3b28fa1d4060fcc4 | /app/app.plantuml | c8093f5f251bd43fe7109b4f13d29df0f9a35cd4 | [] | no_license | muhiqbal99/IBAKATEL | a3e30b181c739a624d3d089d8bbdcfe08e20d665 | bedab9c7160dc8ffe358ee7e7a46422afe29716a | refs/heads/master | 2023-04-07T03:19:46.480087 | 2021-04-05T11:38:39 | 2021-04-05T11:38:39 | 287,066,727 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 14,893 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.ActivityAdmin {
}
}
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.ActivityUser {
}
}
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.BuildConfig {
}
}
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.DashboardFrag {
}
}
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.Dashboard_User {
}
}
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.Dashboard_admin {
}
}
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.MainActivity {
}
}
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.about {
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
class com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
class com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
class com.ta.iqbal.ibakatel.dtbarang.Adapter {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
class com.ta.iqbal.ibakatel.dtbarang.ApiClient {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
interface com.ta.iqbal.ibakatel.dtbarang.ApiInterface {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
class com.ta.iqbal.ibakatel.dtbarang.Barang {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
class com.ta.iqbal.ibakatel.dtbarang.CustomFilter {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
class com.ta.iqbal.ibakatel.dtbarang.DetailBarangUser {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace dtbarang {
class com.ta.iqbal.ibakatel.dtbarang.EditorActivity {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace identifikasi {
class com.ta.iqbal.ibakatel.identifikasi.MyApplication {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace identifikasi {
class com.ta.iqbal.ibakatel.identifikasi.ScanActivity {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace identifikasi {
class com.ta.iqbal.ibakatel.identifikasi.TicketResultActivity {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace identifikasi {
class com.ta.iqbal.ibakatel.identifikasi.TicketView {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace identifikasi {
class com.ta.iqbal.ibakatel.identifikasi.tes {
}
}
}
namespace com.ta.iqbal.ibakatel {
class com.ta.iqbal.ibakatel.item {
}
}
namespace com.ta.iqbal.ibakatel {
namespace laporan {
class com.ta.iqbal.ibakatel.laporan.ActivityLaporan {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace laporan {
class com.ta.iqbal.ibakatel.laporan.Adapter {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace laporan {
class com.ta.iqbal.ibakatel.laporan.ApiClient {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace laporan {
interface com.ta.iqbal.ibakatel.laporan.ApiInterface {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace laporan {
class com.ta.iqbal.ibakatel.laporan.CustomFilter {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace laporan {
class com.ta.iqbal.ibakatel.laporan.EditorActivity {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace laporan {
class com.ta.iqbal.ibakatel.laporan.Laporan {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace login {
class com.ta.iqbal.ibakatel.login.AppController {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace login {
class com.ta.iqbal.ibakatel.login.Login {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace login {
class com.ta.iqbal.ibakatel.login.Register {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace login {
class com.ta.iqbal.ibakatel.login.Server {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
class com.ta.iqbal.ibakatel.pinjam.ActivityPinjam {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
class com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
class com.ta.iqbal.ibakatel.pinjam.Adapter {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
class com.ta.iqbal.ibakatel.pinjam.ApiClient {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
interface com.ta.iqbal.ibakatel.pinjam.ApiInterface {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
class com.ta.iqbal.ibakatel.pinjam.CustomFilter {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
class com.ta.iqbal.ibakatel.pinjam.EditorActivity {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
class com.ta.iqbal.ibakatel.pinjam.EditorActivityUser {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace pinjam {
class com.ta.iqbal.ibakatel.pinjam.Pinjam {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tes {
class com.ta.iqbal.ibakatel.tes.ActivityTes {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tes {
class com.ta.iqbal.ibakatel.identifikasi.QRCodeScanActivity {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tes {
class com.ta.iqbal.ibakatel.tes.ScanResultActivity {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tutorial {
class com.ta.iqbal.ibakatel.tutorial.Company {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tutorial {
class com.ta.iqbal.ibakatel.tutorial.CompanyViewHolder {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tutorial {
class com.ta.iqbal.ibakatel.tutorial.Product {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tutorial {
class com.ta.iqbal.ibakatel.tutorial.ProductAdapter {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tutorial {
class com.ta.iqbal.ibakatel.tutorial.ProductViewHolder {
}
}
}
namespace com.ta.iqbal.ibakatel {
namespace tutorial {
class com.ta.iqbal.ibakatel.tutorial.tutorial {
}
}
}
com.ta.iqbal.ibakatel.ActivityAdmin .up.|> android.view.View.OnClickListener
com.ta.iqbal.ibakatel.ActivityAdmin -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.ActivityUser .up.|> android.view.View.OnClickListener
com.ta.iqbal.ibakatel.ActivityUser -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.DashboardFrag -up-|> android.support.v4.app.Fragment
com.ta.iqbal.ibakatel.DashboardFrag o-- com.ta.iqbal.ibakatel.DashboardFrag.OnFragmentInteractionListener : mListener
com.ta.iqbal.ibakatel.Dashboard_User -up-|> android.support.v4.app.Fragment
com.ta.iqbal.ibakatel.Dashboard_User o-- com.ta.iqbal.ibakatel.Dashboard_User.OnFragmentInteractionListener : mListener
com.ta.iqbal.ibakatel.Dashboard_admin -up-|> android.support.v4.app.Fragment
com.ta.iqbal.ibakatel.Dashboard_admin o-- com.ta.iqbal.ibakatel.Dashboard_admin.OnFragmentInteractionListener : mListener
com.ta.iqbal.ibakatel.MainActivity -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.about -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin o-- com.ta.iqbal.ibakatel.dtbarang.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin o-- com.ta.iqbal.ibakatel.dtbarang.Adapter.RecyclerViewClickListener : listener
com.ta.iqbal.ibakatel.dtbarang.ActivityBarangAdmin o-- com.ta.iqbal.ibakatel.dtbarang.Adapter : adapter
com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser o-- com.ta.iqbal.ibakatel.dtbarang.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser o-- com.ta.iqbal.ibakatel.dtbarang.Adapter.RecyclerViewClickListener : listener
com.ta.iqbal.ibakatel.dtbarang.ActivityBarangUser o-- com.ta.iqbal.ibakatel.dtbarang.Adapter : adapter
com.ta.iqbal.ibakatel.dtbarang.Adapter .up.|> android.widget.Filterable
com.ta.iqbal.ibakatel.dtbarang.Adapter -up-|> android.support.v7.widget.RecyclerView.Adapter
com.ta.iqbal.ibakatel.dtbarang.Adapter o-- com.ta.iqbal.ibakatel.dtbarang.CustomFilter : filter
com.ta.iqbal.ibakatel.dtbarang.Adapter o-- com.ta.iqbal.ibakatel.dtbarang.Adapter.RecyclerViewClickListener : mListener
com.ta.iqbal.ibakatel.dtbarang.CustomFilter -up-|> android.widget.Filter
com.ta.iqbal.ibakatel.dtbarang.CustomFilter o-- com.ta.iqbal.ibakatel.dtbarang.Adapter : adapter
com.ta.iqbal.ibakatel.dtbarang.DetailBarangUser -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.dtbarang.EditorActivity -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.dtbarang.EditorActivity o-- com.ta.iqbal.ibakatel.dtbarang.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.identifikasi.MyApplication -up-|> android.app.Application
com.ta.iqbal.ibakatel.identifikasi.ScanActivity .up.|> info.androidhive.barcode.BarcodeReader.BarcodeReaderListener
com.ta.iqbal.ibakatel.identifikasi.ScanActivity -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.identifikasi.TicketResultActivity -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.identifikasi.TicketResultActivity o-- com.ta.iqbal.ibakatel.identifikasi.TicketView : ticketView
com.ta.iqbal.ibakatel.identifikasi.TicketView -up-|> android.widget.LinearLayout
com.ta.iqbal.ibakatel.laporan.ActivityLaporan -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.laporan.ActivityLaporan o-- com.ta.iqbal.ibakatel.laporan.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.laporan.ActivityLaporan o-- com.ta.iqbal.ibakatel.laporan.Adapter.RecyclerViewClickListener : listener
com.ta.iqbal.ibakatel.laporan.ActivityLaporan o-- com.ta.iqbal.ibakatel.laporan.Adapter : adapter
com.ta.iqbal.ibakatel.laporan.Adapter .up.|> android.widget.Filterable
com.ta.iqbal.ibakatel.laporan.Adapter -up-|> android.support.v7.widget.RecyclerView.Adapter
com.ta.iqbal.ibakatel.laporan.Adapter o-- com.ta.iqbal.ibakatel.laporan.CustomFilter : filter
com.ta.iqbal.ibakatel.laporan.Adapter o-- com.ta.iqbal.ibakatel.laporan.Adapter.RecyclerViewClickListener : mListener
com.ta.iqbal.ibakatel.laporan.CustomFilter -up-|> android.widget.Filter
com.ta.iqbal.ibakatel.laporan.CustomFilter o-- com.ta.iqbal.ibakatel.laporan.Adapter : adapter
com.ta.iqbal.ibakatel.laporan.EditorActivity -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.laporan.EditorActivity o-- com.ta.iqbal.ibakatel.laporan.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.login.AppController -up-|> android.app.Application
com.ta.iqbal.ibakatel.login.Login -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.login.Register -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.pinjam.ActivityPinjam -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.pinjam.ActivityPinjam o-- com.ta.iqbal.ibakatel.pinjam.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.pinjam.ActivityPinjam o-- com.ta.iqbal.ibakatel.pinjam.Adapter.RecyclerViewClickListener : listener
com.ta.iqbal.ibakatel.pinjam.ActivityPinjam o-- com.ta.iqbal.ibakatel.pinjam.Adapter : adapter
com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser o-- com.ta.iqbal.ibakatel.pinjam.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser o-- com.ta.iqbal.ibakatel.pinjam.Adapter.RecyclerViewClickListener : listener
com.ta.iqbal.ibakatel.pinjam.ActivityPinjamUser o-- com.ta.iqbal.ibakatel.pinjam.Adapter : adapter
com.ta.iqbal.ibakatel.pinjam.Adapter .up.|> android.widget.Filterable
com.ta.iqbal.ibakatel.pinjam.Adapter -up-|> android.support.v7.widget.RecyclerView.Adapter
com.ta.iqbal.ibakatel.pinjam.Adapter o-- com.ta.iqbal.ibakatel.pinjam.CustomFilter : filter
com.ta.iqbal.ibakatel.pinjam.Adapter o-- com.ta.iqbal.ibakatel.pinjam.Adapter.RecyclerViewClickListener : mListener
com.ta.iqbal.ibakatel.pinjam.CustomFilter -up-|> android.widget.Filter
com.ta.iqbal.ibakatel.pinjam.CustomFilter o-- com.ta.iqbal.ibakatel.pinjam.Adapter : adapter
com.ta.iqbal.ibakatel.pinjam.EditorActivity -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.pinjam.EditorActivity o-- com.ta.iqbal.ibakatel.pinjam.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.pinjam.EditorActivityUser -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.pinjam.EditorActivityUser o-- com.ta.iqbal.ibakatel.pinjam.ApiInterface : apiInterface
com.ta.iqbal.ibakatel.tes.ActivityTes -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.identifikasi.QRCodeScanActivity .up.|> me.dm7.barcodescanner.zxing.ZXingScannerView.ResultHandler
com.ta.iqbal.ibakatel.identifikasi.QRCodeScanActivity -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.tes.ScanResultActivity -up-|> android.support.v7.app.AppCompatActivity
com.ta.iqbal.ibakatel.tutorial.Company -up-|> com.thoughtbot.expandablerecyclerview.models.ExpandableGroup
com.ta.iqbal.ibakatel.tutorial.CompanyViewHolder -up-|> com.thoughtbot.expandablerecyclerview.viewholders.GroupViewHolder
com.ta.iqbal.ibakatel.tutorial.Product .up.|> android.os.Parcelable
com.ta.iqbal.ibakatel.tutorial.ProductAdapter -up-|> com.thoughtbot.expandablerecyclerview.ExpandableRecyclerViewAdapter
com.ta.iqbal.ibakatel.tutorial.ProductViewHolder -up-|> com.thoughtbot.expandablerecyclerview.viewholders.ChildViewHolder
com.ta.iqbal.ibakatel.tutorial.tutorial -up-|> android.support.v7.app.AppCompatActivity
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
01504427401831d4b6229b803a3c1ba4cdbddd82 | e10cac196aa29d7353b36e26c7bf65fa39c5763b | /docs/DG_Diagrams/DineInfoSequence.puml | ed4a5168d168ac5fd30df642094e996099e263c8 | [] | no_license | wamikamalik/tp | 174c866802ecc34139def88fa91c79d9c682c7bc | d6beb431ad97a6608bcdf8418f698c6faa779c61 | refs/heads/master | 2023-01-11T22:41:16.157009 | 2020-11-09T13:17:45 | 2020-11-09T13:17:45 | 299,304,875 | 1 | 0 | null | 2020-09-28T12:41:08 | 2020-09-28T12:41:07 | null | UTF-8 | PlantUML | false | false | 1,001 | puml | @startuml
box Logic
participant ":Parser"
participant ":DineInfoCommand"
end box
box Ui
participant "<<class>>\n:Ui"
end box
[-> ":Parser": user command
activate ":Parser"
create ":DineInfoCommand"
":Parser" -> ":DineInfoCommand": user input
activate ":DineInfoCommand"
":DineInfoCommand" --> ":Parser"
deactivate ":DineInfoCommand"
":Parser" -> ":DineInfoCommand": executeCommand()
activate ":DineInfoCommand"
opt user input empty
":DineInfoCommand" --> ":Parser"
end
":DineInfoCommand" -> ":DineInfoCommand": checkFoodPlace()
activate ":DineInfoCommand"
alt size=0
":DineInfoCommand" --> ":Parser"
else size>0
":DineInfoCommand" -> "<<class>>\n:Ui" : printDineInfoResult()
activate "<<class>>\n:Ui"
"<<class>>\n:Ui" --> ":DineInfoCommand": results
deactivate "<<class>>\n:Ui"
end
":DineInfoCommand" --> ":DineInfoCommand"
deactivate ":DineInfoCommand"
":DineInfoCommand" --> ":Parser": outlet information
deactivate ":DineInfoCommand"
[<-- ":Parser": isOngoing
deactivate ":Parser"
@enduml | false | true | false | false | sequence |
c5f975472fb85e43f28b010705ff76016dd4c3b6 | 922d98ceb2339c0282040fccf9c4e2031e398789 | /diagramas/error.plantuml | 3913c09b21dd231b62cf9a22ceaa9e3a4e782537 | [] | no_license | vonbeitthia/FarmaciaUML | 30fb8825a643c759f0c2d8de23464bae89c23551 | 8b3ba6ca0b9da6fcbac7fecfbebc1134f1b5650b | refs/heads/main | 2023-01-27T11:31:15.031334 | 2020-12-06T00:27:34 | 2020-12-06T00:27:34 | 316,989,460 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 965 | plantuml | ```plantuml
@startuml analisis de error
title
Analisis de errores
**sistema de Farmacia**
end title
header
Ordenado por espacios de nombre
end header
!include https://raw.githubusercontent.com/vonbeitthia/FarmaciaUML/main/skin/blue.plantuml
'!include ./skin/blue.plantuml
package login {
class errorAuth {
id : int
descripcion : str
mensaje : str
}
}
note right
**manejo de excepciones en el modulo de autenticacion**
<#AliceBlue>|= Error |= descripcion |= mensaje |
<#LightSkyBlue>| 3000 | usuario no ingresado | ingrese un nombre de usuario|
<#AntiqueWhite>| 3005 | contraseña no ingresada | ingrese una contraseña |
<#LightSkyBlue>| 3010 | usuario no encontrado | usuario o contraseña no encontrada |
<#AntiqueWhite>| 3015 | contraseña invalida | usuario o contraseña no encontrada |
<#LightSkyBlue>| 3020 | acceso bloqueado | usuario bloqueado, comuniquese con el administrador |
end note
@enduml | false | true | true | false | class |
c7833aa57a0819c360c199fa046ad6854be714ab | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartUpdateItemShippingAddressAction.puml | fca0b6e8e5d06caef341075edb05155a15abcb78 | [] | 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 | 481 | 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 CartUpdateItemShippingAddressAction [[CartUpdateItemShippingAddressAction.svg]] extends CartUpdateAction {
action: String
address: [[BaseAddress.svg BaseAddress]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
0b544f5d5b261c3d32718956c23c0890cf31e814 | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao3/UC2/UC2_SSD.puml | ff506eadc864e62c15be302089838bbfac342930 | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 527 | puml | @startuml
autonumber
actor "Administrativo" as ADM
activate ADM
ADM -> ":Sistema" : nova área de atividade
activate ":Sistema"
":Sistema" --> ADM : solicita dados \n(código, descrição breve e detalhada)
deactivate ":Sistema"
ADM -> ":Sistema" : introduz os dados solicitados
activate ":Sistema"
":Sistema" --> ADM : apresenta dados e solicita confirmação
deactivate ":Sistema"
ADM -> ":Sistema" : confirma
activate ":Sistema"
":Sistema" --> ADM : operação bem sucedida
deactivate ":Sistema"
deactivate ADM
@enduml
| false | true | true | false | usecase |
4a85ac305c53bad9acf96195356823b81ca8dbbf | c341215b1b9d88fee81b8af9ebfcff285f0ef49c | /src/gp018328/com/gupaoedu/homework/pattern/factory/homework1/FactoryMethod.puml | 0b391272e191c9a8a23373db2c8c3bba423c945d | [] | no_license | GP018328/guopaoedu-GP018328-2019-homework | 5570fff2a379b9bbc853d2a7f4629b22fdf640ac | 18f24258150c0c32ffc4fb486413686e7e4d2d75 | refs/heads/master | 2020-04-28T17:34:08.734073 | 2019-03-23T03:01:20 | 2019-03-23T03:01:20 | 175,451,458 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 442 | puml | @startuml
interface IProduct
interface IProduct{
}
class ProductA {
}
IProduct<|--ProductA
class ProductB {
}
IProduct<|--ProductB
interface IFactory
interface IFactory{
IProduct createProduct()
}
IProduct<..IFactory
class FactoryMethodA{
IProduct createProduct()
}
IFactory<|--FactoryMethodA
ProductA<..FactoryMethodA
class FactoryMethodB{
IProduct createProduct()
}
IFactory<|--FactoryMethodB
ProductB<..FactoryMethodB
@enduml | false | true | false | false | class |
efdac6fb158b1c462a71ff8a74479cba8d522b75 | e7b46ab28944e0e492271f96b723069446a108d4 | /Bounty Hunter/src/method/method.plantuml | 3ddcffb11149e08f45415ad21633dd16d7534306 | [] | no_license | badboiririi/blonde | 21fb32baee3adb765c5f8ebb58a94f278b612ee9 | a688ab3006516f9f0cc23c73897cd8a5dcb100dc | refs/heads/main | 2023-06-09T18:55:18.723775 | 2021-06-24T03:01:19 | 2021-06-24T03:01:19 | 367,758,887 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,539 | plantuml | @startuml
title __METHOD's Class Diagram__\n
namespace method {
class method.Delete {
~ con : Connection
~ dsql : Statement
+ delete()
}
}
namespace method {
class method.HelpAdd {
~ con : Connection
~ hsql : Statement
+ add()
}
}
namespace method {
class method.Insert {
~ con : Connection
~ irs : ResultSet
~ isql : Statement
+ getinsert()
}
}
namespace method {
class method.Login {
~ con : Connection
~ lrs : ResultSet
~ lsql : Statement
+ getlog()
}
}
namespace method {
class method.Search {
~ con : Connection
~ srs : ResultSet
~ ssql : Statement
+ search()
}
}
namespace method {
class method.Show {
~ con : Connection
~ srs : ResultSet
~ ssql : Statement
+ show()
}
}
method.Delete .up.|> iterfaces.DeleteItf
method.Delete o-- util.JDBC_link : getcon
method.HelpAdd .up.|> iterfaces.AddItf
method.HelpAdd o-- util.JDBC_link : getcon
method.Insert o-- util.JDBC_link : getcon
method.Login o-- util.JDBC_link : getcon
method.Search .up.|> iterfaces.SearchItf
method.Search o-- util.JDBC_link : getcon
method.Show o-- util.JDBC_link : getcon
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 |
6af7a1834a896cd880d13bbc011beabba2466ccc | d6478acece4b5e58c0f85dc913b63e6eb9795a23 | /design/rest_diagram_unflat_simple.png.puml | 1d0c5c302fe3d2341ca63517021bdeedcc0fb798 | [
"MIT"
] | permissive | Daenecompass/harvest-client | 80c592234ffeb6471eb2f47832ccbc4abf3de14a | 855157ee715163afaf4cac9faf9a44541e6a34c0 | refs/heads/master | 2020-12-18T20:30:54.841627 | 2020-01-17T15:22:01 | 2020-01-17T15:22:01 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 970 | puml | @startuml
Title Harvest Data without Assignments nor Flattening
class Company
Invoice "1" ..> "1" Client
Invoice o-- InvoiceItem
Invoice ..> Estimate
Invoice ..> Retainer
Invoice --> Creator
InvoiceItem ..> Invoice
InvoiceItem ..> InvoiceItemCategory
' by endpoint
Invoice o.. InvoiceMessage
Invoice o.. InvoicePayment
Expense ..> Project
Expense ..> ExpenseCategory
Expense ..> User
Expense --> Receipt
Expense ..> Invoice
Estimate ..> Client
Estimate o-- EstimateItem
Estimate --> Creator
' by endpoint
Estimate o.. EstimateMessage
EstimateItem ..> EstimateLineCategory
EstimateMessage o-- EstimateMessageRecipient
ClientContact .> Client
' by endpoint
Project o.. User
Project o.. Task
User o.. Role
TimeEntry ..> User
TimeEntry ..> Project
TimeEntry ..> Task
TimeEntry -> ExternalService
TimeEntry ..> Invoice
legend
dashed arrows mean that we only have a lightweight reference object
and we need a GET request to get the full object
end legend
@enduml | false | true | false | false | class |
76e6003a289a62afe7e46ee8846a9886cc5c618c | 1fef2f0f0ad13aebb3d3f732d0cae8867ee8e87c | /plantuml/Microwave.Classes/Interfaces/IUserInterface.puml | 14b7c5517fa5c8505adcafcc2e414d3cbebc7b78 | [] | no_license | eengstroem/MicrowaveOven | b9711c314f053f00f9208cae69085d7bdf0ba3d4 | ac721f24f0025f5e10f50d4d58c4a7ad30f9fbd2 | refs/heads/master | 2023-04-25T09:55:42.513911 | 2021-05-24T16:45:23 | 2021-05-24T16:45:23 | 363,380,008 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 345 | puml | @startuml
interface IUserInterface {
OnPowerPressed(sender:object, e:EventArgs) : void
OnTimePressed(sender:object, e:EventArgs) : void
OnStartCancelPressed(sender:object, e:EventArgs) : void
OnDoorOpened(sender:object, e:EventArgs) : void
OnDoorClosed(sender:object, e:EventArgs) : void
CookingIsDone() : void
}
@enduml
| false | true | false | false | class |
b77535dbc3976e4585f51d897d1118cc6ebfb2af | f6448df365e07d04b3acafdcc180efa167d24018 | /docs/img/contiv-flow.puml | 42daa71462747b70cf4b968fb415524495c4e6bb | [
"Apache-2.0"
] | permissive | chadr123/vpp | ebeeea1d9a79f19fae8ea4aa99994fde409783bd | 641b41a6fc702c18fe544dced7347a519fd07b45 | refs/heads/master | 2022-12-16T19:24:26.995993 | 2020-05-28T09:55:53 | 2020-05-28T09:55:53 | 268,993,408 | 0 | 0 | Apache-2.0 | 2020-06-03T04:59:58 | 2020-06-03T04:59:57 | null | UTF-8 | PlantUML | false | false | 2,016 | puml | @startuml
participant "k8s Control Plane"
participant Kubelet
participant "Contiv CRD"
participant "Contiv KSR"
database "Contiv ETCD"
participant "Contiv CNI"
participant "Contiv VPP Agent"
"k8s Control Plane" -> "Contiv CRD": add / update node config
"Contiv CRD" -> "Contiv ETCD": add / update node config
"k8s Control Plane" -> "Contiv KSR": add / update node info
"Contiv KSR" -> "Contiv ETCD": add / update node info
activate "Contiv VPP Agent"
"Contiv ETCD" -> "Contiv VPP Agent": read / update node config & info
"Contiv ETCD" -> "Contiv VPP Agent": read persisted VPP config
"Contiv VPP Agent" -> "Contiv VPP Agent": configure / reconfigure VPP:\nVXLANs, routes, NAT
"Contiv VPP Agent" -> "Contiv ETCD": persist VPP config
deactivate "Contiv VPP Agent"
|||
"k8s Control Plane" -> Kubelet: add POD
Kubelet -> "Contiv CNI": add container
"Contiv CNI" -> "Contiv VPP Agent": add container
activate "Contiv VPP Agent"
"Contiv VPP Agent" -> "Contiv VPP Agent": configure VPP:\ninterface, routes, NAT, ACLs
"Contiv VPP Agent" -> "Contiv ETCD": persist POD config
"Contiv VPP Agent" --> "Contiv CNI": OK / error
deactivate "Contiv VPP Agent"
"Contiv CNI" --> "Kubelet": OK / error
"Kubelet" --> "k8s Control Plane": OK / error
|||
"k8s Control Plane" -> "Contiv KSR": update service / policy
"Contiv KSR" -> "Contiv ETCD": update service / policy
"Contiv ETCD" -> "Contiv VPP Agent": update service / policy
activate "Contiv VPP Agent"
"Contiv VPP Agent" -> "Contiv VPP Agent": Reconfigure VPP:\nNAT, ACLs
deactivate "Contiv VPP Agent"
|||
"Contiv CRD" -> "Contiv VPP Agent": dump VPP config
activate "Contiv CRD"
"Contiv VPP Agent" --> "Contiv CRD": VPP config
"Contiv CRD" -> "Contiv CRD": validate config
"Contiv CRD" -> "k8s Control Plane": export results
deactivate "Contiv CRD"
|||
"Contiv netctl" -> "Contiv ETCD": dump cluster data
"Contiv ETCD" --> "Contiv netctl": cluster data
"Contiv netctl" -> "Contiv VPP Agent": dump VPP config
"Contiv VPP Agent" --> "Contiv netctl": VPP config
@enduml | false | true | false | false | sequence |
91f071881a78767e35dcbe1812fb1b0ac28ec103 | ddd9fceda7accb11f6e5c8f3614ee9b5a717d8e8 | /node/src/deps/libuv/internal.puml | c8d21b90add26edc865caa7f60f7c2828ce6c61d | [] | no_license | Ayase-252/note-figures | e2cf7578aa9363346ac0c97bac38dc88e2afd6c8 | 259f9b7eb718359e7c63f9c5da97b1e6e098b3c2 | refs/heads/master | 2023-04-14T13:19:23.107968 | 2021-05-01T11:26:13 | 2021-05-01T11:26:13 | 337,063,921 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 186 | puml | @startuml deps/libuv/utils
namespace libuv <<ExternalCModule>> {
class internal {
uint64_t uv__hrtime(uv_clocktype_t type)
void uv__signal_global_once_init(void)
}
}
@enduml
| false | true | false | false | class |
1b1a3ef394871e55f36f1fc603df12fdc0d64aa6 | 42f7bcc902e893d7774b8f564104251cc6d2f811 | /front-end/GuGu_Client/app/app.plantuml | a832ae97ba173423a09dec2d17c301243ef412d5 | [] | no_license | GuessOurName/GuGu | 7c4a1922fd0594a636d6ee94f7c56bc256481b83 | bd07ba6295e9e208b3a5aad9f195bd368e84fb25 | refs/heads/master | 2022-10-19T07:19:26.981398 | 2020-06-15T11:16:09 | 2020-06-15T11:16:09 | 264,867,917 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,964 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace Activity {
class Activity.AtyAdd {
}
}
namespace Activity {
class Activity.AtyChatRoom {
}
}
namespace Activity {
class Activity.AtyLoginOrRegister {
}
}
namespace Activity {
class Activity.AtyMain {
}
}
namespace Activity {
class Activity.AtyWelcome {
}
}
namespace Adapter {
class Adapter.AdapterAvatar {
}
}
namespace Adapter {
class Adapter.AdapterBackground {
}
}
namespace Adapter {
class Adapter.AdapterChatMsg {
}
}
namespace Adapter {
class Adapter.AdapterMainViewPager {
}
}
namespace Adapter {
class Adapter.AdapterMomentItem {
}
}
namespace Adapter {
class Adapter.AdapterUserItem {
}
}
namespace Server {
class Server.ReceiveChatMsg {
}
}
namespace Server {
class Server.ServerManager {
}
}
namespace Util {
class Util.ChatMsg {
}
}
namespace Util {
class Util.ImageManager {
}
}
namespace Util {
class Util.ImageMsg {
}
}
namespace Util {
class Util.LoginMsg {
}
}
namespace Util {
class Util.MomentMsg {
}
}
namespace Util {
class Util.RegisterMsg {
}
}
namespace Util {
class Util.UserItemMsg {
}
}
namespace View {
class View.LayoutChats {
}
}
namespace View {
class View.LayoutContacts {
}
}
namespace View {
class View.LayoutMoments {
}
}
namespace View {
class View.PicAndTextBtn {
}
}
namespace View {
class View.TitleBar {
}
}
namespace com.example.gugu_client {
class com.example.gugu_client.BuildConfig {
}
}
Activity.AtyAdd -up-|> androidx.appcompat.app.AppCompatActivity
Activity.AtyAdd o-- View.TitleBar : titleBar
Activity.AtyChatRoom -up-|> androidx.appcompat.app.AppCompatActivity
Activity.AtyChatRoom o-- View.TitleBar : titleBar
Activity.AtyLoginOrRegister .up.|> android.view.View.OnClickListener
Activity.AtyLoginOrRegister -up-|> androidx.appcompat.app.AppCompatActivity
Activity.AtyLoginOrRegister o-- Server.ServerManager : serverManager
Activity.AtyMain -up-|> androidx.appcompat.app.AppCompatActivity
Activity.AtyMain o-- View.LayoutChats : chats
Activity.AtyMain o-- View.LayoutContacts : contacts
Activity.AtyMain o-- View.LayoutMoments : moments
Activity.AtyMain o-- View.TitleBar : titleBar
Activity.AtyWelcome -up-|> androidx.appcompat.app.AppCompatActivity
Adapter.AdapterAvatar -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
Adapter.AdapterBackground -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
Adapter.AdapterChatMsg -up-|> android.widget.ArrayAdapter
Adapter.AdapterMainViewPager -up-|> androidx.fragment.app.FragmentPagerAdapter
Adapter.AdapterMomentItem -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
Adapter.AdapterUserItem -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
View.LayoutChats -up-|> androidx.fragment.app.Fragment
View.LayoutChats o-- Adapter.AdapterUserItem : adapterUserItem
View.LayoutContacts -up-|> androidx.fragment.app.Fragment
View.LayoutContacts o-- View.PicAndTextBtn : patbBarContact
View.LayoutContacts o-- View.PicAndTextBtn : patbBarGroup
View.LayoutMoments -up-|> androidx.fragment.app.Fragment
View.LayoutMoments o-- Adapter.AdapterMomentItem : adapterMomentItem
View.PicAndTextBtn -up-|> android.widget.LinearLayout
View.PicAndTextBtn o-- View.PicAndTextBtn.picAndTextBtnClickListener : listener
View.TitleBar -up-|> android.widget.RelativeLayout
View.TitleBar o-- View.TitleBar.titleBarClickListener : listener
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 |
8f258dd15cd9e8f6b959b2cdca4f1cb133fc1072 | 967db7f88bdf0e5cb8feca9571b9e85175f7bcc8 | /docs/Solution/Control/Security/Encryption/UserInteraction.puml | c9f351d3ba04f40bea74370f12c7d3f4c0d4c8a7 | [] | no_license | CAADE/edgeville | fd0053d749c259029ef4c7791210663ace87be21 | 6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65 | refs/heads/master | 2020-03-28T06:11:31.554585 | 2019-05-02T17:37:03 | 2019-05-02T17:37:03 | 147,819,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 175 | puml | @startuml
rectangle "Diagram TBD"
@enduml
actor User
User -> "Security Layer/Encryption": UseCase
"Security Layer/Encryption" -> bin: bin-name()
bin -> sailsjs: bin/name()
| false | true | false | false | sequence |
a3c9b6278d794679ec29c963421838d37c9f6917 | 054360fcc58599d8df1a6c77d976cd544f5e5b80 | /Electric_Scooter/sequenceDiagramRegisteredUser.puml | af3b451a06bfbf09dea5f68f67f008b751209692 | [] | no_license | antonianwufo/mv_bootcamp | 14bfa2339be799a31c17061e10079f59f6601437 | fb41b6c4e4cc781cae6878dd570d87dbce392dfb | refs/heads/main | 2023-06-26T18:30:59.311484 | 2021-07-22T10:08:17 | 2021-07-22T10:08:17 | 381,036,595 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 407 | puml | @startuml
skinparam actorStyle awesome
actor Customer
participant ScooterApp
participant ScooterAPI
database ScooterDatabase
Customer -> ScooterApp: enter registration details(email/username)
ScooterApp -> ScooterApp: validate input
ScooterApp -> ScooterAPI: registration details
ScooterAPI -> ScooterDatabase: already registered?
ScooterAPI -> Customer: decline - customer already registered
@enduml
| false | true | false | false | usecase |
5100450a51d55b41ec4f64e88409be7cf0d48255 | c59662b854a3e06355e564874a052b992f1f5bf3 | /NationalLottery/src/BallContainer.puml | 7ff53266c403df0edd46fc44651c17c3beda34bb | [] | no_license | AdrChm/JJIT | 5d5aee303b1562b647672d0d7b347460f5f8fc41 | 5f84cb5f6c4bbc88a9818b23b3cb3ae292649a8d | refs/heads/main | 2023-05-31T14:23:55.693220 | 2023-05-21T21:30:13 | 2023-05-21T21:30:13 | 247,514,330 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 691 | puml | @startuml
abstract class BallContainer
{
- final String name;
- final Ball[] balls;
- int noOfBalls;
+ BallContainer(String requiredName, int requiredSize)
+ String getName()
+ abstract String getType();
+ Ball getBall(int index)
+ int getNoOfBalls()
+ int getSize()
+ addBall(Ball ball)
+ swapBalls(int index1, int index2)
+ removeBall()
+ String toString()
}
class Machine extends BallContainer
{
+ Machine(String name, int size)
+ String getType()
+ Ball ejectBall()
}
class Rack extends BallContainer
{
+ Rack(String name, int size)
+ String getType()
+ sortBalls()
+ boolean contains(int value)
}
@enduml | false | true | false | false | class |
937852024232fcfab7d75b143bf8c6dbffd069bf | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StandalonePriceRemoveStagedChangesAction.puml | b6c0d8c7cd572d1044786a4daa7a31de3d99ba47 | [] | 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 | 479 | 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 StandalonePriceRemoveStagedChangesAction [[StandalonePriceRemoveStagedChangesAction.svg]] extends StandalonePriceUpdateAction {
action: String
}
interface StandalonePriceUpdateAction [[StandalonePriceUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
53e44c9efa4010b82c65b13e492110e05da8bab4 | 434d5256fa47c6bec0e5d79917f2d09b52490fa0 | /doc/source/imgs/src/communicators_interfaces.puml | 6282f40e01c568d2e331b1e5439b7b0935713f2f | [
"MIT"
] | permissive | Parallel-in-Time/PyPinT | 2d0a54d21a6b50863c6acef69eb9a86d3bcc7fcf | 90aed34cf43d633e44f56444f6c5d4fa39619663 | refs/heads/master | 2016-08-03T18:58:05.269042 | 2014-06-10T08:27:30 | 2014-06-10T08:32:45 | 19,447,961 | 0 | 2 | null | 2014-06-02T14:26:08 | 2014-05-05T07:39:20 | Python | UTF-8 | PlantUML | false | false | 362 | puml | @startuml
skinparam stereotype {
CBackgroundColor #AF5A50
ABackgroundColor #7D966E
IBackgroundColor #D7AA50
}
skinparam class {
BackgroundColor #E1EAF1
ArrowColor #00557C
BorderColor #99BAD0
}
abstract class CommunicationProvider
class Message
class ForwardSending
CommunicationProvider --|> ForwardSending
Message --* ForwardSending
@enduml
| false | true | false | false | class |
00d1d8c21ec0220cd948b89f391cbc721c59d2cf | 25565dc5e332bfcc9a7fe427aa599133eb4e25a2 | /core/data-flow.puml | dafdc7ab8f4abd35be244060a4b3d66b3eefa5d4 | [
"Apache-2.0"
] | permissive | bank-io/open-banking-gateway | ba27c5ae5c9d2bf073a8c754d136b64dedc4e5b3 | 37ad1b2aaf681fceebd11ce3a2126ae3dd5df71a | refs/heads/master | 2022-04-11T12:44:20.181909 | 2020-01-20T14:19:26 | 2020-01-20T14:19:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,013 | puml | @startuml
actor PSU
component "Job Context\n\n(CONTEXT)" as ctx {
component "Request id" as ctxReqId
component "ASPSP id" as ctxAspspId
component "PSU id" as ctxPsuId
component "Account access" as ctxAccess
ctxReqId -[hidden]down-> ctxAspspId
ctxAspspId -[hidden]down-> ctxPsuId
ctxPsuId -[hidden]down-> ctxAccess
}
component "Remote endpoint DTO\nheaders" as headers {
component "PSU id" as psuId
}
component "Remote endpoint DTO\nbody" as body {
component "Account access" as access
}
node UI [
UI to input missing
--
<PSU id>
<Account access>
__<transactions>
__<accounts>
]
ctxPsuId --> psuId : 1. Map context
ctxAccess -> access : 1. Map context
psuId -> UI : 2. Validate dto:\nmissing values
access -> UI : 2. Validate dto:\nmissing values
PSU -> UI : 3. Input missing values
psuId <-- UI : 4. Updated
access <-- UI : 4. Updated
ctxPsuId <- psuId : 5. Update context\nby mapping back
ctxAccess <- access : 5. Update context\nby mapping back
psuId -[hidden]down-> access
@enduml
| false | true | false | false | usecase |
ea780b0255dc98f785090f65321304b1d9f3c3b0 | 6b94956262f6a8825dea7f2823a3f33ee322e39e | /docs/diagrams/tasks/markUnmarkTask.puml | ff7910e73a76f039c81030502786bf2821f6dd46 | [] | no_license | AY2021S2-CS2113T-F08-4/tp | 607eea5a4fe93824d6aa573c087fae90ad920eff | 7c8b292c9c0cda3d4fbb3652f821c2cfef2051cd | refs/heads/master | 2023-04-01T01:28:10.618333 | 2021-04-12T14:40:07 | 2021-04-12T14:40:07 | 344,644,962 | 0 | 4 | null | 2021-04-12T14:40:08 | 2021-03-05T00:13:09 | Java | UTF-8 | PlantUML | false | false | 1,104 | puml | @startuml
-> ":MarkOrUnmarkTask" : execute()
activate ":MarkOrUnmarkTask"
opt TaskManager.taskListIsEmpty(taskTypeNumber)
":MarkOrUnmarkTask" -> ":Ui"++ : printTaskListIsEmptyMessage
return
<---- ":MarkOrUnmarkTask"
end
":MarkOrUnmarkTask" -> ":Ui"++ : printSelectTaskNumberToMarkOrUnmark(taskTypeNumber)
return
loop
":MarkOrUnmarkTask" -> ":Ui"++ : readCommandToInt()
return taskNumber
alt TOGGLE_TASK_COMMAND
":MarkOrUnmarkTask" -> ":MarkOrUnmarkTask"++ : toggleTaskStatus(taskNumber, TASK_TYPE)
return
<---- ":MarkOrUnmarkTask"
else TOGGLE_ASSIGNMENT_COMMAND
":MarkOrUnmarkTask" -> ":MarkOrUnmarkTask"++ : toggleTaskStatus(taskNumber, ASSIGNMENT_TYPE)
return
<--- ":MarkOrUnmarkTask"
else TOGGLE_MIDTERM_COMMAND
":MarkOrUnmarkTask" -> ":MarkOrUnmarkTask"++ : toggleTaskStatus(taskNumber, MIDTERM_TYPE)
return
<--- ":MarkOrUnmarkTask"
else TOGGLE_FINAL_EXAM_COMMAND
":MarkOrUnmarkTask" -> ":MarkOrUnmarkTask"++ : toggleTaskStatus(taskNumber, FINAL_EXAM_TYPE)
return
<--- ":MarkOrUnmarkTask"
else default
":MarkOrUnmarkTask" -> ":Ui"++ : printRepeatInputUntilValidMessage()
return
end
end
@enduml | false | true | false | false | sequence |
4475cf1502f7a7b6bf7a6d31b43a257673d185b1 | cf741fa023941c70377b4382bec55b6c29796264 | /2020/jitsi-web-integration/jitsi-integration.readme.puml | c9bfcf493f21ec538f87cec956d92a35f2e39431 | [] | no_license | sundarsrd/Learnings | ece0d986fa9e7009a199f95ff1d3ef7143c43ea9 | ae41ecffba938e820c8a011529f533364adfef7f | refs/heads/master | 2021-01-19T03:47:29.413361 | 2020-11-19T09:20:45 | 2020-11-19T09:20:45 | 61,856,419 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,376 | puml | @startuml "Integrating webapp / mobile with Jitsi"
hide footbox
skinparam handwritten true
actor "Hospital\nAdmin" as hoad #LightCoral
participant "Priism\nwebsite" as prws #LightSeaGreen
participant "Jitsi\nPlatform" as jtsi #LightSteelBlue
participant "Call\nRecorder\n(UTube)" as care #LightSlateGray
actor "NABH\nUser" as nusr #SteelBlue
autonumber
hoad --> hoad : Launches the Priism NABH mobile app \n or Starts conference from Prism website
note right : Uses Jitsi platform apis
prws --> prws : Initialize a new conference\n@cid:17052020:MRI-Inspection w Video
prws --> jtsi : <color:green>Create New Conference\n@cid:17052020:MRI-Inspection
prws --> care : Initiates call recording for \n@cid:17052020:MRI-Inspection
prws --> nusr : Sends invites to NABH User via mail/notification\n@cid:17052020:MRI-Inspection
prws --> prws : Waits for NABH User to join
nusr --> prws : <color:steelblue>Login to Priism NABH Website or Mobile App
nusr --> prws : Joins the conference \n@cid:17052020:MRI-Inspection w Video
prws --> prws : Inspection via Video call starts
nusr --> prws : <color:steelblue>Finishes the Inspection & drops off the call
hoad --> prws : Closes the conference
prws --> jtsi : <color:green>Closes the conference Session
hoad --> care : Verifies the recording for conference\n@cid:17052020:MRI-Inspection\nand downloads the video as necessary
@enduml | false | true | false | false | usecase |
9dd52a54b7f6ad0d29e9278cafa329383ae7cda4 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/car-rental-tr@0.3.0.puml | 32be951fdfbfd0de23e029c82ce72630504dc58c | [
"Apache-2.0",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 1,119 | puml | @startuml
class org.accordtr.carrental.PaymentRequest << (T,yellow) >> {
}
org.accordtr.carrental.PaymentRequest --|> org.accordproject.cicero.runtime.Request
class org.accordtr.carrental.PayOut << (T,yellow) >> {
+ MonetaryAmount amount
}
org.accordtr.carrental.PayOut --|> org.accordproject.cicero.runtime.Response
class org.accordtr.carrental.CarRentalContract << (A,green) >> {
+ String lessorName
+ String lessorAddress
+ String lessorPhone
+ String lesseeName
+ String lesseeAddress
+ String lesseePhone
+ String authorizedCourt
+ String plateID
+ String carBrand
+ String model
+ String modelYear
+ String color
+ String vechileID
+ String startDate
+ String endDate
+ String deliveryStation
+ PaymentClause paymentClause
}
org.accordtr.carrental.CarRentalContract --|> org.accordproject.cicero.contract.AccordContract
class org.accordtr.carrental.PaymentClause << (A,green) >> {
+ String amountText
+ MonetaryAmount amount
+ String paymentProcedure
}
org.accordtr.carrental.PaymentClause --|> org.accordproject.cicero.contract.AccordClause
@enduml
| false | true | false | false | class |
161659b8ef0370a5663b2bc13ec6377e7209a9a3 | 39facdc394dc36074cf96e954397d368c7a56d0c | /doc/virtualService/VirtualService.puml | 2392b969273a3dd3a24d43af11cd3b88d136db4f | [] | no_license | dkontorovskyy/polaris-backend | b0cf681cbb10f313c928264212e3611c4d4d3081 | ce30cff81f4dfc85b267fa60bda688dedb168eec | refs/heads/master | 2022-11-23T14:18:11.216552 | 2019-10-29T22:01:54 | 2019-10-29T22:01:54 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 773 | puml | @startuml
skinparam monochrome true
skinparam defaultFontName OpenSans
hide empty fields
hide empty methods
abstract class AbstractService {
setConfigurationParameter()
start()
stop()
reset()
...()
}
Service <|-up- AbstractService
VirtualService <|-up- AbstractService
Service o--"1..*" Strategy
VirtualService -down-|> AggregatedService
VirtualService -down-|> Timer
VirtualService -down-|> PIDController
VirtualService -down-|> FurtherVirtualService
class Module {
connect()
}
Module o--"1..*" Service
class Service {
setStrategy()
setStrategyParameter()
}
abstract class VirtualService {
instantiate()
setStrategyParameter()
}
class AggregatedService
AggregatedService o--"1..*" AbstractService : necessaryServices >
class Timer
class PIDController
@enduml | false | true | false | false | class |
931d38da47957bbbf02092ef8084db2bc4254ff5 | 73a2ec211090e75d728bfe08f07f90a50ecde9d4 | /src/uml/budgetClass.puml | d286ffdef21810ca2abf3977dc1a9c368f1ab1c1 | [] | no_license | AY2021S1-CS2113T-F14-2/tp | 080d69cd41305be497efb4e92db44b2ea28bb153 | da1045800fbd5bc280f052ed9943717dc2cf66f6 | refs/heads/master | 2023-01-05T11:52:07.039686 | 2020-11-09T15:08:14 | 2020-11-09T15:08:14 | 297,841,937 | 0 | 5 | null | 2020-11-09T15:08:15 | 2020-09-23T03:31:27 | Java | UTF-8 | PlantUML | false | false | 188 | puml | @startuml
hide circle
hide members
skinparam classAttributeIconSize 0
class "{abstract}\nCommand"
class Budget
"{abstract}\nCommand" -right-> Budget : execute
Budget -> Storage
@enduml | false | true | false | false | sequence |
2eb9d643f56c60ba8f73a614e8b4314768f7c5ee | 49c25d19adbb88f63d799e1e050bd20fd4988a48 | /src/Questions9/Robot.puml | 6bfae4ab5b61545c99709246b8694cacb7ea8b13 | [] | no_license | agustincperalta/Ji2S | e459e9caadc0a35b288e19d030eb25d6d22b6509 | 8dc619f44357f202db7aacdfbe4fea706bb8d77d | refs/heads/master | 2020-05-30T18:46:27.128438 | 2019-07-13T16:00:25 | 2019-07-13T16:00:25 | 189,905,552 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 187 | puml | @startuml
abstract Robot{
-String root
-int securityLevel
-int warningLevel
+Robot(String, int)
+getId() : Sting
+getSecurityLevel(): int
+ {abstract} calculateWarningLevel()
}
@enduml | false | true | false | false | class |
76bc83137400a935f42e830228ae9c8dc1648192 | 80ebb72f964ce04f26191ac78acba6f19296eced | /docs/puml/taichu-crypto-component.puml | b4f3632bbc8dc77866a4d7efab22bd0a691a2686 | [
"Apache-2.0"
] | permissive | dltdojo/taichu-crypto | f25fd8765bf77378ad0611d01587889c1bd8d4ce | d4db2aa67d41d5b5b6ea0fb4a0ebbe618fa14e94 | refs/heads/master | 2023-03-04T12:58:54.251174 | 2022-12-14T14:11:41 | 2022-12-14T14:11:41 | 196,412,006 | 1 | 0 | Apache-2.0 | 2023-03-03T05:15:55 | 2019-07-11T14:37:10 | JavaScript | UTF-8 | PlantUML | false | false | 678 | puml | @startuml
header DLTDOJO3
footer https://github.com/dltdojo/taichu-crypto
title taichu-crypto-component-1907-1
skinparam handwritten false
left to right direction
package "Docker Container" {
folder "Code Server container"{
[Code\nServer] as CS #Yellow
[Your\nproject]
}
}
package "Cloud"{
cloud Github
cloud Dockerhub
}
package "Kubernetes" {
folder "microk8s" {
[DNS]
[Registry]
[Storage]
}
folder "Gitops"{
[GIT gogs] as GIT #Green
[CI drone] as CI #Blue
[CD argo] as CD #Red
}
}
CS --> GIT : 1. push
GIT -> CI : 2. build and test
CI --> Registry : 3. push
CD <-- Registry : 4. pull image
GIT -> CD : 5. deployment
@enduml
| false | true | false | false | sequence |
c24601a34a88901cffb88b26775379658f2fb3e3 | c69dba4cef780d27a126166ee912005507258413 | /src/design/data-context-class-diagram.puml | e8d3eb84e67a28a09a5d00a600178a44add490c7 | [
"MIT",
"EPL-1.0",
"Apache-2.0"
] | permissive | CS-SI/Orekit | 2265900b501fe6727a57378956f9f2c61564909a | 7ab7a742674eabee00e1dbe392833d587fdcdaab | refs/heads/develop | 2023-09-03T20:33:42.748576 | 2023-09-01T14:34:03 | 2023-09-01T14:34:03 | 22,851,787 | 144 | 79 | Apache-2.0 | 2023-03-28T17:53:33 | 2014-08-11T19:29:35 | Java | UTF-8 | PlantUML | false | false | 3,697 | puml | ' Copyright 2002-2023 CS GROUP
' Licensed to CS GROUP (CS) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' CS licenses this file to You under the Apache License, Version 2.0
' (the "License"); you may not use this file except in compliance with
' the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
@startuml
skinparam svek true
skinparam ClassBackgroundColor #F3EFEB/CCC9C5
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
skinparam PackageFontSize 12
skinparam linetype ortho
package org.orekit #ECEBD8 {
package data #DDEBD8 {
interface DataContext {
+ {static} LazyLoadedDataContext getDefault()
+ {static} setDefault(LazyLoadedDataContext)
..
+TimeScales getTimeScales()
+Frames getFrames()
+CelestialBodies getCelestialBodies()
+...()
}
note top
manages factories
end note
class LazyLoadedDataContext {
+DataProvidersManager getDataProvidersManager()
}
class DataProvidersManager {
+boolean feed(String supportedNames, DataLoader loader)
}
LazyLoadedDataContext o-- DataProvidersManager
DataContext <|-- LazyLoadedDataContext
}
package time #DDEBD8 {
interface TimeScales {
{static} +TimeScales of(utcMinusTai, eopSupplier)
+TimeScale getTai()
+TimeScale getUtc()
+TimeScale getUt1()
+...()
}
DataContext o-- TimeScales
class LazyLoadedTimeScales
TimeScales <|-- LazyLoadedTimeScales
LazyLoadedDataContext o-- LazyLoadedTimeScales
}
package bodies #DDEBD8 {
interface CelestialBodies{
+CelestialBody getSun()
+CelestialBody getMoon()
+...()
}
class LazyLoadedCelestialBodies
DataContext o-- CelestialBodies
CelestialBodies <|-- LazyLoadedCelestialBodies
LazyLoadedDataContext o-- LazyLoadedCelestialBodies
}
package frames #DDEBD8 {
interface Frames {
{static} +Frames of(timeScales, celestialBodies)
{static} +Frames of(timeScales, icrfSupplier)
+Frame getGcrf()
+Frame getItrf(...)
+...()
}
class LazyLoadedFrames
class LazyLoadedEop
DataContext o-- Frames
Frames <|-- LazyLoadedFrames
LazyLoadedTimeScales o-- LazyLoadedEop
LazyLoadedFrames o-- LazyLoadedEop
LazyLoadedFrames o-right- CelestialBodies
LazyLoadedDataContext o-- LazyLoadedFrames
}
}
package user.application #F3EDF7 {
class MyDataContext #EAE6F7/B9B3D2
class MyProvider #EAE6F7/B9B3D2
class DataBase #EAE6F7/B9B3D2
class Main #EAE6F7/B9B3D2
DataContext <|-- MyDataContext
MyDataContext o-- MyProvider
Main --> MyDataContext : creates
MyProvider *--> "1" DataBase
}
@enduml
| false | true | false | false | sequence |
9d39adc8d590951d486cb81e03cda03b7d9a58d6 | 4f6a75f49733d615ebc8ba9ab733b39337fe4650 | /61030055/class2.puml | cdc6d7a9025976347152045eb8452af2d1f56f69 | [] | no_license | 03376814-computer-laboratory-1/Week-07 | fb5397976c42b0d70286ec5c5b41e25a1c82e6a6 | c6174f13f36b3c5dda11c9e4e45a89d2b86558f9 | refs/heads/master | 2020-06-23T20:02:40.365457 | 2019-12-19T09:19:12 | 2019-12-19T09:19:12 | 198,738,892 | 0 | 28 | null | 2019-12-19T09:19:14 | 2019-07-25T02:05:32 | C# | UTF-8 | PlantUML | false | false | 157 | puml | @startuml
class Teacher
class AssocProf
class AssisProf
class Professor
Teacher <|-- AssocProf
Teacher <|-- AssisProf
Teacher <|-- Professor
@enduml | false | true | false | false | class |
67dccb465645509ec77e65134345ac9e45f1d5ab | 43ec4ea3b633244f5deef45315f19844a852a034 | /ExanteTaxCalculator/doc/class.puml | f8a8b6747030fd242f516c672e3665510d8a8dcd | [] | no_license | mateuszmidor/PythonStudy | 4a34feab04fe1bcc62a67506a5e7be85fb209d8c | 579b79b76cb5ce27cb9af09a2bd3db3c5ad65595 | refs/heads/master | 2023-05-25T11:32:50.274138 | 2023-05-17T06:08:29 | 2023-05-17T06:08:29 | 21,539,459 | 0 | 0 | null | 2023-05-23T00:40:51 | 2014-07-06T12:20:36 | Python | UTF-8 | PlantUML | false | false | 1,256 | puml | @startuml class
' title Device and it's innards
' enum AuthProtocol {
' none
' md5
' sha
' }
' enum PrivProtocol {
' none
' des
' aes
' }
class TradingReport {
+dividends: List[DividendItemPLN]
+taxes: List[TaxItemPLN]
+trades_by_asset: Map[str, List[ProfitItemPLN]
}
class TaxDeclarationNumbers {
+shares_income
+shares_cost
+shares_tax
+dividends_income
+dividends_tax_already_paid
+dividends_tax_yet_to_pay
}
TaxDeclarationNumbers --o TradingReport
' AuthProtocol --* SNMPv3Conf
' PrivProtocol --* SNMPv3Conf
' class DeviceLabel {
' +id: int
' +name: str
' +color: str
' }
' class Site {
' +site_name: str
' +longitude: float
' +latitude: float
' }
' class Device #pink {
' +id: int
' +device_type: DeviceType
' +device_subtype: DeviceSubtype
' +...
' +new_dns(...)
' +new_router(...)
' }
' note right: new_dns(...) and new_router(...) \nare convenient constructors
' SNMPv3Conf --o Device
' DeviceLabel --o Device
' Site --o Device
@enduml | false | true | false | false | class |
842f9165207bc7344c811d17757b653c20813c1d | aebdf064115e5817e0c77e15b739eccda80d4550 | /oo/src/main/java/guitarshop/firstgeneration/first.puml | 97bf35ea9adb088fff290173037d0f77a5140562 | [] | no_license | thonnyhu/designpattern | e497fbaa44d6b8a98151f8f51f967dfae8145913 | 77dc01fd366f3dfb58aab5f0bd3e6825d6fa6301 | refs/heads/master | 2021-04-28T16:49:52.462770 | 2018-06-11T12:11:26 | 2018-06-11T12:11:26 | 122,023,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 518 | puml | @startuml
Class Guitar{
- String String serialNumber, builder, model, type, backWood, topWood;
- double price;
+ Guitar(String serialNumber, double price,String builder, String model,String type, String backWood, String topWood)
}
Class Inventory{
- List<Guitar> guitars;
+ void addGuitar(String serialNumber, double price,String builder, String model,String type, String backWood, String topWood);
+ Guitar getGuitar();
+ Guitar search(Guitar guitar)
}
Inventory -right-> Guitar
@enduml | false | true | false | false | class |
1f59ec7457bf505a769d458c51f40ab4e126c30b | 7315eaed724af93524e50fcfcc9347e269697fda | /docs/test.plantuml | ed23bed2f537a1c64574480189be95e3a1782697 | [
"MIT"
] | permissive | GameDialogSystem/FlowLogic | 8f76f135495bde8265d86c995e0c9f4c81d06ae6 | 8f21e74018b975b232f43b07b49682bd6c52dfb7 | refs/heads/master | 2021-09-22T11:27:34.215450 | 2018-09-09T16:44:33 | 2018-09-09T16:44:33 | 106,968,590 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 401 | plantuml | skinparam style strictuml
class Façade {
doSomething()
}
Façade .> package1.Class1
Façade .> package2.Class2
Façade .> package3.Class3
Client1 .> Façade : doSomething()
Client2 .> Façade : doSomething()
note as N2
doSomething() {
Class1 c1 = newClass1();
Class2 c2 = newClass2();
Class3 c3 = newClass3();
c1.doStuff(c2)
c3.setX(c1.getX());
return c3.getY();
}
end note
Facade .. N2
| false | true | true | false | class |
1b1495e1b730a5b81dbef539133f9a09f1b5c9ab | aedec23132eabce8e05ee4a0c773b86b470ab0f1 | /Diagrams/SequenceDiagrams/seq-position-1.3.2-fulfil.plantuml | f976bb3554682f8e318dad664798b47a0c752882 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | arfintechpy/docs | 465ef01f8bcf8201c7dd36033a4970886e40d09a | 305a593be2ecd3f470dd6e199ef5656a2c746355 | refs/heads/master | 2020-04-20T22:03:45.265174 | 2019-02-01T08:00:32 | 2019-02-01T08:00:32 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,196 | plantuml | @startuml
' declate title
title 1.3.2. Fulfil Position Handler Consume
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' collections - Kafka Topics
' control - Kafka Consumers
' entity - Database Access Objects
' database - Database Persistence Store
' declare actors
control "Position Handler" as POS_HANDLER
collections "Transfer-Topic" as TOPIC_TRANSFERS
entity "Position Facade" as POS_FACADE
entity "Transfer DAO" as TRANS_DAO
database "Central Store" as DB
box "Central Service" #LightYellow
participant POS_HANDLER
participant TOPIC_TRANSFERS
participant TRANS_DAO
participant POS_FACADE
participant DB
end box
' start flow
activate POS_HANDLER
group Fulfil Position Handler Consume
POS_HANDLER -> TRANS_DAO: Request current state of transfer from DB \n<color #FF0000><b>Error code:</b> 2003</color>
activate TRANS_DAO
TRANS_DAO -> DB: Retrieve current state of transfer from DB
activate DB
hnote over DB #lightyellow
transferStateChange
transferParticipant
end note
DB --> TRANS_DAO: Return current state of transfer from DB
deactivate DB
TRANS_DAO --> POS_HANDLER: Return current state of transfer from DB
deactivate TRANS_DAO
POS_HANDLER <-> POS_HANDLER: Validate current state (transferState is 'RECEIVED-FULFIL')\n<color #FF0000><b>Error code:</b> 2001</color>
group Persist Position change and Transfer State (with transferState='COMMITTED' on position check pass)
POS_HANDLER -> POS_FACADE: Request to persist latest position and state to DB\n<color #FF0000><b>Error code:</b> 2003</color>
group <color #blue>DB TRANSACTION</color>
activate POS_FACADE
POS_FACADE -> DB: Select participantPosition.value FOR UPDATE from DB for Payee
activate DB
hnote over DB #lightyellow
participantPosition
end note
DB --> POS_FACADE: Return participantPosition.value from DB for Payee
deactivate DB
POS_FACADE <-> POS_FACADE: **latestPosition** = participantPosition.value - payload.amount.amount
POS_FACADE->DB: Persist latestPosition to DB for Payee
hnote over DB #lightyellow
UPDATE **participantPosition**
SET value = latestPosition
end note
activate DB
deactivate DB
POS_FACADE -> DB: Persist transfer state and participant position change
hnote over DB #lightyellow
INSERT **transferStateChange** transferStateId = 'COMMITTED'
INSERT **participantPositionChange**
SET participantPositionId = participantPosition.participantPositionId,
transferStateChangeId = transferStateChange.transferStateChangeId,
value = latestPosition,
reservedValue = participantPosition.reservedValue
createdDate = new Date()
end note
activate DB
deactivate DB
deactivate TRANS_DAO
end
POS_FACADE --> POS_HANDLER: Return success
deactivate POS_FACADE
end
note right of POS_HANDLER #yellow
Message:
{
id: <transferMessage.transferId>
from: <transferMessage.payerFsp>,
to: <transferMessage.payeeFsp>,
type: application/json
content: {
headers: <transferHeaders>,
payload: <transferMessage>
},
metadata: {
event: {
id: <uuid>,
responseTo: <previous.uuid>,
type: transfer,
action: commit,
createdAt: <timestamp>,
state: {
status: "success",
code: 0
}
}
}
}
end note
POS_HANDLER -> TOPIC_TRANSFERS: Publish Transfer event\n<color #FF0000><b>Error code:</b> 2003</color>
activate TOPIC_TRANSFERS
deactivate TOPIC_TRANSFERS
end
deactivate POS_HANDLER
@enduml
| false | true | false | false | sequence |
bb4e79cb88af19dc10ab6f4fc9396524bfaa3a10 | 555b08be8a372337de3b6c4a3787c4945c9c1c1d | /src/main/java/ex41/App.puml | b961e4dd0a745b77d4d7127afcca146d3df1dc13 | [] | no_license | HaoQNguyen/nguyen-COP3330-assignment3 | 0c3163ed43189c846d0360b9c64f3705a5cb3284 | ee2c1bdeeef50d35067d759f611387b35dde85e2 | refs/heads/master | 2023-08-24T02:12:07.600314 | 2021-10-12T02:11:58 | 2021-10-12T02:11:58 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 205 | puml | @startuml
class App
{
+ArrayList<String> name
+void writeToFile(ArrayList<String> name)
+void sortArray(ArrayList<String> name)
+ArrayList<String> parseName()
+void main()
}
@enduml | false | true | false | false | class |
68607df3898f003345c110d6199cdd89a5a3cf18 | 6f2ebb80d675f13dd5a4ec712db21050efc92fa0 | /GameEnginePlugin/Docs/SourceDiagrams/GameEnginePlugin-XPlaneWrapperInitialization-Sequence.plantuml | 58b70d0673195f5e51c9c69a28f2c380d0472d39 | [] | no_license | stevostj/Sandbox | dc84e3ba177547b0109d6001a803ca980b7bea41 | ded1484722d2d5e89f50e5f4bd68e20c13392b30 | refs/heads/master | 2023-06-07T17:47:25.444477 | 2021-06-29T01:45:49 | 2021-06-29T01:45:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,318 | plantuml | @startuml
title "XPlaneWrapper-Initialization"
participant "XPlaneWrapperHost" as XPWH
XPWH -> XPWH: Initialization
activate XPWH
create participant "XPlaneWrapper" as XPW
XPWH -> XPW: new (via LoadLibrary)
XPWH -> XPW: dllmain
activate XPW
XPW -> XPW: StoreGlobalPathVariables()
note right
determines the filepath of the xplane plugin
so that the inner game engine plugins can
be loaded in an XPlane or unit test context
end note
XPW -> XPW: SetDefaultXplmApiHooks()
note right
global api_hooks = XPLM APIs
end note
XPW --> XPWH
deactivate XPW
alt Not XPlane Application
XPWH -> XPW: SetXplmApiHooks(function_pointers)
note right
global api_hooks = function_pointers
this allows for mocking out of
XPLM APIs for testing
end note
activate XPW
XPW --> XPWH
deactivate XPW
end
XPWH -> XPW: XPluginStart
activate XPW
ref over XPW
Game Engine Plugin Lifecycle GEP_Initialize
end ref
activate XPW
XPW -> XPW: InitializeSymbologyRendering()
activate XPW
XPW -> XPWH: api_hooks.XPLMDisplay.RegisterDrawCallback
activate XPWH
XPWH --> XPW
deactivate XPWH
deactivate XPW
XPW -> XPW: InitializeSimulationFrameHandler()
activate XPW
XPW -> XPWH: api_hooks.XPLMProcessing.XPLMRegisterFlightLoopCallback
activate XPWH
XPWH --> XPW
deactivate XPWH
deactivate XPW
XPW --> XPWH
deactivate XPW
deactivate XPWH
@enduml | false | true | false | false | sequence |
0add17dc33f5d848190bf4e57109cd8bc4e80c1d | aa86062e9ce4ee27fe05bd9926a58ed2a6e52db2 | /PLANTUML_Diagrams/Resources.plantuml | f084bb790708ea8c0c9611f90f6267b23b364fbe | [
"CC0-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | jkumara/rfc | c7117129283fbb79e906f42a843600ec3072ad55 | 508bd72557ae273de1a5dcdfd0f52fc364a4768d | refs/heads/master | 2020-05-27T08:42:02.289247 | 2017-02-20T16:10:13 | 2017-02-20T16:10:13 | 82,536,610 | 0 | 0 | null | 2017-02-20T08:54:23 | 2017-02-20T08:54:22 | null | UTF-8 | PlantUML | false | false | 1,441 | plantuml | @startuml
object PatientCitizen{
identifier
name
telecom
gender
birthDate
address
photo
managingOrganization
active
link
}
object CareTeam{
identifier
status
category
name
subject
period
participant
participant.role
participant.member
participant.period
managingOrganization
}
object CarePlan{
id
subject
status
context
period
author
careteam
addresses
support
modified
relatedPlan
goal
category
description
Activity.detail.category
Activity.detail.code.coding.system
Activity.detail.code.coding.code
Activity.detail.status
Activity.detail.statusReason
Activity.detail.prohibited
Activity.detail.scheduled
Activity.detail.description
Note
}
object Communication_Message{
identifier
status
category
medium
subject
topic
context
sent
received
sender
recipient
reason
payload
}
object Device{
type
model
identifier
note
}
object Appointment{
identifier
status
type
reason
start
end
priority
description
minutesDuration
slot
comment
participant
participant.required
participant.status
}
PatientCitizen -- Device
PatientCitizen -- Appointment
PatientCitizen -- CarePlan
CarePlan -- CareTeam
CarePlan -- Communication_Message
@enduml
| false | true | false | false | sequence |
6d696fdc5c56808b1b828e7186e52c4a6021fb6b | 973dcef38fb285cf4f14a2e937af23e26a05564b | /docs/Solution/Automation-Framework/UserInteraction.puml | 81ae578ca40a815dd89d510646e571f026e43689 | [] | no_license | CAADE/CAADE | 6a0d37b31e77fd00eeb1ad056d17d484585cad96 | 3873453a14359879a146f1d5897554ae2e94bd96 | refs/heads/master | 2021-06-09T05:28:17.894441 | 2019-06-07T06:08:10 | 2019-06-07T06:08:10 | 104,078,969 | 1 | 0 | null | 2020-08-20T15:13:40 | 2017-09-19T13:32:11 | JavaScript | UTF-8 | PlantUML | false | false | 140 | puml | @startuml
actor User
User -> "Automation Framework": UseCase
"Automation Framework" -> bin: bin-name()
bin -> sailsjs: bin/name()
@enduml
| false | true | false | false | sequence |
7fe3717c5ef09e99dc8196bd66779eac49d258ce | c4af72975307a732a7e725d875f36264ba8aba68 | /assets/onboarding-process.plantuml | c68d899ddd54625050d15d4521cf56681282482e | [] | no_license | kmadorin/hrtrust | 34265a5fe1d53263b19906c4b928624a3ee47d80 | 6eca3a099945be8f9c71c17e926c8aa72d2eaec2 | refs/heads/master | 2020-08-26T12:35:38.401216 | 2019-10-23T08:47:30 | 2019-10-23T08:47:30 | 217,010,698 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 776 | plantuml | @startuml
actor "External Contractor" as a_ex_employee
actor "Project Manager" as a_company_pm
actor "IT" as a_company_it
actor "Customer" as a_customer
a_customer -> a_company_pm: Order a new project
a_company_pm -> a_ex_employee: We need support
group Onboarding Software X
a_ex_employee -> a_company_pm: I don't have access to the Dashboard
a_company_pm -> a_company_it: Please give access
a_company_it -> a_company_pm: Okay
a_company_pm -> a_ex_employee: Okay
end
group Onboarding Software Y
a_ex_employee -> a_company_pm: I don't have access to Y
end
group Onboarding Software ..
a_ex_employee -> a_company_pm: I don't have access to ..
end
group Onboarding Software Z
a_ex_employee -> a_company_pm: I don't have access to Z
end
@enduml
| false | true | false | false | sequence |
8af18ce2c1c9333aa324831dc7a75be1be6771c9 | 101a462bd99bd3324c849ff4596d2895e33ceafa | /td3.plantuml | 2a20aac2397626f8682263a9f80b0f2245cb20fe | [
"MIT"
] | permissive | IUT-Blagnac/bcoo-El-FaroukA | 4ed612386208f71fed3cc4006b1c17c181cb7f54 | 6442fe0acc2ff098aa0cbfc84fe2740add86e48e | refs/heads/main | 2023-04-24T17:29:21.070171 | 2021-05-03T07:08:54 | 2021-05-03T07:11:21 | 335,633,672 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 657 | plantuml | @startuml
hide circle
hide empty methods
hide empty attributes
class Stage {
lieu
dateDebut
nomTuteur
theme
}
class Entreprise {
nom
adresse
siegeSocial
}
class Promotion {
libelle
}
class Etudiant {
numINE
nom
prenom
note
}
class GroupeTP {
libelle
}
class GroupeTD {
libelle
}
class Enseignant {
nom
prenom
specialite
}
Stage "1" -- "*" Entreprise
Stage -- "1" Promotion
Etudiant -- "1" GroupeTP
GroupeTP -- "1" GroupeTD
GroupeTD -- "1" Promotion
Tuteur -|> Enseignant
Stage -- "0..1\nTuteur" Enseignant
Stage "0..1" - "0..1" Etudiant
@enduml | false | true | false | false | class |
44031a7a60dd3fa15112946c4ff8a9829859300b | 0c3a73febba96f653d82868c3ecc98e40604a5b4 | /use-cases/portfolio-balancer.puml | 9c61f9a364c009197b50081998d792b12be7f24c | [
"Apache-2.0"
] | permissive | benhasselgren/portfolio-balancer | e89348200bc5c9aef9ef4da674cd2d00793fd07c | 1c541ce71b75624743329a0528bf10c4612db054 | refs/heads/master | 2020-12-30T08:48:31.210347 | 2020-03-12T11:44:32 | 2020-03-12T11:44:32 | 238,922,282 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 996 | puml | @startuml
'default
left to right direction
actor User
actor App
rectangle ls as "Local Storage"
rectangle "Portfolio Balancer Application" {
rectangle up as "Update Portfolio"
rectangle cp as "Portfolio unbalanced"
rectangle pr as "Portfolio rebalanced"
usecase UC1 as "View main screen (portfolios)."
usecase UC2 as "Create a new portfolio."
usecase UC3 as "Rebalance a portfolio."
usecase UC4 as "Edit target percentages in portfolio settings."
usecase UC5 as "Add/edit/remove companies."
usecase UC6 as "Rebalance alert setting."
usecase UC7 as "Notify user portfolio is unbalanced"
usecase UC8 as "Email rebalance changes."
UC3 --> up
UC6 --> up
UC7 --> cp
User --> UC1
UC1 -- ls
User --> UC2
UC2 -- ls
User --> UC3
UC3 -- ls
User --> UC4
UC4 -- ls
User --> UC5
UC5 -- ls
User --> UC6
UC6 --ls
App --> UC7
UC7 --> User
App --> UC8
UC8 --> pr
pr --> User
}
@enduml | false | true | false | false | usecase |
45e0f89f956a2a3d65c15a620719ae22c7e2e12d | 112e511928937b8ec60004ca94f1dd996bd9fd1a | /Documents/Shos.Chatter.Wpf/ViewModels/MainViewModel.puml | f518f1ba0986aaa70a0978c04f3eb6907d61d17a | [
"MIT"
] | permissive | Fujiwo/Shos.Chatter.NetFramework | 2c143b390b1588e38e5967a8b8f1c51bf5487362 | 3c7061398e790c2fc856585fdbf60a18705f11e0 | refs/heads/master | 2023-03-23T09:31:02.071913 | 2021-03-11T05:27:48 | 2021-03-11T05:27:48 | 323,569,895 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,133 | puml | @startuml
class MainViewModel {
+ MainViewModel()
+ UserId : int <<get>> <<set>>
}
class CommandBase {
+ <<event>> CanExecuteChanged : EventHandler?
+ CommandBase(model:ChatterModel)
+ <<virtual>> CanExecute(parameter:object) : bool
+ <<virtual>> Execute(parameter:object) : void
}
class AddUserCommandType {
+ AddUserCommandType(model:ChatterModel)
+ <<override>> Execute(parameter:object) : void
}
class UpdateUserCommandType {
+ UpdateUserCommandType(model:ChatterModel)
+ <<override>> Execute(parameter:object) : void
}
class DeleteUserCommandType {
+ DeleteUserCommandType(model:ChatterModel)
+ <<override>> Execute(parameter:object) : void
}
class AddChatCommandType {
+ AddChatCommandType(model:ChatterModel)
+ <<override>> Execute(parameter:object) : void
}
class UpdateChatCommandType {
+ UpdateChatCommandType(model:ChatterModel)
+ <<override>> Execute(parameter:object) : void
}
class DeleteChatCommandType {
+ DeleteChatCommandType(model:ChatterModel)
+ <<override>> Execute(parameter:object) : void
}
class "IEnumerable`1"<T> {
}
BindableBase <|-- MainViewModel
MainViewModel o-> "model" ChatterModel
MainViewModel --> "AddUserCommand" ICommand
MainViewModel --> "UpdateUserCommand" ICommand
MainViewModel --> "DeleteUserCommand" ICommand
MainViewModel --> "AddChatCommand" ICommand
MainViewModel --> "UpdateChatCommand" ICommand
MainViewModel --> "DeleteChatCommand" ICommand
MainViewModel --> "Users<UserBase>" "IEnumerable`1"
MainViewModel --> "Chats<ChatBase>" "IEnumerable`1"
MainViewModel --> "Model" ChatterModel
MainViewModel +-- CommandBase
ICommand <|-- CommandBase
MainViewModel +-- AddUserCommandType
CommandBase <|-- AddUserCommandType
MainViewModel +-- UpdateUserCommandType
CommandBase <|-- UpdateUserCommandType
MainViewModel +-- DeleteUserCommandType
CommandBase <|-- DeleteUserCommandType
MainViewModel +-- AddChatCommandType
CommandBase <|-- AddChatCommandType
MainViewModel +-- UpdateChatCommandType
CommandBase <|-- UpdateChatCommandType
MainViewModel +-- DeleteChatCommandType
CommandBase <|-- DeleteChatCommandType
@enduml
| false | true | false | false | class |
2cb638944dcc239a13655b00607beb2ca232a6d5 | 4c9b022706780c646e4fce886ae7c907d8644cc5 | /doc/pic/src/claims-reset.puml | 397e0172dcf46b6a2e8e6eead1cf9835f4246598 | [
"Apache-2.0"
] | permissive | nrempel/demo-agent | 85dbf6e19d0daca0b5b42f01d8186342a1e92401 | 9e2ab2b37096a7868b1ea514d8b6bc2b978fd323 | refs/heads/master | 2021-08-07T06:44:05.156834 | 2017-11-07T19:23:12 | 2017-11-07T19:23:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,485 | puml | @startuml
/'
Copyright 2017 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
'/
skinparam ParticipantPadding 20
skinparam BoxPadding 20
title Claims Reset Sequence
box "Indy" #LightBlue
participant "Ledger" as ledger
endbox
actor "Prover/Holder\n(The Org Book)\nAgent" as obag
actor "Verifier\n(SRI)\nAgent" as sag
actor "Actuator" as ator
ator -> obag: GET <get-did>
obag --> ator: DID
=== CLAIMS RESET SEQUENCE ==
note over ledger, ator
All agent service wrapper APIs are up
Schema, claim definitions are on ledger
Claim load sequence has stored claims at Prover/Holder
endnote
ator -> sag: POST <claims-reset> on filter, proxy by Prover/Holder DID
sag -> ledger: get endpoint for Prover/Holder DID
ledger --> sag: Prover/Holder endpoint
sag --> obag: POST <claims-reset>
obag -> obag: reset wallet, master secret
obag --> sag: returns
sag --> ator: returns
@enduml
| false | true | false | false | usecase |
0acdfef97d605b1a9fe67175f8c6fb9ce46d7e3d | b774d5b532ef20e5c8476e35ea90da5e3f09287e | /src/com/github/tomap/uml/conception/classDiagrams/DialogClasscontroller.puml | 8b082c34d60c4ebd6272aea1f9a41176fbc11247 | [] | no_license | Phalexei/Modeleur | ae94ab6c191a7999cf9deaee4dac8542eb6a52bb | f143c85930c3b668670087693ec807a9cd4bda81 | refs/heads/master | 2021-01-02T08:51:16.535103 | 2013-11-16T19:54:20 | 2013-11-16T19:54:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 868 | puml | @startuml
class A_ClassDiagram {
}
class javax.swing.JDialog {
}
interface java.awt.event.ActionListener {
}
abstract class DiagramController {
}
abstract class DialogController {
}
class DialogClass {
+ DialogClass (DialogClass)
- makePanels()
- makeListener(DialogClass) : void
}
class ListenerDialogClass {
+ ListenerDialogClass(DialogClass,DialogClass)
+ actionPerformed(ActionEvent e) : void
+ addClass() : void
}
DialogClass --|> javax.swing.JDialog
ListenerDialogClass --|> DialogController
DialogController --|> DiagramController
ListenerDialogClass ..> java.awt.event.ActionListener
DiagramController --> A_ClassDiagram
DialogClass "1"-->"1" A_ClassDiagram
DialogClass "1"*."1" ListenerDialogClass
@enduml | false | true | false | false | class |
ba05ad90b9c287eeeda65f98e4a54d7d168ff8c4 | 8cf018eb6de40017601592f1f125ea67d5de7086 | /docs/Solution/Security-Aspect/Physical.puml | 35df1280095d1dbcd73760e6d852bb4d2db971a0 | [] | no_license | CAADE/ADC | bec251477e457a9ee4eca673fdab04b65c4290f5 | a81ba7532e7092ab564bcb30f8ec36bab3b71d0b | refs/heads/master | 2021-06-23T22:20:00.239150 | 2019-04-03T05:15:20 | 2019-04-03T05:15:20 | 104,887,854 | 5 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 147 | puml | @startuml
package "Security-Aspect" {
component component1
component component2
interface i1
}
i1 - component1
component1 --> component2
@enduml
| false | true | false | false | class |
af05f18ac586413cc8d8b96f4ea34327b3571f06 | e8fe957e5ad8e59b71c6dd3952ee00ea12f80eb6 | /src/test/resources/archunit.puml | b84b5ed947afa382cf747c19f229f554453e00d4 | [] | no_license | kenpusney/archunit-experiment | 6fcd8e52ad4ef8901728ef254c1c50ed0814c648 | d410ca383d6d9861136672909afcab4cbf94d92b | refs/heads/master | 2023-03-27T10:47:53.360555 | 2021-03-30T11:28:20 | 2021-03-30T11:28:20 | 352,976,834 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 136 | puml | @startuml archiunit
[Service] <<..service>> as service
[Persistence] <<..repository>> as persistence
service --> persistence
@enduml | false | true | false | false | uml-unknown |
e075ae52837d31ae7221244de45087deca8cfcf5 | c815f9c82c1400f76243750cd0ec609d217b9943 | /caching/etc/caching.urm.puml | b8f4fb49b6b4fcb0b0f312c7a693dcd1a6b36275 | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 3,143 | puml | @startuml
package com.iluwatar.caching {
class App {
+ App()
+ main(args : String[]) {static}
+ useReadAndWriteThroughStrategy()
+ useReadThroughAndWriteAroundStrategy()
+ useReadThroughAndWriteBehindStrategy()
}
~class Node {
~ next : Node
~ previous : Node
~ userAccount : UserAccount
~ userId : String
+ Node(this$0 : String, userId : UserAccount)
}
class CacheStore {
~ cache : LruCache {static}
- CacheStore()
+ clearCache() {static}
+ flushCache() {static}
+ initCapacity(capacity : int) {static}
+ print() : String {static}
+ readThrough(userId : String) : UserAccount {static}
+ readThroughWithWriteBackPolicy(userId : String) : UserAccount {static}
+ writeAround(userAccount : UserAccount) {static}
+ writeBehind(userAccount : UserAccount) {static}
+ writeThrough(userAccount : UserAccount) {static}
}
class AppManager {
- cachingPolicy : CachingPolicy {static}
- AppManager()
+ find(userId : String) : UserAccount {static}
+ initCacheCapacity(capacity : int) {static}
+ initCachingPolicy(policy : CachingPolicy) {static}
+ initDb(useMongoDb : boolean) {static}
+ printCacheContent() : String {static}
+ save(userAccount : UserAccount) {static}
}
class UserAccount {
- additionalInfo : String
- userId : String
- userName : String
+ UserAccount(userId : String, userName : String, additionalInfo : String)
+ getAdditionalInfo() : String
+ getUserId() : String
+ getUserName() : String
+ setAdditionalInfo(additionalInfo : String)
+ setUserId(userId : String)
+ setUserName(userName : String)
+ toString() : String
}
class LruCache {
~ cache : Map<String, Node>
~ capacity : int
~ end : Node
~ head : Node
+ LruCache(capacity : int)
+ clear()
+ contains(userId : String) : boolean
+ get(userId : String) : UserAccount
+ getCacheDataInListForm() : List<UserAccount>
+ getLruData() : UserAccount
+ invalidate(userId : String)
+ isFull() : boolean
+ remove(node : Node)
+ set(userId : String, userAccount : UserAccount)
+ setCapacity(newCapacity : int)
+ setHead(node : Node)
}
class DbManager {
- db : MongoDatabase {static}
- mongoClient : MongoClient {static}
- useMongoDB : boolean {static}
- virtualDB : Map<String, UserAccount> {static}
- DbManager()
+ connect() {static}
+ createVirtualDb() {static}
+ readFromDb(userId : String) : UserAccount {static}
+ updateDb(userAccount : UserAccount) {static}
+ upsertDb(userAccount : UserAccount) {static}
+ writeToDb(userAccount : UserAccount) {static}
}
enum CachingPolicy {
+ AROUND {static}
+ BEHIND {static}
+ THROUGH {static}
- policy : String
+ getPolicy() : String
+ valueOf(name : String) : CachingPolicy {static}
+ values() : CachingPolicy[] {static}
}
}
Node --+ LruCache
LruCache --> "-head" Node
Node --> "-previous" Node
AppManager --> "-cachingPolicy" CachingPolicy
Node --> "-userAccount" UserAccount
CacheStore --> "-cache" LruCache
@enduml | false | true | false | false | class |
a634bb59f7f066a0be43ed609b8275f5b6c3f191 | 9f02be0a883205431624dafff8aa28fe67e5a2b0 | /uml/class/layout.puml | d8e6f54f687bb80fedb37aa70172fb0b12d1823b | [] | no_license | hdainester/mgx | 6fa1e7bd4a2771032f25e2a7e512a2ac6d3500be | e8247ea63904245d83afc5e567fac515676fc871 | refs/heads/master | 2020-04-28T13:26:40.781099 | 2019-06-08T02:02:52 | 2019-06-08T02:02:52 | 175,306,950 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,998 | puml | @startuml LayoutPanes
''''''''''
' Page 1 '
''''''''''
title GUI - Layout
enum HAlignment {
Left
Center
Right
}
enum VAlignment {
Top
Center
Bottom
}
enum ViewState {
Opening
Open
Greedy
Closing
Closed
Hiding
Hidden
}
abstract class View {
+ Content : ContentManager <<get>> <<protected set>>
+ State : ViewState <<get>> <<protected set>>
+ Graphics : GraphicsDevice <<get>> <<protected set>>
+ MainContainer : ViewContainer <<get>>
+ {abstract}Show() : void
+ {abstract}Hide() : void
+ {abstract}Close() : void
+ {virtual}HandleInput() : void
+ {virtual}Update(gameTime : GameTime) : void
+ Draw(spriteBatch : SpriteBatch) : void
# AlignMainContainer() : void
}
View -left-> GraphicsDevice
View -right-> ContentManager
note top on link
Content is loaded on View
initialization. ContentMangagers
can be shared among different
views.
end note
class FadingView {
+ FadeInTime : int <<get>> <<set>>
+ FadeOutTime : int <<get>> <<set>>
}
note right: Example:\nFades in/out
FadingView -up-|> View
class SlidingView
note right: Example:\nSlides in/out (TODO)
SlidingView -up-|> View
class ViewControl {
+ Views : ReadOnlyCollection<View> <<get>> <<protected set>>
+ Add(view : View) : void
+ Remove(view : View) : void
+ Update(gameTime : GameTime) : void
+ Draw(spriteBatch : SpriteBatch) : void
}
ViewControl --> "*" View : Views
abstract class Component {
+ HGrow : int <<get>> <<set>>
+ VGrow : int <<get>> <<set>>
+ HAlign : HAlignment <<get>> <<set>>
+ VAlign : VAlignment <<get>> <<set>>
+ Color : Color <<get>> <<set>>
+ Alpha : float <<get>> <<set>>
+ Position : Vector2 <<get>> <<protected set>>
+ X : float <<get>> <<protected set>>
+ Y : float <<get>> <<protected set>>
+ Size : Vector2 <<get>> <<protected set>>
+ Width : float <<get>> <<protected set>>
+ Height : float <<get>> <<protected set>>
+ Parent : Container <<get>> <<protected set>>
+ PropertyChanged : PropertyChangedEventHandler
+ {virtual}Load(content : ContentManager) : void
+ {abstract}Update(gameTime : GameTime) : void
+ {abstract}Draw(spriteBatch : SpriteBatch) : void
# {virtual}OnPropertyChanged(propertyName : string) : void
# SetProperty<T>(field : ref T, value : T) : void
# {static}_SetPosition(c : Component, position : Vector2) : void
# {static}_SetX(c : Component, x : float) : void
# {static}_SetY(c : Component, y : float) : void
# {static}_SetSize(c : Component, size : Vector2) : void
# {static}_SetWidth(c : Component, width : float) : void
# {static}_SetHeight(c : Component, height : float) : void
# {static}_SetParent(c : Component, parent : Container) : void
}
Component --> "0, 1" Container : Parent
abstract class Container {
+ Children : ReadOnlyCollection<Component> <<get>> <<protected set>>
+ Containers : ReadOnlyCollection<Container> <<get>> <<protected set>>
+ Controls : ReadOnlyCollection<Control> <<get>> <<protected set>>
+ {override}Load(conent : ContentManager) : void
+ {override}Update(gameTime : GameTime) : void
+ {override}Draw(spriteBatch : SpriteBatch) : void
# {virtual}ChildPropertyChangedHandler(sender : object, args : PropertyChangedEventArgs) : void
# {virtual}AlignChildren() : void
# _Add(child : Component) : void
# _Remove(child : Component) : void
# _DefaultAlign() : void
}
class ViewContainer {
+ SetPosition(position : Vector2) : void
+ SetSize(position : Vector2) : void
}
ViewContainer --|> Container
View --> "1" ViewContainer : MainContainer
abstract class Control
Container -up-|> Component
Container --> "*" Component : Children
Container --> "*" Container : Containers
Container --> "*" Control : Controls
abstract class LayoutPane {
+ Add(child : Component) : void
+ Remove(child : Component)
}
LayoutPane -right-|> Container
class HPane {
# {override}AlignChildren() : void
}
note bottom
The order of items is determined by
their HAlignment and the order they
where added to this Container.
VAlignment determines how items are
aligned within their column.
end note
class VPane {
# {override}AlignChildren() : void
}
note bottom
The order of items is determined by
their VAlignment and the order they
where added to this Container.
HAlignment determines how items are
aligned within their row.
end note
class StackPane
note left
Items are stacked on top of each
other in the order they where added
to this Container. The positioning
of items according to their H- and
VAlignment is evaluated for each item
independent of the other items.
end note
HPane -up-|> LayoutPane
VPane -up-|> LayoutPane
StackPane -|> LayoutPane
''''''''''
' Page 2 '
''''''''''
newpage
title GUI - Controls
enum Orientation {
Horizontal
RHorizontal
Vertical
RVertical
}
class TextItem {
+ Font : SpriteFont <<get>> <<set>>
+ Text : string <<get>> <<set>>
+ {override} Update(gameTime : GameTime) : void
+ {override} Draw(spriteBatch : SpriteBatch) : void
}
class ImageItem {
+ Image : Texture2D <<get>> <<protected set>>
+ {override} Update(gameTime : GameTime) : void
+ {override} Draw(spriteBatch : SpriteBatch) : void
}
abstract class Component
TextItem -up-|> Component
ImageItem -up-|> Component
abstract class Control {
+ IsFocused : bool <<get>> <<protected set>>
+ IsDisabled : bool <<get>> <<protected set>>
+ Action : EventHandler
+ Enabled : EventHandler
+ Disabled : EventHandler
+ FocusGain : EventHandler
+ FocusLoss : EventHandler
+ KeyPressed : KeyEventHandler
+ KeyReleased : KeyEventHandler
+ {virtual} HandleInput() : void
# {virtual} HandleMouse() : void
# {virtula} HandleKeyboard() : void
# {virtual} HandleGamepad() : void
# {virtual} HandleTouch() : void
# {virtual} OnAction() : void
# {virtual} OnEnabled() : void
# {virtual} OnDisabled() : void
# {virtual} OnFocusGain() : void
# {virtual} OnFocusLoss() : void
# {virtual} OnKeyPressed() : void
# {virtual} OnKeyReleased() : void
}
abstract class Container
Control -up-|>Container
class MenuItem {
+ Orientation : Orientation <<get>> <<protected set>>
+ Text : TextItem <<get>> <<protected set>>
+ Image : ImageItem <<get>> <<protected set>>
}
MenuItem -up-|> Control
MenuItem -up-> "0, 1" TextItem : Text
MenuItem -up-> "0, 1" ImageItem : Image
abstract class Menu {
+ Items : ReadOnlyCollection<MenuItem> <<get>> <<protected set>>
+ AddItem(item : MenuItem) : void
+ RemoveItem(item : MenuItem) : void
# {abstract} AlignItems() : void
}
Menu -up-|> MenuItem
Menu --> "*" MenuItem
class ListMenu {
+ {unused} SelectedIndex : int <<get>> <<protected set>>
+ ItemsOrientation : Orientation <<get>> <<set>>
# {override} AlignItems() : void
# {override} OnPropertyChanged(propertyName : string) : void
}
class RingMenu {
}
note bottom: TODO
ListMenu -up-|> Menu
RingMenu -up-|> Menu
class TextBox {
+ Text : string <<get>> <<protected set>>
+ IsFocused : bool <<get>> <<protected set>>
+ TextBoxTexture : Texture2D <<get>> <<protected set>>
+ TextBoxColor : Color <<get>> <<set>>
}
TextBox -left-|> Control
class ScrollBar {
+ ScrollBarPosition : float <<get>> <<protected set>>
+ ScrollBarTexture : Texture2D <<get>> <<protected set>>
+ ScrollTexture : Texture2D <<get>> <<protected set>>
+ ScrollColor : Color <<get>> <<set>>
}
ScrollBar -up-|> Control
class ProgressBar {
+ Progress : float <<get>> <<set>>
+ ProgressBarTexture : Texture2D <<get>> <<protected set>>
+ BackgroundTexture : Texture2D <<get>> <<protected set>>
+ BackgroundColor : Color <<get>> <<set>>
}
ProgressBar -up-|> Control
class CheckBox
class RadioBox
class RadioGroup
CheckBox -left-|> Control
RadioBox -left-|> Control
RadioGroup --> "*" RadioBox : Radios
@enduml | false | true | false | false | sequence |
82de8d7b327a4a904c22fd57a82d470355a6b939 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/UseCases/Manage-Users/Update-User.puml | eeaed2b6352c3e0357057e3dbc0e3b706bf4cef2 | [] | no_license | CAADE/C3 | 07307a3795888672df18e99932e25951911eaf1d | 4bbe48a335b936cf75808d0902b32f73b99ff958 | refs/heads/master | 2022-11-24T14:52:05.724752 | 2019-06-19T03:32:46 | 2019-06-19T03:32:46 | 67,574,474 | 1 | 0 | null | 2022-11-22T11:28:45 | 2016-09-07T05:19:16 | JavaScript | UTF-8 | PlantUML | false | false | 316 | puml | @startuml
Actor "actorName" as A
box "Manage-Users" #lightblue
participant CLI as CLI
participant Web as Web
participant "c3" as S
A -> CLI : c3-user-update(name,cloud,uname)
CLI -> S : user/update(name,cloud,uname)
A -> Web : user/update(name,cloud,uname)
Web -> S : user/update(name,cloud,uname)
end box
@enduml
| false | true | false | false | usecase |
ff62f3c2c49a88ec8a7c5790f38885c843639218 | de881a9056c5e7046992a5d4f1e5a16b9ef69494 | /PlantUML_Doc/ArrayList.iuml | 47894edee4f6568df00b9cf57a476a8fd16f7ed3 | [] | no_license | yamauchi-kazuharu-fixer/Docs | fe4910b9cd73c5b2eab837b654fe28479b29775b | 47c231b7717c8817f8dc390c27adb49f6eed4c4c | refs/heads/master | 2020-05-17T00:44:30.706310 | 2019-05-03T03:43:49 | 2019-05-03T03:43:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 90 | iuml | class ArrayList
!ifdef SHOW_METHODS
class ArrayList {
int size()
void clear()
}
!endif | false | true | false | false | class |
31b558cb2c979bfeb510e6d7cbfebbbabfc68fa7 | e07ad94f5c70b0c457b9484269304244ced63a8f | /patterns/strategy.puml | 082412415ab316b7ca084bb3956d5d138b9c4130 | [] | no_license | gillescoolen/design-patterns | abfe58fab21c1d47c124f066d2a7883156667bce | c05acb4b919247c5a26bf8341330837894154ae8 | refs/heads/main | 2023-06-01T22:47:39.336414 | 2021-06-18T12:39:56 | 2021-06-18T12:39:56 | 377,582,013 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 239 | puml | @startuml strategy
class Context {
+ execute()
}
interface Strategy {
+ execute()
}
class StrategyA {
+ execute()
}
class StrategyB {
+ execute()
}
Context --> Strategy
StrategyA ..|> Strategy
StrategyB ..|> Strategy
@enduml | false | true | false | false | class |
52c307ed1f71453814596ddc20eefcc6fbd4320d | 0adabba61ed12d21fdd9723f1a4ef1c780ac0932 | /Sequence Diagrams/web-sequence-example.puml | c22563130b9da5ed542bcbbf086b5667fa7d6cec | [] | no_license | DavidHartman-Personal/PlantUML-Reference | eba988bce0a89661a50511805ce59798d962f7cb | 20167b2520dad0c14d0d114d6760e9568810ffdf | refs/heads/main | 2023-07-19T09:47:20.703635 | 2021-09-09T07:45:53 | 2021-09-09T07:45:53 | 403,338,071 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,186 | puml | @startuml
participant "app: Application" as app
participant "cm: ContentManager" as cm
participant "item: DownloadItem" as item
activate app
activate cm
note over app: User enters media info page
note over app: Check if item exists
app->cm: findItem(itemId)
cm->cm: lookup(itemId)
alt item found
cm-->app: item
else not found
cm-->app: null
app->cm: createItem(itemId, contentURL)
cm->item: new(itemId, contentURL)
activate item
cm-->app: item
app->cm: loadMetadata()
note over cm
Download and parse manifest, save in db
end note
cm-->app: onTracksAvailable
cm-->app: onDownloadMetadata
note over app: * See //track-selection// flow
end group
note over app: app is ready to start downloading
app->item: startDownload()
@enduml
@startuml
skin BlueModern
title Publish(er) Jobs Workers (Successful Block Copy)
'participant "WebUI" as W
participant "Orchestra" as O
participant "Storage" as S
'participant "Transform" as T
participant "Publisher" as P
activate O
P -> P: Startup (celeryd -Q queue_name)
activate P
P -> O: << get next publish job from queue >>
O --> P: << next publish job is ... >>
note right: <b>concurrency_value</b> jobs can be threated\nsimultaneously (multithreading)
P -> P: Launch new block copy
P -> S: << read media from medias path >>
activate S
S --> P: << read block 1/N from media >>
P --> P: << write block 1/N to local web path >>
P --> O: << update job status & statistics ... >>
S --> P: << read block 2/N from media >>
P --> P: << write block 2/N to local web path >>
S --> P: << read block N/N from media >>
P --> P: << write block N/N to local web path >>
S --> P: << end of file >>
deactivate S
P --> O: << update job status & statistics ... >>
P -> O: POST /publish/callback\n {"job_id": "<uuid_of_job>", "publish_uri": "...", "status": "SUCCESS"}
activate O
O -> O: Set media status=PUBLISHED + publish_uris[job_id]=publish_uri into MongoDB
O --> P: <b>OK 200</b> {"status": 200, value="Your work is much appreciated, thanks !"}
deactivate P
deactivate O
@enduml | false | true | false | false | sequence |
428e474552d9f5d246d72211ff79ec282b75f385 | 7e54066ce2b980f64d5d89c67a2c6d1b054dd689 | /docs/communication-backup/communication_backup_server.plantuml | 8791aa82ee0fa7daa8e2ecf45f0d10c0b98ba115 | [] | no_license | reTHINK-project/dev-java-hyperty | 1da1a59e8213794b7d446c855581ea6e9921f7bb | 68ab9fb39042d49b682b8ea044561c408b0a4a3c | refs/heads/master | 2022-12-13T05:20:07.877512 | 2019-06-28T11:12:05 | 2019-06-28T11:12:05 | 122,315,782 | 0 | 0 | null | 2022-12-08T07:36:54 | 2018-02-21T09:26:00 | Java | UTF-8 | PlantUML | false | false | 272 | plantuml | @startuml
node "Communication Server" as dsmServer {
node "Group Chat Backup" as schoolCommBckup
}
interface "School\nCommunication" as schoolComm
node "Smart Citizen" as citz {
}
schoolCommBckup -up-> schoolComm: observe
citz -> schoolCommBckup : read
@enduml
| false | true | false | false | sequence |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.