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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
65f1c7b499e24d4616d60e7eb29f0e5b796f128a | ef302a18443d74877b980845b170a800aaeefb9f | /2021/03/15/Android-Jetpack-Core/livedata.puml | 2116943921a9dcface2998e493cf5dc605ae4cd9 | [] | no_license | REBOOTERS/REBOOTERS.github.io | a2498fd5e0ca283c84418f037cf11e00f0df38ba | 782c70b12ce0c5c6962d13b7c76a5c53caa9fc75 | refs/heads/master | 2022-01-25T18:53:18.191781 | 2022-01-02T13:33:34 | 2022-01-02T13:33:34 | 103,507,268 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,216 | puml | @startuml
'https://plantuml.com/class-diagram
package Jetpack-LiveData #ff0 {
interface Observer<T> {
onChanged(T t)
}
abstract class LiveData<T> {
* START_VERSION = -1
* Object NOT_SET
* setValue(T value)
* postValue(T value)
+ observe(LifecycleOwner owner, Observer<? super T> observer)
* dispatchingValue(@Nullable ObserverWrapper initiator)
- considerNotify(ObserverWrapper observer)
}
abstract class ObserverWrapper {
Observer<? super T> mObserver
boolean mActive
int mLastVersion = START_VERSION
abstract shouldBeActive():boolean
isAttachedTo(LifecycleOwner owner):boolean
activeStateChanged(boolean newActive)
}
class AlwaysActiveObserver {
shouldBeActive() = true
}
interface LifecycleEventObserver {}
class LifecycleBoundObserver {
* LifecycleOwner mOwner
}
Observer .* LiveData
LiveData +.. ObserverWrapper
LiveData +.. AlwaysActiveObserver
LiveData +.. LifecycleBoundObserver
ObserverWrapper <|.. AlwaysActiveObserver
ObserverWrapper <|.. LifecycleBoundObserver
LifecycleEventObserver <|-- LifecycleBoundObserver
class MutableLiveData<T> {
+ setValue(T value)
+ postValue(T value)
}
LiveData <|- MutableLiveData
}
@enduml |
0bc8df8f6a25c469e2ae07194cffbcf6df260d86 | 5f7cd299afad77172f22f785aa55b94c74ce6828 | /uml/List.puml | f158617be05620d67e4624cdba63d99689daf204 | [] | no_license | MicahPB01/Puccio-Ball-cop3330-assignment4part2 | 111a1546849f2b597e4774339a4fdf9442e9290b | e3640b4f2349ab6ce5c262c1d44f1b6ab089c2d0 | refs/heads/master | 2023-06-15T21:01:56.521684 | 2021-07-11T22:34:38 | 2021-07-11T22:34:38 | 384,350,013 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,428 | puml | @startuml
'https://plantuml.com/sequence-diagram
class List{
main()
start()
}
class ListController{
+TableColumn<ItemObject, String> ItemName;
+TableColumn<ItemObject, String> ItemDescription;
+TableColumn<ItemObject, String> ItemDueDate;
+TableColumn<ItemObject, String> ItemStatus;
+TableView<ItemObject> itemTable;
+TextField addItemName;
+Text pathToFile;
+TextField addItemDescription;
+Button loadListButton;
+DatePicker addItemDueDate;
+DatePicker updateDate;
+void editTitleClick()
+void editDescriptionClick()
+void addNewItemClick()
+void removeItemClick()
+void editDueDateClick()
+void markCompleteClick()
+void markIncompleteCLick()
+void showCompleteClick()
+void showAllClick()
+void loadListClick()
+void loadHelper()
+void removeAllCLick()
+void helpButtonClick()
+void saveListAsClick()
}
class EditItem{
int length
FileIO change
String[] properties
String[] selectedProperties
String currentLine
String newPath
File file
+String addItem(String, String[])
+boolean removeItem(String, ItemObject)
+boolean matches(ItemObject, ItemObject)
+boolean editDescription(String, ItemObject, String)
+boolean editDueDate(String, ItemObject, String)
+boolean markIncomplete(String, ItemObject)
+boolean markComplete(String, ItemObject)
}
class ItemObject{
private final SimpleStringProperty name;
private final SimpleStringProperty description;
private final SimpleStringProperty dueDate;
private final SimpleStringProperty status;
+String getDescription()
+SimpleStringProperty descriptionProperty()
+void setDescription()
+String getDueDate()
+SimpleStringProperty dueDateProperty()
+void setDueDate(String)
+String getStatus()
+SimpleStringProperty statusProperty()
+void setStatus(String)
+String getName()
+SimpleStringProperty nameProperty()
+void setName(String)
+ItemObject(String, String, String, String)
}
class EditList{
ArrayList<ItemObject> itemsInList
String currentLine
String[] properties
ItemObject tempItem
+File loadList(String)
+ArrayList<ItemObject> getInfo(File)
+ArrayList<ItemObject> getCompletedInfo(File)
+ArrayList<ItemObject> getIncompleteInfo(File)
+boolean saveList(String, String)
+boolean removeAll(String)
}
javafx.Application <|-- ListController
ListController -- List
ListController -- EditItem
ListController -- ItemObject
ListController -- EditList
@enduml |
953667cf9bcdd05a5fa3b1b1446df748b400dbb2 | ac7cf41f91715ea82b01373373a40c9881544039 | /src/main/java/fr/rphstudio/chess/game/game.plantuml | 02103819be000ec0ad10802c5e004f8e6564a608 | [] | no_license | EtienneGit/Chess_Java_POO | be584b3dbf6ac44de523ce8ffa49cc7ea2ba47ca | 63a0881843e6a84379e190a769db5cf3aebcc17d | refs/heads/master | 2021-02-15T09:49:59.477153 | 2020-02-28T07:58:38 | 2020-02-28T07:58:38 | 244,883,422 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,743 | plantuml | @startuml
title __GAME's Class Diagram__\n
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Board {
~ mapBlackPiece : HashMap<int[], ChessType>
~ mapWhitePiece : HashMap<int[], ChessType>
- pieceList : Piece[][]
- rowInitBlackPawn : int
- rowInitWhitePawn : int
+ Board()
+ checkState()
+ getKingPos()
+ getNbRemainingPieces()
+ getPiece()
+ removeMovingPiece()
+ replacingPiece()
- comparePosInList()
- iterCreateMap()
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.ChessModel {
~ lastMoves : ArrayList<OneMove>
- blackRemovedPieces : ArrayList<RemovedPieces>
{static} - single_instance : ChessModel
- whiteRemovedPieces : ArrayList<RemovedPieces>
+ checkFurtherMove()
{static} + getInstance()
+ getKingState()
+ getNbRemainingPieces()
+ getPieceColor()
+ getPieceMoves()
+ getPieceType()
+ getPlayerDuration()
+ getRemovedPieces()
+ movePiece()
+ reinit()
+ undoLastMove()
- ChessModel()
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.OneMove {
{static} ~ index : int
- hasEaten : boolean
- indexItem : int
- isPromoted : boolean
- isRook : boolean
+ OneMove()
+ OneMove()
+ OneMove()
+ getIndexItem()
+ undoMove()
- checkIfPawnWillPromote()
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Piece {
- nbrMoves : int
+ Piece()
+ getColor()
+ getNbrMoves()
+ getPieceMove()
+ getType()
+ incrementNbrMoves()
+ resetMoves()
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.RemovedPieces {
- index : int
+ RemovedPieces()
{static} + convertToList()
+ getIndex()
+ getType()
{static} + seekAndDestroy()
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.TimerSet {
~ test : long
~ timer : Timer
+ setTimer()
}
}
fr.rphstudio.chess.game.ChessModel .up.|> fr.rphstudio.chess.interf.IChess
fr.rphstudio.chess.game.ChessModel o-- fr.rphstudio.chess.game.Board : chessBoard
fr.rphstudio.chess.game.ChessModel o-- fr.rphstudio.chess.game.TimerSet : timerB
fr.rphstudio.chess.game.ChessModel o-- fr.rphstudio.chess.game.TimerSet : timerW
fr.rphstudio.chess.game.OneMove o-- fr.rphstudio.chess.interf.IChess.ChessPosition : newPos
fr.rphstudio.chess.game.OneMove o-- fr.rphstudio.chess.interf.IChess.ChessPosition : oldRookPos
fr.rphstudio.chess.game.OneMove o-- fr.rphstudio.chess.game.Piece : pieceEaten
fr.rphstudio.chess.game.OneMove o-- fr.rphstudio.chess.interf.IChess.ChessPosition : pieceEatenPos
fr.rphstudio.chess.game.OneMove o-- fr.rphstudio.chess.game.Piece : pieceMoved
fr.rphstudio.chess.game.OneMove o-- fr.rphstudio.chess.interf.IChess.ChessPosition : pieceMovedPos
fr.rphstudio.chess.game.Piece o-- fr.rphstudio.chess.interf.IChess.ChessColor : chessColor
fr.rphstudio.chess.game.Piece o-- fr.rphstudio.chess.interf.IChess.ChessType : chessType
fr.rphstudio.chess.game.Piece o-- fr.rphstudio.chess.interf.IMove : pieceMove
fr.rphstudio.chess.game.RemovedPieces o-- fr.rphstudio.chess.interf.IChess.ChessType : type
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
|
a2fb60833a353d5566bd13bbadbdaa1b32e6cabd | 807fa9f076d09a8f1b12216ae7e25c98c80972e3 | /stopwatch.plantuml | 0542a6cc677d5307e8f9cda798decb06f61656d9 | [] | no_license | module-java-core/stop-watch | 05778ea1fc3eb201603a3e4a028646ce96040c11 | e7d6429f8a3c1bedebb3b170f6b1fe7f28c7a64f | refs/heads/master | 2020-03-23T11:53:50.623324 | 2018-07-19T04:43:18 | 2018-07-19T04:43:18 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 157 | plantuml | @startuml
class StopWatch{
-startTime: long
-endTime: long
+getStartTime(): long
+getEndTime(): long
+start(): long
+stop(): long
+getElapsedTime()
}
@enduml |
d9d164c857e4ee3b39265e069d233dadd8d06172 | 42b7faaa2f5cd5b855b5727be6125314ab2439bf | /src/com/ejercicio_02/uml/Ejercicio_02.puml | a88c1179308c9a18251b27375f20483254971e83 | [] | no_license | JuanfeRomero/EggJavaGuiaAsociaciones | a448792a8c1eaaf4a3f6fc0caffb3b68f6d6ed0b | 5ef6cf0fe991b491641ff562fbf6ef7f224d8303 | refs/heads/master | 2023-06-26T08:06:07.011202 | 2021-07-28T22:40:09 | 2021-07-28T22:40:09 | 388,643,235 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 549 | puml | @startuml
'https://plantuml.com/class-diagram
class Revolver {
- int posicionActual
- int posicionDelAgua
void llenarRevolver(Revolver r)
boolean mojar()
void siguienteChorro()
}
class Jugador {
- static int id
- int idAsignado
- String nombre
- boolean mojado
void disparo(Revolver r)
}
class Juego {
-List<Jugador> jugadores
-Revolver revolver
+ void llenarJuego()
- void crearJugadores()
+ void ronda()
}
Juego o-->"1.1" Revolver
Juego *-->"1.*"Jugador
Jugador - Revolver
@enduml |
be373b59608e70826c39fa4fe0dc003436186f47 | 9b4db705768dd07973af2aeff488d469c7785c81 | /command/etc/command.urm.puml | c9c172226fa3618bf9f8c7a1c4c601591979ab3e | [
"MIT"
] | permissive | techa03/java-design-patterns | bdd25d3af2ea6e35b0f922f0fbf4cc713c16086a | 795597e70f7c64f450f49d792735c97531c3d737 | refs/heads/master | 2021-06-04T21:24:27.314123 | 2020-08-10T12:46:14 | 2020-08-10T12:46:14 | 93,821,836 | 1 | 0 | MIT | 2020-08-10T12:46:16 | 2017-06-09T05:24:00 | Java | UTF-8 | PlantUML | false | false | 1,913 | puml | @startuml
package com.iluwatar.command {
class App {
+ App()
+ main(args : String[]) {static}
}
interface Command {
+ Command()
+ execute(Target) {abstract}
+ redo() {abstract}
+ toString() : String {abstract}
+ undo() {abstract}
}
class Goblin {
+ Goblin()
+ toString() : String
}
class InvisibilitySpell {
- target : Target
+ InvisibilitySpell()
+ execute(target : Target)
+ redo()
+ toString() : String
+ undo()
}
class ShrinkSpell {
- oldSize : Size
- target : Target
+ ShrinkSpell()
+ execute(target : Target)
+ redo()
+ toString() : String
+ undo()
}
enum Size {
+ NORMAL {static}
+ SMALL {static}
- title : String
+ toString() : String
+ valueOf(name : String) : Size {static}
+ values() : Size[] {static}
}
abstract class Target {
- LOGGER : Logger {static}
- size : Size
- visibility : Visibility
+ Target()
+ getSize() : Size
+ getVisibility() : Visibility
+ printStatus()
+ setSize(size : Size)
+ setVisibility(visibility : Visibility)
+ toString() : String {abstract}
}
enum Visibility {
+ INVISIBLE {static}
+ VISIBLE {static}
- title : String
+ toString() : String
+ valueOf(name : String) : Visibility {static}
+ values() : Visibility[] {static}
}
class Wizard {
- LOGGER : Logger {static}
- redoStack : Deque<Command>
- undoStack : Deque<Command>
+ Wizard()
+ castSpell(command : Command, target : Target)
+ redoLastSpell()
+ toString() : String
+ undoLastSpell()
}
}
Target --> "-size" Size
Wizard --> "-undoStack" Command
ShrinkSpell --> "-oldSize" Size
InvisibilitySpell --> "-target" Target
ShrinkSpell --> "-target" Target
Target --> "-visibility" Visibility
Goblin --|> Target
InvisibilitySpell ..|> Command
ShrinkSpell ..|> Command
@enduml
|
f1836b9e5237e0dc51c815aee1071203320312a8 | 6327621afec93f205a551a36197a214bd1842fd5 | /plantUML/Validator01.puml | 19553b9ec268e80b44c5dbba6d13c04a6a68ad56 | [] | no_license | MiguelAngelCB/Mobile-Store | 2a78a02015f2e7eb33c8f205a4c106c74d1ccbbc | 8fa14a7cdf4a212fa0b97bcbe16e9f2c1b941d81 | refs/heads/master | 2023-02-27T04:36:06.469868 | 2021-02-02T21:46:30 | 2021-02-02T21:46:30 | 335,432,203 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,095 | puml | @startuml validator01
class ValidatorValueRegistry{
-static ValidatorRegistry validatorRegistration;
-static final HashMap<String, Class<? extends ValidableValue>> VALIDATES
-ValidatorValueRegistry()
+ValidableValue getValidator(String validateName)
+void addValidator(String validateName, Class<? extends ValidableValue> validate)
+static synchronized ValidatorRegistry getInstance()
}
class ValidatorValueComposite{
-HashMap<String, ArrayList<String>> listValidate
-ValidatorValueRegistry validatorRegistration
+HashMap<String, ErrorValidate> validate(Client client)
-HashMap<String, ErrorValidate> getError()
-void addValidate(String key, String value)
}
class AddClient {
-ValidatorValueComposite clientValidatorComposite
-Class Client
# doPost()
# doGet()
}
class HttpServlet{
}
class GetDataControlFromValue{
+static String getDataControlClient(Client client, String value)
}
ValidatorValueComposite *-- ValidatorValueRegistry
HttpServlet <|-- AddClient
AddClient *-- ValidatorValueComposite
AddClient o-- GetDataControlFromValue
@enduml |
ad98d678f1eb9de89288e66e280ec62043a48a62 | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-class-hendelseslogg.puml | 5635d5c31ce4f1819af3f763b80e5e1aa0cb519a | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 317 | puml | @startuml
skinparam nodesep 100
hide circle
class LoggingOgSporing.Hendelseslogg <Endringslogg> {
+hendelsetype : Hendelsetype
+beskrivelse : string [0..1]
+hendelseDato : datetime [0..1] [1..1]
}
class LoggingOgSporing.Endringslogg {
}
LoggingOgSporing.Endringslogg <|-- LoggingOgSporing.Hendelseslogg
@enduml
|
47010f036656f017b6cfa1d0ef2b00884cbea2a0 | 688c0a4db0ef6e1ebfaad503e77be864c12c3c28 | /app/UML/密码的加解密.puml | c90c5bbd3b77da4250f5bab0846737d4b9944409 | [] | no_license | inview1980/myManageLocation | fb40baffda08f7798173d5f3dbedc511342c6a37 | 0d7c3a3d4854a39beb0d665fdda301956be176b6 | refs/heads/master | 2023-02-11T07:37:44.870678 | 2020-12-31T09:45:41 | 2020-12-31T09:45:41 | 258,389,809 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 786 | puml | @startuml
title 密码的加解密
skinparam packageStyle rect/' 加入这行代码,样式纯矩形'/
namespace 加密 #green{
class User<<加密前>>{
- String salt
- String userName
- String password
}
class UserEFS<<加密后>>{
- String salt
- String userName
- String password
}
User->UserEFS :salt=通过给定盐将随机salt加密
User->UserEFS :userName=用密码salt将userName加密
User->UserEFS :password=用密码userName将password加密
}
package 解密 #gray{
note "读文件" as NFile
class UserEnd<<解密后>>{
- String salt
- String userName
- String password
}
NFile->UserEnd:userName将第二行用salt解密
NFile->UserEnd:password将第三行用userName解密
NFile->UserEnd:salt将第一行用盐解密
}
加密..解密
@enduml |
58a1751c58fdb82c6e140a47a2f3a66f3235b2a8 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Runtime/TMP_SubMesh.puml | 367d031ef57c7bda2a279df3f0723a68a0c891c8 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,112 | puml | @startuml
class TMP_SubMesh {
+ isDefaultMaterial : bool <<get>> <<set>>
+ padding : float <<get>> <<set>>
+ {static} AddSubTextObject(textComponent:TextMeshPro, materialReference:MaterialReference) : TMP_SubMesh
OnEnable() : void
OnDisable() : void
OnDestroy() : void
+ DestroySelf() : void
GetMaterial(mat:Material) : Material
CreateMaterialInstance(source:Material) : Material
GetSharedMaterial() : Material
SetSharedMaterial(mat:Material) : void
+ GetPaddingForMaterial() : float
+ UpdateMeshPadding(isExtraPadding:bool, isUsingBold:bool) : void
+ SetVerticesDirty() : void
+ SetMaterialDirty() : void
}
MonoBehaviour <|-- TMP_SubMesh
TMP_SubMesh --> "fontAsset" TMP_FontAsset
TMP_SubMesh --> "spriteAsset" TMP_SpriteAsset
TMP_SubMesh --> "material" Material
TMP_SubMesh --> "sharedMaterial" Material
TMP_SubMesh --> "fallbackMaterial" Material
TMP_SubMesh --> "fallbackSourceMaterial" Material
TMP_SubMesh --> "renderer" Renderer
TMP_SubMesh --> "meshFilter" MeshFilter
TMP_SubMesh --> "mesh" Mesh
TMP_SubMesh --> "textComponent" TMP_Text
@enduml
|
3d7be094401f02429d2d55a80b6206dc0cb7ac07 | 8e0b778be8c51759f212c9a7d6750f501bc5a130 | /src/main/java/com/ab/uml/dependence/Person2.puml | 53e3f168b24e920f3204c3fed0735d6092fd9f1b | [] | no_license | ab9508/proxy | 993f913fcfa2ba314d0640ca06a8625989b95ea4 | b427beb039e3447fdf37266471731a610d200f5f | refs/heads/master | 2021-02-10T13:56:53.118440 | 2020-03-09T10:40:40 | 2020-03-09T10:40:40 | 244,387,567 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 530 | puml | @startuml
class person2{
Integer id
String name
void setName(String name)
String getName()
}
class A extends person2{
}
@enduml
@startuml
abstract class Operation{
String numberA
String NumberB
double getResult()
}
class OperationAdd
class OperationDiv
class OperationMul
class OperationSub
class OperationFactory{
{static} Operation create()
}
class Main
Main..>OperationFactory
OperationFactory ..> Operation
Operation<|--OperationAdd
Operation<|--OperationSub
Operation<|--OperationMul
Operation<|--OperationDiv
@enduml |
14db875c7875ec90772cc61eb9a779d201a7a588 | b5bc19cdf4e40c24fb4a028c42cc73d112760547 | /DesignMode/src/main/resources/ChainOfResponsibilityPattern.puml | fcecdaf6968de0fd2a34596086b36360ba5f67b1 | [
"Apache-2.0"
] | permissive | 793753509/InterviewIForJob | 5b92bae2f72a73ffb36e2cee8638b8bfe3000a2f | 2c3f5fc4e1aa599581223000b5ac591e43bc1388 | refs/heads/main | 2023-03-29T04:18:57.081000 | 2021-04-03T05:00:40 | 2021-04-03T05:00:40 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,265 | puml | @startuml
/'过滤访问'/
/'基础验证抽象接口'/
abstract class Middleware{
- Middleware next;
+ Middleware linkWith(Middleware next);
+ {abstract} boolean check(String email, String password);
# boolean checkNext(String email, String password);
}
Middleware --> Middleware
/'检查请求数量限制'/
class ThrottlingMiddleware{
- int requestPerMinute;
- int request;
- long currentTime;
+ boolean check(String email, String password);
}
ThrottlingMiddleware --|> Middleware
/'检查用户登录信息'/
class UserExistsMiddleware{
- Server server;
+ boolean check(String email, String password);
}
UserExistsMiddleware --|> Middleware
UserExistsMiddleware --> Server
/'检查用户角色'/
class RoleCheckMiddleware{
+ boolean check(String email, String password);
}
RoleCheckMiddleware --|> Middleware
/'授权目标'/
class Server{
- Map<String, String> users = new HashMap<>;
- Middleware middleware;
+ void setMiddleware(Middleware middleware);
+ boolean logIn(String email, String password);
+ void register(String email, String password);
+ boolean hasEmail(String email);
+ boolean isValidPassword(String email, String password);
}
Server --> Middleware
class Client{
}
Client -up-> Middleware
@enduml
|
a3705c8aaf52cee010a46ed0d8eb28cf46bc6f60 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.postprocessing@2.3.0/PostProcessing/Editor/Utils/GlobalSettings.puml | 254c5b388f6b1c77a2885f5f6b526229ba43165e | [] | 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 | 567 | puml | @startuml
class GlobalSettings <<static>> {
{static} m_Loaded : bool = false
{static} m_TrackballSensitivity : float = 0.2f
{static} m_CurrentChannelMixer : int = 0
{static} m_CurrentCurve : int = 0
{static} GlobalSettings()
{static} PreferenceGUI() : void
{static} OpenGUI() : void
{static} Load() : void
{static} GetColor(key:string, defaultValue:Color) : Color
{static} TrySave(field:T, newValue:T, key:string) : void
}
class Keys <<static>> {
}
GlobalSettings o-> "m_VolumeGizmoColor" Color
GlobalSettings +-- Keys
@enduml
|
3f454a8b842975df07625d8fc3379be4a7772dfd | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Editor/TMP_SubMeshUI_Editor.puml | 33ae924285ce67d1166724b2cc117d3935eb1b32 | [] | 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 | 282 | puml | @startuml
class TMP_SubMeshUI_Editor {
+ OnEnable() : void
+ OnDisable() : void
+ <<override>> OnInspectorGUI() : void
}
class m_foldout <<struct>> {
+ {static} fontSettings : bool = true
}
Editor <|-- TMP_SubMeshUI_Editor
TMP_SubMeshUI_Editor +-- m_foldout
@enduml
|
84d89898267b968cb3139b65e18474d984b265c6 | 62b8852c1e2379236a0677a786fcbf6aed4210a2 | /Server/src/db/db.plantuml | f7b59e09d9ee966b6d29fd0ae6784db476cb2c42 | [] | no_license | NoPainNoGainPds/NpNg | cfef2925c5d58ce8e4d831c3852c6a28ff7c9290 | c64e7d5ee3f8566777ef8d4d6c00f43eadf5c969 | refs/heads/master | 2021-03-24T11:00:19.426555 | 2018-05-15T09:49:15 | 2018-05-15T09:49:15 | 120,328,898 | 1 | 0 | null | 2018-02-15T20:35:08 | 2018-02-05T16:13:26 | Java | UTF-8 | PlantUML | false | false | 587 | plantuml | @startuml
title __DB's Class Diagram__\n
package db {
class Database {
- url : String
- user : String
- password : String
- con : Connection
+ Database()
+ connect()
+ getConnection()
+ getUrl()
+ setUrl()
+ getuser()
+ setuser()
+ getPassword()
+ setPassword()
}
}
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
|
c346d025ae0a3c925ff73217a647efab0b097fa5 | 505c5bbc58a32d3697b9285df6d75a34522a3c0e | /source/_posts/Android/Android端架构_单Activity的View栈模式/架构重构类图.puml | 774d0c0130c193ff41f4544516b0dad1c4ac5709 | [] | no_license | liyungui/liyungui.github.io | e663cbde584394eb37cb8b0c88887bd1e4a6c54a | a65b2b2d7c391ce4ded20188d8d82902147d40b9 | refs/heads/hexo | 2023-04-27T19:59:54.533257 | 2021-07-07T03:27:20 | 2021-07-07T03:27:20 | 76,935,907 | 6 | 1 | null | 2023-04-20T21:25:04 | 2016-12-20T07:57:56 | JavaScript | UTF-8 | PlantUML | false | false | 1,421 | puml | @startuml
'skinparam monochrome true
skinparam classBackgroundColor White
skinparam classArrowColor Black
skinparam classBorderColor Black
skinparam stereotypeCBackgroundColor Gray
'hide members
hide circle
class Navigator{
+ navigateToPage1(Context context):void;
+ navigateToPage2(Context context):void;
}
abstract class BaseActivity {
~ Navigator navigator;
# addFragment(int containerViewId, Fragment fragment):void;
}
class ActivityA{
}
abstract class BaseFragment {
}
class FragmentA #LightYellow{
~ PresenterA presentre;
}
interface IView{
+ showLoading():void;
+ hideLoading():void;
+ showRetry():void;
+ hideRetry():void;
+ showError():void;
+ hideError():void;
}
interface ViewA #LightYellow{
+ renderA():void;
}
abstract class BasePresenter{
+ onStart():void;
+ onResume():void;
+ onPause():void;
+ onStop():void;
+ onDestroy():void;
}
class PresenterA #LightYellow{
- ViewA view;
- UserCaseA userCase;
}
abstract class BaseUserCase{
}
class UserCaseA #LightYellow{
- RepositoryA repository;
}
interface RepositoryA{
}
Activity <|-r- BaseActivity
BaseActivity --> Navigator
BaseActivity <|-r- ActivityA
ActivityA ..> FragmentA
Fragment <|-r- BaseFragment
BaseFragment <|-r- FragmentA
ViewA --|> IView
FragmentA ..|> ViewA
BasePresenter <|.. PresenterA
PresenterA --> UserCaseA
PresenterA --> ViewA
FragmentA --> PresenterA
UserCaseA --|> BaseUserCase
UserCaseA --> RepositoryA
@enduml |
74233722bf6affed451a02ed463ad19357126451 | 759ffb95e50dce026e872af588ea0068d0988b7c | /src/main/java/com/example/jpa/service/impl/斗斗.puml | 6b6b1bb9b503eca2dca55804e18f227b765a5f81 | [] | no_license | Rong0912/springbooot-Jpa | b49504cffee3ef30e8bff54e778b25501d974171 | f1b28ee9c88dc29504250c7dc29d1aa47b439903 | refs/heads/master | 2022-07-23T17:17:56.280431 | 2019-10-21T03:27:59 | 2019-10-21T03:27:59 | 216,467,043 | 1 | 0 | null | 2022-07-11T21:05:51 | 2019-10-21T03:08:03 | Java | UTF-8 | PlantUML | false | false | 608 | puml | @startuml
class User {
Long id 编号
String username 用户名
String password 密码
Date createAt 注册时间
String status 状态{启用,禁用}
}
enum UserStatus{
ENABLE 启用
DISABLE 禁用
}
User "*" o--> "*" Address :中间表{user,Address}
class Address {
Long id 编号;
User user 用户;
String realName 姓名;
String phone 电话;
String province 省;
String city 市;
String district 区;
String detail 详细地址;
Boolean isDefault 是否默认地址;
}
/'enum AddressStatus{
ENABLE 启用
DISABLE 禁用
}
Address "*" o--> "*"UserStatus:中间表'/
@enduml |
05240a2d674b2b0d24d10455891f74d14f1cdf50 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductTypeChangeNameAction.puml | 2f7110889543ca6ccd5fc09fe83eba82263fcff2 | [] | 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 | 458 | 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 ProductTypeChangeNameAction [[ProductTypeChangeNameAction.svg]] extends ProductTypeUpdateAction {
action: String
name: String
}
interface ProductTypeUpdateAction [[ProductTypeUpdateAction.svg]] {
action: String
}
@enduml
|
955f830e8fd45d4833012698edbff1eec3e69a8c | 3495a3bc8450a240a21780fb8c795c215f88000a | /docs/UC6 - Define Payment hour/UC6_MD.puml | 59b9df58dba85a23e9aa9245bac2ea3aeacb7b70 | [] | no_license | 1190452/LAPR2 | f27ac4e485b91d04189dd0a37551bc108c070b12 | 97c5488c091243cf65f9e16821f56a5020e0ae2e | refs/heads/master | 2023-05-09T02:35:50.850483 | 2020-06-14T21:07:59 | 2020-06-14T21:07:59 | 372,570,349 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 657 | puml | @startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Platform{
}
class Organization {
-String name
-String email
-String nif
}
class Manager {
-String nameM
-String emailM
-String role
}
class User {
}
class Payment{
-double valueE
-double valueC
}
class DefinePayment{
-Time timeToPay
-Date dateToPay
-int nrDays
}
Platform "1" -- "1..*" Organization: has registered >
Organization "1" -- "1" Manager: has >
Organization "1" -- "1..*" DefinePayment: executes >
Manager "1" -- "1" User: acts as >
Manager "1" -- "1" DefinePayment: defines
DefinePayment "1" -- "1..*" Payment: has >
@enduml
|
1b087f6770498c03c9a76ae12cce26c3bf090cee | 044e7b06b3fbaa48fa5f6ee2ea2873cd22595269 | /migration/simworkbench.puml | 4d693968467ed7a6b67a70413723be4607b4a3d5 | [] | no_license | simtool/simworkbench | 9e35e647f7509c43b6ff586c9b86880135cb91aa | 370436edfd3790b76d70fa91e6c75c873ceb5391 | refs/heads/master | 2020-03-24T20:39:03.591731 | 2018-08-05T01:01:12 | 2018-08-05T01:01:12 | 142,989,743 | 0 | 0 | null | 2018-08-05T01:01:13 | 2018-07-31T09:04:02 | null | UTF-8 | PlantUML | false | false | 2,512 | puml | @startuml simworkbench_database_relation
skinparam dpi 300
!define TABLE (T,#FFAAAA) Database Table
class task << TABLE >> {
id \t\t\t\t char[24] \t 主键 ID
content \t\t\t text \t\t 任务内容
create_time \t\t timestamp \t 任务创建时间
update_time \t\t timestamp \t 任务更新时间
expiration_time \t timestamp \t 任务过期时间
creator_id \t\t char[24] \t 任务创建人 ID
executor_id \t\t char[24] \t 任务执行人 ID
completed \t\t tinyint[1] \t 已完成标识,0:未完成,1:已完成
parent_id \t\t char[24] \t 主任务 ID,当前任务为主任务时值为:000000000000000000000000
project_id \t\t char[24] \t 任务所属项目 ID
column_id \t\t char[24] \t 任务所属列 ID
sequence \t\t int[11] \t\t 任务在所属列中的排序
comment \t\t text \t\t 任务评论
deleted \t\t\t tinyint[1] \t 软删除标识,0:未删除,1:已删
}
class project << TABLE >> {
id \t\t\t char[24] \t\t 主键 ID
title \t\t\t varchar[128] \t 项目名称
description \t text \t\t\t 项目描述
create_time \t timestamp \t\t 项目创建时间
update_time \t timestamp \t\t 项目更新时间
creator_id \t char[24] \t\t 项目创建人 ID
deleted \t\t tinyint[1] \t\t 软删除标识,0:未删除,1:已删除
}
class column << TABLE >> {
id \t\t\t char[24] \t\t 主键 ID
title \t\t\t varchar[128] \t 任务列名称
project_id \t char[24] \t\t 任务所属项目 ID
create_time \t timestamp \t\t 项目创建时间
update_time \t timestamp \t\t 项目更新时间
creator_id \t char[24] \t\t 项目创建人 ID
sequence \t int[11] \t\t\t 任务在所属列中的排序,
deleted \t\t tinyint[1] \t\t 软删除标识,0:未删除,1:已删除
}
class user << TABLE >> {
id \t\t\t\t\t\t\t char[24] \t\t 主键 ID
username \t\t\t\t\t varchar[128] \t 用户名
password \t\t\t\t\t char[40] \t\t 用户密码 sha1 值
email \t\t\t\t\t\t varchar[128] \t 用户邮箱
phone \t\t\t\t\t\t varchar[20] \t\t 用户手机号
weekly_newspaper_receiver \t text \t\t\t 周报收件人
create_time \t\t\t\t\t timestamp \t\t 项目创建时间
update_time \t\t\t\t\t timestamp \t\t 项目更新时间
deleted \t\t\t\t\t\t tinyint[1] \t\t 软删除标识,0:未删除,1:已删除
}
class project_user << TABLE >> {
id \t\t\t int[11] \t\t 自增 ID
project_id \t char[24] \t 项目 ID
user_id \t\t char[24] \t 用户 ID
}
project "1" --> "n" project_user
user "1" --> "n" project_user
user "1" --> "n" task
project "1" --> "n" column
column "1" --> "n" task
@enduml |
7769839e43bc51ec1987a86f18277fce780be246 | 730526f430277378591c3e23d622f9187c00aa5c | /docsrc/tools/templates/abstractions.plantuml | 076cb3831cb3a3e5cd946d273504f6c9de358533 | [
"Apache-2.0"
] | permissive | cmeeren/FSharpPlus | 7140a301beac9a3874275a63a9dc052b03a6d9e0 | fdc10e4a7548731edeeca56713d56531b95775fd | refs/heads/master | 2022-04-21T19:37:27.230811 | 2020-04-14T18:45:05 | 2020-04-14T18:45:05 | 258,816,837 | 0 | 0 | Apache-2.0 | 2020-04-25T16:03:05 | 2020-04-25T16:03:05 | null | UTF-8 | PlantUML | false | false | 7,800 | plantuml | @startuml
skinparam svgDimensionStyle false
together {
abstract class Semigroup [[http://fsprojects.github.io/FSharpPlus/abstraction-semigroup.html]] {
+ (+) x y [[[http://fsprojects.github.io/FSharpPlus/abstraction-semigroup.html#plus {Appends two semigroups} ]]]
}
abstract class Comonad [[http://fsprojects.github.io/FSharpPlus/abstraction-comonad.html]] {
+ extract x [[[http://fsprojects.github.io/FSharpPlus/abstraction-comonad.html#extract]]]
+ (=>>) s g | extend s g [[[http://fsprojects.github.io/FSharpPlus/abstraction-comonad.html#extend]]]
==
+ duplicate x
}
}
abstract class Monoid [[http://fsprojects.github.io/FSharpPlus/abstraction-monoid.html]] {
+ zero [[[http://fsprojects.github.io/FSharpPlus/abstraction-monoid.html#zero {Identity for (+)} ]]]
+ (+) x y [[[http://fsprojects.github.io/FSharpPlus/abstraction-monoid.html#plus {Appends both monoids} ]]]
==
+ Seq.sum x [[[http://fsprojects.github.io/FSharpPlus/abstraction-monoid.html#sum {Flatten a sequence of monoids} ]]]
}
abstract class Functor [[http://fsprojects.github.io/FSharpPlus/abstraction-functor.html]] {
+ map f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-functor.html#map {Lift a function into a Functor} ]]]
==
+ unzip x
}
abstract class Contravariant [[http://fsprojects.github.io/FSharpPlus/abstraction-contravariant.html]] {
+ contramap f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-contravariant.html#contramap]]]
}
abstract class Applicative [[http://fsprojects.github.io/FSharpPlus/abstraction-applicative.html]] {
+ return x [[[http://fsprojects.github.io/FSharpPlus/abstraction-monad.html#return {Lift a value into a Functor} ]]]
+ (<*>) f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-applicative.html {Apply a lifted argument to a lifted function} ]]]
==
+ map f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-functor.html#map {Lift a function into a Functor} ]]]
+ lift2 f x y [[[http://fsprojects.github.io/FSharpPlus/abstraction-applicative.html#lift2 {Applies 2 lifted values to a non-lifted function} ]]]
}
abstract class Alternative [[http://fsprojects.github.io/FSharpPlus/abstraction-alternative.html]] {
+ empty [[[http://fsprojects.github.io/FSharpPlus/abstraction-alternative.html]]]
+ (<|>) f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-alternative.html]]]
==
+ mfilter p x [[[http://fsprojects.github.io/FSharpPlus/abstraction-alternative.html#mfilter {Returns all values satisfying the predicate, if the predicate returns false will use the empty value} ]]]
}
abstract class Monad [[http://fsprojects.github.io/FSharpPlus/abstraction-monad.html]] {
+ return x [[[http://fsprojects.github.io/FSharpPlus/abstraction-monad.html#return {Lift a value into a Functor} ]]]
+ (>>=) x f [[[http://fsprojects.github.io/FSharpPlus/abstraction-monad.html#bind {Takes a monadic value and a function from a plain type to a monadic value, and returns a new monadic value} ]]]
==
+ map f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-functor.html#map {Lift a function into a Functor} ]]]
+ join x [[[http://fsprojects.github.io/FSharpPlus/abstraction-functor.html#join {Flattens two layers of monadic information into one} ]]]
}
abstract class Bifunctor [[http://fsprojects.github.io/FSharpPlus/abstraction-bifunctor.html]] {
+ {static} bimap f g x [[[http://fsprojects.github.io/FSharpPlus/abstraction-bifunctor.html#bimap]]]
+ first f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-bifunctor.html#first]]]
+ second f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-bifunctor.html#second]]]
}
abstract class Foldable [[http://fsprojects.github.io/FSharpPlus/abstraction-foldable.html]] {
{static} + toSeq x [[[http://fsprojects.github.io/FSharpPlus/abstraction-foldable.html#toSeq {Converts to a seq} ]]]
}
abstract class Bifoldable [[http://fsprojects.github.io/FSharpPlus/abstraction-bifoldable.html]] {
{static} + bifoldMap f g x [[[http://fsprojects.github.io/FSharpPlus/abstraction-bifoldable.html#bifoldMap]]]
{static} + bifold f g z x [[[http://fsprojects.github.io/FSharpPlus/abstraction-bifoldable.html#bifold]]]
{static} + bifoldBack f g x z [[[http://fsprojects.github.io/FSharpPlus/abstraction-bifoldable.html#bifoldBack]]]
+ bisum x [[[http://fsprojects.github.io/FSharpPlus/abstraction-bifoldable.html#bisum]]]
}
abstract class Traversable [[http://fsprojects.github.io/FSharpPlus/abstraction-traversable.html]] {
{static} + traverse f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-traversable.html#traverse {Map each element of a structure to an action, evaluate them left to right and collect result }]]]
+ sequence x [[[http://fsprojects.github.io/FSharpPlus/abstraction-traversable.html#sequence {Evaluate each action in the structure left to right and collect the result } ]]]
}
abstract class Bitraversable [[http://fsprojects.github.io/FSharpPlus/abstraction-bitraversable.html]] {
{static} + bitraverse f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-bitraversable.html#bitraverse {Evaluates the relevant functions at each element in the structure, running the action, and collect results }]]]
+ bisequence x [[[http://fsprojects.github.io/FSharpPlus/abstraction-bitraversable.html#bisequence {Sequences all the actions in a structure, building a new structure with the same shape using the results of the actions } ]]]
}
together {
abstract class Profunctor [[http://fsprojects.github.io/FSharpPlus/abstraction-profunctor.html]] {
+ {static} dimap f g x [[[http://fsprojects.github.io/FSharpPlus/abstraction-profunctor.html#dimap]]]
+ lmap f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-profunctor.html#lmap]]]
+ rmap f x [[[http://fsprojects.github.io/FSharpPlus/abstraction-profunctor.html#rmap]]]
}
abstract class Category [[http://fsprojects.github.io/FSharpPlus/abstraction-category.html]] {
+ catId [[[http://fsprojects.github.io/FSharpPlus/abstraction-category.html#catId {The identity morphism. }]]]
+ (<<<) f g [[[http://fsprojects.github.io/FSharpPlus/abstraction-category.html#catComp {Right-to-left morphism composition. } ]]]
==
+ (>>>) f g [[[http://fsprojects.github.io/FSharpPlus/abstraction-category.html#catComp {Left-to-right morphism composition. } ]]]
}
}
abstract class Arrow [[http://fsprojects.github.io/FSharpPlus/abstraction-arrow.html]] {
+ arr f [[[http://fsprojects.github.io/FSharpPlus/abstraction-arrow.html#arr {Lift a function to an arrow. }]]]
+ arrFirst f g [[[http://fsprojects.github.io/FSharpPlus/abstraction-arrow.html#arrFirst {Send the 1st component of the input through the argument arrow and copy the rest unchanged to the output. } ]]]
==
+ arrSecond f g [[[http://fsprojects.github.io/FSharpPlus/abstraction-arrow.html#arrSecond {Send the 2nd component of the input through the argument arrow and copy the rest unchanged to the output. } ]]]
+ (***) f g [[[http://fsprojects.github.io/FSharpPlus/abstraction-arrow.html#arrCombine {Split the input between the two argument arrows and combine their output. } ]]]
+ (&&&) f g [[[http://fsprojects.github.io/FSharpPlus/abstraction-arrow.html#fanout {Send the input to both argument arrows and combine their output. } ]]]
}
Semigroup --|> Monoid
Functor --|> Bifunctor
Functor --|> Applicative
Applicative --|> Monad
Applicative --|> Alternative
Monoid ..|> Monad
Monoid ..|> Foldable
Monoid ..|> Bifoldable
Functor --|> Comonad
Functor --|> Traversable
Foldable --|> Traversable
Bifoldable --|> Bitraversable
Applicative ..|> Bitraversable
Applicative ..|> Traversable
Monoid ..|> Alternative
Functor - Contravariant
(Functor, Contravariant) --|> Profunctor
Profunctor - Category
(Profunctor, Category) --|> Arrow
@enduml
|
f28499996fc9395d1f1fd1e808c3ef70f4ffca86 | a1f38b56c2a5674ddf2f84a60c8e414cbda32371 | /docs/diagrams/components.puml | 876cf45a2c8e224f418d510a1f2e22d52d9ee100 | [
"Apache-2.0"
] | permissive | go-po/po | d6ee7cbca092ffbed27174826c382c8d238f1eea | a9c877c3e461c54edaeda820fcbf3f38aa866be5 | refs/heads/master | 2020-12-22T10:21:53.589376 | 2020-08-16T19:24:47 | 2020-08-16T19:24:47 | 236,748,932 | 2 | 0 | Apache-2.0 | 2020-08-16T19:24:48 | 2020-01-28T14:05:10 | Go | UTF-8 | PlantUML | false | false | 1,077 | puml | @startuml
hide empty members
' Implicit Interfaces
interface Broker {
Notify(store.Record)
Subscribe(subId, streamId, Handler)
}
interface Store {
ReadRecords()
Begin() store.Tx
Store()
}
interface Registry {
LookupType()
Unmarshal()
Marshal()
}
interface Tx {
Commit()
Rollback()
}
interface Handler {
Handle(Message)
}
class Po {
Stream(streamId) *Stream
Project(streamId, projection)
Subscribe(subId, streamId, Handler)
}
note left
Main Entry point
for the Application
end note
class Stream {
Project(projection)
Append(msg)
}
class Message {
ID
Stream
Type
Data
}
' Connections
Store -r-> Tx : Creates
Po -d-> Stream : Opens
Po -d-> Broker : Subscribes
Stream -r-> Broker : Notifies
Stream -d-> Store : Reads records
Stream -d-> Handler : Projects onto
Stream -d-> Registry : Marshals
Broker -d-> Handler : Notifies
Handler -> Message : Reads
@enduml
|
671ca037f73264a0280eb2356f55cd9e560d1685 | bac7eb7bafe7f0629b33d420e03cdf9fa08b3d28 | /2019.03.13_Jak_se_pise_programovaci_jazyk_4_Object_layout/object_layout.plantuml | 0287b93171ef3006d83d2545789beecafe9e7d84 | [] | no_license | Bystroushaak/clanky | 3ab4e58e83c9168cebbdd5da7be23687856136c3 | 4281a62a298cd9ff30cc8bd07264031c0c7f4d47 | refs/heads/master | 2023-04-26T18:44:43.704854 | 2023-04-13T20:35:13 | 2023-04-13T20:35:13 | 19,652,520 | 4 | 11 | null | 2019-02-16T16:33:27 | 2014-05-10T21:33:24 | HTML | UTF-8 | PlantUML | false | false | 2,060 | plantuml | class _BareObject {
.map : ObjectMap
.scope_parent : Object
.visited : bool
._parent_slot_values : list
._slot_values : list
._local_lookups : int
--Properties--
.has_code : bool <i>(r)</i>
.has_primitive_code : bool <i>(r)</i>
.is_assignment_primitive : bool <i>(r)</i>
--Methods--
.set_slot()
.get_slot()
.parent_lookup()
.slot_lookup()
._local_cache_counter()
.clone()
.__str__()
}
class _ObjectWithMapEncapsulation {
--Properties--
.slot_keys : iterator <i>(r)</i>
.parent_slot_keys : iterator <i>(r)</i>
.expensive_parent_slots : dict <i>(r)</i>
.is_block : bool <i>(rw)</i>
.parameters : bool <i>(rw)</i>
.ast : Ast object <i>(rw)</i>
.code_context : CodeContext <i>(rw)</i>
.primitive_code : native code <i>(r)</i>
.primitive_code_self : Object <i>(r)</i>
.has_slots : bool <i>(r)</i>
.has_parents : bool <i>(r)</i>
}
class _ObjectWithMetaOperations {
--Methods--
._clone_map_if_used_by_multiple_objects()
.meta_add_slot()
.meta_remove_slot()
.meta_insert_slot()
.meta_add_parent()
.meta_get_parent()
.meta_remove_parent()
.meta_set_parameters()
.meta_set_ast()
.meta_set_code_context()
}
class Object {
}
class ObjectMap {
._slots : dict
._parent_slots : dict
.is_block : bool
.used_in_multiple_objects : bool
.ast : AST object
.code_context : CodeContext
.primitive_code : fn reference1
.primitive_code_self : Object
.parameters : list
--Methods--
.clone()
.add_slot()
.remove_slot()
.insert_slot()
.add_parent()
.remove_parent()
}
_BareObject <|-r- _ObjectWithMapEncapsulation: extends
_ObjectWithMapEncapsulation <|-r- _ObjectWithMetaOperations: extends
_ObjectWithMetaOperations <|-d- Object: extends
_BareObject .u.> ObjectMap: works with
_ObjectWithMetaOperations .u.> ObjectMap: works with
_ObjectWithMapEncapsulation .u.> ObjectMap: works with
note top of _BareObject
Properties -> python's @property
end note |
27d60663b9ff2c07eb118e29406ed0ea484b6f05 | 6bad29a1359dd1883170ac47167f50158002d526 | /src/main/java/ex45/ex45.puml | a5e13f28457d60dbc7947e7ba6ea7619f61ac53a | [] | no_license | ZacharyN89/nowicki-cop3330-assignment3 | 5989fdc6a7dfdb70f0c9f175ff370f577942dd25 | dd7bcbe5106b0fcaac98de841414bb29f848ef11 | refs/heads/master | 2023-06-02T02:07:27.320106 | 2021-06-18T20:55:27 | 2021-06-18T20:55:27 | 376,991,661 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 288 | puml | @startuml
'https://plantuml.com/sequence-diagram
class App{
}
class findAndReplace{
- Path fileName
+ getFile void()
+ replace String()
}
class outputToFile{
- Scanner in
+ askFilePath String()
+ writeOut void(String fileText)
}
App o-> findAndReplace
@enduml |
01231876220686aab6afb72c95030107a1bcd897 | 07e1b168bce1233a26b9d2ce8eeaa55516bee6b0 | /src/site/design/oneD.puml | 3f02d6e54431246cdc8ac5fd7c15b8f724a0690d | [
"Apache-2.0",
"BSD-3-Clause",
"Minpack",
"LicenseRef-scancode-generic-cla"
] | permissive | apache/commons-math | 1016687acb2c14c9df8060603c006e8ad78df2b8 | 9e02432e06501f94690e172f3856450cd3a55a20 | refs/heads/master | 2023-08-15T01:32:18.953065 | 2023-08-05T16:14:12 | 2023-08-05T16:14:12 | 24,928,494 | 592 | 517 | Apache-2.0 | 2023-07-03T09:08:43 | 2014-10-08T07:00:06 | Java | UTF-8 | PlantUML | false | false | 2,341 | 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.apache.commons.math4.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
|
2b5c742e751e410023bc24ecbc96875e87710c78 | be9953eb5b86910679b88934160e5440c420d3eb | /.idea/modules/modules.plantuml | a78184317d66f5792a2bcbd03ef832daa70eb162 | [] | no_license | galba-rp/CDA-soutenance1 | 6080ea2fad45936171ed1c28c161925116583013 | 14a8523dc6dd6b282c2e24f82dee1d5e27e788bf | refs/heads/master | 2023-03-13T17:23:52.914378 | 2021-03-03T13:35:04 | 2021-03-03T13:35:04 | 342,644,400 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,338 | plantuml | @startuml
title __SOUTENANCE1's Class Diagram__\n
namespace Soutenance1 {
class Soutenance1.App {
}
}
namespace Soutenance1 {
class Soutenance1.AppTest {
}
}
namespace Soutenance1 {
interface Soutenance1.CliMessages {
}
}
namespace Soutenance1 {
class Soutenance1.Game {
}
}
namespace Soutenance1 {
interface Soutenance1.Helpers {
}
}
namespace Soutenance1 {
class Soutenance1.Player {
}
}
namespace Soutenance1 {
class Soutenance1.Pokrand {
}
}
namespace Soutenance1 {
abstract class Soutenance1.Ptimos {
}
}
namespace Soutenance1 {
class Soutenance1.PtimosFactory {
}
}
namespace Soutenance1 {
class Soutenance1.PtimosTest {
}
}
namespace Soutenance1 {
class Soutenance1.Pyralia {
}
}
namespace Soutenance1 {
class Soutenance1.Sacbleu {
}
}
Soutenance1.Game .up.|> Soutenance1.CliMessages
Soutenance1.Player .up.|> Soutenance1.Helpers
Soutenance1.PtimosFactory .up.|> Soutenance1.Helpers
Soutenance1.Sacbleu .up.|> Soutenance1.Helpers
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
|
887a487dc0696c7b6ef8df4b91558b270f1d36b3 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyCustomerSetFirstNameAction.puml | 29009720fbedb006cc4f7ac7dc938559a739cbc6 | [] | 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 | 462 | 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 MyCustomerSetFirstNameAction [[MyCustomerSetFirstNameAction.svg]] extends MyCustomerUpdateAction {
action: String
firstName: String
}
interface MyCustomerUpdateAction [[MyCustomerUpdateAction.svg]] {
action: String
}
@enduml
|
7ad77daecb7efd364bb342d1f65477cfc30827ee | 6801337ace472c00e76bda6b81b009a898519f50 | /src/main/java/oop/exercises/ex44/Inventory.puml | 93bfd8e4f0691ff47183a5b3fec2d7b3c25ff5a2 | [] | no_license | JMDeBerry99/deberry-cop3330-assignment3 | 07c428bb0bf6c4d04cf59209abeb6a94b78763f9 | 2130987f9d8fc6bb7140ab6d7a0cbbe96fbd6f38 | refs/heads/master | 2023-06-02T16:25:01.555729 | 2021-06-21T03:11:09 | 2021-06-21T03:11:09 | 377,659,446 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 407 | puml | /*
* UCF COP3330 Summer 2021 Assignment 3 Solution
* Copyright 2021 Jacob DeBerry
*/
@startuml
'https://plantuml.com/class-diagram
solution44 <|-- Inventory
Inventory <|-- Product
class solution44 {
Scanner in
main()
}
class Inventory {
Product[] products
getProducts()
setProducts()
}
class Product {
String name
double price
int quantity
getName()
getPrice()
getQuantity()
toString()
}
@enduml |
354ee782bc35a05165d3440c848381d70807aab9 | ab4a540e3acd216ac359644dab37dfc7fba83182 | /src/main/java/ex46/diagram06.puml | 462ea17ea484938395f57640b6ca9f2226dbd032 | [] | no_license | kidnip/Rosales-cop3330-assignment3 | 0b547ec582f3546bc41b9c1dbddb3c8912c567b0 | e701a960b00ac52c2fc848f4a0846c67ce720567 | refs/heads/master | 2023-08-30T23:19:26.643488 | 2021-10-12T03:39:33 | 2021-10-12T03:39:33 | 416,171,356 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 290 | puml | @startuml
class WordFrequency{
..Methods..
+{static} HashMap<String, Integer> getFrequencies()
+{static} void main()
}
circle Input_File
WordFrequency <- WordFrequency : 2. Calls getFrequencies() within main()
Input_File -> WordFrequency : 1. Reads text into String[]
@enduml |
5e88781308cb1416942de44854176cdb44ad6895 | 8f79723474b85f849569afca21d13447da9fbe7d | /Assets/Plugins/Script/plantuml/MessageEffectManager.puml | 232dbe313c9e9459611a07fcbc769afa8a21a009 | [] | no_license | YutaMochizuki-Siki/taiko | 51d4f004b10ab93ea30a888f7638d9a16904071b | e0cd2cdbdcbe864cd1232bf0ec74d710796ad1d6 | refs/heads/main | 2023-04-22T13:59:21.998542 | 2021-05-11T09:51:09 | 2021-05-11T09:51:09 | 352,619,868 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 298 | puml | @startuml
class MessageEffectManager {
OnEnable() : void
goodShow() : void
failureShow() : void
}
MonoBehaviour <|-- MessageEffectManager
MessageEffectManager --> "GameManager" GameManager
MessageEffectManager --> "Good" GameObject
MessageEffectManager --> "Failure" GameObject
@enduml
|
a414f5da6640460d923e1aaa28e334867a5d2b60 | eca69cb6d5116f722816db8d50ed663afe5cd88b | /src/main/java/com/mpoom/designpattern/creational/factorymethod/example1/example.puml | fa322a65935ab5c639127dd35be1e5231bb717d0 | [] | no_license | flyfrank/design-pattern | a21d7d23d02582397f9abe6f34dc298a95490721 | 6ede240ebecf259abf1fad8987e2a9094d5835d8 | refs/heads/main | 2023-01-11T18:30:51.829851 | 2020-11-08T13:44:40 | 2020-11-08T13:44:40 | 303,077,396 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 396 | puml | @startuml
class LoggerFactory {
+ {static} Logger createLogger(String args);
}
class Client
interface Logger {
+ void writeLog()
}
class FileLogger {
+ void writeLog()
}
class DatabaseLogger {
+ writeLog()
}
Client --> Logger
Client --> LoggerFactory
FileLogger --|> Logger
DatabaseLogger --|> Logger
LoggerFactory "create" --> FileLogger
LoggerFactory "create" --> DatabaseLogger
@enduml |
51d0cdb77b11343380453d2c1747e12f08ded299 | 13d4fbb3b98127c8e31c7dbd69559bf4b687167f | /out/production/projet-de-session-jjy/JeuGo.puml | 55592aa08b6410a5653fbcce340879bc96742a8e | [] | no_license | JoLeeMtz/JeuGo | 194958c46ba7216c6bbea97cd4960aa5d3771d9e | 4444a563c957722535bc6363c93b039225940c59 | refs/heads/main | 2023-04-28T14:42:16.868575 | 2021-05-16T20:05:57 | 2021-05-16T20:05:57 | 367,975,233 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,405 | puml | @startuml
class JeuGo {
-jeton : array<Jeton>
+JeuGo() : void
+insererJeton() : void
+verifierCelluleLibre() : boolean
}
interface Fichier {
+getFichier(String)
}
Fichier <- LireFichier
class LireFichier {
+LireFichier() : void
}
LireFichier <-- Instructions
class MiseAJourTerritoire {
+checkLiberteJeton()
}
class Instructions {
-instructions : Array<Jeton>
+sauvegarderInstructions() : void
}
Instructions --> JeuGo
Instructions -> Jeton
abstract class TypeInstruction {
info : String
+getInfo() : String
+setInfo() : String
}
TypeInstruction --> Jeton
TypeInstruction --> Pass
class Jeton {
-couleurJeton : Couleur
-positionXY : Position
-liberteDuJeton : Array<Position>
+getCouleur() : Couleur
}
class Position {
-x : Rangee
-y : Colonne
-estRangee() : boolean
-estColonne() : boolean
+getRangee() : Rangee
+getColonne() : Colonne
}
Position --> Jeton
interface Affichage
class AffichageJeu
enum Rangee {
1
2
3
4
5
6
7
8
9
-rangee : string
+Rangee(x:string) : void
+getValue() : string
}
enum Colonne {
a
b
c
d
e
f
g
h
i
j
-colonne : string
+Colonne(y:string) : void
+getValue() : String
}
enum Couleur {
noir
blanc
transparent
+Couleur(couleur:string) : void
}
@enduml |
742f72a5893f1960cb55ff2b23d31444e4fe5168 | 3f2928ee022c41d2f6e87c3fdae17942dafd4602 | /app/src/main/java/com/example/keystone_try/views/views.plantuml | cd6b1bed36ea4f84811f1b99a8b4add78c5b6ce8 | [] | no_license | BohanShi/keystone_try | 022b9d97ee622ef587b1ec39c5dfbc1fc4bba72a | 13cd8416ea644308269558e8f8843f71b291d07e | refs/heads/master | 2023-01-06T13:43:35.151210 | 2020-11-04T04:12:57 | 2020-11-04T04:12:57 | 291,482,189 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,794 | plantuml | @startuml
title __VIEWS's Class Diagram__\n
namespace com.example.keystone_try {
namespace views {
class com.example.keystone_try.views.BaseActivity {
+ onOptionsItemSelected()
# onCreate()
}
}
}
namespace com.example.keystone_try {
namespace views {
class com.example.keystone_try.views.ChartView {
+ Data : String[]
+ Title : String
+ XLabel : String[]
+ XLength : int
+ XPoint : int
+ XScale : int
+ YLabel : String[]
+ YLength : int
+ YPoint : int
+ YScale : int
+ ChartView()
+ SetInfo()
# onDraw()
~ drawText()
- YCoord()
}
}
}
namespace com.example.keystone_try {
namespace views {
class com.example.keystone_try.views.StepView {
- back_color : int
- back_paint : Paint
- border_width : int
- cover_color : int
- cover_paint : Paint
- currentStep : int
- font_color : int
- font_size : int
- goalStep : int
- text_paint : Paint
+ StepView()
+ StepView()
+ StepView()
+ setCurrentStep()
+ setGoalStep()
# onDraw()
# onMeasure()
}
}
}
com.example.keystone_try.views.BaseActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.keystone_try.views.ChartView -up-|> android.view.View
com.example.keystone_try.views.StepView -up-|> android.view.View
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
b4a26e95b846670053ffe26f04d9c52837459136 | a546db78e9806979e459831fb16c6e51878eb60b | /src/main/model/data/data.plantuml | 3ab678858a0ca9314f72d135a2e20ad99ba88d66 | [] | no_license | Bryce-MW/WikidataExplorer | 92fd35b8e9364d9bd7e005a39d321bc788ea049f | 9ad2dac3c82077466dcb36f25128611881f8965b | refs/heads/master | 2023-06-22T20:58:25.975518 | 2021-07-25T22:33:33 | 2021-07-25T22:33:33 | 287,648,884 | 5 | 1 | null | 2020-08-16T06:03:52 | 2020-08-15T00:23:27 | Java | UTF-8 | PlantUML | false | false | 4,375 | plantuml | @startuml
title __DATA's Class Diagram__\n
namespace model.data {
abstract class model.data.Datum {
+ getStatements()
+ needsRightArrow()
+ needsSearchBar()
+ parse()
# Datum()
# findStatements()
}
}
namespace model.data {
class model.data.DatumLink {
- description : String
- name : String
- qualifiers : ArrayList<Qualifier>
- references : ArrayList<Reference>
+ DatumLink()
+ getDescription()
+ getImage()
+ getStatements()
+ getTitle()
+ parse()
}
}
namespace model.data {
class model.data.DatumQueryService {
+ DatumQueryService()
+ getDatumLinkListByStatement()
+ getDescriptionByID()
+ getNameByID()
+ getQualifiersByStatement()
+ getReferencesByStatement()
+ getScopedSearch()
+ getStatementByTree()
+ getStatementListByID()
+ triggerLoad()
+ triggerSave()
}
}
namespace model.data {
class model.data.NotFoundException {
{static} + serialVersionUID : long
+ NotFoundException()
+ NotFoundException()
{static} - buildErrorString()
}
}
namespace model.data {
class model.data.Qualifier {
+ Qualifier()
+ addNotify()
+ getDescription()
+ getProperty()
+ getStatements()
+ getTitle()
+ getValue()
+ parse()
}
}
namespace model.data {
class model.data.Reference {
+ Reference()
+ addNotify()
+ getDescription()
+ getProperty()
+ getStatements()
+ getTitle()
+ getValue()
+ parse()
}
}
namespace model.data {
class model.data.ScopedSearch {
+ ScopedSearch()
+ ScopedSearch()
+ add()
+ findElement()
+ getController()
+ getItem()
- itemIsNull()
}
}
namespace model.data {
class model.data.Statement {
- name : String
+ Statement()
+ getDescription()
+ getImage()
+ getParentID()
+ getStatements()
+ getTitle()
+ parse()
- findStatements()
}
}
namespace model.data {
abstract class model.data.Value {
# button : JButton
# id : String
# initialized : boolean
+ addNotify()
+ addStatement()
+ equals()
{abstract} + getDescription()
+ getID()
+ getImage()
+ getQuery()
{abstract} + getStatements()
{abstract} + getTitle()
+ hashCode()
+ needsRightArrow()
+ needsSearchBar()
{abstract} + parse()
{static} + parseData()
+ setView()
# Value()
# toggleLeft()
{static} - getDatum()
{static} - getLiteralString()
}
}
model.data.Datum -up-|> model.data.Value
model.data.Datum o-- ui.cli.StatementList : statements
model.data.DatumLink -up-|> model.data.Value
model.data.DatumLink o-- model.data.Statement : property
model.data.DatumLink o-- ui.cli.StatementList : statementList
model.data.DatumLink o-- model.data.Value : value
model.data.DatumQueryService o-- model.data.source.Collector : collector
model.data.Qualifier -up-|> model.data.Value
model.data.Qualifier o-- model.data.pages.Property : property
model.data.Qualifier o-- model.data.Value : value
model.data.Reference -up-|> model.data.Value
model.data.Reference o-- model.data.pages.Property : property
model.data.Reference o-- model.data.Value : value
model.data.ScopedSearch o-- ui.cli.ItemViewController : controller
model.data.ScopedSearch o-- model.data.Value : item
model.data.ScopedSearch o-- model.data.DatumQueryService : queryService
model.data.Statement -up-|> model.data.Value
model.data.Statement o-- model.data.Datum : about
model.data.Statement o-- ui.cli.StatementList : statements
model.data.Value -up-|> javax.swing.JComponent
model.data.Value o-- model.data.DatumQueryService : queryService
model.data.Value o-- ui.cli.ItemView : view
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
4d83a21182134e1905dd1ae8d7940c08a360353c | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderSetDeliveryCustomTypeAction.puml | 22237b724a45d51a596b465b29dfb102bf50ca09 | [] | 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 | 624 | 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 StagedOrderSetDeliveryCustomTypeAction [[StagedOrderSetDeliveryCustomTypeAction.svg]] extends StagedOrderUpdateAction {
action: String
deliveryId: String
deliveryKey: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
|
91ae493e3f5ae59da5754f62f2873a5708169559 | adda88b4af109bf78497dec997549ba1d2f769a4 | /4_OOP_Advanced/src/com/company/day4/ClassDiagram/TestUML.puml | 82fd0908b0de00ad974a0518092896435c86f09b | [] | no_license | chundh/java-til | 1c8f0ac8e94d7160110ce6c8104526e8f7665e1f | defd250a5e2ba104cdef6c08cb71321c1b7549d1 | refs/heads/master | 2023-01-19T01:35:15.096616 | 2020-11-16T05:05:44 | 2020-11-16T05:05:44 | 282,814,887 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 691 | puml | @startuml
interface IFoo{
+ void method(); // public
}
abstract class Bar{
+ static String name;
Foo foo;
# int x; // protected
~ int y; // default
- void method(String string); // private
}
class Qoo{
Foo foo;
}
class Foo{
int x;
void methodA();
}
Foo -left|> IFoo
Bar -o Foo
Qoo -right* Foo
title Class Diagram Title
note bottom of Bar
void method(String string){
return string;
}
end note
note bottom of Foo
public : +
protected : #
default : ~
private : -
Foo는 Bar가 Aggregation한다.(Bar -o Foo)
Foo는 Qoo가 Composition한다.(Qoo -* Foo)
Foo는 IFOoo를 상속한다.(Foo -|> IFoo)
end note
@enduml |
dd8a44b47344f6adafcbe0f2749e6058b5789041 | 1a28050cbf7a3f84a72bfae17502cfc1811aaaf1 | /filetyper/filetyper.puml | 7213229e3914df2bc7cedcf806306648a138e4fc | [] | no_license | jasonlue/digest | e3c5d9437124df78148e2b21f674f502847c9146 | 643ca0b6c1eab63c5f187c6fb04e4db60a885b4f | refs/heads/master | 2020-05-19T05:28:07.297753 | 2019-10-07T10:06:08 | 2019-10-07T10:06:08 | 184,849,528 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,989 | puml | @startuml filetyper
class LibFileTyper{
GetMIME(b, fid) : string
GetAllMIMEs(b, fid): []string
--
NewHyperscanFileTyper(filetypers_path, indicators_path, db_path) : int
UpdateFileTyper(fid)
RequestUpdateFileTyper(fid)
SetUpdateInterval(fid, secs)
CloseFileTyper(fid)
--
registerFileTyper(ftr, filetypes_path, indicators_path, db_path, fallback) : int
updateFileTyper(fid)
deeregisterFileTyper(fid)
getFileTyper(fid) : FTRSEntry
makeFileTyper(filetypes_path, indicators_path, db_path, data_path) : HperscanFileTyper
requestUpdateFileTyper(fid, done:chan)
}
LibFileTyper-->"ftrs" HandleTable
class HandleTable{
entries
m
New()
Add(p)
Replace(i,p)
Remove(i)
Lookup(i)
}
HandleTable *--{FTRSEntry
class FTRSEntry{
mtx
filetypes_path
indicators_path
db_path
refcnt
update: chan
fallback: bool
New()
Release()
Attach()
}
FTRSEntry *-- "ftr" filetyper.HyperscanFileTyper
namespace filetyper{
' class filetyper{
' unmarshalFileTyperIndicators(m: *json.RawMessage): []matcher.IndicatorInterface
' }
class HyperscanFileTyper{
ftpath: string
New(filetypes_path, indicators_path, database_path)
Match(b): IndicatorCollection
MatchIds(b) : []uint
GetFileTypeByIndicator(indi): *FileType
GetIndicatorById(i)
GetMIMEByFName(m)
}
HyperscanFileTyper *-- "m" matcher.Matcher
HyperscanFileTyper *-- "ftc" FileTypeCollection
class FileTypeCollection{
UUID
New()
Close()
LoadFromJSON(fp)
AmendMIMEMap(ft: *FileType)
AmendExtMap(ft: *FileType)
AddFileType(ft: *FileType)
BuildMIMEMap()
BuildExtMap()
--
GetByMIME(m: string): *FileType
GetByExt(ext)
}
FileTypeCollection *--{ "FileTypes" FileType
FileTypeCollection *--{ "MimeMap,ExtMap" FileType
class FileType{
PrimaryMIME: string
AlternateMIMES: []string
PrimaryExtension: string
AlternateExtensions: []string
}
matcher.Indicator <|--FileTyperIndicator
class FileTyperIndicator{
ValidatePattern()
}
}
namespace matcher{
class Matcher{
database
scratch
IndicatorPath
DatabasePath
instTime
New(indicator_path, database_path, flags, umrsh)
Close()
DatabaseOutOfDate()
IndicatorsOutOfDate()
LoadDatabase()
BuildDatabase(flags)
WriteDatabase()
BuildScratch()
Match(b)
MatchIds(b): []uint
}
class MatchIdsContext{
Ids: []uint
}
class MatchFullContext{
M: *Matcher
Data: []byte
Indicators: *IndicatorCollection
From: []uint64
To: []uint64
}
Matcher *--{ "Indicators" IndicatorCollection
class IndicatorCollection{
uuid
NameSpace
IncludeFiles
Indicators
unmarshaller
New(umrsh)
Clone()
LoadFromJSON(string fp)
DumpToJSON():[]byte
Apply(fn)
--
Add(i..)
Get(i)
GetAll()
UnmarshalBase(fp)
--
generateUUIDS()
-loadFromJSON(string fp)
-dedupIndicators()
-validatePatterns()
}
IndicatorCollection *--{"indicators" IndicatorInterface
interface IndicatorInterface{
GetUUID()
SetUUID()
string GetPattern()
int GetConfidence()
[]*Label GetOutLabels()
error ValidatePattern()
}
IndicatorInterface <|-- Indicator
class Indicator{
UUID
Pattern: string
AntiPattern: string
Confidence: int
}
Indicator *--{"OutLabels" Label
Indicator *--{"InLabels" Label
Indicator *--{"AntiInLabels" Label
class Label{
Name: string
DataType: string
Data
Clone()
}
}
@enduml |
69955b9e67e46b2b168bd61ad9229823cf4bdd53 | 1b71391fdddd0ee748669a6a4badfcd69347c281 | /src/main/java/system/controller/simple_frontend_models/simple_frontend_models.plantuml | 5c8df182d378a581a8bea2a09c37d9b97e3f8282 | [] | no_license | berl-a/DiplomaBackend | e809f2257c059314f310d4a6e8195b23831d9eda | d6e65609133ff93b2b275a1eb0496e9e6ce790ce | refs/heads/master | 2020-04-01T06:47:56.459540 | 2019-01-02T18:22:43 | 2019-01-02T18:22:43 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,019 | plantuml | @startuml
title __SIMPLE_FRONTEND_MODELS's Class Diagram__\n
package system.controller {
package system.controller.simple_frontend_models {
class GameWithActualQuiz {
+ GameWithActualQuiz()
+ getActualQuiz()
+ setActualQuiz()
}
}
}
package system.controller {
package system.controller.simple_frontend_models {
class QuestionGroupWithNumberOfQuestions {
- numberOfQuestions : int
+ QuestionGroupWithNumberOfQuestions()
+ getNumberOfQuestions()
+ setNumberOfQuestions()
}
}
}
package system.controller {
package system.controller.simple_frontend_models {
class QuestionWithCategoryNames {
- categoryName : String
- subcategoryName : String
- subsubcategoryName : String
~ QuestionWithCategoryNames()
+ QuestionWithCategoryNames()
+ getCategoryName()
+ setCategoryName()
+ getSubcategoryName()
+ setSubcategoryName()
+ getSubsubcategoryName()
+ setSubsubcategoryName()
}
}
}
package system.controller {
package system.controller.simple_frontend_models {
class QuizPartWithCategoryNames {
- categoryName : String
- subcategoryName : String
- subsubcategoryName : String
~ QuizPartWithCategoryNames()
+ QuizPartWithCategoryNames()
+ QuizPartWithCategoryNames()
+ QuizPartWithCategoryNames()
+ getCategoryName()
+ setCategoryName()
+ getSubcategoryName()
+ setSubcategoryName()
+ getSubsubcategoryName()
+ setSubsubcategoryName()
}
}
}
package system.controller {
package system.controller.simple_frontend_models {
class QuizWithCategoryNames {
- categoryName : String
- subcategoryName : String
- subsubcategoryName : String
~ QuizWithCategoryNames()
+ QuizWithCategoryNames()
+ getCategoryName()
+ setCategoryName()
+ getSubcategoryName()
+ setSubcategoryName()
+ getSubsubcategoryName()
+ setSubsubcategoryName()
}
}
}
package system.controller {
package system.controller.simple_frontend_models {
class Response {
- result : Map<String, Object>
+ Response()
+ Response()
+ put()
+ getResult()
+ setResult()
}
}
}
GameWithActualQuiz -up-|> Game
GameWithActualQuiz o-- Quiz : actualQuiz
QuestionGroupWithNumberOfQuestions -up-|> QuestionGroup
QuestionWithCategoryNames -up-|> Question
QuizPartWithCategoryNames -up-|> QuizPart
QuizWithCategoryNames -up-|> Quiz
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
|
f7294f76e76dc5614f3b5339de5d3f9ce82365f4 | 6631f2c7a4b3fcde26546ab707faf8a2fa56b160 | /app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/persistence/room/room.plantuml | 5244e1ed9353e41278fb612548fdc1cb4dbce1cd | [] | no_license | DeniE46/iMet-raywenderlich- | a051175bbb549f111f6597e0cd9d4f8064ad14c9 | 698820ae72707421f5febaa4987428a258153660 | refs/heads/master | 2020-04-10T21:44:21.743382 | 2019-05-17T10:02:18 | 2019-05-17T10:02:18 | 161,305,177 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,556 | plantuml | @startuml
title __ROOM's Class Diagram__\n
package android.arch.persistence.room {
class R {
- R()
}
}
package android.arch.persistence.room {
class attr {
{static} + font : int
{static} + fontProviderAuthority : int
{static} + fontProviderCerts : int
{static} + fontProviderFetchStrategy : int
{static} + fontProviderFetchTimeout : int
{static} + fontProviderPackage : int
{static} + fontProviderQuery : int
{static} + fontStyle : int
{static} + fontWeight : int
- attr()
}
}
package android.arch.persistence.room {
class bool {
{static} + abc_action_bar_embed_tabs : int
- bool()
}
}
package android.arch.persistence.room {
class color {
{static} + notification_action_color_filter : int
{static} + notification_icon_bg_color : int
{static} + ripple_material_light : int
{static} + secondary_text_default_material_light : int
- color()
}
}
package android.arch.persistence.room {
class dimen {
{static} + compat_button_inset_horizontal_material : int
{static} + compat_button_inset_vertical_material : int
{static} + compat_button_padding_horizontal_material : int
{static} + compat_button_padding_vertical_material : int
{static} + compat_control_corner_material : int
{static} + notification_action_icon_size : int
{static} + notification_action_text_size : int
{static} + notification_big_circle_margin : int
{static} + notification_content_margin_start : int
{static} + notification_large_icon_height : int
{static} + notification_large_icon_width : int
{static} + notification_main_column_padding_top : int
{static} + notification_media_narrow_margin : int
{static} + notification_right_icon_size : int
{static} + notification_right_side_padding_top : int
{static} + notification_small_icon_background_padding : int
{static} + notification_small_icon_size_as_large : int
{static} + notification_subtext_size : int
{static} + notification_top_pad : int
{static} + notification_top_pad_large_text : int
- dimen()
}
}
package android.arch.persistence.room {
class drawable {
{static} + notification_action_background : int
{static} + notification_bg : int
{static} + notification_bg_low : int
{static} + notification_bg_low_normal : int
{static} + notification_bg_low_pressed : int
{static} + notification_bg_normal : int
{static} + notification_bg_normal_pressed : int
{static} + notification_icon_background : int
{static} + notification_template_icon_bg : int
{static} + notification_template_icon_low_bg : int
{static} + notification_tile_bg : int
{static} + notify_panel_notification_icon_bg : int
- drawable()
}
}
package android.arch.persistence.room {
class id {
{static} + action_container : int
{static} + action_divider : int
{static} + action_image : int
{static} + action_text : int
{static} + actions : int
{static} + async : int
{static} + blocking : int
{static} + chronometer : int
{static} + forever : int
{static} + icon : int
{static} + icon_group : int
{static} + info : int
{static} + italic : int
{static} + line1 : int
{static} + line3 : int
{static} + normal : int
{static} + notification_background : int
{static} + notification_main_column : int
{static} + notification_main_column_container : int
{static} + right_icon : int
{static} + right_side : int
{static} + text : int
{static} + text2 : int
{static} + time : int
{static} + title : int
- id()
}
}
package android.arch.persistence.room {
class integer {
{static} + status_bar_notification_info_maxnum : int
- integer()
}
}
package android.arch.persistence.room {
class layout {
{static} + notification_action : int
{static} + notification_action_tombstone : int
{static} + notification_template_custom_big : int
{static} + notification_template_icon_group : int
{static} + notification_template_part_chronometer : int
{static} + notification_template_part_time : int
- layout()
}
}
package android.arch.persistence.room {
class string {
{static} + status_bar_notification_info_overflow : int
- string()
}
}
package android.arch.persistence.room {
class style {
{static} + TextAppearance_Compat_Notification : int
{static} + TextAppearance_Compat_Notification_Info : int
{static} + TextAppearance_Compat_Notification_Line2 : int
{static} + TextAppearance_Compat_Notification_Time : int
{static} + TextAppearance_Compat_Notification_Title : int
{static} + Widget_Compat_NotificationActionContainer : int
{static} + Widget_Compat_NotificationActionText : int
- style()
}
}
package android.arch.persistence.room {
class styleable {
{static} + FontFamily : int[]
{static} + FontFamily_fontProviderAuthority : int
{static} + FontFamily_fontProviderCerts : int
{static} + FontFamily_fontProviderFetchStrategy : int
{static} + FontFamily_fontProviderFetchTimeout : int
{static} + FontFamily_fontProviderPackage : int
{static} + FontFamily_fontProviderQuery : int
{static} + FontFamilyFont : int[]
{static} + FontFamilyFont_android_font : int
{static} + FontFamilyFont_android_fontWeight : int
{static} + FontFamilyFont_android_fontStyle : int
{static} + FontFamilyFont_font : int
{static} + FontFamilyFont_fontStyle : int
{static} + FontFamilyFont_fontWeight : int
- styleable()
}
}
R +-down- attr
R +-down- bool
R +-down- color
R +-down- dimen
R +-down- drawable
R +-down- id
R +-down- integer
R +-down- layout
R +-down- string
R +-down- style
R +-down- styleable
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
|
dc1f85c8847dde662a7a8db978f16041d4035141 | 7fbdb3db8e966a7f78cad2d9e6798dfd8aedea01 | /src/com/cjj/designpattern/behavioral/memento/MementoClassGraph.puml | 0dcaa9d97acfaa17ea0353719f33ebba0350b460 | [] | no_license | vuquangtin/DesignPattern-1 | 3d1fc64e8412bf5ba3a10a38dde121c68ffc8b9a | 47182c1c6e3f7e4126d33bdca53e055d9f0b3b5d | refs/heads/master | 2021-10-09T20:10:01.009239 | 2019-01-03T01:33:51 | 2019-01-03T01:33:52 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 298 | puml | @startuml
class Main{
}
class Gamer{
-money
-fruits
-random
-fruitsname
+getMoney()
+bet()
+createMemento()
+restoreMemento()
+toString()
-getFruit()
}
class Memento{
~money
~fruits
+getMoney()
~Memento()
~addFruit()
}
Main ->Gamer:Resquests >
Gamer ->Memento:Creates >
Main o->Memento
@enduml |
c52d1a4341cabbe568a87341fbbb5b5872a53cc9 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderSetCountryAction.puml | 210ad7df85ef64f03860b65b6b3035eaabc26ca7 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 461 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface StagedOrderSetCountryAction [[StagedOrderSetCountryAction.svg]] extends StagedOrderUpdateAction {
action: String
country: String
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
|
0e10f123b34df4472b7d811745755e1ee0899b3f | 5cf4562f01b174ba235cb3ac5551b247a4c2abcb | /app/src/main/java/com/jxust/tutor/tutor.plantuml | f322957f7c5de36723ecebd0eba9b046097f5f7f | [] | no_license | atanuroy911/JXUST_TUTOR_APP | 30c08767b79f141c2903b3a035182f1a3aed3828 | fb440a4f0f5ac57f716a5c829177265155b7c157 | refs/heads/main | 2023-03-03T06:04:36.247741 | 2021-02-03T13:26:52 | 2021-02-03T13:26:52 | 335,628,435 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,964 | plantuml | @startuml
title __TUTOR's Class Diagram__\n
namespace com.jxust.tutor {
class com.jxust.tutor.LoginMainActivity {
- profileSelected : int
- user : Cursor
# onCreate()
}
}
namespace com.jxust.tutor {
class com.jxust.tutor.MainActivity {
{static} + PREFS_NAME : String
~ sharedPreferences : SharedPreferences
# onCreate()
}
}
namespace com.jxust.tutor {
class com.jxust.tutor.RegistrationActivity {
- email : String
- firstName : String
- isValid : boolean
- lastName : String
- password : String
- passwordConfirmation : String
- profileSelected : int
- rs : Cursor
- schoolID : int
- schoolList : ArrayList
# onCreate()
}
}
namespace com.jxust.tutor {
class com.jxust.tutor.StudentMainActivity {
{static} ~ USER_ID : int
~ bottomNav : BottomNavigationView
# onCreate()
}
}
namespace com.jxust.tutor {
class com.jxust.tutor.TutorMainActivity {
{static} ~ USER_ID : int
~ bottomNav : BottomNavigationView
# onCreate()
}
}
com.jxust.tutor.LoginMainActivity -up-|> android.support.v7.app.AppCompatActivity
com.jxust.tutor.LoginMainActivity o-- com.jxust.tutor.models.DBHelper : mydb
com.jxust.tutor.MainActivity -up-|> android.support.v7.app.AppCompatActivity
com.jxust.tutor.RegistrationActivity -up-|> android.support.v7.app.AppCompatActivity
com.jxust.tutor.RegistrationActivity o-- com.jxust.tutor.models.DBHelper : mydb
com.jxust.tutor.StudentMainActivity -up-|> android.support.v4.app.FragmentActivity
com.jxust.tutor.TutorMainActivity -up-|> android.support.v4.app.FragmentActivity
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
|
7e19e013c59f27ed8e0fb9802af05fb597ce523d | 72dbbaa7bb2c337c6502c2b2ee05eecfccb5464e | /restaurant.plantuml | 51fb74d7346271e2e3d0bb55a64e08114fc72a44 | [] | no_license | hi-kaye/restaurants | cfbdeaa76a5550dbab86562ae3d9dfd64bef1232 | 6b61536407b91fc6dbbe2ddb90be4aacc6461264 | refs/heads/master | 2022-12-16T23:58:29.857951 | 2020-09-28T18:51:04 | 2020-09-28T18:51:04 | 299,402,647 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 291 | plantuml | @startuml
class Restaurant {
name STRING
image STRING
menus Array<Menu>
{method} getMenu
}
class Menu {
title STRING
items Array<Item>
{method} getPrice
{method} getName
}
class Item {
name STRING
price FLOAT
}
Restaurant --{Menu
Menu--{Item
@enduml |
bbf00cce1eeb24fb766b04511982a0ad4b11b7bc | 114d183f85e91502b4f87581521dcfa41a8152a0 | /doc/diagrams/eagine/message_bus/direct_connection.puml | 6689f2de5100c28b4aaa3c01e5a1fc758dab1915 | [
"BSL-1.0",
"GPL-3.0-only",
"GPL-1.0-or-later"
] | permissive | ford442/oglplu2 | 5544c888a11b9b2f92c3dd658c914403a6372604 | abf1e28d9bcd0d2348121e8640d9611a94112a83 | refs/heads/develop | 2023-07-28T03:56:59.431213 | 2021-09-01T05:40:48 | 2021-09-01T05:40:48 | 403,495,160 | 0 | 0 | BSL-1.0 | 2021-09-06T05:23:50 | 2021-09-06T05:21:38 | null | UTF-8 | PlantUML | false | false | 1,693 | puml | @startuml
class direct_connection_state {
client_to_server : queue
server_to_client : queue
queue_mutex : mutex
+send_to_server()
+send_to_client()
+fetch_from_server()
+fetch_from_client()
}
class direct_connection_address {
+connect() : shared_state
+process_all()
}
interface connection {
+is_usable()
+update()
+send()
+fetch_messages()
}
class direct_connection_info {
+kind() : connection_kind
+addr_kind() : connection_addr_kind
+type_id() : identifier
}
class direct_client_connection {
}
class direct_server_connection {
}
class accept_handler {
+operator()
}
class direct_acceptor {
+make_connection()
+process_accepted()
}
class direct_connection_factory {
+make_connector()
+make_acceptor()
}
connection <|-- direct_connection_info : implements
direct_connection_info <|-- direct_client_connection : extends
direct_connection_info <|-- direct_server_connection : extends
accept_handler --> direct_server_connection : accepts
direct_acceptor --> accept_handler : invokes
direct_acceptor o-- direct_connection_address : listens at
direct_acceptor ..> direct_client_connection
direct_acceptor ..> direct_server_connection
direct_connection_address ..> direct_connection_state : instantiates
direct_client_connection o--> direct_connection_state : shares
direct_server_connection o--> direct_connection_state : shares
direct_client_connection o..> direct_connection_address : weakly\nreferences
direct_connection_factory *-- direct_connection_address
direct_connection_factory ..> direct_client_connection : instantiates
direct_connection_factory ..> direct_acceptor : instantiates
@enduml
|
344912f5b8c88485dbb30d9a74a0c7290370c3f9 | 6b3d2606222bc3a4f337f1a9193a74e951f13e8a | /diagrams/model.puml | 098688058b16d0652d8e4e1b885b2ab368ce9b0a | [
"Apache-2.0"
] | permissive | kevinbayes/clairs-server | 8dc7bbbadf796dac2b23809181ed32e7c5f56ff3 | 690c51d75078be03ede8ae72f1ac7f4a6d769ef7 | refs/heads/master | 2021-01-19T11:42:07.359937 | 2017-10-31T09:36:26 | 2017-10-31T09:36:26 | 87,989,403 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 396 | puml | @startuml
interface Registry
interface ContainerImage
interface ContainerImageTag
interface ContainerImageReport
interface ContainerImageVulnerabilityCount
List <|-- AbstractList
Collection <|-- AbstractCollection
Collection <|- List
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList
class ArrayList {
Object[] elementData
size()
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml |
d29836259f563e7dba2dab740c9c96576596567f | 8310ac6ffcabb3b2de21eba1cd8d433451ac70bd | /classes.puml | f36aa70a675bb3eed7c39424a86ba095a626a752 | [] | no_license | R2D2-2019/internal_communication | 282ae3713f2ef4e0cc3b94376084eb388be09873 | d6943debc2f68dfae398987254bad7e860154633 | refs/heads/master | 2021-07-15T19:14:54.403333 | 2019-07-05T09:51:29 | 2019-07-05T09:51:29 | 177,558,489 | 2 | 1 | null | 2019-08-16T13:36:37 | 2019-03-25T09:52:07 | C++ | UTF-8 | PlantUML | false | false | 1,591 | puml | @startuml
enum priority {
HIGH
NORMAL
LOW
DATA_STREAM
}
enum frame_type {
NONE
// All other types
EXTERNAL
ALL
COUNT
}
class channel_c<Bus, priority> {
}
class comm_module_register_s {
+{static} uint8_t count
+{static} std::array<base_comm_c *, max_modules> reg
+{static} void clear_register()
+{static} void register_module(base_comm_c *c)
}
class frame_s {
+frame_type type
+bool request
+uint8_t bytes[]
+T as_type<T>()
+T as_frame_type<frame_type P>()
}
abstract class base_comm_c {
#{abstract} void send_impl(frame_type type, uint8_t data[], size_t length, priority prio)
+{abstract} void request(frame_type type, priority prio)
+void send<T>(T data, priority prio)
+void send<T>(external_id_s id, T data, priority prio)
+void listen_for_frames(std::array listen_for)
+void accept_frame(frame_s frame)
+bool has_data()
+frame_s get_data()
+std::array get_accepted_frame_types()
+bool accepts_frame(frame_type p)
}
abstract class base_module_c {
+base_module_c(base_comm_c comm)
+{abstract} void process()
}
class comm_c {
+comm_c()
+void request(frame_type type, priority prio)
}
class mock_comm_c {
+void request(frame_type type, priority prio)
+frame_s create_frame(frame_data_t<P> data)
+std::vector get_send_frames()
}
comm_c - comm_module_register_s : Registers in >
comm_c - channel_c: Uses >
base_comm_c - frame_s : Talks using >
base_comm_c o-- base_module_c
base_module_c ^-- comm_c
base_module_c ^-- mock_comm_c
@enduml |
40411f5bd4ba639f552ec88aef07b35d4cc2665e | d503adac3aee122b714c78e060b0d7424e1ca124 | /api/integralMall/积分商城.puml | 107488f605ea05c52f5e8ab3231ff7f6942e948d | [
"MIT"
] | permissive | ossworker/apidoc | ee16c27f60cc6643562eae191c474bc79a5a87e0 | 22550e53eef06c2e7ff363c77de7987d944395b4 | refs/heads/master | 2021-09-10T16:26:57.189530 | 2018-03-29T08:40:47 | 2018-03-29T08:40:47 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,189 | puml | @startuml
class Channel {
/** 渠道编号*/
private String channelCode;
/** 渠道名称*/
private String channelName;
/** 渠道描述*/
private String channelDesc;
/** 营业开始时间*/
private String openTime;
/** 营业结束时间*/
private String closeTime;
/** 经纬度信息*/
private Location location;
/** 渠道地址*/
private String channelAddress;
/** 仓库编号*/
private String warehouseCode;
/** 渠道配置*/
private ChannelConfig channelConfig;
}
class ChannelConfig {
/** 渠道模式 */
private String channelMode;
/** 服务模式*/
private String channelServiceMode;
/** 支付模式*/
private String channelPayMode;
/** 配送模式*/
private String channelDeliveryMode;
/** 是否支持用户自提*/
private Boolean customerPickUp;
/** 是否货到付款 */
private Boolean cashOnDelivery;
}
class Location {
/** 经度 */
private Double longitude;
/** 纬度*/
private Double latitude;
}
Channel --> Location
Channel --> ChannelConfig
class IntegralGoods {
/** 商品编码*/
private String goodsCode;
/** 商品名称*/
private String goodsName;
/** 封面图url*/
private String coverUrl;
/** 渠道价格*/
private BigDecimal channelPrice;
/** 兑换价格*/
private BigDecimal price;
/** 兑换积分数*/
private BigDecimal points;
/** 库存数*/
private BigDecimal stock;
/** 兑换数量*/
private BigDecimal quantity;
}
class IntegralGoodsDetail {
/** 商品编码*/
private String goodsCode;
/** 商品名称*/
private String goodsName;
/** 渠道单价*/
private BigDecimal channelPrice;
/** 兑换单价*/
private BigDecimal price;
/** 兑换积分数 单个*/
private BigDecimal points;
/** 库存*/
private BigDecimal stock;
/** 这个商品的渠道配置(包含定位的渠道和全国渠道)*/
private List<Channel> channels;
}
class ExchageData {
/** 兑换类型*/
private String exchangeType;
/** 编码 商品编码或者券模版id*/
private String code;
/** 交易编码 : 订单编码或者 券code*/
private String tradeCode;
/** 兑换单价 金额*/
private BigDecimal price;
/** 兑换单价 积分*/
private BigDecimal points;
/** 兑换数量*/
private BigDecimal quantity;
/** 兑换时间*/
private Date createTime;
}
class IntegralCoupon {
/** 模版id*/
private String templateId;
/** ALL ALL-整单券,GOODS-商品组合,ITEM-单品|券类型*/
private String type;
/** 券标题*/
private String title;
/** 券描述*/
private String desc;
/** 券金额*/
private BigDecimal value;
/** 券规则描述 */
private String ruleDesc;
/** 开始日期*/
private Date beginDate;
/** 结束日期*/
private Date endDate;
/** 状态 ENABLE-可领,RECEIVED-已领,NONE-已领完*/
private String status;
/** 兑换积分数*/
private BigDecimal points;
}
class PageInfo<T> {
/** 分页起始位置*/
private int offset = 0;
/** 每页显示多少行,默认为10*/
private int limit = 10;
/** 泛型结果集*/
private List<T> rows = new ArrayList<T>();
/** 当前页*/
private int page = 1;
/** 排序规则*/
private String orderBy;
}
class Dict {
/** 分组id*/
private String groupId;
/** 关键词*/
private String key;
/** 值*/
private String value;
/** 描述*/
private String desc;
}
interface IntegralGoodsService {
+ PageInfo<IntegralGoods> queryGoods(PageInfo pageInfo, IntegralGoods goods,String channelCode) throws IntegralException; //查询积分兑换的商品列表
+ IntegralGoodsDetail queryGoodsDetail(String channelCode,String goodsCode) throws IntegralException; //根据渠道编号和商品编号查询商品明细
+ boolean calcPointsAndStock(IntegralGoods goods,String channelCode,String customerCode) throws IntegralException; //创建订单 (包含判断积分和库存)
}
IntegralGoodsService ..> PageInfo
IntegralGoodsService ..> IntegralGoods
IntegralGoodsService ..> IntegralGoodsDetail
interface IntegralCouponService {
+ PageInfo<IntegralCoupon> queryCoupons(PageInfo pageInfo,IntegralCoupon coupon,String customerCode) throws IntegralException; //分页查询兑换的券列表
+ String exchageCoupon(String templateId,String customerCode) throws IntegralException; //兑换券
}
IntegralCouponService ..> PageInfo
IntegralCouponService ..> IntegralCoupon
interface DictService {
+ List<Dict> queryGroupDictByAppId(String appId,String groupId) throws IntegralException; //查询应用分组字典
}
DictService ..> Dict
interface ExchageDataService {
+ List<ExchageData> queryCustomerExchangeDataByTradeCodes(Integer exchageType,String customerCode,List<String> tradeCodes) throws IntegralException; //通过会员编号 兑换类型 和 交易编码查询
}
ExchageDataService ..> ExchageData
@enduml |
782abca235c1506340953a44688d174084559cce | 663fbaeff4fb6ca26c5be4dc0107f336872f1065 | /samples/class-sample.puml | a4b65c0c9f64186a6b42e36ed9f9a9d94df47c49 | [
"MIT"
] | permissive | blademainer/plantuml-style-c4 | 78de854343e0468f05d32a22ed52d0c2c7e59e08 | 6f9c7f98c3140afc15ddee948f0f0f6998176b27 | refs/heads/master | 2020-08-28T10:39:27.022183 | 2020-08-24T10:21:31 | 2020-08-24T10:21:31 | 217,658,658 | 0 | 0 | MIT | 2019-10-26T05:03:39 | 2019-10-26T05:03:39 | null | UTF-8 | PlantUML | false | false | 859 | puml | @startuml class-sample
!includeurl https://raw.githubusercontent.com/blademainer/plantuml-style-c4/master/core.puml
' uncomment the following line and comment the first to use locally
'!include core.puml
!includeurl https://raw.githubusercontent.com/blademainer/plantuml-style-c4/master/class-diagram-helper.puml
' uncomment the following line and comment the first to use locally
'!include class-diagram-helper.puml
GREY_ARROW
abstract class BaseClass {
+ AbstractMethod() : void
# VirtualMethod(s:string) : int
}
class SubClass {
+ AbstractMethod() : void
# VirtualMethod(s:string) : int
}
interface IInterfaceA {
}
interface "IInterfaceA`1"<T> {
Value : T <<get>>
}
class ImplementClass {
+ Value : int <<get>>
}
BaseClass <|-- SubClass
IInterfaceA <|-- "IInterfaceA`1"
"IInterfaceA`1" "<int>" <|-- ImplementClass
@enduml |
1a7c9b0564a87027cea64e4dd8b3ac8558131e04 | eb79b5e41b205bca757ecb47616d107d0c78e13d | /design_principles/liskov_substitution_principle.puml | 72fd10b57f883d2e8bf5d59cbd0c3948d4421044 | [] | no_license | kevinwong1983/exploration | 6023bb1c903c316794b132b1bff4ef817fe55f5d | 20029c025c7ae44e0dba535a6ec47b065b19f65b | refs/heads/master | 2022-06-09T09:48:26.087800 | 2022-06-05T22:29:47 | 2022-06-05T22:29:47 | 207,248,735 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 330 | puml | @startuml
skinparam monochrome true
class Client {
doSomething(TypeA a);
}
class TypeA {
methodA();
methodB();
}
class TypeB {
methodA();
methodB();
}
TypeA <|-- TypeB
Client --> TypeA
note as N1
"When we substitute TypeA with TypeB,
functionality breaks."
end note
Client .. N1
N1 ..> TypeB
@enduml |
98880539e32b15fb8e9b6cab713588d08b02b9d2 | c2ef7c48e236c3d1780fdcac75abce25c672c652 | /src/main/resources/uml/FacadeUml.puml | e7343e1a3b8882a099ac9816ff11339969788ee5 | [] | no_license | ToryZhou/design-pattern | 8d63b720ef54c9633eb10122c4cbeae45ae7ea1c | c9bcd6ae5cfb398e86d3af9a6a704e70a604b5cd | refs/heads/master | 2022-09-10T09:57:10.616533 | 2022-08-22T02:48:42 | 2022-08-22T02:48:42 | 132,232,311 | 62 | 31 | null | 2022-08-22T02:48:43 | 2018-05-05T09:11:57 | Java | UTF-8 | PlantUML | false | false | 323 | puml | @startuml
title Facade
class Fund{
-nationalDept: NationalDept
-realty: Realty
-stock: Stock
+buyFund()
+sellFund()
}
class NationalDept{
+buy()
+sell()
}
class Realty{
+buy()
+sell()
}
class Stock{
+buy()
+sell()
}
Fund --> NationalDept
Fund --> Realty
Fund --> Stock
@enduml |
2a2b4603f8e2556fda36852bdbd1361715aafc0f | 34acd2aa8d51295c0c4289e43e8961f5e23b5a08 | /PlantUML/raw/Custom/ElCazador.Worker/Modules/Spoofers/Models/SocketType.puml | e48e81eef6669ad5e4288f7cdae89c529cc1e891 | [] | no_license | fisboger/Thesis | a6887e195c7daa8317abe3167de1676420173e33 | 4746126f69da615c641380fd7a33c863f2fedee3 | refs/heads/master | 2020-04-03T15:18:08.671739 | 2019-02-07T11:17:06 | 2019-02-07T11:17:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 473 | puml | @startuml
class SocketType {
<<internal>> Name : string <<get>> <<set>>
<<internal>> Type : Sockets <<get>> <<set>>
<<internal>> ProtocolType : ProtocolType <<get>> <<set>>
<<internal>> Port : int <<get>> <<set>>
<<internal>> IPEndPoint : EndPoint
<<internal>> Socket : Socket <<get>> <<set>>
<<internal>> MulticastAddress : IPAddress <<get>> <<set>>
+ Equals(other:SocketType) : bool
}
"IEquatable`1" "<SocketType>" <|-- SocketType
@enduml
|
c0bf973c152a5999ea05063b45ac57a75a835971 | 0339a55d9af23ebb6078c905104e78e4dd1499b9 | /01-七大设计原则-2-接口隔离原则/src/com/lft/principle/interface_segregation/improce/接口隔离原则.puml | a413cef76fe3b42945f7f08dbf3a3fbb4ca9f6a8 | [
"Apache-2.0"
] | permissive | Laifengting/Design-Pattern | 05c8a53815a204d883a0bdb6b0d2e75be9f604a0 | e4305a04d2836c1bc5337fe27b564bd9a89abcb0 | refs/heads/main | 2023-05-11T17:19:34.806116 | 2021-05-28T12:59:37 | 2021-05-28T12:59:37 | 333,338,498 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,303 | puml | @startuml
' 允许各种图混合使用
allowmixing
' UML图标题
title 接口隔离原则
interface Interface1{
+ operation1():void
}
interface Interface2{
+ operation2():void
+ operation3():void
}
interface Interface3{
+ operation4():void
+ operation5():void
}
class A
class C
/'依赖'/
A ..> Interface1
A ..> Interface2
C ..> Interface1
C ..> Interface3
class B
class D
/'实现'/
B ..|> Interface1
B ..|> Interface2
D ..|> Interface1
D ..|> Interface3
/''''说明与样式
' 类之间的关系
依赖关系..> .> <. <..
继承关系--|> -|> <|- <|--
实现关系..|> .|> <|. <|..
关联关系--> <--> -- -> <->
聚合关系--o <--o o- o--
组合关系--* <--* *- *--
' 访问权限
- private
# protected
~ default
+ public
' 备注
1. note top of Object : 备注在对象的四周
2. note "无方位位置" as Note1
3. note left: 备注在前一个类的四周
4. note on link #red : 链接注释
5. note left of Object
注释内容
end note
' 包
package com.lft.design.pattern {
' 接口
interface Interface
' 棒棒糖接口()-- ()- --() -()
Interface2 ()-- A
' 抽象类
abstract class AbstractClass
}
' 枚举
enum TimeUnit{
DAYS
HOURS
MINUTES
SECONDS
}
' 泛型
class Eye<? extends Head>{
}
' 命名空间
namespace net.dummy #DDDDDD {
Meeting o-- Person
.BaseClass <|- Meeting
}
' 改变箭头方向 left right up down
A .up.> B
' 关系类
class Student{
Name
}
Student "0..*" -- "1..*" Course
(Student, Course) . Enrollment
class Enrollment{
drop()
cancel()
}
' 普通类
class Person{
..Field..
{field} - name: String
{static}{field} - head: Head
--Constructor--
+ Person(name: String)
==Method==
{method} + getName(): String
{abstract}{method} + doSomething(): void
__Other__
}
class Head
Person "1" *-- "1" Head : contains >
' 类说明
class A << (I,#FF7700) 说明 >>
' 箭头颜色
A .[#395862].> B
'/
'' 类图样式
' 全局样式
skinparam {
' 全局背景颜色
backgroundColor #F0F7F7
' 画布样式
DiagramBorderColor #677C81
DiagramBorderThickness 1
' 分辨率
Dpi 1920
' 是否启用阴影
Shadowing false
' 手写样式是否启用
handwritten false
' 标题样式
TitleBackgroundColor #CBD8D8
TitleBorderColor #A5ADAD
TitleBorderRoundCorner 16
TitleBorderThickness 1
TitleFontColor #6A8181
TitleFontName YouYuan
TitleFontSize 20
' 箭头
ArrowColor #6D6D6D
ArrowThickness 1
ArrowFontColor #6D6D6D
ArrowFontName Fira Code
ArrowFontSize 16
' 注释样式
NoteBackgroundColor #E3EAED
NoteBorderColor #47A7AB
NoteFontColor #283428
NoteFontName YouYuan
NoteFontSize 16
' 类图主样式
ClassBackgroundColor #E3EAED
ClassHeaderBackgroundColor #CBD8D8
ClassBorderColor #A0A4AF
ClassBorderThickness 1
ClassAttributeIconSize 14
ClassAttributeFontName Fira Code
ClassAttributeFontColor #303030
ClassAttributeFontSize 16
ClassFontColor #283428
ClassFontName Fira Code
ClassFontSize 18
' 图头标志样式
StereotypeABackgroundColor #C3E88D
StereotypeABorderColor #347998
StereotypeCBackgroundColor #4FC3F7
StereotypeCBorderColor #3683A5
StereotypeEBackgroundColor #F78C6C
StereotypeEBorderColor #894D3E
StereotypeIBackgroundColor #C3E88D
StereotypeIBorderColor #6F8150
StereotypeNBackgroundColor #C691E9
StereotypeNBorderColor #5D436A
' 类图包样式
PackageBackgroundColor #EAF9F7-#D4F1F2
PackageBorderThickness 1
PackageBorderColor 6D6D6D
PackageFontColor #283428
PackageFontName Fira Code
PackageFontSize 18
'''包样式 <<Node>> <<Rectangle>> <<Folder>> <<Frame>> <<Cloud>> <<Database>>
PackageStyle Frame
PackageTitleAlignment center
' 用例图样式
UsecaseBackgroundColor #CBD8D8
UsecaseBorderColor #A0A4AF
UsecaseBorderThickness 1
UsecaseFontColor #283428
UsecaseFontName Fira Code
UsecaseFontSize 16
UsecaseStereotypeFontColor #283428
UsecaseStereotypeFontName Fira Code
UsecaseStereotypeFontSize 12
' 矩形样式
RectangleBackgroundColor #E3EAED
RectangleBorderColor #A0A4AF
RectangleBorderThickness 1
RectangleFontColor #283428
RectangleFontName Fira Code
RectangleFontSize 18
' 字体样式 Normal Bold Italic
RectangleFontStyle Bold Italic
}
@enduml |
4097e903e4f358fa725708e554d80bcd24f7cf15 | 4291ef524e205e9b7c7c479052e1fe40078a1f60 | /doc/part_three/sensor-server.puml | dd2027cd271dc5bff699431e9093e2ce9dcdde7b | [
"BSD-2-Clause"
] | permissive | nymann/portfolio-assignment | 4136ab71b2bac64d6a4474c76b16ee5e57f9d21d | abb6d840d6d9ae59b90e8417f140c2314b1e7a27 | refs/heads/master | 2023-04-27T00:19:10.391313 | 2021-05-21T21:02:46 | 2021-05-21T21:02:46 | 367,152,436 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 602 | puml | @startuml
skinparam roundCorner 10
skinparam shadowing false
skinparam classFontName Lato
skinparam classFontSize 16
skinparam defaultFontName Source Code Pro
skinparam defaultFontSize 14
skinparam ClassAttributeFontStyle normal
skinparam ClassBackgroundColor white
skinparam ClassBorderColor black
skinparam ClassBorderThickness 1
skinparam ArrowColor black
skinparam linetype polyline
class dev.nymann.sensor_server.Subject {
+ void run()
}
class dev.nymann.sensor_server.SensorServer {
+ void start()
+ void stop()
}
dev.nymann.sensor_server.Runnable <|.. dev.nymann.sensor_server.Subject
@enduml
|
7a0fc81b0a656da83a4818b591752649882d9410 | e5bfe285d2d08958aa7c60de59ee97d36c506c6e | /doc/BackendUML.puml | d96486715c8d82ade1bdce160692c540f150717c | [] | no_license | ThomasMiz/TPE-POO | d1ec31a608f8b6a1bea2fe53b69be142ab249e27 | 6d2198bb5a4573744143438628981d249eefb429 | refs/heads/main | 2023-06-05T20:33:08.694773 | 2021-07-05T22:10:07 | 2021-07-05T22:10:07 | 381,515,709 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,838 | puml | @startuml
interface Drawable{
+void draw(GraphicsContext gc)
}
interface Colorable{
+void setBorderSize(double size)
+void setBorderColor(Color color)
+void setFillColor(Color color)
+default void setColorableProperties(double borderSize, Color borderColor, Color fillColor)
}
interface Movable{
+void move(double deltaX, double deltaY)
}
Drawable -[hidden] Colorable
Colorable -[hidden] Movable
abstract class Figure{
-Point[] points
-double borderSize
-Color borderColor
-Color fillColor
#Figure(Point[] points)
+void setBorderSize(double borderSize)
+double getBorderSize()
+void setBorderColor(Color borderColor)
+Color getBorderColor()
+void setFillColor(Color fillColor)
+Color getFillColor()
+void move(double deltaX, double deltaY)
+void draw(GraphicsContext gc)
{abstract}+boolean contains(Point point)
{abstract}+boolean isContainedIn(Rectangle rectangle)
}
Figure .up.|> Drawable
Figure .up.|> Colorable
Figure .up.|> Movable
Figure *-up- Point
class CanvasState{
-List<Figure> list
+void addFigure(Figure figure)
+boolean removeFigures(Collection<Figure> figures)
+void sendToTop(Collection<Figure> figures)
+void sendToBottom(Collection<Figure> figures)
+Figure getFigureAt(Point point)
+int getFiguresOnRectangle(Rectangle rectangle, Collection<Figure> result)
+Iterator<Figure> iterator()
+void clear()
}
CanvasState *-left- Figure
class Circle{
+Circle(Point center, double radius)
+double getRadius()
+String toString()
}
class Ellipse{
-Point center
-double radiusX
-double radiusY
+Ellipse(Point center, double radiusX, double radiusY)
+Point getCenter()
+double getRadiusX()
+double getRadiusY()
+boolean contains(Point point)
+boolean isContainedIn(Rectangle rectangle)
+void draw(GraphicsContext gc)
+String toString()
}
class Line{
-Point from
-Point to
+Line(Point from, Point to)
+Point getFrom()
+Point getTo()
+boolean contains(Point point)
+boolean isContainedIn(Rectangle rectangle)
+void draw(GraphicsContext gc)
+String toString()
}
class Point{
-double x
-double y
+double distanceSquaredTo(Point other)
+double distanceTo(Point other)
+void move(double deltaX, double deltaY)
+boolean equals()
+String toString()
}
class Point implements Movable
class Rectangle{
-Point topLeft
-Point bottomRight
+Rectangle(Point topLeft, Point bottomRight)
+Point getTopLeft()
+Point getBottomRight()
+double width()
+double height()
+boolean contains(Point point)
+boolean contains(Rectangle other)
+boolean isContainedIn(Rectangle rectangle)
+void draw(GraphicsContext gc)
+String toString()
}
class Square{
+Square(Point topLeft, Point bottomRight)
+String toString()
}
class Circle extends Ellipse
class Ellipse extends Figure
class Rectangle extends Figure
class Square extends Rectangle
class Line extends Figure
note top of CanvasState
This class implements Iterable<Figure>
end note
@enduml |
4cb79605abb2dbf5cd5ab2344184bb317c781b86 | d6ca810d2ec991d97c1bc8581ed06763c57641ce | /development/felica/TestCords/FericaReader/plantuml/WindowManager.puml | 8673a82a7640cfaebec3de1805ca49588e8cb4d8 | [] | no_license | miyashita-atsushi/team_a | c847d571c5a522339ee0c3ac2c5ee0cb0753411b | 3cfec172375aafeef64c40a575dddde64f0a8ed3 | refs/heads/master | 2023-02-25T07:39:36.010130 | 2020-05-29T09:12:57 | 2020-05-29T09:12:57 | 254,561,813 | 0 | 1 | null | 2021-01-29T20:47:18 | 2020-04-10T06:33:38 | C# | UTF-8 | PlantUML | false | false | 253 | puml | @startuml
class WindowManager {
+ ReadFelcia(felica:Felica, iCCardType:string) : void
+ SearchProcesses() : List<string>
}
class "List`1"<T> {
}
WindowManager o-> "Instance" WindowManager
WindowManager o-> "HistoryList<ICCard>" "List`1"
@enduml
|
b0723aeeea71b0a75c04886ac55905455732d8be | 6153f22ccad5e550ec60e6465d77bd7088174144 | /DesignPattern/Visitor/uml/Visitor.puml | 55055a6dc835e7e210f035b90b92f4a55fc8334e | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | zwxbest/Demo | a5093d4e82b269d200d23a7a390e299334301917 | 16ce40b63907d52d65ad93fba6a793847911d216 | refs/heads/master | 2023-06-08T17:15:27.688512 | 2022-03-03T03:53:31 | 2022-03-03T03:53:31 | 123,203,277 | 1 | 7 | MIT | 2023-05-26T22:15:03 | 2018-02-27T23:52:55 | Roff | UTF-8 | PlantUML | false | false | 396 | puml | @startuml
abstract class Operation{
+VisitConcreteElementA(ConcreteElementA)
+VisitConcreteElementB(ConcreteElementB)
}
ConcreteVistor1-up--|>Visitor
ConcreteVistor2-up--|>Visitor
abstract Element{
+Accept(Visitor)
}
ConcreteElementA-up-|>Element
ConcreteElementB-up-|>Element
class ObjectStructure{
+Attach(Element)
+Detach(Element)
+Accept(Visitor)
}
ObjectStructure "1" o-> "*" Element
@enduml |
de2df214bfbbe8122e91280982c6ed01ac0c3f5f | 8e0f0552ce5e0d9c8b0c4afd5c84923d16e8f0a8 | /UMLDiag.puml | 0bef0134dc56a86cd3885b7c72c96fc5068f5ca5 | [] | no_license | bkorzen/java-linear-algebra-library | 68b89b6fcb27b83d4213bd68d6c32dfc64648560 | 9f4df4284172457119f8ad5788c17c883611f209 | refs/heads/master | 2020-03-18T00:21:25.543704 | 2018-05-19T18:55:51 | 2018-05-19T18:55:51 | 133,870,110 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 909 | puml | @startuml
' - private
' # protected
' ~ package private
' + public
' {static} {abstract}
' <|-- extension
' *-- composition
' o-- aggregaion
'---------------------------------------------------
Matrix <-.- LUDecomposition
Matrix <-.- QRDecomposition
Matrix <-.- CholeskyDecomposition
Class Matrix{
-matrix: double[][]
-size: int
+Matrix(int size)
+Matrix (double[][], int)
+Matrix (double[], int)
+FillMatrix(): void
+printMatrix(): void
+transpose(): void
+MultiplyByScalar(double): void
+ArrayMultiplication(Matrix): void
+{static}Multiply(Matrix, Matrix, int): Matrix
+{static}Determinant(Matrix, int): double
-{static}Cofactor(double[][], double[][], int, int, int): void
+{static}Adjugate(Matrix, int): Matrix
+{static}Inverse(Matrix , int)
}
class LUDecomposition{
}
class QRDecomposition{
}
class CholeskyDecomposition{
}
@enduml
|
04f707c2b703fa34e3daebf22b8607ee95aecd08 | 14f10ea1e96e8bd4a4f21d5fb206a124a46a9f42 | /src/dispenser2/dispenser2.plantuml | d0630b8f30ed195c98f47073ddb09b0cdc5306ae | [] | no_license | jestin-g/p10-miage-m1-mapc-td4 | 2cdd11827671c19a3e8d86a9984126119fc4a515 | 8cc2239a760026088a6a0e026bccf0d0ce6ca785 | refs/heads/master | 2023-01-18T23:47:55.421046 | 2020-11-10T16:29:26 | 2020-11-10T16:29:26 | 311,718,930 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,254 | plantuml | @startuml
title __DISPENSER2's Class Diagram__\n
namespace dispenser2 {
class dispenser2.Demo {
{static} + main()
}
}
namespace dispenser2 {
class dispenser2.DrinkDispenser {
{static} + DRINK_PRICE : int
+ moneyEntered : int
+ DrinkDispenser()
+ askCoffee()
+ askTea()
+ getRefund()
+ giveMoney()
+ setState()
}
}
namespace dispenser2 {
class dispenser2.State {
+ askCoffee()
+ askTea()
+ getRefund()
+ giveMoney()
}
}
namespace dispenser2 {
class dispenser2.StateReadyToServe {
+ StateReadyToServe()
+ askCoffee()
+ askTea()
- serveDrink()
}
}
namespace dispenser2 {
class dispenser2.StateWaitingForMoney {
+ StateWaitingForMoney()
+ giveMoney()
}
}
dispenser2.DrinkDispenser o-- dispenser2.State : state
dispenser2.StateReadyToServe -up-|> dispenser2.State
dispenser2.StateWaitingForMoney -up-|> dispenser2.State
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
|
7e5a55827e5486c46d99c1bc23aa6657f3242c1f | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Tests/Editor/TMP_EditorTests.puml | 1e729ba2f6ddc9c05fc79d7676f1d11cd91f4689 | [] | 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 | 702 | puml | @startuml
class TMP_EditorTests {
+ Setup() : void
+ InternalResourceCheck(filePath:string, guid:string) : void
+ TextParsing_TextInfoTest_WordWrappingDisabled(sourceTextIndex:int, characterCount:int, spaceCount:int, wordCount:int, lineCount:int) : void
+ TextParsing_TextInfoTest_WordWrappingEnabled(sourceTextIndex:int, characterCount:int, spaceCount:int, wordCount:int, lineCount:int) : void
+ TextParsing_TextInfoTest_TopJustifiedAlignment(sourceTextIndex:int, characterCount:int, spaceCount:int, wordCount:int, lineCount:int) : void
+ TextParsing_TextInfoTest_RichText(sourceTextIndex:int, characterCount:int, spaceCount:int, wordCount:int, lineCount:int) : void
}
@enduml
|
fc47009f3ee329be4062fb99cf732871664b0769 | 1cf4490d48f50687a8f036033c37d76fec39cd2b | /src/main/java/global/skymind/training/advanced/gui/swing/ex5/ex5.plantuml | a04b54559cbc9d895f9857bbdb02df01e7bfe7be | [
"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 | 675 | plantuml | @startuml
title __EX5's Class Diagram__\n
namespace global.skymind {
namespace training.advanced.gui.swing.ex5 {
class global.skymind.training.advanced.gui.swing.ex5.MySMenuBar {
+ actionPerformed()
{static} + main()
+ start()
}
}
}
global.skymind.training.advanced.gui.swing.ex5.MySMenuBar .up.|> java.awt.event.ActionListener
global.skymind.training.advanced.gui.swing.ex5.MySMenuBar -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
|
e2a235635651684723187e7879f43aa06f09a2d6 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitAddressAddedMessagePayload.puml | 76e76429cfdad59cd0b310db983c67bfb615564d | [] | 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 | 469 | 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 BusinessUnitAddressAddedMessagePayload [[BusinessUnitAddressAddedMessagePayload.svg]] extends MessagePayload {
type: String
address: [[Address.svg Address]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
|
74bcc14b109db792bbea4f2034485927aab3553e | 0b0cc264919d7b0c24bbf5315af546a121634a35 | /optaweb-vehicle-routing-backend/src/main/java/org/optaweb/vehiclerouting/service/demo/dataset/dataset.plantuml | c81c6c1b97ff3855e7e42df9d2e177917f3fbadc | [
"Apache-2.0"
] | permissive | mauriziocarioli/optaweb-vehicle-routing-distribution-8.6.0.Final | 5c8f0eca20e3c25adfee969a3e422c87c5633e75 | b84b8e88e8bbe01846b346e684587317922fb182 | refs/heads/master | 2023-06-06T14:12:23.409461 | 2021-06-21T20:42:03 | 2021-06-21T20:42:03 | 376,861,264 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,423 | plantuml | @startuml
title __DATASET's Class Diagram__\n
namespace org.optaweb.vehiclerouting {
namespace service.demo {
namespace dataset {
class org.optaweb.vehiclerouting.service.demo.dataset.DataSet {
- name : String
- vehicles : List<DataSetVehicle>
- visits : List<DataSetLocation>
+ getDepot()
+ getName()
+ getVehicles()
+ getVisits()
+ setDepot()
+ setName()
+ setVehicles()
+ setVisits()
}
}
}
}
namespace org.optaweb.vehiclerouting {
namespace service.demo {
namespace dataset {
class org.optaweb.vehiclerouting.service.demo.dataset.DataSetLocation {
- label : String
- latitude : double
- longitude : double
+ getLabel()
+ getLatitude()
+ getLongitude()
+ setLabel()
+ setLatitude()
+ setLongitude()
+ toString()
~ DataSetLocation()
- DataSetLocation()
}
}
}
}
namespace org.optaweb.vehiclerouting {
namespace service.demo {
namespace dataset {
class org.optaweb.vehiclerouting.service.demo.dataset.DataSetMarshaller {
- mapper : ObjectMapper
+ marshal()
+ unmarshal()
~ DataSetMarshaller()
~ DataSetMarshaller()
~ marshal()
{static} ~ toDataSet()
{static} ~ toDataSet()
{static} ~ toDataSet()
{static} ~ toDomain()
{static} ~ toDomain()
{static} ~ toDomain()
~ unmarshalToDataSet()
}
}
}
}
namespace org.optaweb.vehiclerouting {
namespace service.demo {
namespace dataset {
class org.optaweb.vehiclerouting.service.demo.dataset.DataSetVehicle {
~ capacity : int
~ name : String
~ skillSet : Set<String>
+ DataSetVehicle()
}
}
}
}
org.optaweb.vehiclerouting.service.demo.dataset.DataSet o-- org.optaweb.vehiclerouting.service.demo.dataset.DataSetLocation : depot
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
|
65a9da9894aaf16aba07aeb314c7dcdbb3904afe | c8b226052253fc523ddccdf846cb7bdb96cff35e | /securevoip/src/main/java/com/bluevortexflare/securevoip/users/connection/connection.plantuml | b4e9038162e0958593e03cea53755aac140a3f0d | [] | permissive | 517435708/TIP | 50bb55479c5d217bb52bd2c361b8472d88d9b244 | 713158c0ee7677d9031e51bbd630ebf1a8fb2527 | refs/heads/master | 2022-12-23T20:36:16.554721 | 2020-09-27T15:44:26 | 2020-09-27T15:44:26 | 247,706,067 | 0 | 0 | MIT | 2020-09-27T15:44:39 | 2020-03-16T13:13:56 | Java | UTF-8 | PlantUML | false | false | 1,930 | plantuml | @startuml
title __CONNECTION's Class Diagram__\n
namespace com.bluevortexflare.securevoip {
namespace users {
namespace connection {
class com.bluevortexflare.securevoip.users.connection.BasicUserConnectionService {
{static} - BUSY : String
{static} - OK : String
- users : List<VoIPUser>
+ BasicUserConnectionService()
+ connect()
+ disconnect()
+ refuse()
+ tryConnectWith()
- userIsCurrentlyOnCall()
}
}
}
}
namespace com.bluevortexflare.securevoip {
namespace users {
namespace connection {
class com.bluevortexflare.securevoip.users.connection.SocketConfiguration {
~ socket()
}
}
}
}
namespace com.bluevortexflare.securevoip {
namespace users {
namespace connection {
interface com.bluevortexflare.securevoip.users.connection.UserConnectionService {
{abstract} + connect()
{abstract} + disconnect()
{abstract} + refuse()
{abstract} + tryConnectWith()
}
}
}
}
com.bluevortexflare.securevoip.users.connection.BasicUserConnectionService .up.|> com.bluevortexflare.securevoip.users.connection.UserConnectionService
com.bluevortexflare.securevoip.users.connection.BasicUserConnectionService o-- com.bluevortexflare.securevoip.communication.CommunicationForwarderService : forwarderService
com.bluevortexflare.securevoip.users.connection.BasicUserConnectionService o-- com.bluevortexflare.securevoip.session.UserSessionService : sessionService
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
|
77fe3594e3c14ab5f5254e048445eca8a80586ea | 7e76778bf9a2540a68e2f05ad6ad32f99fc70bed | /Assets/Assets/Scripts/OSK/OSK_NewNodeController.puml | 7489804f4b5195cb83f841389d4fbb28b48cc435 | [] | no_license | JosipSkrlec/TVZ_GuestBook | e047760cd605d9d433406edc09f3f24d8a6c3ba3 | 1455332d4b71d615ea38db23698b31741289b056 | refs/heads/main | 2023-07-16T18:40:16.758495 | 2021-08-28T12:42:11 | 2021-08-28T12:42:11 | 347,311,742 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 352 | puml | @startuml
class OSK_NewNodeController {
+ Setup() : void
<<internal>> SpecialKeyPress(code:KeyCode) : void
+ KeyPress(value:string) : void
+ SetInputFieldToSelected(_inputField:TMP_InputField) : void
+ ShowLowercase() : void
+ ShowUppercase() : void
+ ShowNumbers() : void
}
MonoBehaviour <|-- OSK_NewNodeController
@enduml
|
488b21230f6d8385ea61b7973e17443dedda4942 | 56d2bad8bda60e486164d32f47f7b6e65dd1babe | /app/src/main/java/com/journear/app/ui/send/send.plantuml | a40fb163c5fce4ed013c61b0954a23344e4ae16f | [] | no_license | nikhilgirrajtcd/journear-neo | 27372763833899946bfacf2856d7bd69953c6b21 | 28d90bd4b93e049bcf0f80c0358ab1b88f3a52ee | refs/heads/master | 2022-04-23T11:33:29.383211 | 2020-04-27T15:09:41 | 2020-04-27T15:09:41 | 248,527,974 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 946 | plantuml | @startuml
title __SEND's Class Diagram__\n
namespace com.journear.app {
namespace ui {
namespace send {
class com.journear.app.ui.send.SendFragment {
+ onCreateView()
}
}
}
}
namespace com.journear.app {
namespace ui {
namespace send {
class com.journear.app.ui.send.SendViewModel {
- mText : MutableLiveData<String>
+ SendViewModel()
+ getText()
}
}
}
}
com.journear.app.ui.send.SendFragment -up-|> androidx.fragment.app.Fragment
com.journear.app.ui.send.SendFragment o-- com.journear.app.ui.send.SendViewModel : sendViewModel
com.journear.app.ui.send.SendViewModel -up-|> androidx.lifecycle.ViewModel
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
acb828447824f8d0de298f653717181753f756ff | 35524a300e469cc67f5d652a07103230b264d077 | /src/main/java/ex43/ex43.puml | e689feb82301040745eb2c8f0e47ddc8337e5d76 | [] | no_license | tsehaiB/boucaud-cop3330-assignment3 | f216416bb28d346bf10d3974b62546a4886446c6 | ec9362b8cfd2d347d12cd3d134cb02e1c514c4d9 | refs/heads/master | 2023-05-27T00:45:39.837812 | 2021-06-21T03:53:49 | 2021-06-21T03:53:49 | 378,795,737 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 812 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Application{
+ main()
}
class Website{
- inp : Scanner
+ readString()
+ readBool()
+ allDirectories(String name, String author, boolean js, boolean css)
}
class createIndex{
+ constructWriter(String path)
+ printToIndex(FileWriter writer, String index)
}
class Directories{
- makeIndex : indexFile
+ addIndex(String author, String name, String path)
+ makeRootDir(String name)
+ makeDir(String root, String newDir, String name)
+ printConfirm(String path)
}
class indexFile{
- indexMaker : createIndex
+ generateIndex(String author, String name);
+ makeIndex(String index)
}
Application o--> Website
Website o--> Directories
Directories o--> indexFile
indexFile o--> createIndex
@enduml |
180dfe5b306f1909e7f3f2e22f73fb90966ce9d0 | 250cb497560bc5e05e74d51da78f793e530ac01f | /app/src/main/java/com/example/sickar/image/image.plantuml | c026c3d34171955f556c1752761cd046b5ffcc9f | [] | no_license | Huw-man/SICK-AR | c7e411c7de61a806b78472a9ee78efff3a2663e6 | 790e96eae8d1965e5dbbfc815fa13d125d3afe19 | refs/heads/master | 2022-02-02T22:05:21.206333 | 2019-08-16T15:19:45 | 2019-08-16T15:19:45 | 190,592,999 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,427 | plantuml | @startuml
title __IMAGE's Class Diagram__\n
namespace com.example.sickar {
namespace image {
class com.example.sickar.image.ImageActivity {
{static} - TAG : String
+ onOptionsItemSelected()
+ onWindowFocusChanged()
# onCreate()
- addFragmentsToPagerAdapter()
}
}
}
namespace com.example.sickar {
namespace image {
class com.example.sickar.image.ImageSystemPageFragment {
{static} - TAG : String
- images : Map<String, Bitmap>
- initXY : float[]
{static} - radioGroupNamesToIds : Map<String, Integer>
- viewXY : int[]
+ ImageSystemPageFragment()
+ onCreateView()
+ onResume()
~ ImageSystemPageFragment()
- setDefaultImage()
- setImageBitmap()
}
}
}
com.example.sickar.image.ImageActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.sickar.image.ImageActivity o-- com.example.sickar.main.helpers.Item : item
com.example.sickar.image.ImageActivity o-- com.example.sickar.main.DataViewModel : viewModel
com.example.sickar.image.ImageSystemPageFragment -up-|> androidx.fragment.app.Fragment
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
|
61263c810553d05f4cb4f650a0023760e969a9eb | 227c32f7a5991c0ce2de069dd1f0448c1e6949fb | /PlantUML/LoopDetector/LoopDetector_Class.puml | 20b39e3f0da528e8235e2c84bebc3c4ef84ad773 | [] | no_license | ShisatoYano/SLAMDesignUML | 2b3af745ecf8ff1b88845e248a72c589fe9aa1ba | bb8678908952205d1fdc2ea5e49c9ca752e123b9 | refs/heads/master | 2022-11-25T17:49:03.514885 | 2020-08-02T00:27:38 | 2020-08-02T00:27:38 | 261,206,484 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 930 | puml | @startuml
skinparam classAttributeIconSize 0
class LoopInfo <<struct>>{
bool arcked
int curId
int refId
Pose2D pose
double score
Eigen::Matrix3d cov
LoopInfo() : arcked(false), curId(-1), refId(-1), score(-1)
~LoopInfo()
void setArcked(bool t){arcked = t}
}
class LoopMatch <<struct>>{
Scan2D curScan
Scan2D refScan
LoopInfo info
LoopMatch()
LoopMatch(Scan2D &cs, Scan2D &rs, LoopInfo &i){curScan = cs; refScan = rs; info = i}
}
class LoopDetector {
# PoseGraph *pg
# std::vector<LoopMatch> loopMatches
+ LoopDetector()
+ ~LoopDetector()
+ std::vector<LoopMatch> &getLoopMatches(){return(loopMatches)}
+ void setPoseGraph(PoseGraph *p){pg = p}
+ virtual bool detectLoop(Scan2D *curScan, Pose2D &curPose, int cnt)
}
LoopDetector o-- PoseGraph
LoopDetector o-- LoopMatch
LoopMatch o-- LoopInfo
LoopMatch o-- Scan2D
LoopInfo o-- Pose2D
@enduml |
337799be78d5425e7d5439e028000576a16c16a4 | 293bdcbf9da8ac9db17a96be53d7d7ccb277a250 | /netty.puml | 13a0d8e16acd056c2b9ce0c79c3d2a6db8d81514 | [] | no_license | loversugar/netty-learning | aa8897a6b54d2b904b8128dfabd3e431fa585420 | 537a046e82c9600a45a5f6410dbedbb0b3352811 | refs/heads/master | 2021-07-06T06:24:28.361261 | 2021-01-13T06:32:42 | 2021-01-13T06:32:42 | 223,147,135 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,958 | puml | @startuml
interface EventLoopGroup
abstract MultithreadEventLoopGroup
note left of MultithreadEventLoopGroup: implementations which is used for NIO {@link Selector} based {@link Channel}s
class NioEventLoopGroup {
}
note left of NioEventLoopGroup: this is base class
EventLoopGroup <|.. MultithreadEventLoopGroup
MultithreadEventLoopGroup <|-- NioEventLoopGroup
abstract AbstractBootstrap {
-options Map<ChannelOptions<?>, Object>;
}
class ServerBootstrap {
-childOptions Map<ChannelOptions<?>, Object>;
}
class Bootstrap {
}
AbstractBootstrap <|-- ServerBootstrap
AbstractBootstrap <|-- Bootstrap
interface Channel {
+pipeline()
+read()
+flush()
}
interface ServerChannel
interface ServerSocketChannel
note top of ServerSocketChannel: A TCP/IP {@link ServerChannel} which accepts incoming TCP/IP connections.
class NioServerSocketChannel
class OIOServerSocketChannel
class EpollServerSocketChannel
class KQueueServerSocketChannel
Channel <|-- ServerChannel
ServerChannel <|-- ServerSocketChannel
ServerSocketChannel <|.. NioServerSocketChannel
ServerSocketChannel <|.. OIOServerSocketChannel
ServerSocketChannel <|.. EpollServerSocketChannel
ServerSocketChannel <|.. KQueueServerSocketChannel
interface ChannelHandler
class ChannelHandlerAdapter
interface ChannelOutboundHandler
interface ChannelInboundHandler {
+channelRegistered()
+channelUnRegistered()
+channelActive()
+channelInactive()
+channelRead()
+channelReadComplete()
+userEventTriggered()
+channelWritabilityChanged()
}
class ChannelOutboundHandlerAdapter
class ChannelInboundHandlerAdapter
class SimpleChannelInboundHandler
abstract class MessageToMessageDecoder
class StringDecoder
class ProtobufDecoder
class HttpContentDecoder
abstract class ByteToMessageDecoder
abstract class HttpObjectDecoder
class HttpServerCodec
HttpObjectDecoder <|-- HttpServerCodec
ByteToMessageDecoder <|-- HttpObjectDecoder
note right of ChannelInboundHandlerAdapter: In general, we need to implement this or the \n children of this class to deal with our business
ChannelHandler <|.. ChannelHandlerAdapter
ChannelHandler <|-- ChannelOutboundHandler
ChannelHandler <|-- ChannelInboundHandler
ChannelHandlerAdapter <|-- ChannelOutboundHandlerAdapter
ChannelHandlerAdapter <|-- ChannelInboundHandlerAdapter
ChannelInboundHandler <|.. ChannelInboundHandlerAdapter
ChannelOutboundHandler <|.. ChannelOutboundHandlerAdapter
ChannelInboundHandlerAdapter <|-- SimpleChannelInboundHandler
ChannelInboundHandlerAdapter <|-- MessageToMessageDecoder
MessageToMessageDecoder <|-- StringDecoder
MessageToMessageDecoder <|-- ProtobufDecoder
MessageToMessageDecoder <|-- HttpContentDecoder
ChannelInboundHandlerAdapter <|-- ByteToMessageDecoder
CombinedChannelDuplexHandler <|-- HttpServerCodec
ChannelDuplexHandler <|-- CombinedChannelDuplexHandler
ChannelInboundHandlerAdapter <|-- ChannelDuplexHandler
ChannelOutboundHandler <|.. ChannelDuplexHandler
@enduml |
3d35488cf54a2ca4ea89f31215f9bbe25065a516 | 0cae2955100096249a854d37b067b1fe9037a2ad | /docs/uml/SocialInfo.puml | 9c1cf9c4cca93457f6f19547e92cd4d439478548 | [] | no_license | psmon/netcore-restweb-entity-akka | 20ef6dcc4ae7f0f10b191b34dc6b4af08499ed81 | b956685f790761a169faeb9b6b4f3f45101d9001 | refs/heads/master | 2022-11-24T16:41:40.883176 | 2019-07-21T04:04:49 | 2019-07-21T04:04:49 | 160,953,228 | 0 | 0 | null | 2022-11-22T00:21:06 | 2018-12-08T15:40:38 | C# | UTF-8 | PlantUML | false | false | 244 | puml | @startuml
class SocialInfo {
+ SocialId : int <<get>> <<set>>
+ User : User <<get>> <<set>>
+ SocialProviderName : String <<get>> <<set>>
+ SocialUserNo : String <<get>> <<set>>
+ NickName : String <<get>> <<set>>
}
@enduml
|
1eab7e1a74c7b7bc1540401daf65239dd278482c | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.puml | a886d559c6601e8976200199d2bce7068cd8b178 | [] | 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 | 141 | puml | @startuml
class TestCommandBuilder <<static>> {
+ {static} BuildTestCommand(test:TestMethod, filter:ITestFilter) : TestCommand
}
@enduml
|
9955b205be997673403766152ac4b55bc25946e5 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/payment-upon-delivery@0.6.0.puml | 55e5e12cd60fd4c1e06e2b15c182d31a1fb0ae48 | [
"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 | 744 | puml | @startuml
class org.accordproject.payment.upondelivery.PaymentUponDeliveryContract << (A,green) >> {
+ AccordParty buyer
+ AccordParty seller
+ MonetaryAmount costOfGoods
+ MonetaryAmount deliveryFee
}
org.accordproject.payment.upondelivery.PaymentUponDeliveryContract --|> org.accordproject.cicero.contract.AccordContract
class org.accordproject.payment.upondelivery.DeliveryAcceptedRequest << (T,yellow) >> {
}
org.accordproject.payment.upondelivery.DeliveryAcceptedRequest --|> org.accordproject.cicero.runtime.Request
class org.accordproject.payment.upondelivery.DeliveryAcceptedResponse << (T,yellow) >> {
}
org.accordproject.payment.upondelivery.DeliveryAcceptedResponse --|> org.accordproject.cicero.runtime.Response
@enduml
|
8c3c989ccb86a05bbbf63cae382fdcd53838b819 | a1fad85def741bcf778effee14be165c6ceb1515 | /app/src/main/java/com/meitu/test001/umlclass.puml | 0519d976b6e4f80df239c4d79e9f12a077b12f0a | [] | no_license | DemonMU/Android-album | ce56f9fc7c6e4fc04cf1f45d255cf94fd0226bbe | 576940b485481a19f3dade8b50f16a7e9919d86c | refs/heads/master | 2021-01-19T21:01:12.619554 | 2017-08-24T02:02:25 | 2017-08-24T02:02:25 | 101,242,782 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 989 | puml | @startuml
class PhotoBean {
- path : String ;
- size : float;
setPath(String) : void
setSize(float) : void
getPath() : String
getSize() : float
}
interface BeautyModel {
getHomeDefaultPhotoList(Context):List<PhotoBean>
}
BeautyModel -> PhotoBean
class BeautyModelImpl implements BeautyModel
interface HomeView {
showDefaultPhotos(List<PhotoBean>) : void;
}
class HomeActivity implements HomeView
HomeActivity->BeautyPresenter
HomeActivity->HomeDefaultPhotosAdapter
class HomeActivity {
- RecyclerView;
- BeautyPresenter;
- HomeDefaultPhotosAdapter;
# onCreate(Bundle) : void
}
interface BeautyPresenter {
homeShowDefaultPhotos() : void;
}
class BeautyPresenterImpl implements BeautyPresenter
BeautyPresenterImpl->PhotoBean
BeautyPresenterImpl->HomeView
BeautyPresenterImpl->BeautyModel
class BeautyPresenterImpl{
- BeautyModel
- HomeView
- Context
- List<PhotoBean>
+ BeautyPresenterImpl(Context,HomeView)
- getHomeDefaultPhotoList() : void
}
@enduml |
57c2a465016b6bb13846e5eafcce5ce72f9099ec | 77ca229438244df1616594a24c28c82f6e293aa1 | /plantuml/Indexer.puml | aa432684bc6c7d5434e26b126538c8110a8982dd | [] | no_license | RinwaOwuogba/NameOuterSpace | 4d12cfcbcaaaa9d0acccb88fee7f4518c2e2f193 | 2872e05434296b8d4a8ce9f79494416f8d06088f | refs/heads/master | 2023-08-17T09:19:32.903887 | 2021-09-21T11:29:41 | 2021-09-21T11:29:41 | 391,706,946 | 4 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 215 | puml | @startuml
class Indexer {
+ Indexer(stopWords:HashSet<string>)
+ IndexFile(filePath:string) : Dictionary<string, long>
+ IndexText(text:string) : Dictionary<string, long>
}
IIndexer <|-- Indexer
@enduml
|
230c9821863f8bf12a64a44f42fc4bd8567dee7e | b5fc7582d0d738b7bbdf2b6b6e96bf1b700b33f4 | /view/spring/tiny-spring-source/puml/step9.puml | f0783f1c1b0e6b9a68d1ee18baf005bac4acc20d | [] | no_license | dohoby/dohoby.github.io | ac377bef14084d11c11fad2bd43b11d379859934 | f9d3c434c814481ad8c9d20e49b38373808df347 | refs/heads/master | 2021-10-22T03:31:16.100844 | 2021-10-19T11:55:43 | 2021-10-19T11:55:43 | 71,213,202 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,282 | puml | @startuml
interface InvocationHandler {
public Object invoke(Object proxy, Method method, Object[] args)
}
interface AopProxy {
Object getProxy()
}
'-----------------------------------------------------------------------
class JdkDanamicAopProxy{
AdvisedSupport advised;
public Object getProxy()
public Object invoke(final Object proxy, final Method method, final Object[] args)
}
note left
@Override
public Object getProxy() {
return Proxy.newProxyInstance(getClass().getClassLoader(), new Class[] { advised.getTargetSource()
.getTargetClass() }, this);
}
@Override
public Object invoke(final Object proxy, final Method method, final Object[] args) throws Throwable {
MethodInterceptor methodInterceptor = advised.getMethodInterceptor();
if (advised.getMethodMatcher() != null
&& advised.getMethodMatcher().matches(method, advised.getTargetSource().getTarget().getClass())) {
return methodInterceptor.invoke(new ReflectiveMethodInvocation(advised.getTargetSource().getTarget(),
method, args));
} else {
return method.invoke(advised.getTargetSource().getTarget(), args);
}
}
end note
AopProxy <|.. JdkDanamicAopProxy
InvocationHandler <|.. JdkDanamicAopProxy
JdkDanamicAopProxy *-->AdvisedSupport
JdkDanamicAopProxy --> ReflectiveMethodInvocation
'-----------------------------------------------------------------------
class AdvisedSupport{
MethodInterceptor methodIntecepter;
TargetSource targetSource;
private MethodMatcher methodMatcher;
}
AdvisedSupport *-->MethodInterceptor
AdvisedSupport *-->MethodMatcher
'-----------------------------------------------------------------------
class TargetSource {
Class targetClass;
Object target;
}
AdvisedSupport *-->TargetSource
'-----------------------------------------------------------------------
interface MethodInterceptor{
Object invoke(MethodInvocation invocation)
}
MethodInterceptor --> MethodInvacation
interface Interceptor{
}
Interceptor <|-- MethodInterceptor
Advice <|-- Interceptor
'-----------------------------------------------------------------------
class ReflectiveMethodInvocation {
Object target;
Method method;
Object[] args;
public Object proceed()
public AccessibleObject getStaticPart()
public Object[] getArguments()
public Method getMethod()
}
note bottom
@Override
public Object proceed() throws Throwable {
return method.invoke(target, args);
}
end note
MethodInvacation <|.. ReflectiveMethodInvocation
'-----------------------------------------------------------------------
interface Joinpoint{
Object proceed() throws Throwable;
Object getThis();
AccessibleObject getStaticPart();
}
interface Invocation{
Object[] getArguments();
}
interface MethodInvacation{
Method getMethod();
}
Invocation <|--MethodInvacation
Joinpoint <|--Invocation
'-----------------------------------------------------------------------
class TimerInterceptor{
public Object invoke(MethodInvocation invocation)
}
MethodInterceptor <|--TimerInterceptor
'-----------------------------------------------------------------------
interface PointcutAdvisor{
Pointcut getPointcut();
}
Advisor <|--PointcutAdvisor
PointcutAdvisor -->Pointcut
'-----------------------------------------------------------------------
interface Advice{
}
'-----------------------------------------------------------------------
interface Advisor{
Advice getAdvice();
}
Advice <--Advisor
'-----------------------------------------------------------------------
interface Pointcut{
ClassFilter getClassFilter();
MethodMatcher getMethodMatcher();
}
Pointcut -->MethodMatcher
Pointcut -->ClassFilter
'-----------------------------------------------------------------------
interface ClassFilter{
boolean matches(Class targetClass);
}
'-----------------------------------------------------------------------
interface MethodMatcher{
boolean matches(Method method, Class targetClass);
}
'-----------------------------------------------------------------------
class AspectJExpressionPointcut{
private PointcutParser pointcutParser;
private String expression;
private PointcutExpression pointcutExpression;
public boolean matches(Class targetClass)
public boolean matches(Method method, Class targetClass)
}
Pointcut <|.. AspectJExpressionPointcut
ClassFilter <|.. AspectJExpressionPointcut
MethodMatcher <|.. AspectJExpressionPointcut
'-----------------------------------------------------------------------
class AspectJExpressionPointcutAdvisor{
private AspectJExpressionPointcut pointcut = new AspectJExpressionPointcut();
private Advice advice;
}
PointcutAdvisor <|.. AspectJExpressionPointcutAdvisor
AspectJExpressionPointcutAdvisor *-->AspectJExpressionPointcut
AspectJExpressionPointcutAdvisor *-->Advice
'-----------------------------------------------------------------------
class AspectJAwareAdvisorAutoProxyCreator{
AbstractBeanFactory beanFactory;
}
note top
@Override
public Object postProcessAfterInitialization(Object bean, String beanName) throws Exception {
if (bean instanceof AspectJExpressionPointcutAdvisor) {
return bean;
}
if (bean instanceof MethodInterceptor) {
return bean;
}
List<AspectJExpressionPointcutAdvisor> advisors = beanFactory
.getBeansForType(AspectJExpressionPointcutAdvisor.class);
for (AspectJExpressionPointcutAdvisor advisor : advisors) {
if (advisor.getPointcut().getClassFilter().matches(bean.getClass())) {
AdvisedSupport advisedSupport = new AdvisedSupport();
advisedSupport.setMethodInterceptor((MethodInterceptor) advisor.getAdvice());
advisedSupport.setMethodMatcher(advisor.getPointcut().getMethodMatcher());
TargetSource targetSource = new TargetSource(bean, bean.getClass().getInterfaces());
advisedSupport.setTargetSource(targetSource);
return new JdkDynamicAopProxy(advisedSupport).getProxy();
}
}
return bean;
}
end note
AspectJAwareAdvisorAutoProxyCreator --> AspectJExpressionPointcutAdvisor
AspectJAwareAdvisorAutoProxyCreator *--> AbstractBeanFactory
'-----------------------------------------------------------------------
Abstract class AbstractBeanFactory{
public List getBeansForType(Class type) throws Exception {
}
'-----------------------------------------------------------------------
interface BeanPostProcessor{
Object postProcessBeforeInitialization(Object bean, String beanName) throws Exception;
Object postProcessAfterInitialization(Object bean, String beanName) throws Exception;
}
BeanPostProcessor <|..AspectJAwareAdvisorAutoProxyCreator
'-----------------------------------------------------------------------
interface BeanFactoryAware {
void setBeanFactory(BeanFactory beanFactory) throws Exception;
}
BeanFactoryAware <|..AspectJAwareAdvisorAutoProxyCreator
'-----------------------------------------------------------------------
class BeanInitializeLogger{
public Object postProcessBeforeInitialization(Object bean, String beanName) throws Exception {
public Object postProcessAfterInitialization(Object bean, String beanName) throws Exception {
}
BeanPostProcessor <|.. BeanInitializeLogger
'-----------------------------------------------------------------------
'-----------------------------------------------------------------------
/'
注释
'/
@enduml |
199685ad254fb8348e937742a69d8718f7871731 | a5049b6744541da14d7f7dc14a247658f7fc10c0 | /src/main/java/ex45/ex45.puml | d443b65215f4fb80c88ba4c548a3b86cdd7b67c6 | [] | no_license | TitaNika/tang-cop3330-assignment3 | f77fbb7908a250d25b89037dfd242be2de4ae645 | 54289a63f7a9e1916348cb13fe05b5daffe95181 | refs/heads/master | 2023-08-25T01:27:44.373558 | 2021-10-11T22:40:45 | 2021-10-11T22:40:45 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 493 | puml | @startuml
class main{
scan: scan for user input
read: read input file
list: create new array list
write: write data
}
class readFile{
file: read from input file
}
class read{
while: scan in all values from input file
}
class getData{
return: return values obtained from input file
}
class writeFile{
writer: makes output file to write
}
class write{
while: write and overwrite based on how program
}
readFile - read
read - getData
getData - writeFile
write - main
main - output
@enduml |
271d03d4e9ea2b456a0a7e49d2742a48e9c87cb2 | 793c48250ca36e91648f355164791243c745495c | /OrderService/ApplicationContext.puml | 56a5f4db05042e8666fb95b803adbcb862b3816a | [
"Apache-2.0"
] | permissive | shenzhuan/MicroCommunity_v0.1 | 3c91b93de8cc1e3923ae6e760bccb058ffc308ed | dc63790cb0104f11784d0efffa50a6d04d5a0f90 | refs/heads/test | 2020-04-11T20:52:53.180801 | 2018-04-10T08:22:24 | 2018-04-10T08:22:24 | 162,086,605 | 2 | 0 | Apache-2.0 | 2018-12-17T06:45:31 | 2018-12-17T06:45:30 | null | UTF-8 | PlantUML | false | false | 2,188 | puml | @startuml
title SpringApplication context 分析过程
class SpringApplication {
private boolean webEnvironment;
}
interface ConfigurableWebApplicationContext extends ConfigurableApplicationContext,WebApplicationContext{
void setServletContext(ServletContext servletContext);
void setServletConfig(ServletConfig servletConfig);
void setConfigLocation(String configLocation);
String[] getConfigLocations();
}
interface ApplicationContext extends HierarchicalBeanFactory,MessageSource,ApplicationEventPublisher,ResourcePatternResolver{
String getId();
String getApplicationName();
String getDisplayName();
long getStartupDate();
ApplicationContext getParent();
AutowireCapableBeanFactory getAutowireCapableBeanFactory() throws IllegalStateException;
}
interface ConfigurableApplicationContext{
}
interface Lifecycle{
}
interface Closeable{
public void close() throws IOException;
}
interface EnvironmentCapable{
Environment getEnvironment();
}
interface ListableBeanFactory extends BeanFactory{
String[] getBeanNamesForType(ResolvableType type);
}
interface BeanFactory{
Object getBean(String name) throws BeansException;
<T> T getBean(String name, Class<T> requiredType) throws BeansException;
<T> T getBean(Class<T> requiredType) throws BeansException;
}
interface HierarchicalBeanFactory extends BeanFactory{
BeanFactory getParentBeanFactory();
}
interface MessageSource{
String getMessage(String code, Object[] args, String defaultMessage, Locale locale);
}
interface ApplicationEventPublisher{
void publishEvent(ApplicationEvent event);
}
interface ResourcePatternResolver extends ResourceLoader{
Resource[] getResources(String locationPattern) throws IOException;
}
interface ResourceLoader{
Resource getResource(String location);
ClassLoader getClassLoader();
}
ApplicationContext <|-- ConfigurableApplicationContext : 继承关系
Lifecycle <|-- ConfigurableApplicationContext : 继承关系
Closeable <|-- ConfigurableApplicationContext : 继承关系
EnvironmentCapable <|-- ApplicationContext:继承关系
ListableBeanFactory <|-- ApplicationContext:继承关系
@enduml |
e75b5a6c5150f99255606af7bde68da1c425b9c0 | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-simple-systemid.puml | 4207402af7c53ca571ec944b6b57fa68c98d6ae0 | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 134 | puml | @startuml
skinparam nodesep 100
hide circle
class Kodelister.SystemID <string> <<simple>> {
}
string <|-- Kodelister.SystemID
@enduml
|
69b336c4adc7fd43537aa34171899d18ae83cbf1 | 2099ea9bcbc7ae9c8c28d59f9e0fffbf478c1f03 | /UML/vendor/yiisoft/yii2-dev/framework/grid.puml | b6194d48f480271a8697c2c685173c6d49ad08d5 | [] | no_license | adipriyantobpn/UML-diagram-for-some-PHP-packages | b3e3ed8e8898e4a5d56f0647cfbedaaa9d2dbdd5 | 0a9308fbd2d544c8f64a37cf9f11011edfc40ace | refs/heads/master | 2021-08-19T19:24:34.948176 | 2017-11-27T07:48:10 | 2017-11-27T07:48:10 | 112,164,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,731 | puml | @startuml
skinparam handwritten true
class yii.grid.ActionColumn {
+buttonOptions : array = []
+buttons : array = []
+controller : string
+headerOptions = [
\t"class" => "action-column"
]
+template : string = "{view} {update} {delete}"
+urlCreator : callable
+visibleButtons : array = []
+createUrl(action : string, model : yii.db.ActiveRecordInterface, key : mixed, index : int) : string
+init()
#initDefaultButton(name : string, iconName : string, additionalOptions : array = [])
#initDefaultButtons()
#renderDataCellContent(model, key, index)
}
class yii.grid.ActionColumn extends yii.grid.Column
class yii.grid.CheckboxColumn {
+checkboxOptions : array|.Closure = []
+cssClass : string
+multiple : bool = true
+name : string = "selection"
#getHeaderCheckBoxName() : string
+init()
+registerClientScript()
#renderDataCellContent(model, key, index)
#renderHeaderCellContent() : string
}
class yii.grid.CheckboxColumn extends yii.grid.Column
class yii.grid.Column {
+content : callable
+contentOptions : array|.Closure = []
+filterOptions : array = []
+footer : string
+footerOptions : array = []
+grid : GridView
+header : string
+headerOptions : array = []
+options : array = []
+visible : bool = true
#getHeaderCellLabel() : string
+renderDataCell(model : mixed, key : mixed, index : int) : string
#renderDataCellContent(model : mixed, key : mixed, index : int) : string
+renderFilterCell()
#renderFilterCellContent() : string
+renderFooterCell()
#renderFooterCellContent() : string
+renderHeaderCell()
#renderHeaderCellContent() : string
}
class yii.grid.Column extends yii.base.BaseObject
class yii.grid.DataColumn {
+attribute : string
+enableSorting : bool = true
+encodeLabel : bool = true
+filter : string|array|null|false
+filterInputOptions : array = [
\t"class" => "form-control",
\t"id" => null
]
+format : string|array|Closure = "text"
+label : string
+sortLinkOptions : array = []
+value : string|Closure
+getDataCellValue(model : mixed, key : mixed, index : int) : string
#getHeaderCellLabel()
#renderDataCellContent(model, key, index)
#renderFilterCellContent()
#renderHeaderCellContent()
}
class yii.grid.DataColumn extends yii.grid.Column
class yii.grid.GridView {
+{static}FILTER_POS_BODY = "body"
+{static}FILTER_POS_FOOTER = "footer"
+{static}FILTER_POS_HEADER = "header"
+afterRow : Closure
+beforeRow : Closure
+caption : string
+captionOptions : array = []
+columns : array = []
+dataColumnClass : string
+emptyCell : string = " "
+filterErrorOptions : array = [
\t"class" => "help-block"
]
+filterErrorSummaryOptions : array = [
\t"class" => "error-summary"
]
+filterModel : yii.base.Model
+filterPosition : string = "body"
+filterRowOptions : array = [
\t"class" => "filters"
]
+filterSelector : string
+filterUrl : string|array
+footerRowOptions : array = []
+formatter : array|Formatter
+headerRowOptions : array = []
+layout : string = "{summary}\\n{items}\\n{pager}"
+options : array = [
\t"class" => "grid-view"
]
+rowOptions : array|Closure = []
+showFooter : bool = false
+showHeader : bool = true
+showOnEmpty : bool = true
+tableOptions : array = [
\t"class" => "table table-striped table-bordered"
]
#createDataColumn(text : string) : DataColumn
#getClientOptions() : array
#guessColumns()
+init()
#initColumns()
+renderCaption() : bool|string
+renderColumnGroup() : bool|string
+renderErrors() : string
+renderFilters() : string
+renderItems()
+renderSection(name)
+renderTableBody() : string
+renderTableFooter() : string
+renderTableHeader() : string
+renderTableRow(model : mixed, key : mixed, index : int) : string
+run()
}
class yii.grid.GridView extends yii.widgets.BaseListView
class yii.grid.GridViewAsset {
+depends = [
\t0 => "yii\web\YiiAsset"
]
+js = [
\t0 => "yii.gridView.js"
]
+sourcePath = "@yii/assets"
}
class yii.grid.GridViewAsset extends yii.web.AssetBundle
class yii.grid.RadioButtonColumn {
+name : string = "radioButtonSelection"
+radioOptions : array|.Closure = []
+init()
#renderDataCellContent(model, key, index)
}
class yii.grid.RadioButtonColumn extends yii.grid.Column
class yii.grid.SerialColumn {
+header = "#"
#renderDataCellContent(model, key, index)
}
class yii.grid.SerialColumn extends yii.grid.Column
@enduml
|
42da854d113302b48b2ada0f7d994bc9352d0a65 | f3589eade51669f1fb94a535b742021033b0bef4 | /uml/InventoryManager.puml | d03a882e0354ad1e897c9ad78b2315b0ab600536 | [] | no_license | GabrielFernandez14/fernandez-0914-a5 | 9b6952359cf69d8cb6001343ff96cf9635c856bc | 3502d915a972d13000ec531840fc183ef5c40a05 | refs/heads/master | 2023-06-25T06:46:37.696775 | 2021-07-26T02:56:49 | 2021-07-26T02:56:49 | 387,501,361 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,714 | puml | @startuml
class InventoryManager {
+ main()
+ start()
}
class SceneManager {
+ scenes: HashMap<String, Scene>
+ load()
+ getScene(String name): Scene
}
class InventoryManagerController {
- @FXML inventoryTable: TableView<InventoryItem>
- @FXML valueTableColumn: TableColumn<InventoryItem, BigDecimal>
- @FXML serialNumberTableColumn: TableColumn<InventoryItem, String>
- @FXML nameTableColumn: TableColumn<InventoryItem, String>
- @FXML searchBarTextField: TextField
- sceneManager: SceneManager
- listModel: InventoryListModel
- items: ObservableList<InventoryItem>
- tempList: ObservableList<InventoryItem>
- readValue(ArrayList<String> fileItem, int index): BigDecimal
- readSerialNumber(ArrayList<String> fileItem, int index): String
- readString(ArrayList<String> fileItem, int index): String
+ InventoryManagerController(listModel, sceneManager)
+ getFoundEntries(listModel, tempList, String entry): ObservableList<InventoryItem>
+ @Override initialize(URL location, ResourceBundle resources)
+ @FXML addItemButtonClicked(ActionEvent actionEvent)
+ @FXML deleteItemButtonClicked(ActionEvent actionEvent)
+ @FXML editItemButtonClicked(ActionEvent actionEvent)
+ @FXML sortListButtonClicked(ActionEvent actionEvent)
+ @FXML saveAsMenuItemClicked(ActionEvent actionEvent)
+ @FXML searchButtonClicked(ActionEvent actionEvent)
+ @FXML resetButtonClicked(ActionEvent actionEvent)
+ @FXML openMenuItemClicked(ActionEvent actionEvent)
+ @FXML quitMenuItemClicked(ActionEvent actionEvent)
}
class InventoryListModel {
+ items: ObservableList<InventoryItem>
+ InventoryListModel()
+ InventoryListModel(items)
+ getItems(): ObservableList<InventoryItem>
}
class InventoryItem {
- price: BigDecimal
- serialNumber: String
- name: String
+ InventoryItem(price, serialNumber, name)
+ getName(): String
+ setName(name)
+ getSerialNumber(): String
+ setSerialNumber(serialNumber)
+ getPrice(): BigDecimal
+ setPrice(price)
}
class AddItemController {
- listModel: InventoryListModel
- sceneManager: SceneManager
- @FXML priceTextField: TextField
- @FXML serialNumberTextField: TextField
- @FXML nameTextField: TextField
- @FXML errorLabel: Label
- @FXML confirmButtonClicked((ActionEvent actionEvent)
- printError(String prompt)
- commitToList(String price, String serialNumber, String name)
+ AddItemController(listModel, sceneManager)
+ addToList(BigDecimal price, String serialNumber, String name)
+ inputIsValid(listModel, String price, String serialNumber, String name): int
}
class EditItemController {
- listModel: InventoryListModel
- selectedItem: InventoryItem
- controller: InventoryManagerController
- @FXML editPriceTextField: TextField
- @FXML editSerialNumberTextField: TextField
- @FXML editNameTextField: TextField
- @FXML editErrorLabel: Label
- @FXML confirmButtonClicked(ActionEvent actionEvent)
- commitToList(String price, String serialNumber, String name)
- inputIsValid(listModel, selectedItem, String price, String serialNumber, String name): int
- printError(String prompt)
+ setData(controller, listModel, selectedItem)
+ commitEditItem(selectedItem, BigDecimal price, String serialNumber, String name)
}
class SortListController {
- listModel: InventoryListModel
- sceneManager: SceneManager
- @FXML sortByValueButton: Button
- @FXML sortBySerialNumberButton: Button
- @FXML sortByNameButton: Button
- @FXML sortByValueButtonClicked((ActionEvent actionEvent)
- @FXML sortBySerialNumberButtonClicked((ActionEvent actionEvent)
- @FXML sortByNameButtonClicked((ActionEvent actionEvent)
+ SortListController(listModel, sceneManager)
+ sortByValue(listModel)
+ sortBYSerialNumber(listModel)
+ sortByName(listModel)
}
class FileManager {
+ saveFile(listModel)
+ loadFile(listModel): ArrayList<String>
+ writeToText(String path, listModel)
+ writeToHTML(String path, listModel)
+ loadFromText(String path): ArrayList<String>
+ loadFromHTML(String path): ArrayList<String>
}
openjfx.org.Application <|-- InventoryManager
InventoryManager -- SceneManager
SceneManager -- InventoryManagerController
SceneManager -- AddItemController
SceneManager -- SortListController
EditItemController -- InventoryManagerController
InventoryManagerController o-- InventoryListModel
InventoryManagerController -- FileManager
AddItemController o-- InventoryListModel
SortListController o-- InventoryListModel
InventoryListModel *-- InventoryItem
@enduml |
722190732f0e222cebd8ce134b3c5f6830919353 | 0992a598a77d620c86b163e92c2a0259e1c5efe1 | /docs/sprint2/diagrams/Presentation_ClassDiagram.puml | da5358c8083486d43e592f36f3e194ccc1f9f6e0 | [] | no_license | dev-rbatista/Tutorial_Local_Smoke_Test_with_Docker_Containers-Gradle | a78f2c5a85e72035db2091e79b8c75ddfff8c7fb | cad9b52d66a2f91c93919feaee5250303d230752 | refs/heads/master | 2023-06-17T23:27:34.990780 | 2021-07-15T15:36:57 | 2021-07-15T15:36:57 | 386,325,650 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,074 | puml | @startuml
left to right direction
title Class Diagram - SP02
hide empty members
package controllers {
}
class Application {
}
class FamilyService {
}
class RelationService{
}
class AccountService {
}
class TransactionService {
}
class CategoryService {
}
class Family {
}
class Relation {
}
class FamilyMember {
}
package accounts {
}
package transactions {
}
package categories {
}
interface Account {
}
interface Category{
}
interface Transaction {
}
controllers --> Application
Application --> RelationService : has
Application --> TransactionService : has
Application --> FamilyService : has
Application --> AccountService : has
Application --> CategoryService : has
FamilyService --> Family : has list
Family --> FamilyMember : has list
RelationService --> Relation : handles
AccountService ---> accounts : handles
TransactionService ---> transactions : handles
CategoryService ---> categories : handles
Family -> Relation : has list
Family --> accounts : has Cash Account
FamilyMember -> accounts : has list
accounts -> transactions : has list
transactions -* categories : contains
categories .-|> Category : implements
transactions .-|> Transaction : implements
accounts .-|> Account : implements
accounts --* MoneyValue : contains
transactions --* MoneyValue : contains
@enduml
@startuml
left to right direction
title Class Diagram - SP02 CLASS DIAGRAM
skinparam linetype ortho
hide empty members
package controllers {}
package category {}
package accounts {}
class Application {
}
class CategoryService {
}
class FamilyService {
}
class AccountService {
}
class TransactionService {
}
class RelationService{
}
class Family {
}
class Account {
}
class FamilyMember {
}
class MoneyValue {
}
class Relation {
}
interface Account {
}
interface Transaction {
}
interface Category{
}
controllers --> Application
Application --> FamilyService : has
Application --> CategoryService : has
Application --> AccountService : has
Application --> TransactionService : has
Application --> RelationService : has
category --|> Category : implements
CategoryService -> category : handles
'CategoryService -left-> CategoryTreeDTO : creates
'FamilyService -right-> FamilyWithoutAdministratorDTO : creates
FamilyService -> Family : has list
Family --> FamilyMember : has list
FamilyMember -> Account : has list
accounts -|> Account : implements
Account -* AccountData : contains
AccountService -> Account: handles
Family --> Relation : has list
RelationService --> Relation : handles
TransactionService --> Transaction: handles
Account --> Transaction: has list
AccountData -* MoneyValue : contains
Transaction -* MoneyValue : contains
@enduml
@startuml
left to right direction
title Class Diagram - SP02 CLASS DIAGRAM
skinparam linetype ortho
hide empty members
package controllers {}
package category {}
package accounts {}
class Application {
}
class CategoryService {
}
class FamilyService {
}
class AccountService {
}
class TransactionService {
}
class RelationService{
}
class Family {
}
class Account {
}
class FamilyMember {
}
class MoneyValue {
}
class Relation {
}
interface Account {
}
interface Transaction {
}
interface Category{
}
controllers --> Application
Application --> FamilyService : has
Application --> CategoryService : has
Application --> AccountService : has
Application --> TransactionService : has
Application --> RelationService : has
category --|> Category : implements
CategoryService -> category : handles
'CategoryService -left-> CategoryTreeDTO : creates
'FamilyService -right-> FamilyWithoutAdministratorDTO : creates
FamilyService -> Family : has list
Family --> FamilyMember : has list
FamilyMember -> Account : has list
accounts -|> Account : implements
Account -* AccountData : contains
AccountService -> Account: handles
Family -> Relation : has list
RelationService -> Relation : handles
TransactionService -> Transaction: handles
Account --> Transaction: has list
AccountData -* MoneyValue : contains
Transaction -* MoneyValue : contains
@enduml |
9febd71226eec02b5dec00b66b76bb588bbc0b93 | ea92b794f64577cf3f9895848ed841a2482a6d1e | /docs/assets/images/ITaskListRepository-umlClassDiagram-169.puml | d3616dbf0a055613ebae2640cc863f0b557f41a3 | [
"MIT"
] | permissive | dreambo8563/todo-core | a1cdd6e14ec6445dd1dae84d0ba03bf80b1b09da | 96b2af2b5b5c0ba1d1aaa15eba7061c52cafc611 | refs/heads/master | 2022-11-21T11:51:16.649734 | 2020-07-18T17:57:03 | 2020-07-18T17:57:03 | 274,677,442 | 0 | 0 | MIT | 2020-06-28T10:36:09 | 2020-06-24T13:36:10 | TypeScript | UTF-8 | PlantUML | false | false | 720 | puml | @startuml
hide empty methods
hide empty fields
interface "ITaskListRepository" {
+taskList : Array<ITaskItem>
+addTask(t: ITaskItem) : ITaskListRepository
+delTask(id: string) : ITaskListRepository
+getTask(id: string) : ITaskItem | null
+instance(list: Array<ITaskItem>) : ITaskListRepository
+updateTask(id: string, t: ITaskItem) : ITaskListRepository
}
class "TaskListRepository" {
-_taskList : Array<ITaskItem>
+addTask(t: ITaskItem) : this
+delTask(id: string) : this
+getTask(id: string) : ITaskItem | null
+instance(list: Array<ITaskItem>) : TaskListRepository<>
+updateTask(id: string, t: ITaskItem) : this
}
"ITaskListRepository" <|.. "TaskListRepository"
@enduml |
e7e121179d5e8c5032d4fe3259ec56dc5ce54446 | 74cb674dc7b9c3f65f6ab08fc5ad3a43c3bf12d3 | /Offline 2/Problem 2/src/language/parser/parser.plantuml | 4bafa71fe9db519a6a070e4eeaa2111e50a7d7e9 | [] | no_license | zarif98sjs/CSE-308-Software-Engineering | a9759bbee2ea0647eae2ea677d08741293a1cc14 | 515015a40c10d916d5089f11784b4ff75319fcbd | refs/heads/main | 2023-06-27T05:57:00.443594 | 2021-07-28T13:57:32 | 2021-07-28T13:57:32 | 344,690,362 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 958 | plantuml | @startuml
title __PARSER's Class Diagram__\n
namespace language {
namespace parser {
class language.parser.CPPParser {
+ toString()
}
}
}
namespace language {
namespace parser {
class language.parser.CParser {
+ toString()
}
}
}
namespace language {
namespace parser {
interface language.parser.Parser {
{abstract} + toString()
}
}
}
namespace language {
namespace parser {
class language.parser.PythonParser {
+ toString()
}
}
}
language.parser.CPPParser .up.|> language.parser.Parser
language.parser.CParser .up.|> language.parser.Parser
language.parser.PythonParser .up.|> language.parser.Parser
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
|
745c08484364fb0beaf69d17c5a1e88e74fbe524 | ab347e5700f09daae5886c7b4c98a942bbebd934 | /src/neuralNetwork/function/activation/activation.plantuml | ec0cd050e5e9a382671d0fa713b76f17483480a4 | [] | no_license | Sam-Malpass/YGO-Deck-Builder | 17df1974f83372f7f69c5f8c188047fa55a4e4ca | c4986fa63b2dd9284fae5d95ac1ab5b65b786019 | refs/heads/master | 2020-05-14T15:15:18.815842 | 2019-04-23T09:43:53 | 2019-04-23T09:43:53 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 851 | plantuml | @startuml
title __ACTIVATION's Class Diagram__\n
package neuralNetwork.function.activation {
interface ActivationFunction {
{abstract} + calculateOutput()
{abstract} + calculateDerivative()
}
}
package neuralNetwork.function.activation {
class IdentityActivation {
+ calculateDerivative()
+ calculateOutput()
}
}
package neuralNetwork.function.activation {
class SigmoidActivation {
+ SigmoidActivation()
+ calculateOutput()
+ calculateDerivative()
}
}
IdentityActivation -up-|> ActivationFunction
SigmoidActivation -up-|> ActivationFunction
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
|
42eb4a306f5d20fee9d2036b695d66bebe1ab392 | fbe1dfa9dc016367ee5c1bf32c4689bdfb9d868e | /orchestrator/src/main/java/orchestrator/handler/legal/model/model.plantuml | a0586ddc6f0ccc944b2b6fe57e182c1cae455903 | [] | no_license | marcllort/Car_Rental_Monorepo | 844638554f226f04b2b00c35c4077d98b947f7c2 | 9f3fad50034cd85e149d457e323561d517220d31 | refs/heads/master | 2023-06-30T15:18:00.352756 | 2021-07-26T17:46:46 | 2021-07-26T17:46:46 | 323,322,306 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,483 | plantuml | @startuml
title __MODEL's Class Diagram__\n
namespace orchestrator {
namespace handler {
namespace legal {
namespace model {
class orchestrator.handler.legal.model.LegalHandlerRequest {
- Flow : String
+ LegalHandlerRequest()
+ equals()
+ getFlow()
+ getService()
+ hashCode()
+ setFlow()
+ setService()
+ toString()
# canEqual()
}
}
}
}
}
namespace orchestrator {
namespace handler {
namespace legal {
namespace model {
class orchestrator.handler.legal.model.LegalHandlerResponse {
- text : String
+ LegalHandlerResponse()
+ equals()
+ getText()
+ hashCode()
+ setText()
+ toString()
# canEqual()
}
}
}
}
}
orchestrator.handler.legal.model.LegalHandlerRequest -up-|> orchestrator.handler.HandlerRequest
orchestrator.handler.legal.model.LegalHandlerRequest o-- orchestrator.model.Service : Service
orchestrator.handler.legal.model.LegalHandlerResponse -up-|> orchestrator.handler.HandlerResponse
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
|
e7ef350e5c450ccb3c0fa7a1d8d886fd0a872ecb | 426c9b9b2ccb9a4ff7f797065b0ec3999ee66629 | /chapter5/divide.puml | fabcad8b1df559deedccd3ef4cb2d5e34a0e9596 | [] | no_license | kyamashiro/head-first-ooad | 0f19da87a694cb47b6d6725049201b14afe1985f | cef1319789ce7225d1e97f51f94b29ccefaeff8b | refs/heads/master | 2020-05-09T12:09:08.686383 | 2019-08-25T09:05:54 | 2019-08-25T09:05:54 | 181,103,279 | 1 | 0 | null | 2019-08-15T09:58:19 | 2019-04-13T00:59:13 | PHP | UTF-8 | PlantUML | false | false | 215 | puml | @startuml
class Automobile {
start()
stop()
getOil():int
}
class CarWash {
wash(Automobile)
}
class Driver {
drive(Automobile)
}
class Mechanic {
checkOil(Automobile)
changeTires(Automobile, Tire[*])
}
@enduml
|
ff3879b60af188e3a24cff80278da47b2ed908ef | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AttributeGroupSetAttributesAction.puml | 524fa9e5c8187de56728cf4132d52fb79289d68b | [] | 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 | 530 | 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 AttributeGroupSetAttributesAction [[AttributeGroupSetAttributesAction.svg]] extends AttributeGroupUpdateAction {
action: String
attributes: [[AttributeReference.svg List<AttributeReference>]]
}
interface AttributeGroupUpdateAction [[AttributeGroupUpdateAction.svg]] {
action: String
}
@enduml
|
082740a32d2436d54e5f4c9dd3d46892021baef7 | 0a86b90338bd842734e1fe5473ac409a39ee1bad | /docs/dev/cfm/vpc/core_model.puml | 00af8b135919f0c87a8b781036c61a984104770d | [
"MIT"
] | permissive | k2works/etude_for_aws | 137481fb9151c5fe3e96b370234ce220dc1e105d | fbd84d8715d5dacac794168e8e7846117154948e | refs/heads/master | 2021-01-20T03:29:48.516119 | 2017-06-02T09:32:47 | 2017-06-02T09:32:47 | 89,548,278 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 698 | puml | @startuml
package Aws {
class CloudFormation
}
package EC2 {
Interface VpcInterface
}
Interface CertificationHelper
Interface ConfigurationHelper
package CFM {
class Vpc {
create()
destroy()
}
Vpc <|-- VpcInterface
CertificationHelper <|-- Configuration
ConfigurationHelper <|-- Configuration
Configuration -l-> CloudFormation
Vpc *-l- Configuration
Vpc <|-- NullVpc
Vpc <|-- OneAzOnePublicSubnetVpc
Vpc <|-- OneAzTwoPublicAndPrivateSubnetVpc
Vpc <|-- OneAzTwoPublicSubnetVpc
Vpc <|-- TwoAzOnePublicSubnetAndPrivateSubnetVpc
Vpc <|-- TwoAzTwoPrivateSubnetVpc
Vpc <|-- TwoAzTwoPublicSubnetAndPrivateSubnetVpc
Vpc <|-- TwoAzTwoPublicSubnetVpc
}
@enduml |
31e9a7fd70553171ccb59b9a404f45acf9ee0d91 | d5612578ccf2b52438eb329ee180377a3455fc49 | /asciidocs/plantuml/kinokette-musterloesung.puml | ceb204d71246f0b3de5a8a088891b3bf0a900e9d | [] | no_license | 2021-3ahif-syp/lecture-notes | 9e570f63f78522f4191b305e22dc5cf340351679 | 32e17259d69821bca264c82364f9fa4b4bed498a | refs/heads/master | 2023-05-26T22:18:13.452286 | 2021-05-17T09:40:03 | 2021-05-17T09:40:03 | 297,027,366 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,258 | puml | @startuml
class Kino {
}
class Saal {
-kino: Kino
}
class Genre {
}
class Film {
-genre: Genre
}
class Sitz {
-reihe: int
-platz: int
}
class Vorstellung {
-datumUhrzeit: LocalDateTime
}
class Reihe {
-saal: Saal
-standardPreis: BigDecimal
}
class Vorstellungspreis {
-vorstellung: Vorstellung
-reihe: Reihe
-sonderpreis: BigDecimal
}
class Eintrittskarte {
-sitz: Sitz
-vorstellung: Vorstellung
}
class Person {
-vorname: String
-nachname: String
-nationalitaet: String
-dob: LocalDate
-dod: LocalDate
-bemerkung: String
}
class Regisseur {
}
class Schauspieler {
}
class Regie {
-film: Film
-regisseur: Regisseur
}
class Engagement {
-film: Film
-schauspieler: Schauspieler
}
Kino "1" <-- "*" Saal: hat >
Saal "1" <-- "*" Reihe: hat >
Reihe "1" <-- "*" Sitz: hat >
Saal "1" <-- "*" Vorstellung
Vorstellung "1" <-- "*" Vorstellungspreis
Reihe "1" <-- "*" Vorstellungspreis
Sitz "1" <-- "*" Eintrittskarte
Vorstellung "1" <-- "*" Eintrittskarte
Genre "1" <-- "*" Film
Person <|-- Schauspieler
Person <|-- Regisseur
Film "1" <-- "*" Regie
Regisseur "1" <-- "*" Regie : führt Regie >
Film "1" <-u- "*" Engagement
Schauspieler "1" <-- "*" Engagement: spielt mit >
Film "1" <-- "*" Vorstellung
@enduml
|
1436eab2298bdcb50831924f800ec0861a9b53a9 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyShoppingListSetLineItemCustomFieldAction.puml | 33a9c64bf99f6db1b5c48c76726a178d26c967f2 | [] | 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 | 577 | 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 MyShoppingListSetLineItemCustomFieldAction [[MyShoppingListSetLineItemCustomFieldAction.svg]] extends MyShoppingListUpdateAction {
action: String
lineItemId: String
lineItemKey: String
name: String
value: [[Object.svg Object]]
}
interface MyShoppingListUpdateAction [[MyShoppingListUpdateAction.svg]] {
action: String
}
@enduml
|
2762a771009c086c592d85a8a372d57373f15fc6 | f83f4b7544b2aa5ad7788cfb5fb310b7e0bf4378 | /AOC/TP1/M3/UpdateClass.puml | f0cadef25aba09993c05bd04f002fd69aa8805de | [] | no_license | malahx/ISTIC | dc3d65b75e6bae6b5f9bd1e0740770501eb2ef0f | 98e076592b39b18b3d8d5148a74ff29006f01092 | refs/heads/master | 2021-07-12T20:30:32.247849 | 2019-02-16T09:05:23 | 2019-02-16T09:05:23 | 148,325,439 | 1 | 4 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,029 | puml | @startuml
storage "Update: ActiveObject" as uao {
}
uao ..> f: Future
package Java {
interface f as "Future"<T> {
+synchronize()
+get()
}
interface s as "ScheduledExecutorService" {
+schedule(c: callable, timeout: Duration)
}
interface cb as "Callable"<T> {
+call()
}
}
class c as "Canal" {
+update(g: Generator): Future
+getValue(): Future
}
interface ga as "GeneratorAsync" {
+getValue(): Future
}
interface oga as "ObsGeneratorAsync" {
+update(g: Generator): Future
}
interface g as "Generator" {
+getValue(): int
}
class umi as "UpdateCallable" {
+call()
}
class vmi as "GetUpdateCallable" {
+call()
}
class m as "Monitor" {
+update(g: Generator)
}
interface og as "ObsGenerator" {
+update(g: Generator)
}
uao ..> c: Proxy
uao ..> cb: Method Invocator
uao ..> g: Client
uao ..> s: Scheduler
uao ..> oga: Service
uao ..> og: Servant
uao ..> vmi: Concrete MI
umi ..|> cb
vmi ..|> cb
c ..|> ga
c ..|> oga
m ..|> og
newpage
storage "GetValue: ActiveObject" as vao {
}
package Java {
interface f as "Future"<T> {
+synchronize()
+get()
}
interface s as "ScheduledExecutorService" {
+schedule(c: callable, timeout: Duration)
}
interface cb as "Callable"<T> {
+call()
}
}
class c as "Canal" {
+update(g: Generator): Future
+getValue(): Future
}
interface ga as "GeneratorAsync" {
+getValue(): Future
}
interface oga as "ObsGeneratorAsync" {
+update(g: Generator): Future
}
interface g as "Generator" {
+getValue(): int
}
class umi as "UpdateCallable" {
+call()
}
class vmi as "GetUpdateCallable" {
+call()
}
class m as "Monitor" {
+update(g: Generator)
}
interface og as "ObsGenerator" {
+update(g: Generator)
}
vao ..> c: Proxy
vao ..> cb: Method Invocator
vao ..> og: Client
vao ..> s: Scheduler
vao ..> f: Future
vao ..> g: Servant
vao ..> ga: Service
vao ..> umi: Concrete MI
umi ..|> cb
vmi ..|> cb
c ..|> ga
c ..|> oga
m ..|> og
@enduml |
d62c62e03778ce7719f1b817f47564ae4017353c | 7ab2a6fa9a2ecfa52462d10843098a98404e4a67 | /MVVM/GestionDeTournoiFiles/Conception/CDL/CDL_CTRL.iuml | 3d67d320aa862f73b8f703b85c7a8f9b17cc5457 | [] | no_license | jams4code/QuizzGameProjectJava | ab28129ebf8ae1eca90dfc8210e813b6d1b70ec9 | 32431822ea878b4198361efda322cabafd3fe463 | refs/heads/master | 2022-07-04T20:57:26.099245 | 2020-05-19T19:15:17 | 2020-05-19T19:15:17 | 261,175,850 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 255 | iuml | class Ctrl <<Controller>>{
-Federation fd
-Tournoi selected
+TrnmSelected(index:int)
+matchSelected(index:int)
+addMatch(m:Match)
+delSelectedMatch(m:Match)
+updateSelectedMatch(old:Matc,newM:Match)
+getOpponent(p:Player)
} |
1ebea4531c154a4d13d6b46d9fe8dcf9a34bc784 | 088856ec5790009dd9f9d3498a56fe679cfab2e8 | /src/puml/5/ucmitz/svg/class/baser-core/manage_permission_groups.puml | cfc0b16a3bc7c2385bec866c9be5fa82c7506884 | [] | no_license | baserproject/baserproject.github.io | 21f244348890652286969afa1fde27c5c4d9e4ad | 8d61cf720f833854e1a3c97136e22e75baea7bb0 | refs/heads/master | 2023-08-09T03:21:53.341423 | 2023-07-27T07:28:50 | 2023-07-27T07:28:50 | 228,826,353 | 0 | 12 | null | 2023-08-17T02:31:05 | 2019-12-18T11:31:51 | HTML | UTF-8 | PlantUML | false | false | 2,883 | puml | @startuml
skinparam handwritten true
skinparam backgroundColor white
hide circle
skinparam classAttributeIconSize 0
title アクセスルールグループ管理
class Admin\PermissionGroupsController {
+ アクセスルールグループ一覧を表示:index()
+ アクセスルールグループ新規追加:add()
+ アクセスルールグループ編集:edit()
+ アクセスルールグループ削除:delete()
+ ユーザーグループごとに\nアクセスルール再構築:rebuild_by_user_group()
}
class PermissionGroupsService {
+ PermissionGroupsTable
}
class PermissionGroupsServiceInterface {
+ 単一のアクセスグループを取得する:get()
+ アクセスグループ一覧を取得する:getIndex()
+ アクセスグループのリストを取得する:getList()
+ アクセスグループを更新:update()
+ アクセスグループを削除:delete()
+ アクセスグループを新規登録:add()
+ ユーザーグループ、プラグインごとにアクセスルールを構築する:build()
+ 全てのアクセスルールを構築する:buildAll()
+ 指定したプラグインについて全てを\n許可するアクセスルールを構築する:buildAllowAllMethodByPlugin()
+ プラグインごとにアクセスルールを構築する:buildByPlugin()
+ ユーザーグループごとにアクセスルールを構築する:buildByUserGroup()
+ デフォルトの拒否ルールを作成する(不要):buildDefaultDenyRule()
+ デフォルトのその他の\nルールグループを作成する:buildDefaultEtcRuleGroup()
+ プラグインごとにアクセスルールを削除する:deleteByPlugin()
+ ユーザーグループごとにアクセスルールを削除する:deleteByUserGroup()
+ ユーザーグループごとに\nアクセスルールを再構築する:rebuildByUserGroup()
}
class PermissionGroupsAdminServiceInterface {
+ 一覧表示用データ取得:getViewVarsForIndex()
+ 編集画面表示用データ取得:getViewVarsForEdit()
+ 新規登録画面用データ取得:getViewVarsForAdd()
}
class PermissionGroupsTable {
}
class PermissionGroup {
+ 名称:name
+ 領域(プレフィックス):type
+ プラグイン:plugin
+ ステータス(有効 / 無効):status
}
Admin\PermissionGroupsController -down[#Black]-> PermissionGroupsService
Admin\PermissionGroupsController -left[#Black]-> PermissionGroupsAdminService
PermissionGroupsAdminService -left[dotted,#Black]-|> PermissionGroupsAdminServiceInterface
PermissionGroupsAdminService -down[#Black]-|> PermissionGroupsService
PermissionGroupsService -down[#Black]-> PermissionGroupsTable
PermissionGroupsService -left[dotted,#Black]-|> PermissionGroupsServiceInterface
PermissionGroupsTable -down[#Black]-> PermissionGroup
@enduml
|
3b613bbbc6062ec574d91cdce166aa2e2483bf28 | c452e4f63f50eca1ab44e5bb5fa557cbc5c93515 | /src/main/resources/ex41/ClassDiagrams/OutputName.puml | 5aa423deeadbdf6cea1ff632bc8aa517d64f79fc | [] | no_license | mplekunov/Assignment_3 | b1ca62cde7a6a1dd495bdc8c52e34d494a8e947b | 81138b959274d3c8bf9586c0c4f6c164f6c84780 | refs/heads/master | 2023-05-31T12:28:19.214249 | 2021-06-21T00:40:42 | 2021-06-21T00:40:42 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 190 | puml | @startuml
'https://plantuml.com/class-diagram
class OutputName {
-List<Name> names
-String fileName
+OutputName(List<Name> names, String fileName)
+void write()
}
@enduml |
ccd724a08545f0af2b4bd5522669c217683b1d6d | 74cb674dc7b9c3f65f6ab08fc5ad3a43c3bf12d3 | /Offline 4/Problem 2/out/production/Problem 2/com/company/company.plantuml | 9b2528047319606d18fe7494d5e47a1368f744b6 | [] | no_license | zarif98sjs/CSE-308-Software-Engineering | a9759bbee2ea0647eae2ea677d08741293a1cc14 | 515015a40c10d916d5089f11784b4ff75319fcbd | refs/heads/main | 2023-06-27T05:57:00.443594 | 2021-07-28T13:57:32 | 2021-07-28T13:57:32 | 344,690,362 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 683 | plantuml | @startuml
title __COMPANY's Class Diagram__\n
namespace com.company {
class com.company.Main {
{static} + main()
}
}
namespace com.company {
class com.company.Wrapper {
~ Wrapper()
~ process()
}
}
com.company.Wrapper o-- mediator.JCC : jcc
com.company.Wrapper o-- service.JPDC : jpdc
com.company.Wrapper o-- service.JRTA : jrta
com.company.Wrapper o-- service.JRTC : jrtc
com.company.Wrapper o-- service.JWSA : jwsa
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
|
81cf347238e4123b9029736eee963c2f55431cfe | 8c59fbc94a2ba7fa9a12c10991fe334cda0df128 | /metrics/web/docs/features/feature_config/diagrams/feature_config_presentation_layer_class_diagram.puml | ca7852bb49da1493d3cff3c8360235ae64e232fd | [
"Apache-2.0"
] | permissive | solid-vovabeloded/flank-dashboard | 7e952fa1399585d3f15cae2ed2cab435fb82df3f | 15dae0c40823cc12886a1bb0c087442c0697ac89 | refs/heads/master | 2023-07-11T19:54:58.430004 | 2021-08-06T10:29:26 | 2021-08-06T10:29:26 | 389,593,827 | 0 | 0 | Apache-2.0 | 2021-07-26T10:33:52 | 2021-07-26T10:25:59 | null | UTF-8 | PlantUML | false | false | 1,542 | puml | @startuml feature_config_presentation_layer_class_diagram
package base.domain.usecases {
class FetchFeatureConfigUseCase {}
}
package common.presentation {
package state {
class FeatureConfigNotifier {
+ isLoading : bool
+ isInitialized : bool
+ passwordSignInOptionFeatureConfigViewModel : PasswordSignInOptionFeatureConfigViewModel
+ debugMenuFeatureConfigViewModel : DebugMenuFeatureConfigViewModel
- _featureConfig : FeatureConfig
- _defaultFeatureConfig : FeatureConfig
- _fetchFeatureConfigUseCase : FetchFeatureConfigUseCase
+ Future<void> initializeConfig()
+ void setDefaults(bool isPasswordSignInOptionEnabled, bool isDebugMenuEnabled)
}
}
package view_models {
abstract class FeatureConfigViewModel {
+ isEnabled: bool
}
class PasswordSignInOptionFeatureConfigViewModel {}
class DebugMenuFeatureConfigViewModel {}
}
}
package widgets {
class CoolWidget {}
}
package pages {
class CoolPage {}
}
CoolWidget --> FeatureConfigNotifier : uses
CoolPage --> FeatureConfigNotifier : uses
FeatureConfigNotifier --> FetchFeatureConfigUseCase : uses
FeatureConfigNotifier --> PasswordSignInOptionFeatureConfigViewModel : uses
FeatureConfigNotifier --> DebugMenuFeatureConfigViewModel : uses
PasswordSignInOptionFeatureConfigViewModel --|> FeatureConfigViewModel
DebugMenuFeatureConfigViewModel --|> FeatureConfigViewModel
@enduml
|
929f1656199d04796ba2da72bd743014b695e6ff | e2b1bc4c7f8275c50bf3a0fad9b558ce188f8b68 | /src/main/resources/Diagrams/Factory.puml | be1b6126fd97eca0949a60aa0664ce889b62d998 | [] | no_license | carricksoft/Hansen | 22f03fb3e7734e1e38e1c482e675c98a271e2c8a | 2974e0c7270d2922777621ffed6ad0f35e812f8b | refs/heads/master | 2023-06-10T17:18:25.790850 | 2019-10-14T07:12:23 | 2019-10-14T07:12:23 | 206,819,869 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 365 | puml | @startuml
package factories {
interface ApplicationFactory {
ApplicationLogger getApplicationLogger()
FileValidator getFileValidator()
}
class ApplicationFactoryImpl {
+ApplicationLogger getApplicationLogger()
+FileValidator getFileValidator()
}
ApplicationFactory <|-- ApplicationFactoryImpl
ApplicationFactory ...> ApplicationLoggerFactory: calls
}
@enduml |
44d2f41d3802bafd7721fb6ac9b9e8074e053084 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderSetReturnItemCustomFieldAction.puml | d56491359c4ed46038992e1756e4fe0458eb7684 | [] | 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 | 540 | 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 OrderSetReturnItemCustomFieldAction [[OrderSetReturnItemCustomFieldAction.svg]] extends OrderUpdateAction {
action: String
returnItemId: String
returnItemKey: String
name: String
value: [[Object.svg Object]]
}
interface OrderUpdateAction [[OrderUpdateAction.svg]] {
action: String
}
@enduml
|
d898a0e50425a92456d0787efaf992595f50b861 | 11ceb7057b246deae931c4990f30430af9e5ae47 | /src/main/java/ex44/ProductSearch.puml | 1d80e3a79fdbec1afee1887d8e9f3fa08961f459 | [] | no_license | lmcarroll/carroll-cop3330-assignment3 | de09a6fbdb1348c16b2b822edae283b2f697e3db | 20d4f9799f442168a66a294f7a342334eb0fd3d2 | refs/heads/master | 2023-08-27T11:10:16.299202 | 2021-10-12T03:21:43 | 2021-10-12T03:21:43 | 415,388,208 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 379 | puml | @startuml
abstract class ProductSearch {
int searchInt
int search
readJSON()
searcherQuantity()
searcherPrice()
checkIfProduct()
}
class Scanner {
input
nextLine()
}
class File {
file
readFileToString()
}
class JSONObject {
object
}
class String {
file
search
}
ProductSearch <|- Scanner
ProductSearch <|- File
ProductSearch <|- JSONObject
ProductSearch <|- String
@enduml |
2e6237834b5fd0694eb3babfc39d9868b1be4798 | c3287e91ce0ebce396cd3966de3d2f7d90131c20 | /Plantuml/UI/ViewModels/ManeuversViewModel.puml | 84277103bd78c7190e582fb2acd3607723bd1059 | [] | no_license | kretmatt/SWE2-Tourplanner | 497ec2e888112bd3d67a0f2b97e7c1e8e0348371 | f064500ae5b913b00671f358a586011affcdaf00 | refs/heads/main | 2023-05-12T11:48:29.605417 | 2021-06-06T21:53:11 | 2021-06-06T21:53:11 | 341,115,114 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 741 | puml | @startuml
class ManeuversViewModel {
+ <<event>> CloseRequested : EventHandler<DialogCloseRequestedEventArgs>
+ ManeuversViewModel(maneuvers:List<Maneuver>)
}
class "ObservableCollection`1"<T> {
}
BaseViewModel <|-- ManeuversViewModel
IDialogRequestClose <|-- ManeuversViewModel
ManeuversViewModel --> "maneuvers<Maneuver>" "ObservableCollection`1"
ManeuversViewModel --> "currentManeuver" Maneuver
ManeuversViewModel --> "Maneuvers<Maneuver>" "ObservableCollection`1"
ManeuversViewModel --> "CurrentManeuver" Maneuver
ManeuversViewModel --> "AddManeuverCommand" ICommand
ManeuversViewModel --> "RemoveManeuverCommand" ICommand
ManeuversViewModel --> "ConfirmCommand" ICommand
ManeuversViewModel --> "ExitCommand" ICommand
@enduml
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.