blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 5 227 | content_id stringlengths 40 40 | detected_licenses listlengths 0 28 | license_type stringclasses 2 values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 36 values | visit_date timestamp[us]date 2015-08-14 10:26:58 2023-09-06 06:45:32 | revision_date timestamp[us]date 2011-07-11 04:02:09 2023-09-04 16:40:12 | committer_date timestamp[us]date 2011-07-11 04:02:09 2023-09-04 16:40:12 | github_id int64 206k 631M ⌀ | star_events_count int64 0 6.51k | fork_events_count int64 0 1.54k | gha_license_id stringclasses 11 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 55 values | src_encoding stringclasses 12 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 16 1.74M | extension stringclasses 12 values | code stringlengths 16 1.74M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ef59fab9eec73ed75110ef6e20d7ed6cdc1bd2c6 | 13162cd3748438107bbecc7dcbc479db19871ddc | /Logisticky.plantuml | 6853f78ac6a27b1e230fd172fabfc4ab8ee6a350 | [] | no_license | MMichalec/Logisticky | 15dacd096d036fddb0cc1ae99da32e61f214dbb3 | 32209a6d21fc3b0c14c349e60fda0e198e95b848 | refs/heads/master | 2023-02-20T02:34:55.286226 | 2021-01-10T17:44:11 | 2021-01-10T17:44:11 | 313,981,382 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 108 | plantuml | @startuml
title __LOGISTICKY's Component Diagram__\n
class MainActivity {}
class Testerinio{}
@enduml
|
9caea91867184b3e98104567522f020707280c3c | 2e841d7c9852fe56135418d0e7efed07aca35935 | /CarritoCompra/CarritoCompraUML.puml | ca636892a677b9e51c7774a1c2c4965edb3c0a8a | [] | no_license | TheBanusco10/ejercicios-POO | d729f9e815c51feb258b4ef55beae338bd23de5f | b987f92c42194b3159869364a79d86ea0d288c98 | refs/heads/master | 2020-04-30T18:39:53.138964 | 2019-03-22T10:56:33 | 2019-03-22T10:56:33 | 177,015,301 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,146 | puml | @startuml
'hide fields
'hide methods
class CarritoCompra {
- articulos: Articulo[]*
- numArticulosSeleccionados: entero
+ void addArticulos(Articulo& articulo)
+ void borrarArticulos(Articulo& articulo)
+ string calcularPrecioFinaleIVA()
+ void incrementarArticulosMismoTipo(int id, int cuantos)
+ void reducirArticulosMismoTipo(int id, int cuantos)
+ void mostrarArticulos()
+ Articulo& getArticulo()
}
class Usuario {
- nombre: cadena
- apellido: cadena
- correoElectronico: cadena
- carritoCompra: CarritoCompra
+ string getNombre()
+ Usuario& cambiarNombre(string nuevoNombre)
+ string getApellido()
+ Usuario& cambiarApellido(string nuevoApellido)
+ string getCorreoElectronico()
+ Usuario& cambiarCorreoElectronico(string nuevoCorreo)
+ CarritoCompra& getCarritoCompra()
}
class Articulo {
- id: entero
- nombre: cadena
- precio: float
- descripcion: cadena
- cantidad: entero
+ int getID()
+ Articulo& setPrecio(float nuevoPrecio)
+ float getPrecio()
+ Articulo& setDescripcion(string nuevaDescripcion)
+ string getDescripcion()
+ int getCantidad() const
}
CarritoCompra o-"*" Articulo
Usuario *--"{1}" CarritoCompra
@enduml |
265cb40a4d8038561b9ec2a4999454be23456dbf | 1c0fe98b0301d645c33cbc26cc8f1ec1deb35664 | /ClassDiagram.puml | 275246bc56c987476657f20a2ea6762e482a08b1 | [] | no_license | ganesara/canvasDrawing | 79245d383a9dd2e727e9283a49ce291e1baaecc1 | 49aaabe884f35639a6aaf0880e9170026c89e5b2 | refs/heads/master | 2020-06-16T17:57:08.084066 | 2019-07-07T14:05:40 | 2019-07-07T14:05:40 | 195,657,422 | 1 | 0 | null | 2020-02-08T15:41:32 | 2019-07-07T13:56:02 | Kotlin | UTF-8 | PlantUML | false | false | 3,422 | puml | @startuml
class CanvasRunner
interface ICanvas
class CanvasConstants
class Canvas
class Pixel
class WidthBorder
class HeightBorder
class Status
enum StatusTypes
class Success
class Failed
class CanvasException
class Position
interface Painter
class BoxPainter
class FillPainter
class LinePainter
class RectanglePainter
class CanvasPainter
interface Command
class CommandParser
ICanvas <|-- Canvas
Canvas "..1*" *-- Pixel
Status <|-- Success
Status <|-- Failed
Pixel *-- Position : Contains
Pixel <|-- WidthBorder
Pixel <|== HeightBorder
Status o-- StatusTypes : Contains
Painter <|-- LinePainter
Painter <|-- BoxPainter
BoxPainter <|-- RectanglePainter
Painter <|-- FillPainter
Painter <|-- CanvasPainter
CanvasRunner o-- ICanvas : Contains
CanvasRunner o-- CommandParser : Contains
CommandParser o-- Painter : returns
enum StatusTypes {
SUCCESS
FAILED
}
class CanvasException {
- message: String
}
class Pixel {
- text: String
+ isBlank():Boolean
}
class Position {
+ x: Int
+ y: Int
}
class CanvasConstants {
+ WIDTH_BORDER_CHAR = "-"
+ HEIGHT_BORDER_CHAR = "|"
+ DEFAULT_DISPLAY_CHAR = " "
+ INVALID_TEXT_CHAR = "~"
+ LINE_DISPLAY_CHAR = "*"
}
interface ICanvas {
+ createCanvas(width: Int, height:Int): Boolean
+ printScreen()
+ isPositionAvailable(pos: Position): Boolean
+ isPositionWritable(pos: Position): Boolean
+ getPixelValueAt(pos: Position): String
+ setPixelValueAt() : Boolean
+ setPixelValueBetween() : List<Position>
+ writableChildrenOf(pos: Position): List<Position>
}
class Canvas {
+ pixels: Array<Array<Pixel>>
+ createCanvas(width: Int, height:Int): Boolean
+ printScreen()
+ isPositionAvailable(pos: Position): Boolean
+ isPositionWritable(pos: Position): Boolean
+ getPixelValueAt(pos: Position): String
+ setPixelValueAt() : Boolean
+ setPixelValueBetween() : List<Position>
+ writableChildrenOf(pos: Position): List<Position>
}
class Status {
+ status: StatusTypes
}
interface Painter {
+ validate(canvas: ICanvas): Status
+ paint(canvas: ICanvas) : Status
}
class BoxPainter {
- start: Position
- end: Position
+ validate(canvas: ICanvas): Status
+ paint(canvas: ICanvas): Status
}
class FillPainter {
- start:Position
- colour: String
+ validate(canvas: ICanvas): Status
+ paint(canvas: ICanvas): Status
- fillByBreadthFirstSearch(canvas: ICanvas) : Success
}
class LinePainter {
- start: Position
- end: Position
+ validate(canvas: ICanvas) : Status
+ paint(canvas: ICanvas): Status
}
class RectanglePainter {
+ validate(canvas: ICanvas): Status
}
class CanvasPainter {
+ paint(canvas: ICanvas): Status
}
class CommandParser {
- createPainterFunList: MutableList<(String) -> Painter?>
+ parse(cmd: String): Painter
- parseCommand(regex: Regex, string: String): MatchResult.Destructured ?
- createCanvasPainter(cmd: String):Painter?
- createFillCommandPainter(cmd: String): Painter?
- createLineCommandPainter(cmd:String): Painter?
- quiteCommandPainter(cmd: String) : Painter?
- fun rectangleCommandPainter(cmd: String): Painter?
}
class CanvasRunner {
+ main(args: Array<String>)
- canvas: ICanvas
- builder:CommandBuilder
- readLine(): String
~ executeCommand(command: String)
- executeConsoleCommands()
+ start()
}
@enduml |
2c592cc4a81bb9391661390df97b69ad48dfc41e | 912d65be9bbd436a671d948abe8dadf356eb5216 | /src/main/java/com/juc/concurrency/test2/test2.plantuml | bd9add5a22e673a73a876a988f3c866f17cfea47 | [] | no_license | ljhpole/netty-lecture | 02318e9992f488f03425c93b981e8718582b1b4b | a20bef9e6db5d1061a6f37ec0593087588ea1a0a | refs/heads/main | 2023-02-24T21:52:42.964037 | 2021-01-31T15:35:18 | 2021-01-31T15:35:18 | 334,686,240 | 0 | 1 | null | 2021-01-31T15:35:19 | 2021-01-31T15:19:40 | null | UTF-8 | PlantUML | false | false | 354 | plantuml | @startuml
title __TEST2's Class Diagram__\n
namespace com.juc.concurrency.test2 {
class com.juc.concurrency.test2.concurrencyTest3 {
}
}
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
|
9d19666ac4d8ca6628512d3fd617e1d46593bcff | 0a0e986dd1f62801857242e14aac97cb9a0108c4 | /Proj/docs/uml/colliders_composite.puml | cf484db9962b098e1a11009a63e329e299f57b8b | [] | no_license | JoaoCostaIFG/LPOO | 6bca97bcf5d65ca79b1d83ef322a70b9c14aa5a3 | 0db8aca4897f50d202ed695750c8ddf10ff100b7 | refs/heads/master | 2021-02-07T04:39:57.611429 | 2020-10-19T09:52:19 | 2020-10-19T09:52:19 | 305,335,228 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 643 | puml | @startuml
hide empty members
skinparam classAttributeIconSize 0
skinparam linetype polyline
skinparam shadowing false
abstract class Collider {
- position : Position
+ //collidesWith(col : Collider) : boolean//
+ changed(observable: Position)
}
class CompositeCollider {
- colliders : List<Collider>
+ collidesWith(col : Collider) : boolean
}
class RectangleCollider {
+ collidesWith(rect2 : RectangleCollider) : boolean
+ collidesWith(comp1 : CompositeCollider) : boolean
+ collidesWith(col : Collider) : boolean
}
CompositeCollider -up-^ Collider
RectangleCollider -up-^ Collider
Collider <--* CompositeCollider
@enduml
|
399ef186c37adc4ee1aa895a52b5d7b46e4f2d02 | 2c50e2c92ea1e2fa53f9c3f1871b9163c61a2e00 | /EyeOfBeholder.Uml.Tests/testData/Attributes.puml | 7d8e81bac64640c26c319e436dd31735d0fcfbbf | [] | no_license | piotr-polanski/EyeOfBeholder | 20a4cb3b15232bebc87793b2dc7e9412da9042c8 | 2222d267e565674084ce69c47bd039f492b878df | refs/heads/develop | 2021-03-19T16:51:42.063522 | 2017-06-06T07:33:55 | 2017-06-06T07:33:55 | 76,058,352 | 0 | 0 | null | 2016-12-10T09:42:41 | 2016-12-09T17:59:58 | C# | UTF-8 | PlantUML | false | false | 168 | puml | @startuml
class SomeArrayList {
+ publicAttribute : Object[]
- privateAttribute : String
# protectedAttribute : int
~ packagePrivateAttribute : dupa
}
@enduml |
dd5bbce0f5e6f71656641ba16620176a8596527c | 80217c9338ef64ae0f6405c63717d8849a2c12f8 | /logitud.puml | e68caf167e86c412fb025190fdc4753545eabc5d | [] | no_license | mybestfrien/logitud | 872b15d63f61f8fa8756a2cfb9781600aafc9c35 | 7562d85970d0c89d0b7716bf0fe5590d23879c42 | refs/heads/master | 2023-01-03T10:57:17.563379 | 2020-11-02T09:08:29 | 2020-11-02T09:08:29 | 306,322,269 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 481 | puml | @startuml
Epreuve "1" o-- "0..n" Participant
Epreuve "1" --* "0..n" Passage
Passage "0..2" *-- "1" Participant
Participant "1" o-- "0..n" Catégorie
Participant "1" o-- "0..n" Profil
class Epreuve {
-id
+date
+lieu
+participants
}
class Participant {
-id
#catégorie
#profil
+nom
+prénom
+date de naissance
+photo
+adresse mail
}
class Passage {
-id
#temps
#numéro
+participants
}
class Catégorie {
-id
+nom
+participants
}
class Profil {
-id
+nom
+participants
}
@enduml |
1e65171d58765d9b03abdd538b01508bd9eb7cb4 | 63a4d203dbdc07cb10dbb1eeb4f89a484633cb3f | /app/src/androidTest/java/com/example/vaughan/airlinereservation/airlinereservation.plantuml | 20f29f14c52309cc7ebd400fae07441b6b4baafa | [] | no_license | Vaughan-Andrews/Airline-reservation-app | d9eaccda080465c02ba4860cba1d729bf6264487 | bea2dcf9eaf5ee2b84783a22cad47860b3d3c621 | refs/heads/master | 2020-04-20T23:06:24.213325 | 2019-02-04T22:29:45 | 2019-02-04T22:29:45 | 169,160,057 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 385 | plantuml | @startuml
title __AIRLINERESERVATION's Class Diagram__\n
package com.example.vaughan.airlinereservation {
class ExampleInstrumentedTest {
+ useAppContext()
}
}
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
|
dab7fea2065098c3e406bf6e233f44611b2164e0 | dc20115738d63d9d0dbd16fab019785740465cc7 | /plantuml/Users/hunter/Coding/maternity-ward-system/SeniorDoctor.puml | 13eb506efc6e004d245fae92a07e11f425c5e6ef | [] | no_license | W0lfCr0w/maternity-ward-system | b2a9201111079ce3f638ff78cadb6aa9ecb4e04f | ee9aac0f52841c4083f1666dc4628f9c0d9b34af | refs/heads/main | 2023-06-06T10:33:10.231707 | 2021-06-29T10:20:54 | 2021-06-29T10:20:54 | 379,371,068 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 457 | puml | @startuml
class SeniorDoctor {
+ UniqueJobDescripition : string <<get>> <<protected set>>
+ MinimumMonthlyHours : int <<get>> <<protected set>>
+ SeniorDoctor(fname:string, lname:string, id:string, age:int, hours:double)
+ SeniorDoctor(fname:string, lname:string, id:string, age:int)
+ GetDecisionMakerBonusPay() : double
+ <<override>> EndOfMonthSalary() : double
}
Doctor <|-- SeniorDoctor
IDecisionMaker <|-- SeniorDoctor
@enduml
|
339942f01a6418673fd5ecbd440b82c435edcbcf | c2eabff17523c30c20b391cb7a434f9febccf0ea | /app/UML/CD.puml | ee211531e0158b68a2bbbfe094133f34fbbfb260 | [] | no_license | zedtran/AubieMemoryGame | 10712b31739ba25414ea544ee2b9c226279566b8 | 610263e65d65b3d4bf357acf4ca0e6450e60f41d | refs/heads/master | 2020-03-09T19:00:57.232471 | 2018-06-12T04:33:34 | 2018-06-12T04:33:34 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,417 | puml | @startuml
class AubieFragment {
mBoard
mGameOver
mScoreBoard
replayCount
View v
SoundPool sp
mToast
dbHelper
mAlertInputTypeText
onCreate()
onSaveInstanceState()
onCreateView()
onStop()
onStart()
void click()
setScore()
getFinalScore()
makeToast()
}
class AubieMainActivity {
onCreate()
}
class AubieSplashActivity {
onCreate()
}
class Board {
mRedLight
mBlueLight
mYellowLight
mGreenLight
mOrageLight
mLights[]
mScore
mInputNumber
mSequence
mAnimatorArray
choices[]
mDifficultyModifier
mDifficulty
Board()
updateBoard()
getScore()
getLight()
aubieSequence()
simonSequence()
checkInput()
playAnimation()
reset()
resetInputCount()
isAnimatorRunning()
getRedLight()
getBlueLight()
getYellowLight()
getGreenLight()
getDifficulty()
getDifficultyModifier()
describeContents()
writeToParcel()
createFromParcel()
newArray()
}
class HolderActivity {
onCreate()
boolean PLAY_ORIGINAL
}
class LeaderBoardsActivity {
dbHelper
mDatabase
mContext
onCreate()
onSaveInstanceState()
}
class Light {
mButton
mSound
mColor
SoundPool sp
mDifficultyModifier
Light()
getButton()
getColor()
addAnimation()
onAnimationStart()
onAnimationEnd()
onAnimationCancel()
onAnimationRepeat()
updateBoard()
}
class MainMenuActivity {
onCreate()
}
class OptionsActivity {
onCreate()
onPause()
SettingsFragment()
}
class ScoreboardDBContract {
DATABASE_VERSION
DATABASE_NAME
TEXT_TYPE
INT_TYPE
COMMA
SPACE
ScoreboardDBContract()
}
class ScoreboardDBHelper {
WHERE_CLAUSE
ScoreboardDBHelper()
onCreate()
onUpgrade()
addUserScore()
getTopTenUsers()
}
class User {
mUsername
mDateAdded
mId
mScore
getUserName()
getDateUserAdded()
getFormattedDate()
getID()
getScore()
setScore()
setID()
}
Board "1" -- "5" Light : Contains >
MainMenuActivity "1" -- "1" OptionsActivity
MainMenuActivity "1" -- "1" LeaderBoardsActivity
AubieFragment "1" -- "1" Board
AubieFragment "1" -- "1" ScoreboardDBHelper
ScoreboardDBHelper "1" -- "1" ScoreboardDBContract
AubieMainActivity "1" -- "1" MainMenuActivity : Launches >
User "*" -- "1" MainMenuActivity : makes selection >
AubieSplashActivity "1" -- "1" AubieMainActivity : Calls >
MainMenuActivity "1" -- "1" HolderActivity : Calls >
User "*" -- "1" LeaderBoardsActivity : gets added to >
HolderActivity "1" -- "1" AubieFragment : instantiates >
OptionsActivity "1" -- "1" AubieFragment : influences >
ScoreboardDBHelper "1" -- "1" LeaderBoardsActivity
ScoreboardDBContract "1" -- "1" LeaderBoardsActivity
@enduml |
5565e34d45436675d57b3ce44f37f6c2b36f9745 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Evaluation/ScheduleRuntimeClip.puml | 04f0a0ece162c2d53e36665e95e8fd85c29a0067 | [] | 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 | 584 | puml | @startuml
class ScheduleRuntimeClip {
+ <<override>> start : double <<get>>
+ <<override>> duration : double <<get>>
+ SetTime(time:double) : void
+ ScheduleRuntimeClip(clip:TimelineClip, clipPlayable:Playable, parentMixer:Playable, startDelay:double, finishTail:double)
+ <<override>> enable : bool <<set>>
+ <<override>> EvaluateAt(localTime:double, frameData:FrameData) : void
}
RuntimeClipBase <|-- ScheduleRuntimeClip
ScheduleRuntimeClip --> "clip" TimelineClip
ScheduleRuntimeClip --> "mixer" Playable
ScheduleRuntimeClip --> "playable" Playable
@enduml
|
7c231f2386d5baabbb17967c9ecf22b5c7207319 | dcca4c0aa19e3085bd37640a52b07fa02396b1d8 | /4.Behavioral Design Patterns/5.Mediator/src/main/java/com/javadesignpatterns/diagram/ClassDiagram.puml | 21d21454575939ed46e33f3201aa3fea47f2fdf0 | [] | no_license | drronidz/design-patterns-java-maven | 8df24c5bdd021dd45018faf3937b767609e880eb | aa580cd4cc6caa25a418a71bd5af06f86bd354a6 | refs/heads/main | 2023-07-15T15:26:04.451482 | 2021-08-25T23:45:35 | 2021-08-25T23:45:35 | 392,855,046 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,495 | puml | @startuml
'https://plantuml.com/class-diagram
interface Party {
+ addMember(PartyMember) : void
+ act((PartyMember, Action) : void
}
hide Party members
show Party methods
class PartyImpl implements Party{
PartyImpl()
act(PartyMember,Action) : void
addMember(PartyMember) : void
}
hide PartyImpl members
show PartyImpl methods
enum Action {
HUNT:Action
TALE:Action
GOLD:Action
ENEMY:Action
+ Action ()
+ toString () : String
}
Party .left.> Action
interface PartyMember {
joinedParty(Party) : void
partyAction(Action) : void
act(Action) : void
}
hide PartyMember members
show PartyMember methods
PartyImpl --> PartyMember
PartyMemberBase .right.|> PartyMember
PartyMemberBase -left-> Party
abstract class PartyMemberBase {
+ PartyMemberBase()
+ joinedParty(Party) : void
+ partyAction (Action) : void
+ act (Action) : void
+ toString() : String
}
hide PartyMemberBase members
show PartyMemberBase methods
PartyMemberBase <-- Rogue
PartyMemberBase <-- Hobbit
PartyMemberBase <-- Hunter
PartyMemberBase <-- Wizard
class Rogue {
+ Rogue()
+ toString() : String
}
hide Rogue members
show Rogue methods
class Hobbit {
+ Hobbit()
+ toString() : String
}
hide Hobbit members
show Hobbit methods
class Hunter {
+ Hunter()
+ toString() : String
}
hide Hunter members
show Hunter methods
class Wizard {
+ Wizard()
+ toString() : String
}
hide Wizard members
show Wizard methods
@enduml |
ff319460f1fcfd09563ff07ee8af74f5a0251a8e | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/blue/1090657/sp2/expression.puml | c85e3d9e95a8d63acb85220a190a4ebece82d22c | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 268 | puml | @startuml expression.png
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
hide empty methods
interface Reference {
evaluate() : Value
}
class SpreadsheetReference implements Reference
@enduml |
57f55c0a387dfed76e2aca0780ea75e1532ffa27 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/saft@0.13.1.puml | fbb15e0edf75120b71a5c036151cd1238233d7e0 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"CC-BY-4.0"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 1,157 | puml | @startuml
class org.accordproject.saft.Launch << (T,yellow) >> {
+ Double exchangeRate
}
org.accordproject.saft.Launch --|> org.accordproject.cicero.runtime.Request
class org.accordproject.saft.Terminate << (T,yellow) >> {
+ MonetaryAmount remainingFunds
+ MonetaryAmount totalInvested
}
org.accordproject.saft.Terminate --|> org.accordproject.cicero.runtime.Request
class org.accordproject.saft.Payout << (T,yellow) >> {
+ MonetaryAmount tokenAmount
+ String tokenAddress
}
org.accordproject.saft.Payout --|> org.accordproject.base.Transaction
class org.accordproject.saft.SaftContract << (A,green) >> {
+ String token
+ String company
+ BusinessEntity companyType
+ State state
+ Boolean amendmentProvision
+ MonetaryAmount purchaseAmount
+ CurrencyCode currency
+ MonetaryAmount netProceedLimit
+ DateTime date
+ DateTime deadlineDate
+ Double discountRatePercentage
+ String network
+ String coin
+ String exchanges
+ String companyRepresentative
+ String purchaser
+ String description
}
org.accordproject.saft.SaftContract --|> org.accordproject.cicero.contract.AccordContract
@enduml
|
2b5a5271a1b3393e28891a300f8f8c920b9dc01c | 7d1a79fbd31a95201d346d2c49afe2b61c903af3 | /docs/diagram-class.puml | 87b251206e86071dd7ebae73ad38bd4bf4420883 | [] | no_license | chervand/yii2-nav | 6f0aa3ff2b056568ca449ced6824b359f3cb38e8 | d67a068b636987ab0405d5fd2b99f89cdaca745f | refs/heads/master | 2023-08-11T09:49:25.799741 | 2016-03-01T13:38:11 | 2016-03-01T13:38:11 | 46,429,885 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 660 | puml | @startuml
namespace chervand.nav {
class Nav {
+ id : int
+ title : string
+ description : text
+ load () : Nav
}
class Assignment {
+ nav_id : int
+ type : int
+ assignment : string
}
class Item {
+ name : string
+ label : string
+ url : string
+ description : text
}
class ItemChild {
+ nav_id : int
+ parent_name : string
+ child_name : string
+ weight : int
}
Nav "1" -- "0..*" Assignment
Nav "1" -- "0..*" ItemChild
Item "1" -- "0..*" Item
ItemChild .. (Item, Item)
}
@enduml |
8c42b372aba4811b3042eccf35a56163c648a632 | d3a876dfe2851c165719340252ac30e60912f6e6 | /bg-manager/bg-designPattern/src/main/java/com/mhm/action/mediator/mediator.puml | 3638c9761bdc2a6980e850e7de11f69c1b17a075 | [] | no_license | 289562326/bigdata_mhm | 846af37dbc8a00580b3c0424f1cebc21d659c672 | 210636d2ea350c0228deccf1485d3d1a6eb4a39c | refs/heads/master | 2022-07-10T14:41:56.081002 | 2021-04-29T11:33:58 | 2021-04-29T11:33:58 | 190,759,465 | 0 | 0 | null | 2022-06-17T03:33:35 | 2019-06-07T14:42:09 | Java | UTF-8 | PlantUML | false | false | 498 | puml | @startuml
Mediator <|.. ConcreteMediator
Colleague <|-- AColleague
Colleague <|-- BColleague
Colleague --> Mediator
interface Mediator{
+register(Colleague colleague):void
+dispath(Colleague colleague):void
}
class AColleague {
+receive():void
+send():void
}
class BColleague {
+receive():void
+send():void
}
abstract class Colleague {
#Mediator mediator
+setMediator(Mediator mediator)
+receive():void
+send():void
}
class ConcreteMediator {
}
@enduml |
f280ff780c570df78437276b3499a4e8b6a03845 | b5ef9eb22daef82d8a931f1bb75289cd51dce61a | /doc/uml.plantuml | 1c3f92b98bf2ffef9f73c28cf667a1eff6f2dc24 | [] | no_license | mariomac/limerick | 2bc3ce8b288d30aa3ec9a4037ae67932ccd47cb3 | 34381ae12da15eeb7d21c719c087cca6fa87756f | refs/heads/master | 2020-04-10T04:05:37.214782 | 2018-12-07T07:37:20 | 2018-12-07T07:37:20 | 160,787,939 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,303 | plantuml | @startuml
hide circle
skinparam classAttributeIconSize 0
class InterfazGrafica {
+{static} TECLA_ARRIBA:int
+{static} TECLA_IZQUIERDA:int
+{static} TECLA_DERECHA:int
+{static} TECLA_R:int
+leeTeclaPulsada():int
+colocaImagen(archivo:String, fila:int, col:int)
}
class ControlJuego {
-nivelActual:int
+redibujaNivelActual()
+partida()
+cargaNiveles()
}
class Nivel {
-datosMap:char[][]
+inicializar()
+getCelda(f:int, c:int):Celda
+mueveCabeza()
}
class Celda {
-tipo:char
-fila:int
-columna:int
+intentaPasar(df:int, dc:int):int
+getImagen():String
+isVacia():boolean
+setTipo(tipo:char)
+empujar(f:int,c:int):int
}
class Cabeza {
-fila:int
-columna:int
-altura:int
+getFila():int
+getColumna():int
+isLimiteAltura():boolean
+actualizaPosicion(df:int, dc:int)
}
note as N1
contiene un array
de arrays bidimensionales
(es decir, un array de 3 dimensiones)
con los datos de cada nivel
end note
class DatosNiveles {
+{static} MAPAS char[][][]
}
N1 .right. DatosNiveles
ControlJuego .up.> DatosNiveles
ControlJuego -left-> InterfazGrafica : gui
ControlJuego -down-> "1..*" Nivel : niveles
Nivel <-left-> Cabeza
Celda --> Nivel
Nivel *--> "15x19" Celda
@enduml |
1a7bb67fb00ce3ba655d5b21b31d9d1993cc3f92 | f25a1ff7b99c78a4e932bff0a8d47efa9bc8f988 | /designpattern/adaptor.puml | b954b454cdc6b63ae8b3a80f73bd9219c5d05c67 | [
"Apache-2.0",
"BSD-3-Clause"
] | permissive | zhhongCai/mybatis-3 | bda1eb38e1ecd1a03518042bf1c05ae9bac4c030 | 3bde2f5305465682ff3fc5aaabaf6db77565ab0c | refs/heads/master | 2020-08-27T04:09:08.352011 | 2019-11-21T00:13:56 | 2019-11-21T00:13:56 | 217,238,620 | 1 | 0 | NOASSERTION | 2019-10-24T07:30:45 | 2019-10-24T07:30:42 | null | UTF-8 | PlantUML | false | false | 4,824 | puml | @startuml
interface org.apache.ibatis.logging.Log {
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
interface org.apache.commons.logging.Log
interface java.util.logging.Logger
interface org.apache.logging.log4j.Logger
interface org.apache.logging.log4j.spi.ExtendedLoggerWrapper
interface org.apache.log4j.Logger
interface org.slf4j.Logger
interface org.slf4j.spi.LocationAwareLogger
class JakartaCommonsLoggingImpl {
- final log Log
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
note top of JakartaCommonsLoggingImpl
将org.apache.commons.logging.Log接口
适配为org.apache.ibatis.logging.Log接口,比如:
@Override
public void error(String s) {
log.error(s);
}
end note
class Jdk14LoggingImpl {
- final log Logger
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class Log4jImpl {
- final log Logger
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class Log4j2AbstractLoggerImpl {
- final log ExtendedLoggerWrapper
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class Log4j2Impl {
- final log Log
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class Log4j2LoggerImpl {
- final log Logger
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class NoLoggingImpl {
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class Slf4jImpl {
- log Log
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class Slf4jLocationAwareLoggerImpl {
- final logger LocationAwareLogger
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class Slf4jLoggerImpl {
- final log Logger
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
class StdOutImpl {
+ isDebugEnabled() boolean
+ boolean isTraceEnabled() boolean
+ error(String s, Throwable e) void
+ error(String s) void
+ debug(String s) void
+ trace(String s) void
+ warn(String s) void
}
org.apache.ibatis.logging.Log <|-- JakartaCommonsLoggingImpl
org.apache.ibatis.logging.Log <|-- Jdk14LoggingImpl
org.apache.ibatis.logging.Log <|-- Log4jImpl
org.apache.ibatis.logging.Log <|-- Log4j2AbstractLoggerImpl
org.apache.ibatis.logging.Log <|-- Log4j2Impl
org.apache.ibatis.logging.Log <|-- Log4j2LoggerImpl
org.apache.ibatis.logging.Log <|-- NoLoggingImpl
org.apache.ibatis.logging.Log <|-- Slf4jImpl
org.apache.ibatis.logging.Log <|-- Slf4jLocationAwareLoggerImpl
org.apache.ibatis.logging.Log <|-- Slf4jLoggerImpl
org.apache.ibatis.logging.Log <|-- StdOutImpl
JakartaCommonsLoggingImpl *-- org.apache.commons.logging.Log
Jdk14LoggingImpl *-- java.util.logging.Logger
Log4jImpl *-- org.apache.log4j.Logger
Log4j2AbstractLoggerImpl *-- org.apache.logging.log4j.spi.ExtendedLoggerWrapper
Log4j2Impl *-- org.apache.ibatis.logging.Log
Log4j2LoggerImpl *-- org.apache.logging.log4j.Logger
Slf4jImpl *-- org.slf4j.Logger
Slf4jLocationAwareLoggerImpl *-- org.slf4j.spi.LocationAwareLogger
Slf4jLoggerImpl *-- org.slf4j.Logger
@enduml |
7899da6ef0cdc558dcc5957940cf58bf561e2189 | 1adc8b259fd10770eb7292d15ae0a9454dde685a | /uml/COdeOutline.puml | e996dc158dbb83978fe32bd3cca61a64a5a6307f | [] | no_license | jenna3708/Busch-cop3330-assignment4 | b1fa6fa1a95b2c78aaf8ce7c7d39fc63e05f7a92 | f9b65f92410b15e6ffbbf70e56e56cbe9c1f68fe | refs/heads/main | 2023-08-23T01:42:13.901838 | 2021-11-02T03:40:50 | 2021-11-02T03:40:50 | 423,688,621 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,566 | puml | @startuml
'https://plantuml.com/class-diagram
class list{
-string title
-arrayList<item> items
addItem()
deleteItem()
getTitle()
setTitle()
}
class item{
- String description
- Boolean complete
- Date dueDate
getDueDate()
getComplete()
getDescription()
setDueDate()
setDescription()
setComplete()
}
class gui{
main()
start()
}
class itemController{
showLists()
showIncompleteItems()
showCompleteItems()
markComplete()
showAllItems()
removeItems()
editDescription()
editDueDate()
}
class listController{
createList()
deleteList()
renameList()
getLists()
}
class externalStorage{
loadOneList()
loadMultipleLists()
saveAll()
}
class HelloApplication{
main()
start()
}
class HelloController{
getStartedButton()
titlePage()
}
class methodTesters{
addList()
deleteList()
renameList()
saveAll()
showAllItems()
showCompleteItems()
showIncompleteItems()
createList()
loadOneList()
loadMultipleLists()
editDescription()
editDueDate()
markComplete()
showLists()
}
javafx.Application <|-- gui
HelloApplication <|-- gui
HelloApplication - HelloController
gui - listController
listController- list
list-item
itemController -gui
itemController-item
list - externalStorage
methodTesters - itemController
methodTesters - listController
methodTesters - externalStorage
@enduml |
086f757749a6be59f3075b9574ed8e73c74f60b4 | 0a31283657cdb7a86cfc867574a587cc3b7809e6 | /Creational/StaticFactory/uml/StaticFactory.puml | d369025220a0055a18377f6c173c30db70f88400 | [] | no_license | rcj654020445/moshi | 96e42eff679036227faf9a60d2f5e92cfd05e616 | 71c329483f8270b09e91332cafdfdc0bb5bb8301 | refs/heads/master | 2021-01-19T02:27:12.290525 | 2017-04-28T10:29:50 | 2017-04-28T10:29:50 | 87,278,626 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 237 | puml | @startuml
interface FormatterInterface{
}
class FormatterNumber implements FormatterInterface{
}
class FormatterString implements FormatterInterface{
}
class StaticFactory{
+ {static} creteFormatter(FormatterInterface $type)
}
@enduml |
9ed974fd47f4410372333d032506f62f5b0689b5 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedQuoteTransitionStateAction.puml | 749151062bdc8599741958d72e390d5793cae33c | [] | 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 | 537 | 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 StagedQuoteTransitionStateAction [[StagedQuoteTransitionStateAction.svg]] extends StagedQuoteUpdateAction {
action: String
state: [[StateResourceIdentifier.svg StateResourceIdentifier]]
force: Boolean
}
interface StagedQuoteUpdateAction [[StagedQuoteUpdateAction.svg]] {
action: String
}
@enduml
|
0399a4a0c3a460521320b1cef95136405725bfa9 | c8921fe77a5927904ac3c04bfd080851403dab94 | /uml/uml2/bunH.puml | 757b6b181568d9307fa9a3ec9a954dcb5515ede6 | [] | no_license | turanukimaru/fehs | cc06f5a3d007a2633373d09281304571e132748b | 8764ad4521c7a0f66a911578b536f9be4e598fdb | refs/heads/master | 2021-06-03T05:53:52.465995 | 2020-04-19T18:59:06 | 2020-04-19T18:59:06 | 111,425,822 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,141 | puml | @startuml
class 盤{
matrix : 駒[][]
載せる(駒, 座標)
動かす(駒, 座標)
取り除く(駒)
}
class 地形{
matrix : 地形[][]
}
class 駒{
動かす(座標)
}
class 経路探索駒{
移動可能方向() : Int[]
移動可能か?(侵入状況) : Boolean
何歩使ったか?(侵入状況) : Int
停止可能か?(侵入状況) : Boolean
}
class 能力{
移動範囲を得る()
全ての能力に共通のルール()
}
class 個々の能力{
}
class 移動可能な盤面{
移動matrix : bool[][]
経路を探索する()
}
class 侵入状況{
対象 : 駒?
歩数 : Int
侵入角 : Int[]
地形 : 地形?=null
}
盤 -> "載る" 駒
盤 o-- "天候とかも" 地形
駒 -left-> "自分を動かす" 盤
'人 -left-> "動かす" 駒
駒 -right-> 能力
個々の能力 -up-|> 能力
駒 -->"作成" 移動可能な盤面
移動可能な盤面 -up-> 盤
経路探索駒 -up-|> 駒
'経路探索駒 --> "探索" 移動可能な盤面
移動可能な盤面 --> "一歩進む" 移動可能な盤面
移動可能な盤面 --> "移動先を提供して判定させる\n移動可能方向を参照" 経路探索駒
@enduml |
7ceb555cd249637771e359fed8809f264f6bfa22 | 9bcd4da5e5454922139d0afefc782a997988ad1f | /docs/SprintD/US/US14/US14_MD.puml | 703176b8e2046da2e97f5c94954f8e6767a111b4 | [
"MIT"
] | permissive | wjacoud/DynaByte | 13f042b210f17830aa3eb31558d3f83d587ab436 | 3ac6b5e2d2e7559ec3e230db7848a1b43d3b40e3 | refs/heads/main | 2023-08-27T09:20:01.825322 | 2021-11-11T17:15:05 | 2021-11-11T17:15:05 | 427,082,047 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 403 | puml | @startuml
hide methods
left to right direction
skinparam classAttributeIconSize 0
class Company{
-chemicalLab
}
class TestDiagnosis {
-information
}
class TestReport{
-information
}
class Test{
-idTest
-nhsCode
-tin
-creationDate
-state
}
Company "1" -- "*" TestDiagnosis : can acess >
Company "1" -- "*" Test : performs >
TestDiagnosis "1" -- "1" TestReport : information used to create >
@enduml |
0aec20dc7040a82b81262611e970e431362cce2d | 9fb800bced4689dc1cd56f5fd38f288062d5140c | /src/utility/Application.Utility/TestUtility/ProjectUtility.puml | 5210e3ba2069478341d623b6bb9807a8b211406a | [] | no_license | converge-app/uml-diagrams | b0638f3b801ced52b650025b1b81d29f4ff345fe | 4202d41a464838d7604062e407b065bf512ad8d6 | refs/heads/master | 2020-11-25T09:53:56.136779 | 2019-12-17T12:11:29 | 2019-12-17T12:11:29 | 228,607,152 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 242 | puml | @startuml
class ProjectUtility <<static>> {
+ {static} <<async>> CreateProject(project:HttpClient, user:ProjectCreationData, isLocal:bool) : Task<ProjectData>
+ {static} GenerateProject(ownerId:string) : ProjectCreationData
}
@enduml
|
98a1a3e40d93db2aaae9b7f86a39263847a3e54a | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/patterns/singleton-example.puml | 94fca514f8ba1131a82e6de469c6265515dce09f | [
"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 | 148 | puml | @startuml
package singleton {
class EnumIvoryTower {
- _instance {static}
+ __new__(*args, **kwargs)
+ __str__() : str
}
}
@enduml
|
fccad5834a27746d435dea309c6d52d4e9cb81c1 | 1cf4490d48f50687a8f036033c37d76fec39cd2b | /src/main/java/global/skymind/training/advanced/gui/swing/ex6/ex6.plantuml | 83e31ca5bf513c04736805190f342bd32c091772 | [
"Apache-2.0"
] | permissive | muame-amr/java-traininglabs | 987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83 | a93268f60e6a8491b1d156fae183a108ff0d9243 | refs/heads/main | 2023-08-06T10:04:57.996593 | 2021-09-28T11:21:00 | 2021-09-28T11:21:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 716 | plantuml | @startuml
title __EX6's Class Diagram__\n
namespace global.skymind {
namespace training.advanced.gui.swing.ex6 {
class global.skymind.training.advanced.gui.swing.ex6.MySFileChooser {
~ button : JButton
+ actionPerformed()
{static} + main()
+ start()
}
}
}
global.skymind.training.advanced.gui.swing.ex6.MySFileChooser .up.|> java.awt.event.ActionListener
global.skymind.training.advanced.gui.swing.ex6.MySFileChooser -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
|
8fe52b9b7b7c2c49f5b9befa53f3b687fbfeee9b | e7b7df0cf36cf83e9c440c3a81f4f85193e37a72 | /3 Class Diagram/19b Automatic namespace creation.puml | e712f4c709a607f3d5f6a36b5658b862a78db889 | [
"MIT"
] | permissive | jys129/PlantUML | 38dd154cc9a45d3206abf26f95bfb45e32d4c186 | f0e62bf90332a1a541ded76d2101ebdd9215adaa | refs/heads/master | 2023-03-16T15:54:12.053012 | 2020-10-18T15:49:08 | 2020-10-18T15:49:08 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 85 | puml | @startuml
set namespaceSeparator none
class X1.X2.foo {
some info
}
@enduml |
164d3d2077a886c83c6dc86db8602bac63e60e3c | 838f10b6f5e7227097f03d5e19c9b98c7ed9bd52 | /04/04_class.puml | cad130e2510700ab3731acd80bcd4185fe3dc2ff | [] | no_license | maiyama18/modeling-cafe | 13c53d8e8f2740f8c7bc74fb6f7aa228bb54dddf | 63999b34398ad9e878ab6466f25492898b1a4c4a | refs/heads/master | 2020-12-04T08:26:36.085436 | 2020-01-05T13:51:30 | 2020-01-05T13:51:30 | 231,694,482 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 456 | puml | @startuml
class "トラック" as Track {
テーマ
会場
}
class "時間帯" as TimeBlock {
番号
開始時刻
終了時刻
}
class "プログラム" as Program {
}
class "食事" as Meal {
名称
}
class "講演" as Talk {
タイトル
}
class "講演者" as Talker {
名前
}
Program "1..*" -up- "1" Track
Program "1..*" -up- "1" TimeBlock
Program <|-- Talk
Program <|-- Meal
Talk "*" -- "1.*" Talker
@enduml
|
7482728d315c19241451e6fb529353314b7c1983 | 06b4f9b29e51db9eef79b9f9828f3aa369840ec1 | /src/test/java/inf112/skeleton/app/app.plantuml | 11011c2b82f1ae6267e88501a4c6930a681aaa81 | [] | no_license | inf112-v19/Thebadguys | d650f57d5b23824e82498cfc55c7026d29a59762 | ec1cbbd1ab466b1482fb0a72b466f351481d4917 | refs/heads/master | 2020-04-19T11:14:13.465654 | 2019-05-03T17:29:09 | 2019-05-03T17:29:09 | 168,161,605 | 0 | 0 | null | 2019-03-08T14:24:40 | 2019-01-29T13:44:35 | Java | UTF-8 | PlantUML | false | false | 2,612 | plantuml | @startuml
title __APP's Class Diagram__\n
package inf112.skeleton.app {
class CardsTest {
~ test : float
+ createCardTest()
+ createCardSlotTest()
+ createDeckTest()
+ addCardToDeckTest()
}
}
package inf112.skeleton.app {
class GridTest {
+ gridSetGetTest()
+ mapGetCellTest()
}
}
package inf112.skeleton.app {
class RobotTest {
~ posX : int
~ posY : int
~ startpos : int[]
~ random : Random
~ randInt : int
~ randBool : boolean
+ createRobotTest()
+ robotGettersSettersTest()
+ damageTest()
+ damageTest2()
+ damageTest3()
+ damageLivesTest()
+ damageLivesTest2()
+ damageLivesTest3()
+ robotSpinRightTest()
+ robotSpinLeftTest()
}
}
package inf112.skeleton.app {
class TestBot {
+ sprite : Sprite
- alive : Boolean
- posX : int
- posY : int
- checkpoint : int[]
- flagsPassed : int
- lives : int
- damage : int
- tilePixelWidth : int
- tilePixelHeight : int
- tiledMap : TiledMap
- turn : int
- powerdown : boolean
+ TestBot()
+ getAlive()
+ getPosX()
+ getPosY()
+ getSprite()
+ getCheckpoint()
+ getFlagsPassed()
+ getDirection()
+ getLives()
+ getDamage()
+ getTilePixelWidth()
+ getTilePixelHeight()
+ getPowerdown()
+ setPowerdown()
+ moveSprite()
+ rotateSprite()
+ setTurn()
+ setAlive()
+ setCheckpoint()
+ setFlagsPassed()
+ setDirection()
+ setPosX()
+ setPosY()
+ setDamage()
+ setLives()
+ rotate_right()
+ rotate_left()
+ moveForward()
+ move()
+ died()
+ takeDamage()
+ checkNext()
+ canMove()
}
}
CardsTest o-- Cards : testCard
CardsTest o-- CardSlots : testCardSlot
CardsTest o-- Deck : deck
RobotTest o-- IRobot : robot
RobotTest o-- Direction : randDir
TestBot -up-|> IRobot
TestBot o-- CardHandler : cardHandler
TestBot o-- Direction : dir
TestBot o-- GameMap : gameMap
TestBot o-- ExpressBelt : ebelt
TestBot o-- Belt : belt
TestBot o-- Spin : spin
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
|
7f440514bdda3b966dc001a07a366698b9f8a128 | 651036ebd767bdf052e448b4fbf9b443219a5d1e | /report/images/remoteobjstorage.iuml | df2d7259a144c40ebbf0a01b71b58f8f09f5419c | [] | no_license | qcampos/swh-report | c0c6f8f039425ac84460bd436dfb60fd29bc77f3 | 17a9240dc3c43f7ba19a4c1d9562127fe1f6ff2c | refs/heads/master | 2021-03-22T04:27:49.723489 | 2016-09-12T09:11:11 | 2016-09-12T09:11:11 | 66,589,749 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 74 | iuml | class RemoteObjStorage {
-str: server_url
-int: server_port
}
|
ea7fc8e1e683793556de1f44174bd36a7c7161f8 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/serviceability/offeringQualification/media/extension_pattern.puml | 9c8d3b3cb20f71346cb9df9e7961c9784ae6a3ff | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 1,338 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
ClassBorderColor<<ProductSpecification>> FireBrick
}
set namespaceSeparator none
class AlternateProductOfferingProposal {
}
AlternateProductOfferingProposal *-->"1" MEFAlternateProduct : alternateProduct
class MEFAlternateProduct {
productOffering*: ProductOfferingRef
productSpecification: ProductSpecificationRef
}
class MEFAlternateProduct {
}
class MEFProductConfiguration {
@type*: string <<discriminator>>
}
MEFAlternateProduct *-->"1" MEFProductConfiguration : productConfiguration
class MEFProductRefOrValue {
id: string
href: string
place: RelatedPlaceRefOrValue
productOffering: ProductOfferingRef
productRelationship: ProductRelationshipWithGrouping
productSpecification: ProductSpecificationRef
}
MEFProductRefOrValue *--> MEFProductConfiguration : productConfiguration
class urn:mef:lso:spec:sonata:OperatorUNI:1.0.0:poq <<ProductSpecification>> {
<<... attributes are skipped ...>>
}
MEFProductConfiguration <|-- "urn:mef:lso:spec:sonata:OperatorUNI:1.0.0:poq"
class urn:mef:lso:spec:sonata:AccessElineOvc:1.0.0:poq <<ProductSpecification>> {
<<... attributes are skipped ...>>
}
MEFProductConfiguration <|-- "urn:mef:lso:spec:sonata:AccessElineOvc:1.0.0:poq"
@enduml
|
c635386f53a9a69c4d21f03cad927a90e8ffe3f2 | f5f59016295a183565af167a861e2c8db9f1b070 | /diagrams/src/lib/utility/Application.Utility/Startup/Security.puml | ec9f1af3f172295f473c07d72224dec431a41228 | [
"MIT"
] | permissive | converge-app/collaboration-broker-service | fb21788289134c265f1cd5db3ceaa3f32ba18406 | 69c676a5bbb3e602f939f9c91680560a6c63926a | refs/heads/master | 2023-03-19T11:36:58.937045 | 2019-12-17T12:06:26 | 2019-12-17T12:06:26 | 218,333,241 | 0 | 0 | MIT | 2023-03-04T01:16:20 | 2019-10-29T16:29:32 | C# | UTF-8 | PlantUML | false | false | 147 | puml | @startuml
class Security <<static>> {
+ {static} AddTokenValidation(services:IServiceCollection, secret:string) : IServiceCollection
}
@enduml
|
95e187eedfb2ef1949571a083d7a3632ff2ccb5c | cce29a57ba4a057a882f22a930a104546431ccc4 | /ch3/meditator/classdiagram_meditator.puml | 47ffec63b4af5b3c0ec85935c0f56c383728f166 | [] | no_license | Jonghwanshin/embedded_design_pattern | 9c98654aa7016ed36f2c7e8bc6db42b013e84160 | 751ac291d27a336060144c8d805406aa18d5926f | refs/heads/master | 2021-04-26T04:39:32.035639 | 2019-10-05T04:24:36 | 2019-10-05T04:24:36 | 124,033,966 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,458 | puml | @startuml Meditator Example
interface iRotationgJoint{
getRoatation() : int
rotate(int x) : int
zero() : int
}
interface iSlidingJoint{
getLength() : int
setLength(int x) : int
zero() : int
}
class Action{
rotatingArmJoint1 : int
rotatingArmJoint2 : int
rotatingArmJoint3 : int
rotatingArmJoint4 : int
slidingArmJoint1 : int
slidingArmJoint2 : int
slidingArmJoint3 : int
slidingArmJoint4 : int
manipulatorForce : int
manipulatorOpen : int
}
class RobotArmManager{
nSteps: unsigned int
currentStep: unsigned int
status : int
graspAt(int x, int y, int z, int t): int
computeTrajectory(int x, int y, int z, int t): int
executeStep() : int
zero() : int
}
class RoatatingArmJoint{
angle : int
deviceId: char
getRoatation() : int
rotate(int x) : int
zero() : int
}
class GraspingManipulator{
deviceId : char
maxForce : int = 0
open(): int
close() : int
setMaxForce(int m) : int
getClosure() : int
}
class SlidingArmJoint{
currentLength : int
deviceId : char
minArmLength : int
maxArmLength : int
getLength() : int
setLength(int x) : int
zero() : int
}
RobotArmManager --> "100" Action
RobotArmManager --> "4" RoatatingArmJoint
RobotArmManager --> "1" GraspingManipulator
RobotArmManager --> "2" SlidingArmJoint
RoatatingArmJoint --|> iRotationgJoint
SlidingArmJoint --|> iSlidingJoint
@enduml |
3a906062b9485ea0c589506b2dfa6a223b51b7f3 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitSetDefaultBillingAddressAction.puml | 140c9fc539abb9bfb6b0abc33dc77d319b08cd37 | [] | 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 | 519 | 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 BusinessUnitSetDefaultBillingAddressAction [[BusinessUnitSetDefaultBillingAddressAction.svg]] extends BusinessUnitUpdateAction {
action: String
addressId: String
addressKey: String
}
interface BusinessUnitUpdateAction [[BusinessUnitUpdateAction.svg]] {
action: String
}
@enduml
|
5fc427f63823c6b86c7d76dc92585a76878bd295 | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /serviceSchema/carrierEthernet/uml/carrierEthernetService.puml | 972af9e4f200a3901904c0eef7a4e6291ef3f601 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 768 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class CarrierEthernetService {
administrativeState: AdminState[1]
operationalState: OperationalState[1]
cTagPcpPreservation: EnabledDisabled[1]
cTagDeiPreservation: EnabledDisabled[1]
connectionType: ConnectionType[1]
frameDisposition: FrameDisposition[1]
listOfCosNames: String[1..*]
maximumFrameSize: PositiveInteger[1]
availableMegLevel: AvailableMegLevel[0..1]
carrierEthernetSls: CarrierEthernetSls[0..1]
}
class CarrierEthernetEvc {
"...attributes are not shown"
}
class CarrierEthernetOvc {
"...attributes are not shown"
}
CarrierEthernetService <|-- CarrierEthernetEvc
CarrierEthernetService <|-- CarrierEthernetOvc
@enduml |
ab06ac63cdcd3c56fe1451bfa8fd64f01f37ac8f | fabe9afc4a163305992527dddc758cecc7f975f8 | /doc/request-matcher.puml | 99c41e6313351033090fa6df393947deb056f1cb | [
"MIT"
] | permissive | n1215/http-request-matcher | 48664f38c6afb232a86104b40e55f7f301ef0e15 | 327e950e96c85f84d129580292c3b88e532fe33c | refs/heads/master | 2022-03-28T14:48:00.917755 | 2020-01-11T10:20:25 | 2020-01-11T10:29:21 | 112,817,229 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,186 | puml | @startuml
package N1215\Http\RequestMatcher {
interface RequestMatchResultInterface {
+ isSuccess(): bool
+ getParams(): array
}
note bottom of RequestMatchResultInterface: Holds whether matched or not, and matched params.
interface RequestMatcherInterface {
+ match(RequestInterface $request): RequestMatchResultInterface
}
note bottom of RequestMatcherInterface: matcher for PSR-7 request
Psr\Http\Message.RequestInterface --> RequestMatcherInterface: input
RequestMatcherInterface --> RequestMatchResultInterface: output
interface ServerRequestMatcherInterface {
+ match(ServerRequestInterface $request): RequestMatchResultInterface
}
note bottom of ServerRequestMatcherInterface: matcher for PSR-7 server request
Psr\Http\Message.ServerRequestInterface --> ServerRequestMatcherInterface: input
ServerRequestMatcherInterface --> RequestMatchResultInterface: output
}
namespace Psr\Http\Message {
interface RequestInterface
note top of RequestInterface: PSR-7 server request
interface ServerRequestInterface
note top of ServerRequestInterface: PSR-7 server request
}
@enduml |
b11e6c92b5462a21256e24a30efb05846ead0207 | bbd445af163123afc512986dc4e69bf39946a718 | /leither-springitfarm/leither-springitfarm/src/main/java/arm/iot/sec/proxy/cglib/Test.puml | c18e1dc444a7cc8043c4897fe26c972d4d247fc1 | [] | no_license | long437611591/leither-learning | 6216e38662e2b045e1784651111f6d1c0765b63d | a9189d9f97f153034de0f972d830681f881ea52f | refs/heads/master | 2022-12-04T15:03:05.353300 | 2020-08-18T15:13:46 | 2020-08-18T15:13:46 | 285,238,265 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 59 | puml | @startuml
class ConfigurationClassPostProcessor{}
@enduml |
bb9d14d2b9b147e234f8c5fc2f2a4d81ebe594e6 | f16bbddd5bab88fa7b338cf125ebfb11d8518e54 | /Tower_Defense_Maxime_LANGLET/out/production/Tower_Defense/sample/diagram_PNJ.puml | 69604ff4c8017a9b4aba96df08ce53ae67f4c221 | [] | no_license | Maxlanglet/Tower-Defense-with-JAVAFX | 4a56f702f792b4b602a852eb8e0452a5064c48e0 | 1e96def9a690499ec3ac8c0e5e099264315b1b97 | refs/heads/master | 2022-06-26T03:50:20.730985 | 2020-05-11T16:53:25 | 2020-05-11T16:53:25 | 263,100,332 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,334 | puml | @startuml
!define DARKBLUE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
' your UML '
scale 0.6
Waves o-- "*" PNJ
PNJ "1"*--"1" HealthBar : has
PNJ "1"*--"1" path : has
(PNJ, path) ... HealthBar
PNJ <|--- LightEnemy
PNJ <|--- HeavyEnemy
class Waves{
- pnjs : ArrayList<PNJ>
- wave_num : int
- mult_num : int
- stackPane : StackPane
- grid : grid
- labels : Ressources
- isGameOver : boolean
- timer : Timeline
"constructor" Waves(stackPane : StackPane, grid : grid, labels : Ressources)
- update()
- spawn_wave()
- spawn_Light_Enemy()
- spawn_Heavy_Enemy()
- isNewWave()
+ setGameOver()
+ newGame()
}
class path{
- X : List<Integer>
- Y : List<Integer>
- X2 : List<Integer>
- Y2 : List<Integer>
- pathTransition : PathTransition
- PNJpath : Path
- r : Random
- random : int
- path12 : int
- repositionX : int
- repositionY : int
- duration : Duration
"constructor" path(duration : Duration, ressources : Ressources)
"constructor" path( repositionX : double, repositionY : double, path12 : int, duration : Duration, ressources : Ressources)
+ setNode(node : Node)
+ newLevel()
+ size() : int
}
abstract class PNJ {
# health : HealthBar
# healthpath : path
# isAlive : boolean
# path : path
# dammage : int
# sante : double
# duration : Duration
# ressources : int
# pane : Pane
# hitbox : ImageView
# spawnx : double
# spawny : double
# wave : Waves
# lables : Ressources
# stackPane : StackPane
- timer : Timeline
"constructor" PNJ(stackPane : StackPane, grid : grid, wave : Waves, labels : Ressources)
+ setPause()
+ setPlay()
+ isInvisible() : boolean
+ update()
+ isDead() : boolean
+ doDamage()
+ removePNJ()
+ setDead()
}
class LightEnemy{
"constructor" LightEnemy(stackPane : StackPane, grid : grid, wave : Waves, labels : Ressources)
}
class HeavyEnemy{
"constructor" HeavyEnemy(stackPane : StackPane, grid : grid, wave : Waves, labels : Ressources)
}
class HealthBar{
- rectInt : Rectangle
- innerWidth : double
"constructor" HealthBar(path : path)
+ getDammage(value : double)
+ getHealth() : double
}
@enduml |
385e969a6f1050ef4a58778409731b3bb47dc677 | be25988f97a06377c2cd37ba2cf6c1a378fa02e1 | /packages/governance/docs/contractGovernance.puml | 1e16156bf4e68bc8b570cdfb35ddcc98711ca680 | [
"Apache-2.0",
"MIT",
"BSD-3-Clause"
] | permissive | Agoric/agoric-sdk | bea28b730ecb59433b1b963571f2a809ce4ae5c1 | 0cc126ec803bb3eeff9c94d950e679dfa3db4d6a | refs/heads/master | 2023-08-31T13:19:11.750920 | 2023-08-31T03:13:41 | 2023-08-31T03:13:41 | 219,012,610 | 319 | 203 | Apache-2.0 | 2023-09-14T18:20:17 | 2019-11-01T15:30:18 | JavaScript | UTF-8 | PlantUML | false | false | 1,466 | puml | @startuml contractGovernance
package "GovernedContract Vat" <<Rectangle>> {
Object ParamManager {
paramDesc[] { name, type, value }
--
+getParams()
+getParam()
-updateFoo()
}
class GovernedContract {
<i>verifiable</i>: Governor, params, governedApis
--
+terms: { electionManager, governedParams }
+getState()
-getParamMgrRetriever()
}
note left : calls buildParamManager(paramDesc);\nmakes paramMgr state public\nreturns paramMgr in creatorFacet
}
class "ContractGovernor\n(an ElectionManager)" as ContractGovernor {
<i>verifiable</i>: governedInstance, electorateInstance
--
+getElectorate()
+getGovernedContract() - the governed instance
+validateVoteCounter()
+validateElectorate()
+validateTimer()
--
-voteOnParamChange()
-voteOnApiInvocation()
-getCreatorFacet() - The unrestricted part of the governed contract's creatorFacet
}
note left : ContractGovernor starts GovernedContract.\nvoteOnParamChange() and voteOnApiInvocation()\nshould be tightly held. getCreatorFacet()\nis for the contract's creator.
class Electorate {
Questions
===
-addQuestion()
}
GovernedContract ..> ParamManager : creates >
GovernedContract --> ParamManager : access\nto params
ContractGovernor ..> GovernedContract : creates >
ContractGovernor --> Electorate
ContractGovernor ==> ParamManager : manages\nparams
@enduml
|
3a7ce67715210633d683a1b09f3a8a838787e6d5 | 40d2d1ea69278efa8c40813a22359d097e358765 | /docs/assets/puml/iterator.puml | 540d7188c01259984003aa6421189150a7147487 | [
"Apache-2.0"
] | permissive | diguage/deep-in-design-patterns | 13da7f045b6bef0237fd65524c50187eaf9b4b29 | fa7a1eb1efadb35ce45161eac5f27b27d4452b51 | refs/heads/master | 2022-08-27T10:18:16.532561 | 2022-07-31T10:08:04 | 2022-07-31T10:08:04 | 158,669,757 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 987 | puml | @startuml
title "**迭代器模式**"
abstract class Iterator {
+ {abstract} first() :Object
+ {abstract} next() :Object
+ {abstract} isDone() :boolean
+ {abstract} currentItem() :Object
}
note top: 迭代抽象类,用于定义得到开始对象、\n得到下一个对象、判断是否到结尾、\n当前对象等抽象方法,统一接口。
class ConcreteIterator
note bottom: 具体迭代器类,继承 Iterator,\n实现开始、下一个、是否结尾、\n当前对象等方法。
abstract class Aggregate {
+ {abstract} createIterator() :Iterator
}
note top: 聚集抽象类
class ConcreteAggregate {
+ createIterator() :Iterator
}
note bottom: 具体聚集类,继承 Aggregate。
class Client
Client -left-> Aggregate
Client -right-> Iterator
Aggregate <|-- ConcreteAggregate
Iterator <|-- ConcreteIterator
ConcreteIterator -left-> ConcreteAggregate
ConcreteIterator <.. ConcreteAggregate
footer D瓜哥 · https://www.diguage.com · 出品
@enduml
|
c0c054aec255e7b392d28b6488b114fa0fef6c45 | 0a603a193771e37763ff13f9a886b783e2dddadd | /Domain.puml | a16cd4f3adfd5715015e39a784c6e0973a2b4dd7 | [] | no_license | khanhnguyen18/cfs-event | 1358abedb227c9e0d70d92c64afdafada076690a | fdd6f303f6690472703d602a4c2769c744ac6a66 | refs/heads/master | 2023-04-07T04:45:06.140350 | 2021-04-07T16:01:41 | 2021-04-07T16:01:41 | 353,569,166 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 404 | puml | @startuml
class CfsEvent {
#Id
#Number
#TypeCode
#DispatchTime
#Responder
#Agency
}
class Agency {
#Id
#Name
}
class Responder {
#Id
#Code
#Name
#Agency
}
class User {
#Id
#UserName
#Password
#Agency
}
CfsEvent "many" *-- "1" Responder
CfsEvent "many" *-- "1" Agency
User "many" *-- "1" Agency
Responder "many" *-- "1" Agency
@enduml |
9cd142fb8fed10c20f353e160c7b5b163db946cc | a3a48bef46b31fcdd914f8ab67f5282f560d5c28 | /hipparchus-geometry/src/site/design/oneD.puml | 9c07f944c9958c3cab27b06bcd9e88eefdb9ecf2 | [
"GPL-2.0-only",
"Apache-2.0",
"MIT",
"BSD-3-Clause",
"Minpack",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-generic-cla"
] | permissive | Hipparchus-Math/hipparchus | f88ebc1e4a9ab8cd698f258564ecfcda75a389a6 | fc5af4e976fb48de690c6670b0bc0214d0b095db | refs/heads/master | 2023-09-04T12:34:51.209790 | 2023-09-01T17:26:49 | 2023-09-01T17:26:49 | 60,063,484 | 114 | 41 | Apache-2.0 | 2023-08-19T10:30:33 | 2016-05-31T06:24:32 | Java | UTF-8 | PlantUML | false | false | 2,331 | puml | ' Licensed to the Apache Software Foundation (ASF) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' The ASF 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
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
package org.hipparchus.geometry #ECEBD8 {
interface Space {
+int getDimension()
+Space getSubSpace()
}
note top
Space is mainly used as a parameter
for generics and to link d-dimensional
space with (d-1)-dimensional space
end note
interface "Vector<S extends Space>" as Vector_S_ {
+Space getSpace()
+Vector getZero()
+double getNorm()
+Vector add()
+Vector subtract()
+Vector negate()
+Vector normalize()
+Vector scalarMultiply()
+boolean isNaN()
+boolean isInfinite()
+double distance()
+double dotProduct()
}
Space <-- Vector_S_
package partitioning #DDEBD8 {
interface "Region<S extends Space>" as Region_S_
interface "Hyperplane<S extends Space>" as Hyperplane_S_
interface "SubHyperplane<S extends Space>" as SubHyperplane_S_
}
package euclidean #DDEBD8 {
package oned #DDDBD8 {
class Euclidean1D
class OrientedPoint
class Interval
class IntervalSet
Space <|.. Euclidean1D
Vector_S_ <|.. OrientedPoint
Region_S_ <|.. IntervalSet
}
}
}
@enduml
|
0ddad0493ffe08853f574bf5ef57e4ae048ea327 | 61f77755f3ca65fa0a0dfbbdc51137e01ded03fc | /design_model/src/main/resources/行为型模式/状态模式/状态模式.puml | 3449c953d2008e679d0b813689031fac83c19cf7 | [] | no_license | lyszhen3/myWeb | 670e02a585ea3193f6c388b9cea37969a94792dc | c1543ec5f48d84e6c6481a95e54b84f04654b323 | refs/heads/master | 2023-07-11T02:29:33.530130 | 2019-02-25T01:39:29 | 2019-02-25T01:39:29 | 78,835,228 | 0 | 1 | null | 2022-12-16T04:38:41 | 2017-01-13T09:31:45 | Java | UTF-8 | PlantUML | false | false | 391 | puml | @startuml
abstract class State<<抽象状态类>>{
+{abstract} handle();
}
class ConcreteStateA<<具体状态类>>{
+handle();
}
class ConcreteStateB<<具体状态类>>{
+handle();
}
class Context<<环境类>>{
-State state;
+reqeust();
..request()..
state.handle();
....
+setState(State state);
}
ConcreteStateA -up-|>State
ConcreteStateB -up-|>State
Context o-right->State:state
@enduml |
67e6069f3d56a779544a792ff45cbc1b5973cd67 | 89a692c7324ba24c80561c0ee9389b73a174aa86 | /tests/simple_classes.puml | e962e2b15f2363c8161c177dd848fb12ea8e90a4 | [
"MIT"
] | permissive | rockkoca/hpp2plantuml | d8e439c99334daf0f397aa49a517a67b2d779c8c | ae53dde0c60524382dbffac10ae1ef6b41f0feb2 | refs/heads/master | 2023-04-30T20:52:46.447526 | 2017-02-27T20:29:03 | 2017-02-27T20:29:03 | 83,235,835 | 1 | 0 | null | 2017-03-01T19:01:19 | 2017-02-26T19:48:39 | Python | UTF-8 | PlantUML | false | false | 822 | puml | @startuml
abstract class Class01 {
+{abstract} AbstractPublicMethod(int param) : bool
+PublicMethod(int param) : bool
+{static} StaticPublicMethod(bool param) : bool
#{abstract} _AbstractMethod(int param) : bool
#_ProtectedMethod(int param) : bool
#{static} _StaticProtectedMethod(bool param) : bool
#_protected_var : int
+public_var : int
}
class Class02 {
+AbstractPublicMethod(int param) : bool
-_AbstractMethod(int param) : bool
-_PrivateMethod(int param) : bool
-{static} _StaticPrivateMethod(bool param) : bool
-_private_var : int
}
class Class03 <template<typename T>> {
+Class03()
+~Class03()
-_data : Class01*
-_obj : Class01*
-_typed_obj : T*
-_obj_list : list<Class02>
}
enum Enum01 {
VALUE_0
VALUE_1
VALUE_2
}
Class01 <|-- Class02
Class03 "2" o-- Class01
Class03 o-- Class02
@enduml
|
f68cbdf3c9cd277b592657b9c16cc090d3b2a1ca | 858fa53fae3d1587065f22cab6a020e62c47a331 | /PlantUML.puml | 454c3df2ceaf646984c52c91e24522c7c1423aa0 | [] | no_license | camdensaks/Unit7-Camden | 9639bb9d5f02e8b9eddc5b51d0084c4ab775431c | e5fffc76117ae924e95de712a8efd6e9b5dabf84 | refs/heads/master | 2021-02-25T21:56:55.345115 | 2020-03-13T16:23:43 | 2020-03-13T16:23:43 | 245,470,279 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 283 | puml | @startuml
abstract class Vegetable{
String name
String getName()
}
interface Growable
class Potato{
String feed()
String harvest()
String water()
}
class Lettuce{
String feed()
String harvest()
String water()
}
class Broccoli{
String feed()
String harvest()
String water()
}
@enduml |
39e73c968f60e22f1330648e0b83f42409b37ea0 | 486940cf5fe3c0ab3494a953547222f036847c47 | /src/main/java/ex45/DiagramEx45.puml | 452a0ccb6766bd6cad72a74b42808a60b34f12c1 | [] | no_license | joseyamin/yamin-cop3330-assignment3 | db437b4b63a4aa20791bf73dba5079ae75a7c270 | db592b58c840ce86c194b520268cb2710f8be440 | refs/heads/master | 2023-06-06T05:42:52.991039 | 2021-06-20T01:55:59 | 2021-06-20T01:55:59 | 378,538,420 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 158 | puml | @startuml
'https://plantuml.com/class-diagram
class FileEditor{
String fileStr
String storeInputStr()()
void editFileStr()
String getFileStr()
}
@enduml |
d5e5da2b9996cbf0ecabae708d8edf45d588104b | 33c9019347fc7c36b29c6a80906363229bfead1f | /uml/blog-class.puml | 22b838f68355c106e16c3111b2c923d3714d4922 | [] | no_license | nzyi/Django--Shihu | 59da0f90c3c67dee1f55d219a8139149f2fcf713 | 60b7284db19db109b232b8e467e91250155c2541 | refs/heads/master | 2020-12-09T19:51:38.890733 | 2020-01-13T08:57:13 | 2020-01-13T08:57:13 | 233,404,186 | 0 | 0 | null | 2020-01-13T08:21:52 | 2020-01-12T14:21:08 | CSS | UTF-8 | PlantUML | false | false | 1,363 | puml | @startuml blog-class
package django.models {
class Form
class ModelForm
}
package django.db.models {
class Model
}
package models {
class Category {
name
__str__()
}
class Tag {
name
__str__()
}
class AnswerPostBase {
excerpt
modified_time
created_time
body
title
views
author
__str__()
save()
increase_views()
}
class Post {
tags
category
get_absolute_url()
}
class Answer {
post
tags
get_absolute_url()
}
class Liked {
user
post
}
Post --|> AnswerPostBase
Answer --|> AnswerPostBase
Category "1" -- "n" Post
Post "1" -- "n" Answer
Post "n" -- "n" Tag
Answer "n" -- "n" Tag
Category --|> Model
Liked --|> Model
Answer --|> Model
Post --|> Model
Tag --|> Model
}
package form {
class ArticlePostForm {
tags
category
body
title
}
class ArticleForm
class AnswerForm {
tags
body
title
}
class AnswerPostForm
ArticlePostForm --|> Form
ArticleForm --|> ModelForm
ArticleForm --o Post
AnswerForm --|> Form
AnswerPostForm --|> ModelForm
AnswerPostForm --o Answer
}
@enduml |
d686202af4a517bbabd71434b3ed23815fbe45e8 | 4c13527f24ccc6d0524d18cc56deeb7e81886b36 | /Java3/src/main/java/E41.puml | e9493ab5da04bcc82f644037bde90914123ab4b8 | [] | no_license | Nickc123z/-COOK--cop3330-assignment3 | f5b176a2a2b946a24610e1394b215a708453985d | 2fb7ae553249c86152141ef356db8bf3815e4621 | refs/heads/main | 2023-09-04T09:33:29.931092 | 2021-10-12T03:55:47 | 2021-10-12T03:55:47 | 416,132,133 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 412 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class outputNames
abstract AbstractCollection
outputNames <|-- main
AbstractCollection <|-- outputNames
main- AbstractCollection
class main {
scan file;
Array Names;
readNames(scan, names);
scan.close;
}
abstract class outputNames{
fileWriter;
for loop;
output.close;
}
abstract AbstractCollection{
addnames();
}
@enduml
|
67f3bcf47fe71da374d1684200d570d9a5c94c34 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Modules/WebBrowser/Producers/SwitchTabEventProducer.puml | 5e77f0c04d4bfbdf4193a0369285d336fabe4579 | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 411 | puml | @startuml
skinparam monochrome true
skinparam ClassAttributeIconSize 0
!startsub default
class SwitchTabEventProducer {
+ <<override>> Notify(eventJson:System.Text.Json.JsonElement) : void
}
abstract class "WebBrowserEventProducer<T>" {
}
enum "EventLabel"
!endsub
"WebBrowserEventProducer<T>" "<SwitchTabEvent>" <|-- SwitchTabEventProducer
SwitchTabEventProducer --> "HandledEventLabel" EventLabel
@enduml
|
b9ae6995d5582a260d28e0d4b537a4736df8d0bf | 36cb976b603e5322ed48c7802738d6952945751c | /diagram/class-diagram/controller.plantuml | 3ddfe79b6394707eb8834b22fdc52e68077e08c9 | [] | no_license | eportfolio-tech/docs | c19e6cc2d02747056329a140f4e2bc93f70cc597 | 0cb887c0a5c3076655876c21d2e2dc06e12bb5f1 | refs/heads/master | 2023-01-08T13:26:53.086181 | 2020-11-05T11:00:34 | 2020-11-05T11:00:34 | 309,687,794 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 9,780 | plantuml | @startuml
skinparam linetype polyline
skinparam dpi 300
title __CONTROLLER's Class Diagram__\n
skinparam linetype ortho
class tech.eportfolio.server.controller.AuthenticationController {
- authenticationManager : AuthenticationManager
- logger : Logger
- refreshKey : String
- signKey : String
+ AuthenticationController()
+ generatePasswordRecoveryLink()
+ generatePasswordRecoveryToken()
+ login()
+ renewToken()
+ sendPasswordRecoveryLink()
+ signUp()
+ verifyPasswordReset()
- authenticate()
- generateTokens()
}
class tech.eportfolio.server.controller.BlobController {
- logger : Logger
+ BlobController()
+ deleteBlob()
+ getBlobs()
+ uploadBlob()
+ uploadImage()
}
class tech.eportfolio.server.controller.FeedController {
- objectMapper : ObjectMapper
+ FeedController()
+ getActives()
}
class tech.eportfolio.server.controller.PortfolioController {
{static} + CONTENT : String
{static} + PORTFOLIO : String
- objectMapper : ObjectMapper
+ PortfolioController()
+ createNewPortfolio()
+ deleteContent()
+ findByUsername()
+ findContentByUsername()
+ updatePortfolio()
+ uploadContent()
}
class tech.eportfolio.server.controller.SearchController {
- objectMapper : ObjectMapper
+ SearchController()
+ searchByKeyword()
+ searchByTag()
- addVisibilities()
}
class tech.eportfolio.server.controller.TagController {
+ createNewTag()
+ findAll()
+ findOneTag()
}
class tech.eportfolio.server.controller.TemplateController {
- logger : Logger
+ TemplateController()
+ createTemplate()
+ deleteTemplate()
+ findAllTemplates()
+ findOneById()
}
class tech.eportfolio.server.controller.TestController {
- logger : Logger
+ deleteTest()
+ letMeLogIn()
+ notifyTest()
+ quickTest()
+ setJwtTokenProvider()
+ setPortfolioService()
+ setUserFollowService()
+ setUserRepository()
+ setUserService()
- createTestUser()
}
class tech.eportfolio.server.controller.UserCommentController {
{static} - COMMENTS : String
+ UserCommentController()
+ createComment()
+ findWhoCommentedThisPortfolio()
+ reply()
+ uncommentPortfolio()
}
class tech.eportfolio.server.controller.UserController {
+ UserController()
+ addUserTag()
+ deleteUserTags()
+ findOneUser()
+ getUserTags()
+ passwordReset()
+ updateUser()
}
class tech.eportfolio.server.controller.UserFollowController {
+ UserFollowController()
+ findWhoFollowedThisUser()
+ findWhoIamFollowing()
+ followUser()
+ unfollowUser()
}
class tech.eportfolio.server.controller.UserLikeController {
+ UserLikeController()
+ findWhoLikedThisPortfolio()
+ likePortfolio()
+ unlikePortfolio()
}
class tech.eportfolio.server.controller.VerificationController {
+ VerificationController()
+ generateLink()
+ generateToken()
+ resend()
+ verify()
}
tech.eportfolio.server.controller.AuthenticationController -up-|> tech.eportfolio.server.common.exception.handler.AuthenticationExceptionHandler
tech.eportfolio.server.controller.AuthenticationController -[hidden]> tech.eportfolio.server.common.exception.handler.AuthenticationExceptionHandler
tech.eportfolio.server.controller.AuthenticationController o-- tech.eportfolio.server.common.utility.JWTTokenProvider
tech.eportfolio.server.controller.AuthenticationController o-- tech.eportfolio.server.service.RecoveryService
tech.eportfolio.server.controller.AuthenticationController o-- tech.eportfolio.server.common.unsplash.Client
tech.eportfolio.server.controller.AuthenticationController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.AuthenticationController o-- tech.eportfolio.server.service.VerificationService
tech.eportfolio.server.controller.BlobController -up-|> tech.eportfolio.server.common.exception.handler.AuthenticationExceptionHandler
tech.eportfolio.server.controller.BlobController -[hidden]> tech.eportfolio.server.common.exception.handler.AuthenticationExceptionHandler
tech.eportfolio.server.controller.BlobController o-- tech.eportfolio.server.service.AzureStorageService
tech.eportfolio.server.controller.BlobController -[hidden]-> tech.eportfolio.server.service.AzureStorageService
tech.eportfolio.server.controller.BlobController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.FeedController -[hidden]-> tech.eportfolio.server.service.ActivityService
tech.eportfolio.server.controller.FeedController o--- tech.eportfolio.server.service.ActivityService
tech.eportfolio.server.controller.FeedController o--- tech.eportfolio.server.service.PortfolioService
tech.eportfolio.server.controller.FeedController o--- tech.eportfolio.server.service.TagService
tech.eportfolio.server.controller.FeedController o--- tech.eportfolio.server.service.UserFollowService
tech.eportfolio.server.controller.FeedController o--- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.PortfolioController -[hidden]-> tech.eportfolio.server.service.PortfolioService
tech.eportfolio.server.controller.PortfolioController o-- tech.eportfolio.server.service.PortfolioService
tech.eportfolio.server.controller.PortfolioController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.SearchController o-- tech.eportfolio.server.service.PortfolioService
tech.eportfolio.server.controller.SearchController o-- tech.eportfolio.server.service.TagService
tech.eportfolio.server.controller.SearchController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.SearchController o-- tech.eportfolio.server.service.UserTagService
tech.eportfolio.server.controller.TagController -[hidden]-> tech.eportfolio.server.service.TagService
tech.eportfolio.server.controller.TagController o-- tech.eportfolio.server.service.TagService
tech.eportfolio.server.controller.TemplateController -[hidden]-> tech.eportfolio.server.service.TemplateService
tech.eportfolio.server.controller.TemplateController o-- tech.eportfolio.server.service.TemplateService
tech.eportfolio.server.controller.TemplateController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.TestController o-- tech.eportfolio.server.common.utility.JWTTokenProvider
tech.eportfolio.server.controller.TestController o-- tech.eportfolio.server.service.PortfolioService
tech.eportfolio.server.controller.TestController o-- tech.eportfolio.server.service.UserFollowService
tech.eportfolio.server.controller.TestController o-- tech.eportfolio.server.repository.UserRepository
tech.eportfolio.server.controller.TestController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.UserCommentController -[hidden]-> tech.eportfolio.server.service.UserCommentService
tech.eportfolio.server.controller.UserCommentController o-- tech.eportfolio.server.service.UserCommentService
tech.eportfolio.server.controller.UserCommentController o-- tech.eportfolio.server.service.PortfolioService
tech.eportfolio.server.controller.UserCommentController -[hidden]-> tech.eportfolio.server.service.UserCommentService
tech.eportfolio.server.controller.UserCommentController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.UserController -[hidden]-> tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.UserController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.UserController o-- tech.eportfolio.server.service.UserTagService
tech.eportfolio.server.controller.UserFollowController -[hidden]-> tech.eportfolio.server.service.UserFollowService
tech.eportfolio.server.controller.UserFollowController o-- tech.eportfolio.server.service.UserFollowService
tech.eportfolio.server.controller.UserFollowController -[hidden]-> tech.eportfolio.server.service.UserFollowService
tech.eportfolio.server.controller.UserFollowController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.UserLikeController -[hidden]-> tech.eportfolio.server.service.UserLikeService
tech.eportfolio.server.controller.UserLikeController o-- tech.eportfolio.server.service.PortfolioService
tech.eportfolio.server.controller.UserLikeController o-- tech.eportfolio.server.service.UserLikeService
tech.eportfolio.server.controller.UserLikeController -[hidden]-> tech.eportfolio.server.service.UserLikeService
tech.eportfolio.server.controller.UserLikeController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.VerificationController -[hidden]-> tech.eportfolio.server.service.VerificationService
tech.eportfolio.server.controller.VerificationController o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.controller.VerificationController o-- tech.eportfolio.server.service.VerificationService
@enduml |
c59fc0d436da5a72f4ef6f01c5bc9469852e4e23 | abaceb25c5cc5919c785455539c90c95fd2b0ac5 | /atlas.plantuml | d4ad89db866ba42ded896836e648185767913a25 | [] | no_license | dustinlacewell/haskell-typeclass-atlas | c1f4e306b16065989201be757a15b504b941e527 | 7319c3be925195a98d6aaf8e3d8c64915ad889ab | refs/heads/master | 2023-08-01T08:11:11.606515 | 2021-09-21T18:10:58 | 2021-09-21T18:10:58 | 408,804,425 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,832 | plantuml | @startuml
hide circle
hide method
skinparam defaultFontColor black
skinparam defaultFontName "Source Code Pro"
scale 1.5
class Eq as "**Eq** :: * -> Constraint"
class Ord as "**Ord** :: * -> Constraint"
class Num as "**Num** :: * -> Constraint"
class Semigroup as "**Semigroup** :: * -> Constraint"
class Monoid as "**Monoid** :: Semigroup a => Monoid a where"
class Functor as "**Functor** :: (* -> *) -> Constraint"
class Foldable as "**Foldable** :: (* -> *) -> Constraint"
class Traversable as "**Traversable** :: (* -> *) -> Constraint"
class Applicative as "**Applicative** :: (* -> *) -> Constraint"
class Comonad as "**Comonad** :: (* -> *) -> Constraint"
class Category as "**Category** :: forall k. (k -> k -> *) -> Constraint"
class Arrow as "**Arrow** :: (* -> * -> *) -> Constraint"
class Monad as "**Monad** :: (* -> *) -> Constraint"
class Alternative as "**Alternative** :: (* -> *) -> Constraint"
class Eq {
<size:14>Eq a where</size>
---
(==) :: a -> a -> Bool
(/=) :: a -> a -> Bool
--Required--
<size:9>(==) | (/=)</size>
--Instances--
<size:8>Int, Float, Double, Char, Bool</size>
}
Ord --left> Eq
class Ord {
<size:14>Eq a => Ord a where</size>
---
(<) :: a -> a -> Bool
(<=) :: a -> a -> Bool
(>) :: a -> a -> Bool
(>=) :: a -> a -> Bool
max :: a -> a -> a
min :: a -> a -> a
--Required--
<size:9>compare | (<=)</size>
--Instances--
<size:8>Int, Float, Double, Char, Bool</size>
}
class Num {
<size:14>Num a where</size>
---
(+) :: a -> a -> a
(-) :: a -> a -> a
(*) :: a -> a -> a
negate :: a -> a
abs :: a -> a
signum :: a -> a
fromInteger :: Integer -> a
--Required--
<size:9>(+), (*), abs, signum, fromInteger, (negate | (-))</size>
--Instances--
<size:8>Int, Float, Double, Char, Bool</size>
}
Functor --> Traversable
Functor --> Applicative
Functor --> Comonad
class Functor {
<size:14>Functor f where</size>
---
fmap :: (a -> b) -> f a -> f b
(<$) :: a -> f b -> f a
--Required--
<size:9>fmap</size>
--Instances--
<size:8>Either a, [], Maybe, IO, (->) r, (,) a</size>
}
class Comonad {
<size:14>Functor w => Comonad w where</size>
---
extract :: w a -> a
duplicate :: w a -> w (w a)
extend :: (w a -> b) -> w a -> w b
--Required--
<size:9>(+), (*), abs, signum, fromInteger, (negate | (-))</size>
--Instances--
<size:8>(->) m, (,) e</size>
}
Semigroup --> Monoid
class Semigroup {
<size:14>Semigroup a where</size>
---
(<>) :: a -> a -> a
sconcat :: NonEmpty a -> a
stimes :: Integral b => b -> a -> a
--Required--
<size:9>(<>)</size>
--Instances--
<size:8>Either a b, [a], Maybe a, IO a, a -> b</size>
}
Applicative --> Alternative
Applicative --> Monad
class Applicative {
<size:14>Functor f => Applicative f where</size>
---
pure :: a -> f a
(<*>) :: f (a -> b) -> f a -> f b
liftA2 :: (a -> b -> c) -> f a -> f b -> f c
(*>) :: f a -> f b -> f b
(<*) :: f a -> f b -> f a
--Required--
<size:9>pure, ((<*>) | liftA2)</size>
--Instances--
<size:8>Either e, [], Maybe, IO, (->) r, (,) a</size>
}
class Monoid {
<size:14>Semigroup a => Monoid a where</size>
---
mempty :: a
mappend :: a -> a -> a
mconcat :: [a] -> a
--Required--
<size:9>mempty</size>
--Instances--
<size:8>[a], Maybe a, IO a, a -> b, (a, b)</size>
}
Category --> Arrow
Foldable --> Traversable
Foldable ..> Monoid
Foldable ..up> Eq
Foldable ..up> Ord
Foldable ..up> Num
class Foldable {
<size:14>Foldable t where</size>
---
fold :: Monoid m => t m -> m
foldMap :: Monoid m => (a -> m) -> t a -> m
foldr :: (a -> b -> b) -> b -> t a -> b
foldl :: (b -> a -> b) -> b -> t a -> b
foldr1 :: (a -> a -> a) -> t a -> a
foldl1 :: (a -> a -> a) -> t a -> a
toList :: t a -> [a]
null :: t a -> Bool
length :: t a -> Int
elem :: Eq a => a -> t a -> Bool
maximum :: Ord a => t a -> a
minimum :: Ord a => t a -> a
sum :: Num a => t a -> a
product :: Num a => t a -> a
--Required--
<size:9>foldMap | foldr</size>
--Instances--
<size:8>[], Maybe, Either a, (,) a</size>
}
' Monad --> MonadFix
' Monad --> MonadPlus
' Monad -> ArrowApply
class Monad {
<size:14>Applicative m => Monad m where</size>
---
(>>=) :: m a -> (a -> m b) -> m b
(>>) :: m a -> m b -> m b
return :: a -> m a
--Required--
<size:9>(>>=)</size>
--Instances--
<size:8>Either e, [], Maybe, IO, (->) r, (,) a</size>
}
Traversable ..> Applicative
Traversable ..> Monad
class Traversable {
(<size:14>Functor t, Foldable t) => Traversable t where</size>
---
traverse :: Applicative f => (a -> f b) -> t a -> f (t b)
sequenceA :: Applicative f => t (f a) -> f (t a)
mapM :: Monad m => (a -> m b) -> t a -> m (t b)
sequence :: Monad m => t (m a) -> m (t a)
--Required--
<size:9>traverse | sequenceA</size>
--Instances--
<size:8>[], Maybe, Either a, (,) a</size>
}
class Alternative {
<size:14>Applicative f => Alternative f where</size>
---
empty :: f a
(<|>) :: f a -> f a -> f a
some :: f a -> f [a]
many :: f a -> f [a]
--Required--
<size:9>empty, (<|>)</size>
--Instances--
<size:8>[], Maybe, IO</size>
}
class Category {
<size:14>Category cat where</size>
---
id :: cat a a
(.) :: cat b c -> cat a b -> cat a c
--Required--
<size:9>id, (.)</size>
--Instances--
<size:8>->, Cokleisli w</size>
}
/'
' Arrow --> ArrowApply
' Arrow --> ArrowChoice
' Arrow --> ArrowLoop
' Arrow --> ArrowZero
'/
class Arrow {
<size:14>Category a => Arrow a where</size>
---
arr :: (b -> c) -> a b c
first :: a b c -> a (b, d) (c, d)
second :: a b c -> a (d, b) (d, c)
(***) :: a b c -> a b' c' -> a (b, b') (c, c')
(&&&) :: a b c -> a b c' -> a b (c, c')
--Required--
<size:9>arr, (first | (***))</size>
--Instances--
<size:8>(->)</size>
}
/'
' ArrowZero -left-> ArrowPlus
'/
@enduml
|
2970404745a8f07e7f1e7523eec8249cf1fe7bfe | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Accessors/Sales/PaymentAccessor.puml | 4e57c9fffc6f85fb143b3e6f999c1249dca81d0b | [
"BSD-3-Clause"
] | permissive | noelmartens/TransitionAcademy | 4e02379d234aa4859a497ee2846420f4c55b9e12 | 3b95a5c737ab7b1497b77d455cf64caa73f69e1f | refs/heads/master | 2023-06-14T05:25:35.514249 | 2021-07-02T19:40:29 | 2021-07-02T19:40:29 | 362,512,351 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 286 | puml | @startuml
class PaymentAccessor {
+ Authorize(paymentInstrument:PaymentInstrument, orderId:int, total:decimal) : PaymentAuthStatusResult
+ Capture(authorizationCode:string) : PaymentCaptureResult
}
AccessorBase <|-- PaymentAccessor
IPaymentAccessor <|-- PaymentAccessor
@enduml
|
2c665ccf295b363b81a0f1cba3ca6715ac8ae110 | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Engines/Remmitance/RemittanceCalculationResult.puml | 365de49cabe9decced121c769a04721604806832 | [
"BSD-3-Clause"
] | permissive | noelmartens/TransitionAcademy | 4e02379d234aa4859a497ee2846420f4c55b9e12 | 3b95a5c737ab7b1497b77d455cf64caa73f69e1f | refs/heads/master | 2023-06-14T05:25:35.514249 | 2021-07-02T19:40:29 | 2021-07-02T19:40:29 | 362,512,351 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 147 | puml | @startuml
class RemittanceCalculationResult {
+ FeeAmount : decimal <<get>> <<set>>
+ RemittanceAmount : decimal <<get>> <<set>>
}
@enduml
|
7652dda6c89b87f7dafbae169865f080dc596653 | 28285a8f944c0fde1209e943890e795f1f7961d7 | /src/main/java/construct/builder/Builder.puml | e13c1b7da8a4d92cfd29010838a2a055065bf33a | [] | no_license | shaoneng111/design-pattern | 94496017f52eb86cf249a92090176df89e188ab1 | 298cbd0b5218c99adbd2fdd49c16ab6087246cfd | refs/heads/master | 2021-06-28T16:31:29.374241 | 2020-09-29T11:09:33 | 2020-09-29T11:09:33 | 156,365,576 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 796 | puml | @startuml
class Product {
}
class Builder {
{field} +product : Product;
{method} +buildA() : void;
{method} +buildB() : void;
{method} +getResult() : Product;
}
class ConcreteBuilderA {
{field} +product : Product;
{method} +buildA() : void;
{method} +buildB() : void;
{method} +getResult() : Product;
}
class ConcreteBuilderB {
{field} +Product product;
{method} +buildA() : void;
{method} +buildB() : void ;
{method} +getResult() : Product;
}
class Director {
{field} -Builder builder;
{method} +construct(Builder builder) : Product;
{method} +setBuilder(Builder *) : void
}
Builder <|.. ConcreteBuilderA
Builder <|.. ConcreteBuilderB
Builder o.left. Director
ConcreteBuilderA ..> Product
ConcreteBuilderB ..> Product
@enduml |
611d91ea67a54cf68bfd913b3ef750e971383174 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartChangeCustomLineItemPriceModeAction.puml | 828e44aba2d1f77d20b68b73911292cf7c658aec | [] | 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 | 569 | 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 CartChangeCustomLineItemPriceModeAction [[CartChangeCustomLineItemPriceModeAction.svg]] extends CartUpdateAction {
action: String
customLineItemId: String
customLineItemKey: String
mode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
|
1315836e0f194c6357ee5a03426d1fe0b746bb6c | 178ff5731d23243560c9f6862b746b6355b1a30b | /uml/Item_structure.puml | f7bb0f71f950e281d71d1cb500ed0ab94372d992 | [] | no_license | ivanp589/Pavlov-cop3330-assignment4 | 02674bb71b11e77de2effffc0bbf9844269cc66b | a919c525020b85660a5cae7e711389f6f78ebec9 | refs/heads/master | 2023-08-21T10:50:24.722995 | 2021-11-01T08:47:09 | 2021-11-01T08:47:09 | 423,394,052 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,069 | puml | @startuml
class Item extends ToDoList{
+String Desc
+Date Date
+boolean Complete
+getDesc()
+getDate()
+getComplete()
+setDescription()
+setDueDate()
setIsComplete()
+Item()
+item(String de,Date Da,Boolean c)
}
Item--getDesc
Item--getDate
Item--getComplete
Item--setDescription
Item--setDueDate
Item--setIsComplete
Item--Item1
interface getDesc{
returns Desc String
}
interface getDate{
returns Date
}
interface getComplete{
returns boolean value Complete
}
interface setDescription{
+String description
sets Desc String of Item
}
interface setDueDate{
+Date dueDate
sets Date value of Item
}
interface setIsComplete{
+Boolean isComplete
sets Complete value of Item
}
interface Item1{
+String de
+Date da
+Boolean c
}
class ToDoList{
- TextField DescriptionString
-DatePicker DueDateValue
-Button AddButton
'-String desc
-Date Ddate
+ObservableList<Item> listerv
+ToDoList(ObservableList lister1)
+ToDoList1()
+AddItem(ActionEvent event)
+AddItemToList(String newDescription,Date dueDate,boolean b)
-sendData(ActionEvent event)
}
'interface Item(){}
@enduml |
a7d8971bd076aea8b53638c9ef5cdd6e8084c6b4 | 1136a23e1c82aee31c05882fe3ef9fabb9167e7c | /src/FactoryPattern/UML.puml | aaac8dc65d3a7dd29f321f0de22d5e08240392a0 | [] | no_license | vladv75/DesignPatterns | 868a42fff7b37fa5b8e48b7ef85bce7b654266ed | fa1bdee0798f47c0a850481f67db6aab8d30156a | refs/heads/master | 2021-01-20T20:52:38.291802 | 2016-02-07T10:31:05 | 2016-02-07T10:31:05 | 60,034,456 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 936 | puml | @startuml
abstract class Pizza {
String name
String dough
String sauce
ArrayList toppings
void prepare()
void bake()
void cut()
void box()
public String getName()
}
class RUCheesePizza {
+ RUCheesePizza()
}
class RUBigCheesePizza {
+ RUBigCheesePizza()
}
class NYCheesePizza {
+ NYCheesePizza()
}
class NYBigCheesePizza {
+ NYBigCheesePizza()
}
Pizza <|-- RUCheesePizza
Pizza <|-- RUBigCheesePizza
Pizza <|-- NYCheesePizza
Pizza <|-- NYBigCheesePizza
abstract class PizzaStore {
+Pizza orderPizza(String type)
abstract Pizza createPizza(String type)
}
class RUPizzaStore {
Pizza createPizza(String item)
}
PizzaStore <|-- RUPizzaStore
RUPizzaStore ..> RUCheesePizza
RUPizzaStore ..> RUBigCheesePizza
class NYPizzaStore {
Pizza createPizza(String item)
}
PizzaStore <|-- NYPizzaStore
NYPizzaStore ..> NYCheesePizza
NYPizzaStore ..> NYBigCheesePizza
@enduml |
1db8666ca599343bfe7ee4e8bbc3f506b985c9df | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartSetCartTotalTaxAction.puml | 8af5088ee360f39427b9ea7e584d740420ca8ade | [] | 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 | 531 | 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 CartSetCartTotalTaxAction [[CartSetCartTotalTaxAction.svg]] extends CartUpdateAction {
action: String
externalTotalGross: [[Money.svg Money]]
externalTaxPortions: [[TaxPortionDraft.svg List<TaxPortionDraft>]]
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
|
76139b6968770049ba29e79b675fbdd794653ef8 | c609f7309fa734773590f47ad21328b13a31b973 | /doc/classes-design.puml | 4a2904ee23627d10f05a03cea8cc67756f21b2ac | [
"MIT"
] | permissive | ganapatirao/github-checks-plugin | b6fc5f47b3cf7e6ae2bb6a97664348e6570b5c23 | ff0bff5ef2459dd75e20b0f20ebc431834273b19 | refs/heads/master | 2022-12-10T03:24:36.244858 | 2020-08-11T07:21:22 | 2020-08-11T07:21:22 | 286,700,916 | 0 | 0 | MIT | 2020-08-11T09:22:36 | 2020-08-11T09:22:35 | null | UTF-8 | PlantUML | false | false | 1,756 | puml | @startuml
interface ExtensionPoint #LightBlue
class QueueLitener #LightBlue
class RunListener #LightBlue
class Run #LightBlue
interface RunAction2 #LightBlue
class GitHubAppCredentials #TECHNOLOGY {
String generateAppInstallationToken()
}
class GHEventSubscriber #LightPink
class JobListener #BUSINESS {
void onEnterWaiting()
void onStart()
void onComplete()
}
class CheckGHEventSubscriber #BUSINESS
class CheckRunResultAction #BUSINESS {
long id
CheckRunResult result
CheckRunAction(long id, CheckRunResult result)
long getId()
CheckRunResult getResult()
static List<CheckRunResultAction> all()
}
abstract class CheckRunResult #BUSINESS {
String getName()
Output getOutput()
Annotation getAnnotation()
}
class CheckRunResultImpl1 #LightGray
class CheckRunResultImpl2 #LightGray
class CheckRunResultImpl3 #LightGray
JobListener .right.> CheckRunResultAction
JobListener .> CheckRunResult
JobListener -up-|> QueueLitener
JobListener -up-|> RunListener
JobListener .down.> GitHubAppCredentials
JobListener .left.> CheckGHEventSubscriber
CheckGHEventSubscriber -up-|> GHEventSubscriber
CheckRunResultAction "*" -right-> "1" Run
CheckRunResultAction "1" --> "1" CheckRunResult
CheckRunResultAction .up.|> RunAction2
CheckRunResult .right.|> ExtensionPoint
CheckRunResultImpl1 -up-|> CheckRunResult
CheckRunResultImpl2 -up-|> CheckRunResult
CheckRunResultImpl3 -up-|> CheckRunResult
skinparam legendBackgroundColor white
legend
|= |= Class Owners |
|<back:BUSINESS> </back>| GitHub Checks API Plugin |
|<back:lightBlue> </back>| Jenkins Core |
|<back:TECHNOLOGY> </back>| GitHub Branch Source Plugin |
|<back:LightGray> </back>| Consumers plugins |
|<back:LightPink> </back>| GitHub Plugin |
endlegend
@enduml |
ae0d6d80bfaacb308b8ff6a225545cb060563f9a | 06b4f9b29e51db9eef79b9f9828f3aa369840ec1 | /Deliverables/Oblig3/src/main/java/Grid/Grid.plantuml | fe35ceab0ff2a5f5c1964279d582edab3555fae5 | [] | no_license | inf112-v19/Thebadguys | d650f57d5b23824e82498cfc55c7026d29a59762 | ec1cbbd1ab466b1482fb0a72b466f351481d4917 | refs/heads/master | 2020-04-19T11:14:13.465654 | 2019-05-03T17:29:09 | 2019-05-03T17:29:09 | 168,161,605 | 0 | 0 | null | 2019-03-08T14:24:40 | 2019-01-29T13:44:35 | Java | UTF-8 | PlantUML | false | false | 796 | plantuml | @startuml
title __GRID's Class Diagram__\n
package Grid {
enum Direction {
NORTH
SOUTH
EAST
WEST
}
}
package Grid {
interface IGrid {
{abstract} + getHeight()
{abstract} + getWidth()
{abstract} + set()
{abstract} + get()
{abstract} + copy()
}
}
package Grid {
class MyGrid {
- tiles : List<T>
- height : int
- width : int
+ MyGrid()
+ getHeight()
+ getWidth()
+ set()
+ get()
+ copy()
}
}
MyGrid -up-|> IGrid
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
|
91d72a2adba7ba31f1919e010fa218ace19a7aa0 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Editor/TMP_StyleAssetMenu.puml | 61553ea275172725b2a2b9e87a1954d253fbd6b9 | [] | 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 | 113 | puml | @startuml
class TMP_StyleAssetMenu <<static>> {
+ {static} CreateTextMeshProObjectPerform() : void
}
@enduml
|
a2ac9c234233a1918b2acf9a169152816e8a5fd7 | c13234e7c30598dab8dbed2a09543b6c60e4792a | /S201250182/uml/hw3Class.puml | 1edb7aa3c29d4934376186576afa2458ae1a18d6 | [] | no_license | jwork-2021-attic/jw02-Martin7-1 | c0174e644364491de7685b72e3ea74a6a98f1c37 | ef3c4e740bab9efb5a9a0eb1fd309e4ca9a388bf | refs/heads/master | 2023-08-07T14:05:42.945942 | 2021-09-26T13:27:36 | 2021-09-26T13:27:36 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,098 | puml | @startuml
'https://plantuml.com/class-diagram
class BubbleSorter
class Snake
class Matrix
class Position
interface Linable
interface Sorter
class Monster
class Color
class BubbleSorter
Snake o-- Sorter: 聚合 >
Sorter *-- BubbleSorter: Sorter的一种:
Snake <-- Matrix: 关联 >
Matrix <-- Linable: 依赖 >
Monster o-- Position:组合 >
Matrix o-- Position: 组合 >
Monster o-- Linable: Linable的一种 >
Monster o-- Color: 组合 >
class Monster {
Color color
Position position
int rank
getRank()
getPosition()
getValue()
toString()
setPosition()
}
class Matrix {
Position[] positions
put()
get()
toString()
toArray()
}
class Position {
Linable linable
setLinable()
}
interface Linable {
setPosition()
getPosition()
getValue()
}
interface Sorter {
load()
sort()
getPlan()
}
class BubbleSorter {
int[] a
String plan
load()
bubbleSort()
swap()
sort()
getPlan()
}
class Snake {
Snake theSnake
Sorter sorter
getTheSnake()
setSorter()
lineUp()
parsePlan()
execute()
}
class Color {
int r;
int g;
int b;
Set<List<Integer> rgb
setRGB()
haveSameRGB()
getR()
getG()
getB()
}
@enduml |
ea7c27c3dbc1f4bfc71388fea4dd9a53a75eec97 | e2d7c6f90469fa874a157acba102b9afdaf420c9 | /src/main/java/design/patten/bridge/bridge.puml | 1472bb6a551072ced99b3578c87a50d35221506c | [] | no_license | Asituyasi/TestPro | 59ccb89a6672b30c2917eb4521f6d3d1845cf88c | 18ec9b5b42f925864e20d547e56a8d5559e4e704 | refs/heads/master | 2020-04-26T07:45:54.089590 | 2019-03-21T11:40:02 | 2019-03-21T11:40:02 | 173,403,396 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 632 | puml | @startuml
abstract class Abstraction {
-Implementor -mplementor
+action()
}
interface Implementor {
+actionImpl()
}
class ConcreteImplementorA{
+actionImpl()
}
class ConcreteImplementorB{
+actionImpl()
}
class RefinedAbstraction{
+action()
}
Implementor <|.. ConcreteImplementorA
Implementor <|.. ConcreteImplementorB
Abstraction <|-- RefinedAbstraction
Abstraction o--> Implementor
@enduml
http://www.plantuml.com/plantuml/png/bT31oi8m30VmUvwYHqMo9n3PvichRz2low3Gfj9cf-cxgrGnWmb-jpRyuFzFsY8sonG3WFqhagqJuu8jnNIlhqziPi1Jl0IAn9AomSyRTfLijd03y2oKH-l8Q3w_qNDOOOqu9dQPX1Jk_eFxh_XCesSQr0xpigdkjxyspMgNdrGFAkMX45VI5mRneEy3q18FKmnt |
bdd50d50de0a1d647c0eb056d5505e4fe9e0fb63 | cdae9f2c0be2ac42d728f1895a6d9284eab7e02c | /vortrag/images/src/pu/class/auth.plantuml | 89c9d2d645d59644129219e29bd08ab0b71cc136 | [] | no_license | fab-du/documentations | 943c7b8edf6fdd605feb54337616d19ac92446f3 | 2fd118d6e25f72472ef0bd36bc64fa964344238c | refs/heads/master | 2021-01-21T14:01:15.730145 | 2016-05-09T16:43:07 | 2016-05-09T16:43:07 | 53,966,952 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,214 | plantuml | @startuml
package "AuthenticationPersistenceManager" {
class SessionModel{
+ String getId()
+ String getEmail()
+ String getToken()
+ void setId( Long id )
+ void setEmail( String email )
+ void setToken( String authToken )
__ private data __
Long id
Date createdAt
String email
String token
}
class SessionRepository <extends CrudRepository>{
SessionModel findByEmail( String email )
SessionModel findByAuthToken( String authToken )
}
class SessionService{
+ void deleteExpiredSession()
+ boolean exists( String token )
+ Session findByEmail( String email )
+ Session findByToken( String email )
- boolean isExpired( Long expireIn )
}
SessionModel -o SessionRepository
SessionRepository --o SessionService
}
package "Authentication" {
class TokenService{
@Autowired
- SessionService sessionService;
- final static Logger log = LoggerFactory.getLogger( AuthFilter.class);
+ static final int SCHEDULE_TIME = 360000;
@Scheduled(fixedRate= SCHEDULE_TIME)
+ void removeExpiredSession()
+ void save( String token )
+ boolean exists( String token )
+ Session retrieve( String token )
}
class AuthFilter<extends AbstractAuthenticationProcessingFilter>{
}
class TokenAuthenticationProvider<implements AuthenticationProvider> {
@Override
+ Authentication authenticate(Authentication authentication)
}
class AuthConfig<extends WebSecurityConfigurerAdapter>{
}
class AuthExceptionHandler<extends AuthenticationException>{
}
class AuthPreAuthentication<implements Authentication>{
}
class AuthenticationToken<extends AbstractAuthenticationToken>{
}
TokenAuthenticationProvider --o AuthConfig
AuthFilter --o AuthConfig
AuthenticationToken --o AuthFilter
AuthPreAuthentication -o AuthFilter
AuthConfig o-- AuthExceptionHandler
TokenService o- SessionService
TokenService -o AuthConfig
}
legend top
CrudRepository : @ref : org.springframework.data.repository
AuthenticationProvider : @ref : org.springframework.core.security.AuthenticationProvider
AuthenticationProvider : @ref : org.springframework.core.security.Authentication
AuthenticationProvider : @ref : org.springframework.core.security.WebSecurityConfigurerAdapter
endlegend
@enduml
|
2201d98c4af6f9a5d88336d096788dbea4db56f6 | f54fe055164dc3074e25362c8286ba828e587d89 | /src/main/java/database/database.plantuml | 9b4ccd73c8ea648618fab146c2c3ada45ff6bd64 | [] | no_license | BorisMilenski/To-Do-List | 4b65e4c233676b2ca48f5a3fbc5e6b4e3179aec6 | d1d836c4471870ca894db8636381bfd9ae2f8582 | refs/heads/develop | 2023-06-28T17:32:51.963500 | 2021-07-22T18:19:30 | 2021-07-22T18:19:30 | 387,732,122 | 0 | 0 | null | 2021-07-22T18:25:21 | 2021-07-20T08:57:07 | Java | UTF-8 | PlantUML | false | false | 1,475 | plantuml | @startuml
title __DATABASE's Class Diagram__\n
namespace database {
abstract class database.DatabaseAccess {
{static} # DATABASE_NAME : String
{static} # DB_PASSWORD : String
{static} # DB_URL : String
{static} # DB_USERNAME : String
# connection : Connection
# closeConnection()
# startConnection()
}
}
namespace database {
class database.TaskDAO {
{static} - TABLE_NAME : String
- tasks : List<Task>
+ TaskDAO()
+ add()
+ edit()
+ get()
+ markTaskAsCompleted()
+ remove()
- doesIdExistInList()
- refreshTaskList()
}
}
namespace database {
class database.UserDAO {
{static} - TABLE_NAME : String
- password : String
- username : String
+ UserDAO()
+ add()
+ edit()
+ get()
+ getAllUsernames()
+ getUser()
+ initialize()
+ remove()
}
}
database.TaskDAO .up.|> entities.DAO
database.TaskDAO -up-|> database.DatabaseAccess
database.TaskDAO o-- entities.User : user
database.UserDAO .up.|> entities.DAO
database.UserDAO -up-|> database.DatabaseAccess
database.UserDAO o-- entities.User : user
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
|
5aa03603cf9948fae39f6c429954e60b7f2b1e8c | e096e9025533604ebb27cf9e5d2313990c51f77b | /img/plantuml/cls_writer.plantuml | 5b79a70e0f38531b65a0a004f8558b0e2c89ba34 | [] | no_license | Delzye/bachelors_thesis_anton_mende | 6dfae3eab3ab020fd5b5d5cedadeb091d9d71dbd | ac5f163c354c101354207404ec739fce50fc2865 | refs/heads/main | 2023-06-06T23:26:21.280048 | 2021-07-12T09:01:05 | 2021-07-12T09:01:05 | 364,241,036 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 882 | plantuml | @startuml
package writer {
class ODMWriter {
#Document doc
#Element root
#Element meta_data
#Element form
#Element code_lists
#Element clinical_data
#Properties prop
#String meta_data_oid
#HashMap<Integer, Element> question_groups
#ArrayList<String> written_cl_oids
+ODMWriter(Survey s)
+void createODMFile()
+void writeFile()
-void createODMRoot()
-void addStudyData()
-void addQuestionGroups()
-void addQuestions()
-void addConditions()
-void addClinicalDataElement()
+void addAnswers(LinkedList<Response> responses)
-Element addQuestion(Question q, String data_type)
-void addQuestionWithCL(Question q)
-void addQuestionRef(int gid, String qid, String mandatory)
-void addQuestionRefWithCond(int gid, String qid, String mandatory, String cond_oid)
}
}
package parser{
package lss{
class Survey
}
}
ODMWriter "1" -- "0..*" Survey : survey
@enduml
|
a7e6431529872372c71be94ffd709617e82b8860 | 53c83bfc08359f58ec5ac6a7568e9e06e2033780 | /src/main/resources/AbstractFactory.puml | 2fc190a73115ba26945a3b1b00b7f8b3fd2f70fe | [] | no_license | gongyu-lightmatter/The-Zen-of-Design-Patterns | f33388b24cbd0210661fb1feb6e17aa73ad6f773 | 91ec8eb4c3fad0237245006fa77002c93a610a6e | refs/heads/master | 2022-03-26T01:44:02.663369 | 2019-12-25T15:52:54 | 2019-12-25T15:52:54 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 554 | puml | @startuml
class Client{
}
note right of Client:生产场景
abstract class AbstractFactory{
+ CreateProduct();
}
note right of AbstractFactory:抽象工厂类
Client-->AbstractFactory
Client-->AbstractProduct
class ConcreteFactory{
}
note right of ConcreteFactory:具体生产工厂类
AbstractFactory<|--ConcreteFactory
abstract class AbstractProduct{
}
note right of AbstractProduct:抽象产品类
class ConcreteProduct{
}
note right of ConcreteProduct:具体产品类
AbstractProduct<|--ConcreteProduct
ConcreteFactory..>ConcreteProduct
@enduml |
a7b3f5277090e4fa8d205d0c67f4b38c67624548 | ad1dc69c89f5c014354f528a0949173646670e6e | /documentation/diagrams/src/fxui_class_diagram.puml | c3ba5b8d15a9d129ea65f1f2c2d1326dc652bba8 | [] | no_license | AndrineHeg/it1901-dinnerium | 434c99b2c336acfa10ead711325d29638848024a | 4002b67d92f4c7d79e367bb45e930d34c3e47bea | refs/heads/master | 2023-03-18T07:37:51.589442 | 2020-11-18T18:44:12 | 2020-11-18T18:44:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 707 | puml | @startuml
class AppController {
- User user
- DinneriumAccess dinneriumAccess
~ NavbarController navbarViewController
}
class SettingsController {
- User user
- NavbarController navbarController
}
class NavbarController {
- AppController appController
~ SettingsController settingsViewController
~ FridgeController fridgeViewController
~ RecipesController recipesViewController
}
class FridgeController {
- User user
- NavbarController navbarController
}
class RecipesController {
- User user
}
NavbarController -- FridgeController
NavbarController -- SettingsController
NavbarController --> RecipesController
AppController -- NavbarController
@enduml |
7e196a56a14284c3db7aeaf1405b38fff41fc71c | 2748577960ba36091dba79b507521c92dba723c8 | /src/Portal/FileManagement/FileManagement.plantuml | 6363504f82c407add8b87fab67ecaa9c8d5687cf | [] | no_license | MartinEmilEshack/Portal | a6e3c25b421afef854bd576d97ce9019e597f700 | 8ac77fd31dcd3d7f7b74524f60da32259141b09d | refs/heads/master | 2022-02-21T09:47:12.538411 | 2019-10-16T17:51:16 | 2019-10-16T17:51:16 | 213,708,757 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 619 | plantuml | @startuml
title __FILEMANAGEMENT's Class Diagram__\n
package Portal.FileManagement {
class Explorer {
{static} + copyFile()
{static} + pasteFile()
{static} - ReceivedFolderExists()
{static} - getReceivedFolderPath()
}
}
package Portal.FileManagement {
class FileBytes {
+ fileName : byte[]
+ fileSize : byte[]
+ file : byte[]
}
}
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
|
bf89c9733261071be87ade5dd434ebaca65944ef | 58f5766244826918a3cf79312f861f76c5aa6f7d | /Documents/uml/Models/RegisterClassMapTarget.puml | cd3dca9d8368dd4e2fe726dc2787975b587da824 | [
"MIT"
] | permissive | BillKrat/CsvEditSharp | 3835aa9d7955a33830be47b044d3c05763c68dff | a91334a8aa1b08c4f7fe38116892b088e92d4da4 | refs/heads/master | 2022-01-28T15:31:06.719793 | 2019-07-28T11:39:25 | 2019-07-28T11:39:25 | 198,216,226 | 0 | 1 | MIT | 2019-07-22T12:10:45 | 2019-07-22T12:10:44 | null | UTF-8 | PlantUML | false | false | 84 | puml | @startuml
enum RegisterClassMapTarget {
Reader,
Writer,
Both,
}
@enduml
|
9f8c571c64516f36cbd36e99fcc8d6db78bc898a | 2bc551f9c2ecb57ec0cb93ad18d3ce0bafbddb34 | /设计模式/设计模式尚硅谷/designpatternlearning/src/main/java/tk/designpattern/adapter/interfaceadapter/classAdapter.puml | 3f9b55cd4d0ba26d64838b520d36f1d662a03480 | [] | no_license | YiboXu/JavaLearning | c42091d6ca115826c00aad2565d9d0f29b1f5f68 | 97b4769ebbe096e0ab07acb6889fb177e2ca5abe | refs/heads/master | 2022-10-27T23:47:54.637565 | 2020-06-16T09:12:09 | 2020-06-16T09:12:09 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 431 | puml | @startuml
interface Adapter {
+ int phoneCharging();
+ int computerCharging();
+ int padCharging();
}
class VoltageAdapter implements Adapter{
+ int phoneCharging();
+ int computerCharging();
+ int padCharging();
}
class Phone {
- VoltageAdapter voltageAdapter
+ Phone(VoltageAdapter voltageAdapter)
+ void charging()
}
Phone <|- VoltageAdapter
@enduml |
d3a9a3d2f20068b5253e215db46929919766ede1 | 7c1d5e6989709764082ac3eca848216555b5288c | /docs/arch.puml | 9bfdd9f8c14f6f5c06be299cf8efafec2a8d05d9 | [
"Apache-2.0"
] | permissive | FishJoey/gorpc | 754259032d5fc7ac65930618fe0eec048193c465 | 384fe1a788faf9a719bbdce4d349c4add8b0b184 | refs/heads/master | 2023-08-03T20:42:56.378732 | 2021-09-30T17:43:03 | 2021-09-30T17:43:03 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,765 | puml | @startuml
package "helloworld" {
interface Greeter {
+Hello(ctx, *Request) (*Response, error)
}
class greeter {
+Hello(ctx, *Request) (*Response, error)
}
greeter -up-|> Greeter
class Greeter_ServiceDesc {
Name string
Methods map[string]HandleFunc
}
}
package "server" {
class Server {
+modules []*ServerModule
+interceptors []Interceptor
+Start()
+Stop()
+Register(s *ServerModule) error
+AtExit(fn func())
}
interface ServerModule {
+Start()
+Stop()
}
Server "1" *-down- "N" ServerModule
class PacketServer {
svr *Server
}
PacketServer -up-|> ServerModule
class StreamServer {
svr *Server
}
StreamServer -up-|> ServerModule
class HttpServer {
svr *Server
}
HttpServer -up-|> ServerModule
Server -up-> greeter
Server -up-> Greeter_ServiceDesc
interface Router {
Route(rpc string) (Method, error)
}
Server -down-> Router
interface Interceptor {
Intercept(ctx context.Context) error
}
Server "1" -left-> "N" Interceptor
}
package "codec" {
interface Session {
TraceContext() (interface{}, error)
ParseRequestBody(req interface{}) error
Request() interface{}
Response() interface{}
Logger() logger
}
interface Codec {
Encode(v interface{}) ([]byte, error)
Decode([]byte) (interface{}, error)
}
class MessageReader {
codec Codec
builder SessionBuilder
Read(net.Conn) (interface{}, error)
}
interface SessionBuilder {
Build(req interface{}) (Session, error)
}
MessageReader -down-> Codec
MessageReader -down-> SessionBuilder
SessionBuilder -up-> Session
StreamServer -down-> MessageReader
PacketServer -down-> MessageReader
HttpServer -down-> MessageReader
}
package "internal.codec" {
GoRPC -up-|> Codec
GRPC -up-|> Codec
HTTP -up-|> Codec
}
package "internal.builder" {
GoRPCBuilder -up-|> SessionBuilder
GRPCBuilder -up-|> SessionBuilder
HTTPBuilder -up-|> SessionBuilder
}
package "registry" {
interface Registry {
+Register(*Service, opts ... RegisterOption) error
+DeRegister(*Service) error
+GetService(string) ([]*Service, error)
+ListServices() ([]*Service, error)
+Watcher() (Watcher, error)
}
Registry "1" *-right- "1" Watcher
Registry "1" -up-> "N" Service
Server -left-> Registry
interface Watcher {
+Next() (*Result, error)
+Stop()
}
Watcher -up-> Result
class Result {
+Action ActionType
+Service *Service
}
enum Action {
CREATE
UPDATE
DELETE
}
Result -right-> Action
class Service {
Name string
Version string
Nodes []Node
}
Service "1" -right-> "N" Node
class Node {
IP string
Port int
Weight int
}
}
package "selector" {
interface Selector {
Select(service string, opts ...SelectOption) (Next, error)
Mark(service string, node *registry.Node, err error)
Reset(service string)
Close() error
}
Selector -up-> Registry
}
package "internal.selector" {
IPSelector --|> Selector
EtcdSelector -left-|> Selector
}
package "client" {
interface Client {
Invoke(ctx, req) (rsp, error)
}
interface Transport {
Send(ctx, req) (rsp, error)
}
class TcpTransport {
pool *TcpConnectionPool
eps []*Endpoint
rd *MessageReader
}
TcpTransport -left-|> Transport
TcpTransport "1" -right-> "TcpConnectionPool"
class UdpTransport {
ep *Endpoint
rd *MessageReader
}
UdpTransport -up-|> Transport
UdpTransport -right-|> Endpoint
interface ConnectionPool {
+GetConn() (net.Conn, error)
+FreeConn(net.Conn)
}
TcpConnectionPool --|> ConnectionPool
TcpConnectionPool "1" --> "N" Endpoint
class Endpoint {
-conn net.Conn
+Read([]byte) (n, error)
+Write([]byte) (n, error)
}
class client {
name string
codec Codec
selector Selector
trans Transport
+Invoke(ctx, req) (rsp, error)
}
client -right-|> Client
client -right-> MessageReader
client -down-> Transport
client -up-> Selector
}
package "broker" {
interface Broker {
ServerModule
Subsribe(ctx, topic, gp) (<-chan interface{}, error)
Publish(ctx, topic, req) error
}
Broker --|> ServerModule
}
package "internal.broker" {
NATS --|> Broker
Kafka --|> Broker
}
@enduml |
5ce07982c942e1829100aa63aa63e9073e7d4ecb | 48dc2afcaa2437f307bae085ecaacd7b7b4b460b | /src/com/eirunye/funtion_factory/funtion_factory.puml | 384a69a2feb5562bfc5467f82c63a82f6bae2399 | [] | no_license | eirunye/Simple_Factory_Pattern | 45b4d7036058501a1883f960fa2c9a2130d2957a | 46f0d01d8ecb97e90c1ef929f47fd98aa1c245b8 | refs/heads/master | 2020-03-29T04:59:49.559989 | 2018-09-26T02:48:27 | 2018-09-26T02:48:27 | 149,560,070 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 607 | puml | @startuml
abstract class MealStore{
+ Meal submitOrderMeal(String type)
# Meal createMeal(String type)
}
abstract class Meal{
__ public __
+ List mealInfo = new ArrayList()
+ mealPreparation()
+ bake()
+ getMeal()
+ send()
}
class CrayfishMeal{
__ public __
+ CrayfishMeal()
+ bake()
}
class RoastDuckMeal{
__ public __
+ RoastDuckMeal()
}
class GuangDongMealStore{
# Meal createMeal(String type)
}
class JiangNanMealStore{
# Meal createMeal(String type)
}
Meal <|-- CrayfishMeal
Meal <|-- RoastDuckMeal
MealStore --> Meal
MealStore <|-- GuangDongMealStore
MealStore <|-- JiangNanMealStore
@enduml |
057e4b5c1bc7d0630ec15c7b8793de5a7bfd7af8 | 577fe9d2b7313325cd5410f1588f6272e6f1539e | /dist/NetworkingContentDelivery/AmazonVPC/elasticnetworkinterface/elasticnetworkinterface.puml | 5739a83ae297e839b11ed7490f3dba61f829aa9c | [
"MIT"
] | permissive | Ahbrown41/AWS-PlantUML | a12220ce987b7abc0b121279f6f71f4b4f05ce78 | 16a10b82f865f43a153b3c49de02bea7b6b3b65e | refs/heads/master | 2020-04-28T13:03:34.269079 | 2019-03-13T02:21:05 | 2019-03-13T02:21:05 | 175,296,307 | 0 | 1 | MIT | 2019-03-12T21:06:35 | 2019-03-12T21:06:35 | null | UTF-8 | PlantUML | false | false | 9,566 | puml | sprite $elasticnetworkinterface [62x65/16] {
00000000000000000000000000000CCCC00000000000000000000000000000
00000000000000000000000CCCCCCCCCCCCCCCC00000000000000000000000
00000000000000000000CCCCCCCCCCCCCCCCCCCCCC00000000000000000000
00000000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000000000000
000000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000000000
00000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000000000
000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000000
00000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000000
0000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000000
000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000
00000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000
0000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000
000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000
000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000
00000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000
0000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000
0000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000
000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000
000CCCCCCC877778CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000
00CCCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00
00CCCCCCCC877007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00
00CCCCCCCCCCC007CC9999999999999999999999999999999999CCCCCCCC00
0CCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCC0
0CCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCC0
0CCCCCCCCCCCC007CC0008999999999999999999999999980007CCCCCCCCC0
0CCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCC0
CCCCCCCCCCCCC007CC0008BB8777777779BB777777777AB90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
DCCCCCCCCCCCC007CC0008BBA99999999ABB999999999AB90007CCCCCCCCCD
ECCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCCE
FCCCCCCCCCCCC007CC0007888888888888888888888888880007CCCCCCCCCF
FDCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCDF
FDCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCDF
0FCCCCCCCCCCC007CC9990000000000000009999800000089999CCCCCCCCF0
0FCCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCCF0
0FDCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCDF0
0FFCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCFF0
00FDCCCCCC999007CCCCCAAAAAAAAAAAAAAACCCCBAAAAAABCCCCCCCCCCDF00
00FFCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF00
000FDCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDF000
000FFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF000
0000FECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEF0000
0000FFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFF0000
00000FFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF00000
00000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF00000
000000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF000000
0000000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF0000000
00000000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF00000000
000000000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF000000000
0000000000FFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFF0000000000
00000000000FFFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFFF00000000000
000000000000FFFFECCCCCCCCCCCCCCCCCCCCCCCCCCCCEFFFF000000000000
0000000000000FFFFFEDCCCCCCCCCCCCCCCCCCCCCCDEFFFFF0000000000000
000000000000000FFFFFFECCCCCCCCCCCCCCCCCCEFFFFFF000000000000000
00000000000000000FFFFFFFEDDDCCCCCCDDDEFFFFFFF00000000000000000
0000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000
0000000000000000000000FFFFFFFFFFFFFFFFFF0000000000000000000000
00000000000000000000000000FFFFFFFFFF00000000000000000000000000
}
sprite $NetworkingContentDelivery_AmazonVPC_elasticnetworkinterface [62x65/16] {
00000000000000000000000000000CCCC00000000000000000000000000000
00000000000000000000000CCCCCCCCCCCCCCCC00000000000000000000000
00000000000000000000CCCCCCCCCCCCCCCCCCCCCC00000000000000000000
00000000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000000000000
000000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000000000
00000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000000000
000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000000
00000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000000
0000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000000
000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000
00000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000
0000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000
000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000
000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000
00000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000
0000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000
0000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000
000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000
000CCCCCCC877778CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000
00CCCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00
00CCCCCCCC877007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00
00CCCCCCCCCCC007CC9999999999999999999999999999999999CCCCCCCC00
0CCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCC0
0CCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCC0
0CCCCCCCCCCCC007CC0008999999999999999999999999980007CCCCCCCCC0
0CCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCC0
CCCCCCCCCCCCC007CC0008BB8777777779BB777777777AB90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
DCCCCCCCCCCCC007CC0008BBA99999999ABB999999999AB90007CCCCCCCCCD
ECCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCCE
FCCCCCCCCCCCC007CC0007888888888888888888888888880007CCCCCCCCCF
FDCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCDF
FDCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCDF
0FCCCCCCCCCCC007CC9990000000000000009999800000089999CCCCCCCCF0
0FCCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCCF0
0FDCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCDF0
0FFCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCFF0
00FDCCCCCC999007CCCCCAAAAAAAAAAAAAAACCCCBAAAAAABCCCCCCCCCCDF00
00FFCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF00
000FDCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDF000
000FFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF000
0000FECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEF0000
0000FFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFF0000
00000FFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF00000
00000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF00000
000000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF000000
0000000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF0000000
00000000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF00000000
000000000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF000000000
0000000000FFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFF0000000000
00000000000FFFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFFF00000000000
000000000000FFFFECCCCCCCCCCCCCCCCCCCCCCCCCCCCEFFFF000000000000
0000000000000FFFFFEDCCCCCCCCCCCCCCCCCCCCCCDEFFFFF0000000000000
000000000000000FFFFFFECCCCCCCCCCCCCCCCCCEFFFFFF000000000000000
00000000000000000FFFFFFFEDDDCCCCCCDDDEFFFFFFF00000000000000000
0000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000
0000000000000000000000FFFFFFFFFFFFFFFFFF0000000000000000000000
00000000000000000000000000FFFFFFFFFF00000000000000000000000000
}
skinparam interface<<elasticnetworkinterface>> {
BackgroundColor #FEEDE2
BorderColor #F58536
}
skinparam interface<<NetworkingContentDelivery\nAmazonVPC\nelasticnetworkinterface>> {
BackgroundColor #FEEDE2
BorderColor #F58536
}
!define ELASTICNETWORKINTERFACE(alias) PUML_ENTITY(interface,#F58536,NetworkingContentDelivery_AmazonVPC_elasticnetworkinterface,alias,elasticnetworkinterface)
!definelong ELASTICNETWORKINTERFACE(alias,label,e_type="interface",e_color="#F58536",e_stereo="elasticnetworkinterface",e_sprite="NetworkingContentDelivery_AmazonVPC_elasticnetworkinterface")
PUML_ENTITY(e_type,e_color,e_sprite,label,alias,e_stereo)
!enddefinelong
!define NETWORKINGCONTENTDELIVERY_AMAZONVPC_ELASTICNETWORKINTERFACE(alias) PUML_ENTITY(interface,#F58536,NetworkingContentDelivery_AmazonVPC_elasticnetworkinterface,alias,NetworkingContentDelivery\nAmazonVPC\nelasticnetworkinterface)
!definelong NETWORKINGCONTENTDELIVERY_AMAZONVPC_ELASTICNETWORKINTERFACE(alias,label,e_type="interface",e_color="#F58536",e_stereo="NetworkingContentDelivery\\nAmazonVPC\\nelasticnetworkinterface",e_sprite="NetworkingContentDelivery_AmazonVPC_elasticnetworkinterface")
PUML_ENTITY(e_type,e_color,e_sprite,label,alias,e_stereo)
!enddefinelong
|
f30a8c474d0fd0c71a3f8026f2f347b74e0d413e | aefdc6e26db90fe88c57b7eecde5596afc49d4cb | /src/test/resources/service-diagram.plantuml | 14d4185cc17ccab200e6a297f80a8d7408119cd0 | [
"Apache-2.0"
] | permissive | jboz/plantuml-builder | 724bf75b2d5794b53603f8a9f60b01ae8b79116c | 266d960a5d4a7c8e18048ddd7360df221428a0c4 | refs/heads/main | 2023-08-06T15:42:33.576311 | 2023-07-21T23:24:51 | 2023-07-21T23:24:51 | 89,647,955 | 41 | 13 | Apache-2.0 | 2023-07-21T23:22:32 | 2017-04-27T23:14:47 | Java | UTF-8 | PlantUML | false | false | 311 | plantuml | @startuml
skinparam backgroundColor lightgray
header
class diagram type
endheader
title Service diagram
interface "AccessDataService" {
whoDrive(Car, Instant) : Driver
}
"AccessDataService" --> "Car" : use
"AccessDataService" --> "Driver" : use
footer
page 1/1
endfooter
show methods
hide fields
@enduml |
5cea23b93a967aaf1bb71560a189efa404dbedce | cb7ea449b24c5da3e55526981f08679db172b96d | /UML/Sequence03.puml | 739d1406da9950ccf961817ba6cd47d353098b27 | [] | no_license | wnakayama/ojt_ecsite | e8fad0d49b6f6526c4c1959eddcccfc2b62a50d5 | ff2bf7e7d67cbe8a27eabdf0ee9db33557bb6f48 | refs/heads/master | 2022-04-14T06:16:45.676620 | 2020-03-24T06:26:40 | 2020-03-24T06:26:40 | 232,024,554 | 0 | 0 | null | 2020-03-31T08:10:32 | 2020-01-06T04:34:56 | Java | UTF-8 | PlantUML | false | false | 4,888 | puml | @startuml
title ECサイト_UC03商品を検索する
actor 利用者
利用者 -> Browser : 「検索」ボタン押下
activate Browser
Browser ->> SearchProductServlet : jQuery.getメソッドでリクエストを送信
deactivate Browser
activate SearchProductServlet
note left of SearchProductServlet
jQuery.getメソッド
第一引数(url):'http://' + location.host + '/ojt_ecsite/検索結果メーカー'
第二引数(data):指定した検索条件(商品名, 下限価格, 上限価格)
end note
note over SearchProductServlet
UC01[商品を一覧表示する]で用意した
全商品のデータをHttpSession.getAttributeで取得し,
SearchEngineクラスのstaticフィールドにセットする
end note
SearchProductServlet -> 検索結果メーカー : 検索結果を出す(Map<String,String[]> 入力チェック前の検索条件)
activate 検索結果メーカー
検索結果メーカー -> InputChecker : 入力内容をチェックする(Map<String,String[]> 入力チェック前の検索条件)
activate InputChecker
note over InputChecker
<実施するチェックの順序>
①少なくとも1つの検索条件を指定している
②商品名にクォーテーションを含まない
③文字数をオーバーしていない
商品名:250文字以下
下限価格,上限価格:9文字以下
④下限価格,上限価格ともに1以上の整数である
⑤下限価格 ≦ 上限価格 を満たしている
end note
note left of InputChecker
enum CheckResult {
VALID(正常な入力値)
INVALID_ALL_INPUT_EMPTY(すべての検索条件を指定していない)
INVALID_CONTAINS_QUOTATION(クォーテーションが含まれている)
INVALID_EXCEEDS_CHARACTERS(文字数オーバー)
INVALID_NOT_UNSIGNED_INTEGER(1以上の整数でない)
INVALID_REVERSED_PRICE_RANGE(下限価格 > 上限価格になっている)
}
end note
検索結果メーカー <-- InputChecker : CheckResult
deactivate InputChecker
alt VALID
note over 検索結果メーカー
正常と判断された入力内容を、
javaオブジェクト(SearchParameter 検索条件)にする
end note
検索結果メーカー -> SearchParameter : new 検索条件(String 商品名, int 下限価格, int 上限価格)
activate SearchParameter
検索結果メーカー <-- SearchParameter : 検索条件
deactivate SearchParameter
検索結果メーカー -> SearchEngine : 検索条件に合う商品データを取得する(SearchParameter 検索条件)
activate SearchEngine
note over SearchEngine
staticフィールドにある全商品データと
サーブレットから受け取った検索条件で検索
end note
検索結果メーカー <-- SearchEngine : List<Product> foundProductList
deactivate SearchEngine
note over 検索結果メーカー
foundProductList → objectMapper.writeValueAsString → JSON
[
{"ID" : 1, "商品名": "一番ビール", ...},
{"ID" : 4, "商品名": "ほぼビール", ...},
{"ID" : 5, "商品名": "ビールテイスト", ...},
]
end note
else INVALID
検索結果メーカー -> ErrorMessage : new ErrorMessage(エラーID)
activate ErrorMessage
note over ErrorMessage
渡されたエラーIDに応じて、
コンストラクタで生成したエラーメッセージを返却する
end note
検索結果メーカー <-- ErrorMessage : ErrorMessage
deactivate ErrorMessage
note over 検索結果メーカー
ErrorMessage → objectMapper.writeValueAsString → JSON
{
"ErrorMessage" : "(入力チェックを通らなかった原因を伝えるメッセージ)"
}
end note
else default
検索結果メーカー -> ErrorMessage : new ErrorMessage(エラーID)
activate ErrorMessage
検索結果メーカー <-- ErrorMessage : ErrorMessage
deactivate ErrorMessage
note over 検索結果メーカー
ErrorMessage → objectMapper.writeValueAsString → JSON
{
"ErrorMessage" : "(予期せぬエラーが発生しました 開発者へご連絡ください)"
}
end note
end
SearchProductServlet <- 検索結果メーカー : String responseJSON
deactivate 検索結果メーカー
Browser <<-- SearchProductServlet : レスポンス(JSON)
deactivate SearchProductServlet
activate Browser
note left of 検索結果メーカー
jQuery.getメソッド
第三引数(callback):通信成功時に実行するコールバック関数
.done(function (data) {
//返ってきたJSON文字列を使って動的に商品一覧画面の表示を変更
}).fail(function (error) {
// 通信エラーの場合はこちらが実行され、エラーの詳細をコンソールに出力
console.log(error);
});
}
end note
利用者 <-- Browser
note right of 利用者
絞り込みを完了した商品一覧画面またはエラーメッセージが
Webブラウザに表示される
end note
deactivate Browser
@enduml
|
46a61b826e50e078d1a4ec2cd6dbca4b07921ea4 | c55a0f6f5912b83eba44e21eb49411b7e9ddc8b4 | /assets/docs/diagrams/src/muduo_atomic.puml | 291cf0b59c4b704730a21afb26e1e5716c251fce | [] | no_license | pusidun/pusidun.github.io | 28264234a10a439a92bdb88d14f39841c69ad38d | 914455fcd22984538d2dd3d55a1e793271001396 | refs/heads/master | 2021-07-05T23:39:24.811134 | 2021-06-01T06:17:42 | 2021-06-01T06:17:42 | 115,238,548 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 254 | puml | @startuml Atomic
class Atomic{
+AtomicIntegerT
+get()
+getAndAdd(T x)
+addAndGet(T x)
+T incrementAndGet()
+decrementAndGet()
+add(T x)
+increment()
+void decrement()
+T getAndSet()
-volatile T value_
}
@enduml |
eaab9e4153550b10584137d6d3cd56cdb7dbd079 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/TaxMode.puml | 6e5b5aede592e59c7a946b2e1e186db98638319b | [] | 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 | 11,023 | puml | @startuml
hide methods
enum TaxMode {
PLATFORM
EXTERNAL
EXTERNAL_AMOUNT
DISABLED
}
interface Cart [[Cart.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
anonymousId: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalLineItemQuantity: Long
totalPrice: [[CentPrecisionMoney.svg CentPrecisionMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
cartState: [[CartState.svg CartState]]
billingAddress: [[Address.svg Address]]
shippingAddress: [[Address.svg Address]]
shippingMode: [[ShippingMode.svg ShippingMode]]
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
shipping: [[Shipping.svg List<Shipping>]]
itemShippingAddresses: [[Address.svg List<Address>]]
discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
custom: [[CustomFields.svg CustomFields]]
deleteDaysAfterLastModification: Integer
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface CartDraft [[CartDraft.svg]] {
currency: String
key: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
anonymousId: String
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[LineItemDraft.svg List<LineItemDraft>]]
customLineItems: [[CustomLineItemDraft.svg List<CustomLineItemDraft>]]
taxMode: [[TaxMode.svg TaxMode]]
externalTaxRateForShippingMethod: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]]
shippingRateInput: [[ShippingRateInputDraft.svg ShippingRateInputDraft]]
shippingMode: [[ShippingMode.svg ShippingMode]]
customShipping: [[CustomShippingDraft.svg List<CustomShippingDraft>]]
shipping: [[ShippingDraft.svg List<ShippingDraft>]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
discountCodes: [[String.svg List<String>]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
deleteDaysAfterLastModification: Long
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface CartChangeTaxModeAction [[CartChangeTaxModeAction.svg]] {
action: String
taxMode: [[TaxMode.svg TaxMode]]
}
interface MyCartDraft [[MyCartDraft.svg]] {
currency: String
customerEmail: String
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[MyLineItemDraft.svg List<MyLineItemDraft>]]
taxMode: [[TaxMode.svg TaxMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
discountCodes: [[String.svg List<String>]]
country: String
locale: String
deleteDaysAfterLastModification: Long
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface MyCartChangeTaxModeAction [[MyCartChangeTaxModeAction.svg]] {
action: String
taxMode: [[TaxMode.svg TaxMode]]
}
interface StagedOrderChangeTaxModeAction [[StagedOrderChangeTaxModeAction.svg]] {
action: String
taxMode: [[TaxMode.svg TaxMode]]
}
interface Order [[Order.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
orderNumber: String
purchaseOrderNumber: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
anonymousId: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[Address.svg Address]]
shippingAddress: [[Address.svg Address]]
shippingMode: [[ShippingMode.svg ShippingMode]]
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
shipping: [[Shipping.svg List<Shipping>]]
itemShippingAddresses: [[Address.svg List<Address>]]
discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
cart: [[CartReference.svg CartReference]]
quote: [[QuoteReference.svg QuoteReference]]
orderState: [[OrderState.svg OrderState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
paymentState: [[PaymentState.svg PaymentState]]
state: [[StateReference.svg StateReference]]
syncInfo: [[SyncInfo.svg List<SyncInfo>]]
returnInfo: [[ReturnInfo.svg List<ReturnInfo>]]
lastMessageSequenceNumber: Long
custom: [[CustomFields.svg CustomFields]]
completedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface QuoteRequest [[QuoteRequest.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
quoteRequestState: [[QuoteRequestState.svg QuoteRequestState]]
comment: String
customer: [[CustomerReference.svg CustomerReference]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
shippingAddress: [[Address.svg Address]]
billingAddress: [[Address.svg Address]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
country: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
itemShippingAddresses: [[Address.svg List<Address>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
custom: [[CustomFields.svg CustomFields]]
state: [[StateReference.svg StateReference]]
purchaseOrderNumber: String
cart: [[CartReference.svg CartReference]]
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface Quote [[Quote.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
quoteRequest: [[QuoteRequestReference.svg QuoteRequestReference]]
stagedQuote: [[StagedQuoteReference.svg StagedQuoteReference]]
customer: [[CustomerReference.svg CustomerReference]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
validTo: DateTime
sellerComment: String
buyerComment: String
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
shippingAddress: [[Address.svg Address]]
billingAddress: [[Address.svg Address]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
country: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
itemShippingAddresses: [[Address.svg List<Address>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
custom: [[CustomFields.svg CustomFields]]
quoteState: [[QuoteState.svg QuoteState]]
state: [[StateReference.svg StateReference]]
purchaseOrderNumber: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
TaxMode --> Cart #green;text:green : "taxMode"
TaxMode --> CartDraft #green;text:green : "taxMode"
TaxMode --> CartChangeTaxModeAction #green;text:green : "taxMode"
TaxMode --> MyCartDraft #green;text:green : "taxMode"
TaxMode --> MyCartChangeTaxModeAction #green;text:green : "taxMode"
TaxMode --> StagedOrderChangeTaxModeAction #green;text:green : "taxMode"
TaxMode --> Order #green;text:green : "taxMode"
TaxMode --> QuoteRequest #green;text:green : "taxMode"
TaxMode --> Quote #green;text:green : "taxMode"
@enduml
|
994a4a3c9f91cc4c7ae24d106892d4cbed8ab62c | 644b7bb773b84596a2de4d31a0603284d9562e56 | /Solidity/Contracts/User.iuml | f22976e5ecc65797e1dc859c35ff7628e10e0c78 | [] | no_license | M9k/Marvin-Uml | e62d17245cf493d53f0b80f633a47be8ec44569e | 0fe9bc36f947535ae4397181ccf8c85291244a87 | refs/heads/master | 2021-04-15T17:44:22.461549 | 2018-05-10T07:52:19 | 2018-05-10T07:52:19 | 126,618,685 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 301 | iuml | @startuml
class User #87FF95 {
# publicAddress: address
# name: bytes32
# surname: bytes32
# university: University
__modifiers__
onlySubject
__
+ User(_name: bytes32, _surname: bytes32, _publicAddress: address)
+@ getPublicAddress(): address
+@ getName(): bytes32
+@ getSurname(): bytes32
}
@enduml
|
05f993711092ede2cf5aefde0871d2d8487c1bc4 | d33079ed6343577d9d5ad094f2f510b03ecd1ded | /tests/Feature/TestData/NullableTypes.puml | 5ba61c38e45ec78bdbce2f66d4156a88c903e50f | [] | no_license | Prizephitah/php2puml | 908bf2c98a8bf0882bc94d663c3b0951858be9f5 | 3af0bde788e57aa0f4fe30144db9931379951add | refs/heads/master | 2023-01-19T01:13:59.324114 | 2020-11-12T13:58:05 | 2020-11-12T13:58:05 | 263,049,006 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 127 | puml | @startuml
class Example.ExampleClass {
-const TEST
#int count
+doStuff(?string input, int amount): ?array
}
@enduml |
e983da94eb54fdb35e573a65e6ed95d24dfe8d02 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CustomerAddBillingAddressIdAction.puml | 1a7979a556c5ddf68016da26c4603fdaa5712ab9 | [] | 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 | 489 | 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 CustomerAddBillingAddressIdAction [[CustomerAddBillingAddressIdAction.svg]] extends CustomerUpdateAction {
action: String
addressId: String
addressKey: String
}
interface CustomerUpdateAction [[CustomerUpdateAction.svg]] {
action: String
}
@enduml
|
a624cfd8c6b56ba2fae66bd7abcc8b27d26fea47 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/contact-information@0.2.0.puml | 4f17e8a7e2342de46a7facaf82e50b6ebfb4177f | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"CC-BY-4.0"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 454 | puml | @startuml
class org.accordproject.contactinformation.CommunicationChannel << (E,grey) >> {
+ EMAIL
+ PHONE
}
class org.accordproject.contactinformation.ContactInformation << (A,green) >> {
+ String name
+ String title
+ String email
+ String phone
+ TimeZone timezone
+ CommunicationChannel communicationChannel
}
org.accordproject.contactinformation.ContactInformation --|> org.accordproject.cicero.contract.AccordClause
@enduml
|
169aac13fd86bc206350eaa7a84ea78ca64cf202 | a31d4d705e38e84a6da6e491a811599d813d56a0 | /ntu_6_5/src/com/company/company.plantuml | 5c8d1f57b3138d2e0413af9dd63c2567287fe7e2 | [] | no_license | rabiefw/Java_Examples_NTU | ea97330e2d8aabc03a9d8b97693ece475a3ccee1 | c653bb6fab68f2246b13378a7aba0f58e1ad76a1 | refs/heads/main | 2023-06-14T04:07:49.284710 | 2021-07-16T15:44:36 | 2021-07-16T15:44:36 | 384,429,520 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,102 | plantuml | @startuml
title __COMPANY's Class Diagram__\n
namespace com.company {
class com.company.Circle {
# radius : double
+ Circle()
+ getArea()
+ getPerimeter()
+ toString()
}
}
namespace com.company {
interface com.company.GeometricObject {
{abstract} + getArea()
{abstract} + getPerimeter()
}
}
namespace com.company {
class com.company.Main {
{static} + main()
}
}
namespace com.company {
interface com.company.Resizable {
{abstract} + resize()
}
}
namespace com.company {
class com.company.ResizableCircle {
+ ResizableCircle()
+ resize()
+ toString()
}
}
com.company.Circle .up.|> com.company.GeometricObject
com.company.ResizableCircle .up.|> com.company.Resizable
com.company.ResizableCircle -up-|> com.company.Circle
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
|
57a909e654948a3e38c4a37605b519f5b9f42d9e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ZoneSetDescriptionAction.puml | 17a64b0844aad6722423550fa537518ee3807d69 | [] | 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 | 438 | 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 ZoneSetDescriptionAction [[ZoneSetDescriptionAction.svg]] extends ZoneUpdateAction {
action: String
description: String
}
interface ZoneUpdateAction [[ZoneUpdateAction.svg]] {
action: String
}
@enduml
|
ca5d3e6d8bc6507935e03c836e68e5556bc8c79c | 130925fb149bd7c43c6eeb1d3a7ad382a0627a43 | /docs/server.puml | a8717a84579e734ba29010aad3b553fe8425e673 | [
"MIT"
] | permissive | AntonHellbe/ServerProject | dfe4de914893c8fff7506009bda7b5457a000f2d | dcbef71c628ee236e5bae095435dbba4d90ee6d3 | refs/heads/master | 2021-01-17T07:09:20.274705 | 2016-06-01T13:39:02 | 2016-06-01T13:39:02 | 55,596,438 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 806 | puml | @startuml
class User{
-String id;
-String firstName;
-String lastName;
-RfidKey rfidKey;
}
class Stamp{
#Calendar date;
#boolean checkIn;
}
class PiStamp extends Stamp{
-String lastName;
-String lastName;
-String firstName;
}
interface PiService {
public ResponseEntity<PiStamp> addNewStamp(RfidKey rfidKey);
}
class PiServiceImpl implements PiService {
TimeRepository timeRepository;
UserRepository userRepository;
public ResponseEntity<PiStamp> addNewStamp(RfidKey rfidKey)
}
class TimeRepository{
}
class UserRepository{
}
class TimeStamp{
}
class RfidKey{
}
PiServiceImpl -- TimeRepository
PiServiceImpl -- UserRepository
PiServiceImpl -- User
PiServiceImpl -- Timestamp
PiServiceImpl -- RfidKey
PiServiceImpl -- PiStamp
PiServiceImpl -- TimeStamp
@enduml |
e918d3adb59028e00e520c8e43c183cdd28c8dd5 | 104baec967c5fc89abbbcc738f2a9bb58ca8a784 | /uml/lark_v0/impl/api_gateway.puml | 14fffe62ac218eea080abd953637d8fce5d818a9 | [] | no_license | lsy357/golang | 57abd62aa859e0779cf2b64a23f2c6cf009a649f | af73d7d784c88934b615b8ea11ca771b47cc4af1 | refs/heads/main | 2023-05-25T03:19:25.749688 | 2021-05-04T09:14:01 | 2021-06-14T05:14:22 | 376,710,612 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,582 | puml | @startuml
class APIGatewayHandler {
+ void cmdHandler(Context ctx)
+ void signInHandler(Context ctx)
+ void signUpHandler(Context ctx)
+ void sendSMSHandler(Context ctx)
}
APIGatewayHandler --> ReverseProxyFactory
ReverseProxyFactory --> ReverseProxy
class ReverseProxyFactory {
+ void getReverseProxy(String url)
}
class ReverseProxy {
+ void serveHTTP(HttpRespWriter rw, HttpReq httpReq)
}
class Dispatcher {
Map<Integer, String> cmdRouter
- void init()
+ void RegisterCmdRoute(int cmd, String svr)
+ String getCmdHandleSvr(int cmd)
+ byte[] dispatch(SvrReq req, int cmd)
}
class SvrReqFactory {
+ SvrReq getSvrReq(HttpReq httpReq)
}
class SvrReq {
+ int64 userID
+ int64 deviceID
+ String requestID
+ String source
+ byte[] payload
}
class SvrResp {
+ int statusCode
+ String msg
+ byte[] payload
}
'class MetricsEmitter {
' + void emitCounter(Map<String, String> tags, String name, int value)
' + void emitTimer(Map<String, String> tags, String name, int value)
'}
class ServeClient {
+ SvrResp serve(SvrReq req)
}
class Server {
+ SvrResp serve(SvrReq req)
}
note "Thrift RPC" as n1
ServeClient ..n1
n1.. Server
Server --> FuncDispatcher
Server --> SvrReq
Server --> SvrResp
class FuncDispatcher {
+ dispatch(int cmd)
+ register(int cmd, Func handler)
}
APIGatewayHandler o-- Dispatcher
SvrReqFactory --> SvrReq
'Dispatcher --> MetricsEmitter
Dispatcher --> SvrReqFactory
Dispatcher --> ServeClient
ServeClient --> SvrReq
ServeClient --> SvrResp
@enduml |
515ffa7480931ccbf17d34360fdbe6e7dec70a42 | eba86ba778d78c873e41c86ca92ac92bc5a92810 | /docs/img/ndl-uml.plantuml | 1d8babe66f1af17726feaee213364a02e28ff24f | [
"MIT"
] | permissive | ajelenak/ndl | 4cd6ffb474a8f837a8c1e305e605edd8eb536a4c | bafe19ada2a8b981321817f2f2cd18a03c4431ad | refs/heads/master | 2023-05-02T22:27:40.892644 | 2023-04-12T13:41:05 | 2023-04-12T13:41:05 | 149,538,181 | 2 | 0 | MIT | 2023-04-12T05:52:19 | 2018-09-20T02:14:29 | null | UTF-8 | PlantUML | false | false | 391 | plantuml | @startuml
hide circle
class "File" as F
class "Group" as G {
name
}
class "Attribute" as A {
name
shape
type
value
}
class "DimCoord" as DC {
name
size
type
value
}
class "Ndarray" as Nd {
name
shape
type
value
}
F -- G
DC *-- "0..*" A
G *-- G
G *-- "0..*" A
G *-- "0..*" DC
Nd *-- "0..*" A
G *-- "0..*" Nd
Nd <-- "0..*" DC
@enduml
|
b0a773e54b5787364628e68a269fa8585198fe20 | 54ebd9eb2ddadc17b215617d96fac1f93f4acfef | /structural/adapter/adapter.puml | 2912bacc8944b41793bbb7878f0607c645ca62fc | [] | no_license | cesarkohl/design-patterns | acb42191662c141f064d9c90426dfd4491d43dfe | 991f83d0076b0a69e9d6b7c1163cf49fde3bfcbf | refs/heads/main | 2023-06-11T07:16:18.484116 | 2023-05-28T14:41:01 | 2023-05-28T14:41:01 | 199,520,479 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 436 | puml | @startuml
note as n1
const myCodeAdapter = new MyCodeAdapter(new ThirdPartyLib());
json = myCodeAdapter.getJson();
end note
class MyCode {
+ getJson(): string {}
}
class ThirdPartyLib {
+ getXml(): string {}
}
class MyCodeAdapter extends MyCode {
- adaptee: ThirdPartyLib;
+ constructor(adaptee: ThirdPartyLib) {}
+ getJson() {\n // format adaptee.getXml() to JSON\n}
}
MyCodeAdapter <.. ThirdPartyLib
@enduml |
1fcdca04baa33f11a64b96db901f2678bd31276c | ece0340d094951c9b00dc7990820da3b18de26cc | /out/production/DateTest/类图/参考/test1.puml | b82fcc30b45396a560e20e0733ec24b85ba904f0 | [] | no_license | swf2020/clssuml | 1ae35ac8f8cd3c0dc83bc6d691ee0b2d893cca5e | bb233a0e4f9058fa36aebb2aa806ed8039735a80 | refs/heads/master | 2022-12-04T17:14:55.118424 | 2020-08-21T09:02:14 | 2020-08-21T09:02:14 | 284,682,724 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,747 | puml | @startuml
title decoupling
'skinparam packageStyle rect/' 加入这行代码,样式纯矩形'/
skinparam backgroundColor #EEEBDC
skinparam roundcorner 20
skinparam sequenceArrowThickness 2
'skinparam handwritten true
class Rxbus {
+IEventSubscriber iEventSubscriber
+addSubscriber(IEventSubscriber)
+sendMessageTo(Event)
}
interface IEventSubscriber
Rxbus --> IEventSubscriber
namespace com.xueshuyuan.cn.view #purple{
interface ILoginView{
+void loginWithPw()
+void loginByToken()
+void register()
+void success()
}
class LoginActivity<<接收反馈并更新UI>> {
+void loginWithPw()
+void loginByToken()
+void register()
+void success()
}
ILoginView <|--[#red] LoginActivity
}
namespace com.xueshuyuan.cn.presenter #orange{
interface ILoginPresenter{
+void loginByToken()
+void register()
}
class LoginPresenterImpl<<承接事件及接收通知处理并转发反馈>> {
+ILoginView iLoginView
+ILoginManager iLoginManager
+LoginPresenterImpl(ILoginView, ILoginManager)
+void loginWithPw()
+void loginByToken()
+void register()
+void receiveMessage(Event)
}
ILoginPresenter <|--[#red] LoginPresenterImpl
com.xueshuyuan.cn.view.LoginActivity <..[#red] LoginPresenterImpl : Dependency
com.xueshuyuan.cn.moudle.LoginManagerImpl <..[#red] LoginPresenterImpl : Dependency
.IEventSubscriber <|..[#red] ILoginPresenter
}
namespace com.xueshuyuan.cn.moudle #green{
interface ILoginManager{
+void loginWithPw()
+void loginByToken()
+void register()
+boolean checkUserExit()
+boolean checkPw()
}
class LoginManagerImpl<<承接事件及Rxbus发送通知>> {
+void loginWithPw()
+void loginByToken()
+void register()
+boolean checkUserExit()
+boolean checkPw()
+void sendMessageToXX(Event)
}
ILoginManager <|--[#red] LoginManagerImpl
}
@enduml |
504d584b5812e982d999294db29ad06cb327b3a5 | 826245a81aa5b04aee737fc42ed0b2ad5b63c634 | /uml/App.puml | e76e34acad0270c303145271ea17d6655451e1b6 | [] | no_license | Lino437/Gonzalez-cop3330-assignment4 | 2942952b49800b8503c36115573b4709dcca4e51 | 7339e6b207ba4b87da28ac62b070e4358cdeefba | refs/heads/master | 2023-06-11T19:54:53.678856 | 2021-07-06T03:52:37 | 2021-07-06T03:52:37 | 383,330,887 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,089 | puml | @startuml
'https://plantuml.com/class-diagram
class TodoListManager {
main()
start()
}
class TodoController{
model: TodoListModel
'javafx event handlers
addButtonClicked()
removeButtonClicked()
editButtonClicked()
saveButtonClicked()
loadButtonClicked()
display
}
class ListItemsController{
model: ListItemsDisplay
'javafx event handlers
addButtonClicked()
removeButtonClicked()
editDueDateButtonClicked()
editDescriptionButtonClicked()
displayAllButtonCLicked()
displayCompletedButtonCLicked()
displayUncompletedButtonCLicked()
saveButtonClicked
}
class TodoListModel {
ListTittle: String
addItem()
removeItem()
editDescription()
editDueDate()
sortByDueDate()
toString()
}
class ListItem {
completed: boolean
description: String
due date: object format MM-DD-YYYY
}
org.javafx.Application <|- TodoListManager
TodoListManager o--> TodoController
TodoController - ListItemsController
TodoController o--> TodoListModel
ListItemsController o--> ListItem
@enduml |
83f339d95ca580871b3c2e82b03afa198e164a16 | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Accessors/EntityFramework/Seller.puml | 94bfaf04ac406962f1d50ae8b6647b334f3cd6b0 | [
"BSD-3-Clause"
] | permissive | noelmartens/TransitionAcademy | 4e02379d234aa4859a497ee2846420f4c55b9e12 | 3b95a5c737ab7b1497b77d455cf64caa73f69e1f | refs/heads/master | 2023-06-14T05:25:35.514249 | 2021-07-02T19:40:29 | 2021-07-02T19:40:29 | 362,512,351 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 419 | puml | @startuml
class Seller {
+ Seller()
+ Id : int <<get>> <<set>>
+ Name : string <<get>> <<set>>
+ IsApproved : bool <<get>> <<set>>
+ BankRoutingNumber : int <<get>> <<set>>
+ BankAccountNumber : int <<get>> <<set>>
+ OrderNotificationEmail : string <<get>> <<set>>
+ UserName : string <<get>> <<set>>
}
Seller o-> "CreatedAt" DateTimeOffset
Seller o-> "UpdatedAt" DateTimeOffset
@enduml
|
be72e39ccb1242029f73f1009f585c5bdaf0eeff | 28285a8f944c0fde1209e943890e795f1f7961d7 | /src/main/java/construct/abstractFactory/AbstractFactory.puml | 10f7a481e239adafca90e2c2d96bf15b98bc7c3d | [] | no_license | shaoneng111/design-pattern | 94496017f52eb86cf249a92090176df89e188ab1 | 298cbd0b5218c99adbd2fdd49c16ab6087246cfd | refs/heads/master | 2021-06-28T16:31:29.374241 | 2020-09-29T11:09:33 | 2020-09-29T11:09:33 | 156,365,576 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,159 | puml | @startuml
abstract class AbstractProductA {
{method} +use() : void
}
abstract class AbstractProductB {
{method} +eat() : void
}
abstract class AbstractFactory {
{method} +createProductA() : AbstractProductA
{method} +createProductB() : AbstractProductB
}
class ConcreteFactory1 {
{method} +createProductA() : AbstractProductA
{method} +createProductB() : AbstractProductB
}
class ConcreteFactory2 {
{method} +createProductA() : AbstractProductA
{method} +createProductB() : AbstractProductB
}
class ConcreteProductA1 {
{method} +use() : void
}
class ConcreteProductA2 {
{method} +use() : void
}
class ConcreteProductB1 {
{method} +eat() : void
}
class ConcreteProductB2 {
{method} +eat() : void
}
AbstractProductA <|.. ConcreteProductA1
AbstractProductA <|.. ConcreteProductA2
AbstractProductB <|.. ConcreteProductB1
AbstractProductB <|.. ConcreteProductB2
AbstractFactory <|.. ConcreteFactory1
AbstractFactory <|.. ConcreteFactory2
ConcreteFactory1 ..> ConcreteProductA1
ConcreteFactory1 ..> ConcreteProductB1
ConcreteFactory2 ..> ConcreteProductA2
ConcreteFactory2 ..> ConcreteProductB2
@enduml |
0ea122f9542f985836d1660e59938894ad01c5fe | 78320fc7ec1a5ee6c714cd76946bcacc5dfb0c9e | /docs/uml/tom-03-section-run.puml | 457779ebba3cbb395a641d581b19699a61f926c2 | [
"MIT"
] | permissive | monora/tom | a9641142fa88dd4e3bcae63797171ab262d213d9 | 4635703445d494e39e861ac6da0ee1b4688adf52 | refs/heads/master | 2023-02-25T22:14:19.054937 | 2021-02-06T15:10:14 | 2021-02-06T15:12:43 | 320,627,125 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,053 | puml | left to right direction
class Train <<TOM>> {
+TrainID train_id()
}
class RoutingInfo {
lead_ru: CompanyCode
}
class RouteSection {
applicant_ru: CompanyCode
planning_im: CompanyCode
departure_time: TimeOfDay
calendar: Set<Date>
}
Train *-- "0..1" RoutingInfo
RoutingInfo *-- "1..*" RouteSection
class SectionRun {
departure_time: Timestamp
+ String section_id()
+ Timestamp arrival_time()
+ Timestamp arrival_at_departure_station()
+ JourneyLocation departure_station()
+ JourneyLocation arrival_station()
+ Boolean connects_to(other: SectionRun)
}
RouteSection *- "1..*" SectionRun
note bottom of SectionRun
A section run happens on the calendar day
of its departure_time timestamp.
end note
class TrainRun {
+ TrainID train_run_id()
+ Date start_date()
}
note bottom of TrainRun
The start_date of a train run is the calendar day
of the departure_time timestamp of
its first section run.
end note
TrainRun o--> "1..* {ordered}" SectionRun
Train o- "1..365" TrainRun
|
2d60e48696d20195e1e8482d797131629ff1aa6a | 0c8de9bff9bcf434956d1e5bbeb010a538e9f3a7 | /test6/src/class.puml | ae261e5497d40eb013c42c04ca6d081991ed5d4c | [] | no_license | zhouboling/is_analysis | 4ebfadad79ae918dd1a1131ea761ee372a48b588 | 8ae5266699629f53effa0d0c2fea697fa3372fd4 | refs/heads/master | 2020-03-07T17:45:20.734300 | 2018-06-08T02:09:30 | 2018-06-08T02:09:30 | 127,619,761 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,262 | puml | @startuml
title 基于GitHub的实验管理平台--类图
class semester {
<b>semester_id</b> (学期号)
}
class curriculum {
<b>curriculum_id</b> (课程名称)
}
curriculum <|- semester
curriculum <|-tests
class users {
<b>user_id</b> (用户ID)
name (用户真实姓名)
github_username (用户GitHub账号)
update_date (用户GitHub账号修改日期)
password (用户密码)
disable (用户是否禁用)
}
class teachers{
<b>teacher_id</b> (老师工号)
department (老师所属部门)
}
class students{
<b>student_id</b> (学号)
class (班级)
result_sum(成绩汇总)
web_sum (网站正确与否汇总)
curriculum (课程)
semester (学期)
}
class login{
<b>username</b> (用户名)
password (密码)
}
users <|- login
users <|- students
users <|-- teachers
class grades {
<b>student_id</b> (学号)
<b>test_id</b> (实验编号)
result (分数)
memo (评价)
update_date (评改日期)
}
class tests {
<b>test_id</b> (实验编号)
title (实验名称)
curriculum (课程)
semester (学期)
}
students "n" -- "n" grades
tests "n" -- "n" grades
@enduml |
9390b7b3f39761aa861730950a8146e35f2b761f | c341215b1b9d88fee81b8af9ebfcff285f0ef49c | /src/gp018328/com/gupaoedu/homework/pattern/factory/homework1/AbstractFactory.puml | 4adb12ba35a7207dabaf0909b9e4957375d8a756 | [] | no_license | GP018328/guopaoedu-GP018328-2019-homework | 5570fff2a379b9bbc853d2a7f4629b22fdf640ac | 18f24258150c0c32ffc4fb486413686e7e4d2d75 | refs/heads/master | 2020-04-28T17:34:08.734073 | 2019-03-23T03:01:20 | 2019-03-23T03:01:20 | 175,451,458 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,392 | puml | @startuml
interface IProduct
interface IProduct{
}
class ProductA {
}
IProduct<|--ProductA
class ProductB {
}
IProduct<|--ProductB
interface IFactory
interface IFactory{
IProduct createProduct()
}
IProduct<..IFactory
class FactoryMethodA{
IProduct createProduct()
}
IFactory<|--FactoryMethodA
ProductA<..FactoryMethodA
class FactoryMethodB{
IProduct createProduct()
}
IFactory<|--FactoryMethodB
ProductB<..FactoryMethodB
interface IProduct_New
interface IProduct_New{
}
class ProductA_New {
}
IProduct_New<|--ProductA_New
class ProductB_New {
}
IProduct_New<|--ProductB_New
interface IFactory_New
interface IFactory_New{
IProduct_New createProduct_New()
}
IProduct_New<..IFactory_New
class FactoryMethodA_New{
IProduct_New createProduct()
}
IFactory_New<|--FactoryMethodA_New
ProductA_New<..FactoryMethodA_New
class FactoryMethodB_New{
IProduct_New createProduct()
}
IFactory_New<|--FactoryMethodB_New
ProductB_New<..FactoryMethodB_New
interface IAbstractFactory
interface IAbstractFactory{
IProduct createProduct()
IProduct_New createProduct_New()
}
IProduct<..IAbstractFactory
IProduct_New<..IAbstractFactory
class Factory_TopA{
}
IAbstractFactory<|--Factory_TopA
Factory_TopA..>FactoryMethodA
Factory_TopA..>FactoryMethodB_New
class Factory_TopB{
}
IAbstractFactory<|--Factory_TopB
Factory_TopB..>FactoryMethodB
Factory_TopB..>FactoryMethodA_New
@enduml |
bbca74cfbc5475a201b6196251dcdd223f7894b6 | 461901a377b07e8d699ab4afb6e7488f14143a55 | /src/com/wsh/pattern/uml/implementation/implementation.puml | 0d06a2768ad3ddcd5552c7ccd50ee7ce011b0038 | [] | no_license | wushanghui/project | 7009bd5fb484422d6e404483f9b9b2bd1e03f379 | 81f7d061ed471ae03ff5d33756ce23efa473a37a | refs/heads/master | 2020-06-17T18:34:13.378885 | 2019-10-07T14:35:35 | 2019-10-07T14:35:35 | 192,837,011 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 221 | puml | @startuml
interface PersonService
class PersonServiceBean
PersonService <|.. PersonServiceBean
interface PersonService {
delete(id: Integer ): void
}
class PersonServiceBean {
delete(id: Integer ): void
}
@enduml |
876d4961eeea19c2293258b048793f9990c485f6 | a751888fd29a1b92bb32ef7d272d3e72f664ed30 | /src/design/field.puml | c5858064bf6de9c17b4ed51f94f8632d3d1cbe49 | [
"Apache-2.0",
"MIT",
"EPL-1.0"
] | permissive | petrushy/Orekit | b532c7db85c992d85b5ac3d858d18d656e2b8c46 | 1f8ff45caf82e0e7e85f8cf9fd4f41c3ba379443 | refs/heads/develop | 2023-08-16T11:37:43.709083 | 2023-07-18T20:13:14 | 2023-07-18T20:13:14 | 42,349,064 | 10 | 2 | Apache-2.0 | 2023-07-21T14:54:14 | 2015-09-12T07:39:56 | Java | UTF-8 | PlantUML | false | false | 2,663 | puml | ' Copyright 2002-2022 CS GROUP
' Licensed to CS GROUP (CS) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' CS licenses this file to You under the Apache License, Version 2.0
' (the "License"); you may not use this file except in compliance with
' the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
@startuml
skinparam svek true
skinparam ClassBackgroundColor #F3EFEB/CCC9C5
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
skinparam PackageFontSize 12
skinparam linetype ortho
package org.hipparchus #ECEBD8 {
interface "FieldElement<T>" as FieldElement_T_ {
T add(T a)
T subtract(T a)
T negate()
T multiply(int n)
T multiply(T a)
T divide(T a)
T reciprocal()
Field<T> getField()
}
interface "CalculusFieldElement<T>" as CalculusFieldElement_T_ {
T sin()
T cos()
...
T copySign(T sign)
double getReal()
}
note top
lots of mathematical methods
omitted for clarity
end note
package analysis.differentiation #DDEBD8 {
class DSFactory {
+DSFactory(int parameters, int order)
+constant(double value)
+variable(int index, double value)
}
class DerivativeStructure {
+DSFactory getFactory()
+int getFreeParameters()
+int getOrder()
+double getValue()
+double getPartialDerivative(int[] orders)
+double taylor(double[] delta)
}
FieldElement_T_ <.. CalculusFieldElement_T_
CalculusFieldElement_T_ <.. DerivativeStructure
DSFactory --> DerivativeStructure : creates
}
package util #DDEBD8 {
CalculusFieldElement_T_ <.. Tuple
}
}
package org.orekit.propagation #ECEBD8 {
interface "FieldPropagator<T>" as FieldPropagator_T_ {
}
CalculusFieldElement_T_ <-- FieldPropagator_T_
}
@enduml
|
0d5ac933dd7049b6650bdae5c72e15ee43f5fd9a | 69e2e074c6872d5c54c470ee7804f59e8c8d36f2 | /test/diagrams/Resource_ProductOrder.puml | 0b80b7b084ac74a2817ae4e2ee48918681eef633 | [] | no_license | knutaa/asciidoctest | 350c45285888c1125badf2602280e1301495984a | 410a5d76020dfa98d4abda382ed8ad04baafbbe3 | refs/heads/main | 2023-01-29T14:01:37.296912 | 2020-12-14T13:49:58 | 2020-12-14T13:49:58 | 313,266,232 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,790 | puml | @startuml
'
' Resource: ProductOrder
' Source: Product_Ordering_4.0.0_oas.yaml
' Generated: 2020-11-18 23:09:09+0100
'
hide circle
hide methods
hide stereotype
show <<Enumeration>> stereotype
skinparam class {
backgroundColor<<Enumeration>> #E6F5F7
backgroundColor<<Ref>> #FFFFE0
backgroundColor<<Pivot>> #FFFFFFF
backgroundColor #FCF2E3
backgroundColor<<SubResource>> MistyRose
}
skinparam legend {
borderRoundCorner 0
borderColor red
backgroundColor white
}
'sequence: 19
class ProductOrder <extends \nEntity > <<Pivot>> {
cancellationDate : DateTime
cancellationReason : String
category : String
completionDate : DateTime
description : String
expectedCompletionDate : DateTime
externalId : String
href : String
id : String
notificationContact : String
orderDate : DateTime
priority : String
requestedCompletionDate : DateTime
requestedStartDate : DateTime
state : ProductOrderStateType
@baseType : String
@schemaLocation : Uri
@type : String
}
'sequence: 20
class ProductOrderStateType <<Enumeration>> {
acknowledged
inProgress
rejected
held
assessingCancellation
pendingCancellation
pending
cancelled
completed
failed
partial
}
'sequence: 42
class ProductOrderItem <extends \nEntity > {
action : OrderItemActionType
appointment : AppointmentRef
billingAccount : BillingAccountRef
href : Uri
id : String
itemPrice : OrderPrice [0..*]
itemTerm : OrderTerm [0..*]
itemTotalPrice : OrderPrice [0..*]
payment : PaymentRef [0..*]
product : ProductRefOrValue
productOffering : ProductOfferingRef
productOfferingQualificationItem : ProductOfferingQualificationItemRef
productOrderItem : ProductOrderItem [0..*]
productOrderItemRelationship : OrderItemRelationship [0..*]
qualification : ProductOfferingQualificationRef [0..*]
quantity : Integer
quoteItem : QuoteItemRef
state : ProductOrderItemStateType
@baseType : String
@schemaLocation : Uri
@type : String
}
'sequence: 50
class QuoteRef <extends \nEntityRef > <<Ref>> {
href : Uri
id : String
name : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
'sequence: 59
class BillingAccountRef <extends \nEntity > <<Ref>> {
href : String
id : String
name : String
ratingType : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
'sequence: 67
class AgreementRef <extends \nEntityRef > <<Ref>> {
href : Uri
id : String
name : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
'sequence: 75
class Note <extends \nExtensible > {
author : String
date : DateTime
id : String
text : String
@baseType : String
@schemaLocation : Uri
@type : String
}
'sequence: 90
class OrderPrice <extends \nEntity > {
billingAccount : BillingAccountRef
description : String
href : Uri
id : String
name : String
price : Price
priceAlteration : PriceAlteration [0..*]
priceType : String
productOfferingPrice : ProductOfferingPriceRef
recurringChargePeriod : String
unitOfMeasure : String
@baseType : String
@schemaLocation : Uri
@type : String
}
'sequence: 98
class PaymentRef <extends \nEntityRef > <<Ref>> {
href : Uri
id : String
name : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
'sequence: 107
class RelatedParty <extends \nEntityRef > {
href : Uri
id : String [1]
name : String
role : String
@baseType : String
@referredType : String [1]
@schemaLocation : Uri
@type : String
}
'sequence: 115
class ProductOfferingQualificationRef <extends \nEntityRef > <<Ref>> {
href : Uri
id : String
name : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
'sequence: 124
class RelatedChannel <extends \nEntityRef > {
href : Uri
id : String
name : String
role : String
@baseType : String
@referredType : String
@schemaLocation : Uri
@type : String
}
'sequence: 19
'processing edges for ProductOrder
'sequence: 127
'rule: Item special case
ProductOrder *-right-> "1..*" ProductOrderItem : productOrderItem
'sequence: 130
ProductOrderStateType <-left[hidden]- ProductOrder
'sequence: 139
'rule: General above rule
QuoteRef "0..*" <--* ProductOrder : quote
'sequence: 141
'rule: General above rule
BillingAccountRef <--* ProductOrder : billingAccount
'sequence: 143
'rule: General above rule
Note "0..*" <--* ProductOrder : note
'sequence: 145
'rule: General above rule
AgreementRef "0..*" <--* ProductOrder : agreement
'sequence: 147
'rule: General below rule
ProductOrder *--> "0..*" OrderPrice : orderTotalPrice
'sequence: 149
'rule: General below rule
ProductOrder *--> "0..*" PaymentRef : payment
'sequence: 151
'rule: General below rule
ProductOrder *--> "0..*" RelatedParty : relatedParty
'sequence: 153
'rule: General below rule
ProductOrder *--> "0..*" ProductOfferingQualificationRef : productOfferingQualification
'sequence: 155
'rule: General below rule
ProductOrder *--> "0..*" RelatedChannel : channel
'layout of the core: [ProductOrder, ProductOrderItem] (seq=125)
'finished layout of the core (seq=135)
'y=9 : QuoteRef (10) BillingAccountRef (10) Note (10) AgreementRef (10) (seq=178)
'y=10 : ProductOrderItem (11) ProductOrderStateType (9) ProductOrder (10) (seq=179)
'y=11 : OrderPrice (10) PaymentRef (9) RelatedParty (8) ProductOfferingQualificationRef (7) RelatedChannel (6) (seq=180)
@enduml |
98ea416d810ffcd3a17288f79c2a259559174388 | 2683be9343099f2c1b230ac8596b7d39ef6183ee | /ClassDiagram.puml | 2351f691bc24dc7feb22e4d55b9657777f893b42 | [
"MIT"
] | permissive | lunarforge/goplantuml | 01635e35b25804139770d14dfcd0fd3ddb2e48a2 | 496c4d45d4b2344852303d72e9b0ffe21c107290 | refs/heads/master | 2023-04-12T09:48:40.945445 | 2021-05-07T19:56:05 | 2021-05-07T19:56:05 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,284 | puml | @startuml
title Parser Class Diagram
namespace parser {
class Alias << (S,Aquamarine) >> {
+ Name string
+ PackageName string
+ AliasOf string
}
class AliasSlice << (S,Aquamarine) >> {
+ Len() int
+ Less(i int, j int) bool
+ Swap(i int, j int)
}
class ClassDiagramOptions << (S,Aquamarine) >> {
+ FileSystem afero.Fs
+ Directories []string
+ IgnoredDirectories []string
+ RenderingOptions <font color=blue>map</font>[RenderingOption]<font color=blue>interface</font>{}
+ Recursive bool
}
class ClassParser << (S,Aquamarine) >> {
- renderingOptions *RenderingOptions
- structure <font color=blue>map</font>[string]<font color=blue>map</font>[string]*Struct
- currentPackageName string
- allInterfaces <font color=blue>map</font>[string]<font color=blue>struct</font>{}
- allStructs <font color=blue>map</font>[string]<font color=blue>struct</font>{}
- allImports <font color=blue>map</font>[string]string
- allAliases <font color=blue>map</font>[string]*Alias
- allRenamedStructs <font color=blue>map</font>[string]<font color=blue>map</font>[string]string
- parsePackage(node ast.Node)
- parseImports(impt *ast.ImportSpec)
- parseDirectory(directoryPath string) error
- parseFileDeclarations(node ast.Decl)
- handleFuncDecl(decl *ast.FuncDecl)
- handleGenDecl(decl *ast.GenDecl)
- renderStructures(pack string, structures <font color=blue>map</font>[string]*Struct, str *LineStringBuilder)
- renderAliases(str *LineStringBuilder)
- renderStructure(structure *Struct, pack string, name string, str *LineStringBuilder, composition *LineStringBuilder, extends *LineStringBuilder, aggregations *LineStringBuilder)
- renderCompositions(structure *Struct, name string, composition *LineStringBuilder)
- renderAggregations(structure *Struct, name string, aggregations *LineStringBuilder)
- updatePrivateAggregations(structure *Struct, aggregationsMap <font color=blue>map</font>[string]<font color=blue>struct</font>{})
- renderAggregationMap(aggregationMap <font color=blue>map</font>[string]<font color=blue>struct</font>{}, structure *Struct, aggregations *LineStringBuilder, name string)
- getPackageName(t string, st *Struct) string
- renderExtends(structure *Struct, name string, extends *LineStringBuilder)
- renderStructMethods(structure *Struct, privateMethods *LineStringBuilder, publicMethods *LineStringBuilder)
- renderStructFields(structure *Struct, privateFields *LineStringBuilder, publicFields *LineStringBuilder)
- getOrCreateStruct(name string) *Struct
- getStruct(structName string) *Struct
+ Render() string
+ SetRenderingOptions(ro <font color=blue>map</font>[RenderingOption]<font color=blue>interface</font>{}) error
}
class Field << (S,Aquamarine) >> {
+ Name string
+ Type string
+ FullType string
}
class Function << (S,Aquamarine) >> {
+ Name string
+ Parameters []*Field
+ ReturnValues []string
+ PackageName string
+ FullNameReturnValues []string
+ SignturesAreEqual(function *Function) bool
}
class LineStringBuilder << (S,Aquamarine) >> {
+ WriteLineWithDepth(depth int, str string)
}
class RenderingOptions << (S,Aquamarine) >> {
+ Title string
+ Notes string
+ Aggregations bool
+ Fields bool
+ Methods bool
+ Compositions bool
+ Implementations bool
+ Aliases bool
+ ConnectionLabels bool
+ AggregatePrivateMembers bool
}
class Struct << (S,Aquamarine) >> {
+ PackageName string
+ Functions []*Function
+ Fields []*Field
+ Type string
+ Composition <font color=blue>map</font>[string]<font color=blue>struct</font>{}
+ Extends <font color=blue>map</font>[string]<font color=blue>struct</font>{}
+ Aggregations <font color=blue>map</font>[string]<font color=blue>struct</font>{}
+ PrivateAggregations <font color=blue>map</font>[string]<font color=blue>struct</font>{}
- addToPrivateAggregation(fType string)
+ ImplementsInterface(inter *Struct) bool
+ AddToComposition(fType string)
+ AddToExtends(fType string)
+ AddToAggregation(fType string)
+ AddField(field *ast.Field, aliases <font color=blue>map</font>[string]string)
+ AddMethod(method *ast.Field, aliases <font color=blue>map</font>[string]string)
}
class parser.AliasSlice << (T, #FF7700) >> {
}
class parser.RenderingOption << (T, #FF7700) >> {
}
}
"strings.Builder" *-- "extends""parser.LineStringBuilder"
"parser.ClassDiagramOptions""uses" o-- "afero.Fs"
"parser.ClassDiagramOptions""uses" o-- "parser.RenderingOption"
"parser.Function""uses" o-- "parser.Field"
"parser.Struct""uses" o-- "parser.Field"
"parser.Struct""uses" o-- "parser.Function"
"__builtin__.int" #.. "alias of""parser.RenderingOption"
"parser.[]Alias" #.. "alias of""parser.AliasSlice"
@enduml
|
a7af0f40669b727f8050bc51d82d26a9e1bc9211 | d702b31e656edcb9944228c0309f153bdff29eec | /doc/plantuml/HCARDA/command/TerminateDfCommand.plantuml | 0838dc4db0b87357fcf9dbaf9b99ca11793c66e7 | [
"Apache-2.0"
] | permissive | gematik/ref-HealthCardAccess | 4f3957bfe40c56ffbf82782528a6e543ea00e9e3 | eb9a12f7eea309bb5b23269de9d8fa924f91fe4f | refs/heads/master | 2022-02-14T18:25:41.769547 | 2022-01-07T07:24:17 | 2022-01-07T07:24:17 | 213,916,430 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,345 | plantuml | @startuml
package de.gematik.ti.healthcardaccess {
interface IHealthCardCommand {
{abstract} + executeOn()
}
}
package de.gematik.ti.healthcardaccess {
abstract class AbstractHealthCardCommand {
{static} - LOG : Logger
{static} # NE_MAX_EXTENDED_LENGTH : int
{static} # NE_MAX_SHORT_LENGTH : int
{static} # EXPECT_ALL : int
# cla : int
# ins : int
# p1 : int
# p2 : int
# data : byte[]
# ne : int
# AbstractHealthCardCommand()
# AbstractHealthCardCommand()
{abstract} + getTechnicalResponseApdus()
- inferResponseStatusFromResponseCode()
+ executeOn()
# sendApdu()
- getCommandApdu()
}
}
package de.gematik.ti.healthcardaccess {
package de.gematik.ti.healthcardaccess.commands {
class TerminateDfCommand {
{static} - CLA : int
{static} - INS : int
{static} - NO_MEANING : int
{static} - RESPONSE_MESSAGES : Map<Integer, ResponseStatus>
+ getTechnicalResponseApdus()
+ TerminateDfCommand()
}
}
}
AbstractHealthCardCommand -up-|> IHealthCardCommand
TerminateDfCommand -up-|> AbstractHealthCardCommand
@enduml |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.