blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
5
227
content_id
stringlengths
40
40
detected_licenses
listlengths
0
28
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
36 values
visit_date
timestamp[us]date
2015-08-14 10:26:58
2023-09-06 06:45:32
revision_date
timestamp[us]date
2011-07-11 04:02:09
2023-09-04 16:40:12
committer_date
timestamp[us]date
2011-07-11 04:02:09
2023-09-04 16:40:12
github_id
int64
206k
631M
star_events_count
int64
0
6.51k
fork_events_count
int64
0
1.54k
gha_license_id
stringclasses
11 values
gha_event_created_at
timestamp[us]date
2012-08-01 17:54:24
2023-09-14 21:57:05
gha_created_at
timestamp[us]date
2009-05-21 02:09:00
2023-04-21 10:18:22
gha_language
stringclasses
55 values
src_encoding
stringclasses
12 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
16
1.74M
extension
stringclasses
12 values
code
stringlengths
16
1.74M
024357c75b2aa97c4a8d3926f23a8155c68baaa0
514b6508ef7f8e90376a8cce9d689eba515c2b44
/docs/diagrams/CalendarPanelClassDiagram.puml
0bfd388ff2ab753af285e2f3fc7f6f7fcb0ac81b
[ "MIT" ]
permissive
AY1920S1-CS2103T-T09-4/main
7403105a2e27d769909eccd7cfc347a1c9c6adc0
2661410bcfc330a587617114d1aad8ac3e4b476d
refs/heads/master
2020-07-23T15:08:09.884686
2019-11-11T15:49:32
2019-11-11T15:49:32
207,598,911
0
5
NOASSERTION
2020-05-06T02:01:36
2019-09-10T15:42:06
Java
UTF-8
PlantUML
false
false
645
puml
@startuml abstract class UIPart { } class CalendarPanel { -agenda: Agenda -scheduleList: ObservableList<Schedule> -orderList: ObservableList<Order> -calendarDate: CalendarDate +CalendarPanel(ObservableList<Schedule>, ObservableList<Order>, CalendarDate) +getAgenda() -populateAgenda() -setAgendaView(Calendar) } class CalendarDate { -property: SimpleObjectProperty +CalendarDate(Calendar) +setCalendar(Calendar) +getProperty() +getCalendar() +equals(Object) } UIPart <|-down- CalendarPanel CalendarPanel --right--> CalendarDate note left of CalendarPanel: Only relevant attributes and methods \n(mentioned in explanation) are shown @enduml
635b57b9a38f89514882823856cc31763e6035f5
556c9650d5df902e9bfd93c5799eb4281fc0bf01
/docs/core.puml
5e0cf46b533dab5e79ac9a15b86c29ec5a3f38ff
[ "Apache-2.0" ]
permissive
kevenli/scrapydd
a7823b7dad53ec5b68f33ea1c40a934fbfe693ff
ba7854a69e756e5d0e6b5f835d8f36fe57f7f7c2
refs/heads/master
2023-08-19T00:44:00.339381
2020-09-16T08:52:32
2020-09-16T08:52:32
70,041,146
5
3
Apache-2.0
2023-08-14T22:13:17
2016-10-05T08:08:29
Python
UTF-8
PlantUML
false
false
784
puml
@startuml class Project class ProjectPackage class ProjectStorage class Spider class SpiderExecutionQueue class HistoricalJob class ProjectManager{ create_project() delete_project() add_project_package() remove_project_package() add_spider() remove_spider() update_spider_settings() } ProjectManager *-- Project ProjectManager *-- Spider Project o-- Spider class SchedulerManager{ add_spider_trigger() remove_spider_trigger() add_job(spider, settings) : SpiderExecutionQueue job_finish(job: SpiderExecutionQueue): HistoricalJob } SchedulerManager --> Spider SchedulerManager *-- SpiderExecutionQueue SchedulerManager *-- HistoricalJob package APScheduler{ class BaseScheduler } SchedulerManager --> BaseScheduler @enduml
84aec60e9a8b964202d7e15b2f1468e49f6547dc
06132bb306986359c8958effdb12134da4aa9a23
/spring-cloud-design-pattern/behavior-template-pattern/src/main/resources/static/diagram.puml
02d3f2fc282311eecd22d26e0a1ce038934a2bd3
[]
no_license
sunnyzhy/Design-pattern
1fe797d2af0e102be63704aad5a5e3a3d8feb5a9
665b5cde412e965665469af1b5011c6c280ea7d0
refs/heads/master
2023-07-01T15:50:37.005870
2023-06-13T09:33:49
2023-06-13T09:33:49
55,023,406
2
1
null
null
null
null
UTF-8
PlantUML
false
false
446
puml
@startuml abstract class AbstractTemplate { +void templateMethod() +abstract void abstractMethod() +void concreteMethod() +void hookMethod() } class ConcreteTemplate extends AbstractTemplate { +void abstractMethod() +void concreteMethod() +void hookMethod() } note as N public void templateMethod() { abstractMethod(); concreteMethod(); hookMethod(); } end note AbstractTemplate .. N @enduml
a1162b8dada1a3612049b09f688011e2847f423c
bb1c82eddd547ade9b396e7134db0f927c205f51
/src/main/java/br/com/alg/trufflesapi/handle/handle.plantuml
6e9ed59f3a52bff3016ad3768c0533b8b7ede826
[]
no_license
andrelgirao22/truffle-api
3f71a26f3e0a491a9d3d39c193d2c7617c745336
3193a6b072c6e482ccc28a8d86021e385a708396
refs/heads/master
2021-07-16T13:32:26.947243
2021-07-01T19:09:53
2021-07-01T19:09:53
125,250,626
0
0
null
2021-04-26T19:34:40
2018-03-14T17:38:01
Java
UTF-8
PlantUML
false
false
1,093
plantuml
@startuml title __HANDLE's Class Diagram__\n namespace br.com.alg.trufflesapi { namespace handle { class br.com.alg.trufflesapi.handle.ResourceHandleException { + amazonClient() + amazonS3() + amazonService() + dataIntegrity() + file() + handleAccountNotFoudException() + handleAccountNotFoudException() + handleAccountNotFoudException() + handleAuthenticationException() + handleCategoryNotFoudException() + handleCityNotFoudException() + handleInvalidLoginException() + handleInvalidLoginException() + handleItemNotFoundException() + handleOrderNotFoundException() + handlePaymentInvalidException() + handlePriceNotFoundException() + imageNotFound() + taxDelivery() } } } 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
ad10ec7a91a1797d0d37c0c626b64c1432713e7c
4b73439277f72f5b9b0751e4bec6aee5bd24e8c2
/app/app.plantuml
da7d6d759655c17cc00605df8e4af1c253169f5c
[]
no_license
mfrizki1/SmartCity
ac5dffd164f5fe753530ac4807e549b8ff5207cb
30ebbd69c55fe1322e25b493f9a57834088c6f90
refs/heads/master
2022-06-14T20:26:02.879506
2020-05-11T02:21:05
2020-05-11T02:21:05
234,214,894
0
0
null
2020-05-10T11:09:35
2020-01-16T02:12:49
Kotlin
UTF-8
PlantUML
false
false
20,928
plantuml
@startuml title __APP's Class Diagram__\n namespace id.co.iconpln.insidal.network { class id.co.iconpln.insidal.network.RequestInterceptor_Factory { } } namespace id.co.iconpln.insidal.network { class id.co.iconpln.insidal.network.ResponseInterceptor_Factory { } } namespace id.co.iconpln.smartcity { class id.co.iconpln.smartcity.AppController_MembersInjector { } } namespace id.co.iconpln.smartcity { class id.co.iconpln.smartcity.BuildConfig { } } namespace id.co.iconpln.smartcity { namespace data.repository { class id.co.iconpln.smartcity.data.repository.UserRepository_Factory { } } } namespace id.co.iconpln.smartcity { namespace data.source.db { class id.co.iconpln.smartcity.data.source.db.AppDatabaseSource_Impl { } } } namespace id.co.iconpln.smartcity { namespace data.source.db { namespace dao { class id.co.iconpln.smartcity.data.source.db.dao.ContactDao_Impl { } } } } namespace id.co.iconpln.smartcity { namespace data.source.remote { class id.co.iconpln.smartcity.data.source.remote.AppRemoteFileSource_Factory { } } } namespace id.co.iconpln.smartcity { namespace data.source.remote { class id.co.iconpln.smartcity.data.source.remote.AppRemoteSource_Factory { } } } namespace id.co.iconpln.smartcity { namespace di.builder { abstract class id.co.iconpln.smartcity.di.builder.ActivityBuilder_BindCityActivty { } } } namespace id.co.iconpln.smartcity { namespace di.builder { abstract class id.co.iconpln.smartcity.di.builder.ActivityBuilder_BindDashboard { } } } namespace id.co.iconpln.smartcity { namespace di.builder { abstract class id.co.iconpln.smartcity.di.builder.ActivityBuilder_BindDataPengaduan { } } } namespace id.co.iconpln.smartcity { namespace di.builder { abstract class id.co.iconpln.smartcity.di.builder.ActivityBuilder_BindJPengaduan { } } } namespace id.co.iconpln.smartcity { namespace di.builder { abstract class id.co.iconpln.smartcity.di.builder.ActivityBuilder_BindLoginActivity { } } } namespace id.co.iconpln.smartcity { namespace di.builder { abstract class id.co.iconpln.smartcity.di.builder.ActivityBuilder_BindProvinceActivty { } } } namespace id.co.iconpln.smartcity { namespace di.builder { abstract class id.co.iconpln.smartcity.di.builder.ActivityBuilder_BindPublicService { } } } namespace id.co.iconpln.smartcity { namespace di.builder { abstract class id.co.iconpln.smartcity.di.builder.ActivityBuilder_BindSplashActivity { } } } namespace id.co.iconpln.smartcity { namespace di.component { class id.co.iconpln.smartcity.di.component.DaggerAppComponent { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.AppModule_ProvideCalligraphyDefaultConfig$app_devDebugFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.AppModule_ProvideContextFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.AppModule_ProvideLayoutManager$app_devDebugFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.AppModule_ProvideSchedulerProvider$app_devDebugFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.AppModule_ProvideValidator$app_devDebugFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.DatabaseModule_ProvideDatabaseFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.NetworkModule_ApiFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.NetworkModule_ApiFileFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.NetworkModule_OkHttpFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.NetworkModule_RequestInterceptorFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.NetworkModule_ResponseInterceptorFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.NetworkModule_RetrofitFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.NetworkModule_RetrofitFileFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.PrefModule_ProvidesPrefSourceFactory { } } } namespace id.co.iconpln.smartcity { namespace di.module { class id.co.iconpln.smartcity.di.module.RepositoryModule_ProvideUserRepositoryFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.dashboard { class id.co.iconpln.smartcity.ui.dashboard.DashboardActivity_MembersInjector { } } } namespace id.co.iconpln.smartcity { namespace ui.kota { class id.co.iconpln.smartcity.ui.kota.KotaActivityModule_ProvideKotaAdapterFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.kota { class id.co.iconpln.smartcity.ui.kota.KotaActivityModule_ProvideKotaPresenterFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.kota { class id.co.iconpln.smartcity.ui.kota.KotaActivity_MembersInjector { } } } namespace id.co.iconpln.smartcity { namespace ui.kota { class id.co.iconpln.smartcity.ui.kota.KotaPresenterImpl_Factory { } } } namespace id.co.iconpln.smartcity { namespace ui.login { class id.co.iconpln.smartcity.ui.login.LoginActivityModule_ProvideLoginPresenterFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.login { class id.co.iconpln.smartcity.ui.login.LoginActivity_MembersInjector { } } } namespace id.co.iconpln.smartcity { namespace ui.login { class id.co.iconpln.smartcity.ui.login.LoginPresenterImp_Factory { } } } namespace id.co.iconpln.smartcity { namespace ui.provinsi { class id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivityModule_ProvideProvinsiAdapterFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.provinsi { class id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivityModule_ProvideProvinsiPresenterFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.provinsi { class id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivity_MembersInjector { } } } namespace id.co.iconpln.smartcity { namespace ui.provinsi { class id.co.iconpln.smartcity.ui.provinsi.ProvinsiPresenterImpl_Factory { } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { class id.co.iconpln.smartcity.ui.publicservices.PublicServiceImpl_Factory { } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { class id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvideJPengaduanPresenterFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { class id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvidePengaduanPresenterFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { class id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvidePublicServiceFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { class id.co.iconpln.smartcity.ui.publicservices.PublicServicesFragment_MembersInjector { } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { namespace jenispengaduan { class id.co.iconpln.smartcity.ui.publicservices.jenispengaduan.JPengaduanImpl_Factory { } } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { namespace jenispengaduan { class id.co.iconpln.smartcity.ui.publicservices.jenispengaduan.JenisPengaduanFragment_MembersInjector { } } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { namespace pengaduan { class id.co.iconpln.smartcity.ui.publicservices.pengaduan.DataPengaduanFragment_MembersInjector { } } } } namespace id.co.iconpln.smartcity { namespace ui.publicservices { namespace pengaduan { class id.co.iconpln.smartcity.ui.publicservices.pengaduan.PengaduanPresenterImpl_Factory { } } } } namespace id.co.iconpln.smartcity { namespace ui.splash { class id.co.iconpln.smartcity.ui.splash.SplashActivityModule_ProvideSplashPresenterFactory { } } } namespace id.co.iconpln.smartcity { namespace ui.splash { class id.co.iconpln.smartcity.ui.splash.SplashPresenterImp_Factory { } } } namespace id.co.iconpln.smartcity { namespace util { class id.co.iconpln.smartcity.util.ColorTempl { } } } namespace id.co.iconpln.smartcity { namespace util { class id.co.iconpln.smartcity.util.ValidatorUtils { } } } namespace id.co.iconpln.smartcity { namespace widget { class id.co.iconpln.smartcity.widget.CustomValueFormatter { } } } namespace id.co.iconpln.smartcity { namespace widget { class id.co.iconpln.smartcity.widget.SnackbarManager { } } } namespace id.co.iconpln.smartcity { namespace widget { class id.co.iconpln.smartcity.widget.TopSnackbar { } } } id.co.iconpln.insidal.network.RequestInterceptor_Factory .up.|> dagger.internal.Factory id.co.iconpln.insidal.network.ResponseInterceptor_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.AppController_MembersInjector .up.|> dagger.MembersInjector id.co.iconpln.smartcity.data.repository.UserRepository_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.data.source.db.AppDatabaseSource_Impl -up-|> id.co.iconpln.smartcity.data.source.db.AppDatabaseSource id.co.iconpln.smartcity.data.source.db.AppDatabaseSource_Impl o-- id.co.iconpln.smartcity.data.source.db.dao.ContactDao : _contactDao id.co.iconpln.smartcity.data.source.db.dao.ContactDao_Impl -up-|> id.co.iconpln.smartcity.data.source.db.dao.ContactDao id.co.iconpln.smartcity.data.source.remote.AppRemoteFileSource_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.data.source.remote.AppRemoteSource_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.component.DaggerAppComponent .up.|> id.co.iconpln.smartcity.di.component.AppComponent id.co.iconpln.smartcity.di.component.DaggerAppComponent o-- id.co.iconpln.smartcity.di.module.AppModule : appModule id.co.iconpln.smartcity.di.component.DaggerAppComponent o-- id.co.iconpln.smartcity.di.module.AppModule_ProvideContextFactory : provideContextProvider id.co.iconpln.smartcity.di.component.DaggerAppComponent o-- id.co.iconpln.smartcity.di.module.RepositoryModule : repositoryModule id.co.iconpln.smartcity.di.component.DaggerAppComponent o-- id.co.iconpln.insidal.network.ResponseInterceptor_Factory : responseInterceptorProvider id.co.iconpln.smartcity.di.module.AppModule_ProvideCalligraphyDefaultConfig$app_devDebugFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.AppModule_ProvideCalligraphyDefaultConfig$app_devDebugFactory o-- id.co.iconpln.smartcity.di.module.AppModule : module id.co.iconpln.smartcity.di.module.AppModule_ProvideContextFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.AppModule_ProvideContextFactory o-- id.co.iconpln.smartcity.di.module.AppModule : module id.co.iconpln.smartcity.di.module.AppModule_ProvideLayoutManager$app_devDebugFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.AppModule_ProvideLayoutManager$app_devDebugFactory o-- id.co.iconpln.smartcity.di.module.AppModule : module id.co.iconpln.smartcity.di.module.AppModule_ProvideSchedulerProvider$app_devDebugFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.AppModule_ProvideSchedulerProvider$app_devDebugFactory o-- id.co.iconpln.smartcity.di.module.AppModule : module id.co.iconpln.smartcity.di.module.AppModule_ProvideValidator$app_devDebugFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.AppModule_ProvideValidator$app_devDebugFactory o-- id.co.iconpln.smartcity.di.module.AppModule : module id.co.iconpln.smartcity.di.module.DatabaseModule_ProvideDatabaseFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.DatabaseModule_ProvideDatabaseFactory o-- id.co.iconpln.smartcity.di.module.DatabaseModule : module id.co.iconpln.smartcity.di.module.NetworkModule_ApiFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.NetworkModule_ApiFactory o-- id.co.iconpln.smartcity.di.module.NetworkModule : module id.co.iconpln.smartcity.di.module.NetworkModule_ApiFileFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.NetworkModule_ApiFileFactory o-- id.co.iconpln.smartcity.di.module.NetworkModule : module id.co.iconpln.smartcity.di.module.NetworkModule_OkHttpFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.NetworkModule_OkHttpFactory o-- id.co.iconpln.smartcity.di.module.NetworkModule : module id.co.iconpln.smartcity.di.module.NetworkModule_RequestInterceptorFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.NetworkModule_RequestInterceptorFactory o-- id.co.iconpln.smartcity.di.module.NetworkModule : module id.co.iconpln.smartcity.di.module.NetworkModule_ResponseInterceptorFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.NetworkModule_ResponseInterceptorFactory o-- id.co.iconpln.smartcity.di.module.NetworkModule : module id.co.iconpln.smartcity.di.module.NetworkModule_RetrofitFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.NetworkModule_RetrofitFactory o-- id.co.iconpln.smartcity.di.module.NetworkModule : module id.co.iconpln.smartcity.di.module.NetworkModule_RetrofitFileFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.NetworkModule_RetrofitFileFactory o-- id.co.iconpln.smartcity.di.module.NetworkModule : module id.co.iconpln.smartcity.di.module.PrefModule_ProvidesPrefSourceFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.PrefModule_ProvidesPrefSourceFactory o-- id.co.iconpln.smartcity.di.module.PrefModule : module id.co.iconpln.smartcity.di.module.RepositoryModule_ProvideUserRepositoryFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.di.module.RepositoryModule_ProvideUserRepositoryFactory o-- id.co.iconpln.smartcity.di.module.RepositoryModule : module id.co.iconpln.smartcity.ui.dashboard.DashboardActivity_MembersInjector .up.|> dagger.MembersInjector id.co.iconpln.smartcity.ui.kota.KotaActivityModule_ProvideKotaAdapterFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.kota.KotaActivityModule_ProvideKotaAdapterFactory o-- id.co.iconpln.smartcity.ui.kota.KotaActivityModule : module id.co.iconpln.smartcity.ui.kota.KotaActivityModule_ProvideKotaPresenterFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.kota.KotaActivityModule_ProvideKotaPresenterFactory o-- id.co.iconpln.smartcity.ui.kota.KotaActivityModule : module id.co.iconpln.smartcity.ui.kota.KotaActivity_MembersInjector .up.|> dagger.MembersInjector id.co.iconpln.smartcity.ui.kota.KotaPresenterImpl_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.login.LoginActivityModule_ProvideLoginPresenterFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.login.LoginActivityModule_ProvideLoginPresenterFactory o-- id.co.iconpln.smartcity.ui.login.LoginActivityModule : module id.co.iconpln.smartcity.ui.login.LoginActivity_MembersInjector .up.|> dagger.MembersInjector id.co.iconpln.smartcity.ui.login.LoginPresenterImp_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivityModule_ProvideProvinsiAdapterFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivityModule_ProvideProvinsiAdapterFactory o-- id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivityModule : module id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivityModule_ProvideProvinsiPresenterFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivityModule_ProvideProvinsiPresenterFactory o-- id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivityModule : module id.co.iconpln.smartcity.ui.provinsi.ProvinsiActivity_MembersInjector .up.|> dagger.MembersInjector id.co.iconpln.smartcity.ui.provinsi.ProvinsiPresenterImpl_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.publicservices.PublicServiceImpl_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvideJPengaduanPresenterFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvideJPengaduanPresenterFactory o-- id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule : module id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvidePengaduanPresenterFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvidePengaduanPresenterFactory o-- id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule : module id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvidePublicServiceFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule_ProvidePublicServiceFactory o-- id.co.iconpln.smartcity.ui.publicservices.PublicServiceModule : module id.co.iconpln.smartcity.ui.publicservices.PublicServicesFragment_MembersInjector .up.|> dagger.MembersInjector id.co.iconpln.smartcity.ui.publicservices.jenispengaduan.JPengaduanImpl_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.publicservices.jenispengaduan.JenisPengaduanFragment_MembersInjector .up.|> dagger.MembersInjector id.co.iconpln.smartcity.ui.publicservices.pengaduan.DataPengaduanFragment_MembersInjector .up.|> dagger.MembersInjector id.co.iconpln.smartcity.ui.publicservices.pengaduan.PengaduanPresenterImpl_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.splash.SplashActivityModule_ProvideSplashPresenterFactory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.ui.splash.SplashActivityModule_ProvideSplashPresenterFactory o-- id.co.iconpln.smartcity.ui.splash.SplashActivityModule : module id.co.iconpln.smartcity.ui.splash.SplashPresenterImp_Factory .up.|> dagger.internal.Factory id.co.iconpln.smartcity.util.ValidatorUtils o-- id.co.iconpln.smartcity.util.ValidatorUtils.OnValidationListener : onValidationListener id.co.iconpln.smartcity.widget.CustomValueFormatter .up.|> com.github.mikephil.charting.utils.ValueFormatter id.co.iconpln.smartcity.widget.SnackbarManager o-- id.co.iconpln.smartcity.widget.SnackbarManager.SnackbarRecord : mCurrentSnackbar id.co.iconpln.smartcity.widget.SnackbarManager o-- id.co.iconpln.smartcity.widget.SnackbarManager.SnackbarRecord : mNextSnackbar id.co.iconpln.smartcity.widget.TopSnackbar o-- id.co.iconpln.smartcity.widget.TopSnackbar.Callback : mCallback id.co.iconpln.smartcity.widget.TopSnackbar o-- id.co.iconpln.smartcity.widget.SnackbarManager.Callback : mManagerCallback id.co.iconpln.smartcity.widget.TopSnackbar o-- id.co.iconpln.smartcity.widget.TopSnackbar.SnackbarLayout : mView 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
770822afb673df1be14b24f65006aeec55eabb64
4607d52b8b7c1f9d6f2db854cde84cb8f0e33293
/01-ecmascript/day-03/quiz/student.puml
63c50c50d4f15606d6dc13b72ff1d4ab66ddfaad
[]
no_license
irfahadi/code.academy-batch07
ab35c9eb10b6131c2cf5c6cb3f03831840824f66
48149f39335d1027a3eedbeacecf84ce427a167b
refs/heads/main
2023-03-22T07:28:52.534103
2021-02-18T17:55:29
2021-02-18T17:55:29
334,795,881
0
0
null
2021-02-18T17:55:29
2021-02-01T01:18:35
JavaScript
UTF-8
PlantUML
false
false
243
puml
@startuml student-bootcamp class Student{ fullName city education grade type bootcamp batch skillPoint } class Beasiswa extends Student { insentif } class Reguler extends Student { netPrice } @enduml
bc25c73264c03f83529cfdad7b6da8d0a9c3afb1
4169eebf1a23c816f6e05b3c4e45a75da42db5e9
/src/site/puml/detailedFilterHierarchy.puml
f125a3d6bfe55f94daa7fc83169f0cad7a092009
[ "Apache-2.0" ]
permissive
mojohaus/jaxb2-maven-plugin
f70a91fcd1a03c088de1b7691e9fe7bc0355b8c1
b61990a8b0d0036773b9015b86546ec49c800f82
refs/heads/master
2023-08-23T07:15:05.167688
2023-06-16T02:59:28
2023-06-16T06:55:18
35,698,983
104
93
Apache-2.0
2023-09-05T04:59:22
2015-05-15T22:02:53
Java
UTF-8
PlantUML
false
false
1,025
puml
@startuml interface Filter<T> { void initialize(Log log); boolean isInitialized(); boolean accept(T candidate); } abstract class AbstractFilter<T> implements Filter { Log log; boolean processNullValues; + boolean onNullCandidate(); + boolean accept(T candidate); # boolean onCandidate(final T nonNullCandidate) } note left of AbstractFilter: Provides standard lifecycle\nimplementation and null awareness abstract class AbstractPatternFilter<T> extends AbstractFilter { boolean acceptCandidateOnPatternMatch; StringConverter<T> converter; List<String> patterns; # boolean onCandidate(final T nonNullCandidate) } note left of AbstractPatternFilter: Provides property setters for\nMaven plugin configuration class PatternFileFilter<File> extends AbstractPatternFilter implements java.io.FileFilter { } note left of PatternFileFilter: Provides defaults for\nMaven plugin configuration class PatternURLFilter<URL> extends AbstractPatternFilter { } @enduml
12a95083e340ed56d176778fdc5bbd9066a8e9f9
c12709b46160493fa7837ddd96cf2dc170b7dc0d
/assets/umls/abstract-factory-pattern.puml
c03789e6816ecf79b8c90c28d007174630f87d9c
[]
no_license
battlerhythm/battlerhythm.github.io
c0e9bd62695b915ce734266be35a0e367c4e6225
3b53041d25f2935747122c75dc3b501bc9cba05a
refs/heads/master
2021-12-03T08:38:20.238977
2021-11-28T19:21:25
2021-11-28T19:21:25
132,821,261
0
1
null
2018-05-10T01:15:52
2018-05-09T22:59:00
JavaScript
UTF-8
PlantUML
false
false
1,068
puml
@startuml interface Factory { Product getProductA() Product getProductB() } class ConcreteFactory1 { Product getProductA() Product getProductB() } class ConcreteFactory2 { Product getProductA() Product getProductB() } class ConcreteFactory3 { Product getProductA() Product getProductB() } interface ProductA interface ProductB together { class ConcreteProductA1 class ConcreteProductA2 class ConcreteProductA3 } class ConcreteProductB1 class ConcreteProductB2 class ConcreteProductB3 Factory <|-- ConcreteFactory1 Factory <|-- ConcreteFactory2 Factory <|-- ConcreteFactory3 ConcreteProductA1 --|> ProductA ConcreteProductA2 --|> ProductA ConcreteProductA3 --|> ProductA ConcreteProductB1 --|> ProductB ConcreteProductB2 --|> ProductB ConcreteProductB3 --|> ProductB ConcreteFactory1 -down--> ConcreteProductA1 ConcreteFactory1 -down--> ConcreteProductB1 ConcreteFactory2 -down--> ConcreteProductA2 ConcreteFactory2 -down--> ConcreteProductB2 ConcreteFactory3 -down--> ConcreteProductA3 ConcreteFactory3 -down--> ConcreteProductB3 @enduml
809d44d74e5dd2a2c33ef8396f66e15155567a7a
8526162a04e1aafc763c035c23cfcfb25eee6159
/app/src/main/java/com/voicenotes/view/settings/settings.plantuml
368ae2b8c34a9b39f3627bdd3512c70488061d81
[ "BSD-2-Clause" ]
permissive
fernandopm7/com.tfg.voicenotes
b1c869a0c94b59c6d7d2bce936b489bd84d3ae3b
7bef4346b79bada48a85ff1c3011e39a753b814b
refs/heads/master
2020-06-04T22:08:42.890833
2019-08-27T17:10:46
2019-08-27T17:10:46
192,209,386
0
0
BSD-2-Clause
2019-08-27T18:56:21
2019-06-16T15:50:32
Java
UTF-8
PlantUML
false
false
1,085
plantuml
@startuml title __SETTINGS's Class Diagram__\n package com.voicenotes { package com.voicenotes.view.settings { class SettingsActivity { ~ appInfoButton : Button ~ calibrationButton : Button ~ saveSettingsButton : Button ~ defaultSettingsButton : Button ~ categories : List<String> ~ categories2 : List<String> ~ currentModel : String ~ appInfoButtonListener : OnClickListener ~ calibrationButtonListener : OnClickListener ~ saveSettingsButtonListener : OnClickListener ~ defaultSettingsButtonListener : OnClickListener # onCreate() + onItemSelected() + onNothingSelected() } } } SettingsActivity -up-|> OnItemSelectedListener SettingsActivity -up-|> AppCompatActivity HostCallbacks -up-|> FragmentHostCallback 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
6894ed37a9747b09fccce8ba8ec99c7b303cfede
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Activation/ActivationPlayableAsset.puml
f350a619c2e14bac4548a5927bfe318418116680
[]
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
272
puml
@startuml class ActivationPlayableAsset { + <<override>> CreatePlayable(graph:PlayableGraph, go:GameObject) : Playable } PlayableAsset <|-- ActivationPlayableAsset ITimelineClipAsset <|-- ActivationPlayableAsset ActivationPlayableAsset --> "clipCaps" ClipCaps @enduml
bcb37e98690f813e007a128623694b2e4f02b36d
bcb7fd9ec9e69e52780b27da867b8055dfdc043c
/src/lattice/ImplicationalSystemWriterFactory.iuml
dac6d3a3e06e09f7e43b55e76c3c3954390369a7
[ "CECILL-B" ]
permissive
vanthonguyen/lattice-sequence
2e962d089b0053ba90332932fe3881dfe8ec71ac
72ebfe551ef013da521b81121e3f98164b2a00bf
refs/heads/master
2020-04-15T07:22:32.920465
2015-02-01T17:33:59
2015-02-01T17:33:59
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
445
iuml
package lattice { class ImplicationalSystemWriterFactory { -{static}HashMap<String, ImplicationalSystemWriter> writers +{static}ImplicationalSystemWriter register(ImplicationalSystemWriter writer, String extension) +{static}ImplicationalSystemWriter unregister(String extension) +{static}ImplicationalSystemWriter get(String extension) } ImplicationalSystemWriterFactory o-- ImplicationalSystemWriter }
3c4753be25545da0235b23696a4f22b1af877959
f4435881fb92cbfdeddbe5df2a4875fd0380de05
/documentation/manual/src/main/paradox/algebras/json-entities.plantuml
85ca56e838303e248687c3d00b51ff1a00d0b728
[ "MIT", "LicenseRef-scancode-free-unknown" ]
permissive
endpoints4s/endpoints4s
b6c264320182fbb333340868ddb4ede9363091a8
0cba8bcded63c6c89eb4a6178009d8d6d7e347f0
refs/heads/master
2023-08-31T23:47:21.860898
2023-08-05T14:34:53
2023-08-06T10:00:43
57,041,055
140
31
MIT
2023-09-12T16:52:39
2016-04-25T12:48:00
Scala
UTF-8
PlantUML
false
false
555
plantuml
@startuml interface Endpoints interface JsonEntities { type JsonRequest[A] type JsonResponse[A] } interface JsonSchemas { type JsonSchema[A] } interface JsonEntitiesFromCodecs { type JsonCodec[A] type JsonRequest[A] = JsonCodec[A] type JsonResponse[A] = JsonCodec[A] } interface JsonEntitiesFromSchemas { type JsonRequest[A] = JsonSchema[A] type JsonResponse[A] = JsonSchema[A] } Endpoints <|-- JsonEntities JsonEntities <|-- JsonEntitiesFromSchemas JsonSchemas <|-- JsonEntitiesFromSchemas JsonEntities <|-- JsonEntitiesFromCodecs @enduml
3c8a9864ed6439b53b5e022d47cb0e5ca1be665a
3656b9512914e5ce9513cc8cc30fe552021f6e01
/coba
144bbb05a6f9ba06f5b3e38e356f9c111b2dfd94
[]
no_license
daffashafwan/project_resonator
5404fea0e44560c59548f0be136927e5a2dd81ed
577fcacad04e56e5b65b0edc25ea6dfa124180b4
refs/heads/master
2023-08-04T09:59:57.545380
2021-09-18T03:50:22
2021-09-18T03:50:22
288,103,823
2
0
null
null
null
null
UTF-8
PlantUML
false
false
8,499
@startuml set namespaceSeparator :: class "project_resonator::main.dart::MyApp" { +Widget build() } "flutter::src::widgets::framework.dart::StatelessWidget" <|-- "project_resonator::main.dart::MyApp" class "project_resonator::main.dart::MyHomePage" { +dynamic title +_MyHomePageState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::main.dart::MyHomePage" class "project_resonator::main.dart::_MyHomePageState" { +int currentTab +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::main.dart::_MyHomePageState" class "project_resonator::todos.dart::Todo" { +dynamic title +dynamic description } class "project_resonator::todos.dart::TodosScreen" { +List<Todo> todos +Widget build() } "flutter::src::widgets::framework.dart::StatelessWidget" <|-- "project_resonator::todos.dart::TodosScreen" class "project_resonator::todos.dart::DetailScreen" { +Todo todo +Widget build() } "project_resonator::todos.dart::DetailScreen" o-- "project_resonator::todos.dart::Todo" "flutter::src::widgets::framework.dart::StatelessWidget" <|-- "project_resonator::todos.dart::DetailScreen" class "project_resonator::models::saved-item.dart::SavedItem" { {static} +String table +int id +String kalimat +Map toMap() {static} +SavedItem fromMap() } "project_resonator::models::model.dart::Model" <|-- "project_resonator::models::saved-item.dart::SavedItem" abstract class "project_resonator::models::model.dart::Model" { +int id {static} +dynamic fromMap() +dynamic toMap() } class "project_resonator::models::history-item.dart::HistoryItem" { {static} +String table +int id +String kalimat +String timestamp +Map toMap() {static} +HistoryItem fromMap() } "project_resonator::models::model.dart::Model" <|-- "project_resonator::models::history-item.dart::HistoryItem" class "project_resonator::pages::history.dart::TtsState" { +int index {static} +List<TtsState> values {static} +TtsState playing {static} +TtsState stopped } "project_resonator::pages::history.dart::TtsState" o-- "project_resonator::pages::history.dart::TtsState" class "project_resonator::pages::history.dart::History" { +_HistoryState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::history.dart::History" class "project_resonator::pages::history.dart::_HistoryState" { +FlutterTts flutterTts +TtsState ttsState +dynamic voice -List<HistoryItem> _kalimat -TextStyle _style -TextStyle _style_2 +dynamic dropdownValue +dynamic isPlaying +dynamic isStopped -List<Widget> _items +Widget format() -void _deleteDialog() +void initState() +dynamic initTts() -Future _speak() -void _delete() +Future refresh() +Widget build() } "project_resonator::pages::history.dart::_HistoryState" o-- "flutter_tts::flutter_tts.dart::FlutterTts" "project_resonator::pages::history.dart::_HistoryState" o-- "project_resonator::pages::history.dart::TtsState" "project_resonator::pages::history.dart::_HistoryState" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::history.dart::_HistoryState" class "project_resonator::pages::penyimpanan.dart::TtsState" { +int index {static} +List<TtsState> values {static} +TtsState playing {static} +TtsState stopped } "project_resonator::pages::penyimpanan.dart::TtsState" o-- "project_resonator::pages::penyimpanan.dart::TtsState" class "project_resonator::pages::penyimpanan.dart::Penyimpanan" { +_PenyimpananState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::penyimpanan.dart::Penyimpanan" class "project_resonator::pages::penyimpanan.dart::_PenyimpananState" { +FlutterTts flutterTts +TtsState ttsState +dynamic voice +dynamic kalimat -List<SavedItem> _kalimat -TextStyle _style +dynamic isPlaying +dynamic isStopped -List<Widget> _items +Widget format() +void start() -void _delete() -void _save() -void _create() +void initState() +dynamic initTts() -Future _speak() +void refresh() +Widget build() } "project_resonator::pages::penyimpanan.dart::_PenyimpananState" o-- "flutter_tts::flutter_tts.dart::FlutterTts" "project_resonator::pages::penyimpanan.dart::_PenyimpananState" o-- "project_resonator::pages::penyimpanan.dart::TtsState" "project_resonator::pages::penyimpanan.dart::_PenyimpananState" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::penyimpanan.dart::_PenyimpananState" class "project_resonator::pages::penyimpananStack.dart::PenyimpananStack" { +dynamic title +_PenyimpananStackState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::penyimpananStack.dart::PenyimpananStack" class "project_resonator::pages::penyimpananStack.dart::_PenyimpananStackState" { +int currentTab +dynamic dropdownValue +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::penyimpananStack.dart::_PenyimpananStackState" class "project_resonator::pages::speak.dart::TtsState" { +int index {static} +List<TtsState> values {static} +TtsState playing {static} +TtsState stopped } "project_resonator::pages::speak.dart::TtsState" o-- "project_resonator::pages::speak.dart::TtsState" class "project_resonator::pages::speak.dart::Speak" { +List litems +List litems2 +List litems3 +_SpeakState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::speak.dart::Speak" class "project_resonator::pages::speak.dart::_SpeakState" { +FlutterTts flutterTts -dynamic _newVoiceText -dynamic _newDateText +TtsState ttsState -Map<dynamic, HighlightedWord> _highlights -bool _turn +List litems +List litems2 +List litems3 +List litems4 +TextEditingController eCtrl -SpeechToText _speech -bool _isListening -dynamic _text -double _confidence -TextStyle _style +dynamic isPlaying +dynamic isStopped -void _save() +void initState() +dynamic initTts() -Future _speak() -void _getDate() -void _onChange() -void _create() -void _saveDialog() +Widget setupAlertDialoadContainer() +Widget build() -void _listen() } "project_resonator::pages::speak.dart::_SpeakState" o-- "flutter_tts::flutter_tts.dart::FlutterTts" "project_resonator::pages::speak.dart::_SpeakState" o-- "project_resonator::pages::speak.dart::TtsState" "project_resonator::pages::speak.dart::_SpeakState" o-- "flutter::src::widgets::editable_text.dart::TextEditingController" "project_resonator::pages::speak.dart::_SpeakState" o-- "speech_to_text::speech_to_text.dart::SpeechToText" "project_resonator::pages::speak.dart::_SpeakState" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::speak.dart::_SpeakState" class "project_resonator::pages::learn.dart::Learn" { +_LearnState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::learn.dart::Learn" class "project_resonator::pages::learn.dart::_LearnState" { +dynamic assett +Widget svg -TextStyle _style +Widget build() } "project_resonator::pages::learn.dart::_LearnState" o-- "flutter::src::widgets::framework.dart::Widget" "project_resonator::pages::learn.dart::_LearnState" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::learn.dart::_LearnState" class "project_resonator::pages::awal.dart::Awal" { +_AwalState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::awal.dart::Awal" class "project_resonator::pages::awal.dart::_AwalState" { +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::awal.dart::_AwalState" abstract class "project_resonator::services::db.dart::DB" { {static} -Database _db {static} -int _version {static} +Future init() {static} +void onCreate() {static} +Future query() {static} +Future insert() {static} +Future update() {static} +Future delete() } "project_resonator::services::db.dart::DB" o-- "sqflite_common::sqlite_api.dart::Database" @enduml
13c17f4152f6bf86e03b2faa71a04d0615f15a5d
9735593c0c7c9f71651b174ec0dfc02753a2d0b2
/src/main/java/designpatterns/abstractfactory/abstractFactory.puml
2f77722dfec0eb26ee2f2b7ef1b92ff6762b8854
[]
no_license
pepe00486/DesignPatterns
cbfbe5b7b1435e6791e496db646646c27beb73e3
d57000a580947bf67f433cc08936a5c6c8a6c1a5
refs/heads/main
2023-02-10T14:41:04.246343
2021-01-10T22:13:16
2021-01-10T22:13:16
326,499,753
0
0
null
null
null
null
UTF-8
PlantUML
false
false
636
puml
@startuml title Abstract Factory Pattern interface Product{ } class ConcreteProductA{ } class ConcreteProductB{ } interface Factory { } class ConcreteFactoryOne{ +factoryMethodA() : Product +factoryMethodB() : Product } class ConcreteFactoryTwo{ +factoryMethodA() : Product +factoryMethodB() : Product } class Client{ } ConcreteProductA ..|> Product ConcreteProductB ..|> Product ConcreteFactoryOne ..|> Factory ConcreteFactoryTwo ..|> Factory Client --> Factory Client --> Product ConcreteFactoryOne --> Product ConcreteFactoryTwo --> Product Factory -down[hidden]- Client @enduml
14e469f7813c7d50dbc8f4e7440a2a6a056f3522
4831b8d3c95595367c9bb95adbc32f77fce5accf
/client-session/etc/client-session.urm.puml
eea5ce8a9054ae9a633b7dcab05c5790e360849e
[ "LGPL-2.0-or-later", "LGPL-3.0-only", "MIT" ]
permissive
SergeyZhernovoy/java-design-patterns
bcccb330a44b3d09a991b943668416d725212157
1e654067c9761f4db800508d431769e3474e9c7c
refs/heads/master
2023-03-11T08:59:09.285082
2023-03-02T18:07:23
2023-03-02T18:07:23
73,673,158
0
5
MIT
2021-05-07T13:38:25
2016-11-14T06:20:24
Java
UTF-8
PlantUML
false
false
1,304
puml
@startuml package com.iluwatar.client.session { class App { + App() + main(args : String[]) {static} } class Request { - data : String - session : Session + Request(data : String, session : Session) # canEqual(other : Object) : boolean + equals(o : Object) : boolean + getData() : String + getSession() : Session + hashCode() : int + setData(data : String) + setSession(session : Session) + toString() : String } class Server { - LOGGER : Logger {static} - host : String - port : int + Server(host : String, port : int) # canEqual(other : Object) : boolean + equals(o : Object) : boolean + getHost() : String + getPort() : int + getSession(name : String) : Session + hashCode() : int + process(request : Request) + setHost(host : String) + setPort(port : int) + toString() : String } class Session { - clientName : String - id : String + Session(id : String, clientName : String) # canEqual(other : Object) : boolean + equals(o : Object) : boolean + getClientName() : String + getId() : String + hashCode() : int + setClientName(clientName : String) + setId(id : String) + toString() : String } } Request --> "-session" Session @enduml
d33cc9ed9940dd2466327bf19f99fd162f96b702
5e74f3619cbba40a2009edd461a46cf63a695cef
/Shos.UndoRedoList/Documents/ClassDiagrams/UndoRedoObservableCollection.puml
8ef821e6859c5b8b7b7eaf5ab937166e271e8437
[ "MIT" ]
permissive
damian-666/Shos.UndoRedoList
6a0d6e6c5fe89ec6e1bfc6ef8656339a582b76db
3275f1a7853c36033f1e17fbf26ca23c1944662f
refs/heads/master
2023-03-18T01:49:53.649601
2020-12-11T05:19:40
2020-12-11T05:19:40
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
398
puml
@startuml class "UndoRedoObservableCollection`1"<TElement> { + <<event>> CollectionChanged : NotifyCollectionChangedEventHandler + UndoRedoObservableCollection(maximumUndoTimes:int) } class "UndoRedoList`2"<T1,T2> { } "UndoRedoList`2" "<TElement,ObservableCollection<TElement>>" <|-- "UndoRedoObservableCollection`1" INotifyCollectionChanged <|-- "UndoRedoObservableCollection`1" @enduml
540272db07ec1b2e58bf04b8c08a6c9d2fa322dd
f7389ede7c743b8ce3d174eee24ebcab316354f6
/Diagrammer/CentralComputer/Klasser/Styringsenhed/CD.puml
57cc392ab5cfba45ceb0ee407151b9ba2dbea5af
[]
no_license
Solvgraa-mager/E3PRJ3
7e2b70775c0d8b8312bc893e0c9014fd766af9b0
fb507b5528417459714c00b73c75378d6465af19
refs/heads/master
2023-01-31T11:01:30.966313
2020-12-18T10:28:55
2020-12-18T10:28:55
294,479,612
0
1
null
null
null
null
UTF-8
PlantUML
false
false
275
puml
@startuml skinparam wrapWidth 200 class Styringsenhed <<Boundary>>{ -_speed : int -_direction : int -_SPIM : SPIMaster* +Styringsenhed(int channel, int comSpeed, int bufferSize) +GetDirectionAndSpeed(int &dir, int &speed) +Styringsenhed() } @enduml
3d02ceefda5cc62068c24b88d03aba3f21305d10
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StandalonePriceKeySetMessagePayload.puml
b44834e28a60a20b668872e0d7b7c2200188d98e
[]
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
461
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 StandalonePriceKeySetMessagePayload [[StandalonePriceKeySetMessagePayload.svg]] extends MessagePayload { type: String key: String oldKey: String } interface MessagePayload [[MessagePayload.svg]] { type: String } @enduml
4f20330efc399e45d1d1b239b228356bf26b5921
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderShippingInfoSetMessage.puml
e2e737d373fd1516259a6b483cb73f686b369894
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
1,257
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 OrderShippingInfoSetMessage [[OrderShippingInfoSetMessage.svg]] extends OrderMessage { 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]] shippingInfo: [[ShippingInfo.svg ShippingInfo]] oldShippingInfo: [[ShippingInfo.svg ShippingInfo]] } interface OrderMessage [[OrderMessage.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] } @enduml
70f97881f6e98c5f3424456200ef9dc7b0bcab6a
ed795a7f76d4b245e3a98458085773cee4fac855
/backend/documentation/Diagrams.puml
efea10df9d63895eac574f8c3ac4a36edf0217d3
[]
no_license
joaoduartepinto/recipes
e148132ac15354dcd74dbcb9a892afaeb9900f59
bb00b3cde740aabb63f847e23740588f9e39eb38
refs/heads/master
2023-04-25T04:40:29.298156
2021-05-23T12:17:47
2021-05-23T12:17:47
359,191,239
0
0
null
null
null
null
UTF-8
PlantUML
false
false
898
puml
@startuml hide empty members class Recipe { - name - ingredients - time of cook - steps } class MainDish { } class Meat { } class Fish { } class Desert { } class Drink { } class Entries {} 'class Picture { '} MainDish -u-|> Recipe : is a Desert -u-|> Recipe : is a Drink -u-|> Recipe : is a Entries -u-|> Recipe : is a Meat -u-|> MainDish : is a Fish -u-|> MainDish : is a 'Recipe "1" -u- "1..*" Picture @enduml @startuml hide empty members package recipe { class Recipe <<AggregateRoot>> { - name - ingredients - time of cook - steps } /'class Picture {} '/ } class RecipeName <<ID>> {} class Ingredient <<ValueObject>> {} class TimeOfCooking <<ValueObject>> {} class Steps <<ValueObject>> {} 'Recipe --> "1..*\npicture" Picture Recipe -r-> "1\nname" RecipeName Recipe --u-> "1.* ingredients" Ingredient Recipe -l-> "1 time" TimeOfCooking Recipe ---> "1 steps" Steps @enduml
b68d0d593e7a47725925b431d7326bfcd196a056
8e0b778be8c51759f212c9a7d6750f501bc5a130
/src/main/java/com/ab/visitor/Visitor.puml
6e2f8052e16faab3cfe90dd92fdb236e3181b159
[]
no_license
ab9508/proxy
993f913fcfa2ba314d0640ca06a8625989b95ea4
b427beb039e3447fdf37266471731a610d200f5f
refs/heads/master
2021-02-10T13:56:53.118440
2020-03-09T10:40:40
2020-03-09T10:40:40
244,387,567
0
0
null
null
null
null
UTF-8
PlantUML
false
false
444
puml
@startuml class Visitor{ operation1(): void operation2(): void } class ConcreteVisitor{ operation1(): void operation2(): void } class Element{ accept(visitor: Visitor): void } class ConcreteElement{ accept(visitor: Visitor): void } class ObjectStruture{ element: Element } class Client Visitor <|-- ConcreteVisitor Visitor <-- Element ObjectStruture o-- Element Element <|-- ConcreteElement Visitor <.. Client ObjectStruture <.. Client @enduml
72e0e4f158db8e0689fb04bb626c5f1362b9eff1
6d666244c20eb70b4d1b2393c64de25f8d961d09
/app/src/main/java/com/example/edelhome/ui/anmelden/anmelden.plantuml
0ff3cc550cade5714886e3c3f5dfa6cfcd3fc845
[]
no_license
Neptun95/EdelHomeAPP
582c3ed65a3b630878fd36de0a0e75a4955d3f89
bcf529dfdd6c5ac67c8ee7809c360b31bd065f8d
refs/heads/master
2021-02-24T21:33:00.940882
2020-03-06T14:35:23
2020-03-06T14:35:23
245,442,067
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,368
plantuml
@startuml title __ANMELDEN's Class Diagram__\n namespace com.example.edelhome { namespace ui.anmelden { class com.example.edelhome.ui.anmelden.AnmeldenFragment { - auth : FirebaseAuth - btn_sigin : Button - email : EditText - password : EditText - textEmail : TextView - textName : TextView + onCreateView() } } } namespace com.example.edelhome { namespace ui.anmelden { class com.example.edelhome.ui.anmelden.AnmeldenViewModel { - mMail : MutableLiveData<String> - mText : MutableLiveData<String> + AnmeldenViewModel() + getMail() + getText() + setMail() } } } com.example.edelhome.ui.anmelden.AnmeldenFragment -up-|> androidx.fragment.app.Fragment com.example.edelhome.ui.anmelden.AnmeldenFragment o-- com.example.edelhome.ui.anmelden.AnmeldenViewModel : anmeldenViewModel com.example.edelhome.ui.anmelden.AnmeldenFragment o-- com.example.edelhome.ui.home.HomeFragment : homeFragment com.example.edelhome.ui.anmelden.AnmeldenViewModel -up-|> androidx.lifecycle.ViewModel 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
a40446370174c53e8a76491bb5ffa36f3142a964
c89cce40c021ec38a50916c0424204846cb91f70
/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/UML/20190209_detailed.puml
1323790224fd033309111f4a14984348cdb0fb7e
[ "MIT", "BSD-3-Clause" ]
permissive
ftc358/358-2019
65a67434cfcfe7569c5d9565dc2d25ecc915192e
a074782538a789a38e4a162984c748ed59df38d8
refs/heads/master
2020-04-21T20:11:23.802382
2019-09-11T22:32:04
2019-09-11T22:32:04
169,834,803
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,731
puml
@startuml allowmixing scale 2 abstract class Robot358Main { DcMotor fL DcMotor bL DcMotor fR DcMotor bR DcMotor lift DcMotor latch DcMotor extend CRServo intake Servo box Servo token BNO055IMU _imu1 DistanceSensor rangeR DistanceSensor rangeL DistanceSensor rangeF DistanceSensor rangeB VuforiaLocalizer vuforia private TFObjectDetector tfod String VUFORIA_KEY VuforiaLocalizer.CameraDirection CAMERA_CHOICE String TFOD_MODEL_ASSET String LABEL_GOLD_MINERAL String LABEL_SILVER_MINERAL void initialize() double getCurrentHeading() void turn(TurnerIF turner, boolean runUsingEncoders, boolean stopMotors) void forward(double power, double distance) void strafe(double power, double distance) void runMotor(DcMotor motor, double power, int ticks) void resetAllDriveMotorEncoders() void resetMotorEncoder() void resetAllDriveMotorEncoders() void runUsingEncoders() void runWithoutEncoders() void stopMotors() void resetNonDriveMotorEncoders() void runNonDriveUsingEncoders() void runNonDriveWithoutEncoders() int vuforiaMineralRecognition() void initTfod() void initVuforia() void deactivateVuforia() } abstract class AutoEngine358 { RobotPosition currentPosition List<RobotPosition> robotPositionsWithHeadings List<RobotAction> robotActions List<MoveAction> robotMoveActions double POWER = 1.0 Boolean RUN_USING_ENCODERS RobotPosition STARTING_POSITION void initialize(RobotPosition STARTING_POSITION) void addRobotAction(RobotAction actionMethod) void addAllMoveActions() void runRobotActions() void clearMoveActions() void clearRobotActions() void generateMoveActions(List<RobotPosition> positions, boolean optimize) void optimizeContinuousSegments() double getAbsoluteCurrentHeading() void forwardWithCheck(double power, double distancePerSegment, int numberOfSegments, List<RobotPosition> collinearPositions) void strafeWithCheck(double power, double distancePerSegment, int numberOfSegments, List<RobotPosition> collinearPositions) void turnTo(double heading, double power) double calculateTurn(double current, double target) List<Integer> computeTurningPointIndices(List<RobotPosition> points) } abstract class RobotAction { Boolean getRequireMultithreading() Runnable getActionMethod() } class ScoreAction { Boolean requireMultithreading Runnable actionMethod ScoreAction(Boolean requireMultithreading, Runnable actionMethod) } class RobotPosition { Boolean isTurn int x int y double heading RobotPosition(int x, int y) RobotPosition(int x, int y, double heading) double getRelativeHeading() } class Pathfinder { int startX int startY int goalX int goalY int MAX_PATH_LENGTH Pathfinder(int startX, int startY, int goalX, int goalY) List<RobotPosition> generatePath() } class PlayingFieldMap { int WIDTH int HEIGHT int[][] MAP boolean blocked(PathFindingContext ctx, int x, int y) float getCost(PathFindingContext ctx, int x, int y) void pathFinderVisited(int x, int y) } class MoveAction { Boolean requireMultithreading RobotPosition toPosition Runnable actionMethod MoveAction(RobotPosition toPosition, Runnable actionMethod) } class IMUTurner { double _power double _degrees BNO055IMU _imu double _initialHeading double _maxError double _slowDifference double _rampDown double _minFactor start() double getPower() double getScaleFactor() IMUTurner(double degrees, double power, BNO055IMU imu, double maxError, StopperIF stopper) } class TurnerIF { double getPower(); double getScaleFactor(); } class StopperIF { void start(); boolean keepGoing(int position); void finish(); } class DefaultStopper { StopperIF _stopper public void start() public boolean keepGoing(int position) public void finish() } component "pathfinding package" component "Autonomous Programs" component "TeleOp Programs" AutoEngine358 <-- Robot358Main AutoEngine358 -left[hidden]- Robot358Main IMUTurner *-- Robot358Main "Autonomous Programs" <-- AutoEngine358 PlayingFieldMap *-- Pathfinder IMUTurner <-- DefaultStopper IMUTurner -up[hidden]- DefaultStopper DefaultStopper <-- StopperIF IMUTurner <-- TurnerIF IMUTurner -up[hidden]- TurnerIF "TeleOp Programs" <-- Robot358Main RobotAction *-- AutoEngine358 MoveAction <-- RobotAction ScoreAction <-- RobotAction RobotPosition *-- AutoEngine358 Pathfinder *-- AutoEngine358 Pathfinder <-- "pathfinding package" @enduml
811d570569c23973231ced7d92d55530fa74e805
b4aa4b1d488ccf3bdb6486a1a66b3a4287b23960
/uml/InventoryClasses.puml
2741dd48d31d5c6f6bf7cbda4d5c531c8210cee9
[]
no_license
ColinMitchellGit/mitchell-0227-a5
e36f572ac054657cf29276ddd33bddc70e7138f7
993cb9d12c6beaf8e9dc0a3f735f2a6c7e111caa
refs/heads/master
2023-06-29T21:40:42.439938
2021-07-26T01:34:19
2021-07-26T01:34:19
388,836,913
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,215
puml
@startuml class InventoryMain { + main() + start() } class InventoryController { - mainLists - stage - inventoryTableView - symbolColumn - valueColumn - serialNumberColumn - nameColumn + initialize() + exportInventoryItems() + loadInventoryItems() + openNewItem() + removeSelectedItem() + viewSelectedItem() + switchSceneNew() + switchSceneView() + switchSceneExport() + switchSceneLoad() + setPrimaryStage() + passMainList() } class InventoryNewController { - mainList - newValueField - newSerialNumberField - newNameField - errorText + initialize() + goBackToMain() + saveNewItem() + switchSceneMain() + limitDescription() + passMainList() } class InventoryViewController { - mainList - SelectedItemIndex - viewValueField - viewSerialNumberField - viewNameField - errorText + initialize() + goBackToMain() + saveChanges() + switchSceneMain() + limitDescription() + passMainList() + setSelectedListIndex() + display() } class InventoryExportController { - mainList - fileNameField - fileLocationField - errorText + exportInventory() + goBackToMain() + switchSceneMain() + passMainList() } class InventoryLoadController { - mainList - fileNameField - fileLocationField - errorText + goBackToMain() + loadInventory() + switchSceneMain() + passMainList() } class InventoryItem { - symbol - value - serial - name + InventoryItem() + getValue() + setValue() + getSerial() + setSerial() + getName() + setName() + getSymbol() } javafx.InventoryApplication <|-- InventoryMain InventoryMain -- InventoryController InventoryController -- InventoryNewController InventoryController -- InventoryViewController InventoryController -- InventoryExportController InventoryController -- InventoryLoadController InventoryController -- InventoryItem InventoryNewController -- InventoryItem InventoryViewController -- InventoryItem InventoryExportController -- InventoryItem InventoryLoadController -- InventoryItem @enduml
03c7748c18787f5fdd03ad49ebcafaa628cdd791
a10551318f9ca82708ac8e35c76b6c00ff4cfa0b
/Go/Server/src/main/java/translators/translators.plantuml
1e0ec37af517d9dbbb276be334402ecc0020c7a7
[]
no_license
RideTheSkyP/GoGame
4d4ebaac3c015ad00f42d6d0747c50e5f312b994
c286d9cb96f0d528db720b2d6af56edc82dd113e
refs/heads/master
2022-03-30T03:09:34.452372
2020-01-13T13:27:35
2020-01-13T13:27:35
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,573
plantuml
@startuml title __TRANSLATORS's Class Diagram__\n namespace translators { class translators.ClientMessagesTranslator { + ClientMessagesTranslator() + processIncomingMessage() + sendInvitation() + sendRefusal() - getListOfNotInGamePlayers() } } namespace translators { class translators.GamePlayTranslator { - lastDeadSuggestion : String - lastTerritorySuggestion : String + GamePlayTranslator() + confirmMove() + getLastDeadSuggestion() + getLastTerritorySuggestion() + notifyGameStart() + rejectMove() + rejectMoveAttempt() + sendChooseDead() + sendChooseTerritory() + sendDeadOK() + sendGameStopped() + sendOpponentsMove() + sendOpponentsMove() + sendRemovedStones() + sendResults() + sendResume() + sendStats() + sendSurrender() + setLastDeadSuggestion() + setLastTerritorySuggestion() - createRemovedStonesMessage() - notifyBoth() } } translators.ClientMessagesTranslator o-- server.ClientHandler : clientHandler translators.ClientMessagesTranslator o-- gameLogic.Game : game translators.GamePlayTranslator o-- gameLogic.Player : black translators.GamePlayTranslator o-- gameLogic.Player : white 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
c749f6b975996bd7f59b5f6c6065f282bf76eb91
112e511928937b8ec60004ca94f1dd996bd9fd1a
/Documents/Shos.Chatter.Wpf/Properties/Settings.Designer.puml
c73668d01a186f01b34be5b328a6a640fc03c1f0
[ "MIT" ]
permissive
Fujiwo/Shos.Chatter.NetFramework
2c143b390b1588e38e5967a8b8f1c51bf5487362
3c7061398e790c2fc856585fdbf60a18705f11e0
refs/heads/master
2023-03-23T09:31:02.071913
2021-03-11T05:27:48
2021-03-11T05:27:48
323,569,895
0
0
null
null
null
null
UTF-8
PlantUML
false
false
92
puml
@startuml class Settings <<sealed>> <<partial>> { } Settings --> "Default" Settings @enduml
50d0210861f6ab04f6d7bf74aea1fd5e6953ca6a
45ed1bed475554aba28346b2b31602da39d77521
/src/plantuml/buildExtensionClassRealm.puml
0065a9f7eff052c47a0320971e60108704177b0f
[ "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
apache/maven-site
5a3557e7288506f25795e84b5a9fff832f8e3489
33e8f99b2fe1340460193a4359466f41edeb7f00
refs/heads/master
2023-08-26T05:46:48.322647
2023-08-22T20:59:35
2023-08-22T20:59:35
206,422
101
271
null
2023-09-13T23:51:05
2009-05-21T02:09:00
CSS
UTF-8
PlantUML
false
false
1,359
puml
/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF 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 !pragma layout smetana Platform o-- Bootstrap Bootstrap "1" o-- "many" BuildExtension API "1" o-- "many" BuildExtension CoreExtension "many" o-- "1" API class Bootstrap { Plexus Classworlds } class CoreExtension { all packages defined in "/META-INF/maven/extension.xml" } class Platform { all JRE classes } class BuildExtension { dependencies classes } note right of API : Just composition of all Core Extensions note right of Bootstrap : ${maven.home}/boot note right of BuildExtension : Per GAV of plugin loaded with <extensions>true</extensions> or build extension @enduml
3b7599f893a3a1f8e678c912132dea160120230d
40dff9f3accaa74abc586113fbe434a6a47073b4
/src/main/java/com/kiran/design/solid/b/ocp/breaking_ocp.puml
8f0ceb304cd8009bb75ef6ab4acc3b9bfe18a45c
[]
no_license
kiranprakashb/design-core-java
05eac64aa217bf9acbbda21dcd7b98e56e558f20
2c661c0d2e0506b7fa547395527422205c4cd50e
refs/heads/main
2023-03-04T01:24:55.516348
2021-02-17T19:24:51
2021-02-17T19:24:51
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
319
puml
@startuml 'https://plantuml.com/class-diagram class BankingAppWithdrawalService class CurrentAccount { deposit(BigDecimal) withdraw(BigDecimal) } class SavingsAccount { deposit(BigDecimal) withdraw(BigDecimal) } BankingAppWithdrawalService ..> CurrentAccount BankingAppWithdrawalService ..> SavingsAccount @enduml
803c1dc7ebbdb733db21283465e0579542afb91d
c071afa8c9ef0c26eae424fb721f292f903d7289
/gfx/uml/DBAL_Connection.plantuml
22972a7237f4d4c621350a62eb2f7e1ee997ffcf
[]
no_license
Konafets/thesis
4628b7e675164690e4b1a8345eecd11c20d9cbfc
94a27a586356d3b7356d0690cf4ed5dd6a0dc6b7
refs/heads/master
2016-09-06T18:47:47.614390
2014-05-26T17:51:30
2014-05-26T17:51:30
18,177,420
3
1
null
null
null
null
UTF-8
PlantUML
false
false
247
plantuml
@startuml set namespaceSeparator none hide empty members hide empty methods interface Doctrine.DBAL.Driver.Connection class Docrine.DBAL.Connection implements Doctrine.DBAL.Driver.Connection { #Doctrine.DBAL.Driver.Connection $_conn } @enduml
a6af18ceae015801cc10267dc4581ae005aedcbb
81c5341b371310f415b7c5ed1193e72bba5eedda
/diagrams/server/ServerClassDiagram.puml
0c16318618ed37cfc558b3bb5e6c5f1e7bda9a7a
[ "MIT" ]
permissive
wolfj123/PolicyModelsPlugin
cb8a8687f66e95f164e2cf76cb8ff91245bad598
c012734157bb8a03348e55e6844e34b6bc1596fc
refs/heads/master
2023-01-08T05:03:52.950396
2020-06-17T15:59:44
2020-06-24T13:50:58
229,545,591
0
0
MIT
2023-01-07T18:08:47
2019-12-22T09:32:58
TypeScript
UTF-8
PlantUML
false
false
3,987
puml
@startuml interface SolverInt { +onCompletion(params: TextDocumentPositionParams): CompletionList +onCompletionResolve(params: CompletionItem): CompletionItem +onDefinition(params: DeclarationParams): LocationLink[] +onPrepareRename(params: PrepareRenameParams): Range +onRenameRequest(params: RenameParams): WorkspaceEdit +onReferences(params: ReferenceParams): Location[] +onFoldingRanges(params: FoldingRangeParams): FoldingRange[] +onDidOpenTextDocument(opendDocParam: TextDocumentItem): Promise<void> +onDidCloseTextDocument(closedDcoumentParams: TextDocumentIdentifier): any +onDidChangeTextDocument(params: DidChangeTextDocumentParams): any +onDeleteFile(deletedFile: string): any +onCreatedNewFile(newFileUri: string): any +onOpenFolder(pathUri: string): any } class PMSolver implements SolverInt { -_documentManagerForFolder: TextDocumentManagerInt -_documentManagerSingleFiles: TextDocumentManagerInt -_pluginFSPath: string -_workspaceFolderFSPath: string -_facdeForFolder: LanguageServicesFacade -_facdeForFilesFS: { [id: string]: LanguageServicesFacade; } -_sovlerReady: boolean {field}-_publishDiagnosticsCallback: (uri: string, diagnostics: Diagnostic[], docVersion?: number) => void -isFolderRelevant(fileUri: string): boolean -clearDiagnostics(uri: string): void -getFSFolderFromUri(uri: string): string -getDocManager(uri: string): TextDocumentManagerInt -initParser(fileUri: string): Promise<void> -facdeCallWrapperForDocumentEvents(params: any, funcName: string, uri: string): Promise<void> -facadeCallWrapperForUserEvents(params: any, uri: string, funcName: string): any +onCompletion(params: TextDocumentPositionParams): CompletionList +onCompletionResolve(params: CompletionItem): CompletionItem +onDefinition(params: DeclarationParams): LocationLink[] +onPrepareRename(params: PrepareRenameParams): Range +onRenameRequest(params: RenameParams): WorkspaceEdit +onReferences(params: ReferenceParams): Location[] +onFoldingRanges(params: FoldingRangeParams): FoldingRange[] +onDidOpenTextDocument(opendDocParam: TextDocumentItem): Promise<void> +onDidCloseTextDocument(closedDcoumentParams: TextDocumentIdentifier): any +onDidChangeTextDocument(params: DidChangeTextDocumentParams): any +onDeleteFile(deletedFileUri: string): Promise<void> +onCreatedNewFile(newFileUri: string): Promise<void> +onOpenFolder(pathUri: string): Promise<void> +creatediagnosticsCallback(): (uri: string, errors: SyntaxError[]) => void } class Server { + connection: Connection + fodlerFS: string + solver:SolverInt + clientSupportsWatchedFiles: boolean + hasWorkspaceFolderCapability: boolean + runModel(string []): string } rectangle extConnection [ <<External Library>> \tConnection ] class Connection implements extConnection{ + onInitialize(InitializeParams): InitializeResult + onInitialized():void + onExit(): void + onCompletion:(TextDcoumentPosition): CompletionList + onCompletionResolve(CompletionItem): CompletionItem + onDefinition(DeclarationParams): LocationLink [] + onFoldingRange(FoldingRangeParams): FoldingRange [] + onRefernces(ReferenceParmas): Location [] + onPrepareRename(PrepareRenameParams): boolean + onRenameRequest(RenameParams): WorkspaceEdit + onDidChangeWatchedFiles(DidChangeWatchedFilesParams): void + onDidChangeTextDocument(DidChangeTextDocumentParams): void + onDidCloseTextDocument(DidCloseTextDocumentParams): void + onDidOpenTextDocument(DidOpenTextDocumentParams): void + onRequestRunModel() + onRequestSetPluginDir() } interface TextDocumentManagerInt { } interface LanguageServicesFacade { } Server "1...1" *-- "1...1" Connection Server "1...1" *-- "1...1" PMSolver PMSolver o-- "1...*" LanguageServicesFacade PMSolver *-- "1...1" TextDocumentManagerInt @enduml
e1d8c10294c90b9332c3efaf96ef2c800474bc50
b19e1cd9af26a9f3cb65823e1a7885ce278337fe
/documentation/productApi/availabilityAndPricingDiscovery/media/src/placeModel.puml
baabc9c9c94feadfc93e17d25ce2bf251d334f53
[ "Apache-2.0" ]
permissive
MEF-GIT/MEF-LSO-Sonata-SDK
969c3717fba3fffa009bf3a5de65337b2caccaaf
6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f
refs/heads/working-draft
2023-07-07T02:17:11.649855
2023-06-23T09:30:18
2023-06-23T09:30:18
90,886,429
33
32
Apache-2.0
2023-01-05T23:58:23
2017-05-10T16:38:08
null
UTF-8
PlantUML
false
false
1,728
puml
@startuml skinparam { ClassBackgroundColor White ClassBorderColor Black } class FieldedAddress { country*: string streetType: string postcodeExtension: string city*: string streetNr: string locality: string postcode: string streetNrLast: string streetNrSuffix: string streetName*: string stateOrProvince: string streetNrLastSuffix: string streetSuffix: string } RelatedPlaceRefOrValue <|-- FieldedAddress FieldedAddress *--> GeographicSubAddress : geographicSubAddress class FormattedAddress { country*: string postcodeExtension: string stateOrProvince: string city*: string addrLine2: string addrLine1*: string locality: string postcode: string } RelatedPlaceRefOrValue <|-- FormattedAddress class GeographicAddressLabel { externalReferenceId*: string externalReferenceType*: string } RelatedPlaceRefOrValue <|-- GeographicAddressLabel class GeographicAddressRef { href: string id*: string } RelatedPlaceRefOrValue <|-- GeographicAddressRef class GeographicSiteRef { href: string id*: string } RelatedPlaceRefOrValue <|-- GeographicSiteRef class GeographicSubAddress { buildingName: string levelType: string levelNumber: string privateStreetNumber: string privateStreetName: string } GeographicSubAddress *-->"*" MEFSubUnit : subUnit class MEFGeographicPoint { spatialRef*: string x*: string y*: string z: string } RelatedPlaceRefOrValue <|-- MEFGeographicPoint class MEFSubUnit { subUnitNumber*: string subUnitType*: string } class RelatedPlaceRefOrValue { role*: string @type*: string @schemaLocation: uri } @enduml
1ba9c84f91d8b480567538a666d94e335b7cc71a
a08307073b81a594154a842f5ef87508df391d1c
/class diagrams/main/controller/controller.plantuml
203f5b6530fb2100e10e3f2f6c20a565ccfc5263
[]
no_license
AlexisDel/Colt-Express
c99050ae00feefcb62faee50faa1ba124a5de380
96402eddae52b181f01575492eda6e497b1a0979
refs/heads/master
2023-05-25T04:27:02.337566
2021-06-14T14:28:04
2021-06-14T14:28:04
376,847,116
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,030
plantuml
@startuml title __CONTROLLER's Class Diagram__\n namespace main { namespace controller { class main.controller.GameController { - NB_ACTIONS : int - NB_PLAYERS : int - actions : List<Action> - actionsReady : boolean + GameController() + action() + getActions() + getClickLeftPerPlayerAsString() + getPlayerTurnAsString() + goDown() + goLeft() + goRight() + goUp() + resetActions() + rob() + shootDown() + shootLeft() + shootRight() + shootUp() - addAction() - getClickLeftPerPlayer() - getPlayerTurn() } } } main.controller.GameController o-- main.engine.GameEngine : gameEngine 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
841bcbf8d3f9873e04c8f7d9721daecc0f2b4bb7
acfe4c2ba05f99ee718fc7b55daa92f766195ae1
/src/main/java/Exercise43/Exercise43.puml
b1a03f83d890ec6f5698d1dec7aeb954f5494b13
[]
no_license
RobertUriarte/Uriarte-cop3330-assignment3
5ea15a55014b317647fef879373e166685e59e2e
0135a62c38c2287fc4851e82c19b62fba29a707c
refs/heads/master
2023-06-15T04:15:06.995278
2021-07-01T05:40:22
2021-07-01T05:40:22
378,049,486
0
0
null
null
null
null
UTF-8
PlantUML
false
false
402
puml
@startuml 'https://plantuml.com/class-diagram class Exercise43{ + responses: String[] - main(responses) } class GenerateHTMl{ + responses: String[] + index.html: File + f1: File + f2: File - create_html(responses) } class UserData{ + responses: String[] + Scan: Scanner - prompt_user(responses) } Exercise43 o--> UserData GenerateHTMl o--> UserData @enduml
0d3468aae6626f6299a74d85c7501ea921dcefa5
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProductSlugChangedMessagePayload.puml
0c9bd864d540d79d11cd59be564eaccf0e173c42
[]
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
523
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 ProductSlugChangedMessagePayload [[ProductSlugChangedMessagePayload.svg]] extends MessagePayload { type: String slug: [[LocalizedString.svg LocalizedString]] oldSlug: [[LocalizedString.svg LocalizedString]] } interface MessagePayload [[MessagePayload.svg]] { type: String } @enduml
aeda83acaae6f4bb7e607f49cd50d8f657d98062
da0cd683d55a0b455a3bc40fa9591a09cf26fc48
/pattern_umls/state/gumballmachine_uml.puml
75d97bee0cab192e680715442632f03516528cfb
[]
no_license
zzbb1199/HeadFirst
5916d340cedfd435722f76c0d72bb1362b57e8bc
94663c586e098b7f4175cbc8c6efc45ae00fbe3f
refs/heads/master
2020-04-05T06:19:40.593678
2018-11-22T14:16:59
2018-11-22T14:16:59
156,634,040
0
0
null
null
null
null
UTF-8
PlantUML
false
false
284
puml
@startuml ' 定义Context abstract class GumballMachine{ State setState(State s) } GumballMachine -> State interface State{ handle() } class SoldOutState{ handle() } class SoldState{ handle() } State <|.. SoldOutState State <|.. SoldState @enduml
01c4b103e50996907c6bd857467f2b84fe41cae1
4d2ccfedf716a4072455aa9277832696caeac2ae
/test6/src/uml4.puml
f0480d34b8e986ad44e6e1a72e348663a50298c5
[]
no_license
vividWHW/is_analysis
e259095b2b70688fd692f9203c5d9f64ed11e496
228d8ad25fb2dba06cc83e8a9210aa6d645384d1
refs/heads/master
2022-01-07T02:14:08.545037
2019-05-05T16:13:49
2019-05-05T16:13:49
172,683,062
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,866
puml
@startuml title 基于GitHub的实验管理平台--类图 students "1" -- "n" grades tests "1" -- "n" grades users <|- students users <|-- teachers course "1" -- "n" tests class users { <b>user_id</b> (用户ID) name (用户真实姓名) github_username (用户GitHub账号) update_date (用户GitHub账号修改日期) password (用户密码) disable (用户是否禁用) show_users() (显示所有用户) alter_password() (修改密码) manage_users() (管理用户信息) alter_github() (修改GitHub账号) } class teachers{ <b>teacher_id</b> (老师工号) department (老师所属部门) add_teacher() (新增老师) manage_teacher() (管理老师信息) } class students{ <b>student_id</b> (学号) class (班级) result_sum(成绩汇总) web_sum (网站正确与否汇总) add_students() (新增学生) manage_students() (管理学生信息) } class grades { <b>student_id</b> (学号) <b>course_id</b> (课程编号) <b>test_id</b> (实验编号) result (分数) memo (评价) update_date (评改日期) set_result() (设置评分) set_memo() (设置评价) alter_result() (修改评分) alter_memo() (修改评价) } class course{ <b>course_id</b> (课程编号) course_name (课程名称) show_course() (查看课程列表) add_course() (新增课程) manage_course() (管理课程信息) } class tests { <b>test_id</b> (实验编号) <b>course_id</b> (所属课程编号) test_title (实验名称) show_tests() (查看实验列表) add_tests() (新增实验) manage_tests() (管理实验信息) } @enduml
a27b430add675abf8183574f4ac6276f3a11c003
d702b31e656edcb9944228c0309f153bdff29eec
/doc/plantuml/HCARDA/command/DeactivateRecordCommand.plantuml
c89ea525530e170c950103bb0a9d380cbbf55951
[ "Apache-2.0" ]
permissive
gematik/ref-HealthCardAccess
4f3957bfe40c56ffbf82782528a6e543ea00e9e3
eb9a12f7eea309bb5b23269de9d8fa924f91fe4f
refs/heads/master
2022-02-14T18:25:41.769547
2022-01-07T07:24:17
2022-01-07T07:24:17
213,916,430
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,482
plantuml
@startuml package de.gematik.ti.healthcardaccess { interface IHealthCardCommand { {abstract} + executeOn() } } package de.gematik.ti.healthcardaccess { abstract class AbstractHealthCardCommand { {static} - LOG : Logger {static} # NE_MAX_EXTENDED_LENGTH : int {static} # NE_MAX_SHORT_LENGTH : int {static} # EXPECT_ALL : int # cla : int # ins : int # p1 : int # p2 : int # data : byte[] # ne : int # AbstractHealthCardCommand() # AbstractHealthCardCommand() {abstract} + getTechnicalResponseApdus() - inferResponseStatusFromResponseCode() + executeOn() # sendApdu() - getCommandApdu() } } package de.gematik.ti.healthcardaccess { package de.gematik.ti.healthcardaccess.commands { class DeactivateRecordCommand { {static} - CLA : int {static} - INS : int {static} - MODE_USE_LIST_ELEMENT_P1 : int {static} - MODE_USE_ALL_LIST_ELEMENTS_STARTING_FROM_P1 : int {static} - technicalResponseApdus : Map<Integer, ResponseStatus> + getTechnicalResponseApdus() + DeactivateRecordCommand() + DeactivateRecordCommand() } } } AbstractHealthCardCommand -up-|> IHealthCardCommand DeactivateRecordCommand -up-|> AbstractHealthCardCommand @enduml
438149fc823709d295bef12c2fdf53f94b1708f3
4c136553d9d11cee9ed3ff760758c616134bf1ae
/edom-20-21-team-405/diagrams/documentation/metamodel.plantuml
29df82396d8e845ca9fb421b6e82169dff086845
[]
no_license
PeFerreira98/ISEP.Master.EDOM.Old
15f23b15c21087ef4ed042cf27a39af177ecaf6b
8cbeeeb8b1cda6b08a2fc70769c195244cd6ed4b
refs/heads/main
2023-08-29T21:53:04.911073
2021-11-14T15:40:06
2021-11-14T15:40:06
427,965,742
0
0
null
null
null
null
UTF-8
PlantUML
false
false
792
plantuml
@startuml metamodel.png Model "1"*-->"*" Subject Subject "1"*-->"*" Comment Subject "1"*-->"*" Field Field ..> FieldTypesEnum Comment "1"*-->"*" Comment Comment "1"*-->"*" Field Comment "1"*-->"*" Rating IValidate "1"*-->"*" Field Rating "1"*-->"*" Field AutomaticValidation --> IValidate ManualValidation --> IValidate Comment "0..1"-->"1" AutomaticValidation Comment "0..1"-->"1" ManualValidation class Field { String name FieldType type } class Model { String name } class Rating { String name } class Subject { String name } class Comment { String name } class AutomaticValidation { String name } class ManualValidation { String name } interface IValidate{ -validate(Comment) } enum FieldTypesEnum { STRING DATE INTEGER BOOLEAN FLOAT } @enduml
a0080acf12e58d85321232f817184eb6ff966684
9f816b59dc2fa8215e38fd13e7e74a6ef9b9b812
/out/production/chess/appli/appli.plantuml
e5ae995bd48c5a8e32bd892495df1068c33706f7
[]
no_license
SofianZoo/chess
4337569b6ff45ff4f7e0962e8d1cf424765a4c71
bb3204f1e56470754d0bc16a2de0e2ec49e5e598
refs/heads/master
2023-05-04T07:19:41.469582
2021-05-25T18:16:21
2021-05-25T18:16:21
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
569
plantuml
@startuml title __APPLI's Class Diagram__\n namespace appli { class appli.Application { {static} - choixPartie : boolean + Application() {static} + getChoixPartie() {static} + jouer() {static} + main() {static} + setChoixPartieFinale() {static} - erreurChoix() {static} - finPartie() } } 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
80d576211abf3f8ea38a0f337a0cc4c022fd3dff
4e22d261d7dcf5fe2731d77ba3cfb47c5568977c
/Documentation/Source/Breakdown/Engine/TempestEngine/Rendering/ParticleSystem-Class.iuml
0fb8982198818b321a65e308f09d087fbbc527de
[]
no_license
SeraphinaMJ/Reformed
2d7424d6d38d1cfaf8d385fade474a27c02103a5
8563d35ab2b80ca403b3b57ad80db1173504cf55
refs/heads/master
2023-04-06T00:40:34.223840
2021-05-06T11:25:51
2021-05-06T11:25:51
364,884,928
0
0
null
null
null
null
UTF-8
PlantUML
false
false
244
iuml
namespace Graphics::Particles { class ParticleSystem { {static} +GetName() +Name() +OnInitialize() +OnUpdate() } ParticleSystem --|> SystemManagement::SystemBase }
2141c1a5ef0ff1ddc0b2c92bedfe0953d59e4ea8
8a7d4e7348e7cf75ea65d857f140d0454add6f84
/docs/src/developer/subarraynode/sdp.puml
6af5c2ec723c891989fb06a776ee760887af301d
[ "BSD-3-Clause" ]
permissive
ska-telescope/cdm-shared-library
d1812ed010a09765a5be5a41d1c7e8e9694d110a
87083655aca8f8f53a26dba253a0189d8519714b
refs/heads/master
2023-09-01T08:27:16.704307
2023-08-08T13:01:10
2023-08-08T13:01:10
191,747,755
0
0
BSD-3-Clause
2023-02-10T13:48:25
2019-06-13T11:11:28
Python
UTF-8
PlantUML
false
false
247
puml
@startuml !pragma useNewPackage hide empty members package ska_tmc_cdm.messages.subarray_node.configure { package sdp.py <<Rectangle>> { class SDPConfiguration { interface : str scan_type : str } } } @enduml
b49fdaee4102133f6df40c1c50700677f393946e
d209b71e823c2b3f32e35fa51fd24995dd511fc5
/newbie/UML/demo.iuml
eda2868a0f9b9678a154d523e4990d866ff26520
[ "Apache-2.0" ]
permissive
Urumuqi/gitbook
e336a0b186b6bca9c7136ba0ea6482aeb3cea621
6423921e4c48b445a4894fd3077950949892f7c7
refs/heads/master
2022-12-15T21:02:04.378289
2022-11-30T14:27:25
2022-11-30T14:27:25
229,393,712
2
1
null
null
null
null
UTF-8
PlantUML
false
false
1,265
iuml
@startuml scale 3 Alice -> Bob : test @enduml @startuml scale 2 class Event { +startTime: DateTime +venue: string +registrationClosed: boolean -notifyAttends() } class ApplicationUser { -userName: string -password: string +isLocked: boolean -suggestRandomPasswd() +changeProfilePic() } class Speaker { +openForSpeaking: boolean -callForAction() +applyAsSpokePerson() } class Topic { +title: string +sourceCodeUrl: string +downloadMaterials() } class Attendee { -enventAttended: number -suggestEventBaseOnPreference() +registerForTicket() } ApplicationUser <|-- Speaker ApplicationUser <|-- Attendee Speaker "1" *-- "*" Topic Event "1" o-- "*" Speaker Event "1" o-- "*" Attendee @enduml @startuml scale 3 class Goal { -name: string -type: integer -imgs: resource -tag: string } class PunchCardRecord { -id: integer -goalId: integer -userId: integer -userName: integer -imgs: resoruce -notes: string -createdAt: datetime -updatedAt: datetime } class RecordList { -id: integer -userId: integer -totalCnt: integer -gymCnt: integer -learningCnt: integer } class User { -id: integer -username: string } @enduml
cc7dea9279d8a7c02daa9e6c1e14b77e8eb05c2e
60e80b1719d9c929747baf3d32537c1731c0168f
/prototype/src/main/resources/PrototypeClass.puml
c1a794f1e6d0299c87339e211ef0f397ea579a12
[]
no_license
GilbertXiao/JavaDesignPatterns
8c0b82634c96107f6311dbacabdaa38119402782
35ce09c85b40ae585ecfc8fb7c3247375eb2a40b
refs/heads/master
2021-07-11T11:10:04.956876
2020-07-19T11:59:28
2020-07-19T11:59:28
179,295,966
1
0
null
null
null
null
UTF-8
PlantUML
false
false
260
puml
@startuml class Prototype{ +clone() } class ConcretePrototype1{ +clone() } class ConcretePrototype2{ +clone() } Class Client{ Prototype prototype; } Client -> Prototype Prototype<|--ConcretePrototype1 Prototype<|--ConcretePrototype2 @enduml
577f17bc1c3b1972cb1ba0a29613a69788603a8c
a751888fd29a1b92bb32ef7d272d3e72f664ed30
/src/design/gnss-rinex-class-diagram.puml
85197bd06d108ea3b918f6eb5ae869b16b2e3bb2
[ "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
2,824
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.gnss #ECEBD8 { class RinexObservationLoader { +List<ObservationDataSet> getObservationDataSets() } enum SatelliteSystem { +GPS +GLONASS +GALILEO +BEIDOU +QZSS +IRNSS +SBAS +MIXED } enum ObservationType { +C1 +C5 +C6 ... +L1C ... +S8X +getMeasurementType() +getFrequency(SatelliteSystem) } enum MeasurementType { +PSEUDO_RANGE +CARRIER_PHASE +DOPPLER +SIGNAL_STRENGTH } enum Frequency { +G01 +... +J06 +... +S05 +String getName() +SatelliteSystem getSatelliteSystem() +double getRatio() +double getMHzFrequency() } class ObservationData { +ObservationType getObservationType() +double getValue() } class ObservationDataSet { +RinexHeader getHeader() +AbsoluteDate getDate() +SatelliteSystem getSatelliteSystem() +int getPrnNumber() +double getRcvrClkOffset() +List<ObservationData> getObservationData() } ObservationDataSet *-left-> "1" SatelliteSystem RinexObservationHeader *--> "1" SatelliteSystem RinexObservationHeader "*" <--* ObservationDataSet RinexObservationLoader *--> "*" ObservationDataSet ObservationDataSet *--> "*" ObservationData ObservationType "1" <-left-* ObservationData ObservationType *--> "1" MeasurementType ObservationType *--> "*" Frequency } @enduml
736f233de9452b3fbb0d9e76d56c5f68dbe76435
6c1c7cd7bf6df648880c0676964502463f18fda5
/src/main/java/Listener/Listener.plantuml
738b3bc50ab3ec0ce606260b97b5ede3cac04951
[]
no_license
yannickTilly/appliVisiteurCli
978c0ee4f04bca36c12911c2b7bb477ed53275d8
407e183f3998825d96409eef530ed5d6656fe5b5
refs/heads/master
2022-12-11T17:56:20.251585
2020-05-19T11:24:35
2020-05-19T11:24:35
217,737,041
0
0
null
2022-11-15T23:31:18
2019-10-26T16:28:45
Java
UTF-8
PlantUML
false
false
2,133
plantuml
@startuml title __LISTENER's Class Diagram__\n namespace Listener { interface Listener.ConsultationDrugsModelListener { {abstract} + onChangeModel() } } namespace Listener { interface Listener.ConsultationDrugsViewListener { {abstract} + onSearch() } } namespace Listener { interface Listener.ConsultationPratitionnerViewListener { {abstract} + onSearch() } } namespace Listener { interface Listener.ConsultationRapportVisiteModelListener { {abstract} + onRapportVisiteChange() } } namespace Listener { interface Listener.ConsultationRapportVisitesListener { {abstract} + onSearchSubmit() } } namespace Listener { interface Listener.ConsultationRapportVisitesModelListener { {abstract} + onRapportVisitesChange() } } namespace Listener { interface Listener.ContextListener { {abstract} + userLoginSucess() } } namespace Listener { interface Listener.LoginListener { {abstract} + onSubmit() } } namespace Listener { interface Listener.MenuListener { {abstract} + onConsulterClicked() {abstract} + onDrugsClicked() {abstract} + onNewReportClicked() {abstract} + onPratitionnersClicked() } } namespace Listener { interface Listener.NewReportListener { {abstract} + onSubmitNewReport() } } namespace Listener { interface Listener.RouteListener { {abstract} + onDrugConsultation() {abstract} + onError() {abstract} + onNewReport() {abstract} + onPratitionners() {abstract} + onReportConsultation() {abstract} + onReportConsultations() } } 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
910148ba0088d4f83a890bbe748ad31abc973cb9
589d8eb4541fd92455aa1c7e1d5b993bf05ab763
/app/src/main/java/com/netmart/netmart_main/Interface/Interface.plantuml
7916e835694f59be192d68838074615f57e30f38
[]
no_license
Nizar127/Netmart
05c457d1eecd8845d5ea9103ed2e61c78bd5a23f
e6d0270d5023f3c111e4105b3c0860f5f0830bc8
refs/heads/master
2022-10-28T11:51:01.710309
2020-06-18T01:22:00
2020-06-18T01:22:00
269,915,305
0
0
null
null
null
null
UTF-8
PlantUML
false
false
430
plantuml
@startuml title __INTERFACE's Class Diagram__\n namespace com.example.netmart { namespace Interface { interface com.example.netmart.Interface.ItemClickListener { {abstract} + onClick() } } } 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
b0e0b545df1cd65c790e6fa05ddc9344d52f0925
02a364d6cc772a9bf2e72d02dbecca74ac14d335
/eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Tests.Mocks/MockRemittanceAccessor.puml
c467817b3e708096b8854a77c32431f64ae5e263
[ "BSD-3-Clause" ]
permissive
noelmartens/TransitionAcademy
4e02379d234aa4859a497ee2846420f4c55b9e12
3b95a5c737ab7b1497b77d455cf64caa73f69e1f
refs/heads/master
2023-06-14T05:25:35.514249
2021-07-02T19:40:29
2021-07-02T19:40:29
362,512,351
0
0
null
null
null
null
UTF-8
PlantUML
false
false
255
puml
@startuml class MockRemittanceAccessor { + MockRemittanceAccessor(data:MockData) + SalesTotal() : SellerOrderData[] + TestMe(input:string) : string } MockBase <|-- MockRemittanceAccessor IRemittanceAccessor <|-- MockRemittanceAccessor @enduml
3bf4fadec86209d8e1319f3439644a7cdf2c3b2a
95db096f36828b7124792f7ce52368a58783e9e9
/docs/javadocs/soen6441riskgame/models/strategies/Strategy.puml
28470c1176e8378254c22c0705ba9f9ae1c8e17a
[]
no_license
huntertran/soen6441-riskgame
81af179068618a3870b14ef46cf51ea65c31ac6b
f6605e3c5bdd3346f65288c96de6d169faa47f00
refs/heads/master
2023-06-22T21:10:32.772010
2021-03-31T21:48:30
2021-04-02T03:19:34
209,664,319
2
1
null
2023-06-14T22:29:59
2019-09-19T23:16:40
Java
UTF-8
PlantUML
false
false
5,255
puml
@startuml skinparam svgLinkTarget _parent skinparam linetype ortho set namespaceSeparator none interface "<b><size:14>Strategy</b>\n<size:10>soen6441riskgame.models.strategies" as soen6441riskgame.models.strategies.Strategy [[../../../soen6441riskgame/models/strategies/Strategy.html{soen6441riskgame.models.strategies.Strategy}]] { {abstract} +StrategyName getName() {abstract} +void reinforce(Player player,Country countryToReinforce) +void reinforce(Country countryToReinforce,int numberOfArmies) +void exchangeCards(Player player) {abstract} +ArrayList<Country> attack(Player player,Country attackingCountry) +void attack(Country attackingCountry,Country defendingCountry,int numberOfDice) +void attackMove(int army) +void attackEnd() {abstract} +void fortify(Country fromCountry,Country toCountry) +void fortify(Country fromCountry,Country toCountry,int armiesAmount) +void fortifyNone() {abstract} +void playTurn(Player player) } class "<b><size:14>TournamentController</b>\n<size:10>soen6441riskgame.controllers" as soen6441riskgame.controllers.TournamentController [[../../../soen6441riskgame/controllers/TournamentController.html{soen6441riskgame.controllers.TournamentController}]] #white { } hide soen6441riskgame.controllers.TournamentController fields hide soen6441riskgame.controllers.TournamentController methods soen6441riskgame.controllers.TournamentController --> "strategies" soen6441riskgame.models.strategies.Strategy enum "<b><size:14>StrategyName</b>\n<size:10>soen6441riskgame.enums" as soen6441riskgame.enums.StrategyName [[../../../soen6441riskgame/enums/StrategyName.html{soen6441riskgame.enums.StrategyName}]] #white { } hide soen6441riskgame.enums.StrategyName fields hide soen6441riskgame.enums.StrategyName methods soen6441riskgame.enums.StrategyName ..> soen6441riskgame.models.strategies.Strategy class "<b><size:14>Player</b>\n<size:10>soen6441riskgame.models" as soen6441riskgame.models.Player [[../../../soen6441riskgame/models/Player.html{soen6441riskgame.models.Player}]] #white { } hide soen6441riskgame.models.Player fields hide soen6441riskgame.models.Player methods soen6441riskgame.models.Player --> "strategy" soen6441riskgame.models.strategies.Strategy class "<b><size:14>AggressiveStrategy</b>\n<size:10>soen6441riskgame.models.strategies" as soen6441riskgame.models.strategies.AggressiveStrategy [[../../../soen6441riskgame/models/strategies/AggressiveStrategy.html{soen6441riskgame.models.strategies.AggressiveStrategy}]] { } hide soen6441riskgame.models.strategies.AggressiveStrategy fields hide soen6441riskgame.models.strategies.AggressiveStrategy methods soen6441riskgame.models.strategies.AggressiveStrategy ..|> soen6441riskgame.models.strategies.Strategy class "<b><size:14>BenevolentStrategy</b>\n<size:10>soen6441riskgame.models.strategies" as soen6441riskgame.models.strategies.BenevolentStrategy [[../../../soen6441riskgame/models/strategies/BenevolentStrategy.html{soen6441riskgame.models.strategies.BenevolentStrategy}]] { } hide soen6441riskgame.models.strategies.BenevolentStrategy fields hide soen6441riskgame.models.strategies.BenevolentStrategy methods soen6441riskgame.models.strategies.BenevolentStrategy ..|> soen6441riskgame.models.strategies.Strategy class "<b><size:14>CheaterStrategy</b>\n<size:10>soen6441riskgame.models.strategies" as soen6441riskgame.models.strategies.CheaterStrategy [[../../../soen6441riskgame/models/strategies/CheaterStrategy.html{soen6441riskgame.models.strategies.CheaterStrategy}]] { } hide soen6441riskgame.models.strategies.CheaterStrategy fields hide soen6441riskgame.models.strategies.CheaterStrategy methods soen6441riskgame.models.strategies.CheaterStrategy ..|> soen6441riskgame.models.strategies.Strategy class "<b><size:14>HumanStrategy</b>\n<size:10>soen6441riskgame.models.strategies" as soen6441riskgame.models.strategies.HumanStrategy [[../../../soen6441riskgame/models/strategies/HumanStrategy.html{soen6441riskgame.models.strategies.HumanStrategy}]] { } hide soen6441riskgame.models.strategies.HumanStrategy fields hide soen6441riskgame.models.strategies.HumanStrategy methods soen6441riskgame.models.strategies.HumanStrategy ..|> soen6441riskgame.models.strategies.Strategy class "<b><size:14>RandomStrategy</b>\n<size:10>soen6441riskgame.models.strategies" as soen6441riskgame.models.strategies.RandomStrategy [[../../../soen6441riskgame/models/strategies/RandomStrategy.html{soen6441riskgame.models.strategies.RandomStrategy}]] { } hide soen6441riskgame.models.strategies.RandomStrategy fields hide soen6441riskgame.models.strategies.RandomStrategy methods soen6441riskgame.models.strategies.RandomStrategy ..|> soen6441riskgame.models.strategies.Strategy soen6441riskgame.models.strategies.Strategy ..> soen6441riskgame.enums.StrategyName soen6441riskgame.models.strategies.Strategy ..> soen6441riskgame.models.Player class "<b><size:14>Country</b>\n<size:10>soen6441riskgame.models" as soen6441riskgame.models.Country [[../../../soen6441riskgame/models/Country.html{soen6441riskgame.models.Country}]] #white { } hide soen6441riskgame.models.Country fields hide soen6441riskgame.models.Country methods soen6441riskgame.models.strategies.Strategy ..> soen6441riskgame.models.Country @enduml
97624de04d548d0c2eb118e56de5be9af427cb3f
71bf91308d31289e4f85001a074b2f9fd28857df
/NaturalAPI_Design/src/main/java/fourcats/datastructure/observer/Observer.plantuml
9a2906cb1a78cbb68afc94bac60feb278f72739e
[ "MIT" ]
permissive
fourcatsteam/NaturalAPI
180563686a91b494b8f7084f13e44b95e02a6aa2
eb612e47de99893f307f6549feaa889becda2b8a
refs/heads/master
2022-12-23T04:34:00.959782
2020-05-18T13:37:13
2020-05-18T13:37:13
250,514,043
0
1
MIT
2022-12-16T05:16:55
2020-03-27T11:14:03
HTML
UTF-8
PlantUML
false
false
776
plantuml
@startuml title __OBSERVER's Class Diagram__\n namespace fourcats { namespace datastructure { namespace observer { interface fourcats.datastructure.observer.Observer { {abstract} + update() } } } } namespace fourcats { namespace datastructure { namespace observer { abstract class fourcats.datastructure.observer.Subject { - lObservers : List<Observer> + attach() + detach() # Subject() # notifyObservers() } } } } 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
3d3c63ecc8d8f9702111ac2c5e09170d1094774c
c2d3b5af652f5f82ffce8be69518b4210c8bb1d1
/src/_1_객체_설계/_3_설계_개선하기/LowerTheaterCouplingEx1.puml
e3132cc60fcba12d619947358f5c0a0a22a16105
[]
no_license
kyh1126/object_study
9f04c5674f1d9613ef9b804c9e5cf4c31eb1cec5
82eb4c7653b7260f2ee749c1ef7b466f16c0a924
refs/heads/master
2022-11-28T21:09:55.959534
2020-08-11T23:04:46
2020-08-11T23:04:46
291,427,529
3
0
null
2020-08-30T08:08:23
2020-08-30T08:08:23
null
UTF-8
PlantUML
false
false
857
puml
@startuml skinparam class { BackgroundColor White ArrowColor Black BorderColor Black } class TicketSeller { sellTo(audience) } class Theater { enter(audience) } class Invitation { when } class Ticket { fee getFee() } class Bag { amount hasInvitation() hasTicket() setTicket(ticket) minusAmount(amount) plusAmount(amount) } class Audience { getBag() } class TicketOffice { amount getTicket() minusAmount(amount) plusAmount(amount) } hide empty members hide empty methods Theater --> "ticketSeller" TicketSeller Theater ..> Audience TicketSeller --> "ticketOffice" TicketOffice TicketSeller ..> Audience TicketSeller ..> Bag TicketSeller ..> Ticket Audience --> "bag" Bag Bag --> "invitation" Invitation Bag --> "ticket" Ticket TicketOffice *--> " tickets" Ticket @enduml
3a7db581d6e35e8180b8c9adba4e4d6b5fcc8cd2
740ec837551b09f09677854163ecd30ba6ea3cb7
/documents/sd/plantuml/application/Common/Shared/Events/Queue/Strategy/SingleConsumer/BoundedSingleConsumerChannelStrategy.puml
89521b46506cb2b3d9e1b5d1358fbcb9b92cf5bb
[ "MIT" ]
permissive
insightmind/MORR
913c0c16d14745cbde40af07322ca339a0373f32
0830f2155fb3b32dc127587e07cbd780deb0e118
refs/heads/develop
2020-12-08T00:23:17.488431
2020-04-05T20:50:44
2020-04-05T20:50:44
232,827,908
5
1
MIT
2020-04-05T20:55:27
2020-01-09T14:28:48
HTML
UTF-8
PlantUML
false
false
614
puml
@startuml skinparam monochrome true skinparam classAttributeIconSize 0 !startsub default class "BoundedSingleConsumerChannelStrategy<TEvent>" { } abstract class "SingleConsumerChannelStrategy<TEvent>" { + IsClosed : bool <<get>> + GetEvents(token: CancellationToken) : IAsyncEnumerable<TEvent> + Enqueue(event: T) : void + Open() : void + Close() : void } interface "IEventQueueStorageStrategy<TEvent>" "IEventQueueStorageStrategy<TEvent>" <|-- "SingleConsumerChannelStrategy<TEvent>" "SingleConsumerChannelStrategy<TEvent>" <|-- "BoundedSingleConsumerChannelStrategy<TEvent>" !endsub @enduml
4b93f4e47262d19d3f0106b536205df80814d8b7
833c4b92528ecd1580abf373ab58e7f77b874ea1
/diagrams/06-one-to-one-onedirection.puml
d5ebb308b5bab4b4412300a516901099f19caa77
[]
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
157
puml
@startuml class Member { id: Long -- team: Team name: String } class Seat { id: Long -- number: String } Member "1 " -d-> "1 " Seat @enduml
60d269ee614e13d676039bdea48221896e1cf4b8
c0338d362d51a4ca4537dcbcf72cd3db19b442ed
/src/main/java/com/lelib/designpattern/behavior/memento/Memento.puml
6ed0d9b16ffea342e7f9f17293846a248714e199
[]
no_license
lewisliu725/design-pattern
3f5be8707eba94a2cb22645f336a9e13ed67ed2c
7c87032b7410f4a759aeabfd542e5444ee90ee13
refs/heads/master
2022-12-12T00:19:55.589569
2020-09-15T03:07:30
2020-09-15T03:07:30
283,059,271
0
0
null
null
null
null
UTF-8
PlantUML
false
false
342
puml
@startuml class Originator { - state: String + saveToMemento(): Memento + restoreFromMemento(Memento): void } class Memento { - state: String + getState(): String } class CareTaker { - mementoList: List<Memento> + add(Memento memento) + get(): Memento } Originator --> Memento CareTaker o-- Memento @enduml
f53704c2830614bc873adf2ea80baa95b73cf24b
42f4bd432da377cb5967cc743e7093b18fab26bf
/src/main/resources/documentation/umlCode/dto.puml
1ac8a365e78c2f8eb26b4e7486ac2d8a23df150b
[]
no_license
felipeandradevalenzuela/desafio-testing
9329610ca0d33dc411a2e1fb0414c98e4d039a73
9ac477e8c8249fc993929df0eeb70a954efb1595
refs/heads/main
2023-05-31T00:52:37.278184
2021-06-18T16:33:23
2021-06-18T16:33:23
378,019,258
0
0
null
null
null
null
UTF-8
PlantUML
false
false
826
puml
@startuml DTO'S package dto <<Folder>> { package error <<Folder>> { class ErrorDTO { - String name; - String message; - LocalDateTime timestamp; } } package response <<Folder>> { class HouseResponseSquareFeetPerRoomDTO { - List<RoomSquareFeetDTO> roomsSquareFeet; } class HouseResponseTotalSquareFeetDTO { - double squareFeet; } class HouseResponseValueDTO { - Double value; } } class HouseDTO { - String propName - String districtName - double districtPrice - List<RoomDTO> rooms } class RoomDTO { - String name - double width - double length } class RoomSquareFeetDTO { } } @enduml
79dfe5a7758289e274ef76098ec40087ac3dccb9
462fe0192932415b87a8ad464042eb7908bc5de4
/taehun.lee/ch03/diagrams/abstraction.puml
375dff75d1e8fc40d38b6ea4be5d91403b22a687
[]
no_license
meshkorea/study-oop-pattern
8be252dc9ca25f1b8a44d5effa024741c50bff73
5f98107945c834c073086d01a49070dfb9c1533d
refs/heads/master
2023-04-16T22:45:13.393336
2021-04-30T10:05:05
2021-04-30T10:05:05
345,630,433
1
1
null
2021-04-30T10:05:06
2021-03-08T11:19:39
Java
UTF-8
PlantUML
false
false
250
puml
@startuml LogCollector <|-- FtpLogFileDownloader LogCollector <|-- SocketLogReader LogCollector <|-- DbTableLogGateway interface LogCollector { +collect() } class FtpLogFileDownloader {} class SocketLogReader {} class DbTableLogGateway {} @enduml
6fbb98fb76d055aa213cd1d4331bdce0d9949e39
bde7fa04e93bc1d3094ab7c3c387e4cc5866a504
/src/main/PlantUML/ex41/plantUML.puml
b2c8bac14c5afecb0e2d4f2029249bbe27cc2c91
[]
no_license
yabdelbary/Abdelbary-cop3330-Assighment3
e8b0d2e71191ae4814a6fd2486934356b5e83498
b443e5f0823740b52c204a82e2bd2ac906bd4674
refs/heads/master
2023-08-07T03:52:14.676188
2021-10-12T03:05:53
2021-10-12T03:05:53
416,163,686
0
0
null
null
null
null
UTF-8
PlantUML
false
false
207
puml
@startuml 'https://plantuml.com/class-diagram class App { +main( String[] args) +readFileIntoList() +sortNames(ArrayList<String> unsortedNames) +createOutputFile(ArrayList<String> sortedNames) } @enduml
2ef1b0df5e35f770d921be2d875a7986636cfdf4
ec45fae67e49ab617ad79b8c48fba85261e319c1
/Doku/Klassendiagramme/Parser.puml
1b372018a762c1294852e3b7219d07e6653e11b9
[]
no_license
nicorahm99/PIC-Simulator
5d22af8719f7b71608db155ceeb49baebcf4c8a5
0e7fb5f10c9392dc3f7438007859dc0f9f670aaa
refs/heads/master
2023-05-03T22:51:08.168289
2021-05-29T06:15:23
2021-05-29T06:15:23
257,316,241
0
0
null
null
null
null
UTF-8
PlantUML
false
false
281
puml
@startuml class Parser { - filePath : string = "C:/tmp/testfile.txt" - rom : List<int> - totalFile : List<string> + setFilePath(newPath:string) : void + parse() : void + init() : void + getTotalFile() : List<string> + getRom() : List<int> } @enduml
d5cdf419e39770ca9026347e9a31c1e0643d86f1
7e06b9ae95eb5667977b8471cec7446d6553983c
/exercise41/docs/Classes.puml
40f58087c93a4836529070c07b0891c25bc72f0b
[]
no_license
Zandroid505/Antifit-a04
5885ffb8003b8c47bcac236e2d1bd43ce78b6667
acbdd0b25bbe7e7200ad92d538797319d72cf5fa
refs/heads/main
2023-08-31T09:09:16.654323
2021-10-17T21:25:35
2021-10-17T21:25:35
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
659
puml
/* * UCF COP3330 Fall 2021 Assignment 4 Solutions * Copyright 2021 first_name last_name */ @startuml 'https://plantuml.com/sequence-diagram NameSorter o-- Solution41 class Solution41 { 'Creates NameSorter object and uses it to manage names readFile() sortNames(ArrayList<String>) outputSortedNames(ArrayList<String>) } class NameSorter { - numPeople: int - people: ArrayList<String> + NameSorter() 'Initializes the amount of people to 0 + readFile(String): void + getPeople(): ArrayList<String> + sortNames(ArrayList<String>): void + outputSortedNames(ArrayList<String>, String): void } @enduml
bd8091e596c619159c9128d94de9c498d0d6a0b8
06138c54ea48414d6719781898496f22279a6519
/exercise45/docs/Solution45UML.puml
51453b894f811456a4cee3af6cb311dc1d3cc2d1
[]
no_license
MarcPalacio/palacio-a04
8bdb0a0a6bb6bd9175cfbc4f4b69ca96914a4ceb
2936e5626333922ae1bbb22b836caa38843f3858
refs/heads/master
2023-08-18T22:49:06.189370
2021-10-17T22:59:07
2021-10-17T22:59:07
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
631
puml
@startuml class Solution45{ 'Attributes -input: Scanner 'Methods +main(String) } class StringEditor{ 'Methods 'Replaces all utilize in the string to use +editString(String input, String oldWord, String newWord): String editedString } class MyFileReader{ 'Methods 'Scans the file, calls editString, then returns the output +scanInputFile(String fileInputName): String output } class MyFileWriter{ 'Methods 'Writes to the user inputted output file +writeToFile(String fileOutputName) } Solution45 -- MyFileReader Solution45 -- MyFileWriter MyFileReader -- StringEditor @enduml
54ab33aa89f0746376fec81704e840acceeff606
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/MyCustomerDraft.puml
4955c1f567ffbae8099a4c94103c77163feee1c0
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
1,088
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 MyCustomerDraft [[MyCustomerDraft.svg]] { email: String password: String firstName: String lastName: String middleName: String title: String salutation: String dateOfBirth: Date companyName: String vatId: String addresses: [[BaseAddress.svg List<BaseAddress>]] defaultShippingAddress: Long defaultBillingAddress: Long custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] locale: String stores: [[StoreResourceIdentifier.svg List<StoreResourceIdentifier>]] } interface MyBusinessUnitAssociateDraft [[MyBusinessUnitAssociateDraft.svg]] { version: Long customer: [[MyCustomerDraft.svg MyCustomerDraft]] associateRoleAssignments: [[AssociateRoleAssignmentDraft.svg List<AssociateRoleAssignmentDraft>]] } MyCustomerDraft --> MyBusinessUnitAssociateDraft #green;text:green : "customer" @enduml
580630af5da6897956bc8b405da2b61094e7a2dd
7257d522f9066ad548f1dc825786a4ca49ba7f63
/docs/design/platform.puml
321eedf630c2db12ead2a282012490691bb64bd3
[]
no_license
megamcloud/arrplat
bc696c3bb98d872137c4a229739665032e8f3d23
944851ca55685dc254a56c9e58c74e01c2aca9fb
refs/heads/master
2022-03-31T11:11:41.027122
2020-01-04T14:36:43
2020-01-04T14:36:43
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,757
puml
@startuml package "User" #DCD{ class User { Number id Number phone String password String salt String nickname String email String name } class UserInfo { Number userId String headUrl String signature } } package "Organization" #DDD { enum OrgType { GOV Company Person } class Organization { Number id GroupType type String name String address Number ownUserId String officialCompanyName String officialOrgCode } class OrgStaff { Number id Number orgId Number userId String jobTitle } class OrgDepartment { Number id Number orgId String name Number parentID } class OrgDepartmentStaff { Number id Number orgStaffId Number orgDepartmentId } class OrgRole { Number id Number orgId String name String intro Number type } class OrgStaffRole { Number id Number orgRoleId Number staffId String intro } } class OrgRoleAuth { Number id Number orgId Number roleId } package "Authorization" #DDD { enum DataAuthType { Person PersonAndLower Department DepartmentAndLower All } enum AuthType { Menu Button Page } class Auth { String id String key String name String remark String parentId String appId } } class OrgApplication { Number id Number orgId Number appId Date expireDate Number status (1. disabled 0. enabled) } package "Application" #DDD { class Application { Number id String name String description String officialWebsite Number installNumber String version String icon String headImage Number visible Number deletable Number official String images } class AppMenus { Number id Number appId String name String icon String link } ' class AppDeveloper { ' Number administratorId<User> ' Number ownOrgId<Organization> ' } } class Message { Number id String title String context TimeStamp sendTime TimeStamp readTime Number isRead(0. false 1. true) Number type (1. system 2. plus ...) Number appId Number orgId Number staffId } OrgRole "N" o-- "N" OrgStaffRole OrgStaffRole "N" o--o "N" OrgStaff Organization "N" o-- "N" OrgStaff Organization "N" o-- "N" OrgDepartment OrgDepartmentStaff "N" o-- "N" OrgStaff OrgDepartmentStaff "N" o-- "N" OrgDepartment User "N" --o "N" OrgStaff Organization "N" o--o "N" OrgRole User "N" o--o "N" UserInfo Organization "N" o-- "N" OrgApplication OrgApplication "N" o-- "N" Application Organization "N" o-- "N" User Message "N" --o "1" Application Message "1" o-- "1" OrgStaff Message "1" o-- "1" Organization @enduml
37267e90448ad79d8ae2245d8275eea844f9c392
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProductVariantChannelAvailability.puml
5b3e6ff58f04f902cb9047e7e589b0bae50d9728
[]
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
426
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 ProductVariantChannelAvailability [[ProductVariantChannelAvailability.svg]] { isOnStock: Boolean restockableInDays: Long availableQuantity: Long id: String version: Long } @enduml
054e54db5e40b453197154ea9db5eef3deef7dd7
365fec45df5bd846facd32ac9565ce6496e7c58e
/plantuml/application.plantuml
04a45e1a0d33303e413f58b449c8d798d4c83e46
[]
no_license
madaniel/zrt_exercise
6ca10b82af03288162c0446442c7ddaa5a3123b4
30bdce27d7e14968d1d74edbf861ce19cf968428
refs/heads/master
2023-06-27T05:39:52.442636
2021-08-01T06:15:36
2021-08-01T06:15:36
391,466,821
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,322
plantuml
@startuml Anagram Generator Application !define DARKBLUE !includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml skinparam ArrowColor Chartreuse skinparam dpi 200 package enchant { } package pyyaml { } package infra { class Logger class YamlHandler { + get_data() + write_data() } pyyaml *-- YamlHandler } package anagram_generator { class AnagramGenerator { + self.logger + self.yaml_handler + self.data + self.requested_word_list + self.word_checker + self.generated_words_buffer - _get_all_permutations() - _apply_output_format() - _get_all_anagrams() - _get_all_language_words() - clear_buffer() + get_result() } Logger *-- AnagramGenerator YamlHandler *-- AnagramGenerator enchant *-- AnagramGenerator } package anagram_tester { class AnagramTester { + self.app_runner - self.logger + get_test_data_file() + check_output() + test_app() } YamlHandler *-- AnagramTester ApplicationRunner *-- AnagramTester class ApplicationRunner { + self.app + self.config_file + self.output + run() + get_output() } } @enduml
a7da0258c2eac9d1a01fa23a8d808332adae3406
644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc
/docs/uml/software/essentials/ConsoleUnitWrapper/IConsole.puml
979cb28475b3a9aec4b73d8dfb1ef8f0eb612789
[]
no_license
tzAcee/photonized
c929a6c04bedd0304a4e427d6c2895cdf73568d3
aa53ed7bda18959c58467fe4560dc3ff4e1ae422
refs/heads/main
2023-05-03T15:13:31.148910
2021-05-25T13:55:17
2021-05-25T13:55:17
316,536,113
0
0
null
null
null
null
UTF-8
PlantUML
false
false
154
puml
@startuml interface IConsole { Write(message:string) : void WriteLine(message:string) : void Clear() : void ReadLine() : string } @enduml
581f4f9c133831dc5e9bc0b683be1384f4505921
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProductDiscountValueExternal.puml
694908b6e0152e5903da2a3665f3d7a4d075b8df
[]
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
430
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 ProductDiscountValueExternal [[ProductDiscountValueExternal.svg]] extends ProductDiscountValue { type: String } interface ProductDiscountValue [[ProductDiscountValue.svg]] { type: String } @enduml
7b0ff25adb731441839b9b527342faabfbe4244a
37ac48a4546e19489e67b36ed14e2978e8809269
/docs/Diagramas/Codigo/clase_package_objetivos.puml
09415fc175caaee273d5542381c25e2dcf620a4f
[ "MIT" ]
permissive
SantiagoVaccarelli/Algo3-TP2-TEG
a9a1422ea34c406caf34ef46810fd68fb3e7bd52
2691b2fa63131620f5df9d465c73de3fa4d87947
refs/heads/master
2023-07-07T21:40:39.974717
2021-08-12T02:01:21
2021-08-12T02:01:21
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,610
puml
@startuml clases_package_objetivos-v1 package modelo <<frame>>{ package objetivos <<frame>>{ abstract class ObjetivoTeg{ # String colorDuenio + cumplioObjetivo(Teg teg): Boolean + setDuenio(Jugador unJugador) # {abstract} objetivoJugador(Teg teg): Boolean } class ObjetivoConquista{ - Map <String,Integer> paisesPorContinente; - List<String> continentesAConquistar; + ObjetivoConquista(List<String> continentes,Map<String,Integer> paisesPorContinente): ObjetivoConquista - tieneTodosLosPaises(Teg teg): Boolean - tieneTodosLosContienetes(Teg teg): Boolean + objetivoJugador(Teg teg): Boolean } class ObjetivoDestruccion{ - List<Jugador> jugadores; - Jugador jugadorADestruir; + ObjetivoDestruccion(String colorADestruir,List<Jugador> jugadoresEnOrden): ObjetivoDestruccion + setDuenio(Jugador unJugador) # boolean objetivoJugador(Teg teg) } class Objetivos{ + {static} objetivosConquista(String pathArchivo) : List<ObjetivoTeg> + {static} objetivososDestruccion(List<Jugador> jugadoresEnOrden): List<ObjetivoTeg> } ObjetivoTeg <|-- ObjetivoDestruccion ObjetivoTeg <|-- ObjetivoConquista ObjetivoConquista <.. Objetivos: <<creates>> ObjetivoDestruccion <.. Objetivos: <<creates>> } Jugador --> ObjetivoTeg Teg -right-> Jugador Teg --> ObjetivoTeg Teg ..> Objetivos } @enduml
a81b98c330ffba2c8b5baa5a8a6dda64c82bb344
80f01c276984441ffd55362c845ad71c6da6003f
/doc/diagrams/actors.puml
d00d8e6a9766d4144d57a170042aa0d2c92d5187
[]
no_license
MyNAmeissaso/laseroid
b18bccbaa9c5e7d337a47a31daf2622cd9dab242
dc8e489b149a944bcf7bf8840356c2dd188cf7bc
refs/heads/master
2023-05-31T18:33:50.988916
2021-06-17T12:06:42
2021-06-17T12:06:42
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,372
puml
@startuml abstract class Actor { # hexi : Hexi # game : Game # main : Main + life : number + initialLife : number # sprite : "Hexi.Sprite" + {abstract} move() + {abstract} update() + setPosition(position : {x, y}) + remove() + hit() } class WeaponedActor { # automatedWeapons : Array # canShoot : boolean - isWeaponShooting : boolean + startShoot() + stopShoot() + onShootStarted() + onShootStopped() + updateShooting() } class Enemy { + type : string # syncWeapons : JSON #movementEngine : MovementEngine +shipConfiguration : JSON + setWeapon() - shootWithWeapon() - setLifeLine() + hit() } class Player { # weapons : Array # collisionSprite : "Hexi.Sprite" - weaponLifeLevels : Array<int> - invisibilityCounter : number + upgrade() + downgrade() # shootWithLaser(currentWeapon, weapon) # shootWithBullets(currentWeapon, weapon) # setWeapon() # setLife(life: number) # hitUpgrade(upgradeItem) } class Bonus { + type : string # movementEngine : MovementEngine + shipConfiguration : JSON # upgradeBonus : JSON # shootWithUpgrade(upgradeBonus : JSON) } Actor <|-- WeaponedActor WeaponedActor <|-- Enemy WeaponedActor <|-- Player Actor <|-- Bonus @enduml
743a65bbb5fd21926332a904310655fb4bd3b180
e95b540dc3376644e4711a7755cd6d35db66d362
/Evaluaciones/E2.2.Eval2/aexamen.puml
654a36bd14146d8e874c953f30ce3a7482707fbe
[]
no_license
Aarzh/A01023376_AyMSS18
bc7d3e5647be3545d68745fc1b0fa13133ac2b31
233175047cd3f61f9f3dd1c0dd7c9d6a90bf76ca
refs/heads/master
2021-05-12T14:35:14.542072
2018-05-15T22:43:11
2018-05-15T22:43:11
116,961,356
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,830
puml
@startuml class Observer { +virtual void update(Videojuego*) = 0; } class Proxy { +ArrayVideogames* a; +int indx; +void operator=(string, int); } class Videojuego { +string name; +int price; +int serial_number; +static Videojuego* instancia; +virtual Videojuego* clone() = 0; +static Videojuego* getInstancia(); +virtual void concepcion() +virtual void diseno() +virtual void planificacion() +virtual void produccion() +virtual void pruebas() +int getPrice() +int setPrice(int amount) +void notifyAll(Videojuego* s) } class Strategy{ +void concepto() +void disenio() +void plan() +void produccion() +void pruebas() } class Adventure{ +void concepto() +void disenio() +void plan() +void produccion() +void pruebas() } class Learning{ +void concepto() +void disenio() +void plan() +void produccion() +void pruebas() } class Creator { -Tipo* factoryMethod() -create() } class Inventario { -Command cmd; -vector<Videojuego> inv -vector<Videojuego> copia -Inventario() {} +void insert() +void deleteLast() +void deleteSerialNumber(const Videojuego & obj) +void deletebyName(string name) +void searchElementbyName(string name) +void searchElementbySerialNumber(int serial) +void raisePrecio(float precio, int indx) +void decreasePrecio(float precio, int indx) +void printInvTotal() +int swap(int el1, int el2) +void sortMayorAMenor() +void sortMenorAMayor() +void printInventario() +void searchByIndex(int idx) } Strategy --> Videojuego Adventure --> Videojuego Learning --> Videojuego Videojuego --> Observer Inventario <-- Videojuego Creator --* Videojuego Videojuego --|> Observer Proxy --|> Videojuego @enduml
dcc325f64a09c4822de3669b8cd39aa340be43e1
9ed64cf55205875b3577756ca587e4d94abbf1fa
/src/com/design/behavior/command/command.puml
6a678d5edda6c9029af67de0a651f71c57ef2957
[]
no_license
shf-1218/Design_Patterns
65f3e8598b9223489d805759f59ba186300d86d9
52a3b279609a6699300699d21877137c878dfe32
refs/heads/master
2022-12-26T13:40:57.846535
2020-09-27T10:23:30
2020-09-27T10:23:30
299,005,976
0
0
null
null
null
null
UTF-8
PlantUML
false
false
340
puml
@startuml interface Command Class ConcreteCommandOpen Class ConcreteCommandClose Class Invoker Class Receiver Command<|..ConcreteCommandOpen Command<|..ConcreteCommandClose Invoker ..> Command Command o-- Receiver interface Command{ receiver:Receiver execute():void } interface Invoker{ command:Command call():void } @enduml
0283cd394ddc14746434baf78699a84b8c28b750
c2b6bfee8da36cc39de688e146ba107b74218b12
/plantuml/objectmodel-booking-commit.plantuml
f00b410812870716f0a10dc906b2a5af2b57e732
[ "Apache-2.0" ]
permissive
TOMP-WG/TOMP-API
02bbd268c6ece21f7a5d28f4e42e1b456233e8e9
2aa6ae3d6b355a12a8936ff1069821bb7c89a743
refs/heads/master
2023-09-01T16:13:50.445300
2023-07-25T12:08:52
2023-07-25T12:08:52
189,022,994
80
34
Apache-2.0
2023-08-22T12:36:34
2019-05-28T12:21:59
null
UTF-8
PlantUML
false
false
814
plantuml
@startuml booking module title booking: POST /bookings/{id}/events set namespaceSeparator :: class request::bookingOperation { operation } class result::booking { id state = CONFIRMED } class result::leg { id // first leg in legs should have same id as booking state = NOT_STARTED assetType // optionally contains assets asset // empty, unless unique asset booked pricing // empty, unless broker suboperator // empty, unless broker } class result::fare {} class result::condition {} result::booking -left-* result::leg : legs, normally 1 result::booking -down-> result::fare : pricing result::leg -up-* result::condition result::leg --> result::fare: pricing // empty, unless broker request::bookingOperation ..> result::booking : POST /bookings/{id}/events @enduml
fa865d49901a086d4c70a5c9214405495c8da45b
d9c81782826b58a79a89a5b88e6c2c1afa59e532
/docs/ex46.puml
5985b405d4dec479105f9ace1fda570b80b0a23e
[]
no_license
SmokeIce593/parrish-cop3330-assignment3
1b1449091f72ef2540c9621b95e9998713e44e41
d8b75979d4b86c71c1582d76241980b18fff6015
refs/heads/master
2023-08-15T08:27:16.888336
2021-10-12T02:11:13
2021-10-12T02:11:13
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,039
puml
@startuml 'https://plantuml.com/class-diagram class WordFrequencySort{ +List<String> Combiner(List<String> textList) +List<String> CharCombiner(List<String> textList, String Current, String CurrentBuild, int i) +TreeMap<String, Integer> WordFrequency(List<String> textList) List<String> spreadList String Current String CurrentBuild int lastspace int i int j Map<String, Integer> Frequency TreeMap<String, Integer> sorted } class WordFrequencyBase{ TreeMap Frequency List<String> names - {static} List<String> convertFile() + {static} void main() } class WordFrequencyExport{ String keyString int valueMap String Staradd + {static} String Stars(int staramount) + {static} void printList(TreeMap<String, Integer> list) } class WordFrequencyCompare{ int compare(String a, String b) +Map<String, Integer> base } WordFrequencyBase <|-- WordFrequencySort WordFrequencyBase <|-- WordFrequencyExport WordFrequencySort <|-- WordFrequencyCompare @enduml
82ec923ccff4a507464a9a49151f1f8d659315d9
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/InventoryEntryResourceIdentifier.puml
449ac35bdcd7d8364d3820dd3d0646a4ac96e849
[]
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
564
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 InventoryEntryResourceIdentifier [[InventoryEntryResourceIdentifier.svg]] extends ResourceIdentifier { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String key: String } interface ResourceIdentifier [[ResourceIdentifier.svg]] { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String key: String } @enduml
65d5793ded098d77498b6cc57d76054728cb5ffe
51bbfaef0331f2ab3506802100a1d18b1f12c4e9
/design-pattern/proxy/etc/proxy.puml
1ba2646437c0907c123b231c854d9ff45be3e7dd
[ "Apache-2.0" ]
permissive
JaphyFan/spring-bootstrap
6439c91d95f98c16dccb7c36b07bb8f777d04792
c817b4a4f847d9b12c6613b2fedf9064f7fd40a9
refs/heads/master
2023-07-23T20:03:53.087571
2023-04-25T01:10:05
2023-04-25T01:10:05
228,553,612
0
0
Apache-2.0
2023-07-07T21:52:20
2019-12-17T06:59:45
Java
UTF-8
PlantUML
false
false
566
puml
@startuml package com.japhy.design.proxy { interface WizardTower { + enter(wizard: Wizard) } class IvoryTower { + enter(wizard: Wizard) } class Wizard { - name } class WizardTowerProxy { - NUM_WIZARDS_ALLOWED: int - numWizards: int - tower: WizardTower + enter(wizard: Wizard) + wizardTowerProxy(tower: WizardTower) } WizardTower .> Wizard IvoryTower ..|> WizardTower WizardTowerProxy "1" o--> "1" WizardTower WizardTowerProxy ..|> WizardTower } @enduml
a1d2891ef5e7a270d472654e116c12c50d95934d
52ba427f53f8af305989c471eac3f6658587499d
/src/main/resources/设计模式23种类型/行为型模式 Behavioral Pattern/中介者模式.puml
fabe7656a952b4963d7d91456793f7e1ef525633
[]
no_license
HappyFreeAngel/springcloud-gateway-dynamic-route
444114df5f67fe63a960e27bf40c794380bbbcee
364d99cbdc6ba09ed7b07ce15aed96b23d7f1827
refs/heads/master
2020-07-28T01:13:04.293957
2019-11-05T15:44:04
2019-11-05T15:44:04
209,264,996
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,039
puml
@startuml skinparam classAttributeIconSize 0 package "class Mediator(中介者模式 Mediator Pattern)" #DDDDDD { abstract class Colleague { #mediator:Mediator +Colleague(Mediator) +action():void } note top of Colleague: 抽象同事类 class ConcreteColleagueA { +ConcreteColleagueA(Mediator) +action():void } class ConcreteColleagueB { +ConcreteColleagueB(Mediator) +action():void } class ConcreteMediator { +method():void } note top of ConcreteMediator: 具体中介者 abstract class Mediator{ #colleagueA:ConcreteColleagueA #colleagueB:ConcreteColleagueB +method():void +setConcreteColleagueA(ConcreteColleagueA +setConcreteColleagueB(ConcreteColleagueB) } note bottom of Mediator: 抽象中介者 Colleague <|-- ConcreteColleagueA Colleague <|-- ConcreteColleagueB ConcreteMediator <-- ConcreteColleagueA ConcreteMediator <-- ConcreteColleagueB ConcreteMediator --|> Mediator } @enduml
e86ddeef999913a3856b959f3c21c7e52eebeb74
cf26101628ddb7ed1bab80225e35cde261ce4ed6
/app/app.plantuml
abf63b67be3650456b5ce91642eabae0ee350345
[]
no_license
andrea07021981/SaveTheFood
f4bf7a0cbf7d7860a311f9be33271728953c30bd
bcc423d323dca1344a72d77ad190f6fc3af208b9
refs/heads/master
2022-07-02T08:00:14.529823
2022-02-15T22:17:51
2022-02-15T22:17:51
217,326,526
6
1
null
2022-02-15T22:17:52
2019-10-24T15:01:26
Kotlin
UTF-8
PlantUML
false
false
15,662
plantuml
@startuml title __APP's Class Diagram__\n namespace androidx.databinding { class androidx.databinding.DataBinderMapperImpl { } } namespace androidx.databinding { interface androidx.databinding.DataBindingComponent { } } namespace androidx.databinding { namespace library.baseAdapters { class androidx.databinding.library.baseAdapters.BR { } } } namespace com.example.savethefood { class com.example.savethefood.BR { } } namespace com.example.savethefood { class com.example.savethefood.BuildConfig { } } namespace com.example.savethefood { class com.example.savethefood.DataBinderMapperImpl { } } namespace com.example.savethefood { namespace cook { class com.example.savethefood.cook.RecipeCookFragmentArgs { } } } namespace com.example.savethefood { namespace data.source.local.dao { class com.example.savethefood.data.source.local.dao.FoodDatabaseDao_Impl { } } } namespace com.example.savethefood { namespace data.source.local.dao { class com.example.savethefood.data.source.local.dao.RecipeDatabaseDao_Impl { } } } namespace com.example.savethefood { namespace data.source.local.dao { class com.example.savethefood.data.source.local.dao.RecipeInfoDatabaseDao_Impl { } } } namespace com.example.savethefood { namespace data.source.local.dao { class com.example.savethefood.data.source.local.dao.UserDatabaseDao_Impl { } } } namespace com.example.savethefood { namespace data.source.local.database { class com.example.savethefood.data.source.local.database.SaveTheFoodDatabase_Impl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.ActivityMainBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.EquipmentInstructionItemBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FoodItemBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FoodSearchItemBindingLandImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FoodSearchItemBindingV26Impl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentFoodBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentFoodBindingLandImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentFoodDetailBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentFoodDetailBindingLandImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentHomeBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentHomeBindingLandImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentLoginBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentReceipeBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentReceipeBindingLandImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentRecipeCookBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentRecipeCookBindingLandImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentRecipeDetailBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentRecipeDetailBindingLandImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentRecipeDetailBindingSw600dpImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentSignupBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.FragmentSplashBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.IngredientDetailBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.IngredientInstructionItemBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.IngredientItemBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.RecipeItemBindingImpl { } } } namespace com.example.savethefood { namespace databinding { class com.example.savethefood.databinding.StepCookItemBindingImpl { } } } namespace com.example.savethefood { namespace fooddetail { class com.example.savethefood.fooddetail.FoodDetailFragmentArgs { } } } namespace com.example.savethefood { namespace fooddetail { class com.example.savethefood.fooddetail.FoodDetailFragmentDirections { } } } namespace com.example.savethefood { namespace generated.callback { class com.example.savethefood.generated.callback.OnClickListener { } } } namespace com.example.savethefood { namespace home { class com.example.savethefood.home.HomeFragmentArgs { } } } namespace com.example.savethefood { namespace home { class com.example.savethefood.home.HomeFragmentDirections { } } } namespace com.example.savethefood { namespace login { class com.example.savethefood.login.LoginFragmentDirections { } } } namespace com.example.savethefood { namespace recipe { class com.example.savethefood.recipe.RecipeFragmentArgs { } } } namespace com.example.savethefood { namespace recipe { class com.example.savethefood.recipe.RecipeFragmentDirections { } } } namespace com.example.savethefood { namespace recipe { namespace etail { class com.example.savethefood.recipedetail.RecipeDetailFragmentArgs { } } } } namespace com.example.savethefood { namespace recipe { namespace etail { class com.example.savethefood.recipedetail.RecipeDetailFragmentDirections { } } } } namespace com.example.savethefood { namespace splash { class com.example.savethefood.splash.SplashFragmentDirections { } } } androidx.databinding.DataBinderMapperImpl -up-|> androidx.databinding.MergedDataBinderMapper com.example.savethefood.DataBinderMapperImpl -up-|> androidx.databinding.DataBinderMapper com.example.savethefood.cook.RecipeCookFragmentArgs .up.|> androidx.navigation.NavArgs com.example.savethefood.data.source.local.dao.FoodDatabaseDao_Impl .up.|> com.example.savethefood.data.source.local.dao.FoodDatabaseDao com.example.savethefood.data.source.local.dao.RecipeDatabaseDao_Impl .up.|> com.example.savethefood.data.source.local.dao.RecipeDatabaseDao com.example.savethefood.data.source.local.dao.RecipeInfoDatabaseDao_Impl .up.|> com.example.savethefood.data.source.local.dao.RecipeInfoDatabaseDao com.example.savethefood.data.source.local.dao.UserDatabaseDao_Impl .up.|> com.example.savethefood.data.source.local.dao.UserDatabaseDao com.example.savethefood.data.source.local.database.SaveTheFoodDatabase_Impl -up-|> com.example.savethefood.data.source.local.database.SaveTheFoodDatabase com.example.savethefood.data.source.local.database.SaveTheFoodDatabase_Impl o-- com.example.savethefood.data.source.local.dao.FoodDatabaseDao : _foodDatabaseDao com.example.savethefood.data.source.local.database.SaveTheFoodDatabase_Impl o-- com.example.savethefood.data.source.local.dao.RecipeDatabaseDao : _recipeDatabaseDao com.example.savethefood.data.source.local.database.SaveTheFoodDatabase_Impl o-- com.example.savethefood.data.source.local.dao.RecipeInfoDatabaseDao : _recipeInfoDatabaseDao com.example.savethefood.data.source.local.database.SaveTheFoodDatabase_Impl o-- com.example.savethefood.data.source.local.dao.UserDatabaseDao : _userDatabaseDao com.example.savethefood.databinding.ActivityMainBindingImpl -up-|> com.example.savethefood.databinding.ActivityMainBinding com.example.savethefood.databinding.EquipmentInstructionItemBindingImpl -up-|> com.example.savethefood.databinding.EquipmentInstructionItemBinding com.example.savethefood.databinding.FoodItemBindingImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FoodItemBindingImpl -up-|> com.example.savethefood.databinding.FoodItemBinding com.example.savethefood.databinding.FoodSearchItemBindingLandImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FoodSearchItemBindingLandImpl -up-|> com.example.savethefood.databinding.FoodSearchItemBinding com.example.savethefood.databinding.FoodSearchItemBindingV26Impl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FoodSearchItemBindingV26Impl -up-|> com.example.savethefood.databinding.FoodSearchItemBinding com.example.savethefood.databinding.FragmentFoodBindingImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentFoodBindingImpl -up-|> com.example.savethefood.databinding.FragmentFoodBinding com.example.savethefood.databinding.FragmentFoodBindingLandImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentFoodBindingLandImpl -up-|> com.example.savethefood.databinding.FragmentFoodBinding com.example.savethefood.databinding.FragmentFoodDetailBindingImpl -up-|> com.example.savethefood.databinding.FragmentFoodDetailBinding com.example.savethefood.databinding.FragmentFoodDetailBindingLandImpl -up-|> com.example.savethefood.databinding.FragmentFoodDetailBinding com.example.savethefood.databinding.FragmentHomeBindingImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentHomeBindingImpl -up-|> com.example.savethefood.databinding.FragmentHomeBinding com.example.savethefood.databinding.FragmentHomeBindingLandImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentHomeBindingLandImpl -up-|> com.example.savethefood.databinding.FragmentHomeBinding com.example.savethefood.databinding.FragmentLoginBindingImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentLoginBindingImpl -up-|> com.example.savethefood.databinding.FragmentLoginBinding com.example.savethefood.databinding.FragmentReceipeBindingImpl -up-|> com.example.savethefood.databinding.FragmentReceipeBinding com.example.savethefood.databinding.FragmentReceipeBindingLandImpl -up-|> com.example.savethefood.databinding.FragmentReceipeBinding com.example.savethefood.databinding.FragmentRecipeCookBindingImpl -up-|> com.example.savethefood.databinding.FragmentRecipeCookBinding com.example.savethefood.databinding.FragmentRecipeCookBindingLandImpl -up-|> com.example.savethefood.databinding.FragmentRecipeCookBinding com.example.savethefood.databinding.FragmentRecipeDetailBindingImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentRecipeDetailBindingImpl -up-|> com.example.savethefood.databinding.FragmentRecipeDetailBinding com.example.savethefood.databinding.FragmentRecipeDetailBindingLandImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentRecipeDetailBindingLandImpl -up-|> com.example.savethefood.databinding.FragmentRecipeDetailBinding com.example.savethefood.databinding.FragmentRecipeDetailBindingSw600dpImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentRecipeDetailBindingSw600dpImpl -up-|> com.example.savethefood.databinding.FragmentRecipeDetailBinding com.example.savethefood.databinding.FragmentSignupBindingImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.FragmentSignupBindingImpl -up-|> com.example.savethefood.databinding.FragmentSignupBinding com.example.savethefood.databinding.FragmentSplashBindingImpl -up-|> com.example.savethefood.databinding.FragmentSplashBinding com.example.savethefood.databinding.IngredientDetailBindingImpl -up-|> com.example.savethefood.databinding.IngredientDetailBinding com.example.savethefood.databinding.IngredientInstructionItemBindingImpl -up-|> com.example.savethefood.databinding.IngredientInstructionItemBinding com.example.savethefood.databinding.IngredientItemBindingImpl -up-|> com.example.savethefood.databinding.IngredientItemBinding com.example.savethefood.databinding.RecipeItemBindingImpl .up.|> com.example.savethefood.generated.callback.OnClickListener.Listener com.example.savethefood.databinding.RecipeItemBindingImpl -up-|> com.example.savethefood.databinding.RecipeItemBinding com.example.savethefood.databinding.StepCookItemBindingImpl -up-|> com.example.savethefood.databinding.StepCookItemBinding com.example.savethefood.fooddetail.FoodDetailFragmentArgs .up.|> androidx.navigation.NavArgs com.example.savethefood.generated.callback.OnClickListener .up.|> android.view.View.OnClickListener com.example.savethefood.generated.callback.OnClickListener o-- com.example.savethefood.generated.callback.OnClickListener.Listener : mListener com.example.savethefood.home.HomeFragmentArgs .up.|> androidx.navigation.NavArgs com.example.savethefood.recipe.RecipeFragmentArgs .up.|> androidx.navigation.NavArgs com.example.savethefood.recipedetail.RecipeDetailFragmentArgs .up.|> androidx.navigation.NavArgs 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
3b69ae8dd1db6031436aa8da967cdc699e7dc65e
c6c72378a47a34ea7f975cfddd0f6daba6b3b4d2
/ch05/excercise/5-1.puml
47b32c400debaa5304aff07dfce51c887dbe55f7
[]
no_license
yinm/uml-modeling-lesson
323b45e8bd926ac0b0f94a024bfd6f20a7872d17
0bc65be5ee9e957d3627cb9a5986a8ac9a17744c
refs/heads/master
2020-04-16T10:38:27.352993
2019-01-30T12:37:18
2019-01-30T12:37:18
165,511,559
0
0
null
null
null
null
UTF-8
PlantUML
false
false
168
puml
@startuml class 大学 { 名称 } class 学部 { 名称 } class 学科 { 名称 募集人員 } 大学 "1"--"1..*" 学部 学部 "1"--"1..*" 学科 @enduml
16b51b4523f578e7ccfa3986c9d786428b6dd6d3
6c14aa19e43b319922b03a2826106c0c020f1ef1
/3_patterns/src/doc/class/strategy.puml
a57c7c10435dcdf3f2c10f92213a67fdc23c6c75
[ "MIT" ]
permissive
nvamelichev/hse-java-spring-2021
50cdd53aa06baad9e31cc51108f0b356766fbe7b
5409e60473bf8981d9de41faa2c1e33364bcb806
refs/heads/main
2023-05-14T15:00:07.196656
2021-06-04T11:48:23
2021-06-04T11:48:23
336,320,393
5
11
MIT
2021-05-14T10:36:53
2021-02-05T16:05:28
Java
UTF-8
PlantUML
false
false
365
puml
@startuml interface FlyStrategy { + fly() } class OrdinaryFlyStrategy implements FlyStrategy class NoFlyStrategy implements FlyStrategy { + INSTANCE : NoFlyStrategy } note bottom of NoFlyStrategy : Null Object class Duck { + flyStrategy : FlyStrategy + doFly() } Duck "1" o-- "1" FlyStrategy skinparam linetype ortho skinparam Shadowing false @enduml
13285e740dae72781339396b51c9b8506ae4aa90
a23ee9fd68de55802dbbc3ac04a463b88b512983
/docs/classes.puml
00b2f5e154ec5d45c28abe0018b5cfc66d662fd9
[]
no_license
meta-morpho-sys/Note
083d8ffd486f67ac165dda034cea08d7416d703d
4bb89493abafdbbeea2464df255519cd7e814c33
refs/heads/master
2020-12-30T09:11:56.624087
2017-08-19T13:10:32
2017-08-19T13:10:32
100,394,355
0
0
null
null
null
null
UTF-8
PlantUML
false
false
636
puml
@startuml class Note { Stores text. == text getText() } class NoteList { Stores multiple notes and retrieves them. == getNotes() addNote(text) } class NoteListView { Stores a note list and renders it as an HTML string. == NoteListView(noteList) getNoteListHTML() } class NoteController { Uses the NoteList \n and NoteListView to update\n the display view. == NoteController(noteList) render() } NoteList "0" *-- "many" Note: notes note right on link it is the property of NoteList. end note NoteListView *-- NoteList: noteList NoteController .. NoteList NoteController .. NoteListView @enduml
efdddf054901d02c07ad581f941ee344cd93641d
112e511928937b8ec60004ca94f1dd996bd9fd1a
/Documents/Shos.Chatter.Server/Areas/HelpPage/ApiDescriptionExtensions.puml
1ca5d68b5e101bbcf6c737c54589b2acdec96368
[ "MIT" ]
permissive
Fujiwo/Shos.Chatter.NetFramework
2c143b390b1588e38e5967a8b8f1c51bf5487362
3c7061398e790c2fc856585fdbf60a18705f11e0
refs/heads/master
2023-03-23T09:31:02.071913
2021-03-11T05:27:48
2021-03-11T05:27:48
323,569,895
0
0
null
null
null
null
UTF-8
PlantUML
false
false
130
puml
@startuml class ApiDescriptionExtensions <<static>> { + {static} GetFriendlyId(description:ApiDescription) : string } @enduml
c928c2d21aa572b6938d44f99544908ee591b7c0
812c7fbf2b73dbfdd2fc49b2f79ca88a89dbf995
/backend/docs/class-diagram.puml
5ca9fa1ef26e4b9b85f78afa89448e3d1ec24cd7
[ "MIT" ]
permissive
codepals-org/poker
b9e44bc426ba742d93a7fd360e22c6925fa477ff
8b58df2ff4d3d9799c42652a9d6942d8ec6b3707
refs/heads/main
2023-01-20T10:15:40.526692
2020-11-18T10:48:16
2020-11-18T10:48:16
310,633,457
2
1
MIT
2020-11-18T10:33:24
2020-11-06T15:24:47
Python
UTF-8
PlantUML
false
false
920
puml
@startuml Table <|--- PlayerList Table *- Phase PlayerList <|--- Player Player *- Role enum Phase { REGISTRATION PREFLOP FLOP TURN RIVER SHOWDOWN } class Table { players :PlayerList cash_per_player :float small_blind :float big_blind :float max_players :int phase :Phase card_stack :List[str] community_cards :List[str] json() signup() start_game() start_preflop() } class PlayerList { self :List[Player] table :Table init_buttons() circular_button_move() deduct_blinds() who_starts() -> Player active_player() -> Player current() -> Player handout_cards(cardstack) money_pot() -> float need_to_pay() -> float } class Player { name :str money_seat :float money_pot :float role :Role active :bool hand :List[str] bet_counter :int json() check() call() bet() raise() } enum Role { NORMAL DEALER SMALL BIG UTG } @enduml
0e7eb6d401daf60b060bbc8811d3d3381379c2fc
34acd2aa8d51295c0c4289e43e8961f5e23b5a08
/PlantUML/raw/ElCazador.Worker/DataStore/IDataStoreObject.puml
6e45d435914d0884473378091c2f87cfcd9250b7
[]
no_license
fisboger/Thesis
a6887e195c7daa8317abe3167de1676420173e33
4746126f69da615c641380fd7a33c863f2fedee3
refs/heads/master
2020-04-03T15:18:08.671739
2019-02-07T11:17:06
2019-02-07T11:17:06
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
203
puml
@startuml interface "IDataStoreObject<T>"<IDataObject> { All : IEnumerable<T> <<get>> Get(key:object) : T Add(entity:T) : Task Delete(entity:T) : Task Edit(entity:T) : Task } @enduml
df9188491c64a723460f90c3ba64731a05f3a1d6
cda077acafbec053e4f48d21f607c54e96a89e1e
/Java Action Game/src/PaooGame/Input/Input.plantuml
17d655c9288ad5806492c3f90eb3de81e54649d9
[]
no_license
BRBC/Java-Action-Game
70f56160f868b73430584f983292063836005491
aa66fa8b76fb271c370a60cd9a7f705f07a68c3d
refs/heads/main
2023-05-13T13:03:29.009915
2021-06-03T13:51:50
2021-06-03T13:51:50
373,129,586
0
0
null
null
null
null
UTF-8
PlantUML
false
false
937
plantuml
@startuml title __INPUT's Class Diagram__\n namespace PaooGame { namespace Input { class PaooGame.Input.KeyManager { + down : boolean + downKeystroke : boolean + enter : boolean + enterKeystroke : boolean + left : boolean + previousDown : boolean + previousEnter : boolean + previousUp : boolean + right : boolean + space : boolean + up : boolean + upKeystroke : boolean - keys : boolean[] + KeyManager() + Update() + keyPressed() + keyReleased() + keyTyped() } } } PaooGame.Input.KeyManager .up.|> java.awt.event.KeyListener 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
9cd687a1a049143d4229dc91bc36c2004b652827
b9a5b64744865c0dfcf7660d5ca90df262b3c9e3
/assignment_1.plantuml
4dc6d40eb4289ee01569536bba31238065217af0
[]
no_license
aguss787/NUS-CS4212
adaa9fb65ee936bbbf1957a03da9e57eb6fe8fb5
4bbe96dc2495119e28b0166e589048bbc44b62fb
refs/heads/master
2020-11-27T09:50:51.928169
2019-12-21T06:42:34
2019-12-21T06:42:34
229,388,530
0
0
null
null
null
null
UTF-8
PlantUML
false
false
11,747
plantuml
@startuml title __ASSIGNMENT-2's Class Diagram__\n namespace dev.aguss787.cs4212.assignment1 { class dev.aguss787.cs4212.assignment1.Main { } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.BinaryOperation { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { enum ArithmeticOperator { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Assignment { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { interface dev.aguss787.cs4212.assignment1.ast.Atom { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.AtomizedExpression { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.BooleanLiteral { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Call { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.ClassType { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.ConstantAtom { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.CustomClass { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Declaration { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Dot { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { interface dev.aguss787.cs4212.assignment1.ast.Expression { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Function { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.IfElse { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.IntegerLiteral { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.New { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { enum PrimitiveType { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Println { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Program { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Readln { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { interface dev.aguss787.cs4212.assignment1.ast.Referenceable { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.ReferenceableAtom { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.Return { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { interface dev.aguss787.cs4212.assignment1.ast.Statement { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.StringLiteral { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { interface dev.aguss787.cs4212.assignment1.ast.Type { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.UnaryOperation { } } } namespace dev.aguss787.cs4212.assignment1 { namespace ast { class dev.aguss787.cs4212.assignment1.ast.While { } } } namespace dev.aguss787.cs4212.assignment1 { namespace cup { class dev.aguss787.cs4212.assignment1.cup.Parser { } } } namespace dev.aguss787.cs4212.assignment1 { namespace cup { class dev.aguss787.cs4212.assignment1.cup.PrettySymbol { } } } namespace dev.aguss787.cs4212.assignment1 { namespace cup { class dev.aguss787.cs4212.assignment1.cup.SymbolFactories { } } } namespace dev.aguss787.cs4212.assignment1 { namespace cup { interface dev.aguss787.cs4212.assignment1.cup.Symbols { } } } namespace dev.aguss787.cs4212.assignment1 { namespace jflex { class dev.aguss787.cs4212.assignment1.jflex.Lexer { } } } namespace dev.aguss787.cs4212.assignment1 { namespace utils { interface dev.aguss787.cs4212.assignment1.utils.PrettyPrintable { } } } namespace dev.aguss787.cs4212.assignment2 { class dev.aguss787.cs4212.assignment2.Main { } } namespace dev.aguss787.cs4212.assignment2 { namespace typecheck { class dev.aguss787.cs4212.assignment2.typecheck.ErrorList { } } } namespace dev.aguss787.cs4212.assignment2 { namespace typecheck { class dev.aguss787.cs4212.assignment2.typecheck.FunctionSignature { } } } namespace dev.aguss787.cs4212.assignment2 { namespace typecheck { class dev.aguss787.cs4212.assignment2.typecheck.LocalEnv { } } } namespace dev.aguss787.cs4212.assignment2 { namespace typecheck { class dev.aguss787.cs4212.assignment2.typecheck.TypeCheck { } } } namespace dev.aguss787.cs4212.assignment2 { namespace typecheck { class dev.aguss787.cs4212.assignment2.typecheck.TypeDescriptor { } } } namespace dev.aguss787.cs4212.assignment2 { namespace typecheck { class dev.aguss787.cs4212.assignment2.typecheck.TypeMap { } } } namespace dev.aguss787.cs4212.assignment2 { namespace typecheck { class dev.aguss787.cs4212.assignment2.typecheck.UniqueReducer { } } } dev.aguss787.cs4212.assignment1.ast.BinaryOperation .up.|> dev.aguss787.cs4212.assignment1.ast.Expression dev.aguss787.cs4212.assignment1.ast.BinaryOperation o-- dev.aguss787.cs4212.assignment1.ast.Expression : left dev.aguss787.cs4212.assignment1.ast.BinaryOperation o-- dev.aguss787.cs4212.assignment1.ast.Operator : operator dev.aguss787.cs4212.assignment1.ast.BinaryOperation o-- dev.aguss787.cs4212.assignment1.ast.Expression : right dev.aguss787.cs4212.assignment1.ast.Assignment .up.|> dev.aguss787.cs4212.assignment1.ast.Statement dev.aguss787.cs4212.assignment1.ast.Assignment o-- dev.aguss787.cs4212.assignment1.ast.Expression : expr dev.aguss787.cs4212.assignment1.ast.Assignment o-- dev.aguss787.cs4212.assignment1.ast.Referenceable : target dev.aguss787.cs4212.assignment1.ast.AtomizedExpression .up.|> dev.aguss787.cs4212.assignment1.ast.Atom dev.aguss787.cs4212.assignment1.ast.AtomizedExpression o-- dev.aguss787.cs4212.assignment1.ast.Expression : expr dev.aguss787.cs4212.assignment1.ast.BooleanLiteral .up.|> dev.aguss787.cs4212.assignment1.ast.Expression dev.aguss787.cs4212.assignment1.ast.Call .up.|> dev.aguss787.cs4212.assignment1.ast.Atom dev.aguss787.cs4212.assignment1.ast.Call .up.|> dev.aguss787.cs4212.assignment1.ast.Statement dev.aguss787.cs4212.assignment1.ast.Call o-- dev.aguss787.cs4212.assignment1.ast.Atom : fun dev.aguss787.cs4212.assignment1.ast.ClassType .up.|> dev.aguss787.cs4212.assignment1.ast.Type dev.aguss787.cs4212.assignment1.ast.ConstantAtom .up.|> dev.aguss787.cs4212.assignment1.ast.Atom dev.aguss787.cs4212.assignment1.ast.CustomClass .up.|> dev.aguss787.cs4212.assignment1.utils.PrettyPrintable dev.aguss787.cs4212.assignment1.ast.Declaration .up.|> dev.aguss787.cs4212.assignment1.utils.PrettyPrintable dev.aguss787.cs4212.assignment1.ast.Declaration o-- dev.aguss787.cs4212.assignment1.ast.Type : type dev.aguss787.cs4212.assignment1.ast.Dot .up.|> dev.aguss787.cs4212.assignment1.ast.Referenceable dev.aguss787.cs4212.assignment1.ast.Dot o-- dev.aguss787.cs4212.assignment1.ast.Atom : left dev.aguss787.cs4212.assignment1.ast.Function .up.|> dev.aguss787.cs4212.assignment1.utils.PrettyPrintable dev.aguss787.cs4212.assignment1.ast.Function o-- dev.aguss787.cs4212.assignment1.ast.Type : returns dev.aguss787.cs4212.assignment1.ast.IfElse .up.|> dev.aguss787.cs4212.assignment1.ast.Statement dev.aguss787.cs4212.assignment1.ast.IfElse o-- dev.aguss787.cs4212.assignment1.ast.Expression : cond dev.aguss787.cs4212.assignment1.ast.IntegerLiteral .up.|> dev.aguss787.cs4212.assignment1.ast.Expression dev.aguss787.cs4212.assignment1.ast.New .up.|> dev.aguss787.cs4212.assignment1.ast.Atom dev.aguss787.cs4212.assignment1.ast.PrimitiveType .up.|> dev.aguss787.cs4212.assignment1.ast.Type dev.aguss787.cs4212.assignment1.ast.Println .up.|> dev.aguss787.cs4212.assignment1.ast.Statement dev.aguss787.cs4212.assignment1.ast.Println o-- dev.aguss787.cs4212.assignment1.ast.Expression : expr dev.aguss787.cs4212.assignment1.ast.Program .up.|> dev.aguss787.cs4212.assignment1.utils.PrettyPrintable dev.aguss787.cs4212.assignment1.ast.Readln .up.|> dev.aguss787.cs4212.assignment1.ast.Statement dev.aguss787.cs4212.assignment1.ast.ReferenceableAtom .up.|> dev.aguss787.cs4212.assignment1.ast.Referenceable dev.aguss787.cs4212.assignment1.ast.Return .up.|> dev.aguss787.cs4212.assignment1.ast.Statement dev.aguss787.cs4212.assignment1.ast.StringLiteral .up.|> dev.aguss787.cs4212.assignment1.ast.Expression dev.aguss787.cs4212.assignment1.ast.UnaryOperation .up.|> dev.aguss787.cs4212.assignment1.ast.Expression dev.aguss787.cs4212.assignment1.ast.UnaryOperation o-- dev.aguss787.cs4212.assignment1.ast.Expression : operand dev.aguss787.cs4212.assignment1.ast.UnaryOperation o-- dev.aguss787.cs4212.assignment1.ast.Operator : operator dev.aguss787.cs4212.assignment1.ast.While .up.|> dev.aguss787.cs4212.assignment1.ast.Statement dev.aguss787.cs4212.assignment1.ast.While o-- dev.aguss787.cs4212.assignment1.ast.Expression : cond dev.aguss787.cs4212.assignment1.cup.Parser -up-|> java_cup.runtime.lr_parser dev.aguss787.cs4212.assignment1.cup.Parser o-- dev.aguss787.cs4212.assignment1.cup.Parser.CUP$Parser$actions : action_obj dev.aguss787.cs4212.assignment1.cup.PrettySymbol -up-|> java_cup.runtime.Symbol dev.aguss787.cs4212.assignment1.cup.SymbolFactories .up.|> java_cup.runtime.SymbolFactory dev.aguss787.cs4212.assignment1.jflex.Lexer .up.|> java_cup.runtime.Scanner dev.aguss787.cs4212.assignment2.typecheck.ErrorList -up-|> java.util.ArrayList dev.aguss787.cs4212.assignment2.typecheck.FunctionSignature .up.|> dev.aguss787.cs4212.assignment1.ast.Type dev.aguss787.cs4212.assignment2.typecheck.FunctionSignature o-- dev.aguss787.cs4212.assignment1.ast.Type : returns dev.aguss787.cs4212.assignment2.typecheck.LocalEnv -up-|> java.util.HashMap dev.aguss787.cs4212.assignment2.typecheck.TypeMap -up-|> java.util.HashMap 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
b9725c8966d1452c86e50abad1f6e2d57667c8df
d967bba06de55ecde34c1aa99f18639a98519974
/Assets/uml.puml
502791cdc70c3c983d8a5675fe4b6d1ea18a114b
[]
no_license
dashi8/NoccaNocca
67ea977aba02d279929a9ec40f9c01af13eb892a
b48a78fb859f55fc4a42f25b22a45fa0f6ab4a35
refs/heads/main
2023-04-26T04:17:22.958787
2021-05-06T09:14:03
2021-05-06T09:14:03
335,622,356
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,489
puml
@startuml NOCCANOCCA namespace NOCCARule{ class NOCCACore{ } NOCCARule.NOCCACore --* PiecesBoard.PieceManager } namespace PiecesBoard{ class PieceScript{ + bool isMine + Point point + int step + bool isMoving + bool isSelected + void changePiecePoint(Point pa, Point pb) } class PieceManager{ } class PieceMoveAnimation{ } class MasuScript{ + Point point } class GoalScript{ + bool isMine } class PiecesBoardGenerator{ } interface IMyInput{ Point getPoint() } PiecesBoardGenerator-->MasuScript PiecesBoardGenerator-->GoalScript PiecesBoardGenerator-->PieceScript PiecesBoard.PieceScript..|>PiecesBoard.IMyInput PiecesBoard.MasuScript..|>PiecesBoard.IMyInput PiecesBoard.GoalScript..|>PiecesBoard.IMyInput PieceManager---PieceScript PieceMoveAnimation-->PieceScript PieceManager---MasuScript PieceManager---GoalScript PieceManager-->IMyInput PieceManager-->Opponent.IOpponentInput } namespace GameManager{ enum GameState{ + Menu + Battle + Result } class GameTimeManager{ } class GameManager{ } GameManager-->GameTimeManager GameManager-->PiecesBoard.PieceManager } namespace Opponent{ class CPU{ } interface IOpponentInput{ Point getPoint() } Opponent.CPU..|>Opponent.IOpponentInput } @enduml
37a5d6dc18dd682ad57ac32d318a6e4ab876ae32
c69dba4cef780d27a126166ee912005507258413
/src/design/field.puml
cbab46dbe39a2410ccea53818e19ee9e3268f8de
[ "MIT", "EPL-1.0", "Apache-2.0" ]
permissive
CS-SI/Orekit
2265900b501fe6727a57378956f9f2c61564909a
7ab7a742674eabee00e1dbe392833d587fdcdaab
refs/heads/develop
2023-09-03T20:33:42.748576
2023-09-01T14:34:03
2023-09-01T14:34:03
22,851,787
144
79
Apache-2.0
2023-03-28T17:53:33
2014-08-11T19:29:35
Java
UTF-8
PlantUML
false
false
2,663
puml
' Copyright 2002-2023 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.hipparchus #ECEBD8 { interface "FieldElement<T>" as FieldElement_T_ { T add(T a) T subtract(T a) T negate() T multiply(int n) T multiply(T a) T divide(T a) T reciprocal() Field<T> getField() } interface "CalculusFieldElement<T>" as CalculusFieldElement_T_ { T sin() T cos() ... T copySign(T sign) double getReal() } note top lots of mathematical methods omitted for clarity end note package analysis.differentiation #DDEBD8 { class DSFactory { +DSFactory(int parameters, int order) +constant(double value) +variable(int index, double value) } class DerivativeStructure { +DSFactory getFactory() +int getFreeParameters() +int getOrder() +double getValue() +double getPartialDerivative(int[] orders) +double taylor(double[] delta) } FieldElement_T_ <.. CalculusFieldElement_T_ CalculusFieldElement_T_ <.. DerivativeStructure DSFactory --> DerivativeStructure : creates } package util #DDEBD8 { CalculusFieldElement_T_ <.. Tuple } } package org.orekit.propagation #ECEBD8 { interface "FieldPropagator<T>" as FieldPropagator_T_ { } CalculusFieldElement_T_ <-- FieldPropagator_T_ } @enduml
4d02cd8011471126182b6b0ac0cdc71eb4f7db18
065da8d391be577d7fc71aa024ab81e35c39618b
/PlantUml/Dolphin.IO/IFileEnumerator.puml
ed746a68ad8d2a411718888d6c69e981b0a18ec3
[]
no_license
leoshiang/Dolphin.CSharp
1fc921ea04a4a721b49557748f7ca15f89f9e414
61438432f088c6b380356afdcba4c627985fa152
refs/heads/master
2023-04-17T03:59:19.871766
2023-03-30T02:03:42
2023-03-30T02:03:42
204,225,824
0
0
null
2022-12-08T04:32:20
2019-08-25T00:02:55
C#
UTF-8
PlantUML
false
false
124
puml
@startuml interface IFileEnumerator { FindFiles(directory:string, filter:ISearchFilter) : IEnumerable<string> } @enduml
0f00edeb0a2d0a6279046dba29d430f183b72058
c452e4f63f50eca1ab44e5bb5fa557cbc5c93515
/src/main/resources/ex41/ClassDiagrams/Main.puml
6ffa8e718c4c7d6b93c45ac484d87feb5766a560
[]
no_license
mplekunov/Assignment_3
b1ca62cde7a6a1dd495bdc8c52e34d494a8e947b
81138b959274d3c8bf9586c0c4f6c164f6c84780
refs/heads/master
2023-05-31T12:28:19.214249
2021-06-21T00:40:42
2021-06-21T00:40:42
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
97
puml
@startuml 'https://plantuml.com/class-diagram class Main { +List<Name> readName() } @enduml
1c642c42af9d7a6b193e7daa1de184d72ddf18c2
f876fcde7a637d67bbbabb83624c28045c9675ae
/diagrams/src/Application/Services/Chatservice.puml
f8d137c9608379393c556aa0b479eff910a16ad3
[ "MIT" ]
permissive
converge-app/chat-service
aa431668be05ea646fd781d52d8bb18b9ff5a1fd
1ecce444167925467a8ff2235509353c076a1236
refs/heads/master
2023-03-11T14:28:10.323241
2019-12-17T12:06:22
2019-12-17T12:06:22
213,873,991
0
0
MIT
2023-03-04T01:15:45
2019-10-09T09:17:45
C#
UTF-8
PlantUML
false
false
643
puml
@startuml interface IChatService { AddContact(createMessage:Message) : Task<Message> PostMessage(sendMessage:Message) : Task<Message> } class ChatService { - <<readonly>> _ChatRepository : IChatRepository - <<readonly>> _client : IClient + ChatService(ChatRepository:IChatRepository, client:IClient) + <<async>> PostMessage(sendMessage:Message) : Task<Message> + <<async>> AddContact(createMessage:Message) : Task<Message> + <<async>> GetChat(senderId:string, receiverId:string) : Task<List<Message>> - {static} HashUsers(senderId:string, receiverId:string) : string } IChatService <|-- ChatService @enduml
27af232a44e8c5bc55dbf5f0791f9d495e8a8c15
6e4f101bf0c73633a499b8a1e741676c582c8a3f
/Diagramas UML/Clases/Lapiz y SectorDibujo.puml
1fc6aa79c46caa1de685e87afced678f6082c3e8
[ "MIT" ]
permissive
trinibucc/TP2-AlgoBlocks
34c61fcf80a346c2ed804fc062c0d2ece14a5611
fc175f31953a357f61f9c3c2c1bc403631e02b27
refs/heads/main
2023-03-21T01:57:58.859160
2021-03-13T20:51:00
2021-03-13T20:51:00
320,431,952
0
0
MIT
2021-03-13T20:48:49
2020-12-11T01:14:45
Java
UTF-8
PlantUML
false
false
548
puml
@startuml interface Lapiz{ Trazar(Posicion, Posicion) } Lapiz ...> Posicion Lapiz ...> SectorDibujo class LapizAbajo implements Lapiz, Bloque{ - String } class LapizArriba implements Lapiz, Bloque{ - String } class SectorDibujo{ - {static} SectorDibujo - List<Segmento> - List<Segmento> - {static} crearInstancia() + {static} obtenerSectorDibujo(): SectorDibujo + reiniciar() + aplicarTrazo() + noAplicarTrazo() + obtenerSinTrazar(): List<Segmento> + obtenerDibujo(): List<Segmento> } @enduml
67a916667afccde036a3ecd6955599ef61a4b0ec
2a05c19c522de7ac2f880aa0ba60547ace21cc30
/uml/command.puml
cee467cbd5aa5f53b9fa20ff47a5221fe2c6662e
[]
no_license
lbvs86823/lbvs86823.github.com
458c5ca2ccae6a54519129a86545d817cfaf418f
129e1ea762ab70c2b54886b561775d5dfd7841d6
refs/heads/master
2021-12-07T03:23:18.169009
2021-08-20T09:19:30
2021-08-20T09:19:30
16,271,667
0
0
null
null
null
null
UTF-8
PlantUML
false
false
545
puml
@startuml title 命令模式 abstract class Command { + {abstract} exec(): void + {abstract} undo(): void } class LightReceiver { + on(): void + off(): void } class LightOn extends Command { + exec(): void + undo(): void } LightOn o-- LightReceiver class LightOff extends Command { + exec(): void + undo(): void } LightOff o-- LightReceiver class Invoker Invoker o-left- Command class Client { } Client .left.> Invoker Client .left.> LightReceiver Client .left.> LightOn Client .left.> LightOff @enduml
ea92db9b9a44c9a27449b3a5e6214cc69c309eb8
935b0528caa1b79b04408361b95e2c68bd9478e8
/android-pdf-viewer/src/main/java/com/github/barteksc/pdfviewer/link/link.plantuml
4e41d2fa2d8ec3b6ab26f62b4df16813d88864b1
[ "Apache-2.0" ]
permissive
cj5785/YESPDF
787485d7aaa3c17e70c31766f613a5a0d7bac5b7
c2428c2984968b2d4feb23e69a4b82379f90d893
refs/heads/master
2022-11-26T11:04:42.961008
2020-08-02T13:15:24
2020-08-02T13:15:24
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
956
plantuml
@startuml title __LINK's Class Diagram__\n namespace com.github.barteksc.pdfviewer { namespace link { class com.github.barteksc.pdfviewer.link.DefaultLinkHandler { {static} - TAG : String + DefaultLinkHandler() + handleLinkEvent() - handlePage() - handleUri() } } } namespace com.github.barteksc.pdfviewer { namespace link { interface com.github.barteksc.pdfviewer.link.LinkHandler { {abstract} + handleLinkEvent() } } } com.github.barteksc.pdfviewer.link.DefaultLinkHandler .up.|> com.github.barteksc.pdfviewer.link.LinkHandler com.github.barteksc.pdfviewer.link.DefaultLinkHandler o-- com.github.barteksc.pdfviewer.PDFView : pdfView 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
dc03ac2cee25cedd69d2053068a9248613411354
545a98e7752c02e03b7935d8b41acc25f48e73cb
/D1step4/td1Step4.plantuml
eea0950bba986d5e73afc0e103b21bcdd6d5f3ee
[]
no_license
ANIESSE05/TD-MAPC-M1-MIAGE
611e4d8f7abbbc5e7957baefca4f82ab9891021d
47f86163971cc30c468317d4f43264665650c910
refs/heads/master
2023-08-03T05:47:14.681972
2021-09-21T10:41:43
2021-09-21T10:41:43
408,127,158
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,656
plantuml
@startuml classdiagram package api { package monetary { interface Product { + price(): double } } package dietetic{ Interface DieteticElement { + Kcalorie100g() } } package Restauration{ Interface Food extends Product, DieteticElement{ + weight() : double + colorie() : double<default> } Interface Base extends DieteticElement , Product{ + hasUniquePrice :bool } Class Ingerdient implements Food { - weight:double + this(base:Base,weight:double) + calorie100g():double + weight():double + calorie(): double + price():double } Ingerdient *-> "~base 1" Base abstract class Recipe extends Food implements ComposedFood { - name: string + this(name: string, ingerdienta: List<Ingredient>) + weight(): double + price(): double + Kcalorie() : double + Kcalorie100g() : double } Recipe *-> "ingredients *" Food Interface ComposedFood extends Food{ add(base:Base,weight:double); } } package Burger { enum BurgerBase implements ComposedFood{ BURGER, BARBECUE, BEARNAISE,BEEF,WHITEFISH,CHEDDAR, DEEPERIEDONIONS,TOMATO + calorie100g():double + price():double + hasUniquePrice():bool } Class Burger extends Recipe { this(name:stringm ingredients:List<Ingredient>) } Enum MenuSize{ SMALL,MEIUM,BIG meatWeight() : double } Enum MenuType{ MEAT_MENU,FISH_MENU,CHEESE_MENU } Class BurgerBuilder implements MenuSize,MenuType,Burger{ ~name: string order_name(name : string, type :MenuType):BurgerBuilder order_beef(name : string,size:MenuSize) : BurgerBuilder order_bish(name: string ,size :MenuSize) : BurgerBuilder with_barbecue_sauce():BurgerBuilder with_bearnaise_sauce():BurgerBuilder with_cheddar():BurgerBuilder with_onions():BurgerBuilder with_tomato():BurgerBuilder cook():ComposedFood } Class Burger { this(name:string) } } } package client { class App implements MenuType,BurgerBuilder,Food,MenuSize{ static main(arg:string[3]):void } } @enduml
d56c4f1a46608526f2f797dfadd6f3d23fe904e2
25401ecdc0394dfeed79f6ab59b8339d8c1cc74a
/cardreader.provider.usb.tactivo/doc/plantuml/UTACCRP/entities.plantuml
7f01aa7d1f9d83a178c8ec63babb110184a1a865
[ "Apache-2.0" ]
permissive
gematik/ref-CardReaderProvider-USB-Tactivo-Android
f1f6d544358c5d93963ef889cb6281a059678b60
e49e01f305cc3f24fe3544fbe9cdb3077cddcb6f
refs/heads/master
2022-02-07T13:08:30.124094
2022-01-07T07:24:20
2022-01-07T07:24:20
214,091,078
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,577
plantuml
@startuml namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace entities { class de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCard { - atr : Atr - channel : CardChannel - preciseATR : ATR - preciseATRbyte : byte[] - preciseCard : Card + TactivoCard() + beginExclusive() + disconnect() + endExclusive() + getATR() + getBasicChannel() + getProtocol() + openBasicChannel() + openLogicalChannel() + transmitControlCommand() } } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace entities { class de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardChannel { {static} - CARDREADER_BUFFER : String {static} - CARD_MAXAPDUBUFFERSIZE : String {static} - CARD_MAXRESPAPDUBUFFERSIZE : String {static} - LOG : Logger {static} - bufferSizeConfig : Map<String, Integer> - preciseChannel : CardChannel + close() + getCard() + getChannelNumber() + getMaxMessageLength() + getMaxResponseLength() + isExtendedLengthSupported() + transmit() + transmit() ~ TactivoCardChannel() } } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace entities { class de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardReader { {static} - PROTOCOL_T1 : String - preciseCard : Card - preciseTerminal : CardTerminal + TactivoCardReader() + connect() + getName() + initialize() + isCardPresent() + isInitialized() + waitForCardAbsent() + waitForCardPresent() } } } de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCard .up.|> de.gematik.ti.cardreader.provider.api.card.ICard de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardChannel .up.|> de.gematik.ti.cardreader.provider.api.card.ICardChannel de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardChannel o-- de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCard : tactivoCard de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardReader .up.|> de.gematik.ti.cardreader.provider.api.ICardReader @enduml
4936f9f5eb5e52b4d2c882a6d61357b7f09c52d6
8ab3265c0db3eef67c98134f35e5b4d40be64bea
/src/main/resources/SRP3-0.puml
4adfb6bf78592ed0f2d42663c14e524a8c34c92e
[]
no_license
taoes/DesignPattern
6826bc6dbb190e9233fef0cf0f2c9bf766efd2a7
903a46a60833762cdda0d78b88cf01f4f9aee94c
refs/heads/master
2021-05-23T12:42:00.744517
2020-04-12T13:37:03
2020-04-12T13:37:03
253,290,931
0
0
null
null
null
null
UTF-8
PlantUML
false
false
166
puml
单一用户职责的错误使用 @startuml interface PhoneService { + void dial(String phoneNumber) + void char(Object content); + void hangUp(); } @enduml
4165d923de10df8cc86452f29e95e21aa8adcdda
c8921fe77a5927904ac3c04bfd080851403dab94
/uml/uml2/actC.puml
7750f97d5c4612a23760d46457a2d4c645038fa6
[]
no_license
turanukimaru/fehs
cc06f5a3d007a2633373d09281304571e132748b
8764ad4521c7a0f66a911578b536f9be4e598fdb
refs/heads/master
2021-06-03T05:53:52.465995
2020-04-19T18:59:06
2020-04-19T18:59:06
111,425,822
1
0
null
null
null
null
UTF-8
PlantUML
false
false
761
puml
@startuml class 盤{ matrix : 駒[][] 載せる(駒, 座標) 動かす(駒, 座標) 取り除く(駒) 駒を見る(座標) 駒を探す(駒) } class 駒{ 動かす(座標) 移動範囲を得る(盤) 成る(新能力) } class 能力{ 移動範囲を得る() 行動範囲を得る() 全ての能力に共通のルール() } class 行動駒{ 行動(座標) 行動範囲を得る() 盤面を見て行動可能かを判定する() } class 行動盤{ 行動範囲matrix : Boolean[][] 行動(駒, 座標) 行動範囲を探索(行動駒) } 行動盤 -> "載る" 行動駒 行動駒 --> "自分を動かす" 行動盤 駒 -right-> 能力 人 -down-> "動かす" 行動駒 人 -down-> "俯瞰する" 行動盤 行動駒 -down-|> 駒 行動盤 -down-|> 盤 @enduml
53d39a6a736d027f3509c43522652f517b4f66ba
3fde62f3512b2a4de347ed9b63728c7947629287
/resources/puml/mainUML.puml
0cf082f6984e4af850393cae55cbdd1e03352342
[]
no_license
nc6d/Converter
6b1cc05486bf983f19b6346b433b0e19a2e51fbd
f6d2073e14e65fac072ce0ccdf3f967910390332
refs/heads/master
2023-04-25T08:52:23.910255
2021-05-10T06:10:08
2021-05-10T06:10:08
357,346,626
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,651
puml
@startuml 'https://plantuml.com/class-diagram class Main { + {method} start(Stage primaryStage) + {static} main() } class MainController { +{field} Button convertButtonLength +{field} Button convertMassButton +{field} Button convertTempButton +{field} Button convertSquareButton +{field} Button convertVolumeButton +{field} TextField lengthInputField +{field} TextField massInputField +{field} TextField tempInputField +{field} TextField squareInputField +{field} TextField volumeInputField + {field} ComboBox lengthFromCB + {field} ComboBox lengthToCB + {field} ComboBox massFromCB + {field} ComboBox massToCB + {field} ComboBox tempFromCB + {field} ComboBox tempToCB + {field} ComboBox squareFromCB + {field} ComboBox squareToCB + {field} ComboBox volumeFromCB + {field} ComboBox volumeToCB - {field}{static} lengthValues - {field}{static} massValues - {field}{static} tempValues - {field}{static} squareValues - {field}{static} volumeValues - {method} showResult() + {method} initialize(URL url, ResourceBundle resourceBundle) - {method} lengthConvert() - {method} massConvert() - {method} tempConvert() - {method} squareConvert() - {method} volumeConvert() } class Constants { + {static} NPE_WARN : String + {static} NFE_WARN : String + {static} NE_WARN : String } abstract class Application interface Initializable Main -o Application : extends Main --* MainController : connect through FXML MainController --> Constants MainController -o Initializable : implements @enduml
e356f53b1a44a701a7c60935cafa01f9e30eae49
4ba73bae9a8cc3af49f25fb6c93202159ed2c522
/docs/SC_Classes.puml
c7c1ba13d48071b8605282ce04ad94b1a4c01fbd
[ "MIT" ]
permissive
NeoSecundus/SolarCharger
b16b48ef0f9d78d4dc797c6c81cfae7d2f4fad49
87a2bff44acf9ef82c9e759c8f484cb2f2e21802
refs/heads/master
2023-08-19T18:13:44.207362
2021-10-18T14:46:00
2021-10-18T14:46:00
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
419
puml
@startuml class ACSReader { - float voltage - float lastVal - float suppliedWatts - int lastProcessTime + ACS712 acs + ACSReader(float refVoltage, uint8_t pin, float voltage, uint16_t maxADC, uint8_t mVperA) + float getMedianDC(int loops, int msInterval) + float getWatt() + float getSuppliedWatt() + char* getSuppliedWattString() + char* getWorkingTime() } @enduml
7900e19161920d420e15068e2d486b895ab09f4b
eee65bdd4128eeedc3271601006ed5739b43bd67
/uml/border_cross_false.puml
701b1b389b73768e4d69bba9d5a97a5df5270c28
[]
no_license
argh87/bachelorthesis
25e8443e61233a628a12a6207f20b0a8319c3cf5
9f8a463b455b6e84f67a424ebf5efc2507bc3ebc
refs/heads/master
2023-04-14T08:47:44.757939
2021-04-12T08:32:34
2021-04-12T08:32:34
345,094,877
0
1
null
2021-04-12T08:32:35
2021-03-06T13:01:32
TeX
UTF-8
PlantUML
false
false
177
puml
@startuml package Business { class Client } package DB { class Repository { + get() } class Data } Client -> Repository Client -> Data Repository --> Data @enduml
7848b70430de08cbcb9aac7707974f19f7275a24
85f2e796c6c71b5b9e705ba14bc028484d80717a
/src/docs/strategy_pattern_sample.puml
44f352c0d96ae4c176a1a24244083fbfe1e0020b
[]
no_license
cutem-0104/DesignpatternIntroduction
c6c52ce18f9e8290e7ef2320938cf314ebce8b50
9786b90ac9eb12733785aa96d4d6f41264046e91
refs/heads/master
2020-03-22T03:58:16.979520
2018-07-02T15:50:06
2018-07-02T15:50:06
139,463,949
0
0
null
null
null
null
UTF-8
PlantUML
false
false
368
puml
@startuml class Player { strategy nextHand() win() lose() even() } interface Strategy <<interface>> { {abstract}nextHand() {abstract}study() } class WinningStrategy { nextHand() study() } class ProbStrategy { nextHand() study() } Player o-r-> Strategy WinningStrategy .u.|> Strategy ProbStrategy .u.|> Strategy @enduml
2804120afc544b0e89ecca585093415ec69b3cd4
644b7bb773b84596a2de4d31a0603284d9562e56
/react/bootstrap/panel.iuml
39c94a0464aafa81029d30cb6763693e5a297c0a
[]
no_license
M9k/Marvin-Uml
e62d17245cf493d53f0b80f633a47be8ec44569e
0fe9bc36f947535ae4397181ccf8c85291244a87
refs/heads/master
2021-04-15T17:44:22.461549
2018-05-10T07:52:19
2018-05-10T07:52:19
126,618,685
0
0
null
null
null
null
UTF-8
PlantUML
false
false
220
iuml
class Panel{ --props-- active : boolean disabled : boolean onClick : function --render-- apply a basic border and padding to contain some content } /'Questa è una prova 3'/