blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
227
content_id
stringlengths
40
40
detected_licenses
listlengths
0
28
license_type
stringclasses
2 values
repo_name
stringlengths
6
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
61 values
visit_date
timestamp[us]date
2015-08-14 10:26:58
2023-09-06 07:53:38
revision_date
timestamp[us]date
2011-01-31 21:28:29
2023-09-05 14:54:58
committer_date
timestamp[us]date
2011-01-31 21:28:29
2023-09-05 14:54:58
github_id
int64
206k
631M
star_events_count
int64
0
108k
fork_events_count
int64
0
34.4k
gha_license_id
stringclasses
13 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
79 values
src_encoding
stringclasses
12 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
8
1.29M
extension
stringclasses
17 values
code
stringlengths
8
1.29M
non_uml
bool
1 class
uml
bool
1 class
has_non_ascii
bool
2 classes
has_non_latin
bool
1 class
uml_subtype
stringclasses
10 values
020f5f14a82d15d17a1e36232565c0ade1a9258a
63ff2394d54fd385175a43f1ac5580d1c11f5b5a
/Diagrams/StudentManageAccount.puml
c1b8831f20811f6bff16868c151ee4112f45e62f
[]
no_license
platonv/internhubweb
811ebc5399c09c98a45d5f1a806b213ae27fe767
17b2a7aed9a34ec51b3a29724172a69390dd13e0
refs/heads/master
2021-03-30T17:06:39.631521
2017-06-06T18:10:37
2017-06-06T18:10:37
88,872,456
0
0
null
null
null
null
UTF-8
PlantUML
false
false
382
puml
@startuml Student->(Account):Manage (Account)..>(Update CV): <<include>> (Account) University -->(Create account) (Create account)-->(Create account for students) (Account)--(Create account for students) (Create account for students)..>(Generate CV):<<include>> (Account)..>(Set field of interest):<<include>> (Set field of interest)..>(Update field of interest):<<extends>> @enduml
false
true
false
false
sequence
3875cd4e2f3a7ab9cc595d71dc01a4b5dd933928
6e29d893e7deebb9339dd5515195d7e510aba402
/PDS/upskill_java1_g1-main/v2/UC6_Definir_Tarefa/Diagrama de Classes-UC6 - Definir tarefa.plantuml
606c162c8d2ff8e3c168b673938a9a805dcffc97
[]
no_license
blestonbandeiraUPSKILL/upskill_java1_labprg_grupo2
3a257326461907780a503165042584c5b7a8e535
95c31675e9008e961f00b177d6814046a72b577c
refs/heads/main
2023-03-18T20:54:48.147868
2021-03-21T20:10:16
2021-03-21T20:10:16
331,623,577
0
2
null
2021-03-21T20:10:17
2021-01-21T12:38:14
Java
UTF-8
PlantUML
false
false
569
plantuml
@startuml left to right direction Class Plataforma <<Singleton>> { designacao -- validaTarefa() addTarefa() } Class Colaborador{ String: nome String: funcao String: contactoTelefonico String: email String: password } Class UC6_UI{ novaTarefa() registarTarefa() } Class UC6_CTRL{ tarefa=novaTarefa() criar() registarTarefa() } Class Tarefa{ -designacao -descricaoInformal -descricaoTecnica -prazo -custo -categTarefa } Plataforma --o Colaborador Colaborador --> UC6_UI UC6_UI --> UC6_CTRL UC6_CTRL --> Tarefa UC6_CTRL --> Plataforma @enduml
false
true
false
false
class
755a91089651879739b2fd6bfef2fce96b455c4c
8c59fbc94a2ba7fa9a12c10991fe334cda0df128
/metrics/coverage_converter/docs/diagrams/coverage_class_diagram.puml
efa852b3c5b35fd2a4968c27908996185a6fd076
[ "Apache-2.0" ]
permissive
solid-vovabeloded/flank-dashboard
7e952fa1399585d3f15cae2ed2cab435fb82df3f
15dae0c40823cc12886a1bb0c087442c0697ac89
refs/heads/master
2023-07-11T19:54:58.430004
2021-08-06T10:29:26
2021-08-06T10:29:26
389,593,827
0
0
Apache-2.0
2021-07-26T10:33:52
2021-07-26T10:25:59
null
UTF-8
PlantUML
false
false
3,101
puml
@startuml coverage_class_diagram package common { package arguments { package model { class CoverageConverterArguments { inputFilePath : String outputFilePath : String } } package parser { class CoverageConverterArgumentsParser<CoverageConverterArguments> { void configureArguments(ArgParser) CoverageConverterArguments parseArgResults(ArgResults) } abstract ArgumentsParser<T extends CoverageConverterArguments> { void configureArguments(ArgParser) {abstract} T parseArgResults(ArgResults) } } } package command { abstract CoverageConverterCommand<T exetends CoverageConverterArguments> { argumentsParser: ArgumentsParser<T> {abstract} converter : CoverageConverter<T, R> {abstract} name: String {abstract} description: String void run() } } package converter { interface CoverageConverter<T extends CoverageConverterArguments, R> { {abstract} CoverageData convert(R, T) {abstract} R parse(File) } } package runner { class CoverageConverterRunner { argParser : CoverageConverterArgumentsParser } } package exceptions { class CoverageConverterException{ code: CoverageConverterErrorCode {method} String message String toString() } package error_code { enum CoverageConverterErrorCode { noSuchFile fileIsEmpty invalidFileFormat } } } } package specific_format { package converter as specific_format.converter { class SpecificFormatCoverageConverter<SpecificCoverageArguments, SpecificFormatReport> { CoverageData convert(SpecificFormatReport, SpecificCoverageArguments) SpecificFormatReport parse(File) } } package command as specific_format.command { class SpecificFormatCoverageConverterCommand { converter : SpecificFormatCoverageConverter name: String description: String } } } CoverageConverterRunner -right-> SpecificFormatCoverageConverterCommand : uses CoverageConverterArgumentsParser -left-> CoverageConverterArguments : provides CoverageConverterArgumentsParser ..|> ArgumentsParser SpecificFormatCoverageConverterCommand --> SpecificFormatCoverageConverter : uses SpecificFormatCoverageConverterCommand --|> CoverageConverterCommand SpecificFormatCoverageConverter .down.|> CoverageConverter CoverageConverterCommand --> CoverageConverterArguments : uses CoverageConverterCommand -left-> CoverageConverter : uses CoverageConverterCommand -up-> CoverageConverterException : throws CoverageConverterCommand --> CoverageConverterArgumentsParser : uses CoverageConverterException --> CoverageConverterErrorCode : uses @enduml
false
true
false
false
sequence
9910a7ebcfee32411b29763b6cbee334c4638619
dceede6e0ffcfdf6fbb800429d0233eb108fb71b
/src/main/java/DesignPatterns/BehavioralType/Template/Template.puml
a979ef97665b879e323b4eca02e73ccab29bda97
[]
no_license
GitHub-yuteng/LearningNotes
543ccda372e0d4498eba9245848059f64b3966c9
7a37bc8a33190526fa0a6cca5376651ac434f8c4
refs/heads/master
2022-12-22T14:05:05.590359
2022-04-27T00:36:30
2022-04-27T00:36:30
200,153,900
2
0
null
2022-12-16T04:25:16
2019-08-02T02:53:39
Java
UTF-8
PlantUML
false
false
345
puml
@startuml abstract class SoyaMilk { final void make() void select() abstract void addCondiments(); void beat() } class RedBeanSoyaMilk extends SoyaMilk { void addCondiments() } class PeanutSoyaMilk extends SoyaMilk { void addCondiments() } class Client { } RedBeanSoyaMilk <.. Client PeanutSoyaMilk <.. Client @enduml
false
true
false
false
class
342da0635da9e4d2c88aafa97ebc75b5b9de149a
16c85e114821ddcde7225efdbd56f6b89ea6e1ca
/app/src/main/java/com/example/azhar/lppm/uml/class.puml
2bcea383277621c22b4307b564aeba03ee3aa79b
[]
no_license
azharsiddiq36/LppmAndroid
fbd9dfb3bfeb4152e92fd1a421b91653c1d6004d
b9398634a885142d64bd3d6c8cb6ddd2a4407408
refs/heads/master
2020-04-09T07:13:35.914438
2019-06-12T10:37:25
2019-06-12T10:37:25
160,146,232
1
0
null
null
null
null
UTF-8
PlantUML
false
false
12,965
puml
@startuml skinparam classAttributeIconSize 0 class Fgd{ -Integer:fgdId -String:fgdNarNam -String:fgdModNam -List<String>:fgdPesNam -String:fgdJud -String:fgdJen -String:fgdProv -String:fgdKec -String:fgdKel -String:fgdKot -String:fgdTglSurat -String:fgdTglAcc {method}+getFgdId():Integer {method}+getFgdPesNam():String {method}+getFgdJud():String {method}+getFgdTgl():String {method}+getFgdProv():String {method}+getFgdKot():String {method}+getFgdKec():String {method}+getFgdKel():String {method}+getFgdPesNam():List<String> {method}+getFgdTglSurat():String {method}+getFgdTglAcc():String } class Perjalanan{ -Integer:stpId -String:stpKetNam -String:stpNikNik -String:stpKetJab -String:stpKetPang -List<String>:stpAngNam -List<String>:stpAngJab -List<String>:stpAngPang -String:stpJud -String:stpKlu -String:stpTglKeg -String:stpTglKlu -String:stpProv -String:stpKec -String:stpKel -String:stpKot -String:stpJen -String:stpNom -String:stpInsTuj -String:sttTglSratKel -String:sttTglAcc {method}+getStpId():Integer {method}+getStpKetNam():String {method}+getStpKetJab():String {method}+getStpKetPang():String {method}+getStpAngNam():List<String> {method}+getStpAngJab():List<String> {method}+getStpAngPang():List<String> {method}+getStpJud():String {method}+getStpTgl():String {method}+getStpProv():String {method}+getStpKot():String {method}+getStpKec():String {method}+getStpKel():String {method}+getStpJen():String {method}+getStpTglSratKel():String {method}+getStpTglAcc():String } class Pengabdian{ -Integer:sipId -String:sipKetNam -List<String>:sipAngNam -String:sipJud -String:sipTglKeg -String:sipProv -String:sipKec -String:sipKel -String:sipKot -String:sipInsTuj -String:sitTglSratKel -String:sitTglAcc {method}+getSipId():Integer {method}+getSipKetNam():String {method}+getSipJud():String {method}+getSipTgl():String {method}+getSipProv():String {method}+getSipKot():String {method}+getSipKec():String {method}+getSipKel():String {method}+getSipAngNam():List<String> {method}+getSipInsTuj():String {method}+getSipTglSratKel():String {method}+getSipTglAcc():String } class Pengguna{ -String:id_pengguna -String:nip -String:nama -String:email -String:password -String:hak_akses -String:foto -String:konfirmasi_email -String:isiSurat -String:tahun {method}+getIdPengguna():String {method}+getNip():String {method}+getNama():String {method}+getEmail():String {method}+getPassword():String {method}+getHak_akses():String {method}+getFoto():String {method}+getKonfirmasi_email():String {method}+getIsiSurat():String {method}+getTahun():String } class Penelitian{ -Integer:sitId -String:sitEml -String:sitKetNam -List<String>:sitAngNam -String:sitJud -String:sitTglKeg -String:sitProv -String:sitKec -String:sitKel -String:sitKot -String:sitInsTuj -String:sitNomKtp -String:sitFotKtp -String:sitNom -String:sitTglSratKel -String:sitTglAcc {method}+getSitId():Integer {method}+getSitEml():String {method}+getSitKetNam():String {method}+getSitAngNam():List<String> {method}+getSitJud():String {method}+getSitTgl():String {method}+getSitProv():String {method}+getSitKot():String {method}+getSitKec():String {method}+getSitKel():String {method}+getSitInsTuj():String {method}+getSitNomKtp():String {method}+getSitNom():String {method}+getSitTglSratKel():String {method}+getSitTglAcc():String } class SessionManager{ -SharedPreferences:sharedPreferences -SharedPreferences.Editor:editor -Context:context -Int:MODE_PRIVATE {static}+String:KEY_ID {static}+String:KEY_NIP {static}+String:KEY_NAMA {static}+String:KEY_EMAIL {static}+String:KEY_FOTO {static}+String:KEY_HAK_AKSES {static}+String:KEY_TOKEN {static}+String:KEY_KONFIRMASI_EMAIL {static}+String:LOGIN_STATUS {static}+String:SHARE_NAME {method}+SessionManager(Context:context) {method}+saveLogin():void {method}+getDetaislLoggin():HashMap {method}+checkLogin():void {method}+logout():void {method}+isLogin():boolean } class FormFgdActivity{ ~EditText:etModerator ~EditText:etAnggota ~EditText:etNarasumber ~EditText:etJudul ~TextView:tvTanggal ~Button:btTanggal ~RadioButton:rbPenelitian ~RadioButton:rbPengabdian ~LinearLayout:lyDinamic ~AutoCompleteTextView:actvProvinsi ~AutoCompleteTextView:actvKabupaten ~AutoCompleteTextView:actvKecamatan ~AutoCompleteTextView:actvDesa ~AutoCompleteTextView:actvAnggota ~Button:btnSimpan ~Button:btnAdd ~SessionManager:sessionManager ~LppmInterface:lppmInterface ~DatePickerDialog:datePickerDialog ~SimpleDateFormat:simpleDateFormat -Int:length ~ProvInterface:provInterface ~List<SemuaProvinsi>:provinsiArrayList ~List<SemuaProvinsi>:kabupatenArrayList ~List<SemuaProvinsi>:kecamatanArrayList ~List<SemuaProvinsi>:desaArrayList {static}~HashMap<String,String>:map {method}#oncreate(Bundle:savedIntanceState):void {method}+tambahAnggota(String:s):void {method}+checkForm(String:text):void {method}+loadProv():void {method}+loadKabupaten(String:id):void {method}+loadKecamatan(String:id):void {method}+loadDesa(String:id):void {method}+insertAnggota(String:s):void {method}{static}-sizeData(int:a):int {method}+showDateDialog({static}int:a):void {method}{static}+getJenis(String:jenis) } class FormPenelitianActivity{ ~EditText:etEmail ~EditText:etKetua ~EditText:etAnggota ~EditText:etJudul ~EditText:etInstansi ~EditText:etKtp ~EditText:etWhatsApp ~Button:btnUpload ~TextView:tvTanggal ~Button:btTanggal ~Button:btTanggalSelesai ~Button:btTanggalSelesai ~LinearLayout:lyDinamic ~AutoCompleteTextView:actvProvinsi ~AutoCompleteTextView:actvKabupaten ~AutoCompleteTextView:actvKecamatan ~AutoCompleteTextView:actvDesa ~AutoCompleteTextView:actvAnggota ~Button:btnSimpan ~Button:btnAdd ~SessionManager:sessionManager ~LppmInterface:lppmInterface ~DatePickerDialog:datePickerDialog ~SimpleDateFormat:simpleDateFormat -Int:length ~ProvInterface:provInterface ~List<SemuaProvinsi>:provinsiArrayList ~List<SemuaProvinsi>:kabupatenArrayList ~List<SemuaProvinsi>:kecamatanArrayList ~List<SemuaProvinsi>:desaArrayList {static}~HashMap<String,String>:map {method}#oncreate(Bundle:savedIntanceState):void {method}+tambahAnggota(String:s):void {method}+checkForm(String:text):void {method}+loadProv():void {method}+loadKabupaten(String:id):void {method}+loadKecamatan(String:id):void {method}+loadDesa(String:id):void {method}+insertAnggota(String:s):void {method}{static}-sizeData(int:a):int {method}+showDateDialog({static}int:a):void } class FormPengabdianActivity{ ~EditText:etKetua ~EditText:etAnggota ~EditText:etJudul ~EditText:etInstansi ~TextView:tvTanggal ~Button:btTanggal ~Button:btTanggalSelesai ~Button:btTanggalSelesai ~LinearLayout:lyDinamic ~AutoCompleteTextView:actvProvinsi ~AutoCompleteTextView:actvKabupaten ~AutoCompleteTextView:actvKecamatan ~AutoCompleteTextView:actvDesa ~AutoCompleteTextView:actvAnggota ~Button:btnSimpan ~Button:btnAdd ~SessionManager:sessionManager ~LppmInterface:lppmInterface ~DatePickerDialog:datePickerDialog ~SimpleDateFormat:simpleDateFormat -Int:length ~ProvInterface:provInterface ~List<SemuaProvinsi>:provinsiArrayList ~List<SemuaProvinsi>:kabupatenArrayList ~List<SemuaProvinsi>:kecamatanArrayList ~List<SemuaProvinsi>:desaArrayList {static}~HashMap<String,String>:map {method}#oncreate(Bundle:savedIntanceState):void {method}+tambahAnggota(String:s):void {method}+checkForm(String:text):void {method}+loadProv():void {method}+loadKabupaten(String:id):void {method}+loadKecamatan(String:id):void {method}+loadDesa(String:id):void {method}+insertAnggota(String:s):void {method}{static}-sizeData(int:a):int {method}+showDateDialog({static}int:a):void } class FormPerjalananActivity{ ~EditText:etKetua ~Spinner:spJabatan ~Spinner:spGolongan ~EditText:etAnggota ~EditText:etKluster ~EditText:etNarasumber ~EditText:etJudul ~TextView:tvTanggal ~TextView:tvTanggalKluster ~TextView:tvTanggalSelesai ~Button:btTanggal ~RadioButton:rbPenelitian ~RadioButton:rbPengabdian ~LinearLayout:lyDinamic ~AutoCompleteTextView:actvProvinsi ~AutoCompleteTextView:actvKabupaten ~AutoCompleteTextView:actvKecamatan ~AutoCompleteTextView:actvDesa ~AutoCompleteTextView:actvAnggota ~Button:btnSimpan ~Button:btnAdd ~SessionManager:sessionManager ~LppmInterface:lppmInterface ~DatePickerDialog:datePickerDialog ~SimpleDateFormat:simpleDateFormat -Int:length ~ProvInterface:provInterface ~List<SemuaProvinsi>:provinsiArrayList ~List<SemuaProvinsi>:kabupatenArrayList ~List<SemuaProvinsi>:kecamatanArrayList ~List<SemuaProvinsi>:desaArrayList {static}~HashMap<String,String>:map {method}#oncreate(Bundle:savedIntanceState):void {method}+tambahAnggota(String:s):void {method}+checkForm(String:text):void {method}+loadProv():void {method}+loadKabupaten(String:id):void {method}+loadKecamatan(String:id):void {method}+loadDesa(String:id):void {method}+insertAnggota(String:s):void {method}{static}-sizeData(int:a):int {method}+showDateDialog({static}int:a):void {method}{static}+getJenis(String:jenis) {method}+setJab(String:s):void } class SettingActivity{ ~TextView:textView ~ImageView:imgView ~ListView:listView ~String:imageUrl {method}#onCreate(Bundle SavedInstanceState):void } class PilihanActivity{ ~ListView:listView {method}#onCreate(Bundle SavedInstaceState:void } class UbahPassword{ ~EditText:etEmail ~EditText:etPassword ~EditText:etRePassword ~Button:btnSimpan ~LppmInterface:lppmInterface ~SessionManager:sessionManager {method}#onCreate(Bundle:savedInstanceState):void {method}+getChangePassword(String:nip,String:password):void {method}{static}+convertToMd5(String:pass) } class Tahun{ -String:tahun {method}+getTahun():String } class FgdAdapter{ -ArrayList<Fgd>:rvData ~Context:context ~String:akses -ArrayList<Fgd>:rvDataList ~SessionManager:sessionManager {method}+FgdAdapter(Context:context,ArrayList<Fgd>:inputData,String akses):void } class PenelitianAdapter{ -ArrayList<Penelitian>:rvData ~Context:context ~String:akses -ArrayList<Penelitian>:rvDataList ~SessionManager:sessionManager {method}+PenelitianAdapter(Context:context,ArrayList<Penelitian>:inputData,String akses):void } class PengabdianAdapter{ -ArrayList<Pengabdian>:rvData ~Context:context ~String:akses -ArrayList<Pengabdian>:rvDataList ~SessionManager:sessionManager {method}+PengabdianAdapter(Context:context,ArrayList<Pengabdian>:inputData,String akses):void } class PerjalananAdapter{ -ArrayList<Perjalanan>:rvData ~Context:context ~String:akses -ArrayList<Perjalanan>:rvDataList ~SessionManager:sessionManager {method}+PerjalananAdapter(Context:context,ArrayList<Perjalanan>:inputData,String akses):void } class ApiClient{ {static}+Retrofit:retrofit {static}+Retrofit:retrofit2 {method}{static}+getApiClient():Retrofit {method}{static}+getApiProv():Retrofit } class CombineApi{ {static}+String:BaseUrl {static}+String:BaseUrlProv {method}{static}+getApiService():LppmInterface {method}{static}+getApiProv():ProvInterface } class MainActivity { ~Session Manager : sessionManager ~Dialog:MyDialog -Context:mContext ~Toolbar:toolbar ~Button:penelitian ~Button:pengabdian ~Button:perjalanan ~Button:Fgd {method}#onCreate(Bundle:savedInstanceState):void {method}+onBackPressed():void {method}+onCreateOptionMenu(Menu:menu):boolean {method}+onOptionItemSelected(MenuItem:menuItem):boolean {method}+onNavigationItemSelected(MenuItem:menuItem):boolean } class LoginActivity{ ~Button:Login ~EditText:etNip ~EditText:etPassword ~TextView:lupaPassword ~TextView:Status ~ImageView:imgShow ~ProgressDialog:loading ~LppmInterface:lppmInterface ~SessionManager:sessionManager {method}#onCreate(Bundle:savedInstanceState):void {method}-requestLogin():void {method}{static}+convertToMd5(String:pass):String } class FgdActivity{ ~Toolbar:toolbar {static}~TabLayout:tabLayout {static}~ViewPager:viewPager ~FloatingActionButton:fab {method}#onCreate(Bundle:savedInstanceState):void {method}+onTabSelected(Tablayout.tab:tab):void {method}+onTabUnSelected(Tablayout.tab:tab):void {method}+onTabReselected(Tablayout.tab:tab):void } class PenelitianActivity{ ~Toolbar:toolbar {static}~TabLayout:tabLayout {static}~ViewPager:viewPager ~FloatingActionButton:fab {method}#onCreate(Bundle:savedInstanceState):void {method}+onTabSelected(Tablayout.tab:tab):void {method}+onTabUnSelected(Tablayout.tab:tab):void {method}+onTabReselected(Tablayout.tab:tab):void } class PengabdianActivity{ ~Toolbar:toolbar {static}~TabLayout:tabLayout {static}~ViewPager:viewPager ~FloatingActionButton:fab {method}#onCreate(Bundle:savedInstanceState):void {method}+onTabSelected(Tablayout.tab:tab):void {method}+onTabUnSelected(Tablayout.tab:tab):void {method}+onTabReselected(Tablayout.tab:tab):void } class PerjalananActivity{ ~Toolbar:toolbar {static}~TabLayout:tabLayout {static}~ViewPager:viewPager ~FloatingActionButton:fab {method}#onCreate(Bundle:savedInstanceState):void {method}+onTabSelected(Tablayout.tab:tab):void {method}+onTabUnSelected(Tablayout.tab:tab):void {method}+onTabReselected(Tablayout.tab:tab):void } @enduml
false
true
false
false
class
73fe49bd465760ed46649083e8a41b70313109e6
6721108d0cfbdcf5ebaca4aa18c6132748af3ce1
/tsn_app/doc/Queue.plantuml
d43381dbae949d2b0d19aed49b96dbcbd7ba4e60
[]
no_license
ZitaoLi/FakerTSN
971281637c467e499f575f577641bb776fc3540a
18af6854249a5d7db82cb1a25cc4f892a627a6c6
refs/heads/master
2023-04-23T16:14:01.491101
2021-05-07T07:15:22
2021-05-07T07:15:22
296,300,495
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,458
plantuml
@startuml Queue package Timer <<Frame>> { interface ITimer { } } package Reactor <<Frame>> { class Reactor { } } package Queue <<Frame>> { class QueueContext { - Queue[] # ordered by pcp - Pcp2Queue[][] # mapping from pcp to queue - {friend} TransmissionSelection + dequeue()() + enqueue() } QueueContext "1" *-- "n" IQueue QueueContext "1" *-- "1" TransmissionSelection QueueContext <.. Reactor class TransmissionSelection { + dequeue()() } note top of TransmissionSelection retrieve from Q#7 to Q#0 end note interface IQueue { + enqueue() + dequeue()() + is_active() + is_empty() } IQueue <|- IEEE8021Queue abstract IEEE8021Queue { - InnerBuffer - Algorithm - int pcp # priority } ' Queue "n" *-- "1" IQueueCompenent IEEE8021Queue *-- Algorithm IEEE8021Queue *-- InnerBuffer IEEE8021Queue <|- IEEE8021QbvQueue class IEEE8021QbvQueue { - Gate gate } IEEE8021QbvQueue *-- Gate ' interface IQueueCompenent { ' + on_scheduled() ' } abstract InnerBuffer { - int pcp - IFrameBody[] + dequeue()() + enqueue() + is_empty() } InnerBuffer --o Algorithm ' InnerBuffer <|- CreditBasedShaperAlgorithm ' InnerBuffer <|- PriorityStrictAlgorithm abstract Algorithm { - int pcp + dequeue()() } Algorithm --o Gate Algorithm <|- NoFIFOAlgorithm Algorithm <|- PSAlgorithm CBSAlgorithm -|> Algorithm class NoFIFOAlgorithm{ int index } NoFIFOAlgorithm ..> GateControlList class Gate { - int pcp - bool isOpen + set_open() + dequeue()() .. Observer .. + register() + on_update() } Gate "n" *--* "1" GateControlList class GateControlList { - Gate[] gates - int index - XML schedule .. Singleton .. - GateControlList() + {static} get_instance() .. Subject .. + update_gates() + append_gate() } ' EnhancementGateControlList -|> GateControlList GateControlList <|- EnhancementGateControlList GateControlList ..> ITimer class EnhancementGateControlList { - XML enhancementSchedule } } interface IFrameBody InnerBuffer o-- IFrameBody @enduml
false
true
false
false
class
c38872077e240bb23d681c9ae12924ed400f0905
3576ec713485a374cd82f4db2df455e2108fbf46
/concepts/0478-coprotocols/as_coprotocol.puml
8f5c7c85f3947f3ff974e20e00ccb6f7afe8802a
[ "Apache-2.0", "LicenseRef-scancode-dco-1.1" ]
permissive
hyperledger/aries-rfcs
b5de0c6f3b6855c6b66039b3f3580e062d238cdf
097053c6e91f16d4dad18b5367cf338721423dc7
refs/heads/main
2023-08-31T08:13:57.556336
2023-07-24T21:30:11
2023-07-24T21:30:11
185,645,683
340
259
Apache-2.0
2023-09-13T01:20:18
2019-05-08T16:49:20
Python
UTF-8
PlantUML
false
false
754
puml
@startuml skinparam EntityBorderColor #505050 title Simplified Coprotocol Interface autonumber 5 hide footbox entity "Caller" as caller #red actor "Payee" as payee caller --> payee: invoke(amount, currency, bill_of_sale)\npayee state => requested alt continue or not autonumber 6.1 payee --> payee: state =>\nwaiting for commit payee --> caller: preauth(code) alt commit or not autonumber 6.3.1 caller --> payee: proceed(continue = true)\npayee state => finalizing payee --> caller: return(confirmation_code) else autonumber 6.3.0 caller [#gray]--x payee: proceed(continue = false) end alt else autonumber 6.0 caller [#gray]--x payee: proceed(continue = false) end alt @enduml
false
true
false
false
usecase
154d03b1fc2fd9cfd3e57b1024c909059a8caeb6
5718cd8efc5bd16666b1d150c9d33a3f5cbe76c6
/tomorrow-night-eighties.puml
adc165de5f21fb2bd404a9e3de3de1dbb99de4c2
[ "MIT" ]
permissive
gabrieljoelc/plantuml-themes
b8425dfeb2c598314c1093f31949d5b9a08890e1
1213105236b6932fab9ae341f11429c38f3d2777
refs/heads/master
2020-04-06T08:12:02.017706
2018-11-13T01:02:19
2018-11-13T01:02:19
157,298,114
16
10
MIT
2019-11-10T14:39:08
2018-11-13T00:49:56
null
UTF-8
PlantUML
false
false
1,635
puml
@startuml PlantUML Color Themes - Tomorrow Night Eighties ' "Tomorrow night eighties" color theme (see https://github.com/chriskempson/tomorrow-theme) !define Background #2d2d2d !define CurrentLine #393939 !define Selection #515151 !define Foregound #cccccc !define Comment #999999 !define Red #f2777a !define Orange #f99157 !define Yellow #ffcc66 !define Green #99cc99 !define Aqua #66cccc !define Blue #6699cc !define Purple #cc99cc skinparam Shadowing false skinparam backgroundColor #2d2d2d skinparam Arrow { Color Foregound FontColor Foregound FontStyle Bold } skinparam Default { FontName Menlo FontColor #fdfdfd } skinparam package { FontColor Purple BackgroundColor CurrentLine BorderColor Selection } skinparam node { FontColor Yellow BackgroundColor CurrentLine BorderColor Selection } skinparam component { BackgroundColor Selection BorderColor Blue FontColor Blue Style uml2 } skinparam database { BackgroundColor CurrentLine BorderColor Selection FontColor Orange } skinparam cloud { BackgroundColor CurrentLine BorderColor Selection } skinparam interface { BackgroundColor CurrentLine BorderColor Selection FontColor Green } package "Some Group" { HTTP - [First Component] [Another Component] } node "Other Groups" { FTP - [Second Component] [First Component] --> FTP } cloud { [Example 1] } database "MySql" { folder "This is my folder" { [Folder 3] } frame "Foo" { [Frame 4] } } [Another Component] --> [Example 1] [Example 1] --> [Folder 3] [Folder 3] --> [Frame 4] @enduml
false
true
false
false
sequence
348f8dd50a7f8745ed9147b34c22f0ed7b8b7a74
b04d5166435afbe4a531aaccc447a40c92bb649b
/docs/Solution/Services/cloudlet-manager/Physical.puml
267739a6f40453b0ddae13d33d2f39d5914f3822
[]
no_license
CAADE/CloudLet
bc8e2d2ca4662aa60732888d727fca11d4045f66
08066bb296578ca6dc60a20388b15cb0f08425c4
refs/heads/master
2021-07-24T19:23:37.384552
2018-08-11T13:37:52
2018-08-11T13:37:52
81,122,426
0
0
null
null
null
null
UTF-8
PlantUML
false
false
179
puml
@startuml interface external package "cloudlet-manager" #lightblue { component service interface internal } external -- service : 3000 internal - service : 5000 @enduml
false
true
false
false
class
1677adc6ebb44ed733c965984876a24ea4dfc71f
0ad226eb7547a1228118953df986af4bf198f6fe
/src/docs/asciidoc/synchronous-web-mvc.puml
29c6cbee75cdce79fb8c341b3dd063b130cf62a8
[ "Unlicense" ]
permissive
corneil/reactive-spring-5
0c843cf9a62565c4d885bf964365f1112158579e
a08f92a6218dbac0a8aa6495d01ee5d81e2e8304
refs/heads/master
2021-09-19T16:11:33.722124
2018-07-29T11:58:36
2018-07-29T11:58:36
109,564,659
1
1
null
null
null
null
UTF-8
PlantUML
false
false
647
puml
@startuml hide footbox Browser -> WebServer: HttpGetRequest activate WebServer WebServer -> Controller: listUsers activate Controller Controller -> Service : listUsers activate Service Service -> Repository : listUsers activate Repository Repository -> DatabaseTechnology : query activate DatabaseTechnology DatabaseTechnology -->> DatabaseTechnology note left Database processing end note DatabaseTechnology -->> Repository deactivate DatabaseTechnology Repository -->> Service deactivate Repository Service -->> Controller deactivate Service Controller -->> WebServer deactivate Controller WebServer -->> Browser deactivate WebServer @enduml
false
true
false
false
sequence
4a6628f60440848d218387193880f9d6cf54c1f2
b2be1f2c659ff90e5be7a97f52150c3f278e4c70
/behavioral_patterns/visitor/visitor.puml
277feb289122bfb0ffefa29af34e41128244590a
[]
no_license
sirejik/software-design-patterns
a3f0aab43a6b73f8e8d0d4ecd13a3f4aa362addc
67b8ebc373bdf6e5d58d699ed0a84bb3b2666f58
refs/heads/master
2023-01-05T09:55:51.669200
2020-11-05T17:02:20
2020-11-05T17:02:20
298,362,438
0
0
null
null
null
null
UTF-8
PlantUML
false
false
685
puml
@startuml class Client { } interface Exporter { visit_concrete_element_a(e: Dot) visit_concrete_element_b(e: Circle) } Client --> Exporter class XMLExporter { visit_concrete_element_a(e: Dot) visit_concrete_element_b(e: Circle) } Exporter <|-- XMLExporter class JSONExporter { visit_concrete_element_a(e: Dot) visit_concrete_element_b(e: Circle) } Exporter <|-- JSONExporter class ObjectStructure { } Client --> ObjectStructure interface Shape { accept(Exporter) } ObjectStructure o--> Shape class Dot { accept(v: Exporter) operation_a() } Shape <|-- Dot class Circle { accept(v: Exporter) operation_b() } Shape <|-- Circle @enduml
false
true
false
false
class
fb201722e84f7362e8b52dfc7eede3db31f20402
a14996e97357a2c4c98bf2f13bed93bd0fd7870e
/statemachine/test7.puml
324c9348c7b320e67cf6a8a1b9f1bd033caf680d
[ "MIT" ]
permissive
marrbor/go-state-machine
ed88b6aae25e5acde5f19b727807baafdf8b241a
400a4f8b63e69a5ec4df0e821e427b1677d176ad
refs/heads/master
2020-12-26T05:11:20.460232
2020-05-21T16:14:29
2020-05-21T16:14:29
237,395,650
0
0
null
null
null
null
UTF-8
PlantUML
false
false
131
puml
@startuml [*] --> State1 State2 --> State3 : Succeeded State1 --> State2 : Succeeded State3 --> [*] : Succeeded [MaxCheck] @enduml
false
true
false
false
sequence
d8d8ff4f861daed57e8b8fe3c7611057d50f72bc
519f4fb6d2934e5978bb1735376276f67cb9a06c
/tests/fixtures/006_Constant.puml
065d2868aa744c24627943d860038bf0efcba538
[ "BSD-3-Clause" ]
permissive
uzielgl/umlwriter
72efd2dfe533fa3c1bd0c32d66255af455b0a5d4
5154e326880fead6261deb915968165ad5fbabaf
refs/heads/master
2022-02-08T23:40:43.828712
2019-07-22T02:19:04
2019-07-22T02:19:04
198,128,002
0
0
BSD-3-Clause
2019-07-22T01:57:21
2019-07-22T01:57:20
null
UTF-8
PlantUML
false
false
407
puml
@startuml class OneClass << class >> { +STRING_CONSTANT +INTEGER_CONSTANT +FLOAT_CONSTANT +LF_CONSTANT +CR_CONSTANT +TAB_CONSTANT .. +NOVALUE_STATIC +STRING_STATIC +INTEGER_STATIC +FLOAT_STATIC +LF_STATIC +CR_STATIC +TAB_STATIC +PUBLIC_STATIC #PROTECTED_STATIC -PRIVATE_STATIC -- +<u>staticPublic</u>() #<u>staticProtected</u>() -<u>staticPrivate</u>() } @enduml
false
true
false
false
class
829837b64874f5d21c9f04a287ffdee0c2c2d29d
987a4a73c7558085a90a4e6199fb61b4cc3d4588
/arch/component-and-connector.iuml
ca7ab5f5a7da898d9821d3808ae471f14d3c0daf
[]
no_license
marionlxy/bus-docs
cd0bafe5ddc427f17946e76ece2d201a194c5bed
53aff79b080f6c1e75186c54e7828a08d6c93cdf
refs/heads/master
2022-04-16T17:21:46.785504
2020-03-26T06:48:07
2020-03-26T06:50:02
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,649
iuml
@startuml left to right direction interface "TCP/IP" as tcpip cloud { tcpip <-- ["bus-2nd-terminal"] tcpip <-- ["vehicles-producer-platforms"] ["vehicles-producer-platforms"] <-- ["bus-terminal"] } interface "HTTP" as http database mongo { folder "bus-core-db" { ["bus-core-db"] } folder "bus-op-db" { ["bus-op-db"] } folder "bus-pile-db" { ["bus-pile-db"] } } database "large-mongo" { folder "bus-log-db" { ["bus-log-db"] } } database elasticsearch { folder "chart" { ["chart-indexes"] } folder "events" { ["tbox-indexes"] ["event-indexes"] ["extevent-indexes"] } } database kafka { folder [mq] { ["tbox-topic"] ["event-topic"] ["extevent-topic"] } } database "kafka-for-external-systems" { folder [extmq] { ["ext-topic"] } } component "kafka-to-es-transporter" as transporter transporter ...> ["tbox-topic"] transporter ...> ["event-topic"] transporter ...> ["extevent-topic"] transporter ---> ["tbox-indexes"] transporter ---> ["event-indexes"] transporter ---> ["extevent-indexes"] node "catl-system" as catlsys package "bus-tbox" { ["bus-tbox"] <-- tcpip ["tbox-topic"] <-- ["bus-tbox"] } package "bus-core" { ["bus-core-consumer"] ...> ["tbox-topic"] ["bus-core-consumer"] ...> ["extevent-topic"] ["bus-core-consumer"] ---> ["event-topic"] ["bus-core-consumer"] ---> ["bus-core-db"] ["bus-core"] as buscore buscore ---> ["bus-core-db"] http --> buscore ["bus-core-daemon"] ---> ["bus-core-db"] ["bus-core-producer"] ---> ["bus-core-db"] ["bus-core-producer"] ---> ["event-topic"] } package "bus-core(-catl)" { ["bus-core-catl"] ..> catlsys ["extevent-topic"] <-- ["bus-core-catl"] } package "bus-op" { ["bus-op-consumer"] ---> ["event-topic"] ["bus-op-consumer"] ---> ["bus-op-db"] ["bus-op"] as busop busop ---> ["bus-op-db"] http --> busop ["bus-op-producer"] ---> ["bus-op-db"] ["bus-op-producer"] ---> ["event-topic"] } package "bus-log" { ["bus-log-consumer"] ...> ["tbox-topic"] ["bus-log-consumer"] ---> ["bus-log-db"] ["bus-log"] as buslog http ..> buslog buslog ...> ["bus-log-db"] } node "auth-service" as authservice http ..> authservice package "bus-chart" { ["bus-chart-consumer"] ....> ["event-topic"] ["bus-chart-consumer"] -----> ["chart-indexes"] ["bus-chart"] as buschart http ..> buschart buschart .....> ["chart-indexes"] buschart .....> ["tbox-indexes"] buschart ..> authservice buschart ...> buscore buschart ...> busop } node "external-systems" as extsys extmq <.. extsys node "boxie-system" as boxiesys package "bus-boxie" { ["bus-boxie"] ...> boxiesys ["extevent-topic"] <-- ["bus-boxie"] } node "telaidian-system" as telaidiansys package "bus-telaidian" { ["bus-telaidian"] ...> telaidiansys ["extevent-topic"] <-- ["bus-telaidian"] } package "bus-pile" { ["bus-pile-consumer"] ---> ["event-topic"] ["bus-pile-consumer"] ---> ["bus-pile-db"] ["bus-pile"] as buspile buspile <--- telaidiansys buspile ---> ["bus-pile-db"] http --> buspile buspile ---> ["extevent-topic"] ["bus-pile-producer"] ---> ["bus-pile-db"] ["bus-pile-producer"] ---> ["event-topic"] } package "bus-tbox-notifier" { ["tbox-topic"] <.. ["bus-tbox-notifier"] catlsys <--- ["bus-tbox-notifier"] extmq <--- ["bus-tbox-notifier"] } package "bus-admin" { ["bus-admin"] --> http } package "bus-app" { ["bus-app"] --> http } @enduml
false
true
false
false
sequence
b9109ba74e085093db88354ed18aefb27ae6261f
372d0fe94d7e59fd48620c687fee8fc94841408b
/deadheat-lock-example/microservices-example/financial-service/src/main/java/com/vrush/microservices/financial/entities/entities.plantuml
ae7613e073e39caaa842811668958fb7b622dfbb
[ "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
1,169
plantuml
@startuml title __ENTITIES's Class Diagram__\n namespace com.vrush.microservices.financial { namespace entities { class com.vrush.microservices.financial.entities.Transaction { - analysis : String - creationDate : LocalDateTime - id : UUID - idBooking : UUID - lastUpdate : LocalDateTime - totalValue : BigDecimal - version : Integer + Transaction() + equals() + getAnalysis() + getCreationDate() + getId() + getIdBooking() + getLastUpdate() + getTotalValue() + getVersion() + hashCode() + setAnalysis() + setCreationDate() + setId() + setIdBooking() + setLastUpdate() + setTotalValue() + setVersion() + toString() # canEqual() # onCreate() # onUpdate() } } } 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
false
true
false
false
class
477394f98219e4c2deb6a6170ac9903def3fd317
71a886e08b95bc6eb6bcf83fee1e494a0be5c231
/architecture/src/main/resources/diagrams/qq/use-case.puml
dd9e4b8d3a6ab58c96caedc1bfb84b82c071c29f
[]
no_license
siarhei/java8
6cfce577f9c25daecc930042a71347998a5988e1
18201e75ddfca19415a63dbddfe031162c4738e2
refs/heads/master
2021-09-08T04:01:25.935910
2021-09-06T17:01:51
2021-09-06T17:01:51
147,394,381
0
0
null
null
null
null
UTF-8
PlantUML
false
false
739
puml
@startuml left to right direction :Rating Admin: as Admin #red :Mobile Agent: as User #red rectangle QuickQuote { (Adjust Premium Factors) as (PremiumAdj) (Initiate Auto Quote) as (QuoteInit) (Calculate Premium) as (QuoteRating) (Validate Quote) as (QuoteValidation) (Issue Policy) as (PolicyIssuance) (Get Lookup Data) as (Lookup) (Search Vehicle) as (Vehicle) (Register Customer) as (Customer) (Save Quote) as (QuoteSave) } User --> (QuoteInit) User --> (QuoteRating) User --> (PolicyIssuance) User --> (Lookup) User --> (Vehicle) User --> (QuoteValidation) User --> (Customer) User --> (QuoteSave) Admin --> (PremiumAdj) note left of (Admin) Adjusts rating factors via Webstudio end note @enduml
false
true
false
false
uml-unknown
0ac4bb86a73ac9ab5c4b27da7a4652f1212228e3
0fb7f7e25432aac70be897657dfcdb0bab9115cc
/jMusicHub_server/src/musichub_server/util/SequenceDiagram.puml
a25053fcc661bc11669185866e771584c63807ca
[]
no_license
sarahangelique/JavaProject2021
a5ce7a8b1f382b97160bc0df8e56ab64e6b5ad37
a2abf03dff27e49c3f8e8b28db151a978a8cf01d
refs/heads/main
2023-04-21T05:49:29.295660
2021-05-03T22:21:13
2021-05-03T22:21:13
355,247,727
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,032
puml
@startuml 'https://plantuml.com/sequence-diagram actor user as Foo loop /'The alternative combination fragment is used when a choice needs to be made between two or more message sequences. It models the “if then else” logic.'/ alt input = t group Display album titles ordered by Date Foo -> Server: Select an album activate Server Server -> Server: Sort by Date Server --> Foo: Display songs in album deactivate Server end else input = g group Display album titles ordered by Genre Foo -> Server: Select an album activate Server Server -> Server: Sort by Genre Server --> Foo: Display songs in album deactivate Server end else input = d group Display songs Foo -> Server: Select an album activate Server Server --> Foo: Display songs in album deactivate Server end else input = u group Display audiobooks ordered by author Foo -> Server: Select an album activate Server Server --> Foo: Display songs in album deactivate Server end else input = c group Add a new song Foo -> Server: Select a song activate Server Server --> Foo: Add it to playlist deactivate Server end else input = a group Add a new album Foo -> Server: Select an album activate Server Server --> Foo: Add it to playlist deactivate Server end else input = + group Add a new song to an album Foo -> Server: Select a song activate Server Server --> Foo: Add song to the album deactivate Server end else input = l group Add a new audiobook Foo -> Server: Select an audiobook activate Server Server --> Foo: Add it to playlist deactivate Server end else input = p loop ref over Foo, Server: Add a new song ref over Foo, Server: Add a new album ref over Foo, Server: Add a new audiobook end else input = - group Delete an existing playlist Foo -> Server: Select a playlist activate Server Server -> Server: Iterate through playlist and delete Server --> Foo: Display validation message deactivate Server end else input = s group Save elements, albums, playlists Foo -> Server: Select element, album or playlist activate Server Server --> Foo: Saved deactivate Server end end else input = q group Quit Foo -> Server: Close desktop application activate Server Server --> Foo: Display exit message deactivate Server end @enduml
false
true
true
false
sequence
9951b597d60d07a7bb0dc4f58dc4edbb12ff835f
e618e68be491bb98c0573a467be63146a053cc6c
/SA/sequencediagram/product/UpdateProduct.puml
62d69e9dd58cf75bb9122c275b48057a2fb71fef
[]
no_license
dedeandress/belanjayukid-be-services
14101c676e2bdd56c5df72b9ccddae648951cf8b
9bedbf42cdd0b764e27c9dc839df8b401ac0bb62
refs/heads/master
2022-04-07T04:29:30.602535
2020-02-28T05:39:33
2020-02-28T05:39:33
194,123,362
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,553
puml
@startuml title: Update Product Sequence Diagram actor user participant BelanjaYukFE database BelanjaYukDB box "BelanjaYuk.id" #LightBlue participant BelanjaYukBE participant ProductResolver participant ProductService participant ProductRepository participant JWTUtility participant BelanjaYukDB end box user -> BelanjaYukFE ++ : Product menu BelanjaYukFE -> BelanjaYukBE ++ : /graphql add product note right of BelanjaYukFE content type: application/json request body: mutation { updateProduct(productId, categoryId, name) : Product } end note BelanjaYukBE -> ProductResolver ++ : call ProductResolver ProductResolver -> ProductService ++ : call ProductService note left passing: - context - productId - categoryId - name end note ProductService -> JWTUtility: validate token and claim role alt #LightGreen token is not expired alt #LightYellow role is admin ProductService -> ProductRepository ++ : get product passing productId ProductRepository -> BelanjaYukDB ++ : select product where id is passed from request BelanjaYukDB --> ProductRepository -- : product or null ProductRepository --> ProductService -- : product or null alt product is not null ProductService -> ProductRepository ++ : update product passing product ProductRepository -> BelanjaYukDB ++ : update product set values passed from request BelanjaYukDB --> ProductRepository -- : affected row no error and return product ProductRepository --> ProductService -- : affected row no error and return product ProductService --> ProductResolver : product ProductResolver --> BelanjaYukBE : product BelanjaYukBE --> BelanjaYukFE: product else product is null ProductService --> ProductResolver : Error: Product Not Found ProductResolver --> BelanjaYukBE : Error: Product Not Found BelanjaYukBE --> BelanjaYukFE: Message: Product Not Found end alt else error: role is not admin ProductService --> ProductResolver : Error: Not Authorized ProductResolver --> BelanjaYukBE : Error: Not Authorized BelanjaYukBE --> BelanjaYukFE: Message: You're not authorize end alt else token is expired ProductService --> ProductResolver -- : Error: token expired ProductResolver --> BelanjaYukBE -- : Error: token expired BelanjaYukBE --> BelanjaYukFE -- : Message: token was expired end alt @enduml
false
true
false
false
usecase
b98cc3f5532fe19dc3f8b5aaf97e1dbffbf1be7a
3eec4c5629403b76a14f83b289987537d7c45601
/docs/sequenceDiagrams/seq-cep-10.5-scheduler-flow.plantuml
d549c31250ea0009174e13ae7f5472a4cc432c71
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mojaloop/central-event-processor
5de3838ddf80864b55467ef494388e678c06feac
e5e58932ec52b60247368d64d2b6ed66c0a19345
refs/heads/master
2023-02-23T07:23:03.728940
2022-07-26T11:34:37
2022-07-26T11:34:37
158,225,914
3
22
NOASSERTION
2023-02-12T14:32:53
2018-11-19T13:17:02
JavaScript
UTF-8
PlantUML
false
false
823
plantuml
@startuml ' declate title title 10.5. Notification Scheduler Flow autonumber ' declare actors control "Action Agent" as AA database "CEP Store" as DB box "Central Services" #LightYellow end box box "Central Event Processing Service" #LightGreen participant AA participant DB end box ' start flow Group Scheduler Flow activate AA AA -> AA: Event **actionId** triggered by scheduled time AA -> DB: Request Action by Id hnote over DB #LightYellow action end note activate DB deactivate DB alt Action is active AA -> AA: Reset action timesTriggered counter AA -> DB: Persist Action Object hnote over DB #LightYellow action end note activate DB deactivate DB AA -> AA: Reschedule the same **actionId** else end end deactivate AA @enduml
false
true
false
false
sequence
5454c0612c14636e4e921a911b3b40bb8722dad8
833c4b92528ecd1580abf373ab58e7f77b874ea1
/diagrams/07-object-relation.puml
9efe593e0d8bcfbd9425b5ea7d560c2202e1b85e
[]
no_license
lcalmsky/jpa
3d67b948d5d68646cb1194871a1f1214bdc44a52
fa36fcf46b25c638cb64a682ec1bde097e5a934d
refs/heads/master
2022-08-21T08:53:49.261282
2022-07-11T13:12:37
2022-07-11T13:12:37
251,661,495
1
1
null
2022-07-11T13:02:41
2020-03-31T16:20:39
Java
UTF-8
PlantUML
false
false
322
puml
@startuml class product { id: Long name: String price: Integer } class song { id: Long singer: String writer: String } class movie { id: Long director: String actor: String } class book { id: Long author: String isbn: String } product <|-d- song product <|-d- movie product <|-d- book @enduml
false
true
false
false
sequence
d905753979d0dda46ac6264f49bea8cb9c7cb5e8
62ccd14957a58d55451b3aff56020d36a91091e6
/uml/reference_03-33-1_Extends-and-implements.uml
b06d59a7608a63f8180e14de0a3df24d9da99209
[]
no_license
aklt/plantuml-syntax-test
a20421b4dbbfc7db0af932fcdc66a7b24b861990
0dccdb3cd2084cf24642e6915bfc8fc7ede1a034
refs/heads/master
2022-05-21T05:09:50.242583
2022-04-01T19:47:42
2022-04-01T19:47:42
91,947,227
6
2
null
2022-04-01T19:47:43
2017-05-21T09:50:53
Shell
UTF-8
PlantUML
false
false
87
uml
@startuml class ArrayList implements List class ArrayList extends AbstractList @enduml
false
true
false
false
class
eff293dad167cd52f870cd244d74e897c18216a7
372e13940be1f116c671dbb746617a331f06899e
/Assets/TPPackages/com.cocoplay.core/Documentation-/puml/Editor/Debug/ModuleDebugSettingsDrawer.puml
4f21cffc15cd74c7e23fe5d13bef6902b3466af0
[]
no_license
guolifeng2018/CIGA-Game-Jam
797734576510e27b5c5cee2eb17c1444f51d258c
fcd03e5579bef3bffe2cb51f52ba11a49a9cc02d
refs/heads/master
2022-12-10T19:21:15.522141
2020-08-16T10:06:23
2020-08-16T10:06:23
285,986,041
0
0
null
null
null
null
UTF-8
PlantUML
false
false
286
puml
@startuml class ModuleDebugSettingsDrawer { + <<override>> OnGUI(position:Rect, property:SerializedProperty, label:GUIContent) : void + <<override>> GetPropertyHeight(property:SerializedProperty, label:GUIContent) : float } PropertyDrawer <|-- ModuleDebugSettingsDrawer @enduml
false
true
false
false
class
a7687330c67b522bba90323500803f4890b444e3
2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8
/CleanSheets/src/main/java/csheets/worklog/n1140780/sprint3/ipc_03.2_tcp_sd.puml
3236d1adbe3b609e8cbabcdf524f7c5cc4c3bb66
[]
no_license
ABCurado/University-Projects
7fb32b588f2c7fbe384ca947d25928b8d702d667
6c9475f5ef5604955bc21bb4f8b1d113a344d7ab
refs/heads/master
2021-01-12T05:25:21.614584
2017-01-03T15:29:00
2017-01-03T15:29:00
77,926,226
1
3
null
null
null
null
UTF-8
PlantUML
false
false
731
puml
@startuml doc-files/ipc_03.2_tcp.png participant "SearchInstanceWorkbookController" as Control participant "TcpService" as tcp Control->tcp: server(pattern) tcp->tcp: expect(permission_request) tcp->tcp: expect(permission_response) alt permission response is TRUE tcp->tcp: searchWorkbookOnTarget(target, pattern) tcp->tcp: send(target, pattern) end tcp->tcp: expect(search_request, pattern) alt newRequest received note right of tcp: On search request notifies observer UI to add it... tcp->tcp: notifyChanges(newRequest) end tcp->tcp: expect(search_response, content) alt newSearchResponse received note right of tcp: On search response notifies observer UI to add it... tcp->tcp: notifyChanges(newResponse) end @enduml
false
true
false
false
sequence
b77ee0df688a4185c2b500e10e5049e734986c2c
70fd78caa400c57c98b1ea4d277201cf5691c934
/test_2/app/src/main/java/com/example/test_2/ui/home/db/db.plantuml
0583fcc5dbdb28645a2991cc0e5bfa97426865ff
[]
no_license
lwy642473876/lwy_repository
7e263478b19387cd283b055a2b058a08b438d93c
a45bf7effa625b21fc0fe3e0a1e9bd1cc5dba0cf
refs/heads/master
2022-11-12T15:50:38.924369
2020-06-16T15:22:48
2020-06-16T15:22:48
272,736,926
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,194
plantuml
@startuml title __DB's Class Diagram__\n namespace com.example.test_2 { namespace ui.home { namespace db { class com.example.test_2.ui.home.db.DbDao { - context : Context - db : SQLiteDatabase + DbDao() + delete() + deleteData() + hasData() + insertData() + queryData() - init() } } } } namespace com.example.test_2 { namespace ui.home { namespace db { class com.example.test_2.ui.home.db.RecordSQLiteOpenHelper { {static} - name : String {static} - version : Integer + RecordSQLiteOpenHelper() + onCreate() + onUpgrade() } } } } com.example.test_2.ui.home.db.DbDao o-- com.example.test_2.ui.home.db.RecordSQLiteOpenHelper : helper com.example.test_2.ui.home.db.RecordSQLiteOpenHelper -up-|> android.database.sqlite.SQLiteOpenHelper right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
b3cd8c00ea7b89ebdbe7af8444347fd7c5ee1463
611f7095610b63193930d373f4de408767042ce0
/uml/notification-sd-dialogbox.puml
4e368170bdf115f8fca7bc71f3d7d965c952805a
[]
no_license
ovitor/figuras-dissertacao
3f8a35fe26897014f0c94eb80a1b02a244092ee5
2d238a1b65d02b1f367d0b34b92e22510c28459d
refs/heads/master
2021-07-07T22:52:01.607773
2017-09-26T16:33:13
2017-09-26T16:33:13
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
574
puml
@startuml skinparam dpi 300 skinparam shadowing false actor Usuário participant "Sistema web" participant "Módulo notificações" participant "Tela principal" Usuário -> "Sistema web" : Cadastrar mensagem activate "Sistema web" "Sistema web" --> Usuário : Mensagem cadastrada deactivate "Sistema web" "Sistema web" -> "Módulo notificações" : Agendar apresentação\nde mensagem "Módulo notificações" -> "Tela principal" : Apresentar mensagem activate "Tela principal" Usuário -> "Módulo notificações" : Fechar mensagem deactivate "Tela principal" @enduml
false
true
true
false
sequence
78053981d6bae1d4459e452a0afb973608f468ce
a902b259bb4bb41a73a8eff9f400e9a1cb7b991e
/umls/factory+prototype.puml
70d4c31cb24deb3b5e6a80a7bc030a77d4d3b40a
[]
no_license
ghadd/Patterns
8010d0f2d6a4cc24dd7cb5caf879fe5c3e4ab1c5
c9efc09fc674b95ea696f45867d4916900c0ec28
refs/heads/master
2023-05-04T15:51:57.034217
2021-05-26T17:13:39
2021-05-26T17:13:39
371,007,049
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,483
puml
@startuml 'https://plantuml.com/class-diagram 'class ContextFactory: ' """Factory + Prototype""" ' ' __prototypes = { ' "userboard": UserBoard() ' } ' ' def create_context(self, what) -> Context: ' return self.__prototypes[what].clone() class ContextFactory { -__prototypes : const Context[] +create_context(what : string) : Context } 'class Context(object): ' def __init__(self, user_id=None, object_id=None, payload: dict = None, strategy: Strategy = None): ' self.user_id = user_id ' self.object_id = object_id ' self._payload = payload or {} ' self._strategy = strategy ' ' ' def exec(self): ' assert self._strategy is not None ' self._strategy.perform_query( ' self.user_id, self.object_id, self._payload) ' ' @abstractmethod ' def clone(self): ' raise NotImplementedError interface Context { -user_id : int -object_id : int #payload : Dictionary #strategy : Strategy +exec() +{abstract} clone() : Context } 'class UserBoard(Modellable, Context): ' def __init__(self): ' super().__init__() ' ' def clone(self): ' return UserBoard() ' ' def to_dict(self): ' return { ' "user_id": self.user_id, ' "board_id": self.object_id ' } class UserBoard interface Modellable { +to_dict() : Dictionary } Modellable <|.. UserBoard Context <|.. UserBoard ContextFactory *-- Context @enduml
false
true
false
false
class
f4c733ff8e42844585bf04136faa36a8acd1e47c
677e795491af1df2c05f906c333a9f40c57ef781
/src/main/com/talents/reclamation/rec_model/reclamation-model.plantuml
aafebd5f2ebec402a7d65e25651cf8f022ea24fe
[]
no_license
lakhassane/claim-model
e8db79a44fdd1d3c8bb10f0574a298972767ee27
6293fcc3d5cc504618247373b6d871ac6d62a8e7
refs/heads/master
2023-03-01T06:38:55.289076
2021-02-07T22:00:07
2021-02-07T22:00:07
336,898,207
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,223
plantuml
@startuml title MODELE RECLAMATION CLIENT \n namespace com.talents.reclamation.rec_model { class com.talents.reclamation.rec_model.Claim { - id: Integer - claimType: String - immediateTreatment: Integer - object: String - origin: Integer - receptionDate: Date - priority: String - description: String } class com.talents.reclamation.rec_model.Client { - id: Integer - clientCode: Integer - lastname: String - firstname: String - address: String - email: String - clientType: String - sensitiveClient: Boolean } class com.talents.reclamation.rec_model.Ticket { - id: Integer - ticketType: String - project: String } } com.talents.reclamation.rec_model.Claim .up.|> java.io.Serializable com.talents.reclamation.rec_model.Client .up.|> java.io.Serializable com.talents.reclamation.rec_model.Ticket .up.|> java.io.Serializable com.talents.reclamation.rec_model.Ticket "1" --> "*" com.talents.reclamation.rec_model.Claim : contains com.talents.reclamation.rec_model.Ticket "1" <-- "*" com.talents.reclamation.rec_model.Client : create @enduml
false
true
false
false
sequence
2f384777aff911f5fc4b54cc40a69f92c75e87be
0dc9fbdec1086274d2c8aa2287eb11d7f5b199b3
/docs/database_structure.puml
95a4fa6072a7ccf7e42f70d3fb29bbdd698be014
[]
no_license
olavhl/HttpServer
77e5b056797331fd0b97f205f27706fb4ef1f669
d695999494e2578ec05b450ecbb470855ceb1b50
refs/heads/master
2023-01-09T04:19:03.267873
2020-11-09T20:10:16
2020-11-09T20:10:16
297,948,637
0
0
null
2020-09-23T12:50:13
2020-09-23T11:31:48
Java
UTF-8
PlantUML
false
false
288
puml
@startuml entity Member { id -- first_name last_name email project_id } entity Project { id -- name projectstatus_id member_id } entity ProjectStatus { id -- name } Project |o--o{ Member ProjectStatus ||--o{ Project @enduml
false
true
false
false
sequence
3d645e0e1a8f5c54a7a36230c044e8ec9ecbc5a4
d94c8b8f993b115449320810070489a74b7b0dbf
/uml/ListClasses.puml
e5f45080fbe1315d33b9b75591d146321e9a8a29
[]
no_license
annbinus/To-Do-App
2fdbc5b626e429d18bba19d108cde07f7eb317c4
29e8eaae25a3f813c0751b0b796363d54485b13a
refs/heads/master
2023-06-18T22:15:21.414346
2021-07-14T14:19:36
2021-07-14T14:19:36
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,527
puml
@startuml 'https://plantuml.com/class-diagram class TODOList{ -start() -main() -stop() } class TODOListController{ -List myToDoList -TableView<Item> tableView -TableColumn<Item, String> desc -TableColumn<Item, String> dueDate -TableColumn<Item, String> status -Label storage -MenuItem showAll -MenuItem showComplete -MenuItem showIncomplete -Button removeButton -MenuItem fileUpload -MenuItem fileDownload +editDescription() +editDueDate() +editStatus() +showAllItems() +showIncompleteItems() +showCompleteItems() +clear() +getList() +openFile() +setCellFactory() +setTableCellEditable() +handleAddButton() +handleRemoveButton() +handleFileOpen() +handleFileDownload() + handleSortButton() +initialize() } class List{ -String title -int storage -int count -ArrayList<Item> itemList +List() +addItem() +removeItem() +getTitle() +setTitle() +getBalance() +setBalance() +editTitle() +clearAllItems() +editDescription() +editDueDate() +editStatus() +getItems() +getCompleteItems() +getIncompleteItems() } class Item{ -String description -String dueDate -String status; +Item() +getDescription() +setDescription() +getDueDate() +setDueDate() +getStatus() +setStatus() +toString() } class ItemController{ DatePicker date TextArea description Button addTaskButton +addTask() +initialize() } Javafx.Application <|-- TODOList TODOList <|-- TODOListController List - TODOListController TODOList --> List List --> Item TODOListController <-- ItemController ItemController <-- Item @enduml
false
true
false
false
class
455c63fc61b5f40147160fd3d5d047afc8dd7918
b8c409912c930baf8050f8c85da0cf2e97966b27
/src/main/resources/uml/seq/1_3在参与者中使用非字母符号.puml
671c0478102ea4bca04745cdadb8245c979dd28c
[]
no_license
tom1120/BaseStudy
8cd1b735a119e022d54738c7ba3d8a9cd16aa8d5
35d1c19a6ebaabbb52870af8b61604d8f0290a5e
refs/heads/master
2023-07-24T13:22:00.656180
2023-07-08T15:53:45
2023-07-08T15:53:45
135,059,686
0
0
null
2023-07-08T15:54:31
2018-05-27T15:40:27
Java
UTF-8
PlantUML
false
false
148
puml
@startuml 'https://plantuml.com/sequence-diagram autonumber Alice->"Bob()":Hello "Bob()"->Long as "This is very\nlong" Long --> "Bob()":ok @enduml
false
true
false
false
sequence
6a624d8d081b2cd1731143dff6146fa0d5669bbe
7041d4eab20296045d22e31c56211bc84b17da1c
/docs/ModifierQuestionnaire/RDCU_modifierQuestionnaire.puml
cb9554fdf06cd43ecf24fc06ba5a23aa1cff17a2
[]
no_license
nerdz88/SGA-TS
ff97ce5cd5c78de97a851e80e0c948f7552b0f2c
608d0748ff5ceff47ff75a9053cc1b5fee061df9
refs/heads/main
2023-07-09T19:54:11.262264
2021-07-28T17:39:07
2021-07-28T17:39:07
397,959,207
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,913
puml
@startuml recupererQuestionsQuestionnaire skinparam style strictuml skinparam defaultfontname Verdana title RDCU recupererQuestionsQuestionnaire participant ": GestionnaireQuestionnaire" as gestionnaireQuestion participant "universite : Universite" as universite participant "espaceCours : EspaceCours" as cours participant "questionnaire : Questionnaire" as questionnaire -> gestionnaireQuestion : questions = recupererQuestionsQuestionnaire\n(idEspaceCours: number, idQuestionnaire: number) note left : Selon contrôleur,\ncontrôleur de session gestionnaireQuestion -> universite : espaceCours = recupererUnEspaceCours(idEspaceCours) note left : Selon expert, universite a toutes les\ninformations pour recupererUnEspaceCours gestionnaireQuestion -> cours : questionnaire = recupererUnQuestionnaire(idQuestionnaire) note left : Selon expert gestionnaireQuestion -> questionnaire : questions = getQuestions() note left : Selon expert @enduml @startuml modifierQuestionnaire skinparam style strictuml skinparam defaultfontname Verdana title RDCU modifierQuestionnaire participant ": GestionnaireQuestionnaire" as gestionnaireQuestion participant "universite : Universite" as universite participant "espaceCours : EspaceCours" as cours participant "questionnaire : Questionnaire" as questionnaire -> gestionnaireQuestion : modifierQuestionnaire\n(idEspaceCours,\nidQuestionnaire,\ndescription,\netat) note left : Selon contrôleur,\ncontrôleur de session gestionnaireQuestion -> universite : espaceCours = recupererUnEspaceCours(idEspaceCours) note left : Selon expert, universite a toutes les\ninformations pour recupererUnEspaceCours gestionnaireQuestion -> cours : questionnaire = recupererUnQuestionnaire(idQuestionnaire) note left : Selon expert gestionnaireQuestion -> questionnaire : modifier(description, etat) note left : Selon expert, description\net etat sont des attributs\nde Questionnaire @enduml
false
true
true
false
sequence
5b8a25ad1956ec2991207b0d56e8fc10ce84211c
80905daea20f037ad1e90829c67947b7b95816b0
/code/17_GenericII/plantUML/Collections.plantUML
b92b7f602ef8ae47f44c610cb4fcf49bce07a4c7
[]
no_license
Divino21/CsharpCourse
7916b7b892fc3858ea3697f39e1fcd802fa2d475
473d92cd96346d005979770bdcae020cf4bbf0c4
refs/heads/master
2022-11-22T05:43:24.789564
2020-07-31T01:47:22
2020-07-31T01:47:22
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
739
plantuml
@startuml skinparam classAttributeIconSize 0 hide circle hide Method hide Field class IEnumerator <T> <<interface>> class IEnumerable <T> <<interface>> class ICollection <T> <<interface>> class IList <T> <<interface>> class IDictionary <K, V> <<interface>> class List <T> #green class Queue <T> #green class Stack <T> #green class LinkedList <T> #green class Dictionary <K, V> #green class SortedList <K, V> #green class SortedDict <K, V> #green IEnumerable *-> IEnumerator ICollection --|> IEnumerable IDictionary --|> ICollection IList --|> ICollection Dictionary ..|> IDictionary SortedDict ..|> IDictionary SortedList ..|> IDictionary List ..|> IList LinkedList ..|> IList Queue ..|> ICollection Stack ..|> ICollection @enduml
false
true
false
false
class
ec05674cab446aa409e44d102e3577d120eab195
92bb9f8a8ec48fee4dacfd0a4059d1487743b4e3
/UML/domain.puml
2858d0fdfe01f4706770ed113481be355033b14b
[ "MIT" ]
permissive
Kautenja/UIBankPayoutFlow
c31443d9f38168f2351e1aff908fc400afe429a6
0e5eb7e00eb21876b973bba7ac63803c983d5565
refs/heads/master
2021-01-16T00:40:58.472924
2017-08-14T05:49:11
2017-08-14T05:49:11
99,969,373
1
0
null
null
null
null
UTF-8
PlantUML
false
false
466
puml
@startuml class Address { street: String city: String state: String zip: String } class Representative { firstName: String middleName: String lastName: String dob: Date ssn: String } class BankAccount { routingNumber: String accountNumber: String } class Company { type: String name: String } Company "1" *-- "1" Address: address > Company "1" *-- "1" Representative: representative > Company "1" *-- "1" BankAccount: payout > @enduml
false
true
false
false
state
246fe37905b85804a5091b0470582a250ba325dc
f6c2c37243727f10ca1c1acc9d70aaeb040e4610
/doc/sequences/lifetimeSubject.plantuml
8905d2afb13b4eed34222e969b221632685fa8ca
[]
no_license
Arcahub/librtk
6078825bd3fc27cbea7942c8677f571c42716697
2ac876687493816fb894b5befeac86c761d2c611
refs/heads/master
2023-03-31T12:44:39.474022
2021-04-03T17:44:52
2021-04-03T17:44:52
337,531,888
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,014
plantuml
@startuml lifetimeSubject partition Main { (*) --> "Subject subject" --> "Observable observable = subject.asObservable()" --> asObservable } partition asObservable { --> "Observable obs" --> "obs.source = subject" --> "return obs" "return obs" --> "Observable observable = subject.asObservable()" } partition Main { --> "Subscription subscription = observable.subscribe(nextCallback)" --> subscribe(nextCallback) } partition subscribe(nextCallback) { --> "Subscriber subscriber" --> "subscriber set nextCallback" --> "Subscription sourceSubscription = source._subscribe(subscriber)" } partition _subscribe(subscriber) { --> subject.observers.push(subscriber) --> "Subscription subjectSubscription(subscriptionCallback)" --> "return subjectSubscription" --> "Subscription sourceSubscription = _subscribe(subscriber)" } partition subscribe(nextCallback) { --> "subscriber->add(sourceSubscription)" --> add(sourceSubscription) } partition add(sourceSubscription) { --> "add sourceSubscription to teardowns" --> "subscriber->add(sourceSubscription)" } partition subscribe(nextCallback) { --> "return sourceSubscription" --> "Subscription subscription = observable.subscribe(nextCallback)" } partition Main { --> "subject.next(value)" --> next(value) } partition next(value) { --> "call next on every subject.observers" --> "subject.next(value)" } partition Main { --> "subscription.unsubscribe()" } partition unsubscribe { if "already closed?" then -> [Yes] "return" else --> [No] "close subscription" --> "call teardowns" --> "subscription.unsubscribe()" } partition Main { --> (*) } partition nextCallback() { "Subscription subscription = observable.subscribe(nextCallback)" --> "print value" } partition subscriptionCallback() { "Subscription subjectSubscription(subscriptionCallback)" --> "subject.observers.remove(subscriber)" } @enduml
false
true
false
false
activity
99f303a2a960ded276438c807b818d51d434de1b
22dd1dcaf94bc2c1b9f19448dccfc217aebc7dce
/uml/InventoryTrackerUML.puml
4bad5e9be9bb0fa2a5b82ba51c0f7414daf68cdb
[]
no_license
C-Gagne/gagne-1078-a5
0f90372ac24d1f74654ce27e9e884f83be8fa8d8
0dae335f090a898e256ee03ee8fc5eaf77661bea
refs/heads/master
2023-07-07T06:39:25.227216
2021-07-24T18:57:45
2021-07-24T18:57:45
388,154,695
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,592
puml
@startuml 'https://plantuml.com/class-diagram class InventoryTracker { start() main() } class InventoryTrackerController { items: Inventory editItems: InventoryEditor searchItems: SearchInventory saveFile: SaveInventory loadFile: LoadInventory + InventoryTrackerController(Inventory) addItemClicked(EventHandler) editItemValue(EventHandler) editSerialNumber(EventHandler) editName(EventHandler) removeItemClicked(EventHandler) saveItemClicked(EventHandler) loadItemClicked(EventHandler) } class InventoryEditor { addItem(BigDecimal, String, String) } class CheckInput { checkMonetaryValue(String) checkSerialNumber(String) checkItemName(String) } class SearchInventory { searchName(String) searchSerialNumber(String) } class SaveInventory { saveAsTSV saveAsJSON saveAsHTML } class LoadInventory { loadTSV loadJSON loadHTML } class Inventory { - ObservableList<Item> } class Item { - itemName: SimpleStringProperty - serialNumber: SimpleStringProperty - itemValue: BigDecimal + getters & setters } openjfx.org.Application <|-- InventoryTracker InventoryTracker -- InventoryTrackerController InventoryTrackerController o-- Inventory InventoryTrackerController o-- InventoryEditor InventoryTrackerController o-- SaveInventory InventoryTrackerController o-- LoadInventory InventoryTrackerController o-- SearchInventory InventoryTrackerController o-- CheckInput InventoryEditor o-- Inventory SearchInventory o-- Inventory Inventory *-- Item @enduml
false
true
false
false
class
c7b1e7142434c0929abe1502064ec387b229666b
c067a7796bba1bcd97ed5d7a5a7877a3217d532c
/uml/Properties/Proxy/Load.puml
67a3ca6834e4ff713d393740ab95d78b4e8ee3fc
[]
no_license
inifares23lab/PMO_Proj-DatiCovid
6897e2d04753c6faff3045aa2ac8822035683e14
186ec91ef3eb5647439c346909bfd8e7b3fb9e6e
refs/heads/master
2022-10-22T03:17:14.494294
2020-06-16T21:10:50
2020-06-16T21:10:50
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
135
puml
@startuml class Load { - _b : bool = false + Load(b:bool) + CaricaDati(lb:Label, l:Liste) : void } ILoad <|-- Load @enduml
false
true
false
false
class
06ec6cf2f2b8c6587201e7d05568ef72c55a29cb
e7b7df0cf36cf83e9c440c3a81f4f85193e37a72
/21 Standard library/2 Azure library.puml
39a17e74ce946302ee6adac58ac74f4d182f4927
[ "MIT" ]
permissive
jys129/PlantUML
38dd154cc9a45d3206abf26f95bfb45e32d4c186
f0e62bf90332a1a541ded76d2101ebdd9215adaa
refs/heads/master
2023-03-16T15:54:12.053012
2020-10-18T15:49:08
2020-10-18T15:49:08
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
643
puml
' Repository: https://github.com/RicardoNiepel/Azure-PlantUML/ ' Note: The example is from the repository, and not from the documentation @startuml Hello World !define AzurePuml https://raw.githubusercontent.com/RicardoNiepel/Azure-PlantUML/release/2-1/dist !includeurl AzurePuml/AzureCommon.puml !includeurl AzurePuml/Databases/all.puml !includeurl AzurePuml/Compute/AzureFunction.puml actor "Person" as personAlias AzureFunction(functionAlias, "Label", "Technology", "Optional Description") AzureCosmosDb(cosmosDbAlias, "Label", "Technology", "Optional Description") personAlias --> functionAlias functionAlias --> cosmosDbAlias @enduml
false
true
false
false
usecase
25035ae6b1d45b7f2cf1327471d92410b60d23b0
f2893b3141066418b72f1348da6d6285de2512c6
/modelViewPresenter/presentationModel/withoutDoubleDispatching/docs/diagrams/src/arquitectura.plantuml
0d0b2d92e935475e2c45b9718a117ea1c5729088
[]
no_license
x-USantaTecla-game-connect4/java.swing.socket.sql
26f8028451aab3c8e5c26db1b1509e6e84108b0d
28dcc3879d782ace1752c2970d314498ee50b243
refs/heads/master
2023-09-01T11:43:43.053572
2021-10-16T16:19:50
2021-10-16T16:19:50
417,161,784
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,134
plantuml
@startuml arquitectura package tictactoe #DDDDDD { } tictactoe .down.> tictactoe.views.graphics tictactoe .down.> tictactoe.views.console tictactoe .down.> tictactoe.controllers tictactoe .down.> tictactoe.views package tictactoe.controllers #DDDDDD { } tictactoe.controllers .down.> tictactoe.models package tictactoe.models #DDDDDD { } package java.util{ } tictactoe.models .down.> java.util tictactoe.controllers .down.> java.util package utils #DDDDDD { } package java.io{ } utils .down.> java.io package tictactoe.views #DDDDDD { } tictactoe.views .down.> tictactoe.controllers package tictactoe.views.console #DDDDDD { } tictactoe.views.console .down.> tictactoe.views tictactoe.views.console .down.> tictactoe.controllers tictactoe.views.console .down.> utils package tictactoe.views.graphics #DDDDDD { } package java.awt{ } tictactoe.views.graphics .down.> java.awt package java.awt.event{ } tictactoe.views.graphics .down.> java.awt.event tictactoe.views.graphics .down.> tictactoe.views tictactoe.views.graphics .down.> tictactoe.controllers package javax.swing{ } tictactoe.views.graphics .down.> javax.swing @enduml
false
true
false
false
uml-unknown
db3e58057312496f0faefc88d29047c16708e5a6
317138d37430f9f52d740b823ba81162886cd8d9
/examples/examples.plantuml
dfdc2c3d4735d8332f2672c0ebb2dbc9b95e29c1
[]
no_license
AnnieFraz/GIN
dffb35140a7080d6a9b814f986225dda1240f1ec
e3dfe1e87cea21b4897399fb5e64a48ba9d67e1a
refs/heads/master
2021-10-26T00:15:41.820527
2019-02-27T12:23:43
2019-02-27T12:23:43
150,884,121
0
0
null
null
null
null
UTF-8
PlantUML
false
false
335
plantuml
@startuml title __EXAMPLES's Class Diagram__\n package com.anniefraz.dissertation.example.application { class A { } } 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
false
true
false
false
class
ec8d5ec706e1e04b104fa1640295d40a7ca28892
54000eb6ae4fc391c27ccfe5e246ea19c8963aef
/docs/diagram/sequence/SequenceDiagramMap.puml
1c700ff1cbda8701c5551991e7de7af8927a5e36
[ "Apache-2.0" ]
permissive
sidatealexis/Wadge-BackEnd
0d0b75fb75ab033d66e10f72fd025c21bcdc31b7
be3db817771205b77e8acbef899bf05656041de1
refs/heads/master
2023-01-10T21:45:43.232817
2020-11-17T19:47:08
2020-11-17T19:47:08
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
204
puml
@startuml autonumber actor User User -> Front: Requête Map Front -> ApiGoogleMap: Requête affichage de la Map ApiGoogleMap->Front: Réponse affichage de la Map Front -> User: Affichage de la Map @enduml
false
true
true
false
sequence
e057e26f95023b347ba2bd3204b7177a4eb55012
564e8c1810c4c7cae58332e369289129185a1bb4
/Entwurf/PlantUML/ClassDiagrams/MVC.puml
00ff9c2891d539ee39ba9cb63c92b6c2953e504e
[]
no_license
JonaEnz/pse-airquality-1
e1e23bce8330949fabb822dcf4ac3ab70aac5ca7
b7d69bd0f4c9a749e9755196c77a92335949c2b0
refs/heads/master
2022-12-14T03:04:53.259309
2020-09-06T18:54:30
2020-09-06T18:54:30
262,756,089
0
0
null
null
null
null
UTF-8
PlantUML
false
false
11,684
puml
@startuml MVC namespace Model { Feature --> Position Feature --> Scale MapPin --> Position Viewport --> Position Observation --> Feature Observation --> Position Observation --> ObservationStation ObservationStation --> Feature ObservationStation --> Position Scale --> Color Polygon --> ObservationStation class FrostResult<T> { constructor(res : T, success : boolean, err? : string) result : T success : boolean errorMessage : string } class Polygon { + constructor(color : Color, stations : ObservationStation[]) .. + getColor() : Color + setColor(color : Color) + getStations() : ObservationStation[] } class MapPin { +constructor(id: string, position: Position, vaule: number,color: Color) .. + getPosition() : Position + setPosition(position : Position) : void + getValue() : number + getStationId() : string + getColor() : Color } class Viewport { + constructor(center: Position, zoom: number) .. + getCenter() : Position + getZoom() : number + getRadius() : number .. + setCenter(position : Position) : void + setZoom(zoom : number) : void } class ObservationStation { - id : string - name : string - description : string - position : Position - availableFeatures : Feature[] + constructor(id: string, name: string, description: string, position: Position, features : Feature[]) + getId() : string + getName() : string + getDescription() : string + getPosition() : Position + getFeatures() : Feature[] + <<async>> getDiagrams() : Promise<DetailPage.Diagram[]> + hasFeature(feature : Feature) : Boolean } class Observation { - observationStation : ObservationStation - feature : Feature - value : number - timestamp : Date + constructor(observationStation: ObservationStation, feature: Feature, date: Date, value: number) + getObservationStation() : ObservationStation + getFeature() : Feature + getValue() : number + getTimeStamp() : Date } enum Timespan { LAST_YEAR, LAST_3_MONTHS, LAST_MONTH, LAST_WEEK, LAST_3_DAYS, TODAY, } class Position { - latitude : number - logitude : number + constructor(latitude: number, longitude: number) + getCoordinates(): [lat : number, lng: number] + getLatitude(): number + getLongitude(): number + toString(): string } class Feature { - id : number - nameId : string - descriptionId : string - scale : Scale - relatedWeblinkId : string - limit: number - unitOfMeasurement: string - drawableDiagramIds: string[] + constructor(id : string, nameId : string, descriptionId : string, relatedWeblinkId : string, scale : Scale, drawableDiagramIds: string[], limit: number, unitOfMeasurement: string) + getID(): number + getName(): string + getDescription(): string + getRelatedScale(): Scale + getRelatedWeblink(): string + <<async>> getDrawableDiagrams(observationStation: ObservationStation): Promise<DetailPage.Diagram[]> + getLimit(): number + getUnitOfMeasurement(): string + isLimitExeeded(observation: Observation): boolean } class Color { {static} + readonly GREEN = "#50EE70" {static} + readonly LIGHTGREEN = "#AAFF55" {static} + readonly YELLOW = "#FFFF00" {static} + readonly ORANGE = "#FFA500" {static} + readonly RED = "#FF0000" {static} + readonly WHITE = "#FFFFFF" {static} + readonly BLACK = "#000000" {static} + readonly PRIMARY {static} + readonly SECONDARY + constructor(r: number, g: number, b: number) + constructor(hex: string) + getRGB() : [number, number, number] + getHex() : string } class Scale { + constructor(linearTransition: boolean, colors : {number, string}[]) + getColor(value : number) : Color } } namespace View { namespace Components { namespace MapPage { 'View.Components.Layout.MapPage *-- View.Components.MapPage.MapView MapView *-- Search MapView *-- Map MapView *-- FeatureSelect MapView *-- FeatureInfo MapView *-- Legend class FeatureSelect { + getSelectedFeature() : Feature + onConfigurationChanged(conf : MapConfiguration) } class Search { + State.searchTerm : string + onSearch(string searchTerm) : void + onLocationSearch() : void + reset() : void } class MapView { + selectStation(station : Messstation) + getValueAt(position: Position, feature : Feature) : number + onViewportChange(viewport : Viewport) + onStationSelected(pin : MapPin) } class Map { + Props.pins : MapPin[] + Props.polygons : Polygon[] + Props.onViewportChange() + Props.handlePopup(pin : MapPin) } class Legend { + Props.scale : Scale } Map *-- StationInfo class StationInfo { + Props.station : ObservationStation } class FeatureInfo { + Props.feature : Feature } } namespace DetailPage { class ObservationStationProfile { + Props.observationStation: ObservationStation } class LocationMap { + Props.position: Position } abstract Diagram { + props.feature: Feature + props.observationStation: ObservationStation + getId() : string } class FeatureHistoryLineChart extends Diagram class YearComparisonLineChart extends Diagram class ComparisonToLastYearPieChart extends Diagram } namespace Layout { Layout *-- PageMenu PageMenu *-- LanguageMenu class MapPage class DetailPage { Props.id: string } class ErrorPage { props.errorCode : number props.errorMessage : string } class PrivacyPolicyPage class AboutPage class PageMenu class LanguageMenu class Layout } } } namespace Controller { namespace Frost { class DataProvider { + {static} getObservationStations(middle: Position, radius : number) : ObservationStation[] + {static} getLatestObservation(station : ObservationStation, feature : Feature) : Observation + {static} getObservations(station : ObservationStation, start : Date, end : Date, {static} feature : Feature, freuqency? : Frequency) : Observation[] + {static} getObservationStations(middle : Position, radius : number) : ObservationStation[] + {static} getStation(id : string) : ObservationStation } note as N1 Fassade, nur diese Klasse ist nach außen sichtbar. end note DataProvider .. N1 DataProvider --> FrostFactory DataProvider --> FrostServer abstract QueryBuilder { getQuery(options : any) : string } FrostFactory --> ResultModelConverter namespace GetObservationStation { class GetObservationStationsBuilder implements Controller.Frost.QueryBuilder { getQuery(options: GetObservationStationsOptions) : string } class GetObservationStationFactory implements Controller.Frost.FrostFactory{ GetQueryBuilder() : GetObservationStationsBuilder GetConverter() : GetObservationStationsConverter } GetObservationStationsBuilder --> GetObservationStationsOptions GetObservationStationFactory --> GetObservationStationsBuilder GetObservationStationFactory --> GetObservationStationsConverter interface GetObservationStationsOptions { middle : Position radius : number } class GetObservationStationsConverter<ObservationStation[]> implements Controller.Frost.ResultModelConverter { convert(json : string) : FrostResult<ObservationStation[]> } note as N3 GetObservationStation ist beispielhaft für alle Factorys die für die Übersicht weggelassen wurden. end note GetObservationStationFactory .. N3 } abstract ResultModelConverter<T> { convert(json : string): FrostResult<T> } abstract FrostFactory { GetConverter() : ResultModelConverter<T> GetQueryBuilder() : QueryBuilder } FrostFactory --> QueryBuilder class FrostServer { getUrl() : string setUrl(url : string) request(ff : FrostFactory, options : any) : FrostResult <<async>> asyncRequest(ff : FrostFactory, options : any) : Promise<FrostResult> } note as N2 request(new GetObservationStationsFactory(), options : GetObservationStationsOptions) { var query = ff.getQueryBuilder().getQuery(options) var json = this.send(query) var obs = ff.getConverter().convert(json) return obs } end note FrostServer .. N2 } namespace Storage { class Language { {static} + getText(id: string) : string {static} + changeLanguage(languageId : string): void {static} + getSelectedLanguageId() : string } class MapConfigurationMemory { + save(MapConfiguration conf, viewport : Viewport) + load() : (MapConfiguration, Viewport) } } MapController --> Controller.Storage.MapConfigurationMemory class MapController { + handlePopup(pin : MapPin) : [Station, Observation] + handleViewportChange(viewport : Viewport) -- + getPins() : MapPin[] + getPolygons() : Polygon[] + changeFeature(feature : Feature) : void + onConfigurationChange(mapConf : MapConfiguration) : void + search(searchTerm : string) : void + updateCurrentPosition(position : Position) : void } abstract MapConfiguration { + getPins(port : Viewport) : MapPin[] + getPolygons(port: Viewport) : Polygon[] + getScale() : Scale + getFeatures() : Feature[] } class StationConfiguration extends MapConfiguration { + setFeature(feature : Feature) } class PolygonConfiguration extends MapConfiguration { + setFeature(feature : Feature) } class NearConfiguration extends MapConfiguration { + radius : number -- + setFeature(feature : Feature) } } @enduml
false
true
true
false
class
ee434ebe34dfc7fdc72799d59d4ce41efb131648
dbe14f74ae7645ec5c9d2f7a72680dbe21b481d7
/components.puml
4c00e7b55d7eeb3dc4ae436597a339e9e47fa907
[]
no_license
khaale/hellogrpc
8b473ffece25252ed3102da89198a0d32a0116a2
8d91c467b1d5fc6fdb41c995b03aaf8ec1487a02
refs/heads/master
2023-07-25T12:01:32.182379
2019-09-28T11:16:26
2019-09-28T11:16:26
211,488,419
0
0
null
2023-07-05T20:51:35
2019-09-28T11:14:39
Go
UTF-8
PlantUML
false
false
571
puml
@startuml components actor "User" as usr component "Gateway Service" as gw <<system service>> interface "External API" as gwApi <<REST>> component "Contract Service" as ctr <<business service>> interface "Contract API" as ctrApi <<gRPC>> component "Reservation Service" as rsv <<business service>> interface "Reservation API" as rsvApi <<gRPC>> component "Saga Service" as sg <<system service>> interface "Saga API" as sgApi <<gRPC>> usr ..> gwApi gwApi -- gw gw ..> ctrApi ctrApi -- ctr ctr .> rsvApi rsvApi - rsv ctr ..> sgApi rsv ..> sgApi sgApi -- sg @enduml
false
true
false
false
sequence
347b32aba6c81b89e076d2b9209c21ce67b279b7
66189c5ec1fd3d87a5db4f281fb8eee547b62011
/com/zx/uml/composition/composition2.puml
c6661250c1c59e7d98f5bb3afefd12d945451dd8
[]
no_license
Jcduhdt/DesignPattern
27168347a85ab79a0976d2ef3ce6e8687bd01ddd
501635e4eebba510ae3d1bb26ebfdaccf76beb8c
refs/heads/master
2021-02-17T20:03:58.951599
2020-03-15T08:34:11
2020-03-15T08:34:11
245,124,068
0
0
null
null
null
null
UTF-8
PlantUML
false
false
130
puml
@startuml class Person{ idCard:IDCard Head:Head = new Head() } class Head class IDCard Person *-- Head Person o-- IDCard @enduml
false
true
false
false
class
202824ce6989afdbd7f659dc8f86b3d73518287f
ef4f9913b31c7ce6c913c8adcced062c0d5db5f9
/design-patterns/codebase/src/main/resources/uml/abstract-factory/solution-diagram-1.puml
cee8fd1cd76d27a338455e0607b770eafe0412f0
[]
no_license
lzbair/OO-Paradigm
5061211c6af19612c9d8185493898441fb92257b
ddc653bd0fe17807bcd7fd6030bb3e6b05239d99
refs/heads/master
2023-06-27T14:54:19.349718
2023-02-21T09:53:06
2023-02-21T09:53:06
238,396,539
0
1
null
2023-06-14T22:49:02
2020-02-05T07:55:12
Java
UTF-8
PlantUML
false
false
337
puml
@startuml class AbstractFactory { createProductA() createProductB() } AbstractFactory -right-> ProductA : create > AbstractFactory -left-> ProductB : create > class ProductA1 extends ProductA class ProductA2 extends ProductA class ProductB1 extends ProductB class ProductB2 extends ProductB @enduml
false
true
false
false
sequence
3e62e02132826f3560dc93ced67372a03dcd0499
beda9c9d389e567cd4a1c12b86d75a69a1eaf249
/diagrams/class/ViewClass.puml
9cb7c55f88237b9ae4bc16bddcbcea2604c907f5
[]
no_license
OmarAlghamdi/swe363-project-react
004aa3954a3c671f9ecf8cb5cb3d243046725145
805587fafe35034b97fff4232d0a85250fddcde4
refs/heads/master
2020-09-11T18:16:24.446474
2020-05-20T06:24:48
2020-05-20T06:24:48
222,149,691
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,120
puml
@startuml skinparam classAttributeIconSize 0 class Index { +Render() +Home() +View() +Search(Query : String) +JoinEvent() } class Admin { +Render() +Home() +View() +AcceptUser() +RejectUser() +BlockUser() +DeleteUser() } class EventManager { +Render() +Home() +View() +Search(Query : String) +AcceptEvent() +RejectEvent() +EditEvent() +EndEvent() } class Reports { +Render() +Home() +DisplayUser(Model : User) +DisplayEvent(Model : Event) +DisplayFeedback(Model : Feedback) } class NewEvent { +Render() +Home() +SubmitEvent(Name : String, Description: String, Dates[] : Date) +Cancel() } class EditEvent { +Render() +Home() +EditEvent(Name : String, Description: String, Dates[] : Date) +DiscardChange() } class Dashboard { +Render() +Home() +View() +Search(Query : String) +AcceptRequest() +RejectRequest() +EditActivity() +EndActivity() +CancelRequest() +EditRequest() +SendFeedback() } class Profile { +Render() +Home() +EditProfile(FName : String, LName: String, Email : String, Password : String) +DiscardChange() } class SignIn { +Render() +Home() +SignIn(Email : String, Password : String) +ForgetPassowrd() +SignUp() } class SignUp { +Render() +Home() +SignUp(FName : String, Lname : String, Email : String, Password : String) +SignIn() } class ApproveEvent { +Render() +Home() +View() +AcceptEvent() +RejectEvent() } class SendFeedback { +Render() +Home() +SubmitFeedback(Description : String) +Cancel() } class Feedbacks { +Render() +Home() +View() +Reply() } class ReplyFeedback { +Render() +Home() +SubmitReply(Description : String) +Cancel() } class ResetPassword { +Render() +Home() +ResetPassword(Email : String) } Index -- EventManager Index -left- SignIn Index -up- SignUp Index -right- Dashboard Index -- Profile SignIn -- Index : User SignIn -left- Admin : Admin SignIn -up- ResetPassword SignIn -up- SignUp Admin -up- ApproveEvent Admin -down- Reports EventManager -right- NewEvent EventManager -- EditEvent EventManager -left- Profile Dashboard -- EventManager Dashboard -- Profile Dashboard -right- Feedbacks Feedbacks -up- SendFeedback Feedbacks -right- ReplyFeedback @enduml
false
true
false
false
class
385ff738175a464aef3011e6b61957f35beef69b
897c5f0768d85d6070cbac83453eaeda84f86ab7
/SELAIN SISTEM/UML/SEQUENCE/bka/ViewSuratBKD.puml
1d7028a4513dd81f2e5dd1e641979cd399f0f1a6
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
fiqihrosady/sistem_kp
b593e68eda63e3c4b2953447a2aa8f25f33f9921
7b9060a89f852577a6f4c1ea2596b59beb5e5b77
refs/heads/master
2020-09-27T00:03:37.042300
2019-12-05T18:54:26
2019-12-05T18:54:26
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
492
puml
@startuml autonumber hide footbox title Melihat Surat BKA Actor AdminBKA boundary Dashboard_V boundary SuratBKA_V control Admin_C control BKA_C Entity SuratDisposisi_E Admin_C --> Dashboard_V: load->view() Dashboard_V --> AdminBKA: Halaman Dashboard AdminBKA --> Dashboard_V: klik menu Surat BKA Dashboard_V --> BKA_C: index() BKA_C --> SuratDisposisi_E: SuratDisposisi_E --> BKA_C: BKA_C --> SuratBKA_V: load->view() SuratBKA_V --> AdminBKA: Halaman Surat BKA @enduml
false
true
false
false
sequence
ff0bd56a1f777a482e5f835fe78e0780e5d04002
3877cd16d7549136c70b9ce882c0bbe34dd25d63
/design/diagram/gameutils_packages_full.plantuml
a04aa6ef150e929180346fe1b65162ffa11fcb64
[]
no_license
dannyhendrix/3d-race-game
580e187fd835bbd528083c11e54d3862c6232cb2
c86dec05d0abdddc63aaf21ac6264bb8d9e4c402
refs/heads/master
2023-03-26T11:35:34.701496
2021-03-22T02:12:08
2021-03-22T02:12:08
106,607,146
15
0
null
null
null
null
UTF-8
PlantUML
false
false
440
plantuml
@startuml rectangle { rectangle gameutils.gameloop as gameloop.dart rectangle gameutils.gametime as gametime.dart rectangle gameutils.gfx as gfx.dart rectangle gameutils.math as math.dart rectangle gameutils.settings as settings.dart } gameloop.dart --> dart_html gfx.dart --> dart_html gfx.dart --> package_renderlayer_renderlayer.dart math.dart --> dart_math settings.dart --> dart_html settings.dart --> dart_convert @enduml
false
true
false
false
uml-unknown
e5a2c44b23f10a3dbae90ce2020a6e5ee03cc0cc
488d17810a874ca07ea77a08a9d6958f6610e3e5
/DOCs/AzureDevOps.puml
21b40de81afb4f5cfbd994c051d4f9d10603e934
[]
no_license
etech82/poc-rxi
8598ae81b07bc38e350eb17f78070b824f7e3235
31a122f179c37f87b11297e787a6190f01212987
refs/heads/main
2023-04-30T23:33:08.200327
2021-05-06T11:04:53
2021-05-06T11:04:53
360,821,769
0
0
null
null
null
null
UTF-8
PlantUML
false
false
637
puml
@startuml title: Example Azure DevOps !define AzurePuml https://raw.githubusercontent.com/RicardoNiepel/Azure-PlantUML/master/dist !includeurl AzurePuml/AzureCommon.puml !includeurl AzurePuml/DevOps/AzureArtifacts.puml !includeurl AzurePuml/DevOps/AzureDevOps.puml !includeurl AzurePuml/DevOps/AzurePipelines.puml !includeurl AzurePuml/DevOps/AzureRepos.puml AzureDevOps(azureDevOps,"Azure DevOps","https://dev.azure.com/azure-devops-tips") AzureRepos(git,"Azure Git Repo","") AzurePipelines(pipeline,"Azure Pipeline","") AzureArtifacts(artifact,"Artifacts","") azureDevOps->git git->pipeline : Build pipeline-->artifact : Push @enduml
false
true
false
false
sequence
6cb6c73d4b4f365f6f43f8e15ca9e51f5cb72ece
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/AzureServiceBusDestination.puml
525252be65c159135f9ee1cad741a95575f3de00
[]
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
428
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 AzureServiceBusDestination [[AzureServiceBusDestination.svg]] extends Destination { type: String connectionString: String } interface Destination [[Destination.svg]] { type: String } @enduml
false
true
false
false
class
6222b69f89dd454b7a379f4c28ea463617638eb8
fa713460b1f3004d5691e7c15a0d275b205ef851
/diagram/Todoc_Data _Diagram.puml
bee3ea9339ff2ee22632ffdbd3a6d53a586d5c88
[]
no_license
Philippe-DEBANDE/OC-DevAndroid-Projet5
d513cac4f0fb32445b44edd3eea39937eb08cf18
b9cf9c1005b79c9714fa6fd6e0a5ef9c861e7d08
refs/heads/master
2022-11-28T07:06:10.580004
2020-08-02T15:18:32
2020-08-02T15:18:32
284,226,422
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,535
puml
@startuml !define LIGHTBLUE !includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml skinparam roundcorner 20 title __Todoc DATA Diagram__\n namespace com { namespace cleanup.todoc { namespace database { abstract class com.cleanup.todoc.database.TodocDatabase { {static} - DBNAME : String {static} - INSTANCE : TodocDatabase {static} + getInstance() {abstract} + projectDao() {abstract} + taskDao() {static} - prepopulateDatabase() } } } } namespace com { namespace cleanup.todoc { namespace database { namespace dao { interface com.cleanup.todoc.database.dao.ProjectDao { {abstract} + getProject() {abstract} + getProjects() {abstract} + insertProject() } } } } } namespace com { namespace cleanup.todoc { namespace database { namespace dao { interface com.cleanup.todoc.database.dao.TaskDao { {abstract} + deleteTask() {abstract} + getTask() {abstract} + getTasks() {abstract} + insertTask() {abstract} + updateTask() } } } } } namespace com { namespace cleanup.todoc { namespace injection { class com.cleanup.todoc.injection.Injection { {static} + provideExecutor() {static} + provideProjectDataSource() {static} + provideTaskDataSource() {static} + provideViewModelFactory() } } } } namespace com { namespace cleanup.todoc { namespace injections { class com.cleanup.todoc.injections.ViewModelFactory { - executor : Executor + ViewModelFactory() + create() } } } } com.cleanup.todoc.injections.ViewModelFactory .up.|> android.arch.lifecycle.ViewModelProvider.Factory com.cleanup.todoc.injections.ViewModelFactory o-- com.cleanup.todoc.repositories.ProjectDataRepository : projectDataSource com.cleanup.todoc.injections.ViewModelFactory o-- com.cleanup.todoc.repositories.TaskDataRepository : taskDataSource namespace com { namespace cleanup.todoc { namespace list { class com.cleanup.todoc.list.TaskViewModel { - currentProject : LiveData<Project> - executor : Executor - projects : LiveData<List<Project>> + TaskViewModel() + createTask() + deleteTask() + getProjects() + getTasks() + init() + updateTask() } } } } com.cleanup.todoc.list.TaskViewModel -up-|> android.arch.lifecycle.ViewModel com.cleanup.todoc.list.TaskViewModel o-down- com.cleanup.todoc.repositories.ProjectDataRepository : projectDataSource com.cleanup.todoc.list.TaskViewModel o-down- com.cleanup.todoc.repositories.TaskDataRepository : taskDataSource com.cleanup.todoc.database -up- com.cleanup.todoc.database.dao.ProjectDao com.cleanup.todoc.database -up- com.cleanup.todoc.database.dao.TaskDao com.cleanup.todoc.repositories.ProjectDataRepository -down- com.cleanup.todoc.database.dao.ProjectDao com.cleanup.todoc.repositories.TaskDataRepository -down- com.cleanup.todoc.database.dao.TaskDao @enduml
false
true
false
false
class
0177f4792a19b1afaccf82e046e2432c7ffd67ff
8db2d9ad6f642baaf6471d27da4134e80139ff37
/Documents/SQ/Authentication/Login/index.puml
57011e5c9d0c691a0c05f41baa7f41e64df27871
[]
no_license
lamhan3012cmvn/Document__2School
2be65b8650850679d2e02390909b6a19df253999
564bd04013328d909fb4e7dc5b582260cd3abae8
refs/heads/master
2023-08-11T16:35:49.270022
2021-09-19T15:01:02
2021-09-19T15:01:02
398,733,954
2
0
null
null
null
null
UTF-8
PlantUML
false
false
666
puml
@startuml Login actor Guest as g actor User as u participant Mobile as fe participant Server as sv participant TokenService as token database Mongo as db g --> fe: Nhap_UserName_Pass fe --> sv: Send Api Login alt valdateDataApi (false) sv --> fe: Format data false end sv --> db: Kiểm tra tồn tại\n userName and Password db --> sv: user alt userName and Password (false) sv --> fe: UserName or Password wrong end sv --> token: gửi data tạo token token --> sv: gửi token về sv sv --> fe: gửi data \nđăng nhập thành công fe --> g: Thông báo cho guest alt Đăng nhập thành công(true) g --> u: Đăng nhập thành công end @enduml
false
true
true
false
usecase
682b9a20d73db8d633dfb851b6923a386ad48ecd
6d2ab6d2cc2157c1c0b744cb5e3d682597335b3a
/res/diagrams/pipeline/pipeline.plantuml
eda5acac4a606e374cfe0ec1e7a36b23f9ceba64
[]
no_license
chlablak/platinum-parsing
319ca41be2c352831c5c3fab47c6299ee118568f
2b8be943267a1305b4d295429d3702370f9ff153
refs/heads/master
2021-08-22T06:17:24.976284
2017-11-29T13:38:24
2017-11-29T13:38:24
84,449,306
1
0
null
null
null
null
UTF-8
PlantUML
false
false
552
plantuml
@startuml skinparam monochrome true rectangle { rectangle "EBNF" as ebnf rectangle "CLI" as cli1 actor "conceptor" as conceptor } rectangle { rectangle "rules" as rules rectangle "output" as output rectangle "..." as other rectangle "CLI" as cli2 actor "developper" as developper actor "maintainer" as maintainer } rectangle { rectangle "executable" as exe actor "user" as user } rectangle "framework" as framework ebnf -> cli1 cli1 -> rules rules --> cli2 output --> cli2 other --> cli2 framework -> cli2 cli2 -> exe @enduml
false
true
false
false
sequence
b848d5f79638699bcf231a1266436101bb4fb004
a0bd57662aa71c5c4ae36329e85474b1dbca477e
/model.plantuml
eee0c156b3fb7762ae22e9fcb8cea98df0eb8842
[]
no_license
Vendetta01/python-fints-downloader
a1abc1cbc48e28c7986d48b5fa93b45c68d021a7
d85a5bb26957646eb529d4f1ec18da56d0fec4d0
refs/heads/main
2023-03-04T15:46:56.113946
2021-02-15T19:53:31
2021-02-15T19:53:31
325,778,561
0
0
null
2021-02-15T19:53:31
2020-12-31T10:45:38
Python
UTF-8
PlantUML
false
false
2,122
plantuml
@startuml fints_downloader_model object BaseModel BaseModel : id[PK]: STRING(64) BaseModel : last_update: DATETIME object FinTSDownloaderBackend FinTSDownloaderBackend : name: STRING(1024) FinTSDownloaderBackend : server: STRING(1024) FinTSDownloaderBackend : port: NUMBER(30) FinTSDownloaderBackend : base_url: STRING(1024) object BankLogin BankLogin : name: STRING(1024) BankLogin : user_id: STRING(1024) BankLogin : password: STRING(1024) BankLogin : tan_mechanism: STRING(3) BankLogin : bic: STRING(11) BankLogin : code: NUMBER(8) BankLogin : server: STRING(1024) object Account Account : bank_login_id[FK]: STRING(64) Account : iban: STRING(34) Account : number: NUMBER(30) Account : bic: STRING(11) Account : type: ENUM Account : name: STRING(256) Account : init_balance NUMBER(32,2) object Balance Balance : account_id[FK]: STRING(64) Balance : amount: NUMBER(32,2) Balance : currency: ENUM Balance : valid_datetime: DATETIME object Holding Holding : account_id[FK]: STRING(64) Holding : ISIN: STRING(12) Holding : WKN: STRING(6) Holding : name: STRING(256) Holding : market_value: NUMBER(32,2) Holding : value_symbol: STRING(8) Holding : valuation_date: DATE Holding : pieces: NUMBER(30) Holding : total_value: NUMBER(32,2) Holding : acquisitionprice: NUMBER(32,2) object Transaction Transaction : amount: NUMBER(32,2) Transaction : currency: ENUM Transaction : src_id[FK]: STRING(64) Transaction : dst_id[FK]: STRING(64) Transaction : date: DATE Transaction : posting_text: STRING(128) Transaction : purpose: STRING(1024) Transaction : transaction_code NUMBER(30,0) object Tag Tag : name[PK]: STRING(1024) Tag : pattern: STRING(1024) object Category Category : name[PK] STRING(1024) BaseModel <|-- FinTSDownloaderBackend BaseModel <|-- BankLogin BaseModel <|-- Account BaseModel <|-- Balance BaseModel <|-- Holding BaseModel <|-- Transaction BankLogin "1" -- "0..*" Account Account "1" -- "0..*" Balance Account "1" -- "0..*" Holding Account "1" -- "0..*" Transaction : "src" Account "0..1" -- "0..*" Transaction : "dst" Transaction "0..n" -- "0..m" Tag Transaction "0..n" -- "0..1" Category @enduml
false
true
false
false
class
3cad506d6328a7d2561421acac864bb778af1587
b7d2ba71058efa46eff4ed885324819fb3f99266
/src/doc/CLI_Controllers/HouseMonitoring/US633/US633_cd_HouseMonitoring.puml
ebc4903f02d85dbe1bf19617b2983d2088365fa9
[]
no_license
Almadanmp/backend4
3aaa5cbe453041917a510ceee83bf318499a9823
07ab3c1af9c7de6ff35cf23bf44b0e664db82f46
refs/heads/master
2022-11-25T10:30:27.184246
2019-06-30T19:26:12
2019-06-30T19:26:12
194,547,877
0
0
null
2022-11-16T11:54:00
2019-06-30T18:24:24
Java
UTF-8
PlantUML
false
false
2,150
puml
@startuml title US633 Class Diagram skinparam titleBorderRoundCorner 10 skinparam titleBorderThickness 2 skinparam titleBorderColor indianred skinparam titleBackgroundColor ivory skinparam FontName verdana skinparam class { BorderColor indianred BackgroundColor indianred BackgroundColor ivory roundcorner 10 ArrowFontName Verdana ArrowColor indianred ArrowFontColor darkslategrey } class House MainUI -- HouseMonitoringUI : > HouseMonitoringUI -- InputUtils : > HouseMonitoringUI -- HouseMonitoringController : > HouseMonitoringController -- House : > House "1" -- "1" GeographicArea : has > GeographicArea "1" -- "1" SensorList : has > SensorList"1" -- "0.n" Sensor : may have > Sensor "0.n" -- "1" Location: is in > Sensor "0.n" -- "1" TypeSensor: has > Sensor "1" -- "1" ReadingList: has > class HouseMonitoringUI { runUS633(House) getStartDate() getEndDate() updateAndDisplayUS633() } class InputUtils{ getInputYearMonthDay() } class HouseMonitoringController { getHighestTempAmplitudeDate() getHighestTempAmplitudeValue() } class House{ motherArea; getClosestSensorOfGivenType(String) getMinDistanceToSensorOfGivenType(String) } class GeographicArea{ SensorList; getSensorsOfGivenType() } class SensorList{ List<Sensor> sensors ReadingList areaReadingList getSensorListByType(String) getSensorsByDistanceToHouse(House, double) getMostRecentlyUsedSensor() getMostRecentReadingDate() } class Sensor{ TypeSensor; Local; getSensorTypeName() getDistanceToHouse(House) getLinearDistanceBetweenLocalsInKm(Location) getDateHighestAmplitudeBetweenDates(Date, Date) } class TypeSensor{ name; getName() } class Location{ double latitude; double longitude; getLinearDistanceBetweenLocalsInKm(Location) } class ReadingList{ List<Reading> readings; getMostRecentReadingDate() getMostRecentReading() getDateHighestAmplitudeBetweenDates(Date, Date) getReadingListBetweenDates(Date, Date) isReadingDateBetweenTwoDates(Date, Date, Date) getAmplitudeValueFromDate(Date) getValuesOfSpecificDayReadings(Date) getFirstSecondOfDay(Date) getLastSecondOfDay(Date) compareDayMonthAndYearBetweenDates(Date, Date) } @enduml
false
true
false
false
class
2f2b76ee1b7e62174fb6e23d72f473cd4dcc27c3
13720a9dec76ae2581af0560080984ffd94d7003
/src/site/markdown/plantuml/pom_projects.puml
fc8eb74edb00c647e45a9453772de0dc4f5472c7
[]
no_license
Shauqra/mithlond-codestyle
6aac27bc744603699498748f49bf10af5e7f97b5
ca8d8b11be5409ee1d5ec2a20a8c2be87edc80a3
refs/heads/master
2021-01-24T01:13:56.594804
2015-08-02T16:13:45
2015-08-02T16:13:45
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,775
puml
@startuml skinparam component { BackgroundColor<<Reactor>> #EEEEFF BorderColor<<Reactor>> black } package mithlond-reactor { component "mithlond-reactor-parent" <<Reactor>> [mithlond-reactor-parent] ..down.> [mithlond_poms] : has modules package poms as mithlond_poms { component "mithlond-parent" component "mithlond-api-parent" component "mithlond-model-parent" component "mithlond-war-parent" [mithlond-parent] <|-down- [mithlond-api-parent] : parent [mithlond-api-parent] <|-down- [mithlond-model-parent] : parent [mithlond-model-parent] <|-down- [mithlond-war-parent] : parent } } package foo-reactor { component "foo-reactor-parent" <<Reactor>> [foo-reactor-parent] .down.> [foo-someservice-component] : has modules [mithlond-reactor-parent] <|- [foo-reactor-parent] : parent package foo-someservice-component { component "foo-someservice-model" component "foo-someservice-api" component "foo-someservice-impl-ejb" component "foo-someservice-restful-war" [mithlond-parent] <|-left- [foo-someservice-impl-ejb] : parent [mithlond-api-parent] <|-left- [foo-someservice-api] : parent [mithlond-model-parent] <|-left- [foo-someservice-model] : parent [mithlond-war-parent] <|-left- [foo-someservice-restful-war] : parent [foo-someservice-model] <-down- [foo-someservice-api] : compile [foo-someservice-api] <-down- [foo-someservice-impl-ejb] : compile [foo-someservice-api] <-down- [foo-someservice-restful-war] : compile [foo-someservice-impl-ejb] <.down. [foo-someservice-restful-war] : runtime injected } } @enduml
false
true
false
false
component
93dfbabb518938e2ad444b7b9f4c592ce82bf9e3
a3769b4806d0b48bfaf25aaa7b56fa46671e78c2
/app/src/main/java/com/myapp/organizeteam/DataManagement/DataManagement.plantuml
69b0989f36575999c49bd129613f6623dcb9183f
[]
no_license
ofekgani/OrganizeTeam
6197e777b897f3c43c0e1987555e42aa4c374356
684b01601133fcf17313a3ed44c51ca6fda1f0d7
refs/heads/master
2023-06-04T17:23:47.310007
2021-06-23T00:51:45
2021-06-23T00:51:45
292,112,888
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,060
plantuml
@startuml title __DATAMANAGEMENT's Class Diagram__\n namespace com.myapp.organizeteam.DataManagement { class com.myapp.organizeteam.DataManagement.Authorization { {static} + isManager : boolean ~ activityTransition : ActivityTransition ~ dataExtraction : DataExtraction + createNewUser() + createUser() + getUserID() + isEmailVerified() + login() + sendVerifyPhoneNumber() + sendVerifyPhoneNumber() + signInWithPhoneNumber() + singOut() + singOut() - sendTo() } } namespace com.myapp.organizeteam.DataManagement { class com.myapp.organizeteam.DataManagement.DataExtraction { + deleteData() + deleteToken() + deleteValue() + deleteValue() + getAllMeetingsByTeam() + getAllPostsByTeam() + getAllRolesByTeam() + getAllRolesByUser() + getAllTasksByTeam() + getAllUsersByTeam() + getChildsByKey() + getCurrentUserData() + getDeletedMeetingsByKeys() + getDeletedTasksByKeys() + getKeysByStatus() + getMeetingsByID() + getMeetingsByUser() + getPermissions() + getPostsByID() + getPostsByUser() + getRejects() + getResponse() + getResponsesOfSubmitter() + getSubmitter() + getSubmitters() + getTasksByID() + getTasksByUser() + getTeamDataByID() + getTeams() + getToken() + getUserDataByID() + getUsersByConfirmations() + getUsersByKeys() + getUsersByRoles() + hasChild() + hasChild() + hasChild() + isValueExist() + pushNewData() + setNewData() + setNewData() + setNewData() + setObject() + setObject() + setObject() + uploadPicture() - getDatabaseReference() - getListPermissions() - getRolesByID() - getRolesResult() - getTeamID() - getToken() - getValue() - removeDuplicateFromList() } } namespace com.myapp.organizeteam.DataManagement { interface com.myapp.organizeteam.DataManagement.DataListener { {abstract} + onDataDelete() } } namespace com.myapp.organizeteam.DataManagement { class com.myapp.organizeteam.DataManagement.DataPass { {static} + passData : Map<String, Object> } } namespace com.myapp.organizeteam.DataManagement { interface com.myapp.organizeteam.DataManagement.IRegister { {abstract} + onDone() {abstract} + onProcess() } } namespace com.myapp.organizeteam.DataManagement { interface com.myapp.organizeteam.DataManagement.ISavable { {abstract} + onDataRead() } } 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
false
true
false
false
class
322fbc41a9519534d895ea99fa9b0aacf63f2e7d
bf49d55ccb1e5a55ad63de65366e8874f2258d94
/Digital_House-Certified_Tech_Developer/Backend_I/Responsability_chain_pattern/Sistema_mensajería_gubernamental/src/Sistema_mensajería_gubernamental.puml
8424862b00f17f54a016fe1577bef6bd1d92a740
[]
no_license
hfelipeserna/hfelipeserna.github.io
339f18c116db2738c3e093b748f7c9d746ad1eb5
9b643803f672bf4b34add22644919198e50da06d
refs/heads/main
2023-09-03T19:09:33.411053
2021-10-26T14:23:59
2021-10-26T14:23:59
359,453,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,167
puml
@startuml 'https://plantuml.com/class-diagram '___________STYLES___________ title UML - Sistema gubernamental de mensajería interna skinparam classAttributeIconSize 0 skinparam backgroundColor White skinparam RoundCorner 10 skinparam Shadowing true skinparam class { ArrowColor Black BackgroundColor White HeaderBackgroundColor Gray BorderColor Black FontColor White FontSize 14 AttributeFontSize 12 } skinparam object{ ArrowColor Black BackgroundColor White BorderColor Black FontColor Black FontSize 14 AttributeFontSize 12 } skinparam note { BackgroundColor LightYellow BorderColor Black } '___________UML___________ package model { enum TipoDeDocumento { RESERVADO(1) SECRETO(2) MUY_SECRETO(3) -nivelDeAcceso: int -TipoDeDocumento(int nivel) +getNivelDeAcceso(): int } class Documento { -contenido: String -tipo: TipoDeDocumento +Documento(String contenido, TipoDeDocumento tipo) +getContenido(): String +setContenido() +getTipo(): TipoDeDocumento +setTipo() +toString() } } package service { abstract FuncionarioPublico { - siguienteFuncionarioPublico: FuncionarioPublico - tipoDeAutorización: TipoDeDocumento +{abstract}leerDocumento(Documento documento) +getSiguienteFuncionarioPublico(): FuncionarioPublico +setSiguienteFuncionarioPublico(FuncionarioPublico siguienteFuncionarioPublico) +getTipoDeAutirización(): TipoDeDocumento +setTipoDeAutorización(TipoDeDocumento tipoDeAutorización) } class Diputado { +Diputado(Tipo autorización) +leerDocumento(Documento documento) } class Ministro { +Ministro(Tipo autorización) +leerDocumento(Documento documento) } class Presidente { +Presidente(Tipo autorización) +leerDocumento(Documento documento) } class CadenaDeManejadores { -manejadorInicial: FuncionarioPublico +CadenaDeManejadores() +getManejadorInicial(): FuncionarioPublico +setManejadorInicial(FuncionarioPublico manejadorInicial) } } model <.. service Documento *- TipoDeDocumento FuncionarioPublico <- FuncionarioPublico FuncionarioPublico <|-- Diputado FuncionarioPublico <|-- Ministro FuncionarioPublico <|-- Presidente CadenaDeManejadores .> FuncionarioPublico @enduml
false
true
true
false
class
9648303aae082adad7cb9bd6f5c0e63cc4c07a60
4e66b60562009e54e3249595d08d88573c1d7fba
/test/PlantUmlClassDiagramGeneratorTest/uml/Attributes.puml
5a9954a912e8ff3be8d792524b1db7f1aa0f3f8b
[ "MIT" ]
permissive
pierre3/PlantUmlClassDiagramGenerator
a17a7ec5e3b547b0a9d5afee1d74436c6d602782
00bd84d543a14f05c95857426060e677c4668cc8
refs/heads/master
2023-07-06T01:15:15.436366
2023-05-31T13:39:56
2023-06-02T10:24:02
41,860,665
598
123
MIT
2023-08-20T06:56:51
2015-09-03T13:17:42
C#
UTF-8
PlantUML
false
false
760
puml
@startuml class Parameters { + A : string <<get>> <<set>> + B : string <<get>> <<set>> } class MyClass { + ReadOnlyItems : IReadOnlyCollection<Item> <<get>> + Run(p:Parameters) : void + MyClass(logger:ILogger) } class MyStruct <<struct>> { + MyStruct(p:Parameters) } class MyRecord <<record>> { + name : string <<get>> <<init>> } class MyStructRecord <<record>> <<struct>> { } class ClassA { + ClassA(logger:ILogger) } MyClass o-- "0..*" Item : "Items" MyClass "1" *-- "0..*" IItem : "ItemDictionary" MyClass ..> Parameters : "use" MyClass ..> ILogger : "Injection" MyStruct o-- "0..*" int : "intCollection:List<int>" MyRecord o-- Settings MyStructRecord o-- "Name" string ClassA --> "ILogger<ClassA>" : ""\escape "" @enduml
false
true
true
false
sequence
5f28544571b3046e8505351eb972b93442f09ff1
611d84c7ba4dd20baa8582353030ad115d95e446
/PlantUML/frontend.plantuml
faaf28e660b98d7b13894cee2fa8aacfa5bbde99
[]
no_license
bendotto/business-operations-framework-docs
7de699102e4b43d4b4bdfe522d81f629c2c19264
ac8d60db648d6ab51a019f50c6228952a2445736
refs/heads/main
2023-08-03T03:30:23.859728
2021-09-28T07:31:59
2021-09-28T07:31:59
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,300
plantuml
@startuml actor Browser as user participant "BizOps Frontend" as frontend participant "Ory Kratos" as kratos participant "Identity & Key Management" as wso2 boundary "Ory Oathkeeper" as oathkeeper participant "Ory Keto" as keto participant "BC Operational API" as backend user -> frontend : visits frontend -> kratos : checks cookie alt already logged in kratos -> frontend : 200 and whoami frontend -> oathkeeper : some request oathkeeper -> kratos : verify cookie kratos -> oathkeeper : returns subject oathkeeper -> keto : verify subject permission on API keto -> oathkeeper : authorized oathkeeper -> backend : forward request backend -> oathkeeper : respond oathkeeper -> frontend : respond frontend -> user : display else not logged in kratos -> frontend : 401 frontend -> user : redirect to kratos login user -> kratos : request login group standard OIDC authorization code flow kratos -> user : redirect to configured OIDC login note right: via shim user -> wso2 : actual login wso2 -> user : redirect to kratos user -> kratos : request login finish kratos -> wso2 : retrieve identity info kratos -> user : set cookie and redirect to frontend user -> frontend : visits note right: now we're back at the top end end @enduml
false
true
false
false
sequence
546c3cb388c3296211ff4eb2ba10dc8c95b01f26
ea92b794f64577cf3f9895848ed841a2482a6d1e
/docs/assets/images/FinishDate-umlClassDiagram-58.puml
27d5296866f31a0bc375662f3cfecb05800542c1
[ "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
343
puml
@startuml hide empty methods hide empty fields class "FinishDate" { +props : FinishDateProps +equals(vo: ValueObject<FinishDateProps>) : boolean {static} +create(finishDate: Date | null) : FinishDate } abstract class "ValueObject" { +props : T +equals(vo: ValueObject<T>) : boolean } "ValueObject" <|-- "FinishDate" @enduml
false
true
false
false
class
f4ab4ca134277d59444403911ece3aa7f00b0e20
72040a18986c65b0fe8976c2b91788854efb7428
/exercise41/docs/UML41.puml
49f4dc1384ba09be4899a28aeb945b7abf6f3889
[]
no_license
Srignan/Paruchuru-a04
e258ff764df1444f296cf237f47575403a804fa5
f9f99298fef4ddc606bac000ab86acd41710f1bb
refs/heads/main
2023-08-31T14:40:25.589842
2021-10-18T03:14:07
2021-10-18T03:14:07
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
405
puml
/* * UCF COP3330 Fall 2021 Assignment 4 Solutions * Copyright 2021 Srignan Paruchuru */ @startuml class Solution41 { -names: ArrayList<String> -count: int +main() +obj = Read() object +w = Write() object } class Read { +getnames() +getcount() } class Write { +write_to_file() } Solution41 "get names and count from Read()" --- Read Solution41 "use Write() to create output file"--- Write @enduml
false
true
false
false
class
095d204432f6ce765a1504bc7ca21698211aba4c
79de867edbdb1f7d01f04b2082a435c6a937fccf
/app/app.plantuml
f201776699f918f45f278a26986a6eeb17e2eb04
[]
no_license
lyp82nlf/ChangeSkin
8cb28bf4c77b05ddf14e36623ea538cfed84fd20
39c5c308195b17c06ed3ab39184dc5d0d1893762
refs/heads/master
2022-10-20T04:00:52.938136
2020-06-09T10:30:37
2020-06-09T10:30:37
270,576,558
0
0
null
null
null
null
UTF-8
PlantUML
false
false
329
plantuml
@startuml title __APP's Class Diagram__\n namespace com.dsg.skindemo { class com.dsg.skindemo.BuildConfig { } } 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
false
true
false
false
class
3578f1f6112e7151092db3ad13c9692df9d5e01d
e6b2ab21ea09c529fa8abfb6232b6062930e9f47
/Behavioral/Command/puml/Command.puml
7002318ade2f104808e8fafd23e49aab1c622972
[]
no_license
m1c1b/GOF-Patterns
6d94e469ce1699037f9c90d8f5c8583d09a49fd3
12ecddf67b05d3ba7b81d806e7c5462024a08d68
refs/heads/master
2021-03-05T01:35:51.729512
2020-03-22T15:07:01
2020-03-22T15:07:01
246,084,607
3
0
null
null
null
null
UTF-8
PlantUML
false
false
145
puml
@startuml abstract class Command { + Command(receiver:Receiver) + {abstract} Execute() : void } Command --> "_receiver" Receiver @enduml
false
true
false
false
class
85876670ac42f6a2d44d397d42f0bbf913cdf6b6
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
/build/installment-sale@0.6.0.puml
0e64ef87d06b9c4681e6bb55ee8d077aacdfe3c8
[ "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
1,744
puml
@startuml class org.accordproject.installmentsale.Installment << (T,yellow) >> { + Double amount } org.accordproject.installmentsale.Installment --|> org.accordproject.cicero.runtime.Request class org.accordproject.installmentsale.ClosingPayment << (T,yellow) >> { + Double amount } org.accordproject.installmentsale.ClosingPayment --|> org.accordproject.cicero.runtime.Request class org.accordproject.installmentsale.Balance << (T,yellow) >> { + Double balance + Double total_paid } org.accordproject.installmentsale.Balance --|> org.accordproject.cicero.runtime.Request class org.accordproject.installmentsale.ContractStatus << (E,grey) >> { + WaitingForFirstDayOfNextMonth + Fulfilled } class org.accordproject.installmentsale.MyObligation { + String party } org.accordproject.installmentsale.MyObligation --|> org.hyperledger.composer.system.Event class org.accordproject.installmentsale.PaymentObligation { + Double amount } org.accordproject.installmentsale.PaymentObligation --|> org.accordproject.installmentsale.MyObligation class org.accordproject.installmentsale.InstallmentSaleState << (A,green) >> { + ContractStatus status + Double balance_remaining + Integer next_payment_month + Double total_paid } org.accordproject.installmentsale.InstallmentSaleState --|> org.accordproject.cicero.contract.AccordContractState class org.accordproject.installmentsale.InstallmentSaleContract << (A,green) >> { + String BUYER + String SELLER + Double INITIAL_DUE + Double INTEREST_RATE + Double TOTAL_DUE_BEFORE_CLOSING + Double MIN_PAYMENT + Double DUE_AT_CLOSING } org.accordproject.installmentsale.InstallmentSaleContract --|> org.accordproject.cicero.contract.AccordContract @enduml
false
true
false
false
class
d37791564f0d164c3783d30ae21d50f868cb6f54
b7d2ba71058efa46eff4ed885324819fb3f99266
/src/doc/CLI_Controllers/EnergyConsumption/US730/US730_sd_EnergyConsumption.puml
2de80d0a96d72fc445b4de0b10933efc7bdf7a49
[]
no_license
Almadanmp/backend4
3aaa5cbe453041917a510ceee83bf318499a9823
07ab3c1af9c7de6ff35cf23bf44b0e664db82f46
refs/heads/master
2022-11-25T10:30:27.184246
2019-06-30T19:26:12
2019-06-30T19:26:12
194,547,877
0
0
null
2022-11-16T11:54:00
2019-06-30T18:24:24
Java
UTF-8
PlantUML
false
false
2,274
puml
@startuml actor PowerUser PowerUser -> EnergyConsumptionUI: runUS730 alt EnergyGrid activate EnergyConsumptionUI EnergyConsumptionUI -> inputHelperUI ref over inputHelperUI selectGrid end ref activate inputHelperUI ref over inputHelperUI selectInitialTime end ref ref over inputHelperUI selectFinalTime end ref EnergyConsumptionUI -> EnergyConsumptionController: getGridLogsInInterval(grid) deactivate inputHelperUI activate EnergyConsumptionController EnergyConsumptionController -> EnergyGrid: getLogsInInterval activate EnergyGrid ref over EnergyGrid getLogsInInterval end ref EnergyGrid --> EnergyConsumptionUI: return LogList deactivate EnergyGrid deactivate EnergyConsumptionController else Room EnergyConsumptionUI -> inputHelperUI activate inputHelperUI ref over inputHelperUI select Room end ref ref over inputHelperUI selectInitialTime end ref ref over inputHelperUI selectFinalTime end ref EnergyConsumptionUI -> EnergyConsumptionController: getRoomLogsInInterval(room) deactivate inputHelperUI activate EnergyConsumptionController EnergyConsumptionController -> Room: getLogsInInterval; activate Room ref over Room getLogsInInterval end ref Room --> EnergyConsumptionUI: return LogList; deactivate EnergyConsumptionController deactivate Room else Device EnergyConsumptionUI -> inputHelperUI activate inputHelperUI ref over inputHelperUI selectRoom end ref ref over inputHelperUI selectDevice end ref ref over inputHelperUI selectInitialTime end ref ref over inputHelperUI selectFinalTime end ref EnergyConsumptionUI -> EnergyConsumptionController: getDeviceLogsInInterval(device) deactivate inputHelperUI activate EnergyConsumptionController EnergyConsumptionController -> Device: getLogsInInterval activate Device ref over Device getLogsInInterval end ref Device --> EnergyConsumptionUI: return LogList deactivate Device deactivate EnergyConsumptionController end EnergyConsumptionUI -> EnergyConsumptionController: buildString(LogList) activate EnergyConsumptionController EnergyConsumptionController -> LogList: toString() activate LogList LogList --> EnergyConsumptionUI: return String deactivate LogList deactivate EnergyConsumptionController EnergyConsumptionUI -> PowerUser: display logs as list with date and value deactivate EnergyConsumptionUI @enduml
false
true
false
false
usecase
ac6e85aa3a5687d1e3623de36daaede4f94cb49d
7e76778bf9a2540a68e2f05ad6ad32f99fc70bed
/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.puml
59c14df6eb4cb0f9265ce6bd45410e7e524360ad
[]
no_license
JosipSkrlec/TVZ_GuestBook
e047760cd605d9d433406edc09f3f24d8a6c3ba3
1455332d4b71d615ea38db23698b31741289b056
refs/heads/main
2023-07-16T18:40:16.758495
2021-08-28T12:42:11
2021-08-28T12:42:11
347,311,742
0
0
null
null
null
null
UTF-8
PlantUML
false
false
65
puml
@startuml class DOTweenModuleUnityVersion <<static>> { } @enduml
false
true
false
false
class
710e320c333271f5219b87ab1724446f3471a9ed
c417d80f62ec26bcb06a9619ff9b5c35c54190fe
/demos/src/main/java/com/kco/pattern/factory/demo3/抽象工厂方法1.puml
fbe46793d6185928554bb61b3f2983acbe2dab1a
[]
no_license
kco1989/examples
370f95d6e599af4551c17a38745cc9cdf2350917
daa9197c8ddc846615fc9339001a81b48d8b851a
refs/heads/master
2021-01-20T14:23:56.770073
2018-05-25T03:43:19
2018-05-25T03:43:19
90,605,536
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,053
puml
@startuml interface Wheel { void description(); } interface Surface { void description(); } interface Engine { void description(); } class BmwWheel implements Wheel { void description(); } class BydWheel implements Wheel { void description(); } class BmwSurface implements Surface { void description(); } class BydSurface implements Surface { void description(); } class BmwEngine implements Engine { void description(); } class BydEngine implements Engine { void description(); } interface CarFactory { Wheel createWheel(); Engine createEngine(); Surface createSurface(); } class BmwCarFactory implements CarFactory{ Wheel createWheel(); Engine createEngine(); Surface createSurface(); } class BydCarFactory implements CarFactory{ Wheel createWheel(); Engine createEngine(); Surface createSurface(); } BmwCarFactory ..> BmwWheel BmwCarFactory ..> BmwSurface BmwCarFactory ..> BmwEngine BydCarFactory ..> BydWheel BydCarFactory ..> BydSurface BydCarFactory ..> BydEngine @enduml
false
true
false
false
class
b107f7dc899674e42fbdc9ffcf6ac8d10116abb6
41e335a2ded65f95ece1c413fe9d465df1d198b4
/lib/Environment/DevEnvironmentBase/src/main/java/dev/environment/listener/listener.plantuml
21ffc2a8424917faf747959d4b2c17e36c59161e
[ "Apache-2.0" ]
permissive
tulensayyj/DevUtils
ea40e897de72b88591cc1f1cea798eb74175eda8
3bc39eaf343c811270bc01e223cd37e80db9e04c
refs/heads/master
2022-11-27T05:08:28.115620
2020-07-27T13:24:50
2020-07-27T13:24:50
281,569,859
0
0
Apache-2.0
2020-07-22T03:59:24
2020-07-22T03:59:23
null
UTF-8
PlantUML
false
false
414
plantuml
@startuml title __LISTENER's Class Diagram__\n namespace dev.environment.listener { interface dev.environment.listener.OnEnvironmentChangeListener { {abstract} + onEnvironmentChanged() } } 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
false
true
false
false
class
8b79d02b4c829c0b81ecd77769dd6f843c4aae89
690e043221167b0f9f998d5a199845c19d39e53a
/Artefatos/Diagramas/Pacote/Diagrama_Pacotes_Devflix.puml
2a9123b1c7ecb3df07f2e57af991c9f9ea7d1bcd
[ "MIT" ]
permissive
MurylloEx/DevFlix-PSW
ef94d023ffe22b746331e19aa1e816fb08fb12ae
89543abf1ffb60116c650786e7f3ca26cb28a209
refs/heads/main
2023-04-24T11:43:47.931949
2021-03-29T13:51:21
2021-03-29T13:51:21
340,370,650
0
0
null
null
null
null
UTF-8
PlantUML
false
false
729
puml
@startuml PackageDiagram left to right direction package "Camada de Aplicação" as CamadaDeApresentação { package Views package React } package "Lógica de Aplicação" as LógicaDaAplicação { package Objetos_de_controle package "Lógica de Negócio" as LógicaDeNegócio { package "Vídeo e categoria de vídeos" package Autenticação package Administração } } package Dados { package SGBD package Motor_de_pesquisa package Sistema_de_arquivos } Views <.. React Views .down.> Objetos_de_controle SGBD <.. Motor_de_pesquisa Motor_de_pesquisa ..> Sistema_de_arquivos Objetos_de_controle <..> LógicaDeNegócio LógicaDeNegócio .up.> Motor_de_pesquisa @enduml
false
true
true
false
class
2c22e8aa4e5c34dd3dbc62ee0d29f5d2db7ebd19
54ebd9eb2ddadc17b215617d96fac1f93f4acfef
/behavioral/mediator/mediator.puml
165e63735585bf4738f667ac743c1974558012a7
[]
no_license
cesarkohl/design-patterns
acb42191662c141f064d9c90426dfd4491d43dfe
991f83d0076b0a69e9d6b7c1163cf49fde3bfcbf
refs/heads/main
2023-06-11T07:16:18.484116
2023-05-28T14:41:01
2023-05-28T14:41:01
199,520,479
4
0
null
null
null
null
UTF-8
PlantUML
false
false
391
puml
@startuml interface IMediator { + interaction() } class Mediator implements IMediator { + piece: Piece + part: Part + interaction() } class Piece { + mediator: IMediator + constructor(mediator: IMediator) + invoke() } Piece <.. IMediator class Part { + mediator: IMediator + constructor(mediator: IMediator) + invoke() } Part <.. IMediator @enduml
false
true
false
false
class
8b62435c567bbbd6a512a8fd115b52104b263c39
124b894a3ef93319757b58a1fd24ff43d69e7186
/docs/uml/read pool unlock.puml
c3dbfdfc003c550d00679b38db1bb704f096ed90
[ "MIT" ]
permissive
0chain/gosdk
614cc6079609f0a02aefc37f9ef5d3e2164317ff
acf2724b91db051ea886b20f991cf4a34a48665c
refs/heads/staging
2023-08-31T22:49:21.221247
2023-08-16T15:16:35
2023-08-16T15:16:35
191,593,548
30
36
MIT
2023-09-14T19:54:49
2019-06-12T15:04:03
Go
UTF-8
PlantUML
false
false
307
puml
@startuml participant "<size:20><&terminal></size> ./zbox rp-unlock" as cli collections gosdk cli -> gosdk: ReadPoolUnlock() gosdk -> gosdk: check initialized sdk gosdk -> gosdk: create unlock request gosdk -> gosdk: create smart contract txn data gosdk -> gosdk: send smart contract txn value fee @enduml
false
true
false
false
sequence
94bd1026d6a97cdb47a5c9723a17fbf737653f85
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/Customer.puml
8cbf3dbd87d65fd0f86dbb9781cdf0cb62b2c359
[]
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,852
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 Customer [[Customer.svg]] extends BaseResource { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime key: String customerNumber: String externalId: String lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] email: String password: String firstName: String lastName: String middleName: String title: String dateOfBirth: Date companyName: String vatId: String addresses: [[Address.svg List<Address>]] defaultShippingAddressId: String shippingAddressIds: [[String.svg List<String>]] defaultBillingAddressId: String billingAddressIds: [[String.svg List<String>]] isEmailVerified: Boolean customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]] custom: [[CustomFields.svg CustomFields]] locale: String salutation: String stores: [[StoreKeyReference.svg List<StoreKeyReference>]] authenticationMode: [[AuthenticationMode.svg AuthenticationMode]] } interface BaseResource [[BaseResource.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime } interface CustomerPagedQueryResponse [[CustomerPagedQueryResponse.svg]] { limit: Long offset: Long count: Long total: Long results: [[Customer.svg List<Customer>]] } interface CustomerReference [[CustomerReference.svg]] { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String obj: [[Customer.svg Customer]] } interface CustomerSignInResult [[CustomerSignInResult.svg]] { customer: [[Customer.svg Customer]] cart: [[Cart.svg Cart]] } interface CustomerCreatedMessage [[CustomerCreatedMessage.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] customer: [[Customer.svg Customer]] } interface CustomerCreatedMessagePayload [[CustomerCreatedMessagePayload.svg]] { type: String customer: [[Customer.svg Customer]] } Customer --> CustomerPagedQueryResponse #green;text:green : "results" Customer --> CustomerReference #green;text:green : "obj" Customer --> CustomerSignInResult #green;text:green : "customer" Customer --> CustomerCreatedMessage #green;text:green : "customer" Customer --> CustomerCreatedMessagePayload #green;text:green : "customer" @enduml
false
true
false
false
sequence
51fcf5c24ea83af0335a5fb6736af71b16ecd29e
a751888fd29a1b92bb32ef7d272d3e72f664ed30
/src/design/data-context-class-diagram.puml
e58e075c8519e6543065b9447785337297de06f0
[ "Apache-2.0", "MIT", "EPL-1.0" ]
permissive
petrushy/Orekit
b532c7db85c992d85b5ac3d858d18d656e2b8c46
1f8ff45caf82e0e7e85f8cf9fd4f41c3ba379443
refs/heads/develop
2023-08-16T11:37:43.709083
2023-07-18T20:13:14
2023-07-18T20:13:14
42,349,064
10
2
Apache-2.0
2023-07-21T14:54:14
2015-09-12T07:39:56
Java
UTF-8
PlantUML
false
false
3,697
puml
' Copyright 2002-2022 CS GROUP ' Licensed to CS GROUP (CS) under one or more ' contributor license agreements. See the NOTICE file distributed with ' this work for additional information regarding copyright ownership. ' CS licenses this file to You under the Apache License, Version 2.0 ' (the "License"); you may not use this file except in compliance with ' the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, software ' distributed under the License is distributed on an "AS IS" BASIS, ' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ' See the License for the specific language governing permissions and ' limitations under the License. @startuml skinparam svek true skinparam ClassBackgroundColor #F3EFEB/CCC9C5 skinparam ClassArrowColor #691616 skinparam ClassBorderColor #691616 skinparam NoteBackgroundColor #F3EFEB skinparam NoteBorderColor #691616 skinparam NoteFontColor #691616 skinparam ClassFontSize 11 skinparam PackageFontSize 12 skinparam linetype ortho package org.orekit #ECEBD8 { package data #DDEBD8 { interface DataContext { + {static} LazyLoadedDataContext getDefault() + {static} setDefault(LazyLoadedDataContext) .. +TimeScales getTimeScales() +Frames getFrames() +CelestialBodies getCelestialBodies() +...() } note top manages factories end note class LazyLoadedDataContext { +DataProvidersManager getDataProvidersManager() } class DataProvidersManager { +boolean feed(String supportedNames, DataLoader loader) } LazyLoadedDataContext o-- DataProvidersManager DataContext <|-- LazyLoadedDataContext } package time #DDEBD8 { interface TimeScales { {static} +TimeScales of(utcMinusTai, eopSupplier) +TimeScale getTai() +TimeScale getUtc() +TimeScale getUt1() +...() } DataContext o-- TimeScales class LazyLoadedTimeScales TimeScales <|-- LazyLoadedTimeScales LazyLoadedDataContext o-- LazyLoadedTimeScales } package bodies #DDEBD8 { interface CelestialBodies{ +CelestialBody getSun() +CelestialBody getMoon() +...() } class LazyLoadedCelestialBodies DataContext o-- CelestialBodies CelestialBodies <|-- LazyLoadedCelestialBodies LazyLoadedDataContext o-- LazyLoadedCelestialBodies } package frames #DDEBD8 { interface Frames { {static} +Frames of(timeScales, celestialBodies) {static} +Frames of(timeScales, icrfSupplier) +Frame getGcrf() +Frame getItrf(...) +...() } class LazyLoadedFrames class LazyLoadedEop DataContext o-- Frames Frames <|-- LazyLoadedFrames LazyLoadedTimeScales o-- LazyLoadedEop LazyLoadedFrames o-- LazyLoadedEop LazyLoadedFrames o-right- CelestialBodies LazyLoadedDataContext o-- LazyLoadedFrames } } package user.application #F3EDF7 { class MyDataContext #EAE6F7/B9B3D2 class MyProvider #EAE6F7/B9B3D2 class DataBase #EAE6F7/B9B3D2 class Main #EAE6F7/B9B3D2 DataContext <|-- MyDataContext MyDataContext o-- MyProvider Main --> MyDataContext : creates MyProvider *--> "1" DataBase } @enduml
false
true
false
false
sequence
4fd7688ce44c76fa6dc8bb68c53be8ee22f04a31
372d0fe94d7e59fd48620c687fee8fc94841408b
/deadheat-lock-example/microservices-example/booking-service/src/main/java/com/vrush/microservices/booking/enums/enums.plantuml
b1f4114df2bb2ac532bca4416a70a4f9b908c1d4
[ "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
438
plantuml
@startuml title __ENUMS's Class Diagram__\n namespace com.vrush.microservices.booking { namespace enums { enum BookingStateEnum { PAYMENT_APPROVED PAYMENT_PENDING PAYMENT_REFUSED } } } 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
false
true
false
false
class
ac0a9f50ea833efe09d6cbd246c0bc0d8683ac4b
a264b0d4981ffdd64f97003d07fd5d36c7a089b6
/kapitler/media/uml-arkivstruktur-diagram.puml
62f521b7eb6fbfa5f40da16efecd3679fcf9c43a
[ "CC0-1.0" ]
permissive
arkivverket/noark5-standard
6c71c1cbdaf935be99a6adc8006bd0b9ac79b888
1b3ef973f8074b8d125ad8ee9810f0daae463e53
refs/heads/master
2023-06-24T14:18:57.198908
2023-06-10T15:06:32
2023-06-10T15:06:44
232,571,397
3
4
NOASSERTION
2022-12-15T13:33:50
2020-01-08T13:38:24
Python
UTF-8
PlantUML
false
false
1,118
puml
' FIXME missing constraints 'enten/eller' @startuml scale max 4096 width skinparam nodesep 100 allowmixing hide circle class arkiv class arkivdel class klassifikasjonssystem class klasse class mappe class registrering class dokumentbeskrivelse class dokumentobjekt rectangle "Elektronisk dokument" arkivdel "0..*" <.. mappe arkiv "1" o--> "1..*" arkivdel arkiv "0..*" o-> "1.*" arkiv : underarkiv constraint on links: enten/eller arkivdel "1..*" o--> "0..*" klassifikasjonssystem arkivdel "1" o--> "0..*" mappe constraint on links: enten/eller klassifikasjonssystem "1" o--> "1..*" klasse klasse "0..1" o--> "0..*" mappe klasse "0..1" o-> "0..*" klasse : underklasse klasse "1" o-> "0..*" registrering constraint on links: enten/eller mappe "1" o--> "0..*" registrering mappe "0..1" o-> "0..*" mappe : undermappe constraint on links: enten/eller arkivdel "1" o--> "0..*" registrering registrering "1..*" o--> "0..*" dokumentbeskrivelse registrering .> "0..*" arkivdel dokumentbeskrivelse "1" o--> "0..*" dokumentobjekt dokumentbeskrivelse .> "0..*" arkivdel dokumentobjekt . "1" "Elektronisk dokument" @enduml
false
true
false
false
sequence
91fd422b4ed7f95adaa57071201cecb316f02e11
97d287e085e21abb042367465cdbdfd461ca1ceb
/src/main/adoc/assets/project_class_diagram_2.puml
912daeeef4d637708d9794f9ab45de3df96a8c24
[ "MIT" ]
permissive
kalemena/docs-tools
fce8de6e3c8c75d354e4f2950896d19fa614e0b4
f021c701b567218b620693ccb9f406a0635ed317
refs/heads/master
2022-05-23T23:12:12.184222
2022-03-17T09:09:45
2022-03-27T10:09:45
242,543,115
0
0
null
null
null
null
UTF-8
PlantUML
false
false
710
puml
@startuml components interface "REST API" as API component Configuration component Operation component Service component Metric interface "Task Interface" as TaskInterface component Task component TaskFlavor1 component TaskFlavor2 API - Operation Operation ..-> Service : use Operation ..-> Metric : use note top of Operation : REST API note top of Task: Task logic note top of Metric: Registered metrics note top of Service: High Level logic Task ..-> Configuration: use Task ..-> Service: use TaskInterface - TaskFlavor1 TaskInterface - TaskFlavor2 note top of TaskFlavor1: Flavor 1 of Task note top of TaskFlavor2: Flavor 2 of Task Task ..> TaskInterface: use @enduml
false
true
false
false
sequence
4510b0b11b22a6bee6d48774b622b42e6e5c559c
acc923696e1635ab4f0cde4a6e38051bf6cf1b2b
/node_modules/uport-identity/docs/diagrams/send-tx.seq.puml
75f3f1ffea1278494c1e1b484ba096b5820b0611
[ "Apache-2.0" ]
permissive
vpdeva/ASBDemo
9c80fb03d0c702351c88dc666774e00781c347ea
94990edff9bccdcffc186d0bacf3516cca304b35
refs/heads/master
2020-03-19T10:46:37.044607
2018-06-07T00:26:14
2018-06-07T00:26:14
136,400,207
0
0
null
null
null
null
UTF-8
PlantUML
false
false
450
puml
@startuml participant TxRelay as tr participant MetaIdentityManager as im participant Proxy as p ->tr:relayMetaTx(v, r, s, IdentityManager, data) activate tr tr->tr:require(claimedSender == addressFromSig) tr->im: forwardTo(sender, proxy, destination, value, data) activate im im->p:forward(destination, value, data) activate p p-->o]: <<Event>> Forwarded(destination, value, data) p-->im deactivate p im-->tr deactivate im deactivate tr @enduml
false
true
false
false
sequence
d212ad773c53f78d397417cdd47f331bde36db6c
5419ba65627214efbf640b0643d5524c4f2a646f
/Architecture/04.PABF#25.predict-actions-based-on-frequency/PMFA#40.class.plantuml
c78ec0793e3a11b6b8a42bada508903b52d60fd6
[]
no_license
ovidiomanteiga/horuslauncher
3ed7ce5283dd4a267b1284f6bc192c0426b98150
26159c90e70d3042f2ac04d8cb8284c1c8c26de2
refs/heads/master
2020-09-14T05:44:31.073187
2019-07-22T19:55:47
2019-07-22T19:55:47
223,037,096
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,822
plantuml
@startuml PMFA#40.class skinparam monochrome true package UI { class HorusListFragment <<Fragment>> { + HorusList getHorusList() } class HorusListAdapter <<Adapter>> { } HorusListFragment -d-> HorusListAdapter } package Domain { class HorusAction <<Entity>> { Drawable icon UUID identifier LocalizableString name void perform() } class ActionExecution <<VO>> { DateTime time } class GetHorusList <<Interactor>> { + HorusList horusList + void perform() } class HorusList { } class HorusListItem { + Int numberOfExecutionsLastWeek } interface ActionExecutionRepository <<Repository>> { + List<ActionExecution> all } interface AllActionsRepository <<Repository>> { + List<HorusAction> all } ActionExecution -l-> HorusAction ActionExecutionRepository .u.> ActionExecution ActionExecutionRepository -u-> AllActionsRepository GetHorusList -u-> HorusList GetHorusList -u-> "*" ActionExecution GetHorusList -r-> ActionExecutionRepository HorusList o-u-> "*" HorusListItem HorusListItem -> "1" HorusAction } package Infrastructure { class AppExecutionRepository <<Repository>> { + List<ActionExecution> all } class AppExecutionDAO <<DAO>> { + List<ActionExecution> all } class AllAppsRepository <<Repository>> { + List<HorusAction> all } AppExecutionRepository -d-> AppExecutionDAO } AllAppsRepository -u-|> AllActionsRepository AppExecutionRepository .u.|> ActionExecutionRepository AppExecutionRepository -> AllAppsRepository HorusListFragment -u-> GetHorusList Infrastructure -[hidden]u-> Domain Infrastructure -[hidden]l-> UI hide empty members @enduml
false
true
false
false
class
3f4b1fe2683405dab28a20ed77619d0f23d99a1a
79ca24aa66d8177cbff812fb358e835fb79ed6fa
/mygame/mygame.puml
11cb120f806af57fc4d9d360e9d770f034db1562
[]
no_license
guojiangwei/data-structure
b5592629e2bad8f3bc42fcb74186e9cfbd003474
c811c7fb2d203852eb35019f9e3c6b5f1a5a2133
refs/heads/master
2021-08-22T14:15:42.923449
2020-05-16T12:19:25
2020-05-16T12:19:25
182,638,653
0
0
null
null
null
null
UTF-8
PlantUML
false
false
526
puml
@startuml classdiagram class mygame class settings{ config_file setting_dict + save_config() + load_config() } namespace mygame_gui_lib{ class AbstractPanel{ image text x y height width back_ground_color text_color +set_image() +set_text() +draw() +click_event() } class Panel{ elements[] + add() + draw() } class Button{ } AbstractPanel <|-- Button AbstractPanel <|-- Panel } @enduml classdiagram @startuml a Bob --> Alice class AA @enduml a
false
true
false
false
class
2d8b4f0dd292824b4a83480ca2053bef54f9720e
7c1d5e6989709764082ac3eca848216555b5288c
/log/logger.puml
0ff795c71893c5e08c47837439d94ab7e9d51d43
[ "Apache-2.0" ]
permissive
FishJoey/gorpc
754259032d5fc7ac65930618fe0eec048193c465
384fe1a788faf9a719bbdce4d349c4add8b0b184
refs/heads/master
2023-08-03T20:42:56.378732
2021-09-30T17:43:03
2021-09-30T17:43:03
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
818
puml
@startuml package "log" { enum Level { Trace Debug Info Error Fatal } interface Logger { Trace(fmt string, v...interface{}) Debug(fmt string, v...interface{}) Info(fmt string, v...interface{}) Error(fmt string, v...interface{}) Fatal(fmt string, v...interface{}) WithPrefix(fmt string, v...interface{}) } enum RollType { RollNone RollByFileSZ RollByDay } interface Writer { io.Writer io.Closer Roller } Writer --> io.Writer Writer --> io.Closer class logger { name string opts options writer Writer } logger -> options logger --|> Writer logger -down-|> Logger class options { fpath string level Level rollType RollType } options --> Level options -|> RollType } package "io" { interface Writer { Write([]byte) (n int, err error) } interface Closer { Close() error } } @enduml
false
true
false
false
class
9796d078aad4d7252feb0d475d370d6436183142
b7d2ba71058efa46eff4ed885324819fb3f99266
/src/doc/WEB_Controllers/RoomMonitoring/US610/US610_cd_RoomMonitoring.puml
ead54149c8544aae092e1cf01d12d545b730d152
[]
no_license
Almadanmp/backend4
3aaa5cbe453041917a510ceee83bf318499a9823
07ab3c1af9c7de6ff35cf23bf44b0e664db82f46
refs/heads/master
2022-11-25T10:30:27.184246
2019-06-30T19:26:12
2019-06-30T19:26:12
194,547,877
0
0
null
2022-11-16T11:54:00
2019-06-30T18:24:24
Java
UTF-8
PlantUML
false
false
1,674
puml
@startuml title US610 Class Diagram - Web Controller Version skinparam titleBorderRoundCorner 10 skinparam titleBorderThickness 2 skinparam titleBorderColor indianred skinparam titleBackgroundColor Snow skinparam FontName quicksand skinparam titleFontSize 10 skinparam roundcorner 10 skinparam class { BorderColor indianred BackgroundColor indianred BackgroundColor Snow roundcorner 10 ArrowFontName Verdana ArrowColor indianred ArrowFontColor darkslategrey FontSize 12 } HTTPClient -- RoomMonitoringWebController : > RoomMonitoringWebController -- RoomRepository : > RoomMonitoringWebController -- DateWithRoomIdDTO : > RoomRepository -- Room : > RoomRepository -- RoomCrudRepo : > Room -- RoomSensor :May \n have > Room -- ReadingUtils : Uses > RoomCrudRepo -left- Room : > RoomSensor -- Reading :May \n have > ReadingUtils -- Reading : > class RoomMonitoringWebController { RoomRepository; getRoomMaxTempInDay(DateWithRoomIdDTO) } class DateWithRoomIdDTO{ Date date; String roomId; getDate() getRoomId() isDateValid() } class Room{ List<RoomSensor> roomSensors; getMaxTemperatureOnGivenDay(Date) getRoomSensorsOfGivenType(String) getValuesOfSpecificDayReadings(List<RoomSensor>, Date) } class Reading{ Date date; double value; getDate() getValue() } class RoomRepository{ getRoomMaxTempById(String, Date) } class RoomCrudRepo{ findByRoomName(String) } class RoomSensor{ String sensorType; List<Reading> readings; getSensorType() getReadings() } class ReadingUtils{ getValuesOfSpecificDayReadings(List<Reading>, Date) compareDayMonthAndYearBetweenDays(Date, Date) getReadingDate(List<Reading>, int) getReadingValue(List<Reading>, int) } @enduml
false
true
false
false
class
53439dc1dd797223f0ff74d92bf03033dc52eecd
5229c30142a44eba1f7afb8c57f12bf187bc2d03
/src/main/kotlin/com/mgy/adapter/adapter.puml
ff23d427c1a6217c7532188f168a9802c3dc362e
[]
no_license
Drunkman/kotlin-design-pattern
16b98c7fff938c06c4623568673a1c8cc28e606b
91196fcee1b4fc09350666ef537135f8f0e45b3c
refs/heads/master
2020-03-19T21:13:16.754197
2018-08-12T14:21:07
2018-08-12T14:21:07
136,933,013
1
0
null
null
null
null
UTF-8
PlantUML
false
false
303
puml
@startuml interface RowingBoat{ +row() } class FishingBoat{ +sail() } class FishingBoatAdapter{ -boat +row() } class Captain{ -rowingBoat +row() } RowingBoat <|-- FishingBoatAdapter FishingBoat <-right- FishingBoatAdapter: -boat RowingBoat <-left- Captain: -rowingBoat @enduml
false
true
false
false
class
90ab30383cdfc806b2cddcd9def311de3fea5a39
981063906ac661e930b3a9c23eade2b0d98ee692
/src/Processing/Processing.plantuml
93aced3974bf5d0290e25e5218b2c11921b9d557
[]
no_license
Wissben/Data-Mining-ToolKit
55e49645e964e8d9581e6d234912142cc11a198b
d83aac3876a842bf096fe40a85007ce8fc8720e6
refs/heads/master
2020-04-07T09:49:36.520024
2019-01-02T00:21:18
2019-01-02T00:21:18
158,266,366
5
0
null
null
null
null
UTF-8
PlantUML
false
false
1,152
plantuml
@startuml title __PROCESSING's Class Diagram__\n package Processing { class DataCleaner { - data : Instances + DataCleaner() + normalizeAttribute() + normalizeAllAttributes() + getMostCommonValueOfSameClass() + fillInMissingValues() + getData() } } package Processing { class Plotter { ~ data : Instances + Plotter() + plotBox() + plotBox() - createDatasetBox() - createSampleDataset() + plotHisto() } } package Processing { class StatisticsRetriever { ~ data : Instances + StatisticsRetriever() + getMin() + getMax() + getMean() + getMeanSameClass() + getMedian() + getQ1() + getQ3() + getMode() + symetry() + isSymetric() + getMidRange() } } DataCleaner o-- StatisticsRetriever : sr 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
false
true
false
false
class
79b9e5971008d5137eb68433951ffed76329916e
372e13940be1f116c671dbb746617a331f06899e
/Assets/TPPackages/com.cocoplay.core/Documentation-/puml/Runtime/Extension/DictionaryExtensions.puml
c65e3bc0f7a2b68ddf453c745cb091b2b179501c
[]
no_license
guolifeng2018/CIGA-Game-Jam
797734576510e27b5c5cee2eb17c1444f51d258c
fcd03e5579bef3bffe2cb51f52ba11a49a9cc02d
refs/heads/master
2022-12-10T19:21:15.522141
2020-08-16T10:06:23
2020-08-16T10:06:23
285,986,041
0
0
null
null
null
null
UTF-8
PlantUML
false
false
476
puml
@startuml class DictionaryExtensions <<static>> { + {static} GetValue(dict:Dictionary<TKey, TValue>, key:TKey) : TValue + {static} GetOrAddNewValue(dict:Dictionary<TKey, TValue>, key:TKey) : TValue + {static} GetOrAddDefaultValue(dict:Dictionary<TKey, TValue>, key:TKey) : TValue + {static} ForEach(dict:Dictionary<TKey, TValue>, action:Action<TKey, TValue>) : void + {static} ForEach(dict:Dictionary<TKey, TValue>, action:Action<TValue>) : void } @enduml
false
true
false
false
class
ae5df318c734361341e8c3672c9ab5bdc580ac58
694fd70b693c9670161b2492ece407123bf11cad
/plantuml/spring/practice-jpa-association-mapping-11.plantuml
4a6882557e2c1633e5089ff02d391ce6835c3901
[ "CC-BY-3.0-US", "BSD-3-Clause", "WTFPL", "GPL-1.0-or-later", "MIT", "OFL-1.1" ]
permissive
windowforsun/blog
4a341a9780b8454a9449c177f189ca304569031b
b0bce013f060f04a42dfa7ef385dbeea1644fdab
refs/heads/master
2023-09-04T03:17:39.674741
2023-08-21T14:39:37
2023-08-21T14:39:37
170,632,539
0
1
MIT
2023-09-05T17:48:27
2019-02-14T05:26:51
HTML
UTF-8
PlantUML
false
false
775
plantuml
@startuml !define table(x) class x << (T,#FFAAAA) >> !define primary_key(x) <b><color:#b8861b><&key></color> x</b> !define foreign_key(x) <color:#aaaaaa><&key></color> x hide methods hide stereotypes 'skinparam linetype ortho 'skinparam linetype polyline entity (Member) { primary_key(id) name teams } entity (Team) { primary_key(id) name members } Team "*" ---> "*" Member Team "*" <.. "*" Member table(MEMBER) { primary_key(ID) <<PK>> foreign_key(TEAM_ID) <<FK>> NAME } table(TEAM) { primary_key(ID) <<PK>> NAME } table(TEAM_MEMBER) { primary_key(TEAM_ID) <<PK, FK>> primary_key(MEMBER_ID) <<PK, FK>> } TEAM ||--o{ TEAM_MEMBER TEAM_MEMBER }o--|| MEMBER Team --> TEAM_MEMBER :id -> TEAM_ID Member -up-> TEAM_MEMBER :id -> MEMBER_ID @enduml
false
true
false
false
sequence
17b1e721cab40df73f5a92fc6edbfc5d3d899d3f
e77f1cadb42106e1b8543dd185783acc399da36d
/qwixx/clases.puml
748003b71617127f25a66a21a90aa2079c5f8f5f
[]
no_license
evbeda/games
a3ce251a6cc7331d2688e1774765e593f58aed7a
fa6b706d04aa923825b261adfe45865063766862
refs/heads/main
2022-12-10T06:39:19.669669
2022-08-18T14:32:28
2022-08-18T17:11:49
123,147,553
1
0
null
2022-12-08T08:11:18
2018-02-27T15:20:01
Python
UTF-8
PlantUML
false
false
414
puml
@startuml class ScorePad { penalty: Integer } class Row { marks: List is_locked: Bool color: String numbers: List } class Dice{ color: String } class Qwixx{ current_player: Integer state : String score_pad : List current_player : int dice_set : dic } ScorePad --> "4" Row: rows Qwixx--> "1..4"ScorePad: score_pad Qwixx--> SetDices SetDices --> "6" Dice: dices @enduml
false
true
false
false
sequence
594bdb9b56ba2a4d191849f308d2fd58894c6d25
de282e439bedc35f1d4b46f892ca96b72d4162f5
/examples/swagger.puml
e9455b7717c0eb3ad2e682931c964fbd7289298a
[ "Apache-2.0" ]
permissive
colugo/swagger2puml
7f17afff2d1171fe007af5c78575d1780653dccc
b617768a9c7a1ea3673f781e73e144e129f1a4ac
refs/heads/master
2021-05-10T15:40:17.743779
2018-01-23T05:25:17
2018-01-23T05:25:17
118,558,544
0
0
null
2018-01-23T04:40:03
2018-01-23T04:40:03
null
UTF-8
PlantUML
false
false
2,812
puml
@startuml hide empty members set namespaceSeparator none skinparam class { BackgroundColor PaleGreen ArrowColor RoyalBlue BorderColor DimGray } class Order { - id <b>:Int64</b> - petId <b>:Int64</b> - quantity <b>:Int32</b> - shipDate <b>:Date-time</b> - status <b>:String</b> - complete <b>:Boolean</b> } class Category { - id <b>:Int64</b> - name <b>:String</b> } class User { - id <b>:Int64</b> - username <b>:String</b> - firstName <b>:String</b> - lastName <b>:String</b> - email <b>:String</b> - password <b>:String</b> - phone <b>:String</b> - userStatus <b>:Int32</b> } class Tag { - id <b>:Int64</b> - name <b>:String</b> } class Pet { - id <b>:Int64</b> - category <b>:Category[]</b> - name <b>:String</b> - photoUrls <b>:String[]</b> - tags <b>:Tag[]</b> - status <b>:String</b> } class ApiResponse { - code <b>:Int32</b> - type <b>:String</b> - message <b>:String</b> } interface PetApi { + <i>updatePet(Pet body)</i><b>:void</b> } interface PetApi { + <i>addPet(Pet body)</i><b>:void</b> } interface PetApi { + <i>findPetsByStatus(String[] status)</i><b>:Pet[]</b> } interface PetApi { + <i>findPetsByTags(String[] tags)</i><b>:Pet[]</b> } interface PetApi { + <i>getPetById(Integer petId)</i><b>:Pet</b> } interface PetApi { + <i>updatePetWithForm(Integer petId,String name,String status)</i><b>:void</b> } interface PetApi { + <i>deletePet(Integer petId)</i><b>:void</b> } interface PetApi { + <i>uploadFile(Integer petId,String additionalMetadata,File file)</i><b>:ApiResponse</b> } interface StoreApi { + <i>getInventory()</i><b>:void</b> } interface StoreApi { + <i>placeOrder(Order body)</i><b>:Order</b> } interface StoreApi { + <i>getOrderById(Integer orderId)</i><b>:Order</b> } interface StoreApi { + <i>deleteOrder(Integer orderId)</i><b>:void</b> } interface UserApi { + <i>createUser(User body)</i><b>:void</b> } interface UserApi { + <i>createUsersWithArrayInput(User[] body)</i><b>:void</b> } interface UserApi { + <i>createUsersWithListInput(User[] body)</i><b>:void</b> } interface UserApi { + <i>loginUser(String username,String password)</i><b>:void</b> } interface UserApi { + <i>logoutUser()</i><b>:void</b> } interface UserApi { + <i>getUserByName(String username)</i><b>:User</b> } interface UserApi { + <i>updateUser(String username,User body)</i><b>:void</b> } interface UserApi { + <i>deleteUser(String username)</i><b>:void</b> } Pet *-- "0..*" Category Pet *-- "0..*" Tag PetApi --> Pet PetApi --> ApiResponse StoreApi --> Order UserApi --> User @enduml
false
true
false
false
class
0f890a34d391a38fb1d3ef48142fa1159cb942a5
084fcc4a31b60fe11f3f647f7d49a3c1c6621b44
/kapitler/media/uml-class-registrering.iuml
be32bb144980674833a58342ce56de4a26f61a90
[]
no_license
arkivverket/noark5-tjenestegrensesnitt-standard
299f371a341e59402d49bfc11ee9e2672dad657e
03025f8b9f1496f4a2f5b155e212a44768390274
refs/heads/master
2023-06-10T02:19:28.432679
2023-06-09T08:40:40
2023-06-09T08:40:40
136,293,843
7
11
null
2023-08-22T10:40:36
2018-06-06T07:58:53
Python
UTF-8
PlantUML
false
false
679
iuml
@startuml class Arkivstruktur.Registrering <Arkivenhet> { +arkivertDato : datetime [0..1] [1..1] +arkivertAv : string [0..1] [1..1] +referanseArkivertAv : SystemID [0..1] [1..1] +kassasjon : Kassasjon [0..1] +skjerming : Skjerming [0..1] +gradering : Gradering [0..1] +referanseArkivdel : SystemID [0..1] [1..1] +registreringsID : string [0..1] [1..1] +tittel : string +offentligTittel : string [0..1] +beskrivelse : string [0..1] +noekkelord : string [0..*] +forfatter : string [0..*] +dokumentmedium : Dokumentmedium [0..1] [1..1] +oppbevaringssted : string [0..*] +virksomhetsspesifikkeMetadata : VirksomhetsspesifikkeMetadata [0..1] } @enduml
false
true
false
false
class
b4c9aee68596535dcd1c61af4b518091aae57c35
aa9620300bc8488f53437e0f5faab824225aab73
/ibex_pres/import_seq_1.plantuml
395dd0d5d7030cfb7162685805c00b67fac91f9f
[ "BSD-3-Clause" ]
permissive
atavory/atavory.github.io
94daa1b05141ff5c6e9ebfb5055fc87cfd333ca3
43d98b45150411d83ab75a92a6d4ab9226927ef0
refs/heads/master
2021-01-19T06:15:43.197765
2019-11-18T10:58:38
2019-11-18T10:58:38
100,634,235
0
0
null
null
null
null
UTF-8
PlantUML
false
false
969
plantuml
@startuml skinparam monochrome true skinparam shadowing false actor user autonumber 1 "<font color=black>" user -[#black]> runtime: <back:grey>import ibex.sklearn.linear_model</back> autonumber 2 "<font color=grey>" runtime -[#grey]> ibex: <back:white>import ibex</back> autonumber 3 "<font color=grey>" runtime -[#grey]> ibex.sklearn: <back:white>import ibex.sklearn</back> autonumber 4 "<font color=grey>" ibex.sklearn -[#grey]> ibex.sklearn: <back:white>register sys.metapath</back> autonumber 5 "<font color=grey>" runtime -[#grey]> loader: <back:white>import ibex.sklearn.linear_model</back> autonumber 6 "<font color=grey>" loader -[#grey]> sklearn.linear_model: <back:white>dir</back> autonumber 7 "<font color=grey>" sklearn.linear_model -[#grey]> loader: <back:white>members</back> autonumber 8 "<font color=grey>" loader -[#grey]> loader: <back:white>inspect</back> autonumber 9 "<font color=grey>" loader -[#grey]> loader: <back:white>wrap</back> @enduml
false
true
false
false
sequence
73b4041600cf62cb82e188e6e20dfff0d280a59b
3e8de74dfe19cd437fd7842887394d4921a109d7
/docs/images/factory-abstract.plantuml
07d3fb27fc0df8b258748c08c2686fd5b7b44b23
[]
no_license
jmbruel/InnopolisDesignPatterns
62c5f1df870883cd44245d6459243c83b96d0995
a9ffbfc16a29ed3d560d5be12e8fb1d2f1bed50e
refs/heads/master
2021-02-04T20:34:22.378185
2020-11-16T17:40:28
2020-11-16T17:40:28
243,707,157
0
7
null
2020-10-23T08:58:33
2020-02-28T07:49:59
JavaScript
UTF-8
PlantUML
false
false
798
plantuml
@startuml '----------------------------------- ' UML concepts illustrated ' JMB 2014 '----------------------------------- 'hide circle hide empty members hide empty methods class Client { factory : AbstractFactory Client(AbstractFactory) operation() } note right: Product p=factory.CreateProduct(); abstract class c as "AbstractFactory" { } c <- Client abstract class p as "Product" c : {abstract} +createProduct() : Product c : +...() class ConcreteFactory1 { +createProduct() : Product +...() } class ConcreteFactory2 { +createProduct() : Product +...() } note right: return new ConcreteProductA(); p <|-- ConcreteProductA p <|-- ConcreteProductB c <|-- ConcreteFactory1 c <|-- ConcreteFactory2 ConcreteProductA <. ConcreteFactory1 ConcreteProductB <. ConcreteFactory2 @enduml
false
true
false
false
class
450aca32a52ec1e4aba764057fce0569542f0343
8e41064829bbe773c832b084fad4900fe5022b6f
/src/vendingmachine/singleton/singleton.plantuml
4874b48de3157712b0369f805eab1c75bfc7183d
[]
no_license
hiewying/design-patterns
a118541352b93e06461ed788f80e9281a6b0877b
5160ce0ad2f5ed938f36a6d1f1c93c292f4de190
refs/heads/master
2020-12-04T16:27:37.900235
2020-01-04T22:45:04
2020-01-04T22:45:04
231,590,671
0
0
null
null
null
null
UTF-8
PlantUML
false
false
459
plantuml
@startuml title __SINGLETON's Class Diagram__\n namespace vendingmachine.singleton { enum ReceiptsLogger { INSTANCE receipts } } namespace vendingmachine.singleton { class test.singletonTest { + test() } } 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
false
true
false
false
class
b89e7861216b07a813415b5d868cc39dbcfe5b21
38fa35c8a3957bac6fec83660561f10f94fa9113
/docs/dev/CDS_GDO/smvCDS.puml
23ab6cc07d9083d0d4af4c2389a4c12d2aaa613d
[ "Apache-2.0" ]
permissive
shuangshuangwang/SMV
fe6b8a6ea90c4dca4019d585e86c8c02dbb275c8
021faece3f0fefca6051df8415789b14bc9a60ed
refs/heads/master
2020-03-09T23:54:06.071302
2018-07-09T07:38:23
2018-07-09T07:38:23
129,069,012
0
0
Apache-2.0
2018-04-11T09:28:24
2018-04-11T09:28:23
null
UTF-8
PlantUML
false
false
1,345
puml
@startuml hide empty methods hide empty fields hide circle package SMV { class CDSSubGroup { currentSchema: SmvSchema crossSchema: SmvSchema currentRow: Row crossRows: Iterable[Row] } class SmvCDS <<Abstract>> { from(that): SmvCDS filter(input: CDSSubGroup): CDSSubGroup } class CombinedCDS extends SmvCDS class NoOpCDS extends SmvCDS CombinedCDS o-- "2" SmvCDS class SmvCDSAggColumn{ from(otherCds): SmvCDSAggColumn as(name): SmvCDSAggColumn isAgg(): Boolean } SmvCDSAggColumn *-- "1" Expression SmvCDSAggColumn *-- "1" SmvCDS class SmvSelfCompareCDS extends SmvCDS class SmvTopNRecsCDS extends SmvCDS class SmvSingleCDSAggs{ resolvedExprs(schema2) createExecuter(schema1, schema2) } SmvSingleCDSAggs o-L- "*" SmvCDSAggColumn SmvSingleCDSAggs *-- "*" Expression SmvSingleCDSAggs *-- "1" SmvCDS class SmvGDO <<Abstract>> { inGroupKeys createInGroupMapping(*) createOutSchema(*) } class SmvAggGDO <<Abstract>> extends SmvGDO { } SmvAggGDO o-- "*" SmvCDSAggColumn SmvAggGDO *-- "*" SmvSingleCDSAggs class SmvOneAggGDO extends SmvAggGDO class SmvRunAggGDO extends SmvAggGDO class SmvPanelAggGDO extends SmvAggGDO class SmvCDSAsGDO extends SmvGDO SmvCDSAsGDO *-- "1" SmvCDS } @enduml
false
true
false
false
class
2b7bee0a6300350def02e991821ac62a13671a96
f16bbddd5bab88fa7b338cf125ebfb11d8518e54
/Tower_Defense_Maxime_LANGLET/src/sample/sequence.puml
de15227222782618fb5fd82915ea698c7fe5fa88
[]
no_license
Maxlanglet/Tower-Defense-with-JAVAFX
4a56f702f792b4b602a852eb8e0452a5064c48e0
1e96def9a690499ec3ac8c0e5e099264315b1b97
refs/heads/master
2022-06-26T03:50:20.730985
2020-05-11T16:53:25
2020-05-11T16:53:25
263,100,332
0
0
null
null
null
null
UTF-8
PlantUML
false
false
552
puml
@startuml 'Ces diagrammes n'ont pas été généré automatiquement mais c'est moi même qui ait coder ' 'ces diagrammes' actor PNJ entity Tower activate Tower activate Ressources PNJ --> Tower: isAlive and isVisible alt is in Range && !isDead && isVisible Tower -> PNJ: do Dammage PNJ -> PNJ : getDammage alt isDead PNJ -> PNJ: setDead() PNJ --> Tower: removePNJ() destroy PNJ else castle reached PNJ -> Ressources: doDammage() PNJ --> Tower: removePNJ() destroy PNJ end end @enduml
false
true
true
false
sequence
e06ffa5b6349b1e548fbff3d07fa796171e7dcfe
780d6bc41c373244c1d61ab2a9ca26c3a16cede9
/2023/CppCliProject/CppCliProject.plantuml
d11211fbc6b2f85d7c7d3fac323491ed72d8d440
[ "MIT" ]
permissive
wonderstory/dotnet-lab
45548010a0d21ae4c3d0bd542c08f576fcc8f6e0
8a3f8e5da8e53e76512d1f9d65769dcd1f20733c
refs/heads/master
2023-08-16T14:12:19.465776
2023-08-13T08:12:20
2023-08-13T08:12:20
289,722,265
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,260
plantuml
@startuml class_binding_framework interface INotifyPropertyChanged { + PropertyChanged : event PropertyChangedEventHandler } abstract class BindableBase { } class PropertyAgent { + Set<T>(storage : ref T, value : T, propertyName : string) : bool + RaisePropertyChanged(propertyName : string) : void } INotifyPropertyChanged <|.. BindableBase PropertyAgent "1" <-* "1" BindableBase interface ICanExecuteAware { + CanExecute() : bool } class Binder <<static>> ICanExecuteAware <.. Binder abstract class ViewModelBase { + BindAsChecked(dataMember : string, CheckBox) : Binding ' + BindAsChecked(dataMember : string, RadioButton) : Binding + BindAsEnabled(dataMember : string, Control) : Binding ' + BindAsEnabled(RelayCommand, Control) : Binding + BindAsVisible(dataMember : string, Control) : Binding ' + BindAsVisible(RelayCommand, Control) : Binding ' + BindAsValue(dataMember : string, NumericUpDown) : Binding ' + BindAsText(dataMember : string, Control) : Binding + BindAsText(dataMember : string, Control, isOnChanged : bool) : Binding + BindAsText(BindingSource, dataMember : string, Control) : Binding ' + BindAs(dataMember : string, Control, propertyName : string) : Binding + BindAs(dataMember : string, Control, propertyName : string, isOnChanged : bool) : Binding ' + BindAs(INotifyPropertyChanged, dataMember : string, Control, propertyName : string) : Binding ' + BindAs(INotifyPropertyChanged, dataMember : string, Control, propertyName : string, isOnChanged : bool) : Binding ' + BindAs(BindingSource, dataMember : string, Control, propertyName : string) : Binding ' + BindAs(BindingSource, dataMember : string, Control, propertyName : string, isOnChanged : bool) : Binding {method} ... } BindableBase <|--- ViewModelBase Binder <.. ViewModelBase class RelayCommand { + Execute() : void + RaiseCanExecuteChanged() : void + BindAsEnabled(Control) : Binding + BindAsVisible(Control) : Binding } ICanExecuteAware <|.. RelayCommand BindableBase <|----- RelayCommand Binder <.. RelayCommand class ViewModel #ffc ViewModelBase <|--- ViewModel class View #ffc RelayCommand "0..*" <---* "1" ViewModel ViewModel "1" <--* "1" View @enduml
false
true
false
false
class
d258e24a3e5029042f6631092630ebdc5b4aa66e
5e1c6cdd1dc99926bb3077189a239d174f435908
/asciidocs/plantuml/cld.puml
6c8bcc9ae4a996e7adfddd4688a05b0ac0bbc536
[]
no_license
floklausner/quarkus-recap
beb806ec058c2edd435283ff24231a4e9d9a628a
70e004ec04956822c6a7138cd26b04f1709a0e5c
refs/heads/master
2023-04-27T00:25:17.621527
2021-06-01T10:40:55
2021-06-01T10:40:55
372,783,287
0
0
null
null
null
null
UTF-8
PlantUML
false
false
278
puml
@startuml class Vehicle { brand: String model: String constructionYear: int } class Register { name: String licenseNo: String vehicle: Vehicle registerDate: LocalDate signOffDate: LocalDate } Register "*" --> "1" Vehicle: registers > @enduml
false
true
false
false
sequence
0d66ecb38b45e79254b24e1798621e5fc373b2b1
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Window/Modes/TimelineReadOnlyMode.puml
79aabb683c89a8cf8082e937e67879369c8e175c
[]
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
550
puml
@startuml class TimelineReadOnlyMode { + TimelineReadOnlyMode() + <<override>> ShouldShowPlayRange(state:WindowState) : bool + <<override>> ShouldShowTimeCursor(state:WindowState) : bool + <<override>> TrackState(state:WindowState) : TimelineModeGUIState + <<override>> ToolbarState(state:WindowState) : TimelineModeGUIState + <<override>> PreviewState(state:WindowState) : TimelineModeGUIState + <<override>> EditModeButtonsState(state:WindowState) : TimelineModeGUIState } TimelineMode <|-- TimelineReadOnlyMode @enduml
false
true
false
false
class
ae8ce6a4c6f2325b64aac996d9c81d0fc6b9da30
916a26a84471e37025689168bab1444cca712f04
/uml/markup/complete.plantuml
22848891edc167885d6b5c5146dd8dc09dbb7069
[]
no_license
GaurangTandon/extensible-bowling-game
8d018a037256f3185bd17dc03054a0d7c3c77fa1
04a2698d6dd65ae035f2829d8531991c106e0073
refs/heads/master
2022-07-12T18:30:25.259872
2020-05-15T03:15:00
2020-05-15T03:15:00
246,995,191
0
0
null
null
null
null
UTF-8
PlantUML
false
false
6,113
plantuml
@startuml title __EXTENSIBLE-BOWLING-GAME's Class Diagram__\n namespace BowlingGame { class AddPartyView { } } namespace BowlingGame { class AdhocView { } } namespace BowlingGame { class Alley { } } namespace BowlingGame { class Bowler { } } namespace BowlingGame { class BowlerFile { } } namespace BowlingGame { class BowlerScoreView { } } namespace BowlingGame { class BowlerScorerTest { } } namespace BowlingGame { class BowlingAlleyDriver { } } namespace BowlingGame { class ControlDesk { } } namespace BowlingGame { class ControlDeskEvent { } } namespace BowlingGame { class ControlDeskView { } } namespace BowlingGame { class EndGamePrompt { } } namespace BowlingGame { class EndGameReport { } } namespace BowlingGame { interface Event { } } namespace BowlingGame { class Frame { } } namespace BowlingGame { class Lane { } } namespace BowlingGame { class LaneEvent { } } namespace BowlingGame { interface LaneInterface { } } namespace BowlingGame { class LaneStatusView { } } namespace BowlingGame { class LaneView { } } namespace BowlingGame { class LastFrame { } } namespace BowlingGame { class NewPatronView { } } namespace BowlingGame { interface Observer { } } namespace BowlingGame { class Party { } } namespace BowlingGame { class PinSetterView { } } namespace BowlingGame { class Pinsetter { } } namespace BowlingGame { class PinsetterEvent { } } namespace BowlingGame { class PrintableText { } } namespace BowlingGame { abstract class Publisher { } } namespace BowlingGame { class ScorableBowler { } } namespace BowlingGame { class ScorableParty { } } namespace BowlingGame { class Score { } } namespace BowlingGame { class ScoreHistoryFile { } } namespace BowlingGame { class ScoreReport { } } namespace BowlingGame { class Util { } } namespace BowlingGame { namespace Widget { class Widget.ButtonPanel { } } } namespace BowlingGame { namespace Widget { class Widget.ContainerPanel { } } } namespace BowlingGame { namespace Widget { abstract class Widget.FormPanel { } } } namespace BowlingGame { namespace Widget { abstract class Widget.GenericPanel { } } } namespace BowlingGame { namespace Widget { class Widget.GridPanel { } } } namespace BowlingGame { namespace Widget { class Widget.ScrollablePanel { } } } namespace BowlingGame { namespace Widget { class Widget.TextFieldPanel { } } } namespace BowlingGame { namespace Widget { class Widget.WindowFrame { } } } AddPartyView .up.|> java.awt.event.ActionListener AddPartyView .up.|> javax.swing.event.ListSelectionListener AddPartyView o-- Widget.ButtonPanel : buttonPanel AddPartyView o-- ControlDeskView : controlDesk AddPartyView o-- Widget.WindowFrame : win AdhocView .up.|> java.awt.event.ActionListener AdhocView o-- Widget.ButtonPanel : buttonPanel AdhocView o-- Score : currScore AdhocView o-- Widget.ContainerPanel : statDisplay AdhocView o-- Widget.WindowFrame : win BowlerScoreView o-- Widget.GridPanel : gridPanel ControlDesk .up.|> java.lang.Runnable ControlDesk -up-|> Publisher ControlDeskEvent .up.|> Event ControlDeskView .up.|> Observer ControlDeskView .up.|> java.awt.event.ActionListener ControlDeskView o-- ControlDesk : controlDesk ControlDeskView o-- Widget.ButtonPanel : controlsPanel ControlDeskView o-- Widget.WindowFrame : win EndGamePrompt .up.|> java.awt.event.ActionListener EndGamePrompt o-- Widget.ButtonPanel : buttonPanel EndGamePrompt o-- Widget.WindowFrame : win EndGameReport .up.|> java.awt.event.ActionListener EndGameReport .up.|> javax.swing.event.ListSelectionListener EndGameReport o-- Widget.ButtonPanel : buttonPanel EndGameReport o-- Widget.WindowFrame : win Lane .up.|> LaneInterface Lane .up.|> Observer Lane .up.|> java.lang.Runnable Lane -up-|> Publisher Lane o-- Pinsetter : pinsetter Lane o-- ScorableParty : scorer LaneEvent .up.|> Event LaneStatusView .up.|> Observer LaneStatusView .up.|> java.awt.event.ActionListener LaneStatusView o-- Widget.ButtonPanel : buttonPanel LaneStatusView o-- Widget.ContainerPanel : gamePanel LaneStatusView o-- Lane : lane LaneStatusView o-- LaneView : laneView LaneStatusView o-- PinSetterView : pinSetterView LaneView .up.|> Observer LaneView .up.|> java.awt.event.ActionListener LaneView o-- Widget.ButtonPanel : buttonPanel LaneView o-- Widget.ContainerPanel : containerPanel LaneView o-- LaneInterface : lane LastFrame -up-|> Frame NewPatronView .up.|> java.awt.event.ActionListener NewPatronView o-- AddPartyView : addParty NewPatronView o-- Widget.ButtonPanel : buttonPanel NewPatronView o-- Widget.TextFieldPanel : patronPanel NewPatronView o-- Widget.WindowFrame : window PinSetterView .up.|> Observer Pinsetter -up-|> Publisher PinsetterEvent .up.|> Event PrintableText .up.|> java.awt.print.Printable ScorableBowler -up-|> Bowler ScorableParty -up-|> Party Widget.ButtonPanel -up-|> Widget.FormPanel Widget.ContainerPanel -up-|> Widget.GenericPanel Widget.FormPanel -up-|> Widget.GenericPanel Widget.GridPanel -up-|> Widget.GenericPanel Widget.ScrollablePanel -up-|> Widget.GenericPanel Widget.TextFieldPanel -up-|> Widget.FormPanel 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
false
true
false
false
class
d374f0a58f2f012ccd1c98f923008740f1fc5dba
482ac227fccd72a2ab0c5587f0ddbcd2f151d2c0
/blog/images/2022/oauth.plantuml
36f078811766613cdd1cc7abe13140102e1784e9
[ "CC0-1.0" ]
permissive
Stwissel/stwissel.github.io
612a83941c5ae6e45b7c99b2c218357821b991d3
7c05c06e40229419c55792892768fb1c094bb6eb
refs/heads/master
2023-08-31T00:50:56.777538
2023-08-29T12:13:33
2023-08-29T12:13:33
36,846,739
4
0
null
null
null
null
UTF-8
PlantUML
false
false
827
plantuml
@startuml OAuthDance autonumber title OAuth Flow actor "User" as human participant "Service provider" as App participant "OAuth\nAuthorization\nEndpoint" as OAuth1 participant "OAuth\nToken\nEndpoint" as OAuth2 participant "Identity Provider" as IdP database "KEEP API\nEndpoint" as keep human -> App: request resource human <-- App: request\nauthorization human -> OAuth1: access OAuth OAuth1 --> IdP: redirect to Authentication human <-> IdP: authenticates human -> OAuth1: authorizes client\nfor registered scopes human <-- OAuth1: redirects with authorization code human -> App: provide authorziation code App -> OAuth2: send client id\nand authorization code App <- OAuth2: provide access token (JWT) App -[#000000]> keep: send access token (JWT) with resource request App <[#000000]- human: provide resource @enduml
false
true
false
false
usecase
df50602694b45040a42943f6fce9cd4ad7447a59
eede8564c97ccc97397de0a7925e6e14be68f922
/src/main/java/evaluator/model/model.plantuml
9acc0899f879a0a4ceeb603d6908aadf10e4b10e
[]
no_license
Sinars/vvss
645199338a7ee06326e20c651e82e140dab2a95c
402ee04bcb7f1fe743063d0c71c6a2b005c24eda
refs/heads/master
2020-04-28T06:44:17.010764
2019-05-06T20:29:14
2019-05-06T20:29:14
175,069,286
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,359
plantuml
@startuml title __MODEL's Class Diagram__\n package evaluator { package evaluator.model { class Intrebare { - enunt : String - varianta1 : String - varianta2 : String - variantaCorecta : String - domeniu : String - varianta3 : String + Intrebare() + Intrebare() + getEnunt() + setEnunt() + getVarianta1() + setVarianta1() + getVarianta2() + setVarianta2() + getVariantaCorecta() + setVariantaCorecta() + getDomeniu() + setDomeniu() + equals() } } } package evaluator { package evaluator.model { class Statistica { - intrebariDomenii : Map<String, Integer> + Statistica() + add() + getIntrebariDomenii() + setIntrebariDomenii() + toString() } } } package evaluator { package evaluator.model { class Test { - intrebari : List<Intrebare> + Test() + getIntrebari() + setIntrebari() } } } 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
false
true
false
false
class
a550c664ed018b3ffec24eb2ee503efc9a736bfa
d99806bb17e4a22325f775539981c6b7799b9d16
/docs/red/1160630/sp3/design3.puml
89d3cc6aa5b2a14d3626cf41e21587d6b2e1613b
[]
no_license
Fuel4us/GWTFinalProject
3d0e1194f142cfcbdfc3d24f37a7537ff3a30dfb
b6c2f6add1687ca7800a9ec243edbe067ca6090c
refs/heads/master
2020-03-21T19:47:13.534718
2018-06-28T05:33:43
2018-06-28T05:33:43
138,969,901
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,209
puml
@startuml design3 skinparam handwritten true skinparam monochrome true skinparam packageStyle rect skinparam defaultFontName FG Virgil skinparam shadowing false actor AuthenticatedUser boundary Code_JavascriptView boundary Code_JavascriptPresenter boundary FunctionService control Js_controller boundary FunctionRepository database Database box "NSheets Client" participant Code_JavascriptView participant Code_JavascriptPresenter end box box "Server" participant FunctionService participant Js_controller participant FunctionRepository end box box "Database" participant Database end box AuthenticatedUser -> Code_JavascriptPresenter : onReveal() / navigate to page Code_JavascriptPresenter -> Code_JavascriptView: shows view Code_JavascriptView ->> AuthenticatedUser : shows a collapsibable box with the function AuthenticatedUser -> Code_JavascriptView: clicks in the function to remove Code_JavascriptView -> FunctionService: removeFunction(function); FunctionService -> Js_controller: remove(function); Js_controller -> FunctionRepository: remove (function); FunctionRepository -> Database: remove Code_JavascriptView --> AuthenticatedUser: shows an updated collapsibable functions box; @enduml
false
true
false
false
usecase