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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f0f8494147c2de26f4f8677b62cb8e5b628a9f79 | 7515627b5ea78cd60ca7ddba4290d40a549c6014 | /base/007/diagrama.puml | 462dd63deb033e738b6a387b11d0db9118ff51e5 | [] | no_license | Maria-Eduarda-080902/arcade | 107e3df85f0f92e076b198cec1ed333b286492fe | 322278aae760b373ecf3975e6df7bcf31dc58935 | refs/heads/master | 2023-08-27T09:42:58.484054 | 2021-11-01T18:34:22 | 2021-11-01T18:34:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,341 | puml | @startuml
package com.qxcode {
~class Conta {
- financas : Financas
- id : int
__
+ Conta(id : int)
+ creditar(label : Label, value : int) : boolean
+ extornar(indice : int) : boolean
+ sacar(value : int) : boolean
+ tarifar(value : int) : boolean
+ toString() : String
__
~ getFinancas() : Financas
}
~class Financas {
- extrato : List<Operacao>
- nextId : int
- saldo : int
__
+ Financas()
+ addOperacao(label : Label, value : int)
+ getExtrato(qtdOp : int) : List<Operacao>
+ toString() : String
__
~ getExtrato() : List<Operacao>
~ getSaldo() : int
}
~enum Label {
+ abertura {static}
+ deposito {static}
+ extorno {static}
+ saque {static}
+ tarifa {static}
- name : String
__
+ toString() : String
__
~ getName() : String
}
~class Operacao {
- indice : int
- label : Label
- saldo : int
- value : int
__
+ Operacao(indice : int, label : Label, value : int, saldo : int)
+ pad(string : String, length : int) : String {static}
+ toString() : String
__
~ getIndice() : int
~ getLabel() : Label
~ getSaldo() : int
~ getValue() : int
}
}
Financas --> "-extrato" Operacao
Conta --> "-financas" Financas
Operacao --> "-label" Label
@enduml |
3b3b9a8b5cb0361a07f6a7322c3f69100208745d | 438418cd05a82943f97001f8045ed447848aaee8 | /comiot/Diagrams/DProtocol.puml | 880eaa471784dc24b2a5b78e2704c3e1be8aa3ed | [] | no_license | hectorgastaminza/comiot | 5b2ace3d2640566470cb8f4cde1cd8ef31693e93 | 450fb500a23336e3d98e31389b780b9ff04a6220 | refs/heads/master | 2020-03-25T01:27:45.979382 | 2018-09-12T04:04:52 | 2018-09-12T04:04:52 | 143,239,210 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 866 | puml | @startuml
class Device {
private int id;
private eDeviceStates state;
private int value;
void setState(eDeviceStates)
boolean setValue(int value)
public void setId(int id)
}
class DeviceCommand {
private int device;
private eDeviceCommands cmd;
private int value;
DeviceCommand[] createDeviceCommand(String)
}
class ProtocolCommand {
private ProtocolSegment[] segments;
String[] extractCommands(ProtocolCommand, String)
}
class ProtocolSegment {
private String id;
private String value;
boolean isContained(String)
boolean extractValue(String)
}
class DeviceCommandDispatcher{
boolean processCommand(Device, DeviceCommand)
}
enum eDeviceCommands{
}
DeviceCommandDispatcher -down- Device
DeviceCommand -left- DeviceCommandDispatcher
DeviceCommand o-right- ProtocolCommand
DeviceCommand o-down- eDeviceCommands
ProtocolCommand *-right- ProtocolSegment
@enduml |
3ea52d24c0ac7293e13ba7ec51ab65c72504b71e | c8921fe77a5927904ac3c04bfd080851403dab94 | /uml/uml/戦場.puml | 49335c514b02d1b6c3bd9b28e946defc401c5103 | [] | no_license | turanukimaru/fehs | cc06f5a3d007a2633373d09281304571e132748b | 8764ad4521c7a0f66a911578b536f9be4e598fdb | refs/heads/master | 2021-06-03T05:53:52.465995 | 2020-04-19T18:59:06 | 2020-04-19T18:59:06 | 111,425,822 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 181 | puml | @startuml
class "戦場" as Entity {
}
class "升目" as Square {
}
class "英雄" as Hero {
}
Entity o--> "n" Hero
Entity o--> "6x7" Square
Hero "0..1" <-- "1" Square
@enduml |
f6ab262ca32ab020bc4c96a35a27b7506e6eefe9 | 270cd06dd55cfb7b2c7a995f36948ed0c59ef300 | /diagrammes/src/UML.classes.plantuml | d617cdb720a7e92e434812c7bf26edabd90f8bbb | [] | no_license | sjaulin/blog | a72f3b883367df073c49f73315b5cf6e140a5f96 | e6150266790c6e63b86219656fd59b6ac16fd3b5 | refs/heads/master | 2023-02-12T14:40:11.671748 | 2021-01-06T19:38:06 | 2021-01-06T19:38:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 393 | plantuml | @startuml
left to right direction
title Classes
class User {
pseudo
password
createdDate
roleId
}
class Article {
title
teaser
content
author
createdDate
updatedDate
top
}
class Comment {
author
content
createdDate
published
flag
}
User "1" --- "0..*" Article
User "1" --- "0..*" Comment
Article "1" --- "0..*" Comment
@enduml |
5209efca03c94b590a4bdcbffc6c884bc024d6b8 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/InvalidJsonInputError.puml | 047182f05cfae50a8c044e5e1d69d66f8abf1349 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 462 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface InvalidJsonInputError [[InvalidJsonInputError.svg]] extends ErrorObject {
code: String
message: String
detailedErrorMessage: String
}
interface ErrorObject [[ErrorObject.svg]] {
code: String
message: String
}
@enduml
|
49466017c119247717e7eadf9a35c0cc6c005aaa | 418493e99ee0c87456da7cb3ef22aa4bcb83be60 | /documentation/software_design/get_transactions/get_transactions_class_diagram.puml | e8e2f79a0dad9849cda788d52a76eb731bc7d7a6 | [] | no_license | AyoubMoujane/SplitPay | 8fc6fe1eb09b5d1566015994b5443e77eb5ec2a4 | 8408108f732a77ed837dfc695e9a712c33b614a7 | refs/heads/main | 2023-02-16T11:40:57.259756 | 2021-01-17T07:26:19 | 2021-01-17T07:26:19 | 311,427,277 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,236 | puml | @startuml get_transactions_class_diagram
package controller <<Folder>> {
class TransactionController {
+getTransactions()
+filterTransactions()
}
}
package facade <<Folder>> {
class TransactionFacade {
+getInstance() : AuthFacade
+getTransactions() : Transaction[]
}
}
package dao <<Folder>> {
abstract class DAOFactory {
#{static}connection : Connection
+createTransactionDao() : TransactionDao
+{static}getConnection() : Connection
}
package mysql <<Folder>> {
class MySqlDAOFactory {}
class MySqlTransactionDAO {}
MySqlDAOFactory .down.> MySqlTransactionDAO : creates
}
package postgres <<Folder>> {
class MyPostGresDAOFactory {}
class MyPostGresTransactionDAO {}
MyPostGresDAOFactory .down.> MyPostGresTransactionDAO : creates
}
interface TransactionDAO {
+getConnection() : Connection
+findAllTransactions(int userId) : Transaction[]
}
DAOFactory <|-- MySqlDAOFactory
DAOFactory <|-- MyPostGresDAOFactory
TransactionDAO <|.. MyPostGresTransactionDAO
TransactionDAO <|.. MySqlTransactionDAO
}
TransactionController .down.> TransactionFacade
TransactionFacade -down-> DAOFactory
TransactionFacade --> TransactionDAO
@enduml |
afa2923c9fe41b7a796b87df6a9c1c83fd85c516 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/PaymentSetStatusInterfaceTextAction.puml | fe5f61a6784ae314363d4a31a6961f08d3dff3c8 | [] | 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 | 471 | 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 PaymentSetStatusInterfaceTextAction [[PaymentSetStatusInterfaceTextAction.svg]] extends PaymentUpdateAction {
action: String
interfaceText: String
}
interface PaymentUpdateAction [[PaymentUpdateAction.svg]] {
action: String
}
@enduml
|
3965109c8fbc06de19cbcbf4e7dde3bd1242e1b9 | afaba8b7f5d826664155b257db77cf4dbf4b8816 | /oop-pattern/ch01/resources/uml.puml | aaf46c55b8434089fbf7b3c2600f40693b0f49bb | [
"MIT"
] | permissive | appkr/pattern | b40b621e52c9b27be01f2a21f2f605a459ac998f | 1e635f7b79cc4b89d2e75455cb14e1572619eb20 | refs/heads/master | 2022-11-02T01:56:18.654766 | 2022-10-12T08:45:58 | 2022-10-12T08:47:36 | 71,896,898 | 11 | 2 | MIT | 2018-11-10T15:05:11 | 2016-10-25T12:55:03 | PHP | UTF-8 | PlantUML | false | false | 879 | puml | @startuml
class App {
+ {static} main()
}
class Application {
}
interface OnClickListener {
+ clicked(eventSource:Component): void
}
class MenuListener implements OnClickListener {}
class ButtonListener implements OnClickListener {}
interface ScreenUI {
+ show(): void
+ handleButton1Click(): void
+ handleButton2Click(): void
}
class Menu1ScreenUI implements ScreenUI {}
class Menu2ScreenUI implements ScreenUI {}
class Menu3ScreenUI implements ScreenUI {}
interface Component {
+ getId(): String
}
class Menu implements Component {}
class Button implements Component {}
App -down-> Application: <<create, call>>
App -down-> OnClickListener: <<call>>
'App -down-> Menu: <<create>>
'App -down-> Button: <<create>>
Application -> OnClickListener: <<has>>
MenuListener -down-> ScreenUI
ButtonListener -down-> ScreenUI
OnClickListener .> Component
@enduml
|
f51dd8044a259334d80d3a32190c753a54befe9e | 6f37b53d0d3f19b92c866a424ae2b76627362968 | /doc/uml/trait_hierarchy.plantuml | 9c6e0017a2fc3d133c1ff592cd76070f220aa4d6 | [
"MIT"
] | permissive | ramsayleung/rspotify | 84082df217805628494a7df70c8c35407015459f | eded9449222e3145365e0c12b6eefd50a6d06be8 | refs/heads/master | 2023-08-18T00:23:05.415968 | 2023-08-16T16:44:31 | 2023-08-16T16:44:31 | 117,242,846 | 497 | 137 | MIT | 2023-09-12T17:01:36 | 2018-01-12T13:13:53 | Rust | UTF-8 | PlantUML | false | false | 1,914 | plantuml | @startuml
title Trait Hierarchy
abstract class BaseClient {
<color:green>abstract</color> {abstract} &Config get_config()
<color:green>abstract</color> {abstract} &HttpClient get_http()
<color:green>abstract</color> {abstract} Arc<Mutex<Option<Token>>> get_token()
<color:green>abstract</color> {abstract} &Credentials get_creds()
<color:green>abstract</color> {abstract} ClientResult<Option<Token>> refetch_token()
---
ClientResult<()> auto_reauth()
ClientResult<()> refresh_token()
String api_url()
String auth_url()
ClientResult<Headers> auth_headers()
ClientResult<()> write_token_cache()
ClientResult<Token> fetch_access_token()
}
abstract class OAuthClient extends BaseClient{
<color:green>abstract</color> {abstract} &OAuth get_oauth()
<color:green>abstract</color> {abstract} ClientResult<()> request_token()
---
Option<Token> read_token_cache()
}
class AuthCodeSpotify implements OAuthClient{
&Config get_config()
&HttpClient get_http()
RwLockReadGuard<Option<Token>> get_token()
RwLockWriteGuard<Option<Token>> get_token_mut()
&Credentials get_creds()
ClientResult<Option<Token>> refetch_token()
---
&OAuth get_oauth()
ClientResult<()> request_token()
}
class AuthCodePkceSpotify implements OAuthClient{
&Config get_config()
&HttpClient get_http()
RwLockReadGuard<Option<Token>> get_token()
RwLockWriteGuard<Option<Token>> get_token_mut()
&Credentials get_creds()
ClientResult<Option<Token>> refetch_token()
---
&OAuth get_oauth()
ClientResult<()> request_token()
}
class ClientCredsSpotify implements BaseClient{
&Config get_config()
&HttpClient get_http()
RwLockReadGuard<Option<Token>> get_token()
RwLockWriteGuard<Option<Token>> get_token_mut()
&Credentials get_creds()
ClientResult<Option<Token>> refetch_token()
---
}
@enduml
|
cfca2eb3f91c831f24edf7cc5009a8317731a690 | b038203821d22f0ae9db9697aaf5b41b9f77a40d | /src-gen/serviceSystem_BC_MedicalServiceProvider_MedicalServiceProviderContext.puml | f261745dc92edefb4d0a492a27c091fb2fad57bb | [] | no_license | NormanBaechtold/ServiceSystem | 5b9ad5f8bf1860154b70f79f0f33d6fe17cac35a | ba125d9cb21cec6a894cef3936cce7dcbc21b5c9 | refs/heads/master | 2023-08-20T23:35:47.215567 | 2021-10-06T09:08:54 | 2021-10-06T09:08:54 | 394,977,218 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,004 | puml | @startuml
skinparam componentStyle uml2
package "'MedicalServiceProviderContext' Aggregate" <<Rectangle>> {
class MedicalServiceProviderContext <<(A,#fffab8) Aggregate Root>> {
MedicalServiceProviderChracteristics institutionalData
OrganizationalNeeds patientData
MedicalServiceProviderValueExpectation invoke()
MedicalServiceProviderCustomerJourney provideData()
MedicalServiceProviderCustomerJourney informEngagementDesign()
}
class MedicalServiceProviderChracteristics <<(E,DarkSeaGreen) Entity>> {
String testCenterLocation
String testResults
String patienVaccinationStatus
MedicalServiceProviderContext inform()
}
class OrganizationalNeeds <<(E,DarkSeaGreen) Entity>> {
String patientPersonalData
String patientHealthData
String patientDataDistribution
MedicalServiceProviderContext inform()
}
}
MedicalServiceProviderContext --> MedicalServiceProviderChracteristics : institutionalData
MedicalServiceProviderContext --> OrganizationalNeeds : patientData
@enduml
|
15829ecb7de27653d3cd0c1dbda3bff46e6e9901 | 3c74f15950bd77d3bd52220e9d2972f769e54bc0 | /Diagramme/Klassen/TinyTasksKit/Worker/Preferences/DictionaryPreferenceProvider.puml | e581fb30a882507197a2edb3d3688683d97e4f8e | [] | no_license | Louis9902/Sosse19-SE | eff56539eed3e27e24342341356228ce5de7bd7c | 6c146a6808781acbc6bf4e43157e2294013e65a3 | refs/heads/master | 2020-05-03T20:59:21.361284 | 2019-06-20T16:01:10 | 2019-06-20T16:01:10 | 178,814,946 | 2 | 0 | null | 2019-06-11T15:17:16 | 2019-04-01T08:05:57 | C# | UTF-8 | PlantUML | false | false | 208 | puml | @startuml
class DictionaryPreferenceProvider {
- <<readonly>> preferences : IDictionary
+ DictionaryPreferenceProvider(map:IDictionary)
}
IPreferenceProvider <|.. DictionaryPreferenceProvider
@enduml
|
53c487d7d170f095b6e212210db3176dfaf92c0b | e3d2dc3820fe10e99d72f2c789c545ee340a2943 | /app/src/main/java/com/arno/designmode/factory/AbstractFactory.puml | f84820565c646221a2603fa23b6008093a4a3c8b | [] | no_license | moomogn/DesignMode | 856482723be204f6ebcee8e69bb7c476fd2f9ee5 | de2889d19d7f8414d7acbcc98696cdb062935aa8 | refs/heads/master | 2021-08-28T11:58:23.945179 | 2017-12-12T05:52:41 | 2017-12-12T05:52:41 | 113,949,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 484 | puml | @startuml
class LenovoComputerFactory
class AcerComputerFactory
class LenovoComputer
class AcerComputer
LenovoComputerFactory .> IComputerFactory
LenovoComputerFactory --|> LenovoComputer
LenovoComputer .> IComputer
IComputerFactory <. AcerComputerFactory
AcerComputerFactory --|> AcerComputer
IComputer <. AcerComputer
interface IComputerFactory{
IComputer createComputerA()
IComputer createComputerB()
}
interface IComputer{
void work()
void study()
}
@enduml |
b3b5552b08333fe8b377a0da9374854ea3fa9468 | 6327621afec93f205a551a36197a214bd1842fd5 | /plantUML/postalCode.pulm | 077ddafe593a13b7ec21e57c4433958a72857b53 | [] | no_license | MiguelAngelCB/Mobile-Store | 2a78a02015f2e7eb33c8f205a4c106c74d1ccbbc | 8fa14a7cdf4a212fa0b97bcbe16e9f2c1b941d81 | refs/heads/master | 2023-02-27T04:36:06.469868 | 2021-02-02T21:46:30 | 2021-02-02T21:46:30 | 335,432,203 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 732 | pulm | @startuml
object FactoryTag{
}
object Index{
}
object FactoryFrame{
divLabelInput()
}
object FactoryDataControl{
cp()
}
object ViewClient{
register()
}
object ManagerFunction{
validations()
}
object IndexedDB{
CreateBBDDpostalCode()
getCity(cp)
}
class GetPostalCodeController{
servlet(post,get)
}
class CallerPostalCode{
}
object MySql{
GetCpExtremadura()
}
FactoryFrame *-- FactoryTag
FactoryDataControl *-- FactoryFrame
ViewClient *-- FactoryDataControl
Index o-- ManagerFunction
Index o-- ViewClient
ManagerFunction -- IndexedDB : getCp
Index o--IndexedDB : cpBBDD
IndexedDB *-- GetPostalCodeController : /getcpExtremadura
GetPostalCodeController *-- CallerPostalCode
CallerPostalCode -- MySql
@enduml |
f7b532adeef768459c8c20d793feb320a654c9c8 | 2bc551f9c2ecb57ec0cb93ad18d3ce0bafbddb34 | /设计模式/设计模式尚硅谷/designpatternlearning/src/main/java/tk/designpattern/state/state.puml | 7cb55c5c951e5ba5d53bea41f981830973d09590 | [] | no_license | YiboXu/JavaLearning | c42091d6ca115826c00aad2565d9d0f29b1f5f68 | 97b4769ebbe096e0ab07acb6889fb177e2ca5abe | refs/heads/master | 2022-10-27T23:47:54.637565 | 2020-06-16T09:12:09 | 2020-06-16T09:12:09 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 837 | puml | @startuml
class Context{
- State state;
}
abstract class State{
+ void pay(Context context);
+ void roll(Context context);
+ void getGift(Context context);
}
class ReadyForPay extends State{
+ void pay(Context context);
+ void roll(Context context);
+ void getGift(Context context);
}
class ReadyForRoll extends State{
+ void pay(Context context);
+ void roll(Context context);
+ void getGift(Context context);
}
class ReadyForGetGift extends State{
+ void pay(Context context);
+ void roll(Context context);
+ void getGift(Context context);
}
class NoMoney extends State{
+ void pay(Context context);
+ void roll(Context context);
+ void getGift(Context context);
}
class NoGift extends State{
+ void pay(Context context);
+ void roll(Context context);
+ void getGift(Context context);
}
Context o-- State
@enduml |
fc9fe5c84c9cd38bc19e862e69ec992942a43d22 | 1cf4490d48f50687a8f036033c37d76fec39cd2b | /src/main/java/global/skymind/training/intermediate/oop/ex02/ex02.plantuml | af8cd8257906a45ec6c444e188d6ffee7a7324f6 | [
"Apache-2.0"
] | permissive | muame-amr/java-traininglabs | 987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83 | a93268f60e6a8491b1d156fae183a108ff0d9243 | refs/heads/main | 2023-08-06T10:04:57.996593 | 2021-09-28T11:21:00 | 2021-09-28T11:21:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 414 | plantuml | @startuml
title __EX02's Class Diagram__\n
namespace global.skymind {
namespace training.intermediate.oop.ex02 {
class global.skymind.training.intermediate.oop.ex02.BankAccount {
}
}
}
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
|
08fb7e356124c62f773d652754fe8944d72a7bb1 | c2b6bfee8da36cc39de688e146ba107b74218b12 | /plantuml/objectmodel/place.plantuml | f8be2bcf670e50389fbc1da60a439cbd627f878a | [
"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 | 513 | plantuml | @startuml
class Place {
String name
String stationId
+Coordinates coordinates
Object extraInfo
}
Place -{ StopReference : stopReference >
Place -- "0..1" Address : physicalAddress >
class StopReference {
+String type
+String id
+Country country
}
class Address {
+String streetAddress
String street
Integer houseNumber
String houseNumberAddition
String addressAdditionalInfo
+String areaReference
String city
String province
String state
String postalCode
Country country
}
@enduml
|
a9e473ea6887fc90100194e57bd7ff6d72ec9147 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyShoppingListSetTextLineItemCustomTypeAction.puml | 5eb8d2888fa8b2995c92e43955f2d02a745da758 | [] | 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 | 655 | 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 MyShoppingListSetTextLineItemCustomTypeAction [[MyShoppingListSetTextLineItemCustomTypeAction.svg]] extends MyShoppingListUpdateAction {
action: String
textLineItemId: String
textLineItemKey: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface MyShoppingListUpdateAction [[MyShoppingListUpdateAction.svg]] {
action: String
}
@enduml
|
8753bb9885a473a0c0459d15095b7c9ff76096e9 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLGeneralError.puml | d8cc96e9592666481864d5a963229b1757cdc2ed | [] | 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 | 406 | 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 GraphQLGeneralError [[GraphQLGeneralError.svg]] extends GraphQLErrorObject {
code: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
|
75a901cccd7ff7b16a4169dd4b1dcccb80989f57 | 850df42c7544ac83b23b4ad25e86fa2c22ec2f61 | /src/main/java/org/yyb/decorator/CoffeeBar.puml | 6abac17aeb8e622e62515966e075aa8a97f49143 | [
"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 | 556 | puml | @startuml
abstract class Drink {
+ des: String
+ price: float
}
class Coffee {
}
class Decorator {
}
Drink <|-- Coffee
Drink <|-- Decorator
class ShortBlack {
}
class LongBlack {
}
class Espresso {
}
Coffee <|-- ShortBlack
Coffee <|-- LongBlack
Coffee <|-- Espresso
class Milk {
}
class Chocolate {
}
class Soy {
}
Decorator <|-- Milk
Decorator <|-- Chocolate
Decorator <|-- Soy
CoffeeBar ..> Drink
CoffeeBar ..> ShortBlack
CoffeeBar ..> LongBlack
CoffeeBar ..> Espresso
CoffeeBar ..> Milk
CoffeeBar ..> Chocolate
CoffeeBar ..> Soy
@enduml |
957f5916a2adb4e0b5aeaa9d45c7b02efbab5749 | 7b13715b0b972ea52b88ad8097cc8cb7b41f2bb1 | /Rendu/doc/javadoc/ch/tofind/commusica/utils/Network.puml | 093961295e9a790ace00b158370f3d8adbbb7e85 | [] | no_license | heig-vd-pro2017/projet | 8f6e9bb5cc75baaf809eda87b31d7de8c632f713 | db1e7ff720076eea9efe2c4fc8bcad97d80ca2f1 | refs/heads/master | 2021-01-16T23:21:13.159819 | 2017-05-29T17:32:48 | 2017-05-29T17:32:48 | 82,906,602 | 5 | 2 | null | 2017-04-02T16:05:43 | 2017-02-23T08:55:46 | Java | UTF-8 | PlantUML | false | false | 382 | puml | @startuml
class Network {
[[Network.html]]
{static} +configureNetwork(): void
{static} +getMacAddress(InetAddress): byte[]
{static} +getNetworkInterfaces(): ArrayList<NetworkInterface>
{static} +getIPv4Interfaces(): TreeMap<String, InetAddress>
{static} +getInetAddresses(NetworkInterface): ArrayList<InetAddress>
}
@enduml
|
a31f3dc359da1c30957e30ccd8597fa11e78ad0f | 1484f4a4d4c5b4689f8525742d1e4cda8fdb6d3a | /docs/diagrams/saver/SaveManagerDiagram.puml | 3a6a2e668edf8fdea665ecf40f4116e85ae16c6f | [] | no_license | AY2021S1-CS2113-T16-1/tp | 8abd1e1798a8ecc64b4b3ae28dd5da618714b972 | 6ef0845c809addb46fef872101ef528780571b5d | refs/heads/master | 2023-01-13T17:13:34.579399 | 2020-11-16T05:03:49 | 2020-11-16T05:03:49 | 300,199,426 | 0 | 1 | null | 2020-11-16T05:03:50 | 2020-10-01T08:10:30 | Java | UTF-8 | PlantUML | false | false | 1,266 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
class "saveManager" {
+fullPath: String
+dirPath: String
-prompt: String
-menu: Boolean
+main()
+addSave()
+loadSave()
+clear()
+deleteSave()
-checkValidity(): Boolean
-helpmenu()
-status()
-helpMsg()
-resetSave()
-listSaves()
}
class "{abstract} \n saveHandler" {
fullPath: String
dirPath: String
+buildFile()
+putString()
+takeString()
+getSaveString()
}
class "<<Singleton>> \n manualTrackerSaver" {
-saver: manualTrackerSaver
+getInstance(): manualTrackerSaver
+clear()
+save()
+load()
}
class "<<Singleton>> \n goalTrackerSaver" {
-saver: goalTrackerSaver
+getInstance(): goalTrackerSaver
+clear()
+save()
+load()
}
class "<<Singleton>> \n autoTrackerSaver" {
-saver: autoTrackerSaver
+getInstance(): autoTrackerSaver
+clear()
+save()
+load()
}
"{abstract} \n saveHandler" <|-- "<<Singleton>> \n manualTrackerSaver"
"{abstract} \n saveHandler" <|-- "<<Singleton>> \n goalTrackerSaver"
"{abstract} \n saveHandler" <|-- "<<Singleton>> \n autoTrackerSaver"
"saveManager" --> "0..1" "<<Singleton>> \n manualTrackerSaver" : File Operations
"saveManager" --> "0..1" "<<Singleton>> \n goalTrackerSaver" : File Operations
"saveManager" --> "0..1" "<<Singleton>> \n autoTrackerSaver" : File Operations
@enduml |
c61b76ac8c96f8289f78689cc00357e5c309bd98 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.puml | 943951080ea647550efb2caeff5f9dad4134cecc | [] | 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 | 229 | puml | @startuml
class EnumeratorStepHelper {
+ {static} SetEnumeratorPC(pc:int) : void
+ {static} GetEnumeratorPC(enumerator:IEnumerator) : int
+ {static} UpdateEnumeratorPcIfNeeded(enumerator:IEnumerator) : bool
}
@enduml
|
ae8363752c60f9c7a92ebcfd8d750ec946b169ea | 82025873b24800efbd8e12a09a1442d87e4ae2cf | /src/main/java/com/gary/factory/simple/Simple.puml | 6da2f7063bd2e90f73f8eadb73261e33a7cea0ed | [] | no_license | iefmg/DesignPattern | 87352af8c84136fa370bc16d6d1f9e47cb87e40d | 9e105da2e1db955f68e00161036f6e200e66e85e | refs/heads/master | 2021-01-21T18:33:12.712390 | 2017-05-24T12:37:29 | 2017-05-24T12:37:29 | 92,054,207 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 260 | puml | @startuml
class Creator{
create(): Iproduct
}
interface IProduct{
method();
}
class ProductA implements IProduct{
method();
}
class ProductB implements IProduct{
method();
}
Creator --> ProductA : create
Creator --> ProductB : create
@enduml |
5156110836e3fa7022f2c34e6f2e1d7a26901cdb | 4dc4799fb33f46f5b42bf1a3f2ebe3e2689a3430 | /src/Pokaimon.puml | 0302d44ee6b730ec6a469ae91919b96b3faa01c7 | [] | no_license | CaulierBenjamin/TD_heritagepokemons | 42dc7a339c68737fd67767f238a57f029f0ea9e8 | 1bc9603d6a34bc184b76e0fd47bc255ab6eaf2c4 | refs/heads/master | 2022-12-17T17:07:28.972836 | 2020-09-16T15:10:08 | 2020-09-16T15:10:08 | 294,963,204 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,086 | puml | @startuml
class Pokemon {
# nom : string
# niveau_energie : double
# poids : double
+ pokemon()
+ pokemon(string pNom ,int pNiveau_Energie , double pPoids)
}
class Insecte {
-nombre_pattes : int
-nombre_ailes : int
-taille : double
+ insecte(string pNom ,int pNiveau_Energie , double pPoids , int pNombre_pattes , int pNombre_ailes , double taille)
+ vitessesol() void
+ vitesseair() void
}
class Addict{
-nombre_pattes : int
-niveau_jeu : int
-taille : double
+ addict(string pNom ,int pNiveau_Energie , double pPoids , int pNombre_pattes , int pNiveau_jeu , double taille)
+ vitessesol() void
}
class Feu{
-nombre_ailes : int
-nombre_boule_feu : double
-temperature_feu : double
-taille : double
+ feu(string pNom ,int pNiveau_Energie , double pPoids , int pNombre_ailes , double pNombre_boule_feu , double pTemperature_feu, double taille)
+ vitesseair() void
}
class Mer{
-nombre_nageoir : int
+Mer(string pNom ,int pNiveau_Energie , double pPoids, int pNomre_nageoir)
+vitesseeau() void;
}
Pokemon <|-- Insecte
Pokemon <|-- Mer
Pokemon <|-- Feu
Pokemon <|-- Addict
@enduml |
fe33f8ca91e2e3f28f4671e41ee9ad3ae2d3250e | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Modules/Mouse/Events/MouseClickEvent.puml | cac05489ec974a9313c1be828334020c6c5b8b9a | [
"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 | 401 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
class MouseClickEvent {
+ HWnd : string <<get>> <<set>>
+ MouseAction : System.Windows.Input.MouseAction <<get>> <<set>>
}
abstract class MouseEvent {
+ MousePosition : System.Windows.Point <<get>> <<set>>
}
abstract class Event
!endsub
MouseEvent <|-- MouseClickEvent
Event <|-- MouseEvent
@enduml
|
b6c99c3a9058c871b7ac0dbe208d4cd74445d32c | 1e3dba3f02025ce0e7ff066565f56eeb516bcea0 | /docs/SprintD/US_5/UC5_MD.puml | ff76c3c967fe895e583279189fdd947a164098f8 | [] | no_license | RuiRioPina/ManyLabs | 1e3f413a08ef6ed2ad35b0326f992fef2808a4c7 | 4ef550952a81c0ce24b47dd85b3062e0c32df05b | refs/heads/master | 2023-06-10T21:37:15.884362 | 2021-06-20T21:44:38 | 2021-06-20T21:44:38 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 975 | puml | @startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Sample {
-barcodeNumber
}
class Company {
-designation
}
class ClinicalAnalysisLaboratory {
-String name
-String adress
-long phoneNumber
-long tin
-TestStore testStore
+getTestStore()
}
class Test {
-nhsCode;
-internalCode;
-client;
-testType;
-sampleCollectionMethod;
-parameterCategory;
-parameter;
-samples
-registrationDate;
-samplesCollectionDate;
-chemicalAnalysisDate;
-diagnosisDate;
-validationDate;
}
class MedicalLabTechnician {
-employeeID
-organizationRole
-name
-address
-phoneNumber
-eMail
-standardOcupationalClassificationCode
}
Company "1" -- "1..*" ClinicalAnalysisLaboratory : has >
ClinicalAnalysisLaboratory "1" -- "*" Test : has >
MedicalLabTechnician "1..*" -- "1..*" ClinicalAnalysisLaboratory : works for >
Test "1" -- "*" Sample : has >
Sample "1" -- "1" MedicalLabTechnician : created by >
@enduml |
1f078cf1b10500ce868e53d01bf108b07ef516e6 | 151067eb8645ae7df061f7b4268dae0bba47fd63 | /docs/ex41.puml | 1a31c2ddef3df4b83a72b6c95064ed23f4100e59 | [] | no_license | alexvorak/Vorakrajangthiti-cop3330-assignment3 | 50e2ab03043ecb1ddd36e7f53ae9dec0d2fdd0d1 | 8c422521ef284cc40b18c436aac261287d0bb6f9 | refs/heads/master | 2023-08-14T23:14:13.639959 | 2021-10-12T02:23:38 | 2021-10-12T02:23:38 | 416,151,090 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 159 | puml | @startuml
class NameSorter {
+main(String[])
+reader: BufferedReader
+writer: BufferedWriter
-ObjectCounterMethod(): String
-count: int
-str: String
}
@enduml |
00cbd6bce42d28eb95b55af88e7b22f4a590467a | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartRecalculateAction.puml | 5fd99893165f979b62887aca4a8d09785bf84a90 | [] | 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 | 439 | 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 CartRecalculateAction [[CartRecalculateAction.svg]] extends CartUpdateAction {
action: String
updateProductData: Boolean
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
|
948247d8901d301cb4720a77fd3c9d4dd75cb80b | 22d2293b33eb095229e2cc8b77051429a07ebe06 | /docs/uml/StateMachine.puml | 88c4c4e1d9cedfa1b20fa5580dba033119a3454a | [] | no_license | Glitch1258/bright-souls | b0060c2a2fdbb8acda1c4d3e1784704b701890a8 | e10e1744a6164e4fac70d6de5806de355da1314b | refs/heads/main | 2023-08-10T18:53:06.518854 | 2021-09-11T05:31:23 | 2021-09-11T05:31:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 670 | puml | @startuml
title State Machine Class Diagram
class StateMachine {
+IsInState<StateType>() : bool
+SetState<StateType>()
+States : IState[]
+Transitions : StateTransition[]
+CurrentStateTime : float
+CurrentState : IState
}
class StateTransition {
+Source : IState
+Target : IState
+Condition : IStateTransitionCondition
}
interface IState {
+OnStateEnter()
+OnStateUpdate()
+OnStateExit()
}
interface IStateTransitionCondition {
+Validate() : bool
}
StateMachine "1" o-- "n" IState
StateMachine "1" o-- "n" StateTransition
StateTransition "1" o-- "n" IStateTransitionCondition
scale 1.3
hide empty members
@enduml |
c3bfb629fc7b8a95fc6babb9feb6defd4206fec7 | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/order/valid_parentheses/valid_parentheses.plantuml | 9be36e12f278fd408ca9c98b73ef594ef1729603 | [] | 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 | 455 | plantuml | @startuml
title __VALID_PARENTHESES's Class Diagram__\n
namespace cn.shui.order {
namespace valid_parentheses {
class cn.shui.order.valid_parentheses.Solution {
{static} + isValid()
{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
|
fd7af911bb568b14a3a7081e26b53b1f2903ff0b | aff68ebcc42563768b200a9de86989646287b29e | /doc/diagrams/RemoteTableQuery.puml | cdd7f246cbc1d0498caa704467418ca825ac6d24 | [
"MIT"
] | permissive | exasol/dynamodb-virtual-schema | fc17be7abb687acaa442d7b7cc363ab76c175c22 | 4910b40e4b6f840b7bc494d045c63056d889be26 | refs/heads/main | 2023-07-06T22:09:56.793653 | 2023-07-04T08:30:51 | 2023-07-04T08:30:51 | 238,997,495 | 1 | 1 | MIT | 2023-07-04T08:30:53 | 2020-02-07T18:31:48 | Java | UTF-8 | PlantUML | false | false | 127 | puml | @startuml
class RemoteTableQuery{
fromTable: TableMapping
selectList: List<ColumnMapping>
selection: QueryPredicate
}
@enduml |
3a89a09d3445b6d0e846f117f190f00320aa8c70 | d617521fbdf8a155b02b2e9fc776a207a8a3347f | /Factory/resources/SimpleFactory.puml | 3287c25ebda152135009dc079c596f7640ab3daf | [] | no_license | jarchen/java-design-pattern | 9963e8fdb12b58466f88438d717370562562796d | a1c43012dc9ee34070608726997a4a533f53c2e3 | refs/heads/master | 2022-12-27T04:34:41.862449 | 2020-07-18T07:43:12 | 2020-07-18T07:43:12 | 279,500,732 | 1 | 0 | null | 2020-10-13T23:40:24 | 2020-07-14T06:22:44 | Java | UTF-8 | PlantUML | false | false | 292 | puml | @startuml
skinparam linetype ortho
title Simple Factory
'scale 1.5
interface Product
together {
class Client
class ProductFactory {
+ {static} getProduct() : Product
}
}
Client -- ProductFactory
Client - Product : use >
ProductFactory - Product : "create" >
@enduml
|
e28082267db3e0fb7bb2f88f8f2bd4cba0142f93 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Core/MORR/Data/Capture/Video/DirectXVideoSample.puml | 6f40ac4b0cfe79aa8f1ffb7999e4d91a3b59a823 | [
"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 | 220 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
class DirectXVideoSample {
+ Surface : IDirect3DSurface <<get>> <<set>>
}
!endsub
VideoSample <|-- DirectXVideoSample
@enduml
|
19a1fc847c10bc4a3d48d3db944a127484bc5517 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/BusinessUnitRemoveAddressAction.puml | e3bd9c2103b2fc6b7a136db66813674772d3ef2f | [] | 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 | 497 | 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 BusinessUnitRemoveAddressAction [[BusinessUnitRemoveAddressAction.svg]] extends BusinessUnitUpdateAction {
action: String
addressId: String
addressKey: String
}
interface BusinessUnitUpdateAction [[BusinessUnitUpdateAction.svg]] {
action: String
}
@enduml
|
7877dcc7582bffd06d86ebc5c35ca274b47c15d3 | 4e2586435708420f782c03c1303da7219890941e | /docs/diagrams/InterfaceManagerClass.puml | d6fd5dd56db3ef946dcff8fe2a7d25d1f7dc6137 | [] | no_license | AY2021S1-CS2113-T13-1/tp | 720454016061d5dbc23067e4505e2eac87e04449 | 4345646e211cdaeed2dfdf2e691e334c2d8e32ad | refs/heads/master | 2023-01-19T13:31:58.992002 | 2020-11-10T12:57:57 | 2020-11-10T12:57:57 | 297,301,678 | 0 | 7 | null | 2020-11-10T12:57:58 | 2020-09-21T10:12:20 | Java | UTF-8 | PlantUML | false | false | 227 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
class InterfaceManager {
- in: Scanner
- out: PrintStream
+ InterfaceManager(InputStream, PrintStream)
+ getUserCommandInput(): String
+ prints(String): void
}
@enduml |
3b8549fdcc0c290954b2fe69350e2e0afa5cff02 | a65fe81fdb57e5d389a290fc70f724a593f1cd85 | /06.FactoryMethod/diagrams/工廠方法模式(早餐,加入培根蛋三明治).puml | 5b931faa2b1811b58ab8c761692bb77b18774e30 | [
"MIT"
] | permissive | leoshiang/DesignPatterns | 56a74d317893e96d19e62d789f0379096ae4fe8b | aefa956b0d8caac1e4f80f75e87a5b44b954e8cb | refs/heads/master | 2020-04-01T10:12:37.390007 | 2018-10-15T12:21:22 | 2018-10-15T12:21:22 | 113,122,364 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,085 | puml | @startuml
scale 2048*2048
skinparam defaultFontName "Noto Sans CJK TC Regular"
interface 三明治 {
+ 烤麵包()
+ 抹醬料()
+ 煎蛋()
+ 加料()
+ 包裝()
}
class 火腿蛋三明治 {
+ 烤麵包()
+ 抹醬料()
+ 煎蛋()
+ 加料()
+ 包裝()
}
class 鮪魚蛋三明治 {
+ 烤麵包()
+ 抹醬料()
+ 煎蛋()
+ 加料()
+ 包裝()
}
class 培根蛋三明治 {
+ 烤麵包()
+ 抹醬料()
+ 煎蛋()
+ 加料()
+ 包裝()
}
interface 三明治工廠 {
+ 三明治 製作三明治()
}
class 火腿蛋三明治工廠{
+ 三明治 製作三明治()
}
class 鮪魚蛋三明治工廠{
+ 三明治 製作三明治()
}
class 培根蛋三明治工廠{
+ 三明治 製作三明治()
}
三明治 <|.. 火腿蛋三明治
三明治 <|.. 鮪魚蛋三明治
三明治 <|.. 培根蛋三明治
三明治工廠 ..> 三明治
三明治工廠 <|.down. 火腿蛋三明治工廠
三明治工廠 <|.down. 鮪魚蛋三明治工廠
三明治工廠 <|.down. 培根蛋三明治工廠
@enduml |
78039810e2b04a1e60b43a45296b20c702ee13bb | 8dcd1fda2772a3153f09f9fb83ccca6fd411fa5f | /plantuml/Item.puml | 55ad2d413fa93bb6b1cba0e531c4a67ec867747c | [] | no_license | georgio/ood-3 | eef514ae561beca1fcaf200d326f1c6cab8e50e3 | 72d5f3ee4da2de3e2c343a5aa725c5fa6f235dab | refs/heads/master | 2022-04-21T08:17:49.376166 | 2020-04-24T15:09:31 | 2020-04-24T15:09:31 | 258,545,931 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 361 | puml | @startuml
class Item {
- title : Title
- serialNumber : UInt64
- available : bool
+ Item(serialNumber:UInt64, title:Title)
+ setSerialNumber(serialNumber:UInt64) : void
+ getSerialNumber() : UInt64
+ setTitle(title:Title) : void
+ getTitle() : Title
+ isAvailable() : bool
+ setAvailable(available:bool) : void
}
@enduml
|
4c25bce5bf326caa2a33f53fc21a10f8dc849e36 | b615d963ae1cfa22289775c561dd073b55a71ebd | /docs/uml-class-diagrams/middleware01/production/MiddlewareGisInterfaceImplementation/MiddlewareGisInterfaceImplementation.puml | f7a69221a3350769df2761b8ec2e8e053089f013 | [] | no_license | elilley15/csi-3370-software-project | 8062dddf435ab0c7941acdf03225f84c18457947 | d2642cf649dabeafd6d9753c483b9df265d85118 | refs/heads/main | 2023-01-18T15:48:03.237629 | 2020-11-28T21:24:10 | 2020-11-28T21:24:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 508 | puml | @startuml MiddlewareGisInterfaceImplementation
package edu.oakland.production.middleware01 {
class MiddlewareGisInterfaceImplementation {
- MiddlewareGisProcessor middlewareGisProcessor
__
+ MiddlewareGisInterfaceImplementation(MiddlewareGisProcessor middlewareGisProcessor)
.. Use Case 1 ..
+ String receiveGpsSignalStrength(Satellite satelliteSignal)
.. Use Case 2 ..
+ String receiveGpsSignalStrength(Satellite satelliteSignal)
}
}
@enduml |
2c8307d7ce8647156fddd125205aab97dff6551b | 3635c69c8883366323d578c0da0c1717bfbb316c | /study/src/main/resources/chenji/designpattern/2_abstract_factory_pattern.puml | b17cf3c159f6f3daf4ce7eda09dba548ad188497 | [] | no_license | baojing111/changjiang | 46ccf5b7ef74ef6178e4d8febc5681ee593c557f | 671de442c89fb8b61f3e64790f3d1024894d0b92 | refs/heads/master | 2020-03-10T22:23:15.726613 | 2019-05-04T02:07:10 | 2019-05-04T02:07:10 | 129,617,983 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,758 | puml | @startuml
title 抽象工厂模式
legend right
案例:https://blog.csdn.net/zhutulang/article/details/43495825
end legend
interface IceCream <<冰淇凌>>{
+taste() : void
}
interface ImportedIceCream<<进口冰淇淋>>{
+taste() : void
}
interface DomesticIceCream<<国产冰淇淋>>{
+taste() : void
}
class ImportedAppleIceCream
class ImportedBananaIceCream
class ImportedStrawberryIceCream
class DomesticAppleIceCream
class DomesticBananaIceCream
class DomesticStrawberryIceCream
IceCream <|-down- ImportedIceCream : extends
IceCream <|-down- DomesticIceCream : extends
ImportedIceCream <|.down. ImportedAppleIceCream : implement
ImportedIceCream <|.down. ImportedBananaIceCream : implement
ImportedIceCream <|.down. ImportedStrawberryIceCream : implement
DomesticIceCream <|.down. DomesticAppleIceCream : implement
DomesticIceCream <|.down. DomesticBananaIceCream : implement
DomesticIceCream <|.down. DomesticStrawberryIceCream : implement
interface IceCreamFactory{
+createDomesticIceCream() : IceCream
+createImportedIceCream() : IceCream
}
class AppleIceCreamFactory
class BananaIceCreamFactory
class StrawberryIceCreamFactory
IceCreamFactory <|.up. AppleIceCreamFactory : implement
IceCreamFactory <|.up. BananaIceCreamFactory : implement
IceCreamFactory <|.up. StrawberryIceCreamFactory : implement
IceCream <-up- IceCreamFactory
ImportedAppleIceCream <-up- AppleIceCreamFactory : 关联
ImportedBananaIceCream <-up- BananaIceCreamFactory : 关联
ImportedStrawberryIceCream <-up- StrawberryIceCreamFactory : 关联
DomesticAppleIceCream <-up- AppleIceCreamFactory : 关联
DomesticBananaIceCream <-up- BananaIceCreamFactory : 关联
DomesticStrawberryIceCream <-up- StrawberryIceCreamFactory : 关联
@enduml |
3605fa824e41013ff7671874d9aaa87a351e91ec | 0a0e986dd1f62801857242e14aac97cb9a0108c4 | /Proj/docs/uml/mvc.puml | 9244ad00a637d773d8a33d160f1e9df55d6e8ee5 | [] | no_license | JoaoCostaIFG/LPOO | 6bca97bcf5d65ca79b1d83ef322a70b9c14aa5a3 | 0db8aca4897f50d202ed695750c8ddf10ff100b7 | refs/heads/master | 2021-02-07T04:39:57.611429 | 2020-10-19T09:52:19 | 2020-10-19T09:52:19 | 305,335,228 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,683 | puml | @startuml
hide empty members
skinparam shadowing false
skinparam linetype polyline
package "Model" #EEDDDD {
class Room {}
interface RayCasting {}
class RayCast {}
}
package "View" #DDEEDD {
/'
class CivieView {}
class LaserView {}
class MeleeGuyView {}
class RangedGuyView {}
class RoomView {}
class SkaneView {}
class WallView {}
'/
class Drawer {}
interface RoomDrawer {}
class Gui {}
class KeyHandler {}
class TerminalResizeHandler {}
interface TerminalResizeListener {}
class InputHandler {}
}
package "Controller" #DDDDEE {
class CollisionHandler {}
interface Controller {}
class EnemyController {}
abstract class MovableController {}
interface PlayerController {}
class SkaneController {}
class GameController #orange {}
note left of GameController
this is the main class
end note
}
PlayerController -up-^ Controller
MovableController .up.^ Controller
MovableController -down-> CollisionHandler
GameController .up.^ Controller
GameController -down-> SkaneController
GameController -down-> EnemyController
EnemyController --^ MovableController
SkaneController --^ MovableController
SkaneController .up.^ PlayerController
/'
Drawer -up-> CivieView
Drawer -up-> LaserView
Drawer -up-> MeleeGuyView
Drawer -up-> RangedGuyView
Drawer -up-> RoomView
Drawer -up-> SkaneView
Drawer -up-> WallView
'/
Drawer .down.^ RoomDrawer
TerminalResizeHandler .down.^ TerminalResizeListener
Gui -up-> TerminalResizeListener
Gui -left-> KeyHandler
Gui -right-> InputHandler
Gui -up-> RoomDrawer
Gui -down-> Room
GameController ---> Room
GameController --right-> Gui
Room -down-> RayCasting
RayCast .up.> RayCasting
@enduml
|
b6d67613f1bc11a006cd98fc263597d413c2e61e | a65fe81fdb57e5d389a290fc70f724a593f1cd85 | /01.Observer/src/ES2015-CascadingComboBox/diagrams/v1/ClassDiagram.puml | 56af6ec2b34fd2d75bc766eb9978e038e54598bd | [
"MIT"
] | permissive | leoshiang/DesignPatterns | 56a74d317893e96d19e62d789f0379096ae4fe8b | aefa956b0d8caac1e4f80f75e87a5b44b954e8cb | refs/heads/master | 2020-04-01T10:12:37.390007 | 2018-10-15T12:21:22 | 2018-10-15T12:21:22 | 113,122,364 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 414 | puml | @startuml
skinparam defaultFontName "Fira Code"
skinparam class {
FontStyle bold
FontSize 12
}
scale 800*800
class CascadingComboBox{
-child
-data
-defaultOptions
-domObject
-id
+onCreateChildData
+onCreateOption
+onItemSelected
-bindEvents()
-createOptions()
-fillOptions()
-updateChild()
+clear()
+setData()
}
@enduml |
0194857a3003626d81e62a5927b553c9834786f6 | e4b4aed18ec0ad6904d2b72568a1f7bd8645bf94 | /src/main/java/template/template.puml | 3f3ccb2ebdc15d737f2ea136ceccaa0739a7c071 | [] | no_license | dengguoqing93/designNew | 7da31ae79d5224f8524d3330f66b059bbc5d5bfd | c2e41dca091a4907a5339d450ea57cedbb1ca9b3 | refs/heads/master | 2021-06-01T16:51:44.337978 | 2018-07-04T13:04:06 | 2018-07-04T13:04:06 | 136,009,177 | 0 | 0 | null | 2021-05-12T00:15:23 | 2018-06-04T10:27:26 | Java | UTF-8 | PlantUML | false | false | 282 | puml | @startuml
abstract class AbstractClass
class ConcreteClass
class AbstractClass{
+templateMethod()
+{abstract} primitiveOperation1()
+{abstract} primitiveOperation2()
}
class ConcreteClass{
+primitiveOperation1()
+primitiveOperation1()
}
AbstractClass <|--- ConcreteClass
@enduml |
37dd8432d931f1c780c63d7b1a8d0ca9a0145d9c | df0ef335db72799c50754f0efd41190cc60a3491 | /class_diagram.puml | ecd8d08b1f3c24b7bef52ca66064771d63351ef2 | [] | no_license | wanglinyou33/Calendar-Events-Android-App | d0dade8bc71e3b0c1d38c60e2a98f53757892b3e | 2bc7d949c1808f907cf02768ed2e74106a1ae8a8 | refs/heads/master | 2022-04-09T10:57:42.282762 | 2020-02-03T18:45:53 | 2020-02-03T18:45:52 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 920 | puml | @startuml
package "CalendarEvent" {
class CalendarEventManager {
+ val calendarEvents : LiveData<List<CalendarEvent>>
- val calendarEventFetchers : List<CalendarEventFetcher>
+ fun addMeeting()
+ fun syncMeetings()
}
class CalendarEvent {
- String title
- long startTime
- long endTime
- int priority
- List<Reminder> reminders
- String syncId
}
interface CalendarEventFetcher {
fun fetchCalendarEvents() : List<CalendarEvent>
}
CalendarEventManager "1" o-- "*" CalendarEvent : Has
CalendarEventManager "1" o-- "*" CalendarEventFetcher : Has
CalendarEventFetcher "*" o-- "*" CalendarEvent : Fetches
}
package "CalendarEventAlert" {
class CalendarEventAlertManager {
private val priorityAlertTime : Long
private val normalAlertTime : Long
fun getCalendarEventWithAlertType(calendarEvents : List<CalendarEvent>) : Map<CalendarEvent : AlertType>
}
}
@enduml |
f8f6d33bf78ed674d40fe419b820d142ab7d9755 | 0bba83fa1b4ee6ba640d77fcccbf1f262e3ee06e | /Examples/output/v0.0.1/Tutorial.BasicTypes/Tutorial.BasicTypes.puml | 342278d7fcd5f918bdd92ab3295144200e79edca | [] | no_license | Baudin999/car-lang_archive | 34f97274ccae72b57651b3eb38e84bd907110e2a | 678f0338bc8ed521951e575163d15fd1be187f0f | refs/heads/master | 2020-04-27T20:34:41.121918 | 2019-11-29T15:04:05 | 2019-11-29T15:04:05 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 29 | puml | class "Person" as Person {
} |
166b208447d58d2ffe96f63db76ba840f8ffcc41 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/PaymentInteractionAddedMessagePayload.puml | 3b569787562b03743d975a36ed8f7d39d9142130 | [] | 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 | 481 | 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 PaymentInteractionAddedMessagePayload [[PaymentInteractionAddedMessagePayload.svg]] extends MessagePayload {
type: String
interaction: [[CustomFields.svg CustomFields]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
|
47a1f95fd495c52f6ee7691624af4a3ee7ab1989 | 5d9c28dfd0eeda54a295392efe09cf73b5ace17c | /docs/uml/DataBroker.puml | 2295d8cb40e751948bc3e1ee4797e51e5c355e2c | [
"MIT"
] | permissive | jeremycward/isharp-core | 519e204fc5bd38a8199ef5994edb930643236623 | c3dbebaf997b045da8385cb3dfab46820e40afda | refs/heads/master | 2022-06-18T18:32:11.362891 | 2022-05-02T09:32:14 | 2022-05-02T09:32:14 | 174,410,128 | 1 | 1 | MIT | 2022-05-25T14:19:31 | 2019-03-07T19:49:53 | Python | UTF-8 | PlantUML | false | false | 793 | puml | @startuml
class MatrixUrl{
url:string
get_params():dict
get_path():string
get_host():string
}
class MatrixHeader{
revision_id: string
storage_method: string
path: string
name: string
memory_style: enum
description: string
}
class Revision{
id: long
who: string
when: DateTime
what: string
}
class Matrix {
header:MatrixHeader
url:MatrixUrl
content: object
}
interface DataBroker{
checkout(url) : Matrix
checkout(url, revisionId) : Matrix
commit(Matrix)
revisions(url): Revision[]
list(): MatrixHeaderHeader[]
}
Matrix --> MatrixHeader
Matrix --> MatrixUrl
DataBroker ..> Matrix : checkout matrix
DataBroker ..> Revision: get matrix revisions
DataBroker ..> MatrixHeader: list contents
@enduml |
3b30758dada5482caea70b972f33a10b4fea8473 | c117cce5d888b70a42d9ed67bea5de8b263eda1e | /chapter_three_0100/图3_1_1.puml | 181559fe90872d4d8f7986f9a8e37ed65a484ab4 | [] | no_license | zhijunhong/design_patterns | b4a6d2d604fa9a38c6a45ba189de7750a298eb4b | 23acdaa5a871ed38ef3a8594ef13474af53f3ee8 | refs/heads/master | 2023-03-16T16:04:03.455962 | 2021-02-24T01:37:39 | 2021-02-24T01:37:39 | 111,893,158 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,021 | puml | @startuml
abstract Computer{
# String mbBoard;
# String mDisplay;
# String mOs;
#Computer()
+ setBoard():void
+ setDisplay():void
+abstract setOs():void
+ toString():String
}
note left of Computer:计算机抽象类
class Macbook{
+setOs():void
}
note left of Macbook:具体的Computer类,Macbook
abstract Builder{
+ abstract buildBoard(String):void
+ abstract buildDisplay(String):void
+ abstract buildOs():void
+ abstract create():Computer
}
note right of Builder:抽象Builder类
class MacbookBuilder{
-Computer mComputer;
+buildBoard(String):void
+buildDisplay(String):void
+buildOs():void
+create():Computer
}
note left of MacbookBuilder:具体的Builder类,MacbookBuilder
class Director{
Builder mBuilder;
+Director(Builder)
+construct(String,String):void
}
note left of Director:Director类,负责构造Computer
Computer<|-- Macbook
MacbookBuilder --|> Builder
MacbookBuilder --* Computer
Director o-- Builder
@enduml |
32d71c059acae1790880d534acef85ef1f3f85a2 | 4ae261754a3a9c9ae4719544ec4315765ed18762 | /docs/UML/pySUMOQt/MainWindow.iuml | f597aaa185f13c345ba63673cb4e16e87862f475 | [
"BSD-2-Clause"
] | permissive | pySUMO/pysumo | a5bcff128b757f1b4857f51cd5ebd07014ff1142 | 889969f94bd45e2b67e25ff46452378351ca5186 | refs/heads/master | 2020-05-05T01:22:45.988009 | 2015-04-22T11:09:00 | 2015-04-22T11:09:00 | 32,805,049 | 8 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,205 | iuml | class MainWindow {
+ ontologyAdded : Signal
+ ontologyRemoved : Signal
+ updateRequested : Signal
- widgets : Widget[]
+ synchronize()
# _showOptionDialog_()
# _addWidget_(widgetType : String, widgetMenu : QMenu)
+ createPySumoWidget(widgetType : String, widgetMenu : QMenu)
+ addDeleteWidgetAction(widget : PySUMOWidget)
+ addOrRestoreWidget(widget : PySUMOWidget, menu : QMenu, directAdd : Boolean)
+ closeEvent(event : QEvent)
+ createStatusBar()
+ setupStatusConnection()
+ displayLog(socket)
# _updateStatusbar_(wrappedWidget : Widget)
# _deleteWidget_(widget : PySUMOWidget)
+ connectWidget(widget : PySUMOWidget)
+ disconnectWidget(widget : PySUMOWidget, callback)
+ getDefaultOutputPath()
# _newOntology_()
# _openLocalOntology_()
# _openRemoteOntology_()
+ addOntology(ontology : Ontology, newversion : String)
+ notifyOntologyAdded(ontology : Ontology)
# _ClearRecentOntologiesHistory_()
# _deleteOntology_(ontology : Ontology, ontologyMenu : QMenu)
# _updateOntology_(ontology : Ontology)
# _revertOntology_(ontology : Ontology, ontologyMenu : QMenu)
# _showOntologyProperties_(ontology : Ontology)
# _closeOntology(ontology : Ontology, ontologyMenu : QMenu)
}
|
dfa3622da5771d7eb9d62a4d027832c98d7c8154 | 7eb0a3429f021f1a046bed8e667a6911d789d065 | /IteratorPattern/example.puml | 04cbc45b1e6d23c43fe0432a3e3766bdc2606dae | [
"MIT"
] | permissive | gama79530/DesignPattern | d99431711fda65cfb7d790b2959ba0a712fa3f86 | 4730c50cdd839072ae50eef975cbed62b5a2a41c | refs/heads/master | 2023-08-03T04:35:54.561642 | 2023-06-08T03:13:08 | 2023-07-31T12:32:13 | 269,562,362 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 793 | puml | @startuml example
hide empty members
interface Vehicle{
+ String getDescription()
+ String getLicensePlateNumber()
+ String toString()
}
class Motorcycle{
- String description
- String licensePlateNumber
+ Motorcycle(String description, String licensePlateNumber)
+ String getDescription()
+ String getLicensePlateNumber()
+ String toString()
}
class Car{
- String description
- String licensePlateNumber
+ Car(String description, String licensePlateNumber)
+ String getDescription()
+ String getLicensePlateNumber()
+ String toString()
}
class Garage{
- Vehicle[] vehicle
+ void addVehicle(Vehicle vehicle)
+ Iterator<Vehicle> createIterator()
}
Garage o-- Vehicle
Vehicle <|-- Motorcycle
Vehicle <|-- Car
@enduml |
e2992b4d4a8a26938d08605964882e79910e6987 | c808c053ca4ad88d384a4690c612bde8d2b515ac | /cardreader.provider.nfc/doc/plantuml/NFCCRP/NfcCard.plantuml | 632f9c356ded1d8da00b963351cfff770b8fd8d1 | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderProvider-NFC-Android | 915c9ff940d467e64c021055d9b6d3858e539d3f | f2b42a1da3b04f742b4f83facbd9cf039339c56a | refs/heads/master | 2022-01-13T13:58:12.947688 | 2022-01-07T07:24:28 | 2022-01-07T07:24:28 | 214,091,391 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,039 | plantuml | @startuml
package de.gematik.ti.cardreader.provider.nfc.entities {
class NfcCard {
{static} - LOG : Logger
- isoDep : IsoDep
{static} - MANAGE_CHANNEL_COMMAND_OPEN : CommandAPDU
{static} - MANAGE_CHANNEL_COMMAND_CLOSE : CommandAPDU
{static} - RESPONSE_SUCCESS : int
{static} # PROTO_T_1 : String
- exclusiveThread : Thread
- isExtendedLengthApduSupported : boolean
+ NfcCard()
+ getATR()
+ getProtocol()
+ getBasicChannel()
+ openLogicalChannel()
+ beginExclusive()
+ endExclusive()
+ transmitControlCommand()
# transceive()
+ disconnect()
+ isCardPresent()
+ isExtendedLengthApduSupported()
+ checkCardOpen()
~ checkExclusive()
}
}
NfcCard -up-|> Card
@enduml
|
e57da56fc4e9a4d459d360048d8852b972b989b1 | 52ba427f53f8af305989c471eac3f6658587499d | /src/main/resources/设计模式23种类型/结构型模式 Structural Pattern/桥接模式.puml | e24c9a30ddcefbbb4015d246fbe49d3b2e98191a | [] | no_license | HappyFreeAngel/springcloud-gateway-dynamic-route | 444114df5f67fe63a960e27bf40c794380bbbcee | 364d99cbdc6ba09ed7b07ce15aed96b23d7f1827 | refs/heads/master | 2020-07-28T01:13:04.293957 | 2019-11-05T15:44:04 | 2019-11-05T15:44:04 | 209,264,996 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 707 | puml | @startuml
skinparam classAttributeIconSize 0
package "class Bridge(桥接模式 Bridge Pattern)" #DDDDDD {
abstract class Abstraction
Abstraction : +operation()
note right: 抽象部分
class RefinedAbstraction
note top of RefinedAbstraction:优化的抽象部分
interface Implementor
Implementor : +operationImpl()
note right:实现部分
class Client
note right : 客户端
ConcreteImplementorA : +operationImpl()
ConcreteImplementorB : +operationImpl()
Client --> Abstraction
RefinedAbstraction --|> Abstraction
Implementor --o Abstraction
ConcreteImplementorA ..|> Implementor
ConcreteImplementorB ..|> Implementor
}
@enduml
|
02ff3110cc1dd3d632b7373acc73fe9b530b1082 | 112e511928937b8ec60004ca94f1dd996bd9fd1a | /Documents/Shos.Chatter.Server/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.puml | ce8769c87f9e9034869520685e0d42bb5cf70303 | [
"MIT"
] | permissive | Fujiwo/Shos.Chatter.NetFramework | 2c143b390b1588e38e5967a8b8f1c51bf5487362 | 3c7061398e790c2fc856585fdbf60a18705f11e0 | refs/heads/master | 2023-03-23T09:31:02.071913 | 2021-03-11T05:27:48 | 2021-03-11T05:27:48 | 323,569,895 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 301 | puml | @startuml
class ModelDescriptionGenerator {
+ ModelDescriptionGenerator(config:HttpConfiguration)
+ GetOrCreateModelDescription(modelType:Type) : ModelDescription
}
class "Dictionary`2"<T1,T2> {
}
ModelDescriptionGenerator --> "GeneratedModels<string,ModelDescription>" "Dictionary`2"
@enduml
|
5fc02d44384b6c7e9f6ddd254e657c542fc7db76 | 97a3540eca7894890678b5c71032123342d3190c | /diagrams/CodeDependencies.puml | 766e521d81d7a60a517b238fc12ed3c01d098812 | [
"MIT"
] | permissive | tiestvilee/classified-hexagon | ee875ca3c9bf75f010ab0fad3270dee7899543b4 | 8aee9b4457ab4a43b095ed6c72fdafd382f27e0f | refs/heads/main | 2023-07-16T18:18:14.538304 | 2021-08-30T17:04:07 | 2021-08-30T17:04:07 | 398,537,941 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,979 | puml | @startuml
'https://plantuml.com/class-diagram
package "symmetric service adapter" {
class ServiceAdapterClient {
domain.[domain].adapter.service
}
class ServiceAdapterServer {
domain.[domain].adapter.service
}
}
interface Service {
domain.[domain].port.service
}
interface Dependency {
domain.[domain].port.dependency
}
class Hub {
domain.[domain].hub
}
class DependencyAdapter {
domain.[domain].adapter.dependency
}
class Model {
domain.[domain].model
}
class Deployable {
deployable.[deployableName]
}
Service --> Model : depends upon
Dependency --> Model : depends upon
Hub --> Service : depends upon [implements]
Hub --> Dependency : depends upon [uses]
DependencyAdapter -> Dependency : depends upon [implements]
ServiceAdapterServer -> Service : depends upon [uses]
ServiceAdapterClient -> Service : depends upon [implements]
Deployable --> Hub : depends upon [creates]
Deployable --> DependencyAdapter : depends upon [creates]
Deployable --> ServiceAdapterClient : depends upon [creates]
Deployable --> ServiceAdapterServer : depends upon [creates]
note "the domain model does not have outgoing dependencies" as N1
N1 ..> Model
note "only dependency adapters can implement dependencies" as N2
N2 ..> DependencyAdapter
note "only hubs and service clients can implement services" as N3
N3 ..> Hub
N3 ..> ServiceAdapterClient
note "only deployables and service adapters can create service adapters\n(decoration)" as N4
N4 ..> Deployable
N4 ..> ServiceAdapterClient
N4 ..> ServiceAdapterServer
note "only deployables can create hubs" as N5
N5 ..> Deployable
note "only deployables and dependency adapters can create dependency adapters" as N6
N6 ..> Deployable
N6 ..> DependencyAdapter
note "the services only depend upon the domain model" as N7
N7 ..> Service
note "the dependencies only depend upon the domain model" as N8
N8 ..> Dependency
note "the hub only depends upon the ports" as N9
N9 ..> Hub
@enduml |
25baccfa3b80c628d5b37b5140de0d4adee6ddd3 | 112e511928937b8ec60004ca94f1dd996bd9fd1a | /Documents/Shos.Chatter.Server/Areas/HelpPage/ModelDescriptions/EnumValueDescription.puml | b04df96745b0edac19ef78ff0e0e9e35cebc6bbb | [
"MIT"
] | permissive | Fujiwo/Shos.Chatter.NetFramework | 2c143b390b1588e38e5967a8b8f1c51bf5487362 | 3c7061398e790c2fc856585fdbf60a18705f11e0 | refs/heads/master | 2023-03-23T09:31:02.071913 | 2021-03-11T05:27:48 | 2021-03-11T05:27:48 | 323,569,895 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 167 | puml | @startuml
class EnumValueDescription {
+ Documentation : string <<get>> <<set>>
+ Name : string <<get>> <<set>>
+ Value : string <<get>> <<set>>
}
@enduml
|
de6d537c0fc803487513013bb4106ffca4041c3c | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ShoppingListUpdateAction.puml | ce51c158791a4113462fd47e5476f1afa406ebcb | [] | 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 | 8,093 | 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 ShoppingListUpdateAction [[ShoppingListUpdateAction.svg]] {
action: String
}
interface ShoppingListAddLineItemAction [[ShoppingListAddLineItemAction.svg]] {
action: String
key: String
sku: String
productId: String
variantId: Long
quantity: Long
addedAt: DateTime
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface ShoppingListAddTextLineItemAction [[ShoppingListAddTextLineItemAction.svg]] {
action: String
name: [[LocalizedString.svg LocalizedString]]
key: String
description: [[LocalizedString.svg LocalizedString]]
quantity: Long
addedAt: DateTime
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface ShoppingListChangeLineItemQuantityAction [[ShoppingListChangeLineItemQuantityAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
quantity: Long
}
interface ShoppingListChangeLineItemsOrderAction [[ShoppingListChangeLineItemsOrderAction.svg]] {
action: String
lineItemOrder: [[String.svg List<String>]]
}
interface ShoppingListChangeNameAction [[ShoppingListChangeNameAction.svg]] {
action: String
name: [[LocalizedString.svg LocalizedString]]
}
interface ShoppingListChangeTextLineItemNameAction [[ShoppingListChangeTextLineItemNameAction.svg]] {
action: String
textLineItemId: String
textLineItemKey: String
name: [[LocalizedString.svg LocalizedString]]
}
interface ShoppingListChangeTextLineItemQuantityAction [[ShoppingListChangeTextLineItemQuantityAction.svg]] {
action: String
textLineItemId: String
textLineItemKey: String
quantity: Long
}
interface ShoppingListChangeTextLineItemsOrderAction [[ShoppingListChangeTextLineItemsOrderAction.svg]] {
action: String
textLineItemOrder: [[String.svg List<String>]]
}
interface ShoppingListRemoveLineItemAction [[ShoppingListRemoveLineItemAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
quantity: Long
}
interface ShoppingListRemoveTextLineItemAction [[ShoppingListRemoveTextLineItemAction.svg]] {
action: String
textLineItemId: String
textLineItemKey: String
quantity: Long
}
interface ShoppingListSetAnonymousIdAction [[ShoppingListSetAnonymousIdAction.svg]] {
action: String
anonymousId: String
}
interface ShoppingListSetCustomFieldAction [[ShoppingListSetCustomFieldAction.svg]] {
action: String
name: String
value: [[Object.svg Object]]
}
interface ShoppingListSetCustomTypeAction [[ShoppingListSetCustomTypeAction.svg]] {
action: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface ShoppingListSetCustomerAction [[ShoppingListSetCustomerAction.svg]] {
action: String
customer: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
}
interface ShoppingListSetDeleteDaysAfterLastModificationAction [[ShoppingListSetDeleteDaysAfterLastModificationAction.svg]] {
action: String
deleteDaysAfterLastModification: Long
}
interface ShoppingListSetDescriptionAction [[ShoppingListSetDescriptionAction.svg]] {
action: String
description: [[LocalizedString.svg LocalizedString]]
}
interface ShoppingListSetKeyAction [[ShoppingListSetKeyAction.svg]] {
action: String
key: String
}
interface ShoppingListSetLineItemCustomFieldAction [[ShoppingListSetLineItemCustomFieldAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
name: String
value: [[Object.svg Object]]
}
interface ShoppingListSetLineItemCustomTypeAction [[ShoppingListSetLineItemCustomTypeAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface ShoppingListSetSlugAction [[ShoppingListSetSlugAction.svg]] {
action: String
slug: [[LocalizedString.svg LocalizedString]]
}
interface ShoppingListSetStoreAction [[ShoppingListSetStoreAction.svg]] {
action: String
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
}
interface ShoppingListSetTextLineItemCustomFieldAction [[ShoppingListSetTextLineItemCustomFieldAction.svg]] {
action: String
textLineItemId: String
textLineItemKey: String
name: String
value: [[Object.svg Object]]
}
interface ShoppingListSetTextLineItemCustomTypeAction [[ShoppingListSetTextLineItemCustomTypeAction.svg]] {
action: String
textLineItemId: String
textLineItemKey: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface ShoppingListSetTextLineItemDescriptionAction [[ShoppingListSetTextLineItemDescriptionAction.svg]] {
action: String
textLineItemId: String
textLineItemKey: String
description: [[LocalizedString.svg LocalizedString]]
}
interface ShoppingListUpdate [[ShoppingListUpdate.svg]] {
version: Long
actions: [[ShoppingListUpdateAction.svg List<ShoppingListUpdateAction>]]
}
ShoppingListUpdateAction --> ShoppingListAddLineItemAction #blue;text:blue : "action : addLineItem"
ShoppingListUpdateAction --> ShoppingListAddTextLineItemAction #blue;text:blue : "action : addTextLineItem"
ShoppingListUpdateAction --> ShoppingListChangeLineItemQuantityAction #blue;text:blue : "action : changeLineItemQuantity"
ShoppingListUpdateAction --> ShoppingListChangeLineItemsOrderAction #blue;text:blue : "action : changeLineItemsOrder"
ShoppingListUpdateAction --> ShoppingListChangeNameAction #blue;text:blue : "action : changeName"
ShoppingListUpdateAction --> ShoppingListChangeTextLineItemNameAction #blue;text:blue : "action : changeTextLineItemName"
ShoppingListUpdateAction --> ShoppingListChangeTextLineItemQuantityAction #blue;text:blue : "action : changeTextLineItemQuantity"
ShoppingListUpdateAction --> ShoppingListChangeTextLineItemsOrderAction #blue;text:blue : "action : changeTextLineItemsOrder"
ShoppingListUpdateAction --> ShoppingListRemoveLineItemAction #blue;text:blue : "action : removeLineItem"
ShoppingListUpdateAction --> ShoppingListRemoveTextLineItemAction #blue;text:blue : "action : removeTextLineItem"
ShoppingListUpdateAction --> ShoppingListSetAnonymousIdAction #blue;text:blue : "action : setAnonymousId"
ShoppingListUpdateAction --> ShoppingListSetCustomFieldAction #blue;text:blue : "action : setCustomField"
ShoppingListUpdateAction --> ShoppingListSetCustomTypeAction #blue;text:blue : "action : setCustomType"
ShoppingListUpdateAction --> ShoppingListSetCustomerAction #blue;text:blue : "action : setCustomer"
ShoppingListUpdateAction --> ShoppingListSetDeleteDaysAfterLastModificationAction #blue;text:blue : "action : setDeleteDaysAfterLastModification"
ShoppingListUpdateAction --> ShoppingListSetDescriptionAction #blue;text:blue : "action : setDescription"
ShoppingListUpdateAction --> ShoppingListSetKeyAction #blue;text:blue : "action : setKey"
ShoppingListUpdateAction --> ShoppingListSetLineItemCustomFieldAction #blue;text:blue : "action : setLineItemCustomField"
ShoppingListUpdateAction --> ShoppingListSetLineItemCustomTypeAction #blue;text:blue : "action : setLineItemCustomType"
ShoppingListUpdateAction --> ShoppingListSetSlugAction #blue;text:blue : "action : setSlug"
ShoppingListUpdateAction --> ShoppingListSetStoreAction #blue;text:blue : "action : setStore"
ShoppingListUpdateAction --> ShoppingListSetTextLineItemCustomFieldAction #blue;text:blue : "action : setTextLineItemCustomField"
ShoppingListUpdateAction --> ShoppingListSetTextLineItemCustomTypeAction #blue;text:blue : "action : setTextLineItemCustomType"
ShoppingListUpdateAction --> ShoppingListSetTextLineItemDescriptionAction #blue;text:blue : "action : setTextLineItemDescription"
ShoppingListUpdateAction --> ShoppingListUpdate #green;text:green : "actions"
@enduml
|
a5abe9da35168d17a62cc51c48e9a0dd247935cf | 068579f9ad18a1368961dc3b9f812129f4f7e858 | /DesignPattern/Singleton/Balancer/uml/class_diagram.puml | 58540e1df53dfdeb73f8124dcdf5989378820004 | [] | no_license | AleMidolo/materiale-tutorato-ids | d9c27a9d0da9436842144a7cc8bd6d381f6e3546 | 3d95de651214245b113c92481007ec177ce95471 | refs/heads/master | 2023-03-30T22:05:39.627666 | 2021-04-01T13:53:07 | 2021-04-01T13:53:07 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 600 | puml | ' Documentazione: https://plantuml.com/class-diagram
@startuml
' START STYLE
skinparam {
monochrome true
'shadowing false
classBackgroundColor white
noteBackgroundColor white
classAttributeIconSize 0
}
hide circle
' END STYLE
title Singleton: Balancer - Class Diagram
class TestBalancer {
+ {static} main()
}
note left of TestBalancer::main
Balancer b = Balancer.getInstance();
b.getHost();
end note
class Balancer {
- hosts: String[]
- x: int
- {static} b: Balancer
- Balancer()
+ {static} getInstance(): Balancer
+ getHost(): String
}
TestBalancer -right-> Balancer
@enduml |
bed1db0e80b65f38ff41ac43284a8f3139c0b86e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLNoMatchingProductDiscountFoundError.puml | 7ec6cf61511a58270e3853156b653e9622af1633 | [] | 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 | 452 | 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 GraphQLNoMatchingProductDiscountFoundError [[GraphQLNoMatchingProductDiscountFoundError.svg]] extends GraphQLErrorObject {
code: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
|
2b2df0bbf3e77314d7d5935dc5a89cc0628a2c60 | 4a9c96162c97f838de41ebf07817adef64b7df54 | /docs/classes.puml | d806332424afea3a882d8c6ff23435689cd687a6 | [] | no_license | jofrancis1997/rebellion | a819515fd5a67b661ebff0c9ddffafae66fc2481 | db8c710b3aaf490c3b1f569a7bcdc01a5065fad8 | refs/heads/master | 2023-02-25T21:33:44.745065 | 2020-05-30T03:50:15 | 2020-05-30T03:50:15 | 334,377,119 | 0 | 0 | null | 2021-01-30T09:39:31 | 2021-01-30T09:39:24 | null | UTF-8 | PlantUML | false | false | 2,374 | puml | @startuml Rebellion
class Agent {
- double deathChance {readOnly}
- double governmentLegitimacy {readOnly}
- double k {readOnly}
- double perceivedHardshipIncreaseRate {readOnly}
- double riskAversion {readOnly}
- double threshold {readOnly}
- boolean active
- boolean dead
- int jailTerm
- double perceivedHardship
+ Agent(double governmentLegitimacy, double k, double threshold, double deathChance, boolean move)
+ boolean getActive()
- void setActive()
- double getGrievance()
+ int getJailTerm()
+ void setJailTerm()
+ void getDead()
- void notifyDeath()
}
class Cop {
- int maxJailTerm {readOnly}
+ Cop(int maxJailTerm, boolean move)
}
class Location {
- int xPos
- int yPos
+ Location(int xPos, int yPos)
+ int getXPos()
+ int getYPos()
}
class Main {
- double birthRate {readOnly}
- double deathChance {readOnly}
- double governmentLegimacy {readOnly}
- double k {readOnly}
- int maxJailTerm {readOnly}
- boolean move {readOnly}
- String output {readOnly}
- double perceivedHardshipIncreaseRate {readOnly}
- double threshold {readOnly}
- double vision {readOnly}
- double agentsToBeBorn
+ Main(double governmentLegimacy, int maxJailTerm, int vision, double copDensity, double agentDensity, int worldSize, double k, double threshold, boolean move, double deathChance, double birthRate, double perceivedHardshipIncreaseRate, String output)
- void createCops(int numCops)
- void createAgents(int numAgents)
- void recordSnapshot()
+ void start()
- Set<Tile> visibleTiles(Location location)
+ void main(String[] args) {static}
}
abstract class Person {
# boolean move
+ Person(boolean move)
+ void takeTurn(Collection<Tile> visibleTiles)
+ Tile getTile()
+ void setTile(Tile tile)
}
class Snapshot {
+ int active
+ int jailed
+ int quiet
+ int dead
}
class Tile {
+ Tile(Location location)
+ Set<Person> getPeople()
+ boolean empty()
+ Location getLocation()
+ void addPerson(Person person)
+ void removePerson(Person person)
}
Main --* "*" Tile : - tiles
Main --* "*" Snapshot : - snapshots
Agent --|> Person
Cop --|> Person
Tile --* "*" Person : - people
Person --* "1" Tile : # tile
Tile --* "1" Location : - location
@enduml
|
35681e7d9878fb15f30747026179e26af976ff3b | e37016f9bea6aac6954954ba33bde705a1245047 | /zx-note/src/test/graph/java/nio/Buffer类图.puml | bf3013c7d922008b7e875348991063135d30315a | [] | no_license | zouxiang1993/es_lucene | 11d558d98a9847b9df1d9d575bc9b362ac548f9b | c463345975db890105124c429965ed96ebd8bf92 | refs/heads/master | 2023-07-19T21:03:26.092718 | 2019-08-27T16:24:46 | 2019-08-27T16:24:46 | 148,873,770 | 3 | 3 | null | 2023-07-18T02:50:13 | 2018-09-15T05:47:30 | Java | UTF-8 | PlantUML | false | false | 429 | puml | @startuml
abstract class Buffer{
}
abstract class ByteBuffer extends Buffer{
}
abstract class LongBuffer extends Buffer
abstract class DoubleBuffer extends Buffer
abstract class 其他Buffer extends Buffer
abstract class MappedByteBuffer extends ByteBuffer{
--
// 将全部内容加载进物理内存
+ MappedByteBuffer load()
// 强制将所有更新写回磁盘
+ MappedByteBuffer force()
}
@enduml |
46f1f3671b0cd0d1513697793cdfed21fac9e45f | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/Api/TestAdaptorFactory.puml | d7dc787b6074a452fe0ddbe586c33e93d51de8e6 | [] | 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 | 573 | puml | @startuml
class TestAdaptorFactory {
+ Create(test:ITest) : ITestAdaptor
+ Create(testData:RemoteTestData) : ITestAdaptor
+ Create(testResult:ITestResult) : ITestResultAdaptor
+ Create(testResult:RemoteTestResultData, allData:RemoteTestResultDataWithTestData) : ITestResultAdaptor
+ BuildTree(data:RemoteTestResultDataWithTestData) : ITestAdaptor
+ BuildTreeAsync(data:RemoteTestResultDataWithTestData) : IEnumerator<ITestAdaptor>
+ ClearResultsCache() : void
+ ClearTestsCache() : void
}
ITestAdaptorFactory <|-- TestAdaptorFactory
@enduml
|
aa6041aa584a2b120ac691ac6c55d37974295e94 | 8f83adb253993728ad2b965efda9e2d0d9167ffd | /src/main/doc/resources/org/thegalactic/lattice/io/ConceptLatticeIOFactory.iuml | e9d9a4e7cbe1de3d58b30c5804b16c833d799fa6 | [
"CECILL-B"
] | permissive | jcarbonnel/java-lattices | 3906f29a84526dfeb3af5d24f4429d22d56f82b1 | 6df82e197748a455b1d886247a11ec1a56055def | refs/heads/master | 2021-08-26T05:01:08.308878 | 2017-11-17T11:00:45 | 2017-11-17T11:00:45 | 109,843,590 | 0 | 0 | null | 2017-11-07T14:06:18 | 2017-11-07T14:06:18 | null | UTF-8 | PlantUML | false | false | 293 | iuml | package org.thegalactic.lattice.io {
class ConceptLatticeIOFactory {
-ConceptLatticeIOFactory instance
-ConceptLatticeIOFactory()
#void init()
+{static}ConceptLatticeIOFactory getInstance()
}
org.thegalactic.io.IOFactory <|-- ConceptLatticeIOFactory
}
|
a67e0b335f31dc4648fbd0a84b2f6b60dc81d913 | 7d618c99d0bcee98fa0fdc58c1d8e1880c78d192 | /Reeks08/FieldValidation/FieldValidation/pattern/Email2State/UML/class.puml | 73fd7df8a1887fb8cedb25ee8c0981814688661b | [
"MIT"
] | permissive | LorenzoDeBie/SoftwareOntwikkelingII | f67cdea65841ae2220180134cac20fc98926ec2f | 0f8a6fc6f89ca99b5339a16bd1da3f31182263b9 | refs/heads/master | 2020-08-05T23:44:58.411612 | 2019-12-05T14:38:19 | 2019-12-05T14:38:19 | 212,760,021 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 834 | puml | @startuml
class EmailValidation2 {
Validate(s: string): bool
}
note left of EmailValidation2::Validate
Leest alle deeltjes en roept juiste methodes op
end note
interface IStatus {
+ Woord(): void
+ Punt(): void
+ At(): void
}
abstract class AStatus {
}
class I1 {
+ Woord(): void
+ Punt(): void
+ At(): void
}
class I2 {
+ Woord(): void
+ Punt(): void
+ At(): void
}
class I3 {
+ Woord(): void
+ Punt(): void
+ At(): void
}
class Init {
+ Woord(): void
+ Punt(): void
+ At(): void
}
class Accept {
+ Woord(): void
+ Punt(): void
+ At(): void
}
IStatus <|.down. AStatus
EmailValidation2 --o "1" AStatus
AStatus <|-- I1
AStatus <|-- I2
AStatus <|-- I3
AStatus <|-- Init
AStatus <|-- Accept
EmailValidation2 "status" -right-> "1" IStatus
@enduml |
5c60c5fd5c12bfebc3ef212642f45ba8c1d3e04d | e0e9b96584cf55eddb05c3cf64770892ad0efba9 | /doc/design.puml | ea994af8861dbcece050a47a9f420fb420e1aa78 | [] | no_license | jairomer/StrategyAndFactoryPatternInC- | dca05907f7de4cc2e12821963a97343bf83bf637 | cb3b5d0b19738ce4181c37d1fc9f199415aca751 | refs/heads/main | 2023-05-05T13:41:08.572321 | 2021-05-29T12:31:24 | 2021-05-29T12:31:24 | 371,968,207 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 799 | puml | @startuml
package speakers {
interface Speaker {
string speak()
}
class Cat {
string speak()
}
class Dog {
string speak()
}
class Cow {
string speak()
}
class Human {
string speak()
}
Cat --|> Speaker
Dog --|> Speaker
Cow --|> Speaker
Human --|> Speaker
class SpeakerFactory {
Speaker createSpeakerFrom(int input)
}
SpeakerFactory --> Speaker
SpeakerFactory ..> Cat
SpeakerFactory ..> Dog
SpeakerFactory ..> Cow
SpeakerFactory ..> Human
}
package leyend {
A --> B : Strongly Coupled
A ..> B : Weakly Coupled
A -|> B : A implements B
}
package UserCode {
class UserClass1
UserClass1 ---> SpeakerFactory
UserClass1 --> Speaker
class UserClass2
UserClass2 --> SpeakerFactory
UserClass2 --> Speaker
class UserClass3
UserClass3 --> SpeakerFactory
UserClass3 --> Speaker
}
@enduml
|
2451d29917d8dae69551c66f8944c319dbd44287 | e07ad94f5c70b0c457b9484269304244ced63a8f | /patterns/factory-method.puml | c8e22469b464dad1c97f95713c839129c19cf724 | [] | no_license | gillescoolen/design-patterns | abfe58fab21c1d47c124f066d2a7883156667bce | c05acb4b919247c5a26bf8341330837894154ae8 | refs/heads/main | 2023-06-01T22:47:39.336414 | 2021-06-18T12:39:56 | 2021-06-18T12:39:56 | 377,582,013 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 351 | puml | @startuml factory-method
class Developer {
+ createWebsite(string name)
}
interface WebsiteFactory {
- Dictionary<string name, Type type> types
+ createWebsite(string name)
}
class Website
class ReactWebsite
class VueWebsite
Developer --> WebsiteFactory
WebsiteFactory --> Website
ReactWebsite ..|> Website
VueWebsite ..|> Website
@enduml |
b74dece3a98894900ecd41f3690f5478988e92f8 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/SearchIndexingConfigurationValues.puml | d2c7e2e4a84d209a3a45c26313310bf08a6b57dd | [] | 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 | 936 | 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 SearchIndexingConfigurationValues [[SearchIndexingConfigurationValues.svg]] {
status: [[SearchIndexingConfigurationStatus.svg SearchIndexingConfigurationStatus]]
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
}
interface SearchIndexingConfiguration [[SearchIndexingConfiguration.svg]] {
products: [[SearchIndexingConfigurationValues.svg SearchIndexingConfigurationValues]]
orders: [[SearchIndexingConfigurationValues.svg SearchIndexingConfigurationValues]]
}
SearchIndexingConfigurationValues --> SearchIndexingConfiguration #green;text:green : "products"
SearchIndexingConfigurationValues --> SearchIndexingConfiguration #green;text:green : "orders"
@enduml
|
4869bf8103c96a44f88c4c0b7080f9d58a12e011 | bbb5aa587842e34b899c6f94ece669450cdc95c3 | /src/test/Callback继承关系类图.puml | 934463435b17b807122fba32b9796035df16be73 | [] | no_license | chenxingxing6/spring-freamwork | a54b88d5fbae5e597d458a6ec707f4e0433dfae2 | 71307ad00d9eabb2136534bec10369ae109ee9b8 | refs/heads/master | 2022-09-22T11:27:06.038063 | 2020-05-29T02:24:18 | 2020-05-29T02:24:18 | 267,319,973 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 311 | puml | @startuml
interface Callback {
}
hide Callback fields
hide Callback methods
interface MethodInterceptor extends Callback{
+Object intercept(Object, Method, Object[], MethodProxy)
}
hide MethodInterceptor fields
interface Dispatcher extends Callback {
+Object loadObject()
}
hide Dispatcher fields
@enduml |
7b89baea9a5d1ab98eab591230ffca89ad2c1ab0 | 6bd2a7ac5888af14373e6b7c3f13f0c1cc61b66c | /tictactoe/doc/classDiagram.puml | c91082d0e8005491044537d616c91544ea29f1ad | [] | no_license | chuso/mastercloudapps | e685a78f1268b82024c04df1719145169d2ec5d9 | cfcb55c8b0c666c406e82a720bc60d66977f2c15 | refs/heads/master | 2021-07-16T03:45:28.948164 | 2019-11-17T21:59:01 | 2019-11-17T21:59:01 | 211,486,152 | 0 | 0 | null | 2020-10-13T17:09:32 | 2019-09-28T10:54:00 | Java | UTF-8 | PlantUML | false | false | 384 | puml | class TicTacToe {
-Board
-player1
-player2
+play()
}
class Player {
-Board
-Token
+Player(Board, Token)
+move()
}
class Board {
-Token[3][3]
+setToken(column, row, Token)
+write()
+hasThreeInARow()
+isCompleted()
}
enum Token
Player --> Board
TicTacToe *--> Board
TicTacToe *--> "2" Player
Board o--> Token
Player ..> Token
|
6f494f1598db758888a0214ae859d677a5fcd90c | 2099ea9bcbc7ae9c8c28d59f9e0fffbf478c1f03 | /UML/vendor/yiisoft/yii2-dev/framework/web.puml | 1323ec2472fc8b1cd409243cfa81fb6a5461c6f3 | [] | 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 | 37,018 | puml | @startuml
skinparam handwritten true
class yii.web.Application {
+catchAll : array
+controller : Controller
+defaultRoute : string = "site"
-_homeUrl
#bootstrap()
+coreComponents()
+getErrorHandler() : ErrorHandler
+getHomeUrl() : string
+getRequest() : Request
+getResponse() : Response
+getSession() : Session
+getUser() : User
+handleRequest(request : Request) : Response
+setHomeUrl(value : string)
}
class yii.web.Application extends yii.base.Application
class yii.web.AssetBundle {
+basePath : string
+baseUrl : string
+css : array = []
+cssOptions : array = []
+depends : array = []
+js : array = []
+jsOptions : array = []
+publishOptions : array = []
+sourcePath : string
+init()
+publish(am : AssetManager)
+{static}register(view : View) : static
+registerAssetFiles(view : yii.web.View)
}
class yii.web.AssetBundle extends yii.base.BaseObject
class yii.web.AssetConverter {
+commands : array = [
\t"less" => [
\t \t0 => "css",
\t \t1 => "lessc {from} {to} --no-color --source-map"
\t],
\t"scss" => [
\t \t0 => "css",
\t \t1 => "sass {from} {to} --sourcemap"
\t],
\t"sass" => [
\t \t0 => "css",
\t \t1 => "sass {from} {to} --sourcemap"
\t],
\t"styl" => [
\t \t0 => "css",
\t \t1 => "stylus < {from} > {to}"
\t],
\t"coffee" => [
\t \t0 => "js",
\t \t1 => "coffee -p {from} > {to}"
\t],
\t"ts" => [
\t \t0 => "js",
\t \t1 => "tsc --out {to} {from}"
\t]
]
+forceConvert : bool = false
+convert(asset : string, basePath : string) : string
#runCommand(command : string, basePath : string, asset : string, result : string) : bool
}
class yii.web.AssetConverter extends yii.base.Component
class yii.web.AssetConverter implements yii.web.AssetConverterInterface
interface yii.web.AssetConverterInterface {
+convert(asset : string, basePath : string) : string
}
class yii.web.AssetManager {
+afterCopy : callback
+appendTimestamp : bool = false
+assetMap : array = []
+basePath : string = "@webroot/assets"
+baseUrl : string = "@web/assets"
+beforeCopy : callback
+bundles : array|bool = []
+dirMode : int = 509
+fileMode : int
+forceCopy : bool = false
+hashCallback : callable
+linkAssets : bool = false
-_converter
-_dummyBundles = []
-_published : array = []
+getAssetPath(bundle : AssetBundle, asset : string) : string|false
+getAssetUrl(bundle : AssetBundle, asset : string) : string
+getBundle(name : string, publish : bool = true) : AssetBundle
+getConverter() : AssetConverterInterface
+getPublishedPath(path : string) : string|false
+getPublishedUrl(path : string) : string|false
#hash(path : string) : string
+init()
#loadBundle(name : string, config : array = [], publish : bool = true) : AssetBundle
#loadDummyBundle(name : string) : AssetBundle
+publish(path : string, options : array = []) : array
#publishDirectory(src : string, options : array) : string[]
#publishFile(src : string) : string[]
#resolveAsset(bundle : AssetBundle, asset : string) : string|bool
+setConverter(value : array|AssetConverterInterface)
}
class yii.web.AssetManager extends yii.base.Component
class yii.web.BadRequestHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.BadRequestHttpException extends yii.web.HttpException
class yii.web.CacheSession {
+cache : CacheInterface|array|string = "cache"
#calculateKey(id : string) : mixed
+destroySession(id : string) : bool
+getUseCustomStorage() : bool
+init()
+readSession(id : string) : string
+writeSession(id : string, data : string) : bool
}
class yii.web.CacheSession extends yii.web.Session
abstract class yii.web.CompositeUrlRule {
#createStatus : int|null
#rules : UrlRuleInterface[] = []
#createRules() : UrlRuleInterface[]
+createUrl(manager, route, params)
+getCreateUrlStatus() : null|int
+init()
#iterateRules(rules : UrlRuleInterface[], manager : UrlManager, route : string, params : array) : bool|string
+parseRequest(manager, request)
}
class yii.web.CompositeUrlRule extends yii.base.BaseObject
class yii.web.CompositeUrlRule implements yii.web.UrlRuleInterface
class yii.web.ConflictHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.ConflictHttpException extends yii.web.HttpException
class yii.web.Controller {
+actionParams : array = []
+enableCsrfValidation : bool = true
+asJson(data : mixed) : Response
+asXml(data : mixed) : Response
+beforeAction(action)
+bindActionParams(action : yii.base.Action, params : array) : array
+goBack(defaultUrl : string|array = null) : Response
+goHome() : Response
+redirect(url : string|array, statusCode : int = 302) : Response
+refresh(anchor : string = "") : Response
+renderAjax(view : string, params : array = []) : string
}
class yii.web.Controller extends yii.base.Controller
class yii.web.Cookie {
+domain : string = ""
+expire : int = 0
+httpOnly : bool = true
+name : string
+path : string = "/"
+secure : bool = false
+value : string = ""
+__toString() : string
}
class yii.web.Cookie extends yii.base.BaseObject
class yii.web.CookieCollection {
+readOnly : bool = false
-_cookies : Cookie[]
+add(cookie : Cookie)
+count() : int
+fromArray(array : array)
+get(name : string) : Cookie
+getCount() : int
+getIterator() : ArrayIterator
+getValue(name : string, defaultValue : mixed = null) : mixed
+has(name : string) : bool
+offsetExists(name : string) : bool
+offsetGet(name : string) : Cookie
+offsetSet(name : string, cookie : Cookie)
+offsetUnset(name : string)
+remove(cookie : Cookie|string, removeFromBrowser : bool = true)
+removeAll()
+toArray() : array
+__construct(cookies : array = [], config : array = [])
}
class yii.web.CookieCollection extends yii.base.BaseObject
class yii.web.CookieCollection implements IteratorAggregate
class yii.web.CookieCollection implements ArrayAccess
class yii.web.CookieCollection implements Countable
class yii.web.DbSession {
+db : Connection|array|string = "db"
+sessionTable : string = "{{%session}}"
+destroySession(id : string) : bool
+gcSession(maxLifetime : int) : bool
+init()
+readSession(id : string) : string
+regenerateID(deleteOldSession : bool = false)
#typecastFields(fields : array) : array
+writeSession(id : string, data : string) : bool
}
class yii.web.DbSession extends yii.web.MultiFieldSession
class yii.web.ErrorAction {
+defaultMessage : string
+defaultName : string
#exception : Exception
+view : string
#findException() : Exception
#getExceptionCode() : mixed
#getExceptionMessage() : string
#getExceptionName() : string
#getViewRenderParams() : array
+init()
#renderAjaxResponse() : string
#renderHtmlResponse() : string
+run() : string
}
class yii.web.ErrorAction extends yii.base.Action
class yii.web.ErrorHandler {
+callStackItemView : string = "@yii/views/errorHandler/callStackItem.php"
+displayVars : array = [
\t0 => "_GET",
\t1 => "_POST",
\t2 => "_FILES",
\t3 => "_COOKIE",
\t4 => "_SESSION"
]
+errorAction : string
+errorView : string = "@yii/views/errorHandler/error.php"
+exceptionView : string = "@yii/views/errorHandler/exception.php"
+maxSourceLines : int = 19
+maxTraceSourceLines : int = 13
+previousExceptionView : string = "@yii/views/errorHandler/previousException.php"
+addTypeLinks(code : string) : string
+argumentsToString(args : array) : string
#convertExceptionToArray(exception : Exception|.Error) : array
+createFrameworkVersionLink() : string
+createHttpStatusLink(statusCode : int, statusDescription : string) : string
+createServerInformationLink() : string
+getExceptionName(exception : Exception) : string
#getTypeUrl(class : string, method : string|null) : string|null
+htmlEncode(text : string) : string
+isCoreFile(file : string) : bool
+renderCallStack(exception : Exception|.ParseError) : string
+renderCallStackItem(file : string|null, line : int|null, class : string|null, method : string|null, args : array, index : int) : string
#renderException(exception : Exception|.Error)
+renderFile(_file_ : string, _params_ : array) : string
+renderPreviousExceptions(exception : Exception) : string
+renderRequest() : string
#shouldRenderSimpleHtml() : bool
}
class yii.web.ErrorHandler extends yii.base.ErrorHandler
class yii.web.ForbiddenHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.ForbiddenHttpException extends yii.web.HttpException
class yii.web.GoneHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.GoneHttpException extends yii.web.HttpException
class yii.web.GroupUrlRule {
+prefix : string
+routePrefix : string
+ruleConfig : array = [
\t"class" => "yii\web\UrlRule"
]
+rules : array = []
#createRules()
+createUrl(manager, route, params)
+init()
+parseRequest(manager, request)
}
class yii.web.GroupUrlRule extends yii.web.CompositeUrlRule
class yii.web.HeaderCollection {
-_headers : array = []
+add(name : string, value : string) : $this
+count() : int
+fromArray(array : array)
+get(name : string, default : mixed = null, first : bool = true) : string|array
+getCount() : int
+getIterator() : ArrayIterator
+has(name : string) : bool
+offsetExists(name : string) : bool
+offsetGet(name : string) : string
+offsetSet(name : string, value : string)
+offsetUnset(name : string)
+remove(name : string) : array
+removeAll()
+set(name : string, value : string = "") : $this
+setDefault(name : string, value : string) : $this
+toArray() : array
}
class yii.web.HeaderCollection extends yii.base.BaseObject
class yii.web.HeaderCollection implements IteratorAggregate
class yii.web.HeaderCollection implements ArrayAccess
class yii.web.HeaderCollection implements Countable
class yii.web.HtmlResponseFormatter {
+contentType : string = "text/html"
+format(response : Response)
}
class yii.web.HtmlResponseFormatter extends yii.base.Component
class yii.web.HtmlResponseFormatter implements yii.web.ResponseFormatterInterface
class yii.web.HttpException {
+statusCode : int
+getName() : string
+__construct(status : int, message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.HttpException extends yii.base.UserException
interface yii.web.IdentityInterface {
+{static}findIdentity(id : string|int) : IdentityInterface
+{static}findIdentityByAccessToken(token : mixed, type : mixed = null) : IdentityInterface
+getAuthKey() : string
+getId() : string|int
+validateAuthKey(authKey : string) : bool
}
class yii.web.JqueryAsset {
+js = [
\t0 => "jquery.js"
]
+sourcePath = "@bower/jquery/dist"
}
class yii.web.JqueryAsset extends yii.web.AssetBundle
class yii.web.JsExpression {
+expression : string
+__construct(expression : string, config : array = [])
+__toString() : string
}
class yii.web.JsExpression extends yii.base.BaseObject
class yii.web.JsonParser {
+asArray : bool = true
+throwException : bool = true
+parse(rawBody : string, contentType : string) : array
}
class yii.web.JsonParser implements yii.web.RequestParserInterface
class yii.web.JsonResponseFormatter {
+encodeOptions : int = 320
+prettyPrint : bool = false
+useJsonp : bool = false
+format(response : Response)
#formatJson(response : Response)
#formatJsonp(response : Response)
}
class yii.web.JsonResponseFormatter extends yii.base.Component
class yii.web.JsonResponseFormatter implements yii.web.ResponseFormatterInterface
class yii.web.Link {
+{static}REL_SELF = "self"
+href : string
+hreflang : string
+name : string
+profile : string
+templated : bool = false
+title : string
+type : string
+{static}serialize(links : array) : array
}
class yii.web.Link extends yii.base.BaseObject
interface yii.web.Linkable {
+getLinks() : array
}
class yii.web.MethodNotAllowedHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.MethodNotAllowedHttpException extends yii.web.HttpException
abstract class yii.web.MultiFieldSession {
+readCallback : callable
+writeCallback : callable
#composeFields(id : string, data : string) : array
#extractData(fields : array) : string
+getUseCustomStorage() : bool
}
class yii.web.MultiFieldSession extends yii.web.Session
class yii.web.MultipartFormDataParser {
+force : bool = false
-_uploadFileMaxCount : int
-_uploadFileMaxSize : int
-addFile(files : array, name : string, info : array)
-addValue(array : array, name : string, value : mixed)
-getByteSize(verboseSize : string) : int
+getUploadFileMaxCount() : int
+getUploadFileMaxSize() : int
+parse(rawBody, contentType)
-parseHeaders(headerContent : string) : array
+setUploadFileMaxCount(uploadFileMaxCount : int)
+setUploadFileMaxSize(uploadFileMaxSize : int)
}
class yii.web.MultipartFormDataParser extends yii.base.BaseObject
class yii.web.MultipartFormDataParser implements yii.web.RequestParserInterface
class yii.web.NotAcceptableHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.NotAcceptableHttpException extends yii.web.HttpException
class yii.web.NotFoundHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.NotFoundHttpException extends yii.web.HttpException
class yii.web.RangeNotSatisfiableHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.RangeNotSatisfiableHttpException extends yii.web.HttpException
class yii.web.Request {
+{static}CSRF_HEADER = "X-CSRF-Token"
+{static}CSRF_MASK_LENGTH = 8
+cookieValidationKey : string
+csrfCookie : array = [
\t"httpOnly" => true
]
+csrfParam : string = "_csrf"
+enableCookieValidation : bool = true
+enableCsrfCookie : bool = true
+enableCsrfValidation : bool = true
+ipHeaders : string[] = [
\t0 => "X-Forwarded-For"
]
+methodParam : string = "_method"
+parsers : array = []
+secureHeaders : array = [
\t0 => "X-Forwarded-For",
\t1 => "X-Forwarded-Host",
\t2 => "X-Forwarded-Proto",
\t3 => "Front-End-Https",
\t4 => "X-Rewrite-Url"
]
+secureProtocolHeaders : array = [
\t"X-Forwarded-Proto" => [
\t \t0 => "https"
\t],
\t"Front-End-Https" => [
\t \t0 => "on"
\t]
]
+trustedHosts : array = []
-_baseUrl
-_bodyParams
-_contentTypes
-_cookies : CookieCollection
-_csrfToken
-_headers : HeaderCollection
-_hostInfo
-_hostName
-_languages
-_pathInfo
-_port
-_queryParams
-_rawBody
-_scriptFile
-_scriptUrl
-_securePort
-_url
#createCsrfCookie(token : string) : Cookie
#filterHeaders(headerCollection : yii.web.HeaderCollection)
#generateCsrfToken() : string
+get(name : string = null, defaultValue : mixed = null) : array|mixed
+getAbsoluteUrl() : string
+getAcceptableContentTypes() : array
+getAcceptableLanguages() : array
+getAuthCredentials() : array
+getAuthPassword() : string|null
+getAuthUser() : string|null
+getBaseUrl() : string
+getBodyParam(name : string, defaultValue : mixed = null) : mixed
+getBodyParams() : array
+getContentType() : string
+getCookies() : CookieCollection
+getCsrfToken(regenerate : bool = false) : string
+getCsrfTokenFromHeader() : string
+getETags() : array
+getHeaders() : HeaderCollection
+getHostInfo() : string|null
+getHostName() : string|null
#getIpValidator() : yii.validators.IpValidator
+getIsAjax() : bool
+getIsDelete() : bool
+getIsFlash() : bool
+getIsGet() : bool
+getIsHead() : bool
+getIsOptions() : bool
+getIsPatch() : bool
+getIsPjax() : bool
+getIsPost() : bool
+getIsPut() : bool
+getIsSecureConnection() : bool
+getMethod() : string
+getOrigin() : string|null
+getPathInfo() : string
+getPort() : int
+getPreferredLanguage(languages : array = []) : string
+getQueryParam(name : string, defaultValue : mixed = null) : mixed
+getQueryParams() : array
+getQueryString() : string
+getRawBody() : string
+getReferrer() : string|null
+getRemoteHost() : string|null
+getRemoteIP() : string|null
+getScriptFile() : string
+getScriptUrl() : string
+getSecurePort() : int
+getServerName() : string
+getServerPort() : int|null
+getUrl() : string
+getUserAgent() : string|null
+getUserHost() : string|null
+getUserIP() : string|null
#loadCookies() : array
#loadCsrfToken() : string
+parseAcceptHeader(header : string) : array
+post(name : string = null, defaultValue : mixed = null) : array|mixed
+resolve() : array
#resolvePathInfo() : string
#resolveRequestUri() : string|bool
+setAcceptableContentTypes(value : array)
+setAcceptableLanguages(value : array)
+setBaseUrl(value : string)
+setBodyParams(values : array)
+setHostInfo(value : string|null)
+setPathInfo(value : string)
+setPort(value : int)
+setQueryParams(values : array)
+setRawBody(rawBody : string)
+setScriptFile(value : string)
+setScriptUrl(value : string)
+setSecurePort(value : int)
+setUrl(value : string)
+validateCsrfToken(clientSuppliedToken : string = null) : bool
-validateCsrfTokenInternal(clientSuppliedToken : string, trueToken : string) : bool
}
class yii.web.Request extends yii.base.Request
interface yii.web.RequestParserInterface {
+parse(rawBody : string, contentType : string) : array
}
class yii.web.Response {
+{static}EVENT_AFTER_PREPARE = "afterPrepare"
+{static}EVENT_AFTER_SEND = "afterSend"
+{static}EVENT_BEFORE_SEND = "beforeSend"
+{static}FORMAT_HTML = "html"
+{static}FORMAT_JSON = "json"
+{static}FORMAT_JSONP = "jsonp"
+{static}FORMAT_RAW = "raw"
+{static}FORMAT_XML = "xml"
+acceptMimeType : string
+acceptParams : array = []
+charset : string
+content : string
+data : mixed
+format : string = "html"
+formatters : array = []
+httpStatuses : array = [
\t100 => "Continue",
\t101 => "Switching Protocols",
\t102 => "Processing",
\t118 => "Connection timed out",
\t200 => "OK",
\t201 => "Created",
\t202 => "Accepted",
\t203 => "Non-Authoritative",
\t204 => "No Content",
\t205 => "Reset Content",
\t206 => "Partial Content",
\t207 => "Multi-Status",
\t208 => "Already Reported",
\t210 => "Content Different",
\t226 => "IM Used",
\t300 => "Multiple Choices",
\t301 => "Moved Permanently",
\t302 => "Found",
\t303 => "See Other",
\t304 => "Not Modified",
\t305 => "Use Proxy",
\t306 => "Reserved",
\t307 => "Temporary Redirect",
\t308 => "Permanent Redirect",
\t310 => "Too many Redirect",
\t400 => "Bad Request",
\t401 => "Unauthorized",
\t402 => "Payment Required",
\t403 => "Forbidden",
\t404 => "Not Found",
\t405 => "Method Not Allowed",
\t406 => "Not Acceptable",
\t407 => "Proxy Authentication Required",
\t408 => "Request Time-out",
\t409 => "Conflict",
\t410 => "Gone",
\t411 => "Length Required",
\t412 => "Precondition Failed",
\t413 => "Request Entity Too Large",
\t414 => "Request-URI Too Long",
\t415 => "Unsupported Media Type",
\t416 => "Requested range unsatisfiable",
\t417 => "Expectation failed",
\t418 => "I'm a teapot",
\t421 => "Misdirected Request",
\t422 => "Unprocessable entity",
\t423 => "Locked",
\t424 => "Method failure",
\t425 => "Unordered Collection",
\t426 => "Upgrade Required",
\t428 => "Precondition Required",
\t429 => "Too Many Requests",
\t431 => "Request Header Fields Too Large",
\t449 => "Retry With",
\t450 => "Blocked by Windows Parental Controls",
\t451 => "Unavailable For Legal Reasons",
\t500 => "Internal Server Error",
\t501 => "Not Implemented",
\t502 => "Bad Gateway or Proxy Error",
\t503 => "Service Unavailable",
\t504 => "Gateway Time-out",
\t505 => "HTTP Version not supported",
\t507 => "Insufficient storage",
\t508 => "Loop Detected",
\t509 => "Bandwidth Limit Exceeded",
\t510 => "Not Extended",
\t511 => "Network Authentication Required"
]
+isSent : bool = false
+statusText : string = "OK"
+stream : resource|array
+version : string
-_cookies
-_headers : HeaderCollection
-_statusCode : int = 200
+clear()
#defaultFormatters() : array
+getCookies() : CookieCollection
#getDispositionHeaderValue(disposition : string, attachmentName : string) : string
+getHeaders() : HeaderCollection
#getHttpRange(fileSize : int) : array|bool
+getIsClientError() : bool
+getIsEmpty() : bool
+getIsForbidden() : bool
+getIsInformational() : bool
+getIsInvalid() : bool
+getIsNotFound() : bool
+getIsOk() : bool
+getIsRedirection() : bool
+getIsServerError() : bool
+getIsSuccessful() : bool
+getStatusCode() : int
+init()
#prepare()
+redirect(url : string|array, statusCode : int = 302, checkAjax : bool = true) : $this
+refresh(anchor : string = "") : Response
+send()
#sendContent()
+sendContentAsFile(content : string, attachmentName : string, options : array = []) : $this
#sendCookies()
+sendFile(filePath : string, attachmentName : string = null, options : array = []) : $this
#sendHeaders()
+sendStreamAsFile(handle : resource, attachmentName : string, options : array = []) : $this
+setDownloadHeaders(attachmentName : string, mimeType : string = null, inline : bool = false, contentLength : int = null) : $this
+setStatusCode(value : int, text : string = null) : $this
+setStatusCodeByException(e : Exception|.Error) : $this
+xSendFile(filePath : string, attachmentName : string = null, options : array = []) : $this
}
class yii.web.Response extends yii.base.Response
interface yii.web.ResponseFormatterInterface {
+format(response : Response)
}
class yii.web.ServerErrorHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.ServerErrorHttpException extends yii.web.HttpException
class yii.web.Session {
+flashParam : string = "__flash"
+handler : SessionHandlerInterface|array
-_cookieParams : array = [
\t"httponly" => true
]
-_hasSessionId
+addFlash(key : string, value : mixed = true, removeAfterAccess : bool = true)
+close()
+closeSession() : bool
+count() : int
+destroy()
+destroySession(id : string) : bool
+gcSession(maxLifetime : int) : bool
+get(key : string, defaultValue : mixed = null) : mixed
+getAllFlashes(delete : bool = false) : array
+getCookieParams() : array
+getCount() : int
+getFlash(key : string, defaultValue : mixed = null, delete : bool = false) : mixed
+getGCProbability() : float
+getHasSessionId() : bool
+getId() : string
+getIsActive() : bool
+getIterator() : SessionIterator
+getName() : string
+getSavePath() : string
+getTimeout() : int
+getUseCookies() : bool|null
+getUseCustomStorage() : bool
+getUseTransparentSessionID() : bool
+has(key : mixed) : bool
+hasFlash(key : string) : bool
+init()
+offsetExists(offset : mixed) : bool
+offsetGet(offset : int) : mixed
+offsetSet(offset : int, item : mixed)
+offsetUnset(offset : mixed)
+open()
+openSession(savePath : string, sessionName : string) : bool
+readSession(id : string) : string
+regenerateID(deleteOldSession : bool = false)
#registerSessionHandler()
+remove(key : string) : mixed
+removeAll()
+removeAllFlashes()
+removeFlash(key : string) : mixed
+set(key : string, value : mixed)
+setCookieParams(value : array)
-setCookieParamsInternal()
+setFlash(key : string, value : mixed = true, removeAfterAccess : bool = true)
+setGCProbability(value : float)
+setHasSessionId(value : bool)
+setId(value : string)
+setName(value : string)
+setSavePath(value : string)
+setTimeout(value : int)
+setUseCookies(value : bool|null)
+setUseTransparentSessionID(value : bool)
#updateFlashCounters()
+writeSession(id : string, data : string) : bool
}
class yii.web.Session extends yii.base.Component
class yii.web.Session implements IteratorAggregate
class yii.web.Session implements ArrayAccess
class yii.web.Session implements Countable
class yii.web.SessionIterator {
-_key : mixed
-_keys : array
+current() : mixed
+key() : mixed
+next()
+rewind()
+valid() : bool
+__construct()
}
class yii.web.SessionIterator implements Iterator
class yii.web.TooManyRequestsHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.TooManyRequestsHttpException extends yii.web.HttpException
class yii.web.UnauthorizedHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.UnauthorizedHttpException extends yii.web.HttpException
class yii.web.UnprocessableEntityHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.UnprocessableEntityHttpException extends yii.web.HttpException
class yii.web.UnsupportedMediaTypeHttpException {
+__construct(message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.UnsupportedMediaTypeHttpException extends yii.web.HttpException
class yii.web.UploadedFile {
+error : int
+name : string
+size : int
+tempName : string
+type : string
-_files
+getBaseName() : string
+getExtension() : string
+getHasError() : bool
+{static}getInstance(model : yii.base.Model, attribute : string) : UploadedFile
+{static}getInstanceByName(name : string) : null|UploadedFile
+{static}getInstances(model : yii.base.Model, attribute : string) : UploadedFile[]
+{static}getInstancesByName(name : string) : UploadedFile[]
-{static}loadFiles() : array
-{static}loadFilesRecursive(key : string, names : mixed, tempNames : mixed, types : mixed, sizes : mixed, errors : mixed)
+{static}reset()
+saveAs(file : string, deleteTempFile : bool = true) : bool
+__toString() : string
}
class yii.web.UploadedFile extends yii.base.BaseObject
class yii.web.UrlManager {
+cache : CacheInterface|string = "cache"
#cacheKey : string = "yii\web\UrlManager"
+enablePrettyUrl : bool = false
+enableStrictParsing : bool = false
+normalizer : UrlNormalizer|array|string|false = false
+routeParam : string = "r"
+ruleConfig : array = [
\t"class" => "yii\web\UrlRule"
]
+rules : array = []
+showScriptName : bool = true
+suffix : string
-_baseUrl
-_hostInfo
-_ruleCache
-_scriptUrl
+addRules(rules : array, append : bool = true)
#buildRules(rules : array) : UrlRuleInterface[]
#canBeCached(rule : yii.web.UrlRuleInterface) : bool
+createAbsoluteUrl(params : string|array, scheme : string|null = null) : string
+createUrl(params : string|array) : string
+getBaseUrl() : string
+getHostInfo() : string
+getScriptUrl() : string
#getUrlFromCache(cacheKey : string, route : string, params : array) : bool|string
+init()
+parseRequest(request : Request) : array|bool
+setBaseUrl(value : string)
+setHostInfo(value : string)
#setRuleToCache(cacheKey, rule : yii.web.UrlRuleInterface)
+setScriptUrl(value : string)
}
class yii.web.UrlManager extends yii.base.Component
class yii.web.UrlNormalizer {
+{static}ACTION_NOT_FOUND = 404
+{static}ACTION_REDIRECT_PERMANENT = 301
+{static}ACTION_REDIRECT_TEMPORARY = 302
+action : int|callable|null = 301
+collapseSlashes : bool = true
+normalizeTrailingSlash : bool = true
#collapseSlashes(pathInfo : string) : string
+normalizePathInfo(pathInfo : string, suffix : string, normalized : bool = false) : string
+normalizeRoute(route : array) : array
#normalizeTrailingSlash(pathInfo : string, suffix : string) : string
}
class yii.web.UrlNormalizer extends yii.base.BaseObject
class yii.web.UrlNormalizerRedirectException {
+scheme : bool|string
+statusCode : int
+url : array|string
+__construct(url : array|string, statusCode : int = 302, scheme : bool|string = false, message : string = null, code : int = 0, previous : Exception = null)
}
class yii.web.UrlNormalizerRedirectException extends yii.base.Exception
class yii.web.UrlRule {
+{static}CREATE_STATUS_PARAMS_MISMATCH = 4
+{static}CREATE_STATUS_PARSING_ONLY = 1
+{static}CREATE_STATUS_ROUTE_MISMATCH = 2
+{static}CREATE_STATUS_SUCCESS = 0
+{static}CREATION_ONLY = 2
+{static}PARSING_ONLY = 1
#createStatus : int|null
+defaults : array = []
+encodeParams : bool = true
+host : string
+mode : int
+name : string
+normalizer : UrlNormalizer|array|false|null
+pattern : string
#placeholders : array = []
+route : string
+suffix : string
+verb : string|array
-_paramRules : array = []
-_routeParams : array = []
-_routeRule : string
-_template : string
+createUrl(manager : UrlManager, route : string, params : array) : string|bool
+getCreateUrlStatus() : null|int
#getNormalizer(manager : UrlManager) : UrlNormalizer|null
#getParamRules() : array
#hasNormalizer(manager : UrlManager) : bool
+init()
+parseRequest(manager : UrlManager, request : Request) : array|bool
-preparePattern()
#substitutePlaceholderNames(matches : array) : array
-translatePattern(allowAppendSlash : bool)
-trimSlashes(string : string) : string
+__toString() : string
}
class yii.web.UrlRule extends yii.base.BaseObject
class yii.web.UrlRule implements yii.web.UrlRuleInterface
interface yii.web.UrlRuleInterface {
+createUrl(manager : UrlManager, route : string, params : array) : string|bool
+parseRequest(manager : UrlManager, request : Request) : array|bool
}
class yii.web.User {
+{static}EVENT_AFTER_LOGIN = "afterLogin"
+{static}EVENT_AFTER_LOGOUT = "afterLogout"
+{static}EVENT_BEFORE_LOGIN = "beforeLogin"
+{static}EVENT_BEFORE_LOGOUT = "beforeLogout"
+absoluteAuthTimeout : int
+absoluteAuthTimeoutParam : string = "__absoluteExpire"
+acceptableRedirectTypes : array = [
\t0 => "text/html",
\t1 => "application/xhtml+xml"
]
+accessChecker : yii.rbac.CheckAccessInterface
+authTimeout : int
+authTimeoutParam : string = "__expire"
+autoRenewCookie : bool = true
+enableAutoLogin : bool = false
+enableSession : bool = true
+identityClass : string
+identityCookie : array = [
\t"name" => "_identity",
\t"httpOnly" => true
]
+idParam : string = "__id"
+loginUrl : string|array = [
\t0 => "site/login"
]
+returnUrlParam : string = "__returnUrl"
-_access = []
-_identity = false
#afterLogin(identity : IdentityInterface, cookieBased : bool, duration : int)
#afterLogout(identity : IdentityInterface)
#beforeLogin(identity : IdentityInterface, cookieBased : bool, duration : int) : bool
#beforeLogout(identity : IdentityInterface) : bool
+can(permissionName : string, params : array = [], allowCaching : bool = true) : bool
#checkRedirectAcceptable() : bool
#getAccessChecker() : yii.rbac.CheckAccessInterface
#getAuthManager() : yii.rbac.ManagerInterface
+getId() : string|int
+getIdentity(autoRenew : bool = true) : IdentityInterface|null
#getIdentityAndDurationFromCookie() : array|null
+getIsGuest() : bool
+getReturnUrl(defaultUrl : string|array = null) : string
+init()
+login(identity : yii.web.IdentityInterface, duration : int = 0) : bool
+loginByAccessToken(token : string, type : mixed = null) : IdentityInterface|null
#loginByCookie()
+loginRequired(checkAjax : bool = true, checkAcceptHeader : bool = true) : Response
+logout(destroySession : bool = true) : bool
#removeIdentityCookie()
#renewAuthStatus()
#renewIdentityCookie()
#sendIdentityCookie(identity : IdentityInterface, duration : int)
+setIdentity(identity : IdentityInterface|null)
+setReturnUrl(url : string|array)
+switchIdentity(identity : IdentityInterface|null, duration : int = 0)
}
class yii.web.User extends yii.base.Component
class yii.web.UserEvent {
+cookieBased : bool
+duration : int
+identity : IdentityInterface
+isValid : bool = true
}
class yii.web.UserEvent extends yii.base.Event
class yii.web.View {
+{static}EVENT_BEGIN_BODY = "beginBody"
+{static}EVENT_END_BODY = "endBody"
+{static}PH_BODY_BEGIN = "<![CDATA[YII-BLOCK-BODY-BEGIN]]>"
+{static}PH_BODY_END = "<![CDATA[YII-BLOCK-BODY-END]]>"
+{static}PH_HEAD = "<![CDATA[YII-BLOCK-HEAD]]>"
+{static}POS_BEGIN = 2
+{static}POS_END = 3
+{static}POS_HEAD = 1
+{static}POS_LOAD = 5
+{static}POS_READY = 4
+assetBundles : AssetBundle[] = []
+css : array = []
+cssFiles : array = []
+js : array = []
+jsFiles : array = []
+linkTags : array = []
+metaTags : array = []
+title : string
-_assetManager
+beginBody()
+clear()
+endBody()
+endPage(ajaxMode : bool = false)
+getAssetManager() : yii.web.AssetManager
+head()
+registerAssetBundle(name : string, position : int|null = null) : AssetBundle
#registerAssetFiles(name : string)
+registerCsrfMetaTags()
+registerCss(css : string, options : array = [], key : string = null)
+registerCssFile(url : string, options : array = [], key : string = null)
+registerJs(js : string, position : int = 4, key : string = null)
+registerJsFile(url : string, options : array = [], key : string = null)
+registerLinkTag(options : array, key : string = null)
+registerMetaTag(options : array, key : string = null)
+renderAjax(view : string, params : array = [], context : object = null) : string
#renderBodyBeginHtml() : string
#renderBodyEndHtml(ajaxMode : bool) : string
#renderHeadHtml() : string
+setAssetManager(value : yii.web.AssetManager)
}
class yii.web.View extends yii.base.View
class yii.web.ViewAction {
+defaultView : string = "index"
+layout : mixed
+viewParam : string = "view"
+viewPrefix : string = "pages"
#render(viewName : string) : string
#resolveViewName() : string
+run()
}
class yii.web.ViewAction extends yii.base.Action
class yii.web.XmlResponseFormatter {
+contentType : string = "application/xml"
+encoding : string
+itemTag : string = "item"
+rootTag : string = "response"
+useObjectTags : bool = true
+useTraversableAsArray : bool = true
+version : string = 1.0
#buildXml(element : DOMElement, data : mixed)
+format(response : Response)
#formatScalarValue(value : int|string|bool|float) : string
#getValidXmlElementName(name : mixed) : string
#isValidXmlName(name : mixed) : bool
}
class yii.web.XmlResponseFormatter extends yii.base.Component
class yii.web.XmlResponseFormatter implements yii.web.ResponseFormatterInterface
class yii.web.YiiAsset {
+depends = [
\t0 => "yii\web\JqueryAsset"
]
+js = [
\t0 => "yii.js"
]
+sourcePath = "@yii/assets"
}
class yii.web.YiiAsset extends yii.web.AssetBundle
class m160313_153426_session_init {
+down()
+up()
}
class m160313_153426_session_init extends yii.db.Migration
@enduml
|
b71fd9b9af1e2af82de2f2431edc21d138abd742 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.puml | 22c2dd7d0c8aac7c105667eefa01958ec0ab5b37 | [] | 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 | 110 | puml | @startuml
class TeleType {
Awake() : void
Start() : IEnumerator
}
MonoBehaviour <|-- TeleType
@enduml
|
ad5a6b3f53bbce4c0e4819cc0aa0dbae380298e7 | 188aa3bd1c4fc0a88cab9726c2f2299f147e70d8 | /docs/UC_02/UC02_MD.puml | 80419e71fb6b3ebf2a56281d44df5f8fa2a503b6 | [] | no_license | botelho-io/lapr2-2020-g029 | c6a3c15bace1145c94c0495ac5f8ce54b7be478c | 1834bf842e5ae1f94d20ab61dad8e8124fc9f61b | refs/heads/master | 2023-08-17T00:53:42.364156 | 2020-06-14T22:29:10 | 2020-06-14T22:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 884 | puml | @startuml MD
hide methods
left to right direction
class App {
}
class Organization {
- String name
}
class Collaborator {
- String name
- String email
- String password
}
class Task {
- String id
- String description
- Integer durationInHours
- Double costPerHourOfJuniorEur
- String category
}
class User {
- String name
- String email
- String password
}
Collaborator "0,1" -- "1" User : acts as >
Collaborator "1" -- "*" Task : creates >
Organization "1" -- "1,..." Collaborator : has >
Organization "1" -- "*" Task : publishes >
App "1" -- "*" Organization : has >
@enduml
|
022114c6fd9651aceb973f9a19d66f49bf6250c1 | 064cd6eb85cbb2af72c1be6d192569e244e90ba6 | /src/main/java/oop/assignment3/ex45/exercise45_Diagram.puml | efe0fbf6168d79251d2a504910a824ff0585f35e | [] | no_license | Awesome-wolf-101/ashby-cop3330-assignment3 | dea3a5009db3341e9ab0c9fb48752969cb7ca2da | 5c943f85831fd03e966c3ed52acdcdf03a82cca1 | refs/heads/master | 2023-06-04T17:09:10.387582 | 2021-06-21T03:52:15 | 2021-06-21T03:52:15 | 377,309,711 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 227 | puml | @startuml
'https://plantuml.com/sequence-diagram
class Application{
+main()
}
class WordFinder{
+ WordReplacer(String InputString)
+FileWriter(String InputString, String NewFileName)
}
Application o-> WordFinder
@enduml |
c14669a7e2045508a9dd700cba57a9cc8f7888f3 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyCustomerAddShippingAddressIdAction.puml | 68072ad80e74e663342160ab6aeba627f9942e40 | [] | 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 | 501 | 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 MyCustomerAddShippingAddressIdAction [[MyCustomerAddShippingAddressIdAction.svg]] extends MyCustomerUpdateAction {
action: String
addressId: String
addressKey: String
}
interface MyCustomerUpdateAction [[MyCustomerUpdateAction.svg]] {
action: String
}
@enduml
|
6c45db87e7aeedd50a484068c83704f0e65152c8 | cf8eccdffbcf646956ae7070f26762f3a5a3900a | /documentacion/uml/diagrama_clase_movdelos_controladores_v2.plantuml | a04b493561c9eeb4de7b35c1f39452bd8610ba80 | [] | no_license | LaNsDiego/LaravelGestion | 009fc8fd6b846ef81c277e17fbee66e9c0b9446d | 5a8ec3826b9f866fb21222389c87662a63b086bb | refs/heads/master | 2022-05-01T03:46:15.627838 | 2019-12-02T20:24:40 | 2019-12-02T20:24:40 | 215,569,987 | 0 | 0 | null | 2022-03-26T01:32:03 | 2019-10-16T14:34:05 | PHP | UTF-8 | PlantUML | false | false | 5,533 | plantuml | @startuml Diagrama de clases 2.0
package "Models"{
class Usuario {
+Id : int
+Usuario : string
+Clave : string
+AutentificarUsuario()
+SalirSesion()
+ListarProyectos()
+AsignarProyecto(ProyectoId,RolId)
}
class Proyecto {
+Id
+Codigo
+Nombre
+FechaInicio
+FechaTermino
+UsuarioJefeId
+MetodologiaId
+Guardar()
+ObtenerPorId(ProyectoId)
+ListarProyecto();
}
class Cronograma{
+Id
+ProyectoId
+FechaInicio
+FechaTermino
+Guardar()
+ListarCronogramaDetalle()
+ObtenerPorId(CronogramaId)
}
class CronogramaFase{
+Id
+Nombre
+CronogramaId
}
class CronogramaElementoConfiguracion{
+Id
+Codigo
+Nombre
+CronogramaFaseId
}
class VersionECS{
+Id
+ElementoConfiguracionId
+Version
+FechaInicio
+FechaTermino
+UsuarioResponsableId
}
class SolicitudCambio{
+Id
+Codigo
+MiembroSolicitanteId
+Objetivo
+Descripcion
+MiembroJefeId
+Estado:string
+ObtenerPorId(int:SolicitudCambioIdd)
}
class InformeCambio{
+Id
+SolicitudCambioId
+Descripcion
+Tiempo
+CostoEconomico
+ImpactoProblema
}
class DetalleInforme {
+Id
+UsuarioResponsableId
+CronogramaElementoConfiguracionId
+Tiempo
+Costo
}
class OrdenCambio {
+Id
+SolicitudCambioId
+NumeroCambio
+NumeroVersion
+NombreSolicitante
+FechaAprobación
+FechaInicio
+FechaTermino
+Descripcion
}
class OrdenCambioDetalle{
+Id
+OrdenCambioId
+CronogramaElementoConfiguracionId
+MiembroResponsableId
+FechaInicio
+FechaTermino
}
class TareaECS{
+Id
+Codigo
+VersionECSId
+UsuarioResponsableId
+FechaInicio
+FechaTermino
+Descripcion
+Justificacion
+PorcentajeAvance
+UrlEvidencia
+CodigoECS : null
+SubirEvidencia(UsuarioId)
+Guardar()
+ListarPorVersion(VersionId)
}
class Metodologia{
+Id
+Nombre
}
class Fase{
+Id
+Nombre
+MetodologiaId
}
class ElementoConfiguracion{
+Id
+Nombre
+Codigo
}
class PlantillaElementoConfiguracion{
+Id
+MetodologiaFaseId
+Codigo
+Nombre
}
' ALEX
class Rol{
+Id
+Nombre
}
class MiembroProyecto{
+Id
+UsuarioMiembroId
+RolId
+ProyectoId
}
}
' RELACIONES DE CLASES
MiembroProyecto "1..1" o-- "1..1" Proyecto : tiene proyecto >
MiembroProyecto "1..1" o-- "1..1" Usuario : tiene usuario >
MiembroProyecto "1..1" o-left- "1..1" Rol : tiene rol >
Metodologia "1..1" o-- "1..*" Fase : tiene fase(s) >
Cronograma "1..1" o-- "1..*" CronogramaFase : tiene fase(s) >
CronogramaFase "1..1" o-- "1..*" CronogramaElementoConfiguracion : tiene elementos(s) >
DetalleInforme o-- InformeCambio
SolicitudCambio "1..1" o-left- "1..*" InformeCambio : tiene informe(s) >
MiembroProyecto "1..1" o-- "1..*" SolicitudCambio : tiene solicitud(s) >
Fase "1..1" o-- "0..*" PlantillaElementoConfiguracion : tiene >
ElementoConfiguracion "1..1" o-- "0..*" PlantillaElementoConfiguracion : tiene >
VersionECS "1..*" o-- "0..*" TareaECS : tiene varia(s) >
CronogramaElementoConfiguracion "1..1" o-- "0..*" VersionECS : tiene >
Proyecto "1..1" o-- "0..1" Metodologia : tiene >
Proyecto "1..1" -right-o "1..1" Usuario : tiene jefe >
Proyecto "1..1" o-- "0..1" Cronograma : tiene >
OrdenCambio "1..1" *-- "0..*" OrdenCambioDetalle : tiene >
SolicitudCambio "1..1" *-- "1..*" OrdenCambio : tiene <
package Controller{
class ProyectoController{
+FrmAgregar()
+ActAgregar(Proyecto $ObjProyecto,Cronograma $ObjCronograma,List<Fase> listadoFase , List<ElementoConfiguracion> listadoElementoConfiguracion)
+FrmListar(int:$UsuarioId)
}
class MetodologiaController{
+FrmAgregar()
+ActAgregar()
+FrmEditar()
+ActEditar()
+ActEliminar()
}
class FaseController(){
+FrmAgregar(int:$MetodologiaId)
+ActAgregar(Fase $ObjFase)
+FrmEditar(int:$FaseId)
}
class PlantillaElementoConfiguracionController{
+FrmAgregar(int:$FaseId)
+ActAgregar(ElementoConfiguracion:$ElementoConfiguracion)
+ActEliminar(int:$ElementoConfiguracionId)
}
class ElementoConfiguracionController(){
+FrmAgregar()
+FrmEditar(int:$ElementoConfiguracionId)
+ActEditar(ElementoConfiguracion $ObjElementoConfiguracion)
+ActAgrear(ElementoConfiguracion $ObjElementoConfiguracion)
}
class SolicitudCambioController{
+FrmAgregar(int:UsuarioId)
+FrmEditar(int:SolicitudCambio)
+FrmListar(int:UsuarioId)
+FrmAtender(int:UsuarioId)
}
' class InformeCambioController{
' +FrmAgregar(int:$SolicitudCambioId)
' +ActAgregarInforme(InformeCambio $ObjInformeCambio)
' }
class OrdenCambioController{
+FrmAgregar(int:$UsuarioId)
+FrmListar(int:$UsuarioId)
+FrmEditar(int:$UsuarioId)
}
}
@enduml |
bc5641106cfc891db8996507d30ecef94abbda76 | 3820d826e6897b9bb6e1d918522d1330c54ff641 | /docs/DecoratorPatternClass.puml | bd24a4d01187483f0be098d05b3ababed805a07c | [] | no_license | kckct/senao-design-pattern | 87726c2aade0f5701941cc5d440ce4f2bee206e3 | 0881fb069418e1e3621a98760a29355b3ae4a0d1 | refs/heads/master | 2021-09-12T23:23:32.520038 | 2018-04-22T16:23:53 | 2018-04-22T16:23:53 | 114,066,921 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,032 | puml | @startuml
class Order {
- creditCard
+ getPrice()
+ getOther()
}
class CreditCardFactory {
{static} + create()
}
interface CreditCard {
+ processPrice()
+ processOther()
}
class CTBC {
+ processPrice()
+ processOther()
}
class Taishin {
+ processPrice()
+ processOther()
}
class Citibank {
+ processPrice()
+ processOther()
}
class processService {
{static} + calculateDefaultPrice()
{static} + getDefaultOther()
}
class processDecorator {
{static} + calculateRebate()
{static} + calculateDiscount()
{static} + getCoupon()
{static} + getExtra()
{static} + getPoint()
}
Order *-right-> CreditCardFactory
CreditCardFactory .-> CreditCard
CreditCard <|.. CTBC
CreditCard <|.. Taishin
CreditCard <|.. Citibank
CreditCardFactory *-> CTBC
CreditCardFactory *-> Taishin
CreditCardFactory *-> Citibank
CTBC *-> processService
CTBC *-> processDecorator
Taishin *-> processService
Taishin *-> processDecorator
Citibank *-> processService
Citibank *-> processDecorator
@enduml
|
2055cf14fc1453781bd5e6e78df62c23948d6c17 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/inspectors/ClipInspector/ClipInspectorCurveEditor.puml | 657402b6f8200487d531f30e44a35d42bc41a003 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,372 | puml | @startuml
class ClipInspectorCurveEditor {
<<const>> k_HeaderHeight : float = 30
<<const>> k_PresetHeight : float = 30
+ {static} <<readonly>> kDisableTrackTime : double
m_trackTime : double
+ trackTime : double <<get>> <<set>>
+ headerString : string <<get>> <<set>>
+ ClipInspectorCurveEditor()
{static} ConsumeMouseEvents(rect:Rect) : void
DrawPresets(position:Rect, curveLibrary:PresetLibrary) : void
DrawTrackHead(clientRect:Rect) : void
DrawLegend(r:Rect) : void
{static} LabelName(propertyName:string) : string
+ SetCurves(curves:AnimationCurve[], bindings:EditorCurveBinding[]) : void
ProcessUpdates() : void
+ SetSelected(curve:AnimationCurve) : void
UpdateSelectionColors() : void
+ {static} CurveField(title:GUIContent, property:SerializedProperty, onClick:Action<SerializedProperty>) : void
{static} DrawCurve(controlRect:Rect, property:SerializedProperty, onClick:Action<SerializedProperty>, fgColor:Color, bgColor:Color) : Rect
}
class "Action`2"<T1,T2> {
}
ClipInspectorCurveEditor --> "m_CurveEditor" CurveEditor
ClipInspectorCurveEditor --> "m_CurveUpdatedCallback<AnimationCurve,EditorCurveBinding>" "Action`2"
ClipInspectorCurveEditor o-> "m_TextContent" GUIContent
ClipInspectorCurveEditor --> "m_LabelStyle" GUIStyle
ClipInspectorCurveEditor --> "m_LegendStyle" GUIStyle
@enduml
|
9800ea477e2658d53f333d5f76b22bd448fb4ce1 | 53171f99b9c35cbc19968d53c949e5938f6e8047 | /UML/class_diagrams/Internal/CalendricalHelper.puml | 4d3e171c55647c130e5e63439b8c5b7241f8c7ef | [
"MIT"
] | permissive | tockards/Adhan | f40b060331a974a73908f41a7d8003909745d76f | 93239a1634634d1833f56b2ff18f9de5a9c14ac9 | refs/heads/master | 2020-03-28T04:10:46.405943 | 2018-09-12T20:00:18 | 2018-09-12T20:00:18 | 147,698,739 | 0 | 0 | MIT | 2018-09-06T16:00:06 | 2018-09-06T16:00:06 | null | UTF-8 | PlantUML | false | false | 261 | puml | @startuml
class CalendricalHelper {
+{static} julianDay(int year, int month, int day) : double
+{static} julianDay(Date date) : double
+{static} julianDay(int year, int month, int day, double hours) : double
+{static} julianCentury(double JD) : double
}
@enduml |
ec4cf7aaf7487721b3f47123468ab4381edbc2d4 | b4f12bc86f94818e00e24c8ad164d282f6ef1e8e | /uml/NetworkClass3.puml | 8c2708f8ac962b321880d40de159760432f71ac1 | [] | no_license | nange77456/OrderingSystem-Chef | a90ad55cf74ee07db9c2a54d50d5358aaaa9a2bd | e8a4dd75a60cecf93578291d09abe8fb1c192579 | refs/heads/main | 2023-05-24T12:24:23.555084 | 2021-06-15T09:45:46 | 2021-06-15T09:45:46 | 358,181,814 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 263 | puml | @startuml
'https://plantuml.com/class-diagram
skinparam ClassAttributeIconSize 0
abstract class OkCallback{
+onSuccess() : void
+onError() : void
}
interface Callback{
+onResponse() : void
+onFailure() : void
}
OkCallback ..|> Callback
@enduml |
7c4e5f310212039fa3dfa2eadaf4c39376c11f8f | 09eb040a55573afb2571fc544a2b5e0e28b87c14 | /Blockchain/task/src/blockchain/CommandPattern.puml | 86b0182a9666f8ac4bf4a80ffaf6727a0b68fbaa | [] | no_license | TiGeorge/Blockchain | 73afde39021d1b327a2f4d58e82e45ebbc6a0c77 | ce7e8304101d462e08d88692a8213cd8fee4d8c3 | refs/heads/master | 2022-11-13T23:45:48.215026 | 2020-07-11T06:44:59 | 2020-07-11T06:44:59 | 266,570,177 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 331 | puml | @startuml
Invoker <|-- Client
Receiver <|-- Client
Command1 <|-- Client
Command <|-- Command1
Command *-- Invoker
interface Command{
+execute()
}
class Invoker{
-command
+setCommand(command)
+executeCommand()
}
class Command1 {
-receiver
-params
+Command1(receiver, params)
+execute()
}
@enduml |
430c21281ac31f2154d13fa942a1abd76572a8d8 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/SearchKeyword.puml | 911edc8cc27e9ce63ce6bc15cc26bdf4cbace3d9 | [] | 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 | 566 | 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 SearchKeyword [[SearchKeyword.svg]] {
text: String
suggestTokenizer: [[SuggestTokenizer.svg SuggestTokenizer]]
}
interface SearchKeywords [[SearchKeywords.svg]] {
}
SearchKeyword --> SearchKeywords #green;text:green : "/^[a-z]{2}(-[A-Z]{2})?$/"
SearchKeyword --> SearchKeywords #green;text:green : "/^[a-z]{2}(-[A-Z]{2})?$/"
@enduml
|
93ee85a9d2c7bf67b787c8bdc827d5cf43238446 | d5d353d48139d7d6b31f84400898962103640165 | /design/data_model/shared-solution.puml | ff02999509c879e1de631c736abd3802e9fabbf5 | [] | no_license | Daemon712/foobarbaz-backend | a68d4a4623453f8a0ad2054ae1b31af1ba40d9e3 | d33c21570c22147348551bd9bbaa927f7838ac50 | refs/heads/master | 2021-03-27T16:04:49.346991 | 2017-06-15T22:38:56 | 2017-06-15T22:38:56 | 69,506,475 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,020 | puml | @startuml
class User {
String username
String name
String password
}
class Challenge {
long challengeId
String name
String shortDescription
User author
Date created
int rating
int difficulty
String[] tags
}
enum SolutionStatus {
EMPTY
SUCCESS
FAILED
ERROR
}
class SharedSolution {
long solutionId
Challenge challenge
User author
SolutionStatus status
String implementation
String comment
Date created
}
class SharedTestResult {
String testName
SolutionStatus status
String message
}
class SharedSolutionComment {
long commentId
User author
String text
Date created
List<User> likes
}
Challenge -> User
SharedSolution -> Challenge
User <- SharedSolution
SharedSolution <-> User
SharedSolution -- SolutionStatus
SharedSolution *-- SharedTestResult
SolutionStatus -- SharedTestResult
SharedSolutionComment --> SharedSolution
SharedSolutionComment -> User
SharedSolutionComment <-> User
@enduml |
e8b424b1aec6799c92a87aa2c486ff48517afd03 | 644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc | /docs/uml/software/ui/MenuView.puml | 58e10cdc4e20318147a866033f780ff8b16558c2 | [] | no_license | tzAcee/photonized | c929a6c04bedd0304a4e427d6c2895cdf73568d3 | aa53ed7bda18959c58467fe4560dc3ff4e1ae422 | refs/heads/main | 2023-05-03T15:13:31.148910 | 2021-05-25T13:55:17 | 2021-05-25T13:55:17 | 316,536,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 350 | puml | @startuml
class MenuView {
- _path : string
+ MenuView(args:string[], level:int, mh:List<MethodsHolder>, start_path:string)
+ configure() : void
+ build() : void
+ show() : void
+ render() : void
}
class "List`1"<T> {
}
ConsoleMenu <|-- MenuView
IMenuView <|-- MenuView
MenuView --> "_methods<MethodsHolder>" "List`1"
@enduml
|
0b017b841873a24a6fa55ae43c0998a104d32229 | f843c9d5922c2ef92cc3ca50f20f44184ed27ef8 | /src/main/java/Proxy/Images/README.puml | 159e4f13ba272e1c57fc60e7124fc5f9c6a9b583 | [] | no_license | yvanross/LOG121-GOF-exemples | c80a4d1b29f0b953e4666e100a82d4fde1923bea | 7cff56d019b40901ed54b85a62d69317cf61da59 | refs/heads/master | 2023-05-04T07:39:48.742354 | 2021-05-21T13:43:50 | 2021-05-21T13:43:50 | 261,219,115 | 2 | 25 | null | 2021-01-25T22:44:14 | 2020-05-04T15:11:44 | Java | UTF-8 | PlantUML | false | false | 439 | puml | @startuml Diagramme de classe
class ProxyTester {
+main(String[] args)
}
class JTabbedPane
class JFrame
ProxyTester *-- JFrame
JFrame *-- JTabbedPane
JTabbedPane *-- "*" JLabel
interface Icon {
void paintIcon(Component c, Graphics g, int x, int y);
int getIconWidth();
int getIconHeight();
}
class ImageProxy implements Icon
JLabel *-- ImageProxy
class ImageIcon implements Icon
ImageProxy *-- ImageIcon
@enduml |
b14f1ead44bbe858083d4bcd09c983d18d5956bb | e5e0d04a44fe67064105c32404e11f52d66ce464 | /docs/plantuml/ConfigStorage.puml | 1f28b8961b72fcba872203304cf4db3991fb3857 | [] | no_license | durianpancakes/tp | 19902f0c344eca4544cda3caabb85c70d174853a | 7f9ff12f6d81a47bc208e64dcbcecb6dbf8687a5 | refs/heads/master | 2023-01-07T01:13:07.145901 | 2020-11-08T13:10:16 | 2020-11-08T13:10:16 | 299,612,457 | 0 | 0 | null | 2020-09-29T12:36:16 | 2020-09-29T12:36:15 | null | UTF-8 | PlantUML | false | false | 760 | puml | @startuml
hide circles
skinparam classAttributeIconSize 0
skinparam classBackgroundColor Tan
abstract class StorageManager {
+ StorageManager(:String)
- createDataFile():boolean
}
class ConfigStorageManager {
+ ConfigStorageManager(:String)
+ saveData(:ConfigParameter)
+ loadData()(:ConfigParameter)
}
class ConfigParameter {
- name(:String)
- recommendedHours(:int)
- hasProgramRan(:boolean)
}
class ConfigEncoder {
- name(:String)
- recommendedHours(:int)
- hasProgramRan(:boolean)
}
class ConfigDecoder {
- splitEncodedConfig(:StringArray)
- name(:String)
- recommendedHours(:int)
- hasProgramRan(:boolean)
}
StorageManager --> ConfigStorageManager
ConfigEncoder --> ConfigParameter
@enduml |
fc05f250071af29227df8ed43db1d205d209adaf | 2a55af90da354874b8bae9e25185474f446cd695 | /service/service.puml | 8ae55cfcf2a08e32720764dec8f2d5f2e564e3e4 | [
"Apache-2.0"
] | permissive | sunw31/boilerplate | acb9adfd4923c6cdc18e095701f5de92c24c34a7 | e7197a5ce99c0fa8219117b5765907ecbd5c3017 | refs/heads/master | 2020-12-29T05:26:08.590998 | 2020-02-04T03:45:41 | 2020-02-04T03:50:22 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 29,568 | puml | @startuml
package "debug" {
class "Client" as debug.Client <<E,#FFCC00>> {
+Id: string
+XXX_NoUnkeyedLiteral: struct{}
+XXX_unrecognized: []byte
+XXX_sizecache: int32
+Reset()
+String(): string
+ProtoMessage()
+Descriptor(): ([]byte, []int)
+XXX_Unmarshal(b: []byte): error
+XXX_Marshal(b: []byte, deterministic: bool): ([]byte, error)
+XXX_Merge(src: proto.Message)
+XXX_Size(): int
+XXX_DiscardUnknown()
+GetId(): string
+Validate(): error
+MarshalZerologObject(e: zerolog.Event)
}
}
package "debug" {
interface "ClientRepository" as debug.ClientRepository {
+Config(: context.Context): (debug.ClientWithContexter, error)
+Connect(: debug.ClientWithContexter): error
}
}
debug.ClientRepository ..> debug.ClientWithContexter : <<return>>
debug.ClientRepository ..> debug.ClientWithContexter : <<use>>
package "debug" {
class "ClientWithContext" as debug.ClientWithContext <<E,#FFCC00>> {
+Context: context.Context
+Client: debug.Clienter
+GetContext(): context.Context
+GetClient(): debug.Clienter
+MarshalZerologObject(e: zerolog.Event)
+String(): string
+Validate(): error
}
}
debug.ClientWithContext --> debug.Clienter
debug.ClientWithContext ..> debug.Clienter : <<return>>
package "debug" {
interface "ClientWithContexter" as debug.ClientWithContexter {
+GetClient(): debug.Clienter
+GetContext(): context.Context
+MarshalZerologObject(: zerolog.Event)
+String(): string
+Validate(): error
}
}
debug.ClientWithContexter ..> debug.Clienter : <<return>>
package "debug" {
interface "Clienter" as debug.Clienter {
+Descriptor(): ([]byte, []int)
+GetId(): string
+MarshalZerologObject(: zerolog.Event)
+ProtoMessage()
+Reset()
+String(): string
+Validate(): error
+XXX_DiscardUnknown()
+XXX_Marshal(: []byte, : bool): ([]byte, error)
+XXX_Merge(: proto.Message)
+XXX_Size(): int
+XXX_Unmarshal(: []byte): error
}
}
package "debug" {
interface "TopicClientWithContexter" as debug.TopicClientWithContexter {
+Publish(ctx: context.Context, c: <-chan debug.ClientWithContexter)
+Publisher(ctx: context.Context): chan<- debug.ClientWithContexter
+Subscribe(c: chan<- debug.ClientWithContexter)
}
}
package "debug" {
interface "TopicClienter" as debug.TopicClienter {
+Publish(ctx: context.Context, c: <-chan debug.Clienter)
+Publisher(ctx: context.Context): chan<- debug.Clienter
+Subscribe(c: chan<- debug.Clienter)
}
}
package "debug" {
class "mapClientWithContexter" as debug.mapClientWithContexter <<V,Orchid>> {
-mu: sync.RWMutex
-m: map[interface{}]*debug.tClientWithContexter
-get(topic: interface{}): debug.TopicClientWithContexter
}
}
package "debug" {
class "mapClienter" as debug.mapClienter <<V,Orchid>> {
-mu: sync.RWMutex
-m: map[interface{}]*debug.tClienter
-get(topic: interface{}): debug.TopicClienter
}
}
package "debug" {
class "tClientWithContexter" as debug.tClientWithContexter <<E,#FFCC00>> {
-mu: sync.RWMutex
-c: []chan<- debug.ClientWithContexter
+Publish(ctx: context.Context, c: <-chan debug.ClientWithContexter)
+Publisher(ctx: context.Context): chan<- debug.ClientWithContexter
+Subscribe(c: chan<- debug.ClientWithContexter)
}
}
package "debug" {
class "tClienter" as debug.tClienter <<E,#FFCC00>> {
-mu: sync.RWMutex
-c: []chan<- debug.Clienter
+Publish(ctx: context.Context, c: <-chan debug.Clienter)
+Publisher(ctx: context.Context): chan<- debug.Clienter
+Subscribe(c: chan<- debug.Clienter)
}
}
package "terminate" {
interface "TerminateGetContexter" as terminate.TerminateGetContexter {
+GetContext(): context.Context
}
}
package "terminate" {
interface "TopicContextContext" as terminate.TopicContextContext {
+Publish(ctx: context.Context, c: <-chan context.Context)
+Publisher(ctx: context.Context): chan<- context.Context
+Subscribe(c: chan<- context.Context)
}
}
package "terminate" {
class "mapContextContext" as terminate.mapContextContext <<V,Orchid>> {
-mu: sync.RWMutex
-m: map[interface{}]*terminate.tContextContext
-get(topic: interface{}): terminate.TopicContextContext
}
}
package "terminate" {
class "tContextContext" as terminate.tContextContext <<E,#FFCC00>> {
-mu: sync.RWMutex
-c: []chan<- context.Context
+Publish(ctx: context.Context, c: <-chan context.Context)
+Publisher(ctx: context.Context): chan<- context.Context
+Subscribe(c: chan<- context.Context)
}
}
package "errs" {
class "Error" as errs.Error <<E,#FFCC00>> {
+Code: fmt.Stringer
+Message: string
+Op: string
+Err: error
-errorMessage: string
+Error(): string
+MarshalZerologObject(e: zerolog.Event)
}
}
package "topic" {
interface "ChanT" as topic.ChanT
}
package "topic" {
interface "Ier" as topic.Ier
}
package "topic" {
interface "T" as topic.T
}
package "topic" {
class "TWithContext" as topic.TWithContext <<E,#FFCC00>> {
+Context: context.Context
+T: topic.Ier
+GetContext(): context.Context
+GetT(): topic.Ier
+MarshalZerologObject(e: zerolog.Event)
+String(): string
+Validate(): error
}
}
topic.TWithContext --> topic.Ier
topic.TWithContext ..> topic.Ier : <<return>>
package "topic" {
interface "TopicChanT" as topic.TopicChanT {
+Publish(ctx: context.Context, c: <-chan topic.ChanT)
+Publisher(ctx: context.Context): chan<- topic.ChanT
+Subscribe(c: chan<- topic.ChanT)
}
}
package "topic" {
class "mapChanT" as topic.mapChanT <<V,Orchid>> {
-mu: sync.RWMutex
-m: map[interface{}]*topic.tChanT
-get(topic: interface{}): topic.TopicChanT
}
}
package "topic" {
class "tChanT" as topic.tChanT <<E,#FFCC00>> {
-mu: sync.RWMutex
-c: []chan<- topic.ChanT
+Publish(ctx: context.Context, c: <-chan topic.ChanT)
+Publisher(ctx: context.Context): chan<- topic.ChanT
+Subscribe(c: chan<- topic.ChanT)
}
}
package "config" {
class "KV" as config.KV <<V,Orchid>> {
+K: string
+V: interface{}
}
}
package "meta" {
class "Meta" as meta.Meta <<E,#FFCC00>> {
+Name: string
+Semver: string
+Channel: string
+Runtime: *meta.Runtime
+Serial: string
+Build: time.Time
+Vcs: *meta.Vcs
+XXX_NoUnkeyedLiteral: struct{}
+XXX_unrecognized: []byte
+XXX_sizecache: int32
+MarshalZerologObject(e: zerolog.Event)
+Reset()
+String(): string
+ProtoMessage()
+Descriptor(): ([]byte, []int)
+XXX_Unmarshal(b: []byte): error
+XXX_Marshal(b: []byte, deterministic: bool): ([]byte, error)
+XXX_Merge(src: proto.Message)
+XXX_Size(): int
+XXX_DiscardUnknown()
+GetName(): string
+GetSemver(): string
+GetChannel(): string
+GetRuntime(): *meta.Runtime
+GetSerial(): string
+GetBuild(): time.Time
+GetVcs(): *meta.Vcs
+Validate(): error
+JSON(): []byte
}
}
meta.Meta --> meta.Runtime
meta.Meta --> meta.Vcs
meta.Meta ..> meta.Runtime : <<return>>
meta.Meta ..> meta.Vcs : <<return>>
package "meta" {
interface "Metaer" as meta.Metaer {
+Descriptor(): ([]byte, []int)
+GetBuild(): time.Time
+GetChannel(): string
+GetName(): string
+GetRuntime(): *meta.Runtime
+GetSemver(): string
+GetSerial(): string
+GetVcs(): *meta.Vcs
+JSON(): []byte
+MarshalZerologObject(: zerolog.Event)
+ProtoMessage()
+Reset()
+String(): string
+Validate(): error
+XXX_DiscardUnknown()
+XXX_Marshal(: []byte, : bool): ([]byte, error)
+XXX_Merge(: proto.Message)
+XXX_Size(): int
+XXX_Unmarshal(: []byte): error
}
}
meta.Metaer ..> meta.Runtime : <<return>>
meta.Metaer ..> meta.Vcs : <<return>>
package "meta" {
class "Runtime" as meta.Runtime <<E,#FFCC00>> {
+Version: string
+Arch: string
+Os: string
+XXX_NoUnkeyedLiteral: struct{}
+XXX_unrecognized: []byte
+XXX_sizecache: int32
+Reset()
+String(): string
+ProtoMessage()
+Descriptor(): ([]byte, []int)
+XXX_Unmarshal(b: []byte): error
+XXX_Marshal(b: []byte, deterministic: bool): ([]byte, error)
+XXX_Merge(src: proto.Message)
+XXX_Size(): int
+XXX_DiscardUnknown()
+GetVersion(): string
+GetArch(): string
+GetOs(): string
+Validate(): error
}
}
package "meta" {
class "Vcs" as meta.Vcs <<E,#FFCC00>> {
+Hash: string
+Branch: string
+Tag: string
+XXX_NoUnkeyedLiteral: struct{}
+XXX_unrecognized: []byte
+XXX_sizecache: int32
+Reset()
+String(): string
+ProtoMessage()
+Descriptor(): ([]byte, []int)
+XXX_Unmarshal(b: []byte): error
+XXX_Marshal(b: []byte, deterministic: bool): ([]byte, error)
+XXX_Merge(src: proto.Message)
+XXX_Size(): int
+XXX_DiscardUnknown()
+GetHash(): string
+GetBranch(): string
+GetTag(): string
+Validate(): error
}
}
package "now" {
interface "TopicContextContext" as now.TopicContextContext {
+Publish(ctx: context.Context, c: <-chan context.Context)
+Publisher(ctx: context.Context): chan<- context.Context
+Subscribe(c: chan<- context.Context)
}
}
package "now" {
class "mapContextContext" as now.mapContextContext <<V,Orchid>> {
-mu: sync.RWMutex
-m: map[interface{}]*now.tContextContext
-get(topic: interface{}): now.TopicContextContext
}
}
package "now" {
class "tContextContext" as now.tContextContext <<E,#FFCC00>> {
-mu: sync.RWMutex
-c: []chan<- context.Context
+Publish(ctx: context.Context, c: <-chan context.Context)
+Publisher(ctx: context.Context): chan<- context.Context
+Subscribe(c: chan<- context.Context)
}
}
package "semaphore" {
interface "Semaphore" as semaphore.Semaphore {
+Acquire(ctx: context.Context, n: int): error
+GetCount(): int
+GetLimit(): int
+Release(n: int): int
+SetLimit(limit: int)
+TryAcquire(n: int): bool
}
}
package "slog" {
interface "Closer" as slog.Closer {
+Close(): error
}
}
package "slog" {
class "HookMeta" as slog.HookMeta <<V,Orchid>> {
+Run(e: zerolog.Event, level: zerolog.Level, msg: string)
}
}
package "slog" {
class "StackdriverCloser" as slog.StackdriverCloser <<E,#FFCC00>> {
-client: logging.Client
+Close(): error
}
}
package "slog" {
class "StackdriverLoggingWriter" as slog.StackdriverLoggingWriter <<E,#FFCC00>> {
+Logger: logging.Logger
-parentProjects: string
-projectID: string
-traceIDTemplate: string
+Write(p: []byte): (int, error)
+WriteLevel(level: zerolog.Level, p: []byte): (int, error)
+Flush(): error
+GetTraceIDTemplate(): string
+GetParentProjects(): string
}
}
package "slog" {
class "StackdriverZerologWriter" as slog.StackdriverZerologWriter <<E,#FFCC00>> {
-ctx: context.Context
+Gen(): ([]io.Writer, slog.Closer, error)
+MarshalZerologObject(e: zerolog.Event)
}
}
slog.StackdriverZerologWriter ..> slog.Closer : <<return>>
package "slog" {
class "TraceObject" as slog.TraceObject <<E,#FFCC00>> {
-ctx: context.Context
+MarshalZerologObject(e: zerolog.Event)
}
}
package "slog" {
interface "Tracer" as slog.Tracer {
+GetTraceIDTemplate(): string
}
}
package "slog" {
class "rawJSON" as slog.rawJSON <<E,#FFCC00>> {
+MarshalJSON(): ([]byte, error)
+UnmarshalJSON(b: []byte): error
}
}
package "update" {
interface "UpdateGetContexter" as update.UpdateGetContexter {
+GetContext(): context.Context
}
}
package "event" {
interface "Closer" as event.Closer {
+Close(): error
}
}
package "event" {
class "Event" as event.Event <<E,#FFCC00>> {
+Id: []byte
+Origin: string
+TimePoint: []*event.TimePoint
+XXX_NoUnkeyedLiteral: struct{}
+XXX_unrecognized: []byte
+XXX_sizecache: int32
+Validate(): error
+AddTimePoint(tag: string, timeStamp: time.Time): (event.Eventer, error)
+GetKey(): []byte
+Reset()
+String(): string
+ProtoMessage()
+Descriptor(): ([]byte, []int)
+XXX_Unmarshal(b: []byte): error
+XXX_Marshal(b: []byte, deterministic: bool): ([]byte, error)
+XXX_Merge(src: proto.Message)
+XXX_Size(): int
+XXX_DiscardUnknown()
+GetId(): []byte
+GetOrigin(): string
+GetTimePoint(): []*event.TimePoint
+MarshalZerologObject(e: zerolog.Event)
}
}
event.Event ..> event.Eventer : <<return>>
package "event" {
class "EventWithContext" as event.EventWithContext <<E,#FFCC00>> {
+Context: context.Context
+Event: event.Eventer
+GetContext(): context.Context
+GetEvent(): event.Eventer
+MarshalZerologObject(e: zerolog.Event)
+String(): string
+Validate(): error
}
}
event.EventWithContext --> event.Eventer
event.EventWithContext ..> event.Eventer : <<return>>
package "event" {
interface "EventWithContexter" as event.EventWithContexter {
+GetContext(): context.Context
+GetEvent(): event.Eventer
+MarshalZerologObject(: zerolog.Event)
+String(): string
+Validate(): error
}
}
event.EventWithContexter ..> event.Eventer : <<return>>
package "event" {
interface "Eventer" as event.Eventer {
+AddTimePoint(: string, : time.Time): (event.Eventer, error)
+Descriptor(): ([]byte, []int)
+GetId(): []byte
+GetKey(): []byte
+GetOrigin(): string
+GetTimePoint(): []*event.TimePoint
+MarshalZerologObject(: zerolog.Event)
+ProtoMessage()
+Reset()
+String(): string
+Validate(): error
+XXX_DiscardUnknown()
+XXX_Marshal(: []byte, : bool): ([]byte, error)
+XXX_Merge(: proto.Message)
+XXX_Size(): int
+XXX_Unmarshal(: []byte): error
}
}
event.Eventer ..> event.Eventer : <<return>>
package "keyvalue" {
class "KeyValueWithContext" as keyvalue.KeyValueWithContext <<E,#FFCC00>> {
+Context: context.Context
+KeyValue: keyvalue.KeyValuer
+GetContext(): context.Context
+GetKeyValue(): keyvalue.KeyValuer
+MarshalZerologObject(e: zerolog.Event)
+String(): string
+Validate(): error
}
}
package "keyvalue" {
interface "KeyValueWithContexter" as keyvalue.KeyValueWithContexter {
+GetContext(): context.Context
+GetKeyValue(): keyvalue.KeyValuer
+MarshalZerologObject(: zerolog.Event)
+String(): string
+Validate(): error
}
}
package "event" {
interface "Keyer" as event.Keyer {
+GetKey(): string
+MarshalZerologObject(e: zerolog.Event)
}
}
package "event" {
interface "Loader" as event.Loader {
+Load(: context.Context, : keyvalue.Prefixer): (keyvalue.KeyValuer, error)
}
}
package "event" {
interface "Message" as event.Message {
+MarshalZerologObject(e: zerolog.Event)
+ProtoMessage()
+Reset()
+String(): string
}
}
package "event" {
interface "Saver" as event.Saver {
+Save(: context.Context, : keyvalue.KeyValuer): error
}
}
package "event" {
class "TimePoint" as event.TimePoint <<E,#FFCC00>> {
+Timestamp: timestamp.Timestamp
+Tag: string
+XXX_NoUnkeyedLiteral: struct{}
+XXX_unrecognized: []byte
+XXX_sizecache: int32
+Validate(): error
+Reset()
+String(): string
+ProtoMessage()
+Descriptor(): ([]byte, []int)
+XXX_Unmarshal(b: []byte): error
+XXX_Marshal(b: []byte, deterministic: bool): ([]byte, error)
+XXX_Merge(src: proto.Message)
+XXX_Size(): int
+XXX_DiscardUnknown()
+GetTimestamp(): timestamp.Timestamp
+GetTag(): string
}
}
package "event" {
interface "TopicEventWithContexter" as event.TopicEventWithContexter {
+Publish(ctx: context.Context, c: <-chan event.EventWithContexter)
+Publisher(ctx: context.Context): chan<- event.EventWithContexter
+Subscribe(c: chan<- event.EventWithContexter)
}
}
package "event" {
class "mapEventWithContexter" as event.mapEventWithContexter <<V,Orchid>> {
-mu: sync.RWMutex
-m: map[interface{}]*event.tEventWithContexter
-get(topic: interface{}): event.TopicEventWithContexter
}
}
package "event" {
class "tEventWithContexter" as event.tEventWithContexter <<E,#FFCC00>> {
-mu: sync.RWMutex
-c: []chan<- event.EventWithContexter
+Publish(ctx: context.Context, c: <-chan event.EventWithContexter)
+Publisher(ctx: context.Context): chan<- event.EventWithContexter
+Subscribe(c: chan<- event.EventWithContexter)
}
}
package "pipe" {
interface "InT" as pipe.InT
}
package "pipe" {
interface "NameGetContexter" as pipe.NameGetContexter {
+GetContext(): context.Context
}
}
package "pipe" {
interface "OutT" as pipe.OutT
}
debug.Client -up-|> debug.Clienter
debug.Client -up-|> topic.ChanT
debug.Client -up-|> topic.Ier
debug.Client -up-|> topic.T
debug.Client -up-|> event.Message
debug.Client -up-|> pipe.InT
debug.Client -up-|> pipe.OutT
debug.ClientRepository -up-|> topic.ChanT
debug.ClientRepository -up-|> topic.Ier
debug.ClientRepository -up-|> topic.T
debug.ClientRepository -up-|> pipe.InT
debug.ClientRepository -up-|> pipe.OutT
debug.ClientWithContext -up-|> debug.ClientWithContexter
debug.ClientWithContext -up-|> terminate.TerminateGetContexter
debug.ClientWithContext -up-|> topic.ChanT
debug.ClientWithContext -up-|> topic.Ier
debug.ClientWithContext -up-|> topic.T
debug.ClientWithContext -up-|> update.UpdateGetContexter
debug.ClientWithContext -up-|> pipe.InT
debug.ClientWithContext -up-|> pipe.NameGetContexter
debug.ClientWithContext -up-|> pipe.OutT
debug.ClientWithContexter -up-|> terminate.TerminateGetContexter
debug.ClientWithContexter -up-|> topic.ChanT
debug.ClientWithContexter -up-|> topic.Ier
debug.ClientWithContexter -up-|> topic.T
debug.ClientWithContexter -up-|> update.UpdateGetContexter
debug.ClientWithContexter -up-|> pipe.InT
debug.ClientWithContexter -up-|> pipe.NameGetContexter
debug.ClientWithContexter -up-|> pipe.OutT
debug.Clienter -up-|> topic.ChanT
debug.Clienter -up-|> topic.Ier
debug.Clienter -up-|> topic.T
debug.Clienter -up-|> event.Message
debug.Clienter -up-|> pipe.InT
debug.Clienter -up-|> pipe.OutT
debug.TopicClientWithContexter -up-|> topic.ChanT
debug.TopicClientWithContexter -up-|> topic.Ier
debug.TopicClientWithContexter -up-|> topic.T
debug.TopicClientWithContexter -up-|> pipe.InT
debug.TopicClientWithContexter -up-|> pipe.OutT
debug.TopicClienter -up-|> topic.ChanT
debug.TopicClienter -up-|> topic.Ier
debug.TopicClienter -up-|> topic.T
debug.TopicClienter -up-|> pipe.InT
debug.TopicClienter -up-|> pipe.OutT
debug.mapClientWithContexter -up-|> topic.ChanT
debug.mapClientWithContexter -up-|> topic.Ier
debug.mapClientWithContexter -up-|> topic.T
debug.mapClientWithContexter -up-|> pipe.InT
debug.mapClientWithContexter -up-|> pipe.OutT
debug.mapClienter -up-|> topic.ChanT
debug.mapClienter -up-|> topic.Ier
debug.mapClienter -up-|> topic.T
debug.mapClienter -up-|> pipe.InT
debug.mapClienter -up-|> pipe.OutT
debug.tClientWithContexter -up-|> debug.TopicClientWithContexter
debug.tClientWithContexter -up-|> topic.ChanT
debug.tClientWithContexter -up-|> topic.Ier
debug.tClientWithContexter -up-|> topic.T
debug.tClientWithContexter -up-|> pipe.InT
debug.tClientWithContexter -up-|> pipe.OutT
debug.tClienter -up-|> debug.TopicClienter
debug.tClienter -up-|> topic.ChanT
debug.tClienter -up-|> topic.Ier
debug.tClienter -up-|> topic.T
debug.tClienter -up-|> pipe.InT
debug.tClienter -up-|> pipe.OutT
terminate.TerminateGetContexter -up-|> topic.ChanT
terminate.TerminateGetContexter -up-|> topic.Ier
terminate.TerminateGetContexter -up-|> topic.T
terminate.TerminateGetContexter -up-|> update.UpdateGetContexter
terminate.TerminateGetContexter -up-|> pipe.InT
terminate.TerminateGetContexter -up-|> pipe.NameGetContexter
terminate.TerminateGetContexter -up-|> pipe.OutT
terminate.TopicContextContext -up-|> topic.ChanT
terminate.TopicContextContext -up-|> topic.Ier
terminate.TopicContextContext -up-|> topic.T
terminate.TopicContextContext -up-|> now.TopicContextContext
terminate.TopicContextContext -up-|> pipe.InT
terminate.TopicContextContext -up-|> pipe.OutT
terminate.mapContextContext -up-|> topic.ChanT
terminate.mapContextContext -up-|> topic.Ier
terminate.mapContextContext -up-|> topic.T
terminate.mapContextContext -up-|> pipe.InT
terminate.mapContextContext -up-|> pipe.OutT
terminate.tContextContext -up-|> terminate.TopicContextContext
terminate.tContextContext -up-|> topic.ChanT
terminate.tContextContext -up-|> topic.Ier
terminate.tContextContext -up-|> topic.T
terminate.tContextContext -up-|> now.TopicContextContext
terminate.tContextContext -up-|> pipe.InT
terminate.tContextContext -up-|> pipe.OutT
errs.Error -up-|> topic.ChanT
errs.Error -up-|> topic.Ier
errs.Error -up-|> topic.T
errs.Error -up-|> pipe.InT
errs.Error -up-|> pipe.OutT
topic.ChanT -up-|> topic.Ier
topic.ChanT -up-|> topic.T
topic.ChanT -up-|> pipe.InT
topic.ChanT -up-|> pipe.OutT
topic.Ier -up-|> topic.ChanT
topic.Ier -up-|> topic.T
topic.Ier -up-|> pipe.InT
topic.Ier -up-|> pipe.OutT
topic.T -up-|> topic.ChanT
topic.T -up-|> topic.Ier
topic.T -up-|> pipe.InT
topic.T -up-|> pipe.OutT
topic.TWithContext -up-|> terminate.TerminateGetContexter
topic.TWithContext -up-|> topic.ChanT
topic.TWithContext -up-|> topic.Ier
topic.TWithContext -up-|> topic.T
topic.TWithContext -up-|> update.UpdateGetContexter
topic.TWithContext -up-|> pipe.InT
topic.TWithContext -up-|> pipe.NameGetContexter
topic.TWithContext -up-|> pipe.OutT
topic.TopicChanT -up-|> topic.ChanT
topic.TopicChanT -up-|> topic.Ier
topic.TopicChanT -up-|> topic.T
topic.TopicChanT -up-|> pipe.InT
topic.TopicChanT -up-|> pipe.OutT
topic.mapChanT -up-|> topic.ChanT
topic.mapChanT -up-|> topic.Ier
topic.mapChanT -up-|> topic.T
topic.mapChanT -up-|> pipe.InT
topic.mapChanT -up-|> pipe.OutT
topic.tChanT -up-|> topic.ChanT
topic.tChanT -up-|> topic.Ier
topic.tChanT -up-|> topic.T
topic.tChanT -up-|> topic.TopicChanT
topic.tChanT -up-|> pipe.InT
topic.tChanT -up-|> pipe.OutT
config.KV -up-|> topic.ChanT
config.KV -up-|> topic.Ier
config.KV -up-|> topic.T
config.KV -up-|> pipe.InT
config.KV -up-|> pipe.OutT
meta.Meta -up-|> topic.ChanT
meta.Meta -up-|> topic.Ier
meta.Meta -up-|> topic.T
meta.Meta -up-|> meta.Metaer
meta.Meta -up-|> event.Message
meta.Meta -up-|> pipe.InT
meta.Meta -up-|> pipe.OutT
meta.Metaer -up-|> topic.ChanT
meta.Metaer -up-|> topic.Ier
meta.Metaer -up-|> topic.T
meta.Metaer -up-|> event.Message
meta.Metaer -up-|> pipe.InT
meta.Metaer -up-|> pipe.OutT
meta.Runtime -up-|> topic.ChanT
meta.Runtime -up-|> topic.Ier
meta.Runtime -up-|> topic.T
meta.Runtime -up-|> pipe.InT
meta.Runtime -up-|> pipe.OutT
meta.Vcs -up-|> topic.ChanT
meta.Vcs -up-|> topic.Ier
meta.Vcs -up-|> topic.T
meta.Vcs -up-|> pipe.InT
meta.Vcs -up-|> pipe.OutT
now.TopicContextContext -up-|> terminate.TopicContextContext
now.TopicContextContext -up-|> topic.ChanT
now.TopicContextContext -up-|> topic.Ier
now.TopicContextContext -up-|> topic.T
now.TopicContextContext -up-|> pipe.InT
now.TopicContextContext -up-|> pipe.OutT
now.mapContextContext -up-|> topic.ChanT
now.mapContextContext -up-|> topic.Ier
now.mapContextContext -up-|> topic.T
now.mapContextContext -up-|> pipe.InT
now.mapContextContext -up-|> pipe.OutT
now.tContextContext -up-|> terminate.TopicContextContext
now.tContextContext -up-|> topic.ChanT
now.tContextContext -up-|> topic.Ier
now.tContextContext -up-|> topic.T
now.tContextContext -up-|> now.TopicContextContext
now.tContextContext -up-|> pipe.InT
now.tContextContext -up-|> pipe.OutT
semaphore.Semaphore -up-|> topic.ChanT
semaphore.Semaphore -up-|> topic.Ier
semaphore.Semaphore -up-|> topic.T
semaphore.Semaphore -up-|> pipe.InT
semaphore.Semaphore -up-|> pipe.OutT
slog.Closer -up-|> topic.ChanT
slog.Closer -up-|> topic.Ier
slog.Closer -up-|> topic.T
slog.Closer -up-|> event.Closer
slog.Closer -up-|> pipe.InT
slog.Closer -up-|> pipe.OutT
slog.HookMeta -up-|> topic.ChanT
slog.HookMeta -up-|> topic.Ier
slog.HookMeta -up-|> topic.T
slog.HookMeta -up-|> pipe.InT
slog.HookMeta -up-|> pipe.OutT
slog.StackdriverCloser -up-|> topic.ChanT
slog.StackdriverCloser -up-|> topic.Ier
slog.StackdriverCloser -up-|> topic.T
slog.StackdriverCloser -up-|> slog.Closer
slog.StackdriverCloser -up-|> event.Closer
slog.StackdriverCloser -up-|> pipe.InT
slog.StackdriverCloser -up-|> pipe.OutT
slog.StackdriverLoggingWriter -up-|> topic.ChanT
slog.StackdriverLoggingWriter -up-|> topic.Ier
slog.StackdriverLoggingWriter -up-|> topic.T
slog.StackdriverLoggingWriter -up-|> slog.Tracer
slog.StackdriverLoggingWriter -up-|> pipe.InT
slog.StackdriverLoggingWriter -up-|> pipe.OutT
slog.StackdriverZerologWriter -up-|> topic.ChanT
slog.StackdriverZerologWriter -up-|> topic.Ier
slog.StackdriverZerologWriter -up-|> topic.T
slog.StackdriverZerologWriter -up-|> pipe.InT
slog.StackdriverZerologWriter -up-|> pipe.OutT
slog.TraceObject -up-|> topic.ChanT
slog.TraceObject -up-|> topic.Ier
slog.TraceObject -up-|> topic.T
slog.TraceObject -up-|> pipe.InT
slog.TraceObject -up-|> pipe.OutT
slog.Tracer -up-|> topic.ChanT
slog.Tracer -up-|> topic.Ier
slog.Tracer -up-|> topic.T
slog.Tracer -up-|> pipe.InT
slog.Tracer -up-|> pipe.OutT
slog.rawJSON -up-|> topic.ChanT
slog.rawJSON -up-|> topic.Ier
slog.rawJSON -up-|> topic.T
slog.rawJSON -up-|> pipe.InT
slog.rawJSON -up-|> pipe.OutT
update.UpdateGetContexter -up-|> terminate.TerminateGetContexter
update.UpdateGetContexter -up-|> topic.ChanT
update.UpdateGetContexter -up-|> topic.Ier
update.UpdateGetContexter -up-|> topic.T
update.UpdateGetContexter -up-|> pipe.InT
update.UpdateGetContexter -up-|> pipe.NameGetContexter
update.UpdateGetContexter -up-|> pipe.OutT
event.Closer -up-|> topic.ChanT
event.Closer -up-|> topic.Ier
event.Closer -up-|> topic.T
event.Closer -up-|> slog.Closer
event.Closer -up-|> pipe.InT
event.Closer -up-|> pipe.OutT
event.Event -up-|> topic.ChanT
event.Event -up-|> topic.Ier
event.Event -up-|> topic.T
event.Event -up-|> event.Eventer
event.Event -up-|> event.Message
event.Event -up-|> pipe.InT
event.Event -up-|> pipe.OutT
event.EventWithContext -up-|> terminate.TerminateGetContexter
event.EventWithContext -up-|> topic.ChanT
event.EventWithContext -up-|> topic.Ier
event.EventWithContext -up-|> topic.T
event.EventWithContext -up-|> update.UpdateGetContexter
event.EventWithContext -up-|> event.EventWithContexter
event.EventWithContext -up-|> pipe.InT
event.EventWithContext -up-|> pipe.NameGetContexter
event.EventWithContext -up-|> pipe.OutT
event.EventWithContexter -up-|> terminate.TerminateGetContexter
event.EventWithContexter -up-|> topic.ChanT
event.EventWithContexter -up-|> topic.Ier
event.EventWithContexter -up-|> topic.T
event.EventWithContexter -up-|> update.UpdateGetContexter
event.EventWithContexter -up-|> pipe.InT
event.EventWithContexter -up-|> pipe.NameGetContexter
event.EventWithContexter -up-|> pipe.OutT
event.Eventer -up-|> topic.ChanT
event.Eventer -up-|> topic.Ier
event.Eventer -up-|> topic.T
event.Eventer -up-|> event.Message
event.Eventer -up-|> pipe.InT
event.Eventer -up-|> pipe.OutT
keyvalue.KeyValueWithContext -up-|> terminate.TerminateGetContexter
keyvalue.KeyValueWithContext -up-|> topic.ChanT
keyvalue.KeyValueWithContext -up-|> topic.Ier
keyvalue.KeyValueWithContext -up-|> topic.T
keyvalue.KeyValueWithContext -up-|> update.UpdateGetContexter
keyvalue.KeyValueWithContext -up-|> keyvalue.KeyValueWithContexter
keyvalue.KeyValueWithContext -up-|> pipe.InT
keyvalue.KeyValueWithContext -up-|> pipe.NameGetContexter
keyvalue.KeyValueWithContext -up-|> pipe.OutT
keyvalue.KeyValueWithContexter -up-|> terminate.TerminateGetContexter
keyvalue.KeyValueWithContexter -up-|> topic.ChanT
keyvalue.KeyValueWithContexter -up-|> topic.Ier
keyvalue.KeyValueWithContexter -up-|> topic.T
keyvalue.KeyValueWithContexter -up-|> update.UpdateGetContexter
keyvalue.KeyValueWithContexter -up-|> pipe.InT
keyvalue.KeyValueWithContexter -up-|> pipe.NameGetContexter
keyvalue.KeyValueWithContexter -up-|> pipe.OutT
event.Keyer -up-|> topic.ChanT
event.Keyer -up-|> topic.Ier
event.Keyer -up-|> topic.T
event.Keyer -up-|> pipe.InT
event.Keyer -up-|> pipe.OutT
event.Loader -up-|> topic.ChanT
event.Loader -up-|> topic.Ier
event.Loader -up-|> topic.T
event.Loader -up-|> pipe.InT
event.Loader -up-|> pipe.OutT
event.Message -up-|> topic.ChanT
event.Message -up-|> topic.Ier
event.Message -up-|> topic.T
event.Message -up-|> pipe.InT
event.Message -up-|> pipe.OutT
event.Saver -up-|> topic.ChanT
event.Saver -up-|> topic.Ier
event.Saver -up-|> topic.T
event.Saver -up-|> pipe.InT
event.Saver -up-|> pipe.OutT
event.TimePoint -up-|> topic.ChanT
event.TimePoint -up-|> topic.Ier
event.TimePoint -up-|> topic.T
event.TimePoint -up-|> pipe.InT
event.TimePoint -up-|> pipe.OutT
event.TopicEventWithContexter -up-|> topic.ChanT
event.TopicEventWithContexter -up-|> topic.Ier
event.TopicEventWithContexter -up-|> topic.T
event.TopicEventWithContexter -up-|> pipe.InT
event.TopicEventWithContexter -up-|> pipe.OutT
event.mapEventWithContexter -up-|> topic.ChanT
event.mapEventWithContexter -up-|> topic.Ier
event.mapEventWithContexter -up-|> topic.T
event.mapEventWithContexter -up-|> pipe.InT
event.mapEventWithContexter -up-|> pipe.OutT
event.tEventWithContexter -up-|> topic.ChanT
event.tEventWithContexter -up-|> topic.Ier
event.tEventWithContexter -up-|> topic.T
event.tEventWithContexter -up-|> event.TopicEventWithContexter
event.tEventWithContexter -up-|> pipe.InT
event.tEventWithContexter -up-|> pipe.OutT
pipe.InT -up-|> topic.ChanT
pipe.InT -up-|> topic.Ier
pipe.InT -up-|> topic.T
pipe.InT -up-|> pipe.OutT
pipe.NameGetContexter -up-|> terminate.TerminateGetContexter
pipe.NameGetContexter -up-|> topic.ChanT
pipe.NameGetContexter -up-|> topic.Ier
pipe.NameGetContexter -up-|> topic.T
pipe.NameGetContexter -up-|> update.UpdateGetContexter
pipe.NameGetContexter -up-|> pipe.InT
pipe.NameGetContexter -up-|> pipe.OutT
pipe.OutT -up-|> topic.ChanT
pipe.OutT -up-|> topic.Ier
pipe.OutT -up-|> topic.T
pipe.OutT -up-|> pipe.InT
@enduml
|
269d1f06e2fff143ddc4178bc38dea360cfe37a1 | e088ad582023d7575503499a21e9e6d3f9d677de | /uml/Repository.puml | eb3229e5c6ef293b7aa44fe55e7fc47621a16bc4 | [] | no_license | turanukimaru/spring-boot | ff271f687dcd815ddc0651145f6814559b5a7472 | 2b9fbbd9699dfe8b971a5e9d70f0a578b3b7bef1 | refs/heads/master | 2020-11-29T00:09:32.635047 | 2019-12-24T14:47:25 | 2019-12-24T14:47:25 | 229,958,435 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 171 | puml | @startuml
interface IRepository{
}
class Repository
class Board_DDD
class Board_DB
IRepository <|-down- Repository
IRepository -> Board_DDD
Repository -> Board_DB
@enduml |
19dd0608d1f9eb41847c875e89793fdd1af0e916 | 72e0d65cb502431500578350accc1ec3e7423065 | /2015-11-CDI-Forge-uni/slides/diagrams/spi_entrypoints.puml | b46a15156bd787676c7e2fbb862a538f129cc8f4 | [
"MIT",
"CC-BY-4.0"
] | permissive | agoncal/agoncal-talks | a089d816cdcedeb8b00e3ac44198f69322ad44b5 | e95c9d28077867034c2df4f868ceba9383f6373a | refs/heads/master | 2022-12-05T00:27:03.272910 | 2022-11-23T14:02:47 | 2022-11-23T14:02:47 | 69,746,105 | 9 | 5 | null | 2022-06-24T01:42:35 | 2016-10-01T15:20:56 | HTML | UTF-8 | PlantUML | false | false | 2,246 | puml | @startuml
skinparam shadowing false
skinparam defaultFontName Consolas
Iterable <|-right- Instance
Instance <|-- CDI
CDI .right.> BeanManager : provides
Unmanaged *-right- UnmanagedInstance
class Unmanaged<T> {
+Unmanaged(BeanManager, Class<T>)
+Unmanaged(Class<T>)
+UnmanagedInstance<T> newInstance()
}
class UnmanagedInstance<T> {
+T get()
+UnmanagedInstance<T> produce()
+UnmanagedInstance<T> inject()
+UnmanagedInstance<T> postConstruct()
+UnmanagedInstance<T> preDestroy()
+UnmanagedInstance<T> dispose()
}
interface BeanManager {
+Object getReference(Bean<?>, Type, CreationalContext<?> )
+Object getInjectableReference(InjectionPoint, CreationalContext<?> )
+Set<Bean<?>> getBeans(Type, Annotation[])
+Bean<? extends X> resolve(Set<Bean<? extends X>>)
+void validate(InjectionPoint)
+void fireEvent(Object, Annotation[])
.. some methods skipped ..
+boolean isQualifier(Class<? extends Annotation>)
+boolean isStereotype(Class<? extends Annotation>)
+boolean areQualifiersEquivalent(Annotation, Annotation)
+boolean areInterceptorBindingsEquivalent(Annotation, Annotation)
+Context getContext(Class<? extends Annotation>)
+ELResolver getELResolver()
+ExpressionFactory wrapExpressionFactory(ExpressionFactory)
+AnnotatedType<T> createAnnotatedType(Class<T>)
+InjectionTarget<T> createInjectionTarget(AnnotatedType<T>)
+InjectionTargetFactory<T> getInjectionTargetFactory(AnnotatedType<T>)
+BeanAttributes<T> createBeanAttributes(AnnotatedType<T>)
+Bean<T> createBean(BeanAttributes<T>, Class<X>, ProducerFactory<X>)
+InjectionPoint createInjectionPoint(AnnotatedField<?>)
}
class CDI<T> {
# {static} Set<CDIProvider> discoveredProviders
# {static} CDIProvider configuredProvider
+ {static} CDI<Object> current()
+ {static} void setCDIProvider(CDIProvider provider)
+ {abstract} BeanManager getBeanManager()
}
interface Instance<T>{
+T get()
+Instance<T> select()
+Instance<T> select();
+boolean isUnsatisfied()
+boolean isAmbiguous()
+void destroy()
}
interface Iterable<T> {
+Iterator<T> iterator()
+void forEach()
+Spliterator<T> spliterator()
}
@enduml |
dea5d7a2fb184ba726147b88f5f404ca03aa1ed2 | c907b575a6382c191be1306ba4dea6e2a37c759b | /PUML/biblioteca.puml | 8b039638473306a5a459191f1887a5d1ce099bf2 | [] | no_license | MaNuElRuZ/JavaDoc | 1fccb4aa1ee060f33edcbf768c7d0e3abbac2a45 | 72fee882d4b6e9a787296e71be6addcfdfaa71fb | refs/heads/main | 2023-03-21T01:03:51.389028 | 2021-03-05T11:20:48 | 2021-03-05T11:20:48 | 344,781,527 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 976 | puml | @startuml biblioteca
'https://plantuml.com/class-diagram
skinparam classAttributeIconSize 0
enum Genero << enumeration >> {
novela
teatro
poesía
ensayo
}
enum Estado << enumeration >> {
prestado
retraso
biblioteca
reparación
}
class Copia {
- referencia : Integer
- estado: EstadoCopia
}
class Socio {
- numero : Integer
- nombre : String
- direccion : String
- telefono : String
}
class Préstamo {
- inicio : Date
- fin : Date
}
class Libro {
- titulo : String
- editorial : String
- year : Integer
- tipo : Genero
}
class Autor {
- nombre : String
- nacionalidad : String
- fechaNacimiento : Date
}
Copia "0..3" -- "0..1" Socio
(Copia, Socio) .. Préstamo
Socio "sancionado" --- "sanción \n 0..1" Multa : recibe
Copia "ejemplar \n 1..*" --right-- "libro" Libro
Libro "obra \n 1..*" --down- "autor" Autor
@enduml |
d09cd4e75013d23cd5de71400c7cd0906eff2940 | 71f991ceeedbb609fdc6461988fe0267d10e8bac | /uml/machine/MachineDialogue.puml | b470915c28cbaa2b010138461bd82475c30dccd6 | [] | no_license | CodyAdam/project__chatbot | 23d0ef12207fb0201258c288ee07872d957b1742 | afc0d8532f7a162d5b303b09fb41b345f4736697 | refs/heads/main | 2023-08-02T04:11:36.149644 | 2021-10-09T21:02:45 | 2021-10-09T21:02:45 | 415,371,853 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 115 | puml | @startuml
'https://plantuml.com/class-diagram
class MachineDialogue << (T, #77FF77) >> {
ask()
reinit()
}
@enduml |
36f5bc1bebf87b8f8a7ecc3eb9f4ce3888d9d63b | 70776a5e252b2c5b1bff274f26681516470cb5dc | /mastermind-vista-publica.plantuml | ec8d507ab5f72db1d1be0893418ee06653f28e1b | [] | no_license | Master-Desarrollo-20-21/ejercicio-2-vista-publica-clases-mastermind-ferllop | 6834d4349328232a73fbf245fa4dd3f2fa2b2e1f | 83c3eddbcedd4d8968d7577f49224e861c42b72c | refs/heads/main | 2023-01-02T16:13:10.276353 | 2020-10-29T18:47:48 | 2020-10-29T18:47:48 | 308,062,556 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,016 | plantuml | @startuml
title Classes - Class Diagram
class Mastermind {
+play()
+{static} main()
}
Mastermind *-- Game
class Game {
+start()
+resume()
+exit()
}
Game *-- SecretCombination
Game *-- Player
Game --> CombinationChecker
Game ..> Console
class Combination{}
Combination *-- "4" Position
Combination <|-- SecretCombination
Combination <|-- ProposedCombination
ProposedCombination --> Result
class Position {
}
Position --> Color
class SecretCombination {
+makeCombination()
}
class CombinationChecker {
evaluateBlacks()
evaluateWhites()
}
CombinationChecker --> SecretCombination
CombinationChecker --> ProposedCombination
class Player {
+proposeCombination()
}
Player *-- "0..10"ProposedCombination
Player ..> Console
class Console {
+printBoard()
+getResume()
+getCombinationProposal()
+printProposalResult(blacks, whites)
}
Enum Color {
Red
Blue
Yellow
Green
Orange
Purple
}
Enum Result {
Black
White
}
@enduml
|
1cdcb3ac30971bc12617bb424f5b8bed56d0c3f1 | 624fde70b8e7cd52e671f20960e1d8d1a45dd5fb | /src/main/java/DK/IT/graf.puml | 1a08f1a1bbf2fc962644c681a8740c4b7717f7ff | [] | no_license | AnimaVilis209/inny | 2ff5c7e0558655ea54420396b136cdae0f797769 | cbb473ca0a7241182f19a420af394a2de245f0cf | refs/heads/master | 2022-12-29T07:16:13.650799 | 2020-10-19T08:09:37 | 2020-10-19T08:09:37 | 305,206,247 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 117 | puml | @startuml
class Plansza{
int rzedy;
int kolumny;
ustawplansze()
}
App<--Plansza
Plansza<--Symbol
@enduml |
adaea43f933944d47d5090dde1c914eee88d9e77 | 580b0e76d6bae8e9b3740e6fce1bde42daa0821d | /addons/src/uml/workflowUML.puml | 92364dd2ead9bc75a0541888791b4f5be49bba29 | [] | no_license | qq85609655/datariver | 0eb37abb25f5f57032b49abef3d8c770557a30ca | 0976097a5fc9743a8464c60a929cf1e45ba0deeb | refs/heads/master | 2023-01-09T03:45:23.437990 | 2015-12-13T09:45:00 | 2015-12-13T09:45:00 | 100,900,785 | 0 | 2 | null | 2023-01-02T22:04:51 | 2017-08-21T01:40:26 | Java | UTF-8 | PlantUML | false | false | 2,726 | puml | @startuml
package WorkFlowDataTypes #Plum {
enum WorkflowActionType {
ODPSMR
ODPSSQL
DXT
SUBFLOW
CTL_START
CTL_FORK
CTL_JOIN
CTL_KILL
CTL_END
SWITCH
SSH
EMAIL
MR
SQOOP
DISTCP
FS
HIVE
PIG
SHELL
START
END
}
enum WorkflowActionStatus {
PREP
RUNNING
OK
ERROR
USER_RETRY
START_RETRY
START_MANUAL
DONE
END_RETRY
END_MANUAL
KILLED
FAILED
}
enum WorkflowJobStatus {
PREP
RUNNING
SUCCEEDED
KILLED
FAILED
SUSPENDED
}
enum WorkflowJobRunTimeUnit {
MINUTE
HOUR
DAY
WEEK
MONTH
END_OF_DAY
END_OF_MONTH
CRON
NONE
}
class WorkflowAction {
type : WorkflowActionType
actionId : String
instanceId : String
etlInstance : ETLTask
workflowId : String
config : String
configId : String
startTime : Long
endTime : Long
status : WorkflowActionStatus
}
class WorkflowActionTemplate {
name : String
description : String
templateId : String
actions : array<WorkflowAction>
config : String
workflowActionName : String
}
class WorkflowJob {
name : String
description : String
workflowId : String
actions : array<WorkflowAction>
actionsDAG : array<ETLStepSequence>
config : String
createTime : Long
startTime : Long
endTime : Long
user : String
status : WorkflowJobStatus
parentId : String
}
class WorkflowTemplate {
name : String
description : String
templateId : String
workflowJobs : array<WorkflowJob>
config : String
workflowName : String
lineage : LineageWorkflowProcessInfo
}
WorkflowAction -> WorkflowActionType : type >
WorkflowAction -> ETLTask : etlInstance >
WorkflowAction -> WorkflowActionStatus : status >
WorkflowActionTemplate -> WorkflowAction : actions >
WorkflowJob --> WorkflowAction : actions >
WorkflowJob -> ETLStepSequence : actionsDAG >
WorkflowJob -> WorkflowJobStatus : status >
WorkflowTemplate -> WorkflowJob : workflowJobs >
WorkflowTemplate -> LineageWorkflowProcessInfo : lineage >
AbstractProcess <|-- WorkflowAction
Referenceable <|-- WorkflowActionTemplate
Referenceable <|- WorkflowJob
Referenceable <|- WorkflowTemplate
}
@enduml
|
ea27523ae0c20c8515c59f51e331e3d09d6252ac | 26c55a2c45b6ec801eaef66f4fa3985bfbe99c7a | /DomainModel/src-gen/Forum_BC_UserManagementContext.puml | 92530022f5d0c89f1f38f4e4c857f1e3c0d14fcb | [
"MIT"
] | permissive | ejuntu/Eventforum.Net | 03d40329e1b8a6dcbb994c5d724b78c2bcf2e1ab | 5deafaa07bc329f3ebd4cc5528ba95524530527e | refs/heads/main | 2023-07-06T23:09:26.957443 | 2021-08-06T10:39:24 | 2021-08-06T10:39:24 | 391,983,750 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 821 | puml | @startuml
skinparam componentStyle uml2
package "'SystemUser' Aggregate" <<Rectangle>> {
class User <<(A,#fffab8) Aggregate Root>> {
String userId
String firstName
String lastName
String nickname
Boolean active
}
class UserEvent <<(E,#ff9f4b) Domain Event>> {
DateTime createDate
String id
User user
}
class UserService <<(S,DarkSeaGreen) Service>> {
String AddUser(User user)
User updateUser(User user)
}
class UserEventService <<(S,DarkSeaGreen) Service>> {
UserEvent UserCreatedEvent(User user)
UserEvent UserUpdatedEvent(User user)
}
}
UserEvent --> User : user
UserService --> User : AddUser
UserEventService --> UserEvent : UserCreatedEvent
UserEventService --> User : UserCreatedEvent
legend left
This bounded context implements the subdomain 'UserDomain'.
end legend
@enduml
|
e513565722d0ddf548efbe37f3d691fd4ed6f726 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderShippingAddressSetMessagePayload.puml | e75aa27faec61af2042d4e4b7e9fc11da6ff5b50 | [] | 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 | 522 | 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 OrderShippingAddressSetMessagePayload [[OrderShippingAddressSetMessagePayload.svg]] extends OrderMessagePayload {
type: String
address: [[Address.svg Address]]
oldAddress: [[Address.svg Address]]
}
interface OrderMessagePayload [[OrderMessagePayload.svg]] {
type: String
}
@enduml
|
e428ec28a448dac44de0327677a49bff0168deb6 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/volumediscount@0.3.0.puml | 82e36a43880c54edba671321e4dc55556aad9062 | [
"Apache-2.0",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 759 | puml | @startuml
class org.accordproject.volumediscount.VolumeDiscountContract << (A,green) >> {
+ Double firstVolume
+ Double secondVolume
+ Double firstRate
+ Double secondRate
+ Double thirdRate
}
org.accordproject.volumediscount.VolumeDiscountContract --|> org.accordproject.cicero.contract.AccordContract
class org.accordproject.volumediscount.VolumeDiscountRequest << (T,yellow) >> {
+ Double netAnnualChargeVolume
}
org.accordproject.volumediscount.VolumeDiscountRequest --|> org.hyperledger.composer.system.Transaction
class org.accordproject.volumediscount.VolumeDiscountResponse << (T,yellow) >> {
+ Double discountRate
}
org.accordproject.volumediscount.VolumeDiscountResponse --|> org.hyperledger.composer.system.Transaction
@enduml
|
61e5bc4a46abc75fc7f384c3e56aa9b2fc0bc5be | 6e34464c25624e18411f69f0b407a1c288081208 | /Design/component_diagram.plantuml | d56a50fa2533685e9abb1b6e23601fd9b98b8777 | [] | no_license | sys-bio/SBviper | 5d70a61c5bfc57a0188d71b232f4c28317215af5 | 42e25e2d59fad13552d75fdc018c7ee1ae93ccaa | refs/heads/master | 2023-02-16T14:46:22.970911 | 2020-11-24T08:37:52 | 2020-11-24T08:37:52 | 285,352,363 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,933 | plantuml | @startuml
allow_mixing
'old simulation
file simulation_result_old
class "TimeSeriesCollection" as tsc1 {
}
class "TimeSeriesCollection.TimeSeries" as ts1 {
}
simulation_result_old -right-> tsc1
tsc1 +-- ts1
'matcher
class TimeSeriesMatcher {
+time_series_collection_a : TimeSeries
+time_series_collection_b : TimeSeries
+match(TimeSeries ts1, TimeSeries ts2, tol=TOL, string match_type) : boolean
}
class MatchResultCollection {
}
class MatchResult {
+time_series_old : TimeSeries
+time_series_new : TimeSeries
+match_score : int
}
MatchResultCollection +-- MatchResult
class FilterResultCollection {
}
MatchResult +-- FilterResultCollection
class FilterResult {
+score : double
+tol : double
+filtered_or_not : boolean
}
FilterResultCollection +-- FilterResult
'new simulation
file simulation_result_new
class "TimeSeriesCollection" as tsc2 {
}
class "TimeSeriesCollection.TimeSeries" as ts2 {
}
simulation_result_new -right-> tsc2
tsc2 +-- ts2
'formating
simulation_result_old -[hidden]down- simulation_result_new
tsc2 -[hidden]up- ts1
ts1 -[hidden]right- TimeSeriesMatcher
tsc1 -right-> TimeSeriesMatcher
tsc2 -up-> TimeSeriesMatcher
TimeSeriesMatcher -right-> MatchResultCollection
'simulation_result_old -right-> v1
'v1 -right-> c1
'
''file simulation_result_revised
''cloud viper_constructors as v2
''file TimeSeriesCollection as c2 {
'' file TimeSeries as t2
''}
''simulation_result_revised -right-> v2
''v2 -right-> c2
'
'simulation_result_old -[hidden]down- simulation_result_revised
'v1 -[hidden]down- v2
'c1 -[hidden]down- c2
'file unmatched as d1 {
' file TimeSeriesCollection
' file Plot
'}
'
'cloud time_series_matching as tsm {
' cloud cc1 as "Exact match (scale dependent)"
' cloud cc2 as "Exact match (scale independent)"
' cloud cc3 as "Pattern match"
' cloud cc4 as "Category match"
'}
'
'c1 -right-> tsm
'c2 -right-> tsm
'tsm -down-> d1
@enduml |
78fee699e04fd235cc29e129575b576089efbd8c | 8a01731637b7d98427e290e9ae0e4b74dc2d86f1 | /src/com/zzw/java1000000/z1136785/reflect/md/type.puml | 16233696850a32613992c5aafc0a2e464a0173cd | [] | no_license | zhengzewang/1000000study | a2629ceff34f2083ab211c6eb64c939248c6d31d | 93b0f2d30e36f6653316aec8077b6fd424b099a2 | refs/heads/master | 2020-04-12T15:55:52.586491 | 2019-09-02T12:24:07 | 2019-09-02T12:24:09 | 162,595,667 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 819 | puml | @startuml
package java.lang{
package java.lang.reflect{
interface Type{
}
interface ParameterizedType extends Type{
Type[] getActualTypeArguments();
Type getRawType();
Type getOwnerType();
}
interface TypeVariable<D extends GenericDeclaration> extends Type {
Type[] getBounds();
D getGenericDeclaration();
String getName();
AnnotatedType[] getAnnotatedBounds();
}
interface GenericArrayType extends Type {
Type getGenericComponentType();
}
interface WildcardType extends Type {
Type[] getUpperBounds();
Type[] getLowerBounds();
}
}
class Class<T> implements Type {
// 省略...
}
}
@enduml |
34a47669f5cc2930d81dc014d65320916e2d78fd | bd6f3240ca3cc11278d923ca454774c5b58b7977 | /iterator/iterator.puml | 58f19fd33408a1648fe46e8b3efbb92df07d4c9e | [] | no_license | atagulalan/typescript-design-patterns | 094fec5f54deb7ee344e3152888fc0306530d615 | 4f8d2f487031b0c9bf2e6d77e6f65008b594e415 | refs/heads/master | 2022-09-08T18:36:36.438889 | 2020-06-03T00:50:43 | 2020-06-03T00:50:43 | 245,651,949 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 714 | puml | interface Yineleyici{
+mevcut(): T
+sonraki(): T
+anahtar(): number
+gecerli(): boolean
+geriSar(): void
}
interface Koleksiyoncu{
+alYineleyici(): Yineleyici<string>
}
class AlfabetikYineleyici{
-koleksiyon : KelimeKoleksiyonu
-pozisyon : number
-tersine : boolean
+geriSar()
+mevcut(): string
+anahtar(): number
+sonraki(): string
+gecerli(): boolean
}
class KelimeKoleksiyonu{
-veriler : string[]
+alVeriler(): string[]
+alVeriBoyutu(): number
+ekleVeri(veri: string): void
+alYineleyici(): Yineleyici<string>
+alTersineYineleyici(): Yineleyici<string>
}
AlfabetikYineleyici -> KelimeKoleksiyonu
Yineleyici <|.. AlfabetikYineleyici
Koleksiyoncu <|.. KelimeKoleksiyonu |
79c1de093f1f7882b91d77cd757e163e7a9ce94c | 5aa1313d53456e3b52bcd939de88f1b92546adda | /src/foundation/lisp/lisp.plantuml | bed68dc5612ee1f31a9e178416fdafef09cb49d2 | [] | no_license | egryaznov/thesiscode | a31ff71305faba34cf38d48b1f2caaa6d5dccf70 | 1c64411cd24ac267463c497b2f6bd8d2d652f8d6 | refs/heads/master | 2021-03-19T14:01:28.599892 | 2018-06-12T17:39:25 | 2018-06-12T17:39:25 | 121,215,221 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,530 | plantuml | @startuml
title __LISP's Class Diagram__\n
package foundation {
package foundation.lisp {
class Interpreter {
{static} - DEFINE_KEYWORD : String
{static} - LAMBDA_KEYWORD : String
{static} - IF_KEYWORD : String
- lastBenchmark : long
- isCachingEnabled : boolean
- keywords : Map<String, Boolean>
- atomicFunctions : Map<String, TFunction>
- definitions : Map<String, String>
- cachedTerms : Map<String, TObject>
+ Interpreter()
+ enableCaching()
+ disableCaching()
- initKeywords()
- initAtomicFunctions()
+ getAtomicFunctions()
+ ontology()
+ exec()
+ free()
- isLambda()
- isDefine()
- isIf()
- isLeader()
+ exec()
+ exec()
+ lastBenchmark()
+ printLastBenchmark()
+ eval()
+ expungeCache()
+ splitByTerms()
- replaceSpacesInStringLiterals()
+ rewrite()
+ clip()
- isTermValid()
+ isPrimitive()
- isNotAFunctionalTerm()
- isFunctionalTerm()
- isReference()
- splitByTerms()
}
}
}
Interpreter o-- Ontology : ontology
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
|
4c170e0d117da8934e05f10afe84419b7ec38b4a | 2615492956415a13a3b03686c9545e099b4aada1 | /docs/PlantUML/ModelClassDiagram.puml | 2ef40259667c497b39bd70ddca1b7dda95f2e0d1 | [] | no_license | AY2021S2-CS2113-T10-4/tp | 06ce4064c67254b0b3b58c97bb9aaa62cde69189 | fed6c3b867e5e9bb25a68a408fde0eae43cd21be | refs/heads/master | 2023-04-03T09:08:55.879564 | 2021-04-12T16:02:25 | 2021-04-12T16:02:25 | 340,808,069 | 0 | 6 | null | 2021-04-12T16:02:26 | 2021-02-21T03:24:09 | Java | UTF-8 | PlantUML | false | false | 1,161 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
package Model <<Rectangle>> {
class Canteen
class Store
class Menu
class Review
}
class "Canteen" {
- canteenName: String
- stores: ArrayList<Store>
+ getCanteenName() : String
+ getStore(int) : Store
+ getStores() : ArrayList<Store>
+ getNumStores() : int
+ addStore(String) : void
+ deleteStore(int) : void
}
class "Store" {
- storeName: String
- menus: ArrayList<Menu>
- reviews: ArrayList<Review>
+ displayStore() : void
+ getStoreName() : String
+ getReviews() : ArrayList<Review>
+ addReview(Review) : void
+ deleteReview(int) : void
+ getAverageRating() : double
+ getMenus() : ArrayList<Menu>
+ getMenuCount() : int
+ addMenu(Menu) : void
+ deleteMenu(int) : void
}
class "Menu" {
- itemName: String
- price: double
+ toString() : String
+ getItemName() : String
+ getPrice() : double
}
class "Review" {
- description: String
- rating: double
- date: String
+ toString() : String
+ getDescription() : String
+ getRating() : double
+ getDate() : String
}
Canteen *-- Store
Store *-- Menu
Store *-- Review
@enduml |
7723571fbc143b94ba9fa3c12b344133fe5ea293 | 14aff7a8f8c9d4f961962f538398f322fa1a5481 | /ProgramowanieObiektowe/Lista7/PO_L7/src/com/company/model/model.plantuml | 6cda48ce45af1fe431a8bc20c422bdac0403a52d | [] | no_license | jakubprzydatek/studia | 6529c5d024bf42d4c230dc966d8b3fbfa32729f1 | 9ae3ffe6206ed8fccd4434c5646c9993f9cf57fe | refs/heads/main | 2023-04-11T16:40:21.418832 | 2021-04-22T21:56:15 | 2021-04-22T21:56:15 | 318,674,064 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,811 | plantuml | @startuml
title __MODEL's Class Diagram__\n
namespace com.company {
namespace model {
class com.company.model.Pojazd {
# kategoriaPrawaJazdy : String
# liczbaMiejsc : int
# typ : String
+ Pojazd()
+ getKategoriaPrawaJazdy()
+ getLiczbaMiejsc()
+ getTyp()
+ setKategoriaPrawaJazdy()
+ setLiczbaMiejsc()
+ setTyp()
+ toString()
}
}
}
namespace com.company {
namespace model {
class com.company.model.Samochod {
- iloscKoniMechanicznych : int
- pojemnoscBagaznika : int
- rodzajPaliwa : String
+ getIloscKoniMechanicznych()
+ getPojemnoscBagaznika()
+ getRodzajPaliwa()
+ setDefault()
+ setIloscKoniMechanicznych()
+ setPojemnoscBagaznika()
+ setRodzajPaliwa()
+ toString()
}
}
}
namespace com.company {
namespace model {
class com.company.model.Tramwaj {
- czyMiejscaDlaNiepelnosprawnych : boolean
- czyNiskopodlogowy : boolean
- szerokoscOsi : int
+ getSzerokoscOsi()
+ isCzyMiejscaDlaNiepelnosprawnych()
+ isCzyNiskopodlogowy()
+ setCzyMiejscaDlaNiepelnosprawnych()
+ setCzyNiskopodlogowy()
+ setSzerokoscOsi()
+ toString()
}
}
}
com.company.model.Pojazd .up.|> java.io.Serializable
com.company.model.Samochod -up-|> com.company.model.Pojazd
com.company.model.Tramwaj -up-|> com.company.model.Pojazd
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
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.