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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
407dd4228cdb7bc6aec048dbf7ae1bce9129291e | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/structural/decorator-class.puml | 1bc91ddacefc8dae4eca23a8900e60bd81de58ab | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 298 | puml | @startuml
scale 1024 height
title Decorator Pattern
interface Component {
+ operation()
}
class ConComponent
interface Decorator {
+ addedOperation()
}
class ConDecorator
Component <|.. ConComponent
Component <|.. Decorator
Decorator <|.. ConDecorator
ConComponent -o ConDecorator
@enduml |
c22da6f0a72ae51bd4b7548416d8df23fe620f83 | fc1fced2011ba5b608a5e5d7dc88726d0a8bba8e | /Test1.plantuml | f5ecb16094ffac062e5cce4014c15f12887c69e6 | [] | no_license | tingreavinash/cricket-scorecard | ec727c77d23651c3c5ed2f1afa4ec97b09c395ad | 80a4aeb5c28c885aa529c95d7e5618b9e1dc6843 | refs/heads/master | 2023-08-15T21:04:49.408440 | 2021-10-13T12:41:34 | 2021-10-13T12:41:34 | 415,973,197 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,139 | plantuml | @startuml
title __CRICKETAPPLICATION's Class Diagram__\n
namespace com.avinash.cricketScoreboard {
class com.avinash.cricketScoreboard.CricketMatch {
}
}
namespace com.avinash.cricketScoreboard {
class com.avinash.cricketScoreboard.Player {
}
}
namespace com.avinash.cricketScoreboard {
class com.avinash.cricketScoreboard.Team {
}
}
namespace com.avinash.helper {
class com.avinash.helper.InputScanner {
}
}
namespace com.avinash.helper {
class com.avinash.helper.Validations {
}
}
com.avinash.cricketScoreboard.CricketMatch o-- com.avinash.cricketScoreboard.Team : team1
com.avinash.cricketScoreboard.CricketMatch o-- com.avinash.cricketScoreboard.Team : team2
com.avinash.cricketScoreboard.Team o-- com.avinash.cricketScoreboard.Player : nonstrikerPlayer
com.avinash.cricketScoreboard.Team o-- com.avinash.cricketScoreboard.Player : strikerPlayer
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
|
bca6adb89a3c61220a436fc6a0a54f3958041817 | b120fd65ff39c926b71e8cd50aad1ba2697a1ca6 | /Chapter02-AdapterPattern/src/adapter/Adapter.puml | 3e948e4ea4480fe7259e99f37d431b81b75f9d4e | [] | no_license | frog97/java-design-pattern | e8106eaceb213ab3f5c83f273d997fdf56783e09 | 2a03c7071b650aaf82c7becb2f16ceed650a95df | refs/heads/master | 2023-03-30T17:51:21.154591 | 2021-04-11T11:32:51 | 2021-04-11T11:32:51 | 351,084,280 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 781 | puml | @startuml
'https://plantuml.com/class-diagram
class ClientP
ClientP -- AdapterP
interface AdapterP {
targetMethod1() : void
targetMethod2() : void
}
AdapterP <|-- AdapterImplP
class AdapterImplP{
adaptee : AdapteeP
targetMethod1() : void
targetMethod2() : void
}
AdapterImplP *-- AdapteeP
class AdapteeP {
+ operation1() : void
+ operation2() : void
+ operation3() : void
}
interface Adapter {
+ twiceOf(Float num) : Double;
+ Double halfOf(Float num) : Double;
}
Adapter <|-- AdapterImpl
class AdapterImpl {
+ math : Math
+ twiceOf(Float num) : Double;
+ Double halfOf(Float num) : Double;
}
AdapterImpl *-- Math
class Math {
twoTime (Double) : Double
half (Double) : Double
}
class Client
Client *-- Adapter
@enduml |
463685cdea1a619d785c5732ead829b8e5344f68 | 3c74f15950bd77d3bd52220e9d2972f769e54bc0 | /Diagramme/Klassen/TinyTasksDashboard/Program.puml | baab4343df330cf92456c787bd06989da4a30780 | [] | no_license | Louis9902/Sosse19-SE | eff56539eed3e27e24342341356228ce5de7bd7c | 6c146a6808781acbc6bf4e43157e2294013e65a3 | refs/heads/master | 2020-05-03T20:59:21.361284 | 2019-06-20T16:01:10 | 2019-06-20T16:01:10 | 178,814,946 | 2 | 0 | null | 2019-06-11T15:17:16 | 2019-04-01T08:05:57 | C# | UTF-8 | PlantUML | false | false | 76 | puml | @startuml
class Program <<static>> {
- {static} Main() : void
}
@enduml
|
5af1cbd9c83c68ef7d4907a7946c96fc16dc99b4 | ad3cc5450c8e0d30e3ddbc36db6fbb053e8965fb | /projects/oodp/html/umlversion/sg/edu/ntu/scse/cz2002/MainApp.puml | 8475b3213cc8e7ecb9a955d074f4ab95c471e6cf | [] | 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 | 750 | puml | @startuml
class MainApp [[../sg/edu/ntu/scse/cz2002/MainApp.html]] {
{static} +APP_NAME: String
{static} +tables: ArrayList<Table>
{static} +menuItems: ArrayList<MenuItem>
{static} +invoices: ArrayList<Invoice>
{static} +reservations: ArrayList<Reservation>
{static} +promotions: ArrayList<PromotionItem>
{static} +staffs: ArrayList<Staff>
{static} +restaurantSession: char
{static} +DEBUG: boolean
{static} -init(): void
{static} +saveAll(): boolean
{static} +main(args:String[]): void
{static} -printWelcomeAscii(): void
{static} -checkTodayReservations(): int
}
center footer UMLDoclet 1.1.3, PlantUML 1.2018.12
@enduml
|
036ef0bf0148dcc2a683f89cb2f582dc210aebc3 | 795946e01e504766ca3a261f1c34d1674a8a90e8 | /diagrams/simulation_classes.puml | 8f517734166f47f5c5277b257c52de58b9de7c19 | [
"MIT"
] | permissive | stbalduin/memosim | 683f899e51aa21c5396b1ab1cc4276826960c311 | 9fa8430d0b3b7593c62f96b2c294df80900a86f5 | refs/heads/master | 2020-03-12T15:14:07.562075 | 2018-08-17T12:35:36 | 2018-08-17T12:35:36 | 130,685,582 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,302 | puml | @startuml
left to right direction
class memosim.simulation.SurrogateModelSimulator
class memosim.simulation.ModelState
abstract class memosim.simulation.Mode
class memosim.simulation.InitMode
class memosim.simulation.PreStepMode
class memosim.simulation.StepMode
class memosim.simulation.PostStepMode
class memosim.simulation.IdleMode
class memosim.simulation.VirtualStateSimulator
class memosim.simulation.MetaModelSimulator
class memotrainer.metamodels.MetaModel #DDDDDD {
}
memosim.simulation.SurrogateModelSimulator -- memosim.simulation.ModelState: has a >
memosim.simulation.SurrogateModelSimulator -- memosim.simulation.MetaModelSimulator: has * >
memosim.simulation.MetaModelSimulator <|-- memosim.simulation.SimpleMetaModelSimulator: is a <
memosim.simulation.SimpleMetaModelSimulator -- memotrainer.metamodels.MetaModel: encapsulates a >
memosim.simulation.ModelState -- memosim.simulation.VirtualStateSimulator: has * >
memosim.simulation.ModelState -- memosim.simulation.Mode
memosim.simulation.Mode <|- memosim.simulation.InitMode
memosim.simulation.Mode <|- memosim.simulation.PreStepMode
memosim.simulation.Mode <|- memosim.simulation.StepMode
memosim.simulation.Mode <|- memosim.simulation.PostStepMode
memosim.simulation.Mode <|- memosim.simulation.IdleMode
@enduml
|
16ebae4d7fc88b619384596a1a8f110233ee0d8b | a704102454a6b30c441e2562296473ef634f720f | /modelo_conceitual/conceitual.plantuml | 99fe622e9519c01d3e1d74d2ef35fc3ec9cd86d8 | [] | no_license | lucasg-mm/ensinet | 98d358842f248eea90e7b1695b11033d66025a20 | a15d9f42dc01dde6356d257c0ebc18526d8e7320 | refs/heads/master | 2023-02-05T05:25:38.798683 | 2020-12-30T18:57:33 | 2020-12-30T18:57:33 | 310,128,343 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,256 | plantuml | @startuml modelo_conceitual
class Administrador{
}
class Aula{
id: long
númeroAvaliaçõesPositivas: int
númeroAvaliaçõesNegativas: int
}
class Estudante{
id: long
nome: String
email: String
senha: String
}
class Educador{
}
class Disciplina{
id: long
}
class AulaPública{
}
class LivestreamPública{
}
class Visitante{
}
class LivestreamPrivada{
}
class MaterialApoio{
id: long
}
class Prova{
}
class Trabalho{
}
class Mensagem{
}
class Nota{
id: long
}
Administrador "1..*"--"0..*" Estudante: gerencia
Administrador --|> Educador
Educador --|> Estudante
Estudante --|> Visitante
AulaPrivada --|> Aula
AulaPública --|> Aula
LivestreamPrivada --|> Aula
LivestreamPública --|> Aula
Trabalho --|> MaterialApoio
Prova --|> MaterialApoio
Disciplina "1..1"*--"0..*" Aula
Estudante "1..*"--"1..*" Aula: Assiste
Estudante "1..1"--"1..*" Nota: Recebe
Estudante "1..*"--"1..*" MaterialApoio: Faz
Estudante "1..1"--"1..*" Mensagem: Recebe
Estudante "1..1"--"1..*" Mensagem: Envia
Estudante "1..1"--"1..*" Disciplina: Matricula-se
Educador "1..*"--"1..*" Disciplina: Cria
Educador "1..*"--"1..*" Aula: Cria
Educador "1..*"--"1..*" Nota: Atribui
Visitante "1..*"--"1..*" AulaPública: Assiste
@enduml |
b2fc64935ce31e656fed55240de961c5845cf02b | f24ef7894b6ea816a2e0b9a088634d9e959d4b15 | /diagrama.puml | 07d9350da60d80414bb6673c3425a5ba481c6730 | [] | no_license | RicardoUMC/SistemaRestaurante | 631eeb0c50d7411bc4a0865f193aa322c215c6c3 | d8a4434f89b772aabba2b75c810a186d16439341 | refs/heads/master | 2023-06-16T04:11:52.029381 | 2021-07-07T04:26:15 | 2021-07-07T04:26:15 | 375,469,747 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,829 | puml | @startuml
!define DARKBLUE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
note as N1 #OrangeRed
Ávila Sánchez Aldrich Jonathan
González Oloarte Diego Enrique
Mora Campos Ricardo Uriel
Velázquez Hernández Aldo
end note
class Restaurante {
- nombre: String
- ubicacion: String
- telefono: String
- comidas: ArrayList <Comida>
- bebidas: ArrayList <Bebida>
- postres: ArrayList <Postre>
- pedido: ArrayList <Pedido>
+ repartidores ArrayList <Repartidor>
+ Restaurante()
+ Restaurante(nombre : String, ubicacion : String, telefono : String)
+ setNombre(nombre : String) : void
+ setUbicacion(ubicacion : String) : void
+ setTelefono(telefono : String) : void
+ getNombre() : String
+ getUbicacion() : String
+ getTelefono() : String
+ getRepartidores() : ArrayList <Repartidor>
+ getComidas() : ArrayList <Comida>
+ getBebidas() : ArrayList <Bebida>
+ getPostres() : ArrayList <Postre>
+ agregaRepartidor()
+ agregarPlatillo()
}
class Pedido {
- Repartidor: Repartido
- idRepartidor: int
- cliente: Cliente
- comidas: ArrayList <Comida>
- bebidas: ArrayList <Bebida>
- postres: ArrayList <Postre>
+ Pedido()
+ Pedido(cliente: Cliente)
+ getComidas() : ArrayList <Comida>
+ getBebidas() : ArrayList <Bebida>
+ getPostres() : ArrayList <Postre>
+ asignarRepartidor(int: idRepartidor) : void
+ agregarPlatillo(comida : Comida, bebida : Bebida, postre : Postre)
}
interface IReceta {
+ setNombre(nombre : String) : void
+ setPrecio(precio : float) : void
+ setIngredientes(ingredientes : String) : void
+ getNombre() : String
+ getPrecio() : String
+ getIngredientes() : String
}
class Comida {
- nombre : String
- precio : float
- ingredientes : String
}
class Bebida {
- nombre : String
- precio : float
- ingredientes : String
}
class Postre {
- nombre : String
- precio : float
- ingredientes : String
}
Abstract Persona {
+ Persona()
+ Persona(nombre: String, apellido : String, edad : int, genero : char)
+ setNombre(nombre : String) : void
+ setApellido(apellido : float) : void
+ setEdad(edad : String) : void
+ setGenero(genero : char) : void
+ getNombre() : String
+ getApellido() : String
+ getEdad() : String
+ getGenero() : char
}
class Cliente {
- direccion : String
- numeroTelefono : int
}
class Repartidor {
- noRepartidor : String
- medioTranspore : String
}
Persona <|-r- Cliente
Persona <|-l- Repartidor
Restaurante *-- Pedido
Restaurante -right.|> IReceta
IReceta <|-. Comida
IReceta <|-. Bebida
IReceta <|-. Postre
Pedido o-- Cliente
Pedido *-- Repartidor
@enduml |
6beffd741a0f0e35116e81cec16227295e2e57bf | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Items/MarkerItem.puml | 91cb036765d7be98abb42b7c1970702d230763b3 | [] | 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 | 682 | puml | @startuml
class MarkerItem {
+ MarkerItem(marker:IMarker)
+ start : double <<get>> <<set>>
+ end : double <<get>>
+ duration : double <<get>>
+ IsCompatibleWithTrack(track:TrackAsset) : bool
+ PushUndo(operation:string) : void
+ Delete() : void
+ CloneTo(parent:TrackAsset, time:double) : ITimelineItem
+ <<override>> GetHashCode() : int
+ <<override>> ToString() : string
+ Equals(other:ITimelineItem) : bool
+ <<override>> Equals(obj:object) : bool
}
ITimelineItem <|-- MarkerItem
MarkerItem --> "m_Marker" IMarker
MarkerItem --> "marker" IMarker
MarkerItem --> "parentTrack" TrackAsset
MarkerItem --> "gui" TimelineItemGUI
@enduml
|
0e2cbd18356255b6bc7f467a0480205d4b538ca5 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Modules/WindowManagement/Events/WindowEvent.puml | 8e7dd098e8bae005e6a7acd0429c9856238b78f6 | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 260 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
abstract class WindowEvent {
+ Title : string <<get>> <<set>>
+ ProcessName : string <<get>> <<set>>
}
abstract class Event
!endsub
Event <|-- WindowEvent
@enduml
|
e46f47dadce676769fb9cc74da24e6c0a21f62d9 | 83df72f57154553960b025f00f6dce31d4ae778a | /app/src/main/java/com/example/cardihealt/Medico/Medico.plantuml | dcea7e252728fdd1a7ae24325e02110071b32a3f | [] | no_license | alejandrogualdron/CardiHealt | 464a4c79e5310a341c31567cae14cbb6ac88ac81 | 9fe93d3091ae81936c996a9975cac7e15940532b | refs/heads/master | 2023-08-30T15:18:22.356698 | 2021-09-30T00:14:05 | 2021-09-30T00:14:05 | 341,059,283 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,488 | plantuml | @startuml
title __MEDICO's Class Diagram__\n
namespace com.example.cardihealt {
namespace Medico {
class com.example.cardihealt.Medico.InicioFragmentMedico {
~ activity : Activity
~ cardCerrarsesion : CardView
~ cardEncuesta : CardView
~ cardInformacion : CardView
~ cardInformes : CardView
~ cardRecomendacionesMedico : CardView
~ vista : View
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
- gso : GoogleSignInOptions
- mAuth : FirebaseAuth
- mDatabase : DatabaseReference
- mGoogleSignInClient : GoogleSignInClient
- mParam1 : String
- mParam2 : String
+ InicioFragmentMedico()
{static} + newInstance()
+ onCreate()
+ onCreateView()
}
}
}
namespace com.example.cardihealt {
namespace Medico {
class com.example.cardihealt.Medico.Menu_Medico {
~ fragmentInicioMedico : Fragment
+ onKeyDown()
# onCreate()
}
}
}
com.example.cardihealt.Medico.InicioFragmentMedico -up-|> androidx.fragment.app.Fragment
com.example.cardihealt.Medico.Menu_Medico -up-|> androidx.appcompat.app.AppCompatActivity
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
|
52dbda55a6fc68d1853fd6c42a4f0e650ba5b08d | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ExternalLineItemTotalPrice.puml | e7f611e94e7a215b12eee4cd637fcd5e982cbacc | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 6,350 | 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 ExternalLineItemTotalPrice [[ExternalLineItemTotalPrice.svg]] {
price: [[Money.svg Money]]
totalPrice: [[Money.svg Money]]
}
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 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 CartChangeLineItemQuantityAction [[CartChangeLineItemQuantityAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
quantity: Long
externalPrice: [[Money.svg Money]]
externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]]
}
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 CartSetLineItemTotalPriceAction [[CartSetLineItemTotalPriceAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]]
}
interface MyCartChangeLineItemQuantityAction [[MyCartChangeLineItemQuantityAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
quantity: Long
externalPrice: [[Money.svg Money]]
externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]]
}
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 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 StagedOrderChangeLineItemQuantityAction [[StagedOrderChangeLineItemQuantityAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
quantity: Long
externalPrice: [[Money.svg Money]]
externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]]
}
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 StagedOrderSetLineItemTotalPriceAction [[StagedOrderSetLineItemTotalPriceAction.svg]] {
action: String
lineItemId: String
lineItemKey: String
externalTotalPrice: [[ExternalLineItemTotalPrice.svg ExternalLineItemTotalPrice]]
}
ExternalLineItemTotalPrice --> LineItemDraft #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> CartAddLineItemAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> CartChangeLineItemQuantityAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> CartRemoveLineItemAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> CartSetLineItemTotalPriceAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> MyCartChangeLineItemQuantityAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> MyCartRemoveLineItemAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> StagedOrderAddLineItemAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> StagedOrderChangeLineItemQuantityAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> StagedOrderRemoveLineItemAction #green;text:green : "externalTotalPrice"
ExternalLineItemTotalPrice --> StagedOrderSetLineItemTotalPriceAction #green;text:green : "externalTotalPrice"
@enduml
|
6cd091ac00e433c5e8bc50744b4e3fc8f8706e00 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/BrowserExtension/Listeners/TabEventFactory.puml | e685fa53aff29cb13d9f45c9f713dedde1336b5f | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 704 | puml | @startuml
skinparam linetype ortho
skinparam monochrome true
skinparam classAttributeIconSize 0
class TabEventFactory {
+ createNavigationEvent(tabId : number, changeInfo : tabs.TabChangeInfo, tab : tabs.Tab) : NavigationEvent
+ createSwitchTabEvent(activeInfo : tabs.TabActiveInfo, tabs.Tab) : SwitchTabEvent
+ createCloseTabEvent(tabId : number, removeInfo: tabs.TabRemoveInfom tab : tabs.Tab) : CloseTabEvent
+ createOpenTabEvent(tab : tabs.Tab) : OpenTabEvent
}
TabListener *-- TabEventFactory
TabEventFactory .DOWN.> OpenTabEvent : creates
TabEventFactory .DOWN.> CloseTabEvent : creates
TabEventFactory .DOWN.> SwitchTabEvent : creates
TabEventFactory .DOWN.> NavigationEvent : creates
@enduml
|
26870d7fbe65e47f89fb4b64c6fd0588aaf9d1e9 | cf1b07cd00320e0b1cdbd00854098d4099b23709 | /doc/adapter/transfer/adapter.puml | cecc96a83cfa1405c025f0a0d9aa33bd82fd6eb0 | [] | no_license | beatkei/myjava | 92f8c95380b78a9adc6f8cc13080d7ccf10e9183 | 0ffa47cfadc75f6d02dcc70bf951ef4598641238 | refs/heads/master | 2020-03-21T08:59:52.216257 | 2019-03-14T00:49:18 | 2019-03-14T00:49:18 | 138,378,231 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 698 | puml | @startuml
class Main {
}
class Print {
printWeek()
printStrong()
}
class PrintBanner {
banner
printWeek()
printStrong()
}
note bottom
<size:10>抽象クラスであるPrintを継承し、bannerインスタンスに
<size:10>処理を委譲することにより、アダプターの役割を実現する
end note
class Banner {
showWithParen()
showWithAster()
}
Main -do-> Print:Users
Print <|-ri- PrintBanner:extends
PrintBanner o-ri-> Banner:has
note left of Main
<size:10>Client
end note
note left of Print
<size:10>Target
end note
note top of PrintBanner
<size:10>Adapter
end note
note top of Banner
<size:10>Adaptee
end note
@enduml |
28d2e34a8bfc50e40cc19144bf7b99bfbc86f9ac | 6a46bb3340bb8023ff100bbd25aa69a74872355e | /uml/Application.puml | 30de9de628071c2ec1190a67ef926aad10227086 | [] | no_license | Lino437/gonzalez-8025-a5 | a60d06e9c8b750641d808c5c03f3cdd67bf00bf9 | de9856643f4aa62eb967b595d54632a3f7f87b06 | refs/heads/master | 2023-06-20T04:37:40.846931 | 2021-07-23T18:00:01 | 2021-07-23T18:00:01 | 387,632,335 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,532 | puml | @startuml
'https://plantuml.com/class-diagram
class InventoryTracker {
start()
main()
}
class InventoryController {
changeValueCellEvent()
changeSerialNumberCellEvent()
changeNameCellEvent()
saveAsClicked()
loadClicked()
closeClicked()
helpClicked()
removeItem()
addNewItem()
initialize()
getPeople()
}
class AlertManager {
alertValue()
alertSerialNumber()
alertDuplicateSerialNumber()
alertName()
alertHelp()
helpText()
}
class ConditionsManager {
validateValue()
validateSerialNumber()
validateDuplicateSerialNumber()
validateName()
searchBox()
validateAbsolutePath()
}
class Item {
- value: String
- serialNumber: String
- name: String
getValue()
setValue()
getSerialNumber()
setSerialNumber()
getName()
setName()
}
class ItemFormat {
toFormattedValue()
toFormattedSerialNumber()
}
class LoadFileManager {
loadFile()
fileChooserLoad()
loadTSVFile()
tsvFileReader()
loadHTMLFile()
htmlFileReader()
loadJSONFile()
parseItemObject()
}
class SaveFileManager {
writeToFile()
fileChooserSave()
writeToTSVFile()
writeToHTMLFile()
writeToJSONFile()
storeDataJSONArray()
}
javafx.org.Application <|- InventoryTracker
InventoryTracker -- InventoryController
InventoryController <- AlertManager
InventoryController <-- ConditionsManager
InventoryController <-- LoadFileManager
InventoryController <-- SaveFileManager
Item - InventoryController
Item -- ConditionsManager
Item -- LoadFileManager
Item -- SaveFileManager
ItemFormat - Item
@enduml |
bc79f987ecbdb78192dedec80886a8aab7204a8b | ef5852b964f91ce0b67fb6f85eb009209fba5df2 | /src/main/asciidoc/images/pruefverfahren.puml | d6c55377c0da692c9d7b50e293c9439276977e52 | [
"Apache-2.0"
] | permissive | oboehm/jfachwert | 86f56f1e4fa2061347db989c3d63d091ef39ccda | 1947001ea920f07452a6d46a06e05e6fe733ba5c | refs/heads/develop | 2023-08-10T11:33:40.348501 | 2023-08-04T15:02:46 | 2023-08-04T15:02:46 | 84,598,578 | 1 | 1 | Apache-2.0 | 2023-03-31T18:48:35 | 2017-03-10T20:34:17 | Kotlin | UTF-8 | PlantUML | false | false | 537 | puml | @startuml
package de.jfachwert {
interface PruefzifferVerfahren {
T getPruefziffer(T wert)
T berechnePruefziffer(T wert)
boolean isValid(T wert)
}
interface SimpleValidator {
T validate(T value)
}
}
package de.jfachwert.pruefung {
class Mod11Verfahren
class Mod97Verfahren
class NoopVerfahren
}
PruefzifferVerfahren -up-|> SimpleValidator
PruefzifferVerfahren <|-- Mod11Verfahren
PruefzifferVerfahren <|-- Mod97Verfahren
PruefzifferVerfahren <|-- NoopVerfahren
@enduml
|
36eb7d0503c28b4c91f5308c66afdf2563eaf514 | 850df42c7544ac83b23b4ad25e86fa2c22ec2f61 | /src/main/java/org/yyb/adapter/interfaceadapter/interfacedapter.puml | 5ba39587cadeef4c551a990a35c2cd5553c49167 | [
"Apache-2.0"
] | permissive | yangyibo/gof | 1d1759911b0e70add0bff1c9dd437e6df0622498 | 60e0bd1c65de1717fa51a48d6b6126b1e5ba069f | refs/heads/master | 2022-12-19T19:58:34.423758 | 2020-08-15T17:48:47 | 2020-08-15T17:48:47 | 278,110,455 | 0 | 0 | Apache-2.0 | 2020-10-13T23:28:07 | 2020-07-08T14:24:12 | Java | UTF-8 | PlantUML | false | false | 223 | puml | @startuml
interface Interface {
+ operation1(): void
+ operation2(): void
+ operation3(): void
+ operation4(): void
}
abstract class AbsAdapter {
}
Interface <|.. AbsAdapter
class Client
Client ..> AbsAdapter
@enduml
|
931c45374c7f57b68f179f0970b0487c0f497346 | 088856ec5790009dd9f9d3498a56fe679cfab2e8 | /src/puml/5/ucmitz/svg/class/bc-custom-content/api_custom_entries.puml | f721cd1274fd8088f1862ac44aae25c16239ba93 | [] | 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 | 670 | puml | @startuml
skinparam handwritten true
skinparam backgroundColor white
hide circle
skinparam classAttributeIconSize 0
title カスタムエントリー管理
class Api\CustomEntriesController {
+ 一覧を表示:index()
+ 単一データ表示:view()
+ 新規追加:add()
+ 編集:edit()
+ 削除:delete()
+ 複製:copy()
+ 公開状態に設定:publish()
+ 非公開状態に設定:unpublish()
+ 一括処理:batch()
}
class CustomEntriesService {
+ CustomEntriesTable
}
Api\CustomEntriesController -down[#Black]-> CustomEntriesService
note "以下カスタムポスト管理と同じ" as note
CustomEntriesService .. note
@enduml
|
ff096067fa0e3521831db4d61d946aa654561e4d | 3c98cc9e9f11294a17cd3c2022ef2867704b02af | /docs/source/pic/src/class.puml | 9cd8858e48c7da7da148f9c7e899f3a0ee6b4e20 | [
"Apache-2.0"
] | permissive | hyperledgerkochi/von_anchor | d194fe4b30f4d265576080034f2f3532181bb6f6 | c8d061cec715abbc69afa3b297373a2a598f33b0 | refs/heads/master | 2022-02-18T16:45:24.428635 | 2019-09-06T07:43:29 | 2019-09-06T07:43:29 | 198,063,762 | 0 | 0 | Apache-2.0 | 2019-09-06T07:43:30 | 2019-07-21T14:04:04 | Python | UTF-8 | PlantUML | false | false | 8,723 | puml | @startuml
/'
Copyright 2017-2019 Government of Canada - Public Services and Procurement Canada - buyandsell.gc.ca
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
or
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.
'/
scale max 2000 width
title Class Diagram
class ErrorCode {
}
class VonAnchorError {
+error_code
+message
}
class SchemaKey {
}
class SchemaCache {
-_schema_key2schema
-_seq_no2schema_key
+lock
+__getitem__()
+__setitem__()
+contains()
+index()
+schema_key_for()
+schemata()
+feed()
+clear()
}
class CredDefCache{
+lock
}
class Tails {
+reader_handle
+rr_id
+path
+open()
{static} +ok_hash()
{static} +associate()
{static} +dir()
{static} +linked()
{static} +links()
{static} +unlinked()
{static} +next_tag()
{static} +current_rev_reg_id()
}
class RevoCacheEntry {
+rev_reg_def
+tails
+cull()
-_get_update()
+rr_delta_frames
+rr_state_frames
+get_delta_json()
+get_state_json()
}
class RevRegUpdateFrame {
+qtime
+timestamp
+to
+rr_update
}
class RevocationCache {
+lock
}
class EndpointCache {
+lock
}
class ArchivableCaches {
{static} +clear()
{static} +archdiive()
{static} +parse()
{static} +purge_archives()
}
class WalletManager {
{static} +register_storage_library()
-_defaults
+default_storage_type
+default_freshness_time
+default_auto_remove
+default_access
-_config2indy()
+create()
+get()
+export_wallet()
+import_wallet()
+reset()
+remove()
}
class Wallet {
+name
+handle
+config
+auto_remove
+access
+access_creds
+storage_type
+did
+verkey
+create_local_did()
+get_local_dids()
+get_local_did()
+get_anchor_did()
+create_link_secret()
-_write_link_secret_label()
+get_link_secret_label()
+open()
+close()
+remove()
+create_signing_key()
+get_signing_key()
+replace_signing_key_metadata()
+write_pairwise()
+delete_pairwise()
+get_pairwise()
+write_non_secret()
+delete_non_secret()
+get_non_secret()
+encrypt()
+decrypt()
+sign()
+verify()
+pack()
+unpack()
+reseed_init()
+reseed_apply()
}
class KeyInfo {
+verkey
+metadata
}
class DIDInfo {
+did
+verkey
+metadata
}
class StorageRecord {
{static} +ok_tags()
+type
+id
+value
+tags
+clear_tags
+encr_tags
}
class StorageRecordSearch {
{static} +OPTIONS_JSON
-_wallet
-_type
-_query_json
-_handle
+opened
+open()
+fetch()
+close()
}
class PairwiseInfo {
+their_did
+their_verkey
+my_did
+my_verkey
+metadata
}
class EndpointInfo {
+endpoint
+ip_addr
+port
+verkey
}
enum Protocol {
{static} +V_13
{static} +V_14
{static} +V_15
{static} +V_16
{static} +V_17
{static} +V_18
{static} +DEFAULT
}
class NodePoolManager {
+protocol
+add_config()
+list()
+get()
+remove()
}
class NodePool {
+name
+handle
+config
+protocol
+open()
+close()
+refresh()
}
enum Predicate {
{static} +LE
{static} +LT
{static} +GE
{static} +GT
}
enum Role {
{static} +STEWARD
{static} +TRUSTEE
{static} +TRUST_ANCHOR
{static} +USER
{static} +ROLE_REMOVE
}
class BaseAnchor {
+pool
+wallet
+did
+verkey
-_submit()
-_sign_submit()
-_verkey_for()
{static} +least_role()
+open()
+close()
+reseed()
+set_did_endpoint()
+get_did_endpoint()
+send_endpoint()
+get_endpoint()
+get_nym()
+get_nym_role()
+get_cred_def()
+get_rev_reg_def()
+get_schema()
+encrypt()
+decrypt()
+sign()
+verify()
+get_txn()
}
class AnchorSmith {
{static} +role()
+send_nym()
}
class Origin {
+send_schema()
}
class RevRegBuilder {
{static} +get_state()
{static} +dir_tails()
{static} +dir_tails_sentinel()
-_start_data_json()
+external
+_create_rev_reg()
+dir_tails_top()
+dir_tails_target()
+serve()
+stop()
}
enum State {
{static} +RUNNING
{static} +STOPPING
{static} +ABSENT
}
class Issuer {
-_send_rev_reg_def()
-_set_rev_reg()
-_sync_revoc_for_issue()
-_create_cred_def()
+rrbx
+rrb
+rrb()
+open()
+path_tails()
+send_cred_def()
+create_cred_offer()
+create_cred()
+revoke_cred()
+get_box_ids_json()
}
class HolderProver {
+config
+dir_cache
-_sync_revoc_for_proof()
-_build_rr_delta_json()
-_assert_link_secret()
+build_req_creds_json()
+dir_tails()
+open()
+close()
+rev_regs()
+offline_intervals()
+create_link_secret()
+create_cred_req()
+set_cred_attr_tag_policy()
+get_cred_attr_tag_policy()
+store_cred()
+delete_cred()
+load_cache_for_proof()
+get_box_ids_json()
+get_cred_infos_by_q()
+get_cred_infos_by_filter()
+get_cred_info_by_id()
+get_creds()
+get_creds_by_id()
+get_cred_briefs_by_proof_req_q()
+create_proof()
+reset_wallet()
}
class Verifier {
+config
+dir_cache
-_build_rr_state_json()
{static} +least_role()
+build_proof_req_json()
+load_cache_for_verification()
+open()
+verify_proof()
}
class TrusteeAnchor {
}
class NominalAnchor {
{static} +least_role()
}
class ProctorAnchor {
{static} +least_role()
}
class RegistrarAnchor {
}
class OrgBookAnchor {
}
class OrgHubAnchor {
{static} +least_role()
+close()
}
enum PublicKeyType {
{static} +RSA_SIG_2018
{static} +ED25519_SIG_2018
{static} +EDDSA_SA_SIG_SECP256K1
}
class PublicKey {
+did
+id
+type
+value
+controller
+authn
+to_dict()
}
class Service {
+did
+idp
+type
+endpoint
+to_dict()
}
class DIDDoc {
+did
+pubkey
+authnkey
+service
+set()
+to_json()
+serialize()
+add_service_pubkeys()
{static} +from_json()
{static} +deserialize()
}
VonAnchorError "1" *-up- "1" ErrorCode
SchemaCache -left-> SchemaKey
BaseAnchor -left-> SchemaKey
NodePoolManager "1" *-- "1" Protocol
NodePoolManager ..> NodePool
NodePool *-- Protocol
RevRegBuilder *-- State
BaseAnchor -up-> SchemaCache
BaseAnchor "1" *-left- "1" Wallet
BaseAnchor "1" *-up- "1" NodePool
RevoCacheEntry -up-> Tails
RevoCacheEntry "2" *-down- "n" RevRegUpdateFrame
RevocationCache -> RevoCacheEntry
WalletManager .left.> Wallet
Wallet --> KeyInfo
Wallet --> DIDInfo
Wallet --> PairwiseInfo
Wallet --> StorageRecord
StorageRecordSearch *-- Wallet
BaseAnchor --> EndpointInfo
BaseAnchor -up-> RevoCache
BaseAnchor --> EndpointCache
BaseAnchor -up-> CredDefCache
BaseAnchor <|-down- AnchorSmith
BaseAnchor <|-down- Origin
BaseAnchor <|-down- HolderProver
BaseAnchor <|-down- Verifier
BaseAnchor <|-right- NominalAnchor
AnchorSmith <|-down- TrusteeAnchor
BaseAnchor <|-down- RevRegBuilder
BaseAnchor <-- Issuer
Issuer *- RevRegBuilder
Origin <|-left- ProctorAnchor
Issuer <|-left- ProctorAnchor
Verifier <|-right- ProctorAnchor
Issuer <|-up- RegistrarAnchor
Origin <|-up- RegistrarAnchor
HolderProver <|-down- OrgBookAnchor
OrgBookAnchor <|-- OrgHubAnchor
Issuer <|-- OrgHubAnchor
Origin <|-- OrgHubAnchor
Verifier <|-- OrgHubAnchor
HolderProver ..> ArchivableCaches
Verifier ..> ArchivableCaches
OrgHubAnchor ..> ArchivableCaches
HolderProver ..> Predicate
Verifier ..> Predicate
BaseAnchor ..> Role
AnchorSmith ..> Role
Verifier ..> Role
NominalAnchor ..> Role
OrgHubAnchor ..> Role
ProctorAnchor ..> Role
PublicKey "1" *-- "1" PublicKeyType
DIDDoc "1" *-- "n" PublicKey
DIDDoc "1" *-- "n" Service
@enduml
|
287b72d2295b59ef5265555680acdf469d78fcd3 | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /serviceSchema/ip/uml/ipvc.puml | 2654a220b2aae5a5d8e585856c2cef8959d8796e | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 1,004 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class Ipvc {
administrativeState: AdminState [1]
operationalState: OperationalState [1]
ipvcIdentifier: Identifier53 [1]
ipvcTopology: ServiceTopology [1]
packetDelivery: PacketDelivery [1]
maximumNumberOfIpv4Routes: Integer [0..1]
maximumNumberOfIpv6Routes: Integer [0..1]
dscpPreservation: EnabledDisabled [1]
serviceLevelSpecification: IpSls [0..1]
maximumTransferUnit: Integer [1]
pathMtuDiscovery: EnabledDisabled [1]
fragmentation: EnabledDisabled [1]
cloud: IpvcCloud [0..1]
reservedPrefixes: Ipv4Ipv6Prefixes [1]
listOfClassOfServiceNames: String [1..*]
}
Ipvc "1" *--> "0..1" IpvcCloud : cloud
class IpvcCloud << (D, Gray) >> {
type: CloudType
ingressClassOfServiceMap: IngressClassOfServiceMap
dataLimit: CloudDataLimit
dns: CloudDns
networkAddressTranslation: Ipv4Prefix
subscriberPrefixList: Ipv4IpV6Prefixes
}
@enduml |
245ff61d6ea60eb65483efbaa28fabe9f98d0c72 | 7307665b8a87ea5ff7b65556ecaba7783e81b6c9 | /kunde/src/main/kotlin/de/hska/kunde/entity/Kunde.puml | 013f74798d817d25912a388104418abf06400435 | [] | no_license | braselbabsi/SWE_Gruppe1 | 90a458c8d3cbeda444efa71229c3bd283b3c7507 | 9de7c631b673bb2e299ff807186d918aa1803c76 | refs/heads/master | 2021-09-04T10:22:42.261025 | 2018-01-17T23:12:35 | 2018-01-17T23:12:35 | 116,799,157 | 0 | 2 | null | 2018-01-10T12:54:07 | 2018-01-09T10:05:07 | Kotlin | UTF-8 | PlantUML | false | false | 1,724 | puml | @startuml
skinparam classAttributeIconSize 0
skinparam componentStyle uml2
' skinparam monochrome true
package de.hska.kunde {
package config.security {
class SimpleUser {
}
}
package entity #DDDDDD {
Auditable <|-- Kunde
Kunde *-down-> "1" Umsatz
Kunde *-down-> "1" Adresse
Kunde *-down-> "1" GeschlechtType
Kunde *-down-> "1" FamilienstandType
Kunde *-down-> "*" InteresseType
Kunde *-down-> "1" SimpleUser
class Auditable {
- @Version version: long
- @CreatedDate erzeugt: LocalDateTime
- @LastModifiedDate aktualisiert: LocalDateTime
# Auditable()
}
class Umsatz {
- betrag: BigDecimal
- waehrung: Currency
}
class Adresse {
- @NotNull @Pattern plz: String
- @NotNull ort: String
}
enum GeschlechtType {
MAENNLICH
WEIBLICH
}
enum FamilienstandType {
LEDIG
VERHEIRATET
GESCHIEDEN
VERWITWET
}
enum InteresseType {
SPORT
LESEN
REISEN
}
class Kunde << entity >> << @Document >> {
- @Id @GeneratedValue id : String
- @NotNull @Pattern @Indexed nachname : String
- @NotNull @Email @Indexed email : String
- kategorie: int
- newsletter : boolean
- geburtsdatum: LocalDate
- homepage: URL
- @Indexed username: String
}
}
}
hide empty members
hide empty methods
hide empty fields
footer (c) Juergen Zimmermann
@enduml
|
c517fcb04fd38eb5ef96108721acb2be5dd13a1d | 71f991ceeedbb609fdc6461988fe0267d10e8bac | /uml/ui/Message.puml | d41ff1f66a105e794d98359f2b18f93d03b93762 | [] | no_license | CodyAdam/project__chatbot | 23d0ef12207fb0201258c288ee07872d957b1742 | afc0d8532f7a162d5b303b09fb41b345f4736697 | refs/heads/main | 2023-08-02T04:11:36.149644 | 2021-10-09T21:02:45 | 2021-10-09T21:02:45 | 415,371,853 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 186 | puml | @startuml
'https://plantuml.com/class-diagram
class Message(lang,msg,date,isUser) {
Language lang
String msg
String date
Boolean isUser
Img kiwi
TextBubble textBubble
Label d
}
@enduml |
d93e4e7e022b800a0a19c0df92325f4dbf24749d | d79d96c752a5329e7e03890377bd72632413cfc7 | /Zapravka Swing/src/org/orgname/app/ui/ui.plantuml | fd9900553b609a6f0f9083d757e79a95b00d55af | [] | no_license | NikKropotov/Zapravka-Swing-App | e38bae796a7ff4d7a35024233ef73d72e4554eff | f8286aa632de44fc700a0d9e9f94960c1cfa0eec | refs/heads/main | 2023-04-05T07:39:57.387545 | 2021-04-21T19:03:46 | 2021-04-21T19:03:46 | 315,711,828 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 12,689 | plantuml | @startuml
title __UI's Class Diagram__\n
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.AccountInfo {
- accountInfoArea : JTextArea
- backButton : JButton
- exitButton : JButton
- firmButton : JButton
- fuelButton : JButton
- gasButton : JButton
- historyTable : JTable
- histoyTableModel : DefaultTableModel
- mainContent : JPanel
- mainPanel : JPanel
- margin2Label : JLabel
- marginLabel : JLabel
- navMenu : JPanel
- statisticButton : JButton
- tableScrollPane : JScrollPane
+ AccountInfo()
+ getFormHeight()
+ getFormWidth()
+ initUserData()
- back()
- initButtton()
- initProperties()
- initTable()
- initUserType()
- loadTableData()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.AuthontifForm {
- enterButton : JButton
- enterPanel : JPanel
- forgotPassword : JButton
- loginField : JTextField
- loginLabel : JLabel
- mainPanel : JPanel
- mainTitle : JLabel
- marginLabel : JLabel
- passwordField : JPasswordField
- passwordLabel : JLabel
- regButton : JButton
- regPanel : JPanel
- regText1 : JLabel
- regText2 : JLabel
- regTitleLabel : JLabel
+ AuthontifForm()
+ getFormHeight()
+ getFormWidth()
- initButtons()
- initProperties()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.FirmForm {
- accountButton : JButton
- firmButton : JButton
- firmList : JList
- firmListModel : DefaultListModel<String>
- firmListScroll : JScrollPane
- fuelButton : JButton
- gasButton : JButton
- logoLabel : JLabel
- mainContent : JPanel
- mainLabe : JLabel
- mainPanel : JPanel
- marginLabel : JLabel
- navMenu : JPanel
- searchField : JTextField
- statisticButton : JButton
+ FirmForm()
+ getFormHeight()
+ getFormWidth()
- initButtton()
- initList()
- initProperties()
- initUserType()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.ForgotPassword {
- enterButton : JButton
- enterPanel : JPanel
- enterTitle : JLabel
- loginField : JTextField
- loginLabel : JLabel
- mainPanel : JPanel
- mainTitle : JLabel
- marginLabel : JLabel
- passwordField : JPasswordField
- passwordField2 : JPasswordField
- passwordLabel : JLabel
- regPanel : JPanel
- textLabel : JLabel
- updatePasswordButton : JButton
+ ForgotPassword()
+ getFormHeight()
+ getFormWidth()
- initButtons()
- initProperties()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.FuelMark {
- accountButton : JButton
- amountField : JTextField
- backButton : JButton
- deleteFuelButton : JButton
- editFuelButton : JButton
- firmButton : JButton
- fuelArea : JTextArea
- fuelButton : JButton
- fuelTable : JTable
- fuel_name : String
- gasButton : JButton
- gas_name : String
- mainContent : JPanel
- mainPanel : JPanel
- mathButton : JButton
- navMenu : JPanel
- price : String
- priceLabel : JLabel
- rowIndex : int
- scoreLabel : JLabel
- statisticButton : JButton
- table2Model : CustomTableModel<FuelEntity>
- tableScrollPane : JScrollPane
- totalLabel : JLabel
+ FuelMark()
+ getFormHeight()
+ getFormWidth()
+ getTableModel()
- initButtton()
- initProperties()
- initScore()
- initTable()
- initUserType()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.MainForm {
- JScrollFuelPanel : JScrollPane
- accountButton : JButton
- addFuelsButton : JButton
- firmButton : JButton
- fuelButton : JButton
- fuelTextArea : JTextArea
- fuelsTable : JTable
- gasButton : JButton
- logoLabel : JLabel
- mainContent : JPanel
- mainLabe : JLabel
- mainPanel : JPanel
- navMenu : JPanel
- searchField : JTextField
- statisticButton : JButton
- tableModel : CustomTableModel<FuelEntity>
- tableScrollPane : JScrollPane
+ MainForm()
+ getFormHeight()
+ getFormWidth()
+ getTableModel()
- initButtton()
- initProperties()
- initTable()
- initUserType()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.RegistrationForm {
- enterButton : JButton
- enterPanel : JPanel
- enterTitle : JLabel
- loginLabel : JLabel
- mainPanel : JPanel
- marginLabel : JLabel
- nameLabel : JLabel
- passwordLabel : JLabel
- phoneLable : JLabel
- regTitle : JLabel
- reg_loginField : JTextField
- reg_name_surnameField : JTextField
- reg_passwordField : JPasswordField
- reg_phoneField : JTextField
- registrationButton : JButton
- registrationPanel : JPanel
- text2Label : JLabel
+ RegistrationForm()
+ getFormHeight()
+ getFormWidth()
- back()
- initButtons()
- initProperties()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.StationForm {
- accountButton : JButton
- firmButton : JButton
- fuelButton : JButton
- gasButton : JButton
- logoLabel : JLabel
- mainContent : JPanel
- mainLabe : JLabel
- mainPanel : JPanel
- marginLabel : JLabel
- navMenu : JPanel
- searchField : JTextField
- stationList : JList
- stationListModel : DefaultListModel<String>
- stationListScroll : JScrollPane
- statisticButton : JButton
+ StationForm()
+ getFormHeight()
+ getFormWidth()
- initButtton()
- initList()
- initProperties()
- initUserType()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.StatisticForm {
- accountButton : JButton
- backButton : JButton
- comboBox : JComboBox<String>
- firmButton : JButton
- fuelButton : JButton
- gasButton : JButton
- logoLabel : JLabel
- mainContent : JPanel
- mainLabe : JLabel
- mainPanel : JPanel
- navMenu : JPanel
- statTable : JTable
- statisTableModel : DefaultTableModel
- statisticButton : JButton
- tableScrollPane : JScrollPane
+ StatisticForm()
+ getFormHeight()
+ getFormWidth()
+ getStatisTableModel()
- initButtton()
- initComboBox()
- initProperties()
- initTable()
- initUserType()
- loadTableData()
- loadTableDataByDate()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.addFuelSubForm {
- addFuelButton : JButton
- amountField : JTextField
- comboBox1 : JComboBox<String>
- firmField : JTextField
- fuel_codeField : JTextField
- fuel_typeField : JTextField
- mainPanel : JPanel
- marginLabel : JLabel
- priceField : JTextField
- unitField : JTextField
+ addFuelSubForm()
+ getFormHeight()
+ getFormWidth()
- initButtons()
- initComboBox()
- initProperties()
}
}
}
namespace org.orgname.app {
namespace ui {
class org.orgname.app.ui.editFuelSubFrom {
- amountField : JTextField
- comboBox1 : JComboBox<String>
- editFuelButton : JButton
- firmField : JTextField
- fuel_codeField : JTextField
- fuel_typeField : JTextField
- idFuelField : JTextField
- mainPanel : JPanel
- marginLabel : JLabel
- priceField : JTextField
- unitField : JTextField
+ editFuelSubFrom()
+ getFormHeight()
+ getFormWidth()
- initButtons()
- initFields()
- initProperties()
}
}
}
org.orgname.app.ui.AccountInfo -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.AccountInfo o-- org.orgname.app.database.manager.DailySaleEntityManager : dailySaleEntityManager
org.orgname.app.ui.AccountInfo o-- org.orgname.app.database.entity.UserEntity : user
org.orgname.app.ui.AuthontifForm -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.AuthontifForm o-- org.orgname.app.database.manager.UserEntityManager : userEntityManager
org.orgname.app.ui.FirmForm -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.FirmForm o-- org.orgname.app.database.manager.FirmEntityManager : firmEntityManager
org.orgname.app.ui.FirmForm o-- org.orgname.app.database.entity.UserEntity : user
org.orgname.app.ui.ForgotPassword -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.ForgotPassword o-- org.orgname.app.database.manager.UserEntityManager : userEntityManager
org.orgname.app.ui.FuelMark -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.FuelMark o-- org.orgname.app.database.entity.FuelEntity : fuelEntity
org.orgname.app.ui.FuelMark o-- org.orgname.app.database.manager.FuelEntityManager : fuelEntityManager
org.orgname.app.ui.FuelMark o-- org.orgname.app.database.entity.UserEntity : user
org.orgname.app.ui.MainForm -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.MainForm o-- org.orgname.app.database.entity.FuelEntity : fuelEntity
org.orgname.app.ui.MainForm o-- org.orgname.app.database.manager.FuelEntityManager : fuelEntityManager
org.orgname.app.ui.MainForm o-- org.orgname.app.database.manager.StationEntityManager : stationEntityManager
org.orgname.app.ui.MainForm o-- org.orgname.app.database.entity.UserEntity : user
org.orgname.app.ui.RegistrationForm -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.RegistrationForm o-- org.orgname.app.database.manager.UserEntityManager : userEntityManager
org.orgname.app.ui.StationForm -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.StationForm o-- org.orgname.app.database.manager.StationEntityManager : stationEntityManager
org.orgname.app.ui.StationForm o-- org.orgname.app.database.entity.UserEntity : user
org.orgname.app.ui.StatisticForm -up-|> org.orgname.app.util.BaseForm
org.orgname.app.ui.StatisticForm o-- org.orgname.app.database.manager.DailySaleEntityManager : dailySaleEntityManager
org.orgname.app.ui.StatisticForm o-- org.orgname.app.database.manager.FuelEntityManager : fuelEntityManager
org.orgname.app.ui.StatisticForm o-- org.orgname.app.database.entity.UserEntity : user
org.orgname.app.ui.addFuelSubForm -up-|> org.orgname.app.util.BaseSubForm
org.orgname.app.ui.addFuelSubForm o-- org.orgname.app.database.entity.FuelEntity : fuelEntity
org.orgname.app.ui.addFuelSubForm o-- org.orgname.app.database.manager.FuelEntityManager : fuelEntityManager
org.orgname.app.ui.editFuelSubFrom -up-|> org.orgname.app.util.BaseSubForm
org.orgname.app.ui.editFuelSubFrom o-- org.orgname.app.database.entity.FuelEntity : fuelEntity
org.orgname.app.ui.editFuelSubFrom o-- org.orgname.app.database.manager.FuelEntityManager : fuelEntityManager
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
|
483b23446beb39a7d67d67098f11ac0e748c2f0d | 80e2fa90b879f10a582396aa28d98767110fcba9 | /src/main/java/AdapterPattern/Adapter_object.puml | d049685b8c71a0a9eeedb0425e04c172e59df065 | [] | no_license | zhutianpeng/design-pattern-example | c964ff1c71a023e32bc5abe68182f704ce61c56e | 5b8603ce4fa9e39369429ab8b432b7605f00b620 | refs/heads/master | 2020-08-23T10:32:34.781374 | 2019-11-04T15:32:05 | 2019-11-04T15:32:05 | 216,596,581 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 204 | puml | @startuml
class client{
}
class Target{
+method1()
+method2()
}
class Adapter{
+method1()
+method2()
}
class Adaptee{
+method1()
}
Target <|.. Adapter
Adaptee<-- Adapter
client .right.> Target
@enduml |
100a7ad36cd0b81cdf305377bc0a22b89f8aa99e | 5e25020f21c4bac590768e30fdc2d8f99a835775 | /src/sequence_taxonomy.puml | 481dd0bd404c4a3b6f9f5b4b181b35bc94da37b5 | [] | no_license | 4less/krakenprot | 0b803cc28e08d9d3245cf24be90477328ca3d3eb | 7d97b18e6a96083905503dceccdd84bd2e3757f8 | refs/heads/master | 2020-08-02T20:17:46.713147 | 2019-09-30T13:04:20 | 2019-09-30T13:04:20 | 211,494,423 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,967 | puml | @startuml
left to right direction
skinparam linetype ortho
package taxonomy {
class Taxon {
int taxonId;
TAXONOMIC_RANK rank;
Taxon parent;
List<Taxon> children;
}
class NCBITaxonomy {
Taxon getLCA(Taxon rt1, Taxon t2);
Taxon getTaxon(int taxid);
}
enum TAXONOMIC_RANK {
Species
Genus
...
}
}
package sequence {
package encoding {
interface IEncoding {
String getEncodingString();
long kmerToLong(String kmer);
String longToKmer(long kmer, int k);
String reduce(String sequence);
char reduce(char aa);
char[] getAlphabet();
}
class Encoding implements IEncoding {
encoding: String
bit: int
}
}
interface FastxReader {
reader: BufferedReader
FastxRecord readRecord();
}
abstract class FastxRecord {
header: String
sequence: String
String getHeader()
String getSequence()
}
class Translation {
{static} char[][] extract6ReadingFrames(char[] read)
}
class FastaRecord extends FastxRecord
class FastqRecord extends FastxRecord
class BufferedFastaReader implements FastxReader
class BufferedFastqReader implements FastxReader
}
package assessment {
class IndexAssessment
class IndexAssessmentTask {
taxonomy: NCBITaxonomy
index: IndexLoader
accession: AccessionMap
reader: FastxReader
k: int
encoder: IEncoding
counter: TaxonCounterTree
}
IndexAssessment o-- IndexAssessmentTask
}
package statistics {
class OutputStatistics
class ClassificationLine
}
FastxReader --> FastxRecord
ClassificationLine --o OutputStatistics
BufferedFastaReader --> FastaRecord
BufferedFastqReader --> FastqRecord
Taxon --o NCBITaxonomy
TAXONOMIC_RANK --o Taxon
@enduml |
78ba922b3d61888298693dba3d2a72abb05b4faa | b7c218e3ce20014749661c88165ffdf2dfc44762 | /tests/Flagbit/Plantuml/Fixtures/testInheritMethod.puml | 2edad4772884204236e7d596b75475c4e44256e0 | [
"BSD-2-Clause"
] | permissive | scips/php-plantumlwriter | d23583ea7f53ab776d8f86cb7f5b9e2a6cea2525 | ec3e0f67f65ca5af6a6941a529a1c5ba310f3b02 | refs/heads/master | 2021-01-16T20:43:17.780119 | 2016-10-11T21:51:44 | 2016-10-11T21:51:44 | 62,056,439 | 0 | 1 | null | 2016-06-28T14:40:14 | 2016-06-27T13:01:21 | PHP | UTF-8 | PlantUML | false | false | 178 | puml | @startuml
class ParentClass {
+methodToOverride()
+someParentMethod()
}
class ExtendingClass {
+methodToOverride()
}
class ExtendingClass extends ParentClass
@enduml
|
d795e467097a3d979ea027d15774df02436d47c3 | c183a3bcca39c12fcdf8c69f9418d29161cd67a9 | /myMashup.plantuml | f03dbefa88cda8cde78972c0db2d10699891f018 | [
"MIT"
] | permissive | fachinformatiker/myMashup | 5b6510714e9a921771f96c5e90cf729c5ee1d54e | 63033ae85ab75c0a64cf7ec5332510a2d3325dd6 | refs/heads/master | 2021-06-25T06:01:50.243448 | 2021-06-22T13:00:04 | 2021-06-22T13:00:04 | 184,805,428 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,228 | plantuml | @startuml
title __MYMASHUP's Class Diagram__\n
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.ArgController {
}
}
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.Candy {
}
}
namespace app.fachinformatiker.myMashup.constants {
interface app.fachinformatiker.myMashup.constants.Constants {
}
}
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.Consumer {
}
}
namespace app.fachinformatiker.myMashup.utility {
class app.fachinformatiker.myMashup.utility.Debug {
}
}
namespace app.fachinformatiker.myMashup.main {
class app.fachinformatiker.myMashup.main.Main {
}
}
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.Producer {
}
}
namespace app.fachinformatiker.myMashup.model {
class app.fachinformatiker.myMashup.model.Terminator {
}
}
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
|
13ff556f04e2c78540b068967dc3ed2d53a2792f | 5be108bd1422aa39ab922d0522f9111b18f43ac0 | /app/src/main/java/com/architectica/socialcomponents/main/Chat/Chat.plantuml | 0b8ca7f167a45f951df98342276ad83cb3c48eaf | [
"Apache-2.0"
] | permissive | AryaAshish/ryft | 851ad5eecf5aa036d264b3b7aa4cf5312bc72b5d | f418206e2f19891b0caea2c65573ba9423af7afb | refs/heads/master | 2021-01-26T06:09:56.560944 | 2020-12-02T08:37:02 | 2020-12-02T08:37:02 | 243,340,976 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,781 | plantuml | @startuml
title __CHAT's Class Diagram__\n
namespace com.architectica.socialcomponents {
namespace main.Chat {
class com.architectica.socialcomponents.main.Chat.ProjectChatActivity {
~ userName : String
{static} - GALLERY_PICK : int
{static} - TOTAL_ITEMS_TO_LOAD : int
- itemPos : int
- mAuth : FirebaseAuth
- mChatAddBtn : ImageButton
- mChatMessageView : EditText
- mChatSendBtn : ImageButton
- mChatToolbar : Toolbar
- mChatUser : String
- mCurrentPage : int
- mCurrentUserId : String
- mImageStorage : StorageReference
- mLastKey : String
- mLinearLayout : LinearLayoutManager
- mMessagesList : RecyclerView
- mPrevKey : String
- mRefreshLayout : SwipeRefreshLayout
- mRootRef : DatabaseReference
- mTitleView : TextView
- messagesList : List<Messages>
+ onOptionsItemSelected()
# onActivityResult()
# onCreate()
- loadMessages()
- loadMoreMessages()
- sendMessage()
}
}
}
com.architectica.socialcomponents.main.Chat.ProjectChatActivity -up-|> android.support.v7.app.AppCompatActivity
com.architectica.socialcomponents.main.Chat.ProjectChatActivity o-- com.architectica.socialcomponents.adapters.ProjectMessageAdapter : mAdapter
com.architectica.socialcomponents.main.Chat.ProjectChatActivity o-- com.architectica.socialcomponents.views.CircularImageView : mProfileImage
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
|
f436c6b63d0b3c8268d3286966800674d4c427af | 41189885f0fa6f54ddc6f48ad8cdf6d1e2c9f479 | /out/production/GestionAsignaturas - CodigoFuente/capaLogicaNegocio/capaLogicaNegocio.plantuml | b046a5f858bd90f026a43523415b9b9b0294d873 | [] | 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 | 7,838 | plantuml | @startuml
title __CAPALOGICANEGOCIO's Class Diagram__\n
namespace capaLogicaNegocio {
class capaLogicaNegocio.Alumno {
- apellidos : String
- dni : String
- n_mat : String
- nombre : String
+ Alumno()
+ Alumno()
+ Alumno()
+ Alumno()
+ actualizarAlumnos()
+ altaAlumno()
+ altaMasivaAlumnos()
+ bajaAlumno()
+ cambioAConvocatoriaExtraordinaria()
+ consultarAlumno()
+ consultarHistoricoAlumno()
+ estaDadoDeAlta()
+ getApellidos()
+ getDNI()
+ getN_Mat()
+ getNombre()
+ noEstaDadoDeAlta()
+ obtenerDatosAlumno()
+ obtenerDatosAlumno()
- estaDadoDeAltaEnCursoActual()
- estaVacio()
- numMatriculaEstaDadaDeAlta()
- numMatriculaEstaDadaDeAltaEnCursoActual()
- validarCampos()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.Convocatoria {
- actual : int
- cod_convocatoria : String
{static} - convocatoria_actual : String
+ BackUpConvocatoria()
+ Convocatoria()
+ Convocatoria()
+ Convocatoria()
+ cambioConvocatoria()
+ getActual()
+ getConvocatoria()
+ getConvocatoriaActual()
+ recuperarConvocatoriaActual()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.Curso {
- actual : int
- cod_curso : int
{static} - curso_actual : int
+ BackUpCurso()
+ Curso()
+ Curso()
+ Curso()
+ cambioCurso()
+ cambioCursoAnterior()
+ getActual()
+ getCurso()
+ getCursoActual()
+ getCursoActualEnString()
+ getCursoEnString()
+ recuperarCursoActual()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.Evaluacion {
- cod_convocatoria : String
- cod_curso : int
- cod_evaluacion : int
- cod_examen : String
- cod_grupo_practicas : int
- cod_practica : String
{static} - cod_ultima_evaluacion : int
- dni_alumno : String
- ev_continua : boolean
- examen_convalidado : boolean
- n_mat_alumno : String
- nota_ev_c : float
- nota_ex : float
- nota_final : float
- nota_p1 : float
- nota_p2 : float
- nota_p3 : float
- nota_p4 : float
- nota_pr : float
- practica_convalidada : boolean
+ Evaluacion()
+ Evaluacion()
+ Evaluacion()
+ Evaluacion()
+ Evaluacion()
+ actualizarNotasAprobadasConvocatoriaAnterior()
+ actualizarNotasEvaluaciones()
+ altaEvaluacion()
+ codEvaluacion()
+ consultarEvaluacion()
+ eliminarEvaluacionesConvocatoriaActual()
+ eliminarEvaluacionesConvocatoriaActual()
+ getCodUltimaEvaluacion()
+ getCod_Convocatoria()
+ getCod_Curso()
+ getCod_Examen()
+ getCod_Practica()
+ getDNI()
+ getEs_Ev_Continua()
+ getExamenConvalidado()
+ getGrupo_Practica()
+ getN_Mat()
+ getNota_Ev_C()
+ getNota_Ex()
+ getNota_Final()
+ getNota_P1()
+ getNota_P2()
+ getNota_P3()
+ getNota_P4()
+ getNota_Practica()
+ getNuevoCodEvaluacion()
+ getPracticaConvalidada()
+ recuperarUltimoCodEvaluacion()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.Examen {
+ Examen()
+ altaNuevoCodExamen()
+ bajaCodExamenConvocatoriaActual()
+ bajaCodExamenConvocatoriaActual()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.GrupoClase {
- cod_grupo_clase : String
+ GrupoClase()
+ altaGrupoClase()
+ altaGrupoClase()
+ estaDadoDeAlta()
+ getCodGrupoClase()
+ noEstaDadoDeAlta()
+ noEstaDadoDeAlta()
+ validarGrupoClase()
- noEstaVacio()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.GrupoPractica {
- cod_grupo : int
- nota : float
+ GrupoPractica()
+ GrupoPractica()
+ GrupoPractica()
+ GrupoPractica()
+ GrupoPractica()
+ actualizarGruposPracticas()
+ altaGrupoPractica()
+ bajaGrupoPractica()
+ consultarGrupoPractica()
+ desactivarGruposPracticas()
+ getAlumno1()
+ getAlumno2()
+ getCodGrupoPractica()
+ getNota()
+ getTutor()
+ reactivarGruposPracticasEnUsoEnConvocatoriaActual()
+ reactivarGruposPracticasEnUsoEnConvocatoriaActual()
+ validarCampos()
- estaVacio()
- noEstaVacio()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.Matricula {
{static} - cod_ultima_matricula : int
- curso : int
- dni_alumno : String
+ Matricula()
+ Matricula()
+ altaMatricula()
+ eliminarMatriculasCursoActual()
+ getCodUltimaMatricula()
+ getCod_Curso()
+ getDNI()
+ getGrupo_Clase()
+ getNuevoCodMatricula()
+ recuperarUltimoCodMatricula()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.Practica {
+ Practica()
+ altaNuevoCodPractica()
+ bajaCodPracticaConvocatoriaActual()
+ bajaCodPracticaConvocatoriaActual()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.Profesor {
- apellidos : String
{static} - clave_ultimo_profesor : int
- cod_profesor : int
- nombre : String
+ Profesor()
+ Profesor()
+ Profesor()
+ Profesor()
+ Profesor()
+ actualizarProfesores()
+ altaProfesor()
+ bajaProfesor()
+ consultarProfesor()
+ eliminarImparticionesCursoActual()
+ getApellidos()
+ getClaveUltimoProfesor()
+ getCodProfesor()
+ getGrupoClase1()
+ getGrupoClase2()
+ getNombre()
+ getNuevaClaveProfesor()
+ obtenerDatos()
+ obtenerDatos()
+ reactivarProfesoresConRegistrosEnConvocatoriaActual()
+ recuperarUltimoCodProfesor()
+ tieneTutorias()
- estaVacio()
- noEstaVacio()
- validarCampos()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.TipoEvaluacion {
- ev_c : boolean
- peso_evC : float
- peso_ex : float
- peso_pr : float
+ TipoEvaluacion()
+ getPesoEvC()
+ getPesoEx()
+ getPesoPr()
}
}
namespace capaLogicaNegocio {
class capaLogicaNegocio.Tutoria {
{static} - cod_ultima_tutoria : int
+ Tutoria()
+ eliminarTutoriasConvocatoriaActual()
+ getCodUltimaTutoria()
+ getNuevoCodTutoria()
+ recuperarUltimoCodTutoria()
}
}
capaLogicaNegocio.Evaluacion o-- capaLogicaNegocio.TipoEvaluacion : tipo_evaluacion
capaLogicaNegocio.GrupoPractica o-- capaLogicaNegocio.Alumno : alumno1
capaLogicaNegocio.GrupoPractica o-- capaLogicaNegocio.Alumno : alumno2
capaLogicaNegocio.GrupoPractica o-- capaLogicaNegocio.Profesor : tutor
capaLogicaNegocio.Matricula o-- capaLogicaNegocio.GrupoClase : grupo_clase
capaLogicaNegocio.Profesor o-- capaLogicaNegocio.GrupoClase : grupo_clase1
capaLogicaNegocio.Profesor o-- capaLogicaNegocio.GrupoClase : grupo_clase2
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
|
7d2c9bbf28953a28a8c358adf606ad72263d1a5c | 644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc | /docs/uml/tests/include.puml | 1431312dbc24db2b80bcd1cfd3a6999a6b2eebc2 | [] | no_license | tzAcee/photonized | c929a6c04bedd0304a4e427d6c2895cdf73568d3 | aa53ed7bda18959c58467fe4560dc3ff4e1ae422 | refs/heads/main | 2023-05-03T15:13:31.148910 | 2021-05-25T13:55:17 | 2021-05-25T13:55:17 | 316,536,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,512 | puml | @startuml
class RequiredTest {
+ exception_test() : void
+ success_test() : void
+ type_test() : void
}
class DeviceChangerTest {
+ set_parser_null_test() : void
+ set_parser_valid_test() : void
+ change_write_test() : void
+ change_exception_test() : void
}
class DeviceReaderTest {
+ set_parser_test() : void
+ set_parser_valid_test() : void
+ delete_null_test() : void
+ read_call_structure_test() : void
+ print_structure_simple_test() : void
}
class DeviceSorterTest {
+ set_parser_test() : void
+ get_user_entry_intro_test() : void
+ get_user_entry_name_test() : void
+ get_user_entry_description_test() : void
+ get_user_entry_return_test() : void
+ get_user_entry_split_null_test() : void
+ sort() : void
}
class DeviceTest {
+ constructor_parser_test() : void
+ constructor_reader_test() : void
+ constructor_sorter_test() : void
+ constructor_changer_test() : void
+ cmd_parser_dependency_test() : void
+ init_reader_test() : void
+ init_sorter_test() : void
+ init_changer_test() : void
+ read_test() : void
+ sort_test() : void
+ change_test() : void
}
class FactoryTest {
+ constructor_parser_test() : void
+ constructor_device_test() : void
+ constructor_menu_test() : void
}
class MenuBuilderTest {
+ get_args_test() : void
+ get_lvl_test() : void
+ get_methods_count_test() : void
+ get_methods_not_null_test() : void
}
class MenuTest {
+ constructor_exception_test() : void
}
class MenuViewTest {
+ constructor_test() : void
+ constructor_null_test() : void
+ configure_test() : void
+ build_test() : void
+ show_test() : void
}
class DeviceNoteServiceTest {
+ get_file_path_null_test() : void
+ get_file_path_create_test() : void
+ get_file_path_test() : void
+ add_entry_test() : void
+ delete_entry_test() : void
+ read_entries_test() : void
}
class DevicePathServiceTest {
+ path_valid_null_test() : void
+ path_valid_true_test() : void
+ get_file_exception_test() : void
+ get_file_test() : void
}
class IMenuBuilderTest {
+ get_lvl_test() : void
+ get_args_test() : void
+ get_methods_test() : void
}
class IDeviceNoteServiceTest {
+ get_file_path_test() : void
+ add_entry_test() : void
+ delete_entry_test() : void
+ read_entries_test() : void
}
class IDevicePathServiceTest {
+ path_valid_test() : void
+ get_file_test() : void
}
@enduml
|
b1ff45046ec106162ca9c8923355a3e1d4c5c3c4 | 711bb0f4849d27fe88164a286da9cfa7dc37b4cd | /GameTracker/GameTrackerUML.puml | f6fdc79a6be0fc87a658b0cc192e9345217c16eb | [] | no_license | Schlese/GameTracker | c8a45b40e376929a8f4c4925e11d48478fc34260 | b80839d64444da8d56e821006ae42fc7223f2c99 | refs/heads/master | 2020-11-26T02:03:48.747796 | 2019-12-20T18:21:13 | 2019-12-20T18:21:13 | 228,931,874 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,716 | puml | @startuml
class Game {
long GameId
string Title
string Genre
}
class Platform {
long PlatformId
string Name
}
class GameRelease {
long GameReleaseId
long GameId
Game Game
long PlatformId
Platform Platform
DateTime ReleaseDate
}
class People {
long PeopleId
string FirstName
string LastName
}
class User {
string Username
string Email
List<UserGame> UserGames
}
class UserGame {
long UserGameId
long UserId
User User
long GameReleaseId
GameRelease GameRelease
bool IsWish
}
class GameReleasesController {
GameTrackerContext _context
GetGameRelease()
}
class UserGamesController {
GameTrackerContext _context
GetUserGames(string list, long id)
PutUser(long id, UserGamePutRequest request)
PostUser(UserGamePostRequest request)
DeleteUserGame(long id)
GetBacklogGames(User user)
GetWishlistGames(User user)
UserGameExists(long id)
}
class UsersController {
GameTrackerContext _context
GetUser()
PutUser(long id, User user)
PostUser(User user)
DeleteUser(long id)
UserExists(long id)
}
class GameTrackerContext {
DbSet People
DbSet User
DbSet Game
DbSet Platform
DbSet GameRelease
DbSet UserGame
OnModelCreating(ModelBuilder modelBuilder)
}
class DateHelper {
_instance
getInstance()
checkBeforeEqualsToday(DateTime checkDate)
checkBeforeToday(DateTime checkDate)
}
Game "1" -- "1..*" GameRelease
Platform "1" -- "1..*" GameRelease
People <|-- User
User "1" -- "1..*" UserGame
GameRelease "1" -- "1..*" UserGame
User <-- UserGamesController
User <-- UsersController
GameRelease <-- GameReleasesController
UserGame <-- UserGamesController
GameTrackerContext <-- UsersController
GameTrackerContext <-- GameReleasesController
GameTrackerContext <-- UserGamesController
DateHelper <-- UserGamesController
@enduml |
2e1336909959be67f1d01215172e0dc3cffcf53c | a08d18fffd5657f2eea3307191d3e5159398ee16 | /src/PaooGame/Items/Items.plantuml | 460006a5ca2725f07051be005b5e9952cc611c9b | [] | no_license | raducornea/Joc-PAOO | 9436b9b0e74af3020d746fe9400828cd17e9aaae | 1f597ba2db22d662c624f7c0329727539e81fe04 | refs/heads/master | 2023-07-30T12:00:36.361135 | 2021-09-19T07:10:59 | 2021-09-19T07:10:59 | 408,056,883 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,475 | plantuml | @startuml
title __ITEMS's Class Diagram__\n
namespace PaooGame {
namespace Items {
class PaooGame.Items.Breakable {
}
}
}
namespace PaooGame {
namespace Items {
abstract class PaooGame.Items.Character {
{static} + DEFAULT_CREATURE_HEIGHT : int
{static} + DEFAULT_CREATURE_WIDTH : int
{static} + DEFAULT_DAMAGE : int
{static} + DEFAULT_LIFE : int
{static} + DEFAULT_SPEED : float
# attackDamage : int
# life : int
# speed : float
# xMove : float
# yMove : float
+ Character()
+ GetLife()
+ GetSpeed()
+ GetXMove()
+ GetYMove()
+ Move()
+ MoveX()
+ MoveY()
+ SetLife()
+ SetSpeed()
+ SetXMove()
+ SetYMove()
+ getAttackDamage()
+ getLife()
+ setLife()
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Decorations {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Hero {
- image : BufferedImage
- letterImages : List<BufferedImage>
{static} - myItemsImages : List<BufferedImage>
{static} - myItemsString : List<String>
{static} - npcs : List<NPC>
- score : int
- totalAbsconded : int
- totalGreeded : int
- xSafe : float
- ySafe : float
+ CheckCollision()
+ Draw()
+ Draw()
+ Hero()
+ Update()
+ getAbsconded()
+ getCamera()
+ getGreeded()
{static} + getHeroNpcs()
{static} + getMyItemsImages()
{static} + getMyItemsString()
+ getScore()
+ setAbsconded()
+ setGreeded()
+ setScore()
- GetInput()
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Indestructible {
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Inventory {
- downFlag : boolean
- enterFlag : boolean
- escFlag : boolean
- hashtagX : int
- hashtagY : int
- helpString : String
{static} - hero : Hero
- image : BufferedImage
- letterImages : List<BufferedImage>
- myItemsImages : List<BufferedImage>
- myItemsString : List<String>
- myObjectivesString : List<String>
- myStatsString : List<String>
- optionsString : List<String>
- page : String
- releaseDOWNFlag : boolean
- releaseENTERFlag : boolean
- releaseESCFlag : boolean
- releaseUPFlag : boolean
{static} - state : boolean
- upFlag : boolean
+ Draw()
+ Inventory()
+ Update()
+ getPage()
{static} + getState()
+ resetInventory()
{static} + setState()
}
}
}
namespace PaooGame {
namespace Items {
abstract class PaooGame.Items.Item {
# attackBounds : Rectangle
# bounds : Rectangle
# height : int
# normalBounds : Rectangle
# width : int
# x : float
# y : float
{abstract} + Draw()
+ GetHeight()
+ GetWidth()
+ GetX()
+ GetY()
+ Item()
+ SetAttackMode()
+ SetHeight()
+ SetNormalMode()
+ SetWidth()
+ SetX()
+ SetY()
{abstract} + Update()
{static} + getSymbolIndex()
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Menu {
- downFlag : boolean
- enterFlag : boolean
- escFlag : boolean
- hashtagX : int
- hashtagY : int
- helpString : String
{static} - hero : Hero
- image : BufferedImage
- isInMenu : boolean
- letterImages : List<BufferedImage>
- myItemsImages : List<BufferedImage>
- myItemsString : List<String>
- myStatsString : List<String>
- optionsString : List<String>
- releaseDOWNFlag : boolean
- releaseENTERFlag : boolean
- releaseESCFlag : boolean
- releaseUPFlag : boolean
{static} - state : boolean
- upFlag : boolean
+ Draw()
+ Menu()
+ Update()
+ getHashtagX()
+ getHashtagY()
{static} + getState()
+ resetMenu()
{static} + setState()
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.NPC {
~ DEFAULT_PEACIFYOPTIONS : int
- image : BufferedImage
- isFriend : boolean
- peacifyOptions : int
- visited : boolean
+ Draw()
+ NPC()
+ Update()
+ getFriend()
+ getNPCImage()
+ getPeacifyOptions()
+ getVisited()
+ setFriend()
+ setPeacifyOptions()
+ setVisited()
- GetInput()
}
}
}
namespace PaooGame {
namespace Items {
class PaooGame.Items.Pickable {
- image : BufferedImage
+ Draw()
+ Pickable()
+ Update()
}
}
}
namespace PaooGame {
namespace Items {
abstract class PaooGame.Items.Terrain {
# image : BufferedImage
# xMove : float
# yMove : float
+ Move()
+ MoveX()
+ MoveY()
+ Terrain()
}
}
}
PaooGame.Items.Character -up-|> PaooGame.Items.Item
PaooGame.Items.Hero -up-|> PaooGame.Items.Character
PaooGame.Items.Hero o-- PaooGame.Graphics.Camera : camera
PaooGame.Items.Inventory -up-|> PaooGame.Items.Item
PaooGame.Items.Item o-- PaooGame.RefLinks : refLink
PaooGame.Items.Menu -up-|> PaooGame.Items.Item
PaooGame.Items.NPC -up-|> PaooGame.Items.Character
PaooGame.Items.Pickable -up-|> PaooGame.Items.Terrain
PaooGame.Items.Terrain -up-|> PaooGame.Items.Item
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
|
b9c1a38368c9b7d1e30eeef34307448dd208372a | 521de994d4f795ca68c948c664880d25f6f11fe0 | /restaurant.plantuml | 6954e8652a25e0619d07a0353ad53c2e0cb4a528 | [] | no_license | DeniseNamutebi/restaurants | 1bda64c576381d3deaf1c534514cc463cfacfadb | c35cbbeb366b35dadbfc6a76df0247169cbbaa6b | refs/heads/master | 2022-12-27T00:44:07.845669 | 2020-09-30T09:18:55 | 2020-09-30T09:18:55 | 299,867,821 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 402 | plantuml | @startuml
class Restaurant{
name STRING
image STRING
cuisine STRING
menus Array<Menu>
capacity Array<Table>
addMenu()
addTable()
}
class Table{
number INTERGER
seats INTERGER
}
class Menu{
name STRING
type STRING
items Array<Item>
addItem()
}
class Item{
name STRING
price FLOAT
}
Restaurant--{Menu
Restaurant--{Table
Menu--{Item
@enduml |
a3cb2d98332988cc1b1b144c7b66f8e170d17a25 | 3733bb5077282e0af5c90e9fbacc3a9ad1c93b91 | /src/src/business/models/models.plantuml | 641565e0d30ecefc39a6feca47745318477c35a9 | [] | no_license | MilanowskiJ/jupiter-universal-experimenter-group-3 | e46c32a500331e932d675770b511ee88bdd28ea8 | 2281a63069707423b37ee918257425f7e627eb13 | refs/heads/main | 2023-04-27T23:32:47.502985 | 2021-05-20T17:20:19 | 2021-05-20T17:20:19 | 359,823,214 | 0 | 0 | null | 2021-05-06T14:03:03 | 2021-04-20T13:20:11 | Java | UTF-8 | PlantUML | false | false | 5,732 | plantuml | @startuml
title __MODELS's Class Diagram__\n
namespace business {
namespace models {
class business.models.Capability {
- ID : String
- description : String
- name : String
- status : String
- type : String
+ Capability()
+ addQuery()
+ deleteQuery()
+ getDatabaseID()
+ getDescription()
+ getID()
+ getName()
+ getQuery()
+ getStatus()
+ getType()
+ isOperational()
+ processResult()
+ setStatus()
+ updateQuery()
}
}
}
namespace business {
namespace models {
class business.models.Command {
- ID : String
- name : String
- parameters : String
+ Command()
+ addQuery()
+ deleteQuery()
+ getDatabaseID()
+ getQuery()
+ processResult()
+ updateQuery()
}
}
}
namespace business {
namespace models {
class business.models.ComplexExperiment {
- quantity : String
- supplyItem : String
- target : String
- whatToDo : String
+ ComplexExperiment()
+ addQuery()
+ deleteQuery()
+ getDatabaseID()
+ getQuery()
+ process()
+ processResult()
+ setQuantity()
+ setSupplyItem()
+ setTarget()
+ setWhatToDo()
+ updateQuery()
+ validate()
}
}
}
namespace business {
namespace models {
interface business.models.DatabaseModel {
{abstract} + addQuery()
{abstract} + deleteQuery()
{abstract} + getDatabaseID()
{abstract} + getQuery()
{abstract} + processResult()
{abstract} + updateQuery()
}
}
}
namespace business {
namespace models {
abstract class business.models.Experiment {
# complete : String
# description : String
# experimentID : String
# name : String
# priority : String
+ Experiment()
+ getComplete()
+ getDescription()
+ getExperimentID()
+ getPriority()
+ isDoable()
+ setComplete()
+ setDescription()
+ setExperimentID()
+ setPriority()
+ validate()
}
}
}
namespace business {
namespace models {
class business.models.Payload {
~ payloadObjects : List<JSONObject>
+ process()
}
}
}
namespace business {
namespace models {
interface business.models.Processable {
{abstract} + process()
}
}
}
namespace business {
namespace models {
class business.models.ReagentExperiment {
- amount : String
- measurementsToTake : String
- reagent : String
- sampleID : String
+ ReagentExperiment()
+ addQuery()
+ deleteQuery()
+ getDatabaseID()
+ getQuery()
+ process()
+ processResult()
+ setAmount()
+ setMeasurements()
+ setReagent()
+ setSampleID()
+ updateQuery()
}
}
}
namespace business {
namespace models {
class business.models.Sample {
- amount : int
- name : String
- sampleID : String
+ Sample()
+ getAmount()
+ getName()
+ getSampleID()
}
}
}
namespace business {
namespace models {
class business.models.SampleExperiment {
- amount : String
- target : String
- where : String
+ SampleExperiment()
+ addQuery()
+ deleteQuery()
+ getAmount()
+ getDatabaseID()
+ getQuery()
+ getTarget()
+ getWhere()
+ process()
+ processResult()
+ setAmount()
+ setTarget()
+ setWhere()
+ updateQuery()
}
}
}
namespace business {
namespace models {
class business.models.Supply {
- name : String
- quantityAvailable : int
- quantityOriginal : int
- type : String
- unit : String
+ Supply()
+ addQuery()
+ deleteQuery()
+ getDatabaseID()
+ getName()
+ getQuantityAvailable()
+ getQuantityOriginal()
+ getQuery()
+ getType()
+ getUnit()
+ processResult()
+ setName()
+ setQuantityAvailable()
+ setQuantityOriginal()
+ setType()
+ setUnit()
+ updateQuery()
- checkEnough()
- reduceQuantityAvailable()
}
}
}
business.models.Capability .up.|> business.models.DatabaseModel
business.models.Command .up.|> business.models.DatabaseModel
business.models.ComplexExperiment -up-|> business.models.Experiment
business.models.Experiment .up.|> business.models.DatabaseModel
business.models.Experiment .up.|> business.models.Processable
business.models.Payload .up.|> business.models.Processable
business.models.ReagentExperiment -up-|> business.models.Experiment
business.models.SampleExperiment -up-|> business.models.Experiment
business.models.Supply .up.|> business.models.DatabaseModel
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
|
3311865145996073d472361412131079d45a46bc | 10ba145e3e26796ec618e76328f3ca90d4521b6a | /设计模式/java演示版/design-pattern/src/main/java/com/zhenhunfan/design/pattern/principle/_02_segregation/Demo2.puml | bdfe9f6b4ca9c07ea3ab70c48464afac2b1633f9 | [] | no_license | zhenhunfan/learn | a7fa4c39ce0e791313abaa51325591a6f98abf09 | bdb6538de38db9e3d9aa6a827f4a445e57325852 | refs/heads/main | 2023-03-30T14:22:26.202669 | 2021-03-30T02:19:20 | 2021-03-30T02:19:20 | 309,221,361 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 376 | puml | @startuml
class A
class C
interface interface1{
void operation1()
}
interface interface2{
void operation2()
void operation3()
}
interface interface3{
void operation4()
void operation5()
}
class B
class D
interface1 <.. A
interface2 <.. A
interface1 <.. C
interface3 <.. C
interface1 <|.. B
interface2 <|.. B
interface1 <|.. D
interface3 <|.. D
@enduml |
b25a399714f4b10c86ff8193cf078113abff2f9a | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyBusinessUnitSetContactEmailAction.puml | bf65905df450174c71214e04072e0ef275096929 | [] | 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 | 491 | 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 MyBusinessUnitSetContactEmailAction [[MyBusinessUnitSetContactEmailAction.svg]] extends MyBusinessUnitUpdateAction {
action: String
contactEmail: String
}
interface MyBusinessUnitUpdateAction [[MyBusinessUnitUpdateAction.svg]] {
action: String
}
@enduml
|
9013b5131870c1ec47961d371bf2706b7c3aba4c | 088856ec5790009dd9f9d3498a56fe679cfab2e8 | /src/puml/5/ucmitz/svg/class/bc-editor-template/manage_editor_templates.puml | 7174f48d2e5c21ed487790bdf25ae37567b07113 | [] | no_license | baserproject/baserproject.github.io | 21f244348890652286969afa1fde27c5c4d9e4ad | 8d61cf720f833854e1a3c97136e22e75baea7bb0 | refs/heads/master | 2023-08-09T03:21:53.341423 | 2023-07-27T07:28:50 | 2023-07-27T07:28:50 | 228,826,353 | 0 | 12 | null | 2023-08-17T02:31:05 | 2019-12-18T11:31:51 | HTML | UTF-8 | PlantUML | false | false | 1,099 | puml | @startuml
skinparam handwritten true
skinparam backgroundColor white
hide circle
skinparam classAttributeIconSize 0
title エディターテンプレート管理
class Admin\EditorTemplatesController {
+ 一覧:index()
+ 新規追加:add()
+ 編集:edit()
+ 削除:delete()
+ JSを呼び出す:js()
}
class EditorTemplatesService {
+ EditorTemplatesTable
}
class EditorTemplatesServiceInterface {
+ 初期データ取得:getNew()
+ 作成:create()
+ 編集:update()
+ 削除:delete()
+ 単一データ取得:get()
+ 一覧データ取得:getIndex()
+ リスト取得:getList()
}
class EditorTemplatesTable {
}
class EditorTemplate {
+ テンプレート名:name
+ テンプレートアイコン:image
+ 説明文:description
+ テンプレート内容:html
}
Admin\EditorTemplatesController -down[#Black]-> EditorTemplatesService
EditorTemplatesService -down[#Black]-> EditorTemplatesTable
EditorTemplatesService -left[dotted,#Black]-|> EditorTemplatesServiceInterface
EditorTemplatesTable -down[#Black]-> EditorTemplate
@enduml
|
ccc936b617f675b6eef8229a8a84afc5b9200f25 | 14aff7a8f8c9d4f961962f538398f322fa1a5481 | /ProgramowanieObiektowe/Lista7/PO_L7/out/production/L7/com/company/company.plantuml | 390f5e54c5d2ba33d924c058bfcc42a2ce8d3228 | [] | no_license | jakubprzydatek/studia | 6529c5d024bf42d4c230dc966d8b3fbfa32729f1 | 9ae3ffe6206ed8fccd4434c5646c9993f9cf57fe | refs/heads/main | 2023-04-11T16:40:21.418832 | 2021-04-22T21:56:15 | 2021-04-22T21:56:15 | 318,674,064 | 0 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 380 | plantuml | @startuml
title __COMPANY's Class Diagram__\n
namespace com.company {
class com.company.Main {
{static} + main()
{static} - sprawdzArgumenty()
}
}
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
|
8180a31dc0b1060689b7f761734a59321caf31cc | 64c8dacb32731ce02a24ccd7f4f71da2dabc86e3 | /Module08_Heritage/POOI_Heritage_CompteBancaireSansAbstraction/plantuml/POOI_Heritage_CompteBancaireSansAbstraction/Transactions/TransactionInteret.puml | 7a570902de0c2ba8429d33fdfd9eb3dc04fa8c8c | [
"CC0-1.0"
] | permissive | Mouadh-1994770/420-W20-SF | 0233d6e99d48dea14068db093686507c878892fb | a066b8b1fdcc4cb07f7c274b6aa3c479aee6d505 | refs/heads/master | 2022-12-21T19:44:13.247779 | 2020-06-02T03:21:28 | 2020-06-02T03:21:28 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 127 | puml | @startuml
class TransactionInteret {
+ TransactionInteret(p_montant:decimal)
}
Transaction <|-- TransactionInteret
@enduml
|
a6b11ae449787a4b3c53ac47826016ca55e5b6f1 | fce25996263e5e7d6825c9887cd6636cafa76445 | /14ood/encapsulation.puml | 80edd95073bc9071d4d2ef585813ee32ae0c21ea | [
"CC-BY-4.0",
"CC-BY-3.0"
] | permissive | janbucher/rsd-engineeringcourse | d6a8f66365060c32298d7e9e469069b77f313338 | e54fa9faa1a36faba726015640a7c6b62fa43d30 | refs/heads/master | 2022-03-03T19:30:08.608224 | 2019-11-12T11:31:08 | 2019-11-12T11:31:08 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 127 | puml | @startuml
class MyClass {
-privateInstanceVariable
+publicInstanceVariable
-privateMethod()
+publicMethod()
}
@enduml
|
17683a58c47882f0c2133dcb038a069291fe58a8 | 2733e9340195c6bcd927034ca398b0467c862c7f | /Generator/pipe.puml | 4b1a6f860c9d159748125cab5d080eb021719589 | [] | no_license | adrian-helberg/bachelor | 0026c51b9feb31ba3dc0dafdcd68a30cbd492509 | d5261079a68bbc7c72c11ef93ff1e4f0241e5c51 | refs/heads/master | 2021-07-09T02:59:34.394076 | 2021-03-28T12:52:49 | 2021-03-28T12:52:49 | 237,755,354 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 879 | puml | @startuml
class de.haw.pipeline.pipe.EstimatorPipe {
- {static} Logger logger
+ PipelineContext process(PipelineContext)
}
class de.haw.pipeline.pipe.CompressorPipe {
- {static} Logger logger
+ PipelineContext process(PipelineContext)
}
class de.haw.pipeline.pipe.GeneralizerPipe {
- {static} Logger logger
+ PipelineContext process(PipelineContext)
}
class de.haw.pipeline.pipe.PipelineContext {
+ LSystem lSystem
+ TreeNode<TemplateInstance> tree
+ float wL
+ float w0
+ Random randomizer
+ Estimator estimator
}
class de.haw.pipeline.pipe.InfererPipe {
- {static} Logger logger
+ PipelineContext process(PipelineContext)
}
de.haw.pipeline.Pipe <|.. de.haw.pipeline.pipe.EstimatorPipe
de.haw.pipeline.Pipe <|.. de.haw.pipeline.pipe.CompressorPipe
de.haw.pipeline.Pipe <|.. de.haw.pipeline.pipe.GeneralizerPipe
de.haw.pipeline.Pipe <|.. de.haw.pipeline.pipe.InfererPipe
@enduml |
c956c17d8eb49c92ef995ef9a50e4514e9d05cde | 55261e1e9a841f514598d8fb0fbe95a7493460e3 | /class/classes/logic/transaction.puml | f69aacb243d3a2951233e5e40f521d57a6d968f4 | [] | no_license | LucasIsasmendi/lisk-core-plantuml | ac01094fd56590b361ab8992b52f0cfc3175aa60 | e0941f6e800dc16a9dc0f8367304149fbf2200e1 | refs/heads/master | 2021-01-21T11:53:42.861882 | 2017-05-24T12:56:58 | 2017-05-24T12:56:58 | 91,758,697 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,184 | puml | @startuml
class Transaction < logic > {
- __private: {}
- self: this
- modules
.. this.scope ..
- db
- ed
- schema
- genesisblock
- account
- logger
.. modules ..
- rounds
.. prototype ..
+ dbTable: trs
+ schema: Transaction
+ dbFields
-- Methods --
+ Transaction (db, ed, schema, genesisblock, account,
logger, cb)
+ create (data)
+ attachAssetType (typeId, instance)
+ sign (keypair, trs)
+ multisign (keypair, trs)
+ getId (trs)
+ getHash (trs)
+ getBytes (trs, skipSignature, skipSecondSignature)
+ ready (trs, sender)
+ countById (trs, cb)
+ checkConfirmed (trs, cb)
+ checkBalance (amount, balance, trs, sender)
+ process (trs, sender, requester, cb)
+ verify (trs, sender, requester, cb)
+ verifySignature (trs, publicKey, signature)
+ verifySecondSignature (trs, publicKey, signature)
+ verifyBytes (bytes, publicKey, signature)
+ apply (trs, block, sender, cb)
+ undo (trs, block, sender, cb)
+ applyUnconfirmed (trs, sender, requester, cb)
+ undoUnconfirmed (trs, sender, cb)
+ dbSave (trs)
+ afterSave (trs, cb)
+ objectNormalize (trs)
+ dbRead (raw)
+ bindModules (rounds)
}
@endtuml
|
b7feb41ecae3003ccc9154af00c620d5709f7a80 | a1f38b56c2a5674ddf2f84a60c8e414cbda32371 | /docs/diagrams/store.puml | b943df11e7dfd96605e4529669fc7e32e4ef6502 | [
"Apache-2.0"
] | permissive | go-po/po | d6ee7cbca092ffbed27174826c382c8d238f1eea | a9c877c3e461c54edaeda820fcbf3f38aa866be5 | refs/heads/master | 2020-12-22T10:21:53.589376 | 2020-08-16T19:24:47 | 2020-08-16T19:24:47 | 236,748,932 | 2 | 0 | Apache-2.0 | 2020-08-16T19:24:48 | 2020-01-28T14:05:10 | Go | UTF-8 | PlantUML | false | false | 248 | puml | @startuml
hide empty members
' Implicit Interfaces
interface Store {
ReadRecords()
Begin() store.Tx
Store()
}
class InMemory {
}
class Postgres {
}
Store -r-> Tx : Creates
InMemory -u-|> Store
Postgres -u-|> Store
@enduml
|
cad045ce7117dc7a3592738956ad1775a5059822 | fa3f5368cbba48de3b9c57c79785e51086afb04d | /plantuml/Android-RouteTypes.plantuml | 1130031d904838ac04a206e087038bf3b05a4f7c | [] | no_license | langenhagen/experiments-and-tutorials | 8f853675e0d8718581c33ff099fcb35c8958f315 | 9598af1b8be7ebe8462a0bbfc87a6edfa5063741 | refs/heads/master | 2023-08-03T15:07:38.757388 | 2023-07-31T16:15:34 | 2023-07-31T16:15:34 | 211,196,519 | 4 | 1 | null | 2022-03-27T10:02:49 | 2019-09-26T23:15:40 | HTML | UTF-8 | PlantUML | false | false | 264 | plantuml | @startuml
class RouteTypes {
FASTEST
SHORTEST
BALANCED
}
class RouteOptions {
}
class Type {
FASTEST
SHORTEST
BALANCED
}
RouteOptions +-- Type
note "Looks redundant" as N1
@enduml |
51190e3ca669054249b5617f4d498c8ec1fdee5a | 651a2439478b74a6a9fd06cb27edc0105b62105c | /docs/catalog-of-terms/Domain-Event/domain-event.puml | 756b764dc2d492a8d865c132e991d06ed40ac4e8 | [
"MIT"
] | permissive | NicoJuicy/modular-monolith-with-ddd | 2abbaefe3e715faf009257db1ce76d2ac0539a7b | ff54f9e6a2f8a672ea0aef5ffe7c163b0b8eb7b8 | refs/heads/master | 2023-01-20T16:11:47.006416 | 2022-08-23T20:58:28 | 2022-08-23T20:58:28 | 221,891,602 | 0 | 0 | MIT | 2023-01-18T14:33:28 | 2019-11-15T09:36:27 | null | UTF-8 | PlantUML | false | false | 348 | puml | @startuml
class SubscriptionPaymentCreatedDomainEvent {
+SubscriptionPaymentId
+PayerId
+SubscriptionPeriodCode
+CountryCode
+Status
+Value
+Currency
}
class DomainEventBase
interface IDomainEvent {
+Id
+OccurredOn
}
IDomainEvent <|-- DomainEventBase: implements
DomainEventBase <|-- SubscriptionPaymentCreatedDomainEvent: extends
@enduml |
a2096d6cfaa0a62ab77f304d0f3d0f79f9707346 | a546db78e9806979e459831fb16c6e51878eb60b | /src/main/model/data/source/template/template.plantuml | abefd9397c9a518cb63d3929fc3e1604632b0ec4 | [] | no_license | Bryce-MW/WikidataExplorer | 92fd35b8e9364d9bd7e005a39d321bc788ea049f | 9ad2dac3c82077466dcb36f25128611881f8965b | refs/heads/master | 2023-06-22T20:58:25.975518 | 2021-07-25T22:33:33 | 2021-07-25T22:33:33 | 287,648,884 | 5 | 1 | null | 2020-08-16T06:03:52 | 2020-08-15T00:23:27 | Java | UTF-8 | PlantUML | false | false | 5,086 | plantuml | @startuml
title __TEMPLATE's Class Diagram__\n
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Alias {
+ language : String
{static} + serialVersionUID : long
+ value : String
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Claim {
+ id : String
+ qualifiers : Map<String, List<Qualifier>>
+ rank : String
+ references : List<Reference>
{static} + serialVersionUID : long
+ type : String
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.DataValue {
{static} + serialVersionUID : long
+ type : String
+ value : Object
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Description {
+ language : String
{static} + serialVersionUID : long
+ value : String
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Entities {
+ entities : Map<String, Entity>
{static} + serialVersionUID : long
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Entity {
+ aliases : Map<String, List<Alias>>
+ claims : Map<String, List<Claim>>
+ descriptions : Map<String, Description>
+ id : String
+ labels : Map<String, Label>
+ lastrevid : int
+ modified : String
+ representations : Map<String, Label>
{static} + serialVersionUID : long
+ sitelinks : Map<String, SiteLink>
+ type : String
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Label {
+ language : String
{static} + serialVersionUID : long
+ value : String
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Qualifier {
+ datatype : String
+ hash : String
+ property : String
{static} + serialVersionUID : long
+ snaktype : String
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Reference {
+ hash : String
{static} + serialVersionUID : long
+ snaks : Map<String, List<Snak>>
+ snaksOrder : List<String>
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.SiteLink {
+ badges : List<String>
{static} + serialVersionUID : long
+ site : String
+ title : String
+ url : String
+ toString()
}
}
}
}
namespace model.data {
namespace source {
namespace template {
class model.data.source.template.Snak {
+ datatype : String
+ property : String
{static} + serialVersionUID : long
+ snaktype : String
+ toString()
}
}
}
}
model.data.source.template.Alias .up.|> java.io.Serializable
model.data.source.template.Claim .up.|> java.io.Serializable
model.data.source.template.Claim o-- model.data.source.template.Snak : mainsnak
model.data.source.template.DataValue .up.|> java.io.Serializable
model.data.source.template.Description .up.|> java.io.Serializable
model.data.source.template.Entities .up.|> java.io.Serializable
model.data.source.template.Entity .up.|> java.io.Serializable
model.data.source.template.Label .up.|> java.io.Serializable
model.data.source.template.Qualifier .up.|> java.io.Serializable
model.data.source.template.Qualifier o-- model.data.source.template.DataValue : datavalue
model.data.source.template.Reference .up.|> java.io.Serializable
model.data.source.template.SiteLink .up.|> java.io.Serializable
model.data.source.template.Snak .up.|> java.io.Serializable
model.data.source.template.Snak o-- model.data.source.template.DataValue : datavalue
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
|
4db9821dd8dff9910f00de12986e4ec903dd824e | ccae9bd054642400986b62220db42517f18b4315 | /week4/day3/modeld-string-instrument/modeld-string-instrument.puml | 67574340820a6190d421aef54bbad35788007879 | [] | no_license | green-fox-academy/Jhona3 | aa20e5c696814c5eb2b94392a87005663d848e98 | 942caa25a73009af92d9ca629ff486ab77cb0601 | refs/heads/master | 2020-05-04T15:29:21.814206 | 2019-05-28T15:06:12 | 2019-05-28T15:06:12 | 179,243,040 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 561 | puml | @startuml
abstract Instrument{
{field} # name
{abstract} + play()
}
abstract StringedInstrument{
{field} # numberOfStrings
{abstract} + sound()
{method} + play()
}
Instrument <|-- StringedInstrument
class ElectricGuitar{
{method}ElectricGuitar()
{method} ElectricGuitar(int)
}
class BassGuitar{
{method} BassGuitar
{method} BassGuitar(int)
}
class Violin{
{method} Violin
{method} Violin(int)
}
StringedInstrument <|-- ElectricGuitar
StringedInstrument <|-- BassGuitar
StringedInstrument <|-- Violin
@enduml |
145444dfb36d2ce6e2119ad8ed0dffbfe9329eeb | fb110fead2ecfffb4b78d3920da1a3d162bd1932 | /de.gematik.ti.cardreader.provider.api/doc/plantuml/CRPAPI/events.plantuml | 9caf79c302005374c21da608e7dd253e0c94096b | [
"Apache-2.0"
] | permissive | gematik/ref-CardReaderProvider-Api | ca8495bbb81b6f018f09c7f9856db5b56f827b4e | 80d863c5b03a776534d7fa8a26916273dc7e39b9 | refs/heads/master | 2022-02-10T18:06:21.446280 | 2022-01-07T07:36:00 | 2022-01-07T07:36:00 | 227,793,349 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,400 | plantuml | @startuml
namespace de.gematik.ti.cardreader.provider.api {
namespace events {
abstract class de.gematik.ti.cardreader.provider.api.events.AbstractCardReaderEvent {
+ getCardReader()
# AbstractCardReaderEvent()
}
}
}
namespace de.gematik.ti.cardreader.provider.api {
namespace events {
class de.gematik.ti.cardreader.provider.api.events.CardReaderConnectedEvent {
+ CardReaderConnectedEvent()
+ getInitStatus()
}
}
}
namespace de.gematik.ti.cardreader.provider.api {
namespace events {
class de.gematik.ti.cardreader.provider.api.events.CardReaderDisconnectedEvent {
+ CardReaderDisconnectedEvent()
}
}
}
de.gematik.ti.cardreader.provider.api.events.AbstractCardReaderEvent o-- de.gematik.ti.cardreader.provider.api.ICardReader : cardReader
de.gematik.ti.cardreader.provider.api.events.CardReaderConnectedEvent -up-|> de.gematik.ti.cardreader.provider.api.events.AbstractCardReaderEvent
de.gematik.ti.cardreader.provider.api.events.CardReaderConnectedEvent o-- de.gematik.ti.cardreader.provider.api.listener.InitializationStatus : initStatus
de.gematik.ti.cardreader.provider.api.events.CardReaderDisconnectedEvent -up-|> de.gematik.ti.cardreader.provider.api.events.AbstractCardReaderEvent
@enduml
|
ae97f25b243f1019c8594c72657b0267664e5b9d | c18e4c785785169cf4137dc6667375dacfd87519 | /create-online-payment.puml | c1c85c7d82b62bb89ea4690471aa48668809c477 | [
"Apache-2.0"
] | permissive | TheBund1st/tiantong-docs | cb0506a53e4e2204defd211616f10d8c03c27804 | 6798343302807e8dd8aeb680bbaf29d8c9e183f2 | refs/heads/master | 2020-05-20T06:04:09.982929 | 2019-05-18T02:42:25 | 2019-05-18T02:42:25 | 185,420,660 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 327 | puml | @startuml
interface ProviderSpecificCreateOnlinePaymentGateway <<Output Port>> {
{method} create(onlinePayment: OnlinePayment, request: ProviderSpecificCreateOnlinePaymentRequest): ProviderSpecificLaunchOnlinePaymentRequest
}
class Merchant {
{field} id
}
class Payable {
{field} appId
{field} objectId
}
@enduml |
39c6d54ff041d8eeca21b4fc8db78d36d1c1e1e4 | 5bda871fceb094fb9925872cf46794a7bb523678 | /src/main/java/visitor/examples/intrusive/intrusive.plantuml | a69f88cdbe3ba16a0f6255d9c192cf2ae36c37df | [] | no_license | jestin-g/java-design-pattern | 9ec3526091fd4a5b795b035e3d6ae54a064e9ed2 | da908b77cced2e25640f68f22d4bccda88e1321e | refs/heads/master | 2023-02-11T14:12:52.417590 | 2021-01-06T16:48:53 | 2021-01-06T16:48:53 | 307,839,152 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,241 | plantuml | @startuml
title __INTRUSIVE's Class Diagram__\n
namespace visitor.examples.intrusive {
class visitor.examples.intrusive.AdditionExpression {
+ AdditionExpression()
+ print()
}
}
namespace visitor.examples.intrusive {
class visitor.examples.intrusive.Demo {
{static} + main()
}
}
namespace visitor.examples.intrusive {
class visitor.examples.intrusive.DoubleExpression {
- value : double
+ DoubleExpression()
+ print()
}
}
namespace visitor.examples.intrusive {
abstract class visitor.examples.intrusive.Expression {
{abstract} + print()
}
}
visitor.examples.intrusive.AdditionExpression -up-|> visitor.examples.intrusive.Expression
visitor.examples.intrusive.AdditionExpression o-- visitor.examples.intrusive.Expression : left
visitor.examples.intrusive.AdditionExpression o-- visitor.examples.intrusive.Expression : right
visitor.examples.intrusive.DoubleExpression -up-|> visitor.examples.intrusive.Expression
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
|
1bcd789c499b7b85a3d632b5434d2b6738dbdd9d | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.puml | f1d37f2c837aeeff90b3abefa445cc6236db6ad7 | [] | 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 | 341 | puml | @startuml
class VertexShakeB {
+ AngleMultiplier : float = 1.0f
+ SpeedMultiplier : float = 1.0f
+ CurveScale : float = 1.0f
Awake() : void
OnEnable() : void
OnDisable() : void
Start() : void
ON_TEXT_CHANGED(obj:Object) : void
AnimateVertexColors() : IEnumerator
}
MonoBehaviour <|-- VertexShakeB
@enduml
|
2b493cdbb98299cab96aa41c76b06c7b9b95f699 | 5e23a7b7dd51c5e3326abe173de7edcace2ebc26 | /screenshot/uml_class_autocompleteadapter.puml | 9804fbea56881a0a5b45da9e51be9ea218342940 | [] | no_license | mtbfm/AutoCompleteTextView | 414957f92ff44696c9f9d2e4ca8c6dbdf1b1acfd | cd67b61c1ff2b40a0bb3153796045ef8f61a6c3c | refs/heads/master | 2020-04-16T02:31:45.787481 | 2016-11-11T09:37:13 | 2016-11-11T09:37:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,752 | puml | @startuml
package Filterable.java {
interface Filterable {
Filter getFilter();
}
}
package BaseAdapter.java {
abstract class BaseAdapter{
}
}
package Filter.java {
abstract class Filter
}
package AutoCompleteAdapter.java {
interface OnFilterResultsListener {
void onFilterResultsListener(int count);
}
interface OnSimpleItemDeletedListener {
void onSimpleItemDeletedListener(String value);
}
class ArrayFilter {
private OnFilterResultsListener listener;
__
public ArrayFilter() {}
public ArrayFilter(OnFilterResultsListener listener);
.. Filter ..
protected FilterResults performFiltering(CharSequence prefix);
protected void publishResults(CharSequence constraint, FilterResults results);
}
Filter <|-- ArrayFilter : extends
OnFilterResultsListener <-- ArrayFilter : fieldify
OnFilterResultsListener <.. ArrayFilter : parameterify
class ViewHolder <<static>> {
TextView tv;
ImageView iv;
}
class AutoCompleteAdapter{
.. Constant Field ..
private static final int MODE_NONE = 0x000;
public static final int MODE_CONTAINS = 0x001;
public static final int MODE_STARTSWITH = 0x002;
public static final int MODE_SPLIT = 0x004;
private static final String SPLIT_SEPARATOR = "[,.\\s]+";
.. Common Field ..
private static boolean isFound = false;
private int defaultMode = MODE_STARTSWITH;
private LayoutInflater inflater;
private ArrayFilter mArrayFilter;
private ArrayList<String> mOriginalValues;
private List<String> mObjects;
private final Object mLock = new Object();
private int maxMatch = 10;
private int simpleItemHeight;
private OnFilterResultsListener mFilterListener;
private OnSimpleItemDeletedListener mDeleteListener;
__
.. Constructor ..
public AutoCompleteAdapter(Context context, ArrayList<String> mOriginalValues);
public AutoCompleteAdapter(Context context, ArrayList<String> mOriginalValues, int maxMatch);
.. Common Method ..
private void initViewHeight();
public void clear();
public void add(String item);
public void setDefaultMode(int defaultMode);
public int getSimpleItemHeight();
.. Adapter ..
public int getCount();
public Object getItem(int position);
public long getItemId(int position);
public View getView(final int position, View convertView, ViewGroup parent){new ViewHolder()};
.. OnFilterResultsListener ..
public void setOnFilterResultsListener(OnFilterResultsListener listener);
.. OnSimpleItemDeletedListener ..
public void setOnSimpleItemDeletedListener(OnSimpleItemDeletedListener listener);
.. Filterable ..
public Filter getFilter(){new ArrayFilter()};
}
BaseAdapter <|-- AutoCompleteAdapter : extends
Filterable <|.. AutoCompleteAdapter : implements
ArrayFilter <--+ AutoCompleteAdapter : nested
ArrayFilter <-- AutoCompleteAdapter : fieldify
ArrayFilter <.. AutoCompleteAdapter : reference
ViewHolder <--+ AutoCompleteAdapter : nested
ViewHolder <.. AutoCompleteAdapter : reference
OnFilterResultsListener <--+ AutoCompleteAdapter : nested
OnFilterResultsListener <-- AutoCompleteAdapter : fieldify
OnFilterResultsListener <.. AutoCompleteAdapter : parameterify
OnSimpleItemDeletedListener <--+ AutoCompleteAdapter : nested
OnSimpleItemDeletedListener <-- AutoCompleteAdapter : fieldify
OnSimpleItemDeletedListener <.. AutoCompleteAdapter : parameterify
}
@enduml |
b8af4bb0aa063445f463f04090a4dfd4cb95d9bc | 36e8e37a895ba9b2666e81c1da40f7fd0580d37b | /out/production/DesignPatterns/javaLang/stragety/策略模式类图.puml | 114ddbf6956ba78e1108ffcbc06cc743e146cdb4 | [] | no_license | xhSun9527/DesignPatterns | 0b08185780882a8e1b7e065c39a44e7c19838e17 | 1ed5099b9156853601e6b3a9cdf0c1d6090a6812 | refs/heads/master | 2023-02-01T06:22:45.580510 | 2020-12-17T08:55:19 | 2020-12-17T08:55:19 | 287,001,208 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 300 | puml | @startuml
interface Strategy{
+ method() : void
}
class ConStrategyA{
+ method() : void
}
class ConStrategyB{
+ method() : void
}
class Context{
+ method() : void
+ setStrategy(Strategy) : void
}
Strategy <.. ConStrategyA
Strategy <.. ConStrategyB
Context o--Strategy
@enduml |
77ce196240d8c43f6e7d36d0ca28ffd3a069ccd0 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ShoppingListStoreSetMessagePayload.puml | a12b6e23b970641ce65bb5f859486d97676c9094 | [] | 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 | 479 | 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 ShoppingListStoreSetMessagePayload [[ShoppingListStoreSetMessagePayload.svg]] extends MessagePayload {
type: String
store: [[StoreKeyReference.svg StoreKeyReference]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
|
c3fc8ef715c47d3d60cd794ce520273bb5cf9df5 | e320bd754c05242c19e630289e3850151f231bad | /uml/AssignmentFourDiagram.puml | 47a88c3acddeda15f6c9ebfe746449b105fd084f | [] | no_license | agalvezv/galvez-vega-cop3330-assignment4part2 | 7651fb433a8ff702d14a7aadb7c3df0fa73ec332 | 9cef45da0f322b03985bd568ba351b9edadc4a9b | refs/heads/master | 2023-06-13T04:28:48.337583 | 2021-07-12T01:34:47 | 2021-07-12T01:34:47 | 385,021,505 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,145 | puml | @startuml
class ListManagement {
+public ArrayList aList
+public ArrayList names
+public ArrayList complete
+String sendName;
+String sendInfo;
+sendListToText()
+sendCompleteToText()
+sendNametoText()
+recListFromText()
+recNamesFromText()
+recCompFromText()
}
class ListMoveOperations {
+public String nameS;
+public String descS;
+public String dateS;
+public String sendS;
+public String recS;
+public String remS;
+public ArrayList aList
+public ArrayList names
+public ArrayList complete
+incompListValue()
+compListValue()
+totalListValue()
+newListValue()
+newNameValue()
+newDescValue()
+sendValue()
+recValue()
+clearList()
+editDescValue()
+editDateValue()
+compValue()
+incompValue()
}
class ListController {
+public TextField nameField;
+public TextField descField;
+public TextField dateField;
+public String nameS;
+public String descS;
+public String dateS;
+public TextField edescField;
+public TextField edateField;
+public String edescS;
+public String edateS;
+public TextField sendField;
+public TextField recField;
+public String sendS;
+public String recS;
+public TextField remField;
+public String remS;
+public String dispS;
+public TextArea displayField;
+public ArrayList aList
+public ArrayList names
+public ArrayList complete
+public ListManagement lManage;
+public TextField compField;
+public String compS;
+public TextField incompField;
+public String incompS;
+incompListValue()
+compListValue()
+totalListValue()
+newListValue()
+newNameValue()
+newDescValue()
+sendValue()
+recValue()
+clearList()
+editDescValue()
+editDateValue()
+compValue()
+incompValue()
}
class List {
main()
start()
}
javafx.Application <|-- List
List - ListController
ListController - ListManagement
ListController - ListMoveOperations
@enduml |
d5f095915bc926cffcb14998253ef4eed9ba3dea | 12404b342ecfb6d925a99d2e83ee052f464db8f7 | /docs/tosca/TOSCA-v1.0-os-class-diagram.plantuml | b3d0a7f51a19443be1aeafea9c998d7f2ceba426 | [
"Apache-2.0",
"EPL-2.0",
"LicenseRef-scancode-free-unknown",
"BSD-3-Clause",
"LicenseRef-scancode-generic-export-compliance",
"CDDL-1.1",
"CDDL-1.0",
"MIT",
"GPL-2.0-only",
"MPL-1.1",
"LicenseRef-scancode-public-domain",
"CC-BY-3.0"
] | permissive | eclipse/winery | 83061dc4454f138d5349cb370a94858a9da345ad | 81fa884981d4250404f05df3f6105bb0646622a9 | refs/heads/main | 2023-09-03T08:15:10.221320 | 2023-04-25T08:34:09 | 2023-04-25T08:34:09 | 42,622,157 | 54 | 79 | Apache-2.0 | 2023-09-08T12:24:45 | 2015-09-17T00:31:44 | Java | UTF-8 | PlantUML | false | false | 12,096 | plantuml | Copyright (c) 2013-2014 Contributors to the Eclipse Foundation
See the NOTICE file(s) distributed with this work for additional
information regarding copyright ownership.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0, or the Apache Software License 2.0
which is available at https://www.apache.org/licenses/LICENSE-2.0.
SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
This model describes the XSD of TOSCA-v1.0.xsd as released by TOSCA v1.0 cos01.
URL: http://docs.oasis-open.org/tosca/TOSCA/v1.0/os/schemas/TOSCA-v1.0.xsd
Specification: http://docs.oasis-open.org/tosca/TOSCA/v1.0/TOSCA-v1.0.html
@startuml
'skinparam monochrome true
'Chooses LightGray as background color
'We're better off with manual setting
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
LegendBackgroundColor White
}
skinparam stereotypeCBackgroundColor LightGray
skinparam noteBackgroundColor White
skinparam noteBorderColor Black
'required for SVG
skinparam defaultFontName sans-serif
Title <size:33>TOSCA v1.0 as UML class diagram. This is not an official OASIS document. No warranty. (c) Contributors to the Eclipse Foundation. Dual-licensed under EPL and ASLv2. Version 2014-01-29.
legend right
== Note on the model
The model stays close to the XSD with following exceptions:
* Containers such as tTags are ignored: A class is then wired using a 1:n relation to the elements nested in the container
* Relations to TOSCA artifacts are encoded.
** E.g., a QName modelling a substitutable Node Type is modeled as reference to a Node Type
** *Ref elements are not modeled, the association is drawn directly
*** E.g., tCapabilityRef is not contained in the model
* xsd types are presented more relaxed. E.g., xsd:string becomes String
== Conventions
* green: required (+ prefix)
* all others: optional
endlegend
'OS line 19
class tExtensibleElements {
documentation
contents of other namespaces
}
'OS line 26
tExtensibleElements <|-- tImport
class tImport {
anyURI namespace
anyURI location
+(anyURI) importType
}
'OS line 42
tExtensibleElements <|-- tDefinitions
class tDefinitions {
+ID id
String name
anyURI targetNamespace
List<Object> Types
}
tDefinitions *-- "*" tExtension
tDefinitions *-- "*" tImport
'OS line 61
tDefinitions *-- "*" tServiceTemplate
tDefinitions *-- "*" tNodeType
tDefinitions *-- "*" tNodeTypeImplementation
tDefinitions *-- "*" tRelationshipType
tDefinitions *-- "*" tRelationshipTypeImplementation
tDefinitions *-- "*" tCapabilityType
tDefinitions *-- "*" tArtifactType
tDefinitions *-- "*" tArtifactTemplate
tDefinitions *-- "*" tPolicyType
tDefinitions *-- "*" tPolicyTemplate
'OS line 81
tExtensibleElements <|-- tServiceTemplate
class tServiceTemplate {
+ID id
String name
anyURI targetNamespace
}
tServiceTemplate *-- "*" tTag
tServiceTemplate *-- "*" tBoundaryDefinitions
tServiceTemplate *-- tTopologyTemplate
tServiceTemplate *-- "*" tPlan
tServiceTemplate --> "0..1" tNodeType : substitutable
'OS line 102
class tTag {
+String name
+String value
}
'OS line 106
class tBoundaryDefinitions {
Properties
}
tBoundaryDefinitions *-- "*" tPropertyMapping
tBoundaryDefinitions *-- "*" tPropertyConstraint
tBoundaryDefinitions --> "*" tRequirement
tBoundaryDefinitions --> "*" tCapability
tBoundaryDefinitions *-- "*" tPolicy
tBoundaryDefinitions *-- "*" tExportedInterface
'OS line 159
class tPropertyMapping {
+String serviceTemplatePropertyRef
+String targetPropertyRef
}
tPropertyMapping --> "0..1" tNodeTemplate
tPropertyMapping --> "0..1" tRelationshipTemplate
tPropertyMapping --> "0..1" tRequirement
tPropertyMapping --> "0..1" tCapability
'OS lines 164 to 171 define tRequiermentRef and tCapabilityRef
'to enable referencing requirements and capabilities
'We directly point to the elements
'OS line 172
abstract class tEntityType
tExtensibleElements <|-- tEntityType
class tEntityType {
' DerivedFrom is rendered as self-association in all subclasses
' DerivedFrom
PropertiesDefinition
+NCName name
Boolean abstract [no]
Boolean final [no]
anyURI targetNamespace
}
tEntityType *-- "*" tTag
'OS line 196
abstract class tEntityTemplate
tExtensibleElements <|-- tEntityTemplate
class tEntityTemplate {
Properties
+xs:ID id
+QName type
}
tEntityTemplate *-- "*" tPropertyConstraint
'OS line 219
tEntityTemplate <|-- tNodeTemplate
class tNodeTemplate #DDDDDD/EEEEEE {
String name
int minInstances [1]
int|unbounded maxInstances [1]
}
tNodeTemplate *-- "*" tRequirement
tNodeTemplate *-- "*" tCapability
tNodeTemplate *-- "*" tPolicy
tNodeTemplate *-- "*" tDeploymentArtifact
'due to the subclassing of tEntityTemplate
'There, the type attribute references the parent class
tNodeTemplate --> tNodeType : type
'OS line 268
tExtensibleElements <|-- tTopologyTemplate
class tTopologyTemplate
'no attributes exist
tTopologyTemplate *-- "*" tNodeTemplate
tTopologyTemplate *-- "*" tRelationshipTemplate
'OS line 278
tEntityType <|-- tRelationshipType
class tRelationshipType #DDDDDD/EEEEEE
'no attributes
'InstanceStates
tRelationshipType *-- "*" tTopologyElementInstanceState
'SourceInterfaces
tRelationshipType *-- "*" tInterface : SourceInterface
'TargetInterfaces
tRelationshipType *-- "*" tInterface : TargetInterface
'ValidSource
tRelationshipType --> "0..1" tNodeType : ValidSource
tRelationshipType --> "0..1" tRequirementType : ValidSource
'ValidTarget
tRelationshipType --> "0..1" tNodeType : ValidTarget
tRelationshipType --> "0..1" tCapabilityType : ValidTarget
'DerivedFrom
tRelationshipType --> "0..1" tRelationshipType : DerivedFrom
'OS line 311
tExtensibleElements <|-- tRelationshipTypeImplementation
class tRelationshipTypeImplementation {
+NCName name
anyURI targetNamespace
Boolean abstract
Boolean final
}
tRelationshipTypeImplementation --> tRelationshipType
tRelationshipTypeImplementation *-- "*" tTag
tRelationshipTypeImplementation --> "0..1" tRelationshipTypeImplementation : DerivedFrom
tRelationshipTypeImplementation *-- "*" tRequiredContainerFeature
tRelationshipTypeImplementation *-- "*" tImplementationArtifact
'OS line 332
tEntityTemplate <|-- tRelationshipTemplate
class tRelationshipTemplate #DDDDDD/EEEEEE {
String name
}
'SourceElement
tRelationshipTemplate --> "0..1" tNodeTemplate : SourceElement
tRelationshipTemplate --> "0..1" tRequirement : SourceElement
'TargetElement
tRelationshipTemplate --> "0..1" tNodeTemplate : TargetElement
tRelationshipTemplate --> "0..1" tCapability : TargetElement
'
tRelationshipTemplate *-- "*" tRelationshipConstraint
'due to the subclassing of tEntityTemplate
tRelationshipTemplate --> tRelationshipType
'OS line 349
'not modeled as t, but directly nested in tRelationshipTemplate
'We model it as t to be consistent with the other definitions
class tRelationshipConstraint {
+anyURI constraintType
}
'OS line 365
tEntityType <|-- tNodeType
class tNodeType #DDDDDD/EEEEEE
'No new attributes
'
tNodeType *-- "*" tRequirementDefinition
tNodeType *-- "*" tCapabilityDefinition
tNodeType *-- "*" tTopologyElementInstanceState
tNodeType *-- "*" tInterface
'DerivedFrom
tNodeType --> "0..1" tNodeType : DerivedFrom
'OS line 395
tExtensibleElements <|-- tNodeTypeImplementation
class tNodeTypeImplementation {
+NCname name
anyURI targetNamespace
Boolean abstract
Boolean final
}
tNodeTypeImplementation --> tNodeType
tNodeTypeImplementation *-- "*" tTag
tNodeTypeImplementation --> "0..1" tNodeTypeImplementation : DerivedFrom
tNodeTypeImplementation *-- "*" tRequiredContainerFeature
tNodeTypeImplementation *-- "*" tDeploymentArtifact
tNodeTypeImplementation *-- "*" tImplementationArtifact
'OS line 417
tEntityType <|-- tRequirementType
class tRequirementType
tRequirementType --> "0..1" tCapabilityType : requiredCapabilityType
'DerivedFrom
tRequirementType --> "0..1" tRequirementType : DerivedFrom
'OS line 424
tExtensibleElements <|-- tRequirementDefinition
class tRequirementDefinition {
+String name
int lowerBound [1]
int|unbounded upperBound [1]
}
tRequirementDefinition *-- "*" tConstraint
tRequirementDefinition --> tRequirementType
'OS line 458
tEntityTemplate <|-- tRequirement
class tRequirement {
+String name
}
'"name" is also used to point to tRequirementDefinition
tRequirement --> tRequirementDefinition : name
'due to the subclassing of tEntityTemplate
tRequirement --> tRequirementType
'OS line 465
tEntityType <|-- tCapabilityType
'DerivedFrom
tCapabilityType --> "0..1" tCapabilityType : DerivedFrom
'OS line 470
tExtensibleElements <|-- tCapabilityDefinition
class tCapabilityDefinition {
+String name
int lowerBound [1]
int|unbounded upperBound [1]
}
tCapabilityDefinition *-- "*" tConstraint
tCapabilityDefinition --> tCapabilityType
'OS line 504
tEntityTemplate <|-- tCapability
class tCapability {
+String name
}
'"name" is also used to point to tCapabilityDefinition
tCapability --> tCapabilityDefinition : name
'due to the subclassing of tEntityTemplate
tCapability --> tCapabilityType
'OS line 511
tEntityType <|-- tArtifactType
tArtifactType --> "0..1" tArtifactType : DerivedFrom
'OS line 516
tEntityTemplate <|-- tArtifactTemplate
'PDF line 2607
class tArtifactTemplate {
String name
}
tArtifactTemplate *-- "*" tArtifactReference
'due to the subclassing of tEntityTemplate
tArtifactTemplate --> tArtifactType
'OS line 537
tExtensibleElements <|-- tDeploymentArtifact
class tDeploymentArtifact {
+String Name
}
tDeploymentArtifact --> tArtifactType
tDeploymentArtifact --> "0..1" tArtifactTemplate
'OS line 557
tExtensibleElements <|-- tImplementationArtifact
class tImplementationArtifact {
anyURI interfaceName
String operationName
}
tImplementationArtifact --> tArtifactType
tImplementationArtifact --> "0..1" tArtifactTemplate
'OS line 573
tExtensibleElements <|-- tPlan
class tPlan {
+ID id
String name
+anyURI planType
+anyURI languageUsed
PlanModel | PlanModelReference
}
tPlan *-- "0..1" tCondition : Precondition
tPlan *-- "*" tParameter : InputParamter
tPlan *-- "*" tParameter : OutputParamter
'OS line 614
tEntityType <|-- tPolicyType
class tPolicyType {
anyURI policyLanguage
}
'AppliesTo/NodeTypeReference: CS02 line 631
tPolicyType --> "*" tNodeType : tAppliesTo/NodeTypeReference
'DerivedFrom
tPolicyType --> "0..1" tPolicyType : DerivedFrom
'OS line 624
tEntityTemplate <|-- tPolicyTemplate
class tPolicyTemplate {
String name
}
'due to inheritance of tEntityTemplate
tPolicyTemplate --> tPolicyType
'OS line 640
tExtensibleElements <|-- tPolicy
class tPolicy {
String name
}
tPolicy --> tPolicyType
tPolicy --> "0..1" tPolicyTemplate
'OS line 649
class tConstraint {
+anyURI constraintType
}
'OS line 655
tConstraint <|-- tPropertyConstraint
class tPropertyConstraint {
+String property
}
'OS line 671
tExtensibleElements <|-- tExtension
class tExtension {
+anyURI namespace
Boolean mustUnderstand [yes]
}
'OS line 679
class tParameter {
+String name
+String type
Boolean required [yes]
}
'OS line 684
class tInterface {
+anyURI name 'NCName is a subset of anyURI
}
tInterface *-- tOperation
'OS line 690
class tExportedInterface {
+anyURI name
}
tExportedInterface --> "1..*" tExportedOperation
'OS line 696
tExtensibleElements <|-- tOperation
class tOperation {
+NCName name
}
tOperation *-- "*" tParameter : InputParameters
tOperation *-- "*" tParameter : OutputParamters
'OS line 719
class tExportedOperation {
+NCName name
+anyURI interfaceName
+NCName operationName
}
tExportedOperation --> "0..1" tNodeTemplate
tExportedOperation --> "0..1" tRelationshipTemplate
tExportedOperation --> "0..1" tPlan
'OS line 743
class tCondition {
+anyURI expressionLanguage
}
'OS line 751
'tTopologyElementInstanceState does not exist directly, but to be consistent with the others, we introduce it
class tTopologyElementInstanceState {
anyURI state
}
'OS line 758
class tArtifactReference {
Include
Exclude
+anyURI reference
}
'OS line 773
class tRequiredContainerFeature {
+anyURI feature
}
@enduml
|
e86ac3edad479b4836b84930b55ba6ed0605ddb4 | 4bc7ef84a4b27304d29150dfc9b3dc07fc1da8a6 | /lib/flutter/source/scroll_slivers.puml | 6d6754f10b5097e594ba2559f51a1a5b9184869c | [] | no_license | yihu5566/flutterdemo | a21ddc4459a9f675b47b5e60b7e1877ef5be66b1 | d3491dbbda0b98ce8d987ad54a82018dcf475db0 | refs/heads/master | 2022-04-02T08:55:57.634748 | 2020-01-20T02:58:21 | 2020-01-20T02:58:21 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 40,092 | puml | @startuml
abstract class ScrollView{
List<Widget> buildSlivers(BuildContext context)
Widget buildViewport(BuildContext context,ViewportOffset offset,AxisDirection axisDirection,List<Widget> slivers)
Widget build(BuildContext context)
}
'note right of ScrollView{
' 定义:滚动的widget
' 可滚动widget由三部分组成:
' 1 一个[Scrollable]widget,用于监听各种用户手势和实现滚动的交互设计
' 2 一个视口窗口widget,例如[Viewport]或[ShrinkWrappingViewport]通过仅显示滚动视图中widget的部分来实现滚动的视觉设计
' 3 一个或多个slivers,它们是可以组成创建各种滚动效果,例如列表,网格和扩展标题的widget
' [ScrollView]通过创建[Scrollable]和视口并推迟到其子类来创建slivers来帮助编排这些片段
' 要控制滚动视图的初始滚动偏移,请提供设置了[ScrollController.initialScrollOffset]属性的[controller]
'
' buildSlivers 构建要放置在视口内的窗口widget列表,子类应重写此方法以构建视口内部的slivers
' buildSlivers 构建视口 子类可以重写此方法以更改视口的构建方式。如果[shrinkWrap]为true,则默认实现使用[ShrinkWrappingViewport],否则使用常规[Viewport]
'
' build 重写方法,将通过buildSlivers从子类获取的widget列表,通过buildSlivers构建的viewport和Scrollable这
' 三者组装到一起
'}
abstract class BoxScrollView{
List<Widget> buildSlivers(BuildContext context)
Widget buildChildLayout(BuildContext context)
}
'note left of BoxScrollView{
' 定义:使用单个子布局模型的[ScrollView]
' buildSlivers: 重写ScrollView的方法,将从buildChildLayout获取的widget包裹在SliverPadding中,将其作为list返回
' buildChildLayout :子类应重写此方法以构建布局模型 获取子类构建的widget
'}
class CustomScrollView{
final List<Widget> slivers
List<Widget> buildSlivers(BuildContext context)
}
'note right of CustomScrollView{
' 定义:使用slivers创建自定义滚动效果的[ScrollView]
' [CustomScrollView]允许您直接提供[slivers]以创建各种滚动效果,例如列表,网格和扩展标题.例如,创建一个滚动视图,其中包含一个展开的app bar,
' 后跟一个列表和网格,使用三个slivers列表:[SliverAppBar],[SliverList],和[SliverGrid]
'
'
' CustomScrollView必须接受 viewport 在CustomScrollView的父类ScrollView中
' [Widget]中的[slivers]必须生成[RenderSliver]对象,Viewport的createRenderObject为RenderViewport,而RenderViewport的父类RenderViewportBase
' 接受一个RenderSliver范型
' 要控制滚动视图的初始滚动偏移,请提供设置了[ScrollController.initialScrollOffset]属性的[controller]
' [CustomScrollView]可以允许滚动状态更改时Talkback / VoiceOver通知用户。例如,在Android上公告可能被解读为“显示第1项至23项中的第10项”
' 生产这个公告,滚动视图需要三条信息:
' 1 第一个可见的子的索引index
' 2 孩子总数
' 3 可见孩子的总数
' 最后一个值可以由框架精确计算,但是前两个必须提供。大多数更高级别的可滚动widget自动提供此信息.例如,[ListView]为每个子widget自动提供
' 具有语义索引设并设置语义子级列表的长度
' 要确定可见索引,滚动视图需要一种方式关联每个可滚动item和一个语义索引index生成的语义。这个可以通过将子窗口小部件包装在[IndexedSemantics]中来完成
' 此语义索引不一定与可滚动widget的索引相同.因为某些小部件可能无法提供语义信息.考虑一个[new ListView.separated()]:每个其他小部件都是
' 没有语义信息的分隔符.在这种情况下,只有奇数编号widget有一个语义索引(等于索引〜/ 2).而且,此示例中的子项总数将是widgets数量的一半.
' ([new ListView.separated()]构造函数自动处理此问题.这仅用于此处作为示例
' 可见子项的总数可以通过构造函数参数`semanticChildCount`提供,这应该始终与[IndexedSemantics]中包含的小部件数相同
'
' buildSlivers 重写方法,将slivers返回
'}
class ListView{
Widget buildChildLayout(BuildContext context)
}
'note left of ListView{
' buildChildLayout方法重写,如果子在滚动方向宽度itemExtent确定,返回SliverFixedExtentList,不确定则返回SliverList。这两者都是接受
' SliverChildDelegate作为参数,至此将普通widget转换为sliver系列
'}
class GridView {
Widget buildChildLayout(BuildContext context)
}
'note right of GridView{
' 重写buildChildLayout方法将SliverGridDelegate和SliverChildDelegate包装进SliverGrid返回
'}
class Scrollable{
final bool excludeFromSemantics
ScrollableState createState()
}
'note left of Scrollable{
' 定义:滚动的的widget
' excludeFromSemantics 此[Scrollable]引入的滚动操作是否在语义树中公开,带溢出的文本字段通常是可滚动的,以确保用户可以到达输入文本的开头结尾.
' 但是,这些滚动操作通常不会暴露给语义层
'}
class ScrollableState{
Widget build(BuildContext context)
}
'note left of ScrollableState{
' build 重写方法,excludeFromSemantics为false,创建_ScrollSemantics,为true,创建_ScrollableScope。最后将结果通过ScrollBehavior的
' buildViewportChrome创建widget
'
' _ScrollableScope负责ScrollPosition的通知,RawGestureDetector负责手势,滚动通知
'}
class Viewport{
final double anchor
final ViewportOffset offset
final Key center
final double cacheExtent
RenderViewport createRenderObject(BuildContext context)
}
'note right of Viewport{
' 定义: 内部更大的widget
' [Viewport]是滚动机械的视觉主力。它根据其自身的维度和给定的[offset]显示一个children的子集。随着偏移量的变化,可以通过视口看到不同的孩子
' [Viewport]主持一个双向的条子列表,锚定在位于零滚动偏移处的[center]sliver,中心小部件是根据[anchor]属性显示在视口中
' 子列表中早于[center]的sliver以反向[axisDirection]从[center]开始的逆序显示,例如,如果[axisDirection]是[AxisDirection.down],
' 那么在center之前的第一个sliver位于[center]上方。子列表比[center]后来的条子,按顺序放在[axisDirection]中。例如,在前面的场景中,
' [center]之后的第一个条子是位于[中心]下方
' [视口]不能直接包含盒子类型的child。相反,使用[SliverList],[SliverFixedExtentList],[SliverGrid]或者 [SliverToBoxAdapter]
'
' anchor 零滚动偏移的相对位置,例如,如果[anchor]为0.5且[axisDirection]为[AxisDirection.down]或[AxisDirection.up],
' 则零滚动偏移量在视口中垂直居中.如果[anchor]为1.0,并且[axisDirection]为[AxisDirection.right],则零滚动偏移为视口左边缘
' offset 视口内的哪部分内容应该是可见的.[ViewportOffset.pixels]值确定视口用于选择要显示其内容的哪个部分的滚动偏移量.当用户滚动视口时,
' 此值会更改,这会更改显示的内容.通常是[ScrollPosition]
' center [GrowthDirection.forward]增长方向的第一个孩子.[center]必须是ViewPort的child的key
' cacheExtent 预加载?? 在RenderViewportBase中有解释,视口在可见区域之前和之后有一个区域,用于缓存在用户滚动时即将变为可见的项目。落在此缓存区域中
' 的项目即使它们在屏幕上不是(还)可见,也会被布局。[cacheExtent]描述缓存区域在视口前端之前和后端之后延伸的像素数。
' 视口将尝试覆盖children的总范围是 前端前的[cacheExtent]+主轴的范围+后端后的[cacheExtent]
' 缓存区域还用于在iOS上实现隐式可访问性滚动,当辅助功能焦点从可见的视口中的项移动到缓存区中的不可见项时,框架将使用(隐式)滚动操作
' 将该项目带入视图
'}
class RenderViewport{
double get anchor
RenderSliver _center
void performResize()
void performLayout()
}
'note right of RenderViewport{
' 内部较大的渲染对象
' [RenderViewport]是滚动机械的视觉主力,它根据自己的维度和给出的[偏移]显示一个子项的子集,随着偏移量的变化,可以在视口中看到不同的孩子
' [RenderViewport]托管一个双向的条子列表,锚定在一个[center] sliver,位于零滚动偏移处。中心widget根据[anchor]属性显示在视口中
' 显示子列表中早于[中心]的条带从[center]开始反向[axisDirection]的逆序展示
' [RenderViewport]不能直接包含[RenderBox]子项。相反,使用 [RenderSliverList],[RenderSliverFixedExtentList],[RenderSliverGrid]或
' [RenderSliverToBoxAdapter]
'
' performResize() 将viewport大小给Viewportoffset
' performLayout _attemptLayout->layoutChildSequence 返回correction->offset.correctBy(correction)
' 通过offset确定整页的滚动偏移
'
' anchor 零滚动偏移的相对位置 例如,如果[Anchor]为0.5,[AxisDirection]为[AxisDirection.Down]或[AxisDirection.Up],
' 则零滚动偏移在视口中垂直居中。如果[Anchor]为1.0,[AxisDirection]为[AxisDirection.Right],则零滚动偏移位于视口的左边缘
' _center 成长方向的第一个孩子 当[offset.pixels]为“0”时,将位于[Anchor]定义位置的子项。
' 在[center]之后的子项将被放置在相对于[center]的[axisdirection]中。在[center]之前的子项将被放置在相对于[center]的[axisdirection]的相反位置。
' [center]必须是vieport的子级
'}
abstract class RenderViewportBase{
ViewportOffset get offset
double layoutChildSequence({required RenderSliver child,
@required double scrollOffset,
@required double overlap,
@required double layoutOffset,
@required double remainingPaintExtent,
@required double mainAxisExtent,
@required double crossAxisExtent,
@required GrowthDirection growthDirection,
@required RenderSliver advance(RenderSliver child),
@required double remainingCacheExtent,
@required double cacheOrigin,
})
static Rect showInViewport({RenderObject descendant,
Rect rect,
@required RenderAbstractViewport viewport,
@required ViewportOffset offset,
Duration duration = Duration.zero,
Curve curve = Curves.ease,
})
}
'note right of RenderViewportBase{
' 内部较大的渲染对象的基类
' 此render object为的[RenderBox]中持有[RenderSliver]的render对象提供共享代码
' 视口建立一个[axisDirection],它定位了条子的坐标系,即基于滚动偏移而不是笛卡尔坐标
' 视口还会侦听[offset],它决定了[SliverConstraints.scrollOffset]输入到条子布局协议
' 子类通常覆盖[performLayout]并调用[layoutChildSequence],也许多次
'
' layoutChildSequence() 决定viewport中children的大小和位置,此函数是子类中“performlayout”实现的主力。
' 布局以“child”开头,根据“advance”回调继续,并在“advance”返回空值时停止
' 返回遇到的第一个非零[Slivergometry.ScrollOffsetCorrection],如果有的话。否则返回0.0。典型的调用者将重复调用此函数,直到它返回0.0
'
' 最终调用RenderSliver的layout进行布局
'
' offset 视口中的内容的哪个部分应该可见 [viewport offset.pixels]值决定了视窗用来选择要显示的内容部分的滚动偏移量。
' 当用户滚动视区时,此值将更改,这将更改显示的内容。
'
' showInViewport
' // scrollOffset
' // 0 +---------+
' // | |
' // _ | |
' // viewport position | | |
' // with `descendant` at | | | _
' // trailing edge |_ | xxxxxxx | | viewport position
' // | | | with `descendant` at
' // | | _| leading edge
' // | |
' // 800 +---------+
' //
' // `trailingEdgeOffset`: Distance from scrollOffset 0 to the start of the
' // viewport on the left in image above.
' // `leadingEdgeOffset`: Distance from scrollOffset 0 to the start of the
' // viewport on the right in image above.
' //
' // The viewport position on the left is achieved by setting `offset.pixels`
' // to `trailingEdgeOffset`, the one on the right by setting it to
' // `leadingEdgeOffset`.
''
'
' 布局顺序 SliverConstraints.scrollOffset cacheOrigin1 viewport cacheOrigin2 其他
' scrollOffset = constraints.scrollOffset + constraints.cacheOrigin
' constraints.remainingCacheExtent=viewport+cacheOrigin2
' targetEndScrollOffset = scrollOffset + remainingExtent
'}
class SliverConstraints{
final AxisDirection axisDirection
final GrowthDirection growthDirection
final ScrollDirection userScrollDirection
final double scrollOffset
final double precedingScrollExtent
final double overlap
final double remainingPaintExtent
final double crossAxisExtent
final AxisDirection crossAxisDirection
final double viewportMainAxisExtent
final double remainingCacheExtent
final double cacheOrigin
BoxConstraints asBoxConstraints({double minExtent = 0.0,double maxExtent = double.infinity,double crossAxisExtent,})
}
'note right of SliverConstraints{
' overlap 在[AxisDirection]中,从对应于[ScrollOffset]的像素被绘制到第一个尚未被先前的条绘制的像素的像素数。
' 例如,如果前一条切片的[Slivergometry.Paintextent]为100.0像素,而[Slivergometry.Layoutextent]仅为50.0像素,
' 则此切片的[Overlap]将为50.0。
' 这通常被忽略,除非银条本身将被固定或浮动,并且希望避免在前一条银条下这样做。
' remainingPaintExtent 小条应该考虑提供的内容像素数(提供的像素数比这多是低效的)
' 提供的实际像素数应在[rendersliver.geometry]中指定为[slivergometry.paintextent]。
' 该值可能是无限的,例如,如果viewport是无约束[rendershrinkwrappingviewport]
' 该值可能为0.0,例如,如果从向下垂直视口的底部滚动条
' (剩余要绘制的大小,为0不用绘制此时已不可见)
'
' remainingCacheExtent 描述从[CacheOrigin]开始,小条应该提供多少内容。
' 并非[RemainingCacheExtent]中的所有内容都可见,因为其中一些内容可能会落在视区的缓存区域中
' 每个小片段都应该开始在[CacheOrigin]布局内容,并尽量提供[RemainingCacheExtent]允许的内容
' [RemainingCacheExtent]总是大于或等于[remainingPaintExtent]。位于[RemainingCacheExtent]中但位于[RemainingPaintExtent]外部的内容当前在视口中不可见。
' crossAxisExtent 交叉轴上的像素数 对于垂直列表,这是条的宽度。
' viewportMainAxisExtent viewport在主轴上可以显示的像素数 对于垂直列表,这是视口的高度
' cacheOrigin 缓存区域相对于[ScrollOffset]开始的位置
'
' scrollOffset 在这个条子的坐标系中,当[GrowthDirection]是[GrowthDirection.Forward]时,
' 对应于这个条子在[AxisDirection]中最早可见部分的滚动偏移;当[GrowthDirection]是[GrowthDirection.Reverse]时,
' 对应于相反的[AxisDirection]方向的滚动偏移
' 例如,如果[AxisDirection]是[AxisDirection.Down],而[GrowthDirection]是[GrowthDirection.Forward],
' 则Scroll Offset是条带顶部滚动过视区顶部的量
' 此值通常用于计算是否仍应通过[SliVergeometry.Paintextent]和[SliVergeometry.Layoutextent]将此条线突出到视口中,
' 并考虑条子的起点在视口的起点之上的距离
' 对于顶部不超过视区顶部的切片,当[AxisDirection]为[AxisDirection.Down]且[GrowthDirection]为[GrowthDirection.Forward]时,
' [ScrollOffset]为“0”。具有[ScrollOffset]`0'的片段集包括位于视口底部以下的所有片段。
' [sliverconstraints.remainingpaintextent]通常用于完成计算滚动出的片段是否仍应部分从视图底部“凸出”的相同目标
' 这是否对应于棉条内容物的开始或结束取决于[生长方向]。
' asBoxConstraints 返回[boxConstraints]以反映条带约束。对于具有[renderbox]子级的切片非常有用
' “minextent”和“maxtent”用作主轴中的约束。如果非空,则将给定的“crossAxisExtent”用作十字轴中的紧约束。
' 否则,此对象的[CrossAxisExtent]将用作交叉轴中的约束
'}
abstract class ViewportOffset{
double get pixels
bool applyViewportDimension(double viewportDimension)
void correctBy(double correction)
}
'note right of ViewportOffset{
' 视口中的内容的哪个部分应该可见 [viewport offset.pixels]值决定了视窗用来选择要显示的内容部分的滚动偏移量。
' 当用户滚动视区时,此值将更改,这将更改显示的内容。
'}
abstract class ScrollPosition{
}
class ScrollPositionWithSingleContext{
}
class ScrollController {
ScrollPosition createScrollPosition(ScrollPhysics physics,ScrollContext context,ScrollPosition oldPosition)
}
'note right of ScrollController{
' createScrollPosition 创建供[Scrollable]widget使用的[ScrollPosition]
'
'}
abstract class RenderSliver{
SliverGeometry _geometry
double childCrossAxisPosition(covariant RenderObject child)
double childMainAxisPosition(covariant RenderObject child)
double calculateCacheOffset(SliverConstraints constraints, { @required double from, @required double to })
double calculatePaintOffset(SliverConstraints constraints, { @required double from, @required double to })
}
'note right of RenderSliver{
' 在视口中实现滚动效果的渲染对象的基类
' [RenderViewport]有一个子条的列表。每个条子 - 字面上一个视口内容的切片 - 依次布局,在这个过程中覆盖视口(每次都会布置每条条子,
' 包括那些范围为零的因为它们“滚动”或超出范围视口的结尾。)
' Slivers参与_sliver protocol_,其中在[layout]期间各自 sliver接收[SliverConstraints]对象并计算相应的描述它在视口中的位置[SliverGeometry]对象
' 这是类似于[RenderBox]使用的盒子协议,它得到一个 [BoxConstraints]作为输入并计算[Size]
' Slivers有一个前沿,这是[SliverConstraints.scrollOffset]所描述的sliver开始的位置。条子有几个维度,其主要部分是[SliverGeometry.paintExtent],
' 描述沿主轴的条子范围,从前沿开始到达视口的末端或结束sliver,以先到者为准
' Slivers可以根据非线性时尚中不断变化的约束来改变尺寸,实现各种滚动效果
' 例如,各种[RenderSliverPersistentHeader]子类,[SliverAppBar]基于此,尽管滚动偏移,仍能保持可见效果,或根据用户的滚动方向
' [SliverConstraints.userScrollDirection]重新出现在不同的偏移处
'
' 编写RenderSliver子类
' Slivers可以有sliver孩子,或者来自另一个坐标系统的孩子,通常是盒子.有关盒子协议的详细信息,请参阅[RenderBox]。)
' Slivers也可以有不同的子模型,通常有一个孩子或一个孩子的列表
'
' 条子的例子
' 一个单一孩子的条子的一个很好的例子,它本身也是一个条子,是[RenderSliverPadding],缩进其子项。条子到条子的render object
' 这样的对象必须为它孩子构造一个[SliverConstraints]对象,然后必须拿它的孩子的[SliverGeometry]并用它来形成它的[geometry]
' 另一种常见的独生子条是一条拥有单一[RenderBox]孩子的条子。一个例子是[RenderSliverToBoxAdapter],它放置一个盒子并在盒子周围自行调整大小
' 这样的条子必须使用其[SliverConstraints]为child创建[BoxConstraints],将孩子布局(使用孩子的[layout]方法),
' 然后使用孩子的[RenderBox.size]生成条子的[SliverGeometry]。
' 最常见的条子是有多个孩子的条子。该最直接的例子是[RenderSliverList],它在主轴方向上一个接一个排列着它的children.和one-box-child sliver例子一样
' 它使用它的[constraints]来为孩子们创建一个[BoxConstraints],然后它使用聚合来自其所有孩子的信息以生成其[geometry].不像一个孩子的案例,
' 然而,它处理实际上放置的孩子(和后面的 paints)是明智的。如果滚动偏移是1000像素,那么先前确定前三个孩子每个都是400像素高,
' 然后它将跳过前两个并以第三个孩子开始布局
'
' Layout
'
' 当它们被布置时,条子决定它们的[geometry],包括它们size([SliverGeometry.paintExtent])和下一个条子的位置([SliverGeometry.layoutExtent]),
' 以及每个children的位置,基于视口的输入[constraints],例如滚动偏移量([SliverConstraints.scrollOffset]
' 例如,只是画一个100像素高的盒子的条子会说,当滚动偏移为零时,它[SliverGeometry.paintExtent]为100像素,
' 但是当滚动偏移量为75像素时它的[SliverGeometry.paintExtent]是25像素,并且当滚动偏移量为100像素或更多时,它会为零(这是假设
' [SliverConstraints.remainingPaintExtent]超过100像素)
' 作为该系统的输入提供的各种尺寸在[constraints],它们在文档中有详细描述[SliverConstraints]类.[performLayout]函数必须采用这些[constraints]
' 并创建一个SliverGeometry]对象,它必须分配给[geometry]属性.可配置的几何体的不同尺寸是[SliverGeometry]类的文档中详细描述
'
' Painting
' 除了实现布局外,条子还必须实现绘画。这是通过覆盖[paint]方法实现的
' 调用[paint]方法 使用[Canvas]带有以条子的左上角原点,_无论轴方向_的[Offset]
' 子类也应该覆盖[applyPaintTransform]来提供[Matrix4]描述每个孩子相对于条子的位置(除了其他方面,这由可访问性层使用,以确定孩子的界限。)
'
' Hit testing
' 要实现命中测试,请覆盖[hitTestSelf]和[hitTestChildren]方法,或者,对于更复杂的情况,改为直接覆盖[hitTest]方法
' 要实际对指针事件做出反应,[handleEvent]方法可能是实现,默认情况下它什么都不做。 (通常手势由框协议中的widgets处理而不是直接的条子)
'
' Helper methods
' sliver应该实施的方法有很多种,这些使其他方法更容易实现。下面列出的每种方法文档都有详细说。此外,[RenderSliverHelpers]类可用于
' 混合一些有用的方法
'
' childScrollOffset
' 如果子类将子项定位在滚动偏移零以外的任何位置,它应该覆盖[childScrollOffset]。例如,[RenderSliverList]和[RenderSliverGrid]重写此方法,
' 但是[RenderSliverToBoxAdapter]没有
' 除其他外,[Scrollable.ensureVisible]使用它
'
' childMainAxisPosition
' 子类应该实现[childMainAxisPosition]来描述它们孩子们被定位的位置
' childCrossAxisPosition
' 如果子类将子children放在横轴的另一个非0位置,然后它应该覆盖[childCrossAxisPosition]。例如 [RenderSliverGrid]会覆盖此方法
'
'
'
' _geometry sliver所占的空间 在viewport的performlayout中使用
'
' childCrossAxisPosition() 默认返回0.0 (竖直列表,子在横轴距离父的边距)
' 返回沿十字轴的距离,该距离从该条[paint]坐标空间中十字轴的零到给定子对象的最近边
' 例如,如果[Constraints]将此片段描述为轴方向为[AxisDirection.Down],则这是从片段左侧到子片段左侧的距离。
' 类似地,如果[constraints]将这个片段描述为轴方向为[axis direction.up],那么这个值是相同的。
' 如果轴方向是[AxisDirection.Left]或[AxisDirection.Right],则它是从条顶部到子顶部的距离。
' 为不可见的子项调用此命令无效
'
' childMainAxisPosition() 返回从条子的前可见边到给定子对象最靠近该边的边的距离。
' 例如,如果[Constraints]将此小条描述为轴方向为[AxisDirection.Down],则这是小条可见部分顶部到子条顶部的距离。
' 另一方面,如果[Constraints]将这个片段描述为轴方向为[AxisDirection.Up],则这是从片段可见部分底部到子片段底部的距离。
' 在这两种情况下,这都是增加[SliverConstraints.ScrollOffset]和[SliverLogicalParentData.LayoutOffset]的方向。
' 对于[rendersliver]的子对象,子对象的前缘将是子对象的可见前缘,而不是子对象的局部滚动偏移0.0的部分。
' 对于不是[rendersliver]的子对象,例如[renderbox]子对象,它是到框边缘的实际距离,因为这些框不知道如何处理滚动
' 此方法与[ChildScrollOffset]不同,因为[ChildMainAxisPosition]给出了与条子的前可见边缘的距离,而[ChildScrollOffset]给出了与条子的零滚动偏移的距离。
'
' calculateCacheOffset() 计算区域从“from”到“to”的部分,该部分位于视区的缓存范围内,
' 假设只有来自[sliverconstraints.cacheorigin]的区域(即[sliverconstraints.remainingcacheextent]高)可见,
' 并且滚动偏移和绘制之间的关系偏移量是线性的。
' 如果消耗的滚动偏移量与消耗的缓存范围之间不存在1:1的关系,则此方法无效
' calculatePaintOffset()
' 计算区域从“from”到“to”可见的部分,假设只有[SliverConstraints.ScrollOffset]中的区域
' (即[SliverConstraints.RemainingPaintextent]高)可见,并且滚动偏移和绘制偏移之间的关系是线性的
' 例如,如果约束的滚动偏移量为100,剩余的绘制范围为100,并且此方法的参数描述区域50..150,则返回值为50(从滚动偏移量100到滚动偏移量150)
' 如果消耗的滚动偏移量和消耗的绘制范围之间没有1:1的关系,则此方法无效。例如,如果小条始终绘制相同的量,
' 但使用与[SliverConstraints.ScrollOffset]成比例的滚动偏移范围,则此函数的结果将不一致。
'}
class SliverGeometry{
final double scrollExtent
final double paintExtent
final double maxPaintExtent
final double cacheExtent
final bool hasVisualOverflow
final double scrollOffsetCorrection
}
'note right of SliverGeometry{
' 描述RenderSliver占据的空间。 sliver可以以几种不同的方式占用空间,这就是这个类包含多个值的原因。
' scrollExtent 此条具有内容的(估计的)总可滚动范围。 这是用户从这个条开始到这个条结束所需的滚动量。
' 该值用于计算可滚动条中所有条目的[SliverConstraints.ScrollOffset],因此无论条当前是否在视口中,都应提供该值
' 在典型的滚动场景中,在整个滚动过程中,[ScrollExtent]对于一个小条是恒定的,而[PaintExtent]和[LayoutExtent]将从屏幕外的“0”前进到“0”和[ScrollExtent]之间,
' 因为小条部分滚动到屏幕内外,并且等于[ScrollExtent],而小条是完全滚动的在屏幕上。但是,可以自定义这些关系以获得更多的特殊效果
' 如果[PaintExtent]小于布局期间提供的[SliveConstraints.RemainingPaintExtent],则此值必须准确。
'
' paintExtent 在当前视图中,条带所呈现的当前可见可视空间的数量,该条带覆盖了全部或部分[SliverConstraints.remainingPaintExtent]的条带子集。
' 此值不影响下一条棉条的定位方式。换句话说,如果该值为100,[layoutextent]为0,则放置在其后面的典型切片在绘制时最终将绘制在相同的100像素空间中。
' 这必须介于0和[SliveConstraints.RemainingPaintExtent]之间
' 此值通常在视口外为0,并且在滚动条进出视口时从0长大或缩小到0,除非滚动条希望获得特殊效果并在滚动时绘制。
' 这有助于计算下一条棉条的[SliverConstraints.overlap]
' maxPaintExtent 如果[SliverConstraints.remainingPaintExtent]是无限的,这个条目的总paint量将能够提供
' 这由实现shrink-wrapping的视口使用,根据定义,这不能小于[paintextent]。
' cacheExtent 在[SliverConstraints.RemainingCacheExtent]中,sliver消耗了多少像素
' 此值应等于或大于[LayoutExtent],因为小条始终至少使用[SliveConstraints.RemainingCacheExtent]中的[LayoutExtent],
' 如果它落在视区的缓存区域中,则可能会使用更多。
' RenderViewport.cacheExtent 中指预加载的区域
' hasVisualOverflow 此条是否有视觉溢出
' 默认情况下,该值为false,这意味着视口不需要剪裁其子对象。如果任何片段有视觉溢出,则该视口将对其子对象应用剪辑。
'
' scrollOffsetCorrection 如果返回[rendersliver.performlayout]后该值为非零,则父级将调整滚动偏移,然后重新运行父级的整个布局
' 当值为非零时,[rendersliver]在构造[slivergometry]时不需要计算其余的值,也不需要对其子级调用[rendersliver.performlayout],
' 因为在[sliverconstraints.scrolloffset]校正完成后,将在同一帧中再次对该条调用[rendersliver.performlayout]应用时,
' 其子项的正确[滑动测量]和布局可以计算
' 如果父对象也是[rendersliver],则它必须在自己的[rendersliver.geometry]属性中传播此值,直到基于此值调整其偏移量的视口为止。
'}
abstract class RenderSliverMultiBoxAdaptor{
final RenderSliverBoxChildManager _childManager
final Map<int, RenderBox> _keepAliveBucket
RenderBox insertAndLayoutLeadingChild(BoxConstraints childConstraints, {bool parentUsesSize = false,})
RenderBox insertAndLayoutChild(BoxConstraints childConstraints, {@required RenderBox after,bool parentUsesSize = false,})
double childScrollOffset(RenderObject child)
double paintExtentOf(RenderBox child)
void collectGarbage(int leadingGarbage, int trailingGarbage)
}
'note right of RenderSliverMultiBoxAdaptor{
' 有多个box children的sliver
' [RenderSliverMultiBoxAdaptor]是具有多个box children的条子的基类.子项由[RenderSliverBoxChildManager]管理,允许子类在布局期间懒惰地创建子项
' 通常子类只会创建实际需要填充[SliverConstraints.remainingPaintExtent]的子项
' 从渲染对象添加和删除子项的合同是比普通渲染对象更严格
' 如果他们已经在布局过程中布局,除布局过程,儿童可以被移除
' 除了在[childManager]的调用期间,不能添加子项,然后仅当没有与该索引(或子项)对应的子项时(首先删除了与该索引对应的子项)
' _keepAliveBucket 尽管节点不可见,但仍保持活动状态
'
' insertAndLayoutLeadingChild() 在布局期间调用以在[firstchild]之前创建、添加和布局子级
' 调用[rendersliveboxchildmanager.createChild]以实际创建并添加子项(如果需要)。可以从缓存中获取子项;
' 请参阅[SliverMultiboxAdapterParentData.KeepAlive]。
' 返回新的子项,如果未获得子项,则返回空值
' 如果在此布局过程中尚未布局,则可以通过此调用移除先前是第一个子级的子级以及任何后续子级。在调用期间不应添加子项,
' 除了由“createchild”创建并返回的子项。
'
' insertAndLayoutChild() 在布局期间调用,以在给定子级之后创建、添加和布局子级。
' 调用[rendersliveboxchildmanager.createChild]以实际创建并添加子项(如果需要)。可以从缓存中获取子项;
' 请参阅[SliverMultiboxAdapterParentData.KeepAlive]。
'
'
' childScrollOffset() 返回child的layoutOffset
' paintExtentOf() 返回主轴中给定子项的维度,如子项的[RenderBox.Size]属性所示。这仅在布局后有效。
' 竖直布局中,返回child.size.height
'
' collectGarbage() 在布局后调用,在子列表的开头和结尾处可以垃圾收集的子列表数
' 属性[SliverMultiBoxAdaptorParentData.keepAlive]设置为true的子级将被删除到缓存中,而不是被删除
' 这种方法还收集以前存活但现在不再需要的任何孩子。因此,每次运行[performlayout]时都应该调用它,即使参数都为零
' 回收时 leadingGarbage每次去掉firstChild trailingGarbage每次去掉lastChild
'}
class RenderSliverFixedExtentBoxAdaptor{
}
class RenderSliverList{
}
abstract class RenderSliverBoxChildManager{
void setDidUnderflow(bool value)
double estimateMaxScrollOffset(
SliverConstraints constraints, {
int firstIndex,
int lastIndex,
double leadingScrollOffset,
double trailingScrollOffset,
})
}
note right of RenderSliverBoxChildManager{
estimateMaxScrollOffset() 调用以估计此对象的总可滚动范围
必须返回从具有最早可能索引的子项开始到具有最后可能索引的子项结束的总距离
该接口的实现SliverMultiBoxAdaptorElement 调用widget即SliverMultiBoxAdaptorWidget的estimateMaxScrollOffset
widget的默认实现是delegate.estimateMaxScrollOffset=null
或者调用SliverMultiBoxAdaptorElement._extrapolateMaxScrollOffset
在布局期间调用,以指示此对象是否没有为[RendersLiverMultiboxAdapter]提供足够的子级来填充[SliverConstraints.RemainingPaintExtent]。
}
class RenderSliverGrid{
}
class RenderSliverFixedExtentList{
}
class SliverFixedExtentList{
}
class RenderSliverFillViewport{
}
abstract class SliverMultiBoxAdaptorWidget {
final SliverChildDelegate delegate
SliverMultiBoxAdaptorElement createElement() => SliverMultiBoxAdaptorElement(this)
}
'note right of SliverMultiBoxAdaptorWidget{
' 定义:有多个盒子的条子的基类
' 使用[SliverChildDelegate]帮助子类懒惰地构建他们的孩子
'}
class SliverList{
RenderSliverList createRenderObject(BuildContext context)
}
class SliverGrid{
final SliverGridDelegate gridDelegate
RenderSliverGrid createRenderObject(BuildContext context)
void updateRenderObject(BuildContext context, RenderSliverGrid renderObject)
}
class SliverFixedExtentList{
final double itemExtent
RenderSliverFixedExtentList createRenderObject(BuildContext context)
void updateRenderObject(BuildContext context, RenderSliverFixedExtentList renderObject)
}
class SliverFillViewport{
final double viewportFraction
RenderSliverFillViewport createRenderObject(BuildContext context)
void updateRenderObject(BuildContext context, RenderSliverFillViewport renderObject)
}
'note right of SliverFillViewport{
' 包含多个子框的子条,每个子框填充视口
' [SliverFillViewport]将其子项放在主轴的线性数组中
' 每个孩子的大小都可以填充视口,包括主视图和cross轴
' viewportFraction 每个子项应填充主轴的视口部分,如果此分数小于1.0,则在一次可以看到多个子项,如果此分数大于1.0,则每个子项将大于主轴中的视口
' }
class RenderSliverSingleBoxAdapter{
RenderBox child
}
' note right of RenderSliverSingleBoxAdapter{
' 包含一个[RenderBox]的[RenderSliver]类
' }
class SliverToBoxAdapter{
RenderSliverToBoxAdapter createRenderObject(BuildContext context) => RenderSliverToBoxAdapter()
}
'note right of SliverToBoxAdapter{
' 包含单个box widget的sliver
' Slivers是特殊用途的小部件,可以使用 [CustomScrollView]组合创建自定义滚动效果
' 一个[SliverToBoxAdapter]是一个基本的条子,它创建了返回一个基于通常盒子的桥梁
' 使用多个[SliverToBoxAdapter]小部件来显示多个[CustomScrollView]中的框小部件,考虑使用[SliverList],[SliverFixedExtentList],
' [SliverPrototypeExtentList]或[SliverGrid],那些更有效,因为它们只实例化那些实际上是通过滚动视图的视口可见的孩子
'}
class RenderSliverToBoxAdapter{
void performLayout()
}
'note right of RenderSliverToBoxAdapter{
' 包含单个[RenderBox]的[RenderSliver]
' 如果不可见,孩子将不会被布置。它的大小根据对主轴中孩子的偏好,并有严格的约束,将其强制为横轴的视口尺寸
'}
class SliverFillRemaining{
RenderSliverFillRemaining createRenderObject(BuildContext context)
}
'note right of SliverFillRemaining{
' 包含单个盒子的条子,填充剩余的视口空间
' [SliverFillRemaining]调整其子项的大小以填充cross轴中的视口并填充主轴视口中的剩余空间
' 通常,这将是视口中的最后一个条子,因为(根据定义)除了这条条子之外,什么都没有空间
'}
class RenderSliverFillRemaining{
void performLayout()
}
StatelessWidget <|-- ScrollView
ScrollView <|-- BoxScrollView
ScrollView <|-- CustomScrollView
ScrollView <.. Scrollable
ScrollView <.. Viewport
BoxScrollView <|-- ListView
BoxScrollView <|-- GridView
StatefulWidget <|-- Scrollable
Scrollable <.. ScrollableState
MultiChildRenderObjectWidget <|-- Viewport
Viewport <.. RenderViewport
RenderViewportBase <|-- RenderViewport
RenderViewportBase <.. RenderSliver
RenderViewportBase <.. ViewportOffset
ViewportOffset <|-- ScrollPosition
ScrollPosition <|-- ScrollPositionWithSingleContext
RenderViewport <.. RenderSliver
RenderObject <|-- RenderSliver
RenderSliver <|-- RenderSliverMultiBoxAdaptor
RenderSliver <|-- RenderSliverSingleBoxAdapter
RenderSliver <.. SliverGeometry
RenderSliverMultiBoxAdaptor <|-- RenderSliverList
RenderSliverMultiBoxAdaptor <|-- RenderSliverGrid
RenderSliverMultiBoxAdaptor <|-- RenderSliverFixedExtentBoxAdaptor
RenderSliverFixedExtentBoxAdaptor <|-- RenderSliverFixedExtentList
RenderSliverFixedExtentBoxAdaptor <|-- RenderSliverFillViewport
RenderObjectWidget <|-- SliverWithKeepAliveWidget
SliverWithKeepAliveWidget <|-- SliverMultiBoxAdaptorWidget
SliverMultiBoxAdaptorWidget <|-- SliverList
SliverMultiBoxAdaptorWidget <|-- SliverGrid
SliverMultiBoxAdaptorWidget <|-- SliverFixedExtentList
SliverMultiBoxAdaptorWidget <|-- SliverFillViewport
SliverList <.. RenderSliverList
RenderSliverList <.. RenderSliverBoxChildManager
SliverFixedExtentList <.. RenderSliverFixedExtentList
SliverGrid <.. RenderSliverGrid
SliverFillViewport <.. RenderSliverFillViewport
RenderObjectWidget <|-- SingleChildRenderObjectWidget
SingleChildRenderObjectWidget <|-- SliverToBoxAdapter
SingleChildRenderObjectWidget <|-- SliverFillRemaining
RenderSliverSingleBoxAdapter <|-- RenderSliverToBoxAdapter
RenderSliverSingleBoxAdapter <|-- RenderSliverFillRemaining
SliverToBoxAdapter <.. RenderSliverToBoxAdapter
SliverFillRemaining <.. RenderSliverFillRemaining
@enduml |
0364e91783c883b4cf074045e840431b1996a301 | e2440ea4941db7a0e5fcc2b63a4f7a6d983ecd4e | /ANC3-Diagramme/ClassDiagram/CDD.puml | cbf8f0304aa0c710310e628dbdbf2b4bed56544e | [] | no_license | rerys/TournamentManager | f744dd6a176a080c78d35f60f011e6c0fcc9cae9 | b2e16f58d030b37c6a821ac16cbe730bd5604492 | refs/heads/master | 2022-11-07T21:55:11.651161 | 2019-05-03T08:11:52 | 2019-05-03T08:11:52 | 275,202,490 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 674 | puml | @startuml CDD
package Model{
class Tournoi{
-String nom
}
class Match{
- Joueur joueur1
- Joueur joueur2
- Resultats r
}
class Joueur{
- String nom
}
class Resultats{
- enum Resultats
}
class ListeTournois{
}
}
package Controller{
class Ctrl<<Controller>>{
}
}
package View{
class GestionTournois<<View>>{
}
}
ListeTournois "1" o-r- "*" Tournoi : contient
Tournoi "1" o-right- "*" Match : contient
Tournoi "1..*" o-- "0*" Joueur : est inscrit
Match "1..*" *-- "2" Joueur :est composé
Match *-- Resultats
Controller ..> Model : use
View"1" <--"1" Controller
@enduml |
88d829dda78eddbdaff1fc04609b18cbe70c9171 | a81e562f727c45dbbca8c325630d0e26005d651c | /docs/plantuml/components/ReadOnlyInput.puml | c1adb9cd8124f1e6927e8db6ccc39ab805f6dd5c | [] | no_license | kelvinleclaire/PA2 | 46768de9af832d892812d39b248bf1636eb52db3 | 39fc53a5ecbcdecd81ace88a5f681769dc62813c | refs/heads/main | 2023-04-30T16:37:05.951439 | 2021-05-18T10:21:49 | 2021-05-18T10:21:49 | 368,485,770 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 253 | puml | @startuml
'https://plantuml.com/class-diagram
class ReadOnlyInput {
..props ..
onConfirmInput(string): void
confirmInputKey: string
value?: string
..consts ..
keyboardInputs: string
..functions ..
onEnterHandler(e:any): void
}
@enduml
|
fd191acf668971d5d6d8219167bba12f86216462 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/TypeChangeEnumValueOrderAction.puml | 4a8f81803f9a75e8868a952bc7b5c0f7a3cd339c | [] | 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 | 486 | 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 TypeChangeEnumValueOrderAction [[TypeChangeEnumValueOrderAction.svg]] extends TypeUpdateAction {
action: String
fieldName: String
keys: [[String.svg List<String>]]
}
interface TypeUpdateAction [[TypeUpdateAction.svg]] {
action: String
}
@enduml
|
1c655ce30cca73e3eb6f0d6b258f508753d8352b | 0d78c1b22cbbd5d3a1aec747048980e51ae2fb79 | /assets/zustaende.plantuml | a1e4a3323ee6e08c7989e6accc41a7358847a6e6 | [
"MIT"
] | permissive | valeriia7/refresher | d79b5ca4805d8f0d68a57e7f890535994b4d9bff | f91bbafc1f6c11da45a69c0189c07e25c652894c | refs/heads/master | 2020-03-22T18:56:12.781274 | 2018-01-05T15:08:11 | 2018-01-05T15:08:11 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 418 | plantuml | @startuml
class Automaton {
- current: State
+ accept(input: String[]): boolean
}
abstract class State {
+ accept(input: String): State
# successor(input: String): State
}
class Schlafend extends State {
# successor(input: String): State
}
class Aufgewacht extends State {
# successor(input: String): State
}
class Geduscht extends State {
# successor(input: String): State
}
Automaton *-- State
@enduml
|
643bad6f55e08c1a2aa725f8a16d18fe84c4d1bd | 4f06b67cdd92724020d7a7bfd9428f631ceb986d | /doc/classes.puml | 614cb584768a15af13c17e22dbe4a5ad1870c5e7 | [
"MIT"
] | permissive | filipwasil/rearwing-glviewer | 857e19dbd0abf7a6947628b236ad86ad201c6fa8 | 3d0289398367b6dc330eae18042497b8da2e77da | refs/heads/master | 2020-08-30T12:36:59.968087 | 2020-01-24T10:06:01 | 2020-01-24T10:06:01 | 218,382,206 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 737 | puml | @startuml
class Moveable {
+vec3 position
+quat rotation
+vec3 scale
+mat4 transformation
+mat4 parentTransformation
+quat parentRotation
}
abstract class Node3D {
+onDraw()
+onEvent(EventType)
}
abstract class Scene {
+onDraw()
+onEvent(EventType)
+onRendererUpdate(Renderer& renderer)
}
class RenderPass {
+updateRenderer(Renderer&) = 0
}
class Camera {
}
enum EventType {
time
translate
rotate
scale
key
mouse
touch
}
enum RenderPassType {
default
}
Node3D *-- "many" Node3D
Node3D "1" *-- "1" RenderItem
Scene *-- "many" Node3D
Scene *-- "1" Renderer
Scene *-- "1" Camera
Renderer *-- "many" RenderPass
Renderer *-- "many" RenderItem
Engine *-- "1" Scene
Node3D <|-- Moveable
@enduml |
bb4b1906f8f57121b1cb83eece9f5731886efb96 | 372d0fe94d7e59fd48620c687fee8fc94841408b | /deadheat-lock-example/microservices-example/searching-service/src/main/java/com/vrush/microservices/searching/specifications/specifications.plantuml | f1724833002cff0d95aebaeb139e50757966d086 | [
"Apache-2.0"
] | permissive | vrushofficial/deadheat-lock | 4ae44e23fea2ad57db17aadeba58e39ef4f63822 | 11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2 | refs/heads/main | 2023-01-14T17:28:38.161881 | 2020-11-29T11:11:55 | 2020-11-29T11:11:55 | 310,531,739 | 2 | 1 | null | 2020-11-19T08:16:25 | 2020-11-06T08:06:52 | CSS | UTF-8 | PlantUML | false | false | 786 | plantuml | @startuml
title __SPECIFICATIONS's Class Diagram__\n
namespace com.vrush.microservices.searching {
namespace specifications {
class com.vrush.microservices.searching.specifications.CustomSpecification {
+ CustomSpecification()
+ toPredicate()
}
}
}
com.vrush.microservices.searching.specifications.CustomSpecification .up.|> org.springframework.data.jpa.domain.Specification
com.vrush.microservices.searching.specifications.CustomSpecification o-- com.vrush.microservices.searching.specifications.domain.SpecificationFilter : filter
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
|
ba34bf10f92aadb9dedf846e4cf83ef9606f4c0c | 873458ec9d2a064d4bfb8cfb3fd49c85bf38a8f3 | /docs/ocp/ocp-bad.puml | af7dcc2748150b064c3283db3fd73ed324f77b9b | [] | no_license | vikas-a/SOLID | 50caecae680a86f7dca8668121fcb5ff05c2c2bd | 0c55eb2c5964bc1a2fc261698452d07bdfd75fa7 | refs/heads/master | 2021-02-17T06:04:07.881039 | 2020-03-09T10:02:32 | 2020-03-09T10:02:32 | 245,076,042 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 84 | puml | @startuml
class Greeter{
- String : formality
+ greet()
+ setPersonality()
}
@enduml |
bc3afcf67036a3b16692a6855400e6dfbea28602 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.puml | 497c09092456f6fa3721e1cc86807c669e61c487 | [] | 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 | 386 | puml | @startuml
class VertexShakeA {
+ AngleMultiplier : float = 1.0f
+ SpeedMultiplier : float = 1.0f
+ ScaleMultiplier : float = 1.0f
+ RotationMultiplier : float = 1.0f
Awake() : void
OnEnable() : void
OnDisable() : void
Start() : void
ON_TEXT_CHANGED(obj:Object) : void
AnimateVertexColors() : IEnumerator
}
MonoBehaviour <|-- VertexShakeA
@enduml
|
4e89eb3b8dc4b77c1b78d52343c8eb2b34479396 | 74cb674dc7b9c3f65f6ab08fc5ad3a43c3bf12d3 | /Offline 2/Problem 2/out/production/Problem 2/language/language.plantuml | 91c3711ec9c09941497aa66f45e7c983baa8a25d | [] | no_license | zarif98sjs/CSE-308-Software-Engineering | a9759bbee2ea0647eae2ea677d08741293a1cc14 | 515015a40c10d916d5089f11784b4ff75319fcbd | refs/heads/main | 2023-06-27T05:57:00.443594 | 2021-07-28T13:57:32 | 2021-07-28T13:57:32 | 344,690,362 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,230 | plantuml | @startuml
title __LANGUAGE's Class Diagram__\n
namespace language {
class language.C {
+ create()
+ createParser()
+ toString()
~ C()
}
}
namespace language {
class language.CPP {
+ create()
+ createParser()
+ toString()
~ CPP()
}
}
namespace language {
interface language.Language {
{abstract} + create()
{abstract} + createParser()
{abstract} + toString()
}
}
namespace language {
class language.LanguageFactory {
{static} + getLanguage()
}
}
namespace language {
class language.Python {
+ create()
+ createParser()
+ toString()
~ Python()
}
}
language.C .up.|> language.Language
language.C o-- language.parser.Parser : parser
language.CPP .up.|> language.Language
language.CPP o-- language.parser.Parser : parser
language.Python .up.|> language.Language
language.Python o-- language.parser.Parser : parser
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
|
dc088f19b63913699192db4defac26dd942a993d | c083168b4255af019262677c09ac0883d199b532 | /kapitler/media/uml-class-matrikkel.iuml | fee8350f0026e3472a44bcf5b3f6c23a1204e980 | [] | no_license | gra-moore/noark5-tjenestegrensesnitt-standard | 270f7088898ff0c5fa809b42297cfc56f829eeaa | 0c3936475ce40ab41793b61aee5c4dcdff9c791d | refs/heads/master | 2020-05-22T18:37:59.814751 | 2019-05-13T11:10:23 | 2019-05-13T11:10:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 138 | iuml | @startuml
class Arkivstruktur.NasjonaleIdentifikatorer.Matrikkel <Nasjonalidentifikator> {
+matrikkelnummer : Matrikkelnummer
}
@enduml
|
4e419c0eca55ecbf4d7726c8deb28155c36488f8 | 44a89eb59de29515b1c5ccfc2d7a881d1c22950b | /src/model/model.plantuml | b54224039adbba9a6accf01dcc1b076186b1895c | [] | no_license | AlexandraCristetiu/MyTextAdventureGame | c97b822e7abc692039e9f2963701bf34fd857d38 | 117d186c9a5b01c5b645e5e435df0d660d7059f2 | refs/heads/master | 2020-05-27T22:53:18.026650 | 2019-06-10T08:46:58 | 2019-06-10T08:46:58 | 188,812,054 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 535 | plantuml | @startuml
title __MODEL's Class Diagram__\n
package model {
class GameBoard {
{static} - lastId : int
- uniqueId : int
- boardName : String
- boardSize : int
- gameBoardObjects : Object[][]
- connectedGameBoards : Map<GameBoard, List<Integer>>
+ GameBoard()
}
}
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
|
eefe904e40e51a44b7af4b596a0e9359595da0f4 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/UpdateAction.puml | d6232d15930947e6365ecc1c044910e48dc16bd6 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 451 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface UpdateAction [[UpdateAction.svg]] {
action: String
}
interface Update [[Update.svg]] {
version: Long
actions: [[UpdateAction.svg List<UpdateAction>]]
}
UpdateAction --> Update #green;text:green : "actions"
@enduml
|
c6e772c6cb3f7a9da3753d3a3edc897d2fbc6fa4 | 0a916ce8e510f770e8e2fad0757c1bf5574b83b5 | /app/diagram.puml | bf2a086f91c5756f191e36a8b19e18f96e292be4 | [] | no_license | an01f01/probably_bowling | d830f705fa7e7c4c02667bdb1f8223a1829546de | ccaa8f7b10dcd31104fd993c5c391471b8a015e2 | refs/heads/main | 2023-03-26T08:57:29.224097 | 2021-03-16T20:34:40 | 2021-03-16T20:34:40 | 348,478,819 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 896 | puml | @startuml
Frame o-- FrameType: has a
Player *-- Frame: has 10 >
BowlingGame "1" *-- "8" Player : contains
enum FrameType {
NORMAL
SPARE
STRIKE
LAST
}
class Frame {
+ points: Int[3]
+ bonus: Int
+ frameType: FrameType
}
class Player {
+ frames: Frame[10]
+ name: String
+ finalScore: Int
+ reset()
+ setScore(score: Int)
+ getScore(): Int
}
class BowlingGame {
+ PINS: Int
- players: Player[]
- gameFinished: Boolean
- frame: Int
- roll: Int
- pins: Int
- lastScore: Int
+ addPlayer(name: String): Int
+ renamePlayer(playerIdx: Int, newName: String): Int
+ getPlayers(): Player[]
+ calculateScore(playerIdx: Int, frameNumber: Int, rollNumber: Int, pinsKocked: Int): Int
+ bowl(playerIdx: Int): Triple<Int, Int, Int>
+ resetGame()
}
@enduml |
cdae96f77180526d201f3e8a17f5d95c7254d2af | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Common/Shared/Events/Queue/IEncodableEventQueue.puml | c9c35c5d8646641f043abd3ef3fb6f15aef44fcc | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 181 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
interface "IEncodableEventQueue<T: Event>" {
+ IsClosed: bool <<get>>
}
!endsub
@enduml |
898cd7630a35fc05221d59cc29c14f7f9b005bd7 | 636d88cc43ec1ba57c3699ed58d0cec51a1a3084 | /Term Project/Object Pool/ObjectPool_Class_diagram.puml | 7eb426819dd246d8a614c4925bfc84ccbd9b1fcf | [] | no_license | ahmedAlraimi/Tasarim | 088944d13cbdaeea4e0537f7035b1e7ad618c91c | c5a1ee24b3c57561cca80fd7a6e81359bde5b040 | refs/heads/master | 2020-04-26T15:33:28.741752 | 2019-07-10T13:09:39 | 2019-07-10T13:09:39 | 173,650,584 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 864 | puml | @startuml
skinparam classAttributeIconSize 0
class Demo_index{
}
class BusServiceController{
{field} - pool : BusServicePool
{field} - view : BusServiceView
{method} + setModel()
{method} + setView()
{method} + CallBusService()
{method} + Release()
}
class BusServiceView{
{method} + print()
}
class BusServicePool{
{field} - out_of_service : BusService[]
{field} - available : BusService[]
{field} - plate_no : BusService[]
{method} + __construct()
{method} + getfree()
{method} + getfull()
{method} + getBusService()
{method} + release()
}
class BusService{
{field} - id : Integer
{field} - plate_no : String
{method} + getId()
{method} + getPlateNo()
}
BusServiceController <- Demo_index : uses
BusServiceView <- BusServiceController : updates
BusServiceController --> BusServicePool : asks for BusService
BusServicePool --> BusService : uses
@enduml |
88384c93fac6f3346373a263f67014b933303406 | 1b50f396e7591942f8bda0e4e5e34ae9e236418b | /src/com/kyle/quiz/quiz.plantuml | edbb6ec0c1376de134344805891a4d9a4e5f8655 | [] | no_license | 98189pereira/final-project | 227c27e1a07114cd986e025e19dacb7c7ae996dd | 510dcc9e46ac9c22cc6226e7f33ac3648f63b903 | refs/heads/main | 2023-02-25T07:33:21.113244 | 2021-01-27T14:12:51 | 2021-01-27T14:12:51 | 331,424,288 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,490 | plantuml | @startuml
title __QUIZ's Class Diagram__\n
namespace com.kyle.quiz {
class com.kyle.quiz.BlankBox {
{static} + DEFAULT_ANSWER : String
{static} # SPACING : int
# boxAnswer : TextField
# gridPos : int
# question : String
# questionBox : VBox
# required : boolean
+ BlankBox()
+ getAnswer()
+ getGridPos()
+ getQuestion()
+ getQuestionBox()
+ isRequired()
+ setAnswer()
+ setGridPos()
+ setRequired()
- createQuestion()
}
}
namespace com.kyle.quiz {
class com.kyle.quiz.ExtraQuizData {
- extraNode : Node
- lastGridPos : int
- quizTitleText : String
+ ExtraQuizData()
+ getExtraNode()
+ getLastGridPos()
+ getQuizTitleText()
+ setExtraNode()
}
}
namespace com.kyle.quiz {
class com.kyle.quiz.InvalidQuizException {
}
}
namespace com.kyle.quiz {
class com.kyle.quiz.MultipleChoice {
# answers : ToggleGroup
# options : String[]
+ MultipleChoice()
+ getAnswer()
+ setAnswer()
- createQuestion()
}
}
namespace com.kyle.quiz {
enum QuestionTypes {
blank_box
multiple_choice
}
}
namespace com.kyle.quiz {
enum QuizFileFormat {
ANSWER
OPTION
OPTIONS
QUESTION
QUESTIONS
QUESTION_DATA
QUESTION_TYPE
QUIZ
QUIZ_TITLE
REQUIRED
parent
prefix
type
}
}
namespace com.kyle.quiz {
interface com.kyle.quiz.QuizFormat {
{abstract} + addQuestions()
{abstract} + checkAnswers()
{abstract} + getAnswersJson()
{abstract} + getQuestions()
{abstract} + loadQuestions()
{abstract} + scrubQuiz()
{abstract} + submitQuiz()
}
}
namespace com.kyle.quiz {
class com.kyle.quiz.QuizHandler {
+ quizTitle : String
{static} # QUESTION_OFFSET : int
{static} # SPACING : int
- answersJson : String
- questions : ArrayList<QuizQuestion>
+ addQuestions()
+ checkAnswers()
+ getAnswersJson()
+ getQuestions()
{static} + getRequiredText()
+ loadQuestions()
+ scrubQuiz()
+ submitQuiz()
- getQuestionAnswerMap()
}
}
namespace com.kyle.quiz {
interface com.kyle.quiz.QuizQuestion {
{abstract} + getAnswer()
+ getDefaultAnswer()
{abstract} + getGridPos()
{abstract} + getQuestion()
{abstract} + getQuestionBox()
+ isRequired()
{abstract} + setAnswer()
}
}
namespace com.kyle.quiz {
interface com.kyle.quiz.SubmittableQuiz {
+ quizComplete()
}
}
com.kyle.quiz.BlankBox .up.|> com.kyle.quiz.QuizQuestion
com.kyle.quiz.InvalidQuizException -up-|> java.io.IOException
com.kyle.quiz.MultipleChoice -up-|> com.kyle.quiz.BlankBox
com.kyle.quiz.QuizFileFormat .up.|> com.kyle.parser.ValidParserRules
com.kyle.quiz.QuizFileFormat o-- com.kyle.quiz.QuizFileFormat : parent
com.kyle.quiz.QuizFileFormat o-- com.kyle.parser.PropertyType : type
com.kyle.quiz.QuizHandler .up.|> com.kyle.quiz.QuizFormat
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
|
77e3249b9e717eaab0399af07e8152f79eee2548 | e3c9bdc1d44b0b43faee2398a6529af87a3f6c7c | /plantuml/azure/cloudify.plantuml | 7db87e28743a4e8994e70f79aa4063da745f5c16 | [] | no_license | tasiomendez/iac-modelling | 11c4bc8f146f13db1fa43154f9c9ace317f7d04e | 921f2f70a04f4565a750507c5a0443e5df8f4b86 | refs/heads/master | 2023-04-06T00:45:32.854631 | 2021-04-14T10:48:05 | 2021-04-14T10:48:05 | 351,842,950 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,176 | plantuml | @startuml cloudify
' Design Configuration
skinparam monochrome true
skinparam tabSize 2
' Network Layer
object "nic-name" as network_interface <<cloudify.azure.nodes.network.NetworkInterfaceCard>> {
name: String
location: String
azure_config: dict
retry_after: Integer
}
object "network" as virtual_network <<cloudify.azure.nodes.network.VirtualNetwork>> {
name: String
location: String
azure_config: dict
resource_group_name: String
}
object "subnet" as subnet <<cloudify.azure.nodes.network.Subnet>> {
name: String
location: String
azure_config: dict
resource_group_name: String
resource_config:
\t addressPrefix: String
}
object "ip-name" as static_public_ip <<cloudify.azure.nodes.network.PublicIPAddress>> {
name: String
location: String
azure_config: dict
retry_after: Integer
resource_config:
\t publicIPAllocationMethod: String
}
object "ip_config-name" as ip_configuration <<cloudify.azure.nodes.network.IPConfiguration>> {
name: String
location: String
azure_config: dict
retry_after: Integer
resource_config:
\t privateIPAllocationMethod: String
}
object "network_security_group" as network_security_group <<cloudify.azure.nodes.network.NetworkSecurityGroup>> {
name: String
location: String
azure_config: dict
retry_after: Integer
resource_config:
\t securityRules: Array
\t \t name: String
\t \t properties:
\t \t \t description: String
\t \t \t protocol: String
\t \t \t sourcePortRange: String
\t \t \t destinationPortRange: String
\t \t \t sourceAddressPrefix: String
\t \t \t destinationAddressPrefix: String
\t \t \t priority: Integer
\t \t \t access: String
\t \t \t direction: String
}
' Virtual Machines
object "vm-name" as vm <<cloudify.azure.nodes.compute.VirtualMachine>> {
name: String
location: String
azure_config: dict
retry_after: Integer
os_family: String
resource_config:
\t hardwareProfile:
\t \t vmSize: String
\t storageProfile:
\t \t imageReference: dict
\t osProfile:
\t \t adminUsername: String
\t \t adminPassword: String
\t \t linuxConfiguration: dict
agent_config:
\t install_method: String
\t key: String
\t user: String
use_public_ip: Boolean
}
object "storage_account" as storage_account <<cloudify.azure.nodes.storage.StorageAccount>> {
name: String
location: String
azure_config: dict
retry_after: Integer
resource_config:
\t accountType: String
}
object "resource_group" as resource_group <<cloudify.azure.nodes.ResourceGroup>> {
name: String
location: String
azure_config: dict
}
object "availability_set" as availability_set <<cloudify.azure.nodes.compute.AvailabilitySet>> {
name: String
location: String
azure_config: dict
retry_after: Integer
}
' Relationships
virtual_network --> resource_group : <<contained_in_resource_group>>
network_security_group --> resource_group : <<contained_in_resource_group>>
network_interface --> resource_group : <<contained_in_resource_group>>
vm --> resource_group : <<contained_in_resource_group>>
availability_set --> resource_group : <<contained_in_resource_group>>
storage_account --> resource_group : <<contained_in_resource_group>>
static_public_ip --> resource_group : <<contained_in_resource_group>>
subnet --> virtual_network : <<contained_in_virtual_network>>
ip_configuration --> subnet : <<ip_configuration_connected_to_subnet>>
ip_configuration --> static_public_ip : <<ip_configuration_connected_to_subnet>>
network_interface --> ip_configuration : <<nic_connected_to_ip_configuration>>
network_interface --> network_security_group : <<nic_connected_to_network_security_group>>
vm --> network_interface : <<connected_to_nic>>
vm --> storage_account : <<connected_to_storage_account>>
vm --> availability_set : <<connected_to_availability_set>>
@enduml
|
fb1c693ef50f307830ca127e167345c502f0c9d5 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Editor/TMP_SpriteAssetEditor.puml | 4de05ba47eb3a5c3728491ce235973cfbee46e16 | [] | 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 | 2,666 | puml | @startuml
class TMP_SpriteAssetEditor {
m_moveToIndex : int
m_selectedElement : int
m_CurrentCharacterPage : int
m_CurrentGlyphPage : int
<<const>> k_UndoRedo : string = "UndoRedoPerformed"
m_CharacterSearchPattern : string
m_IsCharacterSearchDirty : bool
m_GlyphSearchPattern : string
m_IsGlyphSearchDirty : bool
isAssetDirty : bool
m_xOffset : float
m_yOffset : float
m_xAdvance : float
m_scale : float
+ OnEnable() : void
+ <<override>> OnInspectorGUI() : void
DisplayPageNavigation(currentPage:int, arraySize:int, itemsPerPage:int) : void
UpdateGlobalProperty(property:string, value:float) : void
SwapCharacterElements(selectedIndex:int, newIndex:int) : void
MoveCharacterToIndex(selectedIndex:int, newIndex:int) : void
SwapGlyphElements(selectedIndex:int, newIndex:int) : void
MoveGlyphToIndex(selectedIndex:int, newIndex:int) : void
CopyCharacterSerializedProperty(source:SerializedProperty, target:SerializedProperty) : void
CopyGlyphSerializedProperty(srcGlyph:SerializedProperty, dstGlyph:SerializedProperty) : void
SearchCharacterTable(searchPattern:string, searchResults:List<int>) : void
SearchGlyphTable(searchPattern:string, searchResults:List<int>) : void
}
class UI_PanelState <<struct>> {
+ {static} spriteAssetFaceInfoPanel : bool = true
+ {static} spriteAtlasInfoPanel : bool = true
+ {static} fallbackSpriteAssetPanel : bool = true
+ {static} spriteCharacterTablePanel : bool
+ {static} spriteGlyphTablePanel : bool
}
class "List`1"<T> {
}
Editor <|-- TMP_SpriteAssetEditor
TMP_SpriteAssetEditor --> "m_CharacterSearchList<int>" "List`1"
TMP_SpriteAssetEditor --> "m_GlyphSearchList<int>" "List`1"
TMP_SpriteAssetEditor --> "m_FaceInfoProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_PointSizeProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_ScaleProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_LineHeightProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_AscentLineProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_BaselineProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_DescentLineProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_spriteAtlas_prop" SerializedProperty
TMP_SpriteAssetEditor --> "m_material_prop" SerializedProperty
TMP_SpriteAssetEditor --> "m_SpriteCharacterTableProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_SpriteGlyphTableProperty" SerializedProperty
TMP_SpriteAssetEditor --> "m_fallbackSpriteAssetList" ReorderableList
TMP_SpriteAssetEditor --> "m_SpriteAsset" TMP_SpriteAsset
TMP_SpriteAssetEditor +-- UI_PanelState
@enduml
|
b3f5b1f728768ce5a7fafefd72f7d0361e46b464 | 2748577960ba36091dba79b507521c92dba723c8 | /Portal.plantuml | 5601105fe0b968a4cc55791f423f0f76de28efbe | [] | no_license | MartinEmilEshack/Portal | a6e3c25b421afef854bd576d97ce9019e597f700 | 8ac77fd31dcd3d7f7b74524f60da32259141b09d | refs/heads/master | 2022-02-21T09:47:12.538411 | 2019-10-16T17:51:16 | 2019-10-16T17:51:16 | 213,708,757 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 650 | plantuml | @startuml
title __PORTAL's Class Diagram__\n
package Portal.UI {
class Controller {
}
}
package Portal.FileManagement {
class Explorer {
}
}
package Portal.FileManagement {
class FileBytes {
}
}
package Portal.UI {
class Main {
}
}
package Portal.Network {
class ReceivePort {
}
}
package Portal.Network {
class SendPort {
}
}
Main -up-|> 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
|
78db331e879adf4c8bfd166c6c1bdabb231df9c3 | 2099ea9bcbc7ae9c8c28d59f9e0fffbf478c1f03 | /UML/vendor/bizley/migration.puml | d182d2958d6e24e25746b3b420d89074bc17187e | [] | no_license | adipriyantobpn/UML-diagram-for-some-PHP-packages | b3e3ed8e8898e4a5d56f0647cfbedaaa9d2dbdd5 | 0a9308fbd2d544c8f64a37cf9f11011edfc40ace | refs/heads/master | 2021-08-19T19:24:34.948176 | 2017-11-27T07:48:10 | 2017-11-27T07:48:10 | 112,164,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,158 | puml | @startuml
skinparam handwritten true
class bizley.migration.controllers.MigrationController {
+db : Connection|array|string = "db"
+defaultAction : string = "list"
+fixHistory : bool|string|int = 0
+generalSchema : bool|string|int = 0
+migrationNamespace : string
+migrationPath : string = "@app/migrations"
+migrationTable : string = "{{%migration}}"
+showOnly : bool|string|int = 0
+skipMigrations : array = []
+templateFile : string = "@vendor/bizley/migration/src/views/create_migration.php"
+templateFileUpdate : string = "@vendor/bizley/migration/src/views/update_migration.php"
+useTablePrefix : bool|string|int = 1
#workingPath
+actionCreate(table : string) : int
+actionCreateAll() : int
+actionList() : int
+actionUpdate(table : string) : int
+actionUpdateAll() : int
#addMigrationHistory(version : string, namespace : string = null)
+beforeAction(action : Action) : bool
#createMigrationHistoryTable()
#execute(type : string, table : string, actionMethod : Closure)
+init()
+optionAliases()
+options(actionID)
+preparePathDirectory(path : string) : string
}
class bizley.migration.controllers.MigrationController extends yii.console.Controller
class yii.db.Migration {
+changes : array = []
+db = "db"
+addChange(table : string, method : string, value : mixed)
+addColumn(table, column, type)
+addCommentOnColumn(table, column, comment)
+addCommentOnTable(table, comment)
+addForeignKey(name, table, columns, refTable, refColumns, delete = null, update = null)
+addPrimaryKey(name, table, columns)
+alterColumn(table, column, type)
+batchInsert(table, columns, rows)
+createIndex(name, table, columns, unique = false)
+createTable(table, columns, options = null)
+delete(table, condition = "", params = [])
+down()
+dropColumn(table, column)
+dropCommentFromColumn(table, column)
+dropCommentFromTable(table)
+dropForeignKey(name, table)
+dropIndex(name, table)
+dropPrimaryKey(name, table)
+dropTable(table)
+execute(sql, params = [])
#extractColumn(type : ColumnSchemaBuilder) : array
#extractColumns(columns : array) : array
+fillTypeMapProperties(type : string, keyToDb : array, dbToKey : array) : array
#getDb()
+getKeysMap(type : ColumnSchemaBuilder) : array
+getRawTableName(table : string) : string
+init()
+insert(table, columns)
+renameColumn(table, name, newName)
+renameTable(table, newName)
+safeDown()
+safeUp()
+truncateTable(table)
+up()
+update(table, columns, condition = "", params = [])
}
class yii.db.Migration extends yii.base.Component
class yii.db.Migration implements yii.db.MigrationInterface
class bizley.migration.Extractor {
+className : string
+db : yii.db.Connection
+generalSchema : bool = false
+namespace : string
+tableName : string
+templateFile : string
+templateFileUpdate : string
+useTablePrefix : bool
+view : yii.base.View
#_tableSchema
+checkSchema()
#generateTableName(tableName : string) : string
+getStructure() : array
#getTableColumns() : array
#getTableForeignKeys() : array
#getTablePrimaryKey() : array
+getTableSchema() : yii.db.TableSchema
#getTableUniqueIndexes() : array
+init()
+prepareSchemaAppend(primaryKey : bool, autoIncrement : bool) : string
}
class bizley.migration.Extractor extends yii.base.Component
class bizley.migration.Generator {
+generateForeignKeyName(column : string) : string
+generateMigration() : string
+prepareColumnsDefinitions(compositePk : bool = false) : array
+prepareForeignKeysDefinitions() : array
+renderColumnDefinition(column : yii.db.ColumnSchema, compositePk : bool = false) : string
+renderKeyDefinition(name : string, key : array) : string
+renderPrecision(column : yii.db.ColumnSchema) : string
+renderScale(column : yii.db.ColumnSchema) : string
+renderSize(column : yii.db.ColumnSchema) : string
}
class bizley.migration.Generator extends bizley.migration.Extractor
class bizley.migration.Updater {
+migrationPath : string = "@app/migrations"
+migrationTable : string = "{{%migration}}"
+showOnly : bool = false
+skipMigrations : array = []
-_classMap
-_modifications = []
-_oldSchema = []
-_structure = []
-_tableSubject
#analyseChanges(changes : array) : bool
#compareStructures() : bool
#confirmCompositePrimaryKey(newKeys : array) : bool
+displayValue(value : mixed) : string
#extract(migration : string) : array
+fetchHistory() : array
+findPrimaryKeyString(append : string) : bool
#formatStructure()
+generateMigration() : string
+init()
+isUpdateRequired() : bool
+prepareUpdates() : array
+removePrimaryKeyString(append : string) : string|bool|null
+renderColumnStructure(column : array) : string
+renderSizeStructure(column : array) : mixed
#restoreMigrationClass()
#setDummyMigrationClass()
}
class bizley.migration.Updater extends bizley.migration.Generator
@enduml
|
d495ffb2e37fe8449207e4ad9eb85832ab1e1b3f | e778c50fb529563a0106509e3635959099a00924 | /Conception/Diagrams/plantUml/Class Diagrams/User.puml | 9450db9559de2252c7566a1d2ebea5a00cc9e481 | [] | no_license | joelemenyu20/Sahem | cc07c7172dbaec42199510089f7d372b91a8508f | 1f3ecf0b5fb67d2f74d11f679a6cfad99d9a04ff | refs/heads/master | 2023-05-07T03:17:02.861896 | 2020-07-21T05:45:26 | 2020-07-21T05:45:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,117 | puml | @startuml User
skinparam monochrome true
package Content{
class Post extends Article{
}
class Vote{
upVote : boolean
timeOfVote : Date
Owner : Creator
parent : Article
}
class Fundraiser extends Article{
description: String
category: String
fundGoal : Double
raisedFunds : Double
endDate : Date
funders : Creator[]
rewards: Rewards[]
}
class Comment extends Article{
parent: Article
}
class Article{
_id : String
owner : Creator
type : String
content: String
votes : Vote[]
comments : Comment[]
media : Media[]
createdAt : Date
}
class Media{
_id : String
name : String
}
class Image extends Media{
hash : String
sha256 : String
ext : String
mime : String
size : 0
url : String
provider : String
provider_metadata : {}
related : String
}
class Video extends Media{
url: String
title : String
platform : String
}
class Reward {
image: Image
type: String
name: String
threshold: Double
}
Article o-* Vote
Article *-right-* Comment
Fundraiser o-left- Post
Article o-- Media
}
package Chat {
class MessageBox{
_id: String
conversations: Conversation[]
}
class Conversation{
_id: String
messages: Message[]
participants: Creator[]
}
class Message{
_id: String
sent_time: Date
received_time: Date
read: Date
read_by: Creator[]
delivred_to: Creator[]
owner: Creator
}
}
package User{
class User {
_id: String
username: String
password: String
email: String
isVerified: boolean
}
class Creator{
_id : String
profile_picture: Image
user_id: String
creator_tag: String
personalInformation: PersonalInformation;
paymentInformation: PaymentInformation
Fundraisers : Fundraiser[]
following : Creator[]
followers : Creator[]
socialMedia : ContactMe[]
posts : Post[]
messageBox : MessageBox
fundedFundraisers : Fundraiser[]
}
class Visitor extends User{
}
class Location{
country : Country
state : State
city : City
line1 : String
line2 : String
zipCode : String
longitude : Double
latitude : Double
}
class SocialMedia{
type: String
tag: String
}
class PersonalInformation{
first_name: String
last_name: String
bio:String
birth_date: Date
address: Location
}
}
MessageBox *--* Creator
Article *--* Creator
Creator *--* Location
Creator *-- PersonalInformation
Vote *---* Creator
Creator o-- User
MessageBox *-down- Conversation
Message *-up-* Conversation
@enduml
|
9441700b55ef3fd77e3aaa195bcf8dcc28c25b08 | 79d0f1f042170b44fed8cdf55f4501f95f29f47d | /docs/diagrams/InternshipDiaryAndModelManagerPropertyChangeClassDiagram.puml | 6a8667aedd83e949657f6fa29d98b4b23857d6b0 | [
"MIT"
] | permissive | gerhean/main | c8a46890831953c424e5c11cfe4a548358120a89 | 3df0cb5726d03c0f60b3a93de91aedef0fce96c4 | refs/heads/master | 2021-01-06T23:45:57.520632 | 2020-04-11T08:43:36 | 2020-04-11T08:43:36 | 241,516,262 | 0 | 0 | NOASSERTION | 2020-02-25T09:30:45 | 2020-02-19T02:39:54 | Java | UTF-8 | PlantUML | false | false | 3,517 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
'package Model <<Rectangle>> {
' class InternshipDiary
' class ModelManager
'}
'
'package UI <<Rectangle>> {
' class StatisticsWindow
'}
note "PropertyChangeSupport manages a list of listeners" as manageListeners
PropertyChangeSupport .up[hidden]. manageListeners
PropertyChangeSupport .up. manageListeners
note "ModelManager observes (listens to)\ndisplayedInternships attribute\nof InternshipDiary" as modelManagerObserves
modelManagerObserves .up[hidden]. ModelManager
modelManagerObserves .up. ModelManager
note "StatisticsWindow observes (listens to)\nfilteredInternshipApplications attribute\nof ModelManager" as statisticsWindowObserves
statisticsWindowObserves .up[hidden]. StatisticsWindow
statisticsWindowObserves .up. StatisticsWindow
note "Notice that there is no coupling between the\n observables and observers" as N1
Class InternshipDiary {
- displayedInternships: \nUniqueInternshipApplicationList
' - changes: PropertyChangeSupport
' + addPropertyChangeListener(ListenerPropertyType propertyType, \nPropertyChangeListener l): void
' + firePropertyChange(ListenerPropertyType propertyType, \nObject newValue): void
}
Class ModelManager implements PropertyChangeListener {
- filteredInternshipApplications: \nFilteredList<InternshipApplication>
' - changes: PropertyChangeSupport
' + addPropertyChangeListener(ListenerPropertyType propertyType, \nPropertyChangeListener l): void
' + firePropertyChange(ListenerPropertyType propertyType, Object newValue): void
+ propertyChange(PropertyChangeEvent e): void
' - refreshFilteredInternshipApplications(Object newInternshipApplications)
' - fireAllPropertyChanges(): void
}
Class StatisticsWindow implements PropertyChangeListener {
- internshipApplicationList: \nObservableList<InternshipApplication>
+ propertyChange(PropertyChangeEvent e): void
}
class PropertyChangeListener <<interface>> {
propertyChange(PropertyChangeEvent e): void
}
class PropertyChangeSupport {
+ addPropertyChangeListener(String propertyName, PropertyChangeListener listener)
+ firePropertyChange(String propertyName, Object oldValue, Object newValue)
}
InternshipDiary -up-> "1" PropertyChangeSupport
ModelManager -up-> "1" PropertyChangeSupport
PropertyChangeSupport .right.> PropertyChangeListener
'enum ListenerPropertyType <<enumeration>> {
' DISPLAYED_INTERNSHIPS
' FILTERED_INTERNSHIP_APPLICATIONS
' VIEW_TYPE
' COMPARATOR
' PREDICATE
' DISPLAYED_INTERNSHIP_DETAILS
'}
'
'InternshipDiary ..> ListenerPropertyType
'ModelManager ..> ListenerPropertyType
'StatisticsWindow -left- ModelManager: observes\n (listens to) >
'
'ModelManager -left- InternshipDiary: observes\n (listens to) >
' logic.addPropertyChangeListener(FILTERED_INTERNSHIP_APPLICATIONS, internshipApplicationListPanel);
' logic.addPropertyChangeListener(FILTERED_INTERNSHIP_APPLICATIONS, statisticsWindow);
' logic.addPropertyChangeListener(FILTERED_INTERNSHIP_APPLICATIONS, statisticsBarFooter);
' logic.addPropertyChangeListener(COMPARATOR, comparatorDisplayFooter);
' logic.addPropertyChangeListener(PREDICATE, predicateDisplayFooter);
' logic.addPropertyChangeListener(PREDICATE, internshipApplicationDetailSetter);
' logic.addPropertyChangeListener(VIEW_TYPE, viewDisplayFooter);
' logic.addPropertyChangeListener(DISPLAYED_INTERNSHIP_DETAIL, internshipApplicationDetailSetter);
@enduml
|
20f0f36896cf012f95ec9478358502db0d7f382b | ea92b794f64577cf3f9895848ed841a2482a6d1e | /docs/assets/images/ITaskRepository-umlClassDiagram-214.puml | d3af759b1421c8b059c03171e10cf1ebec333d80 | [
"MIT"
] | permissive | dreambo8563/todo-core | a1cdd6e14ec6445dd1dae84d0ba03bf80b1b09da | 96b2af2b5b5c0ba1d1aaa15eba7061c52cafc611 | refs/heads/master | 2022-11-21T11:51:16.649734 | 2020-07-18T17:57:03 | 2020-07-18T17:57:03 | 274,677,442 | 0 | 0 | MIT | 2020-06-28T10:36:09 | 2020-06-24T13:36:10 | TypeScript | UTF-8 | PlantUML | false | false | 387 | puml | @startuml
hide empty methods
hide empty fields
interface "ITaskRepository" {
+createTask(id: string, content: TaskContentType, finishDate: Date | null, owner: ITaskOwner | null) : ITaskItem
}
class "TaskRepository" {
+createTask(id: string, content: TaskContentType, finishDate: Date | null, owner: ITaskOwner | null) : ITaskItem
}
"ITaskRepository" <|.. "TaskRepository"
@enduml |
e54e86dfe0ef9ca151aecc73fce0ed732c251b4b | 880cacbe1934514641649ef669ae72634bde35c8 | /UML/dcStockage.puml | d2a1c8a14f903b31a14a80eb3d2919a18399b4b1 | [] | no_license | Sherif-IT/Zoo | 8a03a0fd6815130d5950d33bf3a709a73a7411ec | 2758d75792350ef265417164bbf2d6c3d022031f | refs/heads/main | 2023-03-11T20:43:25.498971 | 2021-02-16T01:45:40 | 2021-02-16T01:45:40 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 488 | puml | @startuml
interface Dao<T>{
+inserer(T obj)
+lire(int cle):T
+List<T> liretous()
+modifier(int cle,T obj)
+effacer(T obj)
effacer(int cle)
}
class DaoMemoire<T>{
- List<T> lesElts
+ remplir()
}
class DaoFichier<T>
DaoMemoire ..|> Dao
DaoFichier ..|> Dao
DaoJDBC ..|> Dao
DaoJPA ..|> Dao
DaoFactory ..>Dao :> fabrique/instancie une dao pour l'exterieur
class DaoFactory<<singleton>>{
+Dao<Personne> getDao()
}
class Manager{
}
Manager ..> DaoFactory
@enduml
|
9d305bdf962cfa109359e12eccf1d70cb71a2a91 | 8587a9944cf563076bdd6b86e1a0a9f89e2df4e3 | /rpc-framework/rpc-framework.puml | 8a589f452870ecf4cab448e2ab79e0e5c7950bb5 | [] | no_license | ya-ming/rpc | c4eb0bb8ff8c9d386aaad371fdc3afed1049ea2a | 5979e02b2524c6a1fe3c94e8b3ae21a813de778c | refs/heads/master | 2020-04-14T14:01:52.456924 | 2019-01-31T22:37:16 | 2019-01-31T22:37:16 | 163,885,427 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,011 | puml | @startuml
package "Zookeeper" #DDDDDD {
class RegisterCenter
interface IRegisterCenter4Provider {
+ void registerProvider(final List<ProviderService> serviceMetaData)
+ Map<String, List<ProviderService>> getProviderServiceMap()
}
interface IRegisterCenter4Invoker {
+ void initProviderMap(String remoteAppKey, String groupName)
+ Map<String, List<ProviderService>> getServiceMetaDataMap4Consumer()
+ void registerInvoker(final InvokerService invoker)
}
}
package "model" #DDDDDD {
class ProviderService
class InvokerService
class PropertyConfigHelper
class RpcRequest
class RpcResponse
class RpcResponseWrapper {
- BlockingQueue<RpcResponse> responseQueue
- long responseTime
}
RpcResponse <|.. RpcResponseWrapper
}
package "provider" #DDDDDD {
class NettyServer {
+ void start(final int port)
+ void stop()
}
class NettyServerInvokeHandler {
+ void channelReadComplete(ChannelHandlerContext ctx)
+ exceptionCaught(ChannelHandlerContext ctx, Throwable cause)
void channelRead0(ChannelHandlerContext ctx, RpcRequest rpcRequest)
}
}
package "Invoker" #DDDDDD {
class NettyChannelPoolFactory {
+ void initChannelPoolFactory()
+ ArrayBlockingQueue<Channel> acquire(InetSocketAddress socketAddress
+ void release()
+ Channel registerChannel(InetSocketAddress socketAddress)
}
class NettyClientInvokeHandler {
}
class InvokerProxyBeanFactory {
+ Object invoke(Object proxy, Method method, Object[] args)
}
class InvokerResponseHolder {
+ static void initResponseData(String requestUniqueKey)
+ static void putResultValue(RpcResponse response)
+ static RpcResponse getValue(String requestUniqueKey, long timeout)
}
class InvokerServiceCallable {
+ RpcResponse call()
}
}
ProviderService <|.. InvokerProxyBeanFactory
RpcRequest <|.. InvokerProxyBeanFactory
RpcResponse <|.. InvokerProxyBeanFactory
IRegisterCenter4Invoker <|.. InvokerProxyBeanFactory
RegisterCenter <|.. InvokerProxyBeanFactory
ProviderService <|.. NettyChannelPoolFactory
RpcResponse <|.. NettyChannelPoolFactory
NettyDecoderHandler <|.. NettyChannelPoolFactory
NettyEncoderHandler <|.. NettyChannelPoolFactory
NettyClientInvokeHandler <|.. NettyChannelPoolFactory
SimpleChannelInboundHandler <|-- NettyClientInvokeHandler
RpcResponse <|.. InvokerResponseHolder
RpcResponseWrapper <|.. InvokerResponseHolder
RpcRequest <|.. InvokerResponseHolder
RpcResponse <|.. InvokerResponseHolder
class NettyDecoderHandler {
}
class NettyEncoderHandler {
}
RpcRequest <|.. NettyServerInvokeHandler
RpcResponse <|.. NettyServerInvokeHandler
SimpleChannelInboundHandler <|-- NettyServerInvokeHandler
NettyServerInvokeHandler <|.. NettyServer
NettyDecoderHandler <|.. NettyServer
NettyEncoderHandler <|.. NettyServer
@enduml |
8f3fc22c1b0b5f303b6c8d1e3e5671cf6a7a8f9f | 08e814ecfba81316022bd7edeccde1b05708a9c8 | /Additional_Notes/uml/class_diagram.plantuml | 5c8b2675bb1e2db1dcdb460aa9ce8a86a428b67f | [] | no_license | 13hannes11/bachelor_thesis | 42e546bedd94e6d2f6f1175e8364c820c91ed62d | 94e0695b8d61c3eab1f08b68305fc54b52cfc072 | refs/heads/master | 2022-06-20T05:34:46.466579 | 2020-05-10T09:52:20 | 2020-05-10T11:03:36 | 215,818,989 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 8,021 | plantuml | @startuml
skinparam class {
BackgroundColor White
ArrowColor Grey
BorderColor Black
}
skinparam shadowing false
package API {
class ConfigurationAPI {
+ get() : JSON
+ post(configuration : JSON) : JSON
}
class RecommenderAPI {
+ post(preferences : JSON, configuration : JSON) : JSON
}
class ProductStructureAPI {
+ put(productStructure : JSON) : JSON
+ get() : JSON
}
}
"/config/" ()-- ConfigurationAPI
"/recommender/" ()-- RecommenderAPI
"/product_structure/" ()-- ProductStructureAPI
package Manager {
class RecommendationManager {
+ getRecommentdation(strategy : String, preferences : Preferences, current_configuration : Configuration) : Configuration
}
}
package Model{
package ConfigurationModel {
class Configuration {
configuration : List<String>
}
class ConfigurationVariable {
}
Configuration *-- ConfigurationVariable : variables
}
package PreferenceModel {
class Preferences {
+ getAllUserPreferences() : List<UserPreferences>
+ getAllRatingsByCode(code : String) : List<Ratings>
+ getRatingValue(code : String, user : String) : float
}
class UserPreference {
user : String
+ getAllRatings() : List<Rating>
}
class Rating {
code : String
value : float
}
Preferences *-- UserPreference : preferences
UserPreference *-- Rating : ratings
}
package ProductStructure {
class ProductStructureModel {
+ get_list_of_features(self) : List<ProductStructureElementModel>
+ get_list_of_characteristics(self) : List<ProductStructureElementModel>
+ isCharacteristic(code:String) : bool
}
class ProductStructureElementModel {
elementId : String
name : String
}
enum ProductStructureTypeEnum {
CHARACTERISTIC
FEATURE
CLUSTER
VARIABLE
}
ProductStructureModel *-- ProductStructureElementModel
ProductStructureElementModel <-- ProductStructureElementModel:children
ProductStructureElementModel --> ProductStructureTypeEnum:type
}
}
package DAO {
class ConfigurationDAO {
- {static} instance : ConfigurationDAO
+ {static} getInstance() : ConfigurationDAO
+ getAll_as_objects() : List<Configuration>
+ getAll() : JSON
+ add(config : JSON)
+ exists(config : JSON) : bool
}
class ProductStructureDAO {
- {static} instance : ProductStructureDAO
+ {static} getInstance() : ProductStructureDAO
+ get_as_objects() : ProductStructureModel
+ get() : JSON
+ replace(structure : JSON)
- get_highest_id() : Integer
}
}
package Scoring {
package List {
class ListFunction
class ListToListFunction
class ListToValueFunction
class Average
class Product
class ForEachValue
}
package Value {
class ValueToValueFunction
class Threshold
}
package RatingConverter {
class PreferenceToListFunction
class FlatToListConverter
class PerUserToListConverter
class PerFeatureToListConverter
}
class ScoringFunction {
+ calc_score(currentConfiguration : Configuration, preferences : Preferences, toRate : ConfigurationModel) : float
}
class ScoringFunctionFactory{
+ build_scoring_function(params : List<String>) : ScoringFunction
}
ScoringFunctionFactory --> ScoringFunction : builds
PreferenceScoringFunction --> "1" PreferenceToListFunction : preferenceToListFunction
PreferenceScoringFunction --> "0..*" ListToListFunction : listToListFunctions
PreferenceScoringFunction --> "1" ListToValueFunction : listToValueFunction
PreferenceScoringFunction --> "0..*" ValueToValueFunction : valueToValues
ScoringFunction <|-- PreferenceScoringFunction
class PreferenceScoringFunction{
+ calc_score(currentConfiguration : Configuration, preferences : Preferences, toRate : ConfigurationModel) : float
}
ScoringFunction <|-- ConfigurationPenealty
abstract class ConfigurationPenealty{
+ ConfigurationPenealty(product_Structure : ProductStructure)
}
ConfigurationPenealty <|-- RatioConfigurationPenalty
class RatioConfigurationPenalty {
+ calc_score(currentConfiguration : Configuration, preferences : Preferences, toRate : ConfigurationModel) : float
}
ConfigurationPenealty <|-- PreferenceWeightedConfigurationPenalty
ListToValueFunction --* "1" PreferenceWeightedConfigurationPenalty
class PreferenceWeightedConfigurationPenalty {
}
ScoringFunction <|-- ReduceScoringFunction
ReduceScoringFunction *-- "2..*" ScoringFunction
class ReduceScoringFunction{
reduce_operator : Operator
+ ReduceScoringFunction(scoringFunctions : List<ScoringFunction>, reduceOperator : Operator)
+ calc_score(currentConfiguration : Configuration, preferences : Preferences, toRate : ConfigurationModel) : float
}
interface PreferenceToListFunction {
+ convertToList(preferences : Preferences, toRate : Configuration) : List<float>:
}
PreferenceToListFunction <|-- PerFeatureToListConverter
PerFeatureToListConverter --> ListToValueFunction :uses
class PerFeatureToListConverter {
+ PerFeatureToListConverter(listToValueFunction : ListToValueFunction)
+ convertToList(preferences : Preferences, toRate : Configuration) : List<float>:
}
PreferenceToListFunction <|-- PerUserToListConverter
PerUserToListConverter --> ListToValueFunction :uses
class PerUserToListConverter {
+ PerUserToListConverter(listToValueFunction : ListToValueFunction)
+ convertToList(preferences : Preferences, toRate : Configuration) : List<float>:
}
PreferenceToListFunction <|-- FlatToListConverter
class FlatToListConverter {
+ convertToList(preferences : Preferences, toRate : Configuration) : List<float>:
}
interface ListFunction {
}
ListFunction <|-- ListToListFunction
abstract class ListToListFunction {
+ {abstract} applyToList(list : List[float]) : List[float]
}
ListToListFunction <|-- ForEachValue
ForEachValue --> ValueToValueFunction:uses
class ForEachValue {
+ FoEachValue(valueFunction : ValueToValueFunction)
+ applyToList(list : List[float]) : List[float]
}
ListFunction <|-- ListToValueFunction
abstract class ListToValueFunction {
+ {abstract} convertToFloat(list : List<float>) : float
}
ListToValueFunction <|-- Average
class Average {
+ convertToFloat(list : List<float>) : float
}
ListToValueFunction <|-- Product
class Product {
+ convertToFloat(list : List<float>) : float
}
interface ValueToValueFunction{
+ applyToValue(value : float) : float
}
ValueToValueFunction <|-- Threshold
class Threshold {
- threshold : float
+ Threshold(threshold : float)
+ applyToValue(value : float) : float
}
}
RecommendationManager *-- ScoringFunction
ConfigurationAPI --> ConfigurationDAO
ProductStructureAPI --> ProductStructureDAO
RecommenderAPI --> RecommendationManager
RecommendationManager --> ProductStructureDAO
RecommendationManager --> ConfigurationDAO
RecommendationManager --> ScoringFunctionFactory :uses
ConfigurationDAO --> Configuration
ProductStructureDAO --> ProductStructureModel
Scoring --> Model
@enduml |
ba469e6024ec35d6c0074817585d2d814298dd71 | b2eda080b18e12a9491878332430eb3a6ecc454f | /docs/multi-module/multi-module-aware-actions.puml | cc93260e1162f04cc87989f265ddbd23674db60d | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla"
] | permissive | spring-projects-experimental/spring-boot-migrator | 300a3747ffc84b9654a1ee2abe8a7a5f1acf5a87 | e8fcb8d47d898d86fcf24c25e2ed7f5e56cb0bae | refs/heads/main | 2023-08-16T19:43:50.867155 | 2023-08-06T12:16:20 | 2023-08-06T12:16:20 | 460,537,559 | 341 | 77 | Apache-2.0 | 2023-09-14T11:17:46 | 2022-02-17T17:26:36 | Java | UTF-8 | PlantUML | false | false | 713 | puml | @startuml
interface Action {
apply(ProjectContext)
}
class AbstractAction {
}
AbstractAction ..|> Action
class MultiModuleAwareAction {
handler : MultiModuleHandler
}
MultiModuleAwareAction --|> AbstractAction
class MultiModuleHandler {
apply(ProjectContext)
}
MultiModuleAwareAction .> MultiModuleHandler
class AddDependency {
}
class AddDependencyActionConfig {
groupId
artifactId
version
...
}
class AddDependencyToSpringApplicationModules {
}
MultiModuleHandler <|.. AddDependencyToSpringApplicationModules
AddDependencyToSpringApplicationModules .> AddDependencyActionConfig
AddDependency --|> MultiModuleAwareAction
AddDependency ..> AddDependencyActionConfig
@enduml
|
a3297243ae91896226db4d119ced885ad633dec4 | afaba8b7f5d826664155b257db77cf4dbf4b8816 | /oop-pattern/ch07/resources/04-decorator-hasprice.puml | 780d0632d93dadb989de4ffa204abcd631a93dcb | [
"MIT"
] | permissive | appkr/pattern | b40b621e52c9b27be01f2a21f2f605a459ac998f | 1e635f7b79cc4b89d2e75455cb14e1572619eb20 | refs/heads/master | 2022-11-02T01:56:18.654766 | 2022-10-12T08:45:58 | 2022-10-12T08:47:36 | 71,896,898 | 11 | 2 | MIT | 2018-11-10T15:05:11 | 2016-10-25T12:55:03 | PHP | UTF-8 | PlantUML | false | false | 333 | puml | @startuml
skinparam linetype ortho
class App{}
interface HasPrice {
+ getPrice(): int
}
class Product implements HasPrice {}
abstract PriceCalculator implements HasPrice {
- delegate: HasPrice
}
class VatCalculator extends PriceCalculator {}
class PromotionCalculator extends PriceCalculator {}
App -> HasPrice
@enduml
|
78bfe9c620bf57605284d302130043135f6fd319 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedQuoteReference.puml | a98a9c1670a8965f54da26c71ca3fee8b0e27aa1 | [] | 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 | 2,288 | 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 StagedQuoteReference [[StagedQuoteReference.svg]] extends Reference {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
obj: [[StagedQuote.svg StagedQuote]]
}
interface Reference [[Reference.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
}
interface Quote [[Quote.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
key: String
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
quoteRequest: [[QuoteRequestReference.svg QuoteRequestReference]]
stagedQuote: [[StagedQuoteReference.svg StagedQuoteReference]]
customer: [[CustomerReference.svg CustomerReference]]
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
validTo: DateTime
sellerComment: String
buyerComment: String
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
shippingAddress: [[Address.svg Address]]
billingAddress: [[Address.svg Address]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
country: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
itemShippingAddresses: [[Address.svg List<Address>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
custom: [[CustomFields.svg CustomFields]]
quoteState: [[QuoteState.svg QuoteState]]
state: [[StateReference.svg StateReference]]
purchaseOrderNumber: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
}
StagedQuoteReference --> Quote #green;text:green : "stagedQuote"
@enduml
|
c27e94e8e94dbe9a78cca34e1df65ab27c1077b2 | 1f54228bfcefd19f9da2d719e27f10c8764ae204 | /Design-Patterns.playground/Pages/01.Factory-Method.xcplaygroundpage/Resources/factory-method.puml | c6e0c06a77ae69183a0f6323eea499e115df9c08 | [] | no_license | Coder-ZJQ/Design-Patterns | 15fe1cf05e49813fad25ae0e912de6042f31a38e | e69ef36388bc66002ac2f45222eb7bf0fa8188ba | refs/heads/master | 2022-11-14T14:13:40.325821 | 2020-06-29T02:33:42 | 2020-06-29T02:33:42 | 274,322,947 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 517 | puml | @startuml
Product <|.. ConcreteProductA
Product <|.. ConcreteProductB
Creator <|.. ConcreteCreatorA
Creator <|.. ConcreteCreatorB
Product <-- Creator
interface Product << (P, #FF0000) protocol >> {
+doStuff()
}
interface Creator << (P, #FF0000) protocol >> {
+someOperation()
+createProduct() -> Product
}
class ConcreteProductA {
+doStuff()
}
class ConcreteProductB {
+doStuff()
}
class ConcreteCreatorA {
+createProduct() -> Product
}
class ConcreteCreatorB {
+createProduct() -> Product
}
@enduml
|
a760e78b2d7ac78ce271fef0acb5f39585b837cf | a94b71ced31b347a2defd97cf974fbcdf381a9b0 | /LightSlave/uml/LEDController.plantuml | e6b98808885d7258f5c83e4a0fe425ac788710e1 | [] | no_license | Maytastico/ChuChuWakeUp | efa890077d738a9f982b6cde4beec9c32794078c | f5fde142d97f103f5644701e86e46416250ebc3c | refs/heads/master | 2023-04-15T22:24:17.708491 | 2021-02-23T11:25:08 | 2021-02-23T11:25:08 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,311 | plantuml | @startuml
class LedController{
-currentColor:Integer
-saveTime:Timer
-eepromHandler:*EEPROMHandler
-transitionHandler:*TransitionHandler
..
+LedController(eeprom:*EEPROMHandler, transition:*TransitionHandler)
+turnOff()
+turnOn()
+setColorWithTransition(Integer:color, Transition:transition)
--Setter--
+setColor(Integer:color)
+setBrightness(Integer:brightness)
--Getter--
+getcurrentColor():Integer
--save routine--
+loop()
}
enum Transition{
ColorToColor
fadeTransition
}
enum TransitionStates{
STBY
STATE1
STATE2
STATE3
}
enum TransitionMode{
Standard,
Animation
}
class TransitionHandler{
-currentColor:Integer
-targetColor:Integer
-currentBrightness:Integer
-targetBrightness:Integer
..
__constructor__
+TransitionHandler(controller:*LedController)
--transition methods--
+playTransition(targetColor:Integer, Transition:transition)
--state machines--
-colorToColorTransition()
-colorToColorStep()
-fadeTransion()
--routine--
+loop()
}
TransitionHandler "1" <--> "1" LedController
LedController "1" -> "1" EEPROMHandler
Transition <- TransitionHandler
TransitionHandler -> TransitionStates
TransitionHandler -> TransitionMode
@enduml |
364c6f2d373cb73e4c191c9051ec90112e9c1f2b | 186819bc98500f794e563bd3ba5a23073756a2ba | /PSP2/Hospital/src/main/java/com/hospital/Hospital/domainService/hospitalService/hospitalService.plantuml | d6ffb204c9272a6cf12809593f21d233f665ad11 | [] | no_license | macro161/PSP | 0e53943e4f8568b2c4b788524dc9e12f276d5c9e | 7e5e094bbe42af30006fb28d541229dea4efb610 | refs/heads/master | 2020-03-30T08:04:17.541705 | 2018-12-07T20:24:18 | 2018-12-07T20:24:18 | 150,986,741 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 493 | plantuml | @startuml
title __HOSPITALSERVICE's Class Diagram__\n
package com.hospital.Hospital {
package com.hospital.Hospital.domainService.hospitalService {
interface HospitalService {
{abstract} + treatPatient()
{abstract} + calculateMortality()
}
}
}
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
|
c5d4556aac6c304fafe65756a9aa51176bf81f88 | 55261e1e9a841f514598d8fb0fbe95a7493460e3 | /class/classes/modules/blocks/api.puml | f985ad0143544936f3f6c1340835e205eaca34d4 | [] | no_license | LucasIsasmendi/lisk-core-plantuml | ac01094fd56590b361ab8992b52f0cfc3175aa60 | e0941f6e800dc16a9dc0f8367304149fbf2200e1 | refs/heads/master | 2021-01-21T11:53:42.861882 | 2017-05-24T12:56:58 | 2017-05-24T12:56:58 | 91,758,697 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 653 | puml | @startuml
class API < modules > {
- self
- blockReward: new BlockReward()
- __private: {}
.. library ..
- logger
- db
- schema
- dbSequence
- logic.block
.. modules ..
- system
- blocks
-- Methods --
+ API (logger, db, block, schema,
dbSequence)
+ getBlock (id, cb)
+ getBlocks (req, cb)
+ getBroadhash (req, cb)
+ getEpoch (req, cb)
+ getHeight (req, cb)
+ getFee (req, cb)
+ getFees (req, cb)
+ getNethash (req, cb)
+ getMilestone (req, cb)
+ getReward (req, cb)
+ getSupply (req, cb)
+ getStatus (req, cb)
+ onBind (scope)
.. __private ..
- getById (id, cb)
- list (filter, cb)
}
@enduml
|
24424564682b830bade68e413f05937981504f9a | abeb8492fbf21cbeec8cef606a44a64c2d6a1cd0 | /docs/uml/structure.puml | 99ee4bd22a0a1bf08f8fb5fea0f40ba67a221c2b | [] | no_license | LarexSetch/operationGenerator | c0b165fa655735ae844164eac9e0bfb6698219bd | 5b546a820a29e3c3223c6b72664c88ffeae19149 | refs/heads/master | 2022-07-13T18:52:17.229084 | 2020-05-20T10:36:37 | 2020-05-20T10:36:37 | 259,471,679 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 450 | puml | @startuml
class Operation {
Component component;
String interfaceName;
String requestClass;
String responseClass;
}
class Component {
String packageName;
String directory;
}
interface OperationRenderer {
String render(Operation operation);
}
interface OperationCreator {
void create(Operation operation);
}
interface ComponentCreator {
void create(Component component, List<Operation> operations);
}
@enduml
|
675d9af313916ca82e05180c2685cf954d325e56 | d08d0c554bb195cb7a929e1be9e57074aee70910 | /class-diagrams/nio-http-server.puml | 662bf204581ff4a53cc08f17037a4e372e55ebc8 | [] | no_license | ya-ming/nio-http-server | 51c6a2604a7ea45b7f56163f30a415fadc68c882 | 73917c3515b20fd090606d00f9532b70efb15f55 | refs/heads/master | 2020-04-02T06:34:51.442781 | 2018-11-06T04:42:22 | 2018-11-06T04:42:22 | 154,157,439 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 597 | puml | @startuml
class HTTPServer {
+ void accept(Selector selector, SelectionKey key)
+ void read(SelectionKey key)
+ void write(SelectionKey key)
+ void wakeupSelector()
}
class Request {
}
class Response {
}
class RequestHandler {
+ Void call()
}
class Servlet {
+ void service(Request req, Response rep)
}
interface Callable
Executors <|-. HTTPServer
ServerSocketChannel <|-. HTTPServer
Selector <|-. HTTPServer
RequestHandler <|-. HTTPServer
Callable <|-- RequestHandler
Servlet <|-. RequestHandler
Request <|-. RequestHandler
Response <|-. RequestHandler
@enduml |
4eaf571863bf24e5886d45729812d5747f6fb57a | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Manipulators/Sequence/RectangleSelect.puml | 7ba62507b3d9d116fcbefe4c7ba801abfad6d4e7 | [] | 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 | 79 | puml | @startuml
class RectangleSelect {
}
RectangleTool <|-- RectangleSelect
@enduml
|
4ca8aec0fc177a65b93a5b707dde536fc9ddbf40 | 0a0e986dd1f62801857242e14aac97cb9a0108c4 | /Proj/docs/uml/spawner_observer.puml | 1b4de46b556b4e053651931d7c92c966cbe12cd7 | [] | no_license | JoaoCostaIFG/LPOO | 6bca97bcf5d65ca79b1d83ef322a70b9c14aa5a3 | 0db8aca4897f50d202ed695750c8ddf10ff100b7 | refs/heads/master | 2021-02-07T04:39:57.611429 | 2020-10-19T09:52:19 | 2020-10-19T09:52:19 | 305,335,228 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 607 | puml | @startuml
hide empty members
skinparam classAttributeIconSize 0
skinparam linetype polyline
skinparam shadowing false
interface Observable<T> {
+ addObserver(Observer<T>) : void
+ removeObserver(Observer<T>) : void
+ notifyObservers(T subject) : void
}
interface Observer<T> {
+ changed(T observable) : void
}
class Room {
+ addElement(Element e) : void
+ removeDeadEnemies(Element e) : void
}
class Spawner {}
class GameController {}
Room "Room".up.^ Observable
Room o-up-> Observer
Spawner "Room".up.^ Observer
GameController -up-> Spawner
GameController -up-> Room
@enduml
|
538d8e7199c32e8ee000a71ce65c438606679a47 | d724c7a2db615c0f524bb5e4d307ddd449bad460 | /a3-loops-strings-GraydonHall42/SecretWordUML.puml | d27d7e088f52ba1e69ee1f74deabdb0af60d9113 | [] | no_license | GraydonHall42/Java-and-OOP-University-of-Calgary-ENSF-593 | ffddcbc3cdeb727ea5ec5ac9e00f69c6499c1573 | 00efaa4f5f5632333761e6a1fd3dda63d42484f4 | refs/heads/main | 2023-07-15T16:05:26.358633 | 2021-08-29T00:25:10 | 2021-08-29T00:25:10 | 400,917,087 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 751 | puml | @startuml
class SecretWord [[java:SecretWord]] {
-displayedWord: String
-secretWord: String
+SecretWord()
+replaceChars(s: String, c: char): String
+replaceChars(s1: String, s2: String, ch: char): void
+getDisplayedWord(): String
+makeGuess(charAt: char): boolean
+getSecretWord(): String
}
class SecretWordGUI [[java:SecretWordGUI]] {
-inputField: JTextField
-display: JTextArea
-inputString: String
-secret: SecretWord
+SecretWordGUI(title: String)
+actionPerformed(evt: ActionEvent): void
+{static} main(args: String[]): void
}
class SecretWord [[java:SecretWord]] {
}
class JFrame {
}
interface ActionListener {
}
ActionListener <|.. SecretWordGUI
JFrame <|-- SecretWordGUI
SecretWordGUI *-- "1" SecretWord : contains
@enduml |
4984f2be0efd88378bfcf15dfa0ab884f4000d8c | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Editor/TMP_SerializedPropertyHolder.puml | 5817a899b423fb4490dbceae2171d7b82b468625 | [] | 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 | 315 | puml | @startuml
class TMP_SerializedPropertyHolder {
+ firstCharacter : uint
+ secondCharacter : uint
}
ScriptableObject <|-- TMP_SerializedPropertyHolder
TMP_SerializedPropertyHolder --> "fontAsset" TMP_FontAsset
TMP_SerializedPropertyHolder o-> "glyphPairAdjustmentRecord" TMP_GlyphPairAdjustmentRecord
@enduml
|
2f8d42f266bec7d7fdd4751c90649662c93282d4 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/volumediscount@0.1.0.puml | 486dca6ed7bdad2cb12091ce77f5d1eba0b264f1 | [
"Apache-2.0",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | accordproject/cicero-template-library | 737586850933daac2fbff2ff8b2d60dd50526b80 | 35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea | refs/heads/main | 2023-04-27T01:07:05.932361 | 2022-08-26T13:02:59 | 2022-08-26T13:02:59 | 109,224,687 | 77 | 149 | Apache-2.0 | 2023-04-20T21:43:00 | 2017-11-02T06:11:37 | HTML | UTF-8 | PlantUML | false | false | 741 | puml | @startuml
class org.accordproject.volumediscount.VolumeDiscount << (A,green) >> {
+ Double firstVolume
+ Double secondVolume
+ Double firstRate
+ Double secondRate
+ Double thirdRate
}
org.accordproject.volumediscount.VolumeDiscount --|> org.accordproject.cicero.contract.AccordClause
class org.accordproject.volumediscount.VolumeDiscountRequest << (T,yellow) >> {
+ Double netAnnualChargeVolume
}
org.accordproject.volumediscount.VolumeDiscountRequest --|> org.hyperledger.composer.system.Transaction
class org.accordproject.volumediscount.VolumeDiscountResponse << (T,yellow) >> {
+ Double discountRate
}
org.accordproject.volumediscount.VolumeDiscountResponse --|> org.hyperledger.composer.system.Transaction
@enduml
|
dc70945a9f1eac44130fb3d2fa5893091d0f57cc | 2b2acc58e16343190688ed460b26386980bb2b20 | /Documents/UC13/MD.puml | 4d321e306ab2000d9d8830c399b135d6dd5b7e9e | [] | no_license | 1190452/LAPR3 | 0ca11285a3e85f93b5d687a0e10caef6f62a9577 | e641d35f6524fde900beb3683937fc697af3b325 | refs/heads/master | 2023-05-11T07:45:02.636516 | 2021-01-31T17:06:37 | 2021-01-31T17:06:37 | 372,571,407 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 457 | puml | @startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Client {
-String name
-String email
-String nif
-String password
-int credits
}
class Cart {
-String id
-int productQuantity
-double finalPrice
-double finalWeight
}
class Product {
-String id
-String name
-String description
-double price
-double weight
}
Client "1" -- "1.." Cart: Has >
Cart "1" -- "0.." Product: Has >
@enduml |
a558eaacb98239ee15127c776c3b6c028d1281a1 | 30ea5699548c830842d952e7bc016fdeef0ce32d | /wsbp/uml/E01_fig01a.puml | c91a27ecf4fcd3c720ca5e7cf923d369b6612b6f | [] | no_license | gishi-yama/wicket_spring-boot_practice | ca494f8a4d244b9746d0d6489364eecbcb9ebddd | 006540853a4ba780f4e34a0287df89ab8e4c461d | refs/heads/master | 2023-04-09T17:58:23.712754 | 2023-03-17T12:13:40 | 2023-03-17T12:13:40 | 159,369,214 | 5 | 17 | null | 2022-11-17T04:58:01 | 2018-11-27T16:53:14 | Java | UTF-8 | PlantUML | false | false | 452 | puml | @startuml
skinparam classAttributeIconSize 0
skinparam monochrome true
skinparam classFontSize 24
skinparam classFontName BIZ-UDPGothic-B
skinparam classAttributeFontSize 24
skinparam classAttributeFontName BIZ-UDPGothic-B
skinparam shadowing false
skinparam arrowFontSize 24
skinparam arrowFontName BIZ-UDPGothic-B
hide circle
class AuthUser {
- userName : 文字列
- userPass : 文字列
----
フィールドを使ったメソッド
...
}
@enduml |
fd7b511a5bd07253ee8c63ed5d386dd63b9bdf87 | 695505adbd8f82f3ec54191717bbe2ff79fb3885 | /exercise45/docs/Class Diagram.puml | abb12a20efe182ec5e8ce1b3805811004c394cd4 | [] | no_license | BlakeLoch/lochmandy-a04 | 7abe971225188bdb2ab95bd42e0c38362e1a2839 | 0764ec66d475a68a406870ff0707aa0be76848ad | refs/heads/main | 2023-09-03T15:48:58.583547 | 2021-10-28T20:08:20 | 2021-10-28T20:08:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 353 | puml | @startuml
class InputClass {
+readFile(String inputFile)
+getOutputFileNameFromUser()
}
class CalcClass {
+replaceUtilizeWithUse(String data)
}
class OutputClass {
+writeToFile(String outputFile, String outputString)
}
class Solution45 {
+main(String[])
}
Solution45 -- InputClass
Solution45 -- CalcClass
Solution45 -- OutputClass
@enduml |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.