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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
477dee920b14633a53683350f32bbf2c470f6063 | afd26a066ad07ed0d651fb2c218636c3b1f09fda | /core/out/production/core/com/notifications/notification/notification.plantuml | 5304d31dd2c669485b5414722caaf45e472a7cde | [] | no_license | thuyhoang-bkuer/socket-assignment | 125c4c7894b4d17558c17687a63617e967188c4b | c67e2477166b43652d5e84b1cf181b31da34ce60 | refs/heads/master | 2020-08-30T18:01:51.960923 | 2019-11-13T10:08:19 | 2019-11-13T10:08:19 | 218,452,024 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,156 | plantuml | @startuml
title __NOTIFICATION's Class Diagram__\n
namespace com.notifications.notification {
enum NotificationType {
CUSTOM
ERROR
INFORMATION
NOTICE
SUCCESS
WARNING
}
}
namespace com.notifications.notification {
class com.notifications.notification.TrayNotification {
- imageIcon : ImageView
- lblClose : Label
- lblMessage : Label
- lblTitle : Label
- onDismissedCallBack : EventHandler<ActionEvent>
- onShownCallback : EventHandler<ActionEvent>
- rectangleColor : Rectangle
- rootNode : AnchorPane
+ TrayNotification()
+ TrayNotification()
+ TrayNotification()
+ dismiss()
+ getAnimationType()
+ getImage()
+ getMessage()
+ getNotificationType()
+ getRectangleFill()
+ getTitle()
+ getTrayIcon()
+ isTrayShowing()
+ setAnimationType()
+ setImage()
+ setMessage()
+ setNotificationType()
+ setOnDismiss()
+ setOnShown()
+ setRectangleFill()
+ setTitle()
+ setTray()
+ setTray()
+ setTrayIcon()
+ showAndDismiss()
+ showAndWait()
- initAnimations()
- initStage()
- initTrayNotification()
- onDismissed()
- onShown()
}
}
com.notifications.notification.TrayNotification o-- com.notifications.animations.AnimationProvider : animationProvider
com.notifications.notification.TrayNotification o-- com.notifications.animations.AnimationType : animationType
com.notifications.notification.TrayNotification o-- com.notifications.animations.TrayAnimation : animator
com.notifications.notification.TrayNotification o-- com.notifications.notification.NotificationType : notificationType
com.notifications.notification.TrayNotification o-- com.notifications.models.CustomStage : stage
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 |
94ea17e107ecc05ac838ce56161e764821a36f07 | 2224a126b01b992d959a6bd54f2d1011a5ba4d70 | /src/main/java/pt/ipp/isep/dei/project/controllers/persistgeoareasensorandreadings/CD_PersistHouseGridRoomSensorsAndReadings.puml | 5dbac5efd683bab3f0fcaac75092913ef919ec98 | [] | no_license | 1181687/hateoasToy | f7d5f6aeffe15f30adea325f40670f0e0b15cc35 | 0f37f75477d41f5f6ec52d4e125b3b6f0f1c0375 | refs/heads/master | 2020-05-24T10:01:58.451415 | 2019-05-15T11:02:39 | 2019-05-15T11:02:39 | 187,203,481 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,407 | puml | @startuml
skinparam linetype ortho
skinparam class {
BackgroundColor PaleTurquoise
ArrowColor Black
BorderColor Black
FontStyle Bold
}
hide empty attributes
hide empty methods
hide circle
"<<Entity>>\nHouseGrid" "." -right-> "." "<<Service>>\nHouseService": uses
"<<Service>>\nHouseService" "1" -down-> "1" "<<Repository>>\nRoomRepository"
"<<Service>>\nHouseService" "1" -right-> "1" "<<Repository>>\nHouseGridRepository"
"<<Entity>>\nRoom" "1" -down-> "0 .. *" "<<Entity>>\nRoomSensor"
"<<Entity>>\nRoomSensor" "1" -right-> "0 .. *" "Reading"
"<<Entity>>\nRoom" "." -left-> "." "<<Service>>\nHouseService": uses
"<<Entity>>\nRoom" "1"-left-> "1" "HouseGridId"
"<<Entity>>\nHouseGrid" "1" -down-> "1" "HouseGridId"
Class "HouseGridId" {
- String houseGridId
+ getHouseGridId()
}
Class "<<Service>>\nHouseService" {
- RoomRepository
- HouseGridRepository
+ updateHouseWithRoomsAndGrids()
+ addRoomToHouseGrid()
+ roomExists()
+ houseGridExists()
}
Class "<<Entity>>\nHouseGrid" {
}
Class "<<Entity>>\nRoom" {
- RoomId id
- String description
- int houseFloor
- Dimension dimension
}
Class "<<Entity>>\nRoomSensor" {
- String id
- String sensorName
- LocalDateTime startingDate
- SensorType sensortype
- String units
}
Class "Reading" {
- Long id
- double value
- LocalDateTime date
}
Interface "<<Repository>>\nRoomRepository"{
}
Interface "<<Repository>>\nHouseGridRepository"{
}
@enduml | false | true | false | false | sequence |
67554379c49d0e80e74aefc849dc23fb6fbbf8df | 2a7567e7bf1069cd067c5fa9885a597259c8df66 | /UML Diagrams/class.plantuml | c9fac798254d028af55ecfdef3eaac701a8983c0 | [] | no_license | Theodore-Wilson/BASIC-QIX | 8cd5ce67cb814e11469e0c3347d9b8b3e3ddd121 | 08f7c6342d5215326dc0dfd36473e7852115d650 | refs/heads/main | 2023-04-01T17:55:15.935283 | 2021-04-06T23:18:45 | 2021-04-06T23:18:45 | 352,463,777 | 0 | 0 | null | 2021-04-06T22:46:43 | 2021-03-28T23:40:54 | Python | UTF-8 | PlantUML | false | false | 1,685 | plantuml | @startuml Qix
class Character {
- coordXGrid: Int
- coordYGrid: Int
- coordXP: Int
- coordYP: Int
+moveRight()
+moveLeft()
+moveUp()
+moveDown()
+getCoordXGrid()
+getCoordYGrid()
+getCoordXP()
+getCoordYP()
}
class Player extends Character{
- moveD : Int
- moveDS : Int
- lifeForce : Int
- Draw : Array
- currentSlow : Bool
- changeGrid : Bool
- currentDirection : Bool
+move()
+checkLoseLife()
+getDraw()
+qixHit()
+hitSelf()
+switchSpeed()
+getLife()
}
class Spark extends Character{
- moveD : Int
- changeGrid : Bool
- direction : String
+checkIntersection()
+move()
}
class Qix extends Character{
-moveD : Int
-changeGrid : Bool
-changeD : Int
-direction : String
+randDirection()
+checkWall()
+checkIntersection()
+move()
+checkCollision()
}
class Graph{
- grid: 2D Array
- cGrind : 2D Array
- currentPercent : Float
- accessibleWalls : Array
+setGrid()
+getGrid()
+getcGrid()
+getEntireGrid()
+getEntireCGrid()
+getCurrentPercent()
+getWalls()
+setGrid()
+setCGrid()
+updateGridLine()
+updateGridBox()
+updateWalls()
+checkWin()
}
class Game{
-backgroundGraph : Graph
-player : Player
-spark1 : Spark
-spark2 : Spark
-qix : Qix
-easyCalcX : Array
-easyCalcY : Array
gameDisplay : PygameDisplay
+pygameDrawLine()
+pygameDraw()
+game()
}
Game "1" -- "3..*" Character
Game "1" -- "1" Graph
@enduml | false | true | false | false | class |
a092c3a738d36613aa08d40daac00f83e4a3b8af | 48fcead366a1014672e68259bcc5a9ac4a6ac9d1 | /architecture/stakeholder-needs-human.puml | 5a564951a90f72e5d4be839fa909a62da8c36df3 | [
"CC-BY-4.0"
] | permissive | capsulecorplab/earthshuttle | 0cd8bb5f251852d5312c5c07b68bbfa6a7ddc5b5 | 6cb3a29825b497aa054aeb8f3f083a3f05959289 | refs/heads/main | 2023-04-15T01:54:58.476803 | 2021-04-19T09:04:34 | 2021-04-19T20:15:31 | 359,574,431 | 0 | 0 | CC-BY-4.0 | 2021-04-19T19:25:25 | 2021-04-19T19:25:24 | null | UTF-8 | PlantUML | false | false | 593 | puml | @startuml
left to right direction
skinparam linetype polyline
!startsub A1
actor a1 <<stakeholder>> as "
Human
"
!endsub
!startsub C1
rectangle c1 <<need>> as "
Food
"
!endsub
!startsub C2
rectangle c2 <<need>> as "
Energy
"
!endsub
!startsub C3
rectangle c3 <<need>> as "
Clean water
"
!endsub
!startsub C4
rectangle c4 <<need>> as "
Garbage management
"
!endsub
!startsub C5
rectangle c5 <<need>> as "
Shelter
"
!endsub
!startsub C6
rectangle c6 <<need>> as "
Sewage treatment
"
!endsub
!startsub RELATIONSHIPS
a1 -- c1
a1 -- c2
a1 -- c3
a1 -- c4
a1 -- c5
a1 -- c6
!endsub
@enduml
| false | true | false | false | sequence |
15b55e1d5511b277bbf943e784d7abd70a2a1bf6 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Window/TimelineWindow_Gui.puml | 4d1ec6d067bed4f6e0b64a99d2fc5dbd9e914a78 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,611 | puml | @startuml
class TimelineWindow <<partial>> {
m_HierarchySplitterPerc : float
m_SplitterCaptured : int
m_VerticalScrollBarSize : float
m_HorizontalScrollBarSize : float
headerHeight : float <<get>>
+ verticalScrollbarWidth : float <<get>>
+ horizontalScrollbarHeight : float <<get>>
breadCrumbAreaWidth : float <<get>>
DoLayout() : void
TimelineSectionGUI() : void
SplitterGUI() : void
TrackViewsGUI() : void
UserOverlaysGUI() : void
DrawHeaderBackground() : void
HandleBottomFillerDragAndDrop(rect:Rect) : void
DrawHeaderBackgroundBottomFiller() : void
SequencerGUI() : void
SubTimelineRangeGUI() : void
HandleSplitterResize() : void
OptionsGUI() : void
AddStandardFrameRateMenu(menu:GenericMenu, name:string, value:float) : bool
ChangeTimeCode(obj:object) : void
+ AddUserOverlay(marker:IMarker, rect:Rect, editor:MarkerEditor, collapsed:bool, selected:bool) : void
}
class MarkerOverlay <<struct>> {
+ isSelected : bool
+ isCollapsed : bool
}
enum TimelineItemArea {
Header,
Lines,
}
class "List`1"<T> {
}
TimelineWindow o-> "m_OverlayQueue<MarkerOverlay>" "List`1"
TimelineWindow --> "markerHeaderRect" Rect
TimelineWindow --> "markerContentRect" Rect
TimelineWindow --> "trackRect" Rect
TimelineWindow --> "sequenceRect" Rect
TimelineWindow --> "sequenceHeaderRect" Rect
TimelineWindow --> "sequenceContentRect" Rect
TimelineWindow +-- MarkerOverlay
MarkerOverlay --> "marker" IMarker
MarkerOverlay --> "rect" Rect
MarkerOverlay --> "editor" MarkerEditor
TimelineWindow +-- TimelineItemArea
@enduml
| false | true | false | false | class |
64e76305cbcfaca10921c676c6779a87418fbf41 | 20391c18be0f5d9fa3adee5029be766534a0cf8e | /state-pattern/example2/solution/test.puml | 7fbbfa8f0c5a8008ba15cbd2d0d26693647aa0e8 | [] | no_license | Caballerog/blog | 34ee257ea9e033dfab732d15b7eff7b2a03a59a0 | c02c18b49cd65894ebd5e4f7eebc946195cde0f6 | refs/heads/master | 2023-04-28T15:00:41.602153 | 2023-04-21T19:56:59 | 2023-04-21T19:56:59 | 169,620,009 | 28 | 7 | null | 2022-12-11T21:37:16 | 2019-02-07T18:22:56 | TypeScript | UTF-8 | PlantUML | false | false | 1,115 | puml | @startuml
class Freeza {
-state: State
+isAlive(): boolean
+transitionTo(state: State): void
+attack(): void
+defend(value: number): void
}
abstract class State {
+{abstract} power: number
+{abstract} energy: number
#freeza: Freeza
+setFreeza(freeza: Freeza): void
+getEnergy(): number
+{abstract} attack(): void
+{abstract} defend(value: number): void
}
class Transformation1 extends State {
+power: number
+energy: number
+attack(): void
+defend(attack: number): void
}
class Transformation2 extends State {
+power: number
+energy: number
+attack(): void
+defend(attack: number): void
}
class Transformation3 extends State {
+power: number
+energy: number
+attack(): void
+defend(attack: number): void
}
class Transformation4 extends State {
+power: number
+energy: number
+attack(): void
+defend(attack: number): void
}
class GoldenFreezer extends State {
+power: number
+energy: number
+attack(): void
+defend(attack: number): void
}
Freeza --> "1" State
State --> "1" Freeza
@enduml | false | true | false | false | state |
daf291bf15f9d1005dcc1450831b2e47a9d59c14 | 4992587119add5cac8dc1446f2e36a01aae4cfca | /_diagrams/gear-size-sequence.puml | 976fc2c45fe4369bd275ea5d4c0a10c78aaedc98 | [
"MIT"
] | permissive | Steve-O-Cassels/steve-o-cassels.github.io | 13e7519b88cdfde08bb6f8ec2f1311f7c74643d1 | 736cba96f30ebc2abeebc62f0aebc23730c900e5 | refs/heads/master | 2021-01-10T18:54:43.532701 | 2017-12-31T22:57:34 | 2017-12-31T22:57:34 | 48,968,173 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 650 | puml | @startuml
Title: Gear-Size Sequence Diagram
actor User
== Initialization ==
User -> Browser: Url Request
Browser -> Server: Request assets
Server --> Browser: assets Response
Browser -> Browser:DomReady
== First Render ==
Browser -> Browser: Page.renderGearSizes()
Browser --> User: Done
== Subsequent Render ==
User -> Browser : 53 x 39 chainrings
Browser -> Browser : Page.onChainRingSizeChange()
Browser -> Browser: Page.renderGearSizes()
Browser --> User: Done
User -> Browser : 12-23 cassette
Browser -> Browser : Page.onCassetteChange()
Browser -> Browser: Page.renderGearSizes()
Browser --> User: Done
legend
Page rendering
endlegend
@enduml
| false | true | false | false | sequence |
89c4f1c8db4f21ec3b70a59704703239f6bd1dc2 | e4693a606f7392151681abc4f6c5f0ba9f252fab | /de.gematik.ti.cardreader.provider.pcsc/src/main/java/de/gematik/ti/cardreader/provider/pcsc/entities/entities.plantuml | 2bb3e1d8b017c3279f282f83c2a3a76883773970 | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderProvider-PCSC | 52683986e5e10589a4b4605c008104a3ddc9e144 | 82e85b22ee81fab33e81171f5b70656f9750e1c4 | refs/heads/master | 2022-01-12T16:05:18.890812 | 2022-01-07T07:24:35 | 2022-01-07T07:24:35 | 214,092,461 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,581 | plantuml | @startuml
title __ENTITIES's Class Diagram__\n
namespace de.gematik.ti.cardreader.provider.pcsc.entities {
class de.gematik.ti.cardreader.provider.pcsc.entities.CardReader {
{static} - LOG : Logger
- cardTerminal : CardTerminal
+ CardReader()
+ connect()
+ connect()
+ getCardTerminal()
+ getName()
+ initialize()
+ isCardPresent()
+ isInitialized()
+ toString()
+ waitForCardAbsent()
+ waitForCardPresent()
}
}
namespace de.gematik.ti.cardreader.provider.pcsc.entities {
class de.gematik.ti.cardreader.provider.pcsc.entities.PcscCard {
{static} - LOG : Logger
- javaxCard : Card
+ PcscCard()
+ disconnect()
+ getATR()
+ getProtocol()
+ openBasicChannel()
+ openLogicalChannel()
}
}
namespace de.gematik.ti.cardreader.provider.pcsc.entities {
class de.gematik.ti.cardreader.provider.pcsc.entities.PcscCardChannel {
{static} - CARDREADER_BUFFER : String
{static} - CARD_MAXAPDUBUFFERSIZE : String
{static} - CARD_MAXRESPAPDUBUFFERSIZE : String
{static} - LOG : Logger
{static} - MINIMAL_ALLOCATE : int
- allocateLength : int
{static} - bufferSizeConfig : Map<String, Integer>
- javaxCardChannel : CardChannel
+ PcscCardChannel()
+ close()
+ getCard()
+ getChannelNumber()
+ getMaxMessageLength()
+ getMaxResponseLength()
+ isExtendedLengthSupported()
+ setAllocateLength()
+ transmit()
}
}
namespace de.gematik.ti.cardreader.provider.pcsc.entities {
class de.gematik.ti.cardreader.provider.pcsc.entities.PcscCrpRuntimeException {
{static} - serialVersionUID : long
+ PcscCrpRuntimeException()
}
}
de.gematik.ti.cardreader.provider.pcsc.entities.CardReader .up.|> de.gematik.ti.cardreader.provider.api.ICardReader
de.gematik.ti.cardreader.provider.pcsc.entities.PcscCard .up.|> de.gematik.ti.cardreader.provider.api.card.ICard
de.gematik.ti.cardreader.provider.pcsc.entities.PcscCardChannel .up.|> de.gematik.ti.cardreader.provider.api.card.ICardChannel
de.gematik.ti.cardreader.provider.pcsc.entities.PcscCardChannel o-- de.gematik.ti.cardreader.provider.pcsc.entities.PcscCard : pcscCard
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 |
120d8924934184cbc9628418bf0c7b8d3754dcc6 | 2c910239ad24c81085137c9231613e66f6ec9909 | /class-diagram1.plantuml | a3bb78dc115d728d953716eea00a2491de649ac7 | [] | no_license | linhtch90/plantuml-example | 1cad66ff0ed85a2793159e6a929fb8fcaf076941 | fbdd455c637090392f5fa9b87f5505d10b25e7a9 | refs/heads/master | 2023-01-13T15:54:13.921056 | 2020-11-10T09:47:13 | 2020-11-10T09:47:13 | 311,306,810 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 96 | plantuml | @startuml
class Customer
class Car
class Dealer
Customer --|> Car
Dealer ---* Car
@enduml
| false | true | false | false | class |
3b4141265b1fa8092a0738c359b485aeae72851d | 531021c0d92723ea2ab9e3609f7bc7ee099099f9 | /todo-code/src/main/kotlin/io/patamon/todo/design_pattern/策略模式.puml | 5f4016cdc358f3b51db508ea44925ae4257063db | [] | no_license | IceMimosa/TODO | fba00de99ac6cd99d64c5f0954860863abe78aba | 192c73a827e905f9d0473c602d15d1df7a6623d8 | refs/heads/master | 2022-06-03T15:48:53.673061 | 2022-05-29T13:32:54 | 2022-05-29T13:32:54 | 137,827,298 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 350 | puml | @startuml
class Context {
Strategy strategy
+doStrategy()
}
interface Strategy {
+strategyMethod()
}
class Strategy1 {
+strategyMethod()
}
class Strategy2 {
+strategyMethod()
}
class Strategy3 {
+strategyMethod()
}
Context --> Strategy : use
Strategy <|-- Strategy1
Strategy <|-- Strategy2
Strategy <|-- Strategy3
@enduml
| false | true | false | false | sequence |
2a1a41e61922b4761d7289090e63b98d7813a4a2 | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test-dummies/java/spec/concordion/common/results/runTotals/testsuite/failFastIndex/failFastIndex.plantuml | e04b7fd3b852628da59afdc08e2ebb95dc8df9e5 | [
"WTFPL",
"Apache-2.0"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,342 | plantuml | @startuml
title __FAILFASTINDEX's Class Diagram__\n
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.failFastIndex {
class FailFastIndex {
}
}
}
}
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.failFastIndex {
class FailFastSpec {
+ sleep()
}
}
}
}
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.failFastIndex {
class SuccessSpec {
+ sleep()
}
}
}
}
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.failFastIndex {
class UnimplementedSpec {
}
}
}
}
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 |
8a9885aa6a5728628a28b0a9c0b9a85e0218dde2 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartDiscountShippingCostTarget.puml | cf36ea9bc325e60ff96cd1fe6dc3a5de15ca8111 | [] | 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 | 428 | 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 CartDiscountShippingCostTarget [[CartDiscountShippingCostTarget.svg]] extends CartDiscountTarget {
type: String
}
interface CartDiscountTarget [[CartDiscountTarget.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
190caa08cb6453cd53ed2c67f8693ea81d1f4fb4 | f0a43ed6a7dba2cc3efdfbf7414ff0b0c8d36fd6 | /_src/iti92.plantuml | 76815b1864c2114f219b62252c886912f77feb6d | [
"MIT",
"GPL-1.0-or-later",
"WTFPL",
"CC-BY-3.0-US",
"BSD-3-Clause",
"OFL-1.1"
] | permissive | oehf/ipf-docs | 178fe1e3fe079afede58fd25fe93a360234a273a | 3a8ea98c86b3405f6571cb23b4da44a726a8fbf4 | refs/heads/master | 2023-08-30T06:25:52.374023 | 2023-08-29T14:34:33 | 2023-08-29T14:34:33 | 158,552,584 | 0 | 3 | MIT | 2022-03-30T07:48:51 | 2018-11-21T13:31:43 | HTML | UTF-8 | PlantUML | false | false | 244 | plantuml | @startuml
hide footbox
participant "Update Initiator" as UPI
participant "Update Responder" as UPR
UPI -> UPR : Restricted Update Document Set Request
activate UPR
UPR --> UPI : Restricted Update Document Set Response
deactivate UPR
@enduml | false | true | false | false | sequence |
ac932341ebdd5eb9ca6364240def66a29103daf0 | 0bc7bf29514e3fa3c2b54d70c6f3bcc6daaff6ab | /cardreader.provider.usb.identos/doc/plantuml/UIDECRP/IdentosCardReaderController.plantuml | 134b4e6abd62e5663beb2280a08063f5dea9abae | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderProvider-USB-Identos-Android | 7e74fb4ab0980f27e9288e3b9f2e3e9477c2c3a7 | bbbb80694ade1139b3f004fd4e33115274c738d1 | refs/heads/master | 2022-01-12T21:04:35.091433 | 2022-01-07T07:24:23 | 2022-01-07T07:24:23 | 213,916,220 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 746 | plantuml | @startuml
package de.gematik.ti.cardreader.provider.usb.identos.control {
class IdentosCardReaderController {
{static} - ACTION_USB_PERMISSION_IDENTOS : String
{static} - LOG : Logger
{static} - instance : IdentosCardReaderController
- cardReaders : Map<Integer, ICardReader>
- IdentosCardReaderController()
{static} + getInstance()
+ getCardReaders()
+ addConnectionListener()
~ addNewAndInform()
~ removeAndInform()
+ waitForPermission()
+ ctInitCompleted()
- readDevices()
- createUsbReceiver()
}
}
IdentosCardReaderController -up-|> AbstractAndroidCardReaderController
@enduml
| false | true | false | false | class |
d5530f111809aa0d9912448aac7b26102454f3e4 | 560e8a52f95138903d5198d217551de6bd8aa4a8 | /src/main/java/com/infosupport/poc/ddd/domain/entity/orderingaccount/orderingaccount.plantuml | 608ea8c732f34565ecf3812da35922410af80a7a | [] | no_license | ingmars1709/ddd | dcfcf06951c4d968cda849aa462f0e6cc3c2a2d0 | 8cac199a2808a12f65745509bb66dd7a200a4d0f | refs/heads/master | 2020-04-20T19:11:43.488997 | 2020-03-13T08:21:01 | 2020-03-13T08:21:01 | 169,042,695 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 647 | plantuml | @startuml
title __ORDERINGACCOUNT's Class Diagram__\n
package com.infosupport.poc.ddd.domain.entity {
package com.infosupport.poc.ddd.domain.entity.orderingaccount {
class OrderingAccount {
- orderingAccountIdentification : String
- OrderingAccount()
{static} + create()
+ hasSameIdentityAs()
+ getOrderingAccountIdentification()
}
}
}
OrderingAccount -up-|> Entity
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 |
531942e591e14f6794a392d94b4c7077682c8013 | 57f6af9b318f3f2efd4972bef498df881dc667d3 | /docs/structure.puml | 2f924b5e7cff22814a8c9add6e902bb0bfc1543b | [] | no_license | Normx1/YuPharm | 477ba3a4318105b5e9e8556f3c53dc0b233aedac | e5ccee8fcbf1519c58bf9a970ba8468e0999c99e | refs/heads/main | 2023-05-05T17:00:24.266368 | 2021-05-25T16:27:16 | 2021-05-25T16:27:16 | 340,707,360 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 725 | puml | @startuml
legend left
Design structure of online pharmacy shop
endlegend
enum Role {
Viewer : not logged in
Customer : logged in
Pharmacist
Doctor
Admin
SuperAdmin \ root
}
interface User {
+ int id()
+ Role[] roles()
}
Role <-- User
interface Drug {
+ int id()
}
interface Drugs {
+ Drug create()
+ List<Drug> all()
+ void delete(Drug drug)
}
Drugs --> Drug
interface Order {
+ int id()
}
interface Orders {
+ Order create()
+ List<Orders> all()
+ void delete(Order order)
}
Orders --> Order
interface Recipe {
+ int id()
}
interface Recipes {
+ Recipe create()
+ List<Recipe> list()
+ void delete(Recipe recipe)
}
Recipes --> Recipe
User --> Drugs
User --> Orders
User --> Recipes
@enduml
| false | true | false | false | class |
d0da611f00c6c8233db3115d292f07078f7628a4 | 90696609384bca174520e749760921983d3c5d26 | /app/src/main/java/com/code/group3finalproject/db/db.plantuml | 72124a2029c707681ecaf36cb77b67bb7f5851f4 | [] | no_license | guer1830/Group3FinalProject | b66e799ad3296bf6914f271239c349bdd58a026a | 9a1cf7205e283cc13ccc14913463438390a62ed9 | refs/heads/master | 2023-07-01T10:51:46.699456 | 2021-08-08T17:54:34 | 2021-08-08T17:54:34 | 373,564,181 | 0 | 0 | null | 2021-08-07T05:21:36 | 2021-06-03T15:56:15 | Java | UTF-8 | PlantUML | false | false | 731 | plantuml | @startuml
title __DB's Class Diagram__\n
namespace com.code.group3finalproject {
namespace db {
abstract class com.code.group3finalproject.db.StockDatabase {
{static} + databaseWriteExecutor : ExecutorService
{static} - NUMBER_OF_THREADS : int
{static} - stockDB : StockDatabase
{static} + getInstance()
{abstract} + getStockDAO()
- populateInitialData()
}
}
}
com.code.group3finalproject.db.StockDatabase -up-|> androidx.room.RoomDatabase
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 |
76fe1b68c212657aea1b72cf7f165079b66c4d52 | b0d5bc5244fd6e70c16cb78aab6b9b99d05cb245 | /src/test/java/io/github/bigbio/pgatk/utilities/iongen/iongen.plantuml | b6369a3f21698e69c81cd15dd059aa0c4798bfcf | [] | no_license | bigbio/pgatk-utilities | 51fde07d6a93777e264ac06b2ce3565acf90b560 | 5277cf6eec28d7db34e65af0442ea471919aacd6 | refs/heads/master | 2023-04-22T04:23:38.728052 | 2021-04-30T14:24:57 | 2021-04-30T14:24:57 | 284,158,103 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 946 | plantuml | @startuml
title __IONGEN's Class Diagram__\n
package io.github.bigbio.pgatk.utilities.iongen {
class Constants {
{static} + DEVIATION : double
- Constants()
}
}
package io.github.bigbio.pgatk.utilities.iongen {
class ProductIonFactoryTest {
- printProductIons()
+ testDefaultProductIons()
- printImmoniumIons()
+ testImmuniumIons()
+ testModificatedProductIons()
- compareResults()
+ patchDefaultProductIons()
+ patchModificatedProductIons()
+ patchImmoniumIons()
}
}
package io.github.bigbio.pgatk.utilities.iongen {
class TestUtils {
{static} + generateTestset()
+ testGenerateTestset()
}
}
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 |
16d152515e0157167319a464be137be2014378e6 | c4437e6472f49d49e6bea760d9a95d51cdc3f66b | /uml/UserClass.puml | 5bbba446eebb3adc8bd00ab6d5c0efbf09a07400 | [] | no_license | Skybluewater/QuestGeneratorWebsite | b741b49c7248402f3e2187230a04c66e9f1cb774 | 5c7f14dcf690647e6bd08546c5a85e19ca959d39 | refs/heads/master | 2021-08-06T20:24:46.761026 | 2020-12-11T09:12:33 | 2020-12-11T09:12:33 | 228,553,999 | 2 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 798 | puml | @startuml
package django.db.models {
class Model
}
package django.forms{
class Form
}
package form{
class UserForm
class RegisterForm
}
package models{
class User
}
package captcha.fields{
class fields
}
class User{
gender:choice
name:models.CharField
password:models.CharField
email:models.EmailField
c_time:models.DateField
+__str__():models.CharField
}
class UserForm{
username:forms.CharField
password:forms.CharField
}
class RegisterForm{
gender:choice
username:forms.CharField
password1:forms.CharField
password2:forms.CharField
email:forms.EmailField
captcha:CaptchaField
}
RegisterForm --|> Form
UserForm --|> Form
RegisterForm --o fields
User --|> Model
RegisterForm -- User
UserForm -- User
@enduml | false | true | false | false | class |
a3e1deb35e4163199eac5ff1b48c00fd0f8cf515 | 6e033757a2b2a0c0bdb08a645b71b664973dc089 | /draw/plantuml/20201117-flyway-migrate.puml | 028a116a3824cf5eea144d9534f0e75fd62f7719 | [] | no_license | LangInteger/learning | 7a029da47951b4da9052cbc118d18ef169c3bea2 | 3e167cea2cd6c6c1e553acebc01fc174ad1f9d1f | refs/heads/master | 2023-05-25T18:22:08.099230 | 2023-05-19T15:02:38 | 2023-05-19T15:02:38 | 200,469,615 | 7 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 693 | puml | @startuml
skinparam componentStyle rectangle
package "Database Before Operation" as DBO {
[flyway_schema_history] as fsh_1
[Table1] as table1_1
[Table2] as table2_1
}
fsh_1 -[hidden]-> table1_1
table2_1 -[hidden]> table1_1
package "Database After Operation" as DAO {
[flyway_schema_history] as fsh_2
[Table1] as table1_2
[Table2] as table2_2
[Table3] as table3_2
}
fsh_2 -[hidden]-> table1_2
table2_2 -[hidden]> table1_2
package "flyway migrate" as OP {
[v2__changes.sql] as file
}
table1_1 -[hidden]> file
file -[hidden]-> DAO
DBO -> OP
OP -> DAO
note left of table3_2 : Created by Operation
note top of fsh_2: Migration history is recorded here as record
@enduml
| false | true | false | false | uml-unknown |
2d72c1e54edc6216801fbc026848ecb8a75b6b2d | d3748d9913134ebe4cf96189f910bf5b18c3a216 | /docs/Actors/admin/Activity.puml | f1e545b14248fe3f0dfcb03cd2cbae758d82c453 | [] | no_license | madajaju/fleet | 5449a4cd1e0979d8a6c370baf179ac4a08234371 | 259fc03531375aa0053651a23659f605687b2840 | refs/heads/master | 2023-04-27T09:53:37.670570 | 2018-06-30T12:55:13 | 2018-06-30T12:55:13 | 138,994,303 | 0 | 0 | null | 2023-04-25T22:53:31 | 2018-06-28T09:08:25 | JavaScript | UTF-8 | PlantUML | false | false | 138 | puml | @startuml
partition "admin" #cccccc {
(*) --> "Start Here"
}
partition "system.name" #ffaaaa {
"Start Here" --> "Here"
}
@enduml
| false | true | false | false | activity |
9841f78e88c1f73a965dc608f3b9442e74e060fa | 8dfd1953e5ac52e22582d2e1d02f60897d6091c7 | /source/pic/20180114.blog.puml | 3b23a6a515758624e87c41d90306aef3f5db87d3 | [] | no_license | MemoRyAxis/mzblog | 839859cbd01220d740d4fb5c4ccad041c401ca9f | b6ee8e31827a5a10b1b0bf916784d4938f2cbd08 | refs/heads/master | 2021-05-12T08:06:10.937159 | 2018-04-15T15:22:53 | 2018-04-15T15:22:53 | 117,267,231 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 400 | puml | @startuml
package https://memoryaxis.com {
package Nginx {
frame Server80 {
80 - [ReWriter]
}
frame Server443 {
443 - [Proxy]
[SSL]
}
[ReWriter] -> 443
}
package LetsEntrypt {
[certbot]
}
[certbot] -u-> [SSL]
package Hexo {
4000 - [Server]
}
[Proxy] -d-> 4000
}
@enduml
| false | true | false | false | uml-unknown |
cadeac3505e024c798ed13176386e53b871200ca | a9360330a57d11b8e656c2af7f68cf01d4f4aaa7 | /src/main/resources/Test.puml | 52914f6d2fdaee2d3abddfd244dab14fdb881c29 | [] | no_license | peanutForest/thrift-learning | cef3f76289252e909629141a88cb2d8c2c2bb96c | bc5f029b06fc642c6500c81bc1021246379ce328 | refs/heads/master | 2023-04-18T05:37:47.301748 | 2021-05-06T15:44:25 | 2021-05-06T15:44:25 | 363,126,223 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 95 | puml | @startuml
partition hello {
(*) --> "First Activity"
"First Activity" --> (*)
}
@enduml | false | true | false | false | activity |
d1ea27c572415b19fc3c04274216bb0d10032c21 | 46ce5c62d6cdcdd67a91f757a514f6105e1ee48b | /context_diagram.puml | 7c0b6e51772e7fd096bc94aeeb6b8f4aa221014b | [] | no_license | SoftengPoliTo/Lab2 | 300cea6d0b40e9d64ce9288dce40924fe449ca1e | 2a641b3a5ef9c5886afcc471f93bfd97d1dcd02d | refs/heads/master | 2021-04-18T03:52:10.764685 | 2020-04-20T09:54:23 | 2020-04-20T09:54:23 | 249,502,623 | 2 | 170 | null | 2020-04-20T09:54:24 | 2020-03-23T17:46:22 | null | UTF-8 | PlantUML | false | false | 458 | puml | @startuml
left to right direction
actor Gas_Station_Manager as gsm
actor Developer as dev
actor Map_System as ms
actor Driver_registered as drvR
actor Driver_unregistered as drvUR
rectangle "System"{
database "Gas_Station_DB" {
}
database "Users_DB" {
}
(EZGas Application) -left- Gas_Station_DB
(EZGas Application) -right- Users_DB
}
System -down- drvR
System -down- drvUR
System -down- gsm
System -up- ms
System -up- dev
@enduml
| false | true | false | false | usecase |
b9cb01f0176cab207935bd42d40901b173a1e945 | 6be2472e8675c2e50515a1e486421370aaa3f054 | /src/diagrams/Adrian_Phus.puml | a5c8ff66d431728a44000c38c655c66921974c4e | [] | no_license | SOFTWARE-ENGINEERING-GRUPPE-17/sayHelloToMyLilFriend | af3d6b590f28676654895ce5126710ff04619729 | a9ffbbd196f4de792423b59af4ae90158314c305 | refs/heads/master | 2023-01-23T09:15:37.544255 | 2020-11-25T23:49:31 | 2020-11-25T23:49:31 | 298,597,049 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,211 | puml | @startuml
actor User
boundary Frontend
boundary Backend
database Database
entity Server
/' -------------- Innlogging ------------- '/
User -> Frontend: Log inn with \nusername + password
Frontend -> Backend: Username +\n password
Backend -> Database: Username +\n password
Database -> Backend: OK
Backend -> Frontend: OK
Frontend -> User: Now signed in
/' -------------- Spesielt for parkeringshus ------------- '/
User -> Frontend: Create P-house
Frontend -> Backend: Create P-house
Backend -> Frontend: All floors the same?
Frontend -> User: All floors the same?
User -> Frontend: Yes
Frontend -> Backend: Yes
Backend -> Frontend: How many floors?
Frontend -> User: How many floors?
User -> Frontend: X number of floors
Frontend -> Backend: X number of floors
/' -------------- Starter å lage ------------- '/
Backend -> Frontend: Fill inn data
Frontend -> User: Fill out this form
User -> Frontend: Filled out
Frontend -> Backend: Filled out
Backend -> Backend: Verify data
Backend -> Server: Upload picture
Backend -> Database: Insert data
Server -> Backend: Upload complete
Database -> Backend: Data inserted
Backend -> Frontend: Successfully done
Frontend -> User: P-house created successfully
@enduml
| false | true | true | false | sequence |
7a4703261bd491cf2ee6088db2e00dcff911c3bc | 80905daea20f037ad1e90829c67947b7b95816b0 | /img/10_UML/lollipop.plantUML | 1a44da869a9da3a7bbb29d3ecc5ef458361b6177 | [] | no_license | Divino21/CsharpCourse | 7916b7b892fc3858ea3697f39e1fcd802fa2d475 | 473d92cd96346d005979770bdcae020cf4bbf0c4 | refs/heads/master | 2022-11-22T05:43:24.789564 | 2020-07-31T01:47:22 | 2020-07-31T01:47:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 290 | plantuml | @startuml
hide circle
interface SortierteListe <<Interface>>{
einfuegen (Eintrag e);
loeschen (Eintrag e);
}
class Datenbank {
Object[] elementData
size()
}
class Meßdaten {
Object[] elementData
size()
}
SortierteListe ()- Datenbank
SortierteListe ()- Meßdaten
@enduml
| false | true | true | false | class |
a4c1f1f0bdb77fd0ce0a512416bc4d91a2ce6fb9 | 2b0c505f05c74a7ce56ecc82293a77283f1440d0 | /Resources/Class.plantuml | 557bc559412f5b93d11d053e1e75865009ba043e | [] | no_license | sqrt-minus-one/Fligght | aade945848034f6837adebe8b74f72f1d823c69f | 15a42407a0862c71bb39fb6c4794a4b5efcb93a8 | refs/heads/master | 2023-06-09T23:41:11.652700 | 2021-06-10T10:19:50 | 2021-06-10T10:19:50 | 377,294,651 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,234 | plantuml | @startuml Vols
class Flight{
- flightnumber : int
- aircraft : Aircraft
- departureInfo : DepartureArrivalInfo
- arrivalInfo : DepartureArrivalInfo
- price : float
}
class DepartureArrivalInfo{
- day : string
- time : Date
- airport : Airpot
}
class Reservation{
-int ID
-date dateReservation
-time heureReservation
}
class Client{
-int ID
-String nom
-String prenom
-String numeroPassport
}
class Airport{
- id : int
- code : string
- city : City
}
class City{
-String nom
-Pays pay
}
class Cabine{
- cabineClass : CabineClasses
- capacity : int
- availablePlaces : int
}
enum CabineClasses{
Economy
PremiumEconomy
BusinessClass
FirstClass
}
class Aircraft{
cabines : ArrayList<Cabine>
}
class Pays{
-int ID
-String nom
}
Flight "1" -- "0..*" Reservation :concerne
Client "1" -- "0..*" Reservation :effectue
Flight "1..*" -- "1" Aircraft :concern
City "1..*" -- "0..*" Airport :represente
City "1..*" -- "1" Pays :se trouve
Flight --* DepartureArrivalInfo
DepartureArrivalInfo -- Airport : "Depart"
Airport -- DepartureArrivalInfo : "Arrivee"
Aircraft -- Cabine : "have"
Cabine -- CabineClasses : "is"
@enduml | false | true | false | false | class |
70cf5ccb0620a6d9ff889b3c69005d30686bb84a | ca959bd62595a2bed0fcd10e53ddfd841e6fbd77 | /src/main/java/ex42/diagram.puml | be7d8a53389f9bd8ad3de85e75367b0b578c46d8 | [] | no_license | christianklingbiel/klingbiel-cop3330-assignment3 | 61192858500595be3a8d7cdcfc22433fe5c523ef | 9a952cd63d349574dd4e35a8d482685443305fed | refs/heads/master | 2023-06-01T03:26:33.976253 | 2021-06-26T15:14:58 | 2021-06-26T15:14:58 | 378,721,478 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 134 | puml | @startuml
'https://plantuml.com/sequence-diagram
Class App{
- file: File
- input: List<String>
- inputParts: List<String[]>
}
@enduml | false | true | false | false | class |
1fc15b3148d662333236d1392b9bb35d1241f2d6 | 973dcef38fb285cf4f14a2e937af23e26a05564b | /docs/Solution/Services/build/Logical.puml | ac7de46ed3fcc70006fec6065f6e196adafac4be | [] | 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 | 166 | puml | @startuml
package "build" #lightblue {
interface "build" {
}
CLI ()-- "build" : 5000
REST ()-- "build" : 3000
Web ()-- "build" : 80
}
@enduml
| false | true | false | false | class |
cbccdb1564306b9738e398c5c2c80bbf8b59603a | dd4e9555edd45b7d01ac5daccddedc1e5c6428f3 | /use-cases/Report Generator.puml | 9c85b74614735dce9de0de27d41dd63cc1039725 | [
"Apache-2.0"
] | permissive | euanholmes/Group_1_Coursework_SEM | bf2c2285fb59f01ea8c18362cf055c5aeaa867ba | 7ed377c5cdca85fec95944fbeb0a30b7ad35d22f | refs/heads/master | 2023-04-01T03:19:58.865857 | 2021-04-02T12:39:32 | 2021-04-02T12:39:32 | 333,370,714 | 0 | 5 | Apache-2.0 | 2021-01-29T14:13:06 | 2021-01-27T09:38:25 | null | UTF-8 | PlantUML | false | false | 2,176 | puml | @startuml
actor MC as "Marketing Consultant"
rectangle Database
rectangle "Report Generator" {
usecase UC1 as "Get population by country
in order of largest to smallest."
usecase UCa as "Print populations"
usecase UCb as "Print cities"
MC - UC1
UC1 ..> UCa : include
UC1 - Database
usecase UC2 as "Get population by continent
in order of largest to smallest."
MC - UC2
UC2 ..> UCa : include
UC2 - Database
usecase UC3 as "Get population by region
in order of largest to smallest."
MC - UC3
UC3 ..> UCa : include
UC3 - Database
usecase UC4 as "The top N populated countries in the world
where N is provided by the user."
MC - UC4
UC4 ..> UCa : include
UC4 - Database
usecase UC5 as "The top N populated countries in a continent.
Where the continent and N are provided by the user."
MC - UC5
UC5 ..> UCa : include
UC5 - Database
usecase UC6 as "The top N populated countries in a region.
Where the region and N are provided by the user."
MC - UC6
UC6 ..> UCa : include
UC6 - Database
usecase UC7 as "All the cities in the world organised
by largest population to smallest."
MC - UC7
UC7 ..> UCb : include
UC7 - Database
usecase UC8 as "All the cities in a continent organised
by largest population to smallest."
MC - UC8
UC8 ..> UCb : include
UC8 - Database
usecase UC9 as "All the cities in a region organised
by largest population to smallest."
MC - UC9
UC9 ..> UCb : include
UC9 - Database
usecase UC10 as "All the cities in a country organised
by largest population to smallest."
MC - UC10
UC10 ..> UCb : include
UC10 - Database
usecase UC11 as "All the cities in a district organised
by largest population to smallest."
MC - UC11
UC11 ..> UCb : include
UC11 - Database
usecase UC12 as "The top N populated cities in the world."
MC - UC12
UC12 ..> UCb : include
UC12 - Database
usecase UC13 as "The top N populated cities in a continent."
MC - UC13
UC13 ..> UCb : include
UC13 - Database
@enduml | false | true | false | false | usecase |
a0d29d372f30cd79dbc5c05203f44131248b2dec | 68b12eab282a3ec071ab6e609d2462bcbc14ee7e | /diagrams/class_diagram.plantuml | 41ce57440235b5030e9f79bf6deedecd1f41d0b3 | [] | no_license | karimStekelenburg/HKU_AirPollution | 98f2824b2b9035b33a3027f6e2163ad2a618d5c0 | c8133cc074115c225f1d3a18c4c49b0de5f06692 | refs/heads/master | 2020-03-18T07:37:56.931320 | 2018-06-07T20:57:47 | 2018-06-07T20:57:47 | 134,463,530 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 485 | plantuml | @startuml
class Steppa{
- pin0: int
- pin1: int
- pin2: int
- pin3: int
+ Steppa(pin0:int, pin1:int, pin2:int, pin3:int)
- setPhase1(): void
- setPhase2(): void
- setPhase3(): void
- setPhase4(): void
+ runFullCycle(delay: int): void
}
class Controller{
- fl: Steppa
- fm: Steppa
- fr: Steppa
- ml: Steppa
- mm: Steppa
- mr: Steppa
- bl: Steppa
- bm: Steppa
- br: Steppa
+ Controller(steppaz: struct)
}
Controller "(9..9)" -- Steppa
@enduml
| false | true | false | false | class |
fd91f5fce8d3fb81069953075b6c2cb0676bcded | c211337d51e433919be2fa87efa2ae57f6ca76c2 | /src/mei/designpattern/behavioral/iterator/abstractobjectlist/abstractobjectlist.puml | 74a6d576839c7995d34ccfedbcec7c0aa2277038 | [] | no_license | nyannko/coder-notes | 86ae29bfdffa79f681edea6a207ccbf2f35e5827 | 5789764bfc92379ca4fa9e2703db022fac8e463b | refs/heads/master | 2020-05-29T09:12:21.050431 | 2019-06-10T19:37:17 | 2019-06-10T19:37:17 | 189,054,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 960 | puml | @startuml
abstract class AbstractList {
-ArrayList<Object> list
+void add(Object o)
+void remove(Object o)
+ArrayList<Object> getObjectList()
+{abstract} AbstractIterator getIterator()
}
class ProductList extends AbstractList {
-ArrayList<Object> list
-AbstractIterator iterator
+ProductList(ArrayList<Object> products) /' products is the ArrayList sent from client '/
+void add(Object o)
+void remove(Object o)
+ArrayList<Object> getObjectList()
+AbstractIterator getIterator()
}
interface AbstractIterator {
+void next()
+void previous()
+Object getNext()
+Object getPrevious()
+boolean isFirst()
+boolean isLast()
}
class ProductIterator implements AbstractIterator {
-ArrayList<Object> list
-int start
-int end
+ProductList(ArrayList<Object> list)
+void next()
+void previous()
+Object getNext()
+Object getPrevious()
+boolean isFirst()
+boolean isLast()
}
ProductList .right.> ProductIterator : iterator
ProductIterator --> ProductList : list
@enduml | false | true | false | false | sequence |
154f0134bed46307c5caabcfb61997fe276dba67 | c183a3bcca39c12fcdf8c69f9418d29161cd67a9 | /src/app/fachinformatiker/myMashup/model/model.plantuml | 53b9bb5ba164b7fcbc756d96e4432179908450d6 | [
"MIT"
] | permissive | fachinformatiker/myMashup | 5b6510714e9a921771f96c5e90cf729c5ee1d54e | 63033ae85ab75c0a64cf7ec5332510a2d3325dd6 | refs/heads/master | 2021-06-25T06:01:50.243448 | 2021-06-22T13:00:04 | 2021-06-22T13:00:04 | 184,805,428 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,676 | plantuml | @startuml
title __MODEL's Class Diagram__\n
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.ArgController {
{static} - producerCount : int
{static} - consumerCount : int
{static} - syncCount : int
{static} + parseArguments()
{static} + getProducerCount()
{static} + getConsumerCount()
}
}
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.Candy {
- hell : int
- hope : String
- producerID : int
+ Candy()
- createHell()
- createHope()
~ getHell()
~ getHope()
~ getProducerID()
}
}
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.Consumer {
- candyStack : Stack<Candy>
- consumerID : int
- sync : int
- isSync : boolean
- candyStackSize : int
+ Consumer()
- candyStackEqualsSync()
+ run()
}
}
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.Producer {
- candyStack : Stack<Candy>
- producerID : int
{static} - terminator : Terminator
+ Producer()
+ run()
}
}
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.Terminator {
+ run()
- leseCodeEin()
}
}
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 |
891562e3cac51883c4fe23649de6e53df83bf946 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProjectChangeCurrenciesAction.puml | 39191883aa87828a1d8433ac4a9459a8f02a23c0 | [] | 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 | 477 | 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 ProjectChangeCurrenciesAction [[ProjectChangeCurrenciesAction.svg]] extends ProjectUpdateAction {
action: String
currencies: [[String.svg List<String>]]
}
interface ProjectUpdateAction [[ProjectUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
032bcd0021350b5e5633a123037f48d086f92b3e | 02b90758d689edd8b224d0d2ca72f79cd084c8ce | /docs/architecture.puml | 8b8c348d9fd91f898ea21b8e295b3e5c209939a9 | [
"Apache-2.0"
] | permissive | astrolabsoftware/grafink | 9e639f047f726ea7298505d9fb75ae1c8122292a | bfc257aa37cc0b168419301bcbb68c223c1bf6dc | refs/heads/master | 2023-01-28T18:18:59.886073 | 2020-12-02T21:13:07 | 2020-12-02T21:13:07 | 263,824,953 | 8 | 5 | Apache-2.0 | 2020-12-02T21:13:09 | 2020-05-14T05:37:35 | Scala | UTF-8 | PlantUML | false | false | 1,069 | puml | @startuml
title Grafink Architecture
frame "Spark Cluster" as scluster {
rectangle driver {
component [IDManagerSparkService]
}
rectangle executor1 as exec1 {
[janusgraph instance1] as in1
}
rectangle executor2 as exec2 {
[janusgraph instance2] as in2
}
rectangle executor3 as exec3 {
[janusgraph instance3] as in3
}
}
cloud "JanusGraph Server" as jg {
}
rectangle "Hbase" as hbase {
rectangle JanusGraphTable {
}
}
rectangle storage_layer {
[parquet_data]
rectangle IDManager_data [
**IDManager Data**
Stores the generated vertex ids
along with Vertex Data already
loaded into JanusGraph
]
}
parquet_data -[hidden]--> hbase
parquet_data -[hidden]--> storage_layer
jg -[hidden]--> hbase
storage_layer -[hidden]--> hbase
driver -[hidden]--> hbase
storage_layer .> exec1: read
storage_layer .> exec2: read
storage_layer .> exec3: read
in1 -> JanusGraphTable: write
in2 -> JanusGraphTable: write
in3 -> JanusGraphTable: write
jg -> hbase: read
IDManagerSparkService <-> IDManager_data: read/write
@enduml | false | true | false | false | sequence |
48dae8201d740db9f9c76212ad8b9dd7c02a1be7 | 7fe4e107ff6df1006f926385c77e3bcec7d1953f | /Resources/doc/refund.puml | f5c56ad1012bd12911abeb333d12675fd8a955b7 | [
"MIT"
] | permissive | valiton/payum-payone | 43f20eeb0595dece5912fb4b93a7cd432907bef0 | 79162eb008674c47f3e7d723f7161759e59fe2dd | refs/heads/master | 2022-12-14T16:36:36.491221 | 2022-12-06T09:27:30 | 2022-12-06T09:27:30 | 81,426,097 | 10 | 9 | MIT | 2022-12-06T15:49:24 | 2017-02-09T08:14:26 | PHP | UTF-8 | PlantUML | false | false | 405 | puml | @startuml
title Refund Captured Payment
participant Shop
participant PAYONE
activate Shop
Shop -> PAYONE: POST request=refund
activate PAYONE
PAYONE --> Shop: 200 status=APPROVED
deactivate PAYONE
Shop -> Shop: Set Payment Status to "refunded"
...some time later...
PAYONE -> Shop: POST notify.php txaction=refund
activate PAYONE
Shop --> PAYONE: 200 TSOK
deactivate PAYONE
deactivate Shop
@enduml
| false | true | false | false | sequence |
475f5a650ea9956a2fda8c01ad8f51cb581617bc | 23f8af766967cd555a062cd5d5f79460ba080c3e | /Test/PlantUML/test.puml | 40ab3d1a197078135640236d472f3091f31b3223 | [] | no_license | KyungminLeeDev/iOS_Career_Starter_Camp | 61d4d9a46ac4cc9e76c24822fc55e79f06908073 | ada9d2c24a19777edd09acd631a5c3ab48cf9a18 | refs/heads/main | 2023-08-23T18:01:23.383918 | 2021-10-26T11:36:12 | 2021-10-26T11:36:12 | 313,281,278 | 2 | 0 | null | 2021-09-16T05:40:58 | 2020-11-16T11:32:09 | null | UTF-8 | PlantUML | false | false | 712 | puml | @startuml
class Event {
+startTime: DateTime
+venue: string
+registrationClosed: boolean
-notifyAttendes()
}
class ApplicationUser {
-userName: string
-password: string
+isLocked: boolean
-suggestRandomPasswod()
+changeProfilePic()
}
class Speaker {
+openForSpeaking: boolean
-callForAction()
+applyAsSpokePerson()
}
class Topic {
+title: string
+sourceCodeUrl: string
+downloadMaterials()
}
class Attendee {
-eventAttended: number
-suggestEventBasedOnPreference()
+registerForTicket()
}
ApplicationUser <|-- Speaker
ApplicationUser <|-- Attendee
Speaker "1" *-- "*" Topic
Event "1" o-- "*" Speaker
Event "1" o-- "*" Attendee
@enduml | false | true | false | false | class |
9d072635c5c456cec1d92b8d83040d75ad2f1ffc | e251f0f9a7fcc88a46be4be7e969da1ce5336c59 | /src/main/java/Observateur/TextView/README.puml | 1a8aed327459d3fcff79070019648e82911b839b | [] | no_license | RaulSima/LOG121-GOF-exemples | c8974b93825d4b29e833ffde899b1c4056d87c75 | f778d48faa2d79d5f2d4cb7b46fccacf493e5b29 | refs/heads/master | 2023-02-21T01:34:43.043039 | 2021-01-22T20:01:59 | 2021-01-22T20:01:59 | 330,019,270 | 0 | 0 | null | 2021-01-15T20:49:47 | 2021-01-15T20:49:34 | null | UTF-8 | PlantUML | false | false | 712 | puml | @startuml Diagramme de classe
skinparam style strict
class TestExemple extends WindowAdapter
class TextModel extends Observable {
}
Interface ActionListener{
actionPerformed(ActionEvent e): void
}
class TextViewA extends JFrame implements Observer, ActionListener
class TextViewB extends JFrame implements Observer, ActionListener
class TextModel
TestExemple -right-> TextModel
TestExemple -up-> "1" TextViewA
TestExemple -down-> "2" TextViewB
class Observable {
notifyObservers(): void
addObserver(Observer): void
}
class Observer {
update(Observable o, Object arg): void
}
TextViewA ..> TextModel: setState(string)
TextViewA ..> TextModel: setState(string)
Observable *--> Observer
@enduml | false | true | false | false | class |
057b121b9b6d7f4104c838bd373cd167b69687b2 | fb110fead2ecfffb4b78d3920da1a3d162bd1932 | /de.gematik.ti.cardreader.provider.api/src/main/java/de/gematik/ti/cardreader/provider/api/events/card/card.plantuml | 59f3702cf33bc21e520e35b2f06a1a1e04ba5a2e | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderProvider-Api | ca8495bbb81b6f018f09c7f9856db5b56f827b4e | 80d863c5b03a776534d7fa8a26916273dc7e39b9 | refs/heads/master | 2022-02-10T18:06:21.446280 | 2022-01-07T07:36:00 | 2022-01-07T07:36:00 | 227,793,349 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,805 | plantuml | @startuml
title __CARD's Class Diagram__\n
namespace de.gematik.ti.cardreader.provider.api {
namespace events {
namespace card {
class de.gematik.ti.cardreader.provider.api.events.card.CardAbsentEvent {
+ CardAbsentEvent()
}
}
}
}
namespace de.gematik.ti.cardreader.provider.api {
namespace events {
namespace card {
class de.gematik.ti.cardreader.provider.api.events.card.CardPresentEvent {
+ CardPresentEvent()
}
}
}
}
namespace de.gematik.ti.cardreader.provider.api {
namespace events {
namespace card {
class de.gematik.ti.cardreader.provider.api.events.card.CardTimeoutEvent {
+ CardTimeoutEvent()
}
}
}
}
namespace de.gematik.ti.cardreader.provider.api {
namespace events {
namespace card {
class de.gematik.ti.cardreader.provider.api.events.card.CardUnknownEvent {
+ CardUnknownEvent()
}
}
}
}
de.gematik.ti.cardreader.provider.api.events.card.CardAbsentEvent -up-|> de.gematik.ti.cardreader.provider.api.events.AbstractCardReaderEvent
de.gematik.ti.cardreader.provider.api.events.card.CardPresentEvent -up-|> de.gematik.ti.cardreader.provider.api.events.AbstractCardReaderEvent
de.gematik.ti.cardreader.provider.api.events.card.CardTimeoutEvent -up-|> de.gematik.ti.cardreader.provider.api.events.AbstractCardReaderEvent
de.gematik.ti.cardreader.provider.api.events.card.CardUnknownEvent -up-|> de.gematik.ti.cardreader.provider.api.events.AbstractCardReaderEvent
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 |
6c2652c1bba2d2fd4d61557e3124f43fedc6bf1e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartDiscountValueGiftLineItem.puml | a970846e005d14a85e57e7caddc20e9a003ddc09 | [] | 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 | 626 | 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 CartDiscountValueGiftLineItem [[CartDiscountValueGiftLineItem.svg]] extends CartDiscountValue {
type: String
product: [[ProductReference.svg ProductReference]]
variantId: Long
supplyChannel: [[ChannelReference.svg ChannelReference]]
distributionChannel: [[ChannelReference.svg ChannelReference]]
}
interface CartDiscountValue [[CartDiscountValue.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
e77705d85bd4a70f0f616aeee02ae1d91ebbbf91 | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/patterns/state-pattern.puml | 3d6b3443378eb9c14ef3703479ff85be798073f5 | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 210 | puml | @startuml
class Client
interface State
class ConcreteState1
class ConcreteState2
class ConcreteState3
State <|-- ConcreteState1
State <|-- ConcreteState2
State <|-- ConcreteState3
Client *-- State
@enduml | false | true | false | false | state |
d5ac680bc0a0563b98881a8167681c95a591e333 | 7769f6bb151fbe2d58d7bcd54386a0cf7b7a9419 | /architecture/imap/diagrams/nsImapUrl.puml | ed73516773b5e843fd8ecd3c770f1d8ee989c8b0 | [] | no_license | bcampbell/tb-notes | b853d11b7aeeebf6e1c7b9069ac25ff05d6aedf4 | a79031ec11f6aff1592ce55a61afe85153e2433a | refs/heads/master | 2023-05-25T19:34:44.376874 | 2023-05-24T01:12:52 | 2023-05-24T01:12:52 | 145,787,876 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 744 | puml | @startuml
skinparam linetype ortho
left to right direction
interface nsIURI
interface nsIURL
nsIURI <|-- nsIURL
interface nsIImapUrl
interface nsIMsgMailNewsUrl
nsIURL <|-- nsIMsgMailNewsUrl
interface nsIMsgMessageUrl
interface nsIMsgI18NUrl
interface nsIURIWithSpecialOrigin
interface nsISerializable
interface nsIClassInfo
class nsImapUrl
nsIImapUrl <|-- nsImapUrl
nsMsgMailNewsUrl <|-- nsImapUrl
nsIMsgMessageUrl <|-- nsImapUrl
nsIMsgI18NUrl <|-- nsImapUrl
class nsMsgMailNewsUrl
nsIMsgMailNewsUrl <|-- nsMsgMailNewsUrl
nsIURIWithSpecialOrigin <|-- nsMsgMailNewsUrl
nsISerializable <|-- nsMsgMailNewsUrl
nsIClassInfo <|-- nsMsgMailNewsUrl
interface nsIUrlListener {
OnStartRunningUrl(...)
OnStopRunningUrl(...)
}
@enduml
| false | true | false | false | class |
72ae711b55863bcb636f2279b51bbf98d8d3cbfa | 48d6d12f2ca35041ae4d3c6152d5e5854121261d | /packages/mobile/docs/verification_state_machine.plantuml | 5640aeb2808da88b6e4c7110cf66e116d709e38b | [
"Apache-2.0"
] | permissive | amonmoce/wallet | f9590361208cc4ccf00a9439e14aaafadcc7af7c | 7cd0d7e3a52f6531c853f68d34e9a94546835f7c | refs/heads/main | 2023-06-25T00:39:11.363094 | 2021-07-26T09:17:38 | 2021-07-26T09:17:38 | 389,610,944 | 1 | 0 | Apache-2.0 | 2021-07-26T11:35:27 | 2021-07-26T11:35:27 | null | UTF-8 | PlantUML | false | false | 1,554 | plantuml | @startuml
[*] --> Idle
Idle --> Preparing : User presses Start/Resume button
note right of Idle
Even before this step we
check Komenci availability
end note
Preparing: if Komenci is available, check
Preparing: is there an active session.
Preparing: Otherwise check sufficient
Preparing: balance for classic flow.
state a <<choice>>
state b <<choice>>
Preparing -left-> a
a -left-> Error: !sufficientBalance
a --> b
b --> EnsuringRealHumanUser
note on link
komenciAvailable
AND
!activeKomenciSession
end note
b --> FetchingPhoneNumberDetails
note on link
!komenciAvailable
OR
activeKomenciSession
end note
EnsuringRealHumanUser: showing user captcha
EnsuringRealHumanUser --> StartingKomenciSession
note on link: captcha was solved
StartingKomenciSession --> FetchingPhoneNumberDetails
FetchingPhoneNumberDetails: fetching ODIS pepper and set phone number hash
FetchingPhoneNumberDetails --> FetchingMtw
note on link: activeKomenciSession
FetchingOnChainData: fetching verification status and
FetchingOnChainData: actionable attestations from chain
FetchingMtw --> FetchingOnChainData
FetchingMtw: fetching existing or deploing new MTW wallet
FetchingPhoneNumberDetails --> FetchingOnChainData
state doVerificationFlowSaga {
[*] --> RequestingAttestations
RequestingAttestations --> RevealingAttestations
RevealingAttestations --> CompletingAttestations
}
doVerificationFlowSaga: this part has not been implemented yet
FetchingOnChainData --> doVerificationFlowSaga
CompletingAttestations --> Success
Success --> [*]
Error --> [*]
@enduml
| false | true | false | false | sequence |
c817ec6f61524d7f46adb12f23a76cf043658e93 | 0aeddc470dac2fbdc1544d641d7b927a8a64cbda | /thingml-gen/UML/BLE_PAIR/BLE_PAIR/docs/BLE_PAIR_class_compact.plantuml | 5e1bae5fc9f60f2959300af328670750c26299a7 | [
"Apache-2.0"
] | permissive | ffleurey/ThingML-BLEGateway | d2b77481ad7ce3d8bdc62fa66160cda9124b47ab | e486bf2ff3a58f28ada62726bb21a283b43e26cb | refs/heads/master | 2021-09-04T06:12:54.986012 | 2018-01-16T16:11:14 | 2018-01-16T16:11:14 | 108,272,066 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 13,717 | plantuml | @startuml
caption Things used in configuration BLE_PAIR
class BLEInitialiserImpl <<(T,#F94918)PSM>> {
..Properties..
-DeviceAddress : BTAddress
..Port Initialiser..
>>Start
>>Stop
<<Started
<<Stopped
<<Failure
<<DeviceInitialised
}
class ModuleMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-Start()
-Stop()
-Started()
-Stopped()
-Failure()
}
class BLEInitialiserMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-DeviceInitialised(...)
}
class HCISocket <<(F,#BC74ED)Fragment>> {
..Port Socket..
>>Opened
>>Closed
<<Open
<<Close
..Port HCICommands..
<<Reset
<<SetEventMask
<<SetEventMaskAll
<<SetLocalName
<<Disconnect
<<SetLEEventMask
<<SetLEEventMaskAll
<<SetLEAdvertisementParameters
<<SetLEAdvertiseEnable
<<SetLEAdvertisingData
<<SetLEScanResponseData
<<SetLEScanParameters
<<SetLEScanEnable
<<LECreateConnection
<<LECreateConnectionCancel
<<LERand
<<LEEncrypt
<<LEStartEncryption
..Port HCIEvents..
>>ResetCompleted
>>SetEventMaskCompleted
>>SetLocalNameCompleted
>>DisconnectStatus
>>DisconnectionCompleted
>>SetLEEventMaskCompleted
>>SetLEAdvertisementParametersCompleted
>>SetLEAdvertiseEnableCompleted
>>SetLEAdvertisingDataCompleted
>>SetLEScanResponseDataCompleted
>>SetLEScanParametersCompleted
>>SetLEScanEnableCompleted
>>LEAdvertisementReport
>>LECreateConnectionStatus
>>LECreateConnectionCancelCompleted
>>LEConnectionComplete
>>LEEnhancedConnectionComplete
>>LERandCompleted
>>LEEncryptCompleted
>>EncryptionChanged
>>LEStartEncryptionStatus
}
class HCISocketMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-Open()
-Close()
-Opened(...)
-Closed()
}
class HCIControllerMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-Reset()
-ResetCompleted(...)
-SetEventMask(...)
-SetEventMaskAll()
-SetEventMaskCompleted(...)
-SetLocalName(...)
-SetLocalNameCompleted(...)
-Disconnect(...)
-DisconnectStatus(...)
-DisconnectionCompleted(...)
-EncryptionChanged(...)
-SetLEEventMask(...)
-SetLEEventMaskAll()
-SetLEEventMaskCompleted(...)
-SetLEAdvertisementParameters(...)
-SetLEAdvertisementParametersCompleted(...)
-SetLEAdvertiseEnable(...)
-SetLEAdvertiseEnableCompleted(...)
-SetLEAdvertisingData(...)
-SetLEAdvertisingDataCompleted(...)
-SetLEScanResponseData(...)
-SetLEScanResponseDataCompleted(...)
-LEAdvertisementReport(...)
-SetLEScanParameters(...)
-SetLEScanParametersCompleted(...)
-SetLEScanEnable(...)
-SetLEScanEnableCompleted(...)
-LECreateConnection(...)
-LECreateConnectionStatus(...)
-LECreateConnectionCancel()
-LECreateConnectionCancelCompleted(...)
-LEConnectionComplete(...)
-LEEnhancedConnectionComplete(...)
-LERand()
-LERandCompleted(...)
-LEEncrypt(...)
-LEEncryptCompleted(...)
-LEStartEncryption(...)
-LEStartEncryptionStatus(...)
}
class SMP <<(F,#BC74ED)Fragment>> {
..Port SMP..
>>SMPPairingRequest
>>SMPPairingResponse
>>SMPPairingConfirm
>>SMPPairingRandom
>>SMPPairingFailed
>>SMPPairingPublicKey
>>SMPPairingDHKeyCheck
>>SMPKeypressNotification
>>SMPEncryptionInformation
>>SMPMasterIdentification
>>SMPIdentityInformation
>>SMPIdentityAddressInformation
>>SMPSigningInformation
>>SMPSecurityRequest
<<SMPPairingRequest
<<SMPPairingResponse
<<SMPPairingConfirm
<<SMPPairingRandom
<<SMPPairingFailed
<<SMPPairingPublicKey
<<SMPPairingDHKeyCheck
<<SMPKeypressNotification
<<SMPEncryptionInformation
<<SMPMasterIdentification
<<SMPIdentityInformation
<<SMPIdentityAddressInformation
<<SMPSigningInformation
<<SMPSecurityRequest
}
class SMPMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-SMPPairingRequest(...)
-SMPPairingResponse(...)
-SMPPairingConfirm(...)
-SMPPairingRandom(...)
-SMPPairingFailed(...)
-SMPPairingPublicKey(...)
-SMPPairingDHKeyCheck(...)
-SMPKeypressNotification(...)
-SMPEncryptionInformation(...)
-SMPMasterIdentification(...)
-SMPIdentityInformation(...)
-SMPIdentityAddressInformation(...)
-SMPSigningInformation(...)
-SMPSecurityRequest(...)
}
class ATT <<(F,#BC74ED)Fragment>> {
..Port ATT..
>>ATTFindInformationRequest
>>ATTFindInformationResponse
>>ATTFindInformationError
>>ATTReadByTypeRequest
>>ATTReadByTypeResponse
>>ATTReadByTypeError
>>ATTReadRequest
>>ATTReadResponse
>>ATTReadError
>>ATTReadByGroupTypeRequest
>>ATTReadByGroupTypeResponse
>>ATTReadByGroupTypeError
>>ATTWriteRequest
>>ATTWriteResponse
>>ATTWriteError
>>ATTWriteCommand
>>ATTHandleValueNotification
>>ATTHandleValueIndication
>>ATTHandleValueConfirmation
<<ATTFindInformationRequest
<<ATTFindInformationResponse
<<ATTFindInformationError
<<ATTReadByTypeRequest
<<ATTReadByTypeResponse
<<ATTReadByTypeError
<<ATTReadRequest
<<ATTReadResponse
<<ATTReadError
<<ATTReadByGroupTypeRequest
<<ATTReadByGroupTypeResponse
<<ATTReadByGroupTypeError
<<ATTWriteRequest
<<ATTWriteResponse
<<ATTWriteError
<<ATTWriteCommand
<<ATTHandleValueNotification
<<ATTHandleValueIndication
<<ATTHandleValueConfirmation
}
class ATTMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-ATTFindInformationRequest(...)
-ATTFindInformationResponse(...)
-ATTFindInformationError(...)
-ATTReadByTypeRequest(...)
-ATTReadByTypeResponse(...)
-ATTReadByTypeError(...)
-ATTReadRequest(...)
-ATTReadResponse(...)
-ATTReadError(...)
-ATTReadByGroupTypeRequest(...)
-ATTReadByGroupTypeResponse(...)
-ATTReadByGroupTypeError(...)
-ATTWriteRequest(...)
-ATTWriteResponse(...)
-ATTWriteError(...)
-ATTWriteCommand(...)
-ATTHandleValueNotification(...)
-ATTHandleValueIndication(...)
-ATTHandleValueConfirmation(...)
}
class UUIDFunctions <<(F,#BC74ED)Fragment>> {
..Functions..
-ReadUUID(...) : UUID
-MakeUUID(...) : UUID
-PrintUUID(...) : void
}
class BLEEncryptionImpl <<(T,#F94918)PSM>> {
..Properties..
-GeneratedRandomNumber : BLERandomNumber
-Rand : BLERandomNumber
-IAT : BLEAddressType
-IA : BTAddress
-RAT : BLEAddressType
-RA : BTAddress
-Srand : BLERandomNumber
-Mrand : BLERandomNumber
..Port Encrypter..
>>Start
>>GenerateRandomNumber
>>GenerateConfirm
>>CheckConfirm
>>GenerateSTK
<<Started
<<Failure
<<GenerateRandomNumberCompleted
<<GenerateConfirmCompleted
<<CheckConfirmCompleted
<<GenerateSTKCompleted
..Functions..
-GenerateP1() : BLERandomNumber
-GenerateP2() : BLERandomNumber
}
class BLEEncryptionMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-GenerateRandomNumber()
-GenerateRandomNumberCompleted(...)
-GenerateConfirm(...)
-GenerateConfirmCompleted(...)
-CheckConfirm(...)
-CheckConfirmCompleted(...)
-GenerateSTK(...)
-GenerateSTKCompleted(...)
}
class Main <<(T,#F94918)PSM>> {
..Properties..
-ConnectedAddressType : BLEAddressType
-ConnectedAddress : BTAddress
-ConnectedHandle : UInt
-DeviceAddressType : BLEAddressType = BLEAddressType:PUBLIC
-DeviceAddress : BTAddress
-Mrand : BLERandomNumber
-Srand : BLERandomNumber
-Mconfirm : BLERandomNumber
-Sconfirm : BLERandomNumber
-PeerLTK : BLERandomNumber
-PeerEDIV : UInt
-PeerRandom : BLERandomPart
-PeerIRK : BLERandomNumber
-PeerIdentityAddressType : BLEAddressType
-PeerIdentityAddress : BTAddress
-OwnLTK : BLERandomNumber
-OwnEDIV : UInt
-OwnRandom : BLERandomPart
-OwnIRK : BLERandomNumber
-OwnIdentityAddressType : BLEAddressType
-OwnIdentityAddress : BTAddress
-HavePeerLTK : Boolean = false
-HavePeerIdentification : Boolean = false
-HavePeerIdentity : Boolean = false
-HavePeerIdentityAddress : Boolean = false
-HasPairedSuccessfully : Boolean = false
..Port Signals..
>>Interrupt
<<Quit
..Functions..
-printBytes() : void
}
class BLEInitialiser <<(F,#BC74ED)Fragment>> {
..Port Initialiser..
>>Started
>>Stopped
>>Failure
>>DeviceInitialised
<<Start
<<Stop
}
class BLEConnecter <<(F,#BC74ED)Fragment>> {
..Port Connecter..
>>Connected
>>Stopped
>>Failure
>>Encrypted
<<Connect
<<ConnectTo
<<ConnectToU
<<Stop
<<Encrypt
}
class BLEConnecterMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-Connect()
-ConnectTo(...)
-ConnectToU(...)
-Connected(...)
-Encrypt()
-Encrypted()
}
class ExitHandlerMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-Interrupt()
-Quit(...)
}
class BLEEncryption <<(F,#BC74ED)Fragment>> {
..Port Encrypter..
>>Started
>>Failure
>>GenerateRandomNumberCompleted
>>GenerateConfirmCompleted
>>CheckConfirmCompleted
>>GenerateSTKCompleted
<<Start
<<GenerateRandomNumber
<<GenerateConfirm
<<CheckConfirm
<<GenerateSTK
}
class ExitHandler <<(T,#F94918)PSM>> {
..Port Signals..
>>Quit
<<Interrupt
..Functions..
-catch_sigint() : void
}
note left of ExitHandler : <b>@c_header</b> <color:royalBlue>"#include <stdlib.h>"</color>\n<b>@c_header</b> <color:royalBlue>"#include <signal.h>"</color>\n<b>@c_global</b> <color:royalBlue>"struct ExitHandler_Instance *_handler_instance;"</color>\n
class HCISocketProxyImpl <<(T,#F94918)PSM>> {
..Properties..
-DevHandle : Int = -1
..Functions..
-OpenSocket() : void
-CloseSocket() : void
-SocketIsOpen() : Byte
-GetBTAddress() : BTAddress
-SendCommand(...) : void
-SendACLData(...) : void
-StartSocketReader() : void
}
note left of HCISocketProxyImpl : <b>@c_header</b> <color:royalBlue>"#include <errno.h>"</color>\n<b>@c_header</b> <color:royalBlue>"#include <stdio.h>"</color>\n<b>@c_header</b> <color:royalBlue>"#include <sys/ioctl.h>"</color>\n<b>@c_header</b> <color:royalBlue>"#include <bluetooth/bluetooth.h>"</color>\n<b>@c_header</b> <color:royalBlue>"#include <bluetooth/hci.h>"</color>\n<b>@c_header</b> <color:royalBlue>"#include <bluetooth/hci_lib.h>"</color>\n
class HCISocketProxy <<(F,#BC74ED)Fragment>> {
..Properties..
-Device : String
..Port Socket..
>>Open
>>Close
<<Opened
<<Closed
..Port Commands..
>>Reset
>>SetEventMask
>>SetEventMaskAll
>>SetLocalName
>>Disconnect
>>SetLEEventMask
>>SetLEEventMaskAll
>>SetLEAdvertisementParameters
>>SetLEAdvertiseEnable
>>SetLEAdvertisingData
>>SetLEScanResponseData
>>SetLEScanParameters
>>SetLEScanEnable
>>LECreateConnection
>>LECreateConnectionCancel
>>LERand
>>LEEncrypt
>>LEStartEncryption
..Port Events..
<<ResetCompleted
<<SetEventMaskCompleted
<<SetLocalNameCompleted
<<DisconnectStatus
<<DisconnectionCompleted
<<SetLEEventMaskCompleted
<<SetLEAdvertisementParametersCompleted
<<SetLEAdvertiseEnableCompleted
<<SetLEAdvertisingDataCompleted
<<SetLEScanResponseDataCompleted
<<SetLEScanParametersCompleted
<<SetLEScanEnableCompleted
<<LEAdvertisementReport
<<LECreateConnectionStatus
<<LECreateConnectionCancelCompleted
<<LEConnectionComplete
<<LEEnhancedConnectionComplete
<<LERandCompleted
<<LEEncryptCompleted
<<EncryptionChanged
<<LEStartEncryptionStatus
..Functions..
-OpenSocket() : void
-CloseSocket() : void
-SocketIsOpen() : Byte
-GetBTAddress() : BTAddress
-SendCommand(...) : void
-SendACLData(...) : void
-DecodeEvent(...) : void
-OnCommandCompletedEvent(...) : void
-OnCommandStatusEvent(...) : void
-OnLEMetaEvent(...) : void
-printBuffer(...) : void
-HandleACLData(...) : void
-OnL2CAPData(...) : void
-OnSMPData(...) : void
-OnATTData(...) : void
}
class SMPProxy <<(F,#BC74ED)Fragment>> {
..Port SMP..
>>SMPPairingRequest
>>SMPPairingResponse
>>SMPPairingConfirm
>>SMPPairingRandom
>>SMPPairingFailed
>>SMPPairingPublicKey
>>SMPPairingDHKeyCheck
>>SMPKeypressNotification
>>SMPEncryptionInformation
>>SMPMasterIdentification
>>SMPIdentityInformation
>>SMPIdentityAddressInformation
>>SMPSigningInformation
>>SMPSecurityRequest
<<SMPPairingRequest
<<SMPPairingResponse
<<SMPPairingConfirm
<<SMPPairingRandom
<<SMPPairingFailed
<<SMPPairingPublicKey
<<SMPPairingDHKeyCheck
<<SMPKeypressNotification
<<SMPEncryptionInformation
<<SMPMasterIdentification
<<SMPIdentityInformation
<<SMPIdentityAddressInformation
<<SMPSigningInformation
<<SMPSecurityRequest
}
class ATTProxy <<(F,#BC74ED)Fragment>> {
..Port ATT..
>>ATTFindInformationRequest
>>ATTFindInformationResponse
>>ATTFindInformationError
>>ATTReadByTypeRequest
>>ATTReadByTypeResponse
>>ATTReadByTypeError
>>ATTReadRequest
>>ATTReadResponse
>>ATTReadError
>>ATTReadByGroupTypeRequest
>>ATTReadByGroupTypeResponse
>>ATTReadByGroupTypeError
>>ATTWriteRequest
>>ATTWriteResponse
>>ATTWriteError
>>ATTWriteCommand
>>ATTHandleValueNotification
>>ATTHandleValueIndication
>>ATTHandleValueConfirmation
<<ATTFindInformationRequest
<<ATTFindInformationResponse
<<ATTFindInformationError
<<ATTReadByTypeRequest
<<ATTReadByTypeResponse
<<ATTReadByTypeError
<<ATTReadRequest
<<ATTReadResponse
<<ATTReadError
<<ATTReadByGroupTypeRequest
<<ATTReadByGroupTypeResponse
<<ATTReadByGroupTypeError
<<ATTWriteRequest
<<ATTWriteResponse
<<ATTWriteError
<<ATTWriteCommand
<<ATTHandleValueNotification
<<ATTHandleValueIndication
<<ATTHandleValueConfirmation
}
class BLEConnecterImpl <<(T,#F94918)PSM>> {
..Properties..
-ConnectAddress : String
-ConnectAddressBT : BTAddress
-ConnectAddressType : BLEAddressType
-LongTermKey : BLERandomNumber
-EncryptedDiversifier : UInt
-RandomNumber : BLERandomPart
-ConnectedHandle : Int
-ConnectedAddressType : BLEAddressType
-ConnectedAddress : BTAddress
..Port Connecter..
>>Connect
>>ConnectTo
>>ConnectToU
>>Stop
>>Encrypt
<<Connected
<<Stopped
<<Failure
<<Encrypted
}
ModuleMsgs <|-- BLEInitialiserImpl
BLEInitialiserMsgs <|-- BLEInitialiserImpl
HCISocket <|-- BLEInitialiserImpl
HCISocketMsgs <|-- HCISocket
HCIControllerMsgs <|-- HCISocket
SMP <|-- HCISocket
SMPMsgs <|-- SMP
ATT <|-- HCISocket
ATTMsgs <|-- ATT
UUIDFunctions <|-- ATT
ModuleMsgs <|-- BLEEncryptionImpl
BLEEncryptionMsgs <|-- BLEEncryptionImpl
HCISocket <|-- BLEEncryptionImpl
BLEInitialiser <|-- Main
ModuleMsgs <|-- BLEInitialiser
BLEInitialiserMsgs <|-- BLEInitialiser
BLEConnecter <|-- Main
ModuleMsgs <|-- BLEConnecter
BLEConnecterMsgs <|-- BLEConnecter
ExitHandlerMsgs <|-- Main
BLEEncryption <|-- Main
ModuleMsgs <|-- BLEEncryption
BLEEncryptionMsgs <|-- BLEEncryption
HCISocket <|-- Main
ExitHandlerMsgs <|-- ExitHandler
HCISocketProxy <|-- HCISocketProxyImpl
HCISocketMsgs <|-- HCISocketProxy
HCIControllerMsgs <|-- HCISocketProxy
SMPProxy <|-- HCISocketProxy
SMPMsgs <|-- SMPProxy
ATTProxy <|-- HCISocketProxy
ATTMsgs <|-- ATTProxy
UUIDFunctions <|-- ATTProxy
ModuleMsgs <|-- BLEConnecterImpl
BLEConnecterMsgs <|-- BLEConnecterImpl
HCISocket <|-- BLEConnecterImpl
@enduml | false | true | false | false | class |
67c1c3196a9d9e170421b6e7224da429633c823f | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.puml | 03060dee414e36fb5391ef8572234c410878ed82 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 116 | puml | @startuml
interface ICommandLineOption {
ArgName : string <<get>>
ApplyValue(value:string) : void
}
@enduml
| false | true | false | false | class |
b4a20ecc34dae27d5a3f9f75455e306a2a85b84b | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyCustomerUpdateAction.puml | 229eba7f4d816a5399c0ebef4b656a4b0c740418 | [] | 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 | 5,737 | 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 MyCustomerUpdateAction [[MyCustomerUpdateAction.svg]] {
action: String
}
interface MyCustomerAddAddressAction [[MyCustomerAddAddressAction.svg]] {
action: String
address: [[BaseAddress.svg BaseAddress]]
}
interface MyCustomerAddBillingAddressIdAction [[MyCustomerAddBillingAddressIdAction.svg]] {
action: String
addressId: String
addressKey: String
}
interface MyCustomerAddShippingAddressIdAction [[MyCustomerAddShippingAddressIdAction.svg]] {
action: String
addressId: String
addressKey: String
}
interface MyCustomerChangeAddressAction [[MyCustomerChangeAddressAction.svg]] {
action: String
addressId: String
addressKey: String
address: [[BaseAddress.svg BaseAddress]]
}
interface MyCustomerChangeEmailAction [[MyCustomerChangeEmailAction.svg]] {
action: String
email: String
}
interface MyCustomerRemoveAddressAction [[MyCustomerRemoveAddressAction.svg]] {
action: String
addressId: String
addressKey: String
}
interface MyCustomerRemoveBillingAddressIdAction [[MyCustomerRemoveBillingAddressIdAction.svg]] {
action: String
addressId: String
addressKey: String
}
interface MyCustomerRemoveShippingAddressIdAction [[MyCustomerRemoveShippingAddressIdAction.svg]] {
action: String
addressId: String
addressKey: String
}
interface MyCustomerSetCompanyNameAction [[MyCustomerSetCompanyNameAction.svg]] {
action: String
companyName: String
}
interface MyCustomerSetCustomFieldAction [[MyCustomerSetCustomFieldAction.svg]] {
action: String
name: String
value: [[Object.svg Object]]
}
interface MyCustomerSetCustomTypeAction [[MyCustomerSetCustomTypeAction.svg]] {
action: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface MyCustomerSetDateOfBirthAction [[MyCustomerSetDateOfBirthAction.svg]] {
action: String
dateOfBirth: Date
}
interface MyCustomerSetDefaultBillingAddressAction [[MyCustomerSetDefaultBillingAddressAction.svg]] {
action: String
addressId: String
addressKey: String
}
interface MyCustomerSetDefaultShippingAddressAction [[MyCustomerSetDefaultShippingAddressAction.svg]] {
action: String
addressId: String
addressKey: String
}
interface MyCustomerSetFirstNameAction [[MyCustomerSetFirstNameAction.svg]] {
action: String
firstName: String
}
interface MyCustomerSetLastNameAction [[MyCustomerSetLastNameAction.svg]] {
action: String
lastName: String
}
interface MyCustomerSetLocaleAction [[MyCustomerSetLocaleAction.svg]] {
action: String
locale: String
}
interface MyCustomerSetMiddleNameAction [[MyCustomerSetMiddleNameAction.svg]] {
action: String
middleName: String
}
interface MyCustomerSetSalutationAction [[MyCustomerSetSalutationAction.svg]] {
action: String
salutation: String
}
interface MyCustomerSetTitleAction [[MyCustomerSetTitleAction.svg]] {
action: String
title: String
}
interface MyCustomerSetVatIdAction [[MyCustomerSetVatIdAction.svg]] {
action: String
vatId: String
}
interface MyCustomerUpdate [[MyCustomerUpdate.svg]] {
version: Long
actions: [[MyCustomerUpdateAction.svg List<MyCustomerUpdateAction>]]
}
MyCustomerUpdateAction --> MyCustomerAddAddressAction #blue;text:blue : "action : addAddress"
MyCustomerUpdateAction --> MyCustomerAddBillingAddressIdAction #blue;text:blue : "action : addBillingAddressId"
MyCustomerUpdateAction --> MyCustomerAddShippingAddressIdAction #blue;text:blue : "action : addShippingAddressId"
MyCustomerUpdateAction --> MyCustomerChangeAddressAction #blue;text:blue : "action : changeAddress"
MyCustomerUpdateAction --> MyCustomerChangeEmailAction #blue;text:blue : "action : changeEmail"
MyCustomerUpdateAction --> MyCustomerRemoveAddressAction #blue;text:blue : "action : removeAddress"
MyCustomerUpdateAction --> MyCustomerRemoveBillingAddressIdAction #blue;text:blue : "action : removeBillingAddressId"
MyCustomerUpdateAction --> MyCustomerRemoveShippingAddressIdAction #blue;text:blue : "action : removeShippingAddressId"
MyCustomerUpdateAction --> MyCustomerSetCompanyNameAction #blue;text:blue : "action : setCompanyName"
MyCustomerUpdateAction --> MyCustomerSetCustomFieldAction #blue;text:blue : "action : setCustomField"
MyCustomerUpdateAction --> MyCustomerSetCustomTypeAction #blue;text:blue : "action : setCustomType"
MyCustomerUpdateAction --> MyCustomerSetDateOfBirthAction #blue;text:blue : "action : setDateOfBirth"
MyCustomerUpdateAction --> MyCustomerSetDefaultBillingAddressAction #blue;text:blue : "action : setDefaultBillingAddress"
MyCustomerUpdateAction --> MyCustomerSetDefaultShippingAddressAction #blue;text:blue : "action : setDefaultShippingAddress"
MyCustomerUpdateAction --> MyCustomerSetFirstNameAction #blue;text:blue : "action : setFirstName"
MyCustomerUpdateAction --> MyCustomerSetLastNameAction #blue;text:blue : "action : setLastName"
MyCustomerUpdateAction --> MyCustomerSetLocaleAction #blue;text:blue : "action : setLocale"
MyCustomerUpdateAction --> MyCustomerSetMiddleNameAction #blue;text:blue : "action : setMiddleName"
MyCustomerUpdateAction --> MyCustomerSetSalutationAction #blue;text:blue : "action : setSalutation"
MyCustomerUpdateAction --> MyCustomerSetTitleAction #blue;text:blue : "action : setTitle"
MyCustomerUpdateAction --> MyCustomerSetVatIdAction #blue;text:blue : "action : setVatId"
MyCustomerUpdateAction --> MyCustomerUpdate #green;text:green : "actions"
@enduml
| false | true | false | false | sequence |
86f584b46634eaf81f7635840ff979ef6ce586d8 | 4e22d261d7dcf5fe2731d77ba3cfb47c5568977c | /Documentation/Source/Breakdown/Engine/TempestEngine/GameObjectFiltering/ComponentTypeSet-Class.iuml | f7b1c2e935825025f7940044b470d7ca03a16f98 | [] | no_license | SeraphinaMJ/Reformed | 2d7424d6d38d1cfaf8d385fade474a27c02103a5 | 8563d35ab2b80ca403b3b57ad80db1173504cf55 | refs/heads/master | 2023-04-06T00:40:34.223840 | 2021-05-06T11:25:51 | 2021-05-06T11:25:51 | 364,884,928 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 203 | iuml | namespace GameObjectFiltering {
class ComponentTypeSet {
+SetType()
+Reset()
+operator==()
+operator<()
+IsEmpty()
}
}
| false | true | false | false | class |
93a7c8b8fe0b41cc8624c52ff48274d68ef4bf48 | b0b0d36051ba464772416901903771a9b18eef91 | /tests/fixtures/002_simpleClassExtends.puml | 23e94b6b3d0afeb01ae9ec0bb444eefd4074f371 | [
"MIT"
] | permissive | llaville/umlwriter | 6bafa77a450b9b81e4d47015276e21ba7fcd00f8 | d5e8207344b8fca8266ea8959959fe335ae0410c | refs/heads/master | 2023-04-18T15:53:38.633376 | 2023-04-11T09:33:44 | 2023-04-11T09:33:44 | 32,541,921 | 58 | 9 | null | null | null | null | UTF-8 | PlantUML | false | false | 197 | puml | @startuml
top to bottom direction
namespace FixtureTwo {
class OneClass << class >> {
--
}
class TwoClass << class >> {
--
}
}
FixtureTwo.TwoClass --|> FixtureTwo.OneClass
@enduml
| false | true | false | false | class |
5cfca14c615e1b35bc177428ba7ab06b554fa41e | fc8788351f4847614e198624c3f1cb3352803fde | /src/main/java/org/example/ex41/ex41UML.puml | 07317e3ddc080793a5faf44706a243769bb75492 | [] | no_license | itsSPECTOR/spector-cop3330-assignment3 | 88df1eb4d250d89055bc6bb60c3b98ffa20a8449 | 8f89b5dc4e0df8dbb45887912c4443f474c54fbe | refs/heads/master | 2023-08-15T03:55:32.625798 | 2021-10-09T23:32:49 | 2021-10-09T23:32:49 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 508 | puml | @startuml
'https://plantuml.com/class-diagram
fileReader <|-- AppMain
sortArray <|- fileReader
fileWriter <|-- sortArray
success <- fileWriter
abstract fileReader{
File output.txt
while ()
temp = readfile();
names.add(temp);
}
abstract fileWriter{
File namesFile.txt
for (j=0;j<i;j++)
write(names.get(j));
}
class success{
Junit5 Success;
}
abstract sortArray{
Collections.sort(names);
}
class AppMain {
<list> Names;
int i,j;
String temp;
}
@enduml | false | true | false | false | sequence |
f1d8b86a1a2e4e64d0b745e4a20202059394241e | e07ad94f5c70b0c457b9484269304244ced63a8f | /patterns/abstract-factory.puml | e0f61d3728cbbd5362d0f04a889edd8f69e07cf1 | [] | 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 | 791 | puml | @startuml abstract-factory
class Developer {
+ Developer(WebsiteFactory factory)
+ createWebsite()
}
interface WebsiteFactory {
+ CreateComponent()
+ CreateRouter()
}
class ReactFactory {
+ CreateComponent()
+ CreateRouter()
}
class VueFactory {
+ CreateComponent()
+ CreateRouter()
}
interface Router
class ReactRouter
class VueRouter
interface Component
class ReactComponent
class VueComponent
Developer --> WebsiteFactory
ReactFactory ..|> WebsiteFactory
VueFactory ..|> WebsiteFactory
ReactRouter ..|> Router
VueRouter ..|> Router
ReactComponent ..|> Component
VueComponent ..|> Component
ReactFactory ..> ReactComponent
ReactFactory ..> ReactRouter
VueFactory ..> VueComponent
VueFactory ..> VueRouter
Developer --> Component
Developer --> Router
@enduml | false | true | false | false | class |
9dca2e47b680b9f8bd07fd04b05dd0271b924f06 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /class - design/resource/deleteResource.plantuml | 245145e87426263335191ff18b2fb616f7a908aa | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,282 | plantuml | @startuml deleteResource
class DeleteResourceForm {
- token: string
- resource_id: bigint
+ delete_resource(token, resource_id)
}
class IResourceForm <<interface>> {
+ delete_resource(token, resource_id)
}
class ResourceController {
+ delete_resource(token, resource_id)
}
class ClassroomMember {
- id: bigint
- user_id: bigint
- classroom_id: bigint
- created_at: datetime
+ get_id(): bigint
+ get_user_id(): bigint
+ set_user_id(bigint)
+ get_classroom_id(): bigint
+ set_classroom_id(bigint)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IClassroomMemberDB <<interface>> {
+ create(classroom_id, user_id): void
+ read(classroom_id)
+ read(user_id)
+ read(classroom_member_id)
+ read(classroom_id, user_id)
+ update_rollcall(classroom_member_id, created_at, is_presented)
+ update_bonus_point(classroom_member_id, created_at, point)
+ update_score(classroom_member_id, created_at, test_title, score)
+ delete(classroom_id, user_id)
+ get_user(classroom_member)
+ get_classroom(classroom_member)
}
class Resource {
-id: bigint
-classroom_id: bigint
-uploaded_by: bigint
-resource: string
-created_at: datetime
+ get_id(): bigint
+ get_classroom_id(): bigint
+ set_classroom_id(bigint)
+ get_uploaded_by(): bigint
+ set_uploaded_by(bigint)
+ get_resource(): string
+ set_resource(string)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IResourceDB <<interface>> {
+ save_resource()
+ get_resource_url()
+ create(classroom_id, uploaded_by, resource_url)
+ read(classroom_id)
+ read(uploaded_by)
+ read(resource_id)
+ delete(resource_id)
}
hide DeleteResourceForm circle
hide IResourceForm <<interface>> circle
hide ResourceController circle
hide IClassroomMemberDB <<interface>> circle
hide ClassroomMember circle
hide IResourceDB <<interface>> circle
hide Resource circle
IResourceForm .down.> DeleteResourceForm
IClassroomMemberDB .down.> ClassroomMember
IResourceDB .down.> Resource
IResourceForm "1"-left-"1" ResourceController
ResourceController "1"-left-"1" IClassroomMemberDB
ResourceController "1"-left-"1" IResourceDB
@enduml
| false | true | false | false | class |
ebabe28dcf96187db7cc273974af9453e178b57e | dc1ce0dda5d7b14289011eb99ff9adaffa6f3081 | /src/docs/diagrams/03-02_TechnicalContext.puml | 29907f1624d43f294ed0f39ad8b816793f8bd18a | [
"MIT"
] | permissive | lamasumas/viade_en1b | 0d73151b9339d905f770f38c2bfd7e642dfc37bf | ce7d7b5fc0e8a1cbb9397bb186a619c9f231d99d | refs/heads/master | 2022-06-10T10:25:10.208525 | 2020-05-05T11:19:20 | 2020-05-05T11:19:20 | 261,439,261 | 0 | 0 | MIT | 2020-05-05T11:12:48 | 2020-05-05T11:12:47 | null | UTF-8 | PlantUML | false | false | 246 | puml | @startuml
node "Viade"
database "POD"
interface "Maps API" as maps
actor User
Viade <-[#blue]up- POD:JsonLD
Viade -up-> POD:HTTP
User -> Viade:HTTP
User <-[#blue]up- Viade:HTTP
Viade-right-> maps:HTTP
Viade <-[#blue]right- maps:HTTP
@enduml
| false | true | false | false | sequence |
3d6031be6ccce2f52fb2fe05cca0b4e9ef349f08 | 4a0705c907ac3b28d3859a86e44b0a0edb351fd9 | /uml/diagram_entity.puml | 0fcc7db3b96e692cdaec8e699e0ad16b9af1a1f5 | [] | no_license | sillawned/TD4 | 1322e21c1d89c31dbdf8c543b7c6046946433f1a | 5bebfead051c6705c7543f51bd2dc686bfdf1994 | refs/heads/master | 2020-05-19T06:16:19.045212 | 2019-05-02T16:45:30 | 2019-05-02T16:45:30 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 935 | puml | @startuml
@startuml
class Devise{
un_code: const char[4]
une_zone: string
monnaie: string
}
class Cotation{
valeur: double
}
class Paire_devise{
surnom: string
}
class CoursOHLCV{
open_price: Cotation
high_price: Cotation
low_price: Cotation
close_price: Cotation
volume: double
}
class Bougie{
forme: string
}
enum Couleur{
Rouge
Vert
}
class Graphique_chandelier{
}
class EvolutionCours{
}
class Graphique_barre{
}
Graphique_chandelier *-d->Bougie: *
Bougie o-l->CoursOHLCV:1 représente
EvolutionCours *-d-> CoursOHLCV :*
Graphique_chandelier o-l->EvolutionCours: 1 représente
Graphique_barre o-r->EvolutionCours: représente 1
Bougie o-d-> Couleur: porte sur\n\n\n1
Paire_devise o-l-> Devise: 1 base
Paire_devise o-l-> Devise: 1 contrepartie
Cotation o--> Paire_devise:port sur\n\n\n1
CoursOHLCV *--> Cotation: 4
@enduml | false | true | true | false | sequence |
ebb9a97b5f9ed532fc55854bde76740a0b55b21b | 3250399fbceea9a4c11f86b64117bd6e783676e8 | /design-partten/src/singleton/singleton.puml | 035b73accdf3d7c1a22abb4bdce90fa63a4ba1a9 | [] | no_license | jinelei/rainbow | 172dbbcd19fdc6a399636f41575ef72dc5d8c4ec | a10119d57e939a81a824d159b275e76ccd3232dd | refs/heads/master | 2020-04-10T20:22:16.027419 | 2019-01-19T09:31:04 | 2019-01-19T09:31:04 | 161,265,422 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 279 | puml | @startuml
class SingletonPatternDemo {
+void main()
}
class SingleObject {
-SingleObject instance
-SingleObject()
+SingleObject getInstance()
+void showMessage()
}
SingletonPatternDemo --> SingleObject: asks
SingleObject -- SingleObject: returns
@enduml | false | true | false | false | sequence |
bef3025b4f03f6d11d0e232fdce0b3a2054ebcf4 | 5c61869360a176e65f1716ba7828776ef8ccaa3c | /carbon-crawler-model/schema/er.puml | ade1b596f9b4b0c3bef4b198a537fa63737b36d5 | [] | no_license | ShotaOd/carbon-crawler | 32f98aeff2056e738aecd61e13c96a22e1f8b9da | b0ab1b0ef20e71dab5d88603d07a28279d7117b0 | refs/heads/master | 2020-03-29T17:53:10.729469 | 2019-02-15T08:39:08 | 2019-02-15T08:39:08 | 150,183,821 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,083 | puml | @startuml
entity Host {
id
title
url
memo
}
' --------------------------------------------------
' crawl data
' --------------------------------------------------
package Search {
entity tag {
id
dictionary_id
name
}
entity page {
id
dictionary_id
title
url
}
entity page_attribute {
id
page_id
key
value
type
}
}
' --------------------------------------------------
' crawl query
' --------------------------------------------------
package Crawl {
entity crawl_list_query {
id
dictionary_id
' path & query
listing_page_path
detail_link_parent_node_query
detail_link_item_node_query
}
entity crawl_detail_query {
id
dictionary_id
' for fetch detail item
detail_attribute_node_query
}
}
Host "1" *-- "0..n" tag
Host "1" *-- "1..n" page
page o-- page_attribute
Host "1" *-- "1" crawl_list_query
Host "1" <-- "0..n" crawl_detail_query
@enduml | false | true | false | false | sequence |
dfb5abc7c8c8fbffb5fe2212ed4875df94bb47ce | 8cf018eb6de40017601592f1f125ea67d5de7086 | /docs/Solution/Service-Stack/Connected-Car-Cloud/Ingestion-Engine/Logical.puml | b57919cb77ef0de7723b0bd53440fd03903b300c | [] | 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 | 362 | puml | @startuml
package "Service-Stack/Connected-Car-Cloud/Ingestion-Engine" {
interface "Service-Stack/Connected-Car-Cloud/Ingestion-Engine" {
}
CLI ()-- "Service-Stack/Connected-Car-Cloud/Ingestion-Engine"
REST ()-- "Service-Stack/Connected-Car-Cloud/Ingestion-Engine"
Web ()-- "Service-Stack/Connected-Car-Cloud/Ingestion-Engine"
}
@enduml
| false | true | false | false | class |
8a5bd7a8a781d4d4db2a5d3df7862a0471308345 | 625517108615e50180082e3c6d7d1444f643485e | /test/fixtures/class-color-packages/in.plantuml | a8f08b52feb413f6ee4b647fff9e06cfb4f678af | [
"TCL",
"BSD-3-Clause",
"HPND",
"LicenseRef-scancode-unknown-license-reference",
"OpenSSL",
"LicenseRef-scancode-openssl",
"MIT",
"LicenseRef-scancode-ssleay-windows",
"ISC",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | Enteee/plantuml-parser | 180c370b3025bb7566bd86576d327364b3d5a425 | 765ac61d0c29c7c8f39310cfa7c385017997aeb8 | refs/heads/master | 2023-07-26T02:00:39.582527 | 2023-03-27T20:49:09 | 2023-03-27T20:49:09 | 177,091,179 | 132 | 33 | Apache-2.0 | 2023-05-21T07:11:53 | 2019-03-22T07:20:31 | TypeScript | UTF-8 | PlantUML | false | false | 125 | plantuml | @startuml
title Packages - Class Diagram with Colored Packages
package Node <<Node>> #FF00FF {
class Worker1
}
@enduml
| false | true | false | false | class |
dc24309e53ead85982754168ffdf96c63adc6b9a | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/creational/builder.puml | b8a6df38282f2b1daedc6152331acb88862d73d8 | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 545 | puml | @startuml
scale 1024 height
Builder <|-- ConcreteBuilder
Builder o-- Director
Director o-- BuilderProduct
class Builder {
#builderProduct:BuilderProduct
+getProduct():BuilderProduct
+buildPartA():void
+buildPartB():void
+buildPartC():void
}
class ConcreteBuilder {
+buildPartA():void
+buildPartB():void
+buildPartC():void
}
class BuilderProduct {
-partA:String
-partB:String
-partC:String
+setPartA():void
+setPartB():void
+setPartC():void
+show()
}
class Director {
-builder:Builder
+Director(Builder)
+construct():BuilderProduct
}
@enduml | false | true | false | false | class |
0fe4490f7b9142a4e19afc9420f04d9530c5dbcc | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-codelist-moetesakstype.iuml | 0ac96b8d7979d563f43938226b115515325d00d6 | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 178 | iuml | @startuml
class Kodelister.Moetesakstype <<codelist>> {
+Politisk sak = PS
+Delegert møtesak = DS
+Referatsak = RS
{field} +Forespørsel (interpellasjon) = FO
}
@enduml
| false | true | true | false | class |
a202832b2133810de9c6f4fbd742e3af8767eb1f | db43eb62f7127be8237e58792da2101f38609fbf | /presentations/plantuml/plantuml_class.puml | f751c88015b7f62e36e916fb2ba9cfc86e6ffa95 | [
"MIT",
"CC-BY-4.0"
] | permissive | useblocks/dwf | fbc0546e43bd206371d68294dc0bcd6ca0fd804e | 213edc25f590a1d639ba2333112a24cb3ff549c3 | refs/heads/master | 2022-05-28T11:34:41.240621 | 2022-05-27T16:50:39 | 2022-05-27T16:50:39 | 104,211,182 | 8 | 0 | NOASSERTION | 2022-03-29T07:21:24 | 2017-09-20T12:14:03 | HTML | UTF-8 | PlantUML | false | false | 262 | puml | @startuml
class user {
name
age
email
check_password()
send_email(message)
}
class domain
class group
class api_key
class permission
user --> domain
user --> group
user --> api_key
user --> permission: 1:n
group --> permission: 1:n
@enduml | false | true | false | false | sequence |
ba5504f007efc8376f24485939f075827a70bd90 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/Solution/Services/cloud-proxy/Logical.puml | 564b87ed40ec740857695a715355f2d53e7dcfe0 | [] | 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 | 196 | puml | @startuml
package "cloud-proxy" #lightblue {
interface "cloud-proxy" {
}
CLI ()-- "cloud-proxy" : 5000
REST ()-- "cloud-proxy" : 3000
Web ()-- "cloud-proxy" : 80
}
@enduml
| false | true | false | false | class |
a95895cc920f44fbe9856af7853fec77e4111e9d | 9c78b0351e70888d0706f276d47526a42b56bbd7 | /live-docs/.docs/uml/live-doc--write.puml | 394f0e1fcb6f743a3ba53bdb57b59bea16f96c82 | [
"Apache-2.0"
] | permissive | nu-art-js/thunderstorm | 5f183e80f67a8114b389a1bef18541e0c921cbf3 | 93eecca8b7e8f17b6b93383afc0a58e631e5ee22 | refs/heads/master | 2023-08-31T09:06:58.270832 | 2021-12-21T14:52:32 | 2021-12-21T14:52:32 | 173,503,689 | 13 | 1 | NOASSERTION | 2022-02-19T12:42:36 | 2019-03-02T22:02:47 | TypeScript | UTF-8 | PlantUML | false | false | 312 | puml | @startuml
== Begin with reading doc flow \ndescribed in <./live-doc--read.puml>==
participant App_FE
participant App_BE
App_FE -> App_FE: User editing the livedoc & press <Enter>
App_FE -> App_BE: "Save doc" request sent with key
App_BE -> App_FE: Success message
App_FE -> App_FE: Display success toast
@enduml
| false | true | false | false | sequence |
954b7ef3fa7ea5412bbf6a3c0900b2d31331c589 | fa037035dd5f0606860e8b9e25f4df7d021eb0b1 | /documentation/uml/member.puml | 4f9eb71a19bfa7e0fefa3096b9d68f150c9541fc | [
"MIT"
] | permissive | AudrenGuillaume/TTVirton | 23bb27efc0f1a78fdfc217bd7298201a774a5821 | 2e198c20589c34b9af395e5ce53f5dbfe1352ad2 | refs/heads/master | 2020-03-18T16:50:27.961140 | 2018-06-11T13:27:20 | 2018-06-11T13:27:20 | 134,988,357 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 547 | puml | @startuml Utilisateur connecté - use cases
' skinparam monochrome true
left to right direction
actor "utilisateur connecté" as user
(consulter les résultats) as consult_results
(mettre à jour ses informations) as maj
(consulter les membres) as consult_members
(contacter un membre) as contact
(encoder résultats de match) as encode
(consulter la composition d'équipe) as consult_lineup
user -- consult_members
user -- consult_lineup
user -- consult_results
user -- maj
user - encode
consult_members <.. contact : << extends >>
@enduml | false | true | true | false | usecase |
4c396a8ba4b68642511a78c2760d2b87376a13c8 | eb6ceeb9b4d81abdcaf62759423d9631e241453e | /relman/images/contextDOCKER_SPRING.plantuml | 2a84eab1dae861201e65093c629de461bbfb1296 | [
"Apache-2.0"
] | permissive | CodeURJC-DAW-2018-19/santatecla-relaciones-2 | 18f3401f104daf95e3997a04da5dd53750bfed41 | c5131df07bcfe18f8dbe4b9a309116b734170a8d | refs/heads/master | 2020-04-19T07:15:55.034484 | 2019-04-07T21:56:38 | 2019-04-07T21:56:38 | 168,042,332 | 5 | 3 | Apache-2.0 | 2019-04-07T15:45:01 | 2019-01-28T21:42:24 | CSS | UTF-8 | PlantUML | false | false | 95 | plantuml | @startuml
set namespaceSeparator none
SPRING *-- DOCKER_SPRING
DOCKER_SPRING -- HTML
@enduml
| false | true | false | false | class |
15e7a77c60f439cbe53cbe503f097f0a2521deac | c7cdd92a5da35eb761253b22a56f252991bad235 | /src/docs/domain/ranking/Rank.puml | 19aa2366d295531593f67152925e8ccae96ec3a4 | [
"MIT"
] | permissive | CollaborationInEncapsulation/snooker | 708ea84bcfa843b3ef1474ccf37f9fe663f50b4e | 9282c4cc45e27c401c837680cc20dc96e1615971 | refs/heads/master | 2021-01-12T15:05:04.099769 | 2017-02-04T09:11:28 | 2017-02-04T09:11:28 | 71,690,299 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 127 | puml | @startuml
package ua.cie.snooker.domain.ranking {
class Rank {
Long position
Long points
}
}
@enduml | false | true | false | false | class |
054f4231bd74a74566224c653e5d07dc1ce8d34f | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Runtime/TMP_SelectionCaret.puml | d043934dc2d2ff9cc090b85835289581f894e69a | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 149 | puml | @startuml
class TMP_SelectionCaret {
+ <<override>> Cull(clipRect:Rect, validRect:bool) : void
}
MaskableGraphic <|-- TMP_SelectionCaret
@enduml
| false | true | false | false | class |
6254ef8cf0ee3c96b1050d47c9b43a551b605046 | 62db8ea647d02bf3638e89ece33733497deea1ba | /entities.puml | fc377a2a4c43bb9ada87b85c1ad4562558d48032 | [] | no_license | mamidenn/buchner-licenses | 1440da24378a02ecd48aa524a3db4ddc9236df02 | 01a22e10886bbdb007f1968b61d657e3242031e2 | refs/heads/master | 2023-07-02T15:27:40.810150 | 2021-08-07T17:19:29 | 2021-08-07T17:19:29 | 393,725,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 627 | puml | @startuml
object Lizenz
object Einzellizenz
object "Floating Lizenz" as FL
object Faschaftzlizenzpaket
object "kleine FS-Lizenz" as kfsl
object "mittlere FS-Lizenz" as mfsl
object "große FS-Lizenz" as gfsl
object Angebot
object Angebotsscreen
Lizenz <|-- Einzellizenz
Lizenz <|-- FL
Faschaftzlizenzpaket <|-- kfsl
Faschaftzlizenzpaket <|-- mfsl
Faschaftzlizenzpaket <|-- gfsl
kfsl --* "5" Einzellizenz
mfsl --* "10" Einzellizenz
gfsl --* "20" Einzellizenz
Faschaftzlizenzpaket "0..n" *-- Angebot
Einzellizenz "0..n" *-- Angebot
FL "0..n" *-- Angebot
Angebot "3" o-- Angebotsscreen
@enduml | false | true | true | false | class |
6545cf468fd2305dffd2968e16cefeb7c7186c98 | b12ef03bc988d879c52c8fc79b43a4bca06da946 | /client/client.plantuml | 28ccf683cd0ab7dc6ddf49e7676d4597be6e217a | [] | no_license | genesis152/PS-Assignment3 | 75f8bdc8fe767e70c7fb1e551ae43d1d0b0ad33a | f894f2f2742f1477b7a975fb7505e2e3036fe0cb | refs/heads/master | 2023-03-07T12:25:57.548897 | 2021-02-25T10:24:09 | 2021-02-25T10:24:09 | 342,205,571 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,846 | plantuml | @startuml
title __CLIENT's Class Diagram__\n
namespace Application {
class Application.Application {
}
}
namespace Controller {
class Controller.AdministratorController {
}
}
namespace Controller {
class Controller.CoordinatorViewController {
}
}
namespace Controller {
class Controller.LoginViewController {
}
}
namespace Controller {
class Controller.MainController {
}
}
namespace Controller {
class Controller.PostmanViewController {
}
}
namespace Controller {
class Controller.ServerCommunication {
}
}
namespace View {
class View.AdministratorView {
}
}
namespace View {
class View.ComboBoxRenderer {
}
}
namespace View {
class View.CoordinatorView {
}
}
namespace View {
class View.LoginView {
}
}
namespace View {
class View.PostmanView {
}
}
Controller.AdministratorController o-- View.AdministratorView : administratorView
Controller.AdministratorController o-- Controller.MainController : mainController
Controller.AdministratorController o-- Controller.ServerCommunication : serverCommunication
Controller.CoordinatorViewController o-- Controller.MainController : mainController
Controller.CoordinatorViewController o-- View.CoordinatorView : coordinatorView
Controller.CoordinatorViewController o-- Controller.ServerCommunication : serverCommunication
Controller.LoginViewController o-- View.LoginView : loginView
Controller.LoginViewController o-- Controller.ServerCommunication : serverCommunication
Controller.MainController o-- Controller.AdministratorController : administratorController
Controller.MainController o-- Controller.ServerCommunication : communication
Controller.MainController o-- Controller.CoordinatorViewController : coordinatorViewController
Controller.MainController o-- Controller.LoginViewController : loginViewController
Controller.MainController o-- Controller.PostmanViewController : postmanViewController
Controller.PostmanViewController o-- Controller.MainController : mainController
Controller.PostmanViewController o-- View.PostmanView : postmanView
Controller.PostmanViewController o-- Controller.ServerCommunication : serverCommunication
Controller.ServerCommunication o-- Controller.MainController : mainController
View.AdministratorView -up-|> javax.swing.JFrame
View.ComboBoxRenderer -up-|> javax.swing.DefaultListCellRenderer
View.CoordinatorView -up-|> javax.swing.JFrame
View.LoginView -up-|> javax.swing.JFrame
View.PostmanView -up-|> javax.swing.JFrame
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 |
9e39f9cc217b02902ebebb2ffc860eb2270d746a | 35dd5fa18a673198ae07e23c460b1144f0df653d | /docs/diagrams/deployment-architecture.plantuml | a3633785df6375596235b7c506c82305201b9f6b | [
"MIT"
] | permissive | philips-labs/dct-notary-admin | d8f758ec902e464505c372a763276806964fae8c | dfc3f5cd97cd4c4f4a82169be28f79fa70beec4d | refs/heads/main | 2023-08-05T05:32:59.933085 | 2023-07-17T00:36:50 | 2023-07-17T11:21:31 | 229,924,354 | 14 | 1 | MIT | 2023-09-11T00:19:58 | 2019-12-24T10:49:27 | Go | UTF-8 | PlantUML | false | false | 1,501 | plantuml | @startuml
!$authors = "Marco Franssen"
title DCTNA Deployment Architecture
center header Author: $authors
center footer Author: $authors
skinparam sequence {
ArrowColor black
ActorBorderColor DeepSkyBlue
LifeLineBorderColor black
LifeLineBackgroundColor grey
}
skinparam component<<dctna>> {
BackgroundColor lightblue
BorderColor blue
}
skinparam component<<notary>> {
BackgroundColor lightgreen
BorderColor green
}
skinparam actor {
BackgroundColor lightgrey
BorderColor black
}
skinparam database {
BackgroundColor lightgrey
BorderColor black
}
skinparam database<<notary>> {
BackgroundColor lightgreen
BorderColor green
}
skinparam component {
BackgroundColor lightgrey
BorderColor black
}
actor "Docker Trust Admin" as Admin
actor "CI Job" as CiJob
database ServerDB <<notary>> [
server-db
]
database SignerDB <<notary>> [
signer-db
]
[dctna-web] <<dctna>>
[dctna-server] <<dctna>>
[notary-signer] <<notary>>
[notary-server] <<notary>>
CiJob ..> [docker-cli] : sign docker image\nand push to registry
[docker-cli] ..> [docker-registry] : push/pull\nimages
[docker-cli] ..> [notary-server] : sign image /\nfetch tuf metadata
Admin ..> [dctna-web] : administer docker repositories\nand delegations
[dctna-web] ..> [dctna-server] : rest api
[dctna-server] .right.> [vault] : stores passphrases\nfor keys
[dctna-server] ..> [notary-server]
[notary-server] .left.> [notary-signer]
[notary-server] ..> [ServerDB]
[notary-signer] ..> [SignerDB]
@enduml
| false | true | false | false | sequence |
b9f44baa8b73d5a71f8528694dcdac2eac65f3bf | d41eebe12d2fb862e3009a20122486bf71793970 | /system-design.puml | 71f7be3906b47eb24728af05f556cee833a082c3 | [] | no_license | fauzanebd/kotlin-restful-api-datakaryawan | 0a56bbe9c7bc9c6399e175658dc294bbd0b81d81 | 22c78aecbfc6a321cd8da2d11a3b54756b31dbc1 | refs/heads/master | 2023-04-21T22:20:54.117023 | 2021-05-03T17:34:20 | 2021-05-03T17:34:20 | 363,734,129 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 313 | puml | @startuml
actor "User" as user
node "Kotlin RESTful API" {
component "Controller" as controller
component "Service" as service
component "Repository" as repository
}
database "PostgreSQL" as database
user <--> controller
controller <--> service
service <--> repository
repository <--> database
@enduml | false | true | false | false | sequence |
54e68b583d00c3d2562a52fc1ad8274b1868bd5d | 3cdc8c4ff032e064dbc5767307b88a7a03b66e6a | /docs/graphical/state_machine.plantuml | e838f93018509a0b43b27cbc511cd6a158b018ba | [] | no_license | useownyxis/tritpo | 78f63fa34e8b59e5fdde39effb469d9bc8489fa4 | 2bc66e91b34e62e6f484b0455488a128b7650fef | refs/heads/master | 2023-02-03T13:52:50.134814 | 2020-12-16T01:43:36 | 2020-12-16T01:43:36 | 319,082,314 | 0 | 1 | null | 2020-12-16T01:43:37 | 2020-12-06T16:47:08 | JavaScript | UTF-8 | PlantUML | false | false | 370 | plantuml | @startuml
scale 600 width
[*] --> Configuration : Open folder
Configuration: # Folder to open
Configuration -right-> Adding : Request adding
Configuration --> Cancelled : Cancel adding
Adding --> Added : Succeeded
state Adding {
[*] --> findAllMusic: Go to folder
findAllMusic --> return: Return a list of mucis to UI
}
Added --> [*]
Cancelled --> [*]
@enduml | false | true | false | false | sequence |
a017d9b33a75e666ddd89a00551f88e04c3ca8e4 | 90c1100ef937cc116c8b6db00eb5bc93ec443171 | /src/main/java/Exercise43/Exercise43uml.puml | 9ffb9f763004b0aaa7899992f80743fe0df892a7 | [] | no_license | Bash259/Braimoh-cop3330-assignment3 | 131ee524c72ea4a77f93f648ae7a1dc0c72554b9 | ab72dc6b8a2bd22bb9314439ae1c18dc5fbf5340 | refs/heads/master | 2023-06-02T18:35:41.155347 | 2021-06-21T03:51:00 | 2021-06-21T03:51:00 | 378,799,584 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 273 | puml | @startuml
class main
main <|-- siteNameInput
main <|-- AuthorInput
main <|-- JavascriptInput
main <|-- CSSInput
JavascriptInput <|-- yes
JavascriptInput <|-- no
yes <|-- createJavaScriptFolder
CSSInput <|-- Yes
CSSInput <|-- No
Yes <|-- createCSSFolder
@enduml | false | true | false | false | class |
b70b15a0a26fd6ac443f4349581ada41bda45840 | f75b19119469831091a7ba1acfa2ff3243a0e297 | /src/main/java/oop/assignment3/ex42/base/exercise42.puml | 8997ace223082d5facd9b4db6e8589167f8594fe | [] | no_license | BrianCTNguyen/Nguyen-cop3330-assignment3 | 51c8dc7586665c8f29da884d85c84e10f5d4b0c7 | 0244dfe16b486e1ff9153eb27c1d9a1acc271ffe | refs/heads/master | 2023-06-04T01:48:46.961668 | 2021-06-21T03:59:56 | 2021-06-21T03:59:56 | 378,794,689 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 343 | puml | @startuml
'https://plantuml.com/sequence-diagram
class solution42 {
read: input file
Scanner()
callFucntion(output)
}
class output {
write: output file
FileWriter output(".txt")
}
class parse {
Sorting
createTableFunction()
close()
}
output <--o parse
solution42 <--o output
solution42 o--> parse
@enduml | false | true | false | false | class |
de26a7fb0918630d0fb798a9a0b6bd799c25651e | 4e2f3442a3a3b56092c5647e34d83d8987a1bc9b | /src/MarsMission-base.puml | 7055d1767ccaba4fc6e403beb4cb66ceca141f63 | [] | no_license | ValeriF21/Mission-To-Mars | 25632f0f8da285122ec2fd25947afa884ad9bd2d | 3e34d2683745c386af838923e11f89a31cd5be57 | refs/heads/main | 2023-04-11T11:55:00.430085 | 2021-04-23T00:00:01 | 2021-04-23T00:00:01 | 360,712,525 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,747 | puml | @startuml
interface Loadable {
+ canCarry(Item) : boolean
+ carry(Item)
}
interface Dispatchable {
+ launch() : boolean
+ land() : boolean
}
class Item {
+ String name
+ int weight
+ int price
+ int getWeight()
+ int getPrice()
}
abstract class Rocket implements Dispatchable, Loadable {
+ int cost
+ int rocketWeight
+ int cargoLimit
+ int maxWeight
+ int cargo
+ ArrayList<Item> items
+ @ canCarry(Item): boolean
+ @ carry(Item)
# chance(int): boolean
}
class U1 extends Rocket {
- {static} int COST = 100;
- {static} int WEIGHT = 10,000;
- {static} int MAX_WEIGHT = 18,000;
- {static} int LAUNCH_EXPLOSION_CHANCE = 25;
- {static} int LAND_CRASH_CHANCE = 10;
+ @ land() : boolean
+ @ launch() : boolean
}
class U2 extends Rocket {
- {static} int COST = 120;
- {static} int WEIGHT = 18,000;
- {static} int MAX_WEIGHT = 29,000;
- {static} int LAUNCH_EXPLOSION_CHANCE = 40;
- {static} int LAND_CRASH_CHANCE = 50;
+ @ land() : boolean
+ @ launch() : boolean
}
class Simulation {
+ {static} int totalSent;
+ {static} int totalLost;
+ {static} int totalCost;
+ {static} loadU1(ArrayList<Item>): ArrayList<U1>
+ {static} loadU2(ArrayList<Item>): ArrayList<U2>
+ {static} runSimulation(ArrayList<? extends Rocket>): int
}
class ItemParser {
- {static} String DELIMITERS
- {static} int NAME
- {static} int WEIGHT
- {static} int PRICE
+ Item parse(String record)
}
class ItemLoader {
+ String fileName
+ ArrayList<Item> loadItems()
}
U1 -down--* Simulation : load, and try to launch & land
U2 -down--* Simulation
ItemParser -up--* Item: Create new instance of item
ItemLoader -right--* ItemParser: Parse each item
Simulation -right--* ItemLoader: Load file
@enduml | false | true | false | false | class |
950719265cee072a41d264872dd7d596241a2039 | a49e5f0e798a935e41536bda9522096305c5e277 | /diagrams/dc_relaciones_agregacion.plantuml | ec1ded33b17256b99f1c935a9ffa6397c801ac93 | [] | no_license | fiuba/algo3_uml_si_o_si | 8f9514df2f97d29312a9ecede611d379d884c28e | 90a137a51efcabc3b678b335ef498f0d3b710357 | refs/heads/master | 2023-04-13T10:24:55.552593 | 2021-04-29T21:41:54 | 2021-04-29T21:44:15 | 362,944,660 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 225 | plantuml | @startuml
skinparam classAttributeIconSize 0
class Escuela {
- nombre
+ inscribir(estudiante)
}
class Estudiante {
- dni
+ rinde(materia)
}
Escuela "1" o-- "*" Estudiante
@enduml
| false | true | false | false | class |
629c71e321352d9721288cdc1ac6f3946083c5f1 | ef6e4d015df4e6cbd19defc2e1ceada07bed144a | /src/main/java/ex41/exercise_41_UML.puml | 774d316c81ca1774acbc328228ed8c60096894f0 | [] | no_license | JohnSlauter/Slauter-cop3330-assignment3 | a262f021abc7a6f0289cf74ba6e6bd0097173e41 | 47e3691cffd6f01ac3ec846368b9e52ccaf029f6 | refs/heads/master | 2023-08-25T06:01:09.389694 | 2021-10-11T22:11:51 | 2021-10-11T22:11:51 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 372 | puml | @startuml
'https://plantuml.com/class-diagram
class App{
Attributes
-String INPUT_ADDRESS
-String OUTPUT_ADDRESS
--
Methods
+void main(String args[])
#ArrayList<String> read_File(String input_file)
#ArrayList<String> alphabetize_ArrayList(ArrayList<String> names)
-void write_To_File(ArrayList<String> names, String output_file)
}
@enduml | false | true | false | false | class |
5f3e816d30cda5fb551b136783848b63aba9aabf | 17a6a64d2275c47c9b205f088394b4937292f9f5 | /docs/clamp/acm/plantuml/states/SuperviseParticipantsTimeout.puml | 89a7d16af61d1ea3587b6c9e155c710a57c2773a | [
"Apache-2.0",
"CC-BY-4.0"
] | permissive | onap/policy-parent | 2e8db0a82311ed576a2d3166ac293b8b5687987c | b12c67854c70ae410e02af501126ecf8434e5dd9 | refs/heads/master | 2023-08-16T15:28:59.552318 | 2023-08-04T13:00:54 | 2023-08-08T10:14:28 | 159,416,823 | 3 | 1 | NOASSERTION | 2021-06-29T19:01:07 | 2018-11-27T23:53:56 | null | UTF-8 | PlantUML | false | false | 513 | puml | @startuml
participant ACM_Runtime
database ACM_Database
loop Every ACM_Runtime Supervision Interval
loop Over all Participants
ACM_Runtime -> Database: Read Participant Heartbeat Information
alt Participant Heartbeat not received in Timeout Interval
ACM_Runtime -> ACM_Database: Set Participant State as OFFLINE
ACM_Runtime -> ACM_Runtime: Mark all ACM Element Instances\nrunning on Participant as OFFLINE
activate ACM_Runtime
deactivate ACM_Runtime
end
end
end
@enduml
| false | true | false | false | sequence |
f5a32417ef093893172088699d1177e5b0d4f3ba | 42288958c7f153c0980ffa1cbefc41cb18048b88 | /diagrams/enunciado_1/dc.plantuml | d60a7b427e121e921663a4df3513b9ffe91a8bcc | [] | 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 | 662 | plantuml | @startuml
together {
class Jugador
class Ficha
}
class Juego {
+ haGanado(j : Jugador) : Boolean
}
class Tablero {
+ haCompletadoLinea(j : Jugador) : Boolean
}
class Linea3 {
+ todasLasFichasSonDe(j : Jugador) : Boolean
}
class Jugador {
+ miFicha() : Ficha
}
class Ficha {
- caracter : Chart
+ igualA(otra : Ficha) : Boolean
}
class Celda {
- contenido : Ficha
+ contiene(f : Ficha) : Boolean
}
Juego o-left- "2" Jugador
Juego *-right- "1" Tablero
Tablero *-- "8" Linea3
Jugador o- "*" Ficha
Linea3 "3" o- Celda
Celda o- "0..1" Ficha
Tablero *- "9" Celda
@enduml
| false | true | false | false | class |
d9d9ca15bcd1a6856d2fc9a2cc2b9aeff1584f9c | ddfa49f08c2c5db5f86a32d0a3350edc7e156308 | /uml/vision.plantuml | 798be075b6b14c617c7ec14aae0608d6162de9c3 | [] | no_license | 0x0-cx/vcs-sync-protocol | 09c758fa242eb666876192cf762de1ad78b1613b | f962323d2a02dc02d3b10c3ac227267ec574ee04 | refs/heads/master | 2023-02-18T07:52:02.917941 | 2021-01-17T10:04:26 | 2021-01-20T14:19:15 | 329,695,833 | 4 | 1 | null | 2021-01-15T20:19:59 | 2021-01-14T18:05:39 | null | UTF-8 | PlantUML | false | false | 974 | plantuml | @startuml
participant GitHubUser
participant GitHub
participant "VCS-protocol-server-A"
box
participant GitHub
participant "VCS-protocol-server-A"
end box
participant "VCS-protocol-server-B"
participant HostedGitLab
box
participant "VCS-protocol-server-B"
participant HostedGitLab
end box
participant GitLabUser
note over "VCS-protocol-server-B": VCS server owns hosted gitlab
GitHubUser -> GitHub: Create a PR
GitHub -> "VCS-protocol-server-A": "opened" action webhook
note over "VCS-protocol-server-A": VCS server own GitHub Application installed in GitHub Repo
"VCS-protocol-server-A" -> "VCS-protocol-server-B": Send PR patch using good old SMTP
"VCS-protocol-server-B" -> HostedGitLab: Create an MR with the patch
GitLabUser -> HostedGitLab: Merge an MR
HostedGitLab -> "VCS-protocol-server-B": "merged" action webhook
"VCS-protocol-server-B" -> "VCS-protocol-server-A": Send merged info using good old SMTP
"VCS-protocol-server-A" -> GitHub: Merge a PR
@enduml | false | true | false | false | sequence |
53712a5dde517ab52e08947dbe808dd67648adf4 | 1a3123ab9f1801ed9c962dea2fe7de64b0b1648b | /KataBirthdayGreeting.plantuml | 8ba65fc90d52586ae978e14f3a125f633e7cdd79 | [
"Unlicense"
] | permissive | techrabbit58/KataBirthdayGreeting | cc395b4cd6733bb34d95b2514edea9399e9bb20e | 0154c7120464b326d6b77bf29ad79510937a952c | refs/heads/master | 2020-09-02T11:57:03.752718 | 2019-11-09T15:08:26 | 2019-11-09T15:08:26 | 219,215,898 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,566 | plantuml | @startuml
title __KATABIRTHDAYGREETING Class Diagram__\n
namespace de.pruefbit.birthdaygreeting {
class de.pruefbit.birthdaygreeting.BirthdayGreeting {
}
}
namespace de.pruefbit.birthdaygreeting {
class de.pruefbit.birthdaygreeting.Friend {
}
}
namespace de.pruefbit.birthdaygreeting {
interface de.pruefbit.birthdaygreeting.FriendsDirectory {
}
}
namespace de.pruefbit.birthdaygreeting {
class de.pruefbit.birthdaygreeting.Greeting {
}
}
namespace de.pruefbit.birthdaygreeting {
class de.pruefbit.birthdaygreeting.GreetingContext {
}
}
namespace de.pruefbit.birthdaygreeting {
interface de.pruefbit.birthdaygreeting.NotificationService {
}
}
namespace de.pruefbit.birthdaygreeting {
enum PropertyNames {
}
}
de.pruefbit.birthdaygreeting.BirthdayGreeting .up.|> java.lang.Runnable
de.pruefbit.birthdaygreeting.BirthdayGreeting o-- de.pruefbit.birthdaygreeting.FriendsDirectory : friendsDirectory
de.pruefbit.birthdaygreeting.BirthdayGreeting o-- de.pruefbit.birthdaygreeting.NotificationService : notificationService
de.pruefbit.birthdaygreeting.GreetingContext o-- de.pruefbit.birthdaygreeting.FriendsDirectory : database
de.pruefbit.birthdaygreeting.GreetingContext o-- de.pruefbit.birthdaygreeting.NotificationService : notificationService
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 |
7853bb2a1a7b25970409769d1b179b07f09adc39 | c82d2f82a6d8a2470e75680b67b005b42fe9a225 | /TD3.1.plantuml | 8fcf8f565f47bc5c6230d8e5312889c50f443a19 | [
"MIT"
] | permissive | IUT-Blagnac/bcoo-Killian-Milot | aa34e0fb100ee7eb3449ccee21ce3c33c84f5b48 | 076dd50996afdcb954b0432c9a4304ba814aa100 | refs/heads/main | 2023-04-03T03:27:10.636342 | 2021-03-31T13:36:34 | 2021-03-31T13:36:34 | 335,633,148 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 689 | plantuml | @startuml Titre
'--------------------------------
' Parametres pour le dessin
'--------------------------------
hide circle
hide empty members
hide empty methods
'--------------------------------
class Stages {
lieu
deteDebut
dateFin
nomTuteur
theme
note
}
class Entreprise{
nom
adresse
siegeSocial
}
class Promotion{
nom
}
class Etudiant{
nimINE
nom
prenom
moyenneGeneral
}
class GroupeTP{
num
}
class GroupeTD{
num
}
class Enseignant {
nom
prenom
spécialité
}
Stages "*" -- "1" Entreprise
Stages - "1" Promotion
Etudiant - "1" GroupeTP
GroupeTP - "1" GroupeTD
GroupeTD -- "1" Promotion
Stages -- "0..1\ntuteur" Enseignant
@enduml
| false | true | true | false | class |
99bf1f538472b4c17089bcbd56cff4cbd18af963 | 774592ba2267c733c8f9fad71937140034accef7 | /docs/ci/continous-integration-v2.puml | e334b58d1b473b252484eace713327302c13c976 | [
"MIT"
] | permissive | entrealist/crypton | 1f75559d2959628afe0f00dfe19e57b0228c198f | 33dc96367c3a4eb869800b6a0ac84f302bd68502 | refs/heads/master | 2023-02-01T14:13:35.549262 | 2020-11-06T22:43:19 | 2020-11-06T23:20:34 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 555 | puml | @startuml
actor Dev
entity OpsLocal
database GitLocal
database GitOrigin
database GitCI
control CI
entity OpsCI
Dev -> GitLocal: commit
OpsLocal <-- GitLocal: pre-commit
OpsLocal -> GitLocal: increment version code
Dev -> GitOrigin: push to pre-snapshot
GitOrigin --> CI: run pre-snapshot action
CI --> OpsCI: prepare snapshot
CI <- OpsCI: generate raw latest release notes
CI <- OpsCI: increment version name
CI -> GitCI: commit
CI -> GitOrigin: push to snapshot
Dev --> CI: start release snapshot action
CI -> CI: generate & release snapshot
@enduml
| false | true | false | false | sequence |
385325a1dcefe384f70365bf1e0b6e819fca051b | c12b521d26d8edcdf24f39d50762d9dd41c98f89 | /sequences/registerCluster/registerCluster.puml | 0b0a35b3f322cc24221f84b5ef7f474ea883b5c5 | [] | no_license | cetlinB/docs | 854da14bf653509302a8184e74e7bd63647b416c | 08f4103eeecbafacd196119ddd501261b66dafb9 | refs/heads/master | 2020-08-16T19:56:09.004540 | 2019-10-16T08:08:36 | 2019-10-16T08:08:36 | 215,545,045 | 0 | 0 | null | 2019-10-16T12:39:59 | 2019-10-16T12:39:58 | null | UTF-8 | PlantUML | false | false | 420 | puml | @startuml
title DEPRECATED 12.10.19, ARCHIVE VERSION
actor "Supplier" as AS
participant ":Machine Manager" as CM
participant ":Cluster" as CC
AS -> CM : POST /machine-manager/machines (json)
activate CM
CM -->> AS : 201 {id, :List<Key>}
deactivate CM
AS ->> CC : run(:Key)
activate CC
CC -> CM : PATCH /machine-manager/{id} (json)
activate CM
CM -->> CC : 200
deactivate CM
ref over CC, CM : healthchecking
@enduml | false | true | false | false | usecase |
ce5216b85f7f8b0540fd544e7ec8756706594daa | 4a1a6be8879fefa4087c54ba04a360a93209c822 | /Software/src/main/java/at/jku/se/sudokumaster/sudokumaster.plantuml | f75a7ac17492ce697a637ae696e44e482bc9a2e5 | [] | no_license | PeterSigmund12/Sudoku-Master | 6958759caba43dac5cf2e44e1d2da13102a3893a | 7a88b2e06f0ada2fb91d167e753f1860547454b8 | refs/heads/main | 2023-06-24T08:57:25.153022 | 2021-07-20T08:03:48 | 2021-07-20T08:03:48 | 347,006,452 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,460 | plantuml | @startuml
title __SUDOKUMASTER's Class Diagram__\n
namespace at.jku.se.sudokumaster {
class at.jku.se.sudokumaster.AnchorPoint {
- col : int
- row : int
+ AnchorPoint()
+ getCol()
+ getRow()
+ setCol()
+ setRow()
}
}
namespace at.jku.se.sudokumaster {
class at.jku.se.sudokumaster.CalculateScoreTest {
~ validHighScore()
~ validHighScoreClicks()
}
}
namespace at.jku.se.sudokumaster {
class at.jku.se.sudokumaster.Cell {
- groupId : Integer
- type : String
- value : Integer
+ Cell()
+ Cell()
+ Cell()
+ getGroupId()
+ getType()
+ getValue()
+ setGroupId()
+ setType()
+ setValue()
+ toString()
}
}
namespace at.jku.se.sudokumaster {
class at.jku.se.sudokumaster.SimpleBoard {
- board : Cell[][]
+ SimpleBoard()
+ SimpleBoard()
+ get()
+ setGroup()
+ setValue()
}
}
namespace at.jku.se.sudokumaster {
class at.jku.se.sudokumaster.SimpleSolver {
+ fieldSize : int
- anchorpoints : Set<AnchorPoint>
- cnt : int
- numbers : Set<Integer>
+ SimpleSolver()
+ getAnchorpoints()
+ solve()
+ valid()
+ validAndFull()
~ allBoxesValid()
~ allColumnsValid()
~ allRowsValid()
~ full()
~ validBox()
~ validBox()
~ validColumn()
~ validRow()
}
}
namespace at.jku.se.sudokumaster {
class at.jku.se.sudokumaster.SimpleSolverTest {
~ ValidAllBox()
~ ValidAllColumns()
~ ValidAllRows()
~ ValidBox()
~ testSolve()
~ testSolveSmall()
~ validAndComplete()
~ validColumn()
~ validFreeFormBox()
~ validFreeFormBoxEmpty()
~ validFreeFormBoxRow()
~ validRow()
}
}
namespace at.jku.se.sudokumaster {
class at.jku.se.sudokumaster.SudokuMaster {
{static} - scene : Scene
{static} + main()
+ start()
+ stop()
}
}
at.jku.se.sudokumaster.SudokuMaster -up-|> javafx.application.Application
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 |
6e5fe4a40ed197d0fb5b1464a728abdaf7b00e16 | c2b83ffbeb0748d1b283e093f0b987bdbc3d27ac | /docs/uml-class-diagrams/display01/production/DisplayGpsReceiverImplementation/DisplayGpsReceiverImplementation.puml | 446bb7cf305be3063c753a698ecc1a635f07d1e5 | [] | no_license | Slackjaw1431/csi-3370-software-project | 79666760712ee4625bea3daea48c7072e7826465 | af44ad1066695e4f9eff74eda79cebef3ad2b1af | refs/heads/main | 2023-03-23T23:03:17.404846 | 2021-03-17T18:52:02 | 2021-03-17T18:52:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 484 | puml | @startuml DisplayGpsReceiverImplementation
package edu.oakland.production.display01 {
class DisplayGpsReceiverImplementation {
- DisplayGpsManager displayGPSManager
__
+ DisplayGpsReceiverImplementation(DisplayGpsManager displayGPSManager)
.. Use Case 1 ..
+ String measureGpsSignalStrength(Satellite satelliteSignal)
.. Use Case 2 ..
+ SatelliteSignalCheckRequest measureSignal(Satellite satelliteSignal)
}
}
@enduml
| false | true | false | false | class |
60fc162489bd718e17abdb8af1be9a56b5789b56 | f0a43ed6a7dba2cc3efdfbf7414ff0b0c8d36fd6 | /_src/iti65.plantuml | 56b856616a0e12b2416997adc280f15f0186f596 | [
"MIT",
"GPL-1.0-or-later",
"WTFPL",
"CC-BY-3.0-US",
"BSD-3-Clause",
"OFL-1.1"
] | permissive | oehf/ipf-docs | 178fe1e3fe079afede58fd25fe93a360234a273a | 3a8ea98c86b3405f6571cb23b4da44a726a8fbf4 | refs/heads/master | 2023-08-30T06:25:52.374023 | 2023-08-29T14:34:33 | 2023-08-29T14:34:33 | 158,552,584 | 0 | 3 | MIT | 2022-03-30T07:48:51 | 2018-11-21T13:31:43 | HTML | UTF-8 | PlantUML | false | false | 215 | plantuml | @startuml
hide footbox
participant "Document Source" as S
participant "Document Recipient" as R
S -> R : Provide Document Bundle Request
activate R
R --> S : Provide Document Bundle Response
deactivate R
@enduml | false | true | false | false | sequence |
74ab52b1b3d24a7bb5423b8f64879e0e83ac9b21 | e72b52b000194daaee4f70b04f0155a53f041170 | /src/main/resources/diagrams/DomainModel.puml | 2d6ddc503c5e1dffeb10fb8b187f65af76c45db6 | [] | no_license | g-nico/game_store | 80cc2ef1f4fb279464fc1217d3e175098590400f | 3a1a59178d42aad9f8def4b300c27dbcaf2217f4 | refs/heads/master | 2020-03-12T16:21:15.625880 | 2018-05-30T12:23:13 | 2018-05-30T12:23:13 | 130,714,020 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 371 | puml | @startuml
class Game
enum Category
class Employee
class Client
class Order
hide Game methods
hide Game fields
hide Employee methods
hide Employee fields
hide Category methods
hide Category fields
hide Client methods
hide Client fields
hide Order methods
hide Order fields
Order *-- Game
Employee -- Game
Employee -- Order
Game o--Category
Order *-- Client
@enduml | false | true | false | false | class |
015be7c981923dd5355593278fa45bb4052db957 | d5612578ccf2b52438eb329ee180377a3455fc49 | /asciidocs/plantuml/commits-detached-head-lost-commit-2.puml | e6ee9d4487e08342b5bdd30a16edf66e58e69e5a | [] | no_license | 2021-3ahif-syp/lecture-notes | 9e570f63f78522f4191b305e22dc5cf340351679 | 32e17259d69821bca264c82364f9fa4b4bed498a | refs/heads/master | 2023-05-26T22:18:13.452286 | 2021-05-17T09:40:03 | 2021-05-17T09:40:03 | 297,027,366 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 232 | puml | @startuml
circle first as "initial \ncommit"
circle second as " "
circle third as " "
circle fourth as " "
card MASTER
card HEAD
first <-right- second
second <-right- third
MASTER --> third
HEAD --> third
fourth -down->first
@enduml | false | true | false | false | uml-unknown |
1dcbafdb12edbf8561ed96e7990a213a809ffc93 | 1e9e4df30834a51397ccf299266505cc7b509d3f | /td4ex1-master/uml.puml | 6451cb57623c73912838c30b87ca1f813e168afb | [] | no_license | fouany/SR03-Web-apps | 2336d10f16461e729f622a64abc0f0c40dc88f63 | 738651a8c43e36d3f0e1ad4810a53ac33a6fecd0 | refs/heads/master | 2022-11-14T23:40:02.308427 | 2020-06-20T18:42:29 | 2020-06-20T18:42:29 | 276,862,566 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,947 | puml | @startuml
abstract class Model.ActiveRecordBase
annotation java.lang.Override
annotation javax.servlet.annotation.WebServlet
class Controller.Connexion
class Controller.Deconnexion
class Controller.UserManager
class Controller.Validation
class Model.Forum
class Model.Message
class Model.MyConnectionClass
class Model.User
class java.io.BufferedInputStream
class java.io.IOException
class java.io.PrintWriter
class java.net.URL
class java.sql.Connection
class java.sql.DriverManager
class java.sql.ResultSet
class java.sql.SQLException
class java.sql.Statement
class java.util.ArrayList
class java.util.Date
class java.util.Hashtable
class java.util.Iterator
class java.util.List
class java.util.Objects
class java.util.Properties
class java.util.Set
class java.util.logging.Level
class java.util.logging.Logger
class javax.servlet.RequestDispatcher
class javax.servlet.ServletException
class javax.servlet.http.HttpServlet
class javax.servlet.http.HttpServletRequest
class javax.servlet.http.HttpServletResponse
class javax.servlet.http.HttpSession
Controller.Connexion ..> java.lang.Override
Controller.Connexion ..> javax.servlet.annotation.WebServlet
Controller.Connexion --|> javax.servlet.http.HttpServlet
Controller.Deconnexion ..> java.lang.Override
Controller.Deconnexion ..> javax.servlet.annotation.WebServlet
Controller.Deconnexion --|> javax.servlet.http.HttpServlet
Controller.UserManager ..> java.lang.Override
Controller.UserManager ..> javax.servlet.annotation.WebServlet
Controller.UserManager --|> javax.servlet.http.HttpServlet
Controller.Validation ..> java.lang.Override
Controller.Validation ..> javax.servlet.annotation.WebServlet
Controller.Validation --|> javax.servlet.http.HttpServlet
Model.Forum --|> Model.ActiveRecordBase
Model.Forum ..> java.lang.Override
Model.Message --|> Model.ActiveRecordBase
Model.Message ..> java.lang.Override
Model.User --|> Model.ActiveRecordBase
Model.User ..> java.lang.Override
@enduml | false | true | false | false | class |
7c2c57b677bb089b2476b0f14abe22ccc6cbd148 | c7144af16e76ac5765e3c5c212eb1fa515ea8f6c | /DesignPattern/ClassDiagram/class-diagram_3-1-5-1.puml | fc1f9d7e358eb694f7735749b98b73bf17b26758 | [] | no_license | JungInBaek/TIL | de183dc4e42bb1e7ff1a88a7d79ec33088644334 | 4043c68213ec8955eaeb570e11e7d2fd9bf85924 | refs/heads/main | 2023-08-22T02:15:41.238631 | 2021-10-06T13:55:45 | 2021-10-06T13:55:45 | 399,660,120 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 474 | puml | @startuml
Calculator o-- AddOperation
Calculator o-- SubstractOperation
Calculator o-- MultiplyOperation
class Calculator {
- addOperation : AddOperation
- substractOperation : SubstractOperation
- multiplyOperation : MultiplyOperation
+ calculate(operation : String, firstNumber : int, secondNumber : int) : int
}
class AddOperation {
+ operate() : int
}
class SubstractOperation {
+ operate() : int
}
class MultiplyOperation {
+ operate() : int
}
@enduml | false | true | false | false | class |
c2f81375bfd67ebe949df7d339c941946866edc0 | 43403bad91d19ba379458bd8f86a648c462c43e8 | /diagrams/whole_program.puml | 4c3cbfcf7bac8725479f46baf7de4260c214e1e9 | [] | no_license | shocoman/TAC_IDE | eced3e0f8882ea4badb4c7c146e1c31a31c17b16 | 8b2e60f7626f0fa9b109707fedc6e9cc467a0cce | refs/heads/main | 2023-06-04T15:22:21.013308 | 2021-06-14T15:24:41 | 2021-06-14T15:24:41 | 302,440,257 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,913 | puml | @startuml
'https://plantuml.com/class-diagram
skinparam classBackgroundColor Gold/LightGoldenRodYellow
'left to right direction
skinparam classFontSize 20
together {
class Operand #LightGreen/LightGoldenRodYellow {
Type type
String value
BasicBlock* predecessor
get_string()
as_double()
get_int()
get_double()
is_var()
is_array()
is_none()
is_constant()
is_int()
is_double()
is_number()
is_true()
clear()
}
class Destination #LightGreen/LightGoldenRodYellow{
Type type
String name
fmt()
}
class Quad #LightGreen/LightGoldenRodYellow{
Type type
Destination destination
Operand[] operands
String format()
get_op()
clear_op()
get_rhs_names()
get_lhs()
get_used_vars()
is_jump()
is_unary()
is_conditional_jump()
is_assignment()
is_comparison()
is_binary()
is_commutative()
is_critical()
is_foldable()
}
class BasicBlock #LightGreen/LightGoldenRodYellow{
Type type
int id
String label_name
Quad[] quads;
Set<BasicBlock*> predecessors
Set<BasicBlock*> successors
String format()
void add_successor(BasicBlock*)
void remove_successor(BasicBlock*)
void append_quad(Quad)
}
class Function #LightGreen/LightGoldenRodYellow{
String name
BasicBlock[] basic_blocks
Map<int, BasicBlock*> id_to_block
String get_as_code()
void reverse_graph()
BasicBlock* get_entry_block()
BasicBlock* get_exit_block()
Byte[] print_cfg()
}
class Program #LightGreen/LightGoldenRodYellow{
Function[] functions
{static} Program make_from_file(String file_name)
{static} Program make_from_program_code(String code)
String get_as_code()
get_function_names()
get_function_by_name()
}
class TheApp #LightBlue/LightGoldenRodYellow {
StartProgram()
}
class MainWindowFrame #LightBlue/LightGoldenRodYellow {
OpenOptimizationWindow()
ShowControlFlowGraph()
}
class GraphWindow #LightBlue/LightGoldenRodYellow {
LoadImageFromDotFile()
LoadImageFromData()
}
class ImagePanel #LightBlue/LightGoldenRodYellow {
Zoom()
Pan()
}
class FunctionSelectionWindow #LightBlue/LightGoldenRodYellow {
GetSelectedFunction()
}
class ToyIROptimizationWindow #LightBlue/LightGoldenRodYellow {
ApplyOptimization()
}
class LLVMIROptimizationWindow #LightBlue/LightGoldenRodYellow {
ApplyOptimization()
}
class CodeEditorFrame #LightBlue/LightGoldenRodYellow {}
class PassDescriptionWindow #LightBlue/LightGoldenRodYellow {}
class GraphWrite #LightBlue/LightGoldenRodYellow {
node_attributes[]
node_names[]
node_texts[]
edges[]
String graph_title
set_node_text()
set_node_name()
add_edge()
render_to_file()
set_title()
set_attribute()
}
}
together {
interface Pass {
Function function
void run()
}
class CriticalEdges #Orange/LightGoldenRodYellow {
Bytes[] show_on_graph()
void split()
}
class LiveVariableAnalysis #Orange/LightGoldenRodYellow {
calculate_upwardexposed_uses_and_definitions()
run_live_variable_analysis()
get_uninitialized_variables()
print_upwardexposed_and_definitions()
print_live_variable_analysis()
all_variables_are_initialized()
live_at_entry()
live_at_exit()
}
class ReachingDefinitions #Orange/LightGoldenRodYellow {
get_results()
collect_definitions()
calculate_gen_kill_sets()
calculate_reaching_definitions()
print_gen_kill_defs()
print_reaching_definitions()
}
class UseDefGraph #Orange/LightGoldenRodYellow {
update_graph()
compute_use_def_chains()
print_to_console_def_use_chains()
print_use_def_chains_graph()
}
class DominatorTree #Orange/LightGoldenRodYellow {
Bytes[] print_tree()
}
class SSAForm {
void convert_to_ssa()
find_global_names()
place_phi_functions()
rename_variables()
void convert_from_ssa()
schedule_copies()
insert_copies()
}
class UselessCodeElimination {
compute_reverse_dominance_frontier()
remove_noncritical_operations()
remove_unreachable_blocks()
merge_basic_blocks()
}
class GlobalValueNumbering {
global_value_numbering()
}
class SparseSimpleConstantPropagation {
initialize()
print_values()
evaluate_over_lattice(Quad &q)
fill_use_def_graph()
propagate(std::vector<std::string> &work_list)
rewrite_program()
}
class SparseConditionalConstantPropagation {
fill_in_use_def_graph()
init_worklist()
propagate()
evaluate_over_lattice()
evaluate_assign()
evaluate_conditional()
evaluate_phi_operands()
evaluate_phi_result()
evaluate_all_phis_in_block()
evaluate_phi()
print_result_info()
rewrite_program()
collect_useless_blocks()
remove_useless_blocks()
print_sccp_result_graph()
}
class LazyCodeMotion {
preprocess()
get_earliest_expressions()
get_latest_expressions()
get_available_expressions_lazy_code_motion()
get_postponable_expressions()
get_used_expressions()
print_lazy_code_motion_graphs()
}
class OperatorStrengthReduction {
fill_in_use_def_graph()
IsCandidateOperation()
IsSCCValidIV()
IsRegionConst()
ClassifyIV()
ProcessSCC()
DFS()
PrintSSAGraph()
Replace()
Reduce()
Apply()
}
class CopyPropagation {
run_on_ssa()
preprocess()
collect_all_assignments()
calculate_gen_and_killed_assignments()
print_gen_killed_sets_on_graph()
print_copy_propagation_for_block()
calculate_copy_propagation_for_blocks()
run_propagation()
print_copies_with_uses()
run_real_copy_propagation()
}
}
'''''''''''''''''''''''''''''''''''''''''''
Quad --> Destination
Quad --> Operand
BasicBlock -->Quad
Function -> BasicBlock
Program --> Function
'''''''''''''''''''''''''''''''''''''''''''
TheApp -> MainWindowFrame
MainWindowFrame -> CodeEditorFrame
MainWindowFrame -> GraphWindow
GraphWindow -> ImagePanel
MainWindowFrame -> LLVMIROptimizationWindow
MainWindowFrame -> ToyIROptimizationWindow
LLVMIROptimizationWindow --> FunctionSelectionWindow
ToyIROptimizationWindow --> FunctionSelectionWindow
ToyIROptimizationWindow --> GraphWindow
ToyIROptimizationWindow --> PassDescriptionWindow
'''''''''''''''''''''''''''''''''''''''''''
Pass <|--- ConstantFolding
Pass <|--- CopyPropagation
Pass <|--- LazyCodeMotion
Pass <|---- OperatorStrengthReduction
Pass <|---- SparseSimpleConstantPropagation
Pass <|---- SparseConditionalConstantPropagation
Pass <|----- SSAForm
Pass <|----- UselessCodeElimination
Pass <|----- GlobalValueNumbering
Pass <|-- CriticalEdges
Pass <|-- LiveVariableAnalysis
Pass <|-- ReachingDefinitions
Pass <|--- UseDefGraph
Pass <|--- DominatorTree
'''''''''''''''''''''''''''''''''''''''''''
ToyIROptimizationWindow -> Pass
ToyIROptimizationWindow --> Program
GraphWindow --> GraphWrite
@enduml | false | true | false | false | class |
ce2a7ea20e76a79d4acc1a8c8f99b30e63c3eacd | 1e3c0130941b6ee677f3b67b9cc75c34d4cebd7d | /docs/test_in_docs.puml | a4df4d78a30aa3179439c1e6f8515e099716807f | [] | no_license | rolfmadsen/plantuml | 971a6a5f910f54417dbf86181b754738ff05d03a | 36d605c14352a6be540da278b1b927ad504d9e4e | refs/heads/master | 2022-12-31T21:52:40.118899 | 2020-10-21T10:57:57 | 2020-10-21T10:57:57 | 262,092,653 | 0 | 0 | null | 2020-05-17T08:55:57 | 2020-05-07T15:47:26 | null | UTF-8 | PlantUML | false | false | 142 | puml | @startuml
title "Tester - Sequence Diagram"
actor User
boundary "Web GUI" as GUI
User -> GUI: Perform test.
GUI --> User: Tested!
@enduml
| false | true | false | false | sequence |
649a5aafde2ffdae7413ff5256b8d3f84b9ed95c | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductChangeSlugAction.puml | 6566f2a09753826b1e3fed6d9252bd7885db29a7 | [] | 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 | 491 | 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 ProductChangeSlugAction [[ProductChangeSlugAction.svg]] extends ProductUpdateAction {
action: String
slug: [[LocalizedString.svg LocalizedString]]
staged: Boolean
}
interface ProductUpdateAction [[ProductUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
c1864bb7299e0a476fde25bed3895e4bcd375b4d | aefb1807676f66cc46e45071b3deb1969e682322 | /SELAIN SISTEM/UML/SEQUENCE/user/changepassword.puml | deb1a58eddb59231be128be20a48cbe1fbb60111 | [
"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 | 1,028 | puml | @startuml
autonumber
hide footbox
title Mengubah Password Aktor
Actor Aktor
boundary Dashboard_V
boundary ChangePassword_V
control User_C
Entity User_E
User_C --> Dashboard_V: load->view()
Dashboard_V --> Aktor: Halaman Dashboard
Aktor --> Dashboard_V: klik menu ChangePassword
Dashboard_V --> User_C: ChangePassword()
User_C --> User_E:
User_E --> User_C:
User_C --> ChangePassword_V: load->view()
ChangePassword_V --> Aktor: Halaman change password
Aktor --> ChangePassword_V: Mengisi Inputan
note right of Aktor
Inputan current password, new password dan repeat password
end note
ChangePassword_V --> User_C: ChangePassword()
User_C --> User_E:
alt isValid() case
User_E --> User_C: isValid()
User_C --> ChangePassword_V: load->view()
ChangePassword_V --> Aktor: Halaman ChangePassword
else isInvalid() case
User_E --> User_C: isInvalid()
User_C --> ChangePassword_V: load->view()
ChangePassword_V --> Aktor: this field is required
end
@enduml | false | true | false | false | sequence |
155f0b4a15906a5ee8926ddcad0b96844c41ad68 | 206bd3e9c9a3d2c2becbdbdd7a27b980e4da959a | /diagrams/request_processing_getting_adresponse.puml | 6d68240082c1f88626fafe16170d61b86333c98f | [
"Apache-2.0"
] | permissive | bwsw/simple-rtb-exchange | 7051b1d3d54ad714603c4bc5ceef5b76fceb9a25 | c32cea4ab492d08b369e21841d7b6044f2bfba05 | refs/heads/master | 2021-01-12T08:19:33.232164 | 2016-12-16T05:19:33 | 2016-12-16T05:19:33 | 76,538,907 | 20 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,270 | puml | @startuml
title RTB request processing: getting AdResponse
participant RequestActor
participant BidRequestActor
participant BidActor
participant WinBidActor
participant Bidder
participant AdResponseFactory
participant Parser
participant Validator
participant Writer
activate RequestActor
create BidRequestActor
RequestActor -> BidRequestActor: new(BidRequest, AdRequest)
RequestActor -> BidRequestActor: HandleRequest
activate BidRequestActor
create BidActor
BidRequestActor -> BidActor: new
create WinBidActor
BidRequestActor -> WinBidActor: new
BidRequestActor -> BidActor: BidRequest
activate BidActor
BidActor -> Writer: BidRequest
activate Writer
Writer --> BidActor: HTTP request
deactivate Writer
BidActor -> Bidder: HTTP request
activate Bidder
opt Got HTTP response
BidActor <-- Bidder: HTTP response
deactivate Bidder
BidActor -> Parser: HTTP response
activate Parser
BidActor <-- Parser: BidResponse/Parsing fail
deactivate Parser
opt HTTP response parsed to BidResponse
BidActor -> Validator: BidResponse
activate Validator
BidActor <-- Validator: true/false
deactivate Validator
opt BidResponse is valid
BidRequestActor <<- BidActor: BidResponse
end
end
end
deactivate BidActor
BidRequestActor -> BidRequestActor: Auction
alt Win Bidder is found
BidRequestActor -> WinBidActor: Winner BidResponse
activate WinBidActor
opt BidResponse has winurl
WinBidActor -> Bidder: HTTP request
activate Bidder
opt If ad url/markup not in BidResponse
WinBidActor <-- Bidder: HTTP response
deactivate Bidder
end
end
BidRequestActor <-- WinBidActor: BidResponse with ad url/markup
deactivate WinBidActor
BidRequestActor -> AdResponseFactory: BidResponse
activate AdResponseFactory
BidRequestActor <-- AdResponseFactory: AdResponse
deactivate AdResponseFactory
else Win Bidder is not found
BidRequestActor -> AdResponseFactory: Error
activate AdResponseFactory
BidRequestActor <-- AdResponseFactory: AdResponse
deactivate AdResponseFactory
end
BidRequestActor ->> RequestActor: AdResponse
deactivate BidRequestActor
deactivate RequestActor
@enduml
| false | true | false | false | sequence |
20ad526d67e0f64d9e1906e6e2a3f5a2472b4072 | ddd9fceda7accb11f6e5c8f3614ee9b5a717d8e8 | /node/lib/timer.puml | 0745a42c3521840b34f2cfaf689cbf96032f6d97 | [] | 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 | 173 | puml | @startuml timer.puml
namespace lib {
namespace timer <<Public Module>> {
class TimerGlobal {
{static} setImmediate(cb, ...args): Immediate
}
}
}
@enduml
| false | true | false | false | class |
a3d181ca8549e6b18ea783666566bab73b498e41 | e73ea882ac887c3fc3239d25e145038117943699 | /sysl2/sysl/tests/epa-golden.puml | 509359070db254d74075926c3d792bc73fdb8e35 | [
"Apache-2.0"
] | permissive | sahejsingh/sysl | fcadeb3d52ceb0f6e93b804265d7be8052e1e68e | 42e22c3928f95b1cc1ca2d9bd1803bbcc4a54197 | refs/heads/master | 2021-05-13T19:10:32.619667 | 2019-08-05T02:46:14 | 2019-08-05T02:46:14 | 116,885,568 | 0 | 0 | null | 2018-01-10T00:08:18 | 2018-01-10T00:08:18 | null | UTF-8 | PlantUML | false | false | 808 | puml | ''''''''''''''''''''''''''''''''''''''''''
'' ''
'' AUTOGENERATED CODE -- DO NOT EDIT! ''
'' ''
''''''''''''''''''''''''''''''''''''''''''
@startuml
left to right direction
scale max 16384 height
hide empty description
skinparam state {
BackgroundColor FloralWhite
BorderColor Black
ArrowColor Crimson
}
state "IntegratedSystem" as X_0 <<highlight>> {
state "endpoint client" as _0 <<highlight>>
state "integrated_endpoint_1" as _1 <<highlight>>
}
state "Systema" as X_1 <<highlight>> {
state "endpoint" as _2 <<highlight>>
}
state "Systemb" as X_2 <<highlight>> {
state "endpoint" as _3 <<highlight>>
}
_1 -[#silver]-> _0
_0 -[#black]> _2 : <epa needsInt>
_1 -[#silver]-> _0
_0 -[#black]> _3 : <epa needsInt>
@enduml | false | true | false | false | state |
e87ffaece83d08b687e53b6c1709cfe24dbe664c | 56d2bad8bda60e486164d32f47f7b6e65dd1babe | /app/src/main/java/com/journear/app/ui/share/share.plantuml | 7e386455afb7bdb6e25403e5e91aa29237f54212 | [] | no_license | nikhilgirrajtcd/journear-neo | 27372763833899946bfacf2856d7bd69953c6b21 | 28d90bd4b93e049bcf0f80c0358ab1b88f3a52ee | refs/heads/master | 2022-04-23T11:33:29.383211 | 2020-04-27T15:09:41 | 2020-04-27T15:09:41 | 248,527,974 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 981 | plantuml | @startuml
title __SHARE's Class Diagram__\n
namespace com.journear.app {
namespace ui {
namespace share {
class com.journear.app.ui.share.MessagesFragment {
+ onCreateView()
}
}
}
}
namespace com.journear.app {
namespace ui {
namespace share {
class com.journear.app.ui.share.MessagesViewModel {
- mText : MutableLiveData<String>
+ ShareViewModel()
+ getText()
}
}
}
}
com.journear.app.ui.share.MessagesFragment -up-|> androidx.fragment.app.Fragment
com.journear.app.ui.share.MessagesFragment o-- com.journear.app.ui.share.MessagesViewModel : shareViewModel
com.journear.app.ui.share.MessagesViewModel -up-|> androidx.lifecycle.ViewModel
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 |
b1aec5751a4ae5cfc4610f40c28b95239b07ef2b | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/macros03_01/baseOperators/i130386/draft_macros_01_01.puml | 43c973c6bd1bc5059756851f6ebd5ff034260aba | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,362 | puml | @startuml doc-files/draft_macros_01_01.png
actor User
participant "<<analysis>>\nCellUI" as UI
participant "<<analysis>>\nCellCtrl" as ctrl
participant "<<analysis>>\nCell" as cell
participant "<<analysis>>\nFormula" as formula
participant "<<analysis>>\nFormulaCompiler" as formulaCompiler
participant "<<analysis>>\nExpressionCompiler" as expressionCompiler
participant "<<analysis>>\nExpression" as expression
User -> UI : string
activate UI
UI -> ctrl : setContnet(string)
activate ctrl
deactivate UI
ctrl -> cell : setContent(string)
activate cell
deactivate ctrl
cell -> formulaCompiler : compile(cell,string)
deactivate cell
activate formulaCompiler
deactivate formulaCompiler
formulaCompiler -> expressionCompiler : compile(cell,string)
deactivate formulaCompiler
activate expressionCompiler
expressionCompiler -> expression : create()
deactivate expressionCompiler
activate expression
expressionCompiler <-- expression : expr
deactivate expression
activate expressionCompiler
formulaCompiler <-- expressionCompiler : expr
deactivate expressionCompiler
activate formulaCompiler
formulaCompiler -> formulaCompiler : updateDependencies()
formulaCompiler -> formulaCompiler : fireContentChanged()
formulaCompiler -> formulaCompiler : reevaluate()
deactivate formulaCompiler
cell <-- formulaCompiler : formula
activate cell
deactivate cell
@enduml | false | true | false | false | usecase |
34117d2f82fd37d8bac0155e8933d882e5538086 | c69dba4cef780d27a126166ee912005507258413 | /src/design/unscented-kalman-filter-diagram.puml | 0ae9f410d4d752e0b19b4f3f564a18a84af28d70 | [
"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 | 5,059 | 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
skinparam arrowSize 1
package org.hipparchus #ECEBD8 {
package util #DDEBD8 {
interface UnscentedTransformProvider {
+ RealVector[] unscentedTransform(RealVector state, RealMatrix covariance)
+ RealVector getWc()
+ RealVector getWm()
}
class MerweUnscentedTransform
class JulierUnscentedTransform
MerweUnscentedTransform ..|> UnscentedTransformProvider
JulierUnscentedTransform ..|> UnscentedTransformProvider
}
package filtering.kalman #DDEBD8 {
interface "KalmanFilter<T extends Measurement>" as KalmanFilter_T {
+ estimationStep(measurement)
+ getPredicted()
+ getCorrected()
}
interface Measurement {
+ getTime()
+ getValue()
+ getCovariance()
}
package unscented #F3EFEB {
interface UnscentedProcess {
+ UnscentedEvolution getEvolution()
+ RealVector getInnovations()
}
class UnscentedEvolution {
+ RealVector[] getCurrentStates()
+ double getCurrentTime()
+ RealVector[] getCurrentMeasurements()
+ RealMatrix getProcessNoiseMatrix()
}
class "UnscentedKalmanFilter<T extends Measurement>" as UnscentedKalmanFilter_T {
- ProcessEstimate predicted
- ProcessEstimate corrected
- UnscentedTransformProvider utProvider
+ RealVector[] unscentedTransform()
+ predict(double time, RealVector[] predictedStates, RealMatrix noise)
+ correct(T measurement, RealMatrix innovationCovarianceMatrix, RealMatrix crossCovarianceMatrix, RealVector innovation)
}
UnscentedKalmanFilter_T o-->"1" UnscentedProcess : estimate
UnscentedKalmanFilter_T --> UnscentedEvolution
UnscentedKalmanFilter_T ..|> KalmanFilter_T
UnscentedProcess --> UnscentedEvolution : generate
Measurement <-- KalmanFilter_T : consume
UnscentedKalmanFilter_T *-up-> UnscentedTransformProvider
}
}
}
package org.orekit #ECEBD8 {
package estimation.sequential.unscented #DDEBD8 {
class UnscentedKalmanEstimator {
- UnscentedKalmanFilter filter
- UnscentedKalmanModel processModel
+ Propagator[] processMeasurements(List<ObservedMeasurement> measurements)
+ Propagator[] estimationStep(ObservedMeasurement<?> observedMeasurement)
}
class UnscentedKalmanEstimatorBuilder {
+ decomposer(MatrixDecomposer decomposer)
+ addPropagationConfiguration(Propagator propagator, CovarianceMatrixProvider initialCovariance)
+ unscentedTransformProvider(UnscentedTransformProvider transformProvider)
+ estimatedMeasurementsParameters(ParameterDriversList estimatedMeasurementsParams, CovarianceMatrixProvider provider)
+ UnscentedKalmanEstimator build()
}
class UnscentedKalmanModel {
- ParameterDriversList allEstimatedOrbitalParameters
- ParameterDriversList allEstimatedPropagationParameters
- ParameterDriversList estimatedMeasurementsParameters
- AbsoluteDate currentDate
- ProcessEstimate correctedEstimate
- List<NumericalPropagatorBuilder> builder
+ ProcessEstimate getEstimate()
+ AbsoluteDate getCurrentDate()
+ SpacecraftState[] getPredictedSpacecraftStates()
+ SpacecraftState[] getCorrectedSpacecraftStates()
+ RealMatrix getPhysicalEstimatedCovarianceMatrix()
}
UnscentedKalmanEstimator <-- UnscentedKalmanEstimatorBuilder : create
UnscentedProcess <|.left. UnscentedKalmanModel
UnscentedKalmanModel <-right-* UnscentedKalmanEstimator
UnscentedKalmanEstimator *-left-> UnscentedKalmanFilter_T
}
}
@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.