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
30f5d0024771c300bd9fd5d16b59bda50330d92e
fd2f472634c68934b6de8f38ea141294a1476c64
/lib/src/main/java/com/example/lib/适配器模式_对象_电源适配器.puml
4b7389cc92abec4d0e6792103e5570bf89a17b51
[]
no_license
guangdeshishe/DesignPattern
d45bae8428c9c41fcbc95c05da41f0d8fae824c6
9a1c7504131ca6a866d3bb5f16e6b42a3ce7889a
refs/heads/master
2020-06-25T02:53:15.755175
2019-09-29T09:09:41
2019-09-29T09:09:41
199,177,202
1
0
null
null
null
null
UTF-8
PlantUML
false
false
297
puml
@startuml class HomeVoltage{ + getHomeVoltage() } interface MobilePhoneVoltage{ + getMobilePhoneVoltage() } class VoltageObjectAdapter{ homeVoltage : HomeVoltage + getMobilePhoneVoltage() } HomeVoltage <-- VoltageObjectAdapter MobilePhoneVoltage <|.. VoltageObjectAdapter @enduml
c9a9fd6bdefd511234e0c6077c54b77551b92a93
1e652533db73a2d1cd8251db16dd471c6b5e449e
/design/diagrams/uml/data-structures.plantuml
fd17cb82310e7ace0c8ac5e35e164331d06bfd57
[ "BSD-3-Clause" ]
permissive
soartech/soar-language-server
830a7de547d8be69adc08478b81a4d0b4199fa60
6b46fc138b91271a1da72b520ad4e487595fe11c
refs/heads/master
2023-01-22T15:34:46.564111
2021-09-03T12:21:05
2021-09-03T12:21:05
175,042,467
5
3
BSD-3-Clause
2023-01-16T10:07:26
2019-03-11T16:39:34
Java
UTF-8
PlantUML
false
false
4,490
plantuml
@startuml package org.eclipse.lsp4j { } note right of org.eclipse.lsp4j Defines the LSP spec as Java types and implements transport, serialization, entry point, and more. end note package com.soartech.soarls { class Server note left of Server Constructed by the application's entry point. end note class SoarDocumentService class SoarWorkspaceService note left of SoarWorkspaceService Mostly forwards data to the SoarDocumentService end note class Documents class Configuration note left of Configuration This is for client-specific configuration. Although technically part of the public API, it should be treated as an implementation detail. end note class ProjectConfiguration { entryPoints : List<EntryPoint> active : String rhsFunctions : List<String> } note left of ProjectConfiguration This defines the structure of the soarAgents.json manifest file. end note class com.soartech.soarls.SoarFile { uri : URI contents : String // Only contains syntax errors. diagnostics : List<Diagnostic> ast : TclAstNode } note left of com.soartech.soarls.SoarFile Maintains the state of a document along with its Tcl syntax tree. Diagnostics only contain syntax errors; no further analysis is performed. end note Server -up-|> org.eclipse.lsp4j.LanguageServer Server *-- SoarDocumentService Server *-- SoarWorkspaceService SoarDocumentService -up-|> org.eclipse.lsp4j.TextDocumentService SoarDocumentService *-left- ProjectConfiguration SoarDocumentService *-- Configuration SoarDocumentService *-- Documents SoarDocumentService *-- com.soartech.soarls.analysis.ProjectAnalysis SoarWorkspaceService -up-|> org.eclipse.lsp4j.WorkspaceService SoarWorkspaceService o-- SoarDocumentService Documents *-- "0..*" com.soartech.soarls.SoarFile } note top of com.soartech.soarls.analysis This data is generated by the Analysis class whenever document edits are made. Once generated, it is immutable. end note namespace com.soartech.soarls.analysis { class ProjectAnalysis { entryPointUri : URI files : Map<URI, FileAnalysis> procedureDefinitions : Map<String, ProcedureDefinition> procedureCalls : Map<ProcedureDefinition, List<ProcedureCall>> variableDefinitions : Map<String, VariableDefinition> variableRetrievals : Map<VariableDefinition, List<VariableRetrieval>> } note right of ProjectAnalysis Most of the data is owned by the FileAnalysis class; this class just maintains an index for project-wide lookups. end note class FileAnalysis { uri : URI procedureCalls : Map<TclAstNode, ProcedureCall> variableRetrievals : Map<TclAstNode, VariableRetrieval> procedureDefinitions : List<ProcedureDefinition> filesSource : List<URI> productions : List<Production> diagnostics : List<Diagnostic> } class ProcedureDefinition { name : String location : Location arguments : List<Argument> ast : TclAstNode commentAstNode : Optional<TclAstNode> commentText : Optional<String> } class ProcedureCall { callSiteAst : TclAstNode } class VariableDefinition { name : String location : Location ast : TclAstNode value : String commentAstNode : Optional<TclAstNode> commentText : Optional<String> } class VariableRetrieval { readSiteLocation : Location readSiteAst : TclAstNode } class Production { name : String location : Location body : String } ProjectAnalysis *-- "1..*" FileAnalysis ProjectAnalysis o-- ProcedureDefinition ProjectAnalysis o-- ProcedureCall ProjectAnalysis o-- VariableDefinition ProjectAnalysis o-- VariableRetrieval FileAnalysis o-- com.soartech.soarls.SoarFile FileAnalysis *-- "0..*" ProcedureDefinition FileAnalysis *-- "0..*" ProcedureCall FileAnalysis *-- "0..*" VariableDefinition FileAnalysis *-- "0..*" VariableRetrieval FileAnalysis *-- "0..*" Production ProcedureCall o-- ProcedureDefinition VariableRetrieval o-- VariableDefinition } hide methods @enduml
cdb70235e5aa984f8f975e75bee896a30236e0e8
a2b717706eb8dfd1c36045606e5824934cfc20a5
/diagrams/decorator.puml
b3d70e83c91c47fa623b61a059ca43c3f076ab59
[]
no_license
zhongshijun/head-first-design-patterns-cpp
66f706264f848e26f6791057eb089a6cdf0a44d9
3dc4fc23abb884395313b388fd33e87c0b7730c6
refs/heads/master
2023-03-18T20:51:13.129157
2021-01-25T20:55:26
2021-01-25T20:55:26
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
885
puml
@startuml decorator abstract class Beverage{ #description_; +getDescription() +cost() } class DarkRoast{ +getDescription() +cost() } class Decaf{ +getDescription() +cost() } class Espresso{ +getDescription() +cost() } class HouseBlend{ +getDescription() +cost() } class CondimentDecorator{ +CondimentDecorator(beverage: Beverage) #beverage_ } class Milk{ +getDescription() +cost() } class Mocha{ +getDescription() +cost() } class Soy{ +getDescription() +cost() } class Whip{ +getDescription() +cost() } Beverage <|.. CondimentDecorator Beverage <|.. DarkRoast Beverage <|.. Decaf Beverage <|.. Espresso Beverage <|.. HouseBlend CondimentDecorator o-- Beverage CondimentDecorator <|-- Milk CondimentDecorator <|-- Mocha CondimentDecorator <|-- Soy CondimentDecorator <|-- Whip @enduml
27fdf4a73c19ca86c4214e7cc2bbf8487b2511d7
4bcb8405bdf327b5be43a9c32eeb15f1ffb70f29
/documentation/collectionDataModel.plantuml
b2542af3fe675cec296de6b882aaad7e4981c1cd
[ "MIT" ]
permissive
cboelling/collection-specs
d0e1bd5e642b3c8264c60aeeeed28d1f7c2b1779
b5f4273c2d431ea323e76d11f0066ea8a0a7cbdd
refs/heads/master
2020-07-07T11:59:47.487502
2019-08-15T15:07:06
2019-08-15T15:07:06
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
926
plantuml
@startuml left to right direction skinparam classAttributeIconSize 0 hide circle hide methods class "Collecting Event" as ce { -lat/long -date -collectors } class "Material Sample" as ms { -sourceMaterialSample } skinparam linetype spline note "CatalogNumber\nnot unique" as NU class "Catalogued Object" as co { -catalogueNumber -organismId } class "Identification" as identification{ -count } class "Preparation" as preparation{ -parentPreparation } ce "1 " -- "0..*" ms ms "1 " -- "0..*" co skinparam linetype ortho co "1 " - "0..*" identification co "1..*" - "0..*" preparation co -up-> NU ms -[#red,dashed]-> ms preparation -[#red,dashed]-> preparation legend right Notable model constraints: - Material Sample is always created even if the user has no data for it - Preparation is used to move from Material Sample to Catalogued Object - CataloguedObject + Identification = occurrenceId endlegend @enduml
80371abe51921fba3eaadc66f589ab669bac67db
edd83fe036eb4b47fff7b8df74edb339f625d7dd
/src/libraries/commons-beanutils/basic-commons-beanutils/uml/commons-beanutils.puml
f7ea5f883acf7dd7fb19fde57905e6327b39dcd1
[]
no_license
DucManhPhan/J2EE
1a7cb661f739bf577a4271f86e3af3baad196c3c
2e3636d126b5e82971627b49696beb93726d8472
refs/heads/master
2023-04-15T00:15:02.218224
2023-04-10T16:10:15
2023-04-10T16:10:15
171,880,152
3
5
null
2022-11-24T05:51:47
2019-02-21T13:49:34
Java
UTF-8
PlantUML
false
false
25,443
puml
@startuml interface Converter { <T> convert(type: Class<T>, value: Object): T } class ConvertUtils { + {static} convert(value: Object): String + {static} convert(value: String, clazz: Class<?>): Object + convert(values: String[], clazz: Class<?>): Object + convert(value: Object, targetType: Class<?>): Object + deregister(clazz: Class<?>): void + lookup(clazz: Class<?>): Converter + lookup(sourceType: Class<?>, targetType: Class<?>): Converter + register(converter: Converter, clazz: Class<?>): void + primitiveToWrapper(type: Class<T>): Class<T> } class ConvertUtilsBean { - {static} ZERO: int = 0 - {static} SPACE: char = ' ' - converters: WeakFastHashMap<Class<?>>; __ ~ {static} getInstance(): ConvertUtilsBean + convert(value: Object): String + convert(value: Object, clazz: Class<?>): Object + convert(values: String[], clazz: Class<?>): Object + convert(value: Object, targetType: Class<?>): Object + deregister(): void + register(throwException: boolean, defaultNull: boolean, defaultArraySize: int): void + registerPrimitives(throwException: boolean): void + registerStandard(throwException: boolean, defaultNull: boolean): void + registerOther(throwException: boolean): void + registerArrays(throwException: boolean, defaultArraySize: int): void + registerArrayConverter(componentType: Class<?>, componentConverter: Converter, throwException: boolean, defaultArraySize: int): void + deregister(clazz: Class<?>): void + lookup(clazz: Class<?>): Converter + lookup(sourceType: Class<?>, targetType: Class<?>): Converter + register(converter: Converter, clazz: Class<?>): void } class ConvertUtilsBean2 extends ConvertUtilsBean { + convert(value: Object): String + convert(value: Object, clazz: Class<?>): Object + convert(values: String[], clazz: Class<?>): Object } ConvertUtils --> ConvertUtilsBean ConvertUtilsBean *--> Converter class BeanUtils { + {static} cloneBean(bean: Object): Object + {static} copyProperties(dest: Object, orig: Object): void + {static} copyProperty(bean: Object, name: String, value: Object): void + {static} describe(bean: Object): Map<String, String> + {static} getArrayProperty(bean: Object, name: String): String[] + {static} getIndexedProperty(bean: Object, name: String): String + {static} getIndexedProperty(bean: Object, name: String, index: int): String + {static} getMappedProperty(bean: Object, name: String): String + {static} getMappedProperty(bean: Object, name: String, key: String): String + {static} getNestedProperty(bean: Object, name: String): String + {static} getProperty(bean: Object, name: String): String + {static} getSimpleProperty(bean: Object, name: String): String + {static} populate(bean: Object, properties: Map<String, ? extends Object>): void + {static} setProperty(bean: Object, name: String, value: Object): void + {static} initCause(throwable: Throwable, cause: Throwable): boolean + {static} <K, V> Map<K, V> createCache(): Map<K, V> } class BeanUtilsBean { - {static} BEANS_BY_CLASSLOADER: ContextClassLoaderLocal<BeanUtilsBean>; - {static} INIT_CAUSE_METHOD: Method = getInitCauseMethod(); - convertUtilsBean: ConvertUtilsBean - propertyUtilsBean: PropertyUtilsBean __ - convertForCopy(value: Object, type: Class<?>): Object - {static} getInitCauseMethod(): Method - {static} dynaPropertyType(dynaPropery: DynaProperty, value: Object): Class<?> .. + {static} getInstance(): BeanUtilsBean + {static} setInstance(newInstance: BeanUtilsBean): void + cloneBean(bean: Object): Object + copyProperties(dest: Object, orig: Object): void + copyProperty(bean: Object, name: String, value: Object): void + describe(bean: Object): Map<String, String> + getArrayProperty(bean: Object, name: String): String[] + getIndexedProperty(bean: Object, name: String): String + getIndexedProperty(bean: Object, name: String, index: int): String + getMappedProperty(bean: Object, name: String): String + getMappedProperty(bean: Object, name: String, key: String): String + getNestedProperty(bean: Object, name: String): String + getProperty(bean: Object, name: String): String + getSimpleProperty(bean: Object, name: String): String + populate(bean: Object, properties: Map<String, ? extends Object>): void + setProperty(bean: Object, name: String, value: Object): void + getConvertUtils(): ConvertUtilsBean + getPropertyUtils(): PropertyUtilsBean + initCause(throwable: Throwable, cause: Throwable): boolean + convert(value: Object, type: Class<?>): Object } class BeanUtilsBean2 extends BeanUtilsBean { + convert(value: Object, type: Class<?>): Object } BeanUtils --> BeanUtilsBean BeanUtilsBean o-- ConvertUtilsBean BeanUtilsBean o-- PropertyUtilsBean BeanUtilsBean --> object.DynaBean BeanUtilsBean --> object.DynaProperty BeanUtilsBean --> ContextClassLoaderLocal note top of ContextClassLoaderLocal: An instance of this class represents a value that is provided per (thread) context classloader class ContextClassLoaderLocal <<T>> { - valueByClassLoader: Map<ClassLoader, T> - globalValueInitialized: boolean - globalValue: T __ # initialValue(): T + synchronized get(): T + synchronized set(value: T): void + synchronized unset(): void + synchronized unset(classLoader: ClassLoader): void } class ConstructorUtils { - {static} EMPTY_CLASS_PARAMETERS: Class<?> - {static} EMPTY_OBJECT_ARRAY: Object[] __ - {static} toArray(arg: Object): Object[] - {static} <T> getMatchingAccessibleConstructor(clazz: Class<T>, parameterTypes: Class<?>[]): Constructor<T>; + {static} <T> invokeConstructor(klass: Class<T>, arg: Object): T + {static} <T> invokeConstructor(klass: Class<T>, args: Object[]): T + {static} <T> invokeConstructor(klass: Class<T>, args: Object[], parameterTypes: Class<?>[]): T + {static} <T> invokeExactConstructor(klass: Class<T>, arg: Object): T + {static} <T> invokeExactConstructor(klass: Class<T>, args: Object[]): T + {static} <T> invokeExactConstructor(klass: Class<T>, args: Object[], parameterTypes: Class<?>[]): T + {static} <T> getAccessibleConstructor(klass: Class<T>, parameterType: Class<?>): Constructor<T> + {static} <T> getAccessibleConstructor(klass: Class<T>, parameterTypes: Class<?>[]): Constructor<T> + {static} <T> getAccessibleConstructor(ctor: Constructor<T>): Constructor<T> } class PropertyUtilsBean { - resolver: Resolver = new DefaultResolver(); - descriptorsCache: WeakFastHashMap<Class<?>, BeanIntrospectionData> - mappedDescriptorsCache: WeakFastHashMap<Class<?>, Map> - introspectors: List<BeanIntrospector> - {static} EMPTY_OBJECT_ARRAY: Object[] __ - getIntrospectionData(beanClass: Class<?>): BeanIntrospectionData - fetchIntrospectionData(beanClass: Class<?>): BeanIntrospectionData - invokeMethod(method: Method, bean: Object, values: Object[]): Object - {static} toObjectList(obj: Object): List<Object> - {static} toPropertyMap(obj: Object): Map<String, Object> # {static} getInstance(): PropertyUtilsBean # setPropertyOfMapBean(bean: Map<String, Object>, propertyName: String, value: Object): void + getResolver(): Resolver + setResolver(resolver: Resolver): void + resetBeanIntrospectors(): void + addBeanIntrospector(introspector: BeanIntrospector): void + removeBeanIntrospector(introspector: BeanIntrospector): boolean + clearDescriptors(): void + copyProperties(dest: Object, orig: Object): void + describe(bean: Object): Map<String, Object>) + getIndexedProperty(bean: Object, name: String): Object + getIndexedProperty(bean: Object, name: String, index: int): Object + getMappedProperty(bean: Object, name: String): Object + getMappedProperty(bean: Object, name: String, key: String): Object + getMappedPropertyDescriptors(beanClass: Class<?>): Map<Class<?>, Map> + getMappedPropertyDescriptors(bean: Object): Map + getNestedProperty(bean: Object, name: String): Object + getPropertyOfMapBean(bean: Map<?, ?>, propertyName: String): Object + getProperty(bean: Object, name: String): Object + getPropertyDescriptor(bean: Object, name: String): PropertyDescriptor + getPropertyDescriptors(beanClass: Class<?>): PropertyDescriptor[] + getPropertyDescriptors(bean: Object): PropertyDescriptor[] + getPropertyEditorClass(bean: Object, name: String): Class<?> + getPropertyType(bean: Object, name: String): Class<?> + getReadMethod(descriptor: PropertyDescriptor): Method + getReadMethod(clazz: Class<?>, descriptor: PropertyDescriptor): Method + getSimpleProperty(bean: Object, name: String): Object + getWriteMethod(descriptor: PropertyDescriptor): Method + getWriteMethod(clazz: Class<?>, descriptor: PropertyDescriptor): Method + isReadable(bean: Object, name: String): boolean + isWriteable(bean: Object, name: String): boolean + setIndexedProperty(bean: Object, name: String, value: Object): void + setIndexedProperty(bean: Object, name: String, index: int, value: Object): void + setMappedProperty(bean: Object, name: String, value: Object): void + setMappedProperty(bean: Object, name: String, index: int, value: Object): void + setNestedProperty(bean: Object, name: String, index: int, value: Object): void + setPropertyOfMapBean(bean: Map<String, Object>, propertyName: String, value: Object): void + setProperty(bean: Object, name: String, value: Object): void + setSimpleProperty(bean: Object, name: String, value: Object): void } class MethodUtils { - {static} CACHE_METHODS: boolean - {static} EMPTY_CLASS_PARAMETERS: Class<?>[] - {static} EMPTY_OBJECT_ARRAY: Object[] - cache: Map<MethodDescriptor, __ - } package object { interface DynaBean { + contains(name: String, key:String): boolean + get(name: String): Object + get(name: String, index: int): Object + get(name: String, key: String): Object + getDynaClass(): DynaClass + remove(name: String, key: String): void + set(name: String, value: Object): void + set(name: String, index: int, value: Object): void + set(name: String, key: String, value: Object): void } DynaBean --> DynaClass class BasicDynaBean implements DynaBean, Serializable { - {static} SHORT_ZERO: Short; - {static} LONG_ZERO: Long; - {static} INTEGER_ZERO: Integer; - {static} FLOAT_ZERO: Float; - {static} DOUBLE_ZERO: Double; - {static} CHARACTER_ZERO: Character; - {static} BYTE_ZERO: Byte; # dynaClass: DynaClass # values: HashMap<String, Object> # mapDecorator: Map<String, Object> __ + getMap(): Map<String, Object> } BasicDynaBean o-- DynaClass class LazyDynaBean implements DynaBean { # {static} BigInteger_ZERO: BigInteger # {static} BigDecimal_ZERO: BigDecimal # {static} Character_SPACE: Character # {static} Byte_ZERO: Byte # {static} Short_ZERO: Short # {static} Integer_ZERO: Integer # {static} Long_ZERO: Long # {static} Float_ZERO: Float # {static} Double_ZERO: Double # values: Map<String, Object> - mapDecorator: Map<String, Object> # dynaClass: MutableDynaClass __ + LazyDynaBean() + LazyDynaBean(name: String) + LazyDynaBean(dynaClass: DynaClass) + getMap(): Map<String, Object> + size(name: Strirng): int # growIndexedProperty(name: String, indexedProperty, index: int): Object # createProperty(name: String, type: Class<?>): Object # createIndexedProperty(name: String, type: Class<?>): Object # createMappedProperty(name: String, type: Class<?>): Object # createDynaProperty(name: String, type: Class<?>): Object # createNumberProperty(name: String, type: Class<?>): Object # createOtherProperty(name: String, type: Class<?>): Object # defaultIndexedProperty(name: String): Object # defaultMappedProperty(name: String): Object # isDynaProperty(name: String): boolean # isAssignable(dest: Class<?>, source: Class<?>): boolean # newMap(): Map<String, Object> } interface Map<K, Object> { } interface Entry<K, Object> { } class MapEntry<K> implements Entry { - key: K - value: Object __ + equals(o: Object): boolean + hashCode(): int + getKey(): K + getValue(): Object + setValue(value: Object): Object } class BaseDynaMapDecorator implements Map { - dynaBean: DynaBean - readOnly: boolean - keySet: Set<K> __ - getDynaProperties(): DynaProperty[] # {abstract} convertKey(propertyName: String): K + BaseDynaMapDecorator(dynaBean: DynaBean) + BaseDynaMapDecorator(dynaBean: DynaBean,readOnly: boolean) + isReadonly(): boolean + clear(): void + containsKey(key: Object): boolean + containsValue(value: Object): boolean + entrySet(): Set<Map, Entry<K, Object>> + get(key: Object): Object + isEmpty(): boolean + keySet(): Set<K> + put(key: K, value: Object): Object + putAll(map: Map<? extends K, ? extends Object>): void + remove(key: Object): Object + size(): int + values(): Collection<Object> + getDynaBean(): DynaBean } BaseDynaMapDecorator --> DynaProperty class DynaBeanPropertyMapDecorator extends BaseDynaMapDecorator { + DynaBeanPropertyMapDecorator(dynaBean: DynaBean, readOnly: boolean) + DynaBeanPropertyMapDecorator(dynaBean: DynaBean) + convertKey(propertyName: String): String } interface DynaClass { getName(): String getDynaProperty(name: String): DynaProperty getDynaProperties(): DynaProperty[] newInstance(): DynaBean } interface MutableDynaClass { add(name: String): void add(name: String, type: Class<?>): void add(name: String, type: Class<?>, readable: boolean, writeable: boolean): void isRestricted(): boolean remove(name: String): void setRestricted(restricted: boolean): void } class DynaProperty implements Serializable { - {static} BOOLEAN_TYPE: int = 1; - {static} BYTE_TYPE: int = 2; - {static} CHAR_TYPE: int = 3; - {static} DOUBLE_TYPE: int = 4; - {static} FLOAT_TYPE: int = 5; - {static} INT_TYPE: int = 6; - {static} LONG_TYPE: int = 7; - {static} SHORT_TYPE: int = 8; __ + DynaProperty(name: String) + DynaProperty(name: String, type: Class<?>) + DynaProperty(name: String,type: Class<?>, contentType: Class<?>) + getName(): String + getType(): Class<?> + getContentType(): Class<?> + isIndexed(): boolean + isMapped(): boolean + equals(obj: Object): boolean + hashCode(): int + toString(): String + writeObject(out: ObjectOutputStream): void + writeAnyClass(clazz: Class<?>, out: ObjectOutputStream): void + readObject(in: ObjectInputStream): void + readAnyClass(in: ObjectInputStream): Class<?> } class JDBCDynaClass implements DynaClass { # lowerCase: boolean - useColumnLabel: boolean # properties: DynaProperty[] # propertiesMap: Map<String, DynaProperty> - columnNameXref: Map<String, String> __ + setUseColumnLabel(useColumnLabel: boolean): void # loadClass(className: String): Class<?> # createDynaProperty(metadata: ResultSetMetaData, i: int): DynaProperty # introspect(resultSet: ResultSet): void # getObject(resultSet: ResultSet, name: String): Object # getColumnName(name: String): String } class ResultSetDynaClass extends JDBCDynaClass { # resultSet: ResultSet # __ + ResultSetDynaClass(resultSet: ResultSet) + ResultSetDynaClass(resultSet: ResultSet, lowerCase: boolean) + ResultSetDynaClass(resultSet: ResultSet, lowerCase: boolean, userColumnLabel: boolean) + iterator(): Iterator<DynaBean> + getObjectFromResultSet(name: String): Object + getResultSet(): ResultSet # loadClass(className: String): Class<?> } class RowSetDynaClass extends JDBCDynaClass { # limit: int # rows: List<DynaBean> __ + RowSetDynaClass(resultSet: ResultSet) + RowSetDynaClass(resultSet: ResultSet, limit: int) + RowSetDynaClass(resultSet: ResultSet, lowerCase: boolean) + RowSetDynaClass(resultSet: ResultSet, lowerCase: boolean, limit: int) + RowSetDynaClass(resultSet: ResultSet, lowerCase: boolean, useColumnLabel: boolean) + RowSetDynaClass(resultSet: ResultSet, lowerCase: boolean, limit: int, useColumnLabel: boolean) + getRows(): List<DynaBean> # copy(resultSet: ResultSet): void # createDynaBean(): DynaBean } RowSetDynaClass o-- DynaBean class BasicDynaClass implements DynaClass, Serializable { # constructor: Constructor<?> # constructorValues: Object[] # dynaBeanClass: Class<?> = BasicDynaBean.clas # name: String # properties: DynaProperty[] # propertiesMap: HashMap<String, DynaProperty> __ + BasicDynaClass() + BasicDynaClass(name: String, dynaBeanClass: Class<?>) + BasicDynaClass(name: String, dynaBeanClass: Class<?>, properties: DynaProperty[]) + getDynaBeanClass(): Class<?> # setDynaBeanClass(dynaBeanClass: Class<?>): void # setProperties(properties: DynaProperty[]): void } class LazyDynaClass extends BasicDynaClass implements MutableDynaClass { # restricted: boolean # returnNull: boolean __ + LazyDynaClass() + LazyDynaClass(name: String) + LazyDynaClass(name: String, dynaBeanClass: Class<?>) + LazyDynaClass(name: String, properties: DynaProperty[]) + LazyDynaClass(name: String, dynaBeanClass: Class<?>, properties: DynaProperty[]) + isRestricted(): boolean + remove(name: String): void + setRestricted(restricted: boolean): void + isReturnNull(): boolean + setReturnNull(returnNull: boolean): void + add(name: String): void + add(name: String, type: Class<?>): void + add(name: String, type: Class<?>, readable: boolean, writeable: boolean): void + add (property: DynaProperty): void + getDynaProperty(name: String): DynaProperty + isDynaProperty(name: String): boolean } class WrapDynaBean implements DynaBean, Serializable { # dynaClass: WrapDynaClass # instance: Object __ + WrapDynaBean(instance: Object) + WrapDynaBean(instance: Object, cls: WrapDynaClass) + getInstance(): Object + getDynaProperty(name: String): DynaProperty + getPropertyUtils(): PropertyUtilsBean } WrapDynaBean o-- WrapDynaClass class WrapDynaClass implements DynaClass { - beanClassName: String - beanClassRef: Reference<Class<?>> - descriptors: PropertyDescriptor[] - descriptorsMap: HashMap<String, PropertyDescriptor> - properties: DynaProperty[] - propertiesMap: HashMap<String, DynaProperty> - CLASSLOADER_CACHE: ContextClassLoaderLocal<Map<CacheKey, WrapDynaClass>> __ - getClassesCache(): Map<CacheKey, WrapDynaClass> - WrapDynaClass(beanClass: Class<?>, propUtils: PropertyUtilsBean) # getBeanClas(): Class<?> + getPropertyDescriptor(name: String): PropertyDescriptor + {static} clear(): void + {static} createDynaClass(beanClass: Class<?>): WrapDynaClass + {static} createDynaClass(beanClass: Class<?>, pu: PropertyUtilsBean): WrapDynaClass + getPropertyUtilsBean(): PropertyUtilsBean # introspect(): void } class CacheKey { - beanClass: Class<?> - propUtils: PropertyUtilsBean __ + CacheKey(beanCls: Class<?>, pu: PropertyUtilsBean) + hashCode(): int + equals(obj: Object): boolean } WrapDynaClass --> CacheKey class AbstractMap<String, Object> { } class BeanMap extends AbstractMap implements Cloneable { - bean: Object - readMethods: HashMap<String, Method> - writeMethods: HashMap<String, Method> - types: HashMap<String, Class<? extends Object>> __ - {static} typeTransformers: Map<Class<? extends Object>, Function<?, ?>> + {static} NULL_ARGUMENTS: Object[] - {static} createTypeTransformers(): Map<Class<? extends Object, Function<?, ?>> + BeanMap() + BeanMap(bean: Object) + clone(): Object + putAllWriteable(map: BeanMap): void + clear(): void + containsKey(name: Object): boolean + containsValue(value: Object): boolean + get(name: Object): Object + put(name: String, value: Object): Object + size(): int + entrySet(): Set<Map.Entry<String, Object> + values(): Collection<Object> + getType(name: String): Class<?> + keyIterator(): Iterator<String> + valueIterator(): Iterator<Object> + entryIterator(): Iterator<Map.Entry<String, Object>> + getBean(): Object + setBean(newBean: Object): void + getReadMethod(name: String): Method + getWriteMethod(name: String): Method + getReadMethod(name: Object): Method + getWriteMethod(name: Object): Method + reinitialize(): void + initialise(): void # firePropertyChange(key: Object, oldValue: Object, newValue: Object): void # createWriteMethodArguments(method: Method, value: Object): Object[] # convertType(newType: Class<?>, value: Object): Object # getTypeTransformer(aType: Class<?>): Function # logInfo(ex: Exception): void # logWarn(ex: Exception): void } class SimpleEntry<String, Object> { } note top of Entry: Map Entry used by BeanMap class Entry extends SimpleEntry { - owner: BeanMap __ # Entry(owner: BeanMap, key: String, value: Object) + setValue(value: Object): Object } class HashMap<K, V> { } abstract class CollectionView<E> implements Collection { # {abstract} get(map: Map<K, V>): Collection<E> # {abstract} iteratorNext(entry: Map.Entry<K, V> + CollectionView() + clear(): void + remove(o: Object): boolean + removeAll(o: Collection<?>): boolean + retainAll(o: Collection<?>): boolean + size(): int + isEmpty(): boolean + contains(o: Object): boolean + containsAll(o: Collection<?>): boolean + <T> toArray(o: T[]): T[] + toArray(): Object[] + equals(o: Object): boolean + hashCode(): int + add(o: E): boolean + addAll(c: Collection<? extends E>): boolean + iterator(): Iterator<E> } class Iterator<E> { } class CollectionViewIterator<E> implements Iterator { - expected: Map<K, V> - lastReturned: Map.Entry<K, V> - iterator: Iterator<Map.Entry<K, V>> __ + CollectionViewIterator() + hasNext(): boolean + next(): E + remove(): void } class KeySet extends CollectionView implements Set { # get(map: Map<K, V>): Collection<K> # iteratorNext(entry: Map.Entry<K, V>>): K } class Values extends CollectionView { # get(map: Map<K, V>): Collection<K> # iteratorNext(entry: Map.Entry<K, V>>): K } class EntrySet extends CollectionView implements Set { # get(map: Map<K, V>): Collection<K> # iteratorNext(entry: Map.Entry<K, V>>): K } class WeakFastHashMap<K, V> extends HashMap { - volatile map: Map<K, V> - fast: boolean __ + WeakFastHashMap() + WeakFastHashMap(capacity: int) + WeakFastHashMap(capacity: int, factor: float) + WeakFastHashMap(map: Map<? extends K, ? extends V> + getFast(): boolean + setFast(fast: boolean): void + get(key: Object): V + size(): int + isEmpty(): boolean + containsKey(key: Object): boolean + containsValue(value: Object): boolean + put(key: K, value: V): V + putAll(in: Map<? extends K, ? extends V): void + remove(key: Object): V + clear(): void + equals(o: Object): boolean + hashCode(): int + clone(): Object + entrySet(): Set<Map.Entry<K, V>> + keySet(): Set<K> # createMap(): Map<K, V> # createMap(capacity: int): Map<K, V> # createMap(capacity: int, factor: float): Map<K, V> # createMap(map: Map<? extends K, ? extends V>): Map<K, V> # cloneMap(map: Map<? extends K, ? extends V>): Map<K, V> } class LazyDynaList extends ArrayList { - elementDynaClass: DynaClass - wrapDynaClass: WrapDynaClass - elementType: Class<?> - elementDynaBeanType: Class<?> __ + LazyDynaList() + LazyDynaList(capacity: int) + LazyDynaList(elementDynaClass: DynaClass) + LazyDynaList(elementType: Class<?>) + LazyDynaList(collection: Collection<?>) + LazyDynaList(index: int, element: Object) + add(index: int, element: Object): void + add(element: Object): boolean + addAll(collection: Collection<?>): boolean + addAll(index: int, collection: Collection<?>): boolean + get(index: int): Object + set(index: int, element: Object): Object + toArray(): Object[] + <T> toArray(model: T[]): T[] + toDynaBeanArray(): DynaBean[] + setElementType(elementType: Class<?>): void + setElementDynaClass(elementDynaClass: DynaClass): void + growList(requiredSize: int): void + transform(element: Object): DynaBean + createDynaBeanForMapProperty(value: Object): LazyDynaMap + getDynaClass(): DynaClass } class BeanPredicate<T> implements Predicate { - propertyname: String - predicate: Predicate<T> __ + BeanPredicate(propertyName: String, predicate: Predicate<T>) + test(object: Object): boolean + getPropertyName(): String + setPropertyName(propertyName: String): void + getPredicate(): Predicate<T> + setPredicate(predicate: Predicate<T>): void } } @enduml
69bf72e12ca0a24c66d68111a6b5f8f6818ca181
ccc4a578b9cf4323653f87212acca9b3d12f1c23
/WasteWatcherApp/WasteWatcherApp/UML/Firebase/FirebaseAuthentificationReply.puml
aa2a6a28520b22dbb8e28ea97421226b948aba0e
[]
no_license
MarioGeier00/WasterWatcherApp
383531013b68fb52927ef4abf529e83bd6beff4b
88190459884fa0252ebfe63fdf3e1ce852eeb75f
refs/heads/dev
2023-06-04T09:37:22.112757
2021-07-01T11:57:02
2021-07-01T11:57:02
355,274,133
0
0
null
2021-05-19T12:48:26
2021-04-06T17:24:11
C#
UTF-8
PlantUML
false
false
247
puml
@startuml class FirebaseAuthentificationReply { + idToken : string <<get>> <<set>> email : string <<get>> <<set>> refreshToken : string <<get>> <<set>> expiresIn : int <<get>> <<set>> localId : string <<get>> <<set>> } @enduml
b94f048548bf69a4821b33c64ea5fd0d43a2392c
2e7923a13090ac6120bd0877c2b065a94e706577
/document/类图.puml
4d51787139797ccc4aa79f0d283543d81feec7f6
[ "MIT" ]
permissive
bigwin-finance-temp/1inchProtocol
b42d0d0e090c8728d589f3ba4d0a982518dac7c9
fe5591c9cc497a5c95e5e7492a8e675e801040f1
refs/heads/master
2023-03-30T07:19:06.333208
2021-04-12T11:10:49
2021-04-12T11:10:49
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
559
puml
@startuml title 1inch 类图 class OneSplitAudit { getExpectedReturn() // 估算最佳兑换方案 swap() // 执行多DEX交易 } class OneSplitView { - _findBestDistribution // 查找最优交易对 ... } class OneSplitCompound { getExpectedReturn() // 估算最佳兑换方案 swap() // 执行多DEX交易 } class OneSplitAave { getExpectedReturn() // 估算最佳兑换方案 swap() // 执行多DEX交易 } OneSplitAudit <|-- OneSplitView OneSplitView o-- OneSplitCompound OneSplitView o-- OneSplitAave @enduml
f06fb1cfb8d5ece95830e30190d4fd86baa92cfb
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdaterDataHolder.puml
095778d5f26e9aa47541d6dd748aa84c89b97ca5
[]
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
287
puml
@startuml class WindowResultUpdaterDataHolder { } class "ScriptableSingleton`1"<T> { } class "List`1"<T> { } "ScriptableSingleton`1" "<WindowResultUpdaterDataHolder>" <|-- WindowResultUpdaterDataHolder WindowResultUpdaterDataHolder o-> "CachedResults<TestRunnerResult>" "List`1" @enduml
1a046faa8b898d7fc8544ff0ca3bbee89f0e99e5
7cab75a68e30731aee292f8b6a2467454ffc4057
/design/schema/boss.puml
9c9f9a2ece1c69d087f4f7dc6b73b938301266aa
[]
no_license
BICCN/BCDC-Metadata
61a82970309278086b8a5486256fd58d71c24090
3f78b4dd82db5bf41fb66ff422d48490aa115792
refs/heads/master
2023-06-25T18:02:40.378118
2023-06-09T20:42:32
2023-06-09T20:42:32
220,517,655
6
6
null
2023-09-09T00:24:41
2019-11-08T17:36:38
null
UTF-8
PlantUML
false
false
4,650
puml
@startuml Metadata class Project { ID: String! Name: String! Title: String! ShortTitle: String! Keywords: [String]! Description: String! Year: Date! Public: Boolean! Species: [Species]! Publications: [Publication]! Links: [Link] UniqueIdentifier: String! License: [License]! Contributor: [Contributor]! Acknowledgements: String Funding: [Funding] DateCreated: Date! DateModified: Date DOI: DOI -- ImagingModalities: [ImagingModalityGeneral]! ImagingModalitySpecific: [ImagingModalitySpecific] DataTypes: [DataType] ImageLocations: [BrainLocation]! -- ImageBanner: String! ImageTile: String! ImageHero: String ImageHeroPosition: String Media: [String] -- Collections: [Collection] Experiments: [Experiment] Channels: [Channel] } Project::ImageLocations *-- BrainLocation Project::Publications *-- Publication Project::Species *-- Species Project::Links *-- Link Project::Contributor *-- Contributor Project::License *-- License Project::Funding *-- Funding Project::ImagingModalities *-- ImagingModalityGeneral Project::ImagingModalitySpecific *-- ImagingModalitySpecific Project::DataTypes *-- DataType Project::Collections *-- Collection Project::Experiments *-- Experiment Project::Channels *-- Channel Project::DOI *-- DOI class Collection { ID: String! Name: String! Description: String! Public: Boolean! Creator: [User]! Contributors: [Contributor]! DateCreated: Date! DateModified: Date License: [License]! Acknowledgements: String DOI: DOI Version: String -- Species: [Species] -- Experiments: [Experiment] } Collection::Creator *-- User Collection::Contributors *-- Contributor Collection::License *-- License Collection::DOI *-- DOI Collection::Species *-- Species Collection::Experiments *-- Experiment class Experiment { ID: String! Name: String! Description: String! Public: Boolean! Creator: [User]! Contributors: [Contributor]! DateCreated: Date! DateModified: Date License: License! -- Species: Species! ImageLocation: BrainLocation! Protocol: Link! -- CoordinateFrame: CoordinateFrame! -- Channels: [Channel] -- Version: String } Experiment::Creator *-- User Experiment::Contributors *-- Contributor Experiment::License *-- License Experiment::ImageLocation *-- BrainLocation Experiment::ImageLocation *-- Link Experiment::CoordinateFrame *-- CoordinateFrame Experiment::Channels *-- Channel class Channel{ ID: String! Name: String! Description: String! Public: Boolean! Creator: [User]! Contributors: [Contributor]! DateCreated: Date! DateModified: Date License: License! ImagingModality: ImagingModalityGeneral! ImagingModalitySpecific: ImagingModalitySpecific ImageResolution: ImageResolution! ChannelType: ChannelType! DataType: DataType! VisualationColor: String ImageExtent: Number -- VisualizationColor: String -- Version: String } Channel::Creator *-- User Channel::Contributors *-- Contributor Channel::License *-- License Channel::ImagingModalityGeneral *-- ImagingModalityGeneral Channel::ImagingModalitySpecific *-- ImagingModalitySpecific Channel::ImageResolution *-- ImageResolution Channel::ChannelType *-- ChannelType Channel::DataType *-- DataType class BrainLocation { Name: String! Location: DataLocation } BrainLocation::DataLocation *-- DataLocation class DataLocation { URI: String Xs: [Number] Ys: [Number] Zs: [Number] Ts: [Number] Resolution: ImageResolution } class Publication { Name: [String] URI: [String] Authors: [String] } class Link { Name: [String] URI: [String] } class Funding { Sponsor: [String] Grant: [String] } class Contributor { Name: [String] Email: [String] } class License { License: String! URI: String! } class DOI { URI: String! } enum Species { CElegans FruitFly Mouse Zebrafish Zebrafinch Human } enum DataType { Imagery Segmentation Skeletons Connectome } enum ChannelType { Image Segmentation Annotation } enum ImagingModalityGeneral { SEM TEM XRay MRI LightMicroscopy None } enum ImagingModalitySpecific { ATUM_SEM SB_SEM SS_TEM S_TEM AT_TEM XRM XNH CLARITY MRI MRI_DTI None } class User { Name: String Email: String } class CoordinateFrame { Xs: [Number] Ys: [Number] Zs: [Number] -- VoxelSize: ImageResolution } CoordinateFrame::ImageResolution *-- ImageResolution class ImageResolution { VoxelSize: [Number] VoxelUnit: VoxelUnit } ImageResolution::VoxelUnit *-- VoxelUnit enum VoxelUnit { nanometer micrometer millimeter centimeter } @endumlml
156aa1df0f2116152fd844f6f465c5cd1f53f705
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.puml
8632525a9cea95873a6d142de60b8d2ffa225338
[]
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
239
puml
@startuml class UnityCombinatorialStrategy { + <<new>> GetTestCases(sources:IEnumerable[]) : IEnumerable<ITestCaseData> } CombinatorialStrategy <|-- UnityCombinatorialStrategy ICombiningStrategy <|-- UnityCombinatorialStrategy @enduml
51d23b292cd380fe77f4b47edc038c92ba716d20
1cf4490d48f50687a8f036033c37d76fec39cd2b
/src/main/java/global/skymind/solution/advanced/gui/javafx/ex2/ex2.plantuml
1aa79175d532a2b0c98668691277f51f597f4d1d
[ "Apache-2.0" ]
permissive
muame-amr/java-traininglabs
987e8b01afbaccb9d196f87c4a8a6b9a46a4cc83
a93268f60e6a8491b1d156fae183a108ff0d9243
refs/heads/main
2023-08-06T10:04:57.996593
2021-09-28T11:21:00
2021-09-28T11:21:00
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
730
plantuml
@startuml title __EX2's Class Diagram__\n namespace global.skymind { namespace solution.advanced.gui.javafx.ex2 { class global.skymind.solution.advanced.gui.javafx.ex2.MyFXButton { ~ button : Button ~ count : int + handle() {static} + main() + start() } } } global.skymind.solution.advanced.gui.javafx.ex2.MyFXButton .up.|> javafx.event.EventHandler global.skymind.solution.advanced.gui.javafx.ex2.MyFXButton -up-|> javafx.application.Application right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
d2084371678847b94e9e89a7b139577e58f38f08
605cac101260b1b451322b94580c7dc340bea17a
/malokhvii-eduard/malokhvii05/doc/plantuml/ua/khpi/oop/malokhvii05/util/algorithms/sort/TimSort.puml
b7cf03a0413b799a383d03f5ebc296d2cae128ba
[ "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
1,156
puml
@startuml class TimSort<T> { {static} -DEFAULT_MERGE_BUFFER_SIZE: int {static} -DEFAULT_MIN_GALLOP: int {static} -DEFAULT_MIN_MERGE: int -array: T[] -mergeBuffer: T[] -minGallop: int -runBaseStack: int[] -runSizeStack: int[] -stackSize: int +TimSort(Comparator<T>) {static} -binaryInsertionSort(T[], int, int, int, Comparator<?>): void {static} -countRunAndMakeAscending(T[], int, int, Comparator<T>): int {static} -getMinRunSize(int): int {static} -leftGallopSearch(T[], T, int, int, int, Comparator<?>): int {static} -reverseSlice(Object[], int, int): void {static} -rightGallopSearch(T[], T, int, int, int, Comparator<?>): int -ensureMergeBufferCapacity(int): void -mergeAdjacentRuns(): void -mergeAllRuns(): void -mergeAtIndex(int): void -mergeHighRuns(int, int, int, int): void -mergeLowRuns(int, int, int, int): void -pushRun(int, int): void -setUnorderedArray(T[], int): void +sort(Array<T>): void } @enduml
f917c2c696528e642836bcbdbe56bf129472c968
eca69cb6d5116f722816db8d50ed663afe5cd88b
/src/main/java/com/mpoom/designpattern/creational/singleton/example1/singleton-load-balancer.puml
e37d0a5d5f3bc6cf8630558198ce7838879e2bef
[]
no_license
flyfrank/design-pattern
a21d7d23d02582397f9abe6f34dc298a95490721
6ede240ebecf259abf1fad8987e2a9094d5835d8
refs/heads/main
2023-01-11T18:30:51.829851
2020-11-08T13:44:40
2020-11-08T13:44:40
303,077,396
0
0
null
null
null
null
UTF-8
PlantUML
false
false
223
puml
@startuml class LoadBalancer { - LoadBalancer instance - List serverList - LoadBalancer() + LoadBalancer getLoadBalancer() + void addServer(String server) + void removeServer(String server) + String getServer() } @enduml
e2d5d214d3919b5b7b4d0f05165c0f7024c3166d
42e57a58fc95226a7ec40bca58c351092f126102
/kapitler/media/uml-class-journalpost.iuml
ca451a67e6b38c1617b59d991281fedf1dc96b4b
[]
no_license
tsodring/noark5-tjenestegrensesnitt-standard
8d3b31fe83203255ae8361e639f99209974c3ece
df354ac231091e63bde3123f2c779009009b7e80
refs/heads/master
2023-01-22T01:33:20.794431
2019-07-02T12:40:47
2019-07-02T12:40:47
194,827,953
0
0
null
2019-07-02T09:03:29
2019-07-02T09:03:28
null
UTF-8
PlantUML
false
false
642
iuml
@startuml class Sakarkiv.Journalpost <Registrering> { +journalaar : integer [0..1] +journalsekvensnummer : integer [0..1] +journalpostnummer : integer +journalposttype : Journalposttype +journalstatus : Journalstatus +journaldato : date +dokumentetsDato : date [0..1] +mottattDato : datetime [0..1] +sendtDato : date [0..1] +forfallsdato : date [0..1] +offentlighetsvurdertDato : date [0..1] +antallVedlegg : integer [0..1] +utlaantDato : date [0..1] +utlaantTil : string [0..1] +referanseUtlaantTil : SystemID [0..1] +journalenhet : string [0..1] +elektroniskSignatur : ElektroniskSignatur [0..1] } @enduml
09a78dcadff4207c65205ac1c551225731c1dab4
bd7eaf159cdd04cf163dda5be1d415fa17344a5e
/doc/classes.plantuml
6224b8e2b95de82e36840fe433dca4018e577404
[]
no_license
the-old-dev/google-oauth-js
71161e76d4971a19df04c5faf6132ed0cbbd7947
698377e67ef427c58a974e55e668a60b1d9b1f46
refs/heads/master
2022-11-15T08:13:46.274388
2020-07-08T19:02:43
2020-07-08T19:02:43
278,171,676
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,194
plantuml
@startuml class Authorization<<JSON>> { - state - access_token - token_type - expires_in - expires_at - scope - authuser - prompt - client_id } class OAuthAbstractHandler { - next + add(next):OAuthAbstractHandler + handle(context) } class OAuthFlowtHandler class OAuthSigninHandler class OAuthResponseHandler class OAuthRedirectHandler class OAuthResultHandler class OAuthError class OAuthErrorHandler class OAuthContext{ - clientId - scope - ... } class OAuthContextFactory { + createLoginContext() + createLoginResponseContext() } OAuthAbstractHandler <-- OAuthFlowtHandler OAuthAbstractHandler <-- OAuthSigninHandler OAuthAbstractHandler <-- OAuthResponseHandler OAuthAbstractHandler <-- OAuthRedirectHandler OAuthAbstractHandler <-- OAuthResultHandler OAuthAbstractHandler <-- OAuthErrorHandler OAuthAbstractHandler .up.> OAuthContext:use OAuthContext *-up-> Authorization: authorization OAuthContext *-right-> OAuthError:error OAuthContext *-down-> OAuthAbstractHandler: errorChain OAuthContext *-down-> OAuthAbstractHandler: startChain OAuthContext *-down-> OAuthAbstractHandler: flowChain OAuthContextFactory .right.> OAuthContext: create @enduml
cf632873839299eb6a0f54da93553485af7267b3
23e5167af30c0d07af0f945a2e346c3c90fd04fa
/lr31.plantuml
507dff7fb8dde0c33f169c7c913c2ce9462ef9d6
[]
no_license
tagreff/java_labs
10cab72cdf2dc09acfa64e6b6af1ebce3717f749
89b0dc8a64ee1475332e4445f2b247c701e38ba2
refs/heads/master
2023-04-25T05:17:25.491350
2021-05-12T15:21:14
2021-05-12T15:21:14
366,760,470
0
0
null
null
null
null
UTF-8
PlantUML
false
false
560
plantuml
@startuml title __LR31's Class Diagram__\n namespace com.tagreff.lab27 { class com.tagreff.lab27.Main { } } namespace com.tagreff.lab31 { class com.tagreff.lab31.ImageDownloader { } } namespace com.tagreff.lab31 { class com.tagreff.lab31.Main { } } com.tagreff.lab31.ImageDownloader .up.|> java.lang.Runnable right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
1f7702c69e67fa56cf02736e576398b05582c0f9
271f0f3e3b3ea50976d5b48135549f5512360d1c
/app/src/main/java/keijumt/design_pattern/pattern/factoryMethod/factoryMethod.puml
02af8cdf1cdaf19fa9b408d9fc9aeb46021300ab
[]
no_license
keijumt/design-pattern
cffea9727fa903ac3e4d42842e4ed34f6ec2e3c1
ec811a9ea941ec442b20b81fd04a536082eab2bf
refs/heads/master
2020-03-23T14:45:58.234219
2018-07-30T13:58:59
2018-07-30T13:58:59
141,697,922
1
0
null
null
null
null
UTF-8
PlantUML
false
false
354
puml
@startuml interface Product{ + method() } abstract Creator{ + createProduct(): Product + create() = createProduct() } class ConcreteProduct{ + method() } class ConcreteCreator{ + createProduct() = ConcreteProduct() } Product <|.. ConcreteProduct Creator <|.. ConcreteCreator ConcreteCreator --> "create" ConcreteProduct @enduml
d85764b018f2fd2d7d5164e570ad04e0873cfd61
5124b2dbc6276b681910d5584179a02ddc345669
/documentation/uml/class/RoomListModel.puml
b4368ee14ed0cb019d67d8653f50db1b6489e5f6
[]
no_license
Dedda/paintball
258257ce2b0b6160abe4a9dbbbf7c7a658416d5b
fb18cf11e2fc3f7eca7e0d26a2847743b560dc2f
refs/heads/master
2020-12-30T09:58:02.507682
2015-06-16T17:22:59
2015-06-16T17:22:59
30,232,508
1
1
null
null
null
null
UTF-8
PlantUML
false
false
300
puml
@startuml class hotel.gui.model.RoomListModel { - room : List<Room> + getRooms() : List<Room> + setRooms(List<Room>) : void + getRoomInLine(int) : Room + getSize() : int + getElementAt(int) : String } javax.swing.AbstractListModel <|-- hotel.gui.model.RoomListModel @enduml
3ba344cdf1312143c8f3627a391e371eac0c330b
c5f6be1c13ab1d0c99b597130443273e13bc06e7
/screenshot/uml/properties_structure.puml
0ba97fe25ab38ba6d1510ac11cd8c52bb62bdbbc
[]
no_license
chenzhe/BlogSource
e82a0648b6addebbe0ab6f4da3ae8c1f03e42852
284bd5e1131b98923076c88f356831623e315d94
refs/heads/master
2021-02-06T10:16:36.754496
2018-06-07T08:09:10
2018-06-07T08:09:10
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
167
puml
@startuml class Properties{ } class HashTable{ } abstract Dictionary interface Map Dictionary <|- HashTable Map <|.. HashTable HashTable <|- Properties @enduml
c646cf858892cbf5201b2a2c2321b2fbd0e9c661
45cd232c711bbca9b0da073b6b8f6e82fea0027c
/flowSandbox/doc/plantuml/plugin/plugin_class.puml
c59908ac40c39d1c779046ec1c33d32709ff4ecf
[]
no_license
xiahongjin/FlowSandbox
11c1e38811353c6a98dfb07d91ced71fb476678c
1fdab934337e11b09aff95f5c3c8996737803125
refs/heads/main
2023-08-11T20:59:46.420707
2021-09-22T08:15:06
2021-09-22T08:15:06
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
352
puml
@startuml plugin_class scale 2 class BasePlugin { Runtime runtime {abstract} void register_event() {abstract} void run() } class BaseHotkeyPlugin{ {static} void is_shortcut_valid() } class TuiaAdCap{ } class HotkeyScreenCap{ } BasePlugin <|-- BaseHotkeyPlugin BaseHotkeyPlugin <|-- HotkeyScreenCap BasePlugin <|-- TuiaAdCap @enduml
2dfe510abb7af162a17f20367eac0550de51b514
9623791303908fef9f52edc019691abebad9e719
/src/cn/shui/learning_plan/algorithms/fifth_day/fifth_day.plantuml
2bae27a64741eef792d846f94df6cf82d1ed9c5c
[]
no_license
shuile/LeetCode
8b816b84071a5338db1161ac541437564574f96a
4c12a838a0a895f8efcfbac09e1392c510595535
refs/heads/master
2023-08-17T04:53:37.617226
2023-08-15T16:18:46
2023-08-15T16:18:46
146,776,927
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,059
plantuml
@startuml title __FIFTH_DAY's Class Diagram__\n namespace cn.shui.learning_plan.algorithms.fifth_day { class cn.shui.learning_plan.algorithms.fifth_day.L19 { + removeNthFromEnd1() + removeNthFromEnd2() + removeNthFromEnd4() - getLength() - removeNthFromEnd3() } } namespace cn.shui.learning_plan.algorithms.fifth_day { class cn.shui.learning_plan.algorithms.fifth_day.L876 { + middleMode3() + middleNode1() + middleNode2() } } namespace cn.shui.learning_plan.algorithms.fifth_day { class cn.shui.learning_plan.algorithms.fifth_day.ListNode { ~ val : int ~ ListNode() ~ ListNode() ~ ListNode() } } cn.shui.learning_plan.algorithms.fifth_day.ListNode o-- cn.shui.learning_plan.algorithms.fifth_day.ListNode : next 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
0da60abedfd325e78f6622c0e66897eb12aaaaa1
5b16802b86bee3d4e0e2c92e83b23ea42fdd34d4
/questionnaire_redesign.puml
24523c1b493c4db7982e16149ef9e4fcc86ef2b4
[]
no_license
tanifort/redesign_questionnaire_designer_v2
c2c70a74c9e308fedb51d59deb339e8289ba07de
ee5cff9b78d12890817569cfa522b7f86a969869
refs/heads/master
2023-06-26T09:40:18.262521
2021-07-28T13:11:02
2021-07-28T13:11:02
390,355,225
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,147
puml
@startuml left to right direction enum question_group { basis, imkerei, import pflanzenbau } enum question_type { inspection business } enum element_type { single_line_input multi_text_input date_time_input number_input readonly checkbox option rich_text e_signature_input upload } enum answer_type { none radio multi-select dropdown } abstract class Question{ +id: uuid +version: string +type:question_type +group: question_group +text: string +isRequired:boolean } class AnswerContainer { id: uuid colCount: integer remark: string type: answer_type } class AnswerElement { id: uuid title: string type:element_type variable_binding : string } class InspectionQuestion { } InspectionQuestion ..> Question BusinessQuestion ..> Question InspectionQuestion --+ AnswerContainer BusinessQuestion --{ AnswerContainer AnswerContainer --{ AnswerElement @enduml
c4b888431bccc7096e8812a9be36e8d9bb6f8533
644b7bb773b84596a2de4d31a0603284d9562e56
/web3function/file/Year.iuml
f96e928a2e1a77c0c69df3fae4b3bf6ac2249c6d
[]
no_license
M9k/Marvin-Uml
e62d17245cf493d53f0b80f633a47be8ec44569e
0fe9bc36f947535ae4397181ccf8c85291244a87
refs/heads/master
2021-04-15T17:44:22.461549
2018-05-10T07:52:19
2018-05-10T07:52:19
126,618,685
0
0
null
null
null
null
UTF-8
PlantUML
false
false
300
iuml
@startuml skinparam classAttributeIconSize 0 class Year { + getCourseNumber(contract: address): number + getCourseContractAt(contract: address, _index: number): address + getSolarYear(contract: address): number + addNewCourse(contract: address, _name:number, _creditsForGraduation: number) } @enduml
99a68baea32d7d320f28b9d13636778a572359fa
e7b5da6e0b837e56c70cfc3a8884932e2d9b9cfe
/docs/Solution/Model/Logical.puml
3371b91fa00de26601a497908668c26551ae2e51
[ "MIT" ]
permissive
madajaju/ailtire
0e15941fb821a205aca2956b5e0d233f09000310
e85b256b7ea0ba30336dfe8415fc875de53be8b7
refs/heads/master
2023-08-31T05:07:09.454887
2023-07-19T17:19:53
2023-07-19T17:19:53
246,922,496
1
0
null
2023-08-09T04:58:25
2020-03-12T20:13:09
JavaScript
UTF-8
PlantUML
false
false
618
puml
@startuml class Model { name : string description: string } class Attribute { name: string type: string description: string } class Association { type: string cardinality : string composition : boolean owner: boolean via: string } class Action { name: string inputs: Map fn: function } class StateNet { states: State transitions: Transition events: Event } class View { object2D : function object3D : function } Model "0" *-> "n" Association Model "0" *--> "n" Attribute Action "n" <-* "0" Model StateNet <--* Model Model *---> View @enduml
53a67a68ae248aea9b2ce0d3ad5a0a522e3a84c9
d229656e4646a66bd1243ffd741a082bc9ace894
/docs/class-spec.puml
05999b7aee6bb668db1bc563e2d045438c27808f
[ "MIT" ]
permissive
genies-inc/messenger-framework
d5f7747ef6313dd59cc2b6b4c5963b1435f88249
68cc8b7d3a026ee9ca1523e5cdf3543867645401
refs/heads/master
2022-11-18T08:02:41.886599
2020-07-22T02:09:33
2020-07-22T02:09:33
91,519,515
2
0
null
null
null
null
UTF-8
PlantUML
false
false
3,566
puml
@startuml namespace MessengerFramework { class Event { + stdClass rawData + String|null replyToken + String|null userId + String type + Array|null data + Array|null origin } note top of Event Event#typeについて Message.TextとMessage.File、Message.Location、Postback、Unsupportedの5種類 Event#dataについて text、postback、locationのキーがイベントに合わせて作られる end note class MessengerBot { + FacebookBot|LineBot core + [Event:stdObject|null] getEvents() + addText(String message) + addTemplate(Array [String title, String description, String imageUrl, Array buttons]) + addImage(String fileUrl, String previewUrl) + addVideo(String fileUrl, String previewUrl) + addAudio(String fileUrl, Int duration) + addButtons(String description, Array buttons) + addConfirm(String text, Array buttons) + addRawMessage(Array message) + bool push(String recipient) + bool reply(String replyToken) + stdClass getProfile(String userId) + [String:BinaryString] getFilesIn(Event message) + String getPlatform() + array getMessagePayload() + clearMessages() + string sendRawData(string $body) } note top of MessengerBot リクエストの検証処理(FacebookやLineからのリクエストかどうか)はgetEvents()内で行う end note class FacebookBot { + bool replyMessage(String to) + bool pushMessage(String to) + testSignature(String requestBody, String signature) + parseEvent(String requestBody) + stdClass getProfile(String userId) + [String:BinaryString] getFiles(Event event) + addText(String message) + addGeneric([String:String|Array]) + addButton(String text, Array replies) + addImage(String url) + addVideo(String url) + addAudio(String url) + addRawMessage(Array message) + array getMessagePayloads() + clearMessages() + string sendRawData(string $body) } class LineBot { + bool replyMessage(String to) + bool pushMessage(String to) + testSignature(String requestBody, String signature) + parseEvent(String requestBody) + stdClass getProfile(String userId) + [String:BinaryString] getFiles(Event event) + addText(String url) + addCarousel([String:String|Array], String altText) + addButtons(String description, Array buttons, String|null title, Strin|null thumbnailUrl, String altText) + addConfirm(String text, Array buttons, String altText) + addImage(String url, String previewUrl) + addVideo(String url, String previewUrl) + addAudio(String url, Int duration) + addRawMessage(Array message) + array getMessagePayload() + clearMessages() + string sendRawData(string $body) } class Curl { + String post(String url, Array headers, Array bodyArray, Bool isJSON) + String get(String url, Array headers, Array aueryArray) } class Config { + String getPlatform() + String getFacebookAppSecret() + String getFacebookAccessToken() + String getLineChannelSecret() + String getLineAccessToken() } } ' MessengerFramework内の関連 MessengerFramework.MessengerBot .d.> MessengerFramework.FacebookBot MessengerFramework.MessengerBot .d.> MessengerFramework.LineBot MessengerFramework.MessengerBot .l.> MessengerFramework.Curl MessengerFramework.MessengerBot .l.> MessengerFramework.Event MessengerFramework.FacebookBot *..> MessengerFramework.Curl MessengerFramework.LineBot *..> MessengerFramework.Curl @enduml
621f5c004684759519dffae65ba3de872f4b4ba4
9f816b59dc2fa8215e38fd13e7e74a6ef9b9b812
/out/production/chess/joueurs/joueurs.plantuml
1a0f36e936aea4fa035584afd1aa57f2c7ecb48d
[]
no_license
SofianZoo/chess
4337569b6ff45ff4f7e0962e8d1cf424765a4c71
bb3204f1e56470754d0bc16a2de0e2ec49e5e598
refs/heads/master
2023-05-04T07:19:41.469582
2021-05-25T18:16:21
2021-05-25T18:16:21
null
0
0
null
null
null
null
ISO-8859-2
PlantUML
false
false
1,113
plantuml
@startuml title __JOUEURS's Class Diagram__\n namespace joueurs { class joueurs.Bot { + Bot() + abandonne() + estHumain() + joueUnTour() } } namespace joueurs { class joueurs.Humain { - abandonne : boolean + Humain() + abandonne() + estHumain() + joueUnTour() - abandon() - propositionNulle() } } namespace joueurs { abstract class joueurs.Joueur { - echecEtMat : boolean - nom : String - pieces : ArrayList<IPiece> + aPerdu() + déplacer() + getCouleur() + getNom() + getPieces() + isChessMat() + leRoi() # Joueur() } } joueurs.Bot -up-|> joueurs.Joueur joueurs.Humain -up-|> joueurs.Joueur joueurs.Joueur .up.|> echiquier.IJoueur joueurs.Joueur o-- piece.CouleurPiece : couleur 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
d0d8fd484e53e2cc29cdabf0cce4dd2bfa2564f6
b6428ba4ac62d0f4b668f0d43c2fbdf73f973506
/dotnet-security/dotnet-security-45-inherit.puml
1438581ab3927cd082d5d962d9b33c7992b3fc98
[]
no_license
mrwizard82d1/doctrinae-maea
d276dfbe57b0ce30077b9ddc84383cec215d4f9b
175f5cb8dade35931bdae3fc9fdd21ad2f2d6220
refs/heads/master
2022-10-14T17:25:39.206522
2022-10-11T21:16:22
2022-10-11T21:16:22
49,797,712
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,023
puml
@startuml title .NET Security Classes (>= 4.5) interface IIdentity { string AuthenticationType { get; } bool IsAuthenticated { get; } string Name { get; } } interface IPrincipal { IIdentity Identity { get; } bool IsInRole(string) { get; } } class ClaimsIdentity { IEnumerable<Claim> Claims { get; } IEnumerable<Claim> FindAll() Claim FindFirst() bool HasClaim() } class ClaimsPrincipal { ReadOnlyCollection<ClaimsIdentity> Identities { get; } IEnumerable<Claim> FindAll() Claim FindFirst() bool HasClaim() } note as N1 The preferred methods for dealing with Claims are available on ClaimsIdentity and on ClaimsPrincipal end note N1 .. ClaimsPrincipal N1 .. ClaimsIdentity IIdentity <|-- ClaimsIdentity IPrincipal <|-- ClaimsPrincipal ClaimsIdentity <|-- WindowsIdentity ClaimsIdentity <|-- GenericIdentity ClaimsIdentity <|-- FormsIdentity ClaimsPrincipal <|-- WindowsPrincipal ClaimsPrincipal <|-- GenericPrincipal ClaimsPrincipal <|-- RolePrincipal @enduml
736ee99ad4bb0dfc63be1fa2d802e10b64f15a7a
32261875e6605c0e435f3224fdd3ee95607990a2
/doc/class.plantuml
fbddd668679a7b2582621e080a8e040b1fef5902
[ "BSL-1.0" ]
permissive
portown/same
b5b39d6be0fad912983addc1121dbc5feae88ed3
f745313f58942e875dd2ac65bb73435c6346f6ea
refs/heads/master
2021-06-03T19:57:42.514275
2015-04-25T06:59:35
2015-04-25T06:59:35
7,150,322
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,541
plantuml
@startuml class.png abstract class CGAME { #m_hBm : HBITMAP #m_hDC : HDC #m_Level : unsigned char +{abstract} Draw( hDC : HDC ) : void +{abstract} Select( point : POINT ) : void +{abstract} Click() : unsigned char +{abstract} KeyDown( wParam : WPARAM ) : unsigned char #LoadStatus() : void #SaveStatus() : void } class CSAME { -m_Played : vector<unsigned char> -m_bx : unsigned short -m_by : unsigned short -m_Num : unsigned short -m_Tries : unsigned short -m_Width : unsigned short -m_Height : unsigned short -m_Area : unsigned char* -m_Pieces : unsigned char -m_Groups : unsigned char -m_Status : unsigned char -m_HighScore : unsigned long -m_Score : unsigned long -m_GameNum : unsigned long -m_rcArea : RECT -m_bDraw : bool -m_bReGame : bool -m_cMaskNum : char +Draw( hDC : HDC ) : void +Select( pt : POINT ) : void +Click() : unsigned char +KeyDown( key : WPARAM ) : unsigned char -Unselect() : void -Explore( pos : unsigned short, piece : unsigned char ) : void -Inexplore( pos : unsigned short ) : void -Exexplore( pos : unsigned short ) : void -Check() : void -VShift( pos : unsigned short ) : void -HShift( pos : unsigned short ) : void -EndCheck() : unsigned char -CntGroups() : bool -AddScore( add : unsigned long ) : void -LoadStatus() : void -SaveStatus() : void -SaveReplay( num : char ) : void } class CMENU { -m_Width : unsigned short -m_Height : unsigned short -m_Sel : unsigned char -m_MaskNum : char -m_RepNum : char -m_hMenuBm : HBITMAP -m_rcMenu : RECT -m_rcLeft : RECT -m_rcRight : RECT -m_hMenuDC : HDC +Draw( hDC : HDC ) : void +Select( pt : POINT ) : void +Click() : unsigned char +KeyDown( key : WPARAM ) : unsigned char } class CREPLAY { -m_Played : vector<unsigned char> -m_by : unsigned short m_bx, -m_Num : unsigned short -m_Tries : unsigned short -m_Width : unsigned short -m_Height : unsigned short -*m_Area : unsigned char -m_Pieces : unsigned char -m_Groups : unsigned char -m_Status : unsigned char -m_Score : unsigned long -m_GameNum : unsigned long -m_hCurBm : HBITMAP -m_rcArea : RECT -m_hWnd : HWND -m_hCurDC : HDC -m_cRepNum : char -m_bErase : bool +Draw( hDC : HDC ) : void +Select( pt : POINT ) : void +Click() : unsigned char +KeyDown( key : WPARAM ) : unsigned char +Replay() : void -Onselect( pos : unsigned short ) : void -Unselect() : void -Explore( pos : unsigned short, piece : unsigned char ) : void -Inexplore( pos : unsigned short ) : void -Exexplore( pos : unsigned short ) : void -Onclick() : unsigned char -Check() : void -VShift( pos : unsigned short ) : void -HShift( pos : unsigned short ) : void -EndCheck() : unsigned char -CntGroups() : bool -AddScore( add : unsigned long ) : void -LoadReplay( num : char ) : bool -SaveReplay( num : char ) : void } CGAME <|-- CSAME CGAME <|-- CMENU CGAME <|-- CREPLAY enum CLICKRESULT { CR_NOSTATUS CR_ENDGAME CR_TITLEMENU CR_BEGINNORMAL CR_BEGINMASK1 CR_BEGINMASK2 CR_BEGINMASK3 CR_BEGINMASK4 CR_CLEAR CR_ALLCLEAR CR_REPLAY CR_REPLAY0 CR_REPLAY1 CR_REPLAY2 CR_REPLAY3 CR_REPLAY4 CR_REPLAY5 CR_REPLAY6 CR_REPLAY7 CR_REPLAY8 CR_REPLAY9 CR_CRITICALERROR } enum GAMESTATUS { GS_NOSTATUS GS_TITLEMENU GS_PLAYING GS_CLEAR GS_ALLCLEAR GS_NOREPLAY GS_CRITICALERROR } CSAME ..> CLICKRESULT CMENU ..> CLICKRESULT CREPLAY ..> CLICKRESULT CSAME ..> GAMESTATUS CREPLAY ..> GAMESTATUS @enduml
d9d6b1c1bd0d1dc2832b8346d12732e865b3007d
68d654bc20875bcefa9ffe13f9ecbc709a2af141
/sample.puml
f61e81ea31cfe132b33dece4a2942502c636fa46
[ "LicenseRef-scancode-public-domain" ]
permissive
m-doi/plantuml2oracle
f8cdc352efefdbe5f6b7902aac768c117480ac07
a1885f3f46f9fe7ff99bea624488ee556a1ded3c
refs/heads/master
2021-01-10T07:42:09.558390
2016-03-23T02:50:41
2016-03-23T02:50:41
54,470,908
2
0
null
null
null
null
UTF-8
PlantUML
false
false
534
puml
@starttmeta 社員|employees 部門|departments 所属|belonging @endtmeta @startcmeta 社員番号|e_id varchar(8) not null 社員名|e_name varchar(24) not null 部門番号|d_id varchar(3) not null 部門名|d_name varchar(12) not null @endcmeta @startuml hide circle class 社員 { == #社員番号 社員名 } class 部門 { == #部門番号 部門名 } class 所属 { == #社員番号 #部門番号 } @enduml
7e6799afb5a6cfc29e4fb82542560ff3f1b638ba
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Actions/TimelineActions.puml
3b7848d48fd4a0bb3fe0e11f9301fe5d18a500a3
[]
no_license
TakanoVineYard/AMHH
215a7c47049df08c5635b501e74f85137b9e985b
68887a313587a2934fb4ceb2994cbc2a2191d6a3
refs/heads/master
2023-01-13T02:08:02.787083
2020-11-17T14:51:57
2020-11-17T14:51:57
303,631,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
5,958
puml
@startuml abstract class TimelineAction { + {abstract} Execute(state:WindowState) : bool + <<virtual>> GetDisplayState(state:WindowState) : MenuActionDisplayState + <<virtual>> IsChecked(state:WindowState) : bool CanExecute(state:WindowState) : bool + {static} Invoke(state:WindowState) : void + {static} GetMenuEntries(actions:IEnumerable<TimelineAction>, mousePos:Vector2?, items:List<MenuActionItem>) : void + {static} HandleShortcut(state:WindowState, evt:Event) : bool } abstract class MarkerHeaderAction { } class CopyAction { + {static} Do(state:WindowState) : bool + <<override>> GetDisplayState(state:WindowState) : MenuActionDisplayState + <<override>> Execute(state:WindowState) : bool } class PasteAction { + {static} Do(state:WindowState) : bool + <<override>> GetDisplayState(state:WindowState) : MenuActionDisplayState + <<override>> Execute(state:WindowState) : bool CanPaste(state:WindowState) : bool {static} CanPasteItems(itemsGroups:ICollection<ItemsPerTrack>, state:WindowState, mousePosition:Vector2?) : bool {static} PasteItems(state:WindowState, mousePosition:Vector2?) : void {static} FindSuitableParentForSingleTrackPasteWithoutMouse(itemsGroup:ItemsPerTrack) : TrackAsset {static} IsTrackValidForItems(track:TrackAsset, items:IEnumerable<ITimelineItem>) : bool {static} GetPickedTrack() : TrackAsset {static} PasteTracks(state:WindowState) : void } class DuplicateAction { + <<override>> Execute(state:WindowState) : bool {static} CalculateDuplicateTime(duplicatedItems:IEnumerable<ItemsPerTrack>, gapBetweenItems:Func<ITimelineItem, ITimelineItem, double>) : double } class DeleteAction { + <<override>> GetDisplayState(state:WindowState) : MenuActionDisplayState {static} CanDelete(state:WindowState) : bool + <<override>> Execute(state:WindowState) : bool } class MatchContent { + <<override>> GetDisplayState(state:WindowState) : MenuActionDisplayState + <<override>> Execute(state:WindowState) : bool } class PlayTimelineAction { + <<override>> Execute(state:WindowState) : bool } class SelectAllAction { + <<override>> Execute(state:WindowState) : bool } class PreviousFrameAction { + <<override>> Execute(state:WindowState) : bool } class NextFrameAction { + <<override>> Execute(state:WindowState) : bool } class FrameAllAction { + <<override>> Execute(state:WindowState) : bool } class FrameSelectedAction { + {static} FrameRange(startTime:float, endTime:float, state:WindowState) : void + <<override>> Execute(state:WindowState) : bool + {static} FrameInlineCurves(curveEditorOwner:IClipCurveEditorOwner, state:WindowState, selectionOnly:bool) : void } class PrevKeyAction { + <<override>> Execute(state:WindowState) : bool } class NextKeyAction { + <<override>> Execute(state:WindowState) : bool } class GotoStartAction { + <<override>> Execute(state:WindowState) : bool } class GotoEndAction { + <<override>> Execute(state:WindowState) : bool } class ZoomIn { + <<override>> Execute(state:WindowState) : bool } class ZoomOut { + <<override>> Execute(state:WindowState) : bool } class CollapseGroup { + <<override>> Execute(state:WindowState) : bool } class UnCollapseGroup { + <<override>> Execute(state:WindowState) : bool } class SelectLeftClip { + <<override>> Execute(state:WindowState) : bool } class SelectRightClip { + <<override>> Execute(state:WindowState) : bool } class SelectUpClip { + <<override>> Execute(state:WindowState) : bool } class SelectUpTrack { + <<override>> Execute(state:WindowState) : bool } class SelectDownClip { + <<override>> Execute(state:WindowState) : bool } class SelectDownTrack { + <<override>> Execute(state:WindowState) : bool } class MultiselectLeftClip { + <<override>> Execute(state:WindowState) : bool } class MultiselectRightClip { + <<override>> Execute(state:WindowState) : bool } class MultiselectUpTrack { + <<override>> Execute(state:WindowState) : bool } class MultiselectDownTrack { + <<override>> Execute(state:WindowState) : bool } class ToggleClipTrackArea { + <<override>> Execute(state:WindowState) : bool } class ToggleMuteMarkersOnTimeline { + <<override>> IsChecked(state:WindowState) : bool + <<override>> Execute(state:WindowState) : bool {static} ToggleMute(state:WindowState) : void {static} IsMarkerTrackValid(state:WindowState) : bool } class ToggleShowMarkersOnTimeline { + <<override>> IsChecked(state:WindowState) : bool + <<override>> Execute(state:WindowState) : bool {static} ToggleShow(state:WindowState) : void } class "KeyValuePair`2"<T1,T2> { } MenuItemActionBase <|-- TimelineAction TimelineAction <|-- MarkerHeaderAction TimelineAction <|-- CopyAction TimelineAction <|-- PasteAction TimelineAction <|-- DuplicateAction TimelineAction <|-- DeleteAction TimelineAction <|-- MatchContent TimelineAction <|-- PlayTimelineAction TimelineAction <|-- SelectAllAction TimelineAction <|-- PreviousFrameAction TimelineAction <|-- NextFrameAction TimelineAction <|-- FrameAllAction TimelineAction <|-- FrameSelectedAction TimelineAction <|-- PrevKeyAction TimelineAction <|-- NextKeyAction TimelineAction <|-- GotoStartAction TimelineAction <|-- GotoEndAction TimelineAction <|-- ZoomIn TimelineAction <|-- ZoomOut TimelineAction <|-- CollapseGroup TimelineAction <|-- UnCollapseGroup TimelineAction <|-- SelectLeftClip TimelineAction <|-- SelectRightClip TimelineAction <|-- SelectUpClip TimelineAction <|-- SelectUpTrack TimelineAction <|-- SelectDownClip TimelineAction <|-- SelectDownTrack TimelineAction <|-- MultiselectLeftClip TimelineAction <|-- MultiselectRightClip TimelineAction <|-- MultiselectUpTrack TimelineAction <|-- MultiselectDownTrack TimelineAction <|-- ToggleClipTrackArea MarkerHeaderAction <|-- ToggleMuteMarkersOnTimeline MarkerHeaderAction <|-- ToggleShowMarkersOnTimeline @enduml
fb5b01f6f339bd5e6ce854ebebd176766c302bb6
8c59fbc94a2ba7fa9a12c10991fe334cda0df128
/metrics/ci_integrations/docs/features/supported_storage_version/diagrams/supported_storage_version_class_diagram.puml
56bffa66a05e136d976225c353af5153fa14666f
[ "Apache-2.0" ]
permissive
solid-vovabeloded/flank-dashboard
7e952fa1399585d3f15cae2ed2cab435fb82df3f
15dae0c40823cc12886a1bb0c087442c0697ac89
refs/heads/master
2023-07-11T19:54:58.430004
2021-08-06T10:29:26
2021-08-06T10:29:26
389,593,827
0
0
Apache-2.0
2021-07-26T10:33:52
2021-07-26T10:25:59
null
UTF-8
PlantUML
false
false
3,127
puml
@startuml package core { package util { class ApplicationMetadata { + supportedStorageVersion: bool } } package domain.entities { class StorageMetadata { + isUpdating: bool + version: String } } package data.model { class StorageMetadataData { + isUpdating: bool + version: String + StorageMetadataData.fromJson(json: Map<String, dynamic>) : StorageMetadataData + toJson() : Map<String, dynamic> } interface DataModel { + toJson() : Map<String, dynamic> } } } package cli.command { class SyncCommand { + run(): Future<void> + createCiIntegration(): CiIntegration + sync(sourceClient: SourceClient, destinationClient: DestinationClient, config: SyncConfig): Future<void> } } package integration { package interface.destination.client { interface DestinationClient { + fetchMetadata() : Future<InteractionResult<StorageMetadata>> } } package ci { class CiIntegration { + stages: List<SyncStage> + sync(config: SyncConfig) : Future<InteractionResult> } package config.model { class SyncConfig { + supportedStorageVersion: String } } package sync_stage { package factory { class SyncStagesFactory { + create(sourceClient: SourceClient, destinationClient: destinationClient): List<SyncStage> } } package storage_version { class CompatibilitySyncStage { + sourceClient: SourceClient + destinationClient: DestinationClient + call(SyncConfig config): Future<InteractionResult> } } interface SyncStage { + sourceClient: SourceClient + destinationClient: DestinationClient + call(SyncConfig config): Future<InteractionResult> } } } } package destination.cool.adapter { class CoolDestinationClientAdapter { + fetchMetadata() : Future<InteractionResult<StorageMetadata>> } } SyncCommand --> SyncConfig : creates SyncCommand --> SyncStagesFactory : uses SyncCommand --> CiIntegration : creates SyncCommand --> ApplicationMetadata : uses CiIntegration --> CompatibilitySyncStage : uses CiIntegration --> SyncConfig : uses CompatibilitySyncStage ..|> SyncStage CompatibilitySyncStage --> StorageMetadata : uses CompatibilitySyncStage -left-> SyncConfig : uses CompatibilitySyncStage --> DestinationClient : uses StorageMetadataData --|> StorageMetadata StorageMetadataData ..|> DataModel CoolDestinationClientAdapter ..|> DestinationClient CoolDestinationClientAdapter --> StorageMetadataData : uses SyncStagesFactory --> CompatibilitySyncStage : creates SyncStagesFactory --> CoolDestinationClientAdapter : uses DestinationClient --> StorageMetadata : uses @enduml
2eae8c78e29ee1379728399d8791393d0fa2e9be
8e17abc319d4a773eeba8cd86ea3144f769272fa
/Diagrama de Classe.puml
c9937d7aa19098985250833fe735804fa233a01e
[]
no_license
denyssouza/Perguntas-e-Respostas
ddf2a9d225dac6e0b85565530cfe7b372cb8fb9a
39e784b4343be8c2af056a998e1fd5b8babe8f45
refs/heads/master
2020-03-17T22:12:04.064416
2018-08-01T18:44:13
2018-08-01T18:44:13
133,993,054
0
0
null
null
null
null
UTF-8
PlantUML
false
false
518
puml
@startuml Servidor <|--|> Cliente Servidor <|--|> BancoDePalavras Servidor <|--|> Players class Servidor{ Socket Nome Retornar Nome do Competidor 1() Encaminhar Nome do Competidor 2() Buscar Palavra() Encaminha Nome dos Competidores() } class Cliente{ Nome Retornar Nome do Competidor 2() } class BancoDePalavras{ Palavra Sortear Palavra() Retornar Palavra() } class Players { Competidor 1 Competidor 2 Nome dos Competidores Armazenar Competidor 1() Armazenar Competidor 2() Retornar Nome dos Players() } @enduml
fb90f4fee4b1ff0b9e4026ed086deec6d0a4e791
9623791303908fef9f52edc019691abebad9e719
/src/cn/shui/order/No1_50/No1_50.plantuml
81c82c0f196559d3c5a5d59ab5c8925a7350e955
[]
no_license
shuile/LeetCode
8b816b84071a5338db1161ac541437564574f96a
4c12a838a0a895f8efcfbac09e1392c510595535
refs/heads/master
2023-08-17T04:53:37.617226
2023-08-15T16:18:46
2023-08-15T16:18:46
146,776,927
0
0
null
null
null
null
UTF-8
PlantUML
false
false
462
plantuml
@startuml title __NO1_50's Class Diagram__\n namespace cn.shui.order { namespace No1_50 { class cn.shui.order.No1_50.PermutationsII { {static} + main() {static} - help() {static} - permuteUnique() } } } 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
3db515ae02210b137fb0f21dbcc4c5ba720e5397
a77b592e7fac226544675176bddb7cecb7ff16b7
/core/doc/MountSource.puml
8dc465ddee18a946ec2e16d935da8545c6fd232a
[ "MIT" ]
permissive
mxmlnkn/ratarmount
ee66448029487a939be7f28d9cc41487ab02aeb4
623e0e4a915c73c0dfd4875317cfef6b878e6140
refs/heads/master
2023-08-21T17:25:20.379680
2023-02-21T21:59:17
2023-05-20T17:14:32
171,697,459
427
33
MIT
2023-04-29T17:03:41
2019-02-20T15:23:31
Python
UTF-8
PlantUML
false
false
1,985
puml
@startuml ' bluegray cerulean-outline crt-amber materia-outline mimeograph cyborg !theme crt-amber '!pragma svek_trace on /' generate in your local folder two intermediate files: foo.dot : intermediate file in "dot" language provided to GraphViz foo.svg : intermediate result file which is going to be parsed by PlantUML to retrieve element positions. '/ 'skinparam backgroundColor #121212 skinparam backgroundColor #000000 /' Use the UML symbols +-#~ for visibility instead of PlantUML-specific icons '/ skinparam classAttributeIconSize 0 set namespaceSeparator :: hide empty hide empty members ' Only takes more space vertically, does not reduce width :/ 'left to right direction 'top to bottom direction skinparam linetype ortho 'skinparam linetype polyline /' "linetype ortho" looks the best imo, but it does not work at all with arrow labels as they are place too far away to be meaningful. Same bug applies to polyline. See: https://forum.plantuml.net/1608/is-it-possible-to-only-use-straight-lines-in-a-class-diagram https://crashedmind.github.io/PlantUMLHitchhikersGuide/layout/layout.html#linetype-polyline-ortho https://github.com/plantuml/plantuml/issues/149 '/ class StenciledFile class ProgressBar abstract class MountSource { +{abstract} listDir +{abstract} getFileInfo +{abstract} fileVersions +{abstract} open } class SQLiteIndexedTar SQLiteIndexedTar *-- StenciledFile SQLiteIndexedTar *-- ProgressBar class FolderMountSource class ZipMountSource class RarMountSource class UnionMountSource class FileVersionLayer MountSource <|-- SQLiteIndexedTar MountSource <|-- FolderMountSource MountSource <|-- ZipMountSource MountSource <|-- RarMountSource MountSource <|-- AutoMountLayer MountSource <|-- UnionMountSource MountSource <|-- FileVersionLayer class fuse.Operations class FuseMount FuseMount <|-- fuse.Operations FuseMount *-- AutoMountLayer FuseMount *-- UnionMountSource FuseMount *-- FileVersionLayer @enduml
1d2c325247e84e6fbfc7e501012ccff4f8019aa2
3dc069311b33f55c2d82b50e2e3e66c1e0b352f2
/class_diagrams.puml
e667f7d8fcf2c3d4eb1543a12cf123009a809942
[]
no_license
nlipsyc/shade_game
8fee26d067dc7af09f0daee5cb4f429331704f64
1f36c718844d52d6854fb6829039a322c849dfe3
refs/heads/master
2022-12-29T17:24:52.276704
2020-10-22T20:46:21
2020-10-22T20:46:21
249,270,959
2
0
null
null
null
null
UTF-8
PlantUML
false
false
1,324
puml
@startuml class GameParameters { Tuple[int, int] game_dimensions Int shade_size } class AlgorithmParameters { CellCalculator cell_calculator_class CursorInitializer cursor_initializer_class MoveProposer move_proposer_class } class AbstractAlgorithm { GameParameters game_params AlgorithmParameters algorithm_parameters Int seed Optional[str] seed List[???] claimable_cells Int claimable_cells_cursor MoveProposer move_proposer {abstract} Tuple[int, int] propose_move() } class ConstructedAlgorithm { Int seed Tuple[int, int] propose_move() } class CellCalculator { Tuple[int, int] game_dimensions Int shade_size {abstract} List[???] get_claimable_cells() } class CursorInitializer { List[???] claimable_cells {abstract} Int get_cursor_initial_index() } class MoveProposer { GameParameters game_params List[???] _claimable_cells Int _cursor_index {abstract} propose_move(game_params, cell) } AbstractAlgorithm o-- GameParameters AbstractAlgorithm o-- AlgorithmParameters ConstructedAlgorithm <|-- AbstractAlgorithm CellCalculator o.. GameParameters MoveProposer o.. GameParameters AlgorithmParameters <|-- CellCalculator AlgorithmParameters <|-- CursorInitializer AlgorithmParameters <|-- MoveProposer @enduml
396ec826cb1cec69ebffb571d1b40501dad80222
5a8fafc1af19d5eb6730c0da83db05e0db76d388
/preamble-class.puml
c4d7c9b771d62ee571c7ab4f81a6428fd5fa3188
[]
no_license
LuisFajardoF/Diagramas-PUML
d041fcc7be377b5692a864c726d3cdcb19f3be2b
4b886eefbd2207de708e056767a0a185851efc7f
refs/heads/master
2023-03-29T01:22:24.559466
2021-04-13T17:39:58
2021-04-13T17:39:58
340,369,399
0
0
null
null
null
null
UTF-8
PlantUML
false
false
302
puml
@startuml class Preamble << (S,PaleGreen) >> { + Preamble() + ~Preamble() + void add(unsigned int code) + string getCode() + unordered_map<unsigned int, string> code + vector<string> codes } enum CODES { Siunitx ToDoList Biblatex } Preamble *- CODES : use @enduml
0adc764a0841329241672208068f8e6b64edc361
e6a585dfa5292761773d2d523832eef2b49e8e9d
/docs/diagrams/LogicComponent.plantuml
b78d4bd01a19c0f3fdf755eb09acd93782c8ffd6
[]
no_license
AY2021S2-CS2113T-F08-3/tp
82d8b49f18290b6e0d37f1aaa77b711455ace50f
27db5d4a86be5478fc4e8258997fb8c83257cec6
refs/heads/master
2023-04-14T04:07:25.089995
2021-04-12T16:53:53
2021-04-12T16:53:53
344,644,739
0
4
null
2021-04-12T15:56:05
2021-03-05T00:12:02
Java
UTF-8
PlantUML
false
false
1,442
plantuml
@startuml LogicComponent hide circle !define LIGHTGREEN !includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml skinparam classAttributeIconSize 0 rectangle Logic #TECHNOLOGY{ class Parser class Commands } rectangle Model #Khaki { class RecommendationList class ReviewList } class Commands #PaleGreen { - boolean isReviewMode + reviewMode() + recommendationMode() + printHelp() + list() + sort() + view() + add() + edit() + done() + delete() + display() } class RecommendationList #Gold { - ui : Ui + recommendations : ArrayList<Recommendation> + addRecommendation() + listRecommendations() + editRecommendation() + deleteRecommendation() + convertRecommendation() } class ReviewList #Gold { - ui : Ui + reviews : ArrayList<Reviews> - displayStars : boolean + addReview() + sortReviews() + listReviews() + viewReview() + editReview() + deleteReview() + changeDisplay() } class Parser #PaleGreen { + determineCommand() } class Storage #PowderBlue { - ui : Ui + retrieveDataFile() : boolean + loadConnoisseurData() : ConnoisseurData + saveConnoisseurData() } Parser - Commands : deciphered commands > Commands -- Storage : store data > Commands -- ReviewList : deciphered arguments > Commands -- RecommendationList : deciphered arguments > @enduml
b75a62f8b253ba2ee30870f01480ac4fd460ed60
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestLaunchers/RemoteTestResultReciever.puml
1e8aef12dbc1fe6daad6c62e51aef998b5b860c8
[]
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
172
puml
@startuml class RemoteTestResultReciever { + RunStarted(messageEventArgs:MessageEventArgs) : void + RunFinished(messageEventArgs:MessageEventArgs) : void } @enduml
d1045f4d943bd69b2e6b3c16adb96e760ce8c8fe
e2012fd3240bab9a7d53d50d7398e34e8f14427e
/uml/class diagram/progetto-programmazione-ad-oggetti-java.plantuml
f539a046f5e02649766c6a0e616ec617a8b93b1b
[]
no_license
defo-cris/progetto-programmazione-ad-oggetti
1acf8d4fd4d9a754b509ee90d274dff206544b3e
9d775a75fbde1b43597b53e0e2c76c12c186cdaf
refs/heads/master
2020-06-11T20:41:12.993226
2019-07-19T16:35:55
2019-07-19T16:35:55
194,078,969
2
1
null
2019-07-07T07:30:10
2019-06-27T10:59:21
null
UTF-8
PlantUML
false
false
3,288
plantuml
@startuml title __PROGETTO's Class Diagram__\n class MavenWrapperDownloader { } namespace com.example.progetto { class com.example.progetto.ProgettoApplication { } } namespace com.example.progetto { namespace Spring { class com.example.progetto.Spring.DataCsvRow { } } } namespace com.example.progetto { namespace Spring { class com.example.progetto.Spring.DataCsvRowController { } } } namespace com.example.progetto { namespace Spring { class com.example.progetto.Spring.DataCsvRowServices { } } } namespace com.example.progetto { namespace Spring { class com.example.progetto.Spring.FilterParameter { } } } namespace com.example.progetto { namespace Spring { class com.example.progetto.Spring.NumberStats { } } } namespace com.example.progetto { namespace csvClasses { class com.example.progetto.csvClasses.DataCsv { } } } namespace com.example.progetto { namespace csvClasses { namespace csvRetrieve { class com.example.progetto.csvClasses.csvRetrieve.CsvSplitter { } } } } namespace com.example.progetto { namespace csvClasses { namespace csvRetrieve { class com.example.progetto.csvClasses.csvRetrieve.CsvValidator { } } } } namespace com.example.progetto { namespace csvClasses { namespace csvRetrieve { class com.example.progetto.csvClasses.csvRetrieve.GetCsvDataFromUrl { } } } } namespace com.example.progetto { namespace csvClasses { namespace csvRetrieve { class com.example.progetto.csvClasses.csvRetrieve.GetCsvUrlFromJsonUrl { } } } } namespace com.example.progetto { namespace csvClasses { namespace csvRetrieve { class com.example.progetto.csvClasses.csvRetrieve.ReadLineFromBufferedReader { } } } } namespace com.example.progetto { namespace csvClasses { namespace dataType { class com.example.progetto.csvClasses.dataType.Metadata { } } } } namespace com.example.progetto { namespace csvClasses { namespace dataType { class com.example.progetto.csvClasses.dataType.ObjArray { } } } } namespace com.example.progetto { namespace csvClasses { namespace dataType { class com.example.progetto.csvClasses.dataType.PrintClass { } } } } namespace com.example.progetto { namespace csvClasses { namespace dataType { class com.example.progetto.csvClasses.dataType.UrlWithDescription { } } } } com.example.progetto.csvClasses.csvRetrieve.CsvSplitter o-- com.example.progetto.csvClasses.csvRetrieve.GetCsvDataFromUrl : csv com.example.progetto.csvClasses.csvRetrieve.GetCsvDataFromUrl o-- com.example.progetto.csvClasses.csvRetrieve.ReadLineFromBufferedReader : br right footer endfooter @enduml
eb958479ec93c852c61937d131f41efb1aa5458d
68e6169d299ad4315c20e65ff75bc2a427784b69
/uml/clases.plantuml
6c2175303d25f75ccf8b626cd9ef004b521e5529
[]
no_license
jrgallego21/sopaLetras
f3f53240adc1fc6650db592516d6c2e921f8a3cf
c84409b5322efe69497a0d2b6f03ad84cb67cfcc
refs/heads/main
2023-05-23T09:29:16.987774
2021-06-11T01:56:26
2021-06-11T01:56:26
375,226,604
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,225
plantuml
@startuml diagrama_clases ' https://plantuml.com/es/ class Tablero { {static} CARACTER_VACIO: const -fila: int -columna: int -tablero: Array -construct(): +iniciarTablero(): void +completarTableroAleatoriamente(): void -generarCaracterAleatorio(): char +mostrarTablero(): void +mostrarTableroHtml(): void } class Palabra { -ruta: String -palabras: Array construct(): +buscarPalabras(): void -convertirPalabrasAMayusculas(): void +mostrarPalabrasHtml(): String } class ColocarPalabra { +derecha(palabra, movimiento, tablero): tablero +izquierda(palabra, movimiento, tablero): tablero +arriba(palabra, movimiento, tablero): tablero +abajo(palabra, movimiento, tablero): tablero +diagonalPrincipal(palabra, movimiento, tablero): tablero +diagonalPrincipalInvertida(palabra, movimiento, tablero): tablero +diagonalNegativa(palabra, movimiento, tablero): tablero +diagonalNegativaInvertida(palabra, movimiento, tablero): tablero } class Movimiento { -ruta: String -valorMaximoFila: int -valorMaximoColumna: int -tipoMovimiento: object +generarMovimiento(): Array } class TipoMovimiento { -ruta: String -tipoMovimiento: object +buscarTipoMovimiento(): } @enduml
f22a8b3b926a0e2df2c031a051a6dea31835da51
3e42a3533e38dfc8912d3bb6e59e942c718fd57e
/src/com/zjh/factory/abstractfactory/abstractfactory.puml
d9505fb499f995b2d06b4b306d15d01c98776496
[]
no_license
zjh-escape/DesignPattern
d2c90dc1380322d9ed3fb85cb4fdc8e88b1bf1a5
e268fff5cf556e8a6b64208855c50a0b0d36bc64
refs/heads/master
2022-04-24T16:54:50.067028
2020-04-18T07:45:29
2020-04-18T07:45:29
256,657,447
0
0
null
null
null
null
UTF-8
PlantUML
false
false
595
puml
@startuml abstract class Pizza{ + void prepare() + void bake() + void cut() + void box() } class BJCheesePizza class BJPepperPizza class LDCheesePizza class LDPepperPizza interface AbsFactory{ + Pizza createPizza(); } class BJFactory class LDFactory class OrderPizza BJCheesePizza <.. BJFactory BJPepperPizza <.. BJFactory LDCheesePizza <.. LDFactory LDPepperPizza <.. LDFactory AbsFactory <|.. BJFactory AbsFactory <|.. LDFactory Pizza <|-- BJCheesePizza Pizza <|-- BJPepperPizza Pizza <|-- LDCheesePizza Pizza <|-- LDPepperPizza OrderPizza o-- AbsFactory @enduml
50fef51d683c071998ea76f6e128b26dd128f2dd
236dd8046d9a1901c1550677ee05bd70fc596986
/docs/app2_diagram.puml
74f9101a1b32613a37575c2c0f6226cfed562066
[]
no_license
DavidABeers/beers-app2
499c453d0aa7b2848ae9e120cdee1109ae1ba918
5122016b86ce6bada92888c8030751096c47c224
refs/heads/main
2023-09-05T20:57:38.671862
2021-11-22T04:28:01
2021-11-22T04:28:01
428,665,290
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,158
puml
@startuml 'https://plantuml.com/sequence-diagram class ControllerActions{ +addItem() +removeItem() +removeAll() +validSerialNumber() +validateName() +validatePrice() +saveAsText() +saveAsJson() +saveAsHTML() +loadTabSeparatedText() +loadJson() +loadHTML() } class Inventory{ -ObservableList<InventoryItem> inventory +additem +removeItem() +clearList() +getItem() +getInventory() } class InventoryItem{ -String serialNumber -String itemName -String price +InventoryItem() +InventoryItem(String sn, String name, String price) +setPrice(String price) +setItemName(String itemName) +setSerialNumber(String serialNumber) +getPrice() +getItemName() +getSerialNumber() } class InventoryManagementApplication{ +start() +main() } class JsonToInventory{ -InventoryItem[] inventoryItems +getInventoryItems() +setInventoryItems() } class MainSceneController{ -Stage primaryStage -Scene primaryScene -Scene newItemScene -Inventory inventory -ControllerActions ca +setStage(Stage stage) +setPrimaryScene(Scene scene) +setNewItemScene(Scene scene) +changeToNewItemScene() +changeToPrimaryScene() -Button newItem -Button removeItem -Button clearAll -Button saveInventory -Button loadInventory -TableView<InventoryItem> inventoryView -TableColumn<InventoryItem, String> snColumn -TableColumn<InventoryItem, String> nameColumn -TableColumn<InventoryItem, String> priceColumn -TextField snSearch -TextField nameSearch -Label errorLabel +showPriceError() +initialize() -displayItem() -addNewItem(ActionEvent event) -saveSNChange(TableColumn.CellEditEvent<InventoryItem, String> event) -saveNameChange(TableColumn.CellEditEvent<InventoryItem, String> event) -savePriceChange(TableColumn.CellEditEvent<InventoryItem, String> event) -filterBySN(ActionEvent event) -filterByName(ActionEvent event) -openSaveChooser(ActionEvent event) -openLoadChooser(ActionEvent event) -deleteItem(ActionEvent event) -clearInventory(ActionEvent event) } MainSceneController -- InventoryManagementApplication MainSceneController --|> ControllerActions Inventory --|> InventoryItem JsonToInventory --|> InventoryItem MainSceneController --|>Inventory ControllerActions --|> JsonToInventory @enduml
3df4276c5a351971703785897be9890038b08a1e
0320358d622e120abcab07eef23a52a8bcc65f68
/assets/uml/Cook.plantuml
6b47d2eb39b7820e502d1ba4d806632d8f3b49a1
[ "MIT" ]
permissive
studmuehmi7187/10-threads-jfx
ea491a1ee3e375e81dfba9dfdbf929d753323a0d
5fc7ce11c5edffb14464f81090e28d80bb03274e
refs/heads/master
2020-09-24T20:38:46.171227
2019-12-11T09:56:06
2019-12-11T09:56:06
225,838,101
0
0
MIT
2019-12-04T10:16:26
2019-12-04T10:16:25
null
UTF-8
PlantUML
false
false
381
plantuml
@startuml Cook package java.lang { interface Runnable { run(); } } package de.thro.inf.prg3.a10.kitchen.workers { +class Cook implements Runnable { -name: String -progressReporter: ProgressReporter -kitchenHatch: KitchenHatch +Cook(name: String, kitchenHatch: KitchenHatch, progressReporter: ProgressReporter) } } @enduml
24f8f6b2fc81f8635620c686f199a4010115bc0e
70063e38a90f11c5cd29bdd2559db912c2c33a9e
/Test/test.puml
daa3b70a215c25cf3b8efcd5b3c75ea0338ae422
[]
no_license
dotlive/LT-scriptsys
bf1aa0d531acf4c4179e16741b780e81c3edf4f7
46af430c9b9bd05e986c8b8cd9a77aa0a497b8c8
refs/heads/master
2022-12-16T05:58:24.734309
2020-09-22T09:19:45
2020-09-22T09:19:45
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
5,640
puml
@startuml class IScriptSigLogic { +is_time_out : boolean | false {static} -__type_name : string | "IScriptSigLogic" +check() +checkTimeOut() -__ctor() } class IScriptManager { -_getScriptListeningSig() -_scriptWait() {static} -__type_name : string | "IScriptManager" -_scriptOnSig() -_setSigDispatcher() -__ctor() } class ScriptManager { -_script_map : map -_sig_dispatcher : IScriptSigDispatcher[weak] -_active_script : Script[weak] -_scriptOnSig() {static} -__type_name : string | "ScriptManager" -__dtor() -_unsetActiveScript() +abortScript() -_setActiveScript() +loadScript() {static} -__super : IScriptManager -__ctor() -_handleScriptTickResult() -_setSigDispatcher() -_abortScript() -_awakeScript() -_getScriptListeningSig() -_handleScriptAwakeArgs() -_sleepScript() -_scriptWait() -_runScript() +scriptIsActive() +runScript() +scriptIsRunning() } IScriptManager <|-- ScriptManager ScriptManager --> map ScriptManager ..> IScriptSigDispatcher : weak ScriptManager ..> Script : weak class array { -_et_type : number | 0 -_et : unmanaged -_a : unmanaged +insert() +clear() +get() +peekBack() -__dtor() +peekFront() +set() +popFront() +pushFront() +pushBack() +popBack() +size() {static} -__type_name : string | "array" -__ctor() } class map { -_et_type : number | 0 -_kt : string | "" -_et : unmanaged -_m : unmanaged +containKey() {static} -__type_name : string | "map" +pairs() -__dtor() -_next() +set() +isEmpty() +clear() +get() -__ctor() } class ScriptAPIManager { -_forbid_post_api : boolean | false -_waiting_sig_logic : IScriptSigLogic -_api_dispatcher : IScriptAPIDispatcher[weak] -_sig_factory : ScriptSigFactory[weak] -_script_manager : IScriptManager[weak] -_script_api_space : unmanaged -_api_proxy_map : unmanaged +getAPISpace() -_built_in_apiIsPending() {static} -__type_name : string | "ScriptAPIManager" -_built_in_apiIsExecuting() -_registerBuiltInAPI() +registerAssistAPI() -__ctor() -_built_in_apiDiedOfInterruption() -_built_in_apiAbort() -_built_in_apiGetTimeSpent() -_built_in_waitEvent() -_built_in_apiWait() -_built_in_apiIsDead() -_waitSig() -_built_in_waitCondition() -_callAPI() +registerAPI() -_built_in_delay() -_built_in_apiGetReturn() } ScriptAPIManager --> IScriptSigLogic ScriptAPIManager ..> IScriptAPIDispatcher : weak ScriptAPIManager ..> ScriptSigFactory : weak ScriptAPIManager ..> IScriptManager : weak class ScriptSigFactory { +createSig_API() {static} -__type_name : string | "ScriptSigFactory" +createSig_Event() -__dtor() -__ctor() } class ScriptThread { -_co : unmanaged +awake() +sleep() {static} -__type_name : string | "ScriptThread" +abort() -__dtor() -_handleResumeResult() -_endRunning() -_log() -_handleYieldResule() -_startRunning() +isActive() +start() +isRunning() -__ctor() } class ScriptSystem { -_api_dispatcher : IScriptAPIDispatcher -_script_manager : ScriptManager -_api_manager : ScriptAPIManager -_sig_dispatcher : ScriptSigDispatcher -_sig_factory : ScriptSigFactory {static} -__type_name : string | "ScriptSystem" +sendSig_Event() -__dtor() +runScript() +registerAPI() +scriptIsRunning() +loadScript() +registerAssistAPI() +abortScript() +sendSig_API() +tick() -__ctor() } ScriptSystem --> IScriptAPIDispatcher ScriptSystem --> ScriptManager ScriptSystem --> ScriptAPIManager ScriptSystem --> ScriptSigDispatcher ScriptSystem --> ScriptSigFactory class IScriptSigDispatcher { -_listenSig() {static} -__type_name : string | "IScriptSigDispatcher" -_unlistenSig() -_setScriptManager() -__ctor() } class SSL_Event { -_time_spent : number | 0 -_time_out : number | -1 -_event_logic_func : unmanaged +check() +checkTimeOut() {static} -__type_name : string | "SSL_Event" {static} -__super : IScriptSigLogic -__dtor() -__ctor() } IScriptSigLogic <|-- SSL_Event class SSL_Timing { -_time_spent : number | 0 -_time : number | 0 +check() +checkTimeOut() {static} -__type_name : string | "SSL_Timing" {static} -__super : IScriptSigLogic -__dtor() -__ctor() } IScriptSigLogic <|-- SSL_Timing class Script { -_name : string | "" -_thread : ScriptThread -_proc : unmanaged +awake() +sleep() {static} -__type_name : string | "Script" +abort() -__dtor() +run() +isActive() +isRunning() -__ctor() } Script --> ScriptThread class ScriptSigDispatcher { -_sigs_cache : map -_script_listen_map : map -_script_manager : IScriptManager[weak] -_listenSig() {static} -__type_name : string | "ScriptSigDispatcher" -__dtor() -_setScriptManager() +sendSig() {static} -__super : IScriptSigDispatcher -_unlistenSig() +tick() -__ctor() } IScriptSigDispatcher <|-- ScriptSigDispatcher ScriptSigDispatcher --> map ScriptSigDispatcher ..> IScriptManager : weak class SSL_Condition { -_time_spent : number | 0 -_time_out : number | -1 -_condition : unmanaged +check() +checkTimeOut() {static} -__type_name : string | "SSL_Condition" {static} -__super : IScriptSigLogic -__dtor() -__ctor() } IScriptSigLogic <|-- SSL_Condition class IScriptAPIDispatcher { +postAPI() +apiIsExecuting() +apiIsPending() {static} -__type_name : string | "IScriptAPIDispatcher" +apiGetReturn() +apiGetTimeSpent() +apiAbort() +apiDiedOfInterruption() +apiIsDead() +tick() -__ctor() } class SSL_API { -_api_token : number | 0 -_time_out : number | -1 -_sig : string | "" -_api_dispatcher : IScriptAPIDispatcher[weak] +check() +checkTimeOut() {static} -__type_name : string | "SSL_API" {static} -__super : IScriptSigLogic -__dtor() -__ctor() } IScriptSigLogic <|-- SSL_API SSL_API ..> IScriptAPIDispatcher : weak @enduml
29c709a660319f150b286735296f66f2a202ab36
e7aab27dc3b56328c92d783d7fa8fce12d8ac544
/kapitler/media/uml-class-presedens.puml
fb4aa6fe145dc84139764514878d3289c6f615cf
[]
no_license
petterreinholdtsen/noark5-tjenestegrensesnitt-standard
855019a61c8679a8119549e2824fa32ecc669e66
4673ba7134d83a6992bba6f9036c521c7ae1897f
refs/heads/master
2023-06-11T12:08:52.134764
2023-03-05T11:05:21
2023-03-05T11:05:21
160,586,219
0
0
null
null
null
null
UTF-8
PlantUML
false
false
887
puml
@startuml skinparam nodesep 100 hide circle class Sakarkiv.Presedens { +systemID : SystemID [0..1] +presedensDato : datetime +opprettetDato : datetime [0..1] +opprettetAv : string [0..1] +referanseOpprettetAv : SystemID [0..1] +tittel : string +beskrivelse : string [0..1] +presedensHjemmel : string [0..1] +rettskildefaktor : string +presedensGodkjentDato : datetime [0..1] +presedensGodkjentAv : string [0..1] +referansePresedensGodkjentAv : SystemID [0..1] +avsluttetDato : datetime [0..1] +avsluttetAv : string [0..1] +referanseAvsluttetAv : SystemID [0..1] +presedensStatus : PresedensStatus [0..1] } class Sakarkiv.Journalpost <Registrering> { } Sakarkiv.Presedens "presedens 0..*" *--> "journalpost 0..*" Sakarkiv.Journalpost class Sakarkiv.Saksmappe <Mappe> { } Sakarkiv.Presedens "presedens 0..*" *--> "saksmappe 0..*" Sakarkiv.Saksmappe @enduml
1d9fe084ed112cdc4366f517f6d4b47523558bdf
6df8f2e17e6828100a4437b1b470328d7c6aafae
/uml/02_Adapter_inherit.puml
20bc8b4eb0bbb814f95cc8fdede20aac729ef081
[]
no_license
yinm/java-design-pattern
ea4af99fda49be066a35edb5cee6b5314b5024ae
98bfa015c189de6d267dfea1ced80dddb0d8f5bb
refs/heads/master
2020-04-18T16:17:15.822973
2019-02-27T01:03:27
2019-02-27T01:03:27
167,630,531
0
0
null
null
null
null
UTF-8
PlantUML
false
false
326
puml
@startuml class Client interface Target { {abstract} targetMethod1() {abstract} targetMethod2() } class Adapter { targetMethod1() targetMethod2() } class Adaptee { methodA() methodB() methodC() } Client -d-> Target : Uses > Adapter ..l..|> Target : implements > Adapter --r--|> Adaptee : extends > @enduml
8193499a6ab7c8579d80e4e3519ab5dc0f509426
faac3c2a5d0a376009c5ab134c350c98472a945c
/admin-tool/src/test/java/test.puml
aaf331897b1c5c81339858feed577614ff642f90
[]
no_license
LJH-98/adminproject
4e9bc585a3c4a83d9e2d87db95bb9751a0b41ff2
80cc0e6e7a634a8f66a76001d30213f53b4b720d
refs/heads/master
2023-03-13T21:40:51.899897
2021-03-09T09:42:38
2021-03-09T09:42:38
345,303,487
0
0
null
null
null
null
UTF-8
PlantUML
false
false
160
puml
@startuml class A{ - String file; - C c; # void method() } interface C{ # void method() } ' A 实现 C A ..|> C @enduml
d92ebf87aa180c988b328bff4647fc78307de564
98c049efdfebfafc5373897d491271b4370ab9b4
/docs/SPRINT_1/UC18-Add_Courier/UC18_MD.puml
5fc5b597b149c06eea1bce5f6ce7886757899461
[]
no_license
antoniodanielbf-isep/LAPR3-2020
3a4f4cc608804f70cc87a3ccb29cbc05f5edf0f3
7ee16e8c995aea31c30c858f93e8ebdf1de7617f
refs/heads/main
2023-05-27T14:42:05.442427
2021-06-20T18:09:59
2021-06-20T18:09:59
378,709,095
0
0
null
null
null
null
UTF-8
PlantUML
false
false
896
puml
@startuml skinparam classAttributeIconSize 0 hide methods left to right direction class Pharmacy { -Integer id -String designation } class Courier { -Integer nif -char niss -String name -String email -float maxWeight } class CourierState{ -Integer id -String designation } class Scooter { -boolean qrCode } class Vehicle{ -Integer id -float batteryCapacity -float battery -double maxPayload } class Administrator { } class User{ -String email -int NIF -String name -String password } /'------------------------------------------------------------------------------------ '/ Administrator "1" -- "1" User: acts like > Administrator "1" -- "*" Courier: adds > Courier "1" --- "1..*" Scooter: uses > Courier "*" --- "1" Pharmacy: works in > Courier "1" --- "1" CourierState: has > Pharmacy "1" -- "1..*" Vehicle: has > @enduml
40a0a5ed6dfde47ddd95f5a8f1f26f9e50e0af78
0542c1493ec9be527acc54f67a0db02c59883199
/doc/namespacehandler处理逻辑/namespacehandler 设计方法.puml
4b192a3b4ad01e013808f8cfb7d682629f16c45c
[]
no_license
kangjiabang/springlearn
178c6df7441eb507d5fe484ff004cdd2a09cf570
90ece0ff4a25f416a944de996f83d0e707b594cf
refs/heads/master
2022-04-14T13:27:27.551434
2020-04-20T04:32:58
2020-04-20T04:32:58
114,709,497
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,026
puml
@startuml interface NamespaceHandler abstract NamespaceHandlerSupport class AopNamespaceHandler note left of AopNamespaceHandler public void init() // In 2.0 XSD as well as in 2.1 XSD. registerBeanDefinitionParser("config", new ConfigBeanDefinitionParser()); registerBeanDefinitionParser("aspectj-autoproxy", new AspectJAutoProxyBeanDefinitionParser()); registerBeanDefinitionDecorator("scoped-proxy", new ScopedProxyBeanDefinitionDecorator()); // Only in 2.0 XSD: moved to context namespace as of 2.1 registerBeanDefinitionParser("spring-configured", new SpringConfiguredBeanDefinitionParser()); } end note class DubboNamespaceHandler interface NamespaceHandlerResolver class DefaultNamespaceHandlerResolver interface BeanDefinitionParser NamespaceHandlerResolver <|.. DefaultNamespaceHandlerResolver NamespaceHandler <|.. NamespaceHandlerSupport NamespaceHandlerSupport <|-- AopNamespaceHandler NamespaceHandlerSupport <|-- DubboNamespaceHandler DefaultNamespaceHandlerResolver --> "*" NamespaceHandler NamespaceHandlerSupport --> "*" BeanDefinitionParser BeanDefinitionParser <|.. ConfigBeanDefinitionParser BeanDefinitionParser <|.. AspectJAutoProxyBeanDefinitionParser BeanDefinitionParser <|.. ScopedProxyBeanDefinitionDecorator BeanDefinitionParser <|.. SpringConfiguredBeanDefinitionParser interface NamespaceHandler { void init(); } class AopNamespaceHandler { @override void init(); } interface NamespaceHandlerResolver { NamespaceHandler resolve(String namespaceUri); } interface BeanDefinitionParser { BeanDefinition parse(Element element, ParserContext parserContext) } class NamespaceHandlerSupport { Map<String, BeanDefinitionParser> parsers; void registerBeanDefinitionParser(String elementName, BeanDefinitionParser parser); } class DefaultNamespaceHandlerResolver { String DEFAULT_HANDLER_MAPPINGS_LOCATION = "META-INF/spring.handlers"; /** mappings from namespace URI to NamespaceHandler */ Map<String, Object> handlerMappings; } @enduml
6eb6d206c41f2cb3aef63bc78015d39de70e762e
c85d255daca76e76b7073e0a288849be195b214e
/app/src/main/java/com/architectica/socialcomponents/main/main/Notifications/Notifications.plantuml
25e64cdcb963d758903378107541d36b18ef627a
[ "Apache-2.0" ]
permissive
AryaAshish/Archcrony
75bb4646d938b2da11721aff0dde11ad49f4a357
3cf972c48e900d513d53ebed857373741c1969b5
refs/heads/master
2020-04-29T12:34:32.168647
2019-08-01T12:56:05
2019-08-01T12:56:05
176,141,477
1
3
Apache-2.0
2019-08-01T12:56:06
2019-03-17T18:16:12
Java
UTF-8
PlantUML
false
false
2,901
plantuml
@startuml title __NOTIFICATIONS's Class Diagram__\n namespace com.architectica.socialcomponents { namespace main.main { namespace Notifications { class com.architectica.socialcomponents.main.main.Notifications.NotificationsFragment { - counterAnimationInProgress : boolean - newPostsCounterTextView : TextView - progressBar : ProgressBar - recyclerView : RecyclerView - swipeContainer : SwipeRefreshLayout + NotificationsFragment() + createPresenter() + hideCounterView() {static} + newInstance() + onCreate() + onCreateView() + onResume() + openPostDetailsActivity() + openProfileActivity() + refreshPostList() + showCounterView() + showFloatButtonRelatedSnackBar() - initContentView() - initPostCounter() - initPostListRecyclerView() } } } } namespace com.architectica.socialcomponents { namespace main.main { namespace Notifications { class com.architectica.socialcomponents.main.main.Notifications.NotificationsPresenter { + NotificationsPresenter() + initPostCounter() ~ onPostClicked() ~ updateNewPostCounter() } } } } namespace com.architectica.socialcomponents { namespace main.main { namespace Notifications { interface com.architectica.socialcomponents.main.main.Notifications.NotificationsView { {abstract} + hideCounterView() {abstract} + openPostDetailsActivity() {abstract} + openProfileActivity() {abstract} + refreshPostList() {abstract} + showCounterView() {abstract} + showFloatButtonRelatedSnackBar() } } } } com.architectica.socialcomponents.main.main.Notifications.NotificationsFragment .up.|> com.architectica.socialcomponents.main.main.Notifications.NotificationsView com.architectica.socialcomponents.main.main.Notifications.NotificationsFragment -up-|> com.architectica.socialcomponents.main.base.BaseFragment com.architectica.socialcomponents.main.main.Notifications.NotificationsFragment o-- com.architectica.socialcomponents.adapters.NotificationsAdapter : postsAdapter com.architectica.socialcomponents.main.main.Notifications.NotificationsPresenter -up-|> com.architectica.socialcomponents.main.base.BasePresenter com.architectica.socialcomponents.main.main.Notifications.NotificationsPresenter o-- com.architectica.socialcomponents.managers.PostManager : postManager 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
b49ccd77a13fb13b8e6bc87b1dd12f099deec6e4
38cccadc8908fc064fcf0abba965cd17d2a47825
/uml/sendMessage.puml
b6e3578eddcc3673751f8530d87937a479d12753
[]
no_license
johnbukaixin/demo-consumer
7fb702b9193242de381b51b491c3617a84dc4139
3f7a3e7e0172a0c8d797511691357b50889e2d84
refs/heads/master
2021-05-11T18:04:45.228231
2018-01-29T08:08:57
2018-01-29T08:08:57
117,814,832
0
0
null
null
null
null
UTF-8
PlantUML
false
false
697
puml
@startuml interface SendMessageStrategy SendMessageStrategy <|-- AbstractSendMessageStrategy AbstractSendMessageStrategy <|-- sendMessageStrategy AbstractSendMessageStrategy <|-- CardSendMessageStrategy AbstractSendMessageStrategy <|-- BatchSendMessageStrategy abstract class AbstractSendMessageStrategy { +send(BaseParam param); ~build(param); ~sendMessage(param); } class sendMessageStrategy{ +send(BaseParam param); ~build(param); ~sendMessage(param); } class CardSendMessageStrategy{ +send(BaseParam param); ~build(param); ~sendMessage(param); } class BatchSendMessageStrategy{ +send(BaseParam param); ~build(param); ~sendMessage(param); } @enduml
fb9ee0d04be5de4c6342e32952a1a98eb08984c2
07b0fd9f1ad48c9611fd70a3f62bcd4afc27d865
/.idea/modules/app/app.plantuml
07c38c9d5cae3e6a05418cdf675766a4831f2701
[]
no_license
cyberflax2020/COMP2100_6442_S2_2020_GROUP_PROJECT
9c668698b4722c73a85d8f850414a35b4579b761
51ca21a4e3e62d25f7a1d60674cce51a313d3b57
refs/heads/main
2023-04-14T22:04:12.605649
2021-05-08T16:33:57
2021-05-08T16:33:57
365,550,501
1
1
null
null
null
null
UTF-8
PlantUML
false
false
12,786
plantuml
@startuml title __PROCOM_SEARCH.APP's Class Diagram__\n namespace com.example.procomsearch { class com.example.procomsearch.BuildConfig { } } namespace com.example.procomsearch { class com.example.procomsearch.Company { } } namespace com.example.procomsearch { class com.example.procomsearch.CompanyAdapter { } } namespace com.example.procomsearch { class com.example.procomsearch.CompanyFactory { } } namespace com.example.procomsearch { class com.example.procomsearch.CompanyPageActivity { } } namespace com.example.procomsearch { class com.example.procomsearch.FavoriteAdapter { } } namespace com.example.procomsearch { class com.example.procomsearch.MainActivity_sign_in { } } namespace com.example.procomsearch { class com.example.procomsearch.Page_sign_up { } } namespace com.example.procomsearch { class com.example.procomsearch.SearchActivity { } } namespace com.example.procomsearch { class com.example.procomsearch.SelectActivity { } } namespace com.example.procomsearch { namespace buttonEditText { class com.example.procomsearch.buttonEditText.ClearableEditText { } } } namespace com.example.procomsearch { namespace dataFrame { class com.example.procomsearch.dataFrame.ArrayListIntent { } } } namespace com.example.procomsearch { namespace dataFrame { class com.example.procomsearch.dataFrame.BST { } } } namespace com.example.procomsearch { namespace dataFrame { class com.example.procomsearch.dataFrame.Company_Index { } } } namespace com.example.procomsearch { namespace dataFrame { class com.example.procomsearch.dataFrame.Database_reader { } } } namespace com.example.procomsearch { namespace dataFrame { class com.example.procomsearch.dataFrame.Node { } } } namespace com.example.procomsearch { namespace history { class com.example.procomsearch.history.HistoryUtil { } } } namespace com.example.procomsearch { namespace layoutManagerTool { class com.example.procomsearch.layoutManagerTool.AutoPageUpLinearLayoutManager { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.And_Exp { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.Attribute_Exp { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.Bigger_Exp { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.Dou_Exp { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.Equal_Exp { } } } namespace com.example.procomsearch { namespace parser { abstract class com.example.procomsearch.parser.Exp { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.NotExp { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.OrExp { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.Parser { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.Smaller_Exp { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.UnknownRst { } } } namespace com.example.procomsearch { namespace parser { class com.example.procomsearch.parser.Unknown_Exp { } } } namespace com.example.procomsearch { namespace searcher { class com.example.procomsearch.searcher.Searcher { } } } namespace com.example.procomsearch { namespace tokenizer { class com.example.procomsearch.tokenizer.Token { } } } namespace com.example.procomsearch { namespace tokenizer { class com.example.procomsearch.tokenizer.Tokenizer { } } } namespace com.example.procomsearch { namespace ui.Favorite { class com.example.procomsearch.ui.Favorite.FavoriteFragment { } } } namespace com.example.procomsearch { namespace ui.Favorite { class com.example.procomsearch.ui.Favorite.FavoriteViewModel { } } } namespace com.example.procomsearch { namespace ui.Profile { class com.example.procomsearch.ui.Profile.ProfileFragment { } } } namespace com.example.procomsearch { namespace ui.Profile { class com.example.procomsearch.ui.Profile.ProfileViewModel { } } } namespace com.example.procomsearch { namespace ui.Search { class com.example.procomsearch.ui.Search.SearchFragment { } } } namespace com.example.procomsearch { namespace ui.Search { class com.example.procomsearch.ui.Search.SearchViewModel { } } } namespace com.example.procomsearch { namespace userDatabase { class com.example.procomsearch.userDatabase.MyDatabaseHelper { } } } com.example.procomsearch.Company .up.|> java.io.Serializable com.example.procomsearch.CompanyAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter com.example.procomsearch.CompanyAdapter o-- com.example.procomsearch.CompanyFactory : companies com.example.procomsearch.CompanyFactory .up.|> java.io.Serializable com.example.procomsearch.CompanyFactory -up-|> java.util.ArrayList com.example.procomsearch.CompanyPageActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.procomsearch.CompanyPageActivity o-- com.example.procomsearch.dataFrame.ArrayListIntent : AI com.example.procomsearch.FavoriteAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter com.example.procomsearch.FavoriteAdapter o-- com.example.procomsearch.CompanyFactory : favoriteCompanies com.example.procomsearch.MainActivity_sign_in -up-|> androidx.appcompat.app.AppCompatActivity com.example.procomsearch.MainActivity_sign_in o-- com.example.procomsearch.userDatabase.MyDatabaseHelper : dbHelper com.example.procomsearch.Page_sign_up -up-|> androidx.appcompat.app.AppCompatActivity com.example.procomsearch.SearchActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.procomsearch.SearchActivity o-- com.example.procomsearch.dataFrame.ArrayListIntent : AI com.example.procomsearch.SelectActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.procomsearch.buttonEditText.ClearableEditText .up.|> android.text.TextWatcher com.example.procomsearch.buttonEditText.ClearableEditText .up.|> android.view.View.OnFocusChangeListener com.example.procomsearch.buttonEditText.ClearableEditText .up.|> android.view.View.OnTouchListener com.example.procomsearch.buttonEditText.ClearableEditText -up-|> androidx.appcompat.widget.AppCompatEditText com.example.procomsearch.dataFrame.ArrayListIntent .up.|> java.io.Serializable com.example.procomsearch.dataFrame.BST o-- com.example.procomsearch.dataFrame.Node : root com.example.procomsearch.dataFrame.Company_Index .up.|> java.io.Serializable com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : FET com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : MET com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : NPAT com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : NPGT com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : OET com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : OPT com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : PROMT com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : SET com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : TOET com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : TOIAT com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : TOIGT com.example.procomsearch.dataFrame.Database_reader o-- com.example.procomsearch.dataFrame.BST : TPT com.example.procomsearch.dataFrame.Node o-- com.example.procomsearch.dataFrame.Node : left com.example.procomsearch.dataFrame.Node o-- com.example.procomsearch.dataFrame.Node : parent com.example.procomsearch.dataFrame.Node o-- com.example.procomsearch.dataFrame.Node : right com.example.procomsearch.layoutManagerTool.AutoPageUpLinearLayoutManager -up-|> androidx.recyclerview.widget.LinearLayoutManager com.example.procomsearch.parser.And_Exp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.parser.And_Exp o-- com.example.procomsearch.parser.Exp : exp com.example.procomsearch.parser.And_Exp o-- com.example.procomsearch.parser.Exp : term com.example.procomsearch.parser.Attribute_Exp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.parser.Bigger_Exp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.parser.Bigger_Exp o-- com.example.procomsearch.parser.Exp : Dou com.example.procomsearch.parser.Bigger_Exp o-- com.example.procomsearch.parser.Exp : term com.example.procomsearch.parser.Dou_Exp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.parser.Equal_Exp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.parser.Equal_Exp o-- com.example.procomsearch.parser.Exp : Dou com.example.procomsearch.parser.Equal_Exp o-- com.example.procomsearch.parser.Exp : term com.example.procomsearch.parser.NotExp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.parser.NotExp o-- com.example.procomsearch.parser.Exp : exp com.example.procomsearch.parser.OrExp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.parser.OrExp o-- com.example.procomsearch.parser.Exp : exp1 com.example.procomsearch.parser.OrExp o-- com.example.procomsearch.parser.Exp : exp2 com.example.procomsearch.parser.Parser o-- com.example.procomsearch.tokenizer.Tokenizer : _tokenizer com.example.procomsearch.parser.Smaller_Exp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.parser.Smaller_Exp o-- com.example.procomsearch.parser.Exp : Dou com.example.procomsearch.parser.Smaller_Exp o-- com.example.procomsearch.parser.Exp : term com.example.procomsearch.parser.Unknown_Exp -up-|> com.example.procomsearch.parser.Exp com.example.procomsearch.tokenizer.Token o-- com.example.procomsearch.tokenizer.Token.Type : _type com.example.procomsearch.tokenizer.Tokenizer o-- com.example.procomsearch.tokenizer.Token : currentToken com.example.procomsearch.ui.Favorite.FavoriteFragment -up-|> androidx.fragment.app.Fragment com.example.procomsearch.ui.Favorite.FavoriteFragment o-- com.example.procomsearch.ui.Favorite.FavoriteViewModel : favoriteViewModel com.example.procomsearch.ui.Favorite.FavoriteViewModel -up-|> androidx.lifecycle.ViewModel com.example.procomsearch.ui.Profile.ProfileFragment -up-|> androidx.fragment.app.Fragment com.example.procomsearch.ui.Profile.ProfileFragment o-- com.example.procomsearch.CompanyAdapter : adapter com.example.procomsearch.ui.Profile.ProfileFragment o-- com.example.procomsearch.ui.Profile.ProfileViewModel : profileViewModel com.example.procomsearch.ui.Profile.ProfileViewModel -up-|> androidx.lifecycle.ViewModel com.example.procomsearch.ui.Search.SearchFragment -up-|> androidx.fragment.app.Fragment com.example.procomsearch.ui.Search.SearchFragment o-- com.example.procomsearch.buttonEditText.ClearableEditText : searchBox com.example.procomsearch.ui.Search.SearchFragment o-- com.example.procomsearch.ui.Search.SearchViewModel : searchViewModel com.example.procomsearch.ui.Search.SearchViewModel -up-|> androidx.lifecycle.ViewModel com.example.procomsearch.userDatabase.MyDatabaseHelper -up-|> android.database.sqlite.SQLiteOpenHelper 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
2afd581ebcf10a22e2c42909510d1689bc71bc7f
084fcc4a31b60fe11f3f647f7d49a3c1c6621b44
/kapitler/media/uml-class-saksmappe.iuml
9260773f3b2505172400ff7b3f55ae6b944cb509
[]
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
548
iuml
@startuml class Sakarkiv.Saksmappe <Mappe> { +saksaar : integer [0..1] [1..1] +sakssekvensnummer : integer [0..1] [1..1] +saksdato : datetime [0..1] [1..1] +administrativEnhet : string [0..1] [1..1] +referanseAdministrativEnhet : SystemID [0..1] [1..1] +saksansvarlig : string [0..1] [1..1] +referanseSaksansvarlig : SystemID [0..1] [1..1] +journalenhet : string [0..1] [1..1] +saksstatus : Saksstatus [0..1] [1..1] +utlaantDato : datetime [0..1] +utlaantTil : string [0..1] +referanseUtlaantTil : SystemID [0..1] } @enduml
2daebbf964f501fc6993ad267d54916efb615da1
5e2c0b7fc7534d2214190795542e540f304fd271
/src/hua/lee/zygote/ClientTransaction.puml
b9b23d31d0ac4ded8862ddd662b899fa0debd02a
[]
no_license
lijieqing/ThreadFactory
00d0a52c0191ba2e627d5e2a11596370eb90187c
ff9719a48f1f0d1d0e98cfa7089c938e114ef415
refs/heads/master
2021-07-14T03:56:33.226996
2021-05-22T12:42:44
2021-05-22T12:42:44
246,733,259
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,908
puml
@startuml abstract class ClientTransactionHandler abstract class ClientTransactionItem class ClientTransaction{ private List<ClientTransactionItem> mActivityCallbacks; .. private ActivityLifecycleItem mLifecycleStateRequest; .. private IApplicationThread mClient; .. private IBinder mActivityToken; -- public void schedule(); } interface BaseClientRequest{ default void preExecute(ClientTransactionHandler client, IBinder token) -- void execute(ClientTransactionHandler client, IBinder token, PendingTransactionActions pendingActions) -- default void postExecute(ClientTransactionHandler client, IBinder token, PendingTransactionActions pendingActions) } () Parcelable ClientTransactionItem .up.|> BaseClientRequest ClientTransactionItem .left. Parcelable ClientTransaction .right. Parcelable abstract class ActivityLifecycleItem extends ClientTransactionItem { public static final int UNDEFINED = -1; public static final int PRE_ON_CREATE = 0; public static final int ON_CREATE = 1; public static final int ON_START = 2; public static final int ON_RESUME = 3; public static final int ON_PAUSE = 4; public static final int ON_STOP = 5; public static final int ON_DESTROY = 6; public static final int ON_RESTART = 7; -- public abstract int getTargetState(); } LaunchActivityItem -up-|> ClientTransactionItem ResumeActivityItem -up-|> ActivityLifecycleItem PauseActivityItem -up-|> ActivityLifecycleItem StopActivityItem -up-|> ActivityLifecycleItem DestroyActivityItem -up-|> ActivityLifecycleItem ClientTransactionHandler *-up- ClientTransaction ActivityThread -up-|> ClientTransactionHandler class ClientLifecycleManager{ void scheduleTransaction(ClientTransaction transaction); } ClientLifecycleManager *-right- ClientTransaction ActivityManagerService *-up- ClientLifecycleManager @enduml
37bc7f3e110fb2e3feea6aabe423223265dd095f
088856ec5790009dd9f9d3498a56fe679cfab2e8
/src/puml/5/ucmitz/svg/domain_model/baser-core/content_folders.puml
39e5f30f8a1a54c93210c3df07baef969ada983e
[]
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
427
puml
@startuml skinparam handwritten true skinparam backgroundColor white hide method title ドメインモデル図:コンテンツフォルダ package コンテンツフォルダ { class フォルダ { フォルダーテンプレート 固定ページテンプレート } class コンテンツ } class 子コンテンツ フォルダ *- コンテンツ コンテンツ "1" -- "0..*" 子コンテンツ @enduml
28fbefacee8c09b4472b459c9524cce4e3115c12
615a3e42249ebc695f09fc62d3038a857133b9f3
/docs/ToDoList.puml
4752f9773acbf9b6ae9bc894763caf34072b2400
[]
no_license
RyanTheGuyInSpace/hodge-app1-impl
60b80af046110bd59c70858f172d2485e03c0f02
2737e370bdfa858daeb72472e353f1cb76271f4c
refs/heads/master
2023-08-23T09:48:40.868992
2021-11-08T03:32:43
2021-11-08T03:32:43
422,279,866
0
0
null
null
null
null
UTF-8
PlantUML
false
false
584
puml
@startuml class ToDoListManager { +Gson serializer; +createList(String title); } class ToDoList { -String path; -String title; -ObservableList<Task> tasks; +addTask(String description); +removeTask(Task task); +clearAllTasks(); +load(); +save(); +toString(); } class Task { -String description; -Date dueDate; 'Format due date as YYYY-MM-DD' -private boolean isComplete; +setCompletion(boolean complete); +isComplete(); +setDescription(String description); +getDescription(); +toString(); } @enduml
b2a432117e46b68155665002afd920cf4ce7ed62
605cac101260b1b451322b94580c7dc340bea17a
/malokhvii-eduard/malokhvii04/doc/plantuml/ua/khpi/oop/malokhvii04/shell/commands/text/SearchTextCommand.puml
0c8406b1dcae12c92af9c0e91561f84611d67d94
[ "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
453
puml
@startuml class SearchTextCommand { {static} -description: String {static} -keys: List<String> {static} -RESOURCE_BUNDLE_NAME: String {static} -resourceBundle: ResourceBundle +SearchTextCommand() {static} -updateResourceBundle(): void +execute(): void +getDescription(): String +getKeys(): List<String> +update(Observable, Object): void } @enduml
7f531239cf8852208ef56a0cdf658eb2af5f653a
084fcc4a31b60fe11f3f647f7d49a3c1c6621b44
/kapitler/media/uml-datatype-skjerming.iuml
0cb6d949b69658a812830dd59f3357ee1aeb446f
[]
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
340
iuml
@startuml class Arkivstruktur.Skjerming <<dataType>> { +tilgangsrestriksjon : Tilgangsrestriksjon +skjermingshjemmel : string +skjermingMetadata : SkjermingMetadata [1..*] +skjermingDokument : SkjermingDokument [0..1] [1..1] +skjermingsvarighet : integer [0..1] [1..1] +skjermingOpphoererDato : datetime [0..1] [1..1] } @enduml
d5e9a6c6ca849baa624662c2a47a04a7c56f4262
c0246a5dc2377093b68f40fc9211d070ff30815f
/Iterator/BookShelf/class_diagram.puml
ab985683872e24ba1597ef59ce6f8c7284d9dcc8
[]
no_license
yelbluelow/Design-Pattern
17f66b76d9a4f724669ff15e900220810fbcb246
f06900ece2ec0b8ec5c9df64bfac74425e283e97
refs/heads/master
2020-08-13T18:57:14.975760
2019-10-22T13:40:35
2019-10-22T13:40:35
215,021,282
0
0
null
2019-10-22T13:40:37
2019-10-14T11:04:28
Python
UTF-8
PlantUML
false
false
563
puml
@startuml BookShelf interface Aggregate { {abstract} iterator() } interface Iterator { {abstract} hasNext() {abstract} next() } class BookShelf { book last getBookAt() appendBook() getLength() iterator() } class BookShelfIterator { bookShelf index hasNext() next() } class Book { name getName() } Aggregate -> Iterator : Creates > BookShelf .up.|> Aggregate BookShelfIterator .up.|> Iterator BookShelfIterator o-left-> BookShelf BookShelf o--> Book @enduml
17911653861eae5777db31014ad0b08218d1d55f
bc409fb200f6ef88fe5d6968223a7f4222f1daab
/uml/App.puml
19814f214067b9d5b72410aff0ec9fb2b36daed8
[]
no_license
LeonieAlex/ToDoList-Program
98963b74dfd6282e99c15a173c14cca9a903eb52
00077f2c8ca71c1a15cef42b20136c57d305d3df
refs/heads/master
2023-06-16T13:40:11.214315
2021-07-12T03:42:06
2021-07-12T03:42:06
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,795
puml
@startuml 'https://plantuml.com/class-diagram class ToDoListController { -TableView<Task> tableView; -TableColumn<Task, String> table_task; -TableColumn<Task, String> table_description; -TableColumn<Task, String> table_date; -TableColumn<Task, String> table_progress; -Button ButtonDelete -Button ButtonClear -TextField FilterField -Menu MenuOpen -Menu MenuSave -Menu MenuSaveAs -TextField Name -TextField Description -DatePicker datePickerOption -CheckBox Progress -Button ButtonAdd -Button HelpButton +ObservableList<Task> task +MenuSave() +MenuSaveAs() +OnClickHelp() +OnButtonClickDelete() +OnButtonClickClear() +OnButtonClickAdd() +changeTableDate() +changeTableDescCellEvent() +changeTableProgress() +openFile() +initialize() +getTask() CountRows() CountCompleted() CountIncomplete() CountAll() } class HelpController { -Button NextButton -Button Back +NextButton() +OnClickBackToMain() } class HelpPage2Controller { -TableView<> tableView -Button BackToMain -Button Back +OnClickBack() +OnClickBackToMain() } class Task{ -simpleStringProperty TaskName -simpleStringProperty TaskDesc -simpleStringProperty Progress -String Date +Task() +getTaskName() +setTaskName() +getTaskDesc() +setTaskDesc() +getProgress() +setProgress() +getDate() +setDate() +toString() } class DateValidation{ +dateValidation() +checkDate() } class AlertBox{ +display() } class JsonFile{ +ToJson() +ReadJson() } class App{ +main() +start() } class Check{ CheckLength() ChangeDate() ChangeDescription() ChangeProgress() } class JsonFile{ +ToJson() +readJson() +transferContents() } javafx.Application <|-- App App - ToDoListController App - HelpController App - HelpPage2Controller ToDoListController <-- Task ToDoListController <-- Check Check <-- DateValidation ToDoListController <-- JsonFile @enduml
73c2ba5975e6c28819b26fe5aa723d3bf9516320
bd0c82d5bc92ecfdf39fe5a7991e0cb790f26a00
/src/Chapter_2_Observer/weatherStationWithOutImportUtil/WetherStation.puml
3368e4f742c77ed21ac784c02a297d922b68ac27
[]
no_license
shramkoaleksey90/Head_First_Design_Patterns
74186508a1f20c07437fb6f88d5dde47dae33f92
d9188ebaab760ace34cdd2472ca10ec1925e9a1f
refs/heads/master
2021-01-14T00:10:53.346806
2020-03-10T08:48:57
2020-03-10T08:48:57
242,537,357
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,390
puml
@startuml Subject --* Observer Subject <|.. WeatherData WeatherData --* CurrentConditionsDisplay WeatherStation --* WeatherData package display { Observer <|.. CurrentConditionsDisplay Observer <|.. StatisticsDisplay Observer <|.. ThirdPartDisplay Observer <|.. ForecastDisplay Observer <|.. HeatIndexDisplay } DisplayElement <|.. CurrentConditionsDisplay DisplayElement <|.. StatisticsDisplay DisplayElement <|.. ThirdPartDisplay DisplayElement <|.. ForecastDisplay DisplayElement <|.. HeatIndexDisplay +interface Subject{ + registerObserver(Observer observer) + removeObserver(Observer observer) + notifyObserver() } +interface Observer{ + update(float temp, float humidity, float pressure) } +interface DisplayElement{ + display() } +class WeatherStation{ + {static} main() } +class WeatherData{ - ArrayList observers - float temperature - float humidity - float pressure -- + WeatherData() + setMeasurements(float temperature, float humidity, float pressure) + registerObserver(Observer observer) + removeObserver(Observer observer) + notifyObserver() - measurementsChanged() } +class CurrentConditionsDisplay{ - float temperature - float humidity - Subject weatherDate -- + CurrentConditionsDisplay(Subject weatherDate) + update(float temp, float humidity, float pressure) + display() } +class StatisticsDisplay{ - float maxTem - float minTem - float temSum - int numReadings - WeatherData weatherData -- + StatisticsDisplay(WeatherData weatherData) + update(float temp, float humidity, float pressure) + display() } +class ForecastDisplay{ - float currentPressure - float lastPressure - WeatherData weatherData -- + ForecastDisplay(WeatherData weatherData) + update(float temp, float humidity, float pressure) + display() } +class HeatIndexDisplay{ - heatIndex - WeatherData weatherData -- + HeatIndexDisplay(WeatherData weatherData) - computeHeatIndex() + update(float temp, float humidity, float pressure) + display() } class ThirdPartDisplay{ - float temperature; - float humidity; - float pressure; - WeatherData weatherData; -- + ThirdPartDisplay(WeatherData weatherData) + update(float temp, float humidity, float pressure) + display() } @enduml
69534cd3466909bfb798bfd31477baed69f68e23
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/TermFacetResultType.puml
8791fb6be7b491ffd0995bbf266fb19e8a6ac71d
[]
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
126
puml
@startuml hide methods enum TermFacetResultType { TEXT DATE TIME DATETIME BOOLEAN NUMBER } @enduml
ab16033730ce101a85cac626cfef78c22bd218ad
41189885f0fa6f54ddc6f48ad8cdf6d1e2c9f479
/out/production/GestionAsignaturas - CodigoFuente/capaInterfaz/menuConfiguracion/menuConfiguracion.plantuml
438dd358586aba12a1226123e1d99a536f64b8ee
[]
no_license
miguel-benito-martin/Practica_Migracion
af116a41842d0fb252e00286123710a2da099f85
ab3dbd3e60629aab622e84ae84930f7f46a8937e
refs/heads/main
2023-05-01T18:52:03.590117
2021-05-26T10:34:40
2021-05-26T10:34:40
366,121,731
0
1
null
null
null
null
UTF-8
PlantUML
false
false
3,396
plantuml
@startuml title __MENUCONFIGURACION's Class Diagram__\n namespace capaInterfaz { namespace menuConfiguracion { class capaInterfaz.menuConfiguracion.JDialogMenuConfiguracion { {static} + Password : String {static} + URL : String {static} + User : String {static} + botonCammbioBaseDatosPulsado : boolean {static} + color : Color - botonCambioConvocatoriaPulsado : boolean - botonCambioCursoPulsado : boolean - botonDeshacerUltimaDecisionPulsado : boolean - jButtonBackUp : JButton - jButtonCambiarConvocatoria : JButton - jButtonCambiarCurso : JButton - jButtonCancelar : JButton - jButtonOK : JButton - jButtonSelectBBDD : JButton - jPanel1 : JPanel - jPanelConfiguracion : JPanel - jTabbedPane1 : JTabbedPane + JDialogMenuConfiguracion() {static} + main() - initComponents() - jButtonBackUpActionPerformed() - jButtonCambiarConvocatoriaActionPerformed() - jButtonCambiarCursoActionPerformed() - jButtonCancelarActionPerformed() - jButtonOKActionPerformed() - jButtonSelectBBDDActionPerformed() } } } namespace capaInterfaz { namespace menuConfiguracion { class capaInterfaz.menuConfiguracion.JDialogMenuSeleccionarBDD { - jButtonBack : JButton - jButtonOK : JButton - jButtonTestConnection : JButton - jLabelPassword : JLabel - jLabelTestConnection : JLabel - jLabelURL : JLabel - jLabelUser : JLabel - jTextFieldPassword : JTextField - jTextFieldURL : JTextField - jTextFieldUser : JTextField + JDialogMenuSeleccionarBDD() - initComponents() - jButtonBackActionPerformed() - jButtonOKActionPerformed() - jButtonTestConnectionActionPerformed() - jTextFieldPasswordActionPerformed() } } } namespace capaInterfaz { namespace menuConfiguracion { class capaInterfaz.menuConfiguracion.JDialogMenuSeleccionarBDDPrimeraVez { - jButtonBack : JButton - jButtonOK : JButton - jButtonTestConnection : JButton - jLabelExplication : JLabel - jLabelPassword : JLabel - jLabelTestConnection : JLabel - jLabelURL : JLabel - jLabelUser : JLabel - jTextFieldPassword : JTextField - jTextFieldURL : JTextField - jTextFieldUser : JTextField + JDialogMenuSeleccionarBDDPrimeraVez() {static} + main() - initComponents() - jButtonBackActionPerformed() - jButtonOKActionPerformed() - jButtonTestConnectionActionPerformed() - jTextFieldPasswordActionPerformed() } } } capaInterfaz.menuConfiguracion.JDialogMenuConfiguracion -up-|> javax.swing.JDialog capaInterfaz.menuConfiguracion.JDialogMenuSeleccionarBDD -up-|> javax.swing.JDialog capaInterfaz.menuConfiguracion.JDialogMenuSeleccionarBDDPrimeraVez -up-|> javax.swing.JDialog 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
f211763c544c9e596fd0cf1850bc31d9ad9853d0
23b6d8898641351662b890c510b906aeb6380e21
/1. Design documentation/class.puml
6c19fdb56f8e4934a1bb77844d2adba50f9720ed
[]
no_license
antonianwufo/Multiverse-Bootcamp-End-Project
8d6861fce63cb7fd6236f2a2ed794926774cb631
ad14cf31e4764d96bae825da3415898695aa21ab
refs/heads/main
2023-06-29T23:32:24.127400
2021-07-30T10:14:18
2021-07-30T10:14:18
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
481
puml
@startuml Omniverse Class Diagram title Omniverse - Class Diagram class Category { description array items } object Electronics { } object Mens { } object Womens { } object Jewelery { } class Item { image Float price description } object Cart { Array items AddToCart() Checkout() } Cart "0..*" -- "many" Item Item "many" -- "1" Category Category <|-- Electronics Category <|-- Mens Category <|-- Womens Category <|-- Jewelery @enduml
6cb98c6d90c9e1ee4af3751ff423f1973fa97f78
746a34e7c063ed3a081f50e070b463b1bfab6744
/docs/uml/part/auth.Infra.puml
61fe4566199d1708406f9d61523cffd0992371e7
[]
no_license
aya-eiya/gradle-vertx-sample
e5a94275b6a865842056b325d5031b79493f1d9e
6dcf211896eebd792b0765c71b84aa19b53be344
refs/heads/master
2023-02-19T15:54:09.215226
2021-01-17T09:51:00
2021-01-17T09:51:00
307,665,709
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,857
puml
@startuml skinparam backgroundColor white skinparam linetype polyline left to right direction card "auth.Infra" as Infra { package "InMemory" as Infra.memory { together { class "InMemoryApplicationContextManager" as Infra.memory.InMemoryApplicationContextManager { +tokenRepo: SessionIDRepository +appContextRepo: ApplicationContextRepository } class "InMemoryApplicationContextRepository" as Infra.memory.InMemoryApplicationContextRepository { -data: Map[SessionID,ApplicationContext] +resetTimeout() +contextOf() +create() +putContext[T <: Context: ClassTag](context: T) } class "InMemorySessionIDRepository" as Infra.memory.InMemorySessionIDRepository { -data: MutMap[SessionID, SessionIDStatus] +create(): IO[SessionID] +verify(sessionID: SessionID): IO[SessionIDStatus] } } together { class "InMemoryEmailAuthorizer" as Infra.memory.InMemoryEmailAuthorizer { +emailRepo: MemberEmailRepository } class "InMemoryMemberEmailRepository" as Infra.memory.InMemoryMemberEmailRepository { -data: Map[AuthEmailAddress, EncryptedPassword] +exists(emailAddress: AuthEmailAddress,rawPassword: String): OptionT[IO, Boolean] } } } } package "auth.Service" as auth.Service { class "EmailAuth" as auth.Service.EmailAuth { +emailAuthorizer: EmailAuthorizer +contextManager: ApplicationContextManager +login(): LoginStatusData } } component "auth" as auth { card "UseCase" as auth.UseCase { interface "EmailAuthorizer" as auth.UseCase.EmailAuthorizer { } } card "Repository" as auth.Repository { interface "MemberEmailRepository" as auth.Repository.MemberEmailRepository { } } } component "state" as state { card "UseCase" as state.UseCase { interface "ApplicationContextManager" as state.UseCase.ApplicationContextManager } card "Repository" as state.Repository { } } component "vertx" { component "app-base"{ } } "app-base" <|-- auth.Service.EmailAuth auth.Service.EmailAuth --* Infra.memory.InMemoryEmailAuthorizer auth.Service.EmailAuth --* Infra.memory.InMemoryApplicationContextManager Infra.memory.InMemoryEmailAuthorizer --|> auth.UseCase.EmailAuthorizer Infra.memory.InMemoryEmailAuthorizer --* Infra.memory.InMemoryMemberEmailRepository Infra.memory.InMemoryMemberEmailRepository --|> auth.Repository.MemberEmailRepository Infra.memory.InMemoryApplicationContextManager --* Infra.memory.InMemorySessionIDRepository Infra.memory.InMemoryApplicationContextManager --* Infra.memory.InMemoryApplicationContextRepository Infra.memory.InMemoryApplicationContextManager --|> state.UseCase.ApplicationContextManager Infra.memory.InMemoryEmailAuthorizer -- Infra.memory.InMemoryApplicationContextManager @endtuml
9c5c951c51cf4f84b40df69c8456bf8342568d74
36d4c9a57b53f5e14acb512759b49fe44d9990d8
/geekbrains_java_0/l2_test/classes.plantuml
16b167df3bf8e2445471eca9a11bb71af403adfe
[]
no_license
yosef8234/test
4a280fa2b27563c055b54f2ed3dfbc7743dd9289
8bb58d12b2837c9f8c7b1877206a365ab9004758
refs/heads/master
2021-05-07T22:46:06.598921
2017-10-16T18:11:26
2017-10-16T18:11:26
107,286,907
4
2
null
null
null
null
UTF-8
PlantUML
false
false
3,470
plantuml
@startuml top to bottom direction skinparam headerFontSize 30 skinparam headerFontStyle bold skinparam classAttributeIconSize 0 scale 1.0 package ex0_seabattle { class ex0_seabattle.Main { .. Methods .. .. Static .. + {static} main() : void } class ex0_seabattle.Field { .. Fields .. ~cells : char[] ~ships : Ship[] .. Methods .. ~doShoot(int) : void -drawShip(Ship) : void ~init() : void ~isNotGameOver() : boolean ~setShips() : void ~show() : void .. Static .. + {static} SHIPS_AMOUNT : int ~ {static} SIZE : int } class ex0_seabattle.Ship { .. Fields .. ~positionEnd : int ~positionStart : int ~size : int .. Methods .. ~initWithRandomPositionAndSize() : void ~isIntersectWithAnotherShip(Ship) : boolean } class ex0_seabattle.Player { .. Methods .. ~getShoot() : int } } package ex0_stackoverflow { class ex0_stackoverflow.Main { .. Fields .. .. Methods .. .. Static .. + {static} main() : void - {static} i : int - {static} test() : void } } package ex1_arraylist { class ex1_arraylist.Ship { } class ex1_arraylist.Main2 { .. Methods .. .. Static .. + {static} main() : void } class ex1_arraylist.Main3 { .. Methods .. .. Static .. + {static} main() : void } } package ex2_static { class ex2_static.Main1 { .. Methods .. .. Static .. + {static} main() : void } class ex2_static.Field { .. Fields .. ~cells : char[] .. Methods .. ~show() : void .. Static .. ~ {static} instance : Field } class ex2_static.Cat { .. Fields .. ~age : int ~name : String .. Methods .. ~about() : void ~showCatsAmount() : void .. Static .. ~ {static} catsAmount : int ~ {static} staticShowCatsAmount() : void } class ex2_static.Main { .. Methods .. .. Static .. + {static} main() : void } class ex2_static.SuperField { .. Fields .. .. Methods .. .. Static .. + {static} getInstance() : SuperField - {static} ourInstance : SuperField } class ex2_static.Point { .. Fields .. -x : int -y : int .. Methods .. +getX() : int +getY() : int +setX(int) : void +setY(int) : void .. Static .. + {static} getRandomPoint() : Point } } package ex3_equals { class ex3_equals.Main { .. Methods .. .. Static .. + {static} main() : void } class ex3_equals.Main2 { .. Methods .. .. Static .. + {static} main() : void } class ex3_equals.Cat { .. Fields .. ~age : int ~name : String .. Methods .. ~about() : void +equals(Object) : boolean +hashCode() : int ~showCatsAmount() : void .. Static .. ~ {static} catsAmount : int ~ {static} staticShowCatsAmount() : void } } package ex4_inc { class ex4_inc.Date { .. Fields .. -day : int -month : int -year : int .. Methods .. +getDay() : int +getMonth() : int +getYear() : int +setDay(int) : void +setMonth(int) : void +setYear(int) : void +show() : void } class ex4_inc.Main { .. Methods .. .. Static .. + {static} main() : void } } package ex5_oop { class ex5_oop.Feline <? extends Animal> { .. Fields .. ~eye : String } class ex5_oop.Lion <? extends Feline> { } class ex5_oop.Crocodile <? extends Animal> { } class ex5_oop.Dog <? extends Animal> { } class ex5_oop.Animal { .. Fields .. ~age : int ~name : String .. Methods .. ~about() : void } class ex5_oop.Cat <? extends Feline> { .. Fields .. ~home : String ~murrString : String } class ex5_oop.Main { .. Methods .. .. Static .. + {static} main() : void } } ex5_oop.Animal <|-- ex5_oop.Feline ex5_oop.Feline <|-- ex5_oop.Lion ex0_seabattle.Field *-- "0..*" ex0_seabattle.Ship ex5_oop.Animal <|-- ex5_oop.Crocodile ex5_oop.Animal <|-- ex5_oop.Dog ex5_oop.Feline <|-- ex5_oop.Cat @enduml
d66264c57293db35f9ec9ab0e65f13374e8e640b
07b0fd9f1ad48c9611fd70a3f62bcd4afc27d865
/app/src/main/java/com/example/procomsearch/searcher/searcher.plantuml
447d273ed1d28f86ca20a12948505c79d5280d10
[]
no_license
cyberflax2020/COMP2100_6442_S2_2020_GROUP_PROJECT
9c668698b4722c73a85d8f850414a35b4579b761
51ca21a4e3e62d25f7a1d60674cce51a313d3b57
refs/heads/main
2023-04-14T22:04:12.605649
2021-05-08T16:33:57
2021-05-08T16:33:57
365,550,501
1
1
null
null
null
null
UTF-8
PlantUML
false
false
690
plantuml
@startuml title __SEARCHER's Class Diagram__\n namespace com.example.procomsearch { namespace searcher { class com.example.procomsearch.searcher.Searcher { {static} - database_reader : Database_reader {static} - rst : ArrayList<Company_Index> {static} + getAllComps() {static} + getAllPromotedSortedList() {static} + search() {static} + setDatabase_reader() {static} + sortCompanies() } } } 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
e211afdc9e6e6e56dccbfb4cc924c28a10e72685
1e557a8d0b755ce2d66458e43dcd426dd8f27fec
/阅读代码/android/优化算法/LruCache.plantuml
dd6de476d74511a01ed9ed0dbb78283ffe87a77c
[]
no_license
rickgit/rickgit.github.io
94ff804637d1fe891583c9c1513a9b65b86361f5
5891f01bdd8ca1231cd9977a68960e11e28688f4
refs/heads/master
2023-08-29T21:35:00.999632
2023-08-12T04:40:16
2023-08-12T04:40:16
52,088,713
4
0
null
null
null
null
UTF-8
PlantUML
false
false
499
plantuml
@startuml skinparam monochrome true skinparam classBackgroundColor transparent skinparam style strictuml class LruCache { private final LinkedHashMap<K, V> map; /** Size of this cache in units. Not necessarily the number of elements. */ private int size; private int maxSize; private int putCount; private int createCount; private int evictionCount; private int hitCount; private int missCount; protected int sizeOf(String key, Bitmap bitmap) } @enduml
2a1ff65e52e98a5a027e2f40927b3de6de39d7c8
d914ee1960a6dd57539085db620607105386a049
/docs/diagrams/statistic_frag.iuml
598e60bf7a720eb51830871c283ae39ac895b3c2
[ "BSD-3-Clause" ]
permissive
LSSTDESC/firecrown
015cf8fbaa087786ceb9d186e06710e14d9c4307
8b2ce0d218751cc622759441bfe8d1063a49f35f
refs/heads/master
2023-08-25T03:04:36.362768
2023-08-14T20:17:23
2023-08-14T20:17:23
72,570,187
26
7
BSD-3-Clause
2023-08-28T22:45:03
2016-11-01T19:39:51
Python
UTF-8
PlantUML
false
false
209
iuml
abstract class Statistic { + {abstract} read(data : sacc.Sacc) + {abstract} compute_theory_vector(cosmo: pyccl.Cosmology) : np.array + {abstract} compute_data_vector(cosmo: pyccl.Cosmology) : np.array }
65a474fdf8ce41642a097340984554781e40f12c
47dcd80b47d5648274f9a4443513593dbcc9e810
/fuzzing/图片/UML/2_break_thing_with_random_input.plantuml
3ff558ede5d6ee2ff3b7d0082c5a6da550390d64
[]
no_license
lvkeeper/programming-language-entry-record
e02335d8745167cb267d07e63a4384e4f1e1cadf
da9bdc488686da6cc5dca89bd13164c44e7bd3fd
refs/heads/master
2023-04-20T10:49:16.464648
2021-05-26T10:20:28
2021-05-26T10:20:28
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,645
plantuml
@startuml 2_break_thing_with_random_input class Runner{ PASS = "PASS" FAIL = "FAIL" UNRESOLVED = "UNRESOLVED" __init__(self) (inp, self.UNRESOLVED) run(self,inp) } note right of Runner Runner为基类(不是抽象类) 使用inp作为输入 返回结果和三种结果状态中的一种 此时init和run方法啥也没干 end note class ProgramRunner{ program __init__(self,program) run_process(self,inp="") (result,outcome) run(self,inp="") } Runner <|-- ProgramRunner note right of ProgramRunner ProgramRunner类继承Runner类 init方法读取将要运行的程序名 run方法读取输入,并调用run_process,将输入传递给run_process run_process使用子进程运行程序 end note class Fuzzer{ __init__(self) string fuzz(self) (result,outcome) run(self,runner=Runner()) (result,outcome)[] runs(self,runner=PrintRunner(),trials) } Fuzzer ..> Runner note right of Fuzzer Fuzzer是一个基础类 fuzz方法生成测试的输入内容 run方法使用Runner类生成的一个对象来运行被测试程序; 被测试的程序使用fuzz方法生成的内容作为输入 runs方法多次调用run方法,调用次数为trials end note class RandomFuzzer{ __init__(self, min_length, max_length,char_start, char_range) string fuzz(self) } RandomFuzzer --|> Fuzzer note right of RandomFuzzer RandomFuzzer继承Fuzzer类 init方法读取参数:随机字符串的最小长度、最大长度、字符的开始值、字符的最大值 fuzz根据参数的限制,随机生成字符串 end note @enduml
358539fd8091b6b5cfed028bb2de6253bbbd2e9c
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ItemShippingDetailsDraft.puml
438a4b4117ed5b8c1dd3f04a30c32274567b318f
[]
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
11,628
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 ItemShippingDetailsDraft [[ItemShippingDetailsDraft.svg]] { targets: [[ItemShippingTarget.svg List<ItemShippingTarget>]] } interface CustomLineItemDraft [[CustomLineItemDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] key: String quantity: Long money: [[Money.svg Money]] slug: String taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] priceMode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]] } interface LineItemDraft [[LineItemDraft.svg]] { key: String productId: String variantId: Long sku: String quantity: Long addedAt: DateTime distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] perMethodExternalTaxRate: [[MethodExternalTaxRateDraft.svg List<MethodExternalTaxRateDraft>]] inventoryMode: [[InventoryMode.svg InventoryMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface CartAddCustomLineItemAction [[CartAddCustomLineItemAction.svg]] { action: String money: [[Money.svg Money]] name: [[LocalizedString.svg LocalizedString]] key: String quantity: Long slug: String taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] priceMode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]] } interface CartAddLineItemAction [[CartAddLineItemAction.svg]] { action: String key: String productId: String variantId: Long sku: String quantity: Long addedAt: DateTime distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] inventoryMode: [[InventoryMode.svg InventoryMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface CartRemoveLineItemAction [[CartRemoveLineItemAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] shippingDetailsToRemove: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface CartSetCustomLineItemShippingDetailsAction [[CartSetCustomLineItemShippingDetailsAction.svg]] { action: String customLineItemId: String customLineItemKey: String shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface CartSetLineItemShippingDetailsAction [[CartSetLineItemShippingDetailsAction.svg]] { action: String lineItemId: String lineItemKey: String shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface MyLineItemDraft [[MyLineItemDraft.svg]] { key: String productId: String variantId: Long sku: String quantity: Long addedAt: DateTime supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface MyCartAddLineItemAction [[MyCartAddLineItemAction.svg]] { action: String key: String productId: String variantId: Long sku: String quantity: Long addedAt: DateTime distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface MyCartRemoveLineItemAction [[MyCartRemoveLineItemAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] shippingDetailsToRemove: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface MyCartSetLineItemShippingDetailsAction [[MyCartSetLineItemShippingDetailsAction.svg]] { action: String lineItemId: String lineItemKey: String shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface StagedOrderAddCustomLineItemAction [[StagedOrderAddCustomLineItemAction.svg]] { action: String money: [[Money.svg Money]] name: [[LocalizedString.svg LocalizedString]] key: String quantity: Long slug: String taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] priceMode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface StagedOrderAddLineItemAction [[StagedOrderAddLineItemAction.svg]] { action: String key: String productId: String variantId: Long sku: String quantity: Long addedAt: DateTime distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]] inventoryMode: [[InventoryMode.svg InventoryMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface StagedOrderRemoveLineItemAction [[StagedOrderRemoveLineItemAction.svg]] { action: String lineItemId: String lineItemKey: String quantity: Long externalPrice: [[Money.svg Money]] externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]] shippingDetailsToRemove: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface StagedOrderSetCustomLineItemShippingDetailsAction [[StagedOrderSetCustomLineItemShippingDetailsAction.svg]] { action: String customLineItemId: String customLineItemKey: String shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface StagedOrderSetLineItemShippingDetailsAction [[StagedOrderSetLineItemShippingDetailsAction.svg]] { action: String lineItemId: String lineItemKey: String shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface CustomLineItemImportDraft [[CustomLineItemImportDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] key: String slug: String quantity: Long money: [[Money.svg Money]] taxRate: [[TaxRate.svg TaxRate]] taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] priceMode: [[CustomLineItemPriceMode.svg CustomLineItemPriceMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] state: [[ItemState.svg List<ItemState>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface LineItemImportDraft [[LineItemImportDraft.svg]] { name: [[LocalizedString.svg LocalizedString]] key: String variant: [[ProductVariantImportDraft.svg ProductVariantImportDraft]] productId: String quantity: Long price: [[PriceDraft.svg PriceDraft]] taxRate: [[TaxRate.svg TaxRate]] distributionChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] supplyChannel: [[ChannelResourceIdentifier.svg ChannelResourceIdentifier]] inventoryMode: [[InventoryMode.svg InventoryMode]] shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] state: [[ItemState.svg List<ItemState>]] custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } interface OrderSetCustomLineItemShippingDetailsAction [[OrderSetCustomLineItemShippingDetailsAction.svg]] { action: String customLineItemId: String customLineItemKey: String shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } interface OrderSetLineItemShippingDetailsAction [[OrderSetLineItemShippingDetailsAction.svg]] { action: String lineItemId: String lineItemKey: String shippingDetails: [[ItemShippingDetailsDraft.svg ItemShippingDetailsDraft]] } ItemShippingDetailsDraft --> CustomLineItemDraft #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> LineItemDraft #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> CartAddCustomLineItemAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> CartAddLineItemAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> CartRemoveLineItemAction #green;text:green : "shippingDetailsToRemove" ItemShippingDetailsDraft --> CartSetCustomLineItemShippingDetailsAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> CartSetLineItemShippingDetailsAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> MyLineItemDraft #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> MyCartAddLineItemAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> MyCartRemoveLineItemAction #green;text:green : "shippingDetailsToRemove" ItemShippingDetailsDraft --> MyCartSetLineItemShippingDetailsAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> StagedOrderAddCustomLineItemAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> StagedOrderAddLineItemAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> StagedOrderRemoveLineItemAction #green;text:green : "shippingDetailsToRemove" ItemShippingDetailsDraft --> StagedOrderSetCustomLineItemShippingDetailsAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> StagedOrderSetLineItemShippingDetailsAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> CustomLineItemImportDraft #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> LineItemImportDraft #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> OrderSetCustomLineItemShippingDetailsAction #green;text:green : "shippingDetails" ItemShippingDetailsDraft --> OrderSetLineItemShippingDetailsAction #green;text:green : "shippingDetails" @enduml
38b9845146420dd6e4bb6561a39a721e8620459d
9cffb6f01a73e220a23fac7c603d1589e6f3342c
/diagram.puml
cdb89d1d73892c80648b1fa1abd8c174cb17c26a
[]
no_license
Neerajsh8851/framework
8d946a19fde37dcf67109be95c1135fd4d153811
bb5df992fa05de27160c820f5f296a751031cd35
refs/heads/master
2023-05-02T01:18:58.630911
2021-05-09T20:31:05
2021-05-09T20:31:05
365,494,368
0
0
null
null
null
null
UTF-8
PlantUML
false
false
893
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 '} BaseActor <|-- AnimeActor BaseActor <|-- DActor BaseActor <|-- FActor AnimeActor <|-- FAnimeActor AnimeActor <|-- DAnimeActor abstract class BaseActor { public BaseActor(float x, float y, Stage stage) protected draw(Batch batch, TextureRegion texture) } class AnimeActor { public AnimeActor(float x, float y, Stage stage) private Animation<TextureRegion> createAnimationByImages(String[] name, ) createAnimationBySpriteSheet() } class FAnimeActor class DAnimeActor class FActor class DActor @enduml
6534e639081b80791e62aaac1e3b718932628d73
fe637e269d77235f784ef2b1247ec671a2758cff
/cart-service/src/main/java/com/groupjn/cartservice/configuration/configuration.plantuml
e0a8926b497120b352c1b460ecf33172197a80f1
[]
no_license
Software-Architecture-CS5722-Group/E-commerce
69ae28d633d69d72e3f5bda04cecb746d6d53030
7defdcb8bb16f28bc57d2d23db02544253304084
refs/heads/main
2023-07-17T09:05:40.188643
2021-05-24T23:12:35
2021-05-24T23:12:35
363,711,507
0
0
null
null
null
null
UTF-8
PlantUML
false
false
462
plantuml
@startuml title __CONFIGURATION's Class Diagram__\n namespace com.groupjn.cartservice { namespace configuration { class com.groupjn.cartservice.configuration.ShoppingConfiguration { {static} + validationWithHashMap() } } } 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
9c322147225fa19a7a49d8ab1672d37f8429bbc3
8c555187950d10a13a62f6a6c8d20af3230a925e
/diagrams/common.puml
79aedd2861d71ede4858c97c3f9f911adc2e8ce0
[ "Apache-2.0" ]
permissive
Mayur0307/assignment
1dc177307bed29600165a19ca0d3db70fdee4f2b
187f9541717c03fb4edecbed66553eca317406c5
refs/heads/master
2021-12-05T09:59:00.481640
2015-03-12T21:36:05
2015-03-12T21:36:05
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
147
puml
@startuml package "ru.assignment.chat.common" #DDDDDD { class ChatMessage { -String text +String getMessage() } } @enduml
5f019b4ab11627bcb3b1f610dd4f4bd6196cfa45
7e361e102357c45a4e58c934012448affd1e1556
/out/production/singleResponsibility/top/liumuge/uml/dependence/dependence.puml
ef927a2f0866fc45bbd7d32f84702730d6131c5b
[]
no_license
lcopilot/DesignPattern-learn
c01bb0a1c6aa41a6340b5e27fbfe65da9addb001
c21cfeeefbbe98fb14d0c4ff1b2361c7c94c8c1e
refs/heads/master
2022-11-25T12:38:29.726146
2020-08-04T13:47:39
2020-08-04T13:47:39
284,993,638
1
0
null
null
null
null
UTF-8
PlantUML
false
false
358
puml
@startuml '依赖关系' PersonServiceBean...>IDCard PersonServiceBean...>Person PersonServiceBean...>PersonDao PersonServiceBean...>Department class IDCard{ } class Person{ } class PersonDao{ } class Department{ } class PersonServiceBean{ - personDao:PersonDao + save(person:Person):void + getIDCard(personid:Integer):IDCard + modify():void } @enduml
7ce0be94316eea6c7f7f9ff785813989a2eb6682
2cb5704e6bfcb1657a169afab3906b004ef06b5f
/assets/uml/KitchenHatch.plantuml
ec053d1c1f89fbfd366a6cf7be43306b82d6c5c7
[ "MIT" ]
permissive
noopliez/10-threads-android
701ee008fccd1d933e11e7e09898f5ec528061dc
15ff794ade915a5e24f66f0072be992d6aaafd32
refs/heads/master
2022-04-05T11:41:55.541217
2020-02-04T13:08:18
2020-02-04T13:08:18
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
494
plantuml
@startuml KitchenHatch package de.fhro.inf.prg3.a10.kitchen { +interface KitchenHatch { getMaxDishes(): int getOrderCount(): int getDishesCount(): int dequeueOrder(): Order dequeueOrder(timeout: long): Order dequeueDish(): Dish dequeueDish(timeout: long): Dish enqueueDish(dish: Dish) } +class KitchenHatchImpl implements KitchenHatch { +KitchenHatchImpl(maxMeals: int, orders: Deque<Order>) } } @enduml
694dccd1323d3509ccf4d1d6f2b564fff04f22e0
0416b8caa2a1a01e971999f29a3747e804d36bbc
/docs/ex41.puml
61becb83057df8c187d5733d71ed4304a75501ac
[]
no_license
Jerry-235/Pike-cop3330-assignment3
6feb3092627d30402b51bb1f42f6812e8494e33d
be07b5fcd93fd646c449de85d1df2415a003c256
refs/heads/master
2023-08-20T00:00:26.238092
2021-10-12T03:07:02
2021-10-12T03:33:50
416,171,042
0
0
null
null
null
null
UTF-8
PlantUML
false
false
297
puml
@startuml abstract class main { +scanner +array +read names and sort try for success } class writeNames { +file writer +output to .txt } class readNames { +while input exist +add to new line } main <|-- writeNames readNames --> writeNames main <|-- readNames @enduml
7d2af78dc15bfdfac5324afbeafabc817d48e6ec
331b5fb9eb6c392092ab8826181261276b854181
/libraries/Catena-Arduino-Platform/assets/cFramStorage.puml
233819eba955365135b57974d474307d25919624
[ "MIT" ]
permissive
cornell-eerl-iot/iotHardware
ceabd45968856e826ee94e5ccb52739687d795b4
a1213cb57c569850a1fd4da2f1a77617d92c6812
refs/heads/master
2020-03-20T10:24:20.510006
2018-07-02T14:59:00
2018-07-02T14:59:00
137,369,594
2
0
null
2018-08-07T03:55:49
2018-06-14T14:33:22
C++
UTF-8
PlantUML
false
false
1,413
puml
@startuml /' PlantUML image for FRAM '/ namespace McciCatena { class cFramStorage { +enum StandardKeys +typedef uint32_t Offset; +{static}const StandardItem vItemDefs[]; } class cFramStorage::StandardItem { -uint32_t makeValue(); +uint32_t getSize(); +StandardKeys getKey(); +bool isNumber(); +bool isReplicated(); +const GUID *getGuid(); -uint32_t uValue; } class cFramStorage::ObjectRaw { +uint32_t uSizeKey +GUID Guid +uint8_t uKey +uint8_t uVer[3] +bool isStandard() +cFramStorage::Object *getStandardObject() } class cFramStorage::Object { +uint16_t getObjectSize() +uint16_t nextObjectOffset(); +uint16_t getObjectClicks(); +bool setObjectSize(); +uint16_t hasValidSize(); +uint16_t getDataSize(); +bool matchesGuid(); +int getKey(); +{static}uint16_t neededClicks(); +bool validDataSize(); +bool isReplicated(); +unsigned nReplicants(); +uint32_t offsetOfReplicant(); +uint8_t getCurrent(); +uint8_t setCurrent(); +uint8_t *getDiscriminatorBuffer(); +size_t getDiscriminatorBufferSize(); +size_t offsetOfDiscriminator(); +size_t getBufferSize(); +uint8_t *getBuffer(); +bool initialize(); +bool isValid(); } cFramStorage "1" *--> "kMax" cFramStorage::StandardItem : vItemDefs[] class cFramStorage::StandardKeys cFramStorage *--> cFramStorage::StandardKeys cFramStorage::ObjectRaw <|-- "cFramStorage::Object" } @enduml
56f667631866512f06a6de2e3c1ce9e2a84cef00
a22c0329bd4e7cbe9bbf31d10f718719eb4ba5a8
/UML/class_diagram.puml
9f55f3951a1da28bc46c19232ec56b302a7f8bd7
[]
no_license
BerIgor/Robopop
c1815c628010abef9451ead5a2de9bce454fae6d
055390646f2ce09034c6e4de3e8fb1b3f78e959f
refs/heads/master
2021-01-15T14:23:14.946887
2017-10-24T13:09:33
2017-10-24T13:09:33
99,692,165
0
0
null
2017-08-12T15:15:33
2017-08-08T12:49:39
Java
UTF-8
PlantUML
false
false
1,275
puml
@startuml class AppCompatActivity AppCompatActivity <|-- StartupActivity AppCompatActivity <|-- MainActivity class StartupActivity { -selectedPower: int -selectedSound: int +dialogSoundConstructor() +dialogPowerConstructor() } StartupActivity .. MainActivity class MainActivity { +popIndexList: LinkedList<Integer> +bufferSize: int +recording: short[][] -audioRecorder: AudioRecord -mediaPlayer: MediaPlayer +stopAll() } class RecorderTask class ProcessorTask MainActivity "1 " +-- RecorderTask MainActivity "1 " +-- ProcessorTask MainActivity "1" *-- StopCondition MainActivity "1" *-- PeakFinder MainActivity "1" *-- PeakFinderFactory interface StopCondition { #popList: LinkedList<Integer> +conditionSatisfied() +getCurrentCondition() } class CountingCondition class IntervalCondition StopCondition <|-- CountingCondition StopCondition <|-- IntervalCondition interface PeakFinder { getPops() reset() factor popWidth } class PeakFinderFactory { getPeakFinder() } class ZamirBerendorf class MovingAverage PeakFinder <-- PeakFinderFactory: creates PeakFinder <|-- ZamirBerendorf PeakFinder <|-- MovingAverage class AsyncTask AsyncTask <|-- RecorderTask AsyncTask <|-- ProcessorTask @enduml
a6b25bd5e6f6a648900234eda10503cdb1c75da9
3150c7ff97d773754f72dabc513854e2d4edbf04
/P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/main/java/org/concordion/api/extension/extension.plantuml
ed663e0ba4c922bd8a3fd4d1af6d60fed0e4d868
[ "WTFPL", "Apache-2.0" ]
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
2,451
plantuml
@startuml title __EXTENSION's Class Diagram__\n package org.concordion { package org.concordion.api { package org.concordion.api.extension { interface ConcordionExtender { {abstract} + withCommand() {abstract} + withAssertEqualsListener() {abstract} + withAssertTrueListener() {abstract} + withAssertFalseListener() {abstract} + withExecuteListener() {abstract} + withSetListener() {abstract} + withRunListener() {abstract} + withVerifyRowsListener() {abstract} + withThrowableListener() {abstract} + withDocumentParsingListener() {abstract} + withSpecificationProcessingListener() {abstract} + withExampleListener() {abstract} + withOuterExampleListener() {abstract} + withBuildListener() {abstract} + withResource() {abstract} + withEmbeddedCSS() {abstract} + withEmbeddedCSS() {abstract} + withLinkedCSS() {abstract} + withEmbeddedJavaScript() {abstract} + withLinkedJavaScript() {abstract} + withSource() {abstract} + withTarget() {abstract} + withSpecificationLocator() {abstract} + withRunStrategy() {abstract} + withBreadcrumbRenderer() {abstract} + withSpecificationType() } } } } package org.concordion { package org.concordion.api { package org.concordion.api.extension { interface ConcordionExtension { {abstract} + addTo() } } } } package org.concordion { package org.concordion.api { package org.concordion.api.extension { interface ConcordionExtensionFactory { {abstract} + createExtension() } } } } package org.concordion { package org.concordion.api { package org.concordion.api.extension { interface Extension { } } } } package org.concordion { package org.concordion.api { package org.concordion.api.extension { interface Extensions { {abstract} + value() } } } } 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
c55d186b062b7e883bc8dd1ad03276fa73478ff8
8f18b6f5eb73b1f84d73fc4e77f8795333d89702
/src/main/java/UML/ClassDiagram.puml
31f2ebad893a1c18a2bd167c0dd53aaf30e1d773
[]
no_license
NikolajX4000/Sem2Exam
2b132d7733aaa7a0340cdca99eb80697f109d3a4
2e74cda6d83cab6c190be7959fc94d0985a346e0
refs/heads/master
2020-03-10T17:37:13.385377
2018-06-01T15:48:31
2018-06-01T15:48:31
129,504,246
3
0
null
2018-06-01T15:35:36
2018-04-14T09:50:11
Java
UTF-8
PlantUML
false
false
1,130
puml
@startuml class Employee{ -int id -String name -String password } class Material{ -int id -String name -int price -int size -String description -int unitSize } class Order{ -int id -String stringId -List<PartLine> partsList -int price -int materialPrice -String name -String address -int zipCode -String City -String phone -String email -String note -int width -int length -int roof -int angle -int shedWidth -int shedLength -String placed -String status +int calculatePrice() +boolean hasShed() +boolean isFlat() +String getStatusColor() +String generateStringId(int amount) +String getStringId() +String getDrawingSide() +String getDrawingTop() +List<PartLine> getPartList() } class PartLine{ -Material material -int size -int amount -int unit -String description +calculatePrice() } class Roof{ -int ID -String NAME -int TYPE } Order "*" -left- "1" Roof Order "1" -right- "*" PartLine PartLine "*" -- "1" Material @enduml
2126439ec95d157e9b3d8d90d503efa31906d0f5
12d22393334f51dbfe8b15c3838bf19353d6a12d
/showcontrol4j-core/src/main/java/com/showcontrol4j/exception/exception.plantuml
76f98d436c450d60695e12730287e15c5693b3fc
[ "Apache-2.0" ]
permissive
JamesHare/ShowControl4J
0179f9b27dc6f62a94202862566e5a402cffa49d
9419cc26aae596895821385fe64a74caccec33a9
refs/heads/master
2021-06-17T17:37:35.024337
2021-05-02T03:00:59
2021-05-02T03:00:59
202,650,026
0
0
Apache-2.0
2020-10-13T20:26:54
2019-08-16T03:13:34
Java
UTF-8
PlantUML
false
false
1,314
plantuml
@startuml title __EXCEPTION's Class Diagram__\n namespace com.showcontrol4j.exception { class com.showcontrol4j.exception.NullBrokerConnectionFactoryException { + NullBrokerConnectionFactoryException() + NullBrokerConnectionFactoryException() } } namespace com.showcontrol4j.exception { class com.showcontrol4j.exception.NullBrokerHostException { + NullBrokerHostException() + NullBrokerHostException() } } namespace com.showcontrol4j.exception { class com.showcontrol4j.exception.NullMessageExchangeException { + NullMessageExchangeException() + NullMessageExchangeException() } } namespace com.showcontrol4j.exception { class com.showcontrol4j.exception.NullMessageExchangeNameException { + NullMessageExchangeNameException() + NullMessageExchangeNameException() } } namespace com.showcontrol4j.exception { class com.showcontrol4j.exception.NullSCFJMessageCommandException { + NullSCFJMessageCommandException() + NullSCFJMessageCommandException() } } 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
f51c75347ce0d805613623d207692d64211875a5
786b8d255485f952a5761abff55a191fd736dc1e
/main/java/com/gmail/ib/projectCrypt/backend/cryptData/cryptData.plantuml
d061e0bfe9866e6fc34b2603b292f3681b68e41b
[]
no_license
notd5a-alt/projectCrypt
3e5149217bde9b573b674beecc99e9a09fa70319
2f46d41160963bc4f78b49e5ad6a9db6b8ac7845
refs/heads/master
2022-04-11T10:50:28.626265
2020-03-24T11:39:07
2020-03-24T11:39:07
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,071
plantuml
@startuml title __CRYPTDATA's Class Diagram__\n namespace com.gmail.ib.projectCrypt { namespace backend.cryptData { class com.gmail.ib.projectCrypt.backend.cryptData.API { {static} - apiKey : String {static} + main() {static} - jsonDataParser() {static} - makeAPICall() {static} - updateDB() } } } namespace com.gmail.ib.projectCrypt { namespace backend.cryptData { class com.gmail.ib.projectCrypt.backend.cryptData.SQLConnector { + SQLConnection() } } } namespace com.gmail.ib.projectCrypt { namespace backend.cryptData { class com.gmail.ib.projectCrypt.backend.cryptData.cryptCurrencyPriceData { - dateAdded : String - market_cap : double - name : String - percentChange_24h : double - percent_change_1h : double - percent_change_7d : double - price : double - slug : String - symbol : String - volume_24h : double + cryptCurrencyPriceData() + cryptCurrencyPriceData() + cryptCurrencyPriceData() + cryptCurrencyPriceData() + getDateAdded() + getMarket_cap() + getName() + getPercentChange_24h() + getPercent_change_1h() + getPercent_change_7d() + getPrice() + getSlug() + getSymbol() + getVolume_24h() + setDateAdded() + setMarket_cap() + setName() + setPercentChange_24h() + setPercent_change_1h() + setPercent_change_7d() + setPrice() + setSlug() + setSymbol() + setVolume_24h() } } } com.gmail.ib.projectCrypt.backend.cryptData.cryptCurrencyPriceData .up.|> java.io.Serializable right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
88d30b3cb3e3d6bfc06db82b0674d72b2ed1bb5d
ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb
/projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/objects/restaurantItem/PromotionItem.puml
ee6df4347ad1dc1dcf0e6f255a1d7226dee8a7bd
[]
no_license
itachi1706/How-to-use-Git-NTUSCSE1819-Site
d6fcba79d906e9916c3961b11a6e1318d8a0f602
dbce2f56b42e15be96bd40fd63e75389d397ca34
refs/heads/master
2021-07-12T15:24:44.197085
2020-08-01T12:31:23
2020-08-01T12:31:23
172,893,030
0
0
null
null
null
null
UTF-8
PlantUML
false
false
779
puml
@startuml class PromotionItem [[../sg/edu/ntu/scse/cz2002/objects/restaurantItem/PromotionItem.html]] { -promoMain: int -promoDessert: int -promoDrink: int +PromotionItem(promoID:int, promoName:String, promoPrice:double, promoMain:int, promoDessert:int, promoDrink:int) +PromotionItem(csv:String[]) +toCsv(): String[] +getPromoMain(): int +setPromoMain(promoMain:int): void +getPromoDessert(): int +setPromoDessert(promoDessert:int): void +getPromoDrink(): int +setPromoDrink(promoDrink:int): void +printPromotionDetail(): String {static} +retrievePromotion(targetPromoID:int): PromotionItem } center footer UMLDoclet 1.1.3, PlantUML 1.2018.12 @enduml
d33d637332c01e3d91f18dd0e0bd1b0f71ff4933
f576ded7c7322e8bb02ac9334761cafcf0106385
/Facade/General/out/ClassC.puml
2e2ea64c6456864fc7f4a8893a9c5199cee6db48
[]
no_license
Zukky55/design_pattern
233c7befca30d98af43804450c41f9fea36e4b0e
512464b01c23029db879b48a3e5533ec910724e8
refs/heads/master
2023-01-10T17:34:28.021070
2020-11-17T06:13:51
2020-11-17T06:13:51
304,786,374
0
0
null
null
null
null
UTF-8
PlantUML
false
false
52
puml
@startuml class ClassC { + c() : void } @enduml
35fb256ff5eb0e0f98c48392afb2f0823a486178
c2b83ffbeb0748d1b283e093f0b987bdbc3d27ac
/docs/uml-class-diagrams/middleware01/production/MiddlewareGisManagerImplementation/MiddlewareGisManagerImplementation.puml
cdd203661d367cb7f59c26a6ef642e9e5beaf8d3
[]
no_license
Slackjaw1431/csi-3370-software-project
79666760712ee4625bea3daea48c7072e7826465
af44ad1066695e4f9eff74eda79cebef3ad2b1af
refs/heads/main
2023-03-23T23:03:17.404846
2021-03-17T18:52:02
2021-03-17T18:52:02
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
660
puml
@startuml MiddlewareGisManagerImplementation package edu.oakland.production.middleware01 { class MiddlewareGisManagerImplementation { - DatabaseGisInterface databaseGisInterface - LocationDataPoint locationDataPoint - Satellite satelliteSignal __ + MiddlewareGisManagerImplementation(DatabaseGisInterface databaseGisInterface) .. Use Case 1 .. + String receieveGpsSignalStrength(Satellite satelliteSignal) + void storeLocationDataPoint() .. Use Case 2 .. + String evaluateGpsSignalStrength(Satellite satellite) - boolean isStrongEnough(int strength) } } @enduml
de90f0123e8e2f878c19aac7c331ee630531c24f
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Window/TimelineWindow_TimeCursor.puml
94c45d2158ae997783e35bda8c5172b3588c5590
[]
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
329
puml
@startuml class TimelineWindow <<partial>> { TimeCursorGUI(area:TimelineItemArea) : void CanDrawTimeCursor(area:TimelineItemArea) : bool DrawTimeOnSlider() : void DrawTimeCursor(drawHead:bool, drawline:bool) : void OnTrackHeadDrag(newTime:double) : void } TimelineWindow --> "m_PlayHead" TimeAreaItem @enduml
2ea65e3e72574660ae7d9219f3cd0c40c0b60423
b8c6790ad2e3127198119282917cc94e010b251e
/samples/plantuml/common.puml
bc12f2d974e4a51fb14de1413a7d1d773d1a5e5a
[ "Apache-2.0" ]
permissive
Document-Collection/image-processing
dd9b6ed9b1bac2c71f70cd54ccc534b42b342383
142fc4096b0657afb6d14a749aa20bb0aa556efa
refs/heads/master
2023-04-01T00:43:03.278522
2021-03-25T05:56:25
2021-03-25T05:56:25
163,918,449
14
2
null
null
null
null
UTF-8
PlantUML
false
false
100
puml
@startuml scale 300*200 title 第一行bababa\n第二行bababa class Hello { + hi: int } @enduml
260fda6fa5b8d20efec3de609ff16cb763a0a861
657d81da959eb515078284f017af0b25a5677873
/src/main/java/oop/assignment3/ex42/ex42.puml
d9d86c2dac2742a651ac124b1dcbeb5e4b6d038c
[]
no_license
16smerkel/merkel-cop3330-assignment3
2c807949d55b0b9cdfb64d4cdce1f4163a665ba6
3bca92b4497a60cbb4fbe51db6a82e36bd400cb6
refs/heads/master
2023-06-08T07:32:49.264066
2021-06-20T07:49:13
2021-06-20T07:49:13
378,588,526
0
0
null
null
null
null
UTF-8
PlantUML
false
false
272
puml
@startuml 'https://plantuml.com/class-diagram class NewEmployee { - lastName - firstName - salary + lineSave() + goThroughLast() + goThroughFirst() + goThroughSal() } class PrintThings() { + printHeader() + printRecords() } @enduml
e369d182a9233ab744cb91bcdd0ac4a445fada9e
7a6617d1722fd020ea258142266c543449b0b42e
/src/main/java/ex43/websiteGenerator.puml
f3b81e65d980f6c76356cd627ff0259193506df2
[]
no_license
polvnco/polanco-cop3330-assignment3
f7c3d88955ad27edded31438c3c840fd732e95bc
959f5d956fa74107f402e2e71e6b943ee7fb4dd2
refs/heads/main
2023-05-27T00:17:27.544929
2021-06-21T03:12:40
2021-06-21T03:12:40
376,971,640
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,059
puml
/* * UCF COP3330 Summer 2021 Assignment 3 Solution * Copyright 2021 Christopher Polanco */ @startuml 'https://plantuml.com/sequence-diagram !define DARKRED !includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml class websiteGenerator { - site : String - author : String - cssFolders : String - jsFolders : String -- + websiteGenerator (setAuthor : String, setSite : String, setJavascript : boolean, setCSS : boolean) + main (args : String[]) : void + callSite () : String + callAuthor () : String + callJavascript () : boolean + setAuthor (scanString : String) : void + getAuthor () : String + setJavascript (javaScript : boolean) : void + getJavaScript () : boolean + getSite () : String + getJavaScript () : boolean + callCSS () : boolean + setCSS (scanner : boolean) : void - makeDir () : void } websiteGeneratorTest <|-- websiteGenerator class websiteGeneratorTest { - siteAuthor : String - siteName : String -- ~ should_pass_if_jsFolder_created() : void ~ should_pass_if_cssFolder_created () : void } @enduml
9b91023cb3ec9e60861e473c04c6aefe9bc65c03
a9b03fd9ee21d0746fdb1770fdf9c0ee3e26c0f9
/lesson13/composition/train.puml
70f01f2adeacdea0faacbce3e34146ca959c5613
[]
no_license
Lia-k/py_course
a9ef1cb251d0b6dd102960929ab6558cc5c1d842
609a9916f782100997c70f35bb176708efc46fce
refs/heads/master
2023-08-28T22:15:20.286067
2021-10-26T20:24:05
2021-10-26T20:24:05
377,555,227
0
0
null
2021-09-26T21:47:27
2021-06-16T16:09:16
Python
UTF-8
PlantUML
false
false
155
puml
@startuml class Train{ -__train_cars +___str__() +add_train_car() } class TrainCar{ -__number +number() } Train *--> TrainCar @enduml
63181ba83892df0623b9ce67cec130b6f0962c72
40e351567ea4253710fab5639d62af6dbb8686d2
/plantuml/Shape.puml
90bf2da736a71fcd3cbe4376f78196b4245a6d63
[]
no_license
AlexMaxwell2001/MementoDesignPattern
e6e0c9715217e47ea352c5084621148897ba03c3
54a456ac2eecdca88dd7fab09ec7de19d04c7f59
refs/heads/main
2023-01-18T15:46:11.610765
2020-12-03T13:22:49
2020-12-03T13:22:49
318,200,279
0
0
null
null
null
null
UTF-8
PlantUML
false
false
87
puml
@startuml abstract class Shape { + <<override>> ToString() : string } @enduml
458f333deb326f95bc5343982ee23c10b9e3fac9
c7345e58606d4f4e9b9ae22e2e50a8756b4ce8b1
/src/main/java/ex42/Exercise42.puml
d866f46fb356514348f864c7abfd019eed7f8583
[]
no_license
MontgomeryJukebox/Santamaria-cop3330-assignment3
2792dd1ce71f92a1590964d8750ecbe8a1c77378
4a8ff5fbcf793e9c4cde7d7381c679afeb8db4f6
refs/heads/master
2023-05-31T21:04:10.083533
2021-06-21T03:39:24
2021-06-21T03:39:24
376,951,506
0
0
null
null
null
null
UTF-8
PlantUML
false
false
994
puml
@startuml 'https://plantuml.com/class-diagram @startuml 'https://plantuml.com/class-diagram class S3 { first: String second: String third: String } class Data { ArrayList<S3> data; } class Lexer { Scanner fileScanner Lexer(filepath) nextToken() hasNextToken() } class Parser { parse(Data data) } class App { data: Data } App *-- Data : Application has a data object Data *-- S3 : Data is a wrapper around a vector of S3 Parser o-- Writer : Parser has a reference to the Writer Parser --o Data : Parser has a reference to data object in App Parser ... Lexer : requests next token > Lexer ... Parser : gives next token or EOF > Parser *-- Lexer : Parser has a lexer < Parser .. Data : Creates a new S3 entry in data Lexer o.. InputFile : Lexer reads from input file Writer o.. OutputFile : Writer writes to output file class Writer { PrintWriter print Writer(filepath) printfToConsole(Data) printfToFile(Data) } @enduml @enduml
20bf3c204e107c4c6ffdc421cb17677437a9db78
694fd70b693c9670161b2492ece407123bf11cad
/plantuml/designpattern/concept-adapter-3.plantuml
a2737dfc57057662d3a0d854450304f8d53a2dc4
[ "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
430
plantuml
@startuml interface Calculator { {abstract} int calculateSnack() {abstract} int calculateCoffee() } class CalculatorSalePrice { CalculatorSalePrice(int snackPrice, coffeePrice) calculateSnack() calculateCoffee() } class Price { int snackPrice int coffeePrice Price(int snackPrice, int coffeePrice) int getSnackPrice() int getCoffeePrice() } Calculator <|.. CalculatorSalePrice Price <|-- CalculatorSalePrice @enduml
ff56dc9b174830e829892a9e168a5a802dd3129a
0270efedc0dbe3c19bc1490ab091d9c928dd6d97
/uml.puml
bef01e9d48343c73d1acdb7c00f73c6eb78f7d42
[]
no_license
andreygorlov-dev/TamagotchiGame
2f6fe7719aec0bd09e80b30921f553df2b570e73
30460803bdfce459e1125dd68c763bbd77f468c3
refs/heads/master
2023-05-01T10:23:05.102546
2021-05-08T20:10:45
2021-05-08T20:10:45
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,628
puml
@startuml class CatClass{ private Image[] imagesWalkRight = new Image[4]; private Image[] imagesWalkLeft = new Image[4]; private Image front; } class DogClass{ private Image[] imagesWalkRight = new Image[4]; private Image[] imagesWalkLeft = new Image[4]; private Image front; } class ConverterJSON { private final static String baseFile = "resources/user.json"; } class InterfaceClass { public static Integer hp; public static Integer hunger; public static Integer sleep; } class JsonData { public Integer hp; public Integer hunger; public Integer sleep; public Date lastSave; public String name; public Boolean dog; } class Main { private final static Integer WIDTH_WINDOW = 600; private final static Integer HIGHT_WINDOW = 600; private static PetsAbstractClass pets; private static int countAct = 0; private static int logic = 0; public static Thread t; private static Boolean gameAlive = true; public static ArrayList<ObjectClass> items = new ArrayList<>(); private Panel panel; private String name; private Boolean dog; public JPanel panelDraw; } class PanelDraw { } class ObjectClass { private String itemHint; private Image itemFromPanel; private Graphics g; private Integer paramHP = 0; } class PetsAbstractClass { protected final Integer LEFT = 0; protected final Integer RIGHT = 1; protected final Integer FRONT = 2; private String name; protected Graphics g; protected Integer x = 10; protected Integer y = 430; protected Image room; protected Integer clickX; protected Integer clickY; private static boolean mousePress = false; protected Image fallImageRight; protected Image fallImageLeft; protected Image fallImageFront; protected Image carryingImageRight; protected Image carryingImageLeft; protected Image carryingImageFront; protected Image sleepImageRight; protected Image sleepImageLeft; public static Image ball; protected Integer direction = RIGHT; private boolean game = false; private boolean sleep = false; } interface PetsInterface { void sleep(); void move(Integer x, Integer y); void walking(Graphics g, Image[] image, Integer offset) throws InterruptedException; void fall(); void carryOver(); void playVoice(); } class RoomClass { } CatClass <|-- PetsAbstractClass DogClass <|-- PetsAbstractClass PetsAbstractClass <|..PetsInterface Main *-- CatClass Main *-- DogClass Main *-- ObjectClass ObjectClass o-- PanelDraw Main *-- JsonData @enduml
2f9ebeb38eca544ac47ac73e378cff0ae6c409db
ae8e1aecb90d7c4afd7e5334111936f891c80073
/lib/model.puml
0b0cdd906ce0a51d5e9ae9e7f585251981321c14
[ "Apache-2.0" ]
permissive
Toryt/contracts
76e6a0e5c11ec6ecc00f624314185c14c11db239
03b83affe1d37ea2829c29666e2547327de3bf12
refs/heads/master
2023-01-12T23:06:43.738899
2021-07-19T10:12:06
2021-07-19T10:12:06
83,486,916
0
0
Apache-2.0
2023-01-07T04:28:47
2017-02-28T22:45:28
JavaScript
UTF-8
PlantUML
false
false
5,991
puml
/* Copyright 2017 - 2020 by Jan Dockx Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ @startuml class Function { +name: String <<readonly>> +/displayName: String +apply(…): Function +call(…): Function +bind(…): Function +toString(): String } class Error { +name: Any +message: Any +/stack: String <<readonly>> +toString(): String } Function <.. GeneralContractFunction: instanceof GeneralContractFunction --> "implementation" Function abstract class AbstractContract { +pre: Array <<readonly>> +post: Array <<readonly>> +exception: Array <<readonly>> +location: object <<readonly>> +{static} displayNamePrefix: String +{static} internalLocation: object<INTERNAL> +{static} root: AbstractContract +{static} contractFunctionDisplayName(f: FunctionWithImplementation): String +{static} bindContractFunction: Function +{static} isAGeneralContractFunction(f: Any): Boolean +{static} isAContractFunction(f: Any): Boolean +{static} bless(contractFunction: GeneralContractFunction, contract: AbstractContract, implFunction: Function, location: String): void +{static} falseCondition(): Boolean = false +{static} AbstractContract({pre: Function[]?, post: Function[]?, exception: Function[]?}, location: object?) } class InternalContract { +{static} InternalContract(pre: Function[]?, post: Function[]?, exception: Function[]?) +location: object<INTERNAL> } AbstractContract <|-- InternalContract class Contract { +{static} Contract(pre: Function[]?, post: Function[]?, exception: Function[]?) +implementation(implFunction: Function): ContractFunction } AbstractContract <|-- Contract interface GeneralContractFunction { +location: object <<readonly>> +/displayName: String +bind(…): GeneralContractFunction } AbstractContract +-- GeneralContractFunction GeneralContractFunction --> "contract" AbstractContract interface InternalContractFunction { +location: object<INTERNAL> <<readonly>> } GeneralContractFunction <|-- InternalContractFunction InternalContractFunction --> "contract" InternalContract interface ContractFunction { +location: string <<readonly>> +bind(…): ContractFunction } AbstractContract +-- ContractFunction GeneralContractFunction <|.. ContractFunction ContractFunction --> "contract" Contract abstract class GeneralAbstractContractFunction GeneralContractFunction <|- GeneralAbstractContractFunction AbstractContract --> "abstract <<readonly>>" GeneralAbstractContractFunction class InternalAbstractContractFunction GeneralAbstractContractFunction <|-- InternalAbstractContractFunction InternalContractFunction <|.. InternalAbstractContractFunction InternalContract --> "abstract <<readonly>>" InternalAbstractContractFunction class AbstractContractFunction GeneralAbstractContractFunction <|- AbstractContractFunction ContractFunction <|.. AbstractContractFunction Contract --> "abstract <<readonly>>" AbstractContractFunction abstract class ContractError { +name: String = "Contract Error" +message: String <<readonly>> +/stack: String <<multiline>> +{static} ContractError(message) } Error <|-- ContractError class AbstractError { +name: String = "Abstract Error" +message: String <<readonly>> +{static} AbstractError(contract) } AbstractContract +-- AbstractError ContractError <|-- AbstractError GeneralAbstractContractFunction ..> AbstractError : "<<throws>>" AbstractError --> "contract <<readonly>>" AbstractContract abstract class ConditionError { +name: String = "Contract Condition Error" +self: Object <<readonly>> +args: ArrayLike <<readonly>> +/stack: String <<multiline>> +getDetails(): String +{static} ConditionError(contractFunction, condition, self, args) } ContractError <|-- ConditionError class ConditionMetaError { +{static} name: String <<readonly>> +error: Any <<readonly>> +message: String <<readonly>> +getDetails(): String +{static} ConditionMetaError(contractFunction, condition, self, args, error) } abstract class ConditionViolation { +{static} name: String <<readonly>> +verify(contractFunction, condition, self, args): void <<prototype>> +verifyAll(contractFunction, conditions, self, args): void <<prototype>> +{static} ConditionViolation(contractFunction, condition, self, args) } class PreconditionViolation { +{static} name: String <<readonly>> +{static} PreconditionViolation(contractFunction, condition, self, args) } class PostconditionViolation { +{static} name: String <<readonly>> +result: Any <<readonly>> +getDetails(): String +{static} PostconditionViolation(contractFunction, condition, self, args, result: Any) } class ExceptionConditionViolation { +{static} name: String <<readonly>> +exception: Any <<readonly>> +getDetails(): String +{static} ExceptionConditionViolation(contractFunction, condition, self, args, exception: Any) } ConditionError --> "contractFunction <<readonly>>" GeneralContractFunction ConditionError --> "condition <<readonly>>" Function ConditionError --> "_stackSource <<readonly, frozen>>" Error ConditionError <|-- ConditionMetaError ConditionError <|-- ConditionViolation ConditionViolation <|-- PreconditionViolation ConditionViolation <|-- PostconditionViolation ConditionViolation <|-- ExceptionConditionViolation Contract ..> ConditionMetaError: <<use>> Contract ..> PreconditionViolation: <<use>> Contract ..> PostconditionViolation: <<use>> Contract ..> ExceptionConditionViolation: <<use>> Contract ..> ContractFunction: <<generates>> @enduml
f847e08b0d4a37cf0a06bc4d4b4fd68198cedfeb
3a4fbffc931fc3f281e88c0eba61ee7e3111abff
/post/flink-ha.iuml
40fc3def45d58b30f51b4b5aa438f3eb2445a080
[]
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
4,980
iuml
@startuml flinl-ha together { interface LeaderContender { void grantLeadership(UUID leaderSessionID); void revokeLeadership(); void handleError(Exception exception); } LeaderElectionService -up-> LeaderContender 'each contender has to instantiate its own leader election service interface LeaderElectionService { void start(LeaderContender contender) throws Exception; void stop() throws Exception; void confirmLeadership(UUID leaderSessionID, String leaderAddress); boolean hasLeadership(@Nonnull UUID leaderSessionId); } 'only a single and thus directly grants him the leadership upon start up class StandaloneLeaderElectionService implements LeaderElectionService { } class EmbeddedLeaderElectionService implements LeaderElectionService { } interface LeaderElectionEventHandler { void onGrantLeadership(); void onRevokeLeadership(); void onLeaderInformationChange(LeaderInformation leaderInformation); } class DefaultLeaderElectionService implements LeaderElectionService, LeaderElectionEventHandler { private LeaderElectionDriver leaderElectionDriver; } interface LeaderElectionDriver { void writeLeaderInformation(LeaderInformation leaderInformation); boolean hasLeadership(); } class ZooKeeperLeaderElectionDriver implements LeaderElectionDriver { } class KubernetesLeaderElectionDriver implements LeaderElectionDriver { } DefaultLeaderElectionService --> LeaderElectionDriver } together { interface LeaderRetrievalListener { void notifyLeaderAddress(@Nullable String leaderAddress, @Nullable UUID leaderSessionID); void handleError(Exception exception); } interface LeaderRetrievalService { void start(LeaderRetrievalListener listener) throws Exception; void stop() throws Exception; } LeaderRetrievalService -up-> LeaderRetrievalListener class StandaloneLeaderRetrievalService implements LeaderRetrievalService { } class EmbeddedLeaderRetrievalService implements LeaderRetrievalService { } interface LeaderRetrievalEventHandler { void notifyLeaderAddress(LeaderInformation leaderInformation); } class DefaultLeaderRetrievalService implements LeaderRetrievalService, LeaderRetrievalEventHandler { private LeaderRetrievalDriver leaderRetrievalDriver; private volatile LeaderRetrievalListener leaderListener; } interface LeaderRetrievalDriver { void close() throws Exception; } DefaultLeaderRetrievalService --> LeaderRetrievalDriver class ZooKeeperLeaderRetrievalDriver implements LeaderRetrievalDriver { } class KubernetesLeaderRetrievalDriver implements LeaderRetrievalDriver { } } together { interface HighAvailabilityServices { LeaderRetrievalService getResourceManagerLeaderRetriever(); LeaderRetrievalService getDispatcherLeaderRetriever(); LeaderRetrievalService getJobManagerLeaderRetriever( JobID jobID, String defaultJobManagerAddress); LeaderElectionService getResourceManagerLeaderElectionService(); LeaderElectionService getDispatcherLeaderElectionService(); LeaderElectionService getJobManagerLeaderElectionService(JobID jobID); CheckpointRecoveryFactory getCheckpointRecoveryFactory(); JobGraphStore getJobGraphStore() throws Exception; RunningJobsRegistry getRunningJobsRegistry() throws Exception; BlobStore createBlobStore() throws IOException; } abstract class AbstractNonHaServices implements HighAvailabilityServices { } class StandaloneHaServices extends AbstractNonHaServices { } abstract class AbstractHaServices implements HighAvailabilityServices { } class ZooKeeperHaServices extends AbstractHaServices { } class KubernetesHaServices extends AbstractHaServices { } } together { interface RetrievableStateStorageHelper<T extends Serializable> { RetrievableStateHandle<T> store(T state) throws Exception; } class FileSystemStateStorageHelper<T extends Serializable> implements RetrievableStateStorageHelper { } interface StateHandleStore<T extends Serializable, R extends ResourceVersion<R>> { RetrievableStateHandle<T> addAndLock(String name, T state) throws Exception; void replace(String name, R resourceVersion, T state) throws Exception; R exists(String name) throws Exception; RetrievableStateHandle<T> getAndLock(String name) throws Exception; List<Tuple2<RetrievableStateHandle<T>, String>> getAllAndLock() throws Exception; Collection<String> getAllHandles() throws Exception; boolean releaseAndTryRemove(String name) throws Exception; void releaseAndTryRemoveAll() throws Exception; void clearEntries() throws Exception; void release(String name) throws Exception; void releaseAll() throws Exception; } class ZooKeeperStateHandleStore<T extends Serializable> implements StateHandleStore { private final RetrievableStateStorageHelper<T> storage; } class KubernetesStateHandleStore<T extends Serializable> implements StateHandleStore { private final RetrievableStateStorageHelper<T> storage; } } @enduml
cbb404cef5851f6b299efa0c21efc7bf82b61732
3150c7ff97d773754f72dabc513854e2d4edbf04
/P2/STUB_Yeste_Guerrero_Cabezas/diagrams/t3_visualizarCatalogoSeries.plantuml
3d604eabdac52677f1cd84951e43fc291a6712d8
[ "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
498
plantuml
@startuml title __T3_VISUALIZARCATALOGOSERIES's Class Diagram__\n package app.spec.t3_visualizarCatalogoSeries { class ViewCatalogTest { + init() + isInCatalog() + clearCatalog() + chkEmptyCatalog() } } ViewCatalogTest o-- Controller : controller 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
77ec6e3db649c4dd9825b12d905838ba1543194e
21aa0024f242a17594c6916d2a8ba32eae54451e
/src/main/java/ua/training/model/entities/lazyload/lazyload.plantuml
64719205f611049d254bc4bee4cad79c8538fae8
[]
no_license
HubenkoVV/dbCloudlApp
e3d3b57b7eac801855aea57e4e99bd701152a6e6
bd27e5dd58c3c6a0d6acd7a9e09ff15ca7b4370e
refs/heads/master
2021-12-15T01:54:46.565762
2021-12-14T09:25:46
2021-12-14T09:25:46
219,663,737
0
0
null
2021-12-14T09:28:35
2019-11-05T05:20:40
Java
UTF-8
PlantUML
false
false
939
plantuml
@startuml title __LAZYLOAD's Class Diagram__\n package ua.training.model.entities { package ua.training.model.entities.lazyload { class LazyPayment { + getPeriodicals() } } } package ua.training.model.entities { package ua.training.model.entities.lazyload { class LazyPeriodical { + getUsers() + getPayments() + getArticles() } } } package ua.training.model.entities { package ua.training.model.entities.lazyload { class LazyUser { + getPayments() + getPeriodicals() } } } LazyPayment -up-|> Payment LazyPeriodical -up-|> Periodical LazyUser -up-|> User UserBuilder o-- UserRole : role 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
70b51f488a668821aeb46ed6f1150f24d0f3e5f4
531021c0d92723ea2ab9e3609f7bc7ee099099f9
/todo-code/src/main/kotlin/io/patamon/todo/design_pattern/适配者模式.puml
1f71b7ae2f9a51b7c68a99d056e5eca16f59fa64
[]
no_license
IceMimosa/TODO
fba00de99ac6cd99d64c5f0954860863abe78aba
192c73a827e905f9d0473c602d15d1df7a6623d8
refs/heads/master
2022-06-03T15:48:53.673061
2022-05-29T13:32:54
2022-05-29T13:32:54
137,827,298
0
0
null
null
null
null
UTF-8
PlantUML
false
false
437
puml
@startuml package "Target" { interface Target { } class Targe1 extends Target { } } package "Adaptee" { interface Adaptee { } class Adaptee1 extends Adaptee { } } package "Adapter: 类适配器" { class Adapter extends Adaptee, Target { } } package "Adapter2: 对象适配器" { class Adapter2 extends Target { Adaptee adaptee } } Adapter2 --> Adaptee1 : 持有 @enduml