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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
04f12b961549626742a438ae559ff5001d500fd2 | dcc0d42cf455105fce1807ebe8f3a4e0095b4a35 | /lib/base/hold/Hold.puml | e4093ad284f1cc859a449e6b84fbaa2ec04b8fe0 | [] | no_license | wlong800/easy_net_core | cf88ec16e6b27bf0103da15ec75e25786985634f | aa13460a50c278987417f85070021ee0a8ba1732 | refs/heads/main | 2023-07-08T00:04:40.897235 | 2021-08-11T07:20:01 | 2021-08-11T07:20:01 | 394,897,461 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,160 | puml | @startuml
'https://plantuml.com/class-diagram
class Hold {
{static} put(String key, dynamic value)
{static} get(String key)
{static} getString(String key)
{static} getInt(String key)
{static} getBool(String key)
{static} delete(String key)
{static} deleteAll()
{static} contains(String key)
}
note left: 门面
interface HoldFacade {
{abstract} Future<bool> put(String key, dynamic value)
{abstract} dynamic get(String key)
{abstract} Future<bool> deleteAll()
{abstract} Future<bool> delete(String key)
{abstract} bool isContains(String key)
}
note bottom: 需要被实现,基于该接口,可以自定义轻量级数据本地保存
class HoldFacadeImpl {
}
class HoldManager {
-HoldFacade _holdFacade
{static} HoldManager instance()
{static} Future<Null> init()
}
note left: 管理类
class HoldGet {
{static} Future<bool> showGuidePage()
{static} GlobalModel getGlobalInfo()
}
note top: 抽取一个utils,方便调用
'<|.. 实现
'<|-- 继承
'o-- 聚合
'.. ???
'<.. 依赖(一个类持有另一个类的引用)
HoldFacade <|.. HoldFacadeImpl
HoldManager o-- HoldFacade
Hold .. HoldManager
Hold .. HoldFacade
@enduml |
ebd27d67d3845729eba97ddeacb9756b0e404aea | 6efcde6793a8895229ca8face50530e85dfe5869 | /exercise41/docs/classes.puml | e23ed6403b9c9e3279fb4e677655c94a471a9f47 | [] | no_license | Jyke321/cordonero-a04 | dde9e4144b0660f2a10e69b6786d0dbddf4758c4 | 0b3fe00b2525d99ae820de61baad046411a1b2bb | refs/heads/main | 2023-08-23T03:19:27.506727 | 2021-10-17T21:56:41 | 2021-10-17T21:56:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 329 | puml | @startuml
class DataHandler {
-List data
+void getDataFromFile()
+void sortDataAlphabetically()
+void printDataTotalNumberOfNamesAndDataToFile()
-void printNumberOfNamesToFile()
-void printDataToFile()
-FileWriter initializeFilePointer()
+ArrayList<String> returnArrayListOfDataAsList()
}
@enduml |
86496302601888cee51b67753f2d54726f71ea0e | 068579f9ad18a1368961dc3b9f812129f4f7e858 | /DesignPattern/Composite/Pietanze/uml/class_diagram.puml | 4eb7068489ccfba569d9dfe6c105b8fad7b8d92d | [] | 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 | 1,119 | puml | ' Documentazione: https://plantuml.com/class-diagram
@startuml
' START STYLE
skinparam {
monochrome true
'shadowing false
classBackgroundColor white
noteBackgroundColor white
classAttributeIconSize 0
'linetype ortho
}
hide circle
' END STYLE
class Dispensa {
- tabellaCalorie
+ getIngrediente(nome: String, qt: int): Pietanza
+ getPreparato(nome: String): Pietanza
}
Dispensa --> Ingrediente
Dispensa --> Preparato
Client -down-> Dispensa
Client -right-> Pietanza
hide Client members
abstract class Pietanza {
+ add(p: Pietanza): Pietanza
+ remove(p: Pietanza): Pietanza
+ {abstract} mostra(indent: String)
+ {abstract} calorie(indent: String): int
}
note right of Pietanza::add
return this;
end note
note right of Pietanza::remove
return this;
end note
class Ingrediente extends Pietanza {
+ mostra(indent: String)
+ calorie(indent: String): int
}
class Preparato extends Pietanza {
- pList: Pietanza[0..*]
+ add(p: Pietanza)
+ remove(p: Pietanza)
+ mostra(indent: String)
+ calorie(indent: String): int
}
Pietanza "\t*" <-left- Preparato
Preparato -[hidden]left-> Ingrediente
@enduml |
aaf62a35fb15b837196e9bdacd0556450cbc1ab0 | a26bbd033192f4ea245a6dd3f166976b39459752 | /3_Documentazione/design/be/servlets_action.puml | 4ed0b6b03fe039a05e340fb5e717eee5f3702d3b | [] | no_license | giuliobosco/freqline | fdc673e09e4cfc96dc67a759788120b81fdbae46 | e94256cc349797447cf414bbe4267ef45c89723e | refs/heads/master | 2022-04-10T16:22:55.993289 | 2020-04-06T13:28:19 | 2020-04-06T13:28:19 | 206,082,972 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,142 | puml | @startuml
skinparam classAttributeIconSize 0
package ch.giuliobosco.freqline.servlets {
abstract BaseServlet {
}
package action {
abstract SerialServlet {
- SerialThread serialThread
+ SerialServlet(SerialThread serialThread)
+ SerialThread getSerialThread()
}
BaseServlet <|-- SerialServlet
class LoginServlet {
- String LOGGED_IN
- String WRONG_USERNAME_PASSWORD
# void doPost(HttpServletRequest request, HttpServletResponse response)
- void checkOldSession(HttpServletRequest request)
- void executePost(HttpServletRequest request, HttpServletResponse response, ServletRequestAnalyser sra)
# void doGet(HttpServletRequest request, HttpServletResponse response)
}
LoginServlet --|> BaseServlet
class GeneratorStatusServlet {
- String GET_GENERATOR_STATUS_PERM
- String SET_GENERATOR_STATUS_PERM
- String STATUS
- String[] REQUIRED_POST_PARAMETERS
# void doPost(HttpServletRequest request, HttpServletResponse response)
# void doGet(HttpServletRequest request, HttpServletResponse response)
- void executePost(HttpServletResponse response, Connection connection, int userId, ServletRequestAnalyser sra)
}
GeneratorStatusServlet --|> SerialServlet
class GeneratorMicServlet {
- String SET_GENERATOR_MIC_PERM
- String GET_GENERATOR_MIC_PERM
- String TIMER
- String[] REQUIRED_POST_PARAMETERS
- void executePost(HttpServletResponse response, Connection connection, int userId, ServletRequestAnalyser sra)
# void doPost(HttpServletRequest request, HttpServletResponse response)
# void doGet(HttpServletRequest request, HttpServletResponse response)
}
GeneratorMicServlet --|> BaseServlet
class GeneratorFrequenceServlet {
- String SET_GENERATOR_FREQUENCE_PERM
- String GET_GENERATOR_FREQUENCE_PERM
- String FREQUENCE
- String[] REQUIRED_POST_PARAMETERS
- void executePost(HttpServletResponse response, Connection connection, int userId, ServletRequestAnalyser sra)
# void doPost(HttpServletRequest request, HttpServletResponse response)
# void doGet(HttpServletRequest request, HttpServletResponse response)
}
GeneratorFrequenceServlet --|> SerialServlet
class GeneratorDecibelServlet {
- String SET_GENERATOR_DECIBEL_PERM
- String GET_GENERATOR_DECIBEL_PERM
- String DECIBEL
- String[] REQUIRED_POST_PARAMETERS
- void executePost(HttpServletResponse response, Connection connection, int userId, ServletRequestAnalyser sra)
# void doPost(HttpServletRequest request, HttpServletResponse response)
# void doGet(HttpServletRequest request, HttpServletResponse response)
}
GeneratorDecibelServlet --|> SerialServlet
}
}
@enduml |
4aa5990248ea14eac595a9e52fffeccba9e0e780 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/PaymentStatusInterfaceCodeSetMessagePayload.puml | 3fefa4b47c01c92ae5cb109da6446d72bee9def0 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 490 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface PaymentStatusInterfaceCodeSetMessagePayload [[PaymentStatusInterfaceCodeSetMessagePayload.svg]] extends MessagePayload {
type: String
paymentId: String
interfaceCode: String
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
|
6cd303ec1ac51cce02328674aed32c132e8bd885 | 6c7cada82c93ee492dfa1aae164a14a29453164e | /docs/design/images/ClassDiagram-StackedStateFrames.puml | 3bd42963e36ba5c24e5fd9dfe84b44d3eddcdb5c | [
"Apache-2.0"
] | permissive | hashgraph/hedera-mirror-node | 4a3db9f2deec7d6a51f4920393363a3924663f37 | c7ef5dee6cf68287ec87cf8fc4abf18c3b2cfc47 | refs/heads/main | 2023-08-16T14:26:58.289242 | 2023-08-15T21:20:34 | 2023-08-15T21:20:34 | 197,364,349 | 128 | 125 | Apache-2.0 | 2023-09-14T19:35:22 | 2019-07-17T10:04:38 | Java | UTF-8 | PlantUML | false | false | 1,613 | puml | @startuml
!pragma layout smetana
title Stacked State for eth_estimateGas (class diagram)
hide empty members
enum ValueState {
INVALID
NOT_YET_FETCHED
PRESENT
MISSING
UPDATED
DELETED
}
class Entry {
+state
+value
}
note top of Entry: Value ("cache line") state + value
class UpdatableReferenceCache<K> {
+Entry get(K)
+updated(K,Object)
+delete(K)
+coalesceFrom(UpdatableReferenceCache)
+fill(K,Object)
}
abstract CachingStateFrame<K> <<(A,salmon)>> {
#parentFrame
#accountCache
#tokenCache
+CachingStateFrame(upstreamFrame,Class...)
+getAccount()
+setAccount()
+deleteAccount()
+getToken()
+setToken()
+deleteToken()
+updatesFromDownstream()
+getUpstream()
}
interface Accessor<K,V> {
+Optional<V> get(key)
+set(key,value)
+delete(key)
}
interface DatabaseAccessor<K,V> {
+Optional<V> get(key)
}
class StackedStateFrames<K> {
-stack
+StackedStateFrames(DatabaseAccessor...)
}
Entry::state o-right- ValueState
UpdatableReferenceCache::get *-up- Entry
StackedStateFrames::stack *-- CachingStateFrame : owns list of
CachingStateFrame::parentFrame o- CachingStateFrame
CachingStateFrame::accountCache *- UpdatableReferenceCache : accounts
CachingStateFrame::tokenCache *- UpdatableReferenceCache : tokens
ROCachingStateFrame <|-- RWCachingStateFrame
CachingStateFrame <|-- ROCachingStateFrame
CachingStateFrame <|-- DatabaseBackedStateFrame
CachingStateFrame o-left- Accessor : gets //strongly-typed//\nvalues for
StackedStateFrames::StackedStateFrames o-left- DatabaseAccessor : gets database\nvalues for
skinparam groupInheritance 2
@enduml
|
31de66094460605452a22b6847c2021c9b3f2dfd | 6fd26f6c6624b96d1500762cb09438354c7218e9 | /DailyPra/out/production/DailyPra/com/chase/UML/usecase.puml | dd436a1ae65ad8af723584513e5cffcee6640b1b | [] | no_license | ChaseYin/JustJava | 8f7ad8fc4582a9816dc8a13d8971afdc87970d4c | baf49317de0d73527466bff748b4561887edefdd | refs/heads/master | 2023-08-21T18:27:28.694274 | 2021-10-04T16:08:01 | 2021-10-04T16:08:01 | 390,931,874 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 255 | puml | @startuml
class "Vaccine Recipient"{
name
phone_number
id
}
class doctor{
clinic
accreditation
}
class vaccine {
date
}
"Vaccine Recipient" "1" -- "1" vaccine : receives >
doctor "1" -- "1" vaccine : gives >
@enduml
|
3c0e095fc40142474d5049be351e0c6f014cf3ed | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderRemoveItemShippingAddressAction.puml | 566e5385a66be5ce6f5ebdaa49a516a3454f992e | [] | 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 | 494 | 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 StagedOrderRemoveItemShippingAddressAction [[StagedOrderRemoveItemShippingAddressAction.svg]] extends StagedOrderUpdateAction {
action: String
addressKey: String
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
|
3575f009fd1a51bdb6b7e3da99c4dec9dc98b977 | 3a4fbffc931fc3f281e88c0eba61ee7e3111abff | /post/flink-sql-catalogtable.iuml | 20c03cd75f9b9deb3f189b66b7594212e5994e05 | [] | no_license | jrthe42/jrthe42.github.io | 801b0f8f4edd30a756400bce7ba12727ac8be6b5 | e831589a82720d9fd8c8a4c69ef535ab59f5719c | refs/heads/master | 2021-05-24T04:01:24.767798 | 2021-03-23T14:25:19 | 2021-03-23T14:25:19 | 34,150,333 | 1 | 0 | null | 2015-08-14T07:00:27 | 2015-04-18T03:06:28 | CSS | UTF-8 | PlantUML | false | false | 1,073 | iuml | @startuml catalogtable
interface CatalogBaseTable {
Map<String, String> getProperties();
TableSchema getSchema();
String getComment();
}
interface CatalogView extends CatalogBaseTable {
String getOriginalQuery();
String getExpandedQuery();
}
abstract class AbstractCatalogView implements CatalogView {
}
class CatalogViewImpl extends AbstractCatalogView {
}
class QueryOperationCatalogView extends AbstractCatalogView {
private final QueryOperation queryOperation;
}
interface CatalogTable extends CatalogBaseTable {
boolean isPartitioned();
List<String> getPartitionKeys();
Map<String, String> toProperties();
}
abstract class AbstractCatalogTable implements CatalogTable {
private final TableSchema tableSchema;
private final List<String> partitionKeys;
private final Map<String, String> properties;
}
class CatalogTableImpl extends AbstractCatalogTable {
}
class ConnectorCatalogTable<T1, T2> extends AbstractCatalogTable {
private final TableSource<T1> tableSource;
private final TableSink<T2> tableSink;
private final boolean isBatch;
}
@enduml |
58e4941532a5659880d9b48d069321ccc689319f | c76fe0e93a144d0b42d01346304c79cf6dff4d38 | /readme_files/cache_service.puml | 17c7bc6ce0019a2f85349058a984517d7bdc6973 | [
"Apache-2.0"
] | permissive | motorro/RxLceModel | b3e0ca3e10ad2dd773484f41674150f570ced847 | d6c0d456e23544982fed95dcd68c926005857ed6 | refs/heads/master | 2023-05-10T16:09:01.957578 | 2023-05-08T18:41:59 | 2023-05-08T18:41:59 | 172,682,449 | 7 | 0 | Apache-2.0 | 2023-01-31T15:35:40 | 2019-02-26T09:43:11 | Kotlin | UTF-8 | PlantUML | false | false | 284 | puml | @startuml
interface CacheService {
+get(params: PARAMS): Observable<Optional<Entity<DATA>>>
+save(params: PARAMS, entity: Entity<DATA>): Completable
+invalidate(params: PARAMS): Completable
+invalidateAll: Completable
+delete(params: PARAMS): Completable
}
@enduml |
ec1db4e09d1b30144cb08866f9b01a364c5e69ab | 015af2febe164b9667ae91319080ed064c132b0e | /kms/kms-api-gateway/src/main/java/com/uwaterloo/iqc/kms/apigateway/apigateway.plantuml | b1e98224ac354d243f9cf11b3c1fe736f65a20f0 | [
"MIT"
] | permissive | crazoter/qkd-net | fb247b3a122821451a64ea587619926d9571444c | 182860ec031bf066fd3a9fa60d6d3629b4d37899 | refs/heads/master | 2022-08-25T23:32:53.109504 | 2020-05-20T02:25:20 | 2020-05-20T02:25:20 | 263,811,400 | 1 | 0 | null | 2020-05-14T04:05:04 | 2020-05-14T04:05:04 | null | UTF-8 | PlantUML | false | false | 594 | plantuml | @startuml
title __APIGATEWAY's Class Diagram__\n
namespace com.uwaterloo.iqc.kms.apigateway {
class com.uwaterloo.iqc.kms.apigateway.KmsApiGatewayApplication {
{static} - logger : Logger
{static} + main()
}
}
namespace com.uwaterloo.iqc.kms.apigateway {
class com.uwaterloo.iqc.kms.apigateway.PrincipalRestController {
~ principal()
}
}
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
|
8a1070319d93f960960ee3bcfa40a156cb9dc121 | cfaaae92618c2947d53a0d766859d80394554b0c | /test.puml | c03b0ad457e4a7e285d449d39acbb206291b9cfa | [] | no_license | nira24/Testnirali | eb7a6caa236cec5cb033be93841c794f66a5ddd6 | b3af026596e09945d5335b0aa749b3ba580d20d2 | refs/heads/main | 2023-03-12T06:05:38.099946 | 2021-03-01T20:15:31 | 2021-03-01T20:15:31 | 343,166,939 | 0 | 0 | null | 2021-02-28T17:50:08 | 2021-02-28T17:25:49 | null | UTF-8 | PlantUML | false | false | 383 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection
List <|-- AbstractList
Collection <|-- AbstractCollection
Collection <|- List
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList
class ArrayList {
Object[] elementData
size()
}
enum TimeUnit {
DAYS
HOURS
MINUTES
test
}
@enduml |
ba0494813bc2ab937d266bb9c865c3f09f5d4074 | 0eba70e9cdb26c9184163384eece404dba2acfcc | /app/src/main/java/com/makeus/jfive/famo/util/Questionnaire.puml | 2f97d03f6ccae8db6396a35c95f9d2d73d62e138 | [] | no_license | jae1jeong/Famo | 46fa7994b761cd1918eecc5c29143c0f2d28bf97 | 46d1f80baeca8afc685acbc11803f912fd07549f | refs/heads/master | 2023-08-14T12:53:31.919356 | 2021-10-06T16:38:01 | 2021-10-06T16:38:01 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 445 | puml | @startuml
'https://plantuml.com/class-diagram
class Activity{
}
class BottomSheetDialog{
}
interface QuestionBottomSheetDialog{
initDialog()
setOkBtnListener()
}
abstract class QbottomSheetDialog(){
Button okBtn
Button closeBtn
}
class QuestionnaireHelper{
Int resId
ViewGroup? root
Boolean attachToRoot
initDialog(BottomSheetDialog bottomSheetDialog)
}
Activity *-- QuestionnaireHelper
QuestionnaireHelper *-- BottomSheetDialog
@enduml |
ee979657690fef5d257b7ab2d0223258890396e9 | 6e29d893e7deebb9339dd5515195d7e510aba402 | /Documentação/Sprint 3/Modelo_Dominio.puml | 29c84badbf5a06e2bc9805eda3f91e53d6355ee6 | [] | no_license | blestonbandeiraUPSKILL/upskill_java1_labprg_grupo2 | 3a257326461907780a503165042584c5b7a8e535 | 95c31675e9008e961f00b177d6814046a72b577c | refs/heads/main | 2023-03-18T20:54:48.147868 | 2021-03-21T20:10:16 | 2021-03-21T20:10:16 | 331,623,577 | 0 | 2 | null | 2021-03-21T20:10:17 | 2021-01-21T12:38:14 | Java | UTF-8 | PlantUML | false | false | 3,853 | puml | @startuml
title Modelo de Domínio
left to right direction
class Plataforma {
-String designacao
}
class AreaActividade {
-String codigo
-String descBreve
-String descDetalhada
}
class CompetenciaTecnica {
-String codigo
-String descBreve
-String descDetalhada
}
class Organizacao {
-String nome
-String NIF
-String website
-String telefone
-String email
}
class TipoRegimento {
-String designacao
-String descricaoRegras
}
class Tarefa {
-String referencia
-String designacao
-String descInformal
-String descTecnica
-Integer duracaoEst
-Double custoEst
}
class CaracterCT {
-Boolean obrigatoria
}
class Categoria {
-String id
-String descricao
}
class Colaborador {
-String funcao
-String telefone
}
class EnderecoPostal {
-String local
-String codPostal
-String localidade
}
class Freelancer {
-String NIF
-String telefone
}
class GrauProficiencia {
-Integer valor
-String designacao
}
class ReconhecimentoCT {
-Data dataReconhecimento
}
class HabilitacaoAcademica {
-String grau
-String designacaoCurso
-String nomeInstituicao
-Double mediaCurso
}
class Candidatura {
-Date dataFimCandidatura
-Double valorPretendido
-Integer numeroDias
-String txtApresentacao
-String txtMotivacao
}
class Administrativo {
}
class Utilizador {
-String nome
-String email
-String password
}
class Password {
String password
}
class Email {
String email
}
class AlgoritmoGeradorPasswords {
}
class Anuncio {
-Data dataInicioPublicitacao
-Date dataFimPublicitacao
-Date dataInicioCandidatura
-Date dataFimCandidatura
-DateInicioSeriacao
-DateFimSeriacao
}
class ProcessoSeriacao {
-Date dataRealizacao
}
class Classificacao {
-Integer lugar
}
Plataforma"1" -- "*"Organizacao: tem registadas >
Plataforma"1" -- "*"Freelancer: tem/usa >
Plataforma"1" -- "*"Administrativo: tem >
Plataforma"1" -- "*"AreaActividade: possui >
Plataforma"1" -- "*"CompetenciaTecnica: possui >
Plataforma"1" -- "*"Categoria: possui >
Plataforma"1" -- "*"Anuncio: publicita >
Plataforma"1" -- "*"TipoRegimento: suporta >
Anuncio"*" -- "1"TipoRegimento: rege-se por >
Anuncio"0..1" -- "1"Tarefa: publicita >
Anuncio"*" -- "1"Colaborador: publicado por >
Anuncio"1" -- "*"Candidatura: recebe >
Anuncio"1" -- "0..1"ProcessoSeriacao: despoleta >
ProcessoSeriacao"1" -- "*"Classificacao: resulta >
ProcessoSeriacao"*" -- "1"TipoRegimento: decorre em concordância com >
ProcessoSeriacao"1" -- "1..*"Colaborador: realizado por >
Candidatura"*" -- "1"Freelancer: realizada por >
Tarefa"1" -- "0..1"Anuncio: Anuncio: dá origem >
Tarefa"*" -- "1"Categoria: enquadra-se em >
Tarefa"*" -- "1"Colaborador: especificada por >
CompetenciaTecnica"*" -- "*"AreaActividade: referente a >
Organizacao"1" -- "*"Tarefa: possui >
Organizacao"1" -- EnderecoPostal: localizada em >
Organizacao"1" -- "1"Colaborador: tem gestor >
Organizacao"1" -- "1..*"Colaborador: tem >
Freelancer"0..1" -- "1"Utilizador: actua como <
Administrativo"0..1" -- "1"Utilizador: actua como <
Colaborador"0..1" -- "1"Utilizador: actua como <
Categoria"*" -- "*"CompetenciaTecnica: requer >
(Categoria, CompetenciaTecnica) . CaracterCT
CaracterCT"*" -- GrauProficiencia: exige(como minimo) >
Utilizador"1" -- "1"Email: possui >
Utilizador"1" -- "1"Password: possui >
Freelancer"0..1" -- "1"EnderecoPostal: tem >
Freelancer"1" -- "*"ReconhecimentoCT: recebe(u) >
Freelancer"1" -- "*"HabilitacaoAcademica: tem >
Freelancer"0..1" -- Utilizador: actua como <
Plataforma"1" -- AlgoritmoGeradorPasswords: recorre a >
ReconhecimentoCT"*" -- "1"CompetenciaTecnica: relativa a >
ReconhecimentoCT"*" -- "1"GrauProficiencia: reconhece >
CompetenciaTecnica"1" -- "*"GrauProficiencia: aplica >
@enduml |
a1e92173e32f5efa2b1af0a94def2f80f10900b4 | 8ec1fb16b350f453824ca50174347688b310ce2c | /aula03/aula03.plantuml | 250dffcc22fc461a7f7ac2bbe50906f4f548ef07 | [] | no_license | oEscal/PDS | 2f32cd491a0a963e3b7182f772d8699ba82f3bf3 | 5feca5f16979319869da5fcf97ae3f3dfbbf1986 | refs/heads/master | 2020-04-25T00:23:09.561837 | 2019-06-03T09:17:43 | 2019-06-03T09:17:43 | 172,376,799 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,771 | plantuml | @startuml
title __AULA03's Class Diagram__\n
package aula03 {
class ErrorStreet {
{static} + nonExistDoorError()
{static} + doorsIntervalError()
{static} + memberNameError()
}
}
package aula03 {
class JGalo {
{static} - serialVersionUID : long
- jPanel : JPanel
- bt : JToggleButton[]
+ JGalo()
+ actionPerformed()
{static} + main()
}
}
package aula03 {
class JGaloController {
{static} - PLAYERS_IDENTIFIERS : char[]
- board : int[][]
- current_player : int
- count_plays : int
- winner : int
+ JGaloController()
+ getActualPlayer()
+ setJogada()
+ isFinished()
+ checkResult()
- checkIfWinner()
- checkHaveMorePlays()
}
}
package aula03 {
interface JGaloInterface {
{abstract} + getActualPlayer()
{abstract} + setJogada()
{abstract} + isFinished()
{abstract} + checkResult()
}
}
package aula03 {
class Member {
- name : String
- num_initial : int
- num_final : int
- Member()
{static} + factory()
+ getName()
+ getNum_initial()
+ getNum_final()
{static} - checkNames()
+ toString()
}
}
package aula03 {
class MemberNameComparator {
+ compare()
}
}
package aula03 {
class MemberSetComparator {
+ compare()
}
}
package aula03 {
class StreetMap {
- doors : List<TreeSet<Member>>
+ StreetMap()
+ add()
+ addAll()
- increaseStreetSize()
+ getDoors()
+ getInDoor()
+ toString()
}
}
package aula03 {
class lab3 {
{static} - MIN_NUMBER_DOOR : int
{static} ~ input : Scanner
{static} + main()
{static} - menu()
{static} - readFileLines()
{static} - getFamilies()
{static} - map()
{static} - list()
{static} - addMember()
{static} - removeMember()
{static} - lookUp()
{static} - clearStreet()
{static} - checkDoors()
{static} - setContainsMember()
{static} - generateWhiteString()
{static} - checkIfMember()
{static} - isInteger()
{static} - verifySizeOption()
}
}
JGalo -up-|> ActionListener
JGalo -up-|> JFrame
JGalo o-- JGaloInterface : jogo
AccessibleJFrame -up-|> AccessibleAWTFrame
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFrame -up-|> AccessibleAWTWindow
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTWindow -up-|> AccessibleAWTContainer
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WindowDisposerRecord -up-|> DisposerRecord
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WakingRunnable -up-|> Runnable
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
DummyRequestFocusController -up-|> RequestFocusController
SingleBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
BltBufferStrategy -up-|> BufferStrategy
FlipBufferStrategy -up-|> BufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
FlipContents -up-|> AttributeValue
JGaloController -up-|> JGaloInterface
MemberNameComparator -up-|> Comparator
MemberSetComparator -up-|> Comparator
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
|
eb11955ba50b4229a03c2d4d5d433cb64aff6df5 | 6ad03e268176b3afaf38235347ea3329a6bb19ba | /VideoStore/diagram/class.puml | b7dd08ccd77903f785243a3470b639ac309b90ed | [
"Unlicense"
] | permissive | LiuPai/refactoring | f09714f9613bfc87df4cf64fa05e7fd3252e6ecb | a290aca180d2d8611ee8837c42a8f5a2a4fcc02c | refs/heads/master | 2021-01-20T18:48:39.860236 | 2016-06-23T02:41:24 | 2016-06-23T02:41:24 | 61,682,627 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 775 | puml | class Movie {
+ PriceCode int
+ float64 GetCharge(days int)
+ int GetFrequentRenterPoints(days int)
}
class Rental {
+ DaysRented int
+ float64 GetCharge()
+ int GetFrequentRenterPoints()
}
class Customer {
- name string
+ string Statement()
+ string HTMLStatement()
+ float64 GetTotalCharge()
+ int GetTotalFrequentRenterPoints()
}
interface Price {
+ float64 GetCharge(days int)
+ int GetFrequentRenterPoints(days int)
}
class ChildrensPrice {
+ float64 GetCharge(days int)
}
class NewReleasePrice {
+ float64 GetCharge(days int)
+ int GetFrequentRenterPoints(days int)
}
class RegularPrice {
+ float64 GetCharge(days int)
}
Customer -l-> "*" Rental
Rental -u-> "1" Movie
Movie -r-> "1" Price
ChildrensPrice -u-|> Price
NewReleasePrice -u-|> Price
RegularPrice -u-|> Price
|
129ec4d049784fd8aa4d7e79942a6c5b71cfc7a8 | 3653a4488ad0d31bad8871582142d0ec1194a787 | /src/main/asciidoc/images/domain.puml | 0389143a3e87214f61a2f1631d5ed3a752b2e4b3 | [] | no_license | umons-polytech-odl2017/odl-ie-doc | 1ef4b7299b702a8dc1deeaeeb07ad8dd91cd01ce | b509346109260abe7d8d7a61c9473336c16b47c5 | refs/heads/master | 2021-03-24T09:11:48.951056 | 2017-11-16T10:32:04 | 2017-11-16T10:32:04 | 110,947,490 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 483 | puml | @startuml
hide empty members
class Project
class Task {
- description
- expectedDuration
- deadline
- progress
}
class AgendaEntry {
- startTime
- endTime
}
class Skill
class Resource
class Manager
class Worker
class Team
class Algorithm
Project o-- Task
Manager --> Algorithm : > prefers
Manager - Team
Team *-- Worker
Worker o--> Skill : > has
Task --> Skill : > requires
Task --> Resource : > requires
AgendaEntry - Task
Worker - AgendaEntry
Resource o- Resource
@enduml
|
434e02149be5a1dec45b52aeb323993c2341ca67 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.puml | 55f80b47242d2ea09b713919a95f96cf4ff855ca | [] | 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 | 337 | puml | @startuml
class VertexZoom {
+ AngleMultiplier : float = 1.0f
+ SpeedMultiplier : float = 1.0f
+ CurveScale : float = 1.0f
Awake() : void
OnEnable() : void
OnDisable() : void
Start() : void
ON_TEXT_CHANGED(obj:Object) : void
AnimateVertexColors() : IEnumerator
}
MonoBehaviour <|-- VertexZoom
@enduml
|
766cd76c11072d4521dbffa195095b446e87a7d7 | 644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc | /docs/uml/software/old/factory/Factory.puml | f55ec1f1c884014666f9480383d904aa17a1a4a1 | [] | 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 | 621 | puml | @startuml
class Factory {
+ Factory(args:string[])
- create_wrapper() : IConsole
- create_device_changer(wrapper:IConsole) : IDeviceChanger
- create_device_sorter(wrapper:IConsole) : IDeviceSorter
- create_device_reader(wrapper:IConsole) : IDeviceReader
- create_device(parser:ICommandLineParser, reader:IDeviceReader, sorter:IDeviceSorter, changer:IDeviceChanger) : Device
- create_menu(dev:Device) : Menu
- create_cmd_parser(args:string[]) : CommandLineParser
}
IFactory <|-- Factory
Factory --> "Menu" Menu
Factory --> "Device" Device
Factory --> "CmdParser" ICommandLineParser
@enduml
|
4da965392251c90e5491570330fae50e8f4cf719 | bf3e610c8668e525aedcca58ddbe9da7c19e427e | /docs/design/rule-manager/class-diagram.puml | 262717e12b02acf7640ac80ce8bcc3b2d1908331 | [
"Apache-2.0"
] | permissive | telstra/open-kilda | 874b5204f8c2070860a2e7fc6f8be368a5d18726 | 686d31220f1033595d7f1d4374544af5ba9c42fe | refs/heads/develop | 2023-08-15T21:24:21.294425 | 2023-08-14T08:51:52 | 2023-08-14T08:51:52 | 104,974,693 | 82 | 70 | Apache-2.0 | 2023-09-14T19:11:22 | 2017-09-27T05:13:18 | Java | UTF-8 | PlantUML | false | false | 3,050 | puml | @startuml
title RuleManager Classes diagram
interface RuleManager {
--
buildRulesForFlowPath(flowPath : FlowPath, adapter : DataAdapter) : List<Command>
buildRulesForSwitch(switchId : SwitchId, adapter : DataAdapter) : List<Command>
}
interface DataAdapter {
--
getFlowPaths() : Map<PathId, FlowPath>
getFlow(PathId) : Flow
getSwitch(SwitchId) : Switch
getSwitchProperties(SwitchId) : SwitchProperties
}
RuleManager -left- DataAdapter : consume
class InMemoryDataAdapter {
flowPaths : Map<PathId, FlowPath>
flows : Map<PathId, Flow>
switches : Map<SwitchId, Switch>
switchProperties : Map<SwitchId, SwitchProperties>
--
}
DataAdapter <|-- InMemoryDataAdapter
class OrientDbDataAdapter {
pathIds : Collection<PathId>
flowPathRepository : FlowPathRepository
flowRepository : FlowRepository
switchRepository : SwitchRepository
switchPropertiesRepository : SwitchPropertiesRepository
--
}
DataAdapter <|-- OrientDbDataAdapter
class JsonDataAdapter {
file : Path
--
}
DataAdapter <|-- JsonDataAdapter
abstract class Command {
uuid : String
switchId : SwitchId
type : CommandType
dependsOn : Collection<String>
--
}
RuleManager --down-- Command : return
enum CommandType {
Flow
Meter
Group
}
Command o--> CommandType
class FlowCommand {
cookie : long
tableNumber : int
match : Collection<Match>
instructions : Instructions
--
}
Command <|-- FlowCommand
interface Match {
--
getMatchType() : MatchType
getMatchValue() : long
getMatchMask() : long
}
FlowCommand o--> Match
enum MatchType {
IN_PORT
METADATA
...
}
Match o--> MatchType
class InPortMatch {
matchType = IN_PORT
value : long
mask = Long.MAX_VALUE
--
}
Match <|-- InPortMatch
class MetadataMatch {
matchType = METADATA
value : long
mask : long
--
}
Match <|-- MetadataMatch
class Instructions {
applyActions : List<Action>
goToMeter : int
goToTable : int
--
}
FlowCommand o--> Instructions
interface Action {
--
getActionType() : ActionType
}
Instructions o--> Action
enum ActionType {
POP_VLAN
PUSH_VLAN
GROUP
PORT_OUT
...
}
ActionType o--> Action
class PopVlanAction {
actionType = POP_VLAN
--
}
Action <|-- PopVlanAction
class PushVlanAction {
actionType = PUSH_VLAN
vlanId : int
--
}
Action <|-- PushVlanAction
class GroupAction {
actionType = GROUP
groupId : int
--
}
Action <|-- GroupAction
class PortOutAction {
actionType = PORT_OUT
port : int
--
}
Action <|-- PortOutAction
class MeterCommand {
id : int
rate : int
burst : int
flags : Set<Flag>
--
}
Command <|-- MeterCommand
class GroupCommand {
id : int
groupType : GroupType
buckets : List<Bucket>
--
}
Command <|-- GroupCommand
class Bucket {
watchGroup : WatchGroup
watchPort : WatchPort
actions : List<Action>
--
}
GroupCommand o--> Bucket
Bucket o--> Action
@enduml |
ce8e0190a87e7f542b337a193826b1c6cac0fbe1 | ae8d603e1a8a158e234db029994362498bd676cf | /Dossier de conception/V1/V1vueClasse.puml | dbe79776f42f828c49971c67364d0b1afb13b5b6 | [] | no_license | LeaMercier/Creation-of-a-mini-editor | 91a29f663c0ba822ec6b23aaaf84ae2058738715 | eee5fcd95a05ea43a43929a2c1d1169b8968eaa4 | refs/heads/master | 2023-04-08T11:16:27.934645 | 2021-04-17T11:13:04 | 2021-04-17T11:13:04 | 358,853,598 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,889 | puml | @startuml mediatheque
'Partie pour l'interface graphique, front-end'
Interface ActionListener{
}
class JButon{
}
abstract class Bouton{
actionPerformed()
getPreferredSize()
addActionListener()
effectuModif()
}
class BoutonColler {
}
class BoutonCopier {
}
class BoutonCouper {
}
class ComponentTexte{
getPreferredSize()
updateSelection()
updateBuffer()
mouseDagged()
mouseMoved()
textValueChanged()
update()
}
class MainActivity{
double XGLOBAL
double YGLOBAL
main()
}
class Window{
double x
double y
init()
}
ActionListener <|-- Bouton
JButon <|-- Bouton
Bouton <|-- BoutonColler
Bouton <|-- BoutonCopier
Bouton <|-- BoutonCouper
MainActivity *-- Window: "0..1"
Window *-- BoutonColler: "0..1"
Window *-- ComponentTexte: "0..1"
Window *-- BoutonCopier: "0..1"
Window *-- BoutonCouper: "0..1"
'Partie pour la gestion interne du programme, back-end'
Interface ModifieTexte {
undo()
redo()
}
abstract class ExpaceMemoire{
String contenu
get()
affecte()
}
class Buffer{
}
class PressePapier{
}
ExpaceMemoire <|-- Buffer
ExpaceMemoire <|-- PressePapier
class Sélection{
int start
int stop
setStart()
setEnd()
getStart()
getEnd()
}
abstract class Action{
}
class Copier{
copier()
}
class Coller{
String sauvegarde
String annulation
coller()
}
class Couper {
String sauvegarde
String annulation
couper()
}
ModifieTexte <|-- Copier
ModifieTexte <|-- Coller
Action <|-- Copier
Action <|-- Coller
Action <|-- Couper
Action-PressePapier:"cache"
Action-Sélection:"selection"
Action-Buffer:"buffer"
Bouton-PressePapier : "cache"
Bouton-Sélection:"selection"
Bouton-Buffer:"buffer"
BoutonColler-ComponentTexte:"texte"
BoutonCouper-ComponentTexte:"texte"
ComponentTexte-Sélection:"selection"
ComponentTexte-Buffer:"memoire"
@enduml
|
26ee5aec5bcf3874ef6239192b1e73470ae218bf | 9afb5421fc253090b8a5c1f1f635986e21ebd740 | /LeGuide_Dev/MadeUp_Figures/Sherbrooke/Documents_Demande.plantuml | 949578fa09c7c8a1d4607e1956bb50f2b837c5e4 | [] | no_license | TheFbomb/Guide_Bidiplome | 88ada23614f8dce106be3c3e9d60ebcad44d1a54 | 572c26666cb51a933c4146d7993bd8a25aa535eb | refs/heads/master | 2021-09-03T14:35:10.764974 | 2018-01-09T20:15:11 | 2018-01-09T20:15:11 | 111,231,512 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,402 | plantuml | @startuml
title Pièces à fournir pour chaque documents \n
class "Etudiant" as class1
class CAQ {
- Original du formulaire Déclaration, engagements et autorisations daté et signé
- Original d'une photo d'identité
- Photocopie lisible de votre passeport
- Lettre d'admission de l'UdeS
- Déclaration de soutien financier
- Lettre d'emploi récente mentionnant le salaire de vos parents
- Tout document faisant état de ses avoirs
- Relevés récents de salaire
- Avis de cotisation le plus récent à un régime d'imposition
- Lettre de banque indiquant son solde actuel
- Relevé bancaire des trois derniers mois l'identifiant comme titulaire du compte
- Autorisation de transfert de fonds
}
class Permis_Etude {
- CAQ
- Scanne lisible de votre passeport
- Scanne d'une photo d'identité
- Lettre d'admission de l'UdeS
- Document IMM1294
- Lettre de banque indiquant son solde actuel
- Relevé de banque indiquant son solde actuel
- Document de renseignement sur la famille
}
class "Forumlaire_SE-401-Q-102" as classForm{
- Formulaire SE 401-Q-102 vièrge ET pré-remplie
- Passeport
- Lettre d'admission de l'UdeS
- Attestation d’affiliation délivrée par le régime étudiant.
}
class Bourse_ENVOLE {
- Passeport
- Lettre d'admission de l'UdeS
}
class1 "1" *-up- CAQ
class1 "2" *-left- Permis_Etude
class1 "3" *-right- classForm
class1 "4" *-down- Bourse_ENVOLE
@enduml
|
c360e9449ab3c5b382becd6122b71a37003ab94a | 555a1e45d2ced2f12fc120157aab8efd1de5b301 | /Design/slaveelevator.plantuml | aa708dab0603a40a2a7fec71aa17fc8848c5e6c3 | [] | no_license | eivindhstray/Sanntid | 2c09faa775587044b7d882ef0b533abdf09454fa | c4fa8c197f1ff7e9826eec20a08de28a7ce5d530 | refs/heads/master | 2022-04-22T17:06:00.598904 | 2020-04-22T10:56:31 | 2020-04-22T10:56:31 | 235,599,593 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 623 | plantuml | @startuml
enum states{
{idle, running, emergency, door, lights}
}
class FSM{
switch(case)
}
class Queue{
queue_enter()
queue_exit()
queue_update_order()
}
class lights{
light_on()
light_off()
}
class cost{
cost_determine_cost()
}
class network{
network_transmit()
network_recieve()
}
class emergency{
emergency_stop()
}
class door{
door_open()
door_close()
}
class buttons{
buttons()
}
class motor_driver{
direction_set()
direction_get()
}
network <-> FSM
cost -> FSM
buttons -> network
FSM <-> lights
FSM <-> door
FSM <-> emergency
FSM <-> motor_driver
Queue -> cost
network -> Queue
states -> FSM
@enduml
|
8aee770c99409d4c656d204e8c0970d78ccf9041 | 86a3a7f68a26bf947a96c34a6b008dc98e48c575 | /lapr2-2020-g041/docs/UC1/UC1_MD.puml | f6784b22328a4675cf8b05bb76225cec227bc5f0 | [
"MIT"
] | permissive | GJordao12/ISEP-LAPR2 | 7f01f7fe4036f17a4a76f0595e80564c2dda7b3c | 0c537d1cf57f627f98e42b6f1b7e100f49ff2d15 | refs/heads/master | 2023-08-17T10:59:19.469307 | 2021-10-02T16:27:19 | 2021-10-02T16:27:19 | 272,283,723 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 948 | puml | @startuml
hide methods
left to right direction
class Platform {
-String designation
}
class Organization {
-String designation
}
class User {
-String name
-String email
-String password
}
class Collaborator {
-String name
-String email
}
class Manager {
-String name
-String email
}
class Administrator {
}
class ExternalPasswordGeneratorAlgorithm {
}
Platform "1" -- "*" Organization : has registered >
Platform "1" -- "*" Administrator : has registered >
Platform "1" -- "*" User : has registered >
Platform "1" -- "1" ExternalPasswordGeneratorAlgorithm : resort to >
Organization "1" -- "1" Collaborator: has >
Organization "1" -- "1" Manager: has >
Collaborator "0..1" -- "1" User : act as >
Manager "0..1" -- "1" User : act as >
Administrator "0..1" -- "1" User : act as >
Administrator "1" -- "*" Organization : registers >
ExternalPasswordGeneratorAlgorithm "1" -- "*" User : generates password to >
@enduml
|
0a764d758b2d20d04bbad995f62ea32347911508 | c808c053ca4ad88d384a4690c612bde8d2b515ac | /cardreader.provider.nfc/doc/plantuml/NFCCRP/NfcCardChecker.plantuml | 06939104288714027f609c203bbe2b7accd4710d | [
"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 | 546 | plantuml | @startuml
package de.gematik.ti.cardreader.provider.nfc {
package de.gematik.ti.cardreader.provider.nfc.control {
class NfcCardChecker {
{static} - LOG : Logger
- cardReader : ICardReader
- active : boolean
{static} - TIMEOUT : int
- cardEventTransmitter : CardEventTransmitter
- currentCardState : boolean
+ NfcCardChecker()
+ shutdown()
+ run()
- checkCardStateAndSendEvent()
- isCardPresent()
}
}
}
@enduml
|
1f0294567ef2a28bdf5b1a527074815fd4eabf14 | 372e13940be1f116c671dbb746617a331f06899e | /Assets/TPPackages/com.cocoplay.core/Documentation-/puml/Runtime/Utility/RayUtil.puml | 3ae2af7cb56f965121afb224bcbbd1234c7d08d4 | [] | no_license | guolifeng2018/CIGA-Game-Jam | 797734576510e27b5c5cee2eb17c1444f51d258c | fcd03e5579bef3bffe2cb51f52ba11a49a9cc02d | refs/heads/master | 2022-12-10T19:21:15.522141 | 2020-08-16T10:06:23 | 2020-08-16T10:06:23 | 285,986,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,516 | puml | @startuml
class RayUtil <<static>> {
+ {static} GetRayByScreenPos(camera:Camera, screenPos:Vector3) : Ray
+ {static} GetRayByViewPort(camera:Camera, viewPort:Vector3) : Ray
+ {static} GetRayByWorldPos(camera:Camera, worldPos:Vector3) : Ray
+ {static} RaycastByScreenPos(camera:Camera, screenPos:Vector3, hit:RaycastHit, maxDistance:float, layerMask:int) : bool
+ {static} RaycastByScreenPos(camera:Camera, screenPos:Vector3, maxDistance:float, layerMask:int) : Collider
+ {static} RaycastByViewPort(camera:Camera, viewPort:Vector3, hit:RaycastHit, maxDistance:float, layerMask:int) : bool
+ {static} RaycastByViewPort(camera:Camera, viewPort:Vector3, maxDistance:float, layerMask:int) : Collider
+ {static} RaycastByWorldPos(camera:Camera, worldPos:Vector3, hit:RaycastHit, maxDistance:float, layerMask:int) : bool
+ {static} RaycastByWorldPos(camera:Camera, worldPos:Vector3, maxDistance:float, layerMask:int) : Collider
+ {static} Raycast(ray:Ray, maxDistance:float, layerMask:int) : Collider
+ {static} GetWorldPosByX(ray:Ray, worldPosX:float) : Vector3
+ {static} GetWorldPosByX(camera:Camera, screenPos:Vector3, worldPosX:float) : Vector3
+ {static} GetWorldPosByY(ray:Ray, worldPosY:float) : Vector3
+ {static} GetWorldPosByY(camera:Camera, screenPos:Vector3, worldPosY:float) : Vector3
+ {static} GetWorldPosByZ(ray:Ray, worldPosZ:float) : Vector3
+ {static} GetWorldPosByZ(camera:Camera, screenPos:Vector3, worldPosZ:float) : Vector3
}
@enduml
|
9f028ece6bd6859802465847ebdd59d13cf17272 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/BrowserExtension/Listeners/TabListener.puml | b24fcdad0c6d6e899d55d75b2c6852fd58409ae5 | [
"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 | 541 | puml | @startuml
skinparam linetype ortho
skinparam monochrome true
skinparam classAttributeIconSize 0
class TabListener {
+ TabListener(callback : function(BrowserEvent) : void)
+ start()
+ stop()
}
interface IListener {
+ IListener(callback : function(BrowserEvent) : void)
+ start() : void
+ stop() : void
}
TabListener .UP.|> IListener : implements
TabListener ..> OpenTabEvent : creates
TabListener ..> CloseTabEvent : creates
TabListener ..> SwitchTabEvent : creates
TabListener ..> NavigationEvent : creates
@enduml
|
08d96053823922962d5610bc07a93d4305a73d63 | 40dff9f3accaa74abc586113fbe434a6a47073b4 | /src/main/java/com/kiran/design/solid/a/srp/fixing_srp.puml | 7839110bbf250480648760cc892321c72842a1a0 | [] | no_license | kiranprakashb/design-core-java | 05eac64aa217bf9acbbda21dcd7b98e56e558f20 | 2c661c0d2e0506b7fa547395527422205c4cd50e | refs/heads/main | 2023-03-04T01:24:55.516348 | 2021-02-17T19:24:51 | 2021-02-17T19:24:51 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 248 | puml | @startuml
'https://plantuml.com/class-diagram
class Book {
name
author
isbn
text
printText(Printer)
mailText(Mailer)
}
class BookPrinter {
book
printBook()
}
class BookMailer {
book
mailBook()
}
Book <.. BookPrinter
Book <.. BookMailer
@enduml |
affce7856d678bb41917fd535a4b589f06b318b4 | bd46e0a53ff71933112f10fda4c8af680ec65fbc | /src/main/java/patterns/oop/strucutural/adapter/AdapterUML.puml | 0507084728089975a9d076b109d3323b4bda549e | [] | no_license | zghib/experiment | 8e98eee72e149d0cc010f6c54affa10be0795fc7 | ee6518146b9419f3d7154422d3a333d7ba6fbbad | refs/heads/master | 2021-01-10T01:41:41.654341 | 2016-03-03T13:04:42 | 2016-03-03T14:09:54 | 52,965,937 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 323 | puml | @startuml
class Client{
Adaptor adaptor
doWork()
}
note bottom: doWork() - adaptor.methodA()
class Adaptor{
methodA()
}
note bottom of Adaptor
method1()
. . .
methodN()
end note
class Adaptee1{
method1()
}
class AdapteeN{
methodN()
}
Adaptor -up-> Adaptee1
Adaptor -up-> AdapteeN
Client -> Adaptor
@enduml |
3da298486aad614a11cf88a17a2b01fd26fae2f2 | 13d8c83e14ae1cad511f30b984f5f4c86ed97976 | /exercise43/docs/ex43.puml | 9ea0ef06750a5ed4a2ea04a36783667829b60cbc | [] | no_license | drumman22/grossman-a04 | 5a31dcf4086dbfceb889c6437477cdb65e285041 | 4303c3147249bf183f5af5b4fffbbd843947ba6a | refs/heads/master | 2023-09-06T04:20:42.918012 | 2021-10-26T15:55:32 | 2021-10-26T15:55:32 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 991 | puml | @startuml
class Solution43
Solution43 : + boolean getBoolInput(String message)
Solution43 : + boolean validateBoolInput(String in, String message)
Solution43 : + String getStringInput(String message)
class WebsiteGenerator {
- String siteName
- String authorName
- boolean createJSFolder
- boolean createCSSFolder
}
WebsiteGenerator : + void createDirectory(File path)
WebsiteGenerator : + void createFolder(File path)
WebsiteGenerator : + void formatHtmlTemplate(File dir, File template)
WebsiteGenerator : - copyFile(File source, File dest)
WebsiteGenerator : + String getSiteName()
WebsiteGenerator : + void setSiteName(String siteName)
WebsiteGenerator : + String getAuthor()
WebsiteGenerator : + void setAuthor(String author)
WebsiteGenerator : + boolean isJSFolder()
WebsiteGenerator : + void setJSFolder(boolean JSFolder)
WebsiteGenerator : + boolean isCSSFolder()
WebsiteGenerator : + void setCSSFolder(boolean CSSFolder)
Solution43 -- WebsiteGenerator
@enduml |
2f52b89a255bfe41fcb06b1b89b0a32bed15d9ba | 44c3e6a7b4f294108c34d4f5a76d35e2e226a93d | /PlutoAndroidExample/app/pluto_uml.puml | 0844c2ea5f2e215c1591c12a0ee300564dd89d76 | [
"MIT"
] | permissive | cumtqiao/Pluto-Android | 3b06732ecf5f3156e05c03a3abedd39f3d4f8d7e | dd7dc2622f09a5d041171796027c3baaa49dfb63 | refs/heads/master | 2020-05-25T08:14:56.980441 | 2019-06-25T09:34:57 | 2019-06-25T09:34:57 | 84,925,269 | 1 | 0 | NOASSERTION | 2019-06-25T09:34:58 | 2017-03-14T08:39:05 | Java | UTF-8 | PlantUML | false | false | 2,515 | puml | @startuml
title \npluto框架的构架图
package NetworkFramework <<Cloud>> {
class ApiClient
class StringUtil
class HttpClient
class ApiUrl
}
package DataFramework <<Database>> {
interface DataManager{
-saveData(...);
-T queryData(...);
-void deleteData(...);
-void updateData(..);
}
class DataManagerStub
class DataManagerProxy{
+dataManagerStub;
+getInstance(Emu stubType);
}
class FinalDb{
}
class SharePreferenceUtil
class PlutoFileCache
}
package UIFramework <<Folder>> {
class PlutoActivity{
Integrate function
~handleUiMessage();
}
class ButterKnife
interface IActivity
class PlutoDialog
class UiHandler
class Gson
class Toast
class AppCompatActivity
class ChildActivity
class Glide
class PlutoFragment
}
package ServiceManager <<Folder>> {
class LogicChild{
-doInBackground();
-postExcute();
}
class CommonAsyncTask{
+ThreadFactory
+ThreadPoolExecutor
+InternalHandler
-doInBackground();
-update(Observable o, Object arg);
}
class PlutoApiEngine{
+addRequiredParam();
+<T> T get..(...)
+<T> T post...(...)
+<T> List<T> ...(...)
}
interface Observer
class Observable
class AsyncTaskManager{
-cancelAll();
-addTask(Observer task);
}
class LogicManager{
-<T> LogicManager(...);
-splitEnum(...)
-<T> T startEngine(...);
}
class LogicParam
}
"AppCompatActivity"<|-left-"PlutoActivity"
"PlutoActivity" .left.|>"IActivity"
"PlutoActivity" -up->"UiHandler"
"PlutoActivity" -up->"Gson"
"ChildActivity" -up-|>"PlutoActivity"
"ChildActivity" -right->"ButterKnife"
"ChildActivity" .left->"Glide"
"PlutoActivity" -up->"Toast"
"PlutoActivity" -up->"PlutoDialog"
"PlutoActivity" "1" o.up."0.*" "PlutoFragment"
"ChildActivity" "1" o.. "0.*" "LogicManager"
"LogicChild"-up-|>"LogicManager"
"LogicManager"-left->"LogicParam"
"LogicManager"-right-|>"CommonAsyncTask"
"CommonAsyncTask".down.|>"Observer"
"LogicChild".down.>"PlutoApiEngine"
"CommonAsyncTask" "0..*".left.o "1" "AsyncTaskManager"
"AsyncTaskManager" -down-|> "Observable"
"PlutoApiEngine"..down.>"DataManagerProxy"
"PlutoApiEngine"..left.>"ApiClient"
"ApiClient"-left->"HttpClient"
"HttpClient"-up->"ApiUrl"
"HttpClient"-up->"StringUtil"
"DataManagerStub".right.|>"DataManager"
"FinalDb"-up-|>"DataManagerStub"
"SharePreferenceUtil"-up-|>"DataManagerStub"
"PlutoFileCache"-up-|>"DataManagerStub"
"DataManagerProxy"-->"DataManagerStub"
@enduml |
bf246a5bfa48cc4daae9eafb5aad3d2c8cab3a23 | 41d8ff889f2692709445627095c502ea14a67530 | /app/app.plantuml | d846e9e48484c051304597da903391802f9c29c2 | [] | no_license | mjpguerra/teste_mvp | 0b0d82e574115f0a0b4e5f889572e85df4f0ba59 | 72c8f2e3aaf9925f2466970f517a1d93da0ef577 | refs/heads/master | 2022-04-27T01:13:43.721070 | 2020-04-30T13:16:22 | 2020-04-30T13:16:22 | 260,213,241 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,184 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace androidx.databinding {
class androidx.databinding.DataBinderMapperImpl {
}
}
namespace androidx.databinding {
interface androidx.databinding.DataBindingComponent {
}
}
namespace androidx.databinding {
namespace library.baseAdapters {
class androidx.databinding.library.baseAdapters.BR {
}
}
}
namespace com.example.mvp_livedata_base_kotlin {
class com.example.mvp_livedata_base_kotlin.BR {
}
}
namespace com.example.mvp_livedata_base_kotlin {
class com.example.mvp_livedata_base_kotlin.BuildConfig {
}
}
namespace com.example.mvp_livedata_base_kotlin {
class com.example.mvp_livedata_base_kotlin.DataBinderMapperImpl {
}
}
androidx.databinding.DataBinderMapperImpl -up-|> androidx.databinding.MergedDataBinderMapper
com.example.mvp_livedata_base_kotlin.DataBinderMapperImpl -up-|> androidx.databinding.DataBinderMapper
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
|
84893a8974460918fe8c8a14fd70132de3b682bc | 372e13940be1f116c671dbb746617a331f06899e | /Assets/TPPackages/com.cocoplay.core/Documentation-/puml/Runtime/Singleton/Implement/MonoDefaultSingleton.puml | 80f5c37b64e4078b3727a745b35ca6c033278eba | [] | no_license | guolifeng2018/CIGA-Game-Jam | 797734576510e27b5c5cee2eb17c1444f51d258c | fcd03e5579bef3bffe2cb51f52ba11a49a9cc02d | refs/heads/master | 2022-12-10T19:21:15.522141 | 2020-08-16T10:06:23 | 2020-08-16T10:06:23 | 285,986,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 176 | puml | @startuml
abstract class "MonoDefaultSingleton`1"<TSingleton> {
}
"MonoSingleton`2" "<TSingleton,ComponentSingletonProvider<TSingleton>>" <|-- "MonoDefaultSingleton`1"
@enduml
|
fe2b52c095ddcf6b9c8fb5da17e06eb2a8bbfe3a | 088856ec5790009dd9f9d3498a56fe679cfab2e8 | /src/puml/5/ucmitz/svg/domain_model/bc-uploader/uploader_categories.puml | 66fe124ae05836ca4758af64231247abce9bddb2 | [] | no_license | baserproject/baserproject.github.io | 21f244348890652286969afa1fde27c5c4d9e4ad | 8d61cf720f833854e1a3c97136e22e75baea7bb0 | refs/heads/master | 2023-08-09T03:21:53.341423 | 2023-07-27T07:28:50 | 2023-07-27T07:28:50 | 228,826,353 | 0 | 12 | null | 2023-08-17T02:31:05 | 2019-12-18T11:31:51 | HTML | UTF-8 | PlantUML | false | false | 390 | puml | @startuml
skinparam handwritten true
skinparam backgroundColor white
hide method
title ドメインモデル図:アップロードファイルカテゴリ
package アップロードファイルカテゴリ {
class アップロードファイルカテゴリ {
カテゴリ名
}
}
アップロードファイルカテゴリ "1"-down-"0..*" アップロードファイル
@enduml
|
aae2d7ff02898535a0b1f8fa93d93fd2d00d26df | f5f59016295a183565af167a861e2c8db9f1b070 | /diagrams/src/Application/Models/DataTransferObjects/PaidForResultDto.puml | 638da00b8b8d34b1c08aa599c1f7d497c47c22fe | [
"MIT"
] | permissive | converge-app/collaboration-broker-service | fb21788289134c265f1cd5db3ceaa3f32ba18406 | 69c676a5bbb3e602f939f9c91680560a6c63926a | refs/heads/master | 2023-03-19T11:36:58.937045 | 2019-12-17T12:06:26 | 2019-12-17T12:06:26 | 218,333,241 | 0 | 0 | MIT | 2023-03-04T01:16:20 | 2019-10-29T16:29:32 | C# | UTF-8 | PlantUML | false | false | 201 | puml | @startuml
class PaidForResultDto {
+ Id : string <<get>> <<set>>
+ ProjectId : string <<get>> <<set>>
+ FreelancerId : string <<get>> <<set>>
+ State : string <<get>> <<set>>
}
@enduml
|
4cbd2d0c12a11f756ed0418fbd439895ae5d80a8 | 890d137e45f89e2b6effccd96c3c45e1528b6306 | /plantUml/Bridge_Pattern/Bridge_Pattern.puml | 5c9ca203d85414b60c4eaf78af0a9a900e2b34e4 | [] | no_license | lavinoys/design_pattern_of_java | 32b391b5215124cd8cce8119b483c1216ed429bd | 3a3e643daa402add63558be5437d0d82cbe9a592 | refs/heads/master | 2022-11-24T03:33:33.018926 | 2020-08-05T02:30:54 | 2020-08-05T02:30:54 | 283,434,370 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,519 | puml | @startuml Bridge_Pattern
scale 1.5
allowmixing
package junit {
rectangle Main
note left of Main
동작 테스트용 클래스
end note
}
package design.bridge {
+class DisplayBridge {
-DisplayImplBridge impl
{field}+DisplayBridge(DisplayImplBridge impl)
+void open()
+void print()
+void close()
-final void dispay()
}
note top of DisplayBridge
표시한다는 클래스
end note
+class StringDisplayImplBridge <extends DisplayImplBridge> {
-String string
-int width;
{field}+StringDisplayImplBridge(String string)
+void rawOpen()
+void rawPrint()
+void rawClose()
-void printLine()
}
note bottom of StringDisplayImplBridge
문자열을 사용해서 표시한다는 클래스
end note
+abstract class DisplayImplBridge {
+{abstract}void rawOpen();
+{abstract}void rawPrint();
+{abstract}void rawClose();
}
note top of DisplayImplBridge
표시한다는 클래스
end note
+class CountDisplayBridge <extends DisplayBridge> {
{field}+CountDisplayBridge(DisplayImplBridge impl)
+void multiDisplay(int times)
}
note bottom of CountDisplayBridge
지정 횟수만큼 표시한다는 기능을 추가하는 클래스
end note
}
DisplayBridge o-> DisplayImplBridge
DisplayBridge <|-- CountDisplayBridge
DisplayImplBridge <|-- StringDisplayImplBridge
@enduml |
9a89dea87ca95772712b27305f6359fec6a3f50e | 8eabea6d7b12b141ed8a69c90858dbd35a2af030 | /src/main/java/ex41/NameSorter.puml | df175681c48c76458408c915e11bc80a8d78901e | [] | no_license | nick-vigg/Viggiani-cop3330-assignment3 | aa25109fe489d855f39b809cea590ab01fea70e8 | f2ea210afde2d5cf7202a8c1f3531cb57134628f | refs/heads/master | 2023-05-24T09:59:18.207445 | 2021-06-20T17:45:58 | 2021-06-20T17:45:58 | 378,286,766 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 177 | puml | @startuml
'https://plantuml.com/sequence-diagram
class NameSorter{
ArrayList<String> nameList;
}
class Input{
ArrayList<String> nameList;
File file;
}
Input->NameSorter
@enduml |
a07132b8509e666d00bf31f675adf7e5f44faaaf | 277510c06b82f033ec74f5996fac0d0e13127daa | /src/main/java/com/lukire/entity/types/types.plantuml | 647a2f0b4645180d66b4bef9929eae06f5e22f3d | [] | no_license | Lukires/school_cannon | c5448379fb5f33900ea31eab0f3643fd50643e83 | 4c82a7221a406c4c6a4c87a68c764136fc968346 | refs/heads/master | 2020-07-13T17:37:34.052637 | 2019-09-22T22:58:25 | 2019-09-22T22:58:25 | 205,124,231 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 537 | plantuml | @startuml
title __TYPES's Class Diagram__\n
namespace com.lukire.entity {
namespace types {
abstract class com.lukire.entity.types.Projectile {
}
}
}
com.lukire.entity.types.Projectile .up.|> com.lukire.entity.attributes.EntityCollision
com.lukire.entity.types.Projectile -up-|> com.lukire.entity.Entity
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
|
fcf3652ca5d950feb3ceb22179e37bcad58148f7 | 31ef7a78855b0fb0e9644dd61907e0c811b0daf6 | /benchmark-prover9-spass/benchmark/class_diagram.puml | 861f7c36ee7b7501e05c42695cbcf08891f2d717 | [] | no_license | Przemcom/studio_projektowe1 | f7d57affe30324c0d1470e719a05d8efd92fc701 | a6418b164ee76b7dcb9c3287fb05ace1a79c13d3 | refs/heads/master | 2021-06-14T20:36:30.730708 | 2021-03-29T18:33:24 | 2021-03-29T18:33:24 | 179,491,905 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,916 | puml | @startuml
package "Benchmark blackbox" {
TestCase --* TestSuite
TestSuite o-- TestInput
TestInput *-- Translator
TestSuite *-- Parser
TestSuite --o Benchmark
Parser <|-- Prover9Parser : implements
Parser <|-- SPASSParser : implements
SATType - SATStatistics
TestSuite - ParserToExecutable
Statistics --* Benchmark
HardwareStatistics --o Benchmark
SATStatistics -- TestCaseStatistics
SATStatistics -o TestSuite
TestCaseStatistics -- Statistics
HardwareStatistics - Statistics
Config *-- Main
Logger *-- Main
Benchmark *-- Main
OutStatistics . Parser
OutStatistics <|-- Prover9Statistics : extends
OutStatistics <|-- SPASStatistics : extends
SATStatus - OutStatistics
TestCaseStatistics *-- OutStatistics
TestCaseStatistics - TestSuiteStatistics
TestSuiteStatistics -o TestSuite
' for formating
OutStatistics -[hidden]- HardwareStatistics
SPASStatistics -[hidden]- HardwareStatistics
}
enum SATType {
FOF
CNF
TFF
TCF
}
enum ParserToExecutable {
SPASSParser="spass"
Prover9Parser="prover9"
}
enum SATStatus {
satisfiable
unsatisfiable
error
}
class Main {
- log : Logger
- config : Config
- benchmark : Benchmark
- output_dir : string
+ main() : void
}
class Logger {
- verbosity: int
- log_file: string
}
class TestInput {
- format : string
- {static} translators : Translator[]
+ getTestCase(translators: Translator[]) : string
+ getInputStatistics() : SATStatistics
+ translate(from: string, to: string) : string
+ as(format: string) : string
}
abstract class Translator {
- from : string
- to : string
+ {static} translate(path: string): string
}
class Statistics <<serializable>> {
- date
- suites : TestSuiteStatistics[]
- hardware : HardwareStatistics
}
class TestCaseStatistics <<serializable>> {
- name : string
- options : string[]
- peak_memory : int
- cpu_time : int
- execution_time : int
- input : SATStatistics
- output : OutStatistics
}
class TestSuiteStatistics <<serializable>> {
- program_name : string
- program_version : string
- test_cases : TestCaseStatistics[]
}
class HardwareStatistics <<serializable>> {
- operating_system
- system_version
- cpu
- memory
- disk
+ {static} getHardwareStatistics() : HardwareStatistics
}
class SATStatistics <<serializable>> {
- name : string
- SAT_type : SATType
- number_of_clauses : int
- number_of_atoms : int
- maximal_clause_size : int
- number_of_predicates : int
- number_of_functors : int
- number_of_variables : int
- maximal_term_depth : int
}
class OutStatistics <<serializable>> {
- SAT : SATStatus
- error : string
}
class Prover9Statistics <<serializable>> {
}
class SPASStatistics <<serializable>> {
}
abstract class Parser <<interface>> {
+ parse(output : stream) : OutStatistics
}
class Prover9Parser {
+ parse(output : stream) : OutStatistics
}
class SPASSParser {
+ parse(output : stream) : OutStatistics
}
class TestCase {
- name : string
- options : string[]
- format : string
- input_as_last_argument : bool
- input_after_option : string
- include_ony : string[]
- exclude : string[]
+ run(executable : string, PATH: string, aditional_options : string, parser : Parser, test_input: TestInput) : TestCaseStatistics[]
}
class TestSuite {
- name : string
- executable : string
- PATH : string
- version : string
- options : string[]
- parser : Parser
- test_cases : TestCase[]
- test_inputs : TestInput[]
- matchParser(string executable) : Parser
+ run() : TestSuiteStatistics
}
class Config {
- config_file_path : string
- test_suites : TestSuite []
- test_inputs : TestInput []
- test_cases : TestCase []
- translators : Translator []
- load_config() : void
}
class Benchmark {
- test_suite : TestSuite[]
- override_output : bool
- statistics : Statistics[]
- hardware_statistics : HardwareStatistics
+ run() : void
}
@enduml
|
dde0857c9b3218a66165ad3cfe364331b57c3559 | 40d2d1ea69278efa8c40813a22359d097e358765 | /docs/assets/puml/mediator.puml | d6ad2004433de9874852864bd2157ddda9d56d2f | [
"Apache-2.0"
] | permissive | diguage/deep-in-design-patterns | 13da7f045b6bef0237fd65524c50187eaf9b4b29 | fa7a1eb1efadb35ce45161eac5f27b27d4452b51 | refs/heads/master | 2022-08-27T10:18:16.532561 | 2022-07-31T10:08:04 | 2022-07-31T10:08:04 | 158,669,757 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 972 | puml | @startuml
title "**中介者模式**"
abstract class Mediator {
}
note top: 抽象中介者,定义了同事\n对象到中介者对象的接口。
class ConcreteMediator
note bottom: 具体中介者对象,实现抽象类的方法,\n它需要知道所有具体的同事,并从具体\n同事接收消息,向具体同事对象发出命令。
abstract class Colleague {
- mediator :Mediator
}
note top: 抽象同事
class ConcreteColleague1
class ConcreteColleague2
note "具体同事类,每个具体同事只知道自己的行为,\n而不了解其它同事类的情况,但它们却都认识中介者对象。" as ccn
ConcreteColleague1 .. ccn
ConcreteColleague2 .. ccn
Mediator <|-- ConcreteMediator
Mediator <-left- "-mediator" Colleague
Colleague <|-- ConcreteColleague1
Colleague <|-- ConcreteColleague2
ConcreteMediator --> ConcreteColleague1
ConcreteMediator --> ConcreteColleague2
footer D瓜哥 · https://www.diguage.com · 出品
@enduml
|
fcdd87048eacdb6593d38b71dcab5700f1d315f7 | 6e34464c25624e18411f69f0b407a1c288081208 | /Design/ts_tsc.plantuml | a000ad5900def79629ab84becc9c9d17d83ca01b | [] | 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 | 936 | plantuml | @startuml
TimeSeriesCollection o-- TimeSeries
'TimeSeries *-- SteadyState
class TimeSeriesCollection {
+_time_series_dict : dict of variable_str to TimeSeries object
+variables() : numpy.ndarray
+time_series() : numpy.ndarray
+size() : int
+add_time_series(variable, time_series) : void
+get_time_series(variable) : TimeSeries
}
class TimeSeries {
+_variable : string
+_time_points : numpy.ndarray
+_values : numpy.ndarray
+variable() : string
+time_points() : ndarray
+values() : numpy.ndarray
+size() : int
+get_value_at_time(int time_point) : numpy.float64
+replace_values_at(list time_points, list new_values) : void
}
note left of TimeSeriesCollection::get_time_series {
returns the TimeSeries object of the input specie
}
note right of TimeSeries::time {
len(time) = number_of_points
time[0] = time_start
time[len(time) - 1] = time_end
}
@enduml |
aa2fb33c05fd2b18c1fa3009dc976051aa5cd5db | 105171abc9ad1f14285ff1e839ce907a44a06195 | /src/graphicalUserInterface/drawers/drawers.plantuml | 1fccb8aa96093daee3eea81a5d74f81d2f0f4a4f | [] | no_license | Sam-Malpass/Build-A-Net | 517e20ff04764fc104db7e063da35a38bafff26f | e8259a031b588cd6087cc94f2349bcbb751fb4a2 | refs/heads/master | 2022-12-08T17:01:09.936646 | 2020-09-11T06:46:10 | 2020-09-11T06:46:10 | 232,276,459 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,548 | plantuml | @startuml
title __DRAWERS's Class Diagram__\n
namespace graphicalUserInterface {
namespace drawers {
class graphicalUserInterface.drawers.LayerToolboxDrawer {
- context : GraphicsContext
- startY : double
+ LayerToolboxDrawer()
+ drawToolBox()
+ highlightBox()
- drawDebugLines()
- drawLayer()
- resetArea()
}
}
}
namespace graphicalUserInterface {
namespace drawers {
class graphicalUserInterface.drawers.NetworkDrawer {
~ yposFrom : double
~ yposTo : double
- context : GraphicsContext
+ NetworkDrawer()
+ drawAllLayers()
+ drawAllNeurons()
+ drawConnections()
+ highlightLayer()
+ resetArea()
- drawConnection()
- drawLayerBox()
- drawNeuron()
}
}
}
namespace graphicalUserInterface {
namespace drawers {
class graphicalUserInterface.drawers.NeuronToolboxDrawer {
- baseYName : double
- baseYNeuron : double
- context : GraphicsContext
+ NeuronToolboxDrawer()
+ drawToolBox()
+ highlightBox()
- drawDebugLines()
- drawName()
- drawNeuron()
- resetArea()
}
}
}
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
|
4d4045d31eac249d971e4cbcd593e8702c4535a0 | 317138d37430f9f52d740b823ba81162886cd8d9 | /main/src/main/java/com/anniefraz/dissertation/main/csvResults/csvResults.plantuml | 1825abf82cc517719921047d1ad9e21f9fc720e1 | [] | no_license | AnnieFraz/GIN | dffb35140a7080d6a9b814f986225dda1240f1ec | e3dfe1e87cea21b4897399fb5e64a48ba9d67e1a | refs/heads/master | 2021-10-26T00:15:41.820527 | 2019-02-27T12:23:43 | 2019-02-27T12:23:43 | 150,884,121 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,933 | plantuml | @startuml
title __CSVRESULTS's Class Diagram__\n
package com.anniefraz.dissertation.main.csvResults {
class CSVResult {
- iteration : int
- populationSize : int
- population : List<Patch>
- offspring : List<Offspring>
- neighbour : List<Neighbour>
{static} - csvResultBuilder : CSVResultBuilder
+ CSVResult()
+ setIteration()
+ setPopulationSize()
+ setPopulation()
+ setOffspring()
+ setNeighbour()
+ setOffspringParent()
+ getIteration()
+ getPopulationSize()
+ getPopulation()
+ getOffspring()
+ getOffspringParent()
+ getNeighbour()
{static} + getCsvResultBuilder()
}
}
package com.anniefraz.dissertation.main.csvResults {
class CSVResultBuilder {
- iteration : int
- populationSize : int
- population : List<Patch>
- offspring : List<Offspring>
- neighbour : List<Neighbour>
+ CSVResultBuilder()
+ setIteration()
+ setPopulationSize()
+ setPopulation()
+ setOffspring()
+ setOffspringParent()
+ setNeighbour()
+ build()
}
}
package com.anniefraz.dissertation.main.csvResults {
class CSVResultFileWriter {
{static} - LOG : Logger
- csvWriter : CSVWriter
+ CSVResultFileWriter()
+ writeResult()
+ close()
}
}
package com.anniefraz.dissertation.main.csvResults {
interface CSVResultWriter {
{abstract} + writeResult()
}
}
CSVResult o-- Patch : offspringParent
CSVResultBuilder o-- Patch : offspringParent
CSVResultFileWriter -up-|> CSVResultWriter
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
|
716c1dbef417cdbc6d1d52202fb322e160a87b2e | 52aea3f738a92002a439558e41177cf9a6b194c7 | /docs/architecture.puml | ce52594e95a815203ff7a5933cd144b0b06c8ff1 | [
"MIT"
] | permissive | naucon/Registry | 58095f2b256fda3a32158fffcc562ce67e0c4460 | fe67ef224585acb73857955043ea45e202b6be85 | refs/heads/master | 2021-01-22T03:39:07.546429 | 2017-05-25T16:50:50 | 2017-05-25T16:50:50 | 92,388,297 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 622 | puml | @startuml
interface RegistryInterface {
+register($identifier, $entry)
+unregister($identifier)
+get($identifier)
+has($identifier)
+all()
+count()
}
RegistryInterface ..|> Countable
interface Countable {
+count()
}
abstract class Registry {
+ __construct(string $className)
+register($identifier, $entry)
+unregister($identifier)
+get($identifier)
+has($identifier)
+all()
+count()
}
Registry ..|> RegistryInterface
interface RegistryAwareInterface {
+void setRegistry(RegistryInterface $registry);
}
RegistryAwareInterface --> RegistryInterface
@enduml |
6837500e67fa0d6bd1cb9346810c50f5f0dcf5e5 | 7e040972b62a51d32358c08ce72d3d90f237b58b | /diagramas/diagramaClaseTablero.plantuml | d7f05a0e320372d7a9216458f49f16d3ed74b836 | [
"MIT"
] | permissive | tomasshiao/TP2_Algo3_TEG | 6df81b59b7b159a8d388301a6a05e04e4375b610 | 08adafa5d261faf02ce356613acd01e25027b8d7 | refs/heads/master | 2023-07-02T16:46:27.036146 | 2021-08-10T23:05:27 | 2021-08-10T23:05:27 | 380,359,870 | 0 | 4 | MIT | 2021-08-10T23:05:27 | 2021-06-25T21:43:25 | Java | UTF-8 | PlantUML | false | false | 482 | plantuml | @startuml
class Tablero{
}
class Batalla{
- int victoriaDefensor;
- int victoriaAtacante;
+ obtenerPerdedorDeBatalla() : Pais;
- determinarVictoriosoDeGuerra() : Pais;
+ obtenerVictorioso() : Pais;
}
class Continente{
+paises: Pais
+juagdor: Jugador
}
class Pais{
+jugador: Jugador
}
class Dado{
+obtenerNumeros(numeroDeTropas): list
}
Tablero *---> "5" Continente
Tablero ---> Batalla
Batalla-->Dado
Tablero ---> "..*" Pais
@enduml
|
8805142a86fec5fed18286a3b63420f34e87205a | 90e3038f11ccd4d43de368f3825e879517228dce | /interpreter/diagrams/pattern.puml | b4629599bf190eaa0463077da9858af559bb82a8 | [
"MIT"
] | permissive | SoSilly/java-design-pattern-samples | 2f3d57329cf4f1cf33f2e3527a33f0feac6e9324 | aca3cef5fc134a0c74ceadd122bc09bfc9cc6c20 | refs/heads/master | 2021-12-15T11:11:39.303835 | 2017-08-16T12:50:18 | 2017-08-16T12:50:18 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 595 | puml | @startuml
note "解释器模式" as name
class Context{
}
abstract class AbstractExpression{
+ {abstract} interpret(context : Context) : void
}
class TerminalExpression{
+ interpret(context : Context) : void
}
class NonterminalExpression{
+ interpret(context : Context) : void
}
Client ..> Context
Client ..> AbstractExpression
AbstractExpression ..> Context
AbstractExpression <|-- TerminalExpression
AbstractExpression <|-- NonterminalExpression
AbstractExpression <-o NonterminalExpression
footer
<font size="20" color="red">http://www.bughui.com</font>
endfooter
@enduml |
fe9f4ce2fdf5ff3a61a223cb3a7b5fe54d3aeeba | c821aaa424690dc6a301bb0b3d16097f4c1c9201 | /MTADroneService_server/DroneService/src/main/java/MTADroneService/DroneService/application/dtos/dtos.plantuml | d88a751c3e0671f907666298c81de1583e7287ec | [] | no_license | chiritagabriela/MTADroneService | ed962aeeaf5ebbb9168d12e6ef0411803e28cfc0 | 4f058ad18287a13c3cfd355fd4dd31d32b514e38 | refs/heads/main | 2023-08-04T14:02:09.408859 | 2021-09-03T08:00:52 | 2021-09-03T08:00:52 | 313,899,222 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,406 | plantuml | @startuml
title __DTOS's Class Diagram__\n
namespace MTADroneService.DroneService.application {
namespace dtos {
class MTADroneService.DroneService.application.dtos.DroneInfoDTO {
~ currentDroneCoordinates : DroneCoordinates
~ droneID : String
~ droneModel : String
~ droneStatus : String
}
}
}
namespace MTADroneService.DroneService.application {
namespace dtos {
class MTADroneService.DroneService.application.dtos.MissionInfoDTO {
~ missionDate : String
~ missionDroneInfo : DroneInfoDTO
~ missionID : String
~ missionLatitudeEnd : String
~ missionLongitudeEnd : String
~ missionStatus : String
~ missionType : String
~ missionUserID : String
}
}
}
namespace MTADroneService.DroneService.application {
namespace dtos {
class MTADroneService.DroneService.application.dtos.UserInfoDTO {
- droneID : String
- email : String
- jwtToken : String
- password : String
- roles : List<String>
- userID : String
- username : String
}
}
}
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
|
582e55e00141e49eade283d8fa9509637b0956f7 | 4f029f90b241f8b1e4a0179d27c92be6b87c761c | /lib_design_pattern/src/main/java/com/mxdl/desigin/pattern/create/a04_factory_method/uml/factory_method.puml | 7bb53f4fe13a4872ec85640be0f50f79c32cc896 | [] | no_license | mxdldev/java-design-pattern | 806cdb2f4ec87d121c10db4952ed67476772ff29 | f42813ccdb2a1cfdcc790935e41747098467e7e5 | refs/heads/master | 2020-11-26T22:15:35.016854 | 2020-01-08T07:10:34 | 2020-01-08T07:10:34 | 229,215,001 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 761 | puml | @startuml
skinparam classAttributeIconSize 0
package "Factory Method Pattern"{
interface IOperate{
+oprerate(int left,int right):int
}
note right:操作协议
class OperateAdd
note bottom:加法对象
class OperateAdd implements IOperate
class OperateSub
note bottom:减法对象
class OperateSub implements IOperate
interface IOperateFactory{
+createOperate():IOperate
}
note top:定义一个创建对象的接口,具体的创建类型由子类完成
class AddFactory
note bottom:加法工厂
class AddFactory implements IOperateFactory
class SubFactory
note bottom:减法工厂
class SubFactory implements IOperateFactory
IOperateFactory .> IOperate
}
@enduml |
be732943178f0f482d0ff11d2e24d8d5be8ababd | b7ad06eab7c32e524cb949fe97a3d673dec23672 | /src/main/java/ex43/WebsiteMaker_structure.puml | f4945902ddcabd1677b19c8e10632a837ecf1e82 | [] | no_license | ivanp589/Pavlov-cop3330-assignment3 | 888269e29f4b35fc3b6af60f8421c48f8eb0c493 | 165dfcacaadab392347d6744223fe18e957a1add | refs/heads/master | 2023-08-30T10:16:32.022417 | 2021-10-12T03:46:57 | 2021-10-12T03:46:57 | 416,172,204 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 916 | puml | @startuml
class WebsiteMaker{
+Scanner in
-name()
-author()
-input()
+checkIftrue()
-Folder()
-files()
+createWebsite()
}
WebsiteMaker--createWebsite
createWebsite<-createFolder
createWebsite<-createhtmlFile
createWebsite--folder
createWebsite--files
createWebsite--input
createWebsite--name
createWebsite--author
createWebsite--checkIftrue
interface createWebsite{
+String webfolder,Directory,created
+File file
+println()
+mkdir()
-createhtmlFile()
+checkForError()
-createFolder()
}
interface createFolder{
+String web,directory,websiteName
+File js
+mkdir()
}
interface createhtmlFile{
+String name,author,site
+File file
+println()
+FileWriter
+BufferedWriter
+write()
+close()
+printStackTrace()
}
interface folder{
+println()
}
interface files{
+println()
}
interface checkIftrue{
+String files
+equals()
}
interface input{
+nextline()
}
interface name{
+println()
}
interface author{
+println()
}
@enduml |
42545d5f3191f7aaf3c8be2c3b26d959aefffece | 5d180276957df094f09ee511e05786316537f25d | /src/main/java/string/line/line.plantuml | e14e136d2dcda3871c2248a51b1d25c53ef6aca3 | [
"Apache-2.0"
] | permissive | SomberOfShadow/Local | f727189f1791de203f1efd5cd76b8f241857e473 | 474e71024f72af5adf65180e5468de19ad5fdfd8 | refs/heads/main | 2023-07-18T04:11:49.240683 | 2021-09-07T15:55:28 | 2021-09-07T15:55:28 | 389,494,221 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 339 | plantuml | @startuml
title __LINE's Class Diagram__\n
namespace string.line {
class string.line.Line {
{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
|
95d0d37419a0a9c239b13d3f53b4d1a25826d135 | fed15cb6d34597114b1edeb0a5fcd49ee7d70ecb | /State-Mp3/src/com/company/company.plantuml | 5548f99ac4e8976de21fc22e96f233d0cc771bbb | [] | no_license | GaianiMagali/PatronesDeDisenio | 9493739565a6fbd7a77c9b56de9e0ca9055805de | 97e8b773bf5785e4243095f7de85289abed99041 | refs/heads/master | 2022-03-25T12:37:47.701619 | 2019-12-02T19:15:06 | 2019-12-02T19:15:06 | 225,448,978 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,177 | plantuml | @startuml
title __COMPANY's Class Diagram__\n
namespace com.company {
class com.company.Cancion {
- nombre : String
+ Cancion()
+ getNombre()
+ pausar()
+ reproducir()
}
}
namespace com.company {
class com.company.Main {
{static} + main()
}
}
namespace com.company {
interface com.company.Modo {
{abstract} + parar()
{abstract} + pausar()
{abstract} + reproducir()
}
}
namespace com.company {
class com.company.Mp3 {
- canciones : List<Cancion>
+ Mp3()
+ cargarCancion()
+ getCancionEnReproduccion()
+ getModo()
+ getPausa()
+ getReproduccion()
+ getSeleccion()
+ parar()
+ pausar()
+ reproducir()
+ seleccionarCancion()
+ setModo()
}
}
namespace com.company {
class com.company.Pausa {
+ Pausa()
+ parar()
+ pausar()
+ reproducir()
+ toString()
}
}
namespace com.company {
class com.company.Reproduccion {
+ Reproduccion()
+ parar()
+ pausar()
+ reproducir()
+ toString()
}
}
namespace com.company {
class com.company.Seleccion {
+ Seleccion()
+ parar()
+ pausar()
+ reproducir()
+ toString()
}
}
com.company.Mp3 o-- com.company.Cancion : cancionEnReproduccion
com.company.Mp3 o-- com.company.Modo : modo
com.company.Mp3 o-- com.company.Pausa : pausa
com.company.Mp3 o-- com.company.Reproduccion : reproduccion
com.company.Mp3 o-- com.company.Seleccion : seleccion
com.company.Pausa .up.|> com.company.Modo
com.company.Pausa o-- com.company.Mp3 : mp3
com.company.Reproduccion .up.|> com.company.Modo
com.company.Reproduccion o-- com.company.Mp3 : mp3
com.company.Seleccion .up.|> com.company.Modo
com.company.Seleccion o-- com.company.Mp3 : mp3
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
|
9787fdf81ab3bcd15eb80b0cec8c65ce6d4e0f27 | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /serviceSchema/sdWan/uml/policyAndApplicationFlow.puml | 29fd544f8bc515739065ac808758a8983c21f8ad | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 1,915 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class PolicyMap {
zone: Zone [1]
application: Application [1]
ingressPolicy: IngressPolicy [0..1]
egressPolicy: EgressPolicy [0..1]
}
PolicyMap "1" *--> "1" Zone
PolicyMap "1" *--> "0..1" Application
PolicyMap "1" *-->"0..1" IngressPolicy
PolicyMap "1" *--> "0..1" EgressPolicy
class Application {
applicationFlowSpecificationGroup: ApplicationFlowSpecificationGroup [0..1]
applicationFlowSpecification: ApplicationFlowSpecification [0..1]
}
Application "1" *--> "0..1" ApplicationFlowSpecification
Application "1" *--> "0..1" ApplicationFlowSpecificationGroup
ApplicationFlowSpecificationGroup <--> ApplicationFlowSpecification
class IngressPolicy {
policyName: String [1]
encryption: Encryption [1]
internetBreakout: EnabledDisabled [1]
publicPrivate: PublicPrivate [1]
backUp: EnabledDisabled [1]
virtualTopology: String [1]
allowedDestinationZones:
billingMethod:
performance:
bandwidth:
afSecurityIngress:
}
class EgressPolicy {
policyName: String [1]
blockSource:
afSecurityEgress:
}
class Zone {
zonePrefixes: Ipv4Ipv6Prefixes [1..*]
zoneName: String [1]
zoneIngressPolicy: ZoneIngressPolicy [*]
}
class ApplicationFlowSpecification {
name: String [1]
applicationFlowCriteria: ApplicationFlowCriteria [1]
applicationFlowSpecificationGroup: ApplicationFlowSpecificationGroup [1]
}
class ApplicationFlowSpecificationGroup {
name: String [1]
applicationFlowSpecification: ApplicationFlowSpecification [*]
}
class ApplicationFlowCriteria {
sav4: Ipv4Prefix [*]
dav4: Ipv4Prefix [*]
protv4:
sav6: Ipv6Prefix [*]
dav6: Ipv6Prefix [*]
nextheadv6:
dscp:
sport:
dport:
appid:
}
ApplicationFlowSpecification *--> "1" ApplicationFlowCriteria |
4c9384035f32df97dd5011232912adee82f187ea | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ChannelSetRolesAction.puml | c380315dc432bc112bbc22121ca4afd621e47761 | [] | 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 | 474 | 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 ChannelSetRolesAction [[ChannelSetRolesAction.svg]] extends ChannelUpdateAction {
action: String
roles: [[ChannelRoleEnum.svg List<ChannelRoleEnum>]]
}
interface ChannelUpdateAction [[ChannelUpdateAction.svg]] {
action: String
}
@enduml
|
4cf771a3b9df29d03e46e29325b2d78059b9ce25 | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P2/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/main/java/org/concordion/integration/junit3/junit3.plantuml | a856062f256c8bd3efd7e9c28a5a0f40efcbea96 | [
"Apache-2.0",
"WTFPL"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 762 | plantuml | @startuml
title __JUNIT3's Class Diagram__\n
package org.concordion {
package org.concordion.integration {
package org.concordion.integration.junit3 {
abstract class ConcordionTestCase {
+ testProcessSpecification()
}
}
}
}
package org.concordion {
package org.concordion.integration {
package org.concordion.integration.junit3 {
class JUnit3FrameworkProvider {
+ isConcordionFixture()
}
}
}
}
JUnit3FrameworkProvider -up-|> TestFrameworkProvider
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
|
94c750bebc6047e279a225e8209b37b64e1c0cda | e0688703fc24beb465e046da007407f4be73b09a | /uml/ClassDiagram_ToDo.puml | 30791b7c17eff4e227468c18121bca7b4bbe5d6a | [] | no_license | polvnco/polanco-cop3330-assignment4part2 | 3cce45ddf595faa05ecca732bf4fbb83b859d443 | d455e5d7e77d1af581c649f4e153f5fb6e5919a1 | refs/heads/main | 2023-06-17T06:02:49.218393 | 2021-07-12T03:32:08 | 2021-07-12T03:32:08 | 384,277,087 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,119 | puml | @startuml
'https://plantuml.com/class-diagram
class ToDo{
+ start (stage : Stage) : void
+ main (args : String[]) : void
}
class ToDoController{
+ choiceBoxData : ComboBox<String>
- choiceBoxColumn : TableColumn<Task, String>
- dueDateColumn : TableColumn<Task, LocalDate>
- taskDescriptionColumn : TableColumn<Task, String>
- taskColumn : TableColumn<Task, String>
- tableView : TableView<Task>
- root : Parent
- scene : Scene
- stage : Stage
+ datePickerField : DatePicker
+ textFieldDescription : TextField
+ textFieldTask : TextField
+ pane : Pane
--
- call (cellData : CellDataFeatures<Task, LocalDate>) : ObjectProperty
+ switchToToDoScene (event : ActionEvent) : void
+ switchToAllListScene (event : ActionEvent) : void
+ switchToSettings (event : ActionEvent) : void
+ switchToAbout (event : ActionEvent) : void
+ getPeople () : ObservableList<Task>
+ initialize (url : URL, rb : ResourceBundle) : void
+ buttonAdd (actionEvent : ActionEvent) : void
}
javafx.Application <|-- ToDo
ToDo -- ToDoController
@enduml |
c68f6ae182433527a71faa60fef7407ac8248849 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/HighLevelConcepts.puml | a1305f2e5d4e027ad9c8f149ca721eeb09f99383 | [] | no_license | CAADE/C3 | 07307a3795888672df18e99932e25951911eaf1d | 4bbe48a335b936cf75808d0902b32f73b99ff958 | refs/heads/master | 2022-11-24T14:52:05.724752 | 2019-06-19T03:32:46 | 2019-06-19T03:32:46 | 67,574,474 | 1 | 0 | null | 2022-11-22T11:28:45 | 2016-09-07T05:19:16 | JavaScript | UTF-8 | PlantUML | false | false | 490 | puml | @startuml
package C3 #lightblue {
class MaintainPlan {
}
class Service {
}
Service *--> Script
class Script {
}
class Environment {
}
class ServiceStack {
}
class Image {
}
class CompositeService {
}
Service <|-- CompositeService
CompositeService *--> Service : composes
ServiceStack *-> MaintainPlan
Service o--> Image
ServiceStack o--> Service : composes
Service -> Service : links
}
@enduml
|
f314b1654fdfad4d4590f662d9d1da8b524bee70 | 3e8de74dfe19cd437fd7842887394d4921a109d7 | /docs/images/Pizzeria3.plantuml | 102b693a78ffcb883647bc9de7a3d22ad7e8f849 | [] | no_license | jmbruel/InnopolisDesignPatterns | 62c5f1df870883cd44245d6459243c83b96d0995 | a9ffbfc16a29ed3d560d5be12e8fb1d2f1bed50e | refs/heads/master | 2021-02-04T20:34:22.378185 | 2020-11-16T17:40:28 | 2020-11-16T17:40:28 | 243,707,157 | 0 | 7 | null | 2020-10-23T08:58:33 | 2020-02-28T07:49:59 | JavaScript | UTF-8 | PlantUML | false | false | 342 | plantuml | @startuml
'-----------------------------------
' UML concepts illustrated
' JMB 2014
'-----------------------------------
'hide circle
hide empty members
hide empty methods
abstract class p as "Pizzeria" {
...
...
}
class PizzeriaStyleStrasbourg extends p {
...
...
}
class PizzeriaStyleBrest extends p {
...
...
}
@enduml
|
eb116f6c2153a6e87f7e3c0878745a5318d5a756 | eaf70a25113a1a682795a5a42bf5b1ea9e3758bd | /uml/plantUML.puml | 6a7b02178003de6b10abb4ace95fe8c35d92a917 | [] | no_license | mscarceller/MasterCloudApps_Damas_Refactoring | bef2f4f7101d19673ffa3f8ea5d7fbce0aebf947 | b6bffc99ea96cc0da23ba076d1e4ccb9f0c6b472 | refs/heads/master | 2020-09-05T17:24:50.599950 | 2019-11-10T14:54:45 | 2019-11-10T14:54:45 | 220,168,691 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,209 | puml | @startuml
title Diseño Modelo/Vista/Controlador con Presentador del Modelo/Vista/Controlador
class Draughts {
+ play()
}
Draughts *-down-> Logic
Draughts *-down-> View
class View #orange {
+ interact(Controller)
}
class StartView #orange {
+ interact(StartController)
}
class PlayView #orange {
+ interact(PlayController)
}
class CancelView #orange {
}
class ResumeView #orange {
+ interact(ResumeController)
}
class BoardView #orange{
}
class SquareView #orange{
}
class PieceView #orange{
}
StartView ..> StartController
PlayView ..> PlayController
CancelView ..> PlayController
ResumeView ..> ResumeController
View *-down-> StartView
View *-down-> PlayView
View *-down-> CancelView
View *-down-> ResumeView
StartView *-down-> BoardView
PlayView *-down-> BoardView
BoardView ..> SquareView
View ..> AcceptController
class Logic{
- State state;
- Game game;
+ nextState()
+ getController()
}
Logic *--> State
Logic *--> Game
Logic *-down-> AcceptController
class Controller #DeepSkyBlue{
}
class AcceptController #DeepSkyBlue{
}
Controller <|-down- AcceptController
AcceptController <|-down- StartController
AcceptController <|-down- PlayController
Controller <|-down- MoveController
Controller <|-down- CancelController
AcceptController <|-down- ResumeController
Controller o--> Game
class StartController #DeepSkyBlue{
+initGame()
}
class MoveController #DeepSkyBlue{
+ move(Coordinate origin, Coordinate target)
}
class CancelController #DeepSkyBlue{
+ cancelGame()
}
class ResumeController #DeepSkyBlue{
+resumeGame()
}
class PlayController #DeepSkyBlue{
+ move(Coordinate origin, Coordinate target)
+ cancelgame()
}
PlayController ..> Coordinate
PlayView ..> Coordinate
class Coordinate{
-int x
-int y
}
PlayController *-down-> CancelController
PlayController *-down-> MoveController
class Game{
}
Game *-down-> Board
Game *-down-> Turn
Game ..> Error
class Board{
}
Board *-down-> "8x8" Square
Board *-down-> "1..2x12" Piece
Board ..> Error
class Square{
+Piece piece
}
Square --> "0..1" Piece
class Piece{
}
Piece *--> Color
class Color{
}
class Turn{
}
Turn *--> Color
class State{
}
class Error{
}
@enduml |
0999e44adea3bab085a559266d1a69bb90190673 | 0e21f46032f255905f79369a443fbd3daf9890f9 | /test6/Class/class.puml | c8f5754a794122de5bd35b2f9e228751a5aafaaf | [] | no_license | pmpking/is_analysis | e352e256e8f28ed135c02db34c216c6421bd2254 | e243355ba760e0b3f7ea2fe20b03e81aaef51788 | refs/heads/master | 2021-04-15T18:47:34.902476 | 2018-06-08T14:46:35 | 2018-06-08T14:46:35 | 126,798,504 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 758 | puml | @startuml
class 学生{
学号
密码
姓名
班级
github
}
class 老师{
教师编号
密码
姓名
}
class 管理员{
管理员编号
密码
姓名
}
class 课程表{
课程编号
创建者
课程名
}
class 实验表{
实验编号
学号
课程编号
实验名
总分得分
实验内容
}
class 分数表{
实验编号
学号
总分得分
得分1
得分2
得分3
得分4
得分5
老师点评
}
class 选课表{
课程编号
学号
}
管理员 "*"--"*" 学生 :管理用户
管理员 "*"--"*" 老师 :管理用户
老师 "1"--"*" 课程表 :排课
老师 "1"--"*" 实验表 :安排实验
老师 "1"--"*" 分数表 :打分
学生 "*"--"*" 选课表 :选课
学生 "*"--"*" 实验表 :查看实验
学生 "1"--"*" 分数表 :查看分数
@enduml |
37c20b437ad7825db827ad3580cdd2ba4da2627b | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ExtensionTrigger.puml | fac59e0457064106fa73e5a7eba0f3a7e468fa04 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,433 | 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 ExtensionTrigger [[ExtensionTrigger.svg]] {
resourceTypeId: [[ExtensionResourceTypeId.svg ExtensionResourceTypeId]]
actions: [[ExtensionAction.svg List<ExtensionAction>]]
condition: String
}
interface Extension [[Extension.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
destination: [[ExtensionDestination.svg ExtensionDestination]]
triggers: [[ExtensionTrigger.svg List<ExtensionTrigger>]]
timeoutInMs: Integer
}
interface ExtensionDraft [[ExtensionDraft.svg]] {
key: String
destination: [[ExtensionDestination.svg ExtensionDestination]]
triggers: [[ExtensionTrigger.svg List<ExtensionTrigger>]]
timeoutInMs: Integer
}
interface ExtensionChangeTriggersAction [[ExtensionChangeTriggersAction.svg]] {
action: String
triggers: [[ExtensionTrigger.svg List<ExtensionTrigger>]]
}
ExtensionTrigger --> Extension #green;text:green : "triggers"
ExtensionTrigger --> ExtensionDraft #green;text:green : "triggers"
ExtensionTrigger --> ExtensionChangeTriggersAction #green;text:green : "triggers"
@enduml
|
64081112537f2ba77ef1cd17a46654dbd80f529d | 3356f08bf73cc5950d70d4259c9b288166cc33c4 | /documentation/class_diagrams/pattern_detector.puml | e1f07dcabc770547f0ea1d3809315e402ea110a4 | [
"MIT"
] | permissive | ignacio-gallego/tbcnn_skill_pill | 08007fadd1ffcbd372c7d099a0abf6d8ff29806c | 66c3939e2944160c864b61495ac4c7aaa56acd18 | refs/heads/main | 2023-06-11T00:42:10.182861 | 2021-06-30T09:35:28 | 2021-06-30T09:35:28 | 381,647,978 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,602 | puml | @startuml Pattern_detector-model
abstract class PatternDetector {
+ patternDetection(path: String, pattern: String): void
- {abstract} secondNeuralNetwork(Tuple[Tensor, Tensor, Tensor, Tensor]): float
- prediction(Dictionary[String]): Tensor
- printPredictions(Tensor, Dictionary[String], String): void
}
' Layers
class CodingLayer extends AbstractLayer{
+ codingLayer(nodes: List[Node], wR: Tensor, wL: Tensor, b: Tensor): List[Node]
- codingIterations(): void
}
class ConvolutionalLayer extends AbstractLayer{
+ convolutionalLayer(nodes: List[Node]): List[Node]
- calculateY(nodes: List[Node]): void
- slidingWindowTensor(Node): Tensor
}
class PoolingLayer extends AbstractLayer{
+ poolingLayer(nodes: List[Node]): Tensor
}
class HiddenLayer extends AbstractLayer{
+ hiddenLayer(Tensor): Float
}
abstract class AbstractLayer {
}
'Test
class GeneratorDetector extends PatternDetector {
- conv: ConvolutionalLayer
- pooling: PoolingLayer
- hidden: HiddenLayer
- secondNeuralNetwork(Tuple[Tensor, Tensor, Tensor, Tensor]): float
- loadMatricesAndVectors(CSVFiles): void
}
class WrapperDetector extends PatternDetector {
- cod: CodingLayer
- conv: ConvolutionalLayer
- pooling: PoolingLayer
- hidden: HiddenLayer
- secondNeuralNetwork(Tuple[Tensor, Tensor, Tensor, Tensor]): float
- loadMatricesAndVectors(CSVFiles): void
}
GeneratorDetector "one"..> "many" AbstractLayer: uses
WrapperDetector "one"..> "many" AbstractLayer: uses
@enduml |
1ddd8def6537484eadc30716b5673fd5812aeb43 | 34acd2aa8d51295c0c4289e43e8961f5e23b5a08 | /PlantUML/raw/ElCazador.Worker/DataStore/IDataObject.puml | a4a7c0beaee197c449bd6367059432aedaef5bd2 | [] | no_license | fisboger/Thesis | a6887e195c7daa8317abe3167de1676420173e33 | 4746126f69da615c641380fd7a33c863f2fedee3 | refs/heads/master | 2020-04-03T15:18:08.671739 | 2019-02-07T11:17:06 | 2019-02-07T11:17:06 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 102 | puml | @startuml
interface IDataObject {
Key : object <<get>>
Timestamp : DateTime <<get>>
}
@enduml
|
222778b666e4087e8fdda93b52392e97fe00cbeb | b12ef03bc988d879c52c8fc79b43a4bca06da946 | /client/src/main/java/Controller/Controller.plantuml | 09d569ea45ba1d06a2f72cc89b806a3bcf59ddd0 | [] | no_license | genesis152/PS-Assignment3 | 75f8bdc8fe767e70c7fb1e551ae43d1d0b0ad33a | f894f2f2742f1477b7a975fb7505e2e3036fe0cb | refs/heads/master | 2023-03-07T12:25:57.548897 | 2021-02-25T10:24:09 | 2021-02-25T10:24:09 | 342,205,571 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,439 | plantuml | @startuml
title __CONTROLLER's Class Diagram__\n
namespace Controller {
class Controller.AdministratorController {
- ENGLISH_TEXT_FILE_PATH : String
- ITALIAN_TEXT_FILE_PATH : String
- ROMANIAN_TEXT_FILE_PATH : String
- components : Map<String, Component>
- componentsText : Map<String, String>
- coordinators : List<String>
- currentShowingType : Type
- dataTableColumns : String[]
- postmen : List<String>
- selectedUserName : String
- updateTableColumns : String[]
- updateTableFields : String[]
+ AdministratorController()
+ addButtonActionListener()
+ addEntryButtonActionListener()
+ classifyUsers()
+ comboBoxActionListener()
+ deleteButtonActionListener()
+ updateEntryButtonActionListener()
+ updateSecondaryTable()
+ viewCoordinatorsButtonActionListener()
+ viewPostmenButtonActionListener()
+ windowListener()
# updateCoordinatorsTable()
# updatePostmenTable()
- createTable()
- getComponentTextFromFile()
- getComponents()
- setTextFromMap()
}
}
namespace Controller {
class Controller.CoordinatorViewController {
# currentUser : User
- ENGLISH_TEXT_FILE_PATH : String
- ITALIAN_TEXT_FILE_PATH : String
- ROMANIAN_TEXT_FILE_PATH : String
- components : Map<String, Component>
- componentsText : Map<String, String>
- dataTableColumns : String[]
- parcels : List<Parcel>
- postmanTableColumns : String[]
- postmen : Map<Integer, User>
- selectedParcelID : Integer
- updateTableColumns : String[]
- updateTableFields : String[]
+ CoordinatorViewController()
+ addButtonActionListener()
+ addParcelButtonActionListener()
+ comboBoxActionListener()
+ deleteParcelButtonActionListener()
+ mapPaneComponentAdapter()
+ saveReportButtonActionListener()
+ searchParcelByIDButtonActionListener()
+ updateParcelButtonActionListener()
+ updatePostmenTable()
+ updateSecondaryTable()
+ viewParcelsButtonActionListener()
+ windowListener()
# updateParcelsTable()
- createTable()
- dumpComponentsToFiles()
- getComponentTextFromFile()
- getComponents()
- setTextFromMap()
}
}
namespace Controller {
class Controller.LoginViewController {
+ LoginViewController()
+ endView()
+ verifyLogin()
}
}
namespace Controller {
class Controller.MainController {
- CLIENT_CONFIGURATION_FILE_PATH : String
- loggedUser : User
- socket : Socket
+ MainController()
+ clientSetup()
+ createContainerFromGraph()
+ switchView()
# updateCoordinators()
# updateParcels()
# updatePostmen()
}
}
namespace Controller {
class Controller.PostmanViewController {
- ENGLISH_TEXT_FILE_PATH : String
- ITALIAN_TEXT_FILE_PATH : String
- ROMANIAN_TEXT_FILE_PATH : String
- components : Map<String, Component>
- componentsText : Map<String, String>
- currentUser : User
- dataTableColumns : String[]
- parcels : List<Parcel>
+ PostmanViewController()
+ comboBoxActionListener()
+ mapPaneComponentAdapter()
+ searchParcelByIDButtonActionListener()
+ viewParcelsButtonActionListener()
+ windowListener()
# updateParcelsTable()
- createTable()
- dumpComponentsToFiles()
- getComponentTextFromFile()
- getComponents()
- setTextFromMap()
}
}
namespace Controller {
class Controller.ServerCommunication {
+ socket : Socket
{static} - instance : ServerCommunication
- responsePool : List<LinkedBlockingQueue<CommunicationProtocol<Object>>>
- threadPool : List<LinkedBlockingQueue<Thread>>
+ addUser()
{static} + buildInstance()
+ deleteParcel()
+ deleteUser()
+ exit()
+ getGraphLayout()
{static} + getInstance()
+ getParcelByID()
+ getParcels()
+ getParcelsByPostmanID()
+ getUserByID()
+ getUserByUsername()
+ getUsers()
+ insertParcel()
+ updateParcel()
+ updateUser()
+ verifyLogin()
- ServerCommunication()
- initResponsePool()
- initThreadPool()
- requestUpdateCoordinators()
- requestUpdateParcels()
- requestUpdatePostmen()
- startMessageListener()
}
}
Controller.AdministratorController o-- View.AdministratorView : administratorView
Controller.AdministratorController o-- Controller.MainController : mainController
Controller.AdministratorController o-- Controller.ServerCommunication : serverCommunication
Controller.CoordinatorViewController o-- Controller.MainController : mainController
Controller.CoordinatorViewController o-- View.CoordinatorView : coordinatorView
Controller.CoordinatorViewController o-- Controller.ServerCommunication : serverCommunication
Controller.LoginViewController o-- View.LoginView : loginView
Controller.LoginViewController o-- Controller.ServerCommunication : serverCommunication
Controller.MainController o-- Controller.AdministratorController : administratorController
Controller.MainController o-- Controller.ServerCommunication : communication
Controller.MainController o-- Controller.CoordinatorViewController : coordinatorViewController
Controller.MainController o-- Controller.LoginViewController : loginViewController
Controller.MainController o-- Controller.PostmanViewController : postmanViewController
Controller.PostmanViewController o-- Controller.MainController : mainController
Controller.PostmanViewController o-- View.PostmanView : postmanView
Controller.PostmanViewController o-- Controller.ServerCommunication : serverCommunication
Controller.ServerCommunication o-- Controller.MainController : mainController
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
|
acfca91c166f376a3fdc7366708b07d8d0d574e9 | 372d0fe94d7e59fd48620c687fee8fc94841408b | /deadheat-lock-example/microservices-example/booking-service/src/main/java/com/vrush/microservices/booking/exception/exception.plantuml | 992fd1c97c8e9eb82396d983ff1235adf8ee906f | [
"Apache-2.0"
] | permissive | vrushofficial/deadheat-lock | 4ae44e23fea2ad57db17aadeba58e39ef4f63822 | 11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2 | refs/heads/main | 2023-01-14T17:28:38.161881 | 2020-11-29T11:11:55 | 2020-11-29T11:11:55 | 310,531,739 | 2 | 1 | null | 2020-11-19T08:16:25 | 2020-11-06T08:06:52 | CSS | UTF-8 | PlantUML | false | false | 532 | plantuml | @startuml
title __EXCEPTION's Class Diagram__\n
namespace com.vrush.microservices.booking {
namespace exception {
class com.vrush.microservices.booking.exception.ValidationException {
{static} - serialVersionUID : long
+ ValidationException()
+ ValidationException()
}
}
}
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
|
e51c27b333359594c9f550215093d778aa7eeceb | c815f9c82c1400f76243750cd0ec609d217b9943 | /twin/etc/twin.urm.puml | b4bd52468e00e396b984757cf1a21a417beb63a7 | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 443 | puml | @startuml
package com.iluwatar.twin {
abstract class GameItem {
+ GameItem()
+ click() {abstract}
+ doDraw() {abstract}
+ draw()
}
class BallItem {
- isSuspended : boolean
- twin : BallThread
+ BallItem()
+ click()
+ doDraw()
+ move()
+ setTwin(twin : BallThread)
}
class App {
+ App()
+ main(args : String[]) {static}
- waiting() {static}
}
}
BallItem --|> GameItem
@enduml |
5f652616a4a98c22e1c6ccf9d4e0344808c75a5b | 00b0c2c5796ef669b02cc7e795b864903ea28b62 | /assets/uml/model-spec.plantuml | 2bbc804dbc7d97c9e3dee4e78f1678dcfccb270f | [
"MIT"
] | permissive | BernhardSchiffer/06-annotations-reflection | 0f682f36b61e6a5ad0c07b81993f777b43ee3ea4 | 37cea4ef8cb55d05db062f52897acf0a45be1d14 | refs/heads/master | 2020-08-31T01:41:14.537966 | 2020-04-17T19:24:49 | 2020-04-17T19:24:49 | 218,548,472 | 0 | 0 | MIT | 2019-10-30T14:37:47 | 2019-10-30T14:37:46 | null | UTF-8 | PlantUML | false | false | 379 | plantuml | @startuml ModelSpec
package de.thro.inf.prg3.a06.model {
+class Joke {
-number: int
-content: String
-rubrics: String[]
+getNumber(): int
+setNumber(number: int): void
+getContent(): String
+setContent(content: String): void
+getRubrics(): String[]
+setRubrics(rubrics: String[]): void
}
}
@enduml |
c3ac01a7e34a926fb3abbd24b9124e12c2e39d23 | 1411b02af9800c138c7b2c5082bf0359f6c41aca | /uml/DiagramaClases.puml | 333a16cfe49783d66b9b0aff6aedf4d510fbf169 | [] | no_license | NicoCardenas/PDSW-2018-1-PROYECTO-LosSinNombre | 5a290382eb2689ab6e9759a7312d0516e3f2d39c | b33c23cadff00ff7ae87cba5dc067a1a4527ce82 | refs/heads/master | 2020-04-04T04:57:44.879505 | 2018-12-07T22:37:55 | 2018-12-07T22:37:55 | 155,731,388 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,767 | puml | @startuml
skinparam class {
BackgroundColor lightcyan
ArrowColor teal
BorderColor slateblue
}
skinparam stereotypeCBackgroundColor YellowGreen
package "entities" {
class User
class Comment
class Intention
}
package "managerbeans" {
BasePageBean <|--- UsuariosBean
BasePageBean <|-- LoginBean
BasePageBean <|-- IntentionBean
}
package "persistence" {
UserDAO ..> PersistenceException
IntentionDAO ..> PersistenceException
MyBatisUserDAO --> UserDAO
MyBatisIntentionDAO --> IntentionDAO
UserMapper <.. MyBatisUserDAO
IntentionMapper <.. MyBatisIntentionDAO
}
package "services" {
UsuariosBean ------> InitiativeBankServices : <<inject>>
LoginBean ------> InitiativeBankServices : <<inject>>
IntentionBean ------> InitiativeBankServices : <<inject>>
LoginSession <..... LoginBean
InitiativeBankServicesImpl --> InitiativeBankServices
InitiativeBankException <. InitiativeBankServices
IntentionDAO ....> InitiativeBankServicesImpl : <<inject>>
UserDAO ....> InitiativeBankServicesImpl : <<inject>>
}
entities -[hidden]- services
managerbeans -[hidden] persistence
class User {
- id : int
- full_name : String
- email : String
- areaDepartment : String
- intencion : Intention
- contrasenia : String
- tipoUsuario : String
}
class Comment {
- id : int
- content : String
- usuario : User
- intencion : Intention
}
class Intention {
- id : int
- estado : String
- titulo : String
- descripcion : String
- fechaCreacion : Date
- autor : User
- palabrasClave : ArrayList<String>
- comments : ArrayList<Comment>
- area : String
}
abstract class BasePageBean {
- injector : Injector
+ init() : void
}
class UsuariosBean {
- initiativeBankServices : InitiativeBankServices
- valSearch : String
- httpSession : HttpSession
+ getUser() : User
+ getConsultAll() : List<User>
+ entrar() : void
+ redirectS() : void
+ salir() : void
+ getFinds() : List<User>
}
class LoginBean {
- initiativeBankServices : InitiativeBankServices
- mail : String
- password : String
- usuario : User
+ autenticacion() : void
+ logout() : void
}
class IntentionBean {
- initiativeBankServices : InitiativeBankServices
- valSearch : String
- state : String
- content : String
- date_of_creation : Date
- title : String
- options : String[]
- selected : List<String>
- httpSession : HttpSession
+ getUser() : User
+ getConsultAll() : List<Intention>
+ crearIntencion() : void
+ AllTags() : List<String>
+ getFinds() : List<Intention>
+ entrar() : void
+ salir() : void
+ redirectS() : void
+ redirectIn() : void
}
class InitiativeBankException {
+ InitiativeBankException(msg : String)
+ InitiativeBankException(msg : String, err : Throwable)
+ InitiativeBankException(err : Throwable)
}
class LoginSession {
+ {static} getSession() : HttpSession
+ {static} getResquest() : HttpServletRequest
}
interface IntentionDAO {
+ consultaAll() : List<Intention> <<PersistenceException>>
+ searchIntention(palabra : String) : List<Intention><<PersistenceException>>
+ crearIntencion(idUser : int, state : String, content : String, title : String) : void <<PersistenceException>>
+ getTags() : List<String> <<PersistenceException>>
}
interface UserDAO {
+ consultaUsers() : List<User> <<PersistenceException>>
+ consultaUser(mail : String) : User <<PersistenceException>>
+ searchUsers(TipoUsuario : String) : List<User> <<PersistenceException>>
}
interface InitiativeBankServices {
+ crearIntencion(idU : int, state : String, cont : String, title : String, tags : String[]) : void <<InitiativeBankException>>
+ consultarUsuarios() : List<User> <<InitiativeBankException>>
+ consultarUsuario(mail : String) : User <<InitiativeBankException>>
+ consultaIntencion() : List<Intention> <<InitiativeBankException>>
+ consultaIntencion(palabra : String) : List<Intention> <<InitiativeBankException>>
+ consultaUsuarios(TipoUsuario : String) : List<User> <<InitiativeBankException>>
+ consultTags() : List<String> <<InitiativeBankException>>
}
class InitiativeBankServicesImpl {
- userDAO : UserDAO
- intentionDAO : IntentionDAO
+ consultarUsuarios() : List<User>
+ consultarUsuario(String mail) : User
+ consultaIntencion() : List<Intention>
+ consultaIntencion(palabra : String) : List<Intention>
+ crearIntencion(idUser:int, state:String, content:String, title:String, tags:String[]) : void
+ consultaUsuarios(TipoUsuario : String) : List<User>
+ consultTags() : List<String>
}
class PersistenceException {
+ PersistenceException(msg : String)
+ PersistenceException(msg : String, err : Throwable)
+ PersistenceException(err : Throwable)
}
class MyBatisUserDAO {
- userMapper : UserMapper
+ consultaUsers() : List<User>
+ consultaUser(mail : String) : User
+ searchUsers(TipoUsuario : String) : List<User>
}
class MyBatisIntentionDAO {
- intentionMapper : IntentionMapper
+ consultaAll() : List<Intention>
+ searchIntention(palabra : String) : List<Intention>
+ crearIntencion(idUser:int, state:String, content:String, title:String) : void
+ getTags() : List<String>
}
class IntentionMapper {
+ consultarAll() : List<Intention>
+ crearIntencion(idUser : int, state : String, content : String, title : String) : void
+ searchIntention(palabra : String) : List<Intention>
+ getTags() : List<String>
}
class UserMapper {
+ consultarUsuarios() : List<User>
+ consultarUsuario(mail : String) : User
+ consultarUsuariosTU(TipoUsuario : String) : List<User>
}
@enduml |
6efee162f234cbdf9683d13fcd7a43cb3585a0d7 | 8a7d4e7348e7cf75ea65d857f140d0454add6f84 | /docs/src/developer/subarraynode/tmc.puml | 61217fccb73a97224bf67b7770b333be448c3377 | [
"BSD-3-Clause"
] | permissive | ska-telescope/cdm-shared-library | d1812ed010a09765a5be5a41d1c7e8e9694d110a | 87083655aca8f8f53a26dba253a0189d8519714b | refs/heads/master | 2023-09-01T08:27:16.704307 | 2023-08-08T13:01:10 | 2023-08-08T13:01:10 | 191,747,755 | 0 | 0 | BSD-3-Clause | 2023-02-10T13:48:25 | 2019-06-13T11:11:28 | Python | UTF-8 | PlantUML | false | false | 229 | puml | @startuml
hide empty members
package ska_tmc_cdm.messages.subarray_node.configure {
package tmc.py <<Rectangle>> {
class TMCConfiguration {
scan_duration : datetime.timedelta
}
}
}
@enduml
|
5b6f8aae24d298eaa530c0301707c8929e93ce07 | f7024178a5c03316d942c03b7c57a352a4350001 | /root/Actividades/A5.P1.Osbert/OsbertClases.puml | a13ab7a7b573e452c5e5764dd7500a212d52ce29 | [] | no_license | SCRUBYD00/A01243833_AyMSS18 | b5dc6521967d5b7ce932a03eb1b54a1cde75f982 | d1fea7f6c176722a5986f0a2b643192e098d872c | refs/heads/master | 2021-05-12T14:41:11.514383 | 2018-05-03T10:58:49 | 2018-05-03T10:58:49 | 116,962,000 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 521 | puml | @startuml Clases
class Osbert {
+ string Compra()
+ string descripcionCuadro()
+ string ventaCuadro()
}
class Galeria {
- galeria <Cuadro> : List
}
class Subasta {
- string autor
- string fecha
- double precio
}
class Cuadro {
- string descripcion
- string autor
- string fecha
- double precio
}
class Cliente {
bool compra()
}
class Registro {
registro <DatosVenta> : List
}
class DatosVenta {
- Cuadro c
- string nombre
- string direccion
}
@enduml |
e031db8c34daf584d537c61b1c70bfa0a0442501 | 694fd70b693c9670161b2492ece407123bf11cad | /plantuml/designpattern/concept-bridge-2.plantuml | b4fcd6b18dae34fb2b8b29cb32340175a612e376 | [
"CC-BY-3.0-US",
"BSD-3-Clause",
"WTFPL",
"GPL-1.0-or-later",
"MIT",
"OFL-1.1"
] | permissive | windowforsun/blog | 4a341a9780b8454a9449c177f189ca304569031b | b0bce013f060f04a42dfa7ef385dbeea1644fdab | refs/heads/master | 2023-09-04T03:17:39.674741 | 2023-08-21T14:39:37 | 2023-08-21T14:39:37 | 170,632,539 | 0 | 1 | MIT | 2023-09-05T17:48:27 | 2019-02-14T05:26:51 | HTML | UTF-8 | PlantUML | false | false | 844 | plantuml | @startuml
abstract class CalculatorImpl {
{abstract} double plus(double a, double b)
{abstract} double minus(double a, double b)
{abstract} double multiply(double a, double b)
}
class Calculator {
CalculatorImpl impl
Calculator(CalculatorImpl impl)
double plus(double a, double b)
double minus(double a, double b)
double multiply(double a, double b)
}
class AdvancedCalculator {
AdvancedCalculator(CalculatorImpl impl)
double advancedPlus(double a, double b, double c)
double advancedMinus(double a, double b, double c)
double advancedMultiply(double a, double b, double c)
}
class SimpleCalculatorImpl {
double plus(double a, double b)
double minus(double a, double b)
double multiply(double a, double b)
}
CalculatorImpl <--o Calculator
Calculator <|-- AdvancedCalculator
CalculatorImpl <|-- SimpleCalculatorImpl
@enduml |
5907f076b385b9015907b3aa86d31964a380a980 | f6e27df248270f0faf3ccecbe90ed26ee0327e37 | /docs/xmind-sdk.puml | c450e960d4c0c1c19b5e3bea32ddfbc81c6073cf | [
"MIT"
] | permissive | zbelial/xmind-sdk-python | a27e857ffefef7213c6b32080d86b1d7ac3d281c | d5114550da29b7be440e023125e0e12daab05f46 | refs/heads/master | 2021-09-26T17:33:23.448191 | 2018-10-31T20:49:12 | 2018-10-31T20:49:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,662 | puml | @startuml Xmind-Sdk
class WorkbookLoader {
__init__(path)
get_workbook: WorkbookDocument
}
class WorkbookDocument {
__init__(node=None, path=None)
getWorkbookElement()
_create_relationship()
createRelationship(end1, end2)
createTopic()
getSheets()
getPrimarySheet()
createSheet()
addSheet(sheet, index=None)
removeSheet(sheet)
moveSheet(original_index, target_index)
getVersion()
getModifiedTime()
updateModifiedTime()
setModifiedTime()
get_path()
set_path(path)
}
class MarkerId {
__init__(name)
__str__()
__repr__()
getFamilly()
}
class MarkerRefsElement {
__init__(node=None, ownerWorkbook=None)
}
class MarkerRefElement {
__init__(node=None, ownerWorkbook=None)
getMarkerId()
setMarkerId(val)
}
class WorkbookMixinElement {
__init__(node=None, ownerWorkbook=None)
registOwnerWorkbook()
getOwnerWorkbook()
setOwnerWorkbook(workbook)
getModifiedTime()
setModifiedTime(time)
updateModifiedTime()
getID()
}
class TopicMixinElement {
__init__(node, ownerTopic)
getOwnerTopic()
getOwnerSheet()
getOwnerWorkbook()
}
class NotesElement {
__init__(node=None, ownerTopic=None)
getContent(format=const.PLAIN_FORMAT_NOTE)
}
class _NoteContentElement {
__init__(node=None, ownerTopic=None)
getFormat()
}
class PlainNotes {
__init__(content=None, node=None, ownerTopic=None)
setContent(content)
}
class PositionElement {
__init__(node=None, ownerWorkbook=None)
getX()
getY()
setX(x)
setY(y)
}
class RelationshipElement {
__init__(node=None, ownerWorkbook=None)
_get_title()
_find_end_point(id)
getEnd1ID()
setEnd1ID(id)
getEnd2ID()
setEnd2ID(id)
getEnd1(end1_id)
getTitle()
setTitle(text)
}
class RelationshipsElement {
__init__(node=None, ownerWorkbook=None)
}
class WorkbookSaver {
__init__(workbook)
_get_content()
save(path=None)
}
class SheetElement {
__init__(node=None, ownerWorkbook=None)
_get_root_topic()
createRelationship(end1, end2, title=None)
_getRelationships()
addRelationship(rel)
removeRelationship(rel)
getRootTopic()
_get_title()
getTitle()
setTitle(text)
getParent()
updateModifiedTime()
}
class TitleElement {
__init__(node=None, ownerWorkbook=None)
}
class TopicElement {
__init__(node=None, ownerWorkbook=None)
_get_title()
_get_markerrefs()
_get_position()
_get_children()
_set_hyperlink(hyperlink)
getOwnerSheet()
getTitle()
setTitle(text)
getMarkers()
addMarker(markerId)
setFolded()
getPosition()
setPosition(x, y)
removePosition()
getType()
getTopics(topics_type=const.TOPIC_ATTACHED)
getSubTopics(topics_type=const.TOPIC_ATTACHED)
getSubTopicByIndex(index, topics_type=const.TOPIC_ATTACHED)
getIndex()
getHyperlink()
setFileHyperlink(path)
setTopicHyperlink(tid)
setURLHyperlink(url)
getNotes()
_set_notes()
setPlainNotes(content)
}
class ChildrenElement {
__init__(node=None, ownerWorkbook=None)
getTopics(topics_type)
}
class TopicsElement {
__init__(node=None, ownerWorkbook=None)
getType()
getSubTopics()
getSubTopicByIndex(index)
}
class WorkbookElement {
__init__(node=None, ownerWorkbook=None)
setOwnerWorkbook(workbook)
getSheets()
getSheetByIndex(index)
createSheet()
addSheet(sheet, index=None)
removeSheet(sheet)
moveSheet(original_index, target_index)
getVersion()
}
class Node {
__init__(node)
# _equals(obj=None): bool
getImplementation(): dom.Node
getOwnerDocument()
setOwnerDocument(doc)
getLocalName(qualifiedName)
getPrefix(qualifiedName)
appendChild(node)
insertBefore(new_node, ref_node)
getChildNodesByTagName(tag_name)
getFirstChildNodeByTagName(tag_name)
getParentNode()
# _isOrphanNode(node)
isOrphanNode()
iterChildNodesByTagName(tag_name)
removeChild(child_node)
output(output_stream)
}
class Document {
__init__(node=None)
_documentConstructor()
documentElement()
getOwnerDocument()
createElement(tag_name)
setVersion(version)
replaceVersion(version)
getElementById(id)
}
class Element {
__init__(node=None)
getOwnerDocument()
setOwnerDocument(doc_imple)
setAttributeNS(namespace, attr)
getAttribute(attr_name)
setAttribute(attr_name, attr_value=None)
createElement(tag_name)
addIdAttribute(attr_name)
getIndex()
getTextContent()
setTextContent(data)
}
WorkbookDocument <-- WorkbookLoader : creates
Element --|> Node
Document --|> Node
WorkbookDocument --|> Document
WorkbookElement --|> WorkbookMixinElement
TopicsElement --|> WorkbookMixinElement
ChildrenElement --|> WorkbookMixinElement
TopicElement --|> WorkbookMixinElement
TopicsElement --|> WorkbookMixinElement
TitleElement --|> WorkbookMixinElement
SheetElement --|> WorkbookMixinElement
RelationshipElement --|> WorkbookMixinElement
RelationshipsElement --|> WorkbookMixinElement
PositionElement --|> WorkbookMixinElement
MarkerRefElement --|> WorkbookMixinElement
MarkerRefsElement --|> WorkbookMixinElement
PlainNotes --|> _NoteContentElement
_NoteContentElement --|> TopicMixinElement
NotesElement --|> TopicMixinElement
TopicMixinElement --|> Element
WorkbookMixinElement --|> Element
@enduml |
1bd6e782ba250b4503c2909794c5d3c5d37d4496 | 99fd128e25c1aef4813198b9594d1366b6e23943 | /Techs/software-craft/know-design/design-pattern/structural-patterns/decorator/decorator_class.puml | abe03b3c78520f5e791b7c1a5aa66c7da7095208 | [] | no_license | tcfh2016/knowledge-map | 68a06e33f8b9da62f9260035123b9f86850316f0 | 23aff8bf83c07330f1d6422fc6d634d3ecf88da4 | refs/heads/master | 2023-08-24T19:14:58.838786 | 2023-08-13T12:04:37 | 2023-08-13T12:04:45 | 83,497,980 | 2 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 504 | puml | @startuml
class Component {
methodA()
methodB()
}
Component <|-- ConcreteComponent
Component <|-- Decorator
Component <-- Decorator
class ConcreteComponent {
methodA()
methodB()
}
class Decorator {
methodA()
methodB()
}
Decorator <|-- ConcreteDecoratorA
Decorator <|-- ConcreteDecoratorB
class ConcreteDecoratorA {
Component wrappedObj
methodA()
methodB()
newBehavior()
}
class ConcreteDecoratorB {
Component wrappedObj
Object newState
methodA()
methodB()
}
@enduml
|
8fd0599ff3f9b2e358b216ddc59025a7aa6cb5ca | 1fef2f0f0ad13aebb3d3f732d0cae8867ee8e87c | /plantuml/Microwave.Classes/Interfaces/ILight.puml | 0dd3b1b1a49b73aba560f8df9ffba643172c71d1 | [] | no_license | eengstroem/MicrowaveOven | b9711c314f053f00f9208cae69085d7bdf0ba3d4 | ac721f24f0025f5e10f50d4d58c4a7ad30f9fbd2 | refs/heads/master | 2023-04-25T09:55:42.513911 | 2021-05-24T16:45:23 | 2021-05-24T16:45:23 | 363,380,008 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 80 | puml | @startuml
interface ILight {
TurnOn() : void
TurnOff() : void
}
@enduml
|
454b7e958633439b4db3e31e74e1cf87e0784784 | c05f4620e3247ebeb6cc2b577a4ca8a125c82ab1 | /Actividades/A7.2.cd/clases.puml | 1cc5efe697654c777f53051345d40e5fd0de6ffc | [] | no_license | semylevy/A01023530_aymss18 | 4c6500fe71417fa86c1cd3021822d5b7a5b009e6 | bc9ccc55e27406866b0426027e83e9b8e0e5b4ed | refs/heads/master | 2021-05-12T14:35:41.104814 | 2019-01-14T19:53:30 | 2019-01-14T19:53:30 | 116,961,384 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,420 | puml | @startuml
class Printers{
-string tipo
+Printers()
+Printers(string t):tipo(t)
}
class Documents {
-string nombre
+printOn(Printers p)
}
class Base{
}
class Subclass{
}
class CloneFunction{
+Base* clone()
}
class Laser {
-string t
+Laser()
+Laser(string t)
+Laser(const Laser& temp)
+Printers* clone()
}
class Inyeccion {
-string t
+Inyeccion()
+Inyeccion(string t)
+Inyeccion(const Inyeccion& temp)
+Printers* clone()
}
class PDF {
-string t
+PDF()
+PDF(string t)
+PDF(const PDF& temp)
+Printers* clone()
}
class Postscript {
-string t
+Postscript()
+Postscript(string t)
+Postscript(const Postscript& temp)
+Printers* clone()
}
class Creator{
-static int cont
-static Creator* instance;
+Creator()
+static Creator* getInstance()
+static void destroyInstance()
}
' Cliente .> mandaEmail
' Cliente .> mandaSMS
' Cliente .> llamaCliente
' Command --> Email
' Command --> SMS
' Command --> Llamada
' Invoker o--> Command
' mandaEmail -> Receiver
' mandaSMS -> Receiver
' llamaCliente -> Receiver
' Cliente -> Receiver
Laser .> CloneFunction
PDF .> CloneFunction
Inyeccion .> CloneFunction
Postscript .> CloneFunction
Printers <-- Laser
Printers <-- PDF
Printers <-- Inyeccion
Printers <-- Postscript
Printers <-- Documents
CloneFunction --> Base
CloneFunction --> Subclass
@enduml
|
7858d1b1ddb7232f97c279548a3b8d2490c3acd8 | 873261e2d27905478bc72db08106f6a3c86eb90c | /ProyectoTDP/src/UML JUEGO parte2.puml | 0cfd805899d3f56c720a94f95a6c023a7459be20 | [] | no_license | francoraniolo/PSS18-TPEO3-Com02 | f39929d8eab34d448e8661f1a6b6e04dc704a584 | 60b6f642a1dc85804ea82ad3825e1ec37086dbea | refs/heads/master | 2020-04-06T13:07:53.776674 | 2018-11-15T01:23:46 | 2018-11-15T01:23:46 | 157,426,565 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 15,451 | puml | @startuml
skinparam classAttributeIconSize 0
' Split into 4 pages
'page 2x1
'skinparam pageMargin 10
'skinparam pageExternalColor gray
'skinparam pageBorderColor black
package GameTimeLine{
abstract class TimePoint{
+ {abstract} assembleMoment()
+ {abstract} startMoment()
+ {abstract} complete():bool
}
TimeLine --|> Component
TimeLine "levels" o--- "0..*" TimePoint
class TimeLine
{
-{static}instance : TimeLine
+{static}getInstance() : TimeLine
-currentlevel:int
+TimeLine()
+update()++
-hasNextLevel():bool
+currentLevel():TimePoint
- runLevel()
+ playLevel()
}
SomeBarricades --|> TimePoint
BarricadeBothDirector "1" --o "director" SomeBarricades
class SomeBarricades{
+SomeBarricades()
nextBarricade():Entity
+ assembleMoment()+
+ startMoment()+
+ complete():bool+
}
RemoveDeathStar ---|> TimePoint
class RemoveDeathStar{
+ assembleMoment()+
+ startMoment()+
+ complete():bool+
}
PutDeathStar ---|> TimePoint
class PutDeathStar{
+ assembleMoment()+
+ startMoment()+
+ complete():bool+
}
TransitionToBoss ---|> TimePoint
class TransitionToBoss{
+ assembleMoment()+
+ startMoment()+
+ complete():bool+
}
PlayerAssembler ---|> TimePoint
class PlayerAssembler{
+ assembleMoment()+
+ startMoment()+
+ complete():bool+
}
Level ---|> TimePoint
class Level{
private Collection<Entity> rewards;
- ILevelsData parser;
- EnemyShipDirector director;
- BarricadeBothDirector directorBboth;
- BarricadeEnemDirector directorBenem;
- int number;
- boolean levelRunning = false;
+ assembleMoment()+
+ startMoment()+
+ complete():bool+
}
TransitionToLevel ---|> TimePoint
class TransitionToLevel{
+ assembleMoment()+
+ startMoment()+
+ complete():bool+
}
class GameManager{
-{static} instance:GameManager
+{static} getInstance:GameManager
+GameManager()
+StartGame()
}
}
package AIs{
interface EntityQuery
{
+{abstract}whereToMove(ent:Entity ):Vector2
+{abstract}whereToSee(ent:Entity ):Vector2
}
abstract class ParametricMove extends AIQueryDecorator{
- t:int
- lastDirection:Vector2
+ParametricMove(decorated:EntityQuery)
+ whereToMove(ent:Entity ):Vector2+
+ {abstract} whereToMove(Entity ent, int t):Vector2
+ whereToSee(ent:Entity ):Vector2+
}
interface IDirGiver
{
+get():Vector2
}
AIQueryDecorator -- "1" EntityQuery
abstract class AIQueryDecorator implements EntityQuery
{
+ AIQueryDecorator(decorated:EntityQuery )
}
class AbsoluteLateral extends AIQueryDecorator
{
- steps:int
- i:int
- speed:int
- es_primer_pasada:boolean
+ int ran;
+ AbsoluteLateral(d:EntityQuery,steps:int)
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
-ran():int
+setRandomLevel(x:int)
}
class DummyEntityQuery implements EntityQuery{
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
class EllipseMove extends ParametricMove {
-a:float
-b:float
+EllipseMove(decorated:EntityQuery , a:float , b:float )
+whereToMove(ent:Entity ):Vector2+
}
class FalseNTimes implements Predicate{
-n:int
+ FalseNTimes(n:int )
+test(entity:Entity ):boolean +
}
class Hybrid50Hunter extends AIQueryDecorator {
+Hybrid50Hunter (handler:EntityQuery )
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
class GetAndRotate implements IDirGiver
{
-turn:boolean
-counter=0:int
-max :int
-sp :float
-last:Vector2
-rot, frot:float
GetAndRotate(rot:float , first:Vector2 , rotex:boolean)
+get():Vector2
}
class IncreaseSpeedIfWatched extends AIQueryDecorator {
-pilot:Pilot
-common_speed:float
-degrees:float
+IncreaseSpeedIfWatched (decorated:EntityQuery ,p:Pilot)
+IncreaseSpeedIfWatched (decorated:EntityQuery ,p:Pilot,d:float)
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
class Kamikazee extends AIQueryDecorator{
+Kamikazee(decorated:EntityQuery )
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
class LateralAndDown extends AIQueryDecorator{
- maxDown = 90, maxLateral = 90:int
- down, lateral:int
+LateralAndDown (decorated:EntityQuery )
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
class Pilot extends Component{
-final ship:Ship
-EntityQuery :handler
-float :Speed
+Pilot(handler:EntityQuery , ship:Ship , speed:float )
+void update()+
+getHandler():EntityQuery
+setHandler(handler:EntityQuery )
+speed():float
+setSpeed(v:float)
+clone():Pilot
}
PlayerMove -- "2" AbstractDirectionalInput
class PlayerMove extends AIQueryDecorator{
+PlayerMove(eq:EntityQuery,move:AbstractDirectionalInput,top:AbstractDirectionalInput )
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
class RelativeLateral extends AIQueryDecorator
{
- steps:int
- i:int
- speed:int
- es_primer_pasada:boolean
+ int ran;
+ RelativeLateral(d:EntityQuery,steps:int)
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
class Slippery extends AIQueryDecorator{
-level:float
-tolerance:float
-middleDispersion:float
-last:Vector2
+ Slippery(d:EntityQuery)
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
SoloAI -- "*" EnemyShips
class SoloAI extends AIQueryDecorator {
-waypoints: [Vector2]
-max:int
-i:int
-index_waypoints:int
+ SoloAI(d:EntityQuery,waypoints:Vector2)
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
+ searchSomeEnemies(cant:int )
- getTarget(ent:Entity ):Vector2
- getToMove(pos:Vector2 ):Vector2
}
class Spinner extends AIQueryDecorator {
-lastDirection : Vector2
+ Spinner(d:EntityQuery,waypoints:Vector2)
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
SwitchWhen -- "2" EntityQuery
class SwitchWhen implements EntityQuery {
+ SwitchWhen(pred:Predicate<Entity>,handlerFirst:EntityQuery,handlerLast:EntityQuery)
-check(e:Entity)
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
WatchAnother -- "1" Transform
class WatchAnother extends AIQueryDecorator{
-scapeFrom:int
+ WatchAnother (another:Transform,decorated:EntityQuery)
+whereToMove(ent:Entity ):Vector2+
+whereToSee(ent:Entity ):Vector2+
}
}
package InputManager{
abstract class AbstractContinueInput
{
+ {abstract} happens():boolean
+ {abstract} Destroy()
}
abstract class AbstractDirectionalInput
{
+ {abstract} Destroy()
+ {abstract} Direction():Vector2
}
IActivable <|-- AbstractDiscreteInput
abstract class AbstractDiscreteInput
{
+ {abstract} Destroy()
+ {abstract} OnAction():IBroadcaster<Boolean>
}
ContinueClick -- "1" MouseListener
class ContinueClick extends AbstractContinueInput
{
- happens:boolean
- Listener:MouseListener
+ ContinueClick(mouseButton:int )
- initialize(mouseButton:int )
+ boolean happens()+
+ Destroy()+
}
ContinueKeyInput -- "1" KeyListener
class ContinueKeyInput extends AbstractContinueInput
{
- happens:boolean
- mychars:[char]
+ ContinueKeyInput(chars:String )
+ boolean happens()+
+ Destroy()+
}
DirectionalMouse -- "1" Transform
class DirectionalMouse extends AbstractDirectionalInput
{
+ DirectionalMouse (reference:Transform)
+ Destroy()+
+ Direction():Vector2+
}
DirectionalWASD-- "4" AbstractContinueInput
class DirectionalWASD extends AbstractDirectionalInput
{
-Xblocked:boolean
-Yblocked:boolean
+ DirectionalWASD ()
+ lockX()
+ lockY()
+ unLockX()
+ unLockY()
+ Destroy()+
+ Direction():Vector2+
}
DiscreteClick -- IBroadcaster
DiscreteClick -- Invoker
DiscreteClick -- AbstractContinueInput
DiscreteClick -- DummyComponent
class DiscreteClick extends AbstractDiscreteInput
{
-lastStatus:boolean
+DiscreteClick(mouseClick:int )
+ initialize(mouseClick:int )
- Update()
+ isActive():boolean+
+ setActive(active:boolean )+
+ Destroy()+
+ OnAction():IBroadcaster<Boolean>+
}
DiscreteKeyInput -- IBroadcaster
DiscreteKeyInput -- Invoker
DiscreteKeyInput -- AbstractContinueInput
DiscreteKeyInput -- DummyComponent
class DiscreteKeyInput extends AbstractDiscreteInput
{
-lastStatus:boolean
+DiscreteKeyInput(chars:String)
- Update()
+ isActive():boolean+
+ setActive(active:boolean )+
+ Destroy()+
+ OnAction():IBroadcaster<Boolean>+
}
class DummyComponent extends Component
{
- Runnable onUpdate;
DummyComponent(onUpdate:Runnable )
+ update()++
+ OnDestroy() ++
}
}
package Misc{
class DeathStar{
+{static} get():GameObject
-{static} instance : GameObject
}
}
package Rewards{
interface Consumer<T>{
+void accept(t : T)
}
Consumer <|---- FireSpinnerCoin
class FireSpinnerCoin{
+void accept(transform :Transform)+
}
Consumer <|--- GenericReward
Renderizable "1" -o "renderer" GenericReward
Entity <|-- GenericReward
class GenericReward{
+GenericReward(referenced : GameObject,visitor: VisitorEntity,sprite: SpriteData )
+accept(visitor : visitorEntity)+
}
Consumer <|-- HealthCoin
class HealthCoin{
+accept(transform Transform)+
}
Consumer <|-- IceWeaponCoin
class IceWeaponCoin{
+accept(transform Transform)+
}
class RewardKey{
-{static} x:int =0
- ID : int
- RewardKey()
+ {static} get() : RewardKey
+ hashCode() : int ++
+ equals(obj : Object) : boolean ++
+ toString() : String ++
}
Component <|--- RewardMove
class RewardMove{
-min,max : int
-counter : float =1
-speed : Vector2 = (-1,0)
+RewardMove()
+ update()++
}
RewardKey "7" ---o "+KEYS" RewardsManager
class RewardsManager{
-{static} instance : RewardsManager
+{static} getInstance : RewardsManager
- creators Map<RewardKey,Consumer<Transform>>
- RewardsManager()
+ getReward(key:RewardKey, point : Transform)
}
Consumer <|-- ShieldCoin
class ShieldCoin{
+accept(transform:Transform)++
}
Consumer <|-- WeaponFiveCoin
class WeaponFiveCoin{
+accept(transform:Transform)++
}
Entity <|-- WeaponReward
Weapon "1" --o "-weapon" WeaponReward
Renderizable "1" --o "-renderer" WeaponReward
class WeaponReward{
+WeaponReward(referenced:GameObject,sprite:SpriteData)
+setWeapon(w:Weapon)
+accept(visitor : VisitorEntity)+
}
}
package Scripts{
Component <|-- Jumper
Transform "1" --o "-transform" Jumper
IBroadcaster "1" --o "onComplete" Jumper
Invoker "1" --o "invokeComplete" Jumper
class Jumper{
-delay:int
-points: [Vector2]
-firstPos : Vector2
+Jumper(path : [Vector2] , transform : Transform)
+update()++
+getOnComplete():IBroadcaster<Vector2>
}
GameObject ----o "obj" HyperSpace
HyperSpace -|>Component
class HyperSpace{
+{static} Jump():Jumper
-{static} checkObj()
-{static} getPath(src,dest : vector2, frames:int):[vector2]
}
Directionable -|>Component
class Directionable{
-direction : Vector2
+Directionable(d:Vector2)
+update()++
}
DangerousHunter <|--- Component
DangerousHunter "tofollow" o-- Transform
class DangerousHunter{
-increment,maxspeed,currentspeed : float
+update()++
DangerousHunter(tofollow:Transform)
}
AlwaysTurnAround "centerPoint" o--- Transform
AlwaysTurnAround ----|> Component
class AlwaysTurnAround{
-currentGap : Vector2
-angularSpeed : float
+update()++
AlwaysTurnAround()
}
class AlwaysRotate{
-rot:float
AlwaysRotate(v:float)
+update()++
}
PushData "target" o-- Transform
class PushData{
-counter:int
-veloci:Vector2
-dismish:float
+getVelocity():Vector2
+getCounter():int
+getDismish():float
+setVelocity(velocity:Vector2)
+setDismish(dismish:float)
+getTarget():Transform
}
class RewardLateralMovement{
- t:float
- rand_inc,dir :int
+ RewardLateralMovement(seed:int)
+update()++
}
ThePusher "tasks,toRemove" o-- "0..*" PushData
ThePusher "1"--*"instance" ThePusher
class ThePusher{
ThePusher()
add(target:Transform , c:int, vel:Vector2, x:float)
+update()++
}
}
package SpecialPowers{
interface ISpecialPower
{
+aply()
}
PowerDeck --|> IAcvtivable
PowerDeck "powers" o-- "0.." ISpecialPower
class PowerDeck{
-active:boolean
+PowerDeck(key:AbstractDiscreteInput)
+add(pow:ISpecialPower)
-use(b:boolean)
+isActive():boolean +
+setActive(act:boolean) +
}
TheForcePower ----|> ISpecialPower
class TheForcePower{
aply()+
}
}
package Tools{
CompEntry --|> Comparable
class CompEntry<K,V>
{
-key:K
-value:V
CompEntry(k:K , v:V)
value():V
key():K
compareTo(o:CompEntry):int
}
AnimatorsVolatiles "parent" o-- GameObject
class AnimatorsVolatiles
{
-{static}inst:AnimatorsVolatiles
+{static}getInst:AnimatorsVolatiles
-options : [String]
AnimatorsVolatiles()
getVolatile(pos:Vector2, name:String):Tranform
getExplo(pos:Vector2):Tranform
}
class Random{
+{static}value() : float
+{static}value(min:int,max:int) : float
}
class Tools {
+{static} random(array:[X]):X
+{static} contains(array:[X], elem:X):boolean
}
}
@enduml |
996fac18e6071f5a016d512735acfc51ab05e69e | 8cf12282bc7677790756ff80df379bf6164ff51c | /diagram-plan.puml | ae9384ba350cc2c3690e6a655944aa268e3a7bfe | [] | no_license | mjoe92/life-of-the-ants | 40dd42f8fc9edefc34b7e45a86abda6ffc312533 | 9fc443c0058c82a76b79f8ab96b62a1a5cc7cbe5 | refs/heads/master | 2023-03-19T05:52:10.096325 | 2021-03-19T14:18:14 | 2021-03-19T14:18:14 | 349,459,608 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,226 | puml | @startuml
class Simulator {
+main(): void
~onKeyPressed(): void
}
class Colony {
-width: int
-queen: Queen
-ants: Map<Ant, int>
+generateAnts(nOfWorkers: int, nOfSoldiers: int, nOfDrones: int): void
+update(): void
+display(): void
}
abstract class Ant {
-tile: char
-position: Position
-canMove: boolean
+move()
+getCanMove()
+getPosition()
}
Colony *-- Ant
Simulator *-- Colony
class Position {
-x: int
-y: int
+getX()
+getY()
}
Ant *-- Position
class Queen implements Ant {
-tile: char
-canMove: boolean
-{static} counterForMating: int
+getTile()
+countDown(): void
+restartCounter(): void
}
Colony *-- Queen
class Worker implements Ant {
-tile: char
+getTile()
+move(): void
}
class Drone implements Ant {
-{static} counterForStaying: int
-tile: char
+getTile()
+move(): void
}
class Soldier implements Ant {
-tile: char
+getTile()
+move(): void
}
enum Direction {
NORTH, EAST, SOUTH, WEST
-deltaPosition: Position
+getDeltaPosition()
}
Ant -- Direction
enum AntTile {
QUEEN, DRONE, SOLDIER, WORKER
-tile: char
+getTile()
}
Ant -- AntTile
@enduml |
4fd3adbb314ce33cabf7d7e8e4e774ed5c08b5d5 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductPriceAddedMessage.puml | 05f631680373a636029f4debb321b802bb1d7af5 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,200 | 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 ProductPriceAddedMessage [[ProductPriceAddedMessage.svg]] extends Message {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
variantId: Long
price: [[Price.svg Price]]
staged: Boolean
}
interface Message [[Message.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
|
7ada49a27f8c8755f0405f361c633752b4dffb1d | 79d0f1f042170b44fed8cdf55f4501f95f29f47d | /docs/diagrams/RemovalBasedClassDiagram.puml | 41f74b6c7c1b420b98b2582ea6d8225eda04653a | [
"MIT"
] | permissive | gerhean/main | c8a46890831953c424e5c11cfe4a548358120a89 | 3df0cb5726d03c0f60b3a93de91aedef0fce96c4 | refs/heads/master | 2021-01-06T23:45:57.520632 | 2020-04-11T08:43:36 | 2020-04-11T08:43:36 | 241,516,262 | 0 | 0 | NOASSERTION | 2020-02-25T09:30:45 | 2020-02-19T02:39:54 | Java | UTF-8 | PlantUML | false | false | 2,122 | puml | @startuml
hide circle
hide empty members
skinparam classAttributeIconSize 0
!define ABSTRACT {abstract}
'Class Command as "{abstract}\nCommand" {
' + execute(Model model): CommandResult \t ABSTRACT
'}
Class InternshipDiaryParser {
}
note "generateLazyCommand() creates a lazy function\nthat will construct the appropriate command\n(e.g. DeleteCommand) based on the\ncommandWord attribute." as lazyCommandNote
RemovalBasedCommand .. lazyCommandNote
RemovalBasedCommand .[hidden]. lazyCommandNote
class Parser <<interface>> {
}
Class ArchiveCommand {
{static} + COMMAND_WORD: String = "archive"
}
Class UnarchiveCommand {
{static} + COMMAND_WORD: String = "unarchive"
}
Class DeleteCommand {
{static} + COMMAND_WORD: String = "delete"
}
Class RemovalBasedCommand {
- commandWord: String
- executionType: RemovalBasedCommandExecutionType
+ execute(Model model): CommandResult
- generateLazyCommand(): Function<Index, Command>
- executeByIndex(Model model, Function<Index, Command> lazyCommand): CommandResult
- executeByIndices(Model model, Function<Index, Command> lazyCommand): CommandResult
- executeByField(Model model, Function<Index, Command> lazyCommand): CommandResult
}
Class RemovalBasedCommandExecutionTypeParser implements Parser {
- commandWord: String
+ parse(String args): RemovalBasedCommand
- commandByIndex(String args): RemovalBasedCommand
- commandByIndices(String args): RemovalBasedCommand
- commandByField(String args): RemovalBasedCommand
}
enum RemovalBasedCommandExecutionType <<enumeration>> {
BY_INDEX
BY_INDICES
BY_FIELD
getExecutionType(String args, ArgumentMultimap argMultimap)
}
InternshipDiaryParser .left.> RemovalBasedCommandExecutionTypeParser
RemovalBasedCommandExecutionTypeParser .left.> RemovalBasedCommand
RemovalBasedCommandExecutionTypeParser .down.> RemovalBasedCommandExecutionType
RemovalBasedCommand .down.> RemovalBasedCommandExecutionType
RemovalBasedCommand .up.> ArchiveCommand
RemovalBasedCommand .up.> UnarchiveCommand
RemovalBasedCommand .up.> DeleteCommand
@enduml
|
202ee77e3de06967758095bb05ca597111a42d94 | 65d20a2522663f335ac05ff61a0d00cb3c9e02d6 | /设计模式/创建型模式/5.Singleton单例/singleton.puml | 091321c7d467810459f52ef7474b804b8f19997f | [] | no_license | GungnirLaevatain/doc | 3f436387665cd67b93e84df0a0c92f9f894ad4a3 | 519643453e49a5a82e4a971597d186bfdc280116 | refs/heads/master | 2020-08-08T15:52:54.217559 | 2020-03-16T02:10:08 | 2020-03-16T02:10:08 | 213,863,201 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 200 | puml | @startuml
class Singleton{
-{static} Singleton instance
+{static} Singleton getInstance()
}
class Client{
+{static}void main(String[] args)
}
Client ..> Singleton :获取单例实体
@enduml |
c4f44be8e07049935328b17ea5eaf55607850f94 | c4020ccd3634b261f916bc974f11654bb46c1410 | /doc/hw3/C/Diagrams/Scenario Class Diagram.puml | 6dc37210f4a582744213fbff639bb765c6e4f62c | [] | no_license | Jgoga/sworsorc | ba04eb96477d9dad693614c2e9f60cd66aa5d5b2 | 811b44fc632ee7925a10587b9838ce1ade78007d | refs/heads/master | 2020-12-02T19:47:05.989702 | 2014-05-14T19:52:44 | 2014-05-14T19:52:44 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,190 | puml | @startuml
hide circle
title <b>Scenario Class Diagram </b>\nAuthored by: Chihsiang Wang\nReviewed by:Simon, Westrope, Higley, Shepherd
class User_Interface {
+void Start_Game()
+void Exit_Game()
+void Game_Help()
+int PickScenario()
}
class Scenario {
-Game_Turn : Integer
-Scenario_ID : Integer
-Amoount_of_players : Integer
+void Initialization()
+void Calculate_Winning()
+void Random_Event()
}
class Players {
-Current_Player_Province : Integer
-Current_PlayerNumber : Integer
-Number_of_Units : Integer
-Winning_Points : Integer
+int Rolling_Dices()
+void Pick_Units()
+void Move_Units()
+void Combat()
+void Cast_Magic()
+void Open_Current_Player_Status()
+void Game_Help()
+boolean Retreat()
+boolean Stack()
}
class Neutral {
}
class Map {
}
class Army_Unit {
}
class Champion {
}
class Items {
}
class Spells {
}
class Units{
}
Scenario -up- User_Interface
Neutral --o Scenario
Map --* Scenario
Players --o Scenario
Players *-- Units
Units <|-- Army_Unit
Units <|-- Champion
Champion ..> Spells : use
Champion ..> Items : own
@enduml
|
d3515711d17a889700637ae7791a0c6e00ff0be9 | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-codelist-land.puml | 52e6075d3086ae491c0d0134980da6b406a9e1b5 | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 91 | puml | @startuml
skinparam nodesep 100
hide circle
class Kodelister.Land <<codelist>> {
}
@enduml
|
b96ebc17376330b30fdb8fcf62cc0760be91e8de | f3587832c52a95050cda31b9d096e2019511489f | /Week2_3-Data-Structure-I/homework/DaobingZhu/uml/skiplist.plantuml | 17bfe6e5a42e1bec059f4e1348b76b4bcfa7c4d3 | [
"MIT"
] | permissive | IcePigZDB/training-plan | ebbe64b52623172674c76b1342c50278f5fca49b | e37ca52da63a528a48619f889ebb605ee566ef67 | refs/heads/master | 2023-07-27T22:18:09.060910 | 2021-09-13T06:15:41 | 2021-09-13T06:15:41 | 277,544,999 | 0 | 0 | MIT | 2021-09-22T11:17:36 | 2020-07-06T13:10:02 | C++ | UTF-8 | PlantUML | false | false | 1,526 | plantuml | @startuml
SkipList *-- Iterator
SkipList *-- Node
SkipList *-- Random
class SkipList{
-std::unique_ptr<Node> head_;
// for remove
-std::map<int,int> heights;
-Random rnd_;
-Comparator const compare_;
-enum { kMaxHeight = 12 };
-struct Node;
+class Iterator;
+SkipList(Comparator cmp);
+Insert(const Key& key);
+Remove(const Key& key);
+Contains(const Key& key) const;
+Dump() const;
+GetMaxHeight() const;
-Node* NewNode(const Key& key, int height);
-int RandomHeight();
-bool Equal(const Key& a, const Key& b) const;
-bool KeyIsAfterNode(const Key& key, Node* n) const;
-Node* FindGreaterOrEqual(const Key& key, Node** prev) const;
-Node* FindGreaterOrEqualFast(const Key& key, Node** prev) const;
-Node* FindLessThan(const Key& key) const;
-Node* FindLast() const;
}
class Iterator{
-const SkipList* list_;
-Node* node_;
+explicit Iterator(const SkipList* list);
+bool Valid() const;
+const Key& key() const;
+void Next();
+void Prev();
+void Seek(const Key& target);
+void SeekToFirst();
+void SeekToLast();
}
class Node{
- std::<vector<std::shared_ptr<Node>>> next_;
+Key const key;
+Node(const Key& k, int height);
+int GetNodeHeight()const;
+std::shared_ptr<Node> Next(int n) ;
+void SetNext(int n, std::shared_ptr<Node> x);
}
class Random{
-uint32_t seed_;
+explicit Random(uint32_t s);
+uint32_t Next();// get next seed_
+uint32_t Uniform(int n);// Return a value in the range [0..n-1]
+bool OneIn(int n);// 1/n return true
+uint32_t Skewed(int max_log);// return a value range in [0,2^max_log-1]
}
@enduml |
d5f7642969f78713b9c961057a36aa37ffdacb06 | 7d6272be247b119f6d26a6f59cc6510b2766effe | /uml/app.plantuml | ca8ee2548b44486511157cefd0d4683cef9e4a3e | [
"MIT"
] | permissive | marciogualtieri/MagicSquares | d45d8ea71558643e7ff823f7527a711fdf56bd02 | 7b47d2c8823eb9333335cc7c713748215c6a95f1 | refs/heads/master | 2020-03-27T22:24:25.419142 | 2018-09-21T08:21:04 | 2018-09-21T08:21:04 | 147,228,172 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 243 | plantuml | @startuml
class Prompt {
+get_input()
}
class Square {
+Square()
+step_once()
+step_to_finish()
+Boolean is_magic_square()
+String to_string()
}
class App {
+void main()
}
App *-- Prompt
App *-- Square
@enduml |
0f7b48bf1db8b33cc437c2e95d38caa4b0abc30c | 7eb0a3429f021f1a046bed8e667a6911d789d065 | /CommandPattern/example.puml | cd186f07fee8e44893cb967f578377d13c7845c7 | [
"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 | 1,700 | puml | @startuml example
hide empty members
interface Receiver{
+ boolean on()
+ boolean off()
}
class Light{
- bool state
+ void on()
+ void off()
+ int getState()
}
class Fan{
- {static} int MAX_SPEED
- int speed
+ void on()
+ void off()
+ int getState()
}
interface Command{
+ void execute()
+ void undo()
+ Command clone()
}
class LightOnCommand{
- Receiver receiver
+ LightOnCommand(Receiver receiver)
+ void execute()
+ void undo()
+ Command clone()
}
class LightOffCommand{
- Receiver receiver
+ LightOffCommand(Receiver receiver)
+ void execute()
+ void undo()
+ Command clone()
}
class FanOnCommand{
- Receiver receiver
- int statae
+ FanOnCommand(Receiver receiver)
+ void execute()
+ void undo()
+ Command clone()
}
class FanOffCommand{
- Receiver receiver
- int statae
+ FanOffCommand(Receiver receiver)
+ void execute()
+ void undo()
+ Command clone()
}
class MacroCommand{
- List<Command> commands
+ MacroCommand(List<Command> commands)
+ void execute()
+ void undo()
+ Command clone()
}
class RemoteControl{
- Command[] onCommands
- Command[] offCommands
- Stack<Command> history
+ void setOnCommand(Command command, int slot)
+ void setOffCommand(Command command, int slot)
+ void pressOnButton(int slot)
+ void pressOffButton(int slot)
+ void pressUndo()
}
Receiver <|-- Light
Receiver <|-- Fan
Command <|-- LightOnCommand
Command <|-- LightOffCommand
Command <|-- FanOnCommand
Command <|-- FanOffCommand
Command <|-- MacroCommand
Command -left- Receiver: > trigger action
@enduml |
a41c6d7be937d97d8ff5139fe7df9fad04aa52ff | 30bd8533d0644779e73646cc630132fd942f5398 | /app/src/main/java/com/example/user/diplom_2/data/data.plantuml | d5634e4af4c001311ac98e059e5954d84f671c26 | [] | no_license | sgfdpk/Test | c1e4626c1ff834ad242bac728104c94287bb8c9c | 6520514aeca8650c15b0f4cc40f82a7677a4e9e5 | refs/heads/master | 2020-03-15T17:53:06.860197 | 2018-12-14T14:33:41 | 2018-12-14T14:33:41 | 132,271,633 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,965 | plantuml | @startuml
title __DATA's Class Diagram__\n
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Attraction {
- attractionImageId : int
- name : String
- description : String
- adress : String
- url : String
- latitude : float
- longitude : float
+ getLatitude()
+ setLatitude()
+ getLongitude()
+ setLongitude()
+ Attraction()
+ Attraction()
+ Attraction()
+ getAttractionImageId()
+ setAttractionImageId()
+ getUrl()
+ setUrl()
+ getAdress()
+ setAdress()
+ getName()
+ setName()
+ getDescription()
+ setDescription()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class AttractionItem {
- attractName : String
- imgID : int
+ AttractionItem()
+ getAttractName()
+ setAttractName()
+ getImgID()
+ setImgID()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
enum AttractionTypes {
Fountain
Park
Street
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Country {
- countryImageId : int
- countryName : String
- countryInfo : String
+ Country()
+ getCountryImageId()
+ setCountryImageId()
+ getCountryName()
+ setCountryName()
+ getCountryInfo()
+ setCountryInfo()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class CountryDetails {
{static} ~ flags : Map<String, Integer>
{static} + putCounties()
{static} + getCountries()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Lection {
- lectionName : String
- isChecked : boolean
- adress : String
+ Lection()
+ Lection()
+ getLectionName()
+ setLectionName()
+ isChecked()
+ setChecked()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class LectionDetails {
{static} + putLections()
{static} + getLections()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Subject {
- subjectImageId : int
- progress : int
- subjectName : String
- subjectProgress : String
+ getSubjectImageId()
+ setSubjectImageId()
+ getProgress()
+ setProgress()
+ getSubjectName()
+ setSubjectName()
+ getSubjectProgress()
+ setSubjectProgress()
+ Subject()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class SubjectDetails {
{static} + getList()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class Wort {
- workName : String
- adress : String
+ Wort()
+ getWorkName()
+ setWorkName()
+ getAdress()
+ setAdress()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.data {
class WortDetails {
{static} + putWorks()
{static} + getWorks()
}
}
}
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
|
4a4495e77ee680f6822135cc82cf6391f0ecd656 | b7d2ba71058efa46eff4ed885324819fb3f99266 | /src/doc/WEB_Controllers/SensorSettings/US006/US006v2_cd_SensorSettingsWebcontroller.puml | 50df4236e8de5eca6e1978010bf4202f0bf07ecb | [] | no_license | Almadanmp/backend4 | 3aaa5cbe453041917a510ceee83bf318499a9823 | 07ab3c1af9c7de6ff35cf23bf44b0e664db82f46 | refs/heads/master | 2022-11-25T10:30:27.184246 | 2019-06-30T19:26:12 | 2019-06-30T19:26:12 | 194,547,877 | 0 | 0 | null | 2022-11-16T11:54:00 | 2019-06-30T18:24:24 | Java | UTF-8 | PlantUML | false | false | 1,609 | puml | @startuml
title US 006 - an Administrator, I want to add a new sensor and associate it to a geographical area, so that one can get measurements of that type in that area.
skinparam titleBorderRoundCorner 10
skinparam titleBorderThickness 2
skinparam titleBorderColor indianred
skinparam titleBackgroundColor Snow
skinparam FontName quicksand
skinparam titleFontSize 10
skinparam roundcorner 10
skinparam class {
BorderColor indianred
BackgroundColor indianred
BackgroundColor Snow
roundcorner 10
ArrowFontName Verdana
ArrowColor indianred
ArrowFontColor darkslategrey
FontSize 12
}
class SensorSettingsWebController
class GeographicAreaDTO
class GeographicAreaRepository
class ResponseEntity
class GeographicAreaMapper
class GeographicAreaCrudeRepo
class AreaSensorDTO
Postman -- SensorSettingsWebController : >
SensorSettingsWebController -- ResponseEntity : >
SensorSettingsWebController -- GeographicAreaRepository : >
GeographicAreaRepository -- GeographicAreaDTO : >
GeographicAreaRepository -- GeographicAreaMapper : >
GeographicAreaRepository -- AreaSensorDTO : >
GeographicAreaRepository -- GeographicAreaCrudeRepo : >
class SensorSettingsWebController {
createAreaSensor(@RequestBody AreaSensorDTO, @PathVariable long)
}
class GeographicAreaRepository {
getDTOById(long)
addSensorDTO(GeographicAreaDTO, AreaSensorDTO)
updateAreaDTO(GeographicAreaDTO)
}
class GeographicAreaCrudeRepo {
findById(long)
save(GeographicArea)
}
class GeographicAreaMapper{
objectToDTO(GeographicArea)
dtoToObject(GeographicAreaDTO)
}
class GeographicAreaDTO{
addSensor(AreaSensorDTO)
}
@enduml |
c55ddd8cf1a35de4f2a920b148043b7b79d7f6fd | 088856ec5790009dd9f9d3498a56fe679cfab2e8 | /src/puml/5/ucmitz/svg/domain_model/baser-core/pages.puml | 2f67d376a8c10575fa484ae584e56f1fac29e3c6 | [] | no_license | baserproject/baserproject.github.io | 21f244348890652286969afa1fde27c5c4d9e4ad | 8d61cf720f833854e1a3c97136e22e75baea7bb0 | refs/heads/master | 2023-08-09T03:21:53.341423 | 2023-07-27T07:28:50 | 2023-07-27T07:28:50 | 228,826,353 | 0 | 12 | null | 2023-08-17T02:31:05 | 2019-12-18T11:31:51 | HTML | UTF-8 | PlantUML | false | false | 1,190 | puml | @startuml
skinparam handwritten true
skinparam backgroundColor white
hide method
title ドメインモデル図:固定ページ
package 固定ページ {
class 固定ページ {
本稿記事
草稿記事
固定ページテンプレート
埋め込みコード ※ baserCMS5で廃止
}
note bottom
・記事ではシンタックスエラーチェックを行うかどうかを設定ファイルで設定できる
(validSyntaxWithPage)
・記事ではPHPコードの埋め込みを管理者以外もできるかどうかを設定ファイルで設定できる
(allowedPhpOtherThanAdmins)
※ baserCMS5で廃止、PHPコードは埋め込む事はできない
・固定ページのテンプレートは設定しない場合、親フォルダの設定に従う
・埋め込みコードはシステム管理者しか設定できない
※ baserCMS5で廃止、埋め込みコードは埋め込む事はできない
endnote
class コンテンツ {
URL
タイトル
自身の公開状態
自身の公開期間
公開状態
公開期間
親コンテンツID
作成者ID
実体ID
}
}
固定ページ *- コンテンツ
@enduml
|
971df7c6d5f97ad123d95dd027901d9ffe5ba1a9 | 856c17570e7975ab81ca242d4e77d068db2d33f6 | /exercise43/exercise43.puml | cedc1a45296cf196b702d21fa6594d5265582da2 | [] | no_license | jpaez11/paez-a04 | 2f66d2f6094d43b598bc796b82e8ec5ada98e903 | b6f74c02be07b00e81c26fb4be00905af7f749c4 | refs/heads/master | 2023-08-15T04:06:10.509682 | 2021-10-18T03:11:44 | 2021-10-18T03:11:44 | 417,701,796 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 78 | puml | @startuml
class baseline.solution43 {
+ {static} void main(String[])
}
@enduml |
cf1754622617bc7632b95b5a8c198483cbce662a | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/Test/Script/ScoreTest.puml | 0b2e0281baed96982b422bfc96e695518839bf92 | [] | 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 | 674 | puml | @startuml
class ScoreTest {
+ comboCountNum : int = 0
<<const>> baseScore : float = 100.0f
+ {static} totalScore : float = 0.0f
+ successResult : bool
+ {static} maxCombo : int = 0
+ {static} scoreGreat : int = 0
+ {static} scoreGood : int = 0
+ {static} scoreBetter : int = 0
+ {static} scoreNotBad : int = 0
+ {static} scoreBad : int = 0
+ {static} scoreMiss : int = 0
+ Start() : void
+ Update() : void
+ AddResult(success:bool) : void
+ GetScore(pastAnswerTime:float) : float
}
MonoBehaviour <|-- ScoreTest
ScoreTest --> "comboText" Text
ScoreTest --> "scoreText" Text
ScoreTest --> "at" CharacterTest
@enduml
|
e87fb4bc15e37ad2e61e432a4c1ac33b5f759259 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderCustomerGroupSetMessagePayload.puml | 020ad99a4e4f21c409a290345a636ae36afec6bb | [] | 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 | 590 | 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 OrderCustomerGroupSetMessagePayload [[OrderCustomerGroupSetMessagePayload.svg]] extends OrderMessagePayload {
type: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
oldCustomerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
}
interface OrderMessagePayload [[OrderMessagePayload.svg]] {
type: String
}
@enduml
|
d56ba8bbc23cec6d1ba33a7da9e6655db8d8454d | bcfa4e2c97e77561029a16ff68fc30fbed287478 | /design/src/main/java/com/xuan/xutils/design/template/p.puml | 9090a1215bdf6f00f4a4b25c1804631cdcba74e6 | [] | no_license | xuan698400/xutils | e35f27f68c0868abd2b6ac629cd450ce1a1fd199 | dc74820127b4ed747f9d9af668d76867d2928cce | refs/heads/master | 2023-08-31T04:39:28.053188 | 2023-08-26T17:29:01 | 2023-08-26T17:29:01 | 9,028,249 | 125 | 73 | null | 2023-01-06T16:25:55 | 2013-03-26T10:52:18 | JavaScript | UTF-8 | PlantUML | false | false | 347 | puml | @startuml
class Game{
public void play();
protected abstract void doPlay();
private void playApply();
private void goHome()
}
class GameMovie{
protected void doPlay();
}
class GameCamping{
protected void doPlay();
}
class Client{
void main();
}
Game <|-- GameMovie
Game <|-- GameCamping
Client -- Game : use
@enduml |
a3d8a3350acae425d4b418080e4b2db5427a69b3 | 9a2e77db5cc5a3ca467e3b33d0c52708f2621461 | /app/app.plantuml | 6711b8fd7acbeb45af9be4158a2d04869d16290e | [] | no_license | alvindrakes/fitness_tracker | 38ff6c167c5e668658cfec51733149e2c6e14169 | 1f29322f6407fa2a330105bc126de2c81199c05f | refs/heads/master | 2020-04-11T16:19:22.725964 | 2019-08-09T15:14:43 | 2019-08-09T15:14:43 | 161,920,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,775 | plantuml | @startuml
title __APP's Class Diagram__\n
package com.example.alvindrakes.my_fitness_tracker {
class BuildConfig {
}
}
package com.example.alvindrakes.my_fitness_tracker {
class DetailsPage {
}
}
package com.example.alvindrakes.my_fitness_tracker {
class ExampleInstrumentedTest {
}
}
package com.example.alvindrakes.my_fitness_tracker {
class MainActivity {
}
}
package com.example.alvindrakes.my_fitness_tracker {
package com.example.alvindrakes.my_fitness_tracker.ContentProvider {
class MyContentProvider {
}
}
}
package com.example.alvindrakes.my_fitness_tracker {
class MyDBOpenHelper {
}
}
package android.arch.core {
class R {
}
}
package androidx.versionedparcelable {
class R {
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.livedata {
class R {
}
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.viewmodel {
class R {
}
}
}
package android.support.compat {
class R {
}
}
package android.support.customview {
class R {
}
}
package android.support.coreutils {
class R {
}
}
package android.support.design {
class R {
}
}
package android.support.slidingpanelayout {
class R {
}
}
package android.support.coordinatorlayout {
class R {
}
}
package android.support.coreui {
class R {
}
}
package android.support.v7.appcompat {
class R {
}
}
package android.arch.lifecycle {
package android.arch.lifecycle.livedata {
package android.arch.lifecycle.livedata.core {
class R {
}
}
}
}
package android.support.drawerlayout {
class R {
}
}
package android.support.interpolator {
class R {
}
}
package android.support.loader {
class R {
}
}
package android.support.fragment {
class R {
}
}
package android.support.constraint {
class R {
}
}
package android.support.v7.viewpager {
class R {
}
}
package android.support.print {
class R {
}
}
package android.support.v7.cardview {
class R {
}
}
package android.support.transition {
class R {
}
}
package com.example.alvindrakes.my_fitness_tracker {
class R {
}
}
package android.support.asynclayoutinflater {
class R {
}
}
package android.support.localbroadcastmanager {
class R {
}
}
package android.support.documentfile {
class R {
}
}
package android.support.v7.recyclerview {
class R {
}
}
package android.support.swiperefreshlayout {
class R {
}
}
package android.support.graphics.drawable {
class R {
}
}
package android.arch.lifecycle {
class R {
}
}
package android.support.cursoradapter {
class R {
}
}
package com.example.alvindrakes.my_fitness_tracker {
class TrackerLog {
}
}
package com.example.alvindrakes.my_fitness_tracker {
class TrackerService {
}
}
DetailsPage -up-|> AppCompatActivity
MainActivity -up-|> AppCompatActivity
MainActivity o-- TrackerService : trackerService
MyContentProvider -up-|> ContentProvider
MyContentProvider o-- MyDBOpenHelper : myDB
MyDBOpenHelper -up-|> SQLiteOpenHelper
TrackerService -up-|> LocationListener
TrackerService -up-|> Service
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
|
cc0fe735b52b0600a387bd6e6d44793eeb0a9a00 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderEditSetCommentAction.puml | 4344cfd39ba2dee7d8993923b0b011544cdf34db | [] | 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 | 451 | 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 OrderEditSetCommentAction [[OrderEditSetCommentAction.svg]] extends OrderEditUpdateAction {
action: String
comment: String
}
interface OrderEditUpdateAction [[OrderEditUpdateAction.svg]] {
action: String
}
@enduml
|
4be3f9e54a83b4d928dd812e47194e634e8d9b75 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductDiscountChangeNameAction.puml | 53b431e629b7be6b54fd00ef2313b723a9aa4f9d | [] | 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 | 511 | 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 ProductDiscountChangeNameAction [[ProductDiscountChangeNameAction.svg]] extends ProductDiscountUpdateAction {
action: String
name: [[LocalizedString.svg LocalizedString]]
}
interface ProductDiscountUpdateAction [[ProductDiscountUpdateAction.svg]] {
action: String
}
@enduml
|
f7abe91dd81cc9e28ed65ac90dff976bc4211c22 | c083168b4255af019262677c09ac0883d199b532 | /kapitler/media/uml-class-plan.iuml | 737e8fb26870c47f81e072fa919a74c68357aa95 | [] | no_license | gra-moore/noark5-tjenestegrensesnitt-standard | 270f7088898ff0c5fa809b42297cfc56f829eeaa | 0c3936475ce40ab41793b61aee5c4dcdff9c791d | refs/heads/master | 2020-05-22T18:37:59.814751 | 2019-05-13T11:10:23 | 2019-05-13T11:10:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 139 | iuml | @startuml
class Arkivstruktur.NasjonaleIdentifikatorer.Plan <Nasjonalidentifikator> {
+planidentifikator : NasjonalArealplanId
}
@enduml
|
006ccc2d0161ce7378e493b50bda2a0c47aea95a | 208bc3111dcb8d68b977b1c67aae672bb8cdc4ee | /doc/diagrams/ClassDiagrams/SimulatorClassDiagramBad.puml | db2a23e06840cec6a58d6bcd492f546d2c558f43 | [] | no_license | tanvir1990/Elevator-Control-System | 5d1374bd61114397f04eea92e9cd585ad243090e | 912e72108ad2f3646692a037d78b1016e385c35a | refs/heads/master | 2021-10-26T05:16:51.559694 | 2019-04-10T22:49:47 | 2019-04-10T22:49:47 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,301 | puml | @startuml
note "All private fields are implied to have getter and setter methods, as appropriate." as N1
class ElevatorSender {
-{static} instance: ElevatorSender
+{static} getInstance()
+{static} setNull()
+sendElevatorClick(int elevatorID, int elevatorButton)
}
class Event {
-df: DateFormat
-timestamp: Date
-floor: int
-elevatorButton: int
-direction: Direction
-parseDate(String dateString): Date
+toString(): String
}
class EventMaker {
-{static} instance: EventMaker
+addEventsFromFileToTimer(String filePath)
-createEventAndAddToTimer(String[] stringArray)
}
class EventTimer {
-{static} instance: EventTimer
+{static} getInstance(): EventTimer
+setNull()
+add(Event event)
}
class TimedEvent {
-event: Event
+run()
}
class FileParser {
-{static} instance: FileParser
-parsed: List<String>
+{static} getInstance(): FileParser
+{static} setNull()
+parse(String filePath)
-parseLine(String line): String[]
}
class FloorReceiver {
-{static} instance: FloorReceiver
+{static} getInstance(): FloorReceiver
+{static} setNull()
+receiveElevatorArrival(int floor, Direction direction, int elevatorID)
}
class FloorSender {
-{static} instance: FloorSender
-{static} simulatorPort: int
+{static} getInstance(): FloorSender
+{static} setNull()
+sendFloorClick(int floor, Direction direction): boolean
}
class Runner {
}
class SimulatorMessageHandler {
-{static} instance: SimulatorMessageHandler
-schedulerAddress: InetAddress
-elevatorAddress: InetAddress
-{static} elevatorPort: int
-{static} schedulerPort: int
-log: Logger
+{static} getInstance(int receivePort): SimulatorMessageHandler
+received(Message message)
+sendFloorButtonClickSimulation(int floor, Direction direction)
+sendElevatorButtonClickSimulation(int floor, int elevatorID)
}
class TriggeredEventMap {
-{static} instance: TriggeredEventMap
-map: HashMap<Integer, HashMap<Direction, List<Event>>>
+{static} getInstance(int receivePort): TriggeredEventMap
+{static} setNull()
+add(Event event)
+send(int floor, Direction direction, int elevatorID)
}
TimedEvent --|> TimerTask
EventTimer --|> Timer
@enduml |
c005bb3a88af6ef3fe8ec5d1d6f525e75201882c | 605cac101260b1b451322b94580c7dc340bea17a | /malokhvii-eduard/malokhvii04/doc/plantuml/ua/khpi/oop/malokhvii04/shell/ShellResources.puml | 1291e576099eca2f27559fa3789255b0290da20c | [
"MIT"
] | permissive | P-Kalin/kit26a | fb229a10ad20488eacbd0bd573c45c1c4f057413 | 2904ab619ee48d5d781fa3d531c95643d4d4e17a | refs/heads/master | 2021-08-30T06:07:46.806421 | 2017-12-16T09:56:41 | 2017-12-16T09:56:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 358 | puml | @startuml
class ShellResources {
{static} -locales: Map<String, Locale>
-defaultLocale: Locale
-ShellResources()
{static} +getInstance(): ShellResources
+getResourceBundle(String): ResourceBundle
+setDefaultLocale(String, Locale): void
+setLocale(String, Locale): void
}
@enduml
|
43782139ce8ea2a00803d24d9319de961cdd8ba2 | a88c11df2c1189b6e651d85cf3dc2388f9fcfc95 | /diagrams/ChangeDetector_classDiagram.plantuml | 9119de2bb510ff2ff2f86a31a3b0e11cc042b2be | [] | no_license | TomSievers/EVD_Proj | cf6fcb6bfb3cca23a45fb434f8f5097d5aa56f4b | 19abc059668d86b1c4c0d4e93bd8acb38223a36e | refs/heads/develop | 2023-02-20T12:32:11.254938 | 2021-01-21T08:16:31 | 2021-01-21T08:16:31 | 293,806,246 | 0 | 0 | null | 2021-01-21T08:16:32 | 2020-09-08T12:39:05 | C++ | UTF-8 | PlantUML | false | false | 2,163 | plantuml | @startuml
package ImageCapture
{
interface ICapture
{
# curFrame : cv::Mat
# active : bool
# thread : std::thread
# updateMutex : std::mutex
+ //setRoi(roi : const cv::Point2f[4], width : float, height : float) : void//
+ //getFrame() : cv::Mat//
+ //stop() : void//
# //update() : void//
}
}
package Detector {
class Object <<struct>> {
}
class ChangeObject <<struct>> {
+ nonZero: int
+ moving: bool
}
enum VisionStep {
ACQUISITION,
ENHANCEMENT,
SEGMENTATION,
FEATURE_EXTRACT,
CLASSIFICATION
}
interface IDetector {
+ //getObjects() : std::vector<std::shared_ptr<Object>>//
- processors : std::map<VisionStep, std::shared_ptr<IImageProcessing>>
}
class ChangeDetector {
}
note "The processors map contains variables with the following types:\nChangeEnhancement,\nChangeSegmentation,\nChangeFeatureExtraction,\nChangeClassification" as ChangeDetectorNode
interface IImageProcessing {
+ //process(image : cv::Mat&, data : std::shared_ptr<void>) : cv::Mat//
}
class Acquisition {
+ Acquisition(deviceID : int)
+ Acquisition(mock_img : const std::string&)
+ getCapture() : ImageCapture::ICapture&
- cap : std::unique_ptr<ImageCapture::ICapture>
}
class ChangeEnhancement {
- blurImage(image : const cv::Mat&) : cv::Mat
}
class ChangeSegmentation {
- removeBackground(image : const cv::Mat&) : cv::Mat
}
class ChangeFeatureExtraction {
- previousFrame: cv::Mat
}
class ChangeClassification {
}
}
IDetector <|.. ChangeDetector
IDetector .> Object
Object <|.. ChangeObject
Acquisition ..> ICapture
IImageProcessing <|.. Acquisition
IImageProcessing <|.. ChangeEnhancement
IImageProcessing <|.. ChangeSegmentation
IImageProcessing <|.. ChangeFeatureExtraction
IImageProcessing <|.. ChangeClassification
IImageProcessing .> ChangeObject
IImageProcessing .> VisionStep
ChangeDetector --> IImageProcessing
ChangeDetector - ChangeDetectorNode
@enduml |
cf91703542afd93fa9cf9af079bb5340c504dd66 | 937e0ceb8f040ccb17c7ac3415f1add637b03efa | /diagrammeLogiciel.plantuml | 30d3ccf155eef2c88138563bcd871c58d801cfe1 | [] | no_license | arthurgorjux/fire-in-the-ole-doc | 8f56b95cf7a6bf9f29757df60fd79357292bd0ee | 2c9c6347adefd985b91ae1af2d198587048e6b50 | refs/heads/master | 2021-01-20T06:20:16.304639 | 2014-11-18T11:29:54 | 2014-11-18T11:29:54 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 730 | plantuml | @startuml
title Etude du logiciel : Simulateur de gestions des incendies
class Simulateur
class Simulation
class ArchiveSimulation
class CarteDeTerrain
class ModeleRobotPompier {
+algorythmePathFinding
}
class JeuDeParametres
class Incendie
Simulateur "1"--"*" Simulation : Produire
Simulateur "1"--"*" ModeleRobotPompier : Connaitre
Simulateur "1"--"*" CarteDeTerrain : Disposer
(Simulateur, Simulation) .. ArchiveSimulation
Simulation "*"-->"1..*" ModeleRobotPompier : Impliquer
Simulation "*"-->"1" CarteDeTerrain : Utiliser
Simulateur "1"--"*" JeuDeParametres : Enregistrer
Simulation "*"-->"1" JeuDeParametres : Utiliser
Simulateur "*"-->"*" ArchiveSimulation : Rejouer
Incendie "*"-->"1" Simulation : Impliquer
@enduml |
be5d51f5050305cf1f9c5bd248192deffc5807aa | 15f6b12bed5efa3bc273e4b95ac4177ac1eb0e7a | /smsgateway/doc/SMSGateway-SMS-ClassDiagram.puml | a21825ad272733d8b10bdb758455b0ac8498c0be | [] | no_license | profesig/smspay | a11727fe34db20956f4e4c869ec681c5bac5f43a | baa7e92232de98ea6d4ddec6e1ce20fbef5aaf3b | refs/heads/master | 2020-06-05T06:47:37.439702 | 2014-01-31T09:56:00 | 2014-01-31T09:56:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 295 | puml | @startuml
class SMS {
-fromNumber:String
-destinationNumber:String
-content:String
-createdOn:Date
+SMS(String fromNumber, String destinationNumber, String content)
+getFromNumber():String
+getDestinationNumber():String
+getContent():String
+getCreatedOn():Date
+toString()
}
@enduml |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.