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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
80b3b95caeb64d1ebc552b9e2ef3613cfbe3a1ff | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.postprocessing@2.3.0/PostProcessing/Runtime/Effects/ScreenSpaceReflections.puml | 880fd200c16532e369b484a733f962b83b21d030 | [] | 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,989 | puml | @startuml
enum ScreenSpaceReflectionPreset {
Lower,
Low,
Medium,
High,
Higher,
Ultra,
Overkill,
Custom,
}
enum ScreenSpaceReflectionResolution {
Downsampled,
FullSize,
Supersampled,
}
class ScreenSpaceReflectionPresetParameter <<sealed>> {
}
class ScreenSpaceReflectionResolutionParameter <<sealed>> {
}
class ScreenSpaceReflections <<sealed>> {
+ <<override>> IsEnabledAndSupported(context:PostProcessRenderContext) : bool
}
class ScreenSpaceReflectionsRenderer <<sealed>> {
+ <<override>> GetCameraFlags() : DepthTextureMode
+ <<override>> Render(context:PostProcessRenderContext) : void
+ <<override>> Release() : void
}
class "ParameterOverride`1"<T> {
}
class "PostProcessEffectRenderer`1"<T> {
}
class QualityPreset {
+ maximumIterationCount : int
+ thickness : float
}
enum Pass {
Test,
Resolve,
Reproject,
Composite,
}
"ParameterOverride`1" "<ScreenSpaceReflectionPreset>" <|-- ScreenSpaceReflectionPresetParameter
"ParameterOverride`1" "<ScreenSpaceReflectionResolution>" <|-- ScreenSpaceReflectionResolutionParameter
PostProcessEffectSettings <|-- ScreenSpaceReflections
ScreenSpaceReflections o-> "preset" ScreenSpaceReflectionPresetParameter
ScreenSpaceReflections o-> "maximumIterationCount" IntParameter
ScreenSpaceReflections o-> "resolution" ScreenSpaceReflectionResolutionParameter
ScreenSpaceReflections o-> "thickness" FloatParameter
ScreenSpaceReflections o-> "maximumMarchDistance" FloatParameter
ScreenSpaceReflections o-> "distanceFade" FloatParameter
ScreenSpaceReflections o-> "vignette" FloatParameter
"PostProcessEffectRenderer`1" "<ScreenSpaceReflections>" <|-- ScreenSpaceReflectionsRenderer
ScreenSpaceReflectionsRenderer --> "m_Resolve" RenderTexture
ScreenSpaceReflectionsRenderer --> "m_History" RenderTexture
ScreenSpaceReflectionsRenderer +-- QualityPreset
QualityPreset --> "downsampling" ScreenSpaceReflectionResolution
ScreenSpaceReflectionsRenderer +-- Pass
@enduml
|
edf3aae32d131f35d293442b8cf7eb4b2e12f4c0 | 088856ec5790009dd9f9d3498a56fe679cfab2e8 | /src/puml/5/ucmitz/svg/class/baser-core/manage_dblogs.puml | 575ab4b1d7eb9c79f500aa69d143d8a60f0d9bbe | [] | 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 | 1,004 | puml | @startuml
skinparam handwritten true
skinparam backgroundColor white
hide circle
skinparam classAttributeIconSize 0
title ログ管理
class Admin\DblogsController {
+ ログ一覧を表示:index()
+ 一括削除:delete_all()
}
class DblogsService {
+ DblogsTable
}
class DblogsServiceInterface {
+ 初期データ取得:getNew()
+ 作成:create()
+ 編集:update() ※ 対応しない
+ 削除:delete()
+ 単一データ取得:get()
+ 一覧データ取得:getIndex()
+ リスト取得:getList() ※ 対応しない
+ 一括削除:deleteAll()
+ 最新のDBログ一覧を取得:getDblogs
}
class DblogsTable {
}
class Dblog {
+ メッセージ:message
+ ユーザーID:user_id
+ コントローラー:controller
+ アクション:action
}
Admin\DblogsController -down[#Black]-> DblogsService
DblogsService -down[#Black]-> DblogsTable
DblogsService -left[dotted,#Black]-|> DblogsServiceInterface
DblogsTable -down[#Black]-> Dblog
@enduml
|
9e90ad62dab4ea1c5376720d21b1cceb903870c2 | 319488df94b7f979aaa11c71088151b868a4bd8a | /demoLSPBeverageManager/demoLSPBeverageManager.plantuml | 51e0e8faaa6f688c1fdc891e937c334046046eef | [] | no_license | ccabrejo20/SOLIDDemos | 0864ad080a1f35f492845d1cc78ad80b0583075e | 8dbb918f710f62d520eda00146a0b1d54a02b244 | refs/heads/master | 2022-12-07T02:28:40.710654 | 2020-08-08T03:47:56 | 2020-08-08T03:47:56 | 285,679,469 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,682 | plantuml | @startuml
title __DEMOLSPBEVERAGEMANAGER's Class Diagram__\n
namespace com.example.ocp.demolspbeveragemanager {
namespace coffeecomponent {
abstract class com.example.ocp.demolspbeveragemanager.coffeecomponent.Beverage {
~ description : String
{abstract} + cost()
+ getDescription()
}
}
}
namespace com.example.ocp.demolspbeveragemanager {
namespace coffeetype {
class com.example.ocp.demolspbeveragemanager.coffeetype.DarkRoast {
+ cost()
+ getDescription()
}
}
}
namespace com.example.ocp.demolspbeveragemanager {
namespace coffeetype {
class com.example.ocp.demolspbeveragemanager.coffeetype.Espresso {
+ cost()
+ getDescription()
}
}
}
namespace com.example.ocp.demolspbeveragemanager {
namespace coffeetype {
class com.example.ocp.demolspbeveragemanager.coffeetype.HouseBlend {
+ cost()
+ getDescription()
}
}
}
com.example.ocp.demolspbeveragemanager.coffeetype.DarkRoast -up-|> com.example.ocp.demolspbeveragemanager.coffeecomponent.Beverage
com.example.ocp.demolspbeveragemanager.coffeetype.Espresso -up-|> com.example.ocp.demolspbeveragemanager.coffeecomponent.Beverage
com.example.ocp.demolspbeveragemanager.coffeetype.HouseBlend -up-|> com.example.ocp.demolspbeveragemanager.coffeecomponent.Beverage
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
|
dbf54da8dd16014bf582553c8316c2e4c58d414b | c69dba4cef780d27a126166ee912005507258413 | /src/design/tessellation-class-diagram.puml | 1a40d17bd3e48caac77cb8d9e6cb0dd1cabca6fc | [
"MIT",
"EPL-1.0",
"Apache-2.0"
] | permissive | CS-SI/Orekit | 2265900b501fe6727a57378956f9f2c61564909a | 7ab7a742674eabee00e1dbe392833d587fdcdaab | refs/heads/develop | 2023-09-03T20:33:42.748576 | 2023-09-01T14:34:03 | 2023-09-01T14:34:03 | 22,851,787 | 144 | 79 | Apache-2.0 | 2023-03-28T17:53:33 | 2014-08-11T19:29:35 | Java | UTF-8 | PlantUML | false | false | 2,340 | puml | ' Copyright 2002-2023 CS GROUP
' Licensed to CS GROUP (CS) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' CS licenses this file to You under the Apache License, Version 2.0
' (the "License"); you may not use this file except in compliance with
' the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
@startuml
skinparam svek true
skinparam ClassBackgroundColor #F3EFEB/CCC9C5
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
skinparam PackageFontSize 12
skinparam linetype ortho
package "Hipparchus" #F3EDF7 {
class SphericalPolygonsSet #EAE6F7/B9B3D2
}
package org.orekit #ECEBD8 {
package model.earth.tessellation #DDEBD8 {
class EllipsoidTesselator {
+List<List<Tile>> tessellate(zone, width, length, overlap, ...)
+List<List<GeodeticPoint>> sample(zone, width, length)
}
interface TileAiming {
+Vector3D alongTileDirection(Vector3D point, GeodeticPoint gp)
}
class AlongTrackAiming
class ConstantAzimuthAiming
class Tile
SphericalPolygonsSet <-- EllipsoidTesselator : zone
EllipsoidTesselator *--> "1" TileAiming
EllipsoidTesselator --> Tile : create
TileAiming <|-- AlongTrackAiming
TileAiming <|-- ConstantAzimuthAiming
}
package bodies #DDEBD8 {
class Ellipsoid
class GeodeticPoint
AlongTrackAiming --> Ellipsoid
ConstantAzimuthAiming --> Ellipsoid
Tile *--> "4" GeodeticPoint
}
package orbits #DDEBD8 {
class Orbit
AlongTrackAiming o--> Orbit
}
}
@enduml
|
5f02d77d1cb2484d5b6610e98aeb163344ccdd89 | 5419ba65627214efbf640b0643d5524c4f2a646f | /Architecture/04.PABF#25.predict-actions-based-on-frequency/PPDA#37.class.plantuml | 6603bf9fff80e76ca2cebc7c6bcc3ea5aff08927 | [] | no_license | ovidiomanteiga/horuslauncher | 3ed7ce5283dd4a267b1284f6bc192c0426b98150 | 26159c90e70d3042f2ac04d8cb8284c1c8c26de2 | refs/heads/master | 2020-09-14T05:44:31.073187 | 2019-07-22T19:55:47 | 2019-07-22T19:55:47 | 223,037,096 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,322 | plantuml |
@startuml PPDA#37.class
skinparam monochrome true
package UI {
class MainActivity <<Activity>> {
}
class HorusListFragment <<Fragment>> {
void userWantsToExecute(HorusListItem)
}
MainActivity -u-> HorusListFragment
}
package Domain {
class HorusAction <<Entity>> {
Drawable icon
UUID identifier
LocalizableString name
void perform()
}
class ActionExecution <<VO>> {
DateTime time
String userIdentifier
String deviceIdentifier
}
class ExecuteAction <<Interactor>> {
void perform()
}
class HorusList {
}
class HorusListItem {
+ Int numberOfExecutionsLastWeek
}
ActionExecution -l-> HorusAction
HorusList o-u-> "*" HorusListItem
HorusListItem -> "1" HorusAction
ExecuteAction -u-> HorusAction
ExecuteAction -u-> ActionExecution
ExecuteAction -r-> ActionExecutionRepository
}
package Infrastructure {
class App {
+ void perform()
}
AppExecutionRepository -d-> AppExecutionDAO
}
App -u-|> HorusAction
HorusListFragment -u-> ExecuteAction
HorusListFragment -u-> HorusList
AppExecutionRepository .u.|> ActionExecutionRepository
Infrastructure -[hidden]u-> Domain
Infrastructure -[hidden]l-> UI
hide empty members
@enduml
|
7556d8627677dff28487185893f6d1ccb66d9ca3 | 83db6b9e81ac56978b17ef6aede4233dd4b307aa | /units/src/unit_02/excercise_a/assets/classes-after-refaktoring.puml | 47024fad0dd4bd3cfc9f06c6843084ffeafc4dc3 | [] | no_license | msg-azubi/java-tutorial | cedefd6b1a213b71bee03d92e8325a2d908f5721 | f8d5bc91d425f2f17361ea086de5c8b46b322e6d | refs/heads/master | 2020-07-31T07:34:57.264426 | 2019-10-01T20:41:41 | 2019-10-01T20:41:41 | 210,532,064 | 0 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,232 | puml | @startuml
abstract class Blume
note "Die toString Methoden erlauben,\ndie Stringausgabe anzupassen. \n\nDamit man z. B. `Rose` ausgeben kann, \nstatt `ROSE`." as TheToStringOfEnum
Sorte .. TheToStringOfEnum
Farbe .. TheToStringOfEnum
note left of Blume: Warum die Enum-Typen sowie die Instanzfelder \nprotected sind?\n\tWeil die Konstruktoren der Unterklassen\n\tdiese benötigen.
note top of Sorte: Jeder Enum-Type hat eine Methode `values()`, \ndie seine Werte in einem Array ausgibt.
Blume <|-- Rose
Blume <|-- Tulpe
Blume <|-- Nelke
class Blume {
// Blumensorte, explizit als Typ
protected enum Sorte
// Farbe, explizit als Typ
protected enum Farbe
// Instanzfelder
Sorte sorte
Farbe farbe
public String toString()
public void farbe()
public void identifizieren()
}
enum Sorte {
ROSE
TULPE
NELKE
public String toString()
}
enum Farbe {
ROT
GELB
BLAU
public String toString()
}
class Rose {
@Override public void identifizieren()
public void wurzeln()
}
class Tulpe {
@Override public void identifizieren()
public void zwiebeln()
}
class Nelke {
@Override public void identifizieren()
public void stauden()
}
center footer excercise_a von unit_02 nach dem Refaktoring: `Konstanten durch Enum-Werte ersetzen`.
@enduml |
5aff29a48202e113ff27ab9cd9a392c56fc7b229 | 0db2a1b3f42bc02382a3ef4dcc292a327aa574e0 | /documents/version_3/diagrammes/classe/diagClasse.puml | 4f12ddf093f301dd55b6ef7ee668771ab3cdebdf | [] | no_license | arnoux23u-IUTNC/2021_COO_Zeldiablo | 9d872fbaf107b05f02c5d1a5bc4f4bc3c314b94e | 2b44e0479eacb3114f897d82bc57372a89ae68af | refs/heads/main | 2023-09-02T13:52:01.393111 | 2021-11-15T21:47:07 | 2021-11-15T21:47:07 | 368,554,956 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,883 | puml | @startuml
title Diagramme de Classe - Zeldiablo V3
interface Jeu{
+ evoluer(d : Direction, b : boolean)
+ etreFini() : boolean
}
class JeuPerso extends Jeu{
- partieEnCours : boolean
+ JeuPerso()
+ evoluer(d : Direction)
+ etreFini() : boolean
+ getJoueur() : Joueur
+ getLabyrinthe() : Labyrinthe
}
class Controleur implements KeyListener{
- attaqueEnCours : boolean
- attaqueARetourner : boolean
+ Controleur()
+ getDirection() : Direction
+ getAttaque() : boolean
+ keyTyped(KeyEvent e)
+ keyPressed(KeyEvent e)
+ keyReleased(KeyEvent e)
}
interface DessinJeu{
+ dessiner(image : BufferedImage)
}
class DessinPerso implements DessinJeu{
- {static} TAILLE_CASE : int
+ DessinPerso(j : JeuPerso)
- dessinerObjet(s : String, x : int, y : int, im : BufferedImage)
+ dessiner(im : BufferedImage)
}
class InterfaceGraphique{
+ InterfaceGraphique(afficheurUtil : DessinJeu, x : int, y : int)
+ getControleur() : Controleur
+ dessiner()
}
class MoteurRendu{
+ MoteurRendu(pJeu : Jeu, pAffiche : DessinJeu)
+ lancerJeu(width : int, height : int)
}
class PanelDessin(){
- imageSuivante : BufferedImage
- imageEnCours : BufferedImage
- width : int
- height : int
+ PanelDessin(x : int, y : int, affiche : DessinJeu)
+ dessinerJeu()
+ paint(g : Graphics)
}
abstract class Personnage{
- pv : int
- degats : int
+ Personnage(l : Labyrinthe, depart : Case, pdv : int, deg : int)
+ setPosition(position : Case)
+ getCase() : Case
+ seDeplacer(d : Direction) : boolean
+ diminuerVie(vieDown : int)
+ augmenterVie(vieUp : int)
+ getPv() : int
+ setPv(newPv : int)
+ attaquer(p : Personnage)
+ etreMort() : boolean
+ getLabyrinthe()
}
class Labyrinthe{
- {static} TAILLE : int
+ Labyrinthe(autoGenerate : boolean)
+ deplacerJoueur(p : Personnage, d : Direction) : boolean
- peutBouger(p : Personnage, d : Direction) : boolean
- getDestination(p : Personnage, d : Destination) : Case
+ getJoueur() : Joueur
+ toString() : String
+ getEntree() : Porte
+ getSortie() : Porte
+ getCase(x : int, y : int) : Case
+ getCases() : Case[][]
+ getPieges() : ArrayList<Piege>
+ getMonstres() : ArrayList<Piege>
}
abstract class Case{
- x : int
- y : int
+ Case(x : int, y : int)
+ {abstract} peutTraverser(p : Personnage) : boolean
+ {abstract} getIdentifier() : String
+ toString() : String
+ equals() : boolean
+ hashCode() : int
}
class Piege extends Obstacle{
+ Piege(x : int, y : int)
+ getIdentifier() : String
+ peutTraverser(p : Personnage) : boolean
+ prendDegats(p : Personnage)
+ getX() : int
+ getY() : int
}
class Chemin extends Case{
- {static} IDENTIFIER : char
+ Chemin(x : int, y : int)
+ peutTraverser(p : Personnage) : boolean
+ getIdentifier() : String
}
abstract class Obstacle extends Case{
+ Obstacle(x : int, y : int)
+ peutTraverser(p : Personnage) : boolean
}
class Mur extends Obstacle{
- {static} IDENTIFIER : char
+ Mur(x : int, y : int)
+ peutTraverser(p : Personnage) : boolean
+ getIdentifier() : String
}
class Porte extends Case{
- {static} IDENTIFIER : char
- ferme : boolean
+ Porte(x : int, y : int)
+ setFerme(boolean b)
+ peutTraverser(p : Personnage) : boolean
+ getIdentifier() : String
}
class Joueur extends Personnage{
+ Joueur(l : Labyrinthe, e : Porte)
+ attaquerAutour()
}
enum Direction{
NORTH
SOUTH
EAST
WEST
}
abstract class Monstre extends Personnage{
+ Monstre(l : Labyrinthe, depart : Case, pdv : int, deg : int, intelligence : int)
+ getIntelligence() : int
}
class Troll extends Monstre{
- tapeDansLeTour : boolean
+ Troll(l : Labyrinthe, depart : Case)
+ seRegenerer()
+ attaquerTroll()
}
class Fantome extends Monstre{
+ Fantome(l : Labyrinthe, depart : Case)
}
Personnage "*" -> "1" Case: " - position "
Personnage "*" -> "1" Labyrinthe: " - l "
Labyrinthe "1" -> "1" Porte: " - entree "
Labyrinthe "1" -> "1" Porte: " - sortie "
Labyrinthe "1" -> "*" Case: " - cases "
Labyrinthe "1" -> "1" Joueur: " - joueur "
Labyrinthe "1" -> "*" Piege : "- lPieges"
Labyrinthe "1" -> "*" Monstre : "- lMonstre"
PanelDessin "1" -> "1" DessinJeu : "- dessin"
DessinPerso "1" -> "1" JeuPerso : "- jeuEnCours"
JeuPerso "1" -> "1" Labyrinthe : "- l"
JeuPerso "1" -> "1" Joueur : "- pj"
Controleur "1" -> "1" Direction : "- enCours"
Controleur "1" -> "1" Direction : "- aRetourner"
MoteurRendu "1" -> "1" Jeu : "- jeu"
MoteurRendu "1" -> "1" InterfaceGraphique : "- gui"
MoteurRendu "1" -> "1" DessinJeu : "- dessin"
InterfaceGraphique "1" -> "1" Controleur : "- controleur"
InterfaceGraphique "1" -> "1" PanelDessin : "- panel"
@enduml |
c9c5034c76f383a788ff412e05a0042428fc1c8a | 4f029f90b241f8b1e4a0179d27c92be6b87c761c | /lib_design_pattern/src/main/java/com/mxdl/desigin/pattern/structure/a02_proxy/uml/proxy_base.puml | 43eb216943b8404fd11b3395db21c712b9b9dc9d | [] | no_license | mxdldev/java-design-pattern | 806cdb2f4ec87d121c10db4952ed67476772ff29 | f42813ccdb2a1cfdcc790935e41747098467e7e5 | refs/heads/master | 2020-11-26T22:15:35.016854 | 2020-01-08T07:10:34 | 2020-01-08T07:10:34 | 229,215,001 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 362 | puml | @startuml
skinparam classAttributeIconSize 0
package Proxy{
interface Subject{
+request():void
}
class RealSubject implements Subject
class Proxy
note bottom:为一个对象提供一个代理以控制对这个对象的访问
class Proxy implements Subject{
-realSubject:RealSubject
}
Proxy ->RealSubject
}
@enduml |
7643f15d75edde5b8c821494ab1fc196b478bf02 | 40567c1824176b46468e1e3e0ec8083acfc319ac | /src/main/java/org/study/patterns/behavioral/strategy/Strategy.puml | 6d48433dfb6a05cc138e41bb14b085aad9082271 | [] | no_license | Maxvgrad/Patterns | 18b7ee3b13c71a202716a0879ca328117a95661a | e94339f722d7e86ba2465ff83f358276618ed985 | refs/heads/master | 2020-03-19T05:15:30.138568 | 2018-07-19T07:22:13 | 2018-07-19T07:22:13 | 135,914,463 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 397 | puml | @startuml
class Context {
Strategy strategy
contextInterface()
}
interface Strategy {
algorithmInterface()
}
class ConcreteStrategyA {
algorithmInterface()
}
class ConcreteStrategyB {
algorithmInterface()
}
class ConcreteStrategyC {
algorithmInterface()
}
Strategy <|-- ConcreteStrategyA
Strategy <|-- ConcreteStrategyB
Strategy <|-- ConcreteStrategyC
Context o-- Strategy
@enduml |
420293b8b5e9a35679190585e105f32d56729c44 | f843c9d5922c2ef92cc3ca50f20f44184ed27ef8 | /src/main/java/Factory/Shape/shapeFactory.plantuml | b3acc47e05baca7510b77e5ac573f7b56bdbfd50 | [] | no_license | yvanross/LOG121-GOF-exemples | c80a4d1b29f0b953e4666e100a82d4fde1923bea | 7cff56d019b40901ed54b85a62d69317cf61da59 | refs/heads/master | 2023-05-04T07:39:48.742354 | 2021-05-21T13:43:50 | 2021-05-21T13:43:50 | 261,219,115 | 2 | 25 | null | 2021-01-25T22:44:14 | 2020-05-04T15:11:44 | Java | UTF-8 | PlantUML | false | false | 243 | plantuml |
@startuml
interface Shape {
draw(): void
}
class Circle implements Shape
class Square implements Shape
class Rectangle implements Shape
class ShapeFactory {
getShape(shape: string): Shape
}
ShapeFactory -right-> Shape: create()
@enduml |
8b2f6258cd6c703479c2284247e283ad0054fc75 | 9d852efca8af76cf0feaf7b479c5b647e085ff20 | /app/UML/Class.puml | 16b5817e3cdc74e2466db9055490c0702e52d1c9 | [] | no_license | bke0002/Timers | a27cee0cc610ee32ae1211b1f33924659e501562 | 496db1bc620a3ef980a891588c609faa5c5d6039 | refs/heads/master | 2021-03-08T19:29:56.586740 | 2016-05-04T21:56:36 | 2016-05-04T21:56:36 | 58,054,297 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 273 | puml | @startuml
title Classes - Class Diagram
class Marker {
int MarkerId
string Description [nullable]
int Offset
int Duration [nullable]
int TimerId [nullable]
}
class Timer{
int TimerId
int StartTime
int Duration
string Title
string Description
}
Marker--Timer
@enduml
|
b0ad42419ea8df7f562d3228c97629d0fa43cb8d | 1105e96909d016d9114358c3a6df3cf25c712f65 | /InceptionUML/Class Diagrams/Plugins.puml | 5e2ebfc44af11312144ef8c498c780c46578d343 | [] | no_license | PedroMartinDelCampo/inception_project | a39ffbb06356d6afe2ee23de2ca1273360c1ec90 | 675d7916b07b2ea0ca5957a81aed69f1e9b645a8 | refs/heads/master | 2021-01-20T08:01:58.474449 | 2017-06-02T01:35:46 | 2017-06-02T01:35:46 | 90,088,698 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 755 | puml | @startuml
interface Plugin {
getLabel(): String
createStimulus(): Stimulus
createPreview(Stimulus s): Node
createPropertiesPane(Stimulus s): Node
getStimulusClass(): Class
}
class PluginListWrapper {
setPlugins(List<String> plugins)
getPlugins(): List<String>
}
class PluginManager {
findByStimulus(Class stimulus): Plugin
getPlugin(Class plugin): Plugin
getPlugins(): Collection<Plugin>
registerPlugin(Class plugin)
}
class PluginLoader {
{static} loadFromFile(File f)
}
PluginLoader -left> PluginManager
PluginManager -down> PluginListWrapper
PluginListWrapper -up> Plugin
PluginManager -left> Plugin
@enduml
|
8164cce85df762543bdeffa645738f040834f204 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Manipulators/Sequence/RectangleZoom.puml | 83a90f7645ab1c8ebffb17cf87b35e6b812e5757 | [] | 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 | 75 | puml | @startuml
class RectangleZoom {
}
RectangleTool <|-- RectangleZoom
@enduml
|
465c46bab7314f7f6c4416cd23825248c517b41a | 54ebd9eb2ddadc17b215617d96fac1f93f4acfef | /creational/4-builder/builder-furniture-simplest.puml | 4a405ace56f1bf7b75051e15974447f3f95c148c | [] | no_license | cesarkohl/design-patterns | acb42191662c141f064d9c90426dfd4491d43dfe | 991f83d0076b0a69e9d6b7c1163cf49fde3bfcbf | refs/heads/main | 2023-06-11T07:16:18.484116 | 2023-05-28T14:41:01 | 2023-05-28T14:41:01 | 199,520,479 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 862 | puml | @startuml
'Too many constructor parameters
'In most cases most of the parameters will be unused,
'making the constructor calls pretty ugly.
note as n1
const builder = new IkeaChairBuilder();
const director = new ChairCreator(builder);
director.createChair();
const chair: IkeaChair = builder.getChair();
end note
class ChairCreator {
- builder: ChairBuilder;
+ constructor(builder: ChairBuilder) {}
+ createChair(type: string = "ikea") {}
}
interface ChairBuilder {
+ reset(): void;
+ buildStepA(): void;
+ buildStepB(): void;
+ buildStepZ(): void;
}
class IkeaChairBuilder implements ChairBuilder {
- result: IkeaChair;
+ reset() {}
+ buildStepA() {}
+ buildStepB() {}
+ buildStepZ() {}
+ getChair(): IkeaChair {}
}
class IkeaChair {}
ChairCreator <.. ChairBuilder
IkeaChairBuilder o-- IkeaChair
@enduml |
b4fd201d33c6712438bb64e95e119f42706f2548 | 22b81a626055c43898764e7254b44ad2805dc1a0 | /doc/gkgraph.puml | 9cce8cade891cfdde6f848b4f12518c7c8869dd1 | [] | no_license | dizaknz/gkgraph | 75d7d1b236b526f4dbd6aa1e37638e91bbd19a29 | ad479d6aad1b58ac57a1079f6245cf6e40a84ea3 | refs/heads/master | 2023-07-19T15:20:54.247050 | 2023-07-05T23:08:20 | 2023-07-05T23:08:20 | 217,021,698 | 0 | 0 | null | 2023-09-13T09:10:59 | 2019-10-23T09:40:36 | Go | UTF-8 | PlantUML | false | false | 7,234 | puml | @startuml
namespace datastore {
class EventDatastore << (S,Aquamarine) >> {
- db golang-neo4j-bolt-driver.Conn
- logger log.Logger
+ Add(ev *types.Event) error
}
}
namespace endpoint {
class AddRequest << (S,Aquamarine) >> {
+ Event *types.Event
}
class AddResponse << (S,Aquamarine) >> {
+ Error error
+ Failed() error
}
class Endpoints << (S,Aquamarine) >> {
+ AddEndpoint endpoint.Endpoint
+ Add(ctx context.Context, event *types.Event) error
}
interface Failure {
+ Failed() error
}
}
"endpoint.Failure" <|-- "implements""endpoint.AddResponse"
"endpoint.AddRequest""uses" o-- "types.Event"
"endpoint.Endpoints""uses" o-- "endpoint.Endpoint"
namespace grpc {
class grpcServer << (S,Aquamarine) >> {
- add grpc.Handler
+ Add(ctx context.Context, req *pb.AddRequest) (*pb.AddReply, error)
}
}
namespace http {
class errorWrapper << (S,Aquamarine) >> {
+ Error string
}
}
namespace pb {
class AddReply << (S,Aquamarine) >> {
+ Success bool
+ Message string
+ XXX_NoUnkeyedLiteral <font color=blue>struct</font>{}
+ XXX_unrecognized []byte
+ XXX_sizecache int32
+ Reset()
+ String() string
+ ProtoMessage()
+ Descriptor() ([]byte, []int)
+ XXX_Unmarshal(b []byte) error
+ XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
+ XXX_Merge(src proto.Message)
+ XXX_Size() int
+ XXX_DiscardUnknown()
+ GetSuccess() bool
+ GetMessage() string
}
class AddRequest << (S,Aquamarine) >> {
+ Event *EventMessage
+ XXX_NoUnkeyedLiteral <font color=blue>struct</font>{}
+ XXX_unrecognized []byte
+ XXX_sizecache int32
+ Reset()
+ String() string
+ ProtoMessage()
+ Descriptor() ([]byte, []int)
+ XXX_Unmarshal(b []byte) error
+ XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
+ XXX_Merge(src proto.Message)
+ XXX_Size() int
+ XXX_DiscardUnknown()
+ GetEvent() *EventMessage
}
class AttrValue << (S,Aquamarine) >> {
+ Attr string
+ Val string
+ Typ AttrValue_AttrType
+ XXX_NoUnkeyedLiteral <font color=blue>struct</font>{}
+ XXX_unrecognized []byte
+ XXX_sizecache int32
+ Reset()
+ String() string
+ ProtoMessage()
+ Descriptor() ([]byte, []int)
+ XXX_Unmarshal(b []byte) error
+ XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
+ XXX_Merge(src proto.Message)
+ XXX_Size() int
+ XXX_DiscardUnknown()
+ GetAttr() string
+ GetVal() string
+ GetTyp() AttrValue_AttrType
}
class AttrValue_AttrType << (S,Aquamarine) >> {
+ String() string
+ EnumDescriptor() ([]byte, []int)
}
interface EventClient {
+ Add(ctx "context.Context, in *AddRequest, opts ...grpc.CallOption) (*AddReply, error)
}
class EventLink << (S,Aquamarine) >> {
+ EventID string
+ EventType string
+ LinkType string
+ Attrs []*AttrValue
+ XXX_NoUnkeyedLiteral <font color=blue>struct</font>{}
+ XXX_unrecognized []byte
+ XXX_sizecache int32
+ Reset()
+ String() string
+ ProtoMessage()
+ Descriptor() ([]byte, []int)
+ XXX_Unmarshal(b []byte) error
+ XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
+ XXX_Merge(src proto.Message)
+ XXX_Size() int
+ XXX_DiscardUnknown()
+ GetEventID() string
+ GetEventType() string
+ GetLinkType() string
+ GetAttrs() []*AttrValue
}
class EventMessage << (S,Aquamarine) >> {
+ Id string
+ Typ string
+ Timestamp *timestamp.Timestamp
+ Attrs []*AttrValue
+ Links []*EventLink
+ XXX_NoUnkeyedLiteral <font color=blue>struct</font>{}
+ XXX_unrecognized []byte
+ XXX_sizecache int32
+ Reset()
+ String() string
+ ProtoMessage()
+ Descriptor() ([]byte, []int)
+ XXX_Unmarshal(b []byte) error
+ XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
+ XXX_Merge(src proto.Message)
+ XXX_Size() int
+ XXX_DiscardUnknown()
+ GetId() string
+ GetTyp() string
+ GetTimestamp() *timestamp.Timestamp
+ GetAttrs() []*AttrValue
+ GetLinks() []*EventLink
}
interface EventServer {
+ Add( "context.Context, *AddRequest) (*AddReply, error)
}
class UnimplementedEventServer << (S,Aquamarine) >> {
+ Add(ctx "context.Context, req *AddRequest) (*AddReply, error)
}
class eventClient << (S,Aquamarine) >> {
- cc *grpc.ClientConn
+ Add(ctx "context.Context, in *AddRequest, opts ...grpc.CallOption) (*AddReply, error)
}
class pb.AttrValue_AttrType << (T, #FF7700) >> {
}
}
"pb.EventServer" <|-- "implements""pb.UnimplementedEventServer"
"pb.EventClient" <|-- "implements""pb.eventClient"
"pb.AddRequest""uses" o-- "pb.EventMessage"
"pb.AttrValue""uses" o-- "pb.AttrValue_AttrType"
"pb.EventLink""uses" o-- "pb.AttrValue"
"pb.EventMessage""uses" o-- "pb.AttrValue"
"pb.EventMessage""uses" o-- "pb.EventLink"
"pb.EventMessage""uses" o-- "timestamp.Timestamp"
namespace service {
interface EventService {
+ Add(ctx "context.Context, event *types.Event) error
}
class eventService << (S,Aquamarine) >> {
- ds *datastore.EventDatastore
+ Add(ctx "context.Context, event *types.Event) error
}
class loggingMiddleware << (S,Aquamarine) >> {
- logger log.Logger
- next EventService
+ Add(ctx "context.Context, event *types.Event) error
}
class service.Middleware << (T, #FF7700) >> {
}
}
"service.EventService" <|-- "implements""service.eventService"
"service.EventService" <|-- "implements""service.loggingMiddleware"
namespace types {
class Attribute << (S,Aquamarine) >> {
+ Name string
+ Value <font color=blue>interface</font>{}
}
class Event << (S,Aquamarine) >> {
+ ID string
+ Type string
+ Timestamp time.Time
+ Attributes []*Attribute
+ Links []*EventLink
}
class EventLink << (S,Aquamarine) >> {
+ EventID string
+ EventType string
+ LinkType LinkType
+ Attributes []*Attribute
}
class LinkType << (S,Aquamarine) >> {
+ String() string
}
class types.LinkType << (T, #FF7700) >> {
}
}
"types.Event""uses" o-- "time.Time"
"types.Event""uses" o-- "types.Attribute"
"types.Event""uses" o-- "types.EventLink"
"types.EventLink""uses" o-- "types.Attribute"
"types.EventLink""uses" o-- "types.LinkType"
"__builtin__.int32" #.. "alias of""pb.AttrValue_AttrType"
"__builtin__.string" #.. "alias of""types.LinkType"
"service.<font color=blue>func</font>(EventService) EventService" #.. "alias of""service.Middleware"
@enduml
|
67ad48460cae9428a0912e6b1c9dd12ea22c66e7 | 331cb3ee06ae117570160dcee18ae4cadaf53c8a | /doc/uml/class_diagrams/controller.plantuml | e243624b072f5fc886cd47557aeaef64db027de1 | [
"Apache-2.0"
] | permissive | Icohedron/Alexandria | 687cf4a9b2cbac7cf911e03fff56365dfc1a070f | 18fc3b14ad463657a758cbfec0f8945bdbb7699f | refs/heads/master | 2020-04-21T10:21:12.746241 | 2019-03-26T14:58:10 | 2019-03-26T14:58:10 | 169,483,537 | 0 | 0 | Apache-2.0 | 2019-02-06T22:01:18 | 2019-02-06T22:01:17 | null | UTF-8 | PlantUML | false | false | 4,747 | plantuml | @startuml
title __CONTROLLER's Class Diagram__\n
package ca.ualberta.CMPUT3012019T02.alexandria {
package ca.ualberta.CMPUT3012019T02.alexandria.controller {
class BookController {
- database : DatabaseReference
{static} - instance : BookController
- BookController()
{static} + getInstance()
+ addBook()
+ getBook()
+ updateBook()
+ deleteBook()
+ requestBook()
+ cancelRequest()
+ returnBook()
+ acceptBookRequest()
+ declineBookRequest()
+ exchangeBook()
- addMyBorrowedBook()
+ getMyBorrowedBook()
+ getMyBorrowedBooks()
- updateMyBorrowedBook()
- deleteMyBorrowedBook()
+ addMyOwnedBook()
+ getMyOwnedBook()
+ getMyOwnedBooks()
+ updateMyOwnedBook()
+ deleteMyOwnedBook()
- addUserBorrowedBook()
+ getUserBorrowedBook()
+ getUserBorrowedBooks()
- updateUserBorrowedBook()
- deleteUserBorrowedBook()
- addUserOwnedBook()
+ getUserOwnedBook()
+ getUserOwnedBooks()
- updateUserOwnedBook()
- deleteUserOwnedBook()
- addUserBook()
- getUserBook()
- getUserBooks()
- updateUserBook()
- deleteUserBook()
- updateUserBook()
- addAvailableOwner()
- removeAvailableOwner()
- getMyUserId()
- getBookDatabaseReference()
- getUserDatabaseReference()
- getUserBooksReference()
- getUserBookReference()
}
}
}
package ca.ualberta.CMPUT3012019T02.alexandria {
package ca.ualberta.CMPUT3012019T02.alexandria.controller {
class BookParser {
{static} + UserBooksToBookList()
}
}
}
package ca.ualberta.CMPUT3012019T02.alexandria {
package ca.ualberta.CMPUT3012019T02.alexandria.controller {
class ChatController {
- database : FirebaseDatabase
{static} - instance : ChatController
- ChatController()
{static} + getInstance()
+ addChatRoom()
- addChatRoomPrivate()
- checkChatRoomExists()
}
}
}
package ca.ualberta.CMPUT3012019T02.alexandria {
package ca.ualberta.CMPUT3012019T02.alexandria.controller {
class ImageController {
- IMAGE_FORMAT : String
- storage : StorageReference
{static} - instance : ImageController
- ImageController()
{static} + getInstance()
+ addImage()
+ getImage()
+ updateImage()
+ deleteImage()
- getImageReference()
}
}
}
package ca.ualberta.CMPUT3012019T02.alexandria {
package ca.ualberta.CMPUT3012019T02.alexandria.controller {
class SearchController {
- client : Client
- index : Index
- gson : Gson
{static} - instance : SearchController
- SearchController()
{static} + getInstance()
+ searchBooks()
}
}
}
package ca.ualberta.CMPUT3012019T02.alexandria {
package ca.ualberta.CMPUT3012019T02.alexandria.controller {
class UserController {
- auth : FirebaseAuth
- database : FirebaseDatabase
{static} - instance : UserController
- UserController()
{static} + getInstance()
+ isAuthenticated()
+ authenticate()
+ deauthenticate()
+ createUser()
+ getMyId()
- getUserEmail()
+ getUserProfile()
+ getMyProfile()
+ updateMyProfile()
}
}
}
UserController "1" -down- "*" User : manages >
UserController "1" -down- "*" UserProfile : manages >
BookController "1" -down- "*" BorrowedBook : manages >
BookController "1" -down- "*" OwnedBook : manages >
BookController "1" -down- "*" Book : manages >
BookController "1" -right- "1" UserController : interfaces with >
ChatController "1" -down- "*" ChatRoom : manages >
ChatController "1" -down- "*" Message : manages >
ChatController "1" -left- "1" UserController : interfaces with >
BookParser "1" -- "1" BookController
BookParser "1" -- "1" UserController
BookParser "1" -- "1" ImageController
right footer
PlantUML diagram partly generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
8346e21e2b7ae4c43e841065108867fa5820e0d2 | 248650544b2ce98a1168e68d882b006b3e2ae35a | /uml/InventoryDiagram.puml | 4f9621b64bbb81148fa0b1d8f146dc41f360fa1e | [] | no_license | kieran-l-jimenez/jimenez-2990-a5 | e0bde9c6f6faddd4e2fb812d7f4eae2620829c54 | ef9a354ccb0093b868eefe488b3bc37b54b92247 | refs/heads/master | 2023-06-22T00:37:00.503029 | 2021-07-26T05:14:51 | 2021-07-26T05:14:51 | 389,223,274 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,856 | puml | @startuml
'https://plantuml.com/class-diagram
interface Initializable{}
class App {
+ main()
+ start()
}
class InventoryController {
- inventoryTable : TableView
- valColumn : TableColumn
- serColumn : TableColumn
- nameColumn : TableColumn
- inputValue : TextField
- inputSerial : TextField
- inputName : TextField
- errorLabel : Label
- currentInventory : Inventory
'13.2, 14.1
- fileChooser : FileChooser
'1
'8-10 handled in TableView
'3
+ newItemPressed()
'4
+ deleteItemPressed()
'5
+ editItemValuePressed()
'6
+ editItemSerialPressed()
'7
+ editItemNamePressed()
'11
+ searchSerialNumberPressed()
'12
+ searchNamePressed()
'13.0
+ saveInventoryPressed()
'14.0
+ loadInventoryPressed()
+ initialize()
+ makeItem()
+ removeItem()
'7 handled in TableView
'+ editItemName()
'+ editItemValue()
+ searchInventoryBySerialNumber()
+ searchInventoryByName()
'13.1.1
+ saveTSVFormat()
'13.1.2
+ saveHTMLFormat()
'13.1.3
+ saveJSONFormat()
+ loadInventory()
}
class Inventory {
- itemsArrayList : ArrayList<Item>
- itemsObservable : ObservableList<Item>
+ Inventory()
'3.0, calls checkConflict
+ addItem()
+ getItemSerialIndex() : int
+ getItemNameIndex() : int
+ getItemObject() : Item
+ getItemsObservable : ObservableList<Item>
'5
+ editItemValue()
'6.0, calls checkConflict
+ editItemSerialNumber()
'7
+ editItemName()
'4
+ removeItem()
'3.1, 6.1
+ checkConflict() : boolean
- checkParameters() : boolean
}
class Item {
'2.1
-monetaryValue : Double
'2.2
-serialNumber : String
'2.3
-name : String
+ Item()
+ Item(Double, String, String)
+ setMonetaryValue()
+ getMonetaryValue() : Double
+ setSerialNumber()
+ getSerialNumber() : String
+ setName()
+ getName() : String
}
javafx.Application <|-- App
App - InventoryController
Initializable <|.. InventoryController
InventoryController -- Inventory
Inventory "1 " *-- "many" Item
@enduml |
c1b5efa5bac7caab64990733af55371642eb33ef | b16be9a8f0a3adc1631d1a55c45e1cba9b8746d7 | /src/SGG/Visitor/Visitor.puml | 63065c920da572d610e254fb854cd484267a20dd | [] | no_license | yicheny/DesignPattern | 2fb55d6e264be126963b9c3eeef7720f23be01b9 | fb9ff66d1c371ae68d47a7f110e1a5d42a86ff7a | refs/heads/main | 2023-04-14T12:22:35.162357 | 2021-04-28T04:44:29 | 2021-04-28T04:44:29 | 349,940,142 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 546 | puml | @startuml
'https://plantuml.com/class-diagram
client --> Action
client --> ObjectStructure
abstract class Action{
+getManResult()
+getWomanResult()
}
Action <--> Person
Action <|-- Success
Action <|-- Fail
class Success{
+getManResult()
+getWomanResult()
}
class Fail{
+getManResult()
+getWomanResult()
}
abstract class Person{
+accept()
}
Person <|-- Man
Person <|-- Woman
class Man{
+accept()
}
class Woman{
+accept()
}
ObjectStructure o-- Person
class ObjectStructure{
Person elements
}
@enduml |
dd720992216b4c067457607f30c0610bd4063506 | 3a3e44d479b4a2bfc5c57eae20da9865d436f304 | /samples/oauth2/sparklr/src/main/java/org/springframework/security/oauth/examples/sparklr/sparklr.plantuml | e35f1646f93405dd4c6f1ff409563b59cdad20eb | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | zwan2016/spring-security-oauth | abd781584a9e309df941ec53122b8f49575cbb35 | 43d8cf4d0386515c48a5cae2d463e2ac0e40dbe3 | refs/heads/master | 2020-08-24T19:19:39.887062 | 2020-04-08T15:57:53 | 2020-04-08T15:57:53 | 216,889,795 | 0 | 0 | Apache-2.0 | 2019-10-22T19:06:43 | 2019-10-22T19:06:43 | null | UTF-8 | PlantUML | false | false | 1,205 | plantuml | @startuml
title __SPARKLR's Class Diagram__\n
namespace org.springframework.security.oauth.examples.sparklr {
class org.springframework.security.oauth.examples.sparklr.PhotoInfo {
- id : String
- name : String
- resourceURL : String
- userId : String
+ getId()
+ getName()
+ getResourceURL()
+ getUserId()
+ setId()
+ setName()
+ setResourceURL()
+ setUserId()
}
}
namespace org.springframework.security.oauth.examples.sparklr {
interface org.springframework.security.oauth.examples.sparklr.PhotoService {
{abstract} + getPhotosForCurrentUser()
{abstract} + loadPhoto()
}
}
namespace org.springframework.security.oauth.examples.sparklr {
class org.springframework.security.oauth.examples.sparklr.PhotoServiceUser {
- name : String
- username : String
+ PhotoServiceUser()
+ getName()
+ getUsername()
}
}
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
|
9efdf5262578ca74e5fcab7350c51fb8563fe780 | 9b97649137eb308e83c86f20a537e84e3bac42e5 | /src/main/diagramas_puml/clasesTablero.puml | 1bb93a73a8c881288d89f0073bbdd00b5e04ccdb | [
"MIT"
] | permissive | juanireil/algo3_tp2 | 3c8c2f724bbc4ea02f48ddcd358f1f758960fdbf | 199b47b4194222ecad2933e76695e5b2f295a1db | refs/heads/master | 2023-07-14T17:24:56.069727 | 2021-09-01T22:48:38 | 2021-09-01T22:48:38 | 382,445,125 | 0 | 0 | MIT | 2021-09-01T22:48:39 | 2021-07-02T19:35:17 | Java | UTF-8 | PlantUML | false | false | 845 | puml | @startuml
class Pais{
- nombre:String
-ejercitos: Integer
-paisesLimitrofes: ArrayList
+ colocarEjercitos(cantidadDeEjercitos:Integer, unaFicha:FIcha)
+ eliminarEjercito(): void
+ cambiarFicha(Ficha:unaFicha)
+ ocuparPais(unPais:Pais, cantidadDeEjercitos; Integer)
+ atacarA(paisEnemigo:Pais):void
}
class Batalla{
+ combateEntre(atacante:Pais,defensor:Pais): void
- evaluarDados(atacante:Pais,defensor:Pais):void
+ batallasIndividuales(atacante:Pais,defensor:Pais, dadosAtacante:ArrayList, dadosDefensor:ArrayList):void
}
class Tablero{
+ obtenerCantidadPaisesJugador():int
+ fichasContinente(unJugador:Jugador):int
}
Juego *-- Tablero
Tablero *-- Continente
Tablero *--Pais
Continente-- Pais
Pais --> Ficha
Pais -- TarjetaPais
Pais ..> Dados
Juego --> Batalla
Batalla ..> Pais
@enduml |
18ec27607a25783674d9328d9457ae13978d1e11 | a08d18fffd5657f2eea3307191d3e5159398ee16 | /out/production/PaooGameEtapa1/PaooGame/States/States.plantuml | c9f5e71c8d54b5cc96131771eea0dab75fb1c43f | [] | no_license | raducornea/Joc-PAOO | 9436b9b0e74af3020d746fe9400828cd17e9aaae | 1f597ba2db22d662c624f7c0329727539e81fe04 | refs/heads/master | 2023-07-30T12:00:36.361135 | 2021-09-19T07:10:59 | 2021-09-19T07:10:59 | 408,056,883 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,701 | plantuml | @startuml
title __STATES's Class Diagram__\n
namespace PaooGame {
namespace States {
class PaooGame.States.AboutState {
+ AboutState()
+ Draw()
+ Update()
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.BattleState {
- EnemyOption : String
- EnemyOption1 : String
- NPCs : List<NPC>
- choice : int
- countHits : int
- downFlag : boolean
- enterFlag : boolean
- hashtagX : int
- hashtagY : int
- image : BufferedImage
- letterImages : List<BufferedImage>
- myTurn : boolean
- optionsString : List<String>
- releaseDOWNFlag : boolean
- releaseENTERFlag : boolean
- releaseUPFlag : boolean
- upFlag : boolean
+ BattleState()
+ Draw()
+ Update()
+ resetBattle()
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.InventoryState {
{static} - inventory : Inventory
+ Draw()
+ InventoryState()
+ Update()
{static} + getInventory()
{static} + getState()
{static} + setState()
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.MenuState {
{static} - menu : Menu
+ Draw()
+ MenuState()
+ Update()
{static} + getMenu()
{static} + getState()
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.PlayState {
{static} - hero : Hero
{static} - npcs : List<NPC>
+ Draw()
+ PlayState()
+ Update()
{static} + getHero()
{static} + getNpcs()
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.Sample {
{static} + main()
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.SettingsState {
+ Draw()
+ SettingsState()
+ Update()
}
}
}
namespace PaooGame {
namespace States {
class PaooGame.States.Singleton {
- data : int
{static} - instance : Singleton
{static} + GetInstance()
{static} + Reset()
+ getData()
~ setData()
- Singleton()
}
}
}
namespace PaooGame {
namespace States {
abstract class PaooGame.States.State {
{static} - currentState : State
{static} - previousState : State
{abstract} + Draw()
{static} + GetState()
{static} + SetState()
+ State()
{abstract} + Update()
}
}
}
PaooGame.States.AboutState -up-|> PaooGame.States.State
PaooGame.States.BattleState -up-|> PaooGame.States.State
PaooGame.States.BattleState o-- PaooGame.States.Singleton : mySingleton
PaooGame.States.BattleState o-- PaooGame.Items.Hero : hero
PaooGame.States.BattleState o-- PaooGame.Items.NPC : npc
PaooGame.States.InventoryState -up-|> PaooGame.States.State
PaooGame.States.MenuState -up-|> PaooGame.States.State
PaooGame.States.PlayState -up-|> PaooGame.States.State
PaooGame.States.PlayState o-- PaooGame.Maps.Map : map
PaooGame.States.SettingsState -up-|> PaooGame.States.State
PaooGame.States.State o-- PaooGame.RefLinks : refLink
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
|
486d16bb7fc7551dce576b427b80c0c6ed13999f | 0e0595b97aa91ffada0fcd46baf3f80428685c66 | /src/main/java/state/doc/state.puml | 04d965eefc27daac27018a4e1412ab477e571a32 | [
"Zlib"
] | permissive | alarm10086/GoF | a6a47390080075ee3387593843c2bf3d2e40ce50 | 153d458a30bb2da2e79ee7b142353d0323b83330 | refs/heads/master | 2020-03-20T21:20:58.000341 | 2018-07-27T19:12:43 | 2018-07-27T19:12:43 | 137,736,414 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 474 | puml | @startuml
note "备忘录模式" as N1
Context o-- State
State <|-- ConcreteState1
State <|-- ConcreteState2
class Context {
state
==
requestX
requestY
requestZ
}
abstract class State {
==
abstract methodA
abstract methodB
abstract methodC
abstract methodD
}
class ConcreteState1 {
==
methodA
methodB
methodC
methodD
}
class ConcreteState2 {
==
methodA
methodB
methodC
methodD
}
@enduml |
3e12c01ec2129ed35f366f1b8347fce5979b93d9 | 71bcb22231b308627b86059928fedbfdd397772e | /kmitl-esd-exercise2-61090022-Jui/client/target/classes/kmitl/esd/exercise2/exercise2.plantuml | 98ddd630165f666c66a68b8a53e9f89b8ee764f9 | [] | no_license | jui2542123/kmitl-esd-exercise2-61090022-Jui | 142643fdea62b05d25934a7614309e3d4d8a13f8 | b3a1cb5dfacea135d2923822d3def947512a763e | refs/heads/master | 2023-03-11T06:51:16.462388 | 2021-02-25T03:18:12 | 2021-02-25T03:18:12 | 341,794,492 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 479 | plantuml | @startuml
title __EXERCISE2's Class Diagram__\n
namespace kmitl.esd.exercise2 {
class kmitl.esd.exercise2.Client {
{static} - log : Logger
+ Client()
{static} + main()
+ restTemplate()
+ run()
~ callGetHello()
}
}
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
|
79ff2a3f85a23420c6060966019cfd1f754d47e8 | d724c7a2db615c0f524bb5e4d307ddd449bad460 | /a3-loops-strings-GraydonHall42/NewtonUML.puml | cd6c9a04115f19e816adfe68c00e6d4a2c02b396 | [] | no_license | GraydonHall42/Java-and-OOP-University-of-Calgary-ENSF-593 | ffddcbc3cdeb727ea5ec5ac9e00f69c6499c1573 | 00efaa4f5f5632333761e6a1fd3dda63d42484f4 | refs/heads/main | 2023-07-15T16:05:26.358633 | 2021-08-29T00:25:10 | 2021-08-29T00:25:10 | 400,917,087 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 630 | puml | @startuml
class NewtonApp [[java:NewtonApp]] {
-reader: KeyboardReader
- calc: NewtonTester
+NewtonApp()
+run(): void
+{static} main(args: String[]): void
}
class KeyboardReader [[java:KeyboardReader]] {
}
class NewtonTester [[java:NewtonTester]] {
}
class NewtonTester [[java:NewtonTester]] {
-N: double
-maxError: double
-guess: double
-numIterations: double
+NewtonTester(N: double, maxError: double, guess: double)
+sqrt(): double
+getNumIterations(): double
}
class KeyboardReader [[java:KeyboardReader]] {}
NewtonApp *-- "1" NewtonTester : contains
NewtonApp *-- "1" KeyboardReader : contains
@enduml |
d92239941819afaaacde3a35f2c4181d14e3f8a9 | 394a56ac07462a7305e934de37c3ed3a5363f56a | /Análise/UC10_Seriar_Candidaturas_Anúncio/UC10_DC/UC10_DC.plantuml | 5f3cc5df39a7ad67cbb1fa8d9f7e7e723a594e5d | [] | no_license | pedro-miguez/upskill_java1_labprg_grupo3 | 69ab871772f2a2faba901ee894aea2f8fe7392bb | 99bed16b491e8f0fbceb86e621cb9164e7722586 | refs/heads/main | 2023-03-24T02:26:43.964110 | 2021-03-22T10:50:54 | 2021-03-22T10:50:54 | 331,625,464 | 1 | 0 | null | 2021-03-19T18:00:07 | 2021-01-21T12:45:29 | Java | UTF-8 | PlantUML | false | false | 2,170 | plantuml | @startuml
title UC10 - Seriar Candidatura \n
Class AreaColaboradorUI {
}
Class SeriarCandidaturaController {
+ criarProcessoSeriacao(List<Candidatura> candidaturas, List<Colaborador> colaboradores, String emailColaborador)
+ getAllColaboradoresOrganizacao(String emailColaborador)
+ getAllCandidaturasPorSelecionar(Anuncio anuncio)
+ candidaturasSeriadasPorValor(Anuncio anuncio)
+ isSeriacaoAutomatica (Anuncio anuncio)
}
Class RepositorioProcessoSeriacao {
+getFreelancerByEmail(Email email)
+insertUtilizadorFreelancer(Freelancer freelancer, String password)
}
Class RepositorioColaborador {
+getColaboradoresOrganizacaoByEmail(new Email(emailColaborador)
}
Class RepositorioCandidatura {
+getCandidaturasByAnuncio(anuncio)
}
Class ProcessoSeriacao {
- Anuncio anuncio;
- Data data;
- List<Classificacao> classificacao;
- List<Colaborador> colaboradores;
}
Class Classificacao {
- Anuncio anuncio;
- Freelancer freelancer;
- lugar;
}
Class Colaborador {
- String nome;
- Telefone telefone;
- Email email;
- String funcao;
}
Class Anuncio {
- Tarefa tarefa;
- TipoRegimento tipoRegimento;
- Data dataInicioPublicitacao;
- Data dataFimPublicitacao;
- Data dataInicioCandidatura;
- Data dataFimCandidatura;
- Data dataInicioSeriacao;
- Data dataFimSeriacao;
}
class AuthenticationController {
+getEmail()
}
class UsersAPI {
+getEmail()
}
class UsersAPIAdapter {
+getSession()
}
AreaColaboradorUI ..> SeriarCandidaturaController
AreaColaboradorUI ..> AuthenticationController
SeriarCandidaturaController ..> RepositorioProcessoSeriacao
SeriarCandidaturaController ..> RepositorioColaborador
SeriarCandidaturaController ..> RepositorioCandidatura
AuthenticationController ..> UsersAPI
UsersAPI --> AlgoritmoGeradorPasswords : usa
UsersAPI ..> UsersAPIAdapter
RepositorioProcessoSeriacao "1"--> "1..*" ProcessoSeriacao : cria
ProcessoSeriacao "1" -> "1"Anuncio: relativo a
ProcessoSeriacao "1" --> "1..*" Colaborador : necessita
ProcessoSeriacao "1" --> "1..*" Classificacao : possui
@enduml |
7d8c5ed7fc41be2944871a676be371a88506be38 | 511df7212d8bea810c5eecb33339acb520ab30b4 | /design-uml/6.CD_Controller.puml | 2e0dbf67d7c7ade022b93140cd4d19dbc575052d | [] | no_license | tungnm-ict/spring-hibernate-demo | 67f6bd3a55aab93d7829cbc224c18be7bd309e73 | 2eff134615fdddb4c6e4473ec5f44a53b8c6b31b | refs/heads/master | 2020-03-17T16:24:23.330655 | 2018-05-17T03:44:35 | 2018-05-17T03:44:35 | 133,747,409 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,155 | puml | @startuml
node "Controller Classes" {
class ProductController{
- productService: ProductService
- categoryService: CategoryService
- attributeService: AttributeService
+ showProducts()
+ createNewProduct()
+ doCreateNewProduct()
+ updateProduct()
+ doUpdateProduct()
+ doDeleteProduct()
}
class CategoryController{
- categoryService: CategoryService
+ showCategories()
+ createNewCategory()
+ doCreateNewCategory()
+ updateCategory()
+ doUpdateCategory()
+ doDeleteCategory()
}
class AttributeController{
- attributeService: AttributeService
+ createNewAttribute()
+ doCreateNewAttribute()
+ updateAttribute()
+ doUpdateAttribute()
+ doDeleteAttribute()
}
class ProductAttributeController{
- productAttributeService: ProductAttributeService
+ createNewProductAttribute()
+ doCreateNewProductAttribute()
+ updateProductAttribute()
+ doUpdateProductAttribute()
+ doDeleteProductAttribute()
}
}
@enduml |
99c91ee8a7aae1a1f1f88d548626ea130911ec99 | f5f59016295a183565af167a861e2c8db9f1b070 | /diagrams/src/Application/Models/DataTransferObjects/BrokerUpdateDto.puml | fa1b069e335c52e40a18efeff7f32a54d3cf6fbb | [
"MIT"
] | permissive | converge-app/collaboration-broker-service | fb21788289134c265f1cd5db3ceaa3f32ba18406 | 69c676a5bbb3e602f939f9c91680560a6c63926a | refs/heads/master | 2023-03-19T11:36:58.937045 | 2019-12-17T12:06:26 | 2019-12-17T12:06:26 | 218,333,241 | 0 | 0 | MIT | 2023-03-04T01:16:20 | 2019-10-29T16:29:32 | C# | UTF-8 | PlantUML | false | false | 158 | puml | @startuml
class BrokerUpdateDto {
+ Id : string <<get>> <<set>>
+ ProjectId : string <<get>> <<set>>
+ FileUrl : string <<get>> <<set>>
}
@enduml
|
ee92ebf9cd3588682461887b0cc42b20d2a068ed | 801880bc4b1c286292a21989afe7a0f8f79fb647 | /docs/aggregates.plantuml | 7fc881c1e772a50b387aa5e440dc08355c82ca36 | [] | no_license | Firat-Bayram/loanapp | 9130bc25b6987b6d6820552a3942f409eedb4eea | 6087296370beca5beaa047d06c968e240f634d7e | refs/heads/master | 2023-03-23T08:38:35.771819 | 2021-03-13T00:16:19 | 2021-03-13T00:16:19 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,837 | plantuml | @startuml
class LoanApplication <<aggregate root>> {
LoanApplicationNumber Number
LoanApplicationStatus Status
ScoringResult Score
Decision Decision
Registration Registration
void Evaluate(ScoringRules rules)
void Accept(Operator decisionBy)
void Reject(Operator decisionBy)
}
class Customer <<value object>> {
NationalIdentifier NationalIdentifier
Name Name
DateTime Birthdate
Amount MonthlyIncome
Address Address
AgeInYears AgeInYearsAt(DateTime date)
}
class Loan <<value object>> {
Amount LoanAmount
int LoanNumberOfYears
Percent InterestRate
Amount MonthlyInstallment()
DateTime LastInstallmentsDate()
}
class Property <<value object>> {
Amount Value
Address Address
}
class Decision <<value object>>{
DateTime DecisionDate
OperatorId DecisionBy
}
class Registration <<value object>>{
DateTime RegistrationDate
OperatorId RegisteredBy
}
class Operator <<aggregate root>> {
bool CanAccept(Amount loanLoanAmount)
}
class ScoringRules <<domain service>>{
}
class NationalIdentifier <<value object>>{
string Value
}
class Address <<value object>> {
string Country
string ZipCode
string City
string Street
}
class AgeInYears <<value object>>{
int age
AgeInYears Between(DateTime start, DateTime end)
}
LoanApplication *--> Customer : customer
LoanApplication *--> Loan : loan
LoanApplication *--> Property : property
LoanApplication *--> Decision : decision
LoanApplication *--> Registration : registration
LoanApplication .left.> ScoringRules : <<uses>>
LoanApplication .right.> Operator : <<uses>>
Customer *--> NationalIdentifier : nationalIdentifier
Customer *--> Address :address
Customer ..> AgeInYears : <<uses>>
Property *--> Address :address
@enduml |
9cdf31ec18a2f2b18be0afb9d9fcf6190607b995 | 2a5138a8138272a94b4f26a3dffa2d24e1a0eb7d | /docs/Diagrams/CharacterCreationModel.plantuml | 2a4f6193060cb43e23abd95157679ec7e11ea311 | [] | no_license | Stryse/DungeonGame | f109e9f7a30689aa52c7f60f9316351eb41abaae | f0a8aeb47a70f00c42bcd26475f51f31faf13654 | refs/heads/master | 2022-12-29T09:17:42.875468 | 2020-10-18T21:03:47 | 2020-10-18T21:03:47 | 300,079,856 | 0 | 0 | null | 2020-09-30T22:36:53 | 2020-09-30T22:35:56 | C++ | UTF-8 | PlantUML | false | false | 1,080 | plantuml | # GameLoaderModel
@startuml
left to right direction
skinparam ClassAttributeIconSize 0
class CharacterCreationModel{
-maxSkillPoints : **int**
-playerName : **QString**
-playerPortraitPath : **QString**;
-playerStrength : **int**;
-playerIntellect : **int**;
-playerStamina : **int**;
-playerDataAccess : **IPlayerDataAccess***
----
makePlayer() : **Player***
-- <<getter>> --
getPlayerName() : **QString**
getPlayerStrength() : **int**
getPlayerIntellect() : **int**
getPlayerStamina() : **int**
getMaxSkillPoints() : **int**
-- <<setter>> --
setPlayerName(const QString& value) : **void**
setPlayerPortraitPath(const QString& value) : **void**
addPointStrength(int value) : **int**
addPointIntellect(int value) : **int**
addPointStamina(int value) : **int**
getPlayerDataAccess() : **IPlayerDataAccess***
}
CharacterCreationModel -left-|> QObject
interface IPlayerDataAccess <<interface>>
CharacterCreationModel <-- PlayerDataAccessImpl : <<injected>>
IPlayerDataAccess <|-right- PlayerDataAccessImpl : <<implements>>
CharacterCreationModel --> Player : <<creates>>
@enduml |
8f3b027dfba560a7a83dc5eb18ac6c0989e9b9ad | dcca4c0aa19e3085bd37640a52b07fa02396b1d8 | /2.Creational Design Patterns/1.Factory Method/2.Factory Concrete Creator/src/main/resources/diagram/Concrete Factory Creator.puml | 9dabd540e4031b919ba7cad5a3616e5384035c50 | [] | no_license | drronidz/design-patterns-java-maven | 8df24c5bdd021dd45018faf3937b767609e880eb | aa580cd4cc6caa25a418a71bd5af06f86bd354a6 | refs/heads/main | 2023-07-15T15:26:04.451482 | 2021-08-25T23:45:35 | 2021-08-25T23:45:35 | 392,855,046 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 723 | puml | @startuml
'https://plantuml.com/class-diagram
skinparam class {
BackgroundColor white
BorderColor black
ArrowColor black
}
skinparam note {
BackgroundColor lightgrey
BorderColor black
}
interface Creator {
+ createProduct() : Product
}
interface Product {
+ getName() : String
}
class ConcreteCreator {
+ createProduct() : Product
}
class ConcreteProduct {
+ getName() : String
}
class ConcreteProductOne {
+ getName() : String
}
class ConcreteProductTwo {
+ getName() : String
}
Creator <|-- ConcreteCreator
Product <|-- ConcreteProduct
ConcreteProduct <|-- ConcreteProductOne
ConcreteProduct <|-- ConcreteProductTwo
ConcreteCreator ..> ConcreteProduct
Creator ..> Product
@enduml |
0c7398134a50468fdb3491e24f4566af433b61e4 | e1ccd3df82ae197f3c0925c4685557bd9a40e0e5 | /src/main/java/ex41/ex41-plantuml.puml | 71a78eca603bc44b95b2b5174d510ba32e4b0144 | [] | no_license | ttcole1254/coleman-cop3330-assignment3 | 1aec463c661d4a64eb3810def8818d5d5242e5c4 | d46d8d92cd2b60d3c183bfc1a13d773a42cb005d | refs/heads/master | 2023-08-27T22:29:53.914222 | 2021-10-12T03:44:16 | 2021-10-12T03:44:16 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 330 | puml | @startuml
class NameSorter {
+(static)readFile: BufferedReader
+(static)writeFile: BufferedWriter
+void main(args: String[])
+fileRead(inout inputFile: BufferedReader, fileName: String): ArrayList<String>
+fileWrite(inout outputFile: BufferedWriter, sortedString: ArrayList<String>, String fileName): BufferedWriter
}
@enduml |
5fe2659889b1d0db97b72ccabdda6de2c54b0555 | 372d0fe94d7e59fd48620c687fee8fc94841408b | /deadheat-lock-example/microservices-example/booking-service/src/main/java/com/vrush/microservices/booking/mappers/mappers.plantuml | c7b35e40df5f8a9973427706a0f494da0e9198c9 | [
"Apache-2.0"
] | permissive | vrushofficial/deadheat-lock | 4ae44e23fea2ad57db17aadeba58e39ef4f63822 | 11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2 | refs/heads/main | 2023-01-14T17:28:38.161881 | 2020-11-29T11:11:55 | 2020-11-29T11:11:55 | 310,531,739 | 2 | 1 | null | 2020-11-19T08:16:25 | 2020-11-06T08:06:52 | CSS | UTF-8 | PlantUML | false | false | 804 | plantuml | @startuml
title __MAPPERS's Class Diagram__\n
namespace com.vrush.microservices.booking {
namespace mappers {
interface com.vrush.microservices.booking.mappers.BookingMapper {
{abstract} + toDTO()
{abstract} + toDTO()
+ toDTO()
{abstract} + toEntity()
}
}
}
namespace com.vrush.microservices.booking {
namespace mappers {
interface com.vrush.microservices.booking.mappers.RoomMapper {
{abstract} + toDTO()
{abstract} + toDTO()
+ toDTO()
{abstract} + toEntity()
}
}
}
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
|
2625fcbc9e2f84f68f624c5d6d8e4fb1ebe41cab | a249c2addc54fa5250d268f1c9cb71c1f555fec4 | /learn-design-pattern/src/main/java/com/hqbhoho/bigdata/design/pattern/interpreter/interpreter.puml | e9d515d86177ff4b522b0de2b879395c9d7ecc96 | [] | no_license | hqbhoho/learn-bigdata | 3bb16248eed5498758bf3f98179242078ed6ddf7 | cb2eca9b1b795a4a8712850f0ec49a32b2f7922d | refs/heads/master | 2022-11-21T16:48:22.455348 | 2020-09-15T01:30:16 | 2020-09-15T01:30:28 | 173,652,937 | 19 | 7 | null | 2022-11-16T11:46:09 | 2019-03-04T01:31:39 | Java | UTF-8 | PlantUML | false | false | 815 | puml | @startuml
interface Expression{
{abstract} {method} + int interpreter(HashMap<String,Integer> map)
}
abstract class SymbolExpression{
{field} - Expression left
{field} - Expression right
}
class AddExpression{
{method} + int interpreter(HashMap<String,Integer>)
}
class SubExpression{
{method} + int interpreter(HashMap<String,Integer>)
}
class VarExpression{
{field} - String key
{method} + int interpreter(HashMap<String,Integer>)
}
class Calculator{
{method} - Expression prase(String calStr)
{method} + int run(String calStr,HashMap<String,Integer> map)
}
class Client
Expression <|.. VarExpression
Expression <|.. SymbolExpression
SymbolExpression <|-- SubExpression
SymbolExpression <|-- AddExpression
Expression <.. Calculator
Calculator <.. Client
@enduml |
ad75d03b3a4466eb02e7693a2146184c2a45267d | e37016f9bea6aac6954954ba33bde705a1245047 | /zx-note/src/test/graph/lucene/lucene-core/store/Directory类图.puml | c66ac4b698404c09744dcbe6c7af8a87bda7113d | [] | no_license | zouxiang1993/es_lucene | 11d558d98a9847b9df1d9d575bc9b362ac548f9b | c463345975db890105124c429965ed96ebd8bf92 | refs/heads/master | 2023-07-19T21:03:26.092718 | 2019-08-27T16:24:46 | 2019-08-27T16:24:46 | 148,873,770 | 3 | 3 | null | 2023-07-18T02:50:13 | 2018-09-15T05:47:30 | Java | UTF-8 | PlantUML | false | false | 2,360 | puml | @startuml
skinparam class{
BackgroundColor<<Important>> PaleGreen
BorderColor<<Important>> SpringGreen
}
abstract class Directory{
Directory表示一些扁平文件的集合, 这些文件都只能在创建时写入一次。
写入之后,就只能读或者删除,不可再修改。
---
// 返回目录下所有文件
+{abstract} String[] listAll()
+{abstract} void deleteFile(String name)
+{abstract} long fileLength(String name)
// 创建一个新文件
+{abstract} IndexOutput createOutput(String name, IOContext context)
// 创建一个临时文件
+{abstract} IndexOutput createTempOutput(String prefix, String suffix, IOContext context)
// 确保对这些文件所有的写入都被转移到稳定的存储介质上去。
+{abstract} void sync(Collection<String> names)
// 重命名文件
+{abstract} void rename(String source, String dest)
// 持久化Directory的元数据
+{abstract} void syncMetaData()
// 打开一个文件
+{abstract} IndexInput openInput(String name, IOContext context)
// 获取锁
+{abstract} Lock obtainLock(String name)
}
class FileSwitchDirectory extends Directory {
// ??????
}
abstract class BaseDirectory extends Directory{
// Directory具体实现的基类,使用LockFactory来获取锁
# LockFactory lockFactory
}
class RAMDirectory extends BaseDirectory{
// 在内存中的实现
}
abstract class FSDirectory extends BaseDirectory{
// 在文件系统上的实现
---
// 根据当前的环境来选择使用哪一种实现。
+ {static}FSDirectory open(Path path, LockFactory lockFactory)
---
#Path directory
}
class SimpleFSDirectory extends FSDirectory{
//
}
class MMapDirectory<<Important>> extends FSDirectory{
}
class NIOFSDirectory extends FSDirectory{
}
abstract class FilterDirectory extends Directory{
// 装饰
}
class NRTCachingDirectory extends FilterDirectory{
}
class LockValidatingDirectoryWrapper extends FilterDirectory{
// 在一些写操作进行之前,提供锁的校验
}
class TrackingDirectoryWrapper extends FilterDirectory {
// 可以记录创建了哪些文件
+Set<String> getCreatedFiles()
}
class SleepingLockWrapper extends FilterDirectory{
// 如果获取锁失败,则休眠一段时间后重试。
}
@enduml |
01db9914490a2200e0823e42fb9a5a2d8dd235e5 | c452e4f63f50eca1ab44e5bb5fa557cbc5c93515 | /src/main/resources/ex42/ClassDiagrams/ConsoleIn.puml | d6c0bfd5047d4b8d564920d409facc974956fa03 | [] | 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 | 137 | puml | @startuml
'https://plantuml.com/class-diagram
class ConsoleIn {
-Scanner scanner
+ConsoleIn()
+String readLine()
}
@enduml |
3de018bbca342f2e716d5f9b1111ff8ced3a57c2 | 4c9d31f780dff82dd5fa852ca376f02218d20fd3 | /1/model.puml | b9312be4ffa8d98812d5f5bfa1cfc1a1426edbf4 | [] | no_license | procsy-tech/attorney | 75921a721b6854b4d5182b07cc1f0823cf4cb302 | 96f8a1fa9c72f8298601b61cda27ace1aa7642d3 | refs/heads/main | 2023-07-07T14:14:54.314054 | 2021-08-17T13:46:57 | 2021-08-17T13:46:57 | 397,258,413 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 158 | puml | @startuml
class POA {
String DateFrom
String DateTo
String AuthorityINN
Integer Create(POA POA)
ConfirmAttorney(String ID)
}
@enduml
|
986a9237b97d7e52287fc8f93db4e36352af5baa | cb1bdaea1cc52faec0b4614ea5adb47852bc5c13 | /app/src/test/java/com/utilisateur/orthomem/orthomem.plantuml | aa8bf533b00e3fb7cd2a80392afcd51e9cca2368 | [] | no_license | rv25oc/orthomem | 88e6c775438c02a58fdbadbfc28104c4a4ec9287 | 8c5679a3a94f742c9356a9cdf484b74a4a27c058 | refs/heads/master | 2020-03-21T15:56:09.569758 | 2018-10-09T11:09:08 | 2018-10-09T11:09:08 | 136,359,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 365 | plantuml | @startuml
title __ORTHOMEM's Class Diagram__\n
package com.domain.utilisateur.orthomem {
class ExampleUnitTest {
+ addition_isCorrect()
}
}
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
|
e75cab64501b3bf0319b257f488779edbad96a08 | 62453b0de88be48fb9d898af2702339d6c3a0e6a | /src/main/java/ex41/ex41_UML.puml | 302254032520f8420bba195a097078b449673ab1 | [] | no_license | korinneramcharitar/Ramcharitar-Cop3330-assignment3 | e66412f9f0c8fe14c0b056a5a41e008c4e2dbb6d | b6d442e6d899d925d2b2cdaddf42fb3f0fbadb58 | refs/heads/master | 2023-05-09T17:55:14.733410 | 2021-06-20T22:40:23 | 2021-06-20T22:40:23 | 378,004,848 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 94 | puml | @startuml
class NameSorter{
read file
print file data
}
class Array{
sort array
}
@enduml |
753f52fc741dce1e2527a911b17ced50f1f4b041 | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Contracts.Admin/Catalog/Product.puml | 8d4629bf2bf2a784560040297670a32d5d0e2293 | [
"BSD-3-Clause"
] | permissive | noelmartens/TransitionAcademy | 4e02379d234aa4859a497ee2846420f4c55b9e12 | 3b95a5c737ab7b1497b77d455cf64caa73f69e1f | refs/heads/master | 2023-06-14T05:25:35.514249 | 2021-07-02T19:40:29 | 2021-07-02T19:40:29 | 362,512,351 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 520 | puml | @startuml
class Product {
+ Id : int <<get>> <<set>>
+ CatalogId : int <<get>> <<set>>
+ SellerProductId : string <<get>> <<set>>
+ Name : string <<get>> <<set>>
+ Summary : string <<get>> <<set>>
+ Detail : string <<get>> <<set>>
+ Price : decimal <<get>> <<set>>
+ IsDownloadable : bool <<get>> <<set>>
+ IsTaxExempt : bool <<get>> <<set>>
+ IsAvailable : bool <<get>> <<set>>
+ SupplierName : string <<get>> <<set>>
+ ShippingWeight : decimal <<get>> <<set>>
}
@enduml
|
0076ea720884c718818cc22cd2d14756b5cf8f46 | 347956138f04283b0e74f1773df476d5b981e581 | /src/hello_imgui/doc_src/hello_imgui_diagram.puml | 2b3342eef0971c4e55212a0f4644ae5c61aea6ec | [
"MIT"
] | permissive | lineCode/hello_imgui | 3c39a80622f0c11417486fb6ce528beac21aa11f | aa3b848514a024bdcddeabd8789681a8ba55e466 | refs/heads/master | 2022-10-23T15:36:19.513176 | 2020-06-19T23:27:16 | 2020-06-19T23:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,407 | puml | @startuml
namespace HelloImGui {
enum _ <functions>{
+ void Run(RunnerParams &)
+ void Run(VoidFunction, windowSize, title)
}
_ --> RunnerParams: use
class RunnerParams <struct> {
RunnerCallbacks callbacks;
AppWindowParams appWindowParams;
ImGuiWindowParams imGuiWindowParams;
DockingParams dockingParams;
bool appShallExit = false;
}
class RunnerCallbacks <struct> {
---
VoidFunction ShowGui = {};
VoidFunction ShowMenus = {};
VoidFunction ShowStatus = {};
VoidFunction PostInit = {};
//Handle any backend event (e.g.SDL_Event)
AnyBackendEventCallback = {};
VoidFunction LoadAdditionalFonts =
LoadDefaultFont_WithFontAwesome;
VoidFunction SetupImGuiConfig =
SetupDefaultImGuiConfig;
VoidFunction SetupImGuiStyle =
SetupDefaultImGuiStyle;
mobileCallbacks;
}
class MobileCallbacks <struct>{
---
Only available on mobile devices
---
VoidFunction OnDestroy = {};
VoidFunction OnLowMemory = {};
VoidFunction OnPause = {};
VoidFunction OnResume = {};
}
RunnerCallbacks *-- MobileCallbacks
class AppWindowParams <struct> {
std::string windowTitle = "";
ImVec2 windowSize = {800.f, 600.f};
bool maximized = false;
bool fullScreen = false;
ImVec2 windowPosition = {-11000.f, -1.f};
}
class ImGuiWindowParams <struct> {
defaultImGuiWindowType = ProvideFullScreenWindow;
ImVec4 backgroundColor;
bool showMenuBar = false;
bool showMenu_App_QuitZoom = true;
bool showMenu_View = true;
bool showStatusBar = false;
bool showStatus_Fps = true;
bool configWindowsMoveFromTitleBarOnly = true;
}
class DockingParams <struct> {
vector<DockingSplit> dockingSplits;
vector<DockableWindow> dockableWindows;
bool resetUserDockLayout = true;
bool wasDockLayoutApplied = false;
}
class DockableWindow <struct> {
string label;
DockSpaceName dockSpaceName;
VoidFunction GuiFonction = {};
bool isVisible = true;
bool canBeClosed = true;
}
class DockingSplit <struct> {
DockSpaceName initialDock;
DockSpaceName newDock;
ImGuiDir_ direction;
float ratio = 0.25f;
}
RunnerParams *-- RunnerCallbacks
RunnerParams *-- AppWindowParams
RunnerParams *-- ImGuiWindowParams
RunnerParams *-- DockingParams
DockingParams *-- DockableWindow : vector
DockingParams *-- DockingSplit : vector
}
@enduml |
05de55ed0ae07f850225ea44577650b6b9bdc824 | ddd9fceda7accb11f6e5c8f3614ee9b5a717d8e8 | /node/lib/internal/linkedlist.puml | fb49df6526a7a07bb5c8cf23c51398c5a156367d | [] | no_license | Ayase-252/note-figures | e2cf7578aa9363346ac0c97bac38dc88e2afd6c8 | 259f9b7eb718359e7c63f9c5da97b1e6e098b3c2 | refs/heads/master | 2023-04-14T13:19:23.107968 | 2021-05-01T11:26:13 | 2021-05-01T11:26:13 | 337,063,921 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 299 | puml | @startuml linkedlist
namespace lib {
namespace internal {
namespace linkedlist <<internal>> {
class L {
{static} init(list)
{static} peek(list)
{static} remove(item)
{static} append(list, item)
{static} isEmpty(list)
}
}
}
}
@enduml
|
d4eb8aa0bf821197f5adcfafd6ce603ad21876df | 9022c3e345dfbb67dd1e449489e14612f5aa89ff | /Clase/Prototype/crtpPrototype.puml | ade4b3b405e49afc50cdba68d14a86609729e7ed | [] | no_license | JoanAndoni/AyMMS | c6c937a55bbf7d12176100d69244ca93066f8ae4 | 9b72fb0eadbcec776c5593d3862e68fa3294cdf1 | refs/heads/master | 2021-08-23T18:00:32.843161 | 2017-12-06T00:40:15 | 2017-12-06T00:40:15 | 113,249,145 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 906 | puml | @startUML
class Mundo{
+string name
+Mundo(string nombre)
+name(nombre)
}
class Tclone <<Template <class SubClase>>>{
+Personaje* clone()
}
class Personaje{
+string nombre
+int telefono
+string correo
+Mundo* mundo
+Personaje() = default
+Personaje(string nombre) : nombre(nombre){}
+virtual Personaje* clone() = 0
}
class Princesa <<public Personaje>>{
+Princesa(string n) : Personaje(n){}
+Princesa(const Princesa& p)
+void grita()
+Personaje* clone()
}
class Villano <<public Personaje>>{
+Villano(string n) : Personaje(n){}
+void secuestra()
+Villano(const Villano& v)
+Personaje* clone()
}
class Heroe <<public Personaje>>{
+Heroe(string n) : Personaje(n){}
+void salvar()
+Heroe(const Heroe& h)
+Personaje* clone()
}
Tclone <|-- Princesa
Tclone <|-- Villano
Tclone <|-- Heroe
Tclone --|> Personaje
Mundo --* Personaje
@endUML
|
3e49f3b89cec081b96660a07665a87acf6045809 | 544a5b602c038888f8597b5c6fba5293d166f63b | /src/main/java/com/master/chapter028/Mediator-Pattern.puml | 5b978aee506fd0252c02f61811971cbd5480d439 | [] | no_license | ColorXJH/Design-Pattern-Learning | 50d63ac6be15fd3d8947dbd89d9272de358bb9fe | 487a017f1688ab764e9ba98360e3a55b8a1858e7 | refs/heads/master | 2023-03-30T06:46:37.633591 | 2021-03-20T13:32:12 | 2021-03-20T13:32:12 | 349,720,860 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 709 | puml | @startuml
'https://plantuml.com/class-diagram
/'中介者抽象类'/
abstract class Mediator{
}
/'具体子类'/
class ConcreteMediator{
/'维护同事集合'/
private Colleage hashmap
void getMessage();
}
Mediator<|--ConcreteMediator
/'同事抽象类'/
class Colleage{
void sendMessage();
Mediator getMediator();
}
class ConcreteColleage{
public ConcreteColleage(){
/'构造器中拿到Mediator,并将自己放入到其中的hashmap中去'/
};
}
Colleage<|--ConcreteColleage
/'关联关系'/
/'你中有我我中有你'/
Mediator--Colleage
/'具体中介者会去聚合同事类接口'/
ConcreteMediator o-- Colleage
ConcreteColleage ..>Mediator
@enduml |
ee005d615d778e4229e9eab1ff1882b378f9e2cf | dc6bc4b4d04aaedd50aaa703bfa05972a32239b0 | /openapi2puml-core/openapi2puml-core.plantuml | f87e071b12ba93c0210c0c08355899370e86297f | [
"Apache-2.0"
] | permissive | openapi2puml/openapi2puml | 1a4586b475b88e5c0f2f676fbf85895d6ab745d7 | db2886ffd2b3e4302c8647ce93a9a229391e912a | refs/heads/master | 2022-02-28T21:11:18.269239 | 2022-01-24T09:25:48 | 2022-01-24T09:25:48 | 203,056,881 | 7 | 6 | Apache-2.0 | 2022-01-24T09:25:49 | 2019-08-18T21:10:51 | Java | UTF-8 | PlantUML | false | false | 3,007 | plantuml | @startuml
title __OPENAPI-PLANTUML-CORE's Class Diagram__\n
namespace org.openapi2puml {
class org.openapi2puml.CliArgs {
}
}
namespace org.openapi2puml {
namespace openapi {
class org.openapi2puml.openapi.OpenApi2PlantUML {
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.FormatUtility {
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.MustacheUtility {
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.PlantUMLCodegen {
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.PlantUMLGenerator {
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
namespace helpers {
class org.openapi2puml.openapi.plantuml.helpers.PlantUMLClassHelper {
}
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
namespace helpers {
class org.openapi2puml.openapi.plantuml.helpers.PlantUMLInterfaceDiagramHelper {
}
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
namespace helpers {
class org.openapi2puml.openapi.plantuml.helpers.PlantUMLRelationHelper {
}
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
namespace vo {
class org.openapi2puml.openapi.plantuml.vo.ClassDiagram {
}
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
namespace vo {
class org.openapi2puml.openapi.plantuml.vo.ClassMembers {
}
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
namespace vo {
class org.openapi2puml.openapi.plantuml.vo.ClassRelation {
}
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
namespace vo {
class org.openapi2puml.openapi.plantuml.vo.InterfaceDiagram {
}
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
namespace vo {
class org.openapi2puml.openapi.plantuml.vo.MethodDefinitions {
}
}
}
}
}
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
|
4c7ff1445231d0e486d5d28e697aff5616461275 | 7408ed3057898965559e73966a3a0dbeee5c03d0 | /out/production/design_patterns/composite/compositeUML.puml | 46ec1bec5fd01faefcfa765809e14cbd25e19ec4 | [] | no_license | wangzx-github/design_patterns | 85239a91fd5d518d7b79da54819c065663307058 | 862dd5898aaf9b655acf76e84d400bfdce2ee931 | refs/heads/master | 2023-07-31T18:37:13.734533 | 2021-09-21T17:29:36 | 2021-09-21T17:29:36 | 408,902,822 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 648 | puml | @startuml
'https://plantuml.com/object-diagram
abstract class OrganizationComponent{
private String name
private String des
public void add()
public void remove()
public void print()
}
note as details
适合:需要遍历组织机构,或者处理的对象具有树形结
构时,同具有很多的共性
不适合:叶子节点和非叶子节点有很高的差别
end note
class College
class Department
class University
Class Client
College --|> OrganizationComponent
Department --|> OrganizationComponent
University --|> OrganizationComponent
Department --* College
College --* University
Client ..> OrganizationComponent
@enduml
|
3e66a28b5119743e21c795dc4c582c004f3374a4 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AssociateRoleReference.puml | 1aff4309ff94c04b8d142008ccb480405796c159 | [] | 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 AssociateRoleReference [[AssociateRoleReference.svg]] extends Reference {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
obj: [[AssociateRole.svg AssociateRole]]
}
interface Reference [[Reference.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
}
@enduml
|
2166a0d1ab39c5bf851e4260430b0d88a21e8f56 | 9781f58e6c269536a9c1deca8956677427eb294c | /scratchWork/entities.puml | 6d79104b831338f72967cfba6fa8924dd2f76350 | [
"Apache-2.0"
] | permissive | sdp-resources/MajorPlanner | 6cf53cc9465741e99c1eb0674392c06782addffe | 33e1007557d6dc0191a4d6dd66a8d1811ee45fe2 | refs/heads/master | 2022-11-27T00:19:19.289809 | 2019-12-10T17:38:29 | 2019-12-10T17:38:29 | 212,200,621 | 0 | 0 | Apache-2.0 | 2022-11-16T08:57:00 | 2019-10-01T21:13:17 | Java | UTF-8 | PlantUML | false | false | 566 | puml | @startuml
skinparam linetype ortho
class Schedule
class Major
abstract class Requirement
class TagRequirement extends Requirement
class ElectiveRequirement extends Requirement
class OptionsRequirement extends Requirement
class CourseRequirement extends Requirement
class ExclusionRequirement extends Requirement
class Course {
- name
- description
- termRestriction
- canRepeat
- tags
- status
}
class Prerequisite
Schedule o- Major
Major o- Requirement
OptionsRequirement o-- Course
CourseRequirement --> Course
Course o-- Prerequisite
@enduml |
b5c50ae3a4d7c4791ad631b6b7332f05bb872ab8 | db30c89cdd73a338ef664e2342ebea4e617c9716 | /test/PlantUmlClassDiagramGeneratorTest/uml/withoutPrivate.puml | 6774dadd2fd80c06e36056b00f8d784a720ac263 | [
"MIT"
] | permissive | Vivraan/PlantUmlClassDiagramGenerator | 33b4b4e5bf40d3173f7b6bc1f22631480633d709 | d5e4e571f7dbade27da465729bc09afc319fc646 | refs/heads/master | 2023-01-03T13:02:42.886516 | 2020-10-31T00:22:02 | 2020-10-31T00:22:02 | 291,209,572 | 1 | 0 | MIT | 2020-08-29T05:47:33 | 2020-08-29T05:47:32 | null | UTF-8 | PlantUML | false | false | 1,642 | puml | @startuml
class ClassA {
# X : double = 0
# Y : double = 1
# Z : double = 2
# PropA : int <<get>>
# <<internal>> PropB : string <<get>> <<protected set>>
<<internal>> PropC : double <<get>> = 3.141592
+ PropD : string <<get>>
+ ClassA()
{static} ClassA()
# <<virtual>> VirtualMethod() : void
+ <<override>> ToString() : string
+ {static} StaticMethod() : string
+ ExpressonBodiedMethod(x:int) : void
}
abstract class ClassB {
+ {abstract} PropA : int <<get>> <<protected set>>
# <<virtual>> VirtualMethod() : string
+ {abstract} AbstractMethod(arg1:int, arg2:double) : string
}
class ClassC <<sealed>> {
+ <<override>> PropA : int <<get>> <<protected set>> = 100
+ <<event>> PropertyChanged : PropertyChangedEventHandler
+ <<override>> AbstractMethod(arg1:int, arg2:double) : string
# <<override>> VirtualMethod() : string
}
class Vector <<struct>> {
+ X : double <<get>>
+ Y : double <<get>>
+ Z : double <<get>>
+ Vector(x:double, y:double, z:double)
+ Vector(source:Vector)
}
enum EnumA {
AA= 0x0001,
BB= 0x0002,
CC= 0x0004,
DD= 0x0008,
EE= 0x0010,
}
class NestedClass {
+ A : int <<get>>
}
class "IList`1"<T> {
}
class InnerClass {
+ X : string <<get>> = "xx"
+ MethodX() : void
}
class InnerStruct <<struct>> {
+ A : int <<get>>
+ InnerStruct(a:int)
}
ClassB --> "publicA" ClassA
ClassB o-> "listOfA<ClassA>" "IList`1"
ClassB <|-- ClassC
INotifyPropertyChanged <|-- ClassC
ClassC --> "PropB" ClassB
NestedClass --> "B" InnerClass
NestedClass +-- InnerClass
InnerClass +-- InnerStruct
@enduml
|
e298c9979dbfaca692a3e599eed879e3f3063123 | 3e8de74dfe19cd437fd7842887394d4921a109d7 | /docs/images/fabrique-c.plantuml | a3b2bd536b47d7432d9db018709d343764c5b5a2 | [] | no_license | jmbruel/InnopolisDesignPatterns | 62c5f1df870883cd44245d6459243c83b96d0995 | a9ffbfc16a29ed3d560d5be12e8fb1d2f1bed50e | refs/heads/master | 2021-02-04T20:34:22.378185 | 2020-11-16T17:40:28 | 2020-11-16T17:40:28 | 243,707,157 | 0 | 7 | null | 2020-10-23T08:58:33 | 2020-02-28T07:49:59 | JavaScript | UTF-8 | PlantUML | false | false | 539 | plantuml | @startuml
'-----------------------------------
' UML concepts illustrated
' JMB 2014
'-----------------------------------
'hide circle
hide empty members
hide empty methods
abstract class c as "Createur" {
}
note right: produit = fabrique();
abstract class p as "Produit"
c : {abstract} +fabrique()
c : +uneOperation()
class CreateurConcret {
+fabrique()
}
note right: return new ProduitConcret();
'p <|-- ProduitConcret
class ProduitConcret
'c <|-- CreateurConcret
'p "+produit" <- c
'ProduitConcret <. CreateurConcret
@enduml
|
d5407cfd435f30faadb0db63dd7edd379788f712 | 9b455a89aa9fe70b20b4b57f6216cd645a18af34 | /src/main/java/com/company/creational/simplefactory/SimpleFactory.puml | 8dc93823c252efbcd06f68d0eeca9fa7fa336f3f | [] | no_license | guvenbe/DesignPatternsCoffeePowered | 4f99b36b6974399425177e83d5fdde6f3f067ee6 | 126a47351a8a3a3b2169f73b8e03f2c492992bc6 | refs/heads/master | 2023-06-30T02:32:34.008742 | 2021-08-02T02:16:40 | 2021-08-02T02:16:40 | 390,589,880 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 522 | puml | @startuml
'https://plantuml.com/class-diagram
skinparam handwritten true
class client{}
class SimpleFactory{
+ {Static} getProduct(String): Product
}
note top of SimpleFactory
Role - SimpleFactrory
-provide a static method to get
instance of Product subclass
end note
class Product{}
note top of Product
Role - Product
-Objects of this Class & it's
subclasses are needed
end note
class ProductA{}
class ProductB{}
client->SimpleFactory
SimpleFactory -> Product
Product -D-> ProductA
Product -D-> ProductB
@enduml |
b731af8dfd55c8d2d5045112b8713bbe5c4e535f | 186819bc98500f794e563bd3ba5a23073756a2ba | /PSP2/Hospital/src/main/java/com/hospital/Hospital/facadeService/drugService/drugService.plantuml | d4b4a545d2e4fa321ad55bcfc570057ad6db0bbf | [] | no_license | macro161/PSP | 0e53943e4f8568b2c4b788524dc9e12f276d5c9e | 7e5e094bbe42af30006fb28d541229dea4efb610 | refs/heads/master | 2020-03-30T08:04:17.541705 | 2018-12-07T20:24:18 | 2018-12-07T20:24:18 | 150,986,741 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 436 | plantuml | @startuml
title __DRUGSERVICE's Class Diagram__\n
package com.hospital.Hospital {
package com.hospital.Hospital.facadeService.drugService {
interface DrugService {
{abstract} + getAllDrugs()
}
}
}
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
|
c2af23c77b504148517144098c75757a0b6d5c17 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/GroupTrack.puml | cd7ee9602f1def33fb6dccbb8f579270666b3009 | [] | 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 | 153 | puml | @startuml
class GroupTrack {
}
class "IEnumerable`1"<T> {
}
TrackAsset <|-- GroupTrack
GroupTrack --> "outputs<PlayableBinding>" "IEnumerable`1"
@enduml
|
7622b10809771616067efa8d409ebb9c0d2662f5 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/Utils/Utils.puml | fdec9b4c3526a7c6ae93ad61dd9d65604da9574b | [] | 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 | 299 | puml | @startuml
class Utils <<static>> {
+ {static} AreFloatsEqual(expected:float, actual:float, epsilon:float) : bool
+ {static} AreFloatsEqualAbsoluteError(expected:float, actual:float, allowedAbsoluteError:float) : bool
+ {static} CreatePrimitive(type:PrimitiveType) : GameObject
}
@enduml
|
9dc60856e3534a22af2630c15e9b0ef74ceeabd6 | 54f0570710d72445f30bc8261595126edc5b67ca | /SQLite 21/handin/dbdia2sql.py.puml | bdcc958a3f81919a987a1fcda29d2bca3237e901 | [] | no_license | deadbok/eal_programming | cab8fc7145b5115f887a7b10aad90880a799d118 | 33bf532b397f21290d6f85631466d90964aab4ad | refs/heads/master | 2021-01-13T15:11:19.276462 | 2017-06-13T09:20:51 | 2017-06-13T09:20:51 | 76,203,290 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 442 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
scale 2
class Table {
+name
+fields
-__init__()
+parse()
+sql()
}
class ForeignKey {
+source_table
+source_field
+target_table
+target_field
-__init__()
+parse()
}
class PUMLReader {
+keywords
+tables
-__init__()
+parse()
+sql()
}
PUMLReader "? " -- "0" Table
PUMLReader "?" -- "0 " ForeignKey
@enduml |
877cbbb923aa6cf3978b8e4bacc1ada396ae0ed8 | 1411b02af9800c138c7b2c5082bf0359f6c41aca | /uml/modelo.puml | 687a2a96031776a756a045f9ae8911164b008ab6 | [] | no_license | NicoCardenas/PDSW-2018-1-PROYECTO-LosSinNombre | 5a290382eb2689ab6e9759a7312d0516e3f2d39c | b33c23cadff00ff7ae87cba5dc067a1a4527ce82 | refs/heads/master | 2020-04-04T04:57:44.879505 | 2018-12-07T22:37:55 | 2018-12-07T22:37:55 | 155,731,388 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,391 | puml | @startuml
skinparam class {
BackgroundColor lightcyan
ArrowColor teal
BorderColor slateblue
}
skinparam stereotypeCBackgroundColor YellowGreen
together {
class Usuario
class Comentario
class Vote
}
T_tipo "1" -- "0..*" Usuario : use
Usuario "0..*" -- "1" Vote : use
Usuario "0..*" - "1" Comentario : use
Intention "0..*" --- "1" Usuario : use
Intention "0..*" --- "1" Vote : use
Intention "0..*" --- "1" Comentario : use
Intention "0..*" - "1" T_palabras : use
(Intention, T_palabras) . T_intencion_palabra
class T_tipo {
<<PK>> user_id : int
type : varchar(50)
}
class Usuario {
<<PK>> id : int
full_name : varchar(255)
email : varchar(255)
department_area : varchar(50)
password : varchar(30)
<<FK>> T_tipo_user_id : int
}
class Vote {
<<PK>> id : int
like_dislike : boolean
<<FK>> intention_id : int
<<FK>> users_id : int
}
class Comentario {
<<PK>> id : int
content : varchar(500)
<<FK>> user_id : int
<<FK>> intention_id : int
}
class Intention {
<<PK>> id : int
<<FK>> user_id : int
state : varchar(25)
content : varchar(1000)
date_of_creation : date
title : varchar(50)
----
}
class T_palabras {
<<PK>> id : int
tag : varchar(50)
}
class T_intencion_palabra {
<<PK>> <<FK>> Intention_id : int
<<PK>> <<FK>> T_palabras_id : int
}
hide circle
@enduml |
25a8eca3808aba9405cd7d83e3d71e0b8008698a | 1f20b5b46a1d8e1936628b16e578b8158a0dab4f | /matchers-doc/src/main/asciidoc/chapters/images/modules-naive-separation-with-split-packages.puml | 10e21e61df60fd970bb9746c0df9bc34f9a53f30 | [
"MIT"
] | permissive | mguenther/string-matchers | 6321967e047c336f08869b34113b908c56a0e28c | 83700374e00bf62f52a60d3dc0ecf033030187fb | refs/heads/master | 2021-03-30T17:54:39.042919 | 2019-02-03T08:36:58 | 2019-02-03T08:36:58 | 111,335,740 | 3 | 2 | null | 2019-02-03T08:36:59 | 2017-11-19T22:03:30 | CSS | UTF-8 | PlantUML | false | false | 621 | puml | @startuml
skinparam shadowing false
skinparam componentStyle uml2
skinparam linetype ortho
skinparam frame {
borderColor Transparent
backgroundColor Transparent
fontColor Transparent
}
package "<b>matchers.api</b>" <<Java Module>> {
package net.mguenther.matchers {
interface Matcher {
+match(haystack: String, needle: String): List[Integer]
}
}
}
package "<b>matchers.impl</b>" <<Java Module>> {
package "net.mguenther.matchers " {
class BruteForceMatcher
class KnuthMorrisPrattMatcher
}
}
BruteForceMatcher ..|> Matcher
KnuthMorrisPrattMatcher ..|> Matcher
@enduml |
dc8242c1da7efa2c0a3779b6fc3c985a9eefdfc8 | f199977acacbc34eba6514cccefaea2ce00fcde6 | /app/src/main/java/com/example/ffbfapp/model/model.plantuml | 2a0b4dc57f264cd673a2bd5faf22a72359a6ed95 | [] | no_license | mihaidragos/FFBF_App | aa03bc7f3d3e42ae31b6058262626b50498a0b03 | 5aa05649d933826ae9279d015d92d844c63628ba | refs/heads/main | 2023-01-23T08:34:23.022629 | 2020-12-03T21:10:41 | 2020-12-03T21:10:41 | 311,783,024 | 0 | 0 | null | null | null | null | WINDOWS-1252 | PlantUML | false | false | 4,806 | plantuml | @startuml
title __MODEL's Class Diagram__\n
namespace com.example.ffbfapp {
namespace model {
class com.example.ffbfapp.model.Address {
- addressHashMap : HashMap<String, String>
- city : String
- contactNo : String
- county : String
- emailAddress : String
- postcode : String
- street : String
+ Address()
+ Address()
+ addressToHashMap()
+ getCity()
+ getContactNo()
+ getCounty()
+ getEmailAddress()
+ getPostcode()
+ getStreet()
+ setCity()
+ setContactNo()
+ setCounty()
+ setEmailAddress()
+ setPostcode()
+ setStreet()
}
}
}
namespace com.example.ffbfapp {
namespace model {
enum Cuisine {
CHINESE
FRENCH
INDIAN
ITALIAN
JAPANESE
MEDITERRANEAN
MOROCCAN
ROMANIAN
SPANISH
THAI
label
}
}
}
namespace com.example.ffbfapp {
namespace model {
class com.example.ffbfapp.model.DatePickerFragment {
- onDateSetListener : OnDateSetListener
+ DatePickerFragment()
+ onCreateDialog()
+ onDateSet()
}
}
}
namespace com.example.ffbfapp {
namespace model {
class com.example.ffbfapp.model.FoodVenue {
- address : HashMap<String, String>
- description : String
- foodMenuReference : String
- imageResourceReference : String
- name : String
- rating : double
- reservationsReference : String
- reviewsListReference : String
- uid : String
+ FoodVenue()
+ FoodVenue()
+ getAddress()
+ getCuisine()
+ getDescription()
+ getFoodMenuReference()
+ getFoodVenueType()
+ getImageResourceReference()
+ getName()
+ getPriceTagValue()
+ getRating()
+ getReservationsReference()
+ getReviewsListReference()
+ getUid()
+ setAddress()
+ setCuisine()
+ setDescription()
+ setFoodMenuReference()
+ setFoodVenueType()
+ setImageResourceReference()
+ setName()
+ setPriceTagValue()
+ setRating()
+ setReservationsReference()
+ setReviewsListReference()
+ setUid()
}
}
}
namespace com.example.ffbfapp {
namespace model {
enum FoodVenueType {
R
SF
label
}
}
}
namespace com.example.ffbfapp {
namespace model {
enum PriceTag {
label
£
££
£££
}
}
}
namespace com.example.ffbfapp {
namespace model {
enum Rating {
FIVE
FOUR
NONE
ONE
THREE
TWO
label
}
}
}
namespace com.example.ffbfapp {
namespace model {
class com.example.ffbfapp.model.Review {
}
}
}
namespace com.example.ffbfapp {
namespace model {
class com.example.ffbfapp.model.TimePickerFragment {
+ TimePickerFragment()
+ onCreateDialog()
+ onTimeSet()
}
}
}
namespace com.example.ffbfapp {
namespace model {
class com.example.ffbfapp.model.User {
+ email : String
+ lastName : String
+ name : String
~ admin : boolean
~ critic : boolean
+ User()
+ User()
+ getEmail()
+ getFullName()
+ getLastName()
+ getName()
+ isAdmin()
+ isCritic()
+ setAdmin()
+ setCritic()
+ setEmail()
+ setLastName()
+ setName()
}
}
}
com.example.ffbfapp.model.DatePickerFragment .up.|> android.app.DatePickerDialog.OnDateSetListener
com.example.ffbfapp.model.DatePickerFragment -up-|> androidx.fragment.app.DialogFragment
com.example.ffbfapp.model.FoodVenue o-- com.example.ffbfapp.model.Cuisine : cuisine
com.example.ffbfapp.model.FoodVenue o-- com.example.ffbfapp.model.FoodVenueType : foodVenueType
com.example.ffbfapp.model.FoodVenue o-- com.example.ffbfapp.model.PriceTag : priceTagValue
com.example.ffbfapp.model.TimePickerFragment .up.|> android.app.TimePickerDialog.OnTimeSetListener
com.example.ffbfapp.model.TimePickerFragment -up-|> androidx.fragment.app.DialogFragment
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
|
7d08e097c8ff4c4cd7bde7e582a984a15d6ac532 | 9071e7f6557dfaa2d9621580174fed544a7331a3 | /design/object_adapter_diagram.puml | 6ed8855dfb25f478e525f67f11cf96ab05190f17 | [] | no_license | khoivudev/Adapter-facade-pattern-example | 5a33563965c74d088670110c7405b69e3ed3340a | 23bc697d30b25b30755ce2f6463c4ad33e9110a0 | refs/heads/master | 2023-08-21T10:00:02.274758 | 2021-10-22T13:40:38 | 2021-10-22T13:40:38 | 419,731,855 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 354 | puml | @startuml
class PX4Vehicle {
px4_arm()
px4_disarm()
px4_takeOff()
px4_returnHome()
}
interface Vehicle {
arm()
disarm()
takeOff()
returnHome()
}
class PX4Adapter implements Vehicle {
PX4Vehicle
arm()
disarm()
takeOff()
returnHome()
}
PX4Adapter -right-> PX4Vehicle
Client -right-> Vehicle
@enduml |
7a2594b3aa7f90e2b3ac9f225955783d2bd400fb | f1769f2cd4755d4107d1f7b7b40cc8a24e7cfdad | /todoc-master/app/src/main/java/com/athand/todoc/Class_Diagram.puml | de7a86aedbe7133167b4754fd4dc8de4ac1ba0bc | [] | no_license | syguthub/Projet_5 | fde97c3236674f23b5010bcb1cc81ad272558b77 | a06c2cf8b95cf8e7e5bf34c23160362462af40d3 | refs/heads/master | 2022-11-11T17:36:27.108894 | 2020-06-28T12:59:47 | 2020-06-28T12:59:47 | 270,908,485 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,969 | puml | @startuml
skinparam class {
borderColor black
backgroundColor<< interface >> GreenYellow
backgroundColor<< class >> LightCyan
backgroundColor<< static >> NavajoWhite
backgroundColor<< abstract >> pink
backgroundColor<< enum >> application
}
class Project <<class>> {
-id : long
-name : String
-color : int
-- constructor--
+ Project(long id, @NonNull String name, @ColorInt int color)
..
+ getAllProjects() : Project[]
+ getProjectById(id) : Project
+ getId() : long
+ getName() : String
+ getColor() : int
+ setColor(color) : void
+ setName( String name) : void
+ setId(id) : void
+ toString() : String()
}
class Task <<class>> {
- id : long
- projectId :long
- name : String
- creationTimestamp : long
-- constructor--
+ Task(long projectId, @NonNull String name, long creationTimestamp)(projectId)
..
+ getId() : long
+ getProject() : Project
+ getProjectId() : long
+ getName() : String
+ getCreationTimestamp() : long
+ setId(id) : void
+ setProjectId(projectId) : void
+ setName(@NonNull String name) : void
+ setCreationTimestamp(creationTimestamp) : void
}
class TaskRecentComparator <<static>> {
+ compare(Task left, Task right) : int
}
class TaskOldComparator <<static>> {
+ compare(Task left, Task right) : int
}
class TaskAZComparator <<static>> {
+ compare(Task left, Task right) : int
}
class TaskZAComparator <<static>> {
+ compare(Task left, Task right) : int
}
interface ProjectDao <<interface>>{
get_All_Projects : LiveData <Project[]>
}
interface TaskDao <<interface>> {
delete_Task(taskId) : void
inset_Task(task) : void
get_Task: LiveData<List<Task>>
}
class ProjectDaoRepository <<class>> {
- projectDao : ProjectDao
-- constructor--
+ ProjectDaoRepository(projectDao)
..
+ get_All_Projects() : LiveData <Project[]>
}
class TaskDaoRepository <<class>> {
- taskDao : TaskDao
-- constructor--
+ TaskDaoRepository(TaskDao)
..
+ inset_Task(task)
+ delete_Task(taskId)
+ get_Tasks() : LiveData<List<Task>>
}
abstract class SaveMyTripDataBase <<abstract>> {
- {static} INSTANCE : SaveMyTripDataBase
+ {abstract} taskDao() : TaskDao
+ {abstract} projectDao() : ProjectDao
+ {static} getINSTANCE(Context context)() : SaveMyTripDataBase
- {static} prepopulateDataBase() : Callback
}
class Injection <<class>> {
+ {Static} provide_Task_Dao_Source(Context context)() : TaskDaoRepository
+ {Static} provide_Project_Dao_Source(context) : ProjectDaoRepository
+ {Static} provide_Executor() : Executor
+ {Static} provide_View_Model_Factory(context) : ViewModelFactory
}
class ViewModelFactory <<class>> {
- taskDaoSource : TaskDaoRepository
- projectDaoSource : ProjectDaoRepository
- executor : Executor
-- constructor--
+ ViewModelFactory(taskDaoSource,projectDaoSource,executor)
..
+ create(@NonNull Class<T> modelClass) : T
}
class ItemViewModel <<class>> {
- taskDaoSource : TaskDaoRepository
- projectDaoSource : ProjectDaoRepository
- executor : Executor
- current_task : LiveData <List<Task>>
- projects : LiveData <Project[]>
-- constructor--
+ ItemViewModel(taskDaoSource,projectDaoSource,executor)
..
+ init() : void
+ get_All_Projects() : LiveData <Project[]>
+ inset_Task(task) : void
+ delete_Task(taskId) : void
+ get_Tasks() : LiveData <List<Task>>
}
class MainActivity <<class>> {
- allProjects : Project[]
- tasks : ArrayList<Task> : Integer
- adapter : TasksAdapter
- {static} sortMethod : SortMethod
- listTasks : RecyclerView
- lblNoTasks : TextView
- itemViewModel : ItemViewModel
-- constructor--
+ onCreate(@Nullable Bundle savedInstanceState) : void
..
+ onCreateOptionsMenu(menu) : Boolean
+ onOptionsItemSelected(item) : Boolean
+ onDeleteTask(task) : void
+ data_Callback_AlertDialog_To_Add_A_Task(String taskName, Project taskProject) : void
- configuration_View() : void
- ItemViewModel_manager() : void
- get_Project() : void
- update_Project(project) : void
- get_Tasks() : void
- updateTasks(tasks) : void
- showAddTaskDialog() : void
- addTask(@NonNull Task task) : void
}
enum SortMethod <<enum>> {
ALPHABETICAL
ALPHABETICAL_INVERTED
RECENT_FIRST
OLD_FIRST
NONE
}
class DialogAlert <<class>> {
- dialog : AlertDialog
- dialogEditText : EditText
- dialogSpinner : Spinner
- interface_alertDialog : Interface_alertDialog
- allProjects : Project
-- constructor--
+ onCreateDialog(@Nullable Bundle savedInstanceState) : Dialog
..
+ onAttach(@NonNull Context context) : void
- onPositiveButtonClick(dialogInterface) : void
+ set_Project(Project [] allProjects)() : void
- populateDialogSpinner() : void
}
interface Interface_alertDialog <<interface>> {
+ data_Callback_AlertDialog_To_Add_A_Task(taskName,taskProject)
}
class TasksAdapter <<class>> {
- tasks : List<Task>
- deleteTaskListener : DeleteTaskListener
-- constructor--
+ TasksAdapter(@NonNull final List<Task> tasks, @NonNull final DeleteTaskListener deleteTaskListener)
..
updateTasks(@NonNull final List<Task> tasks) : void
+ onCreateViewHolder(@NonNull ViewGroup viewGroup, int viewType) : TaskViewHolder
+ onBindViewHolder(@NonNull TaskViewHolder taskViewHolder, int position) : void
+ getItemCount() : int
}
class TaskViewHolder <<class>> {
- imgProject : AppCompatImageView
- lblTaskName : TextView
- lblProjectName : TextView
- imgDelete : TextView
- deleteTaskListener : DeleteTaskListener
-- constructor--
+ TaskViewHolder(@NonNull View itemView, @NonNull DeleteTaskListener deleteTaskListener)
..
bind(task) : void
}
interface DeleteTaskListener <<interface>>{
+ onDeleteTask(task) : void
}
Task "1" --> "1" TaskAZComparator
Task "1" --> "1" TaskZAComparator
Task "1" --> "1" TaskOldComparator
Task "1" --> "1" TaskRecentComparator
ProjectDaoRepository "1" --> "1" ProjectDao
TaskDaoRepository "1" --> "1" TaskDao
TasksAdapter "1" --|> "1" TaskViewHolder
TasksAdapter "1" ..> "1" DeleteTaskListener
DialogAlert "1" ..> "1" Interface_alertDialog
MainActivity "1" --> "1" TasksAdapter
MainActivity "1" --> "1" SortMethod
MainActivity "1" --> "1" ItemViewModel
MainActivity "1" --> "1" ViewModelFactory
MainActivity "1" --> "1" Injection
MainActivity "1" --> "1" DialogAlert
MainActivity "1" --> "1" Project
Injection "1" --> "1" TaskDaoRepository
Injection "1" --> "1" ProjectDaoRepository
Injection "1" --> "1" ViewModelFactory
ViewModelFactory "1" --> "1" TaskDaoRepository
ViewModelFactory "1" --> "1" ProjectDaoRepository
ItemViewModel "1" --> "1" TaskDaoRepository
ItemViewModel "1" --> "1" ProjectDaoRepository
SaveMyTripDataBase "1" ..> "1" TaskDao
SaveMyTripDataBase "1" ..> "1" ProjectDao
Task "*" --> "1" Project
@enduml |
744a0b294617e9b52ee77be6e565276a7e02c943 | 372e13940be1f116c671dbb746617a331f06899e | /Assets/TPPackages/com.cocoplay.core/Documentation-/puml/Runtime/Singleton/Utility/SingletonUtil.puml | 45084610ca08e2ee80a00adc2cce6b8d206346ad | [] | no_license | guolifeng2018/CIGA-Game-Jam | 797734576510e27b5c5cee2eb17c1444f51d258c | fcd03e5579bef3bffe2cb51f52ba11a49a9cc02d | refs/heads/master | 2022-12-10T19:21:15.522141 | 2020-08-16T10:06:23 | 2020-08-16T10:06:23 | 285,986,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 451 | puml | @startuml
class SingletonUtil <<static>> {
+ {static} Create() : TSingleton
+ {static} Get() : TSingleton
+ {static} Bind(singleton:object) : void
+ {static} Unbind(singleton:object) : void
+ {static} CallOnCreateIfPossible(singleton:object) : void
+ {static} CallOnAwakeIfPossible(singleton:object) : void
+ {static} CallOnDestroyIfPossible(singleton:object) : void
+ {static} DefaultResourcePath() : string
}
@enduml
|
42650a344f341dbd0ab7b2a68ac17bd41dfbda43 | 20391c18be0f5d9fa3adee5029be766534a0cf8e | /state-pattern/example1/problem/uml.plantuml | e8d8252956f748ca948c9dd4568bfdabe23ca8d7 | [] | no_license | Caballerog/blog | 34ee257ea9e033dfab732d15b7eff7b2a03a59a0 | c02c18b49cd65894ebd5e4f7eebc946195cde0f6 | refs/heads/master | 2023-04-28T15:00:41.602153 | 2023-04-21T19:56:59 | 2023-04-21T19:56:59 | 169,620,009 | 28 | 7 | null | 2022-12-11T21:37:16 | 2019-02-07T18:22:56 | TypeScript | UTF-8 | PlantUML | false | false | 986 | plantuml | @startuml
skinparam titleBorderRoundCorner 15
skinparam titleBorderThickness 2
skinparam titleBorderColor blue
header
<font color=red>Warning:</font>
Educational Purposes
endheader
center footer Carlos Caballero ([[https://www.carloscaballero.io https://www.carloscaballero.io]])
title State Pattern - Problem to solve
enum State {
stateA
stateB
}
class Context {
state: State
--
+ request(operation: string)
}
note left of Context::request
switch (this.state){
case State.stateA:
if(operation === 'request1'){
...
this.state = State.stateB;
...
}else { ... }
break
case State.stateB:
if(operation === 'request1'){ ... }
else{
...
this.state = State.stateA;
...
}
}
end note
Context -> State
@enduml |
62c6bb45bfcb66d82b263820aa18cb57a16528b1 | 0ee676ceeff44ba4b842e9f0d529ba75a68b1975 | /src/OCP/OCP.plantuml | 24cffd16c37c44ee47704d3a72c7bb74b61f6165 | [] | no_license | CalanceaCatalina/TMPS | d035c519851abeeeb40cd646b9e7d536f7baa183 | 7afc84126375e091bd9aad68dbfcf9138b0e0026 | refs/heads/main | 2023-04-07T11:20:57.909790 | 2021-04-18T19:59:46 | 2021-04-18T19:59:46 | 335,952,011 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,355 | plantuml | @startuml
title __OCP's Class Diagram__\n
namespace OCP {
class OCP.Box_Type {
+ BoxType()
}
}
namespace OCP {
abstract class OCP.Boxing {
{abstract} + Boxing()
}
}
namespace OCP {
class OCP.Family_Pizza_Boxing {
+ Boxing()
+ Family_Pizza_Boxing()
}
}
namespace OCP {
class OCP.Italian_Pizza_Boxing {
+ Boxing()
+ Italian_Pizza_Boxing()
}
}
namespace OCP {
class OCP.Large_Pizza_Boxing {
+ Boxing()
+ Large_Pizza_Boxing()
}
}
namespace OCP {
class OCP.Medium_Pizza_Boxing {
+ Boxing()
+ Medium_Pizza_Boxing()
}
}
namespace OCP {
class OCP.Runner {
{static} + main()
}
}
OCP.Family_Pizza_Boxing -up-|> OCP.Boxing
OCP.Family_Pizza_Boxing o-- SRP.Prepare : prepare
OCP.Italian_Pizza_Boxing -up-|> OCP.Boxing
OCP.Italian_Pizza_Boxing o-- SRP.Prepare : prepare
OCP.Large_Pizza_Boxing -up-|> OCP.Boxing
OCP.Large_Pizza_Boxing o-- SRP.Prepare : prepare
OCP.Medium_Pizza_Boxing -up-|> OCP.Boxing
OCP.Medium_Pizza_Boxing o-- SRP.Prepare : prepare
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
|
2ba3b97986b43b09d32e845a15ae1317c8adbc1f | 5a9c3d8e6c1494f8283fd9737b5421f8a4179a35 | /ClassDiagram.puml | 33d7d1b361e59780187dccb57a61f0afd1079fec | [] | no_license | de-lachende-cavalier/enigma | f78483f5ce84d3cbfc8a88f9c063bfa4c40eeb45 | 147f5951fe5198fc403589bb632618327cc76d9b | refs/heads/main | 2023-07-09T03:36:12.809633 | 2023-07-03T16:05:40 | 2023-07-03T16:05:40 | 371,752,943 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,576 | puml | @startuml
package components {
class Rotor {
-HashMap<Character, Character> internalRotorWireSetting
-int[] tempRandom
-Integer rotationCounter
--
-initArray()
+rotate()
+reverseRotate()
+getRotationCounter()
+setRotationCounter()
+getInternalRotorWiring()
+setInternalRotorWiring()
..
+mapWires()
+connectInternalWires()
+reverseConnectInternalWires()
}
class RotorStack {
-ArrayList<Rotor> rotors
--
+getRotorNum()
+getRotorN()
}
class Stator {
-HashMap<Character, Character> internalStatorWiring
-int[] tempRandom
--
-initArray()
+getInternalStatorWiring()
+setInternalStatorWiring()
..
+mapWires()
+connectInternalWires()
+reverseConnectInternalWires()
}
class Plugboard {
-HashMap<Character, Integer> plugboardWireSetting
-int[] tempRandom
--
-initArray()
+getWireSettings()
+setWireSettings()
..
+mapWires()
+connectInternalWires()
+reverseConnectInternalWires()
}
class Reflector {
-HashMap<Character, Character> reflectorWiring
--
-initArray()
+getReflectorWiring()
+setReflectorWiring()
..
+mapWires()
+connectInternalWires()
+reverseConnectInternalWires()
}
class RandomnessHandler #LightBlue {
-SecureRandom CSPRN
+getCSPRN()
+shuffleFisherYates()
}
}
package director {
class EnigmaDirector #Bisque {
+constructEnigmaMachine(Builder builder)
}
}
package builders {
interface Builder #MOTIVATION {
+buildPlugboard()
+buildStator()
+buildRotors()
+buildReflector()
}
class EnigmaBuilder {
-Plugboard plugBoard
-Stator stator
-RotorStack rotors
-Reflector reflector
--
+getBuiltEnigma()
..
+buildPlugboard()
+buildStator()
+buildRotors()
+buildReflector()
}
}
class EncryptDecrypt {
-EnigmaMachine curMachine
-EnigmaConfigManager enigmaConfig
-EnigmaDirector director
-EnigmaBuilder builder
-boolean called
-int rotations
-handleRotation()
+encrypt()
+decrypt()
}
class EnigmaConfigManager {
-String path
-boolean extracted
-boolean configured
+extractConfig()
+configureEnigma()
}
package product {
class product.EnigmaMachine #LavenderBlush {
-Plugboard plugBoard
-Stator stator
-RotorStack rotors
-Reflector reflector
+getPlugboard()
+getStator()
+getReflector()
+getRotor()
+getUniqRandRotCounter()
+setReflector()
+setStator()
+setRotor()
+setPlugboard()
+setUniqRandRotCounter()
}
}
interface components.WireConnector #MOTIVATION {
+mapWires()
+connectInternalWires()
+reverseConnectInternalWires()
}
Builder <|.. EnigmaBuilder
Builder "1" <-left- "1" EnigmaDirector
EnigmaBuilder "1" --> product.EnigmaMachine : create
EnigmaDirector o-- Builder
components.WireConnector <|.. "1" Stator
components.WireConnector <|.. "1" Plugboard
components.WireConnector <|.. "1" Reflector
components.WireConnector <|.. "1" Rotor
Rotor "1..*" --* "1" RotorStack
product.EnigmaMachine "1" --- "1" EncryptDecrypt : uses
EnigmaDirector "1" - "1" EncryptDecrypt : uses
EnigmaConfigManager "1" -- "1" EncryptDecrypt : uses
EncryptDecrypt "1" -- "1" EnigmaBuilder : uses
/' all the hidden relationships below are there for formatting
and style purposes '/
EncryptDecrypt -[hidden] Rotor
EncryptDecrypt -[hidden]- Builder
components.WireConnector -[hidden] EnigmaDirector
Reflector -[hidden]- RotorStack
Reflector -[hidden]- Rotor
Plugboard -[hidden]- Rotor
Stator -[hidden]- Reflector
Builder -[hidden]- components.WireConnector
@enduml
|
1f93e69257d0fbaa61901c3aa074e879f74236b0 | a8001af491c4b6b787f094511211faa9b1238f54 | /Moodle Question Domain Model.puml | d210fa15c9eb74d3e7d49eae9bab61c5d00b87fb | [] | no_license | Girardvjonathan/GIFT-grammar-PEG.js | aaa92767b9dfb1b614acd525a9f21abc0ba3fc27 | 4c765f8389c488ebc37bd02789ff9193fa68e08b | refs/heads/master | 2021-05-15T12:31:08.122204 | 2017-05-10T13:33:59 | 2017-05-10T13:33:59 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,681 | puml | @startuml
skinparam style strictuml
hide methods
hide empty members
title Domain (Data) Model for Moodle Quiz questions (XML)
class "Quiz" as Q {
}
class "Category" as C {
name : Text
}
class "Non-Hierarchical\nCategory" as NHC {
tagName : Text
}
abstract class "Question" as AQ {
name : Text
questionText : RichText
}
class "MultipleChoiceQuestion" as MCQ extends AQ {
isShuffled : boolean
onlyOneAnswerAllowed : boolean
}
class "MultipleChoiceAnswer" as MCA {
isCorrect : boolean
answer : RichText
feedback : Text
}
MCQ "1" -- "*" MCA : has >
class "TrueFalseQuestion" as TFQ extends AQ {
}
class "TrueFalseAnswer" as TFA {
isTrue : boolean
percentWeight : integer
feedback : Text
}
note bottom
percentWeight indicates
correctness e.g.(100=correct,
0=incorrect)
end note
TFQ "1" -- "2" TFA : has >
class "MatchingQuestion" as MQ extends AQ {
isShuffled : boolean
}
class "MatchedPair" as SQ {
question : Text
answer : Text
}
MQ "1" -- "*" SQ : has >
class "ShortAnswerQuestion" as SAQ extends AQ {
}
class "ShortAnswer" as SA {
text : Text
percentWeight : integer
feedback : Text
}
SAQ "1" -- "*" SA : has >
class "Numerical" as NQ extends AQ {
}
class "NumericalAnswer" as NA {
percentWeight : integer
numericalAnswer : Text
feedback : Text
}
NQ "1" -- "*" NA : has >
class "Essay" as EQ extends AQ {
}
class "EssayAnswer" as EA {
isCorrect : boolean
answer : RichText
}
EQ "1" -- "*" EA : has >
Q "1" -- "*" AQ : has >
AQ "*" - "1" C : belongs-to >
AQ "*" -left- "*" NHC : belongs-to >
legend center
To synchronize with [[http://docs.moodle.org/en/Moodle_XML_format]]
TODO: Add missing-word questions to model
endlegend
@enduml |
c56c6425703315aaf7f9e002890f677cbc47ed12 | 0f2ccd0a689a3633eead0d7b8f118c1a4ca81aea | /Creational/Singleton/doc/singleton.plantuml | a3fb5a6fe21dc4b1730994efd068b7641248e6fa | [
"Apache-2.0"
] | permissive | symnoureddine/design-patterns | d6eca7edeb131e7f506900b517050c4f975482aa | b8f088e877d4739527b41aeb6e0c80ac9d29b398 | refs/heads/master | 2020-09-10T18:30:44.513673 | 2019-11-02T22:33:20 | 2019-11-02T22:33:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 499 | plantuml | @startuml
abstract class Session {
-{static} instance : Session
-id : string
-__construct(id: string)
+{static} getInstance(id: string)
+getId() : string
+{abstract} read() : string
+{abstract} write() : string
}
class SessionFile {
+read() : string
+write() : string
}
class SessionMemcached {
+read() : string
+write() : string
}
SessionFile -up-|> Session
SessionMemcached -up-|> Session
right footer © Vlad Riabchenko <contact@vria.eu>
@enduml
|
9f204f410b549f62055240859c3b79f9ac2e4ee3 | fa70a5e6b8f2922e9d1471a2ab167dab4f5b744e | /ASProj/.idea/modules/app/app.plantuml | 82125c793bd18471e75968816cf871c4ded04ece | [] | no_license | xhh4215/HILibrary | 1875abff530aa8277c2ce515c55e97595b7fdfb7 | 895bb534466f5ca0df5276584d0e6522207bc49c | refs/heads/main | 2023-02-25T12:00:04.185236 | 2021-01-29T06:47:52 | 2021-01-29T06:47:52 | 320,127,393 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,583 | plantuml | @startuml
title __ASPROJ.APP's Class Diagram__\n
namespace com.example.asproj {
class com.example.asproj.BuildConfig {
}
}
namespace com.example.asproj {
class com.example.asproj.HiApplication {
}
}
namespace com.example.asproj {
class com.example.asproj.MainActivity {
}
}
namespace com.example.asproj {
namespace fragment {
class com.example.asproj.fragment.CategoryFragment {
}
}
}
namespace com.example.asproj {
namespace fragment {
class com.example.asproj.fragment.FavoriteFragment {
}
}
}
namespace com.example.asproj {
namespace fragment {
class com.example.asproj.fragment.HomePageFragment {
}
}
}
namespace com.example.asproj {
namespace fragment {
class com.example.asproj.fragment.ProfileFragment {
}
}
}
namespace com.example.asproj {
namespace fragment {
class com.example.asproj.fragment.RecommendFragment {
}
}
}
namespace com.example.asproj {
namespace logic {
class com.example.asproj.logic.MainActivityLogic {
}
}
}
com.example.asproj.HiApplication -up-|> com.example.common.uicomponent.HiBaseApplication
com.example.asproj.MainActivity .up.|> com.example.asproj.logic.MainActivityLogic.ActivityProvider
com.example.asproj.MainActivity -up-|> com.example.common.uicomponent.HiBaseActivity
com.example.asproj.MainActivity o-- com.example.asproj.logic.MainActivityLogic : activityLogic
com.example.asproj.fragment.CategoryFragment -up-|> com.example.common.uicomponent.HiBaseFragment
com.example.asproj.fragment.FavoriteFragment -up-|> com.example.common.uicomponent.HiBaseFragment
com.example.asproj.fragment.HomePageFragment -up-|> com.example.common.uicomponent.HiBaseFragment
com.example.asproj.fragment.ProfileFragment -up-|> com.example.common.uicomponent.HiBaseFragment
com.example.asproj.fragment.RecommendFragment -up-|> com.example.common.uicomponent.HiBaseFragment
com.example.asproj.logic.MainActivityLogic o-- com.example.asproj.logic.MainActivityLogic.ActivityProvider : activityProvider
com.example.asproj.logic.MainActivityLogic o-- com.example.common.tab.HiFragmentTabView : fragmentTabView
com.example.asproj.logic.MainActivityLogic o-- com.example.hi_ui.ui.tab.bottom.HiTabBottomLayout : hiTabBottomLayout
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
|
c7ea7a66dbd7aa258aaa3306cb413ca1fd41308f | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProjectChangeProductSearchIndexingEnabledAction.puml | e5bbf249bb48d1bc6491b8e7b795494a2fc8036e | [] | 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 | 490 | 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 ProjectChangeProductSearchIndexingEnabledAction [[ProjectChangeProductSearchIndexingEnabledAction.svg]] extends ProjectUpdateAction {
action: String
enabled: Boolean
}
interface ProjectUpdateAction [[ProjectUpdateAction.svg]] {
action: String
}
@enduml
|
0cb7354b32fc780ba86592608978f3099578e624 | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /examples/towards/astformal1.puml | 41dc7c75a9994cbe2384d969d1684b8154b27f88 | [
"MIT"
] | permissive | tizuck/scala-uml-diagrams | 4a9d35e54a0f6fb3ef753e46eb59e81d7c42a26b | c5c432132bff9df7ab60352f0e715583d9d51973 | refs/heads/main | 2023-03-01T02:44:15.288794 | 2021-02-03T22:26:55 | 2021-02-03T22:26:55 | 306,687,367 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 783 | puml | @startuml
package ast {
abstract class Expression << trait>>
abstract class BinaryOp << caseclass >> {
--
<<ctor>> BinaryOp(expr1:Expression,expr2:Expression,op:String)
-- <<scalaclass>> --
isSealed
}
note "<<scalaclass>>\nisSealed" as N1
Expression -right- N1
Expression -[hidden]down- BinaryOp
BinaryOp --|> Expression : " "
}
hide circle
hide Expression members
hide methods
skinparam defaultFontName Source Code Pro
skinparam ClassStereotypeFontColor #1b1f23
skinparam class {
BackgroundColor White
BorderColor #1b1f23
ArrowColor #1b1f23
FontColor #6f42c1
}
skinparam note {
BackgroundColor White
BorderColor #1b1f23
ArrowColor #1b1f23
FontColor #d73a49
}
skinparam stereotype {
FontColor #d73a49
}
@enduml |
ccfbd30519fc3ae145f5ff628ff08a4c522c2cd9 | 5635c597a38479879c55c4594c8b09877ef1102b | /src/main/java/org/hfeng/misc/hfdp/ch9/iterator/iterator.puml | d3c0560e069868ff2be8d8f052b6dd1ce776282c | [] | no_license | harrifeng/java-in-action | 6c4d49f51634e5397606690710331438e4835a9f | e9b88ecf2fd2033e1848234c770fb3967fb1ec9d | refs/heads/master | 2020-11-26T18:31:08.066713 | 2015-05-19T01:04:17 | 2015-05-19T01:04:17 | 23,460,887 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 327 | puml | @startuml
interface Iterator {
hasNext()
next()
remove()
}
class ConcreteIterator implements Iterator{
hasNext()
next()
remove()
}
interface Aggregate {
createIterator()
}
class ConcreteAggregate implements Aggregate{
createIterator()
}
Client -left--> Aggregate : has_one
Client -right-> Iterator : use
@enduml
|
0c6620d6f5eccae23239c382fc660327f6638723 | cd46a7f084e1a7ddea394b0e0dfffc35fb7edcd5 | /src/SoundTrack/SoundTrack.plantuml | d1eef06cb5c48240ae802495d1cdff99300d09ce | [] | no_license | IulianMurariu-Tanasache/ProiectPAOO_FirstDungeon | 0338c66822bfa8ee1139da18c79ca0e291e1d66c | a2a23eaadc01fd6f70f57b9dbf85ae21f3a6e73d | refs/heads/master | 2023-05-07T20:43:23.334249 | 2021-04-24T09:04:47 | 2021-04-24T09:04:47 | 361,116,355 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 597 | plantuml | @startuml
title __SOUNDTRACK's Class Diagram__\n
namespace SoundTrack {
class SoundTrack.Music {
- audioInputStream : AudioInputStream
- clip : Clip
{static} - instace : Music
{static} + getInstance()
+ resetAudioStream()
+ run()
+ start()
+ stop()
- Music()
}
}
SoundTrack.Music .up.|> java.lang.Runnable
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
9adfec12b8d1bbbf762e97a84401785dd7be34b8 | 3d0985c89f90de9c0a3949f55e3ee7047734c8a3 | /src/main/java/ex46/WordFindFrequency.puml | 47dcfbea70e150b474a0f6e96da6b831096d9910 | [] | no_license | BMurph04/murphy-cop3330-assignment3 | 15ae3aceca69ba98a273e65b6cc895f6075b7537 | d1e4f1df629f03fc562c14e0987ff0229873e4b9 | refs/heads/master | 2023-09-03T02:55:49.083391 | 2021-10-10T14:47:51 | 2021-10-10T14:47:51 | 414,345,508 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 418 | puml | @startuml
class WordFrequency{
+void compareWords();
+void incrementFreq(int index);
+void sortArray();
+void printResult();
}
class WordInfo{
-String word;
-int wordFreq;
--
+String getWord();
+int getWordFreq();
--
+void setWordFreq(int wordFreq);
--
+int compareTo(WordInfo compareWord);
+String toString();
}
WordFrequency --> WordInfo : contains
@enduml |
51aa3eb491851a6176a76fcdaf6c30f66638886e | dca8938b76ae33950996b85fda8027ede62174b4 | /Raytracerv1.0/out/production/Raytracerv1.1/up/edu/isgc/raytracer/objects/objects.plantuml | 6465ab4047222d08ac02687872ef513b2f5a3be0 | [] | no_license | Benchamon/RayTracer | e2ecc50d3d78042b80c518ad041a411dcea87e07 | 4ecfbca46c8f7e8f5df2a33f58404b0920b8ed2d | refs/heads/main | 2023-09-02T19:27:52.176211 | 2021-11-03T18:36:07 | 2021-11-03T18:36:07 | 423,940,210 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,932 | plantuml | @startuml
title __OBJECTS's Class Diagram__\n
namespace up.edu.isgc.raytracer {
namespace objects {
class up.edu.isgc.raytracer.objects.Camera {
- defaultZ : float
- fieldOfView : float[]
- nearFarPlanes : float[]
- resolution : int[]
+ Camera()
+ calculatePositionsToRay()
+ getDefaultZ()
+ getFieldOfView()
+ getFieldOfViewHorizontal()
+ getFieldOfViewVertical()
+ getIntersection()
+ getNearFarPlanes()
+ getResolution()
+ getResolutionHeight()
+ getResolutionWidth()
+ setDefaultZ()
+ setFieldOfView()
+ setFieldOfViewHorizontal()
+ setFieldOfViewVertical()
+ setNearFarPlanes()
+ setResolution()
}
}
}
namespace up.edu.isgc.raytracer {
namespace objects {
abstract class up.edu.isgc.raytracer.objects.Object3D {
- color : Color
- ligth : boolean
+ Object3D()
+ getColor()
+ getPosition()
+ setColor()
+ setPosition()
}
}
}
namespace up.edu.isgc.raytracer {
namespace objects {
class up.edu.isgc.raytracer.objects.Polygon {
+ triangles : List<Triangle>
+ Polygon()
+ getIntersection()
+ getTriangles()
+ setTriangles()
}
}
}
namespace up.edu.isgc.raytracer {
namespace objects {
class up.edu.isgc.raytracer.objects.Sphere {
- radius : float
+ Sphere()
+ getIntersection()
+ getRadius()
+ setRadius()
}
}
}
namespace up.edu.isgc.raytracer {
namespace objects {
class up.edu.isgc.raytracer.objects.Triangle {
{static} + EPSILON : double
- normals : Vector3D[]
- vertices : Vector3D[]
+ Triangle()
+ Triangle()
+ Triangle()
+ getIntersection()
+ getNormal()
+ getNormals()
+ getVertices()
+ setNormals()
+ setNormals()
+ setVertices()
- setVertices()
}
}
}
up.edu.isgc.raytracer.objects.Camera -up-|> up.edu.isgc.raytracer.objects.Object3D
up.edu.isgc.raytracer.objects.Object3D .up.|> up.edu.isgc.raytracer.IIntersectable
up.edu.isgc.raytracer.objects.Object3D o-- up.edu.isgc.raytracer.Vector3D : position
up.edu.isgc.raytracer.objects.Polygon -up-|> up.edu.isgc.raytracer.objects.Object3D
up.edu.isgc.raytracer.objects.Sphere -up-|> up.edu.isgc.raytracer.objects.Object3D
up.edu.isgc.raytracer.objects.Triangle .up.|> up.edu.isgc.raytracer.IIntersectable
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
|
5057761d240d97b8eb864af604c10bce1eeaed7c | 65d20a2522663f335ac05ff61a0d00cb3c9e02d6 | /设计模式/行为型模式/22.Visitor访问者/visitor.puml | 45a9ef34cdc5993db7abcb91f725a4c408a6181d | [] | no_license | GungnirLaevatain/doc | 3f436387665cd67b93e84df0a0c92f9f894ad4a3 | 519643453e49a5a82e4a971597d186bfdc280116 | refs/heads/master | 2020-08-08T15:52:54.217559 | 2020-03-16T02:10:08 | 2020-03-16T02:10:08 | 213,863,201 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 472 | puml | @startuml
interface Fruit{
+ {abstract} void accept(Visitor visitor)
}
interface Visitor{
+ {abstract} void visit(Apple fruit)
+ {abstract} void visit(Banana fruit)
}
class Apple{
+ void accept(Visitor visitor)
}
class Banana{
+ void accept(Visitor visitor)
}
class FruitVisitor{
+ void visit(Apple fruit)
+ void visit(Banana fruit)
}
class Client{
}
Apple ..|> Fruit
Banana ..|> Fruit
FruitVisitor..|>Visitor
Client ..>Fruit
Client ..>Visitor
@enduml |
0c742e5746aa246b67e06f6205dd4520aadd33fe | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyQuoteRequestDraft.puml | 50e7b5a302e47a8f2cdddb7147db608c317863fc | [] | 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 | 347 | 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 MyQuoteRequestDraft [[MyQuoteRequestDraft.svg]] {
cartId: String
cartVersion: Long
comment: String
}
@enduml
|
aeb21fcbae8fd1b53c65c24c51127510190180f6 | 5d180276957df094f09ee511e05786316537f25d | /src/main/java/url/url.plantuml | 30f24598dfd0586451784cae0e9997c05ebb7a67 | [
"Apache-2.0"
] | permissive | SomberOfShadow/Local | f727189f1791de203f1efd5cd76b8f241857e473 | 474e71024f72af5adf65180e5468de19ad5fdfd8 | refs/heads/main | 2023-07-18T04:11:49.240683 | 2021-09-07T15:55:28 | 2021-09-07T15:55:28 | 389,494,221 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,782 | plantuml | @startuml
title __URL's Class Diagram__\n
namespace url {
class url.ElasticsearchPutMapTest {
{static} - INDEX_NAME : String
{static} - LOGGER : Logger
{static} - MAPPINGS : String
{static} - MJE_VERSION : String
{static} - TYPE : String
{static} - client : RestHighLevelClient
{static} - mapping : Map<String, Object>
{static} + main()
{static} - close()
{static} - createIndex()
{static} - createMapping()
{static} - existIndex()
{static} - getClient()
{static} - putMappings()
{static} - sendDataToElasticsearch()
}
}
namespace url {
class url.ElasticsearchTest {
{static} - INDEX_NAME : String
{static} - LOGGER : Logger
{static} - PUT_MAP : String
{static} - client : RestHighLevelClient
{static} + main()
{static} - create()
{static} - getMap()
}
}
namespace url {
class url.ElaticsearchIncludeNameTest {
{static} - INDEX_NAME : String
{static} - LOGGER : Logger
{static} - MAPPINGS : String
{static} - MJE_VERSION : String
{static} - MJE_VERSION_END : int
{static} - MJE_VERSION_PREFIX : String
{static} - MJE_VERSION_START : int
{static} - NEW_REPO_URL : String
{static} - OLD_REPO_URL : String
{static} - REGEX : String
{static} - client : RestHighLevelClient
{static} - lastModifiedList : Elements
{static} - mapping : Map<String, Object>
{static} - mjeinfo : HashMap<String, Object>
{static} - sizeOnDiskList : Elements
{static} - textList : Elements
{static} + main()
{static} - clear()
{static} - close()
{static} - createIndex()
{static} - createMapping()
{static} - existIndex()
{static} - getClient()
{static} - getDataFromUrl()
{static} - getMapData()
{static} - matchJarAndRecord()
{static} - putMappings()
{static} - sendDataToElasticsearch()
}
}
namespace url {
class url.GetJsonFromUrl {
{static} + getConfidentialLevel()
{static} + getData()
{static} + main()
{static} + readJsonFromUrl()
{static} - readAll()
}
}
namespace url {
class url.GetXmlFromUrl {
{static} + getData()
{static} + main()
{static} - getDataFromUrl()
{static} - stringToXml()
}
}
namespace url {
class url.StringToXmlByBS {
{static} - INDEX_NAME : String
{static} - LOGGER : Logger
{static} - MJE_VERSION : String
{static} - MJE_VERSION_END : int
{static} - MJE_VERSION_PREFIX : String
{static} - MJE_VERSION_START : int
{static} - NEW_REPO_URL : String
{static} - OLD_REPO_URL : String
{static} - REGEX : String
{static} - client : RestHighLevelClient
{static} - lastModifiedList : Elements
{static} - map : HashMap<String, Object>
{static} - sizeOnDiskList : Elements
{static} - textList : Elements
{static} + main()
{static} + sendDataToElasticsearch()
{static} - clear()
{static} - close()
{static} - getDataFromUrl()
{static} - getMapData()
{static} - matchJarAndRecord()
}
}
namespace url {
class url.StringToXmlExample {
{static} + getData()
{static} + main()
{static} - convertStringToXMLDocument()
}
}
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
|
cecc140275ce27e2d759a58784931d37250fbb79 | b607bda349642e826019dfb580567761f039178b | /src/composite/composite.puml | 1d6d7a1d9259ff8569fa34a905ff1073d78c61e0 | [] | no_license | gyoridavid/design-patterns-typescript | 7f4ea630ce2973db0a33bb25e001ed6c85a10ab8 | 78ce0b14c8adf9b365da8d7234c6ed4d2ead07bc | refs/heads/main | 2023-03-08T02:38:53.226650 | 2021-02-20T11:00:31 | 2021-02-20T11:00:31 | 339,009,219 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 471 | puml | @startuml
class Client {}
interface Component {
+ execute()
}
class Leaf {
+ execute()
}
class Composite {
- children: Component[]
+ addChild(c: Component)
+ removeChild(c: Component)
+ execute()
}
Leaf -[dotted]-|> Component
Composite -[dotted]-|> Component
Composite o--> Component
Client -> Component
note left of Composite
delegate work
to children
components
end note
note bottom of Leaf
do some work
end note
@enduml
|
05aab74f6863d51354fcf10be0d8099d79a432b7 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedQuoteSetCustomTypeAction.puml | dfc8f6c2d42af2c2767388dc3fde5d62bd922292 | [] | 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 | 561 | 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 StagedQuoteSetCustomTypeAction [[StagedQuoteSetCustomTypeAction.svg]] extends StagedQuoteUpdateAction {
action: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface StagedQuoteUpdateAction [[StagedQuoteUpdateAction.svg]] {
action: String
}
@enduml
|
dd9a6d52164fe5e02b30f4cd24484d1446388f13 | 7b78d8816057406af4e022222b810206c846b0d9 | /Wild-Sky Files.plantuml | 45dc34a9d064d40cad36e048fda1d91072b5300f | [
"MIT"
] | permissive | TheWiseWolfy/Wild-Sky | c91ed576ca87f139e71a6fd3df009d81a2e78307 | 06da59e95617c5f409e1ead42748b3ef7403fef3 | refs/heads/main | 2023-06-03T11:34:44.900400 | 2021-06-23T15:42:55 | 2021-06-23T15:42:55 | 349,763,029 | 1 | 0 | null | 2021-05-27T15:29:08 | 2021-03-20T15:29:10 | Java | UTF-8 | PlantUML | false | false | 15,166 | plantuml | @startuml
title __SKEWED ENGINE's Class Diagram__\n
namespace com.apetrei.engine {
class com.apetrei.engine.GameContainer {
}
}
namespace com.apetrei.engine {
namespace event {
enum GlobalEvent {
}
}
}
namespace com.apetrei.engine {
namespace event {
class com.apetrei.engine.event.GlobalEventQueue {
}
}
}
namespace com.apetrei.engine {
namespace gui {
class com.apetrei.engine.gui.DialogLine {
}
}
}
namespace com.apetrei.engine {
namespace gui {
class com.apetrei.engine.gui.DialogManager {
}
}
}
namespace com.apetrei.engine {
namespace gui {
class com.apetrei.engine.gui.HUDManager {
}
}
}
namespace com.apetrei.engine {
namespace gui {
class com.apetrei.engine.gui.MenuManager {
}
}
}
namespace com.apetrei.engine {
namespace gui {
namespace UIElements {
class com.apetrei.engine.gui.UIElements.Button {
}
}
}
}
namespace com.apetrei.engine {
namespace gui {
namespace UIElements {
class com.apetrei.engine.gui.UIElements.MapButton {
}
}
}
}
namespace com.apetrei.engine {
namespace gui {
namespace UIElements {
abstract class com.apetrei.engine.gui.UIElements.UIElement {
}
}
}
}
namespace com.apetrei.engine {
namespace input {
class com.apetrei.engine.input.Input {
}
}
}
namespace com.apetrei.engine {
namespace input {
enum InputType {
}
}
}
namespace com.apetrei.engine {
namespace input {
class com.apetrei.engine.input.playerInputEvent {
}
}
}
namespace com.apetrei.engine {
namespace objects {
class com.apetrei.engine.objects.GameObject {
}
}
}
namespace com.apetrei.engine {
namespace objects {
class com.apetrei.engine.objects.ObjectBuilder {
}
}
}
namespace com.apetrei.engine {
class com.apetrei.engine.objects.ObjectManager {
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.AnimatedSpriteComponent {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.BackgroundSprite {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
abstract class com.apetrei.engine.objects.components.Collider2D {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
abstract class com.apetrei.engine.objects.components.Component {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.EnemyComponent {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
interface com.apetrei.engine.objects.components.HealthInterface {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.ObjectiveComponent {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.PlayerComponent {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.Rigidbody2D {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.SpriteComponent {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.TimerComponent {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.TransformComponent {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.objects.components.TurretComponent {
}
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
interface com.apetrei.engine.objects.components.WindInterface {
}
}
}
}
namespace com.apetrei.engine {
namespace physics {
class com.apetrei.engine.physics.PhysicsSystem2D {
}
}
}
namespace com.apetrei.engine {
namespace physics {
class com.apetrei.engine.physics.ShapeProvider {
}
}
}
namespace com.apetrei.engine {
namespace physics {
class com.apetrei.engine.physics.WindEffect {
}
}
}
namespace com.apetrei.engine {
namespace objects {
namespace components {
class com.apetrei.engine.physics.primitives.colliders.ConvexCollider {
}
}
}
}
namespace com.apetrei.engine {
namespace physics {
namespace rigidbody {
class com.apetrei.engine.physics.rigidbody.CollisionManifold {
}
}
}
}
namespace com.apetrei.engine {
namespace physics {
namespace rigidbody {
class com.apetrei.engine.physics.rigidbody.Collisions {
}
}
}
}
namespace com.apetrei.engine {
namespace physics {
namespace rigidbody {
class com.apetrei.engine.physics.rigidbody.IntersectionDetector2D {
}
}
}
}
namespace com.apetrei.engine {
namespace providers {
class com.apetrei.engine.providers.ConfigHandler {
}
}
}
namespace com.apetrei.engine {
namespace providers {
class com.apetrei.engine.providers.DatabaseManager {
}
}
}
namespace com.apetrei.engine {
namespace providers {
class com.apetrei.engine.providers.ResourceLoader {
}
}
}
namespace com.apetrei.engine {
namespace renderer {
class com.apetrei.engine.renderer.Animation {
}
}
}
namespace com.apetrei.engine {
namespace renderer {
class com.apetrei.engine.renderer.Camera {
}
}
}
namespace com.apetrei.engine {
namespace renderer {
enum CustomFonts {
}
}
}
namespace com.apetrei.engine {
namespace renderer {
class com.apetrei.engine.renderer.LayerRenderer {
}
}
}
namespace com.apetrei.engine {
namespace renderer {
class com.apetrei.engine.renderer.Renderer {
}
}
}
namespace com.apetrei.engine {
namespace renderer {
class com.apetrei.engine.renderer.TextRenderer {
}
}
}
namespace com.apetrei.engine {
namespace renderer {
class com.apetrei.engine.renderer.Window {
}
}
}
namespace com.apetrei.engine {
namespace scenes {
abstract class com.apetrei.engine.scenes.GameplayScene {
}
}
}
namespace com.apetrei.engine {
namespace scenes {
class com.apetrei.engine.scenes.LevelMenuScene {
}
}
}
namespace com.apetrei.engine {
namespace scenes {
class com.apetrei.engine.scenes.MainMenuScene {
}
}
}
namespace com.apetrei.engine {
namespace scenes {
interface com.apetrei.engine.scenes.Scene {
}
}
}
namespace com.apetrei.engine {
namespace scenes {
class com.apetrei.engine.scenes.SettingsScene {
}
}
}
namespace com.apetrei.engine {
namespace scenes {
namespace levels {
class com.apetrei.engine.scenes.levels.Level1 {
}
}
}
}
namespace com.apetrei.engine {
namespace scenes {
namespace levels {
class com.apetrei.engine.scenes.levels.Level2 {
}
}
}
}
namespace com.apetrei.engine {
namespace scenes {
namespace levels {
class com.apetrei.engine.scenes.levels.Level3 {
}
}
}
}
namespace com.apetrei.engine {
namespace scenes {
namespace levels {
class com.apetrei.engine.scenes.levels.Level4 {
}
}
}
}
namespace com.apetrei.engine {
namespace sound {
class com.apetrei.engine.sound.SoundManager {
}
}
}
namespace com.apetrei.game {
class com.apetrei.game.GameManager {
}
}
namespace com.apetrei.misc {
class com.apetrei.misc.AABB {
}
}
namespace com.apetrei.misc {
class com.apetrei.misc.ConvexPolygon2D {
}
}
namespace com.apetrei.misc {
class com.apetrei.misc.ExtraMath {
}
}
namespace com.apetrei.misc {
class com.apetrei.misc.Line {
}
}
namespace com.apetrei.misc {
class com.apetrei.misc.Vector2 {
}
}
namespace com.apetrei.misc {
namespace exceptions {
class com.apetrei.misc.exceptions.ComponentMissingException {
}
}
}
namespace com.apetrei.misc {
namespace exceptions {
class com.apetrei.misc.exceptions.GameObjectNotFoundException {
}
}
}
namespace com.apetrei.misc {
namespace exceptions {
class com.apetrei.misc.exceptions.ResourceNotFoundException {
}
}
}
namespace com.apetrei.misc {
namespace exceptions {
class com.apetrei.misc.exceptions.ValueNotFoundException {
}
}
}
namespace com.apetrei.misc {
namespace observer {
interface com.apetrei.misc.observer.ObjectManagerObserver {
}
}
}
namespace com.apetrei.misc {
namespace observer {
interface com.apetrei.misc.observer.ObjectiveObserver {
}
}
}
namespace com.apetrei.misc {
namespace observer {
interface com.apetrei.misc.observer.PlayerObserver {
}
}
}
com.apetrei.engine.GameContainer o-- com.apetrei.engine.event.GlobalEventQueue : globalEventQueue
com.apetrei.engine.GameContainer o-- com.apetrei.engine.gui.HUDManager : hudManager
com.apetrei.engine.GameContainer o-- com.apetrei.engine.input.Input : input
com.apetrei.engine.GameContainer o-- com.apetrei.engine.gui.MenuManager : menuManager
com.apetrei.engine.GameContainer o-- com.apetrei.engine.objects.ObjectManager : objectManager
com.apetrei.engine.GameContainer o-- com.apetrei.engine.physics.PhysicsSystem2D : physicsSystem
com.apetrei.engine.GameContainer o-- com.apetrei.engine.renderer.Renderer : renderer
com.apetrei.engine.GameContainer o-- com.apetrei.engine.scenes.Scene : sceneToBeUsed
com.apetrei.engine.GameContainer o-- com.apetrei.engine.renderer.Window : window
com.apetrei.engine.gui.HUDManager o-- com.apetrei.engine.gui.DialogManager : dialogManager
com.apetrei.engine.gui.UIElements.Button -up-|> com.apetrei.engine.gui.UIElements.UIElement
com.apetrei.engine.gui.UIElements.MapButton -up-|> com.apetrei.engine.gui.UIElements.Button
com.apetrei.engine.input.Input .up.|> java.awt.event.KeyListener
com.apetrei.engine.input.Input .up.|> java.awt.event.MouseListener
com.apetrei.engine.input.Input .up.|> java.awt.event.MouseMotionListener
com.apetrei.engine.input.Input .up.|> java.awt.event.MouseWheelListener
com.apetrei.engine.input.playerInputEvent o-- com.apetrei.engine.input.InputType : inputType
com.apetrei.engine.objects.components.AnimatedSpriteComponent -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.BackgroundSprite -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.Collider2D -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.GameObject o-- com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.ObjectManager o-- com.apetrei.engine.objects.GameObject : parent
com.apetrei.engine.objects.components.EnemyComponent .up.|> com.apetrei.engine.objects.components.HealthInterface
com.apetrei.engine.objects.components.EnemyComponent -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.ObjectiveComponent .up.|> com.apetrei.engine.objects.components.HealthInterface
com.apetrei.engine.objects.components.ObjectiveComponent -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.PlayerComponent .up.|> com.apetrei.engine.objects.components.HealthInterface
com.apetrei.engine.objects.components.PlayerComponent .up.|> com.apetrei.engine.objects.components.WindInterface
com.apetrei.engine.objects.components.PlayerComponent -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.SpriteComponent -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.TimerComponent -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.Rigidbody2D -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.TransformComponent -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.objects.components.TurretComponent -up-|> com.apetrei.engine.objects.components.Component
com.apetrei.engine.physics.PhysicsSystem2D o-- com.apetrei.engine.physics.WindEffect : windEffect
com.apetrei.engine.physics.primitives.colliders.ConvexCollider -up-|> com.apetrei.engine.objects.components.Collider2D
com.apetrei.engine.renderer.LayerRenderer o-- com.apetrei.engine.renderer.Camera : camera
com.apetrei.engine.renderer.Renderer o-- com.apetrei.engine.renderer.Camera : camera
com.apetrei.engine.renderer.Renderer o-- com.apetrei.engine.renderer.LayerRenderer : layerRenderer
com.apetrei.engine.renderer.Renderer o-- com.apetrei.engine.renderer.TextRenderer : textRenderer
com.apetrei.engine.scenes.GameplayScene .up.|> com.apetrei.engine.scenes.Scene
com.apetrei.engine.scenes.GameplayScene o-- com.apetrei.engine.objects.ObjectBuilder : ob
com.apetrei.engine.scenes.LevelMenuScene .up.|> com.apetrei.engine.scenes.Scene
com.apetrei.engine.scenes.MainMenuScene .up.|> com.apetrei.engine.scenes.Scene
com.apetrei.engine.scenes.SettingsScene .up.|> com.apetrei.engine.scenes.Scene
com.apetrei.engine.scenes.levels.Level1 -up-|> com.apetrei.engine.scenes.GameplayScene
com.apetrei.engine.scenes.levels.Level2 -up-|> com.apetrei.engine.scenes.GameplayScene
com.apetrei.engine.scenes.levels.Level3 -up-|> com.apetrei.engine.scenes.GameplayScene
com.apetrei.engine.scenes.levels.Level4 -up-|> com.apetrei.engine.scenes.GameplayScene
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
|
eabeac9e564808ad74c30b16f4cf8950085bfe7a | 42e57a58fc95226a7ec40bca58c351092f126102 | /kapitler/media/uml-codelist-partrolle.iuml | 522faf75f64e5eacb3c3835989a09f4bfb328ea5 | [] | no_license | tsodring/noark5-tjenestegrensesnitt-standard | 8d3b31fe83203255ae8361e639f99209974c3ece | df354ac231091e63bde3123f2c779009009b7e80 | refs/heads/master | 2023-01-22T01:33:20.794431 | 2019-07-02T12:40:47 | 2019-07-02T12:40:47 | 194,827,953 | 0 | 0 | null | 2019-07-02T09:03:29 | 2019-07-02T09:03:28 | null | UTF-8 | PlantUML | false | false | 136 | iuml | @startuml
class Kodelister.PartRolle <<codelist>> {
+Klient = KLI
+Pårørende = PÅ
+Formynder = FORM
+Advokat = ADV
}
@enduml
|
be49c36cd706290d30f2eccb32ec643c919772b5 | 689bef4f1ace748832814249065b36eafbdd4439 | /Java_Laba_5/Linnik_LR53/src/pattern/pattern.plantuml | 1eed49363b431f0938a4fb06c38b6c09776d4822 | [] | no_license | F8Slayer/Java_Khai | e5d976caf4a11ca868bb2aa6e899d4a54e878561 | cb72cef7001791dfcbdd5938acfb1abaf86e81f5 | refs/heads/master | 2023-02-02T03:56:36.975083 | 2020-12-21T18:31:07 | 2020-12-21T18:31:07 | 295,000,082 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,570 | plantuml | @startuml
title __PATTERN's Class Diagram__\n
namespace pattern {
class pattern.Main {
{static} - reader : BufferedReader
{static} - server : Server
{static} + main()
{static} - init()
}
}
namespace pattern {
abstract class pattern.Middleware {
{abstract} + check()
+ linkWith()
# checkNext()
}
}
namespace pattern {
class pattern.RoleCheckMiddleware {
+ check()
}
}
namespace pattern {
class pattern.Server {
- users : Map<String, String>
+ hasEmail()
+ isValidPassword()
+ logIn()
+ register()
+ setMiddleware()
}
}
namespace pattern {
class pattern.ThrottlingMiddleware {
- currentTime : long
- request : int
- requestPerMinute : int
+ ThrottlingMiddleware()
+ check()
}
}
namespace pattern {
class pattern.UserExistsMiddleware {
+ UserExistsMiddleware()
+ check()
}
}
pattern.Middleware o-- pattern.Middleware : next
pattern.RoleCheckMiddleware -up-|> pattern.Middleware
pattern.Server o-- pattern.Middleware : middleware
pattern.ThrottlingMiddleware -up-|> pattern.Middleware
pattern.UserExistsMiddleware -up-|> pattern.Middleware
pattern.UserExistsMiddleware o-- pattern.Server : server
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
|
2e2b909e9aa95194de06a8c219678ddf1e3b01c4 | 71876eb0846f6f2490ac8f6b60c48d1d97a47f60 | /VenturaAPI/docs/diagrams-class/plantuml/core.domain.resposta.plantuml | 20e6b1ce731d79c4d132726e9884843e3a221e9f | [] | no_license | RogerVFbr/VenturaHR | 281efe904cd77152f339c801ccd6b3182d90af70 | 11d031caaae19c0c6f0f1c809ef14f7b3014bcdf | refs/heads/master | 2023-01-20T07:24:50.235474 | 2020-12-03T13:11:59 | 2020-12-03T13:11:59 | 285,815,756 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,545 | plantuml | @startuml
title __CORE DOMAIN RESPOSTA's Class Diagram__\n
namespace com.soundlab.dockerizedjavaapi {
namespace core {
namespace domain.resposta {
class com.soundlab.dockerizedjavaapi.core.domain.resposta.Resposta {
- candidatoId : Long
- curriculoUrl : String
- id : Long
- respostasCriterios : List<RespostaCriterio>
- textContent : String
- vagaId : Long
+ Resposta()
+ equals()
+ getCandidato()
+ getCandidatoId()
+ getCurriculoUrl()
+ getId()
+ getPerfilResposta()
+ getRespostasCriterios()
+ getTextContent()
+ getVagaId()
+ hashCode()
+ setCandidato()
+ setCandidatoId()
+ setCurriculoUrl()
+ setId()
+ setRespostasCriterios()
+ setTextContent()
+ setVagaId()
+ toString()
# canEqual()
}
}
}
}
namespace com.soundlab.dockerizedjavaapi {
namespace core {
namespace domain.resposta {
class com.soundlab.dockerizedjavaapi.core.domain.resposta.RespostaCriterio {
- criterioId : Long
- id : Long
+ RespostaCriterio()
+ equals()
+ getCriterioId()
+ getId()
+ getLevel()
+ getVagaCriterio()
+ hashCode()
+ setCriterioId()
+ setId()
+ setLevel()
+ setVagaCriterio()
+ toString()
# canEqual()
}
}
}
}
com.soundlab.dockerizedjavaapi.core.domain.resposta.Resposta -up-|> com.soundlab.dockerizedjavaapi.core.AuditableEntity
com.soundlab.dockerizedjavaapi.core.domain.resposta.Resposta o-- com.soundlab.dockerizedjavaapi.core.domain.user.Candidato : candidato
com.soundlab.dockerizedjavaapi.core.domain.resposta.RespostaCriterio -up-|> com.soundlab.dockerizedjavaapi.core.AuditableEntity
com.soundlab.dockerizedjavaapi.core.domain.resposta.RespostaCriterio o-- com.soundlab.dockerizedjavaapi.core.Level : level
com.soundlab.dockerizedjavaapi.core.domain.resposta.RespostaCriterio o-- com.soundlab.dockerizedjavaapi.core.domain.vaga.VagaCriterio : vagaCriterio
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
|
100720158f48e48fd9a0ca3257ec86c45f8f77f9 | c10549de006a486523a670a01b7c03c50b25191b | /docs/classDiagram.puml | cf5fd1713f0537098b0555d3e4befc0f9b8a9085 | [] | no_license | Skipper565/behav-human | d835d52fc3622444909c24a3c0b62eaaff9db2d2 | 237f2cc50268ec9dbec8d27095f6dad730e9a298 | refs/heads/master | 2020-08-09T13:15:51.859609 | 2020-02-01T11:26:42 | 2020-02-01T11:26:42 | 214,095,548 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,108 | puml | @startuml
class Sensor {
Integer id
String name
SensorType type
SensorStatus actualStatus
Integer frequency
Float threshold
}
class SensorType {
Integer id
String name
SensorStatus[] possibleStatuses
}
class SensorStatus {
Integer id
String name
}
class SensorStatusHistory {
Integer id
Sensor sensor
SensorStatus fromStatus
SensorStatus toStatus
DateTime timestamp
}
class Stereotype {
Integer id
SensorStatusHistory sensorStatusChange
Integer dayOfMonth
Integer dayOfWeek
Time time
Relevance relevance
}
class Relevance {
Integer id
String name
NotificationType notificationType
String notificationValue
}
class NotificationType {
Integer id
String name
}
Sensor "many" *-- "1" SensorType
Sensor "many" *-- "1" SensorStatus
SensorType "many" *-- "many" SensorStatus
SensorStatusHistory "many" *-- "1" Sensor
SensorStatusHistory "many" *-- "1" SensorStatus
Stereotype "many" *-- "1" SensorStatusHistory
Stereotype "many" *-- "1" Relevance
Relevance "many" *-- "1" NotificationType
@enduml |
979b2ca1ac1530439255912f9110238841ea736f | dd70e50722d69880a5431a950c1d57ec2dfe70dc | /doc/uml/06_MPD.puml | e076a15b5082a6026afee2b7dfe7a3b557f5a91d | [] | no_license | Zepmanbc/oc_dapython_pr5 | d0fb54e60c98fa7d04c347208fba5ab854af4462 | 2465efcc9e434e2d22d0857b39b097ec6e159143 | refs/heads/master | 2020-04-16T08:05:09.814196 | 2019-04-19T20:41:48 | 2019-04-19T20:41:48 | 165,411,080 | 0 | 0 | null | 2019-02-04T22:31:21 | 2019-01-12T16:42:34 | Python | UTF-8 | PlantUML | false | false | 548 | puml | @startuml
class category {
PK id : int
--
name : varchar(255)
}
class product {
PK id : int
FK id_category
--
product-name varchar(255)
brands : varchar(255)
quantity : varchar(255)
stores : varchar(255)
url : varchar(255)
nutrition_grades : varchar(1)
}
class substite{
PK id : int
--
FK id_origin
FK id_substitute
}
category "1" -- "1..*" product
product "2" - "*" substite
@enduml |
73d4e6961f1fb33a2d5f955409bbad2754cbe51a | 7c9c99bafade425ad633713ebd903cf23c05219f | /android/frontsample/app/src/main/java/com/example/front_sample/config/config.plantuml | d4ef960b42e7145b47789e50d90ba5228fe97761 | [] | no_license | mohsenfayyaz/realtime-propeller-led-display | 30cbef09b8507c5f1cbfd0888dfa550e65c2e13d | e237f529100758e1bfc0bacc88ecf9114c8ce07d | refs/heads/master | 2022-12-06T03:12:44.308116 | 2020-07-15T07:34:11 | 2020-07-15T07:34:11 | 284,713,780 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 662 | plantuml | @startuml
title __CONFIG's Class Diagram__\n
namespace com.example.front_sample {
namespace config {
class com.example.front_sample.config.Config {
{static} + ANDROID_PORT : int
{static} + BOARD_PORT : int
{static} + IMAGE_SIZE : int
{static} + MAX_DEGREE : int
{static} + NUM_OF_LEDS : int
{static} + UDP_SIZE_LIMIT_BYTES : int
{static} + VIDEO_SIZE : int
}
}
}
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
|
76ea93587175bac4a052b863a4e58c6cbbeb09a6 | e49567ea3e4e5a6e5c7e988a46e8175f6a39857f | /uml/CompletedItems.puml | 85b1d93e0f6c489126a575b52cd8b552b56869ee | [] | no_license | mate-gam/Gamero-cop3330-assignment4 | c5405940b3dd352731beb8b376734cf138d48d57 | 47193a255453dca6d73f4dd6bd2a2f5f3624cb50 | refs/heads/master | 2023-09-05T09:42:47.978569 | 2021-11-01T23:29:04 | 2021-11-01T23:29:04 | 423,345,539 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 239 | puml | @startuml
class CompletedItems{
CheckBoxTableCell checkBoxTableCell
TableColumn checkBoxColumn
==
.. Get the Checked Completed Items ..
+ TableColumn getCheckedComplete()
.. Set The Completed Items ..
+ void setCheckedComplete()
}
@enduml |
f74c619612c5e983beea03dd920e112aedb97316 | e07ad94f5c70b0c457b9484269304244ced63a8f | /patterns/composite.puml | 871d223ce810d07f2346ddfb5be8635c0267fd8b | [] | no_license | gillescoolen/design-patterns | abfe58fab21c1d47c124f066d2a7883156667bce | c05acb4b919247c5a26bf8341330837894154ae8 | refs/heads/main | 2023-06-01T22:47:39.336414 | 2021-06-18T12:39:56 | 2021-06-18T12:39:56 | 377,582,013 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 299 | puml | @startuml composite
class Client
interface Component {
+ operation()
}
class Leaf {
+ operation()
}
class Composite {
- Component[] children
+ operation()
+ add(Component component)
}
Client --> Component
Leaf ..|> Component
Composite ..|> Component
Composite o--> Component
@enduml |
c402bea27474170a7c52cd26a46aaecdafbd3bd9 | b1973413a3e92f3c12a30ab3f97d1731a53801e5 | /docs/class_diagram.puml | c66a8662e6163d069d7cc315b25eb75cca8522aa | [] | no_license | diogogomes77/django-fruit-shop | 4e78475e796ad7fadb8e8c102f5dc1f984349b15 | 737ee8d09d128e243c1c215797ad3997e5e2cd79 | refs/heads/master | 2022-12-04T00:04:28.899587 | 2020-08-09T20:01:56 | 2020-08-09T20:01:56 | 282,500,782 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,310 | puml | @startuml
package "Users" #DDDDDD {
class "User" as user
class "Web customer" as wc
class "Registered customer" as rc
class "New customer" as nc
class "Admin" as admin
user <|-- admin
user <|-- wc
wc <|-- nc
wc <|-- rc
}
package Products {
abstract class Product {
CharField name
DecimalField weight
DecimalField volume
DecimalField price
PositiveSmallIntegerField sku
PositiveSmallIntegerField stock_quantity
Product get_product() # decrement stock_quantity
}
class Fruit extends Product {
FruitCategory category
}
class FruitCategory {
CharField name
List fruits
}
Fruit "0..n" --o "1" FruitCategory
}
package Sells {
class ShoppingCart {
User customer
List items
DecimalField cart_total
DateTime created_at
DateTime updated_at
}
ShoppingCart "0..n" --* "1" wc
class CartItem {
Product item
PositiveSmallIntegerField quantity
Product add_item() # item.get_product()
DecimalField get_items_cost()
DecimalField get_items_weight()
DecimalField get_items_volume()
}
class Order {
ShoppingCart cart
Shipping shipping
Payment payment
DecimalField order_cost
}
class OrderItem {
Order order
CharField product
PositiveSmallIntegerField sku
DecimalField price
PositiveSmallIntegerField quantity
DecimalField get_cost()
}
abstract class Payment {
Choices status
}
class Paypal extends Payment {
}
class CashOnDelivery extends Payment {
}
class BankTransfer extends Payment {
}
abstract class Shipping {
DecimalField weight
DecimalField volume
DecimalField shipping_total
}
class PickUpAtStore extends Shipping{
}
class PickUpAtMeetingPoint extends Shipping{
DecimalField distance
}
class Postage extends Shipping{
TextField delivery_address
}
ShoppingCart "1" *-- "0..n" CartItem
Order "1" *-- "1" ShoppingCart
Order "1" *-- "1" Payment
Order "1" *-- "1" Shipping
Order "1" *-- "1..n" OrderItem
CartItem "0..n" --* "1" Product
}
@enduml |
36ff57f7ec0d7221f081a26bfb9f5cd1a9412412 | ecf9e85c3bc4cf2217467879565b29a9f6aabeda | /UIElements.puml | 4890fef3efeb5b3e5ac5ccc5acefa0ece83c4936 | [] | no_license | eruvanos/arcade_gui | c27e3856bbcd30751a5884e8f1871d981a0b38f0 | b833beb33f1e37100da5a1bbfa18a14c45673a17 | refs/heads/master | 2023-01-07T15:58:30.769697 | 2020-09-23T17:28:44 | 2020-09-23T17:28:44 | 257,062,747 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,438 | puml | @startuml
class arcade.Sprite {
texture: Texture
center_x: int
center_y: int
width: int
height: int
+ collides_with_point(point: Tuple[float])
}
package arcade_gui{
class UIView{
Holds UIElements
Holds UIStyle
Parent to al UIElements
Converts on_XY() callbacks into UIEvents passed to on_event()
--
+ focused_element
+ hovered_element
- _ui_elements
__
+ on_event()
.. manage children ..
+ find_by_id()
+ purge_ui_elements()
-- arcade View callbacks --
+ on_draw() // starts render and draws UIElements
+ update() // deprecated
+ on_update()
.. converted to UIEvents ..
+ on_mouse_press()
+ on_mouse_release()
+ on_mouse_scroll()
+ on_mouse_motion()
+ on_key_press()
+ on_key_release()
+ on_text()
+ on_text_motion()
+ on_text_motion_selection()
}
class UIStyled {
Mixin, store all stylish attributes in _style
+ style_classes: List[str]
- _style: Dict[str, Any]
+ get_style_attr()
+ set_style_attrs()
}
abstract class UIElement {
Base class for any GUI Element
+ id: str
+ parent: UIView
+ {abstract} parent_style()
+ {abstract} find_color()
+ {abstract} on_event()
+ {abstract} on_focus()
+ {abstract} on_unfocus()
+ {abstract} on_hover()
+ {abstract} on_unhover()
+ {abstract} on_update()
}
UIElement -right-|> UIStyled
UIElement -up-|> arcade.Sprite
abstract class UIClickable {
+ hovered: bool
+ pressed: bool
+ focused: bool
+ normal_texture: Texture
+ hover_texture: Texture
+ focus_texture: Texture
+ press_texture: Texture
__
+ set_proper_texture()
+ on_press()
+ on_release()
+ on_click()
.. implements ..
+ on_event()
+ on_hover()
+ on_unhover()
+ on_focus()
+ on_unfocus()
+ hover_point()
}
UIClickable -up-|> UIElement
UILabel -up-> UIClickable
UIAbstractFlatButton -up-> UIClickable
UIInputBox -up-> UIClickable
UIFlatButton -up-> UIAbstractFlatButton
UIGhostFlatButton -up-> UIAbstractFlatButton
}
@enduml |
c7fa0b4efbf07c46d10c5dac8d90d51cd9a0a3de | c815f9c82c1400f76243750cd0ec609d217b9943 | /promise/etc/promise.urm.puml | cd6e732529fc0d84ac6c6e2f24fb003598d3149d | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 2,481 | puml | @startuml
package com.iluwatar.promise {
~class PromiseSupport<T> {
- COMPLETED : int {static}
- FAILED : int {static}
- RUNNING : int {static}
- exception : Exception
- lock : Object
- state : int
- value : T
~ PromiseSupport<T>()
+ cancel(mayInterruptIfRunning : boolean) : boolean
~ fulfill(value : T)
~ fulfillExceptionally(exception : Exception)
+ get() : T
+ get(timeout : long, unit : TimeUnit) : T
+ isCancelled() : boolean
+ isDone() : boolean
}
-class ConsumeAction {
- action : Consumer<? super T>
- dest : Promise<Void>
- src : Promise<T>
- ConsumeAction(src : Promise<T>, dest : Promise<T>, action : Consumer<T>)
+ run()
}
class Promise<T> {
- exceptionHandler : Consumer<? super Throwable>
- fulfillmentAction : Runnable
+ Promise<T>()
+ fulfill(value : T)
+ fulfillExceptionally(exception : Exception)
+ fulfillInAsync(task : Callable<T>, executor : Executor) : Promise<T>
- handleException(exception : Exception)
+ onError(exceptionHandler : Consumer<? super Throwable>) : Promise<T>
- postFulfillment()
+ thenAccept(action : Consumer<? super T>) : Promise<Void>
+ thenApply(func : Function<? super T, V>) : Promise<V>
}
class App {
- DEFAULT_URL : String {static}
- executor : ExecutorService
- stopLatch : CountDownLatch
- App()
- calculateLineCount()
- calculateLowestFrequencyChar()
- characterFrequency() : Promise<Map<Character, Integer>>
- countLines() : Promise<Integer>
- download(urlString : String) : Promise<String>
- lowestFrequencyChar() : Promise<Character>
+ main(args : String[]) {static}
- promiseUsage()
- stop()
- taskCompleted()
}
-class TransformAction<V> {
- dest : Promise<V>
- func : Function<? super T, V>
- src : Promise<T>
- TransformAction<V>(src : Promise<T>, dest : Promise<T>, func : Function<T, R>)
+ run()
}
class Utility {
+ Utility()
+ characterFrequency(fileLocation : String) : Map<Character, Integer> {static}
+ countLines(fileLocation : String) : Integer {static}
+ downloadFile(urlString : String) : String {static}
+ lowestFrequencyChar(charFrequency : Map<Character, Integer>) : Character {static}
}
}
TransformAction --+ Promise
TransformAction --> "-src" Promise
ConsumeAction --+ Promise
ConsumeAction --> "-src" Promise
Utility --+ Map
Promise --|> PromiseSupport
@enduml |
7819d6e3c0046671b1678ea6eb8ff8465437940f | 474a9ad6efa62dff91d707fa9c06217f0a357ae4 | /doc/puml/overviewV1.puml | 58a2d36081bc1d78b984f552aab9cc04d3892f9c | [] | no_license | tobihanl/eragp | 57f19bac3a07c6f432f41ad6d2fded9f62f3731a | 363142c8c08a9cbe0bbdaf412c5cee7c173e9d75 | refs/heads/master | 2023-04-04T03:47:24.366358 | 2020-01-29T08:57:53 | 2020-01-29T08:57:53 | 359,159,130 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,975 | puml | @startuml
/' Objects '/
abstract class Entity {
+Entity(int x, int y)
+x : int
+y : int
+{abstract} render() : void
+{abstract} tick() : void
}
class FoodEntity {
+FoodEntity(int x, int y)
+render() : void
+tick() : void
}
class LivingEntity {
+LivingEntity(int x, int y, SDL_Color color)
-color : SDL_Color
+render() : void
+tick() : void
}
class Matrix {
-Matrix()
+Matrix(std::size_t height, std::size_t width, float initValue)
+Matrix(std::size_t height, std::size_t width, float from, float to)
+Matrix(std::size_t height, std::size_t width, std::vector<float> data)
+~Matrix()
+copy() : Matrix
+dotProduct(const Matrix& other) : Matrix
-operator*(Matrix lhs, const Matrix& rhs) : Matrix
-operator*(Matrix lhs, float rhs) : Matrix
-operator+(Matrix lhs, const Matrix& rhs) : Matrix
-operator+(Matrix lhs, float rhs) : Matrix
-operator-(Matrix lhs, const Matrix& rhs) : Matrix
-operator-(Matrix lhs, float rhs) : Matrix
-operator/(Matrix lhs, const Matrix& rhs) : Matrix
-operator/(Matrix lhs, float rhs) : Matrix
+apply(MatrixFunction fun) : Matrix&
+operator*=(const Matrix& rhs) : Matrix&
+operator*=(float rhs) : Matrix&
+operator+=(const Matrix& rhs) : Matrix&
+operator+=(float rhs) : Matrix&
+operator-=(const Matrix& rhs) : Matrix&
+operator-=(float rhs) : Matrix&
+operator/=(const Matrix& rhs) : Matrix&
+operator/=(float rhs) : Matrix&
+transpose() : Matrix&
-operator==(const Matrix& lhs, const Matrix& rhs) : bool
+getMax() : float
+getMin() : float
+operator()(size_t y, size_t x) : float {query}
+toFloat() : float
+operator()(size_t y, size_t x) : float&
+getHeight() : size_t
+getWidth() : size_t
-operator<<(std::ostream& strm, const Matrix& m) : std : : ostream&
-height : std::size_t
-width : std::size_t
-data : std::vector<float>
}
class Renderer {
-Renderer()
-~Renderer()
+{static} renderFont(const std::string& text, int x, int y, int size, const SDL_Color& color, const std::string& fontFile) : RenderTexture
+{static} renderImage(const std::string& imagePath, int x, int y) : RenderTexture
+{static} renderDot(int centerX, int centerY, int radius, const SDL_Color& color) : bool
+{static} setup(int width, int height) : int
-{static} ren : static SDL_Renderer*
-{static} win : static SDL_Window*
-{static} isSetup : static bool
-{static} windowHeight : static int
-{static} windowWidth : static int
+{static} cleanup(RenderTexture& texture) : void
+{static} clear() : void
+{static} copy(const RenderTexture& texture) : void
+{static} destroy() : void
-{static} logSDLError(std::ostream &, const std::string &) : void
+{static} present() : void
}
class World {
+World()
-food : std::vector<FoodEntity>
-living : std::vector<LivingEntity>
+render() : void
+tick() : void
}
/' Inheritance relationships '/
Entity <|-- FoodEntity
Entity <|-- LivingEntity
/' Aggregation relationships '/
World o-- FoodEntity
World o-- LivingEntity
@enduml
|
7c89c0a26e80b02004b4fa429e562a270b006fa7 | 84e20402a90eab514ea6e1cbec5cb23a0bf24c58 | /.idea/modules/app/app.plantuml | 7f7fb117f790128f22d923e9370a44780c3ae770 | [] | no_license | kholishulil97/AppKru | 0539b356237155525c4f04b277941872c93fb530 | 118db86ebddaabd207ee7d953a36a707e0c3d3ff | refs/heads/main | 2023-03-30T21:17:10.172868 | 2021-04-04T13:40:28 | 2021-04-04T13:40:28 | 354,548,055 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 15,505 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.example.appkru {
class com.example.appkru.BuildConfig {
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.BottomNavigationBehavior {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.BuktiSetoranActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.KarcisActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.KontrolInputActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.KontrolInputLaporanActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.LaporanHarianActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.LaporanHarianSetorActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.LaporanKontrolActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.LoginActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.MainActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.PengeluaranActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.PenumpangActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.PremiActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.SuratPerintahActivity {
}
}
}
namespace com.example.appkru {
namespace activity {
class com.example.appkru.activity.TambahKarcisActivity {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.KontrolBSAdapter {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.LaporanHarianAdapter {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.LaporanHarianPagerAdapter {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.LaporanKontrolAdapter {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.PengeluaranAdapter {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.PengeluaranBSAdapter {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.PenumpangAdapter {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.PremiAdapter {
}
}
}
namespace com.example.appkru {
namespace adapter {
class com.example.appkru.adapter.PremiPagerAdapter {
}
}
}
namespace com.example.appkru {
namespace api {
class com.example.appkru.api.ApiClient {
}
}
}
namespace com.example.appkru {
namespace api {
interface com.example.appkru.api.ApiInterface {
}
}
}
namespace com.example.appkru {
namespace fragment {
class com.example.appkru.fragment.LaporanHarianFragment {
}
}
}
namespace com.example.appkru {
namespace fragment {
class com.example.appkru.fragment.LaporanHarianRiwayatFragment {
}
}
}
namespace com.example.appkru {
namespace fragment {
class com.example.appkru.fragment.LaporanHarianRiwayatSetorFragment {
}
}
}
namespace com.example.appkru {
namespace fragment {
class com.example.appkru.fragment.LaporanHarianSetorFragment {
}
}
}
namespace com.example.appkru {
namespace fragment {
class com.example.appkru.fragment.PremiFragment {
}
}
}
namespace com.example.appkru {
namespace fragment {
class com.example.appkru.fragment.PremiRiwayatFragment {
}
}
}
namespace com.example.appkru {
namespace manger {
class com.example.appkru.manger.Constants {
}
}
}
namespace com.example.appkru {
namespace manger {
class com.example.appkru.manger.RequestHandler {
}
}
}
namespace com.example.appkru {
namespace manger {
class com.example.appkru.manger.SharedPrefManager {
}
}
}
namespace com.example.appkru {
namespace model.BuktiSetoran {
class com.example.appkru.model.BuktiSetoran.BuktiSetoran {
}
}
}
namespace com.example.appkru {
namespace model.BuktiSetoran {
class com.example.appkru.model.BuktiSetoran.DaftarPengeluaran {
}
}
}
namespace com.example.appkru {
namespace model.BuktiSetoran {
class com.example.appkru.model.BuktiSetoran.DatumBuktiSetoran {
}
}
}
namespace com.example.appkru {
namespace model.LaporanHarian {
class com.example.appkru.model.LaporanHarian.DatumLaporanHarian {
}
}
}
namespace com.example.appkru {
namespace model.LaporanHarian {
class com.example.appkru.model.LaporanHarian.LaporanHarian {
}
}
}
namespace com.example.appkru {
namespace model.LaporanKontrol {
class com.example.appkru.model.LaporanKontrol.DatumLaporanKontrol {
}
}
}
namespace com.example.appkru {
namespace model.LaporanKontrol {
class com.example.appkru.model.LaporanKontrol.LaporanKontrol {
}
}
}
namespace com.example.appkru {
namespace model.Nominal {
class com.example.appkru.model.Nominal.DatumNominal {
}
}
}
namespace com.example.appkru {
namespace model.Nominal {
class com.example.appkru.model.Nominal.Nominal {
}
}
}
namespace com.example.appkru {
namespace model.Pengeluaran {
class com.example.appkru.model.Pengeluaran.DatumPengeluaran {
}
}
}
namespace com.example.appkru {
namespace model.Pengeluaran {
class com.example.appkru.model.Pengeluaran.Pengeluaran {
}
}
}
namespace com.example.appkru {
namespace model.Penumpang {
class com.example.appkru.model.Penumpang.DatumPenumpang {
}
}
}
namespace com.example.appkru {
namespace model.Penumpang {
class com.example.appkru.model.Penumpang.Penumpang {
}
}
}
namespace com.example.appkru {
namespace model.PosKarcis {
class com.example.appkru.model.PosKarcis.DatumPosKarcis {
}
}
}
namespace com.example.appkru {
namespace model.PosKarcis {
class com.example.appkru.model.PosKarcis.PosKarcis {
}
}
}
namespace com.example.appkru {
namespace model.Premi {
class com.example.appkru.model.Premi.DatumPremi {
}
}
}
namespace com.example.appkru {
namespace model.Premi {
class com.example.appkru.model.Premi.Premi {
}
}
}
namespace com.example.appkru {
namespace model.SP {
class com.example.appkru.model.SP.DatumSP {
}
}
}
namespace com.example.appkru {
namespace model.SP {
class com.example.appkru.model.SP.SP {
}
}
}
namespace com.example.appkru {
namespace model.User {
class com.example.appkru.model.User.DatumUser {
}
}
}
namespace com.example.appkru {
namespace model.User {
class com.example.appkru.model.User.User {
}
}
}
namespace com.example.appkru {
namespace printing {
class com.example.appkru.printing.ApplicationClass {
}
}
}
namespace com.example.appkru {
namespace printing {
class com.example.appkru.printing.DeviceListActivity {
}
}
}
namespace com.example.appkru {
namespace printing {
class com.example.appkru.printing.UnicodeFormatter {
}
}
}
com.example.appkru.activity.BottomNavigationBehavior -up-|> androidx.coordinatorlayout.widget.CoordinatorLayout.Behavior
com.example.appkru.activity.BuktiSetoranActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.BuktiSetoranActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.activity.BuktiSetoranActivity o-- com.example.appkru.adapter.KontrolBSAdapter : kontrolBSAdapter
com.example.appkru.activity.BuktiSetoranActivity o-- com.example.appkru.adapter.PengeluaranBSAdapter : pengeluaranAdapter
com.example.appkru.activity.KarcisActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.KontrolInputActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.KontrolInputActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.activity.KontrolInputLaporanActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.KontrolInputLaporanActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.activity.LaporanHarianActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.LaporanHarianActivity o-- com.example.appkru.adapter.LaporanHarianPagerAdapter : laporanHarianPagerAdapter
com.example.appkru.activity.LaporanHarianSetorActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.LaporanHarianSetorActivity o-- com.example.appkru.adapter.LaporanHarianPagerAdapter : laporanHarianPagerAdapter
com.example.appkru.activity.LaporanKontrolActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.LaporanKontrolActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.activity.LaporanKontrolActivity o-- com.example.appkru.adapter.LaporanKontrolAdapter : laporanKontrolAdapter
com.example.appkru.activity.LoginActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.MainActivity .up.|> com.google.android.material.navigation.NavigationView.OnNavigationItemSelectedListener
com.example.appkru.activity.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.MainActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.activity.PengeluaranActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.PengeluaranActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.activity.PengeluaranActivity o-- com.example.appkru.adapter.PengeluaranAdapter : pengeluaranAdapter
com.example.appkru.activity.PenumpangActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.PenumpangActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.activity.PenumpangActivity o-- com.example.appkru.adapter.PenumpangAdapter : penumpangAdapter
com.example.appkru.activity.PremiActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.PremiActivity o-- com.example.appkru.adapter.PremiPagerAdapter : premiPagerAdapter
com.example.appkru.activity.SuratPerintahActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.SuratPerintahActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.activity.TambahKarcisActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.example.appkru.activity.TambahKarcisActivity o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.adapter.KontrolBSAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.appkru.adapter.LaporanHarianAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.appkru.adapter.LaporanHarianPagerAdapter -up-|> androidx.fragment.app.FragmentPagerAdapter
com.example.appkru.adapter.LaporanKontrolAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.appkru.adapter.PengeluaranAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.appkru.adapter.PengeluaranAdapter o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.adapter.PengeluaranBSAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.appkru.adapter.PenumpangAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.appkru.adapter.PremiAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter
com.example.appkru.adapter.PremiPagerAdapter -up-|> androidx.fragment.app.FragmentPagerAdapter
com.example.appkru.fragment.LaporanHarianFragment -up-|> androidx.fragment.app.Fragment
com.example.appkru.fragment.LaporanHarianFragment o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.fragment.LaporanHarianFragment o-- com.example.appkru.adapter.LaporanHarianAdapter : laporanHarianAdapter
com.example.appkru.fragment.LaporanHarianRiwayatFragment -up-|> androidx.fragment.app.Fragment
com.example.appkru.fragment.LaporanHarianRiwayatFragment o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.fragment.LaporanHarianRiwayatFragment o-- com.example.appkru.adapter.LaporanHarianAdapter : laporanHarianAdapter
com.example.appkru.fragment.LaporanHarianRiwayatSetorFragment -up-|> androidx.fragment.app.Fragment
com.example.appkru.fragment.LaporanHarianRiwayatSetorFragment o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.fragment.LaporanHarianRiwayatSetorFragment o-- com.example.appkru.adapter.LaporanHarianAdapter : laporanHarianAdapter
com.example.appkru.fragment.LaporanHarianSetorFragment -up-|> androidx.fragment.app.Fragment
com.example.appkru.fragment.LaporanHarianSetorFragment o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.fragment.LaporanHarianSetorFragment o-- com.example.appkru.adapter.LaporanHarianAdapter : laporanHarianAdapter
com.example.appkru.fragment.PremiFragment -up-|> androidx.fragment.app.Fragment
com.example.appkru.fragment.PremiFragment o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.fragment.PremiFragment o-- com.example.appkru.adapter.PremiAdapter : premiAdapter
com.example.appkru.fragment.PremiRiwayatFragment -up-|> androidx.fragment.app.Fragment
com.example.appkru.fragment.PremiRiwayatFragment o-- com.example.appkru.api.ApiInterface : apiInterface
com.example.appkru.fragment.PremiRiwayatFragment o-- com.example.appkru.adapter.PremiAdapter : premiAdapter
com.example.appkru.printing.ApplicationClass -up-|> android.app.Application
com.example.appkru.printing.DeviceListActivity -up-|> android.app.Activity
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
|
a17addaede5223f56a3901c1614f528bb8cf505b | 57a3e363cc681d5d355942b127df5e0638649d33 | /class-diagram.puml | c62eda75decfc237db6dfad92068cc2e2c0583b9 | [] | no_license | karansehtya/plantuml-samples | 7953f68a7885f4fb595293ac80dd3c1ddae3f2fc | af9411dac86f37c33a0738e1c0475e5eefd33f52 | refs/heads/master | 2023-05-31T07:09:34.769746 | 2021-07-01T12:19:40 | 2021-07-01T12:19:40 | 382,020,757 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 453 | puml | @startuml
class Order {
id: uuid
orderDetails: OrderDetails
getOrderDetails(): Order
}
class OrderDetails {
OrderItems: OrderItem[]
}
class OrderItem {
productId: uuid
name: string
}
abstract class Payment {
amount: number
}
class CashOnDelivery {
}
class Wallet {
transactionId: number
}
Order "1" o-- "1" OrderDetails
OrderDetails "1" o-- "many" OrderItem
Payment <|-- CashOnDelivery
Payment <|-- Wallet
@enduml |
9489d4795cdbf8f63a470a36c39f2052b8f2069b | 319f583d7631ef30056b27f7ea0421733089e103 | /src/main/java/ex42/DataParser.puml | 9a01b9790b2e639340203e79a53c6b786c3391ab | [] | no_license | rydohg/doherty-cop3330-assignment3 | 2384ed5c3bb13e4fad6adfce338fb36581074d76 | 507abb24289bfe1e741e9530e516a5e4342101aa | refs/heads/master | 2023-06-05T13:11:55.058743 | 2021-06-21T03:01:36 | 2021-06-21T03:01:36 | 378,782,691 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 121 | puml | @startuml
class Record {
String name
int salary
}
class DataParser {
readData(): ArrayList<Record>
}
@enduml |
326383491d62965dd7843bfe993364f33e68ad4f | 53171f99b9c35cbc19968d53c949e5938f6e8047 | /UML/class_diagrams/Internal/DoubleUtil.puml | 8b91088e7657192c0501f1469bd2ee37f342b523 | [
"MIT"
] | permissive | tockards/Adhan | f40b060331a974a73908f41a7d8003909745d76f | 93239a1634634d1833f56b2ff18f9de5a9c14ac9 | refs/heads/master | 2020-03-28T04:10:46.405943 | 2018-09-12T20:00:18 | 2018-09-12T20:00:18 | 147,698,739 | 0 | 0 | MIT | 2018-09-06T16:00:06 | 2018-09-06T16:00:06 | null | UTF-8 | PlantUML | false | false | 193 | puml | @startuml
class DoubleUtil {
+{static} normalizeWithBound(double value, double max) : double
+{static} unwindAngle(double value) : double
+{static} closestAngle(double angle) : double
}
@enduml |
d5f53e6651e87715f2befb1303b4c41587c45758 | bea11b95c0924ba3a3444d16d05387a6a6af97fe | /uml/weather.plantuml | 29b20813c45b8df8b41a44c263293491d736fa1e | [] | no_license | alejandrovigano/meli | 2c2d51d6a0e976a0b51a1421cfdc892996cf9885 | 8f9bd0ead015b90b97e3e1c5c1121d385779b67f | refs/heads/master | 2020-04-21T05:15:21.478972 | 2019-02-07T16:45:56 | 2019-02-07T16:45:56 | 169,335,218 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 857 | plantuml | @startuml
class Forecast {
+ droughtDays: List<ForecastDay>
+ rainPeriods: List<RainPeriod>
+ optimalPTDays: List<ForecastDay>
+ totalDays
}
note right of Forecast : "Representa un pronostico del clima en determinado tiempo"
class ForecastDay {
id
day
weather: Weather
}
note right of ForecastDay : "Representa el pronostico de un dia particular"
class RainPeriod {
rainDayStart
rainDayEnd
maxRainfallIntensity
rainDayWithMaxRainfallIntensity
}
note right of RainPeriod : "Representa un periodo de lluvias"
class Weather {
+ status: WeatherStatus
+ rainfallIntensity
}
note right of Weather : "Representa una condición climatica"
enum WeatherStatus {
DROUGHT
NORMAL
RAINY
OPTIMAL_P_T
}
Forecast *-- ForecastDay
Forecast *-- RainPeriod
ForecastDay -- Weather
Weather -- WeatherStatus
hide methods
@enduml |
a3e909276ebe7d897b52650d8e9a57cc226aeaa6 | b9c36353c6a41bd1a14f0aee38bceb1e3c2a1e9f | /app/src/main/java/com/cleanup/todoc/db/db.plantuml | b057c1532d6c0c11abf04e31ef5828f8a4e91f27 | [] | no_license | Pierre-44/P5-todoc | 60fd1fd1184dababd0db4d018c5d7d80ce4fe4fd | a0d19cde111de6aaf62c4fed6336f04a41ff3261 | refs/heads/master | 2023-08-12T19:08:47.781452 | 2021-10-15T15:01:12 | 2021-10-15T15:01:12 | 401,260,991 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 687 | plantuml | @startuml
title __DB's Class Diagram__\n
namespace com.cleanup.todoc {
namespace db {
abstract class com.cleanup.todoc.db.TodocDatabase {
{static} - instanceDB : TodocDatabase
{static} - roomCallback : Callback
{static} + getInstance()
{abstract} + mProjectDao()
{abstract} + mTaskDao()
{static} - populateProjectsInDb()
}
}
}
com.cleanup.todoc.db.TodocDatabase -up-|> androidx.room.RoomDatabase
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
cf6cd94cc35496225c1e1aadc1266026dae91979 | e9396f2c53835f39960168464b664f38a88c0288 | /POO19.plantuml | b6454a607bab12395d200d7a5e2dcc0a5b9a1f12 | [] | no_license | batenaavo/POO19 | 04eefcedca02daef5a1f51c5d916c3f780f3bdfb | 6a250187961e888100af4227a323206822402fe3 | refs/heads/master | 2020-05-18T01:06:00.230434 | 2019-05-26T22:45:54 | 2019-05-26T22:45:54 | 184,080,540 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,300 | plantuml | @startuml
title __POO19's Class Diagram__\n
package umcarro.Models {
class Cliente {
}
}
package umcarro.Controllers {
class Clientes {
}
}
package umcarro.Controllers {
package umcarro.Controllers.Exceptions {
class DadosDeAcessoInvalidos {
}
}
}
package umcarro.Controllers {
class DataBaseSaver {
}
}
package umcarro.Controllers {
class Main {
}
}
package umcarro.Controllers {
package umcarro.Controllers.Exceptions {
class NaoTemPedidos {
}
}
}
package umcarro.Controllers {
package umcarro.Controllers.Exceptions {
class OpcaoInvalida {
}
}
}
package umcarro.Models {
class Pedido {
}
}
package umcarro.Controllers {
class Pedidos {
}
}
package umcarro.Models {
class Proprietario {
}
}
package umcarro.Controllers {
class Proprietarios {
}
}
package umcarro.Controllers {
package umcarro.Controllers.Exceptions {
class SemVeiculosDisponiveis {
}
}
}
package umcarro.Controllers {
class UMCarro {
}
}
package umcarro.Models {
class Utilizador {
}
}
package umcarro.Models {
class Veiculo {
}
}
package umcarro.Controllers {
class Veiculos {
}
}
package umcarro.Views {
class View {
}
}
Cliente -up-|> Serializable
Cliente -up-|> Utilizador
DadosDeAcessoInvalidos -up-|> Serializable
NaoTemPedidos -up-|> Serializable
OpcaoInvalida -up-|> Serializable
Pedido -up-|> Serializable
Proprietario -up-|> Serializable
Proprietario -up-|> Utilizador
SemVeiculosDisponiveis -up-|> Serializable
UMCarro -up-|> Serializable
UMCarro o-- Cliente : cliente
UMCarro o-- Proprietario : proprietario
UMCarro o-- Clientes : clientes
UMCarro o-- Proprietarios : proprietarios
UMCarro o-- Veiculos : veiculos
UMCarro o-- Pedidos : pedidos
UMCarro o-- View : view
UMCarro o-- DataBaseSaver : db
Utilizador -up-|> Serializable
Veiculo -up-|> Serializable
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
|
3c7f83743e2ee13e4fdd2d7b41f1ad505b4d8f61 | 5f58cbbdec93bd1342ce2745c82721daacb93740 | /base/src/main/resources/BeanFactory.puml | 58273d6d6f18ae1202dfe2074b4842dff6241e41 | [] | no_license | rustberry/tiny-spring | e2397755912d3c4af0236d3dc1f3c587b141a25c | d0d34e678071e6319805e7bfed6f928a59ece1ad | refs/heads/master | 2021-07-07T18:05:12.245534 | 2019-08-12T06:45:53 | 2019-08-12T06:45:53 | 196,033,002 | 0 | 0 | null | 2020-10-13T15:10:31 | 2019-07-09T15:10:48 | Java | UTF-8 | PlantUML | false | false | 694 | puml | @startuml
'abstract class AbstractLit
'abstract AbstractCollection
'interface List
'interface Collection
'List <|-- AbstractList
'Collection <|-- AbstractCollection
'Collection <|- List
'AbstractCollection <|- AbstractList
'AbstractList <|-- ArrayList
'class ArrayList {
'Object[] elementData
'size()
'}
'enum TimeUnit {
'DAYS
'HOURS
'MINUTES
'}
interface BeanFactory
interface AutoWireCapableBeanFactory
interface ListableBeanFactory
interface HierarchicalBeanFactory
BeanFactory <|-- AutoWireCapableBeanFactory
BeanFactory <|-- ListableBeanFactory
BeanFactory <|-- HierarchicalBeanFactory
interface ConfigurableBeanFactory
HierarchicalBeanFactory <|-- ConfigurableBeanFactory
@enduml |
085b091007ba83b377887e828db06b78415bc0cb | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderPurchaseOrderNumberSetMessage.puml | 0d4437aada2de00e01518be762d62aae9b7c314f | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,231 | 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 OrderPurchaseOrderNumberSetMessage [[OrderPurchaseOrderNumberSetMessage.svg]] extends OrderMessage {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
purchaseOrderNumber: String
oldPurchaseOrderNumber: String
}
interface OrderMessage [[OrderMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
|
84722bd412a7a914b95386b633d7ce95ea4a93a4 | 9957725b80355deb96947c53066888d37b0b4533 | /uml/diagram.puml | fa9576c31327e6436a1078935e4256ea37ca8ec5 | [] | no_license | liamp616/pido-1511-a5 | aa6c01896a102d5a122ccec5bc2be43e9612014e | fe6aff066c2fdfbc77b18465dd188afa80c76e46 | refs/heads/master | 2023-06-24T03:02:41.611783 | 2021-07-25T20:36:02 | 2021-07-25T20:36:02 | 388,209,083 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 527 | puml | @startuml
class InventoryTracker {
main()
start()
}
class InventoryTrackerController {
ObservableList<Item> list
refresh()
tableViewSelectedItem()
addItem()
removeItem()
editItem()
exportHTML()
importHTML()
exportJSON()
importJSON()
exportTSV()
importTSV()
}
class Item {
String serialNumber
String name
double value
}
javafx.Application <|-- InventoryTracker
InventoryTracker - InventoryTrackerController
InventoryTrackerController *--> Item
@enduml |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.