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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ad44bcd759ccf0f79e012711dd7a36a5c4560deb | 2115a1ca7be03140b8c007862249e63c9a3d1224 | /UML/uml.puml | db762a6237cb466a823911cd0d35f6ba14b9e9e6 | [] | no_license | EMachad0/POO-Hospital | 6539f31ebc367b3460f9bf230326e3d32d2a1250 | 199a4cca429707038d029dd6baff5c8b531c2189 | refs/heads/master | 2022-12-13T10:29:22.767477 | 2020-09-21T14:49:27 | 2020-09-21T14:49:27 | 283,222,939 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,334 | puml | @startuml uml
skinparam dpi 300
!define LIGHTORANGE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
'package "Apresentacao" {
'
' class MainGui {
' - root : JPanel
' - tabbedPane : JTabbedpane
' + {Static} Main(String[]) : void
' + getRoot() : JPanel
' }
'
' class Tab {
' - root : JPanel
' - table : JTable
' - btnAdd : JButton
' - btnUpd : JButton
' - btnRmv : JButton
' + getRoot() : JPanel
' }
'
' class CadastroDialog {
' }
'
' class MyFormatter {
' + {static} formatCpf(long) : String
' + {static} formatMoney(float) : String
' }
'}
package "Sistema" {
abstract class "Sistema"<T> {
+ cadastrar(T) : void
+ remover(long) : void
+ atualizar(int) : void
+ select(long) : T
+ get(int) : T
+ getAll() : List<T>
+ getSize() : int
}
}
package "Dados" {
'interface "Dado"
class "Consulta" {
- id : int
- valor : float
- data : Date
- diagnostico : String
}
class "Medico" {
- especialidade : String
}
class "Paciente" {
- descricao : String
}
abstract class "Pessoa" {
- cpf : long
- nome : String
- idade : short
- cidade : String
}
}
package "DAO" {
class "ConsultaDAO"
class "MedicoDAO"
class "PacienteDAO"
' class "PessoaDAO"
interface "DAO"<T> {
+ {abstract} insert(T t) : boolean
+ {abstract} update(T t) : boolean
+ {abstract} delete(T t) : boolean
+ {abstract} select(int i) : T
+ {abstract} selectAll() : List<T>
}
class "Conexao" {
- senha : String
+ {static} getsenha() : String
+ getConexao() : Connection
}
class "Connection"
}
'MainGui --> Tab : -tabs
'Tab --> Sistema : -sistema
'Tab ..> CadastroDialog
'Consulta --|> Dado
'Pessoa <|-- Dado
Paciente --|> Pessoa
Medico --|> Pessoa
Consulta --> Paciente : -paciente
Consulta --> Medico : -medico
/'
ConsultaDAO ..> Consulta
MedicoDAO ..> Medico
PacienteDAO ..> Paciente
PessoaDAO ..> Pessoa
'/
ConsultaDAO ..|> DAO
MedicoDAO ..|> DAO
PacienteDAO ..|> DAO
DAO --> Conexao : -conexao
Conexao --> Connection : -connection
@enduml |
26d4068bdef9148b74652ae9e93f19433964e5ce | 0d8b0af121d7f501add14c3d5cefab24f062e0d4 | /readme_images/c12_CompoundPattern.plantuml | 12030b2895d268237471629456f7ac1fc3c08ae6 | [] | no_license | FisherZhongYi/HeadFirstDesignPatterns | 3705a0720fd910e057c550d202b7c49e4764fa6f | 17a5696cf47f0bd27c72c784920c02488b506444 | refs/heads/master | 2022-04-02T17:03:24.329010 | 2020-02-07T15:36:59 | 2020-02-07T15:36:59 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,330 | plantuml | @startuml CompoundPattern
abstract Observer {
+{abstract}update(Observable)
}
class Observable {
+registerObserver(Observer)
+notifyObservers()
}
note top: observer pattern
abstract Quackable {
+quack()
+registerObserver(Observer)
+notifyObservers()
-Obserable observable
}
Observable --* Quackable
Observable --> Observer : call Observer.update()
class GooseAdaptor {
+quack()
}
note top: adaptor pattern
Goose --* GooseAdaptor
Quackable <|-- GooseAdaptor
class QuackCounter {
+quack()
}
note top: decorator pattern
Quackable <|-- QuackCounter
Quackable <|.. MallardDuck
Quackable <|.. RedHeadDuck
Quackable <|.. DuckCall
Quackable <|.. RubberDuck
class DuckFactory {
+{static} Quackable createMallardDuck()
+{static} Quackable createRedHeadDuck()
+{static} Quackable createDuckCall()
+{static} Quackable createRubberDuck()
+{static} Quackable createGoose()
}
note top: simple factory idiom (strictly it's not the factory pattern).
DuckFactory --> MallardDuck
DuckFactory --> RedHeadDuck
DuckFactory --> DuckCall
DuckFactory --> RubberDuck
DuckFactory --> GooseAdaptor
DuckFactory --> QuackCounter
class DuckFlock {
+add(Quackable)
+registerObserver(Observer)
}
note top: composite pattern
Quackable <|-- DuckFlock
Observer <|.. Quackologist
@enduml |
4402db53f1537f6d83391e5c0f909d532dfaefb4 | 43fc7f97759eb0e50e1eb4db8dfc90dda934b74b | /addressBookEx1/physical_class_diag.puml | f0195f5a23e35b2bb2ea30a75ea72ca8c5a5b33d | [] | no_license | digiry/pythonStudy | 14b7447c1d966df864019e8759e218671e9fb63a | 9cf2c5e2372d6f9dc059c33b58947ef00fc7a520 | refs/heads/master | 2020-04-01T06:50:33.501334 | 2014-06-18T15:09:41 | 2014-06-18T15:09:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 814 | puml | @startuml
class addressInfo {
+name
+phoneNumber
+address
+addressInfo()
+set_name(name)
+set_phoneNumber(phoneNumber)
+set_address(address)
+get_name():string
+get_phoneNumber():string
+get_address():string
}
class addressList {
+addressList:list<addressInfo>
+add(info:addressInfo)
+remove(info:addressInfo)
+update(info:addressInfo,newInfo:addressInfo)
+getAt(index):addressInfo
+searchByName(name):addressInfo
+searchByPhoneNumber(phoneNumber):addressInfo
+sort()
+writeDB()
+readDB()
+saveFile()
+loadFile()
}
class addressListUI {
+list:addressList
+printMainmenu()
+selectMenu():menu
+inputInfo()
+deleteInfo()
+updateInfo()
+viewAllList()
+searchByName()
+searchByPhoneNumber()
+writeDB()
+readDB()
+saveFile()
+loadFile()
}
addressInfo "*" <--- "1" addressList
addressList <--- addressListUI
@enduml
|
5c6fdd54a16949f88df9453903ce9e80957cd4b1 | 9fb800bced4689dc1cd56f5fd38f288062d5140c | /src/collaboration-service/Application/Services/CollaborationService.puml | 6d21224f9b0e81abefd05e2f3f3d1300edb96df8 | [] | no_license | converge-app/uml-diagrams | b0638f3b801ced52b650025b1b81d29f4ff345fe | 4202d41a464838d7604062e407b065bf512ad8d6 | refs/heads/master | 2020-11-25T09:53:56.136779 | 2019-12-17T12:11:29 | 2019-12-17T12:11:29 | 228,607,152 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 434 | puml | @startuml
interface ICollaborationService {
Create(createEvent:Event) : Task<Event>
}
class CollaborationService {
- <<readonly>> _collaborationRepository : ICollaborationRepository
- <<readonly>> _client : IClient
+ CollaborationService(collaborationRepository:ICollaborationRepository, client:IClient)
+ <<async>> Create(createEvent:Event) : Task<Event>
}
ICollaborationService <|-- CollaborationService
@enduml
|
a79233df4f74715252729065c17f9d94a6a473fb | 7942d1db03cfea625d7f2ae1cbe96b93df58ae2e | /class_diagram.puml | 9871a1ad91aa8b06cd543690b382e5d34ec83a23 | [] | no_license | naichilab/ruby-book | a56d46aeb45d2923fe7bf93033352ac58568c317 | 3c783d21328791d0a1de3ccef062c77a3764b1b8 | refs/heads/master | 2020-05-04T18:11:08.769300 | 2019-04-03T18:07:22 | 2019-04-03T18:07:22 | 179,343,315 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 139 | puml | @startuml
class Gear {
+ ratio()
+ gear_inches()
}
class Wheel {
+ diameter()
+ circumference()
}
Gear --> Wheel
@enduml |
38c3b1f4ebd4a47b9d6aa7fdf6d32cc792606b25 | a26bbd033192f4ea245a6dd3f166976b39459752 | /3_Documentazione/design/be/dao.puml | 21b8d7055afc7b561cd617a741be74665a2e3bb4 | [] | no_license | giuliobosco/freqline | fdc673e09e4cfc96dc67a759788120b81fdbae46 | e94256cc349797447cf414bbe4267ef45c89723e | refs/heads/master | 2022-04-10T16:22:55.993289 | 2020-04-06T13:28:19 | 2020-04-06T13:28:19 | 206,082,972 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,189 | puml | @startuml
skinparam classAttributeIconSize 0
class Exception {
}
package ch.giuliobosco.freqline {
package dao {
interface IDao<Base> {
+ Optional<Base> getById(int id)
+ Stream<Base> getAll()
+ boolean add(Base base)
+ boolean update(Base base)
+ boolean delete(Base base)
}
class Dao {
}
IDao <|.. Dao
class DaoException {
- {static} final long serialVersionUID = 1L
+ DaoException()
+ DaoException(String message)
+ DaoException(String message, Throwable cause)
}
Exception <|-- DaoException
}
package dbdao {
abstract DbDao {
- {static} Logger LOGGER
- {static} int NULL_ACTION_BY = 1
- Connection connection;
- DaoQueryBuilder daoQueryBuilder
- int actionBy
- int lastGeneratedKey
+ DbDao(JdbcConnector connector, Class<? extends Base> baseClass)
+ DbDao(JdbcConnector connector, Class<? extends Base> baseClass, int actionBy)
+ Connection getConnection()
+ int getActionBy()
+ int getLastGeneratedKey()
# Date getDate(ResultSet resultSet, String column)
# Timestamp getTimestamp(Date date)
# void mutedClose(Connection connection, PreparedStatement statement, ResultSet resultSet)
# Base getBase(ResulSet resultSet, String resulSetColumn, DbDao dao)
# {abstract} Base create(ResultSet resultSet, Base base)
# {abstract} void fillStatement(Base base, PreparedStatement statement)
- Base createBase(ResultSet resultSet)
- void setAuditData(Base base, PreparedStatement statement)
# PreparedStatement getByIdStatemnt(int id)
+ Optional<Base> getById(int id)
# PreparedStatement getAllStatement()
+ Stream<Base> getAll()
# PreparedStatement getAddStatement(Base base)
+ boolean add(Base base)
# PreparedStatement getUpdateStatement(Base base)
+ boolean update(Base base)
# PreparedStatement getDeleteStatement(Base base)
+ boolean delete(Base base)
}
Dao <|-- DbDao
class DbGeneratorDao {
+ DbGeneratorDao(JdbcConnector connector)
+ DbGeneratorDao(JdbcConnector connector, int actionBy)
}
DbDao <|-- DbGeneratorDao
class DbGroupDao {
+ DbGroupDao(JdbcConnector connector)
+ DbGroupDao(JdbcConnector connector, int actionBy)
}
DbDao <|-- DbGroupDao
class DbGroupPermissionDao {
+ DbGroupPermissionDao(JdbcConnector connector)
+ DbGroupPermissionDao(JdbcConnector connector, int actionBy)
}
DbDao <|-- DbGroupPermissionDao
class DbMicDao {
+ DbMicDao(JdbcConnector connector)
+ DbMicDao(JdbcConnector connector, int actionBy)
- getPermission(ResultSet resultSet, JdbcConnector connector)
- getGroup(ResultSet resultSet, JdbcConnector connector)
}
DbDao <|-- DbMicDao
class DbPermissionDao {
+ DbPermissionDao(JdbcConnector connector)
+ DbPermissionDao(JdbcConnector connector, int actionBy)
}
DbDao <|-- DbPermissionDao
class DbRemoteDao {
+ DbRemoteDao(JdbcConnector connector)
+ DbRemoteDao(JdbcConnector connector, int actionBy)
}
DbDao <|-- DbRemoteDao
class DbUserDao {
+ DbUserDao(JdbcConnector connector)
+ DbUserDao(JdbcConnector connector, int actionBy)
}
DbDao <|-- DbUserDao
class DbUserGroupDao {
+ DbUserGroupDao(JdbcConnector connector)
+ DbUserGroupDao(JdbcConnector connector, int actionBy)
- getGroup(ResultSet resultSet, JdbcConnector connector)
- getUser(ResultSet resultSet, JdbcConnector connector)
}
DbDao <|-- DbUserGroupDao
}
}
@enduml |
12b7246d6f2e817acb1551410b348907169ab19a | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitAddStoreAction.puml | c51498aae9df75d78706ac49d94dda1925447235 | [] | 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 | 509 | 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 BusinessUnitAddStoreAction [[BusinessUnitAddStoreAction.svg]] extends BusinessUnitUpdateAction {
action: String
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
}
interface BusinessUnitUpdateAction [[BusinessUnitUpdateAction.svg]] {
action: String
}
@enduml
|
ea0dc09cf619a9555c8154317c9dc2fad21eb828 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.puml | 7166f181d6bc09b9ccec2277bc31d681312d2861 | [] | 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 | 97 | puml | @startuml
class EditmodeWorkItemFactory {
}
WorkItemFactory <|-- EditmodeWorkItemFactory
@enduml
|
342ba491e8349f44ec9a028ee02e5ea6edd1a938 | 415a34b6c0039605d6d833f9795e46c9375e9ae0 | /project/samplemysqlconnector/doc/mybatis/mybatis.puml | f582b16f10f7a3dac69c1cece56c709771e8b4f3 | [] | no_license | FS1360472174/MySQL-Learning | afd3a5469b0c9c42bf3ebc8fb90a072f58d2964e | 2255fdd5b1f7a6afe3245b06b0a78a5ae0b55ac7 | refs/heads/master | 2021-01-21T20:29:45.238348 | 2018-01-28T12:11:17 | 2018-01-28T12:11:17 | 92,242,690 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 417 | puml | @startuml
abstract class AbstractList
abstract AbstractCollection
interface SqlSession
interface Collection
List <|-- AbstractList
Collection <|-- AbstractCollection
SqlSession <|-- DefaultSqlSession
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList
class ArrayList {
Object[] elementData
size()
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
interface SQLSession {
<T> T selectOne(String var1);
}
@enduml |
a72d57d6f0e090178cdc58eee4bc1d1bdfe37917 | e43bb5b4bd248f756bc67d3da64ae7af62462259 | /src/main/java/platform/cameraManager/cameraManager.plantuml | 0723c9e9da61b0573ef6e363a3b61d4d5407a211 | [] | no_license | TasMarshall/multiCameraApplicationPlatform | 056a17e409e7d781dd58ade7c996744fb4d106e3 | ec1d1403926fbeaf596ee98fbdda336d1daf00d6 | refs/heads/master | 2020-03-21T16:11:07.823431 | 2018-09-11T13:31:38 | 2018-09-11T13:31:38 | 138,755,729 | 5 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 15,107 | plantuml | @startuml
title __CAMERAMANAGER's Class Diagram__\n
package platform {
package platform.camera {
package platform.cameraManager {
class CameraManager {
- id : String
- cameras : List<Camera>
- cameraIdMap : Map<String, Camera>
+ CameraManager()
+ initCameras()
{static} + heartbeat()
+ reinitNotWorkingCameras()
+ initCamera()
+ getWorkingCameras()
+ getNotWorkingCameras()
+ testSimpleAllCameras()
+ getCameras()
+ addAndInitCameras()
+ getCameraByID()
}
}
}
}
package platform {
package platform.camera {
package platform.cameraManager {
class CameraStreamManager {
~ streamURI : String
~ username : String
~ password : String
~ cameraWorking : boolean
~ cameraType : String
~ simulated : boolean
~ initialized : boolean
+ init()
+ updateStreams()
- startRealCameraStreams()
+ getDirectStreamView()
}
}
}
}
package platform {
package platform.camera {
package platform.cameraManager {
class DirectStreamView {
~ streamURI : String
~ username : String
~ password : String
~ cameraWorking : boolean
{static} - width : int
{static} - height : int
- videoSurface : JPanel
- image : BufferedImage
- mediaPlayerComponent : DirectMediaPlayerComponent
- streamIsPlaying : boolean
+ DirectStreamView()
+ playFromURIandUserPW()
+ updateStreamState()
+ isStreamIsPlaying()
+ getVideoSurface()
+ getOpenCVImageMat()
+ getJavaCVImageMat()
+ getBufferedImage()
+ bufferedImage2Mat()
{static} + Mat2BufferedImage()
}
}
}
}
package platform {
package platform.camera {
package platform.cameraManager {
class VideoSurfacePanel {
- VideoSurfacePanel()
# paintComponent()
}
}
}
}
class AccessibleJPanel {
# AccessibleJPanel()
+ getAccessibleRole()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
abstract class AccessibleJComponent {
- propertyListenersCount : int
# accessibleFocusHandler : FocusListener
# AccessibleJComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
# getBorderTitle()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
~ getAccessibleExtendedComponent()
+ getToolTipText()
+ getTitledBorderText()
+ getAccessibleKeyBinding()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class ActionStandin {
- actionListener : ActionListener
- command : String
- action : Action
~ ActionStandin()
+ getValue()
+ isEnabled()
+ actionPerformed()
+ putValue()
+ setEnabled()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class IntVector {
~ array : int[]
~ count : int
~ capacity : int
~ IntVector()
~ size()
~ elementAt()
~ addElement()
~ setElementAt()
}
class KeyboardState {
{static} - keyCodesKey : Object
~ KeyboardState()
{static} ~ getKeyCodeArray()
{static} ~ registerKeyPressed()
{static} ~ registerKeyReleased()
{static} ~ keyIsPressed()
{static} ~ shouldProcess()
}
class ReadObjectCallback {
- roots : Vector<JComponent>
- inputStream : ObjectInputStream
~ ReadObjectCallback()
+ validateObject()
- registerComponent()
}
class AccessibleAWTContainer {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleContainerHandler : ContainerListener
# AccessibleAWTContainer()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getAccessibleAt()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class DropTargetEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- DropTargetEventTargetFilter()
+ accept()
}
interface EventTargetFilter {
{abstract} + accept()
}
class MouseEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- MouseEventTargetFilter()
+ accept()
}
class WakingRunnable {
~ WakingRunnable()
+ run()
}
class AWTTreeLock {
~ AWTTreeLock()
}
abstract class AccessibleAWTComponent {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleAWTComponentHandler : ComponentListener
# accessibleAWTFocusHandler : FocusListener
# AccessibleAWTComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleParent()
+ getAccessibleIndexInParent()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getLocale()
+ getAccessibleComponent()
+ getBackground()
+ setBackground()
+ getForeground()
+ setForeground()
+ getCursor()
+ setCursor()
+ getFont()
+ setFont()
+ getFontMetrics()
+ isEnabled()
+ setEnabled()
+ isVisible()
+ setVisible()
+ isShowing()
+ contains()
+ getLocationOnScreen()
+ getLocation()
+ setLocation()
+ getBounds()
+ setBounds()
+ getSize()
+ setSize()
+ getAccessibleAt()
+ isFocusTraversable()
+ requestFocus()
+ addFocusListener()
+ removeFocusListener()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
enum BaselineResizeBehavior {
CONSTANT_ASCENT
CONSTANT_DESCENT
CENTER_OFFSET
OTHER
}
class BltBufferStrategy {
# caps : BufferCapabilities
# backBuffers : VolatileImage[]
# validatedContents : boolean
# width : int
# height : int
- insets : Insets
# BltBufferStrategy()
+ dispose()
# createBackBuffers()
+ getCapabilities()
+ getDrawGraphics()
~ getBackBuffer()
+ show()
~ showSubRegion()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
}
class BltSubRegionBufferStrategy {
# BltSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class DummyRequestFocusController {
- DummyRequestFocusController()
+ acceptRequestFocus()
}
class FlipBufferStrategy {
# numBuffers : int
# caps : BufferCapabilities
# drawBuffer : Image
# drawVBuffer : VolatileImage
# validatedContents : boolean
~ width : int
~ height : int
# FlipBufferStrategy()
# createBuffers()
- updateInternalBuffers()
# getBackBuffer()
# flip()
~ flipSubRegion()
# destroyBuffers()
+ getCapabilities()
+ getDrawGraphics()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
+ show()
~ showSubRegion()
+ dispose()
}
class FlipSubRegionBufferStrategy {
# FlipSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class ProxyCapabilities {
- orig : BufferCapabilities
- ProxyCapabilities()
}
enum VSyncType {
VSYNC_DEFAULT
VSYNC_ON
VSYNC_OFF
id
}
class FlipContents {
{static} - I_UNDEFINED : int
{static} - I_BACKGROUND : int
{static} - I_PRIOR : int
{static} - I_COPIED : int
{static} - NAMES : String[]
{static} + UNDEFINED : FlipContents
{static} + BACKGROUND : FlipContents
{static} + PRIOR : FlipContents
{static} + COPIED : FlipContents
- FlipContents()
}
class SingleBufferStrategy {
- caps : BufferCapabilities
+ SingleBufferStrategy()
+ getCapabilities()
+ getDrawGraphics()
+ contentsLost()
+ contentsRestored()
+ show()
}
package platform {
package platform.camera {
package platform.cameraManager {
class TutorialRenderCallbackAdapter {
- TutorialRenderCallbackAdapter()
# onDisplay()
}
}
}
}
CameraStreamManager o-- DirectStreamView : directStreamView
DirectStreamView +-down- VideoSurfacePanel
DirectStreamView +-down- TutorialRenderCallbackAdapter
VideoSurfacePanel -up-|> JPanel
VideoSurfacePanel +-down- AccessibleJPanel
VideoSurfacePanel +-down- AccessibleJComponent
VideoSurfacePanel +-down- ActionStandin
VideoSurfacePanel +-down- IntVector
VideoSurfacePanel +-down- KeyboardState
VideoSurfacePanel +-down- ReadObjectCallback
VideoSurfacePanel +-down- AccessibleAWTContainer
VideoSurfacePanel +-down- DropTargetEventTargetFilter
VideoSurfacePanel +-down- EventTargetFilter
VideoSurfacePanel +-down- MouseEventTargetFilter
VideoSurfacePanel +-down- WakingRunnable
VideoSurfacePanel +-down- AWTTreeLock
VideoSurfacePanel +-down- AccessibleAWTComponent
VideoSurfacePanel +-down- BaselineResizeBehavior
VideoSurfacePanel +-down- BltBufferStrategy
VideoSurfacePanel +-down- BltSubRegionBufferStrategy
VideoSurfacePanel +-down- DummyRequestFocusController
VideoSurfacePanel +-down- FlipBufferStrategy
VideoSurfacePanel +-down- FlipSubRegionBufferStrategy
VideoSurfacePanel +-down- ProxyCapabilities
VideoSurfacePanel +-down- SingleBufferStrategy
AccessibleJPanel -up-|> AccessibleJComponent
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleFocusHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleAWTComponentHandler
AccessibleJPanel +-down- AccessibleAWTFocusHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleJComponent -up-|> AccessibleExtendedComponent
AccessibleJComponent -up-|> AccessibleAWTContainer
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleFocusHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleAWTComponentHandler
AccessibleJComponent +-down- AccessibleAWTFocusHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
ActionStandin -up-|> Action
KeyboardState -up-|> Serializable
ReadObjectCallback -up-|> ObjectInputValidation
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleAWTContainer +-down- AccessibleAWTComponentHandler
AccessibleAWTContainer +-down- AccessibleAWTFocusHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
WakingRunnable -up-|> Runnable
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFocusHandler -up-|> FocusListener
BltBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
DummyRequestFocusController -up-|> RequestFocusController
FlipBufferStrategy -up-|> BufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
ProxyCapabilities +-down- VSyncType
ProxyCapabilities +-down- FlipContents
FlipContents -up-|> AttributeValue
SingleBufferStrategy -up-|> BufferStrategy
TutorialRenderCallbackAdapter -up-|> RenderCallbackAdapter
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
|
1ee22592f0390c8be0abd9799b4701c6d15793e8 | 58888f3b87438efd34e7ab4389d7fc74cf1c4f7d | /src/main/java/org/rikh/utilities/utilities.plantuml | f4c2a1b704bdbd47ff89b206225ec60a3562672e | [
"MIT"
] | permissive | mrikh/javafx-poker | 10542ee0914e10eb1d9c217f83018f5342a6a0f3 | a0172321eca11079a912a9e01c191826854715a2 | refs/heads/master | 2022-12-15T04:33:47.492310 | 2020-09-03T23:21:13 | 2020-09-03T23:21:13 | 292,700,349 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,387 | plantuml | @startuml
title __UTILITIES's Class Diagram__\n
namespace org.rikh{
namespace org.rikh {
namespace utilities {
class org.rikh.utilities.Constants {
{static} + blackHex : String
{static} + defaultCardHeight : double
{static} + defaultCardWidth : double
{static} + greenHex : String
{static} + initialOpponentCoins : int
{static} + initialPlayerCoins : int
{static} + kAce : String
{static} + kAddTokens : String
{static} + kChooseBet : String
{static} + kClubs : String
{static} + kContinue : String
{static} + kDiamonds : String
{static} + kDone : String
{static} + kDraw : String
{static} + kEnterNumber : String
{static} + kEnterValue : String
{static} + kFlush : String
{static} + kFourKind : String
{static} + kFullHouse : String
{static} + kGameOver : String
{static} + kGoFirst : String
{static} + kHearts : String
{static} + kJack : String
{static} + kKing : String
{static} + kNothing : String
{static} + kOnePair : String
{static} + kOpponentWinsWith : String
{static} + kQueen : String
{static} + kQuestion : String
{static} + kQuit : String
{static} + kRoyalFlush : String
{static} + kSecondaryCard : String
{static} + kSelectFourToDiscard : String
{static} + kSelectOnlyFour : String
{static} + kSpades : String
{static} + kStartBet : String
{static} + kStraight : String
{static} + kStraightFlush : String
{static} + kTitle : String
{static} + kTriplets : String
{static} + kTwoPair : String
{static} + kWithHighestCard : String
{static} + kYouWin : String
{static} + kYouWinWith : String
{static} + lightGreenGex : String
{static} + quit : String
{static} + redHex : String
{static} + selectableCards : int
{static} + tokenRadius : double
{static} + totalCardsInHand : int
{static} + whiteHex : String
}
}
}
}
@enduml
|
41d11915ccffa37aa0006a59c281342e3d47a686 | c2b6bfee8da36cc39de688e146ba107b74218b12 | /plantuml/objectmodel/details/bookingOperation.plantuml | 75e595ae71ee935397568b7fbf05e173f842cafd | [
"Apache-2.0"
] | permissive | TOMP-WG/TOMP-API | 02bbd268c6ece21f7a5d28f4e42e1b456233e8e9 | 2aa6ae3d6b355a12a8936ff1069821bb7c89a743 | refs/heads/master | 2023-09-01T16:13:50.445300 | 2023-07-25T12:08:52 | 2023-07-25T12:08:52 | 189,022,994 | 80 | 34 | Apache-2.0 | 2023-08-22T12:36:34 | 2019-05-28T12:21:59 | null | UTF-8 | PlantUML | false | false | 82 | plantuml | @startuml g
class BookingOperation {
+String operation
String origin
}
@enduml
|
915d5d639d272ded3ee4481ab58bf8366cb93c1f | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Common/Shared/Utility/DirectoryPath.puml | 6c889948322604ff3239e11ebef3b75429f17672 | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 200 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
class DirectoryPath {
+ <<create>> DirectoryPath(value: string)
+ ToString() : string
}
!endsub
@enduml |
1ab8339ad2a6f2ea27e9b1c12bbadaff7384ea73 | 01fc1d7eaec538fbd45cc677d3fe63643580e57f | /docs/umls/command.puml | 267f00202d2908af756eb191247ea30d6fba6cfd | [] | no_license | Jiale-Sun/tp | b4d7598b947f27a4fff940e59ea04e9f2fafcfdd | 3e42908e7651096760a0ac59b9883557a1bbd981 | refs/heads/master | 2023-09-04T00:36:47.775422 | 2021-11-12T00:19:54 | 2021-11-12T00:19:54 | 411,294,329 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,791 | puml | @startuml
'https://plantuml.com/class-diagram
hide circle
skinparam classAttributeIconSize 0
skinparam groupInheritance 1
skinparam maxLength 128
AddModCommand <--- Command
AddUniCommand <---- Command
FindModCommand <---- Command
ListModCommand <---- Command
RemoveModCommand <--- Command
HelpCommand <- Command
ExitCommand <- Command
FindUniCommand <- Command
Command -> AddMapCommand
Command ---> RemoveUniCommand
Command ----> SearchMapCommand
Command ----> ListUniCommand
Command ---> RemoveMapCommand
class Command {
# storage: Storage
+ Command()
}
class AddModCommand {
+ AddModCommand(moduleToAdd: Module, moduleMasterList: ModuleList,
moduleSelectedList: ModuleList)
}
class AddUniCommand {
- universityToAdd: University
- universityIndexToAdd:int
+ AddUniCommand(universityToAdd: University, universityMasterList: UniversityList,
universitySelectedList: UniversityList)
}
class AddMapCommand {
+ AddMapCommand(universityIndexToMap: int, selectedMappingIndex: int, universityMasterList: UniversityList,
moduleMasterList: ModuleList, universitySelectedList: UniversityList, universityMasterList: UniversityList, moduleSelectedList: ModuleList)
}
class RemoveModCommand {
-moduleToRemove: Module
-moduleIndexToRemove: int
+ RemoveModCommand(moduleToRemove: Module, moduleMasterList: ModuleList,
moduleSelectedList: ModuleList)
}
class RemoveUniCommand {
- universityToRemove: University
- universityIndexToRemove:int
+ RemoveUniCommand(universityToRemove: University, universityMasterList: UniversityList,
universitySelectedList: UniversityList)
}
class RemoveMapCommand {
+ RemoveMapCommand(universityIndexToMap: int, selectedMappingIndex: int,
universityMasterList: UniversityList, universitySelectedList: UniversityList, universityMasterList: UniversityList)
}
class ListModCommand {
+ ListModCommand(moduleList: ModuleList, type: ListType)
}
class ListUniCommand {
+ ListUniCommand(universityList: UniversityList, type: ListType)
-printSelectedList(universityList: UniversityList): void
-printMasterList(universityList: UniversityList): void
}
class FindModCommand {
+ FindModCommand(userInput: String, moduleMasterList: ModuleList, type: FindModInputType)
}
class FindUniCommand {
+ FindUniCommand(userInput: String, universityMasterList: UniversityList)
}
class SearchMapCommand {
- selectedUniversity: University
+ SearchMapCommand(selectedUniversity: University, universitySelectedList: UniversityList
universityMasterList: UniversityList, moduleSelectedList: ModuleList, isAll: boolean)
+ getSelectedUniversity(): University
}
class HelpCommand {
+ HelpCommand()
}
class ExitCommand {
+ ExitCommand()
}
@enduml |
1e664580b53d6ed75addda6efde2948558c21fc2 | e7aab27dc3b56328c92d783d7fa8fce12d8ac544 | /kapitler/media/uml-class-dokumentobjekt.iuml | f38656c283d07d8b794286d0d0c5a154f6513e65 | [] | no_license | petterreinholdtsen/noark5-tjenestegrensesnitt-standard | 855019a61c8679a8119549e2824fa32ecc669e66 | 4673ba7134d83a6992bba6f9036c521c7ae1897f | refs/heads/master | 2023-06-11T12:08:52.134764 | 2023-03-05T11:05:21 | 2023-03-05T11:05:21 | 160,586,219 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 437 | iuml | @startuml
class Arkivstruktur.Dokumentobjekt <Arkivenhet> {
+versjonsnummer : integer
+variantformat : Variantformat
+format : Format [0..1]
+formatDetaljer : string [0..1]
+referanseDokumentfil : string [0..1]
+filnavn : string [0..1]
+sjekksum : string [0..1]
+mimeType : string [0..1]
+sjekksumAlgoritme : string [0..1]
+filstoerrelse : integer [0..1]
+elektroniskSignatur : ElektroniskSignatur [0..1]
}
@enduml
|
43ec9b5c888740a856ad45ca1d0b792c04db7149 | 83cac1572fdf61481ac455f5129c8a8a4c412ea5 | /docs/diagrams/Requirement/RequirementClassDiagram.puml | a1f0bfed2dfc2a4ca581f296d6c522f27ebfeb80 | [
"MIT"
] | permissive | AY1920S2-CS2103T-F09-3/main | 07fca10e67ca1152e501e7dade13bfe97c4f679b | b0874e7c195e5d7c1233e67b48fc6d522491556f | refs/heads/master | 2021-01-03T19:15:41.925131 | 2020-04-13T15:51:04 | 2020-04-13T15:51:04 | 240,203,907 | 0 | 8 | NOASSERTION | 2020-04-13T15:51:05 | 2020-02-13T07:43:25 | Java | UTF-8 | PlantUML | false | false | 849 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
interface ReadOnlyRequirement {
+isFulfilled()
+isSameRequirement()
+equals()
}
class Requirement {
+addModule()
+setModule()
+removeModule()
-computeCredits()
}
class RequirementCode {
-value
+isValidRequirementCode()
}
class Title {
-value
+isValidTitle()
}
class Credits {
-creditsRequired
-creditsAssigned
-creditsFulfilled
+isValidCredits()
+isFulfilled()
}
class UniqueModuleList {
-internalList
-internalUnmodifiableList
+add()
+set()
+remove()
+contains()
+getByModuleCode()
+asUnmodifiableObservableList()
}
ReadOnlyRequirement <|-- Requirement
Requirement *-- "1" RequirementCode
Requirement *-- "1" Title
Requirement *-- "1" Credits
Requirement *-- "1" UniqueModuleList
@enduml
|
0626fd3aeade3b956c8650eaaa31c82986ae7e0b | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitStoreMode.puml | 4ffbcdf63213ec6c9aaf2bb6c10691a8a1476a34 | [] | 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 | 7,445 | puml | @startuml
hide methods
enum BusinessUnitStoreMode {
EXPLICIT
FROM_PARENT
}
interface BusinessUnit [[BusinessUnit.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
status: [[BusinessUnitStatus.svg BusinessUnitStatus]]
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
custom: [[CustomFields.svg CustomFields]]
addresses: [[Address.svg List<Address>]]
shippingAddressIds: [[String.svg List<String>]]
defaultShippingAddressId: String
billingAddressIds: [[String.svg List<String>]]
defaultBillingAddressId: String
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
associates: [[Associate.svg List<Associate>]]
inheritedAssociates: [[InheritedAssociate.svg List<InheritedAssociate>]]
parentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
topLevelUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface BusinessUnitDraft [[BusinessUnitDraft.svg]] {
key: String
status: [[BusinessUnitStatus.svg BusinessUnitStatus]]
stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
associates: [[AssociateDraft.svg List<AssociateDraft>]]
addresses: [[BaseAddress.svg List<BaseAddress>]]
shippingAddresses: [[Integer.svg List<Integer>]]
defaultShippingAddress: Integer
billingAddresses: [[Integer.svg List<Integer>]]
defaultBillingAddress: Integer
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface Company [[Company.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
status: [[BusinessUnitStatus.svg BusinessUnitStatus]]
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
custom: [[CustomFields.svg CustomFields]]
addresses: [[Address.svg List<Address>]]
shippingAddressIds: [[String.svg List<String>]]
defaultShippingAddressId: String
billingAddressIds: [[String.svg List<String>]]
defaultBillingAddressId: String
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
associates: [[Associate.svg List<Associate>]]
inheritedAssociates: [[InheritedAssociate.svg List<InheritedAssociate>]]
parentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
topLevelUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface Division [[Division.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
status: [[BusinessUnitStatus.svg BusinessUnitStatus]]
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
custom: [[CustomFields.svg CustomFields]]
addresses: [[Address.svg List<Address>]]
shippingAddressIds: [[String.svg List<String>]]
defaultShippingAddressId: String
billingAddressIds: [[String.svg List<String>]]
defaultBillingAddressId: String
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
associates: [[Associate.svg List<Associate>]]
inheritedAssociates: [[InheritedAssociate.svg List<InheritedAssociate>]]
parentUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
topLevelUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
interface DivisionDraft [[DivisionDraft.svg]] {
key: String
status: [[BusinessUnitStatus.svg BusinessUnitStatus]]
stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
unitType: [[BusinessUnitType.svg BusinessUnitType]]
name: String
contactEmail: String
associateMode: [[BusinessUnitAssociateMode.svg BusinessUnitAssociateMode]]
associates: [[AssociateDraft.svg List<AssociateDraft>]]
addresses: [[BaseAddress.svg List<BaseAddress>]]
shippingAddresses: [[Integer.svg List<Integer>]]
defaultShippingAddress: Integer
billingAddresses: [[Integer.svg List<Integer>]]
defaultBillingAddress: Integer
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
parentUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
}
interface BusinessUnitSetStoreModeAction [[BusinessUnitSetStoreModeAction.svg]] {
action: String
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]]
}
interface BusinessUnitStoreModeChangedMessage [[BusinessUnitStoreModeChangedMessage.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]]
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
oldStores: [[StoreKeyReference.svg List<StoreKeyReference>]]
oldStoreMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
}
interface BusinessUnitStoreModeChangedMessagePayload [[BusinessUnitStoreModeChangedMessagePayload.svg]] {
type: String
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
storeMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
oldStores: [[StoreKeyReference.svg List<StoreKeyReference>]]
oldStoreMode: [[BusinessUnitStoreMode.svg BusinessUnitStoreMode]]
}
BusinessUnitStoreMode --> BusinessUnit #green;text:green : "storeMode"
BusinessUnitStoreMode --> BusinessUnitDraft #green;text:green : "storeMode"
BusinessUnitStoreMode --> Company #green;text:green : "storeMode"
BusinessUnitStoreMode --> Division #green;text:green : "storeMode"
BusinessUnitStoreMode --> DivisionDraft #green;text:green : "storeMode"
BusinessUnitStoreMode --> BusinessUnitSetStoreModeAction #green;text:green : "storeMode"
BusinessUnitStoreMode --> BusinessUnitStoreModeChangedMessage #green;text:green : "storeMode"
BusinessUnitStoreMode --> BusinessUnitStoreModeChangedMessage #green;text:green : "oldStoreMode"
BusinessUnitStoreMode --> BusinessUnitStoreModeChangedMessagePayload #green;text:green : "storeMode"
BusinessUnitStoreMode --> BusinessUnitStoreModeChangedMessagePayload #green;text:green : "oldStoreMode"
@enduml
|
e3f32b6d16d0d23cbcf407d79fc6423e396693f2 | 87027febfeaac25bcdecd455a7c2edc0ee5edf31 | /doc/uml/cls_history.puml | d7cd7fd88a03cd730e29db047f954795fefddea4 | [] | no_license | Godotcoffee/nurupo | 28ddef7fde33db357ed4480cfd6380ca937ab963 | 83935d31c0e94648746fadb3680a6f5a2b365874 | refs/heads/master | 2020-04-10T09:37:27.672966 | 2018-12-28T00:31:13 | 2018-12-28T00:31:13 | 160,942,585 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 714 | puml | @startuml
package com.nurupo.movie.history.entity {
class History {
-historyId: Int
-userId: Int
-movieId: String
-rating: Float
-timestamp: Long
+getter()
+setter()
}
}
package com.nurupo.movie.history.dao {
interface IHistoryDAO {
+History findByUserIdAndMovieId(userId: Int, movieId: String)
+findAllByUserIdOrderByTimestamp(userId: Int, pageable: Pageable): Page<History>
+findAllByUserIdOrderByRating(userId: Int, pageable: Pageable): Page<History>
+findAllByMovieIdOrderByTimestamp(movieId: String, pageable: Pageable): Page<History>
}
}
JpaRepository <|-- IHistoryDAO
IHistoryDAO ..> History
@enduml |
30a5bdbf759e35e2113bb36dd04cd26a91f92300 | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/order/palindrome_number/palindrome_number.plantuml | e7fe593f7bed11a4707aabb9e7df0b80c9fdf5f2 | [] | no_license | shuile/LeetCode | 8b816b84071a5338db1161ac541437564574f96a | 4c12a838a0a895f8efcfbac09e1392c510595535 | refs/heads/master | 2023-08-17T04:53:37.617226 | 2023-08-15T16:18:46 | 2023-08-15T16:18:46 | 146,776,927 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 460 | plantuml | @startuml
title __PALINDROME_NUMBER's Class Diagram__\n
namespace cn.shui.order {
namespace palindrome_number {
class cn.shui.order.palindrome_number.Solution {
{static} + isPalindrome()
{static} + main()
}
}
}
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
|
a7cd65f85248ad263211f27d4a7a8ea3b9eb9d99 | a751888fd29a1b92bb32ef7d272d3e72f664ed30 | /src/design/kalman-overview-class-diagram.puml | b9e4a5be4e860824ed8da97f99c43da1c8f9803c | [
"Apache-2.0",
"MIT",
"EPL-1.0"
] | permissive | petrushy/Orekit | b532c7db85c992d85b5ac3d858d18d656e2b8c46 | 1f8ff45caf82e0e7e85f8cf9fd4f41c3ba379443 | refs/heads/develop | 2023-08-16T11:37:43.709083 | 2023-07-18T20:13:14 | 2023-07-18T20:13:14 | 42,349,064 | 10 | 2 | Apache-2.0 | 2023-07-21T14:54:14 | 2015-09-12T07:39:56 | Java | UTF-8 | PlantUML | false | false | 3,208 | puml | ' Copyright 2002-2022 CS GROUP
' Licensed to CS GROUP (CS) under one or more
' contributor license agreements. See the NOTICE file distributed with
' this work for additional information regarding copyright ownership.
' CS licenses this file to You under the Apache License, Version 2.0
' (the "License"); you may not use this file except in compliance with
' the License. You may obtain a copy of the License at
'
' http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
@startuml
skinparam svek true
skinparam ClassBackgroundColor #F3EFEB/CCC9C5
skinparam ClassArrowColor #691616
skinparam ClassBorderColor #691616
skinparam NoteBackgroundColor #F3EFEB
skinparam NoteBorderColor #691616
skinparam NoteFontColor #691616
skinparam ClassFontSize 11
skinparam PackageFontSize 12
skinparam linetype ortho
package org.hipparchus #ECEBD8 {
interface "NonLinearProcess<T extends Measurement>" as NonLinearProcess_T {
+getEvolution(previousTime, previousState, measurement)
+getInnovation(measurement, evolution, innovationCovarianceMatrix)
}
class "ExtendedKalmanFilter<T extends Measurement>" as ExtendedKalmanFilter_T
ExtendedKalmanFilter_T --> "1" NonLinearProcess_T : estimate
}
package org.orekit #ECEBD8 {
package estimation #DDEBD8 {
package measurements #CBDBC8 {
class EstimatedMeasurement
interface ObservedMeasurement {
+estimate(state)
}
EstimatedMeasurement <-left- ObservedMeasurement
}
package sequential #CBDBC8 {
interface CovarianceMatrixProvider
class KalmanEstimator {
+getOrbitalParametersDrivers()
+getPropagatorsParametersDrivers()
+getMeasurementsParametersDrivers()
+setObserver(observer)
+estimationStep(measurement)
}
abstract AbstractKalmanModel {
#updateReferenceTrajectories(propagators, pType, sType)
#analyticalDerivativeComputations(mapper, state)
+ProcessEstimate getEstimate()
+EstimatedMeasurement<?> getCorrectedMeasurement()
+SpacecraftState[] getCorrectedSpacecraftStates()
}
class KalmanModel
class DSSTKalmanModel
class TLEKalmanModel
AbstractKalmanModel <-left-* KalmanEstimator
KalmanEstimator *-right-> ExtendedKalmanFilter_T
AbstractKalmanModel *--> CovarianceMatrixProvider
EstimatedMeasurement <-- AbstractKalmanModel
KalmanModel --|> AbstractKalmanModel
DSSTKalmanModel --|> AbstractKalmanModel
TLEKalmanModel --|> AbstractKalmanModel
}
}
}
package user.application #F3EDF7 {
class MyProcessNoiseMatrixProvider #EAE6F7/B9B3D2
CovarianceMatrixProvider <|-- MyProcessNoiseMatrixProvider
}
@enduml
|
1e44a6cfd400ff53b27980e8a834673283eaa29f | 21ccee783b583ee5f856623a9c37c1af9680a7f9 | /src/main/java/com/project/app/controller/controller.plantuml | 6b4e08b5c208bf635dec6166c82c75b0fe69ddae | [] | no_license | ixior462/WebApp | a110ab7c5a1f5d3c53c9708fff70a4235de3cefc | 01a7cd8bae2a1f4e57d17d73b91ca6e03198d15f | refs/heads/master | 2020-04-05T09:29:59.669852 | 2019-03-20T23:16:08 | 2019-03-20T23:16:08 | 156,759,849 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 539 | plantuml | @startuml
title __CONTROLLER's Class Diagram__\n
package com.project.app {
package com.project.app.controller {
class Controller {
+ sayHello()
}
}
}
package com.project.app {
package com.project.app.controller {
class WebController {
+ showLearningPage()
}
}
}
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
|
4f6e989cf747811e93876d02b98c23ef469ef969 | 73071b503ae97c90519e39dbc4bd83f9f6786c46 | /project_diagrams/classDiagrams/login.puml | e773cb4d8671010cfc67f41501f17dea327af890 | [] | no_license | guillaume-chebib/StudEasy | 3327c1ddfe16b4068332a179ede5913c0cef6c0c | 17a90a16cd1d1a954941d5acea26ce0c1b22231a | refs/heads/master | 2023-02-14T20:32:03.490210 | 2021-01-11T15:09:17 | 2021-01-11T15:09:17 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,617 | puml | @startuml
skinparam classAttributeIconSize 0
class Application
package launcher{
class Main{
start(Stage stage)
{static} main(String[] args)
}
Application <|-- Main
}
interface Initializable
package GUI{
abstract class AbstractRouter{
+ {static} LOGIN_FXML_PATH : String = "views/login.fxml"
+ {static} load(String pathFXML) : Parent
+ changeView(String pathFXML, ActionEvent event)
+ adminRestricted(String pathFXML, ActionEvent event)
+ studentRestricted(String pathFXML, ActionEvent event)
+ partnerRestricted(String pathFXML, ActionEvent event)
}
class LoginController{
- emailTF : TextField
- passwordTF : TextField
- loginFailLabel : Label
+ login(ActionEvent event)
+ loadRegister(ActionEvent event)
+ exit(ActionEvent event)
+ initialize(URL location, RessourceBundle resources)
}
class UserRouter{
+ {static} REGISTER_FXML_PATH : String = "views/user/register.fxml"
+ {static} HOME_STUDENT_FXML_PATH : String = "views/user/homeStudent.fxml"
+ {static} HOME_ADMIN_FXML_PATH : String = "views/user/homeAdmin.fxml"
+ {static} HOME_PARTNER_FXML_PATH : String = "views/user/homePartner.fxml"
+ {static} getInstance() : UserRouter
+ login(ActionEvent event )
}
Initializable <|.down. LoginController : implements
AbstractRouter <.. Main : creates
LoginController <-- AbstractRouter
AbstractRouter <.left. LoginController : creates
AbstractRouter <|-- UserRouter
}
package BusinessLogic{
class FacadeUser{
+ login(email,password)
+ {static} getInstance() : FacadeUser
}
class SessionUser{
+ {static} getInstance() : SessionUser
+ getCurrentUser() : User
+ setCurrentUser(User currentUser)
+ isStudent() : boolean
+ isAdmin() : boolean
+ isPartner() : boolean
}
interface SessionI{
+ isStudent(): boolean
+ isAdmin() : boolean
+ isPartner() : boolean
}
class User{
- lastname : String
- firstname : String
- emailAdress : String
- password : String
+ getLastname(): String
+ setLastname(String lastname)
+ getFirstname(): String
+ setFirstname(String firstname)
+ getEmailAdress(): String
+ setEmailAdress(String emailAdress)
+ getPassword(): String
+ setPassword(String password)
+ getRole(): Role
+ setRole(Role role)
}
abstract class Role
class Admin
class Student{
- pseudo : String
- points : int
- services : Service[]
- servicesBuy : CommandOfService[]
+ getPseudo() : String
+ setPseudo(String pseudo)
+ getPoints() : int
+ setPoints(int points)
+ getServices() : Service[]
+ setServices(Service[] services)
+ getServicesBuy() : CommandOfService[]
+ setServicesBuy(CommandOfService[] servicesBuy)
}
class Partner{
- company : String
- jobs : Job[]
- coupons : Coupon[]
+ getCompany() : String
+ setCompany(String company)
+ getJobs() : Job[]
+ setJobs(Job[] jobs)
+ getCoupons() : Coupon[]
+ setCoupons(Coupon[] coupons)
}
abstract class Factory{
+ CreateUserDAO() : UserDAO
+ {static} getInstance() : Factory
}
class MySQLFactory{
- db : Connection
+ CreateUserDAO() : UserDAO
+ getDb() : Connection
- openConnection()
- closeConnection()
}
Role <|-left Student
Role <|-right Admin
Role <|--up Partner
Role <-- User
User <-- SessionUser
SessionI <|.. SessionUser : implements
SessionI <-- AbstractRouter
SessionUser <.. FacadeUser : creates
Factory <|-- MySQLFactory
FacadeUser <-up- LoginController
}
package DAO{
abstract class UserDAO{
+ searchUser(String email) : User
+ {static} getInstance() : UserDAO
}
class MySQLUserDAO{
- DB : Connection
+ searchUser(String email) : User
}
class MySQLConnectionUtil{
- db : Connection
+ getDb() : Connection
+ {static} getInstance() : MySQLConnectionUtil
}
UserDAO <|- MySQLUserDAO
UserDAO <-- FacadeUser
UserDAO ..> Factory : creates
MySQLUserDAO <.left. MySQLFactory : creates
MySQLConnectionUtil <.left. MySQLFactory : creates
}
@enduml |
2f1c8e56aa57ee7827648e4c82460f0c8919b235 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductSelectionDeletedMessage.puml | 09ddcfadf26aa79ef28bfcb31fac54240a45932a | [] | 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,141 | 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 ProductSelectionDeletedMessage [[ProductSelectionDeletedMessage.svg]] extends Message {
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]]
}
interface Message [[Message.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
|
5234265cd6da9c7a2d066623021393231c25685d | e18b4f4c49f0fea4056d223d402a74430444410b | /api/stackmovie/src/main/java/fty/api/uml/stackmovie-mld.puml | 546e1a78ddb4c63da4c100154a5681db81f05c3d | [] | no_license | CiGit-Franck/stack-movie | cdf49aaf96582d18e4eb4e13718c3ed4a042785a | e9a391268cb1dd2105e41e36d459f1742cce204e | refs/heads/master | 2023-01-10T21:38:04.381229 | 2021-04-05T19:44:27 | 2021-04-05T19:44:27 | 252,415,921 | 0 | 0 | null | 2023-01-07T16:41:41 | 2020-04-02T09:49:45 | Java | UTF-8 | PlantUML | false | false | 847 | puml | @startuml
Movie "1" -- "1..n" Genre : a
Movie "1" -- "1..n" Actor : a
Movie "1" -- "1..n" Director : a
User "1" -- "0..n" Movie : a vu
class Movie {
idMovie: Integer
title: String
director: String
date: Date
genres: Genre[]
actors: Actor[]
story: String
imdbRating: Float
imdbVote: integer
getMovieFromOmdbById(imdbId: String)
}
enum Genre {
[
"Action",
"Adventure",
"Crime",
"Drama",
"Fantasy",
"Mystery",
"Sci-Fi",
"Thriller",
...
]
}
class Actor {
idActor: Integer
firstName: String
lastName: String
}
class Director {
idDirector: Integer
firstName: String
lastName: String
}
class User {
idUser: Integer
firstName: String
lastName: String
mail: String
login: String
password: String
moviesSeen: Movie[]
}
@enduml
|
d6df76bd4771d4237f32cfcfaf5e38915975cc55 | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Tests.EngineTests/TaxCalculationEngineTests.puml | fe1966dfbcd37718b37136cb6c3e9c85f5f71c54 | [
"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 | 153 | puml | @startuml
class TaxCalculationEngineTests {
+ TaxCalculationEngine_CalculateCartTax() : void
}
EngineTestBase <|-- TaxCalculationEngineTests
@enduml
|
e3e5e9e98ff2857965fbf8fdbf499c2241df974e | 564e8c1810c4c7cae58332e369289129185a1bb4 | /Entwurf/PlantUML/ClassDiagrams/MVC/Controller.puml | d7dda9d5c6ce1ec42953fb9f3f28dae37dbd5711 | [] | no_license | JonaEnz/pse-airquality-1 | e1e23bce8330949fabb822dcf4ac3ab70aac5ca7 | b7d69bd0f4c9a749e9755196c77a92335949c2b0 | refs/heads/master | 2022-12-14T03:04:53.259309 | 2020-09-06T18:54:30 | 2020-09-06T18:54:30 | 262,756,089 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,669 | puml | @startuml Controller
namespace Controller {
namespace Frost {
class DataProvider {
+ {static} getObservationStations(middle: Position, radius : number) : ObservationStation[]
+ {static} getLatestObservation(station : ObservationStation, feature : Feature) : Observation
+ {static} getObservations(station : ObservationStation, start : Date, end : Date,
{static} feature : Feature, freuqency? : Frequency) : Observation[]
+ {static} getObservationStations(middle : Position, radius : number) : ObservationStation[]
+ {static} getStation(id : string) : ObservationStation
}
note as N1
Fassade, nur diese Klasse ist nach außen sichtbar.
end note
DataProvider .. N1
DataProvider --> FrostFactory
DataProvider --> FrostServer
abstract QueryBuilder {
getQuery(options : any) : string
}
FrostFactory --> ResultModelConverter
namespace GetObservationStation {
class GetObservationStationsBuilder implements Controller.Frost.QueryBuilder {
getQuery(options: GetObservationStationsOptions) : string
}
class GetObservationStationFactory implements Controller.Frost.FrostFactory{
GetQueryBuilder() : GetObservationStationsBuilder
GetConverter() : GetObservationStationsConverter
}
GetObservationStationsBuilder --> GetObservationStationsOptions
GetObservationStationFactory --> GetObservationStationsBuilder
GetObservationStationFactory --> GetObservationStationsConverter
interface GetObservationStationsOptions {
middle : Position
radius : number
}
class GetObservationStationsConverter<ObservationStation[]> implements Controller.Frost.ResultModelConverter {
convert(json : string) : FrostResult<ObservationStation[]>
}
note as N3
GetObservationStation ist beispielhaft für alle Factorys
die für die Übersicht weggelassen wurden.
end note
GetObservationStationFactory .. N3
}
abstract ResultModelConverter<T> {
convert(json : string): FrostResult<T>
}
abstract FrostFactory {
GetConverter() : ResultModelConverter<T>
GetQueryBuilder() : QueryBuilder
}
FrostFactory --> QueryBuilder
class FrostServer {
getUrl() : string
setUrl(url : string)
request(ff : FrostFactory, options : any) : FrostResult
<<async>> asyncRequest(ff : FrostFactory, options : any) : Promise<FrostResult>
}
note as N2
request(new GetObservationStationsFactory(), options : GetObservationStationsOptions) {
var query = ff.getQueryBuilder().getQuery(options)
var json = this.send(query)
var obs = ff.getConverter().convert(json)
return obs
}
end note
FrostServer .. N2
}
namespace Storage {
class Language {
{static} + getText(id: string) : string
{static} + changeLanguage(languageId : string): void
{static} + getSelectedLanguageId() : string
}
class MapConfigurationMemory {
+ save(MapConfiguration conf, viewport : Viewport)
+ load() : (MapConfiguration, Viewport)
}
}
MapController --> Controller.Storage.MapConfigurationMemory
class MapController {
+ handlePopup(pin : MapPin) : [Station, Observation]
+ handleViewportChange(viewport : Viewport)
--
+ getPins() : MapPin[]
+ getPolygons() : Polygon[]
+ changeFeature(feature : Feature) : void
+ onConfigurationChange(mapConf : MapConfiguration) : void
+ search(searchTerm : string) : void
+ updateCurrentPosition(position : Position) : void
}
abstract MapConfiguration {
+ getPins(port : Viewport) : MapPin[]
+ getPolygons(port: Viewport) : Polygon[]
+ getScale() : Scale
+ getFeatures() : Feature[]
}
class StationConfiguration extends MapConfiguration {
+ setFeature(feature : Feature)
}
class PolygonConfiguration extends MapConfiguration {
+ setFeature(feature : Feature)
}
class NearConfiguration extends MapConfiguration {
+ radius : number
--
+ setFeature(feature : Feature)
}
}
@enduml |
a22d4f2bba089da6d8d4e3be9c92c67edeeac5ed | c5cc6e072bae0c85c2898ab1ae1edd095f8534ba | /Reeks1/Reeks1.puml | 035694892646b4a383c8d6bdc90abcc4242c22de | [] | no_license | WillemDendauw/SoftwareontwikkelingII | 718223d6c8055c3679de2e1dee5a399e4f7df672 | 587365b1bcf4a715c1f73f44cdf8d48f3cf4b783 | refs/heads/master | 2022-12-07T21:12:00.131491 | 2020-08-27T15:21:47 | 2020-08-27T15:21:47 | 258,460,142 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 309 | puml | @startuml willem
skinparam classAttributeIconSize 0
class Person {
-name : string
+Person(name : string)
+WelcomeMessage(): string
}
class Student {
-inschrijvingsnummer : int
+Student(name : string, inschrijvingsnummer: int)
+WelcomeMessage() : string
}
Person <|-- Student
@enduml |
f715b4ed0e1731c488f335067bca741470e4610c | 52ca52ff0ab109553953139c0206437651c4acea | /Structural/DecoratorPattern/Decorator.puml | 3d338158b9cddfe89e4306fb09d4a3c44f96e9f1 | [] | no_license | semihsevmm/Design-Patterns | d5abf13f2d9703a133ed3f66fcbaa7cff4dab6c1 | 58c108bd23ef5f913a25b2e9d15dd6899a85e6b5 | refs/heads/main | 2023-08-10T23:58:15.067685 | 2021-09-14T19:54:11 | 2021-09-14T19:54:11 | 349,040,506 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 721 | puml | @startuml
abstract class "Drone"{
+name : string
{abstract} +fly()
}
class Quadcopter{
+Quadcopter(name : string)
+name : string
+fly()
}
class Octocopter{
+Octocopter(name : string)
+name : string
+fly()
}
abstract class "DroneDecorator"{
+DroneDecorator(myDrone : Drone)
#myDrone : Drone
+name : string
+fly()
{abstract} +operation()
}
class CameraDecorator{
+CameraDecorator(myDrone : Drone)
+operation()
}
class NavigationDecorator{
+NavigationDecorator(myDrone : Drone)
+operation()
}
Drone <|.. Quadcopter
Drone <|.. Octocopter
Drone <|.."DroneDecorator"
Drone *-- "DroneDecorator"
"DroneDecorator" <|.. CameraDecorator
"DroneDecorator" <|.. NavigationDecorator
@enduml |
034a8e4901085cc6dd849ee864b66d22a22fef29 | 92addf9ac745235fb51e5e3a0abd2494db5f9f4b | /src/main/java/ex42/exercise42_UML.puml | 261f4bf857f180dbf944e07962883cb5be7578d1 | [] | no_license | vishal8557/choday-cop3330-assignment3 | bd61e8060aba52f8d5376e6df2faedc02ed1d3d3 | d81199eae03bf0404114aa812f8c3f50f425e2db | refs/heads/master | 2023-08-31T07:45:19.655353 | 2021-10-11T18:26:49 | 2021-10-11T18:26:49 | 416,053,974 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 271 | puml | @startuml
'https://plantuml.com/sequence-diagram
class App{
- App : ArrayList<String>
- ArrayList -> list_of_names_from_the_file
}
class Process{
- ArrayList -> the_exercise_file_path_here
- the_names_of_the_ppl_in_our_list
- ArrayList -> rws_of_the_names_here
}
@enduml |
e6274c09f095f385e7a06832173374d89cd2008a | 68b465c4da2f9378b84511d1e52e685615088466 | /ProyectoFinal/diagramas/clases/General.plantuml | 66dff7bde545c2265d31314aa51946f2821c9dbd | [] | no_license | Vicroni/Modelado2020-4 | 470be04c19201219c23ced776aefbaf6da0c7003 | 13ee04f2e561ac9c669b12f364e70c3c5af31872 | refs/heads/master | 2022-12-22T06:45:30.350866 | 2020-09-29T15:24:12 | 2020-09-29T15:24:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,360 | plantuml | @startuml General
/'skinparam dpi 200'/
skinparam classAttributeIconSize 0
hide circle
/'-----Clases y subclases de soldado----'/
class Soldado {
-id: int
#nombre: String
#vida: int
#distancia: int
#movimiento: Movimiento
#ataque: Ataque
#reporte: String
/'-----Metodos----'/
+muestraAvance(): void
+muestraReporte(): void
+muestraMovimiento(): void
}
class Infanteria{
+Infanteria(distancia: int)
}
class Caballeria{
+Caballeria(distancia: int)
}
class Artilleria{
+Artilleria(distancia: int)
}
Soldado <|-- Infanteria
Soldado <|-- Caballeria
Soldado <|-- Artilleria
/'-----Strategy Movimiento----'/
interface Movimiento<<interface>>{
moverse(): int
}
class MovimientoLento{
moverse(): int
}
class MovimientoNormal{
moverse(): int
}
class MovimientoRapido{
moverse(): int
}
Movimiento <|.. MovimientoLento
Movimiento <|.. MovimientoNormal
Movimiento <|.. MovimientoRapido
Movimiento --o Soldado
/'-----Strategy Ataque----'/
interface Ataque<<interface>>{
atacar(enemigo: Enemigo): void
}
class AtaqueMosquete{
atacar(enemigo: Enemigo): void
}
class AtaqueCanon{
atacar(enemigo: Enemigo): void
}
class AtaquePistola{
atacar(enemigo: Enemigo): void
}
Ataque <|.. AtaqueMosquete
Ataque <|.. AtaqueCanon
Ataque <|.. AtaquePistola
Soldado o-- Ataque
/'-----Comandante----'/
class Comandante{
-peloton: List<Soldado>
-enemigo: Enemigo
-soldado: Soldado
+Comandante(soldado: Soldado)
+notificarAtaque(): void
+notificarMovimiento(): void
+notificarReporte(): void
+muestraAvance(): void
+muestraReporte(): void
+muestraMovimiento(): void
}
class Enemigo{
-vida: int
-distanciaInicial: int
+Enemigo(vida: int, distanciaInicial:int)
+recibeDano(dano:int): void
+getVida(): int
+getDistanciaInicial(): int
}
interface IObservable<<interface>>{
+notificarAtaque(): void
+notificarMovimiento(): void
+notificarReporte(): void
}
interface IObservador<<interface>>{
+muestraAvance(): void
+muestraReporte(): void
+muestraMovimiento(): void
}
Comandante --|> Soldado
Comandante ..|> IObservable
IObservador <|.. Soldado
Comandante o-- Enemigo
/'-----BuilderPelotones----'/
class ConstructorPelotones{
+{static} TIPOS: String[]
-comandante: Comandante
-enemigo: Enemigo
+ConstructorPelotones(tipoComandante: String, enemigo: Enemigo)
+agregaSoldados(tipo: String, numero: int): void
-creaSoldado(tipo: String): Soldado
+getInstancia(): Comandante
}
Comandante --o ConstructorPelotones
Soldado -->ConstructorPelotones :use
class Usuario{
-comandantes: List<Comandantes>
+Usuario()
+ordenaAtaque(): void
+ordenaMoverse(): void
+ordenaReportarse(): void
+agregaPeloton(): void
-creaEjercito(): ArrayList<Comandantes>
}
class UsuarioConEjercitoKamikase{
+UsuarioConEjercitoKamikase()
-creaEjercito: ArrayList<Comandantes>
}
class UsuarioConEjercitoExplorador{
+UsuarioConEjercitoExplorador()
-creaEjercito: ArrayList<Comandantes>
}
class UsuarioConEjercitoDefault{
+UsuarioConEjercitoDefault()
-creaEjercito: ArrayL ist<Comandantes>
}
Usuario <-- Comandante: use
Usuario <|-- UsuarioConEjercitoKamikase
Usuario <|-- UsuarioConEjercitoExplorador
Usuario <|-- UsuarioConEjercitoDefault
@enduml
|
df9943059921622f924d6007f184f447b4796b20 | 0c46b2988021dacf063778be69c12cf9466ff379 | /INF/B3/Fortgeschrittene Programmierkonzepte (FPK)/1/Übungen 2/04-generics/assets/class-spec-5.plantuml | 8f60fee9b1f455d00a72d9d906184a15547fa88c | [
"MIT"
] | permissive | AL5624/TH-Rosenheim-Backup | 2db235cf2174b33f25758a36e83c3aa9150f72ee | fa01cb7459ab55cb25af79244912d8811a62f83f | refs/heads/master | 2023-01-21T06:57:58.155166 | 2023-01-19T08:36:57 | 2023-01-19T08:36:57 | 219,547,187 | 0 | 0 | null | 2022-05-25T23:29:08 | 2019-11-04T16:33:34 | C# | UTF-8 | PlantUML | false | false | 376 | plantuml | @startuml
package de.thro.inf.prg3.a04.utils {
+abstract class PlantBedUtility{
+{static} <T> splitBedByColor(bed: PlantBed<T>) : Map<PlantColor, SimpleList<T>>
+{static}<T> pecs(dest: SimpleList<T>, source: SimpleList<T>): void
+{static}<T> pecsWithFilter(dest: SimpleList<T>, source: SimpleList<T>, predicate: Predicate<T>): void
}
}
@enduml |
af3ffa3146b112439c1be49b6a29fd1b0c5bd985 | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /examples/uml/application-ex.puml | 42f7cc2957c8912cbd845492c18af7bdd4aaa143 | [
"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 | 1,007 | puml | @startuml
package ModelProfile <<profile>> {
}
package MyApplication {
class CentralNode1 <<MainNode>> {
-- <<Node>> --
location="Office"
}
class CentralNode2 <<MainNode>> {
-- <<Node>> --
location="Kitchen"
}
class LocalNode1 <<Node>> {
-- <<Node>> --
location="Office"
}
class LocalNode2 <<Node>> {
-- <<Node>> --
location="Office"
}
CentralNode1 -- CentralNode2 : <<Edge>>
LocalNode1 -- CentralNode1 : <<LocalEdge>>
LocalNode2 -- CentralNode1 : <<LocalEdge>>
}
MyApplication --> ModelProfile : <<apply>>
hide circle
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 |
cd5a763b044b911100d2f7c5c71bdd954e6c7931 | 38aaf3aab3012f12640f7ec2d8e0b13d47bd73df | /Behavioral-Pattern/src/mediater/demo1/UML类图.puml | 546bd993cb0063333702824448662f644eb9ee80 | [] | no_license | Danbro007/DesignPattern | ff0bf4a2d68e40bd8cbf3574ad8e377200af1f20 | 38e5a4ec5bdfd463090e12f740e0638c9c8e6d25 | refs/heads/master | 2021-03-31T16:55:54.094329 | 2020-03-26T13:14:19 | 2020-03-26T13:14:19 | 248,121,211 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 826 | puml | @startuml
interface Mediator {
+ void getMessage(int changeState, String colleagueName);
+ void register(String colleagueName, ElectricAppliance electricAppliance);
}
abstract class ElectricAppliance{
- String name;
- Mediator mediator;
+ abstract void sendMessage(int changeState, String name);
+ Mediator getMediator()
+ abstract void start();
+ abstract void stop();
}
class Light
class Tv
class Alarm
class CoffeeMachine
class ConcreteMediator{
- HashMap<String, ElectricAppliance> colleagueMap;
- private HashMap<String, String> interMap;
}
class Client
ConcreteMediator --|> Mediator
Light --|> ElectricAppliance
Tv --|> ElectricAppliance
Alarm --|> ElectricAppliance
CoffeeMachine --|> ElectricAppliance
ElectricAppliance --o ConcreteMediator
Client ..> Mediator
@enduml |
8dc6d936d697f3815a1840abfae6bd1b7300e374 | 8c59fbc94a2ba7fa9a12c10991fe334cda0df128 | /metrics/web/docs/features/feature_config/diagrams/feature_config_data_layer_class_diagram.puml | 7b4126c20bce2d476b3dad0adb00f2fe6f098ec3 | [
"Apache-2.0"
] | permissive | solid-vovabeloded/flank-dashboard | 7e952fa1399585d3f15cae2ed2cab435fb82df3f | 15dae0c40823cc12886a1bb0c087442c0697ac89 | refs/heads/master | 2023-07-11T19:54:58.430004 | 2021-08-06T10:29:26 | 2021-08-06T10:29:26 | 389,593,827 | 0 | 0 | Apache-2.0 | 2021-07-26T10:33:52 | 2021-07-26T10:25:59 | null | UTF-8 | PlantUML | false | false | 732 | puml | @startuml feature_config_data_layer_class_diagram
package common.domain.repository {
interface FeatureConfigRepository {}
}
package common.domain.entities {
class FeatureConfig {}
}
package common.data {
package repository {
class FirestoreFeatureConfigRepository {}
}
package models {
class FeatureConfigData {
+ Map<String, dynamic> toJson()
+ factory fromJson(Map<String, dynamic> json)
}
}
}
package core.src.data.model {
class DataModel {}
}
FirestoreFeatureConfigRepository ..|> FeatureConfigRepository
FirestoreFeatureConfigRepository --> FeatureConfigData : uses
FeatureConfigData --> FeatureConfig
FeatureConfigData ..|> DataModel
@enduml
|
35c7959016d4b6d9b163de4514fe5a17ef250a62 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderAddDiscountCodeAction.puml | 5ca14c313d65cfdb91a8bd18d47646368018c781 | [] | 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 | 468 | 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 StagedOrderAddDiscountCodeAction [[StagedOrderAddDiscountCodeAction.svg]] extends StagedOrderUpdateAction {
action: String
code: String
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
|
9eeb5783d9128aa3a29a5d6bcf36367b1028d5e9 | c183d23433bcd562123927ec0a6fb4ee9832e6b5 | /parser/generated.puml | 9fd65f881311287222fbe7b32150f3ff94ae0cbf | [] | no_license | BGordts/MDDocumentation | 9337177ce2aa998dd1c2011fa2e7cf764197dc8a | f3010f51f45fd8aea1f395dd5449b12dc0d6529b | refs/heads/master | 2021-08-24T12:33:17.189895 | 2017-12-09T22:11:46 | 2017-12-09T22:11:46 | 113,659,120 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 184 | puml | @startuml
class Concepts.TodoItem {
{field} title (string)
{field} created_at (date)
}
class Concepts.Tag {
{field} title (string)
}
Concepts.TodoItem --> Concepts.Tag
@enduml |
c500f47b34ce3966909a1720c54ed50ba572a392 | 0ed9afa0359ffd68d7765c3747baec328bbd096b | /app/docs/chitter_models.puml | 70a4184055eea11a74f703310d3011a1d41eaf6b | [] | no_license | meta-morpho-sys/new_chitter | 46f24d1741e0583b5654caff6f38c33324438453 | 0113c19f58e3b86bdacc183dc9cecefb4da751b1 | refs/heads/master | 2020-03-16T05:01:50.331328 | 2018-06-29T09:48:01 | 2018-06-29T09:48:01 | 132,524,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 234 | puml | @startuml
class User {
id
name
email
password
{static} create()
{static} find()
{static} authenticate()
{static} exists?()
peeps()
}
class Peep {
id
user_id
text
timestamp
{static} create()
{static} find()
{static} all()
}
@enduml
|
ee3d2d73a96f591eb5879d9a48c920fcf3b13e89 | d09f0e6e0ba364c9bb06e0985bee46bd1fdd1f4a | /docs/TP5-observer.plantuml | 2916f2dc09a351c24522bec45f059b90a33f5a0c | [
"CC-BY-SA-3.0",
"MIT"
] | permissive | IUT-Blagnac/cpoa-tp5-W-Trinh | 6004721d327bee6e9cce748f6813c849039b4c17 | 9cac2710a2772520aeed9e75c31f1926f1b53cec | refs/heads/master | 2023-02-02T14:18:36.556813 | 2020-12-09T11:12:05 | 2020-12-09T11:12:05 | 319,919,151 | 0 | 0 | MIT | 2020-12-09T11:12:13 | 2020-12-09T10:22:15 | Java | UTF-8 | PlantUML | false | false | 1,838 | plantuml | @startuml
interface Observer [[java:observer.pattern.Observer]] {
void update(Observable o)
}
class BarChartObserver [[java:observer.pattern.BarChartObserver]] {
-Vector<CourseRecord> courseData
+BarChartObserver(CourseData data)
+void paint(Graphics g)
+void update(Observable o)
}
class JPanel [[java:javax.swing.JPanel]] {
}
JPanel <|-- BarChartObserver
interface Observer [[java:observer.pattern.Observer]] {
}
Observer <|.. BarChartObserver
abstract class Observable [[java:observer.pattern.Observable]] {
#Vector<Observer> observers
+Observable()
+void attach(Observer o)
+void detach(Observer o)
+void notifyObservers()
+{abstract}Object getUpdate()
}
class CourseController [[java:observer.pattern.CourseController]] {
-Vector<JSlider> sliders
-JPanel coursePanel
+CourseController(CourseData courses)
+void addCourse(CourseRecord record)
+void update(Observable o)
+void actionPerformed(ActionEvent arg0)
+void stateChanged(ChangeEvent arg0)
+{static}void main(String[] args)
}
class CourseData [[java:observer.pattern.CourseData]] {
}
CourseController --> "1" CourseData : courseData
class JPanel [[java:javax.swing.JPanel]] {
}
JPanel <|-- CourseController
interface Observer [[java:observer.pattern.Observer]] {
}
Observer <|.. CourseController
interface ChangeListener [[java:javax.swing.event.ChangeListener]] {
}
ChangeListener <|.. CourseController
interface ActionListener [[java:java.awt.event.ActionListener]] {
}
ActionListener <|.. CourseController
class CourseData [[java:observer.pattern.CourseData]] {
-Vector<CourseRecord> courseData
+CourseData()
+void addCourseRecord(CourseRecord courseRecord)
+void changeCourseRecord(String subjectName, int numOfStudents)
+Vector<CourseRecord> getUpdate()
}
class Observable [[java:observer.pattern.Observable]] {
}
Observable <|-- CourseData
@enduml |
c4582ee7a65ac27a2f59b21c8b06890dd875de8d | d3f921b9e488b1d7e2fa86d01a2e6855219b1d05 | /docs/plantuml/EKA/access.plantuml | 1f3fc1ce1cc056dbf608c6185cc1d07ec3e65bf5 | [
"Apache-2.0"
] | permissive | gematik/ref-ePA-FdV-Modul | d50e244d781702b95a9a31dc4efee09765546d79 | 2c6aba13f01c4fb959424342a5fa8ce1660ffad4 | refs/heads/master | 2022-01-19T20:31:23.703274 | 2022-01-07T07:24:03 | 2022-01-07T07:24:03 | 239,501,237 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 182 | plantuml | @startuml
namespace de.gematik.ti.epa.fdv.key.access.control {
class de.gematik.ti.epa.fdv.key.access.control.DummyClass {
+ doSome()
}
}
@enduml
|
a9889f8c389700024c54817d356581ffd4156f05 | a68f0deb2ada7b0a7177e989ea49e9bd0305f230 | /app-clock/src/main/java/cn/teachcourse/strategy/abstract.puml | 1962529a747354de259c9693959d1edc2a1ba619 | [] | no_license | anan52o/AllDemos | af7efdb1a010e197c03ce12f15d45a288e5f7ce6 | 5c43624e26fad6dd0627a336f02e06ce24819e4c | refs/heads/master | 2021-06-26T03:29:50.293835 | 2017-09-06T09:07:13 | 2017-09-06T09:07:13 | 104,657,926 | 1 | 0 | null | 2017-09-24T16:12:24 | 2017-09-24T16:12:24 | null | UTF-8 | PlantUML | false | false | 369 | puml | @startuml
abstract class WatchView{
{abstract} paint(Canvas canvas):void
}
class DefaultWatchViewImpl {
paint(Canvas canvas):void
}
class NormalWatchViewImpl {
paint(Canvas canvas):void
}
class DesignWatchViewImpl {
paint(Canvas canvas):void
}
WatchView <|--- DefaultWatchViewImpl
WatchView <|--- NormalWatchViewImpl
WatchView <|--- DesignWatchViewImpl
@enduml |
2c5c695e143def1c10623fc53e1e5159f0f8e446 | 60678bb1e6eb0b40271890207bdd9058951c4ef3 | /test.puml | 9b92fa1a0b4d7ecf87e4da6bd38076d5c2fc91d3 | [] | no_license | griloHBG/BattleshipGame | ee7abbe34afb18327a32c8f1127a72c0ada1984a | cd1575f7de513c24a977d887e6deb74237d5210d | refs/heads/master | 2020-06-08T02:56:16.171431 | 2019-07-09T01:29:33 | 2019-07-09T01:29:33 | 193,146,169 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,698 | puml | @startuml
abstract class Ship {
+Ship()
+placeShip()
+getCells()
+geRtotationCenter()
+operator-()
+{abstract} getSymbol()
+{abstract} getShipName()
+{abstract} getShipDirection()
+{abstract}clone()
#m_size
#m_goodParts
#m_destroyedParts
#m_cells
#m_rotationCenter
#m_direction
#{abstract}setupRemainingShip()
#verifyNumCells()
#getSize()
-m_isInitialized
}
class HydroPlane {
-setupRemainingShip()
+HydroPlane()
+getSymbol()
+getShipName()
+clone()
+getUnitType()
}
abstract class LinearShip {
+LinearShip()
+setupRemainingShip()
}
class Carrier {
+Carrier()
+getSymbol()
+getShipName()
+clone()
+getUnitType()
}
class Cruiser {
+Cruiser()
+getSymbol()
+getShipName()
+clone()
+getUnitType()
}
class Destroyer {
+Destroyer()
+getSymbol()
+getShipName()
+clone()
+getUnitType()
}
class Submarine {
+Submarine()
+getSymbol()
+getShipName()
+clone()
+getUnitType()
}
Ship <|-- LinearShip
LinearShip <|-- Carrier
LinearShip <|-- Cruiser
LinearShip <|-- Destroyer
LinearShip <|-- Submarine
Ship <|-- HydroPlane
enum ShipDirection {
NORTH
EAST
SOUTH
WEST
UNDEFINED
}
enum ShipAppendResult {
APPENDED
NOT_APPENDED_TOO_CLOSE
NOT_APPENDED_OUT_OF_BOUNDS
}
class Field {
-m_grid
-m_ships
-toString()
-at()
-boundCheck()
+Field()
+{abstract}Field()
+const ROWS = 14
+const COLS = 14
+<<friend>> operator<<()
+testShipPosition()
+operator<<()
+removeUnit()
+{static}string_to_Coordinate()
}
Field "1" *- "15" Ship : " m_ships\t"
@enduml |
0c71fa03187cb02428d3b17a99b8dc7ee6628771 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Window/Modes/TimelineDisabledMode.puml | 3664fb8cece5cec9903069faf9f041ee7d357ee1 | [] | 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 | 394 | puml | @startuml
class TimelineDisabledMode {
+ TimelineDisabledMode()
+ <<override>> ShouldShowPlayRange(state:WindowState) : bool
+ <<override>> ShouldShowTimeCursor(state:WindowState) : bool
+ <<override>> ToolbarState(state:WindowState) : TimelineModeGUIState
+ <<override>> TrackState(state:WindowState) : TimelineModeGUIState
}
TimelineMode <|-- TimelineDisabledMode
@enduml
|
3eef7a472791f6b44b4676fb7935904b00a60918 | c18e4c785785169cf4137dc6667375dacfd87519 | /domain-payment.puml | 50ed7e057132c09de9d4d747cb0088a9ee708a87 | [
"Apache-2.0"
] | permissive | TheBund1st/tiantong-docs | cb0506a53e4e2204defd211616f10d8c03c27804 | 6798343302807e8dd8aeb680bbaf29d8c9e183f2 | refs/heads/master | 2020-05-20T06:04:09.982929 | 2019-05-18T02:42:25 | 2019-05-18T02:42:25 | 185,420,660 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 239 | puml | @startuml
class Payable {
{field} appId
{field} objectId
}
class OnlinePaymentSucceededEvent <<Event>> {
{field} onlinePaymentId: OnlinePaymentIdentifier
{field} payable: Payable
{field} amount: MonetaryAmount
}
@enduml |
ee7a41b8f1cfc130385da41a8e466fdfd339dc8b | e84cdf400a0c388fb619ee59d2e9b7088c68a42e | /Lab submits/60030098/car.puml | 4047f521650f374dcacc4d1877ff0fc3f4f79a10 | [] | no_license | 03376808-OOAD/OOAD-WEEK09 | d26687e13b991490dd87ed39c672401b613de35d | 5d1067a52587f950b5abf6e89de8a951f752266d | refs/heads/master | 2022-09-08T11:20:50.411169 | 2020-06-01T09:05:32 | 2020-06-01T09:05:32 | 69,578,305 | 0 | 10 | null | 2020-06-01T09:05:33 | 2016-09-29T14:57:50 | null | UTF-8 | PlantUML | false | false | 976 | puml | @startuml
class Car{
Travel()
+Seat
+Belt
+Handle
+Wheel
+Break
+Color
+Shape
+Door
-Engine
-Stereo
}
class Engine{
-Cylinders
-SparkPlug
-Valves
-Piston
-PistonRings
-Crankshaft
-ConnectingRod
-Sump
TurnsTheWheels()
}
class Stereo{
-Radio
-Amplifier
-Speaker
-Cassette
PlayMusic()
}
class Door{
-DoorHinge
-LockCylinder
+WindowCrank
+Moulding
+Handle
Open()
Lock()
}
class Pistons{
+AlluminiumAlloys
TransferForce()
}
class SparkPlugs{
+Shell
+CentralElectrode
SparkIgnition()
}
class Radio{
+Tuner
PlayCassette()
}
class Cassette{
-MagneticTape
RecordMusic()
}
class Handle{
Grab()
}
class Tuner{
Tune()
}
Car o-- Engine
Car o-- Stereo
Car o-- Door
Engine o-- Pistons
Engine o-- SparkPlugs
Stereo o-- Radio
Stereo o-- Cassette
Radio o-- Tuner
Door o-- Handle
@enduml |
fa8561045d952d6a6b0153573683a1993722a2d5 | ee9490b306058c956e326f2e48d4ced19f9bdb26 | /ProyFinalAsistenciasApp/Diagrama.puml | 52c4de275eda4638a21bca21fd8d8c91d4a59c41 | [] | no_license | misaeladame/desarrollo-en-android | 996124aa68373742b55388f6442827c72613135d | cbd299dcb11ddc8ccc7b5ac7f2a6b395a28dbe1f | refs/heads/main | 2023-06-12T03:19:07.921440 | 2021-06-30T18:37:03 | 2021-06-30T18:37:03 | 350,449,298 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,360 | puml | @startuml
class mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.SplashActivity {
# void onCreate(Bundle)
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.MainActivity {
- PermisoApp[] permisosReq
# void onCreate(Bundle)
+ void onRequestPermissionsResult(int,String[],int[])
+ void btnAcercaDeClick(View)
+ void btnAlumnosClick(View)
+ void btnMateriasClick(View)
+ void btnAsistenciasClick(View)
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.MateriasActivity {
~ TableLayout tlMaterias
~ Button cargarMaterias
# void onCreate(Bundle)
+ void getListaMaterias(String)
+ void btnCargarMateriasClick(View)
+ void btnLeerClick()
+ boolean isAlmExtLeible()
# void onActivityResult(int,int,Intent)
+ void llenarTabla()
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.modelos.Alumno {
- String numeroDeControl
- String nombreCompleto
+ <<Create>> Alumno(String,String)
+ String getNumeroDeControl()
+ void setNumeroDeControl(String)
+ String getNombreCompleto()
+ void setNombreCompleto(String)
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.modelos.Materia {
- String clave
- String nombre
+ <<Create>> Materia(String,String)
+ String getClave()
+ void setClave(String)
+ String getNombre()
+ void setNombre(String)
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.AsistenciasActivity {
~ ListView listViewAsistencias
~ ArrayList<String> listaInformacion
~ ArrayList<Asistencias> listaAsistencias
~ ConexionSQLite conn
~ TableLayout tlFechaAlumno
~ TextView tvNombreAlumnoFecha
# void onCreate(Bundle)
- void obtenerLista()
+ void getListaAsistencias(Uri,String)
+ void btnCargarAsistenciasClick(View)
# void onActivityResult(int,int,Intent)
+ void consultarListaAsistencias()
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.AlumnosActivity {
~ TableLayout tlAlumnos
~ Button cargarAlumnos
# void onCreate(Bundle)
+ void getListaAlumnos(String)
+ void btnCargarAlumnosClick(View)
+ void btnLeerClick()
+ boolean isAlmExtLeible()
# void onActivityResult(int,int,Intent)
+ void llenarTabla()
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.DetalleFechaAlumnoActivity {
# void onCreate(Bundle)
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.modelos.Modelo {
+ SQLiteDatabase getConn(Context)
+ int insertaAlumno(Context,Alumno)
+ int insertaMateria(Context,Materia)
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.AcercaDeActivity {
# void onCreate(Bundle)
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.bd.ConexionSQLite {
~ String TABLA_ALUMNO
~ String TABLA_MATERIA
~ String TABLA_ASISTENCIAS
~ String ELIMINAR_TABLA_ALUMNOS
~ String ELIMINAR_TABLA_MATERIA
+ <<Create>> ConexionSQLite(Context,String,SQLiteDatabase.CursorFactory,int)
+ void onCreate(SQLiteDatabase)
+ void onUpgrade(SQLiteDatabase,int,int)
}
class mx.edu.itl.equipo9.proyfinalasistenciasapp.modelos.Asistencias {
- int id
- String numeroDeControl
- String alumno
- String materia
- int presente
- int justificado
- int total
- String porcentaje
+ <<Create>> Asistencias()
+ int getId()
+ void setId(int)
+ String getNumeroDeControl()
+ void setNumeroDeControl(String)
+ String getAlumno()
+ void setAlumno(String)
+ String getMateria()
+ void setMateria(String)
+ int getPresente()
+ void setPresente(int)
+ int getJustificado()
+ void setJustificado(int)
+ int getTotal()
+ void setTotal(int)
+ String getPorcentaje()
+ void setPorcentaje(String,int)
}
androidx.appcompat.app.AppCompatActivity <|-- mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.SplashActivity
androidx.appcompat.app.AppCompatActivity <|-- mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.MainActivity
androidx.appcompat.app.AppCompatActivity <|-- mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.MateriasActivity
androidx.appcompat.app.AppCompatActivity <|-- mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.AsistenciasActivity
androidx.appcompat.app.AppCompatActivity <|-- mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.AlumnosActivity
androidx.appcompat.app.AppCompatActivity <|-- mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.DetalleFechaAlumnoActivity
androidx.appcompat.app.AppCompatActivity <|-- mx.edu.itl.equipo9.proyfinalasistenciasapp.activities.AcercaDeActivity
android.database.sqlite.SQLiteOpenHelper <|-- mx.edu.itl.equipo9.proyfinalasistenciasapp.bd.ConexionSQLite
@enduml |
0f4560f812d689d5ab6f1b4f72ecf86f21ccdef9 | f505f3173c77debabd0a54f4124ecd87df0cb583 | /design-patterns/src/main/java/com/nijunyang/designpatterns/facade/facade.puml | 57221b1035e8338f74e90986cd2395b03fa1acf7 | [] | no_license | bluedarkni/study | 4dab9a627e11703e7b19c1ca5e4fd1c7a5e6c447 | 3da7f58e4df50b2ce0aa38eaff09fbc7b0329cca | refs/heads/master | 2023-04-06T20:57:52.596183 | 2023-03-26T12:53:51 | 2023-03-26T12:53:51 | 226,616,133 | 4 | 3 | null | 2022-06-21T04:24:54 | 2019-12-08T04:50:21 | Java | UTF-8 | PlantUML | false | false | 367 | puml | @startuml
abstract class AbstractList
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
}
@enduml |
931da3c49767f45171f24716d3c2e3c82f79869c | b0dd40f4029906af64f6dd2ad119c5e81491de16 | /de.gematik.ti.fdv.epa.service.localization.api/src/main/java/de/gematik/ti/fdv/epa/service/localization/spi/spi.plantuml | e57779123a460cf6a9b9abe81d2317daa3167eae | [
"Apache-2.0"
] | permissive | gematik/ref-ePA-Service-Localization-API | 2cc5c9de41e9abc51c5ffbebf2c14c444022f5b0 | 845a84896bdf43dd0af47ada81f9bac04426ce3f | refs/heads/master | 2021-11-23T08:01:10.773951 | 2021-11-16T11:29:25 | 2021-11-16T11:29:25 | 216,000,749 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 466 | plantuml | @startuml
title __SPI's Class Diagram__\n
package de.gematik.ti.fdv.epa.service.localization.spi {
interface IServiceLocalizer {
{abstract} + lookup()
{abstract} + endpointURLForInterface()
{abstract} + getLookupStatus()
}
}
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
|
dda61ff92491421b2f1c3e1de3a230aefcc0583b | a21ec9b6cb72df8bfa8cec65fd8469c0b5204477 | /docs/myConfigClasses.plantuml | 3ebe79e3da15dbf406f3c5a5a469e459ac68a741 | [] | no_license | pmargani/myConfig | fd6be1b84469634e121ec107be40f1717edcf27e | 801fa63e0943c5490254996a169c6f592079bac2 | refs/heads/master | 2023-02-15T02:23:47.008466 | 2021-01-12T15:48:12 | 2021-01-12T15:48:12 | 329,013,080 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,016 | plantuml | @startuml
allowmixing
title configureDCR
class IFSystem {
+ IFPaths ifPaths
+ receiver
+ if1
+ centerFreq
+ tuningFreq
+ totalBW
+ velocity
+ vframe
+ vdef
}
class IFPaths {
+ [IFPath] paths
+ getFrontendFeeds(feed)
+ getFrontendNodes()
+ getBackendNodes()
+ getSortedBackendNodes(backend)
+ getMatchingPaths(start, end)
+ prunePathsForBackend(backend)
}
class IFPath {
+ [IFPathNode] path
+ getBackendNode()
+ getUniqueDeviceNode(device)
+ getFirstLikeDeviceNode(device)
+ aggregatePathBandpasses()
+ getBandpassUpToNode()
}
class IFPathNode {
+ name
+ device
+ deviceId
+ port
+ type
+ IFInfo ifInfo
}
class IFInfo {
+ Bandpasses bandpasses
+ filters
+ lo
}
class Bandpasses {
+ [Bandpass] bandpasses
+ Show()
}
class Bandpass {
+ lo
+ hi
+ bw
+ center
+ target
+ changes
+ mix(freq)
+ mixDown(freq)
+ mixUp(freq)
+ filter(lo, hi)
}
class Vdef {
+ freq_w_av_vel
+ v_high
+ v_low
+ compute_local_frame_w_vdef()
}
class MinMaxFreqs {
+ minf
+ maxf
+ bw
+ setMinMax(freq)
+ setMin(freq)
+ setMax(freq)
+ avgFreqs()
+ computeBW(bw)
}
class Manager {
+ params
}
class Receiver
class IFRack
class LO1
class DCR
class ScanCoordinator
component configureDCR
component dbParams
component userConfigDict
component cablingPickleFile
component StaticDefs
Manager <|-- Receiver
Manager <|-- LO1
Manager <|-- IFRack
Manager <|-- ScanCoordinator
Manager <|-- DCR
IFSystem *-- IFPaths
IFPaths "1" *-- "n" IFPath
IFPath "1" *-- "n" IFPathNode
IFPathNode *-- IFInfo
IFInfo *-- Bandpasses
Bandpasses "1" *-- "n" Bandpass
Receiver ..> StaticDefs: uses
IFRack ..> StaticDefs: uses
LO1 ..> StaticDefs: uses
configureDCR ..> dbParams: uses
configureDCR ..> IFSystem: uses
configureDCR ..> Manager: uses
configureDCR ..> Vdef: uses
configureDCR ..> MinMaxFreqs: uses
configureDCR ..> StaticDefs: uses
userConfigDict ..> configureDCR: takes
cablingPickleFile ..> configureDCR: takes
@enduml |
03957589ef983888f08c7bf52faa4993af45d335 | 850df42c7544ac83b23b4ad25e86fa2c22ec2f61 | /src/main/java/org/yyb/iterator/computerCollegeIterator.puml | 2f2707bc2cc171e6843ce8deb3432c002e8befc8 | [
"Apache-2.0"
] | permissive | yangyibo/gof | 1d1759911b0e70add0bff1c9dd437e6df0622498 | 60e0bd1c65de1717fa51a48d6b6126b1e5ba069f | refs/heads/master | 2022-12-19T19:58:34.423758 | 2020-08-15T17:48:47 | 2020-08-15T17:48:47 | 278,110,455 | 0 | 0 | Apache-2.0 | 2020-10-13T23:28:07 | 2020-07-08T14:24:12 | Java | UTF-8 | PlantUML | false | false | 619 | puml | @startuml
interface Iterator {
+ hasNext(): boolean
+ next(): E
+ remove(): void
}
interface College {
+ createIterator(): Iterator
}
class ComputerCollegeItreator
class InfoCollegeIterator
Iterator <|.. ComputerCollegeItreator
Iterator <|.. InfoCollegeIterator
class Department
class ComputerCollege
class InfoCollege
Department --o ComputerCollege
Department --o ComputerCollegeItreator
Department --o InfoCollege
Department --o InfoCollegeIterator
College <|.. ComputerCollege
College <|.. InfoCollege
class OutputImpl
class Client
College <.. Client
OutputImpl <.. Client
OutputImpl o-- College
@enduml |
94865a47c7518ff7e9da509ce584d9074a288b50 | 912d65be9bbd436a671d948abe8dadf356eb5216 | /src/main/java/com/juc/concurrency/test1/test1.plantuml | 5a1950372ee569d04a614a8f1c7f504b09c26340 | [] | no_license | ljhpole/netty-lecture | 02318e9992f488f03425c93b981e8718582b1b4b | a20bef9e6db5d1061a6f37ec0593087588ea1a0a | refs/heads/main | 2023-02-24T21:52:42.964037 | 2021-01-31T15:35:18 | 2021-01-31T15:35:18 | 334,686,240 | 0 | 1 | null | 2021-01-31T15:35:19 | 2021-01-31T15:19:40 | null | UTF-8 | PlantUML | false | false | 957 | plantuml | @startuml
title __TEST1's Class Diagram__\n
namespace com.juc.concurrency.test1 {
class com.juc.concurrency.test1.MyClass {
+ hello()
+ world()
}
}
namespace com.juc.concurrency.test1 {
class com.juc.concurrency.test1.SynchrosizedTest2 {
{static} + main()
}
}
namespace com.juc.concurrency.test1 {
class com.juc.concurrency.test1.Thread1 {
+ Thread1()
+ run()
}
}
namespace com.juc.concurrency.test1 {
class com.juc.concurrency.test1.Thread2 {
+ Thread2()
+ run()
}
}
com.juc.concurrency.test1.Thread1 o-- com.juc.concurrency.test1.MyClass : myClass
com.juc.concurrency.test1.Thread2 o-- com.juc.concurrency.test1.MyClass : myClass
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
|
30df64ab4be84d3ea80cc20454d128c48adcb9b9 | 74082c17dd6ccb245cabd94abfdb7c99cfdc5f56 | /docs/sources/paqueteMastermindModels.iuml | 9d14bf34de201da732f9cc3ecfd1d23fe66f031b | [] | no_license | jprieto92/mastermind-withDoubleDispatching | 447fc2c41c677390b91fbfdc2b1f3d41be900462 | 7df4e4839ca8c92e63353fabebf15f78751eecdc | refs/heads/main | 2023-01-10T06:19:20.854362 | 2020-11-14T19:30:39 | 2020-11-14T19:31:20 | 312,346,225 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,818 | iuml | @startuml
class mastermind.models.Board{
- {static} final int MAX_LONG
- SecretCombination secretCombination
- List<ProposedCombination> proposedCombination
- List<Result> results
- int attemps
+ Board()
+ reset() : void
+ addProposedCombination(ProposedCombination proposedCombination) : void
+ isLooser() : boolean
+ isWinner() : boolean
+ getAttemps() : int
+ getProposedCombination(int position) : ProposedCombination
+ getResult(int position) : Result
}
mastermind.models.Board *-down-> mastermind.models.ProposedCombination
mastermind.models.Board *-down-> mastermind.models.SecretCombination
mastermind.models.Board *-down-> mastermind.models.Result
mastermind.models.Board ..> java.util.ArrayList
'mastermind.controllers.ControllerVisitor ..> mastermind.controllers.StartController
'mastermind.controllers.Logic *-down-> mastermind.models.Game
'mastermind.controllers.UseCaseController <|-down- mastermind.controllers.StartController
enum mastermind.models.Color{
+ RED : Color
+ BLUE : Color
+ YELLOW : Color
+ GREEN : Color
+ ORANGE : Color
+ PURPLE : Color
+ {static} length() : int
}
abstract class mastermind.models.Combination{
- {static} final int WIDTH = 4
# List<Color> colors
# Combination()
+ {static} getWidth() : int
}
mastermind.models.Combination *-down-> mastermind.models.Color
mastermind.models.Combination ..> java.util.ArrayList
enum mastermind.models.Error{
+ DUPLICATED : Error
+ WRONG_CHARACTERS : Error
+ WRONG_LENGTH : Error
+ NULL : Error
+ isNull() : boolean
}
class mastermind.models.Game{
- Board board
- Turn turn
+ Game()
+ reset() : void
+ setUser() : void
+ isMaxAttempsReached() : boolean
+ addProposedCombination(ProposedCombination proposedCombination) : void
+ isMasterMind() : boolean
+ getAttemps() : int
+ getResult(int position) : Result
+ getProposedCombination(int position) : ProposedCombination
}
mastermind.models.Game *-down-> mastermind.models.Board
mastermind.models.Game *-down-> mastermind.models.Turn
class mastermind.models.Player{
- Board board
+ Player(Board board)
+ addProposedCombination(ProposedCombination proposedCombination) : void
}
mastermind.models.Player *-down-> mastermind.models.Board
class mastermind.models.ProposedCombination{
+ Contains(Color color, int position) : boolean
+ Contains(Color color) : boolean
+ getColors() : List<Color>
+ setCombination(String characters) : Error
}
mastermind.models.ProposedCombination ..> mastermind.models.Color
mastermind.models.ProposedCombination ..> java.util.ArrayList
mastermind.models.Combination <|-down- mastermind.models.ProposedCombination
class mastermind.models.Result{
- int blacks
- int whites
+ Result(int blacks, int whites)
+ isWinner() : boolean
+ getBlacks() : int
+ getWhites() : int
}
mastermind.models.Result ..> mastermind.models.Combination
class mastermind.models.SecretCombination{
+ SecretCombination()
+ getResult(ProposedCombination) : Result
}
mastermind.models.SecretCombination ..> mastermind.models.Color
mastermind.models.ProposedCombination ..> java.util.Collections
mastermind.models.ProposedCombination ..> java.util.Random
mastermind.models.Combination <|-down- mastermind.models.SecretCombination
class mastermind.models.State{
- StateValue stateValue
+ State()
+ reset() : void
+ next() : void
+ getValueState() : StateValue
}
mastermind.models.State *-down-> mastermind.models.StateValue
enum mastermind.models.StateValue{
+ INITIAL : StateValue
+ IN_GAME : StateValue
+ RESUME : StateValue
+ EXIT : StateValue
}
class mastermind.models.Turn{
- Player player
- Board board
+ Turn(Board board)
+ setUser() : void
+ addProposedCombination(ProposedCombination proposedCombination) : void
- getPlayer() : player
}
mastermind.models.Turn *-down-> mastermind.models.Player
mastermind.models.Turn *-down-> mastermind.models.Board
@enduml |
666eafe7285bcfe671e7a2d79a604e727d3f895e | 2099ea9bcbc7ae9c8c28d59f9e0fffbf478c1f03 | /UML/vendor/yiisoft/yii2-dev/framework/data.puml | 3860c98fe57c4bdf0c24861ec705152a64200744 | [] | no_license | adipriyantobpn/UML-diagram-for-some-PHP-packages | b3e3ed8e8898e4a5d56f0647cfbedaaa9d2dbdd5 | 0a9308fbd2d544c8f64a37cf9f11011edfc40ace | refs/heads/master | 2021-08-19T19:24:34.948176 | 2017-11-27T07:48:10 | 2017-11-27T07:48:10 | 112,164,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 8,907 | puml | @startuml
skinparam handwritten true
class yii.data.ActiveDataFilter {
+{static}TYPE_ARRAY = "array"
+{static}TYPE_BOOLEAN = "boolean"
+{static}TYPE_FLOAT = "float"
+{static}TYPE_INTEGER = "integer"
+{static}TYPE_STRING = "string"
+conditionBuilders : array = [
\t"AND" => "buildConjunctionCondition",
\t"OR" => "buildConjunctionCondition",
\t"NOT" => "buildBlockCondition",
\t"<" => "buildOperatorCondition",
\t">" => "buildOperatorCondition",
\t"<=" => "buildOperatorCondition",
\t">=" => "buildOperatorCondition",
\t"=" => "buildOperatorCondition",
\t"!=" => "buildOperatorCondition",
\t"IN" => "buildOperatorCondition",
\t"NOT IN" => "buildOperatorCondition",
\t"LIKE" => "buildOperatorCondition"
]
+queryOperatorMap : array = []
#buildAttributeCondition(attribute : string, condition : mixed) : array
#buildBlockCondition(operator : string, condition : mixed) : array
#buildCondition(condition : array) : array
#buildConjunctionCondition(operator : string, condition : mixed) : array
#buildInternal()
#buildOperatorCondition(operator : string, condition : mixed, attribute : string) : array
}
class yii.data.ActiveDataFilter extends yii.data.DataFilter
class yii.data.ActiveDataProvider {
+db : Connection|array|string
+key : string|callable
+query : yii.db.QueryInterface
+init()
#prepareKeys(models)
#prepareModels()
#prepareTotalCount()
+setSort(value)
}
class yii.data.ActiveDataProvider extends yii.data.BaseDataProvider
class yii.data.ArrayDataProvider {
+allModels : array
+key : string|callable
+modelClass : string
#prepareKeys(models)
#prepareModels()
#prepareTotalCount()
#sortModels(models : array, sort : Sort) : array
}
class yii.data.ArrayDataProvider extends yii.data.BaseDataProvider
abstract class yii.data.BaseDataProvider {
-counter : int = 0
+id : string
-_keys
-_models
-_pagination
-_sort
-_totalCount
+getCount() : int
+getKeys() : array
+getModels() : array
+getPagination() : Pagination|false
+getSort() : Sort|bool
+getTotalCount() : int
+init()
+prepare(forcePrepare : bool = false)
#prepareKeys(models : array) : array
#prepareModels() : array
#prepareTotalCount() : int
+refresh()
+setKeys(keys : array)
+setModels(models : array)
+setPagination(value : array|Pagination|bool)
+setSort(value : array|Sort|bool)
+setTotalCount(value : int)
}
class yii.data.BaseDataProvider extends yii.base.Component
class yii.data.BaseDataProvider implements yii.data.DataProviderInterface
class yii.data.DataFilter {
+{static}TYPE_ARRAY = "array"
+{static}TYPE_BOOLEAN = "boolean"
+{static}TYPE_FLOAT = "float"
+{static}TYPE_INTEGER = "integer"
+{static}TYPE_STRING = "string"
+attributeMap : array = []
+conditionValidators : array = [
\t"AND" => "validateConjunctionCondition",
\t"OR" => "validateConjunctionCondition",
\t"NOT" => "validateBlockCondition",
\t"<" => "validateOperatorCondition",
\t">" => "validateOperatorCondition",
\t"<=" => "validateOperatorCondition",
\t">=" => "validateOperatorCondition",
\t"=" => "validateOperatorCondition",
\t"!=" => "validateOperatorCondition",
\t"IN" => "validateOperatorCondition",
\t"NOT IN" => "validateOperatorCondition",
\t"LIKE" => "validateOperatorCondition"
]
+filterAttributeLabel : string
+filterAttributeName : string = "filter"
+filterControls : array = [
\t"and" => "AND",
\t"or" => "OR",
\t"not" => "NOT",
\t"lt" => "<",
\t"gt" => ">",
\t"lte" => "<=",
\t"gte" => ">=",
\t"eq" => "=",
\t"neq" => "!=",
\t"in" => "IN",
\t"nin" => "NOT IN",
\t"like" => "LIKE"
]
+multiValueOperators : array = [
\t0 => "IN",
\t1 => "NOT IN"
]
+operatorTypes : array = [
\t"<" => [
\t \t0 => "~~NOT RESOLVED~~",
\t \t1 => "~~NOT RESOLVED~~"
\t],
\t">" => [
\t \t0 => "~~NOT RESOLVED~~",
\t \t1 => "~~NOT RESOLVED~~"
\t],
\t"<=" => [
\t \t0 => "~~NOT RESOLVED~~",
\t \t1 => "~~NOT RESOLVED~~"
\t],
\t">=" => [
\t \t0 => "~~NOT RESOLVED~~",
\t \t1 => "~~NOT RESOLVED~~"
\t],
\t"=" => "*",
\t"!=" => "*",
\t"IN" => "*",
\t"NOT IN" => "*",
\t"LIKE" => [
\t \t0 => "string"
\t]
]
-_errorMessages : array|.Closure
-_filter : mixed
-_searchAttributeTypes : array
-_searchModel : Model|array|string|callable
+attributeLabels()
+attributes()
+build(runValidation : bool = true) : mixed|false
#buildInternal() : mixed
+canGetProperty(name, checkVars = true, checkBehaviors = true)
+canSetProperty(name, checkVars = true, checkBehaviors = true)
#defaultErrorMessages() : array
#detectSearchAttributeTypes() : array
#filterAttributeValue(attribute : string, value : mixed) : mixed
+formName()
+getErrorMessages() : array
+getFilter() : mixed
+getSearchAttributeTypes() : array
+getSearchModel() : yii.base.Model
+normalize(runValidation : bool = true) : array|bool
-normalizeComplexFilter(filter : array) : array
#parseErrorMessage(messageKey : string, params : array = []) : string
+rules()
+setErrorMessages(errorMessages : array|.Closure)
+setFilter(filter : mixed)
+setSearchAttributeTypes(searchAttributeTypes : array|null)
+setSearchModel(model : Model|array|string|callable)
#validateAttributeCondition(attribute : string, condition : mixed)
#validateAttributeValue(attribute : string, value : mixed)
#validateBlockCondition(operator : string, condition : mixed)
#validateCondition(condition : mixed)
#validateConjunctionCondition(operator : string, condition : mixed)
+validateFilter()
#validateOperatorCondition(operator : string, condition : mixed, attribute : string = null)
+__get(name)
+__isset(name)
+__set(name, value)
+__unset(name)
}
class yii.data.DataFilter extends yii.base.Model
interface yii.data.DataProviderInterface {
+getCount() : int
+getKeys() : array
+getModels() : array
+getPagination() : Pagination|false
+getSort() : Sort
+getTotalCount() : int
+prepare(forcePrepare : bool = false)
}
class yii.data.Pagination {
+{static}LINK_FIRST = "first"
+{static}LINK_LAST = "last"
+{static}LINK_NEXT = "next"
+{static}LINK_PREV = "prev"
+defaultPageSize : int = 20
+forcePageParam : bool = true
+pageParam : string = "page"
+pageSizeLimit : array|false = [
\t0 => 1,
\t1 => 50
]
+pageSizeParam : string = "per-page"
+params : array
+route : string
+totalCount : int = 0
+urlManager : yii.web.UrlManager
+validatePage : bool = true
-_page
-_pageSize : int
+createUrl(page : int, pageSize : int = null, absolute : bool = false) : string
+getLimit() : int
+getLinks(absolute : bool = false) : array
+getOffset() : int
+getPage(recalculate : bool = false) : int
+getPageCount() : int
+getPageSize() : int
#getQueryParam(name : string, defaultValue : string = null) : string
+setPage(value : int, validatePage : bool = false)
+setPageSize(value : int, validatePageSize : bool = false)
}
class yii.data.Pagination extends yii.base.BaseObject
class yii.data.Pagination implements yii.web.Linkable
class yii.data.Sort {
+attributes : array = []
+defaultOrder : array
+enableMultiSort : bool = false
+params : array
+route : string
+separator : string = ","
+sortParam : string = "sort"
+urlManager : yii.web.UrlManager
-_attributeOrders : array
+createSortParam(attribute : string) : string
+createUrl(attribute : string, absolute : bool = false) : string
+getAttributeOrder(attribute : string) : bool|null
+getAttributeOrders(recalculate : bool = false) : array
+getOrders(recalculate : bool = false) : array
+hasAttribute(name : string) : bool
+init()
+link(attribute : string, options : array = []) : string
#parseSortParam(param : string) : array
+setAttributeOrders(attributeOrders : array|null, validate : bool = true)
}
class yii.data.Sort extends yii.base.BaseObject
class yii.data.SqlDataProvider {
+db : Connection|array|string = "db"
+key : string|callable
+params : array = []
+sql : string
+init()
#prepareKeys(models)
#prepareModels()
#prepareTotalCount()
}
class yii.data.SqlDataProvider extends yii.data.BaseDataProvider
@enduml
|
f78f7d9ba602fdcba1bfaedff4f72db6ae7b5828 | 4bc7ef84a4b27304d29150dfc9b3dc07fc1da8a6 | /lib/flutter/source/bindings.puml | e5750933da2c7cefceea1257e0e0494d9fbd0202 | [] | no_license | yihu5566/flutterdemo | a21ddc4459a9f675b47b5e60b7e1877ef5be66b1 | d3491dbbda0b98ce8d987ad54a82018dcf475db0 | refs/heads/master | 2022-04-02T08:55:57.634748 | 2020-01-20T02:58:21 | 2020-01-20T02:58:21 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 18,455 | puml | @startuml
class BindingBase{
ui.Window get window
Future<void> lockEvents(Future<void> callback())
void registerSignalServiceExtension({@required String name,@required AsyncCallback callback,})
void registerServiceExtension({@required String name,@required ServiceExtensionCallback callback,})
void registerBoolServiceExtension({@required String name,@required AsyncValueGetter<bool> getter,@required AsyncValueSetter<bool> setter,})
void registerNumericServiceExtension({@required String name,@required AsyncValueGetter<double> getter,@required AsyncValueSetter<double> setter,})
void registerStringServiceExtension({@required String name,@required AsyncValueGetter<String> getter,@required AsyncValueSetter<String> setter,})
Future<void> reassembleApplication()
Future<void> performReassemble()
}
'note right of BindingBase{
' lockEvents 锁定异步事件和回调的调度,直到回调的future完成.这会导致输入滞后,因此应尽可能避免
' 它是主要用于非用户交互时间,例如允许[reassembleApplication]阻止输入,当它走到树时(它部分地异步) reassemble重新安装
'
' registerSignalServiceExtension 注册具有给定名称的服务扩展方法(完整名称“ext.flutter.name”),该方法不带参数并返回无值.
' 调用服务扩展时调用`callback`回调
'
' registerBoolServiceExtension 使用给定名称(完整名称“ext.flutter.name”)注册服务扩展方法,该方法采用单个参数“enabled”,
' 其值可以为“true”或值为“false” 或者可以省略来读取当前值。 (其他不是true任何值”被认为等同于“false”。其他参数/将被忽略。)
' 当响应被调用的服务扩展方法时,调用`getter`回调来获取值。当使用新值调用服务扩展方法时,使用新值调用`setter`回调
' registerServiceExtension 注册具有给定名称的服务扩展方法(全名“ext.flutter.name”)。调用扩展方法时会调用给定的回调。
' 回调必须返回一个[Future],它最终以名称/值映射的形式完返回值,其中值可以全部/用`json.encode()转换为JSON `(参见[JsonEncoder]),或者失败
' 在失败的情况下,将故障报告给远程调用者并且被转储到日志中。只有在构建中包含vm-service 时才能激活已注册的服务扩展,这仅在调试和配置文件模式下发生
' 虽然服务扩展不能在发布模式下使用,但它的代码可能仍然包含在Dart快照中并且如果没有包装在允许树振动器移除它的防护中,则会炸掉二进制大小(参见下面的示例代码
' assert()和if(!kReleaseMode)两个警卫都确保Dart的树振动器可以在发布版本中删除服务扩展的代码
' reassembleApplication 导致整个应用程序重绘,例如经过hot reload后 hot restart不会触发
' 当应用程序代码发生变化时,开发工具会使用它,使应用程序获取任何更改的代码.它可以通过发送`ext.flutter.reassemble`服务扩展信号手动触发
' 此方法计算量非常大,不应在生产代码中使用。永远不会有正当理由导致整个应用程序在生产中重新绘制。Flutter框架的所有方面知道如何在必要时重绘。
' 只有在开发时才需要当代码在运行中实际改变时(例如在热重新加载中)或者调试标志被切换时
' 当此方法运行时,事件被锁定(例如,不调度指针事件)
' 子类(绑定类)应覆盖[performReassemble]以对被调用的此方法做出反应。不应该覆盖此方法本身
'}
class WidgetsFlutterBinding{
static WidgetsBinding ensureInitialized()
}
'note right of WidgetsFlutterBinding{
' 基于Widgets框架的应用程序的具体绑定
' 这是将框架绑定到Flutter引擎的粘合剂
'
' WidgetsFlutterBinding 继承BindingBase,混入GestureBinding,ServicesBinding,SchedulerBinding,PaintingBinding,SemanticsBinding,
' RendererBinding,WidgetsBinding的功能
' WidgetsFlutterBinding的ensureInitialized会调用BindingBase(),然后调用BindingBase自己和各个binding的initInstances()和initServiceExtensions()方法
' 返回[WidgetsBinding]的实例,创建并在必要时初始化它。如果创建了一个,它将是[WidgetsFlutterBinding]。如果之前已初始化,那么它至少会实现[WidgetsBinding]
'}
class WidgetsBinding{
BuildOwner get buildOwner
FocusManager get focusManager
Element get renderViewElement
void initInstances()
void initServiceExtensions()
final List<WidgetsBindingObserver> _observers = <WidgetsBindingObserver>[]
void addObserver(WidgetsBindingObserver observer)
bool removeObserver(WidgetsBindingObserver observer)
void handleMetricsChanged()
void handleTextScaleFactorChanged()
void handlePlatformBrightnessChanged()
void dispatchLocalesChanged(List<Locale> locales)
void handleAppLifecycleStateChanged(AppLifecycleState state)
void handleMemoryPressure()
void drawFrame()
void attachRootWidget(Widget rootWidget)
Future<void> performReassemble()
}
'note right of WidgetsBinding{
' addObserver 将给定对象注册为绑定观察者.绑定观察者会在发生各种应用程序事件时收到通知,例如系统区域设置发生更改时。
' 通常,窗口小部件树中的一个窗口小部件将自身注册为绑定观察者,并将系统状态转换为inherited widgets。
' 例如,[WidgetsApp]小部件注册为绑定观察者,并在每次构建时将屏幕大小传递给[MediaQuery]小部件,这使得其他小部件可以使用[MediaQuery.of]静态方法和(隐式)
' [InheritedWidget]机制,当屏幕大小改变时(例如,每当屏幕旋转时)通知
' 多个handle和dispatch方法将事件分发给_observers的WidgetsBindingObserver
' renderViewElement 位于层次结构根目录的[Element](将[RenderView]对象包装在渲染层次结构的根目录中),这是在第一次调用[runApp]时初始化的
' attachRootWidget 获取一个widget并将其附加到[renderViewElement],如果需要,则创建它。这由[runApp]调用以配置widget树。
' renderViewElement初始化和填充这个widget并实际设置生成的[RenderObject]作为子节点的[container]
'
' performReassemble 导致整个应用程序重绘,例如经过hot reload后
' drawFrame 抽取构建和渲染管道以生成frame,这个方法由[handleDrawFrame]调用,当它需要布局并绘制框架时,引擎自动调用
' 最主要三行代码 建立重绘范围,调用super的drawFrame,卸载unactive的element
' if (renderViewElement != null)
' buildOwner.buildScope(renderViewElement);
' super.drawFrame();
' buildOwner.finalizeTree();
' 每个frame由以下阶段组成
' 1. The animation phase
' 2. Microtasks
' 3. The build phase
' 4. The layout phase
' 5. The compositing bits phase
' 6. The paint phase
' 7. The compositing phase
' 8. The semantics phase
' 9. The finalization phase in the widgets layer
'}
abstract class WidgetsBindingObserver{
void didChangeMetrics()
void didChangeAppLifecycleState(AppLifecycleState state)
void didHaveMemoryPressure()
void didChangeTextScaleFactor()
}
'note right of WidgetsBindingObserver{
' didChangeMetrics 在应用程序的维度发生变化时调用。例如,旋转电话时.此方法公开来自[Window.onMetricsChanged]的通知
' 通常,这是不必要的,因为布局系统负责在应用程序大小更改时自动重新计算应用程序几何
' didChangeAppLifecycleState 当系统将应用程序置于后台或将应用程序返回到前台时调用.在[WidgetsBindingObserver]类的类级文档中提供了实现此方法的示例
' 此方法公开来自[SystemChannels.lifecycle]的通知
' didHaveMemoryPressure() 当系统内存不足时调用,此方法从[SystemChannels.system]公开`memoryPressure`通知
' didChangeTextScaleFactor 当平台的文本比例因子发生变化时调用,这通常是由于用户更改系统首选项而导致的,它应该影响应用程序中的所有文本大小
' 此方法公开来自[Window.onTextScaleFactorChanged]的通知
'}
class PaintingBinding {
static ShaderWarmUp shaderWarmUp = const DefaultShaderWarmUp()
ImageCache get imageCache
void initInstances()
}
'note right of PaintingBinding{
' 实现Flutter框架图像缓存的单例
' 缓存由[ImageProvider]在内部使用,通常不应直接访问
' 图像缓存在启动期间(initInstances)由[createImageCache]方法创建。
' shaderWarmUp 如果应用程序具有需要编译[DefaultShaderWarmUp]未涵盖的复杂着色器的场景,
' 它可能会导致jank(android团队把滞缓,不流畅的动画定义为jank)在动画或交互过程中
'}
abstract class ShaderWarmUp{
ui.Size get size
Future<void> warmUpOnCanvas(ui.Canvas canvas)
Future<void> execute()
}
'note right of ShaderWarmUp{
' 用于绘制图像以加热Skia着色器编辑的界面 具体看注释
' execute 调用warmUpOnCanvas
'}
class DefaultShaderWarmUp{
ui.Size get size
Future<void> warmUpOnCanvas(ui.Canvas canvas)
}
class ServicesBinding{
void initInstances()
void initLicenses()
void initServiceExtensions()
void evict(String asset)
BinaryMessenger createBinaryMessenger()
BinaryMessenger get defaultBinaryMessenger
}
'note right of ServicesBinding{
' ServicesBinding是一个mixin
' 侦听平台消息并将其定向到[defaultBinaryMessenger]
' [ServicesBinding]还注册了一个公开在存储在资产根目录的`LICENSE`文件中找到的许可证的[LicenseEntryCollector]
' 并实现`ext.flutter.evict`服务扩展
' initLicenses 向[LicenseRegistry]添加相关许可证.默认情况下,[ServicesBinding]的[initLicenses]实现添加编译期间`flutter`工具收集的所有许可证
' initInstances 实现实例化,实现监听window来的message window..onPlatformMessage = defaultBinaryMessenger.handlePlatformMessage
'}
abstract class BinaryMessenger{
Future<void> handlePlatformMessage(String channel, ByteData data, ui.PlatformMessageResponseCallback callback)
Future<ByteData> send(String channel, ByteData message)
void setMessageHandler(String channel, Future<ByteData> handler(ByteData message))
void setMockMessageHandler(String channel, Future<ByteData> handler(ByteData message))
}
'note right of BinaryMessenger{
' 一个信使,它通过Flutter平台屏障发送二进制数据
' 该类还为传入消息注册处理程序
' handlePlatformMessage 调用为给定通道注册的处理程序
'}
class _DefaultBinaryMessenger{
}
class RendererBinding{
MouseTracker get mouseTracker
PipelineOwner get pipelineOwner
void initInstances()
void initRenderView()
void initServiceExtensions()
RenderView get renderView
void handleMetricsChanged()
void handleTextScaleFactorChanged()
void handlePlatformBrightnessChanged()
ViewConfiguration createViewConfiguration()
void setSemanticsEnabled()
void drawFrame()
Future<void> performReassemble()
void hitTest()
}
'
'note right of RendererBinding{
' RendererBinding 一个mixin
'
' mouseTracker 管理当前连接鼠标状态的对象,用于悬停通知
' pipelineOwner 渲染树的所有者,它维护布局,复合,绘制和可访问性语义的脏状态
' initInstances() 初始化RendererBinding,初始化_pipelineOwner,监听window的各种事件handleMetricsChanged等,初始化initRenderView()
' handleMetricsChanged() 在系统指标发生变化时调用
' drawFrame()
' performReassemble 调用renderView.reassemble()和scheduleWarmUpFrame()
'}
class RenderView{
ViewConfiguration get configuration
final ui.Window _window
bool automaticSystemUiAdjustment = true
void scheduleInitialFrame()
void performLayout()
bool hitTest(HitTestResult result, { Offset position })
bool get isRepaintBoundary
void paint(PaintingContext context, Offset offset)
void applyPaintTransform(RenderBox child, Matrix4 transform)
void compositeFrame()
Rect get paintBounds
Rect get semanticBounds
}
'note right of RenderView{
' 渲染树的根
' 视图表示渲染树的总输出表面,并处理引导渲染管道.该视图有一个独特的孩子[RenderBox],这是填充整个输出表面所必需的
' scheduleInitialFrame() 通过调度第一帧来引导渲染管道.这应该只调用一次,并且必须在更改[configuration]之前调用。
' 通常在调用构造函数后立即调用它。
' compositeFrame() 将合成的图层树上载到引擎,实际上导致渲染管道的输出出现在屏幕上.这会将位发送到GPU
'}
class GestureBinding{
final PointerRouter pointerRouter
final GestureArenaManager gestureArena
final PointerSignalResolver pointerSignalResolver
final Queue<PointerEvent> _pendingPointerEvents
void initInstances()
void dispatchEvent(PointerEvent event, HitTestResult hitTestResult)
void handleEvent(PointerEvent event, HitTestEntry entry)
}
'note right of GestureBinding{
' gestureArena 手势竞争
' initInstances 监听来自window的指针数据window.onPointerDataPacket = _handlePointerDataPacket
' 然后_flushPointerEventQueue, _handlePointerEvent(PointerEvent event),进入dispatchEvent
'}
class SchedulerBinding{
AppLifecycleState get lifecycleState
SchedulerPhase get schedulerPhase
SchedulingStrategy schedulingStrategy
final List<FrameCallback> _postFrameCallbacks
final List<FrameCallback> _persistentCallbacks
Map<int, _FrameCallbackEntry> _transientCallbacks
void initInstances()
void handleAppLifecycleStateChanged(AppLifecycleState state)
void ensureVisualUpdate()
void scheduleFrame()
void handleDrawFrame()
int scheduleFrameCallback(FrameCallback callback, { bool rescheduling = false })
}
note right of SchedulerBinding{
调度程序用于运行以下内容
_Transient callback短暂回调_,由系统的[Window.onBeginFrame]触发回调,用于将应用程序的行为同步到系统显示
例如,[Ticker]和[AnimationController]的触发器来自这些
_Persistent callbacks持续回调_,由系统的[Window.onDrawFrame]触发回调,用于在瞬态回调执行后更新系统的显示
例如,渲染层使用它来驱动它渲染管道
_Post-frame callbacks_,仅在持久回调之后运行从[Window.onDrawFrame]回调返回之前
要在帧之间运行的非渲染任务。这些优先级根据[schedulingStrategy]按优先级顺序执行
scheduleFrameCallback 调用scheduleFrame(),往_transientCallbacks新添加
}
enum SchedulerPhase {
idle
transientCallbacks
midFrameMicrotasks
persistentCallbacks
postFrameCallbacks
}
'note right of SchedulerPhase{
' idle 没有正在处理的帧.任务(由[WidgetsBinding.scheduleTask]安排),微任务(由[scheduleMicrotask]调度),[Timer]回调,
' 事件处理程序(例如来自使用输入)和其他回调(例如来自[Future] s,[Stream] s,等等可能正在执行.
' transientCallbacks 瞬态回调(由[WidgetsBinding.scheduleFrameCallback]调度)当前正在执行.通常,这些回调处理将对象更新为新动画状态
' See [SchedulerBinding.handleBeginFrame]
' midFrameMicrotasks 在处理瞬态回调期间安排的微任务是当前正在执行的。这可能包括,例如,在[transientCallbacks]阶段期间解决的期货回调.
' persistentCallbacks 持久回调(由[WidgetsBinding.addPersistentFrameCallback]调度)当前正在执行 通常,这是构建/布局/绘制管道
' See [WidgetsBinding.drawFrame] and [SchedulerBinding.handleDrawFrame]
' postFrameCallbacks 后帧回调(由[WidgetsBinding.addPostFrameCallback]调度)当前正在执行通常,这些回调处理下一帧的工作清理和调度
' See [SchedulerBinding.handleDrawFrame]
'}
enum AppLifecycleState {
resumed
inactive
paused
suspending
}
' note right of AppLifecycleState{
' application处在的状态。以下值描述了来自操作系统的通知。应用程序不应期望始终接收所有可能的通知。例如,如果用户从设备中取出电池,
' 则在应用程序突然终止之前不会发送任何通知,以及操作系统的其余部分
'
' resumed 应用程序可见并响应用户输入
' inactive 应用程序处于非活动状态,并且未接收用户输入.
' 在iOS上,此状态对应于在前台不活动状态下运行的应用程序或Flutter主机视图。当进入电话呼叫,响应TouchID请求,进入应用程序切换器或控制中心时,
' 或托管Flutter应用程序的UIViewController正在转换时,应用程序将转换为此状态。
' 在Android上,这对应于在前台非活动状态下运行的应用程序或Flutter主机视图。当其他活动聚焦时,应用程序会转换到此状态,
' 例如分屏应用,电话,画中画应用,系统对话框或其他窗口.处于此状态的应用程序应假设它们可能随时[paused]
' paused 该应用程序当前对用户不可见,不响应用户输入,并在后台运行。当应用程序处于此状态时,
' 引擎将不会调用[Window.onBeginFrame]和[Window.onDrawFrame]回调.处于此状态的Android应用程序应假设他们可以随时进入[suspending]状态。
' suspending application将暂停 当应用程序处于此状态时,引擎将不会调用[Window.onBeginFrame]和[Window.onDrawFrame]回调。
' 在iOS上,此状态目前尚未使用。
' }
BindingBase <|-- WidgetsFlutterBinding
BindingBase <|-- WidgetsBinding
BindingBase <|-- RendererBinding
BindingBase <|-- GestureBinding
BindingBase <|-- SchedulerBinding
WidgetsBinding <-- WidgetsFlutterBinding
WidgetsBinding <.. WidgetsBindingObserver
RendererBinding <-- WidgetsBinding
ServicesBinding <|-- PaintingBinding
PaintingBinding <-- WidgetsFlutterBinding
ShaderWarmUp <|-- DefaultShaderWarmUp
PaintingBinding <.. DefaultShaderWarmUp
BinaryMessenger <|-- _DefaultBinaryMessenger
ServicesBinding <.. _DefaultBinaryMessenger
RendererBinding <.. RenderView
RenderObject <|-- RenderView
SchedulerBinding <.. SchedulerPhase
SchedulerBinding <.. AppLifecycleState
@enduml |
2f1818fa97e34dc7a2e929c0a27d53be50773ae0 | e49567ea3e4e5a6e5c7e988a46e8175f6a39857f | /uml/Item.puml | cf1043a78aec03d3235dfb463adb732dda4a9c38 | [] | 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 | 119 | puml | @startuml
class Item{
String dueDate
String description
String title
==
.. Item Composition ..
+ void item()
}
@enduml |
5526f7e722f2f9739bf7dbce94564341e6eac718 | 006ab5a17bc996b01ea571769b185cf26cb2a004 | /2020-project-lembke_group_3.plantuml | d292a26676a74d4076fb3eecfdd48490cee0cf38 | [] | no_license | becknellj/gtfs | c352e5375939d89a77f0d7ecf04dbaffac2a92de | 68c1a7ab9bd323859baf0c5a471e3de8d19772b2 | refs/heads/master | 2022-12-25T05:20:13.987998 | 2020-05-22T16:26:29 | 2020-05-22T16:26:29 | 300,770,492 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 873 | plantuml | @startuml
title __MSOE-SE2030-2020-PROJECT's Class Diagram__\n
namespace gtfseditor {
class gtfseditor.Application {
}
}
namespace gtfseditor {
class gtfseditor.Controller {
}
}
namespace gtfseditor {
class gtfseditor.GUI {
}
}
namespace gtfseditor {
class gtfseditor.Main {
}
}
namespace gtfseditor {
class gtfseditor.Route {
}
}
namespace gtfseditor {
class gtfseditor.Stop {
}
}
namespace gtfseditor {
class gtfseditor.StopTime {
}
}
namespace gtfseditor {
class gtfseditor.Trip {
}
}
gtfseditor.Main -up-|> javafx.application.Application
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
9362a9ba0039026ee1d41cb19841f9cd29149e77 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AttributeDefinitionDraft.puml | 9a74e6d95bb75d64255cca3578fe3b4f20807b51 | [] | 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,213 | 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 AttributeDefinitionDraft [[AttributeDefinitionDraft.svg]] {
type: [[AttributeType.svg AttributeType]]
name: String
label: [[LocalizedString.svg LocalizedString]]
isRequired: Boolean
attributeConstraint: [[AttributeConstraintEnum.svg AttributeConstraintEnum]]
inputTip: [[LocalizedString.svg LocalizedString]]
inputHint: [[TextInputHint.svg TextInputHint]]
isSearchable: Boolean
}
interface ProductTypeDraft [[ProductTypeDraft.svg]] {
key: String
name: String
description: String
attributes: [[AttributeDefinitionDraft.svg List<AttributeDefinitionDraft>]]
}
interface ProductTypeAddAttributeDefinitionAction [[ProductTypeAddAttributeDefinitionAction.svg]] {
action: String
attribute: [[AttributeDefinitionDraft.svg AttributeDefinitionDraft]]
}
AttributeDefinitionDraft --> ProductTypeDraft #green;text:green : "attributes"
AttributeDefinitionDraft --> ProductTypeAddAttributeDefinitionAction #green;text:green : "attribute"
@enduml
|
33357e05c64688a1eeb1d770c459be63fe58aa46 | 605cac101260b1b451322b94580c7dc340bea17a | /malokhvii-eduard/malokhvii04/doc/plantuml/ua/khpi/oop/malokhvii04/shell/commands/text/package.puml | b3a7e61b06641154aad14ea70695850cc5fa0636 | [
"MIT"
] | permissive | P-Kalin/kit26a | fb229a10ad20488eacbd0bd573c45c1c4f057413 | 2904ab619ee48d5d781fa3d531c95643d4d4e17a | refs/heads/master | 2021-08-30T06:07:46.806421 | 2017-12-16T09:56:41 | 2017-12-16T09:56:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,258 | puml | @startuml
namespace ua.khpi.oop.malokhvii04.shell.commands.text {
class SortTextCommand {
{static} -description: String
{static} -keys: List<String>
{static} -RESOURCE_BUNDLE_NAME: String
{static} -resourceBundle: ResourceBundle
+SortTextCommand()
{static} -getSortOrder(): boolean
{static} -updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
class SerializeTextCommand {
{static} -description: String
{static} -keys: List<String>
{static} -RESOURCE_BUNDLE_NAME: String
{static} -resourceBundle: ResourceBundle
+SerializeTextCommand()
{static} #updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
class SearchTextCommand {
{static} -description: String
{static} -keys: List<String>
{static} -RESOURCE_BUNDLE_NAME: String
{static} -resourceBundle: ResourceBundle
+SearchTextCommand()
{static} -updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
class SearchPalindromesCommand {
{static} -description: String
{static} -AMOUNT_OF_PALINDROMES_IN_SINGLE_LINE: int
{static} -keys: List<String>
{static} -RESOURCE_BUNDLE_NAME: String
{static} -resourceBundle: ResourceBundle
+SearchPalindromesCommand()
{static} -printPalindromes(Collection<String>): void
{static} #updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
class SearchAnanymsCommand {
{static} -ANANYMS_TABLE_FOOTER: String
{static} -ANANYMS_TABLE_HEADER: String
{static} -description: String
{static} -keys: List<String>
{static} -RESOURCE_BUNDLE_NAME: String
{static} -resourceBundle: ResourceBundle
+SearchAnanymsCommand()
{static} -printAnanyms(Collection<Ananym>): void
{static} #updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
class OutputTextCommand {
{static} -description: String
{static} -keys: List<String>
{static} -RESOURCE_BUNDLE_NAME: String
{static} -resourceBundle: ResourceBundle
+OutputTextCommand()
{static} #printTextLines(Collection<String>): void
{static} #updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
class InputTextCommand {
{static} -description: String
{static} -keys: List<String>
{static} -RESOURCE_BUNDLE_NAME: String
{static} -resourceBundle: ResourceBundle
+InputTextCommand()
{static} -getInputText(String): Array<String>
{static} #updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
class DeserializeTextCommand {
{static} -RESOURCE_BUNDLE_NAME: String
{static} -description: String
{static} -keys: List<String>
{static} -resourceBundle: ResourceBundle
+DeserializeTextCommand()
{static} #updateResourceBundle(): void
+execute(): void
+getDescription(): String
+getKeys(): List<String>
+update(Observable, Object): void
}
abstract class ua.khpi.oop.malokhvii04.shell.commands.AbstractCommand
ua.khpi.oop.malokhvii04.shell.commands.AbstractCommand <|-- SortTextCommand
abstract class ua.khpi.oop.malokhvii04.shell.commands.HandleTextFileCommand
ua.khpi.oop.malokhvii04.shell.commands.HandleTextFileCommand <|-- SerializeTextCommand
ua.khpi.oop.malokhvii04.shell.commands.AbstractCommand <|-- SearchTextCommand
OutputTextCommand <|-- SearchPalindromesCommand
OutputTextCommand <|-- SearchAnanymsCommand
ua.khpi.oop.malokhvii04.shell.commands.AbstractCommand <|-- OutputTextCommand
ua.khpi.oop.malokhvii04.shell.commands.HandleTextFileCommand <|-- InputTextCommand
ua.khpi.oop.malokhvii04.shell.commands.HandleTextFileCommand <|-- DeserializeTextCommand
}
@enduml
|
46ef49470ec11fc7f712bd45d646073ba318910a | 57258f75686d4741594d4fd7bc3c4153eb41ae79 | /src/principle/liskov/improve/uml.puml | 308df4aac808c76a72d849f12b716e7bed75890d | [] | no_license | Acyco/DesignPattern | f2cab4de4cdd454263906edbbe29dfaef6594f07 | 5e435c130f3ff8461b01abfb61de07849452e96c | refs/heads/master | 2020-12-06T10:35:53.882956 | 2020-01-15T18:17:50 | 2020-01-15T18:17:50 | 232,440,330 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 121 | puml | @startuml
class A{
}
class B{
}
A <|- B
class Base{
}
class A1{
}
class B1{
}
Base <|- A1
Base <|- B1
A1 <|- B1
@enduml |
b2d0c35d24c6aa2798e2b098c169931c945687e8 | 98c049efdfebfafc5373897d491271b4370ab9b4 | /docs/SPRINT_1/UC20-Update_Courier/UC20_MD.puml | b15df79991dfc69a0cf2ded6aec45159769fe94e | [] | no_license | antoniodanielbf-isep/LAPR3-2020 | 3a4f4cc608804f70cc87a3ccb29cbc05f5edf0f3 | 7ee16e8c995aea31c30c858f93e8ebdf1de7617f | refs/heads/main | 2023-05-27T14:42:05.442427 | 2021-06-20T18:09:59 | 2021-06-20T18:09:59 | 378,709,095 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 899 | puml | @startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Pharmacy {
-Integer id
-String designation
}
class Courier {
-Integer nif
-char niss
-String name
-String email
-float maxWeight
}
class CourierState{
-Integer id
-String designation
}
class Scooter {
-boolean qrCode
}
class Vehicle{
-Integer id
-float batteryCapacity
-float battery
-double maxPayload
}
class Administrator {
}
class User{
-String email
-int NIF
-String name
-String password
}
/'------------------------------------------------------------------------------------ '/
Administrator "1" -- "1" User: acts like >
Administrator "1" -- "*" Courier: updates >
Courier "1" --- "1..*" Scooter: uses >
Courier "*" --- "1" Pharmacy: works in >
Courier "1" --- "1" CourierState: has >
Pharmacy "1" -- "1..*" Vehicle: has >
@enduml
|
74bbcfdab94c59f7e593f32199d6aeee03fccfe1 | 2b08955e13aee2fa092a7bb75f0d642a3e821fc9 | /src/main/java/org/huyong/my/spring/ioc/ApplicationContext.puml | fd3cd1c421d63203ce5b1ce46701fe386434b9cc | [] | no_license | huyong1023/my | c720672779ad1450996fbe31c7281a2149178247 | f94eb36558172613fd236691fd01f56467e8968b | refs/heads/master | 2023-01-28T15:20:33.176092 | 2023-01-05T02:40:40 | 2023-01-05T02:40:40 | 136,870,750 | 3 | 2 | null | 2022-12-16T02:41:23 | 2018-06-11T03:37:39 | Java | UTF-8 | PlantUML | false | false | 2,948 | puml | @startuml
interface ResourceLoader {
getResource(String location)
getClassLoader()
}
ResourceLoader <|.. DefaultResourceLoader
interface ProtocolResolver{
resolve(String location, ResourceLoader resourceLoader);
}
class DefaultResourceLoader {
- ClassLoader classLoader
- Set<ProtocolResolver> protocolResolvers;
- Map<Class<?>, Map<Resource, ?>> resourceCaches;
}
DefaultResourceLoader "1" *-- "N" ProtocolResolver
interface AutoCloseable
interface Closeable {
close()
}
AutoCloseable <|-- Closeable
interface Lifecycle {
start()
stop()
isRunning()
}
interface EnvironmentCapable {
getEnvironment()
}
interface BeanFactory {
getBean(String name)
getBeanProvider(Class<T> requiredType)
getType(String name)
getAliases(String name)
}
interface ListableBeanFactory
BeanFactory <|-- ListableBeanFactory
interface HierarchicalBeanFactory{
getParentBeanFactory();
}
BeanFactory <|-- HierarchicalBeanFactory
interface MessageSource {
getMessage(String code, @Nullable Object[] args, @Nullable String defaultMessage, Locale locale);
}
interface ApplicationEventPublisher {
publishEvent(ApplicationEvent event)
}
interface ResourcePatternResolver
ResourceLoader <|-- ResourcePatternResolver
interface ApplicationContext
EnvironmentCapable <|-- ApplicationContext
ListableBeanFactory <|-- ApplicationContext
HierarchicalBeanFactory <|-- ApplicationContext
MessageSource <|-- ApplicationContext
ApplicationEventPublisher <|-- ApplicationContext
ResourcePatternResolver <|-- ApplicationContext
interface ConfigurableApplicationContext
Closeable <|-- ConfigurableApplicationContext
Lifecycle <|-- ConfigurableApplicationContext
ApplicationContext <|-- ConfigurableApplicationContext
abstract class AbstractApplicationContext{
ResourcePatternResolver resourcePatternResolver
refresh()
}
DefaultResourceLoader <|-- AbstractApplicationContext
ConfigurableApplicationContext <|.. AbstractApplicationContext
abstract class AbstractRefreshableApplicationContext {
DefaultListableBeanFactory beanFactory
loadBeanDefinitions(DefaultListableBeanFactory beanFactory)
}
AbstractApplicationContext <|-- AbstractRefreshableApplicationContext
interface BeanNameAware
interface InitializingBean
abstract class AbstractRefreshableConfigApplicationContext {
String[] configLocations;
}
AbstractRefreshableApplicationContext <|-- AbstractRefreshableConfigApplicationContext
BeanNameAware <|.. AbstractRefreshableConfigApplicationContext
InitializingBean <|.. AbstractRefreshableConfigApplicationContext
abstract class AbstractXmlApplicationContext
AbstractRefreshableConfigApplicationContext <|-- AbstractXmlApplicationContext
class ClassPathXmlApplicationContext
AbstractXmlApplicationContext <|-- ClassPathXmlApplicationContext
class DefaultListableBeanFactory
AbstractRefreshableApplicationContext -- DefaultListableBeanFactory
@enduml |
15395f8caed30ed703e99046e3929359cb0b37fc | 8b60a1f56c325ba482666d1a97c25a1fc68b599c | /diagrams/src/Models/Entities/AuthUser.puml | 9845de28aaf8e1d34596d902adf1dc82d20dfe09 | [
"MIT"
] | permissive | converge-app/authentication-service | f0dfce52551d1ef9911caeef2d48272d8a9cb3bb | 256dae2474075ff8a08ce8de3b09bdf5389bf397 | refs/heads/master | 2023-03-07T02:57:16.611505 | 2019-12-17T11:40:12 | 2019-12-17T11:40:12 | 211,710,378 | 0 | 0 | MIT | 2023-03-04T01:15:38 | 2019-09-29T18:51:22 | C# | UTF-8 | PlantUML | false | false | 202 | puml | @startuml
class AuthUser {
+ Id : string <<get>> <<set>>
+ Email : string <<get>> <<set>>
+ CurrentPassword : string <<get>> <<set>>
+ Passwords : List<string> <<get>> <<set>>
}
@enduml
|
9adf621d232592c887ac78118afd9e08ce0807b6 | 41cda7f30cb70197b2e7be9c1cdde5ad02d4de50 | /src/main/java/com/pc/mediator/中介者模式类图.puml | 2b10baa99f5be7b8d3f85c0608e13add81d560b5 | [] | no_license | mishin/DesignPatternStudy | 6f1280a00514efe95f0098576f267c4fd7e49dec | 27d253c6c9304b8131df258a933945bbadf22931 | refs/heads/master | 2021-06-17T19:07:59.706496 | 2017-05-02T14:16:57 | 2017-05-02T14:16:57 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 978 | puml | @startuml
interface Mediator {
createColleagues()
colleagueChanged()
}
interface Colleague {
mediator
setMediator()
controlColleague()
}
class ConcreteMediator {
concreteColleague1
concreteColleague2
concreteColleague3
createColleagues()
colleagueChanged()
}
class ConcreteColleague1 {
controlColleague()
}
class ConcreteColleague2 {
controlColleague()
}
class ConcreteColleague3 {
controlColleague()
}
Mediator <-o Colleague
ConcreteMediator .up.|> Mediator
ConcreteMediator o-> ConcreteColleague1
ConcreteMediator o--> ConcreteColleague2
ConcreteMediator o--> ConcreteColleague3
ConcreteColleague1 .up.|> Colleague
ConcreteColleague2 .up.|> Colleague
ConcreteColleague3 .up.|> Colleague
note left of Mediator : 中介者
note right of Colleague : 同事
note right of ConcreteMediator : 具体中介者
note "具体的同事" as N1
ConcreteColleague1 .. N1
ConcreteColleague2 .. N1
ConcreteColleague3 .. N1
@enduml
|
bc0a032b4e6ff5f12ade699468ea0de1ccd92ecb | 844665d08d1be5dacc41d8495725d881c68dba71 | /Conferencias/Conferencia 3_ Patrones de Diseño Estructurales/PrincipleAndPatternDesign/out/production/PrincipleAndPatternDesign/cu/datys/patterns/gof/structural/bridge/tv/class-diagram.puml | 9b48e4f62f63bf9ee0a42ed2fa31143a70445022 | [
"MIT"
] | permissive | alexescalonafernandez/curso-patrones-diseno | ec1cf0a993707d78c294208e04604a3a0ffd164e | f586e27791e1281087df6cc137da87f407179e65 | refs/heads/master | 2021-01-25T13:35:26.659206 | 2018-03-02T20:18:06 | 2018-03-02T20:18:06 | 123,588,331 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,256 | puml | @startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam titleFontColor #5cb85c
Title Bridge Pattern Example
interface Control {
+ void on()
+ void off()
+ void channel(int channel)
+ int getCurrentChannel()
}
interface TV extends Control{
int getMinChannel();
int getMaxChannel();
}
abstract class RemoteControl implements Control{
# TV implementor
+ RemoteControl(TV implementor)
+ void on()
+ void off()
+ void channel(int channel)
+ int getCurrentChannel()
}
RemoteControl *-- TV
note right of RemoteControl::on(
implementor.on();
end note
note right of RemoteControl::off(
implementor.off();
end note
note right of RemoteControl::channel(
implementor.channel(channel);
end note
note right of RemoteControl::getCurrentChannel(
return implementor.getCurrentChannel();
end note
class SonyTV implements TV
class ConcreteRemoteControl extends RemoteControl
class Main
Main --> SonyTV: use
Main --> ConcreteRemoteControl: use
note top of Main
SonyTV tv = new SonyTV();
ConcreteRemoteControl control =
new ConcreteRemoteControl(tv);
end note
@enduml |
3776180a39ee7939350ebf180c8499ce376ed9c0 | e80c5fe439cb8fe4bcca554f1ff861299f40fa60 | /1.Basics/2_Blink/thingml-gen/UML/Blink2App/Blink2App/docs/Blink2App_class.plantuml | 05062c8576c45d103a02b24ee90e84ec2193f67e | [] | no_license | madkira/ThingMLArduinoDemo | 331a8e258d4e57d18efb9dccd581179b8f69c0ba | 730789e11960547852cd4e1a0254f49f08ea8131 | refs/heads/master | 2020-12-07T03:57:47.048263 | 2017-06-27T12:19:36 | 2017-06-27T12:19:36 | 95,461,161 | 0 | 0 | null | 2017-06-26T15:27:01 | 2017-06-26T15:27:01 | null | UTF-8 | PlantUML | false | false | 700 | plantuml | @startuml
caption Things used in configuration Blink2App
class Blink2 <<(T,#5BBF09)PIM>> {
..Port timer..
>>timer_timeout
<<timer_start
<<timer_cancel
..Port led..
<<led_ON
<<led_OFF
}
class TimerMsgs <<(F,#BC74ED)Fragment>> {
..Messages..
-timer_start(id : UInt8time : UInt32)
-timer_cancel(id : UInt8)
-timer_timeout(id : UInt8)
-ms25_tic()
-ms500_tic()
}
class LEDMsgs <<(T,#5BBF09)PIM>> {
..Messages..
-led_ON()
-led_OFF()
}
class LED <<(T,#F94918)PSM>> {
..Properties..
-PIN : UInt8 = 11
..Port ctrl..
>>led_ON
>>led_OFF
..Functions..
-setDigitalOutput(pin : UInt8) : void
-digitalWrite(pin : UInt8value : DigitalState) : void
}
TimerMsgs <|-- Blink2
LEDMsgs <|-- Blink2
LEDMsgs <|-- LED
@enduml |
c910576f6b946f8c179d316abcaf747798b090e7 | b607bda349642e826019dfb580567761f039178b | /src/proxy/proxy.puml | 673d1f8d7a731b016075656c847b2b04899d21f0 | [] | 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 | 269 | puml | @startuml
interface Subject {
+doOperation()
}
class RealSubject {
+doOperation()
}
class Proxy {
+doOperation()
}
class Client {}
Proxy *-left-> RealSubject
Client *-right->Subject
Subject -[dashed]-|> RealSubject
Subject -[dashed]-|> Proxy
@enduml
|
41e7b339593dba40d8bb2276933de8b4b063dbc6 | 1710cfdfa5ecf458e99537794b350b857cf23a9a | /UMLs/Observer.plantuml | 1b8b832f0637fde36bb34d3a2fe2fa8e8725bebd | [] | no_license | Petrit123/Design-Patterns-CA | 8e03593f6183d2bba336176058a17593d9446a93 | 5d78f899da2a9fa15a7aa91cd504c74c7b651a17 | refs/heads/master | 2022-12-20T19:57:40.963102 | 2020-01-05T22:54:33 | 2020-01-05T22:54:33 | 230,289,294 | 0 | 0 | null | 2022-12-10T03:35:25 | 2019-12-26T15:50:35 | Java | UTF-8 | PlantUML | false | false | 1,597 | plantuml | @startuml
skinparam classAttributeIconSize 0
title __OBSERVER's Class Diagram__\n
namespace om.MovieBookingSystem.Observer {
class com.MovieBookingSystem.Observer.EmailNotification {
+ EmailNotification()
+ update()
}
}
namespace om.MovieBookingSystem.Observer {
interface com.MovieBookingSystem.Observer.Observer {
{abstract} + update()
}
}
namespace om.MovieBookingSystem.Observer {
class com.MovieBookingSystem.Observer.OfferLetter {
- observers : ArrayList<Observer>
- offers : String
- userName : String
+ OfferLetter()
+ getObservers()
+ getOffers()
+ notifyObservers()
+ offerLetter()
+ registerObserver()
+ removeObserver()
+ setObservers()
+ setOffers()
}
}
namespace om.MovieBookingSystem.Observer {
interface com.MovieBookingSystem.Observer.Subject {
{abstract} + notifyObservers()
{abstract} + registerObserver()
}
}
com.MovieBookingSystem.Observer.EmailNotification .up.|> com.MovieBookingSystem.Observer.Observer
com.MovieBookingSystem.Observer.EmailNotification o-- com.MovieBookingSystem.Observer.Subject : offerLetter
com.MovieBookingSystem.Observer.OfferLetter .up.|> com.MovieBookingSystem.Observer.Subject
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
|
0ca2bbb2712a5512416c085e95448330c685ab77 | 228b6c61ca5e56452453f465e5911f681b04af00 | /Diagrams/ontology-partial-diagram.puml | 683b8e872eba043ff4723b96aa9de10b2501f7fe | [
"Apache-2.0"
] | permissive | JaewookByun/EPCIS-1 | ea2f8f125fecd1cfc314563d8c5f291ba3992fb6 | b355ab427a46a28e3836f10858371fe2dbe5a4ef | refs/heads/master | 2023-07-10T14:01:12.837897 | 2021-08-18T03:41:18 | 2021-08-18T03:41:18 | 283,368,059 | 0 | 0 | Apache-2.0 | 2020-07-29T01:31:20 | 2020-07-29T01:31:20 | null | UTF-8 | PlantUML | false | false | 2,727 | puml | @startuml
hide empty attributes
hide empty methods
hide circle
skinparam defaultFontName DialogInput
skinparam shadowing false
legend bottom right
**Prefixes**
epcis: <https://ns.gs1.org/epcis/>
cbv: <https://ns.gs1.org/cbv/>
gs1: <https://gs1.org/voc/>
xsd: <http://www.w3.org/2001/XMLSchema#>
end legend
class EPCISDocument as " " {
a epcis:EPCISDocument
dcterms:created xsd:dateTime
dcterms:format xsd:string [MIME type]
owl:versionInfo xsd:string ["2.0"]
}
class EPCISEvent as "<ni:...?ver=CBV2.0> or blank" {
a epcis:EPCISEvent
<b>epcis:eventTime</b> xsd:dateTimeStamp
<b>epcis:eventTimeZoneOffset</b> xsd:string
epcis:certificationInfo gs1:CertificationInfo [0..1]
<color:blue>epcis:errorDeclaration epcis:ErrorDeclaration</color> [0..1]
---
<<extension point>>
}
class ErrorDeclaration as " " #line:blue {
<b>epcis:declarationTime</b> xsd:dateTimeStamp
epcis:reason cbv:ER [0..1]
epcis:correctedEventIDs epcis:EPCISEvent [0..*]
---
<<extension point>>
}
class ObjectEvent as "<ni:...?ver=CBV2.0> or blank" {
a epcis:ObjectEvent
epcis:recordTime xsd:dateTimeStamp [0..1]
epcis:epcList gs1:PhysicalObject [0..*]
<b>epcis:action</b> xsd:string ["ADD" "OBSERVE" "DELETE"]
epcis:bizStep cbv:BizStep [0..1]
epcis:disposition cbv:Disp [0..1]
epcis:persistentDisposition epcis:PersistentDisposition [0..1]
epcis:readPoint epcis:BizLocation [0..1]
epcis:bizLocation epcis:BizLocation [0..1]
<color:green>epcis:bizTransactionList epcis:BizTransactionDocument</color> [0..*]
epcis:quantityList epcis:QuantityElement [0..*]
---
<<extension point>>
}
class BizTransactionDocument as "<urn:epcglobal:cbv:bt:...> or URL" #line:green {
a epcis:BizTransactionDocument
<b>epcis:type</b> cbv:BTT
}
class blank as " "
EPCISDocument --> blank : epcis:epcisBody
blank --> "1..*" EPCISEvent : epcis:eventList
EPCISEvent <|-- ObjectEvent
EPCISEvent -right-> "0..1" ErrorDeclaration #blue;text:blue : epcis:errorDeclaration
ObjectEvent --> "0..*" BizTransactionDocument #green;text:green : epcis:bizTransactionList
@enduml
|
8802a7db8e0cf8df320d90f62c24f5bc2c176c38 | 3e8de74dfe19cd437fd7842887394d4921a109d7 | /docs/images/Pizzeria1.plantuml | e90d35de31600d32019c442b3e377e70100dbc17 | [] | 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 | 534 | plantuml | @startuml
'-----------------------------------
' UML concepts illustrated
' JMB 2014
'-----------------------------------
hide circle
hide empty members
hide empty methods
class p as "Pizzeria" {
~SimpleFabriqueDePizzas fabrique
+void Pizzeria(SimpleFabriqueDePizzas fabrique)
~Pizza commanderPizza(String type)
}
class f as "SimpleFabriqueDePizzas" {
+Pizza creerPizza(String type)
}
class Pizza {
+void preparer()
+void cuire()
+void couper()
+void emballer()
}
p --> "fabrique" f
f --> "pizza" Pizza
@enduml
|
64cd2c9a1ce26a4ed95402445face4a5c578fd2c | 5d180276957df094f09ee511e05786316537f25d | /src/main/java/thread/local/local.plantuml | af8e92b5f0a93a1125d2ee10d8d13e739a4fc06a | [
"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 | 353 | plantuml | @startuml
title __LOCAL's Class Diagram__\n
namespace thread.local {
class thread.local.ThreadLocalDemo {
{static} + main()
}
}
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
|
b8c51771b991e652178ad5b19d4164aaf58dbe0c | 78ec296afa7a46d7852b6e8ee3512dc6152fb272 | /src/main/java/oop/assignment3/ex44/base/ex44.puml | 52c2e38801caee194d609abf724c608e823b242a | [] | no_license | yuuniper/yu-cop3330-assignment3 | 891b9336d9dc8913958c8dc72aa85f82a28e1e08 | 698635b9da59ce7796b5e58eef6ac00db82d2c4f | refs/heads/master | 2023-06-03T04:17:58.304969 | 2021-06-21T03:24:01 | 2021-06-21T03:24:01 | 378,794,730 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 348 | puml | @startuml
'https://plantuml.com/class-diagram
Solution44 *-- ProductSearch
class Solution44 {
}
class ProductSearch{
boolean found
String productInput
+getDirectory()
+getInput(String s)
+seeker()
+getProduct(JsonArray jsonArrayofProducts, String productInput, boolean found)
+printOutput(String name, String price, String quantity)
}
@enduml |
c087968941cbdd9d0f199e3743304c6552210ba7 | 844665d08d1be5dacc41d8495725d881c68dba71 | /Conferencias/Conferencia 4_ Patrones de Diseño de Comportamiento/PrincipleAndPatternDesign/out/production/PrincipleAndPatternDesign/cu/datys/patterns/gof/behavioral/chainofresponsibility/class-diagram.puml | ec3f14887bb26d9d7276494ab9132f9f28a5921b | [
"MIT"
] | permissive | alexescalonafernandez/curso-patrones-diseno | ec1cf0a993707d78c294208e04604a3a0ffd164e | f586e27791e1281087df6cc137da87f407179e65 | refs/heads/master | 2021-01-25T13:35:26.659206 | 2018-03-02T20:18:06 | 2018-03-02T20:18:06 | 123,588,331 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 626 | puml | @startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam titleFontColor #5cb85c
Title Chain of Responsibility Pattern
abstract class Handler{
- Handler successor
+ {abstract} void handleRequest(Request request)
# void setSuccessor(Handler handler)
}
Handler o-- Handler: succesor
class ConrecteHandler1 extends Handler{
+ void handleRequest(Request request)
}
class ConrecteHandler2 extends Handler{
+ void handleRequest(Request request)
}
class Client
Client --> Handler
@enduml |
0878aa5b4febfb03426a2bd28e70f326ab9d6344 | 34acd2aa8d51295c0c4289e43e8961f5e23b5a08 | /PlantUML/raw/Custom/ElCazador.Worker/Models/WorkerSettings.puml | 936a9d8172c51d82e1c86ac8a770240b86514290 | [] | no_license | fisboger/Thesis | a6887e195c7daa8317abe3167de1676420173e33 | 4746126f69da615c641380fd7a33c863f2fedee3 | refs/heads/master | 2020-04-03T15:18:08.671739 | 2019-02-07T11:17:06 | 2019-02-07T11:17:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 412 | puml | @startuml
class WorkerSettings {
- Configuration : IConfiguration <<get>> <<set>>
+ WorkerSettings(configuration:IConfiguration)
+ IP : IPAddress <<get>>
+ ImpacketExamplesPath : string <<get>>
+ DumpPath : string <<get>>
+ PythonExecutable : string <<get>>
+ MimikatzExecutable : string <<get>>
+ ProcdumpExecutable : string <<get>>
}
IWorkerSettings <|-- WorkerSettings
@enduml
|
7b0341ef1d44aeb2f814be30a2fcfeff98fe26cc | ae856e50e04474c8ab1f4bd57ca78ba391ac8ccd | /ch11-template-method-patterns/diagrams/template-method-pattern-motor-class-diagram2.puml | 513b29b09b243cb1f98e70312696e142183cdff6 | [] | no_license | outofworld98/java-design-patterns | d7c41ad0a41bf1f3d1ba4a9f4f2a212658aec427 | 75964a5387cad3f54726d0f7ba98b0765ca0d650 | refs/heads/master | 2022-03-29T17:38:14.238273 | 2019-01-17T11:10:00 | 2019-01-17T11:10:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 243 | puml | @startuml
title enumeration 인터페이스
enum MotorStatus << enumeration >> {
+ MOVING
+ STOPPED
}
enum DoorStatus << enumeration >> {
+ OPENED
+ CLOSED
}
enum Direction << enumeration >> {
+ UP
+ DOWN
}
@enduml |
6d05e5b0c01ae22e9058b11e9dd274c507e67efa | c417d80f62ec26bcb06a9619ff9b5c35c54190fe | /demos/src/main/java/com/kco/pattern/factory/demo2/工厂方法模式1.puml | dadb47562039e7eea190d2f7ae2e1fa5935b7d75 | [] | no_license | kco1989/examples | 370f95d6e599af4551c17a38745cc9cdf2350917 | daa9197c8ddc846615fc9339001a81b48d8b851a | refs/heads/master | 2021-01-20T14:23:56.770073 | 2018-05-25T03:43:19 | 2018-05-25T03:43:19 | 90,605,536 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 492 | puml | @startuml
interface Car{
run()
}
interface CarFactory{
Car createCar()
}
class BmwCar implements Car{
run()
}
class BydCar implements Car{
run()
}
class MazdaCar implements Car{
run()
}
class BmwCarFactory implements CarFactory{
Car createCar()
}
class BydCarFactory implements CarFactory{
Car createCar()
}
class MazdaCarFactory implements CarFactory{
Car createCar()
}
BmwCarFactory ..> BmwCar
BydCarFactory ..> BydCar
MazdaCarFactory ..> MazdaCar
@enduml |
f3680bdb716c1fcfa3e8277199826a357b94b51e | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/Test/Script/ClassTest/Ikimono.puml | 9702ea7267ce63d60cb4fbf67ad73800a9963700 | [] | 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 | 250 | puml | @startuml
class Ikimono {
+ lifeVal : int = 1
+ Jumyo : float = 1.0f
+ ageSpan : int = 5
+ {static} timePast : float = 0
+ {static} timePastInt : int = 0
Start() : void
Update() : void
}
MonoBehaviour <|-- Ikimono
@enduml
|
5c2662639595fa78812a43300bdd463d46c3c8b2 | 890d137e45f89e2b6effccd96c3c45e1528b6306 | /plantUml/Strategy_Pattern/Strategy_Pattern.puml | f85c21af81de1c483bee5366de05df5a3138cdc9 | [] | no_license | lavinoys/design_pattern_of_java | 32b391b5215124cd8cce8119b483c1216ed429bd | 3a3e643daa402add63558be5437d0d82cbe9a592 | refs/heads/master | 2022-11-24T03:33:33.018926 | 2020-08-05T02:30:54 | 2020-08-05T02:30:54 | 283,434,370 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,180 | puml | @startuml Strategy_Pattern.puml
scale 1.5
allowmixing
+interface HandInterfaceStrategy <<interface>> {
+{abstract} HandStrategy nextHand()
+{abstract} void study(boolean win)
}
note top of HandInterfaceStrategy
가위바위보의 전략을 표시하는 인터페이스
end note
+class HandStrategy {
+{static}final int HANDVALUE_GUU
+{static}final int HANDVALUE_CHO
+{static}final int HANDVALUE_PAA
+{static}final HandStrategy[] hand
-{static} final String[] name
- int handValue
{field} - HandStrategy(int handValue)
+{static} HandStrategy getHand(int handValue)
+boolean isStrongerThan(HandStrategy h)
+boolean isWeakerThan(HandStrategy h)
-int fight(HandStrategy h)
+String toString()
}
note top of HandStrategy
가위바위보의 손을 표시하는 클래스
end note
+class PlayerStrategy {
-String name
-HandInterfaceStrategy strategy
-int winCount
-int loseCount
-int gameCount
{field}+PlayerStrategy(String name, HandInterfaceStrategy strategy)
+HandStrategy nextHand()
+void win()
+void lose()
+void even()
+String toString()
}
note top of PlayerStrategy
가위바위보를 하는 플레이어를 표시하는 클래스
end note
+class ProbStrategy <implements HandInterfaceStrategy> {
-Random random;
-int prevHandValue
-int currentHandValue
-int[][] history
{field}+ProbStrategy(int seed)
+HandStrategy nextHand()
+void study(boolean win)
-int getSum(int hv)
}
note bottom of ProbStrategy
직전 손에서 다음 손을 확률적으로 계산하는 전략을 표시하는 클래스
end note
+class WinningStrategy <implements HandInterfaceStrategy> {
-Random random
-boolean won
- {field}HandStrategy prevHand
+WinningStrategy(int seed)
+HandStrategy nextHand()
+void study(boolean win)
}
note bottom of WinningStrategy
이기면 다음에도 같은 손을 내는 전략을 표시하는 클래스
end note
HandStrategy -right-> PlayerStrategy
PlayerStrategy o-right-> HandInterfaceStrategy
WinningStrategy .up.|> HandInterfaceStrategy
ProbStrategy .up.|> HandInterfaceStrategy
@enduml |
1ff56ad3a75078a26b67271276e65fa8c9d129f3 | 59ddb23e6f0aab73bc00291e8a2f6d6d9a798da1 | /docs/Creational/Singleton/learnku.puml | f9537a37edefa7ed5ae691ddd50e627e49caf2f5 | [] | no_license | xiaomidapao/patterns | d40cd0d55fb9ce09dffe34509a24a5f1d2bb186b | 038a1d6cf4eaa2aa2473ff2abbe972b18870f2b1 | refs/heads/master | 2020-07-24T02:24:55.441380 | 2019-09-15T02:34:03 | 2019-09-15T02:34:03 | 207,773,180 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 159 | puml | @startuml
class Singleton{
- {static} instance
+ {static} getInstance() <<Singleton>>
- __construct()
- __clone()
- __wakeup()
}
@enduml |
c4c20d06ca0a52495f8ad73eef9d777bb4ad461e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductSelectionRemoveProductAction.puml | 9fb68e93b63975a1dcae60c8d1f0185cbbfd786f | [] | 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 | 545 | 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 ProductSelectionRemoveProductAction [[ProductSelectionRemoveProductAction.svg]] extends ProductSelectionUpdateAction {
action: String
product: [[ProductResourceIdentifier.svg ProductResourceIdentifier]]
}
interface ProductSelectionUpdateAction [[ProductSelectionUpdateAction.svg]] {
action: String
}
@enduml
|
371346881041b26c26491e471faac1ab22e9fc92 | fdbadc7e91d15a287aaf25c00cdc450ae724b63f | /slide/thread-aggregates.puml | 2cbee6d0a5df2a583fe4dd2916930bf7cce3578b | [] | no_license | j5ik2o/thread-weaver | cb3a230bf32196e667476d98570a5992d7be6392 | 39896c6e9ff05a279b3eb300965cd0e560c3150f | refs/heads/master | 2022-07-06T11:23:51.162097 | 2020-03-09T08:29:28 | 2020-03-09T08:29:28 | 182,813,060 | 28 | 4 | null | 2022-06-23T15:32:45 | 2019-04-22T15:13:55 | Scala | UTF-8 | PlantUML | false | false | 539 | puml | @startuml
class Thread<Domain object>
class ThreadAggregate<Actor> {
val state: Thread
}
class PersistentThreadAggregate<PersistentActor> {
val childRef: ActorRef
}
class ThreadAggregates<Actor, MessageBroker> {
val childRef: ActorRef
}
class ShardedThreadAggregates<Actor, ClusterSharding>{
}
ShardedThreadAggregates -right-|> ThreadAggregates: <<extends>>
ThreadAggregate .down.> Thread: <<use>>
PersistentThreadAggregate .down.> ThreadAggregate: <<use>>
ThreadAggregates .down.> PersistentThreadAggregate: <<use>>
@enduml |
a36be894441809e4fa340f13a4ef5bf40e4cfb37 | 1407700487a0e4077707b6cc73fe7ab19d75e42e | /src/Quiz.puml | 65356ae85fdd908e694755aa972df01461d52886 | [] | no_license | cphwulf/MyQuiz | d9df453d39d687357d4128fd1834b16720fb9cea | 74167ee88866d58cfc4b55838385130b1b29e9f5 | refs/heads/master | 2022-09-13T05:51:19.120897 | 2020-05-04T08:15:51 | 2020-05-04T08:15:51 | 261,116,411 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 712 | puml | @startuml
Thread ^-- ConnectionHandler
class Main {
MainController : mc
}
class ConnectionHandler {
Socket : client
--
}
abstract class Controller {
--
runGame()
{abstract} mainMenu()
}
class Event {
String name
PrintWriter pw
--
getWriters()
}
class Room {
Map<String, Item> items
Map<String, Player> players
Map<Direction, Room> exits
---
---
to(Direction dir):Room
}
enum Direction {
NORTH
NORTHEAST
EAST
SOUTHEAST
SOUTH
SOUTHWEST
WEST
NORTHWEST
UP
DOWN
}
enum Gender{
MASCULINE,
FEMININE,
NEUTER
}
enum Action {
QUIT
MOVE
TAKE
DROP
GIVE
LOOK
INVENTORY
EXITS
SAY
YELL
WHISPER
USE
WHO
HELP
}
Controller <|-- MainController
MainController o-- Room
MainController --Main
MainController -- Event
@enduml |
8f2eff17bc9acc3ac04b850757aebc9cdd97abd7 | 7a6617d1722fd020ea258142266c543449b0b42e | /src/main/java/ex41/nameSorter.puml | a77a4c315319663c288c600685e85ed5d80bb0ba | [] | no_license | polvnco/polanco-cop3330-assignment3 | f7c3d88955ad27edded31438c3c840fd732e95bc | 959f5d956fa74107f402e2e71e6b943ee7fb4dd2 | refs/heads/main | 2023-05-27T00:17:27.544929 | 2021-06-21T03:12:40 | 2021-06-21T03:12:40 | 376,971,640 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 668 | puml | /*
* UCF COP3330 Summer 2021 Assignment 3 Solution
* Copyright 2021 Christopher Polanco
*/
@startuml
'https://plantuml.com/sequence-diagram
!define DARKRED
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
class Name {
lastName : String (readOnly)
firstName : String (readOnly)
--
+ compareTo(other : Name) : int
- getFirst () : String
- getLast () : String
+ firstName () : String
+ lastName () : String
- Name (firstName : String, lastName : String)
}
class nameSorters <<utility>> {
- writeFile (names : List<Name>) : void
- readFile () : List<Name>
+ main (args : String[]) : void
}
nameSorters <|-- Name
@enduml |
37bb7b1572e22fcac238eb5048c4913b856e72dd | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/PaymentSetKeyAction.puml | c47747a4865902d133d3df6412f0ddbecfaf84c5 | [] | 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 | 429 | 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 PaymentSetKeyAction [[PaymentSetKeyAction.svg]] extends PaymentUpdateAction {
action: String
key: String
}
interface PaymentUpdateAction [[PaymentUpdateAction.svg]] {
action: String
}
@enduml
|
e7980ef170f56316916b9e75bb4ca0ad3becc931 | aebdf064115e5817e0c77e15b739eccda80d4550 | /oo/src/main/java/openaccount/classuml/business.puml | 6a4cdc63ee0b71fb11da6ece5a4732fca331f79e | [] | no_license | thonnyhu/designpattern | e497fbaa44d6b8a98151f8f51f967dfae8145913 | 77dc01fd366f3dfb58aab5f0bd3e6825d6fa6301 | refs/heads/master | 2021-04-28T16:49:52.462770 | 2018-06-11T12:11:26 | 2018-06-11T12:11:26 | 122,023,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 877 | puml | @startuml
abstract Business{
- ProductType productType;
}
class NfcAccount {
}
class QrCode{
}
class Parking{
}
class ProQrCode{
}
NfcAccount -up-|> Business
QrCode -up-|> Business
Parking -up-|> Business
ProQrCode -up-|> Business
interface BusinessAction<Req extend BaseReq,Res extend BaseRes> {
String getUnique(ProductType productType);
}
interface Open<OpenReq,OpenRes>{
Res open(OpenReq req)
}
interface Unregister<UnregisterReq,UnRegisterRes>{
UnRegisterRes unregister(UnregisterReq req);
}
Open -up-|> BusinessAction
Unregister -up-|> BusinessAction
NfcAccount -up-|> Open
QrCode -up-|> Open
Parking -up-|> Open
ProQrCode -up-|> Open
Class BusinessActionProcessorContainer{
- Map<String,List<Processor>> businessActionProcessors;
public List<Processor> getProcessorsByUniqueId();
}
BusinessAction -> BusinessActionProcessorContainer
@enduml |
a582d3683ce3e3d1f058d5b2aa0b89ca6a849f95 | 2f03a1e0fed30f50dedba0f77c95970080ec7152 | /src/main/java/ex41/ex41.puml | 74407fc5398c4752fb6897742f837eb50d3cf1c3 | [] | no_license | kaleah08/gonzalez-cop3330-assignment3 | 27d689ab1970a7aa191e41b0527be0203f416795 | bac781619bc99e3cf0ae4a0ee519f06a40a8d244 | refs/heads/master | 2023-08-18T08:57:24.887609 | 2021-10-12T03:51:01 | 2021-10-12T03:51:01 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 217 | puml | @startuml
'https://plantuml.com/class-diagram
class App
class App{
+ void main(String[] args)
ArrayList list
String inputFile
+ void print(ArrayList list)
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml |
c4e61b8b37c65b858a20acdb7df98540d70a0d8b | 349eeab25c9b9187133cb5f2d6a56bdbd2aa8a8c | /Diagrams/class_diagram.puml | 4f51880174eed0b3d171c0947037fb42281a6733 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | SoPraFS20-Group16/sopra-fs20-group-16-server | 51a0b1938de2f0c56b578b63d1ca8a914ebc678a | bf3fce437a188936672d9d6627a3e066e163ce8a | refs/heads/master | 2021-03-26T15:09:23.764016 | 2020-05-23T14:54:10 | 2020-05-23T14:54:10 | 247,715,744 | 1 | 0 | Apache-2.0 | 2020-05-06T19:56:39 | 2020-03-16T13:55:30 | Java | UTF-8 | PlantUML | false | false | 1,673 | puml | @startuml
enum BuildingType {
ROAD
SETTLEMENT
CITY
}
enum TileType{
DESERT
FIELD
FOREST
HILL
MOUNTAIN
PASTURE
}
enum ResourceType{
BRICK
WOOD
STONE
WHEAT
SHEEP
}
enum DevelopmentType{
KNIGHT
ROADPROGRESS
PLENTYPROGRESS
MONOPOLYPROGRESS
VICTORYPOINT
}
enum LocationType{
EDGE
VERTEX
}
interface Building{
int coords;
BuildingType buildingtype;
int victoryPoints;
}
class City
class Settlement
class Road
class Dice{
roll()
}
class Player{
String name;
int age;
int victoryPoints;
ArrayList<Card>;
ArrayList<Road>
ArrayList<City>
ArrayList<Settlement>
getResources()
giveResources()
build()
buyDevelopmentCard()
playDevelopmentCard()
passTurn()
}
class Robber{
currentTile;
move()
drawCard()
}
interface Card{
}
class ResourceCard{
ResourceType resourceType;
}
class DevelopementCard{
DevelopmentType developmentType;
}
class Bank{
trade()
}
class Board{
ArrayList<Tile>;
createBoard()
update()
}
class Tile{
int number;
TileType tileType;
ArrayList<Coordinates>;
getCoordinates()
}
class Coordinates{
int x;
int y;
ArrayList<Coordinates> adjacents;
getCoordinates()
getAdjacents()
}
note "<b>main class</b>" as N1
class Game
N1 -down- Game
Game -down-> Board
Game -left-> Player
Building <|.. City
Building <|.. Settlement
Building <|.. Road
BuildingType <-left- Building
TileType <-up- Tile
Player --> Card
Card <|.. ResourceCard
Card <|.. DevelopementCard
ResourceType <-down- ResourceCard
DevelopmentType <-down- DevelopementCard
Bank -down- Player
Dice -up- Player
Player -left-> Building
Board o-right- Tile
Board o-down- Robber
Robber . Tile
Tile *-- Coordinates
Player .. Board
LocationType <-down- Coordinates
@enduml |
ccbcffc779a1be35df87e640ac06d3bf73b62144 | 2658a42eb6bbcc140cae19c1120864277f893b2f | /documentation/src/orchid/resources/assets/diagrams/term.puml | 35cc31ed0172471bd00856f34c574426f3e18d62 | [
"Apache-2.0"
] | permissive | tuProlog/2p-kt | 0935dbeb88272f79df1ebbd2339767bccc8ecfa4 | 6510ea0414985b708dd492ee240727f2e261176c | refs/heads/master | 2023-08-17T18:41:12.310798 | 2023-07-19T10:34:16 | 2023-07-19T13:13:27 | 230,784,338 | 84 | 15 | Apache-2.0 | 2023-09-13T22:49:25 | 2019-12-29T17:51:34 | Kotlin | UTF-8 | PlantUML | false | false | 236 | puml | @startuml
skinparam shadowing false
interface Term {
+ isGround: Boolean
+ variables: Sequence<Var>
+ equals(other: Any): Boolean
+ structurallyEquals(other: Term): Boolean
+ freshCopy(): Term
+ toString(): String
}
@enduml |
d836b22684b90c8ef42ee7b107f0acda155e3323 | 68327a264a1d53f3ca7169de00777c8dadcf9776 | /docs/reference/modules/messaging/attachments/event_messaging_classes.puml | 781fc8bce4bb51ad210fa82b4dd59c8293d19a6d | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-unknown"
] | permissive | nagyist/AxonFramework | 03c0f9d4f059b3f7cd50323bfe85fbd33765f46b | d92f72af86e6a6304a46b229bb83cc67225ca32d | refs/heads/master | 2023-09-01T02:22:50.326433 | 2023-08-28T03:02:07 | 2023-08-28T03:02:07 | 21,167,278 | 0 | 0 | Apache-2.0 | 2023-09-11T19:36:58 | 2014-06-24T14:14:25 | Java | UTF-8 | PlantUML | false | false | 350 | puml | ' This is a fragment of a diagram
' It is meant to be used together with generic_messaging_classes.puml
package "event messages" <<Rectangle>> {
interface EventMessage<T> {
-timestamp: Instant
}
class GenericEventMessage<T> {}
}
EventMessage --|> Message
GenericEventMessage ..|> EventMessage
GenericEventMessage --|> MessageDecorator
|
0da0937f9372771cae3ced0c40783ea6d64e5432 | 86a3a7f68a26bf947a96c34a6b008dc98e48c575 | /lapr2-2020-g041/docs/UC2/UC2_CD.puml | aced0e2f96297cb67945ccc609f455f3f61f9911 | [
"MIT"
] | permissive | GJordao12/ISEP-LAPR2 | 7f01f7fe4036f17a4a76f0595e80564c2dda7b3c | 0c537d1cf57f627f98e42b6f1b7e100f49ff2d15 | refs/heads/master | 2023-08-17T10:59:19.469307 | 2021-10-02T16:27:19 | 2021-10-02T16:27:19 | 272,283,723 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,619 | puml | @startuml
class RegisterFreelancerUI {
}
class RegisterFreelancerController {
+getLevelsOfExpertise()
+newFreelancer(id, name, email, NIF, IBAN, address, country, levelId)
+registerFreelancer()
}
class Platform {
-String designation
+RegisterFreelancer getFreelancersRegister()
}
class FreelancersRegister {
+Freelancer newFreelancer(id, name, email, NIF, IBAN, level, local)
+validateFreelancer(free)
+registerFreelancer(free)
+addFreelancer(free)
}
class Organization {
-String designation
}
class Collaborator {
-String name
-String email
}
class User {
-String name
-String email
-String password
}
class Freelancer {
-String id
-String name
-String email
-double NIF
-String IBAN
-double OverallPayments
+Location newLocation(address,country)
+Freelancer(id, name, email, NIF, IBAN, level, local)
}
enum LevelOfExpertise {
-JUNIOR
-SENIOR
+values()
+getLevelById()
}
class Location {
-String address
-String country
+Location(address,country)
}
RegisterFreelancerUI ..> RegisterFreelancerController
RegisterFreelancerController ..> Platform
RegisterFreelancerController ..> FreelancersRegister
Platform "1" --> "*" Organization : has registered >
Platform "1" --> "*" User : has registered >
Platform "1" --> "1" FreelancersRegister
FreelancersRegister "1" --> "*" Freelancer : has registered >
Organization "1" --> "1..*" Collaborator: has >
Collaborator "0..1" --> "1" User : act as >
Collaborator "1" --> "*" Freelancer : registers >
Freelancer "1" --> "1" LevelOfExpertise : has >
Freelancer "1" --> "1" Location : has >
@enduml
|
8dba7210fca5db9d35be28940698d9d8f4d42a23 | 30bd8533d0644779e73646cc630132fd942f5398 | /app/app.plantuml | 06280e4bfc5f4e865823c8858d232a2d5d329fec | [] | no_license | sgfdpk/Test | c1e4626c1ff834ad242bac728104c94287bb8c9c | 6520514aeca8650c15b0f4cc40f82a7677a4e9e5 | refs/heads/master | 2020-03-15T17:53:06.860197 | 2018-12-14T14:33:41 | 2018-12-14T14:33:41 | 132,271,633 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 9,103 | plantuml | @startuml
title __APP's Class Diagram__\n
package com.example.user.diplom_2 {
package com.example.user.diplom_2.adapters {
class AttractItemAdapter {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Attraction {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class AttractionItem {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.adapters {
class AttractionListAdapter {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
enum AttractionTypes {
}
}
}
package com.example.user.diplom_2 {
class BuildConfig {
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Country {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class CountryDetails {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.adapters {
class CountrySpinnerAdapter {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.adapters {
class CurrencyAdapter {
}
}
}
package com.example.user.diplom_2 {
class ExampleInstrumentedTest {
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.DB {
class Inserter {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Lection {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.adapters {
class LectionAdapter {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class LectionDetails {
}
}
}
package com.example.user.diplom_2 {
class LectionsActivity {
}
}
package com.example.user.diplom_2 {
class MainActivity {
}
}
package android.support.v4 {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.nearby {
class R {
}
}
}
package android.support.localbroadcastmanager {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.appindexing {
class R {
}
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.livedata {
class R {
}
}
}
package com.google.android.gms {
package com.google.android.gms.all {
class R {
}
}
}
package android.support.coreui {
class R {
}
}
package android.support.customview {
class R {
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.livedata {
package android.arch.lifecycle.livedata.core {
class R {
}
}
}
}
package com.google.android.gms {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.maps {
class R {
}
}
}
package com.google.android.gms {
package com.google.android.gms.location {
class R {
}
}
}
package android.support.swiperefreshlayout {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.games {
class R {
}
}
}
package android.support.graphics.drawable {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.plus {
class R {
}
}
}
package com.google.android.gms {
package com.google.android.gms.analytics {
class R {
}
}
}
package android.support.v7.appcompat {
class R {
}
}
package android.support.v7.viewpager {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.wallet {
class R {
}
}
}
package com.google.android.gms {
package com.google.android.gms.fitness {
class R {
}
}
}
package android.support.v7.recyclerview {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.safetynet {
class R {
}
}
}
package com.google.android.gms {
package com.google.android.gms.cast {
class R {
}
}
}
package android.support.asynclayoutinflater {
class R {
}
}
package android.support.slidingpanelayout {
class R {
}
}
package android.support.cursoradapter {
class R {
}
}
package androidx.versionedparcelable {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.ads {
class R {
}
}
}
package android.support.print {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.appstate {
class R {
}
}
}
package android.support.loader {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.drive {
class R {
}
}
}
package android.support.v7.palette {
class R {
}
}
package android.support.v7.cardview {
class R {
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.viewmodel {
class R {
}
}
}
package com.google.android.gms {
package com.google.android.gms.panorama {
class R {
}
}
}
package android.support.compat {
class R {
}
}
package android.support.transition {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.gcm {
class R {
}
}
}
package android.support.drawerlayout {
class R {
}
}
package com.example.user.diplom_2 {
class R {
}
}
package android.support.design {
class R {
}
}
package android.support.coreutils {
class R {
}
}
package android.support.constraint {
class R {
}
}
package android.support.coordinatorlayout {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.appinvite {
class R {
}
}
}
package android.support.mediacompat {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.wearable {
class R {
}
}
}
package android.support.fragment {
class R {
}
}
package com.google.android.gms {
package com.google.android.gms.identity {
class R {
}
}
}
package android.arch.core {
class R {
}
}
package android.arch.lifecycle {
class R {
}
}
package android.support.documentfile {
class R {
}
}
package android.support.v7.mediarouter {
class R {
}
}
package android.support.interpolator {
class R {
}
}
package com.example.user.diplom_2 {
class ReadLectionActivity {
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Subject {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class SubjectDetails {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.adapters {
class SubjectsAdapter {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.DB {
class TableCreate {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.adapters {
class WorkListAdapter {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Wort {
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class WortDetails {
}
}
}
AttractItemAdapter -up-|> ArrayAdapter
AttractionListAdapter -up-|> ArrayAdapter
CountrySpinnerAdapter -up-|> ArrayAdapter
LectionAdapter -up-|> Adapter
LectionsActivity -up-|> OnItemSelectedListener
LectionsActivity -up-|> AppCompatActivity
LectionsActivity o-- LectionAdapter : lectionAdapter
LectionsActivity o-- WorkListAdapter : workAdapter
LectionsActivity o-- AttractItemAdapter : attractItemAdapter
LectionsActivity o-- AttractionListAdapter : attractionListAdapter
LectionsActivity o-- CountrySpinnerAdapter : countrySpinnerAdapter
MainActivity -up-|> AppCompatActivity
MainActivity o-- SubjectsAdapter : subjectsAdapter
ReadLectionActivity -up-|> AppCompatActivity
SubjectsAdapter -up-|> Adapter
WorkListAdapter -up-|> Adapter
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
|
78ffbaa1571bf5bc8235c7fb2f55d08e08df2e27 | 7546aa3cd88e77126ec2ef50574d45cc96b9bc5b | /test/PlantUmlClassDiagramGeneratorTest/uml/all.puml | ef53ce206f581bd05e51ce91d3be23097fe78875 | [
"MIT"
] | permissive | gjuttla/PlantUmlClassDiagramGenerator | 6806db6b2e313fdd1044b8118da94dd1858edf06 | 6480a2958bb23e7c72c1f5e03973ba7be189b718 | refs/heads/master | 2020-03-22T05:17:39.856579 | 2018-07-03T19:05:49 | 2018-07-03T19:05:49 | 139,555,932 | 1 | 1 | null | 2018-07-03T08:56:29 | 2018-07-03T08:56:29 | null | UTF-8 | PlantUML | false | false | 1,760 | puml | @startuml
class ClassA {
- <<readonly>> intField : int = 100
- {static} strField : string
# X : double = 0
# Y : double = 1
# Z : double = 2
- list : IList<int>
# 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 {
- field_1 : int
+ {abstract} PropA : int <<get>> <<protected set>>
# <<virtual>> VirtualMethod() : string
+ {abstract} AbstractMethod(arg1:int, arg2:double) : string
}
class ClassC <<sealed>> {
- {static} <<readonly>> readonlyField : string = "ReadOnly"
+ <<override>> PropA : int <<get>> <<protected set>> = 100
+ <<event>> PropertyChanged : PropertyChangedEventHandler
- RaisePropertyChanged(propertyName:string) : void
+ <<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>>
+ B : InnerClass <<get>>
}
class InnerClass {
+ X : string <<get>> = "xx"
+ MethodX() : void
}
class InnerStruct <<struct>> {
+ A : int <<get>>
+ InnerStruct(a:int)
}
InnerClass +-- InnerStruct
NestedClass +-- InnerClass
ClassB <|-- ClassC
INotifyPropertyChanged <|-- ClassC
@enduml
|
cd01750586f2fea4412343c1c8ecbae3a42cbb80 | b6b965aba95a85b0a43bd8bebb83d591f711fd8d | /uml/PC-GoodsSearch.puml | 17d1ec893a63140914326909a457a296b98dfaa5 | [] | no_license | codeworld-GitHub/mytest | 57365f2497cb6074b967b3c657649f98707d19d5 | 9a990d20c9895db2e28b695a03fbf08cf0f424bf | refs/heads/master | 2023-07-26T23:45:04.650458 | 2023-07-13T10:23:04 | 2023-07-13T10:23:04 | 172,627,845 | 0 | 0 | null | 2023-06-14T22:46:14 | 2019-02-26T03:05:55 | Java | UTF-8 | PlantUML | false | false | 7,427 | puml | '商品列表 流程图
@startuml
start
:登录PC系统;
:搜索类型选择商品\n输入或不输入内容;
:点击搜索;
if(营销Id不为null) then (yes)
if(营销开启) then (no)
:抛出异常;
stop
else(yes)
endif
else(no)
endif
:设置默认查询条件;
if(b2b模式) then (yes)
:按会员/客户价格排序;
else(no)
:按市场价排序;
endif
(A)
note right: 连接符A
@enduml
@startuml
(A)
note left: 连接符A
:设置查询条件;
note left
关键字,商品分类
店铺分类,设定排序
聚合品牌,聚合分类
嵌套聚合规格-规格值
end note
:根据条件查询商品信息;
:填充SPU数据,规格值,聚合数据等;
:返回结果;
if(结果为空?) then (no)
:计算区间价,营销价格;
else(yes)
endif
:返回封装结果;
@enduml
'商品列表 时序图
@startuml
autonumber
actor react
react -> controller :发起搜索商品请求
controller -> provider :查询营销活动\nmarketingQueryProvider.getByIdForCustomer
provider -> service :查询营销活动\nmarketingService.getMarketingByIdForCustomer
service -> repository :查询营销活动\nmarketingRepository.findOne
repository -> db :查询数据
db --> repository :返回查询结果
repository --> service :返回查询结果
service --> provider :返回查询结果
provider --> controller :返回查询结果
controller -> controller:设置默认查询条件
controller -> service :查询ES获取商品信息\nesGoodsInfoElasticService.page
service -> service :设置查询条件
database db
service -> db :查询ES获取商品信息
db --> service :返回结果
service --> controller :返回结果
controller -> controller:计算区间价、营销价
controller --> react :返回封装结果
@enduml
'商品列表 类图
@startuml
class GoodsInfoBaseController{
-MarketingQueryProvider marketingQueryProvider
-CustomerLevelQueryProvider customerLevelQueryProvider
-MarketingPluginProvider marketingPluginProvider
-PurchaseProvider purchaseProvider
-EsGoodsInfoElasticService esGoodsInfoElasticService
-GoodsIntervalPriceService goodsIntervalPriceService
+BaseResponse<EsGoodsInfoResponse> list(EsGoodsInfoQueryRequest queryRequest)
}
CustomerLevelQueryProvider -* GoodsInfoBaseController
GoodsInfoBaseController *-- MarketingQueryProvider
GoodsInfoBaseController *-- MarketingPluginProvider
GoodsInfoBaseController *-- PurchaseProvider
EsGoodsInfoElasticService --* GoodsInfoBaseController
GoodsInfoBaseController *- GoodsIntervalPriceService
interface MarketingQueryProvider{
+BaseResponse<MarketingGetByIdForCustomerResponse> getByIdForCustomer(MarketingGetByIdRequest getByIdRequest)
}
interface CustomerLevelQueryProvider{
+BaseResponse<CustomerLevelWithDefaultByCustomerIdResponse> getCustomerLevelWithDefaultByCustomerId(CustomerLevelWithDefaultByCustomerIdRequest request)
}
interface MarketingPluginProvider{
+BaseResponse<GoodsInfoListByGoodsInfoResponse> goodsListFilter(MarketingPluginGoodsListFilterRequest request)
}
interface PurchaseProvider{
+BaseResponse<PurchaseFillBuyCountResponse> fillBuyCount(PurchaseFillBuyCountRequest request)
}
class EsGoodsInfoElasticService{
-GoodsQueryProvider goodsQueryProvider
-GoodsCateQueryProvider goodsCateQueryProvider
-StoreCateQueryProvider storeCateQueryProvider
-GoodsInfoQueryProvider goodsInfoQueryProvider
-GoodsBrandQueryProvider goodsBrandQueryProvider
-GoodsInfoSpecDetailRelQueryProvider goodsInfoSpecDetailRelQueryProvider
-ElasticsearchTemplate elasticsearchTemplate
+EsGoodsInfoResponse page(EsGoodsInfoQueryRequest queryRequest)
}
class GoodsIntervalPriceService{
-GoodsIntervalPriceProvider goodsIntervalPriceProvider
+GoodsIntervalPriceByCustomerIdResponse getGoodsIntervalPriceVOList(List<GoodsInfoVO> goodsInfoVOList, String customerId)
}
GoodsIntervalPriceService *- GoodsIntervalPriceProvider
interface GoodsIntervalPriceProvider{
+BaseResponse<Response> putByCustomerId(Request request)
}
class MarketingQueryController implements MarketingQueryProvider {
+MarketingService marketingService
+BaseResponse<MarketingGetByIdForCustomerResponse> getByIdForCustomer(MarketingGetByIdRequest getByIdRequest)
}
MarketingQueryController *-- MarketingService
class MarketingService{
-MarketingRepository marketingRepository
+MarketingResponse getMarketingByIdForCustomer(Long marketingId)
}
MarketingService *-- MarketingRepository
interface MarketingRepository{
+T findOne(ID id)
}
class CustomerLevelQueryController implements CustomerLevelQueryProvider {
+CustomerLevelService customerLevelService
+BaseResponse<Response> getCustomerLevelWithDefaultByCustomerId(Request request)
}
CustomerLevelQueryController *-- CustomerLevelService
class CustomerLevelService{
-StoreRepository storeRepository
+CustomerLevel findLevelByCustomerId(String customerId)
}
CustomerLevelService *-- StoreRepository
interface StoreRepository{
+List<T> findAll()
}
class MarketingPluginController implements MarketingPluginProvider {
-MarketingPluginService marketingPluginService
+BaseResponse<GoodsInfoListByGoodsInfoResponse> goodsListFilter(MarketingPluginGoodsListFilterRequest request)
}
MarketingPluginController *-- MarketingPluginService
class MarketingPluginService{
-List<String> goodsListPlugins
+GoodsInfoListByGoodsInfoResponse goodsListFilter(List<GoodsInfoVO> goodsInfos, MarketingPluginRequest request)
}
class PurchaseController implements PurchaseProvider {
-PurchaseService purchaseService
+BaseResponse<PurchaseFillBuyCountResponse> fillBuyCount(PurchaseFillBuyCountRequest request)
}
PurchaseController *-- PurchaseService
class PurchaseService{
-PurchaseRepository purchaseRepository
+List<GoodsInfoVO> fillBuyCount(List<GoodsInfoVO> goodsInfoList, String customerId)
}
PurchaseService *-- PurchaseRepository
interface PurchaseRepository{
+List<T> findAll(Specification<T> spec)
}
GoodsQueryProvider --* EsGoodsInfoElasticService
GoodsCateQueryProvider --* EsGoodsInfoElasticService
StoreCateQueryProvider -* EsGoodsInfoElasticService
GoodsInfoQueryProvider --* EsGoodsInfoElasticService
GoodsBrandQueryProvider --* EsGoodsInfoElasticService
EsGoodsInfoElasticService *- GoodsInfoSpecDetailRelQueryProvider
interface GoodsQueryProvider{
+BaseResponse<GoodsByConditionResponse> listByCondition(GoodsByConditionRequest goodsByConditionRequest)
}
interface GoodsCateQueryProvider{
+BaseResponse<GoodsCateByIdResponse> getById(GoodsCateByIdRequest request)
+BaseResponse<GoodsCateListByConditionResponse> listByCondition(GoodsCateListByConditionRequest request)
}
interface StoreCateQueryProvider{
+BaseResponse<StoreCateListByStoreCateIdAndIsHaveSelfResponse> listByStoreCateIdAndIsHaveSelf(StoreCateListByStoreCateIdAndIsHaveSelfRequest storeCateListByStoreCateIdAndIsHaveSelfRequest)
}
interface GoodsInfoQueryProvider{
+BaseResponse<GoodsInfoListByIdsResponse> listByIds(GoodsInfoListByIdsRequest request)
}
interface GoodsBrandQueryProvider{
+BaseResponse<GoodsBrandListResponse> list(GoodsBrandListRequest request)
}
interface GoodsInfoSpecDetailRelQueryProvider{
+BaseResponse<GoodsInfoSpecDetailRelBySkuIdsResponse> listBySkuIds(GoodsInfoSpecDetailRelBySkuIdsRequest goodsInfoSpecDetailRelBySkuIdsRequest)
}
@enduml |
0926a6a786ca6d48271e770fc9da3d97c4c8c643 | 76865f9784db30185660315279c7a1b726cd4a07 | /src/main/resources/uml/ManageUser.puml | abf42ff663af134fed3eb5f66e1a1423bf2797fd | [] | no_license | taink3107/capstone_v3 | 03add0957d3bd6b6b0b679b7fdd02acf4de8f872 | 8402f2ab1e0ffffec9aae7ddb7eabb71fba6b5d0 | refs/heads/master | 2023-07-11T17:08:00.716496 | 2021-08-21T14:27:33 | 2021-08-21T14:27:33 | 398,578,534 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 219 | puml | @startuml
'https://plantuml.com/class-diagram
class UserController extends RestController{
- hieucak():int
- userService: UserService
}
interface UserService{
}
UserController "1" o--> "1"UserService
@enduml |
96344ea24e8c4a689722c9786fc899fa6c85c0a6 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /class - design/student/deleteStudent.plantuml | 73c8a395823fe283a993f67d47bbb0cf76793108 | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,536 | plantuml | @startuml deleteStudent
class DeleteStudentForm {
- classroom_id: bigint
- student_id: string
+ delete_student_from_classroom(token, classroom_id)
}
class IStudentForm <<interface>> {
+ delete_student_from_classroom(token, classroom_id)
}
class StudentController {
+ delete_student(token, classroom_member_id)
}
class ClassroomMember {
- id: bigint
- user_id: bigint
- classroom_id: bigint
- created_at: datetime
+ get_id(): bigint
+ get_user_id(): bigint
+ set_user_id(bigint)
+ get_classroom_id(): bigint
+ set_classroom_id(bigint)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IClassroomMemberDB <<interface>> {
+ create(classroom_id, user_id): void
+ read(classroom_id)
+ read(user_id)
+ read(classroom_member_id)
+ read(classroom_id, user_id)
+ update_rollcall(classroom_member_id, created_at, is_presented)
+ update_bonus_point(classroom_member_id, created_at, point)
+ update_score(classroom_member_id, created_at, test_title, score)
+ delete(classroom_id, user_id)
+ get_user(classroom_member)
+ get_classroom(classroom_member)
}
hide DeleteStudentForm circle
hide IStudentForm <<interface>> circle
hide StudentController circle
hide IClassroomMemberDB <<interface>> circle
hide ClassroomMember circle
IStudentForm .down.> DeleteStudentForm
IClassroomMemberDB .down.> ClassroomMember
IStudentForm "1"-left-"1" StudentController
StudentController "1"-left-"1" IClassroomMemberDB
@enduml
|
cf0cec4ea86c4aadc8b15fec9e291a7ad93f62e7 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/TimelineHelpers.puml | 598a3f95727cb495686538507a1a9097555947a7 | [] | 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 | 5,256 | puml | @startuml
class TimelineHelpers <<static>> {
{static} IsExposedReferenceExplicitlyNamed(name:string) : bool
{static} GenerateExposedReferenceName() : string
+ {static} CloneExposedReferences(clone:ScriptableObject, sourceTable:IExposedPropertyTable, destTable:IExposedPropertyTable) : void
+ {static} CloneReferencedPlayableAsset(original:ScriptableObject, sourceTable:IExposedPropertyTable, destTable:IExposedPropertyTable, newOwner:Object) : ScriptableObject
{static} SaveCloneToAsset(clone:Object, newOwner:Object) : void
{static} CloneAnimationClip(clip:AnimationClip, owner:Object) : AnimationClip
+ {static} Clone(clip:TimelineClip, sourceTable:IExposedPropertyTable, destTable:IExposedPropertyTable, time:double, newOwner:PlayableAsset) : TimelineClip
+ {static} Clone(parent:PlayableAsset, trackAsset:TrackAsset, sourceTable:IExposedPropertyTable, destTable:IExposedPropertyTable, assetOwner:PlayableAsset) : TrackAsset
+ {static} DuplicateItemsUsingCurrentEditMode(state:WindowState, sourceTable:IExposedPropertyTable, destTable:IExposedPropertyTable, items:ItemsPerTrack, targetParent:TrackAsset, candidateTime:double, undoOperation:string) : IEnumerable<ITimelineItem>
+ {static} DuplicateItemsUsingCurrentEditMode(state:WindowState, sourceTable:IExposedPropertyTable, destTable:IExposedPropertyTable, items:IEnumerable<ItemsPerTrack>, candidateTime:double, undoOperation:string) : IEnumerable<ITimelineItem>
{static} FinalizeInsertItemsUsingCurrentEditMode(state:WindowState, itemsGroups:IList<ItemsPerTrack>, candidateTime:double) : void
{static} DuplicateClips(clips:IEnumerable<TimelineClip>, sourceTable:IExposedPropertyTable, destTable:IExposedPropertyTable, newOwner:PlayableAsset) : TimelineClip[]
{static} DuplicateClip(clip:TimelineClip, sourceTable:IExposedPropertyTable, destTable:IExposedPropertyTable, newOwner:PlayableAsset) : TimelineClip
+ {static} GetCustomDrawer(trackType:Type) : Type
+ {static} HaveSameContainerAsset(assetA:Object, assetB:Object) : bool
+ {static} SaveAnimClipIntoObject(clip:AnimationClip, asset:Object) : void
+ {static} AddRequiredComponent(go:GameObject, asset:TrackAsset) : Component
+ {static} GetTrackCategoryName(trackType:System.Type) : string
+ {static} GetItemCategoryName(itemType:System.Type) : string
+ {static} GetTrackMenuName(trackType:System.Type) : string
+ {static} GetLoopDuration(clip:TimelineClip) : double
+ {static} GetClipAssetEndTime(clip:TimelineClip) : double
+ {static} HasUsableAssetDuration(clip:TimelineClip) : bool
+ {static} GetLoopTimes(clip:TimelineClip) : double[]
+ {static} GetCandidateTime(state:WindowState, mousePosition:Vector2?, trackAssets:TrackAsset[]) : double
+ {static} CreateClipOnTrack(asset:Object, parentTrack:TrackAsset, state:WindowState) : TimelineClip
+ {static} CreateClipOnTrack(asset:Object, parentTrack:TrackAsset, candidateTime:double) : TimelineClip
+ {static} CreateClipOnTrack(playableAssetType:Type, parentTrack:TrackAsset, state:WindowState) : TimelineClip
+ {static} CreateClipOnTrack(playableAssetType:Type, parentTrack:TrackAsset, candidateTime:double) : TimelineClip
+ {static} CreateClipOnTrack(asset:Object, parentTrack:TrackAsset, candidateTime:double, state:WindowState) : TimelineClip
+ {static} CreateClipOnTrack(playableAssetType:Type, assignableObject:Object, parentTrack:TrackAsset, candidateTime:double) : TimelineClip
+ {static} CreateClipOnTrack(playableAssetType:Type, assignableObject:Object, parentTrack:TrackAsset, candidateTime:double, state:WindowState) : TimelineClip
+ {static} CreateClipOnTrackFromPlayableAsset(asset:IPlayableAsset, parentTrack:TrackAsset, candidateTime:double) : TimelineClip
+ {static} CreateClipsFromObjects(assetType:Type, targetTrack:TrackAsset, candidateTime:double, objects:IEnumerable<Object>) : void
+ {static} CreateMarkersFromObjects(assetType:Type, targetTrack:TrackAsset, candidateTime:double, objects:IEnumerable<Object>) : void
+ {static} CreateMarkerOnTrack(markerType:Type, assignableObject:Object, parentTrack:TrackAsset, candidateTime:double) : IMarker
+ {static} CreateClipsFromTypes(assetTypes:IEnumerable<Type>, targetTrack:TrackAsset, candidateTime:double) : void
+ {static} FrameItems(state:WindowState, items:IEnumerable<ITimelineItem>) : void
+ {static} Frame(state:WindowState, start:double, end:double) : void
+ {static} RangeSelect(totalCollection:IList<T>, currentSelection:IList<T>, clickedItem:T, selector:Action<T>, remover:Action<T>) : void
+ {static} Bind(track:TrackAsset, obj:Object, director:PlayableDirector) : void
{static} AddClipOnTrack(newClip:TimelineClip, parentTrack:TrackAsset, candidateTime:double, assignableObject:Object, state:WindowState) : void
+ {static} CreateTrack(asset:TimelineAsset, type:Type, parent:TrackAsset, name:string) : TrackAsset
+ {static} CreateTrack(type:Type, parent:TrackAsset, name:string) : TrackAsset
+ {static} CreateTrack(asset:TimelineAsset, parent:TrackAsset, name:string) : T
+ {static} CreateTrack(parent:TrackAsset, name:string) : T
}
class "List`1"<T> {
}
TimelineHelpers --> "s_SubClassesOfTrackDrawer<Type>" "List`1"
@enduml
|
94873ee1127765a1d501bf0aec2b91d2dc29fc54 | 9c7b1a7305f28f5f44d2bcf887119307baf23436 | /The Game - Le DUEL.plantuml | 1db142173528d970b99e1ac2bbed2078d20d6e9b | [] | no_license | KAWNINJ6/TheGame-LeDuel | 8ccf8733b2d7d00f58e71277c3178692f42398b6 | d6a55af1eaf663a3b20ede60c47a4945cdaa0798 | refs/heads/master | 2023-03-21T13:12:57.650731 | 2021-03-12T12:17:45 | 2021-03-12T12:17:45 | 342,700,544 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,000 | plantuml | @startuml
title __THE GAME - LE DUEL's Class Diagram__\n
namespace appli {
class appli.Application {
}
}
namespace appli {
namespace Composants {
class appli.Composants.Base {
}
}
}
namespace appli {
namespace Composants {
class appli.Composants.Cartes {
}
}
}
namespace appli {
namespace Composants {
class appli.Composants.Main {
}
}
}
namespace appli {
class appli.Joueur {
}
}
namespace appli {
enum NomJoueur {
}
}
namespace appli {
class appli.Table {
}
}
appli.Joueur o-- appli.Composants.Base : base
appli.Joueur o-- appli.Composants.Main : main
appli.Joueur o-- appli.NomJoueur : nom
appli.Joueur o-- appli.Composants.Cartes : pioche
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
|
f8f7016d3c56f644d34e54ac05c5e050659942a0 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/PaymentUpdateAction.puml | 26c09f5bc04a20411c19c56dd025635caf357f9f | [] | 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 | 6,815 | 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 PaymentUpdateAction [[PaymentUpdateAction.svg]] {
action: String
}
interface PaymentAddInterfaceInteractionAction [[PaymentAddInterfaceInteractionAction.svg]] {
action: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface PaymentAddTransactionAction [[PaymentAddTransactionAction.svg]] {
action: String
transaction: [[TransactionDraft.svg TransactionDraft]]
}
interface PaymentChangeAmountPlannedAction [[PaymentChangeAmountPlannedAction.svg]] {
action: String
amount: [[Money.svg Money]]
}
interface PaymentChangeTransactionInteractionIdAction [[PaymentChangeTransactionInteractionIdAction.svg]] {
action: String
transactionId: String
interactionId: String
}
interface PaymentChangeTransactionStateAction [[PaymentChangeTransactionStateAction.svg]] {
action: String
transactionId: String
state: [[TransactionState.svg TransactionState]]
}
interface PaymentChangeTransactionTimestampAction [[PaymentChangeTransactionTimestampAction.svg]] {
action: String
transactionId: String
timestamp: DateTime
}
interface PaymentSetAmountPaidAction [[PaymentSetAmountPaidAction.svg]] {
action: String
amount: [[Money.svg Money]]
}
interface PaymentSetAmountRefundedAction [[PaymentSetAmountRefundedAction.svg]] {
action: String
amount: [[Money.svg Money]]
}
interface PaymentSetAnonymousIdAction [[PaymentSetAnonymousIdAction.svg]] {
action: String
anonymousId: String
}
interface PaymentSetAuthorizationAction [[PaymentSetAuthorizationAction.svg]] {
action: String
amount: [[Money.svg Money]]
until: DateTime
}
interface PaymentSetCustomFieldAction [[PaymentSetCustomFieldAction.svg]] {
action: String
name: String
value: [[Object.svg Object]]
}
interface PaymentSetCustomTypeAction [[PaymentSetCustomTypeAction.svg]] {
action: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface PaymentSetCustomerAction [[PaymentSetCustomerAction.svg]] {
action: String
customer: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
}
interface PaymentSetExternalIdAction [[PaymentSetExternalIdAction.svg]] {
action: String
externalId: String
}
interface PaymentSetInterfaceIdAction [[PaymentSetInterfaceIdAction.svg]] {
action: String
interfaceId: String
}
interface PaymentSetKeyAction [[PaymentSetKeyAction.svg]] {
action: String
key: String
}
interface PaymentSetMethodInfoInterfaceAction [[PaymentSetMethodInfoInterfaceAction.svg]] {
action: String
interface: String
}
interface PaymentSetMethodInfoMethodAction [[PaymentSetMethodInfoMethodAction.svg]] {
action: String
method: String
}
interface PaymentSetMethodInfoNameAction [[PaymentSetMethodInfoNameAction.svg]] {
action: String
name: [[LocalizedString.svg LocalizedString]]
}
interface PaymentSetStatusInterfaceCodeAction [[PaymentSetStatusInterfaceCodeAction.svg]] {
action: String
interfaceCode: String
}
interface PaymentSetStatusInterfaceTextAction [[PaymentSetStatusInterfaceTextAction.svg]] {
action: String
interfaceText: String
}
interface PaymentSetTransactionCustomFieldAction [[PaymentSetTransactionCustomFieldAction.svg]] {
action: String
transactionId: String
name: String
value: [[Object.svg Object]]
}
interface PaymentSetTransactionCustomTypeAction [[PaymentSetTransactionCustomTypeAction.svg]] {
action: String
transactionId: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface PaymentTransitionStateAction [[PaymentTransitionStateAction.svg]] {
action: String
state: [[StateResourceIdentifier.svg StateResourceIdentifier]]
force: Boolean
}
interface PaymentUpdate [[PaymentUpdate.svg]] {
version: Long
actions: [[PaymentUpdateAction.svg List<PaymentUpdateAction>]]
}
PaymentUpdateAction --> PaymentAddInterfaceInteractionAction #blue;text:blue : "action : addInterfaceInteraction"
PaymentUpdateAction --> PaymentAddTransactionAction #blue;text:blue : "action : addTransaction"
PaymentUpdateAction --> PaymentChangeAmountPlannedAction #blue;text:blue : "action : changeAmountPlanned"
PaymentUpdateAction --> PaymentChangeTransactionInteractionIdAction #blue;text:blue : "action : changeTransactionInteractionId"
PaymentUpdateAction --> PaymentChangeTransactionStateAction #blue;text:blue : "action : changeTransactionState"
PaymentUpdateAction --> PaymentChangeTransactionTimestampAction #blue;text:blue : "action : changeTransactionTimestamp"
PaymentUpdateAction --> PaymentSetAmountPaidAction #blue;text:blue : "action : setAmountPaid"
PaymentUpdateAction --> PaymentSetAmountRefundedAction #blue;text:blue : "action : setAmountRefunded"
PaymentUpdateAction --> PaymentSetAnonymousIdAction #blue;text:blue : "action : setAnonymousId"
PaymentUpdateAction --> PaymentSetAuthorizationAction #blue;text:blue : "action : setAuthorization"
PaymentUpdateAction --> PaymentSetCustomFieldAction #blue;text:blue : "action : setCustomField"
PaymentUpdateAction --> PaymentSetCustomTypeAction #blue;text:blue : "action : setCustomType"
PaymentUpdateAction --> PaymentSetCustomerAction #blue;text:blue : "action : setCustomer"
PaymentUpdateAction --> PaymentSetExternalIdAction #blue;text:blue : "action : setExternalId"
PaymentUpdateAction --> PaymentSetInterfaceIdAction #blue;text:blue : "action : setInterfaceId"
PaymentUpdateAction --> PaymentSetKeyAction #blue;text:blue : "action : setKey"
PaymentUpdateAction --> PaymentSetMethodInfoInterfaceAction #blue;text:blue : "action : setMethodInfoInterface"
PaymentUpdateAction --> PaymentSetMethodInfoMethodAction #blue;text:blue : "action : setMethodInfoMethod"
PaymentUpdateAction --> PaymentSetMethodInfoNameAction #blue;text:blue : "action : setMethodInfoName"
PaymentUpdateAction --> PaymentSetStatusInterfaceCodeAction #blue;text:blue : "action : setStatusInterfaceCode"
PaymentUpdateAction --> PaymentSetStatusInterfaceTextAction #blue;text:blue : "action : setStatusInterfaceText"
PaymentUpdateAction --> PaymentSetTransactionCustomFieldAction #blue;text:blue : "action : setTransactionCustomField"
PaymentUpdateAction --> PaymentSetTransactionCustomTypeAction #blue;text:blue : "action : setTransactionCustomType"
PaymentUpdateAction --> PaymentTransitionStateAction #blue;text:blue : "action : transitionState"
PaymentUpdateAction --> PaymentUpdate #green;text:green : "actions"
@enduml
|
6c881825780afd3369d08f6e65c33386411164a8 | b40e9af07f16d7e6a1a889f9ca240f0020401bf3 | /docs/uml/command.puml | 0add6b3070d658ddde2d8c17187a9928cf36ad92 | [] | no_license | TsarkFC/lpoo-proj | 645feb7a07ee42f063cb319c965594f99bef3c91 | 3b821942d819c3e5bd01d5a8e13de357b823ead2 | refs/heads/master | 2023-01-10T03:47:05.804997 | 2020-05-31T22:46:08 | 2020-05-31T22:46:08 | 312,023,208 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,130 | puml | @startuml strategy
interface Command {
void execute()
}
class CommandParser {
+ Command parse()
}
class ArenaController{
+ void start()
}
class DoNothing{
+ void execute()
}
class DrawCardCommand{
+ void execute()
}
class InterStageHandler{
+ void execute()
}
class PlayEnemyTurn{
+ void execute()
}
class PlaySpecialCardCommand{
+ void execute()
}
class QuitCommand{
+ void execute()
}
class SelectCard{
+ void execute()
}
class SkipTurnCommand{
+ void execute()
}
CommandParser <-right-o ArenaController
DoNothing -down-|> Command
DrawCardCommand -down-|> Command
InterStageHandler -down-|> Command
PlayEnemyTurn -down-|> Command
PlaySpecialCardCommand -down-|> Command
QuitCommand -down-|> Command
SelectCard -down-|> Command
SkipTurnCommand -down-|> Command
DoNothing -up-> CommandParser
DrawCardCommand -up-> CommandParser
InterStageHandler -up-> CommandParser
PlayEnemyTurn -up-> CommandParser
PlaySpecialCardCommand -up-> CommandParser
QuitCommand -up-> CommandParser
SelectCard -up-> CommandParser
SkipTurnCommand -up-> CommandParser
ArenaController --> Command
@enduml |
c216265959e9715cbb370c62262a6f045d3d6af4 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderSetReturnItemCustomTypeAction.puml | b7416b2f8bf8996a2b05b514b8c25f0b7ef0e98c | [] | 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 | 602 | 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 OrderSetReturnItemCustomTypeAction [[OrderSetReturnItemCustomTypeAction.svg]] extends OrderUpdateAction {
action: String
returnItemId: String
returnItemKey: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface OrderUpdateAction [[OrderUpdateAction.svg]] {
action: String
}
@enduml
|
be4ad2d04367db08920531d4a4fcf66571748607 | 13d56400eafa1288d28854a9b7a61f9f33b76223 | /documents/Factory.puml | a2303bde78b17cbe09784ee0bf9f249a1b14367d | [] | no_license | itx-man/PracticeHome | 2a6ca55fd2006256b530ef967f3b387e00e0623e | c82415e64ad6ea7328865ef575c3932fb1f22d42 | refs/heads/master | 2021-06-20T13:12:16.633236 | 2017-03-28T07:47:13 | 2017-03-28T07:47:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 375 | puml | @startuml
abstract class AbstractHumanFactory {
+Human createHuman(Class c)
}
interface Human {
+void getColor()
+void talk()
}
class NvWa {
}
class HumanFactory {
}
HumanFactory ..|> AbstractHumanFactory
AbstractHumanFactory ..> Human
NvWa --> AbstractHumanFactory
NvWa --> Human
BlackHuman ..|> Human
YellowHuman ..|> Human
WhiteHuman ..|> Human
@enduml |
9c5e8c731ba1babd87ff6b07a84fb7f4fdf32a59 | 1ac0a5cf0a74b207d7cdac817f81b15f452f494c | /Livrables/Diagrammes/Composants/UML/Table.plantuml | 2e33d025a065242b3c190d79af3ed88efe647e8f | [
"MIT"
] | permissive | HugoLA1/Projet-programmation-systeme | 1f143b71a52871ca3536b30d78592c29f19aae97 | 5262fa64cd862283078346b4f8a2aa69246d47d6 | refs/heads/master | 2020-06-01T10:33:49.688170 | 2018-12-13T13:22:55 | 2018-12-13T13:22:55 | 190,750,176 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 511 | plantuml | @startuml
class Table {
+ places : int <<get>> <<set>>
+ posX : int <<get>> <<set>>
+ posY : int <<get>> <<set>>
+ menus : int <<get>> <<set>>
+ bread : int <<get>> <<set>>
+ water : int <<get>> <<set>>
+ groupClient : GroupClient <<get>> <<set>>
+ clientsSprite : List<Sprite>
+ travelList : List<Point>
+ supervisorTravelList : List<Point>
+ returnCounterList : List<Point>
+ returnSquareList : List<Point>
+ Table(posX:int, posY:int, places:int)
}
@enduml
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.