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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
21597a5d4d41877489b0415335acd24fd57397cd | eb8683d1b905b1977428c53f490918b1ec545529 | /src/com/company/ch04/UML.puml | 330af0f5e8ab3b294aeecf0651db2da6ab3290fa | [] | no_license | Kimyechan/JavaBasic | bac851133e2b138c82a698497030846c7513f003 | 8b80c9ce928d186b1e6755d4fa8c62b4123fb499 | refs/heads/master | 2023-01-06T23:12:19.961603 | 2020-11-12T11:56:31 | 2020-11-12T11:56:31 | 283,386,828 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 621 | puml | @startuml
interface IFoo{
+ void method(int x, int y);
}
abstract class Bar {
+ static String name; // public
Foo foo;
# int x; // protected
~ int y; // default
- int z; // private
void method(String string);
}
class Qoo {
Foo foo;
}
class Foo{
int x;
void methodA();
}
Foo -|> IFoo
Bar -o Foo
Qoo -* Foo
'Qoo -right*Foo
title Class Diagram Title
note left of Foo
end note
note bottom of Foo
Foo는 Bar가 Aggregation 한다.
Foo는 Qoo가 Composition 한다.
end note
note bottom of Bar
void method(String string){
return string
}
end note
@enduml |
ad1df4a6d65d7fa0f0b00395a6a7919d5fbda057 | 7eb0a3429f021f1a046bed8e667a6911d789d065 | /StatePattern/example.puml | e55c92c01de35f869e42c77daaac72f3eb8e4ddb | [
"MIT"
] | permissive | gama79530/DesignPattern | d99431711fda65cfb7d790b2959ba0a712fa3f86 | 4730c50cdd839072ae50eef975cbed62b5a2a41c | refs/heads/master | 2023-08-03T04:35:54.561642 | 2023-06-08T03:13:08 | 2023-07-31T12:32:13 | 269,562,362 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 883 | puml | @startuml example
hide empty members
class Taxi{
- State state
- OffDutyLights offDutyLights
- OnDutyLight onDutyLight
- Arrived arrived
+ Taxi()
+ State getState()
~ OffDutyLights getOffDutyLights()
~ OnDutyLight getOnDutyLight()
~ Arrived getArrived()
+ void hailed()
+ void checkout()
}
interface State{
+ State hailed(Taxi taxi)
+ State drive(Taxi taxi)
+ State checkout(Taxi taxi)
}
class OffDutyLights{
+ State hailed(Taxi taxi)
+ State drive(Taxi taxi)
+ State checkout(Taxi taxi)
}
class OnDutyLight{
+ State hailed(Taxi taxi)
+ State drive(Taxi taxi)
+ State checkout(Taxi taxi)
}
class Arrived{
+ State hailed(Taxi taxi)
+ State drive(Taxi taxi)
+ State checkout(Taxi taxi)
}
Taxi *-right- State
State <|-- OffDutyLights
State <|-- OnDutyLight
State <|-- Arrived
@enduml
|
390ff3150a998fba1ef831a6a9a15e7fca5617aa | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/catalog/media/src/specificationModel_find.puml | fa67e394e48ed5e1b6f4d3552c54c33ebec55efb | [
"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 | 645 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
shadowing true
RoundCorner 0
LineColor DarkRed
ArrowColor DarkRed
ArrowThickness 1
}
class ProductSpecification_Common {
id*: string
href: string
name*: string
description: string
lastUpdate*: date-time
lifecycleStatus*: ProductSpecificationLifecycleStatus
}
class ProductSpecification_Find {
}
ProductSpecification_Common <|-- ProductSpecification_Find
enum ProductSpecificationLifecycleStatus {
pilotBeta
rejected
active
endOfSale
endOfSupport
obsolete
onHold
orderable
}
@enduml
|
eff4778a789e5c0597291b2d3fc9fa8ffe27f175 | 19e07b31481147dc0ec2dbc1396da885e3fbfbff | /docs/_chapters/java/util/concurrent/BlockingQueue.puml | ccb76b7c21d35fd41a2c36e8201f1ae5c13a80d5 | [] | no_license | PasseRR/Java-Example | b84211ddf36149a01f497fc23874ea82366dc79e | 64ad567343b786aec79286c49c1ed855d769b2dc | refs/heads/master | 2023-08-29T01:30:07.167919 | 2023-08-10T09:10:37 | 2023-08-10T09:10:37 | 104,037,342 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,084 | puml | @startuml
interface Queue{
+boolean add(E e)
+boolean offer(E e)
+E remove()
+E poll()
+E element()
+E peek()
}
abstract AbstractQueue
interface Deque {
+void addFirst(E e)
+void addLast(E e)
+boolean offerFirst(E e)
+boolean offerLast(E e)
+E removeFirst()
+E removeLast()
+E pollFirst()
+E pollLast()
+E getFirst()
+E getLast()
+E peekFirst()
+E peekLast()
+boolean removeFirstOccurrence(Object o)
+boolean removeLastOccurrence(Object o)
}
interface BlockingQueue{
+void put(E e)
+E take()
+boolean offer(E e, long timeout, TimeUnit unit)
+E poll(long timeout, TimeUnit unit)
+int drainTo(Collection<? super E> c)
+int drainTo(Collection<? super E> c, int maxElements)
}
class ArrayBlockingQueue
class DelayQueue
class LinkedBlockingQueue
class PriorityBlockingQueue
class SynchronousQueue
interface TransferQueue{
+boolean tryTransfer(E e)
+void transfer(E e)
+boolean tryTransfer(E e, long timeout, TimeUnit unit)
+boolean hasWaitingConsumer()
+int getWaitingConsumerCount()
}
class LinkedTransferQueue
interface BlockingDeque{
+void putFirst(E e)
+void putLast(E e)
+boolean offerFirst(E e, long timeout, TimeUnit unit)
+boolean offerLast(E e, long timeout, TimeUnit unit)
+E takeFirst()
+E takeLast()
+E pollFirst(long timeout, TimeUnit unit)
+E pollLast(long timeout, TimeUnit unit)
}
class LinkedBlockingDeque
Queue <|.. AbstractQueue
Queue <|-- Deque
Queue <|-- BlockingQueue
Queue <|-- TransferQueue
Deque <|-- BlockingDeque
BlockingQueue <|-- BlockingDeque
AbstractQueue <|-- LinkedBlockingDeque
BlockingDeque <|.. LinkedBlockingDeque
AbstractQueue <|-- ArrayBlockingQueue
BlockingQueue <|.. ArrayBlockingQueue
AbstractQueue <|-- DelayQueue
BlockingQueue <|.. DelayQueue
AbstractQueue <|-- LinkedBlockingQueue
BlockingQueue <|.. LinkedBlockingQueue
AbstractQueue <|-- PriorityBlockingQueue
BlockingQueue <|.. PriorityBlockingQueue
AbstractQueue <|-- SynchronousQueue
BlockingQueue <|.. SynchronousQueue
AbstractQueue <|-- LinkedTransferQueue
TransferQueue <|.. LinkedTransferQueue
@enduml |
618d424129f014888cc0be7d786723395b05391a | 169dfde296af00e767227be2b613f0d1b85430c4 | /plantuml/src/Koos.Services/GoalServices.puml | 78a127988454fca3e7df54c9d7110cce424e82ba | [
"MIT"
] | permissive | thild/koos | 2ab531346e3b2abe8480425320ae0f7857cc2c90 | 294e86b47a9d815d33bf807e1b30488356006aff | refs/heads/master | 2021-07-08T22:46:05.193444 | 2020-11-10T16:10:20 | 2020-11-10T16:10:20 | 211,979,334 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 203 | puml | @startuml
class GoalServices {
+ GoalServices(localStorageService:ILocalStorageService, dbFactory:IIndexedDbFactory)
}
class "ServiceBase`1"<T> {
}
"ServiceBase`1" "<Goal>" <|-- GoalServices
@enduml
|
7b9307a1d34a7ad7268bbc41253bd11f0bd357b9 | 638211f00ec9bc259759735fb9e9e6676d9abcb2 | /CarShowroom/CarShowroom.plantuml | 7c0115553bcd775e8147ece9dd612066b0dbdfe8 | [] | no_license | codeblooded-alchemist/CarShowroom | 95fed918d563c667ada9cfa380f79e087e83d4e2 | 0ad3922ffe4818fa68971f5b20c930eac4988fd7 | refs/heads/master | 2022-11-16T04:08:09.933218 | 2020-07-16T17:08:10 | 2020-07-16T17:08:10 | 154,523,792 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,044 | plantuml | @startuml
title __CARSHOWROOM's Class Diagram__\n
package controllers {
class AddController {
}
}
package controllers {
class CarTable {
}
}
package main {
class DBConnect {
}
}
package controllers {
class DeleteBuyController {
}
}
package controllers {
class LoginController {
}
}
package main {
class Main {
}
}
package controllers {
class ManagementController {
}
}
package controllers {
class RegisterController {
}
}
package controllers {
class RentController {
}
}
package controllers {
class ReturnController {
}
}
package controllers {
class SearchController {
}
}
package controllers {
class WelcomeController {
}
}
Main -up-|> Application
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
879c6a7c9926ca19b635002982772d6855c11b50 | 2b2acc58e16343190688ed460b26386980bb2b20 | /Documents/UC5/UC5_CD.puml | 482b00629f844b96ebb6ecf2f6ef3df2c59ac6f5 | [] | no_license | 1190452/LAPR3 | 0ca11285a3e85f93b5d687a0e10caef6f62a9577 | e641d35f6524fde900beb3683937fc697af3b325 | refs/heads/master | 2023-05-11T07:45:02.636516 | 2021-01-31T17:06:37 | 2021-01-31T17:06:37 | 372,571,407 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 430 | puml | @startuml
skinparam classAttributeIconSize 0
class RemoveCourierController {
+getCourierList()
+removeCourier(id)
}
class RemoveCourierUI {
}
class CourierHandler{
+courierList = getCourierList()
+removeCourier(id)
}
class DataBase{
+getCourierList()
+removeIfExists(id)
}
RemoveCourierUI ..> RemoveCourierController
RemoveCourierController ..> CourierHandler
CourierHandler ..> DataBase
@enduml |
96067aba1a2ca3045aabe15742e82a68d7e5d4ab | f2d8a11a5e0ecc06f51ae0e6730079eaa65cde00 | /doc/第二阶段课堂展示/ClassDiagram.backend.puml | 94667792fbc26d0229ee56475695d44506dd7bb6 | [] | no_license | oymisaki/software_engineering_project | d26286e524df4029c10aaca13a63a3921208d5af | c1b13c56206ca1f97e293f11a4af9ea0c81b794d | refs/heads/master | 2020-05-22T22:09:53.917280 | 2019-05-12T10:58:30 | 2019-05-12T10:58:30 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,770 | puml | @startuml ClassDiagram.backend
skinparam Dpi 200
skinparam DefaultFont {
Name Menlo
Size 13
Style bold
}
skinparam ClassAttributeIconSize 0
namespace Backend {
class Server {
__ private data __
- user_dict: dict
__ methods __
+ get_user(user_id: int): User
}
class User {
__ private data __
- user_id: int {readonly,frozen}
- session_id: int {readonly,frozen}
- user_info: UserInfo
- friend_info_list: FriendInfo[0..*]
- travel_group_list: TravelGroup[0..*]
__ methods __
+ reset_password(old_pswd_hash: byte[16..16], new_pswd_hash: byte[16..16]): int
+ add_friend(friend_user_id: int): int
+ remove_friend(friend_user_id: int): int
+ add_travel_group(): int
+ remove_travel_group(travel_group_id: int): int
.. getters ..
+ get_user_id(): int {query}
+ get_user_info(): UserInfo {query}
+ get_friend_info_list(): FriendInfo[0..*] {query}
+ get_travel_group_list(): TravelGroup[0..*] {query}
.. setters ..
+ set_friend_note(friend_user_id: int, friend_note: str): int
}
class UserInfoBase {
__ protected data __
# user_id: int {readonly,frozen}
# user_name: str
# email: str
# gender: Gender
# resident_city: City
__ methods __
.. getters ..
# get_user_id(): int {query}
# get_user_name(): str {query}
# get_email(): str {query}
# get_gender(): Gender {query}
# get_resident_city(): City {query}
}
class UserInfo {
__ private data __
- user_id: int {readonly,frozen}
- user_name: str
- email: str
- gender: Gender
- resident_city: City
__ methods __
.. getters ..
+ get_user_id(): int {query}
+ get_user_name(): str {query}
+ get_email(): str {query}
+ get_gender(): Gender {query}
+ get_resident_city(): City {query}
.. setters ..
+ set_user_name(user_name: str): int
+ set_email(email: str): int
+ set_gender(gender: Gender): int
+ set_resident_city(city_id: int): int
}
class FriendInfo {
__ private data __
- user_id: int {readonly,frozen}
- user_name: str {readonly,frozen}
- user_note: str
- email: str {readonly,frozen}
- gender: Gender {readonly,frozen}
- resident_city: City {readonly,frozen}
__ methods __
.. getters ..
+ get_user_id(): int {query}
+ get_user_name(): str {query}
+ get_user_note(): str {query}
+ get_email(): str {query}
+ get_gender(): Gender {query}
+ get_resident_city(): City {query}
.. setters ..
+ set_user_note(user_note: str): int
}
class TravelGroup {
__ private data __
- user_id: int {readonly,frozen}
- travel_group_id: int {readonly,frozen}
- travel_group_note: str
- travel_list: Travel[0..*]
__ methods __
+ add_travel(): int
+ remove_travel(travel_id: int): int
.. getters ..
+ get_user_id(): int
+ get_travel_group_id(): int
+ get_travel_group_note(): str
+ get_travel_list(): Travel[0..*]
.. setters ..
+ set_travel_group_note(travel_group_note: str): int
}
class Travel {
__ private data __
- user_id: int {readonly,frozen}
- travel_id: int {readonly,frozen}
- travel_group_id: int
- travel_info: TravelInfo
- company_user_id_list: int[0..*]
__ methods __
+ add_company(company_user_id: int): int
+ remove_company(company_user_id: int): int
+ move_to_travel_group(travel_group_id: int): int
+ move_to_new_travel_group(): int[2..2]
.. getters ..
+ get_user_id(): int {query}
+ get_travel_id(): int {query}
+ get_travel_group_id(): int {query}
+ get_travel_info(): TravelInfo {query}
+ get_company_user_id_list(): int[0..*] {query}
}
class TravelInfo {
__ private data __
- user_id: int {readonly,frozen}
- travel_id: int {readonly,frozen}
- travel_note: str
- city: City
- date_start: Date
- date_end: Date
- visibility: Visibility
__ methods __
.. getters ..
+ get_user_id(): int {query}
+ get_travel_id(): int {query}
+ get_travel_note(): str {query}
+ get_city(): City {query}
+ get_date_start(): Date {query}
+ get_date_end(): Date {query}
+ get_visibility(): Visibility {query}
.. setters ..
+ set_city(city_id: int): int
+ set_date_start(year: int, month: int, day: int): int
+ set_date_end(year: int, month: int, day: int): int
+ set_travel_note(travel_note: str): int
+ set_visibility(visibility: Visibility): int
}
class City {
__ private data __
- city_id: int {readonly,frozen}
- city_name: str {readonly,frozen}
- latitude: float {readonly,frozen}
- longitude: float {readonly,frozen}
__ methods __
.. getters ..
+ get_city_id(): int {query}
+ get_city_name(): str {query}
+ get_latitude(): float {query}
+ get_longitude(): float {query}
}
class Date {
__ private data __
- year: int
- month: int
- day: int
__ methods __
.. getters ..
+ get_date(): int[3..3] {query}
.. setters ..
+ set_date(year: int, month: int, day: int): int
}
Server "1" *-down- "0..*" User
User "1" *-down- "1" UserInfo
User "1" *-down- "0..*" FriendInfo
User "1" *-right- "0..*" TravelGroup : " "
UserInfo -down-|> UserInfoBase
FriendInfo -down-|> UserInfoBase
UserInfoBase "1" o-right- "1" City : " "
TravelGroup "1" *-right- "0..*" Travel : " "
Travel "1" *-down- "1" TravelInfo
User "0..*" -right-> "1" Travel : " "
FriendInfo "0..*" -up-> "0..*" Travel
TravelInfo "1" o-down- "1" City
TravelInfo "1" *-down- "2..2" Date
UserInfo -[hidden] FriendInfo
}
@enduml
|
cc99725ad8cad3e60550fbd4f623f2206fbd49a9 | 74cb674dc7b9c3f65f6ab08fc5ad3a43c3bf12d3 | /Offline 2/Problem 2/out/production/Problem 2/aesthetics/color/color.plantuml | 127c1f70f7fa50f3b1e38f3356c1a19d011162fa | [] | no_license | zarif98sjs/CSE-308-Software-Engineering | a9759bbee2ea0647eae2ea677d08741293a1cc14 | 515015a40c10d916d5089f11784b4ff75319fcbd | refs/heads/main | 2023-06-27T05:57:00.443594 | 2021-07-28T13:57:32 | 2021-07-28T13:57:32 | 344,690,362 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 571 | plantuml | @startuml
title __COLOR's Class Diagram__\n
namespace aesthetics {
namespace color {
class aesthetics.color.Blue {
+ toString()
}
}
}
namespace aesthetics {
namespace color {
interface aesthetics.color.Color {
{abstract} + toString()
}
}
}
aesthetics.color.Blue .up.|> aesthetics.color.Color
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
|
fcf275e402dff3e9908cbf131706f3b318980658 | 088856ec5790009dd9f9d3498a56fe679cfab2e8 | /src/puml/5/ucmitz/svg/class/bc-uploader/api_uploader_configs.puml | ddbf4042db68d3e7e34078a058539d97edf42271 | [] | no_license | baserproject/baserproject.github.io | 21f244348890652286969afa1fde27c5c4d9e4ad | 8d61cf720f833854e1a3c97136e22e75baea7bb0 | refs/heads/master | 2023-08-09T03:21:53.341423 | 2023-07-27T07:28:50 | 2023-07-27T07:28:50 | 228,826,353 | 0 | 12 | null | 2023-08-17T02:31:05 | 2019-12-18T11:31:51 | HTML | UTF-8 | PlantUML | false | false | 590 | puml | @startuml
skinparam handwritten true
skinparam backgroundColor white
hide circle
skinparam classAttributeIconSize 0
title アップローダープラグイン設定API
class Api\BcApiController {
}
class Api\UploaderConfigsController {
+ 取得:view()
+ 保存:edit()
}
class UploaderConfigsService {
+ UploaderConfigsTable
}
Api\UploaderConfigsController -up[#Black]-|> Api\BcApiController
Api\UploaderConfigsController -down[#Black]-> UploaderConfigsService
note "以下アップローダープラグイン設定と同じ" as note
UploaderConfigsService .. note
@enduml
|
4863f65168da0f832f445de98d14aa342a39157e | 8a7d4e7348e7cf75ea65d857f140d0454add6f84 | /docs/src/developer/mccscontroller/allocate.puml | 0435d430ad503157fc9ee21fb75a0a32da075dce | [
"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 | 348 | puml | @startuml
hide empty members
package ska_tmc_cdm.messages.mccscontroller {
package allocate.py <<Rectangle>> {
class AllocateRequest {
interface: str
subarray_id: int
subarray_beam_ids: List[int]
station_ids: List[List[int]]
channel_blocks: List[int]
}
}
}
@enduml
|
389adb9b6757153c466f392b6b8a09609f31c49d | e75e9ab0e9fd1a31e408256b7e00259524f54feb | /boot-pattern/src/main/java/com/ylkget/pattern/prototype/prototype.puml | df96b79e0eb4418c55f1d386dbb1567068a20ea0 | [
"MIT"
] | permissive | ylksty/spring-hub | 413a2ab35bd953f8037f4acc0ef975b5d2ab0970 | c948e30f205ae0b65f59ff274e49a3d1abcbb3d2 | refs/heads/main | 2023-04-04T01:36:29.742178 | 2021-04-17T15:16:33 | 2021-04-17T15:16:33 | 332,437,547 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 234 | puml | @startuml
'https://plantuml.com/class-diagram
class Object {
#native Object clone()
}
interface Cloneable
class Concreate extends Object implements Cloneable {
#Object clone()
}
class Client
Client ..> Concreate
@enduml |
4bf7f7d6e00685082cf89da8524c2c7372d71c23 | c2b6bfee8da36cc39de688e146ba107b74218b12 | /plantuml/objectmodel/details/meta.plantuml | f81a7ab1c66141d8cccbca1747c4de43cd5f2209 | [
"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 | 606 | plantuml | @startuml
class EndpointImplementation {
+String version
+String baseUrl
}
EndpointImplementation -{ Endpoint : endpoints >
EndpointImplementation -{ Scenario : scenarios >
EndpointImplementation -- "1..1" ProcessIdentifiers : processIdentifiers >
class Endpoint {
+String method
+String path
String eventType
+String status
Boolean supportsPaging
Integer maxPageSize
withoutPaging
withPaging
}
enum Scenario {
}
class ProcessIdentifiers {
+String operatorInformation
+String planning
+String booking
+String tripExecution
+String support
+String payment
+String general
}
@enduml
|
94d63d238fb4e5c1c6d64ad86777b01959b2a581 | d0e67f4c558e004e8683c27171dee19d1abd728c | /docs/diagrams/Logic.puml | f7acbe3b548a4e57510410180c14eef6274f8f7a | [] | no_license | AY2122S1-CS2113T-W11-2/tp | be2112ee824f124b8cc5309f180a42fe62ecac22 | db36dcd977fc530b7df460240a85174965bb35b2 | refs/heads/master | 2023-09-03T14:42:11.970127 | 2021-11-08T15:57:40 | 2021-11-08T15:57:40 | 411,513,280 | 0 | 4 | null | 2021-11-08T15:57:41 | 2021-09-29T03:10:48 | Java | UTF-8 | PlantUML | false | false | 647 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
package "Ui" <<Rectangle>> {
}
package "Model" <<Rectangle>> {
}
package "Storage" <<Rectangle>> {
}
package "Main" <<Rectangle>> {
}
package "Logic" <<Rectangle>> {
package "parser" <<Rectangle>> {
class Parser
}
package "commands" <<Rectangle>> {
class "{abstract}\n Command"
class XYZCommand
}
Main --> "1" Parser
"{abstract}\n Command" <|-- XYZCommand
Parser ..> XYZCommand : returns >
Main ..> "{abstract}\n Command": executes >
"{abstract}\n Command" ..> Ui
Parser ..> Model
"{abstract}\n Command" ..> Model
"{abstract}\n Command" ..> Storage
}
hide members
@enduml
|
ece39bd6c8e794493479914fdf1fcd9e2a77541d | 96874e0e3f9711f63256e620f7e83d6c24addc40 | /T4 - Sara/plantuml/CG_Privado/Privado_Matematica.puml | 35ad9416935b0b8fefbb8748ffc5ee3be8c761b5 | [] | no_license | sarahelenargthss/LudoOpenGL | d61bf926e3e5f14695cba7681b5704c037560dc3 | 7112a5c8facf2ee60a3b9d0a1161e03d23bb4422 | refs/heads/main | 2023-02-04T22:39:57.249310 | 2020-12-22T00:11:23 | 2020-12-22T00:11:23 | 323,476,001 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 441 | puml | @startuml
abstract class Privado_Matematica {
+ {static} DistanciaEuclidiana(pto1:Ponto4D, pto2:Ponto4D) : double
+ {static} DistanciaEuclidianaSemRaiz(pto1:Ponto4D, pto2:Ponto4D) : double
+ {static} ScanLineInterseccao(yi:double, y1:double, y2:double) : double
+ {static} ScanLineCalculaXi(x1:double, x2:double, ti:double) : double
+ {static} ScanLine(ptoClique:Ponto4D, ptoIni:Ponto4D, ptoFim:Ponto4D) : bool
}
@enduml
|
27b6d739aadac8444075997caa61b265b4595d35 | 46fd1573fc0ca60b3a29379c8d912078d9840691 | /study/learnjava/src/main/java/com/myzuji/study/gof23/builder/builder.puml | 61c2055c5501fc9f5ff854e2b39e68aa6d716cfd | [
"MIT"
] | permissive | mestarshine/myzuji | 35b7d447f77f26133adce99a7759891e441f1e75 | 4b7298a2cfaf7f852fe4f633bc51312d9f8d8450 | refs/heads/master | 2023-04-30T11:27:10.835117 | 2023-04-14T03:54:40 | 2023-04-14T03:54:40 | 237,580,467 | 0 | 0 | MIT | 2023-04-14T03:54:41 | 2020-02-01T07:43:39 | HTML | UTF-8 | PlantUML | false | false | 793 | puml | @startuml
class Product
class Builder {
buildPartA();
buildPartB();
buildPartC();
getResult();
}
class ConcreteBuilder {
buildPartA()
buildPartB()
buildPartC()
getResult()
}
class Director {
Builder builder
construct()
}
Director o-> Builder
Builder *- Product
Builder <|-- ConcreteBuilder
class House
note top of House: 产品
class HouseBuilder{
House house = new House()
void buildBasic()
void buildWalls()
void roofed()
House build()
}
class CommonHouse
class HighHouse
class HouseDirector{
HouseBuilder houseBuilder
}
class Client
HouseBuilder *- House
HouseDirector o- HouseBuilder
HouseBuilder <|-- CommonHouse
HouseBuilder <|-- HighHouse
HouseDirector <.. Client
Client .> HighHouse
Client .> CommonHouse
@enduml
|
85fab9db9df667e4982c4ea434a1a5b782a1c70c | 917f7524046ed086a97d0aeb39ff694bc707598c | /ProjetACL-master/ProjetACL/src/modele/modele.plantuml | e2d4ca3ca4cec18c1531128195949814e7b72a07 | [] | no_license | h-wb/s7-acl | ff5797db723abb1773e49cb3982f0ba59ac2ed5a | b04e4849944e28077fa8f461d36b431a51c9b9af | refs/heads/master | 2020-04-10T13:04:09.215000 | 2019-03-16T12:51:24 | 2019-03-16T12:51:24 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 590 | plantuml | @startuml
title __MODELE's Class Diagram__\n
package modele {
class Carte {
# valeur : int
# Carte()
+ getCategorie()
+ getValeur()
}
}
package modele {
abstract class Categorie {
# Categorie()
+ getCouleur()
{abstract} + toString()
}
}
Carte o-- Categorie : categ
Categorie o-- Couleur : couleur
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
32ba9bc962216a1ca574f633ff35426cd95c9316 | e99bd81bb700efb400c72f617797915bc3fdb85d | /diagrams/state.plantuml | 50c087b970455bfe71d501c6ebb19f82af0de68a | [
"MIT"
] | permissive | peteruhnak/pharo-tanks-game | 762aca1f261c2534b57cd56c1a874cb594284e31 | a7c1039dacf7802fcf364c01d1e31088473b4891 | refs/heads/master | 2021-01-13T11:24:14.153392 | 2016-12-21T16:24:52 | 2016-12-21T16:24:52 | 77,060,643 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,102 | plantuml | @startuml
package "State pattern" {
note "Many ways to implement switching modes,\n\
e.g. providng `firingMode` setter,\n\
having a cyclic list of modes, etc." as N1
package "Model" {
class ADPTurret {
+ switchMode()
+ singleMode()
+ doubleMode()
+ fireProjectiles() : ADPProjectiles[*]
}
note right of ADPTurret::switchMode
switchMode
firingMode nextMode
end note
note right of ADPTurret::fireProjectiles
fireProjectiles
^ firingMode fireProjectiles
end note
}
package "TurretStates" {
class ADPTurretMode {
{abstract}+ fireProjectiles() : ADPProjectiles[*]
{abstract}+ nextMode()
}
class ADPTurretSingleMode {
+fireProjectiles() : ADPProjectiles[*]
+textMode() // turret doubleMode
}
class ADPTurretDoubleMode {
- dispersion : Number
+ fireProjectiles() : ADPProjectiles[2]
+ dispersion:(aNumber : Number)
+ nextMode() // turret singleMode
}
ADPTurretMode <|-- ADPTurretSingleMode
ADPTurretMode <|-- ADPTurretDoubleMode
}
ADPTurret "turret" <-> "firingMode" ADPTurretMode
}
@enduml
|
f0141d91fe2d8e0aacb9439b43dde97a7486d026 | e23f2d00180eb551924d6af4bf5e3346554bbc78 | /demo/contruct.puml | 599d1143e6ed2393f9f45e555af8d312228fd474 | [
"Apache-2.0"
] | permissive | REBOOTERS/ARouter | c336a84bb180190a2b32cc1276d0b0eb3eebe789 | 5e8f7e5a9f59c60598dbb92609b2d3afac23ac5f | refs/heads/master | 2021-07-02T07:02:29.293954 | 2019-09-03T07:01:38 | 2020-12-06T08:54:24 | 192,709,305 | 1 | 0 | null | 2019-06-19T10:16:29 | 2019-06-19T10:16:28 | null | UTF-8 | PlantUML | false | false | 674 | puml | @startuml
package arouter_api #03A9F4 {
class ARouter
class _ARouter
class PostCard
class LogisticsCenter
class WareHouse
}
package arouter_annotaion #00BCD4 {
class RouteMeta
}
class ARouter {
getInstance()
}
class _ARouter {
init()
afterInit()
build() PostCard
navigation()
_navigation()
}
class LogisticsCenter {
init()
completion()
}
class PostCard {
navigation()
}
class WareHouse {
groupsIndex
routes
}
class RouteMeta {
}
_ARouter .right.> LogisticsCenter
_ARouter -up-> WareHouse
WareHouse -up--> RouteMeta
_ARouter <-right-> PostCard
ARouter .up.> _ARouter
PostCard --up--|> RouteMeta
@enduml |
16a2aa48c10a6bd4ca71d6a0689f4f5ea052f205 | 494374c841501dfdf838f01087ae3219bd060514 | /SOLIDLab/CPF/Client.puml | a72bdc83b25298088e6c23b407796fe3022cc787 | [] | no_license | 6cap-samuel/lab03-2106 | e67af77ddfe69304591e2a5c3691cc5062c314b5 | 1ab17d4b2d1b6e54ed8793e46a671652f9f837eb | refs/heads/master | 2020-04-28T21:03:41.331202 | 2019-03-14T09:04:20 | 2019-03-14T09:04:20 | 175,567,309 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 803 | puml | @startuml
package Models {
interface IClient
class Client {
+ ClientId : int <<get>> <<set>>
+ Name : string <<get>> <<set>>
+ Email : string <<get>> <<set>>
+ Cpf : string <<get>> <<set>>
+ DataRegister : DateTime <<get>> <<set>>
}
}
package Repository {
interface IRepository {
+ Add(T model) : string
}
class ClientRepository {
+ Add(T model) : string
}
}
package Email {
interface IEmailer {
+ sendEmail(string clientEmail) : string
}
class Emailer {
+ sendEmail(string clientEmail) : string
}
}
class ClientUtils {
+ validateClient(Client client) : boolean
}
IClient <|-down- Client: Inheritance
IRepository <|-down- ClientRepository: Inheritance
@enduml
|
35bc5385708d890a2f1d2428fa01ea57254c3067 | 35f575c997f226e4662ae214735e29186e93d1bf | /dependencies/Ogre/src/Docs/src/umldocs/TextureSource.puml | 36d753bbd7a59c4dd49e01491d5ed1c59f38703c | [
"MIT",
"MPL-1.1",
"CC-BY-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-free-unknown",
"ICU",
"CC-BY-3.0",
"CC-BY-NC-4.0",
"LicenseRef-scancode-unknown-license-reference",
"Zlib",
"LicenseRef-scancode-public-domain",
"CC-BY-4.0",
"Apache-2.0"
] | permissive | PTSD-3D/PTSD-Engine | b227aa52b9f948a7794c0075295e70d4a71c4353 | 2f523b8a7fd768c8e3cfd634e53d8c34b3b359ef | refs/heads/main | 2023-05-04T03:25:26.093194 | 2021-05-27T21:10:25 | 2021-05-27T21:10:25 | 345,047,719 | 3 | 0 | Apache-2.0 | 2021-05-27T21:10:26 | 2021-03-06T08:50:35 | C++ | UTF-8 | PlantUML | false | false | 820 | puml | @startuml
hide empty members
set namespaceSeparator none
class ExternalTextureSource {
+ setParameter()
}
class ExternalTextureSourceManager {
+ setExternalTextureSource()
+ setCurrentPlugin()
}
ExternalTextureSource -up-o ExternalTextureSourceManager
class ScriptTranslator {
* Set "video" plugin active
* Parse & Set parameters
* Create Texture
}
class Plugin_ffmpegVideoSystem {
+ dllStartPlugin()
}
object Plugins.cfg {
Plugin=Plugin_ffmpegVideoSystem
Plugin=..
Plugin=..
}
Plugins.cfg -- Plugin_ffmpegVideoSystem
Plugin_ffmpegVideoSystem -down-> ExternalTextureSourceManager
ScriptTranslator -down-> ExternalTextureSourceManager
object "Sample Material Script" as material {
pass
{
\tfilename test.mpeg
\tplay_mode play
\tsound_mode on
}
}
material -- ScriptTranslator
@enduml
|
b0b8d5c9fb3de31a1f7dc5298aa48d169f4bd1d6 | 56c20102c13a8954fc972d28603045a4f2f2087f | /src/main/java/com/liyi/design/pattern/create/factory/factorymethod/_FactoryMethod.puml | d0aa94e250e408224211221b888e9042124eedf1 | [] | no_license | liyigithub1114/design-pattern | 74234027be2b8e90fe5a50afca64d35e6035be1d | 3a5d9e2c96ec21c9903f34657827ade43140feec | refs/heads/master | 2022-11-21T21:29:20.902171 | 2020-07-22T03:28:02 | 2020-07-22T03:28:02 | 281,564,379 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 998 | puml | @startuml
abstract class Pizza{
String type;
abstract void prepare();
void cook();
void cut();
void box();
}
class BJGreekPizza{
void prepare();
setType(String type);
}
class BJCheesePizza{
void prepare();
setType(String type);
}
class LDGreekPizza{
void prepare();
setType(String type);
}
class LDCheesePizza{
void prepare();
setType(String type);
}
class OrderPizza{
OrderPizza(); 调用createPizza
createPizza(); 抽象方法,让子类创建其类型
}
class OrderPizzaBJ extends OrderPizza{
createPizza();子类创建
}
class OrderPizzaLD extends OrderPizza{
createPizza();子类创建
}
class OrderStore{
main();
}
Pizza <|-- BJGreekPizza
Pizza <|-- BJCheesePizza
Pizza <|-- LDGreekPizza
Pizza <|-- LDCheesePizza
BJGreekPizza <.. OrderPizzaBJ
BJCheesePizza <.. OrderPizzaBJ
LDGreekPizza <.. OrderPizzaLD
LDCheesePizza <.. OrderPizzaLD
OrderPizzaBJ <.. OrderStore
OrderPizzaLD <.. OrderStore
@enduml |
b52b56905398c925cda2e1cdf3c6043b518bcb80 | aba34cfac47f97ae538a3b136c415ea2f7a39d51 | /House.puml | d1ae6a3b2a34accbdef4fe3810b306afa0f8065e | [] | no_license | staffordrn/cit260-final-project | e69d17b8cc3428d13527b3df3d1e6155e168e0eb | eb587672540d80ad2a42c0637e28ec8f8c4c2d84 | refs/heads/master | 2020-09-16T06:45:23.765005 | 2019-12-18T20:50:37 | 2019-12-18T20:50:37 | 223,687,259 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 207 | puml | @startuml
class House {
-squareFeet: int {get, set}
-mortgage: double {get, set}
-rentalProfit: double {get, set}
-monthlyRent: double {get, set}
+MyHouse()
+MyHouse(sqft, price, rent)
}
@enduml |
540e3ab5e548b84c717bee0cb70731fbfd586c90 | 577fe9d2b7313325cd5410f1588f6272e6f1539e | /dist/Compute/AmazonVPC/elasticnetworkinterface/elasticnetworkinterface.puml | 2ddbd437482ba7aa43242f4f79a83a8ded2d51a4 | [
"MIT"
] | permissive | Ahbrown41/AWS-PlantUML | a12220ce987b7abc0b121279f6f71f4b4f05ce78 | 16a10b82f865f43a153b3c49de02bea7b6b3b65e | refs/heads/master | 2020-04-28T13:03:34.269079 | 2019-03-13T02:21:05 | 2019-03-13T02:21:05 | 175,296,307 | 0 | 1 | MIT | 2019-03-12T21:06:35 | 2019-03-12T21:06:35 | null | UTF-8 | PlantUML | false | false | 9,256 | puml | sprite $elasticnetworkinterface [62x64/16] {
000000000000000000000000CCCCCCCCCCCCCC000000000000000000000000
000000000000000000000CCCCCCCCCCCCCCCCCCCC000000000000000000000
000000000000000000CCCCCCCCCCCCCCCCCCCCCCCCCC000000000000000000
0000000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000000000000
00000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000000000
0000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000000000
000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000000
0000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000000
000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000
00000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000
0000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000
0000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000
000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000
00000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000
0000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000
0000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000
000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000
000CCCCCCCAAAAAACCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000
00CCCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00
00CCCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00
00CCCCCCCCAAA007CCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCCCCCCC00
0CCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCC0
0CCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCC0
0CCCCCCCCCCCC007CC0007888888888888888888888888880007CCCCCCCCC0
0CCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCC0
CCCCCCCCCCCCC007CC0008BB9888888889BB888888888AB90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
DCCCCCCCCCCCC007CC0008BB8777777779BB777777777AB90007CCCCCCCCCD
DCCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCCD
FCCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCCF
FCCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCCF
FDCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCDF
0ECCCCCCCCCCC007CC7770000000000000007777700000077778CCCCCCCCE0
0FCCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCCF0
0FDCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCDF0
0FECCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCEF0
00FCCCCCCCCCC007CCCCC877777777777778CCCCA777777ACCCCCCCCCCCF00
00FECCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEF00
00FFCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF00
000FECCCCC999999CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEF000
000FFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFF000
0000FFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF0000
0000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF0000
00000FFECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEFF00000
000000FFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFF000000
0000000FFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFF0000000
0000000FFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFF0000000
00000000FFFECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEFFF00000000
000000000FFFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFFF000000000
0000000000FFFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFFF0000000000
00000000000FFFFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFFFF00000000000
0000000000000FFFFEDCCCCCCCCCCCCCCCCCCCCCCCCDEFFFF0000000000000
00000000000000FFFFFFDCCCCCCCCCCCCCCCCCCCCDFFFFFF00000000000000
0000000000000000FFFFFFFEDCCCCCCCCCCCCDEFFFFFFF0000000000000000
000000000000000000FFFFFFFFFFEEEEEEFFFFFFFFFF000000000000000000
00000000000000000000FFFFFFFFFFFFFFFFFFFFFF00000000000000000000
000000000000000000000000FFFFFFFFFFFFFF000000000000000000000000
}
sprite $Compute_AmazonVPC_elasticnetworkinterface [62x64/16] {
000000000000000000000000CCCCCCCCCCCCCC000000000000000000000000
000000000000000000000CCCCCCCCCCCCCCCCCCCC000000000000000000000
000000000000000000CCCCCCCCCCCCCCCCCCCCCCCCCC000000000000000000
0000000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000000000000
00000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000000000
0000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000000000
000000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000000
0000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000000
000000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000000
00000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000000
0000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000
0000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000000
000000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000000
00000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00000
0000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000
0000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC0000
000CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000
000CCCCCCCAAAAAACCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC000
00CCCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00
00CCCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC00
00CCCCCCCCAAA007CCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCCCCCCC00
0CCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCC0
0CCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCC0
0CCCCCCCCCCCC007CC0007888888888888888888888888880007CCCCCCCCC0
0CCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCC0
CCCCCCCCCCCCC007CC0008BB9888888889BB888888888AB90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
CCCCCCCCCCCCC007CC0008BB7000000008BB0000000009B90007CCCCCCCCCC
DCCCCCCCCCCCC007CC0008BB8777777779BB777777777AB90007CCCCCCCCCD
DCCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCCD
FCCCCCCCCCCCC007CC0008BBBBBBBBBBBBBBBBBBBBBBBBB90007CCCCCCCCCF
FCCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCCF
FDCCCCCCCCCCC007CC0000000000000000000000000000000007CCCCCCCCDF
0ECCCCCCCCCCC007CC7770000000000000007777700000077778CCCCCCCCE0
0FCCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCCF0
0FDCCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCDF0
0FECCCCCCCCCC007CCCCC700000000000007CCCCA000000ACCCCCCCCCCCEF0
00FCCCCCCCCCC007CCCCC877777777777778CCCCA777777ACCCCCCCCCCCF00
00FECCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEF00
00FFCCCCCC700007CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF00
000FECCCCC999999CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEF000
000FFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFF000
0000FFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFF0000
0000FFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFF0000
00000FFECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEFF00000
000000FFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFF000000
0000000FFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFF0000000
0000000FFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFF0000000
00000000FFFECCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCEFFF00000000
000000000FFFFCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCFFFF000000000
0000000000FFFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFFF0000000000
00000000000FFFFFDCCCCCCCCCCCCCCCCCCCCCCCCCCCCDFFFFF00000000000
0000000000000FFFFEDCCCCCCCCCCCCCCCCCCCCCCCCDEFFFF0000000000000
00000000000000FFFFFFDCCCCCCCCCCCCCCCCCCCCDFFFFFF00000000000000
0000000000000000FFFFFFFEDCCCCCCCCCCCCDEFFFFFFF0000000000000000
000000000000000000FFFFFFFFFFEEEEEEFFFFFFFFFF000000000000000000
00000000000000000000FFFFFFFFFFFFFFFFFFFFFF00000000000000000000
000000000000000000000000FFFFFFFFFFFFFF000000000000000000000000
}
skinparam interface<<elasticnetworkinterface>> {
BackgroundColor #FEEDE2
BorderColor #F58536
}
skinparam interface<<Compute AmazonVPC\nelasticnetworkinterface>> {
BackgroundColor #FEEDE2
BorderColor #F58536
}
!define ELASTICNETWORKINTERFACE(alias) PUML_ENTITY(interface,#F58536,Compute_AmazonVPC_elasticnetworkinterface,alias,elasticnetworkinterface)
!definelong ELASTICNETWORKINTERFACE(alias,label,e_type="interface",e_color="#F58536",e_stereo="elasticnetworkinterface",e_sprite="Compute_AmazonVPC_elasticnetworkinterface")
PUML_ENTITY(e_type,e_color,e_sprite,label,alias,e_stereo)
!enddefinelong
!define COMPUTE_AMAZONVPC_ELASTICNETWORKINTERFACE(alias) PUML_ENTITY(interface,#F58536,Compute_AmazonVPC_elasticnetworkinterface,alias,Compute AmazonVPC\nelasticnetworkinterface)
!definelong COMPUTE_AMAZONVPC_ELASTICNETWORKINTERFACE(alias,label,e_type="interface",e_color="#F58536",e_stereo="Compute AmazonVPC\\nelasticnetworkinterface",e_sprite="Compute_AmazonVPC_elasticnetworkinterface")
PUML_ENTITY(e_type,e_color,e_sprite,label,alias,e_stereo)
!enddefinelong
|
00beea3d04faecefb6fb08fdf25bbc4bf75051ec | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Editor/TMP_ResourcesLoader.puml | 59d85fc659cc9f1e7f41f020c74596e4e309856c | [] | 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 | 132 | puml | @startuml
class TMP_ResourcesLoader {
+ {static} LoadTextMeshProResources() : void
{static} TMP_ResourcesLoader()
}
@enduml
|
571c4b0efbf0a6033cf37a7ba3fb4e1ee7fa76d3 | 605cac101260b1b451322b94580c7dc340bea17a | /malokhvii-eduard/malokhvii05/doc/plantuml/ua/khpi/oop/malokhvii05/util/algorithms/sort/GnomeSort.puml | 4fa8b657b6859e7b380d55a7ac43982db8bfbad6 | [
"MIT"
] | permissive | P-Kalin/kit26a | fb229a10ad20488eacbd0bd573c45c1c4f057413 | 2904ab619ee48d5d781fa3d531c95643d4d4e17a | refs/heads/master | 2021-08-30T06:07:46.806421 | 2017-12-16T09:56:41 | 2017-12-16T09:56:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 123 | puml | @startuml
class GnomeSort<T> {
+GnomeSort(Comparator<T>)
+sort(Array<T>): void
}
@enduml
|
47e229f14b8cdf068dfc88e173af19c55cc3e335 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Events/Signals/SignalAsset.puml | 5cd5b4a160e13866fb66995feecaacf0fe512c43 | [] | 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 | 96 | puml | @startuml
class SignalAsset {
OnEnable() : void
}
ScriptableObject <|-- SignalAsset
@enduml
|
578d624fb08b3e7868f231d7ac605180ad996381 | f00fdaecb9a63f30c2e78ca4f7f1011ba1425a66 | /src/Factories/Factories.plantuml | c4bbdfbe0fb490d7d85edabbcc6d09fdc362bdf4 | [] | no_license | Projectgroep-HHS-2019/Hotelsimulation2019 | efd34cd9b9335b1b219af91d5b7ca9b56bee63ab | 66575addd0233aaae6ddf37a5fd33afa671f1ce0 | refs/heads/master | 2020-07-25T02:03:59.653273 | 2019-12-20T09:17:20 | 2019-12-20T09:17:20 | 208,125,062 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 461 | plantuml | @startuml
title __FACTORIES's Class Diagram__\n
namespace Factories {
class Factories.AreaFactory {
{static} + createArea()
}
}
namespace Factories {
class Factories.PersonFactory {
{static} + createPerson()
}
}
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
|
69b89f1f10570c7f0b6a6c248c7ee2111793d9be | d8f0a77020710502bf8c65131319d92efe77d7b6 | /test3/object03.puml | 2aa1fbea34ed75eb0b9c91b4653d2d0fca0c58ab | [] | no_license | WwhKiller/is_analysis | c52c708d176d607451c208dfed03d6699e01dcfc | 530ad229920a5e7c914a4dfd7ba7a06b15eb56ef | refs/heads/master | 2020-04-25T02:21:27.777118 | 2019-05-05T07:27:56 | 2019-05-05T07:27:56 | 172,436,323 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 117 | puml | @startuml
class 读者{
姓名 : 王五
ID : 22-123
性别 : 男
可借数量:5
总共借阅书数 : 10
}
@enduml |
b4ecfde5634e6982ff02e56731c8f3d84ff4b3eb | 2060d9177e8c16b1d5259477f6337437d7c17f41 | /P2/resources/subdomain_deco.puml | 14c2649074893924da417bbee017ccbe84e38822 | [] | no_license | diogoc21/ISEP.Master.ARQSOFT_2019 | 664a5bdbfde383c910e844caadf1079468f3c087 | e76a7a2cca6b247605d2b2316fd14d65244f1e3c | refs/heads/master | 2022-04-08T09:32:58.983176 | 2019-12-19T19:21:48 | 2019-12-19T19:21:48 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,932 | puml | @startuml DomainModelDiagram
package "Inventory <<Bounded Context>>" #DDDDDD {
class Inventory <<Entity>> <<Aggregate Root>> {
-ID : long
-Description : string
}
}
package "POS <<Bounded Context>>" #DDDDDD {
class POS <<Entity>> {
-ID : long
-Description : string
-location : string
}
}
package "User <<Bounded Context>>" #DDDDDD {
class User <<Entity>>{
-ID : long
-Description : string
}
}
Inventory "U" .. "D" POS : Customer Supplier
package "MealItem <<Bounded Context>>" #DDDDDD {
class MealItem <<Entity>> <<Aggregate Root>> {
-ID : long
-ProductionDate : datetime
-ExpirationDate : datetime
-MealIdentificationNumberStatic : string
-MealID : long
}
object InventoryID <<Value Object>>
object MealID <<Value Object>>
MealItem -- InventoryID
MealItem -- MealID
Inventory "D" -- "U" MealItem : Customer Supplier
}
package "Meal <<Bounded Context>>" #DDDDDD {
class Meal <<Entity>> <<Aggregate Root>> {
-ID : long
-Description : string
-AlergicComponents : List<AlergicComponent>
-Ingredients : List<Ingredient>
-MealDescriptors : List<MealDescriptor>
+void AddAlergicComponent()
+void AddIngredient()
+void AddMealDescriptor()
+void RemoveAlergicComponent()
+void RemoveIngredient()
+void RemoveMealDescriptor()
}
class Ingredient <<Entity>> {
-ID : long
-Description : string
}
class AlergicComponent <<Entity>> {
-ID : long
-Description : string
}
class MealDescriptor <<Entity>> {
-ID : long
-Description : string
-Name : string
}
object MealIdentificationNumber <<ValueObject>> {
-MealIdentificationNumberPrefix : string
+bool ChangeMealIdentificationNumberGen()
+string GenerateMealIdentificationNumber()
}
object Meal.MealID <<Value Object>>
Meal "0..*" -- "0..*" AlergicComponent
Meal "1" -- "0..*" MealDescriptor
Meal "0..*" -- "1..*" Ingredient
Meal "1" -- "1" MealIdentificationNumber
Meal "1" -- "1" Meal.MealID
}
Meal "U" .. "D" MealItem : Customer Supplier
package "Log <<Bounded Context>>" #DDDDDD {
interface WriteLog
class EventLog {
-ID : long
-Description : string
-UserTypeID : User
-Action : EventAction
-Class : T
-Date : DateTime
+WriteLog()
}
enum EventAction {
- Add
- Create
- Update
- Delete
}
class UserType {
-ID : long
-Description : string
}
object UserTypeID <<ValueObject>>
WriteLog <|.. EventLog
EventLog -- UserTypeID
EventLog -- EventAction
EventLog -- UserType
EventLog "U" -- "D" User : Conformist
}
@enduml
|
ed28e0dd5aa0f6fbff532d6edfcafa0f9eb57912 | fe637e269d77235f784ef2b1247ec671a2758cff | /cart-service/src/main/java/com/groupjn/cartservice/entity/entity.plantuml | 1714134be2298081b666a604cab2811a7a6604b7 | [] | no_license | Software-Architecture-CS5722-Group/E-commerce | 69ae28d633d69d72e3f5bda04cecb746d6d53030 | 7defdcb8bb16f28bc57d2d23db02544253304084 | refs/heads/main | 2023-07-17T09:05:40.188643 | 2021-05-24T23:12:35 | 2021-05-24T23:12:35 | 363,711,507 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 862 | plantuml | @startuml
title __ENTITY's Class Diagram__\n
namespace com.groupjn.cartservice {
namespace entity {
class com.groupjn.cartservice.entity.Cart {
- id : int
- price : double
- product_id : int
- quantity : int
- user_id : int
+ Cart()
+ equals()
+ getId()
+ getPrice()
+ getProduct_id()
+ getQuantity()
+ getUser_id()
+ hashCode()
+ setId()
+ setPrice()
+ setProduct_id()
+ setQuantity()
+ setUser_id()
+ toString()
# canEqual()
}
}
}
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
|
9b5e1791572b129618698c9795fb44ecdc9c292a | 1e4af347653c6becd13e8f24a2d22d6244926c9e | /src/main/java/com/dekinci/eden/model/animal/animal.plantuml | 8366e0923a4e5e19c05765554786423d13099b58 | [] | no_license | NeuroTeam/CyberEden | e0a686555f6871cfdd7af314c81e809b7620afc2 | 0b2bdcb3e9378b70e0905f3cf1bfe2f8f13be578 | refs/heads/master | 2020-03-09T11:33:52.160781 | 2018-06-01T22:32:21 | 2018-06-01T22:32:21 | 128,764,470 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,290 | plantuml | @startuml
title __ANIMAL's Class Diagram__\n
package com.dekinci.eden {
package com.dekinci.eden.model {
package com.dekinci.eden.model.animal {
interface Animal {
{abstract} + getSight()
{abstract} + getSpecies()
{abstract} + isVegetarian()
{abstract} + eats()
{abstract} + die()
{abstract} + decHealth()
{abstract} + getHp()
{abstract} + alive()
{abstract} + tick()
{abstract} + getAge()
{abstract} + incSatiety()
{abstract} + getAmountOfBabies()
{abstract} + makeDecision()
{abstract} + breed()
{abstract} + getGenotype()
}
}
}
}
package com.dekinci.eden {
package com.dekinci.eden.model {
package com.dekinci.eden.model.animal {
class AnimalTypes {
{static} + WOLF : byte
{static} + HARE : byte
}
}
}
}
package com.dekinci.eden {
package com.dekinci.eden.model {
package com.dekinci.eden.model.animal {
class Decisions {
{static} + DECISIONS_AMOUNT : int
{static} + MOVE_TS : byte
{static} + MOVE_TR : byte
{static} + MOVE_RS : byte
{static} + MOVE_RB : byte
{static} + MOVE_BS : byte
{static} + MOVE_BL : byte
{static} + MOVE_LS : byte
{static} + MOVE_LT : byte
{static} + FEED : byte
{static} + BREED : byte
{static} + DO_NOTHING : byte
}
}
}
}
package com.dekinci.eden {
package com.dekinci.eden.model {
package com.dekinci.eden.model.animal {
class Hare {
- satiety : int
- hp : int
- age : int
+ Hare()
- Hare()
+ makeDecision()
+ getAge()
+ tick()
+ getAmountOfBabies()
+ getSight()
+ getSpecies()
+ isVegetarian()
+ eats()
+ die()
+ decHealth()
+ getHp()
+ alive()
+ incSatiety()
+ breed()
+ getGenotype()
+ toString()
}
}
}
}
package com.dekinci.eden {
package com.dekinci.eden.model {
package com.dekinci.eden.model.animal {
class Wolf {
- satiety : int
- hp : int
- age : int
+ Wolf()
- Wolf()
+ getSpecies()
+ isVegetarian()
+ eats()
+ die()
+ decHealth()
+ getHp()
+ alive()
+ tick()
+ getAge()
+ incSatiety()
+ makeDecision()
+ getGenotype()
+ breed()
+ getAmountOfBabies()
+ getSight()
+ toString()
}
}
}
}
Hare -up-|> Animal
Hare o-- Brain : brain
Wolf -up-|> Animal
Wolf o-- Brain : brain
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
|
9c1e11ba37312c0c1dd4cee6de66b23ea632547d | 279cc8e145ee24a54642cf65fd211ec86119d904 | /Structure/UML/plantUML/screens.plantuml | 68af5a38f0fdf40234bbe3fb17cab7afdff6842f | [] | no_license | inf112-v21/Snokarane | df3f335d043aae1949cd25cb240987df1aeef9ac | e9efa51936ec6ee65a189003938d196e70b1a4f8 | refs/heads/master | 2023-04-13T03:20:26.577259 | 2021-04-27T11:18:07 | 2021-04-27T11:18:07 | 335,426,577 | 1 | 0 | null | 2021-04-21T11:14:01 | 2021-02-02T21:21:40 | Java | UTF-8 | PlantUML | false | false | 8,130 | plantuml | @startuml
title __SCREENS's Class Diagram__\n
namespace inf112.skeleton.app {
namespace libgdx {
namespace screens {
class inf112.skeleton.app.libgdx.screens.CharacterCustomizationScreen {
~ blueSlider : Slider
~ characterPreviewImage : Image
~ defaultPlayerTexture : Texture
~ gdxH : float
~ gdxW : float
~ greenSlider : Slider
~ redSlider : Slider
~ stage : Stage
~ useLargeCheckBox : CheckBox
+ CharacterCustomizationScreen()
+ hide()
+ loadUIIntractables()
+ loadUIVisuals()
+ render()
+ show()
+ startScreen()
- updatePreviewImage()
}
}
}
}
namespace inf112.skeleton.app {
namespace libgdx {
namespace screens {
class inf112.skeleton.app.libgdx.screens.GameScreen {
+ flagPositions : List<Flag>
~ clientResponseGraceTime : int
~ networkChatBacklogSize : int
- cardTemplates : HashMap<CardType, TextureRegion>
- doubleHorizontal : Cell
- doubleVertical : Cell
- duplicates : HashMap<CardType, Integer>
- playerLayer : TiledMapTileLayer
- singleHorizontal : Cell
- singleVertical : Cell
- stage : Stage
+ GameScreen()
+ create()
+ dispose()
+ generateClickableCard()
+ getDuplicateCardsInHand()
+ hide()
+ laserToTile()
+ loadLasers()
+ loadMapLayers()
+ loadTextures()
+ pause()
+ render()
+ resetCardChoices()
+ resize()
+ resume()
+ show()
+ startGame()
+ translatePlayerLayer()
+ updateMap()
- clearNonInteractiveStageElements()
- executeChatCommand()
- getBoardElementPositionsFromLayer()
- getFlagPositionsFromLayer()
- getStartPositions()
- initializeChatObjects()
- loadActorsInOrder()
- loadBackButton()
- loadCardBackground()
- loadCardDeck()
- loadCardTextures()
- loadChatInputBox()
- loadPlayerList()
- loadPowerDown()
- loadResetCardChoicesButton()
- loadSendCardsButton()
- pollUiUpdates()
- resetCellRotation()
- rotateCellsAccordingToDirection()
- sendCardsIfPossible()
- setBeltInformation()
- setLaserDirection()
- setWallDirections()
- showChatHelpDialogue()
- startClient()
- startHost()
- updateChat()
}
}
}
}
namespace inf112.skeleton.app {
namespace libgdx {
namespace screens {
interface inf112.skeleton.app.libgdx.screens.IUiScreen {
{abstract} + loadUIIntractables()
{abstract} + loadUIVisuals()
{abstract} + startScreen()
}
}
}
}
namespace inf112.skeleton.app {
namespace libgdx {
namespace screens {
class inf112.skeleton.app.libgdx.screens.MenuScreen {
~ gdxH : float
~ gdxW : float
~ stage : Stage
+ MenuScreen()
+ hide()
+ loadUIIntractables()
+ loadUIVisuals()
+ render()
+ show()
+ startScreen()
}
}
}
}
namespace inf112.skeleton.app {
namespace libgdx {
namespace screens {
class inf112.skeleton.app.libgdx.screens.SelectRoleScreen {
~ gdxH : float
~ gdxW : float
~ stage : Stage
- IPInputField : TextField
- IP_address : String
- nameInputField : TextArea
+ SelectRoleScreen()
+ hide()
+ loadUIIntractables()
+ loadUIVisuals()
+ render()
+ show()
+ startScreen()
- loadTextButtons()
- loadTextFields()
}
}
}
}
namespace inf112.skeleton.app {
namespace libgdx {
namespace screens {
class inf112.skeleton.app.libgdx.screens.VictoryScreen {
~ stage : Stage
+ VictoryScreen()
+ hide()
+ loadUIIntractables()
+ loadUIVisuals()
+ render()
+ show()
+ startScreen()
}
}
}
}
namespace inf112.skeleton.app {
namespace libgdx {
namespace screens {
class inf112.skeleton.app.libgdx.screens.WaitingRoomScreen {
~ connectionIndicatorLabel : Label
~ gdxH : float
~ gdxW : float
~ host : boolean
~ ip : String
~ localAvatars : int
~ name : String
~ stage : Stage
+ WaitingRoomScreen()
+ hide()
+ loadUIIntractables()
+ loadUIVisuals()
+ render()
+ show()
+ startScreen()
- loadClientInteractables()
- loadHostInteractables()
- loadPlayerAvatars()
}
}
}
}
inf112.skeleton.app.libgdx.screens.CharacterCustomizationScreen .up.|> inf112.skeleton.app.libgdx.screens.IUiScreen
inf112.skeleton.app.libgdx.screens.CharacterCustomizationScreen -up-|> com.badlogic.gdx.ScreenAdapter
inf112.skeleton.app.libgdx.screens.CharacterCustomizationScreen o-- inf112.skeleton.app.libgdx.RoboGame : game
inf112.skeleton.app.libgdx.screens.GameScreen -up-|> com.badlogic.gdx.ScreenAdapter
inf112.skeleton.app.libgdx.screens.GameScreen o-- inf112.skeleton.app.ui.chat.managers.Chatter : chat
inf112.skeleton.app.libgdx.screens.GameScreen o-- inf112.skeleton.app.game.GamePlayer : gamePlayer
inf112.skeleton.app.libgdx.screens.GameScreen o-- inf112.skeleton.app.libgdx.Map : map
inf112.skeleton.app.libgdx.screens.GameScreen o-- inf112.skeleton.app.network.Network : network
inf112.skeleton.app.libgdx.screens.GameScreen o-- inf112.skeleton.app.libgdx.RoboGame : game
inf112.skeleton.app.libgdx.screens.MenuScreen .up.|> inf112.skeleton.app.libgdx.screens.IUiScreen
inf112.skeleton.app.libgdx.screens.MenuScreen -up-|> com.badlogic.gdx.ScreenAdapter
inf112.skeleton.app.libgdx.screens.MenuScreen o-- inf112.skeleton.app.libgdx.RoboGame : game
inf112.skeleton.app.libgdx.screens.SelectRoleScreen .up.|> inf112.skeleton.app.libgdx.screens.IUiScreen
inf112.skeleton.app.libgdx.screens.SelectRoleScreen -up-|> com.badlogic.gdx.ScreenAdapter
inf112.skeleton.app.libgdx.screens.SelectRoleScreen o-- inf112.skeleton.app.libgdx.RoboGame : game
inf112.skeleton.app.libgdx.screens.VictoryScreen .up.|> inf112.skeleton.app.libgdx.screens.IUiScreen
inf112.skeleton.app.libgdx.screens.VictoryScreen -up-|> com.badlogic.gdx.ScreenAdapter
inf112.skeleton.app.libgdx.screens.VictoryScreen o-- inf112.skeleton.app.network.Network : network
inf112.skeleton.app.libgdx.screens.VictoryScreen o-- inf112.skeleton.app.game.objects.PlayerToken : winner
inf112.skeleton.app.libgdx.screens.VictoryScreen o-- inf112.skeleton.app.libgdx.RoboGame : game
inf112.skeleton.app.libgdx.screens.WaitingRoomScreen .up.|> inf112.skeleton.app.libgdx.screens.IUiScreen
inf112.skeleton.app.libgdx.screens.WaitingRoomScreen -up-|> com.badlogic.gdx.ScreenAdapter
inf112.skeleton.app.libgdx.screens.WaitingRoomScreen o-- inf112.skeleton.app.ui.avatars.PlayerAvatar : avatar
inf112.skeleton.app.libgdx.screens.WaitingRoomScreen o-- inf112.skeleton.app.network.Network : network
inf112.skeleton.app.libgdx.screens.WaitingRoomScreen o-- inf112.skeleton.app.libgdx.RoboGame : game
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
|
7aa17f3c1806f87e38820dd28a66789816b5f18c | 4929efb60ac03904f437de48c4e737a2a72cfd64 | /DomainModel.puml | 9c72b7a2bc485f95053b7b4285d5bc8e72d8d403 | [] | no_license | gio8tisu/arqsoft-board-games | 47c2ad6ceeb3fde7bfcd04f1060455decda5ded2 | d2be8ee8d83edcc293f641349c0834eb971a0d61 | refs/heads/master | 2022-10-31T08:47:59.216973 | 2020-06-17T20:42:05 | 2020-06-17T20:42:05 | 272,980,240 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 527 | puml | Game
Board
Cell
Player
Turn
Piece
Token
ThirdParty
Coordinate
@startuml
abstract class Piece {
bool isValidMove(Coordinate origin, Coordinate destination)
}
class Board {
Cell getCell(Coordinate c)
}
class Turn {
void makeMovement(Player p, Coordinate origin, Coordinate destination)
}
ThirdParty --> "*" Token
Player --> "*" Token
Player <--> "1..*" Piece
Player ..> Turn : uses
Piece "*" <--> "1" Cell
Cell ..> Coordinate
Cell "1..*" <--o Board
Board ..> Coordinate
Board : Cell getCell(Coordinate c)
@enduml |
5fc79c2546a48894f52e497f2ec0df3deb86af43 | 319488df94b7f979aaa11c71088151b868a4bd8a | /demoDIPPizzaManager/src/com/example/dip/demodippizzamanager/ingredients/ingredients.plantuml | 255677ba7d1c00c37d4f76601bd53d790ce0ba78 | [] | no_license | ccabrejo20/SOLIDDemos | 0864ad080a1f35f492845d1cc78ad80b0583075e | 8dbb918f710f62d520eda00146a0b1d54a02b244 | refs/heads/master | 2022-12-07T02:28:40.710654 | 2020-08-08T03:47:56 | 2020-08-08T03:47:56 | 285,679,469 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,064 | plantuml | @startuml
title __INGREDIENTS's Class Diagram__\n
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.BlackOlives {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
interface com.example.dip.demodippizzamanager.ingredients.Cheese {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
interface com.example.dip.demodippizzamanager.ingredients.Clams {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
interface com.example.dip.demodippizzamanager.ingredients.Dough {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.Eggplant {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.FreshClams {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.FrozenClams {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.Garlic {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.MarinaraSauce {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.MozzarellaCheese {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.Mushroom {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.Onion {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
interface com.example.dip.demodippizzamanager.ingredients.Pepperoni {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.PlumTomatoSauce {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.RedPepper {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.ReggianoCheese {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
interface com.example.dip.demodippizzamanager.ingredients.Sauce {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.SlicedPepperoni {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.Spinach {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.ThickCrustDough {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
class com.example.dip.demodippizzamanager.ingredients.ThinCrustDough {
}
}
}
namespace com.example.dip.demodippizzamanager {
namespace ingredients {
interface com.example.dip.demodippizzamanager.ingredients.Veggies {
}
}
}
com.example.dip.demodippizzamanager.ingredients.BlackOlives .up.|> com.example.dip.demodippizzamanager.ingredients.Veggies
com.example.dip.demodippizzamanager.ingredients.Eggplant .up.|> com.example.dip.demodippizzamanager.ingredients.Veggies
com.example.dip.demodippizzamanager.ingredients.FreshClams .up.|> com.example.dip.demodippizzamanager.ingredients.Clams
com.example.dip.demodippizzamanager.ingredients.FrozenClams .up.|> com.example.dip.demodippizzamanager.ingredients.Clams
com.example.dip.demodippizzamanager.ingredients.Garlic .up.|> com.example.dip.demodippizzamanager.ingredients.Veggies
com.example.dip.demodippizzamanager.ingredients.MarinaraSauce .up.|> com.example.dip.demodippizzamanager.ingredients.Sauce
com.example.dip.demodippizzamanager.ingredients.MozzarellaCheese .up.|> com.example.dip.demodippizzamanager.ingredients.Cheese
com.example.dip.demodippizzamanager.ingredients.Mushroom .up.|> com.example.dip.demodippizzamanager.ingredients.Veggies
com.example.dip.demodippizzamanager.ingredients.Onion .up.|> com.example.dip.demodippizzamanager.ingredients.Veggies
com.example.dip.demodippizzamanager.ingredients.PlumTomatoSauce .up.|> com.example.dip.demodippizzamanager.ingredients.Sauce
com.example.dip.demodippizzamanager.ingredients.RedPepper .up.|> com.example.dip.demodippizzamanager.ingredients.Veggies
com.example.dip.demodippizzamanager.ingredients.ReggianoCheese .up.|> com.example.dip.demodippizzamanager.ingredients.Cheese
com.example.dip.demodippizzamanager.ingredients.SlicedPepperoni .up.|> com.example.dip.demodippizzamanager.ingredients.Pepperoni
com.example.dip.demodippizzamanager.ingredients.Spinach .up.|> com.example.dip.demodippizzamanager.ingredients.Veggies
com.example.dip.demodippizzamanager.ingredients.ThickCrustDough .up.|> com.example.dip.demodippizzamanager.ingredients.Dough
com.example.dip.demodippizzamanager.ingredients.ThinCrustDough .up.|> com.example.dip.demodippizzamanager.ingredients.Dough
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
|
47bbb10ccf2883dd93b36a4ee28fbbc8ecf53115 | 4a1f5b84afd125cec67d3ad5f523078ee7e3cc6f | /Singleton/docs/src/singleton.puml | 91b281d8312a27022d1404329b7662e0420dc393 | [] | no_license | markoweb/excellence-sharing | 0ffdb4cc9794372483a56e82a4405687df2cf30e | af3cd6116fe7697fac060231dcbb82499e97202c | refs/heads/master | 2021-08-31T13:10:42.251650 | 2017-12-21T11:46:22 | 2017-12-21T11:46:22 | 114,209,612 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 198 | puml | @startuml
class Singleton {
- {static} instance: Singleton
- attribute1
- attribute2
# Singleton()
+ {static} getInstance(): Singleton
+ method1()
+ method2()
}
@enduml |
c3e4ca11cff79967e495b304dc758815ae2f20da | b419ce172cc07d8edb9a6adadc7af0b641b7c131 | /Circulo.puml | 7cf3acf9b0c9ad0e7900decccce401d40833b801 | [] | no_license | meschoyez/111mil-2020-PrimerosObjetos | 6bc76c66f041d49817b03dd375472891183a6445 | 942aa117684efd257a8f534a31dfb5baad3b1515 | refs/heads/master | 2022-12-12T21:07:12.840581 | 2020-09-11T14:17:04 | 2020-09-11T14:17:04 | 286,500,237 | 2 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 279 | puml | @startuml Circulo
skinparam ClassAttributeIconSize 0
hide circle
class Circulo {
- double radio
- double x
- double y
+ Circulo (double radio)
+ setRadio (double radio)
+ double getRadio ()
+ actualizarPosicion ()
+ determinarColor ()
}
@enduml |
377855cf6ae460d6f4dc431976edb7cd98234a41 | 95db096f36828b7124792f7ce52368a58783e9e9 | /docs/javadocs/soen6441riskgame/models/serializers/SerializableGame.puml | 57e3cf0d1626ecbd0fe652c8d8fd8bc1b66ab224 | [] | 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 | 3,159 | puml | @startuml
skinparam svgLinkTarget _parent
skinparam linetype ortho
set namespaceSeparator none
class "<b><size:14>SerializableGame</b>\n<size:10>soen6441riskgame.models.serializers" as soen6441riskgame.models.serializers.SerializableGame [[../../../soen6441riskgame/models/serializers/SerializableGame.html{soen6441riskgame.models.serializers.SerializableGame}]] {
-List<Country> countries
-List<Continent> continents
-List<Player> players
-int borders
-Card cards
-GameBoardPlaying gameBoardPlaying
+SerializableGame()
+String serialize()
}
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.serializers.SerializableGame --> "countries *" soen6441riskgame.models.Country
class "<b><size:14>Continent</b>\n<size:10>soen6441riskgame.models" as soen6441riskgame.models.Continent [[../../../soen6441riskgame/models/Continent.html{soen6441riskgame.models.Continent}]] #white {
}
hide soen6441riskgame.models.Continent fields
hide soen6441riskgame.models.Continent methods
soen6441riskgame.models.serializers.SerializableGame --> "continents *" soen6441riskgame.models.Continent
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.serializers.SerializableGame --> "players *" soen6441riskgame.models.Player
class "<b><size:14>Card</b>\n<size:10>soen6441riskgame.models" as soen6441riskgame.models.Card [[../../../soen6441riskgame/models/Card.html{soen6441riskgame.models.Card}]] #white {
}
hide soen6441riskgame.models.Card fields
hide soen6441riskgame.models.Card methods
soen6441riskgame.models.serializers.SerializableGame --> "cards" soen6441riskgame.models.Card
class "<b><size:14>GameBoardPlaying</b>\n<size:10>soen6441riskgame.singleton" as soen6441riskgame.singleton.GameBoardPlaying [[../../../soen6441riskgame/singleton/GameBoardPlaying.html{soen6441riskgame.singleton.GameBoardPlaying}]] #white {
}
hide soen6441riskgame.singleton.GameBoardPlaying fields
hide soen6441riskgame.singleton.GameBoardPlaying methods
soen6441riskgame.models.serializers.SerializableGame --> "gameBoardPlaying" soen6441riskgame.singleton.GameBoardPlaying
class "<b><size:14>SerializableGame.Builder</b>\n<size:10>soen6441riskgame.models.serializers" as soen6441riskgame.models.serializers.SerializableGame.Builder [[../../../soen6441riskgame/models/serializers/SerializableGame.Builder.html{soen6441riskgame.models.serializers.SerializableGame.Builder}]] {
}
hide soen6441riskgame.models.serializers.SerializableGame.Builder fields
hide soen6441riskgame.models.serializers.SerializableGame.Builder methods
soen6441riskgame.models.serializers.SerializableGame.Builder ..> soen6441riskgame.models.serializers.SerializableGame
@enduml
|
62e32a74a4a35a43ede1a2b858e6584caaa454de | c69dba4cef780d27a126166ee912005507258413 | /src/design/available-propagators-class-diagram.puml | fe016c272051ff7cbbc2e8e3f2b1cea5de62aae1 | [
"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 | 4,508 | 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.orekit #ECEBD8 {
package utils #DDEBD8 {
interface PVCoordinatesProvider {
+PVCoordinates getPVCoordinates(AbsoluteDate date, Frame frame)
}
}
package propagation #DDEBD8 {
interface Propagator {
+StepHandlerMultiplexer getMultiplexer()
+void clearStepHandlers()
+void setStepHandler(double h, OrekitFixedStepHandler handler)
+void setStepHandler(OrekitStepHandler handler)
+SpacecraftState getInitialState()
+void resetInitialState(SpacecraftState state)
+void addEventDetector(EventDetector detector)
+Collection<EventDetector> getEventsDetectors()
+void clearEventsDetectors()
+AttitudeProvider getAttitudeProvider()
+void setAttitudeProvider(AttitudeProvider attitudeProvider)
+MatricesHarvester setupMatricesComputation(String stmName, RealMatrix initialStm, DoubleArrayDictionary initialJacobianColumns)
+Frame getFrame()
+SpacecraftState propagate(AbsoluteDate target)
+SpacecraftState propagate(AbsoluteDate start, AbsoluteDate target)
}
interface BoundedPropagator {
+AbsoluteDate getMinDate()
+AbsoluteDate getMaxDate()
}
abstract class AbstractPropagator {
}
PVCoordinatesProvider <|.. Propagator
Propagator <|.. AbstractPropagator
Propagator <|.. BoundedPropagator
package analytical #CBDBC8 {
abstract class AbstractAnalyticalPropagator {
+PVCoordinatesProvider getPvProvider()
+void addAdditionalStateProvider(AdditionalStateProvider additionalStateProvider)
}
AbstractPropagator <|-- AbstractAnalyticalPropagator
AbstractAnalyticalPropagator <|-- AdapterPropagator
AbstractAnalyticalPropagator <|-- BrouwerLyddanePropagator
AbstractAnalyticalPropagator <|-- EcksteinHechlerPropagator
AbstractAnalyticalPropagator <|-- GLONASSAnalyticalPropagator
AbstractAnalyticalPropagator <|-- KeplerianPropagator
AbstractAnalyticalPropagator <|-- Ephemeris
BoundedPropagator <|.. Ephemeris
package tle #CCCCC7 {
AbstractAnalyticalPropagator <|-- TLEPropagator
}
package gnss #CCCCC7 {
AbstractAnalyticalPropagator <|-- GNSSPropagator
}
}
package integration #CBDBC8 {
abstract class AbstractIntegratedPropagator {
+void setIntegrator(FirstOrderIntegrator integrator)
+void addAdditionalDerivativesProvider(AdditionalDerivativesProvider provider)
+void setInitialAdditionalState(String name, double[] addState)
}
BoundedPropagator <|.. IntegratedEphemeris
IntegratedEphemeris --|> AbstractAnalyticalPropagator
AbstractIntegratedPropagator o--> IntegratedEphemeris : creates
AbstractPropagator <|-- AbstractIntegratedPropagator
}
package semianalytical #CBDBC8 {
package dsst #CCCCC7 {
DSSTPropagator --|> AbstractIntegratedPropagator
}
}
package numerical #CBDBC8 {
NumericalPropagator --|> AbstractIntegratedPropagator
GLONASSNumericalPropagator --|> AbstractIntegratedPropagator
}
}
@enduml
|
ea43111dfabfe80282b779b2c9fa6a47c4bbe4c2 | 0b0cc264919d7b0c24bbf5315af546a121634a35 | /optaweb-vehicle-routing-backend/src/main/java/org/optaweb/vehiclerouting/service/region/region.plantuml | 2eb16bf4ac76d1d4ee5485acc599c9e9e39027f6 | [
"Apache-2.0"
] | permissive | mauriziocarioli/optaweb-vehicle-routing-distribution-8.6.0.Final | 5c8f0eca20e3c25adfee969a3e422c87c5633e75 | b84b8e88e8bbe01846b346e684587317922fb182 | refs/heads/master | 2023-06-06T14:12:23.409461 | 2021-06-21T20:42:03 | 2021-06-21T20:42:03 | 376,861,264 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,692 | plantuml | @startuml
title __REGION's Class Diagram__\n
namespace org.optaweb.vehiclerouting {
namespace service.region {
class org.optaweb.vehiclerouting.service.region.BoundingBox {
+ BoundingBox()
+ getNorthEast()
+ getSouthWest()
}
}
}
namespace org.optaweb.vehiclerouting {
namespace service.region {
interface org.optaweb.vehiclerouting.service.region.Region {
{abstract} + getBounds()
}
}
}
namespace org.optaweb.vehiclerouting {
namespace service.region {
class org.optaweb.vehiclerouting.service.region.RegionProperties {
- countryCodes : List<String>
+ getCountryCodes()
+ setCountryCodes()
}
}
}
namespace org.optaweb.vehiclerouting {
namespace service.region {
class org.optaweb.vehiclerouting.service.region.RegionService {
+ boundingBox()
+ countryCodes()
~ RegionService()
}
}
}
org.optaweb.vehiclerouting.service.region.BoundingBox o-- org.optaweb.vehiclerouting.domain.Coordinates : northEast
org.optaweb.vehiclerouting.service.region.BoundingBox o-- org.optaweb.vehiclerouting.domain.Coordinates : southWest
org.optaweb.vehiclerouting.service.region.RegionService o-- org.optaweb.vehiclerouting.service.region.Region : region
org.optaweb.vehiclerouting.service.region.RegionService o-- org.optaweb.vehiclerouting.service.region.RegionProperties : regionProperties
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
|
992d3cb8c3ba2384136beefd7df870cb39683b7b | f56fb24c5e7c898c0c581817fb9557d6fe46c22b | /entrega1.puml | fa71c5dbde67c6738e828a9d054699a917c760d4 | [] | no_license | AlejandroDeheza/TPA-DDS-2021-particular | 133fac0d723919bb68a69aefc2f411fecab0f91b | e0f8472e9a514803a014a84161f47ce93faed61c | refs/heads/main | 2023-04-19T12:53:14.477650 | 2021-05-05T03:52:06 | 2021-05-05T03:52:06 | 362,290,669 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,956 | puml | @startuml
class dominio.Persona {
- String nombre
- String apellido
- LocalDate fechaNacimiento
- String numeroDocumento
- Integer telefono
- String email
- void validarPersona(String,String,Integer,String)
}
class mascota.Mascota {
- String nombre
- String apodo
- LocalDate fechaDeNacimientoAproximada
- Boolean esMacho
- String descripcionFisica
}
class mascota.RepositorioCaracteristicas {
}
class mascota.InformeMascotaEncontrada {
- String descripcionEstadoActual
- String direccionRescatista
- LocalDate fechaEncuentro
- void validarInforme(List<Foto> fotos)
}
class mascota.Foto {
}
abstract class mascota.Caracteristica {
}
class mascota.ColorPrincipal {
}
class mascota.ColorSecundario {
}
class mascota.Castracion {
- Boolean estaCastrado
}
class mascota.Color {
- Integer rojo
- Integer verde
- Integer azul
}
class mascota.Ubicacion {
}
class mascota.RepositorioInformesMascotasEncontradas {
+ List<MascotaEncontrada> ListarMascotasEncontradasEnUltimos10Dias()
}
abstract class dominio.Usuario {
- String usuario
- String contrasenia
- void validarContrasenia(String contrasenia)
}
class dominio.DuenioMascota {
}
class dominio.Administrador {
}
class dominio.Voluntario {
}
class dominio.ValidadorContrasenias {
+ void validar(String contrasenia);
}
Interface dominio.Validador {
+ void validar(String contrasenia);
}
class dominio.ValidadorLargoMinimo {
+ void validar(String contrasenia)
}
class dominio.ValidadorContraseniasComunes {
- BufferedReader archivoContrasenias
+ void validar(String contrasenia)
}
enum dominio.TipoDocumento{
DNI
LC
LE
CI
PASAPORTE
}
enum mascota.TipoMascota{
PERRO
GATO
}
dominio.ValidadorContrasenias <.. dominio.Usuario
dominio.Validador "*" <-- dominio.ValidadorContrasenias: validadores
dominio.Validador <|.. dominio.ValidadorLargoMinimo
dominio.Validador <|.. dominio.ValidadorContraseniasComunes
dominio.Persona <-- dominio.DuenioMascota: duenioMascota
dominio.TipoDocumento <-- dominio.Persona: tipoDocumento
mascota.Mascota "*" <-- dominio.DuenioMascota: mascotas
mascota.Caracteristica "*" <-- mascota.RepositorioCaracteristicas: caracteristicas
mascota.TipoMascota <-- mascota.Mascota: tipoMascota
mascota.Foto "*" <-- mascota.Mascota: fotos
mascota.Caracteristica "*" <-- mascota.Mascota: caracteristicas
mascota.Caracteristica <|-- mascota.Castracion
mascota.Caracteristica <|-- mascota.ColorPrincipal
mascota.Caracteristica <|-- mascota.ColorSecundario
dominio.Usuario <|-- dominio.DuenioMascota
dominio.Usuario <|-- dominio.Administrador
dominio.Usuario <|-- dominio.Voluntario
mascota.InformeMascotaEncontrada "*" <-- mascota.RepositorioInformesMascotasEncontradas: informesMascotasEncontradas
mascota.Foto "*" <-- mascota.InformeMascotaEncontrada: fotos
mascota.Ubicacion <-- mascota.InformeMascotaEncontrada: ubicacion
dominio.Persona <-- mascota.InformeMascotaEncontrada: rescatista
mascota.Color <-- mascota.ColorPrincipal: color
mascota.Color <-- mascota.ColorSecundario: color
@enduml |
165a979a6b4d4f9784f496c82a429187b038ff66 | 1d7c4d3c650eea6eca97a80492251baaea45bfa4 | /puml/components/LifecycleBase.puml | a07d3d3cae78034510fd9576bb4f3f3bad4aa9e1 | [
"Zlib",
"LZMA-exception",
"bzip2-1.0.6",
"CPL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown-license-reference",
"CDDL-1.0",
"EPL-1.0"
] | permissive | zhhongCai/tomcat | 234007669502143ec851161d36b8b6fa34a9e60a | 436d8e7c682a83323b222d584fc32a9d7d566809 | refs/heads/master | 2020-09-20T17:05:40.994994 | 2020-04-07T10:03:40 | 2020-04-07T10:03:40 | 224,542,187 | 0 | 0 | Apache-2.0 | 2019-11-28T00:51:28 | 2019-11-28T00:51:27 | null | UTF-8 | PlantUML | false | false | 7,572 | puml | @startuml
header tomcat-9.0.30
title Lifecycle,LifecycleBase(模板方法模式)
interface Lifecycle {
+ void addLifecycleListener(LifecycleListener listener)
+ findLifecycleListeners() LifecycleListener[]
+ void removeLifecycleListener(LifecycleListener listener)
+ void init() throws LifecycleException
+ void start() throws LifecycleException
+ void stop() throws LifecycleException
+ void destroy() throws LifecycleException
+ getState() LifecycleState
+ getStateName() String
}
note top of Lifecycle
生命周期接口,具体状态流转见lifecycle.puml
end note
interface Container extends Lifecycle {
+ getLogger() Log
+ getLogName() String
+ getObjectName() ObjectName
+ getDomain() String
+ getMBeanKeyProperties() String
+ getPipeline() Pipeline
+ getCluster() Cluster
+ void setCluster(Cluster cluster)
+ getBackgroundProcessorDelay() int
+ void setBackgroundProcessorDelay(int delay)
+ getName() String
+ void setName(String name)
+ getParent() Container
+ void setParent(Container container)
+ getParentClassLoader() ClassLoader
+ void setParentClassLoader(ClassLoader parent)
+ getRealm() Realm
+ void setRealm(Realm realm)
+ static getConfigPath(Container container, String resourceName) String
+ static getService(Container container) Service
+ void backgroundProcess()
+ void addChild(Container child)
+ void addContainerListener(ContainerListener listener)
+ void addPropertyChangeListener(PropertyChangeListener listener)
+ findChild(String name) Container
+ findChildren() Container[]
+ findContainerListeners() ContainerListener[]
+ void removeChild(Container child)
+ void removeContainerListener(ContainerListener listener)
+ void removePropertyChangeListener(PropertyChangeListener listener)
+ void fireContainerEvent(String type, Object data)
+ void logAccess(Request request, Response response, long time, boolean useDefault)
+ getAccessLog() AccessLog
+ getStartStopThreads() int
+ void setStartStopThreads(int startStopThreads)
+ getCatalinaBase() File
+ getCatalinaHome() File
}
note top of Container
Container是一个处理客户端请求,并返回请求对应的响应的对象.
Container可以支持Valves管道来处理请求按照运行时配置的顺序,
这些valve实现了Pipeline接口.
Container以几种概念级别存在在Catalina中:
Engine:
表示整个Catalina的servlet engine,通常包含一个或多个
子container,可以是Host或Context的实现,或其他自定义分组
Host:
表示一个虚拟主机包含多个Context
Context:
表示一个ServletContext,包含一个或多个支持的servlet的Wrapper
Wrapper:
表示一个单独的servlet定义
Container可以跟一些提供公共(或单独定义)功能的支持组件关联:
Loader:
类加载器用来加载这个container新的class类到Catalina运行的JVM中
Logger:
实现ServletContext接口中的log()方法
Manager:
管理Container关联的session池
Realm:
一个安全域的只读接口,用来认证用户身份和他们对于的角色
Resources:
JNDI目录上下文启用静态资源访问,启用客户连接到存在的服务组件当
catalina嵌入到一个大的server中时
end note
abstract class LifecycleBase implements Lifecycle {
- final List<LifecycleListener> lifecycleListeners = new CopyOnWriteArrayList<>()
- volatile LifecycleState state = LifecycleState.NEW
# void fireLifecycleEvent(String type, Object data)
+ final synchronized void init() throws LifecycleException
# abstract void initInternal() throws LifecycleException
+ final synchronized void start() throws LifecycleException
# abstract void startInternal() throws LifecycleException
+ final synchronized void stop() throws LifecycleException
# abstract void stopInternal() throws LifecycleException
+ final synchronized void destroy() throws LifecycleException
# abstract void destroyInternal() throws LifecycleException
# synchronized void setState(LifecycleState state) throws LifecycleExceptions
# synchronized void setState(LifecycleState state, Object data) throws LifecycleException
}
note top of LifecycleBase
主要功能:
维护生命周期事件监听器
维护当前状态(volatile)
当状态变化时触发对应的生命周期事件
模板方法:
final同步方法init(),子类实现initInternal()
final同步方法start(),子类实现startInternal()
final同步方法stop(),子类实现stopInternal()
final同步方法destroy(),子类实现destroyInternal()
init():
1.判断当前状态是否为LifecycleState.NEW,不为时抛出LifecycleException异常
2.设置当前状态为LifecycleState.INITIALIZING: setStateInternal(LifecycleState.INITIALIZING, null, false)
3.调用initInternal()方法,具体由子类实现
4.设置当前状态为LifecycleState.INITIALIZED: setStateInternal(LifecycleState.INITIALIZED, null, false)
其中setStateInternal方法中会触发fireLifecycleEvent(lifecycleEvent, data)
start():
1.当前状态为LifecycleState.STARTING_PREP,LifecycleState.STARTING
LifecycleState.STARTED时,不做操作立即返回
2.当前状态为LifecycleState.NEW时,调用init()方法
3.当前状态为LifecycleState.FAILED时,调用stop()方法
4.当前状态 不为 LifecycleState.INITIALIZED和LifecycleState.STOPPED时,调用
invalidTransition(Lifecycle.BEFORE_START_EVENT)
5.设置当前状态为LifecycleState.STARTING_PREP: setStateInternal(LifecycleState.STARTING_PREP, null, false)
6.调用startInternal()方法,具体由子类实现
7.如果当前状态为LifecycleState.FAILED,调用stop()方法
8.如果当前状态 不为 LifecycleState.STARTING,调用invalidTransition(Lifecycle.AFTER_START_EVENT)
9.设置当前状态为LifecycleState.STARTED: setStateInternal(LifecycleState.STARTED, null, false)
stop():
1.当前状态为LifecycleState.STOPPING_PREP,LifecycleState.STOPPING,
LifecycleState.STOPPED时,不做操作立即返回
2.当前状态为state.equals(LifecycleState.NEW时,state = LifecycleState.STOPPED; 返回
3.当前状态非LifecycleState.STARTED 且 非LifecycleState.FAILED, invalidTransition(Lifecycle.BEFORE_STOP_EVENT);
4.当前状态为LifecycleState.FAILED, fireLifecycleEvent(BEFORE_STOP_EVENT, null);
5.当前状态为非LifecycleState.FAILED,设置状态setStateInternal(LifecycleState.STOPPING_PREP, null, false);
6.调用stopInternal()方法,具体由子类实现
7.当前状态非LifecycleState.STOPPING 且 非LifecycleState.FAILED, invalidTransition(Lifecycle.AFTER_STOP_EVENT);
8.设置状态setStateInternal(LifecycleState.STOPPED, null, false);
destroy():
1.当前状态为LifecycleState.FAILED,调用stop()方法
2.当前状态为LifecycleState.DESTROYING或LifecycleState.DESTROYED,不做操作立即返回
3.当前状态非LifecycleState.STOPPED 且 非LifecycleState.FAILED 且 非LifecycleState.NEW
且非LifecycleState.INITIALIZED 且非LifecycleState.INITIALIZED, invalidTransition(Lifecycle.BEFORE_DESTROY_EVENT);
4.设置状态setStateInternal(LifecycleState.DESTROYING, null, false);
5.调用destroyInternal()方法,具体由子类实现
6.设置状态setStateInternal(LifecycleState.DESTROYED, null, false);
end note
abstract class ContainerBase extends LifecycleMBeanBase implements Container {
}
@enduml |
056e84ef59d54376948809e8aebe9303d25ed628 | 7e6fa61a8595cd38195713b5c7698f5de6f7c7b3 | /base/044/atua.puml | 55bb65817435bee85c6e70eba6ec6721b9c0008c | [] | no_license | qxcodepoo/arcade | 3ff1852792a47584f00c1ab9fd5011ebb2c4b830 | 3722a8c976a51829b2b6f4913360c23bf114433a | refs/heads/master | 2023-08-31T04:07:06.255292 | 2023-08-25T03:16:42 | 2023-08-25T03:16:42 | 217,410,955 | 36 | 42 | null | 2020-09-24T13:22:18 | 2019-10-24T23:12:40 | C++ | UTF-8 | PlantUML | false | false | 284 | puml | @startuml
skinparam defaultFontName Hasklig
skinparam dpi 150
left to right direction
Ator "1..*" -- "1..*" Filme
(Ator, Filme) .. Atua
class Ator {
- nomeAtor : String
}
class Filme {
- tituloFilme : String
- genero : Time
}
class Atua {
- papelAtor : String
}
@enduml |
c1af16a6272642d48821f6912a77733b206a12be | 0308f2f1727db4bee0acf8c5578dfa37338b4f7b | /Задача 6.plantuml | 398b07909bc4124fa92cc6914658c7596bfb2731 | [] | no_license | CarryObilvion/Task6 | da4ea0237542bedf44664270636a8a635223ce0b | 3b88f66182deab2a5ab1f06b622004539f504cee | refs/heads/main | 2023-05-12T03:08:44.926777 | 2021-06-01T18:15:59 | 2021-06-01T18:15:59 | 346,706,219 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,258 | plantuml | @startuml
title __JAVAFXAPPLICATION's Class Diagram__\n
namespace sample {
class sample.Controller {
}
}
namespace sample {
class sample.Main {
}
}
namespace sample {
namespace Metods {
class sample.Metods.BubbleSort {
}
}
}
namespace sample {
namespace Metods {
class sample.Metods.Context {
}
}
}
namespace sample {
namespace Metods {
class sample.Metods.InsertionSort {
}
}
}
namespace sample {
namespace Metods {
class sample.Metods.SelectionSort {
}
}
}
namespace sample {
namespace Metods {
interface sample.Metods.Strategy {
}
}
}
sample.Controller o-- sample.Metods.Context : context
sample.Main -up-|> javafx.application.Application
sample.Metods.BubbleSort .up.|> sample.Metods.Strategy
sample.Metods.Context o-- sample.Metods.Strategy : strategy
sample.Metods.InsertionSort .up.|> sample.Metods.Strategy
sample.Metods.SelectionSort .up.|> sample.Metods.Strategy
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
|
0c54aea4d7a54436910699cce967029b6a5df864 | 98490d8fb885bcb5e0da6837f8207c56018c6482 | /docs/TP5-observer.plantuml | f110013fa24166cce15ac9b5c321de418e14cd9c | [
"MIT",
"CC-BY-SA-3.0"
] | permissive | IUT-Blagnac/cpoa-tp5-ChrisVerschelden | de7850fc0582462c296359a52636c1ee2793920b | 69b3803fd4b549f4ba0f1cba5ab7d069c51b8582 | refs/heads/master | 2023-01-30T17:03:44.565467 | 2020-12-11T17:47:33 | 2020-12-11T17:47:33 | 319,558,599 | 0 | 0 | MIT | 2020-12-08T14:06:00 | 2020-12-08T07:21:30 | Java | UTF-8 | PlantUML | false | false | 1,712 | plantuml | @startuml
class CourseData [[java:CourseData]] {
-Vector<CourseRecord> courseData
+CourseData()
+void addCourseRecord(CourseRecord courseRecord)
+void changeCourseRecord(String subjectName, int numOfStudents)
+Vector<CourseRecord> getUpdate()
}
class Observable [[java:sun.jvm.hotspot.utilities.Observable]] {
}
Observable <|-- CourseData
class BarChartObserver [[java:BarChartObserver]] {
-Vector<CourseRecord> courseData
+BarChartObserver(CourseData data)
+void paint(Graphics g)
+void update(Observable o)
}
class JPanel [[java:javax.swing.JPanel]] {
}
JPanel <|-- BarChartObserver
interface Observer [[java:java.util.Observer]] {
}
Observer <|.. BarChartObserver
class CourseController [[java:CourseController]] {
-Vector<JSlider> sliders
-JPanel coursePanel
+CourseController(CourseData courses)
+void addCourse(CourseRecord record)
+void update(Observable o)
+void actionPerformed(ActionEvent arg0)
+void stateChanged(ChangeEvent arg0)
+{static}void main(String[] args)
}
class CourseData {
}
CourseController --> "1" CourseData : courseData
class JPanel [[java:javax.swing.JPanel]] {
}
JPanel <|-- CourseController
interface Observer [[java:java.util.Observer]] {
}
Observer <|.. CourseController
interface ChangeListener [[java:javax.swing.event.ChangeListener]] {
}
ChangeListener <|.. CourseController
interface ActionListener [[java:java.awt.event.ActionListener]] {
}
ActionListener <|.. CourseController
interface Observer [[java:Observer]] {
void update(Observable o)
}
abstract class Observable [[java:Observable]] {
#Vector<Observer> observers
+Observable()
+void attach(Observer o)
+void detach(Observer o)
+void notifyObservers()
+{abstract}Object getUpdate()
}
@enduml |
d897c16f470b54097d40047a76c9d073df48b5fe | 4e735a2b94ef137437adc8798f08fe9ca8b8b6c5 | /docs/diagrams/undoredo/ModelHistory.puml | a30062f7bdf33c964034e174808314a5aa55e5fa | [
"MIT"
] | permissive | AY1920S1-CS2103T-T11-1/main | 077c196c06f1ce91d5fb1afe8b969390ba737f85 | e2e0e05955f04931ddaff41685a3dba64c0e6e86 | refs/heads/master | 2020-07-21T05:18:09.774695 | 2019-11-12T15:45:13 | 2019-11-12T15:45:13 | 206,758,681 | 0 | 7 | NOASSERTION | 2019-11-12T15:18:58 | 2019-09-06T09:19:12 | Java | UTF-8 | PlantUML | false | false | 989 | puml | @startuml
class ModelHistory {
+copy() : ModelHistory
+addToPastChanges(changes : ModelChanges): void
+addToFutureChanges(changes : ModelChanges): void
+clearFutureChanges(): void
+isPastChangesEmpty(): boolean
+isFutureChangesEmpty(): boolean
+getPrevChanges(): Optional<ModelChanges>
+getNextChanges(): Optional<ModelChanges>
}
class ModelChanges {
-String: changeMessage
-MooLah: mooLah
-UserPrefs: userPrefs:
-Predicate<? super Expense>: expensePredicate
-Predicate<? super Event>: eventPredicate
-Predicate<? super Budget>: budgetPredicate
+{static}compareModels(base : Model, other : Model): ModelChanges
+getMooLah(): Optional<MooLah>
+getUserPrefs(): Optional<UserPrefs>
+getExpensePredicate(): Optional<Predicate<? super Expense>>
+getEventPredicate(): Optional<Predicate<? super Event>>
+getBudgetPredicate(): Optional<Predicate<? super Budget>>
+revertChanges()
}
ModelHistory *-right-> ModelChanges : pastChanges
ModelHistory *-right-> ModelChanges : futureChanges
@enduml
|
5b819abc9167cca6b3d74875a12c1c9e8a93c968 | 24cc83f303b034e808e1c775ba8063f9ce01afc4 | /ddd_160306/infrastructure.puml | bf2eaf1bd610268d9bac1d1c65b83277d047e32d | [] | no_license | iamapen/puml | 7110aea5171be5bd8f735fb252c674c8a78a9943 | 9a59dad08faee1b494c2dafefbefb32feacb90b6 | refs/heads/master | 2020-08-26T19:18:18.364585 | 2020-01-05T17:48:55 | 2020-01-05T17:48:55 | 214,042,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,651 | puml | @startuml
namespace Infrastructure #fcf {
namespace Domain {
class SessionAuthentifier {
- session :Session
+ __construct(UserRepository, Session)
}
Domain.Model.Authentifier <|.. SessionAuthentifier
namespace Model {
class DoctrineEntityId
Doctrine.DBAL.Types.GuidType <|-- DoctrineEntityId
namespace User {
class FirstWillMadeBadge
Domain.Model.User.FirstWillMadeBadge <|-- FirstWillMadeBadge
class DoctrineUserId
Infrastructure.Domain.Model.DoctrineEntityId <|-- DoctrineUserId
class DoctrineUserRepository
Domain.Model.User.UserRepository <|.. DoctrineUserRepository
Doctrine.ORM.EntityRepository <|-- DoctrineUserRepository
}
namespace Wish {
class DoctrineWishId
Infrastructure.Domain.Model.DoctrineEntityId <|-- DoctrineWishId
class DoctrineWishRepository
Domain.Model.Wish.WishRepository <|.. DoctrineWishRepository
Doctrine.ORM.EntityRepository <|-- DoctrineWishRepository
class WishEmail {
- mailer :Swift_Mailer
- email :string
+ __construct(WishId, UserId, email:string, content:string)
+ grant()
+ email() :string
+ changeEmail(email:string) :self
}
Domain.Model.Wish.Wish <|-- WishEmail
}
}
}
namespace Persistence {
namespace Doctrine {
namespace Mapping {
}
note top of Infrastructure.Persistence.Doctrine.Mapping
doctrineの設定ymlファイル群
endnote
class EntityManagerFactory {
+ build(connection) :Doctrine.ORM.EntityManager
}
}
namespace InMemory {
namespace User {
class InMemoryUserRepository
Domain.Model.User.UserRepository <|.. InMemoryUserRepository
}
namespace Wish {
class InMemoryWIshRepository
Domain.Model.Wish.WishRepository <|.. InMemoryWIshRepository
}
}
namespace Test.Domain.Model.User {
class EmptyUserRepository
Domain.Model.User.UserRepository <|.. EmptyUserRepository
class NotAvailableUserRepository
Domain.Model.User.UserRepository <|.. NotAvailableUserRepository
}
}
namespace Service {
interface UserAdapter {
+ toBadges(id)
}
class HttpUserAdapter {
- client :GuzzleHttp\Client
+ __construct(GuzzleHttp\Client)
+ toBadges(id:string)
}
UserAdapter <|.. HttpUserAdapter
class UserTranslator {
+ toBadgesFromRepresentation(representation)
}
UserTranslator <- HttpUserAdapter
class TranslatingUserService {
- userAdapter :UserAdapter
}
Domain.Model.User.UserService <|.. TranslatingUserService
TranslatingUserService o- UserAdapter
}
namespace Ui {
namespace Console {
namespace Command {
class PushNotificationsCommand {
+ configure()
+ execute(InputInterface, OutputInterface)
}
Symfony.Component.Console.Command.Command <|-- PushNotificationsCommand
}
class Application {
- container
}
Symfony.Component.Console.Application <|-- Application
}
namespace Twig.Views {
object index.twig
}
namespace Web {
namespace Silex {
class Application {
+ {static} bootstrap() :Silex.Application
}
namespace Public {
class frontController
Infrastructure.Ui.Web.Silex.Application <- frontController
namespace assets {
object app.css
object logo.png
}
}
}
}
}
}
@enduml |
f6547d8cdd61366b63bcbe5e68d8c859da48bd17 | 391bf69d42a573877a49cf2498822a27b3784359 | /docs/schema.plantuml | e47fd68d6bded3b3ba6bab9b70992de761fe8c6e | [] | no_license | zalum/system-model-visualizer | 315cf653dcd2aaedf82a3795cd31fc93871b1778 | 4909690d03eaf9132ed3dc338a5fdd933ae1e0b6 | refs/heads/master | 2021-06-03T16:48:39.481442 | 2021-03-12T15:10:38 | 2021-03-12T15:10:38 | 98,384,901 | 0 | 0 | null | 2021-03-12T15:10:39 | 2017-07-26T05:56:09 | Python | UTF-8 | PlantUML | false | false | 463 | plantuml | @startuml
class "Component" as component{
name
type: [application,product]
}
class "Component Relation" as componentrelation{
start
end
relationType: [contains,calls]
}
class DatamodelRelation{
start
end
relationType: [contains,fk, uses]
}
class DatamodelObject{
name
type: [database_user, table, column]
}
DatamodelObject::name <-- DatamodelRelation:start/end
component::name <-- componentrelation:start/end
@enduml |
8e135e282faa83aa03177f82cade95b695f3b927 | afaba8b7f5d826664155b257db77cf4dbf4b8816 | /oop-pattern/ch07/resources/10-facade-order.puml | 4dbb26c388a7fd4d51686d5f2e3afa9c11cd309b | [
"MIT"
] | permissive | appkr/pattern | b40b621e52c9b27be01f2a21f2f605a459ac998f | 1e635f7b79cc4b89d2e75455cb14e1572619eb20 | refs/heads/master | 2022-11-02T01:56:18.654766 | 2022-10-12T08:45:58 | 2022-10-12T08:47:36 | 71,896,898 | 11 | 2 | MIT | 2018-11-10T15:05:11 | 2016-10-25T12:55:03 | PHP | UTF-8 | PlantUML | false | false | 531 | puml | @startuml
class App {}
interface OrderServiceFacade {
+ placeOrder(): Product
}
class OrderServiceFacadeImpl implements OrderServiceFacade {}
class InventoryService {
+ {static} isAvailable(Product): boolean
}
class PaymentService {
+ {static} makePayment(price: int): boolean
}
class ShippingService {
+ {static} shipProduct(Product): void
}
App --> OrderServiceFacade
OrderServiceFacadeImpl ..> InventoryService
OrderServiceFacadeImpl ..> PaymentService
OrderServiceFacadeImpl ..> ShippingService
@enduml
|
abf91ed46c2fcbad18b7da74fedfc11fb98a5463 | 7fbdb3db8e966a7f78cad2d9e6798dfd8aedea01 | /src/com/cjj/designpattern/creator/prototype/prototype.puml | 10705d70de4cabc40a30150c5ee8e6d004c39d53 | [] | no_license | vuquangtin/DesignPattern-1 | 3d1fc64e8412bf5ba3a10a38dde121c68ffc8b9a | 47182c1c6e3f7e4126d33bdca53e055d9f0b3b5d | refs/heads/master | 2021-10-09T20:10:01.009239 | 2019-01-03T01:33:51 | 2019-01-03T01:33:52 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 299 | puml | @startuml
class Manager{
showcase
register()
create()
}
interface Product{
use()
createClone()
}
class UnderlinePen{
private ulchar
use()
createClone()
}
class MessageBox{
private decochar
use()
createClone()
}
Manager ->Product:Uses >
UnderlinePen ..|>Product
MessageBox ..|>Product
@enduml |
a8458c3088fed8b0de0a010eda28b7ef6e16bd04 | 5124b2dbc6276b681910d5584179a02ddc345669 | /documentation/uml/class/StaffTableCellRenderer.puml | 4e0d301dce947fd0caf92be68630b4be24f8d05f | [] | no_license | Dedda/paintball | 258257ce2b0b6160abe4a9dbbbf7c7a658416d5b | fb18cf11e2fc3f7eca7e0d26a2847743b560dc2f | refs/heads/master | 2020-12-30T09:58:02.507682 | 2015-06-16T17:22:59 | 2015-06-16T17:22:59 | 30,232,508 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 267 | puml | @startuml
class hotel.gui.model.StaffTableCellRenderer {
colOdd : Color
+ getTableCellRendererComponent(JTable, Object, boolean, boolean, int, int) : Component
}
javax.swing.table.DefaultTableCellRenderer <|-- hotel.gui.model.StaffTableCellRenderer
@enduml |
3fafed0e34ca69e103c8464cdcbd90b320b83914 | 469d0b89a69f890e8b25a186fe7c52d19bb4c55c | /doc/coding_rules.puml | 86eaed7578f5aa8f63c53310a266fa2355354529 | [
"MIT"
] | permissive | rschuitema/sqatt | a14970acfb2399f2acec0ed59b3f423f224c0f19 | 9c25ba4d986f73962598d0e9ec09ac8fe4121a88 | refs/heads/master | 2023-08-13T10:51:36.250531 | 2023-07-29T06:35:27 | 2023-07-29T06:35:27 | 210,205,310 | 6 | 0 | MIT | 2023-09-11T13:56:18 | 2019-09-22T19:50:35 | Python | UTF-8 | PlantUML | false | false | 885 | puml | @startuml
interface CodingStandard {
read_rules()
add_rule(CodingRule)
}
class MisraCodingStandard
class CertCodingStandard
class CodingRule {
-identification
-description
-category
-classification
-group
}
class CodingRuleViolation {
-file
-line
-rule
}
class CodingRuleProfile {
-violations
-timestap
save()
print()
}
class CodingRuleParser
interface Reader {
read_violations()
}
class MisraReader
class ResharperReader
CodingStandard <|-- MisraCodingStandard
CodingStandard <|-- CertCodingStandard
MisraCodingStandard *-- CodingRule
CertCodingStandard *-- CodingRule
CodingRuleParser -> CodingStandard
CodingRuleParser -down-> CodingRuleProfile : creates
Reader <- CodingRuleParser
CodingRuleViolation -> CodingRule : violates
CodingRuleProfile "1" o-- "*" CodingRuleViolation
Reader <|-- MisraReader
Reader <|-- ResharperReader
@enduml |
67e6aafbd1974500648ed8a644a83062cdf3b958 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ExtensionError.puml | 596dd195cdeafa8975eef023569337d48e617a88 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 2,098 | 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 ExtensionError [[ExtensionError.svg]] {
code: String
message: String
extensionId: String
extensionKey: String
}
interface ExtensionBadResponseError [[ExtensionBadResponseError.svg]] {
code: String
message: String
localizedMessage: [[LocalizedString.svg LocalizedString]]
extensionExtraInfo: [[Object.svg Object]]
extensionErrors: [[ExtensionError.svg List<ExtensionError>]]
extensionBody: String
extensionStatusCode: Integer
extensionId: String
extensionKey: String
}
interface ExtensionUpdateActionsFailedError [[ExtensionUpdateActionsFailedError.svg]] {
code: String
message: String
localizedMessage: [[LocalizedString.svg LocalizedString]]
extensionExtraInfo: [[Object.svg Object]]
extensionErrors: [[ExtensionError.svg List<ExtensionError>]]
}
interface GraphQLExtensionBadResponseError [[GraphQLExtensionBadResponseError.svg]] {
code: String
localizedMessage: [[LocalizedString.svg LocalizedString]]
extensionExtraInfo: [[Object.svg Object]]
extensionErrors: [[ExtensionError.svg List<ExtensionError>]]
extensionBody: String
extensionStatusCode: Integer
extensionId: String
extensionKey: String
}
interface GraphQLExtensionUpdateActionsFailedError [[GraphQLExtensionUpdateActionsFailedError.svg]] {
code: String
localizedMessage: [[LocalizedString.svg LocalizedString]]
extensionExtraInfo: [[Object.svg Object]]
extensionErrors: [[ExtensionError.svg List<ExtensionError>]]
}
ExtensionError --> ExtensionBadResponseError #green;text:green : "extensionErrors"
ExtensionError --> ExtensionUpdateActionsFailedError #green;text:green : "extensionErrors"
ExtensionError --> GraphQLExtensionBadResponseError #green;text:green : "extensionErrors"
ExtensionError --> GraphQLExtensionUpdateActionsFailedError #green;text:green : "extensionErrors"
@enduml
|
9001d36e3a02235755d1a4c1510fb00bfde57525 | 0c4947dd88f0571925ba65e79fd2ea6c6f35cdda | /src/main/java/cn/tomcat/TomcatParseServiceXml.puml | 2fce5063cd67be780845e4ba092c1c24c978b8b7 | [] | no_license | zou2561789/springuml | e31ad444152730d961a37d900951f1a1d3dd9609 | 15a505af77591b3e08a091dda2382940e8e6c48e | refs/heads/master | 2020-05-05T08:10:03.561315 | 2019-06-15T10:36:34 | 2019-06-15T10:36:34 | 179,853,364 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,079 | puml | @startuml
class TomcatPaseServiceXml{
}
note top of TomcatPaseServiceXml
Catalina
Server
GlobalNamingResources
Ejb
Environment
LocalEjb
Resource
ServiceRef
Transaction
Listener
Service
Listener
Executor
Connector
SSLHostConfig
Certificate
OpenSSLConf
OpenSSLConfCmd
Listener
UpgradeProtocol
Engine
Cluster
Listener
Valve
Host
Cluster
Listener
Valve
Context
Listener
Loader
Manager
Store
SessionIdGenerator
Parameter
Resources
PreResources
JarResources
PostResources
ResourceLink
Valve
WatchedResource
WrapperLifecycle
JarScanner
JarScanner
CookieProcessor
end note
@enduml |
4b5ccd1af5bb0545dad0e184c54edd3a03608cba | 178ff5731d23243560c9f6862b746b6355b1a30b | /uml/ListfxmlFileController_structure.puml | d2a162ec888b0bf4a3c41856010aed39b86cbcc3 | [] | no_license | ivanp589/Pavlov-cop3330-assignment4 | 02674bb71b11e77de2effffc0bbf9844269cc66b | a919c525020b85660a5cae7e711389f6f78ebec9 | refs/heads/master | 2023-08-21T10:50:24.722995 | 2021-11-01T08:47:09 | 2021-11-01T08:47:09 | 423,394,052 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,902 | puml | @startuml
class ListfxmlFileController implements Initializable{
'+ObservableList<Item> lister
+Stage stage
'+ToDoList newlist
+AddList bist
+ListfxmlFileConteroller()
+TableView<Item> tableView
+TableColumn<Item,Boolean> CompColumn
+TableColumn<Item, LocalDate> DateColumn
+TableColumn<Item,String> DescColumn
+TabPane Tabpane
+CheckBox Complete
+CheckBox Incomplete
+makeMapOfLists()
+getCurrentList()
+addItem()
+ListfxmlFileConteroller
+determineTab()
+getCompleted()
+showCompleted()
+getIncomplete()
+showIncomplete()
+CloseList()
+CreateNewList()
+RenameList()
+clearList()
+removeItemFromList()
+openList()
+SaveCuurentList()
SaveAllOpenLists()
+actionToDo()
+receiveData()
+initialize()
-initializer()
'+getItemS()
+Refresher()
+editDescription()
+editDueDate()
+editIsComplete()
'+setItem()
}
ListfxmlFileController-- ListfxmlFileConteroller
ListfxmlFileController-- actionToDo
ListfxmlFileController-- receiveData
ListfxmlFileController-- initialize
ListfxmlFileController-- initializer
'ListfxmlFileController-- getItemS
ListfxmlFileController-- Refresher
ListfxmlFileController-- editDescription
ListfxmlFileController-- editDueDate
ListfxmlFileController-- editIsComplete
'ListfxmlFileController-- setItem
ListfxmlFileController--makeMapOfLists
ListfxmlFileController--getCurrentList
ListfxmlFileController--addItem
ListfxmlFileController-- determineTab
ListfxmlFileController--getCompleted
ListfxmlFileController--showCompleted
ListfxmlFileController--getIncomplete
ListfxmlFileController--showIncomplete
ListfxmlFileController--CloseList
ListfxmlFileController--CreateNewList
ListfxmlFileController-- RenameList
ListfxmlFileController--clearList
ListfxmlFileController-- removeItemFromList
ListfxmlFileController--openList
ListfxmlFileController--SaveCuurentList
ListfxmlFileController--SaveAllOpenLists
interface makeMapOfLists{
+int size,i
+String listName
+ObservableList<Item> list
+AddList()
}
interface getCompleted{
+ObservableList<Item> completeList
+int size,i
create a temporary list to add completed items
}
interface showCompleted{
makes sure only one checkbox is checked
sets the table to the completed list
}
interface getIncomplete{
+ObservableList<Item> incompleteList
+int size,i
create a temporary list to add incomplete items
}
interface showIncomplete{
makes sure only one checkbox is checked
sets the table to the incomplete list
}
interface CloseList{
+Tab currentTab
close the current tab
}
interface CreateNewList{
+int x
+Tab newtab
+TableView newTable
+TableColumn comp
+TableColumn date
+TableColumn desc
}
interface RenameList{
+Stage stage
+Scene scene
+String listName
+saveCurrentList()
}
interface clearList{
+getCurrentList()
+clear()
}
interface removeItemFromList{
+Item item
+getCurrentList
}
interface openList{
+openList()
}
interface SaveCuurentList{
+SaveCuurentList()
}
interface SaveAllOpenLists{
+SaveAllOpenLists()
}
interface getCurrentList{
+Tab currentTab
+determineTab()
+String Tabname
}
interface addItem{
+LocalDate day
+Boolean complete
Item addItem
+Item()
}
interface initialize{
+ListfxmlFileConteroller()
+initializer()
initializes the tableView
sets each column
}
interface determineTab{
+int size,i
+Tab currentTab
}
interface initializer{
sets the tableView
simplifies the initialization code
}
interface Refresher{
sets tableView with currrent list
resets both checkboxes
}
interface editDescription{
+Item item
edits a cell in the table
}
interface editDueDate{
+Item item
edits a cell in the table
}
interface editIsComplete{
+Item item
edits a cell in the table
}
'interface setItem{
'prints out the item that was just added
'}
interface actionToDo{
+FXMLLoader()
+FXMLLoader fxmlLoader
+Stage stage
+Scene()
+Parent root
}
interface receiveData{
+Item u
adds to current list
}
interface ListfxmlFileConteroller{
sets a new AddList
sets a new TabPane
+makeMapOfLists()
}
@enduml |
2cc92793e3c4549e0ef2e42c5a102c79d7b318d3 | 7eb0a3429f021f1a046bed8e667a6911d789d065 | /AbstractFactoryPattern/example.puml | 31aab3a793404a9c7ac221902b5a0ceb7e74247d | [
"MIT"
] | permissive | gama79530/DesignPattern | d99431711fda65cfb7d790b2959ba0a712fa3f86 | 4730c50cdd839072ae50eef975cbed62b5a2a41c | refs/heads/master | 2023-08-03T04:35:54.561642 | 2023-06-08T03:13:08 | 2023-07-31T12:32:13 | 269,562,362 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,417 | puml | @startuml example
hide empty members
interface Ingredient{
+ String getInfo()
}
interface Dough{
+ String getInfo()
}
class ThickCrustDough{
+ String getInfo()
}
class ThinCrustDough{
+ String getInfo()
}
interface Cheese{
+ String getInfo()
}
class ReggianoCheese{
+ String getInfo()
}
class MozzarellaCheese{
+ String getInfo()
}
interface Pepperoni{
+ String getInfo()
}
class SlicedPepperoni{
+ String getInfo()
}
enum PizzaType{
+ CHEESE_PIZZA
}
interface Pizza{
+ List<Ingredient> ingredients
+ String getName()
+ String showIngredients()
}
interface CheesePizza{
+ List<Ingredient> ingredients
+ Cheese cheese
+ String getName()
+ String showIngredients()
}
class CheesePizzaOfStoreA{
+ List<Ingredient> ingredients
+ Cheese cheese
+ CheesePizzaOfStoreA(Cheese cheese, List<Ingredient> ingredients)
+ String getName()
+ String showIngredients()
}
class CheesePizzaOfStoreB{
+ List<Ingredient> ingredients
+ Cheese cheese
+ CheesePizzaOfStoreB(Cheese cheese, List<Ingredient> ingredients)
+ String getName()
+ String showIngredients()
}
interface IngredientFactory{
+ Dough createDough()
+ Cheese createCheese()
+ Pepperoni createPepperoni()
}
class IngredientFactoryOfStoreA{
+ Dough createDough()
+ Cheese createCheese()
+ Pepperoni createPepperoni()
}
class IngredientFactoryOfStoreB{
+ Dough createDough()
+ Cheese createCheese()
+ Pepperoni createPepperoni()
}
abstract class PizzaStore{
+ IngredientFactory ingredientFactory
+ Pizza orderPizza()
}
class PizzaStoreA{
+ IngredientFactory ingredientFactory
+ Pizza orderPizza()
}
class PizzaStoreB{
+ IngredientFactory ingredientFactory
+ Pizza orderPizza()
}
Ingredient <|-- Dough
Ingredient <|-- Cheese
Ingredient <|-- Pepperoni
Dough <|-- ThickCrustDough
Dough <|-- ThinCrustDough
Cheese <|-- ReggianoCheese
Cheese <|-- MozzarellaCheese
Pepperoni <|-- SlicedPepperoni
Pizza <|-- CheesePizza
CheesePizza <|-- CheesePizzaOfStoreA
CheesePizza <|-- CheesePizzaOfStoreB
IngredientFactory <|-- IngredientFactoryOfStoreA
IngredientFactory <|-- IngredientFactoryOfStoreB
PizzaStore <|-- PizzaStoreA
PizzaStore <|-- PizzaStoreB
IngredientFactory - Ingredient : > produce
Pizza *-left- Ingredient
PizzaStore *- IngredientFactory
@enduml
|
ae32b1a58c1612a44aa7d8425ce63267e499752b | 30bd8533d0644779e73646cc630132fd942f5398 | /app/src/main/java/com/example/user/diplom_2/DB/DB.plantuml | c01bca4f221ce94a84add33cd69f955072d7d8cd | [] | no_license | sgfdpk/Test | c1e4626c1ff834ad242bac728104c94287bb8c9c | 6520514aeca8650c15b0f4cc40f82a7677a4e9e5 | refs/heads/master | 2020-03-15T17:53:06.860197 | 2018-12-14T14:33:41 | 2018-12-14T14:33:41 | 132,271,633 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 620 | plantuml | @startuml
title __DB's Class Diagram__\n
package com.example.user.diplom_2 {
package com.example.user.diplom_2.DB {
class Inserter {
~ data : SQLiteDatabase
+ Inserter()
+ InsertF()
+ InsertS()
+ InsertP()
}
}
}
package com.example.user.diplom_2 {
package com.example.user.diplom_2.DB {
class TableCreate {
}
}
}
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
|
dd55149f6a76aa1018b6816123996cab3713b390 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.puml | 0af92ff29e5c09f15768ed0e0171c79e0d16e99e | [] | 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 | 304 | puml | @startuml
abstract class TestLauncherBase {
+ {abstract} Run() : void
+ ExecutePostBuildCleanupMethods(tests:ITest, testRunnerFilter:ITestFilter) : void
+ {static} ExecutePostBuildCleanupMethods(tests:ITest, testRunnerFilter:ITestFilter, testTargetPlatform:RuntimePlatform?) : void
}
@enduml
|
44fb572550826908a90b931a164330c72a11bfed | 83147b64e04741de0403ef88b6c9aeba85d05361 | /docs/Iteracao3/UC2/UC2_CD.puml | 217f938e6d0a51a2779b435078a1c60388b4a91b | [] | no_license | antoniodanielbf-isep/ESOFT-2020 | 3af037382ecf70f5b25448765e841a8733cc3968 | a1bcfcbb7951b58afcc9c1f663265091dde3926e | refs/heads/main | 2023-06-04T23:48:29.068810 | 2021-06-20T18:18:38 | 2021-06-20T18:18:38 | 378,711,541 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 959 | puml | @startuml
skinparam classAttributeIconSize 0
class AreaAtividade {
-String codigo
-String descBreve
-String descDetalhada
+AreaAtividade(String cod, String dsBreve, String dsDet)
}
class Plataforma {
-String designacao
+RegistoAreasAtividade getRegistoAreasAtividade()
}
class RegistoAreasAtividade {
+AreaAtividade novaAreaAtividade(String cod, String dsBreve, String dsDet)
+validaAreaAtividade(AreaAtividade area)
+registaAreaAtividade(AreaAtividade area)
-addAreaAtividade(AreaAtividade area)
}
class DefinirAreaController {
+novaAreaAtividade(String cod, String dsBreve, String dsDet)
+registaAreaAtividade()
}
class DefinirAreaUI {
}
DefinirAreaUI ..> DefinirAreaController
DefinirAreaController ..> Plataforma
DefinirAreaController ..> RegistoAreasAtividade
DefinirAreaController ..> AreaAtividade
Plataforma "1" --> "1" RegistoAreasAtividade : tem
RegistoAreasAtividade "1" --> "*" AreaAtividade : possui
@enduml
|
585065a9fe905727d616c2312638dc5863ec44e9 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedOrderSetCustomerIdAction.puml | 9f5ef754bbeb2578b6a153a62de2ca1883c3d044 | [] | 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 | 470 | 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 StagedOrderSetCustomerIdAction [[StagedOrderSetCustomerIdAction.svg]] extends StagedOrderUpdateAction {
action: String
customerId: String
}
interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] {
action: String
}
@enduml
|
a327c4975e7bb32bb3482785587fe81cf96b518e | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /serviceSchema/ip/uml/extensionPatternSubscriberIp2.puml | df27b82aec55b79db2d041dbce2cfbd89d42be07 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 970 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
ClassBorderColor<<ServiceSpecification>> FireBrick
}
set namespaceSeparator none
class MefServiceRefOrValueOrder{
id: string
href: string
place: RelatedPlaceRefOrValue
serviceOffering: ServiceOfferingRef
serviceRelationship: ServiceRelationshipWithGrouping
}
class MefServiceConfiguration {
@type*: string <<discriminator>>
}
MefServiceRefOrValueOrder *-->"0..1" MefServiceConfiguration : serviceConfiguration
class urn:mef:lso:spec:legato:IpUniAccessLink:0.0.1:order <<ServiceSpecification>> {
<<... attributes are skipped ...>>
}
MefServiceConfiguration <|-- "urn:mef:lso:spec:legato:IpUniAccessLink:0.0.1:order"
class urn:mef:lso:spec:legato:IpUniAccessLinkTrunk:0.0.1:order <<ServiceSpecification>> {
<<... attributes are skipped ...>>
}
MefServiceConfiguration <|-- "urn:mef:lso:spec:legato:IpUniAccessLinkTrunk:0.0.1:order"
@enduml |
75669fe6417bce19bda13b6ec18c09ed0b329ae8 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/PlatformFormat.puml | 1d089426458556b77cd68e7ba32a1583b632c239 | [] | 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 | 384 | 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 PlatformFormat [[PlatformFormat.svg]] extends DeliveryFormat {
type: String
}
interface DeliveryFormat [[DeliveryFormat.svg]] {
type: String
}
@enduml
|
cc6b8621f50833dcecf91def80768d2f05e4de60 | d10503f47377addd953c47db621947c28060f809 | /Bridge/UML/ClassDiagram.puml | 1f3fa33b660084a47502515cf6629900037dda43 | [
"MS-PL"
] | permissive | BeqaKhaburdzania/FreeUni-SDP-2013-Lab-UML | a0c93981e4924ded0b1db50b296d48c0155f376e | dd5fbb54da0daf0fa8ecb7184af9baecaf508d85 | refs/heads/master | 2021-01-17T23:11:04.570954 | 2015-03-18T20:17:21 | 2015-03-18T20:17:21 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 764 | puml | @startuml
title Bridge Pattern Class Diagram
abstract class Matrix{
- int rows
- int cols
- Collection<MatrixCell> collection
# MatrixCell createPosition(int row, int col)
# void deletePosition(MatrixCell toDelete)
# MatrixCell getPosition(int row, int col)
+ {abstract} void put(int row, int col, int value)
+ {abstract} int get(int row, int col)
}
interface Collection{
...
}
class ArrayList{
...
}
class Vector{
...
}
class CompleteMatrix{
~ void put(int row, int col, int value)
~ int get(int row, int col)
}
class SparseMatrix{
~ void put(int row, int col, int value)
~ int get(int row, int col)
}
Collection <|-- ArrayList
Collection <|-- Vector
Matrix <|-- CompleteMatrix
Matrix <|--SparseMatrix
Matrix -right-> Collection
@enduml |
eb12203d472799a6d7cd5c420b1742099bcc7bfb | 21ccee783b583ee5f856623a9c37c1af9680a7f9 | /src/main/java/com/project/app/model/model.plantuml | 76c1b3358200ad93639973599e4d266fb8b13111 | [] | no_license | ixior462/WebApp | a110ab7c5a1f5d3c53c9708fff70a4235de3cefc | 01a7cd8bae2a1f4e57d17d73b91ca6e03198d15f | refs/heads/master | 2020-04-05T09:29:59.669852 | 2019-03-20T23:16:08 | 2019-03-20T23:16:08 | 156,759,849 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,405 | plantuml | @startuml
title __MODEL's Class Diagram__\n
package com.project.app {
package com.project.app.model {
class Client {
- login : String
- password : String
+ Client()
+ getLogin()
+ getPassword()
}
}
}
package com.project.app {
package com.project.app.model {
class ClientsDataAccessor {
}
}
}
package com.project.app {
package com.project.app.model {
class ClientParser {
- parse()
{static} + main()
}
}
}
package com.project.app {
package com.project.app.model {
class ClientsJSONHandler {
}
}
}
package com.project.app {
package com.project.app.model {
class DictionaryAccessor {
- handler : DictionaryJSONHandler
+ DictionaryAccessor()
+ addArrayListOfWordsToJSON()
+ getRandomWord()
}
}
}
package com.project.app {
package com.project.app.model {
class DictionaryJSONHandler {
- parser : JSONParser
+ DictionaryJSONHandler()
# addWordToJSON()
+ getRandomWordFromJSON()
}
}
}
package com.project.app {
package com.project.app.model {
class Parser {
- parse()
{static} + main()
}
}
}
package com.project.app {
package com.project.app.model {
class Word {
- eng : String
- pl : String
- label : String
+ Word()
+ getEng()
+ getPl()
+ getLabel()
}
}
}
package com.project.app {
package com.project.app.controller {
class WebController {
+ showLearningPage()
}
}
}
package com.project.app {
package com.project.app.model {
DictionaryAccessor o-- DictionaryJSONHandler
DictionaryJSONHandler o-- Parser
Parser "1" - "*" Word
WebController o-- DictionaryAccessor
ClientsDataAccessor o-- ClientsJSONHandler
ClientsJSONHandler o-- ClientParser
ClientParser "1" - "*" Client
WebController o-- ClientsDataAccessor
}
}
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
|
54387a0b64ad1ad8f58c719c01b52ef226bc2192 | f3e5470b71219337445bca0f5e5c1ffa32da3af8 | /Documentation/plantuml/Grid/ManagedGameObject.puml | b001007080e83effe1ce8cdd63fe807e1108089b | [
"MIT"
] | permissive | Jaren-Taylor/Smart-City-Dashboard | 65116d7afd09bdc9d5ff33e05213a83bc73b52cb | 7d947637bc1c0b0d4a7a2b781c405518481dc319 | refs/heads/main | 2023-04-14T06:55:40.565340 | 2021-04-26T19:55:52 | 2021-04-26T19:55:52 | 327,404,880 | 0 | 0 | null | 2021-04-19T02:11:24 | 2021-01-06T19:02:38 | C# | UTF-8 | PlantUML | false | false | 470 | puml | @startuml
class ManagedGameObject {
+ ModelExists : bool <<get>>
+ DestroyTree() : void
+ SetModelMaterial(material:Material) : void
+ AddComponent() : T
+ TryRemoveComponent() : bool
+ DestroyModel() : void
+ InstantiateModel(modelPrefab:GameObject, rotation:Quaternion?) : void
+ SwapModel(modelPrefab:GameObject, rotation:Quaternion?) : void
}
MonoBehaviour <|-- ManagedGameObject
ManagedGameObject o-> "childModel" GameObject
@enduml
|
8d945919a3bc173b350a3010012d7adb68acfb67 | 22c062df90adff61becb66216348f35b57920adb | /DesignPatern/src/Behavioral/diagrams/order_process_template.puml | a39c19fbdc5151fd2d0770645c9f9f94dd57e786 | [
"BSD-3-Clause"
] | permissive | zainmehdi/software_engineering | 0ca30f6daf526434fbec9ae0240da0685dc5977a | 9b655590d05246d6e859673161de05ecde788b14 | refs/heads/master | 2022-12-29T14:33:41.798904 | 2020-10-12T13:57:20 | 2020-10-12T13:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 892 | puml | @startuml
skinparam classAttributeIconSize 0
interface "Interface \n OrderProcessTemplate" as OrderProcessTemplate{
bool isGift;
+{abstract} doSelect():void
+{abstract} doPayment():void
+{abstract} doDelivery():void
giftWrap():void
processOrder(bool isGift):void
}
note " doSelect(); \n doPayment(); \n if (isGift) {\n giftWrap();\n }\n doDelivery();" as OrderProcessTemplateProcessOrder
OrderProcessTemplate::processOrder -right..OrderProcessTemplateProcessOrder
class NetOrder
{
public:
doSelect():void
doPayment():void
doDelivery() :void
}
class StoreOrder
{
doSelect():void
doPayment():void
doDelivery():void
}
note "Customer chooses the item from shelf" as StoreOrderDoSelect
note "Item added to online shopping cart" as NetOrderDoSelect
NetOrderDoSelect .. NetOrder::doSelect
StoreOrderDoSelect .. StoreOrder::doSelect
|
84fabd9c03b844de0d6caf1c1c6cb1706f9c32c7 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CustomerDeletedMessage.puml | c8943f37346be59f8a5a57a76dd7eba80811d395 | [] | 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,125 | 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 CustomerDeletedMessage [[CustomerDeletedMessage.svg]] extends Message {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
interface Message [[Message.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
|
5d36f68909ef33b740ece8b3bfb26835fe0b2e84 | 2099ea9bcbc7ae9c8c28d59f9e0fffbf478c1f03 | /UML/vendor/yiisoft/yii2-swiftmailer.puml | cffdbee95e3ffb8e233a1226fa279718efe323d0 | [] | no_license | adipriyantobpn/UML-diagram-for-some-PHP-packages | b3e3ed8e8898e4a5d56f0647cfbedaaa9d2dbdd5 | 0a9308fbd2d544c8f64a37cf9f11011edfc40ace | refs/heads/master | 2021-08-19T19:24:34.948176 | 2017-11-27T07:48:10 | 2017-11-27T07:48:10 | 112,164,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,151 | puml | @startuml
skinparam handwritten true
class yii.swiftmailer.Logger {
+add(entry)
+clear()
+dump()
}
class yii.swiftmailer.Logger implements Swift_Plugins_Logger
class yii.swiftmailer.Mailer {
+enableSwiftMailerLogging : bool = false
+messageClass : string = "yii\swiftmailer\Message"
-_swiftMailer : Swift_Mailer
-_transport : Swift_Transport|array = []
#createSwiftMailer() : Swift_Mailer
#createSwiftObject(config : array) : Object
#createTransport(config : array) : Swift_Transport
+getSwiftMailer() : array|.Swift_Mailer
+getTransport() : array|.Swift_Transport
#sendMessage(message)
+setTransport(transport : array|.Swift_Transport)
}
class yii.swiftmailer.Mailer extends yii.mail.BaseMailer
class yii.swiftmailer.Message {
-signers : Swift_Signer[] = []
-_swiftMessage : Swift_Message
+addHeader(name : string, value : string) : $this
+addSignature(signature : array|callable|.Swift_Signer) : $this
+attach(fileName, options = [])
+attachContent(content, options = [])
#createSwiftMessage() : Swift_Message
#createSwiftSigner(signature : array) : Swift_Signer
+embed(fileName, options = [])
+embedContent(content, options = [])
+getBcc()
+getCc()
+getCharset()
+getFrom()
+getHeader(name : string) : array
+getPriority() : int
+getReadReceiptTo() : string
+getReplyTo()
+getReturnPath() : string
+getSubject()
+getSwiftMessage() : Swift_Message
+getTo()
+setBcc(bcc)
#setBody(body : string, contentType : string)
+setCc(cc)
+setCharset(charset)
+setFrom(from)
+setHeader(name : string, value : string|array) : $this
+setHeaders(headers : array) : $this
+setHtmlBody(html)
+setPriority(priority : int) : $this
+setReadReceiptTo(addresses : string|array) : $this
+setReplyTo(replyTo)
+setReturnPath(address : string) : $this
+setSignature(signature : array|callable|.Swift_Signer) : $this
+setSubject(subject)
+setTextBody(text)
+setTo(to)
+toString()
+__clone()
}
class yii.swiftmailer.Message extends yii.mail.BaseMessage
@enduml
|
5dc00eeeda6fd44378b8883b11c334bf80833bb5 | 644b7bb773b84596a2de4d31a0603284d9562e56 | /react/bootstrap/radio.iuml | 10d534a499c005ab6c346fa57e6b505caa92fce1 | [] | 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 | 242 | iuml | class Radio{
--props--
inline : boolean
disabled : boolean
title : string
validationState : StateEnum
inputRef : function
--render--
radio button
}
Radio --> StateEnum
/'Radio button'/ |
22d1dcf4a729adee942bb66a323007b12b614514 | 89741824242f55cd7a04a8ef9bedf46b58456f03 | /app/src/androidTest/java/com/example/furkan/seproject/seproject.plantuml | 7594c660d4d2c84d77ca57714cc6e7fa09b959f4 | [] | no_license | kaymakf/PTRFS | 5f5513a71bd63ba1af7491df16d9b46000666e01 | 6d21e0f57a4d012a6a2483a5d9a7906d296f8c3f | refs/heads/master | 2020-05-19T19:39:11.591676 | 2019-05-06T11:55:54 | 2019-05-06T11:55:54 | 185,185,536 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 366 | plantuml | @startuml
title __SEPROJECT's Class Diagram__\n
package com.example.furkan.seproject {
class ExampleInstrumentedTest {
+ useAppContext()
}
}
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
|
044b64621d13317717d60f30e416ac4382872bbe | fb6cdc303c504ac460aabff216b9eb7d6cbae95d | /src/main/java/com/bgzyy/design/uml/generalizatio/Generalization.puml | 79d93fdbe951a647bb7920029125d880067776ad | [] | no_license | bgzyy/Design-Patterns | 67484fd535fb7c41e22cc8122e274b470ca011c8 | 6e0a2853814708ead8eae7a72171e61f705b6409 | refs/heads/master | 2023-01-01T16:12:13.380936 | 2020-10-24T08:48:19 | 2020-10-24T08:48:19 | 306,841,209 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 217 | puml | @startuml
abstract class DaoSupport {
+save(Object entity): void
+delete(Object id): void
}
class PersonServiceBean
note left: "PersonServiceBean extend DaoSupport"
PersonServiceBean --|> DaoSupport
@enduml |
db4fac9940a7fee8279a1b669f3c301435dc9cdd | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/blue/1090657/sp1/dm.puml | 4a711acd7ae3d7e2e69a67b5d3d96ed0374d8177 | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 698 | puml | @startuml dm.png
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
hide empty methods
interface ExpressionCompiler
class LanguageManager {
+getAllMacroLanguages()
}
class MacroLanguage extends Language {
}
class VisualBasicLanguage extends MacroLanguage
class MacroCompilerManager {
-instance
-compilers
-MacroCompilerManager()
-initCompilers()
{static}-getInstance()
+getCompiler(String language)
+getCompiler(MacroLanguage lang)
}
class VisualBasicExpressionCompiler extends ExpressionCompiler
LanguageManager o-- Language : has
MacroCompilerManager o-- ExpressionCompiler : has
@enduml |
bf55b0e20c6ec2341f9a988329bce55b252961d5 | 63d05a2d8db31272352bb47eaf1981b74093b719 | /uml/db/models/l2.puml | beb741f0d27061f6a8ed88013d6fcc6275e136ca | [
"Apache-2.0"
] | permissive | ChaosXu/dragonflow | b0635a237ed48d9741c1bb4d5ebbc17a5f5d815c | e497928bc34269bcecc7ea4488f22b5c98b972dc | refs/heads/master | 2020-05-05T09:33:07.999625 | 2019-04-25T11:07:00 | 2019-04-25T11:07:00 | 179,908,580 | 0 | 0 | null | 2019-04-07T02:18:32 | 2019-04-07T02:18:32 | null | UTF-8 | PlantUML | false | false | 927 | puml | @startuml l2
class LogicalSwitch {
is_external bool
mtu int
segmentation_id int
network_type string
physical_network string
}
class Subnet {
enable_dhcp bool
dhcp_ip IpAddress
cidr IpNetwork
gateway_ip IpAddress
dns_nameservers IpAddress[]
host_routes HostRoute[]
lswitch LogicalSwitch required
}
class AddressPair {
ip_address IpAddress
mac_address MacAddress
}
class DhcpParams
class PortBinding {
chassis Chassis
vtep_address IpAddress
ip()
is_local()
}
class LogicalPort {
ips IpAddress[]
subnets Subnet[]
macs MacAddress[]
enabled bool
binding PortBinding
lswitch LogicalSwitch
security_groups SecurityGroup
allowed_address_pairs AddressPair[]
port_security_enabled bool
device_owner string
device_id string
qos_policy QosPolicy
dhcp_params DhcpParams
binding_vnic_type VNCI_TYPES
}
@enduml |
4c0297ccd367ce8fbc81b23b7d8f9d312dc37ef2 | 7028a90e3cc6096e70b06e0d18c51983bf54f4d6 | /plantuml/CharacterUI.puml | 577c5831f7080e381fd0dae2cff63249a846e790 | [] | no_license | KazukiShimura/AnimalVillage | 2d73f459e9df3b839f9328309de890c09f4b1f1d | 916c5edc80613ade565b5fe481debf79f890b505 | refs/heads/main | 2023-05-06T07:27:10.043196 | 2021-05-27T01:55:47 | 2021-05-27T01:55:47 | 358,861,857 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 152 | puml | @startuml
class CharacterUI {
Start() : void
Update() : void
}
MonoBehaviour <|-- CharacterUI
CharacterUI --> "myRectTfm" RectTransform
@enduml
|
47a716b0dd5ba0306466e5b9d09c0b895129cab0 | 0d966cf37eeceb83dfd28a6cb9b0f086e2f0229a | /src/main/java/ex43/App.puml | 1c410ba1b0862da6a38533b3d78ad492f4919525 | [] | no_license | lcorona26/corona-cop3330-assignment3 | dac0104b43922c4787af4bf8ef530b1c3e585fde | cc2817ea60cf7362832cb048cc04db6f460585ac | refs/heads/master | 2023-06-02T18:43:44.131894 | 2021-06-20T18:39:26 | 2021-06-20T18:39:26 | 378,716,181 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 179 | puml | @startuml
class App{}
class Generate{
void Files()
}
class Input{
readSite()
readAuthor()
readJava()
readCss()
}
Generate <|-- Input
App <|-- Generate
@enduml |
e1afaaf2505ad1199848924f92ead4e4c87233d1 | eec0494f79a3199c09e6913651558cb9aa65763a | /poker_classUML.puml | 1892a5ed255affe9d909cd6857e2c648346e8753 | [
"Apache-2.0"
] | permissive | bebosudo/it.units.muli.poker | f5f992665114ab1e9487bae02002aede6e5b84d0 | 3fb8a1c23958dbbbf8c21080142ee818422efe7d | refs/heads/master | 2020-04-19T18:09:34.623647 | 2019-05-09T14:16:50 | 2019-05-09T14:16:50 | 168,355,328 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,965 | puml | @startuml
class Card {
- CardFace face
- CardSuit suit
+ CardFace getFace()
+ CardSuit getSuit()
+ Boolean equals(Object o)
+ int hashCode()
+ String toString()
+ Comparator<Card> COMPARE_BY_FACE_DECR
}
class Hand {
- String original;
- ArrayList<Card> cards;
- Rank score;
- static final int MAX_HAND_SIZE = 7;
- static final int MIN_HAND_SIZE = 2;
- static final int VALID_HAND_SIZE = 5;
- static final int FIND_PAIR = 2;
- static final int FIND_SET = 3;
- static final int FIND_QUAD = 4;
- static final int FACE_DIFF_FOR_STRAIGHT_5_TO_ACE = CardFace.FIVE.getValue() - CardFace.ACE.getValue();
- static final int FACE_DIFF_FOR_STRAIGHT = VALID_HAND_SIZE - 1;
- Card getCard(int i);
+ String getOriginal();
+ Rank getScore();
+ String scoreString();
+ int size();
+ int compareTo(Hand h);
+ boolean equals(Object o);
+ int hashCode();
+ String toString();
+ void setScore();
+ void sortByFaceDecreasing();
- void sortByFaceDecreasing(ArrayList<Card> toBeOrdered);
+ void sortByFaceDecreasingAce1();
- void sortByFaceDecreasingAce1(ArrayList<Card> toBeOrdered);
+ boolean compareToCardsArray(Card[] other);
- boolean searchForGroupOfCardsInArrayThenPopGroup(ArrayList<Card> arrayFrom, ArrayList<Card> arrayTo, int groupLength);
- void popCards(ArrayList<Card> arrayFrom, ArrayList<Card> arrayTo);
- void popCards(ArrayList<Card> arrayFrom, ArrayList<Card> arrayTo, int minIndex, int maxIndex);
- boolean orderAndFindGroupsIntoCards(int... groupsLength);
- boolean orderByPair();
- boolean orderByDouble();
- boolean orderBySet();
- ArrayList<Card> getDistinctCardsByFace(int limitSearchTo);
- int getIndexOfStraight(ArrayList<Card> searchArray);
- void overwriteCardsForNormalStraight(ArrayList<Card> searchArray, int firstCardOfStraight);
- boolean orderByStraight();
- boolean checkIsStraight(ArrayList<Card> toBeChecked);
- boolean orderByStraight(int straightUpToNumber);
- boolean orderByFlush();
- boolean orderByFull();
- boolean orderByQuad();
- boolean orderByStraightFlush();
}
class Game {
- ArrayList<Hand> hands;
- ArrayList<Rank> ranks;
- ArrayList<Integer> winners;
- Stream<Integer> sortIndicesByComparingHands(ArrayList<Integer> indicesToCompare);
- void setWinners();
+ Rank getRank(int i);
+ int getWinnersSize();
+ int getWinner(int index);
+ void print();
}
class Main{
+ static void main(String[] args);
}
class Utils{
+ static <T> Predicate<T> distinctByKey(Function<? super T, ?> keyExtractor)
}
CardSuit <|-- Card
CardFace <|-- Card
Card <|-- Hand
Hand <|-- Game
Game <|-- Main
Utils <|-- Hand
enum CardSuit {
CLUBS = 1
SPADES = 2
HEARTS = 3
DIAMONDS = 4
}
enum CardFace {
TWO = 2
THREE = 3
FOUR = 4
FIVE = 5
SIX = 6
SEVEN = 7
EIGHT = 8
NINE = 9
TEN = 10
JACK = 11
QUEEN = 12
KING = 13
ACE = 14
- final int value
+ int getValue()
}
enum Rank {
FOLD = 0
HIGH_CARD = 1
PAIR = 2
TWO PAIRS = 3
THREE_OF_A_KIND = 4
STRAIGHT = 5
FLUSH = 6
FULL_HOUSE = 7
FOUR_OF_A_KIND = 8
STRAIGHT_FLUSH = 9
- int value
+ int getValue()
}
@enduml |
202faf5f083433786fcf3e8d61c0b564fdae00e6 | e07ad94f5c70b0c457b9484269304244ced63a8f | /patterns/template-method.puml | 58c1f5bde1468d31905083eec10a64a82b7c0ed1 | [] | no_license | gillescoolen/design-patterns | abfe58fab21c1d47c124f066d2a7883156667bce | c05acb4b919247c5a26bf8341330837894154ae8 | refs/heads/main | 2023-06-01T22:47:39.336414 | 2021-06-18T12:39:56 | 2021-06-18T12:39:56 | 377,582,013 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 227 | puml | @startuml template-method
abstract Game {
+ start()
+ end()
+ play()
}
class Football {
+ start()
+ end()
+ play()
}
class Tennis {
+ start()
+ end()
+ play()
}
Football --|> Game
Tennis --|> Game
@enduml |
3022084b5df663b574c682e812496c188e6556c5 | b9a5b64744865c0dfcf7660d5ca90df262b3c9e3 | /src/main/java/dev/aguss787/cs4212/assignment2/typecheck/typecheck.plantuml | 9e912142b7e90502ba8fa2e5296c1dab83e50e41 | [] | 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 | 2,565 | plantuml | @startuml
title __TYPECHECK's Class Diagram__\n
namespace dev.aguss787.cs4212.assignment2 {
namespace typecheck {
class dev.aguss787.cs4212.assignment2.typecheck.ErrorList {
+ addIfNotNull()
+ addIfNotNull()
}
}
}
namespace dev.aguss787.cs4212.assignment2 {
namespace typecheck {
class dev.aguss787.cs4212.assignment2.typecheck.FunctionSignature {
- arguments : ArrayList<Declaration>
+ FunctionSignature()
+ equals()
+ getArguments()
+ getReturns()
+ hashCode()
}
}
}
namespace dev.aguss787.cs4212.assignment2 {
namespace typecheck {
class dev.aguss787.cs4212.assignment2.typecheck.LocalEnv {
+ containsKey()
}
}
}
namespace dev.aguss787.cs4212.assignment2 {
namespace typecheck {
class dev.aguss787.cs4212.assignment2.typecheck.TypeCheck {
{static} + check()
{static} - check()
{static} - check()
{static} - check()
{static} - check()
{static} - getTypeName()
}
}
}
namespace dev.aguss787.cs4212.assignment2 {
namespace typecheck {
class dev.aguss787.cs4212.assignment2.typecheck.TypeDescriptor {
- props : Map<String, Type>
+ Get()
+ TypeDescriptor()
+ addProp()
}
}
}
namespace dev.aguss787.cs4212.assignment2 {
namespace typecheck {
class dev.aguss787.cs4212.assignment2.typecheck.TypeMap {
+ containsKey()
+ putOnce()
}
}
}
namespace dev.aguss787.cs4212.assignment2 {
namespace typecheck {
class dev.aguss787.cs4212.assignment2.typecheck.UniqueReducer {
- duplicate : ArrayList<U>
- st : Set<U>
+ getDuplicate()
+ reduce()
+ reset()
}
}
}
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
|
1370d5d3af449c934109d2bc603d0537c55e1f56 | 1276f2077be141792b20be299d66bb9fa481b4e2 | /backend/src/main/java/at/jku/werewolf/io/game/game.plantuml | 9f35cce92d2beaddf7894aaef3d42b6c5ec53a74 | [] | no_license | bauerben00/werewolfio_final | ddba0e331bc04dfa25ea5adb71bd0230f3a7a076 | 6167c74b0df8909b4b82528fa45f39b66ad788f2 | refs/heads/master | 2023-03-17T22:45:09.162695 | 2021-03-14T14:13:57 | 2021-03-14T14:13:57 | 330,441,684 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,319 | plantuml | @startuml
title __GAME's Class Diagram__\n
namespace t.jku.werewolf.io {
namespace game {
class at.jku.werewolf.io.game.CalculateResults {
{static} + calculateResults()
}
}
}
namespace t.jku.werewolf.io {
namespace game {
class at.jku.werewolf.io.game.GameResult {
~ isOver : boolean
+ GameResult()
+ GameResult()
}
}
}
namespace t.jku.werewolf.io {
namespace game {
class at.jku.werewolf.io.game.VotingController {
~ countVotes : int
- simpMessagingTemplate : SimpMessagingTemplate
+ VotingController()
+ checkForWin()
+ countPlayerVote()
+ countTotalVote()
+ countWerewolfVote()
+ votePlayer()
- denMitGrößtemCountAufTotSetzen()
}
}
}
at.jku.werewolf.io.game.GameResult o-- at.jku.werewolf.io.lobbymanagement.GameRole : hasWon
at.jku.werewolf.io.game.VotingController o-- at.jku.werewolf.io.lobbymanagement.LobbyRepository : repo
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
|
a87b28a43e54ff2cb1eb89dc3732b35f21f3723e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderSetDeliveryAddressCustomFieldAction.puml | e8e347eb7bd55cf8c65e280cd3b26ae01e9e24a1 | [] | 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 | 546 | 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 OrderSetDeliveryAddressCustomFieldAction [[OrderSetDeliveryAddressCustomFieldAction.svg]] extends OrderUpdateAction {
action: String
deliveryId: String
deliveryKey: String
name: String
value: [[Object.svg Object]]
}
interface OrderUpdateAction [[OrderUpdateAction.svg]] {
action: String
}
@enduml
|
74acb69c39082c1ae3b6802f8dd2c377b9a0f6c3 | db15a4762717f1c25f1b86534b29a4bfd3bc21b5 | /src/main/vehicles/cars/cars.plantuml | 17f8c798ca6a7c647b34a91e94f14a72345bd084 | [] | no_license | AdamRohdell/Laboration1 | 3f8a1c9022f29ad63d1c356b23a27c9866b3f808 | b4098b8d2be81b4dea9f9df3597653421bec0a10 | refs/heads/master | 2020-04-06T22:40:21.458338 | 2018-12-11T08:34:43 | 2018-12-11T08:34:43 | 157,843,265 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,884 | plantuml | @startuml
title __CARS's Class Diagram__\n
package main {
package main.vehicles {
package main.vehicles.cars {
abstract class Car {
- nrDoors : int
- color : Color
+ Car()
+ getColor()
+ getType()
+ setColor()
{abstract} + speedFactor()
+ incrementSpeed()
+ decrementSpeed()
+ getNrDoors()
+ gas()
+ brake()
}
}
}
}
package main {
package main.vehicles {
package main.vehicles.cars {
enum Type {
SEDAN
TRUCK
}
}
}
}
package main {
package main.vehicles {
package main.vehicles.cars {
class Saab95 {
+ turboOn : boolean
+ Saab95()
+ setTurboOn()
+ setTurboOff()
+ speedFactor()
+ getTurboStatus()
}
}
}
}
package main {
package main.vehicles {
package main.vehicles.cars {
enum Type {
SEDAN
TRUCK
}
}
}
}
package main {
package main.vehicles {
package main.vehicles.cars {
class Volvo240 {
{static} - trimFactor : double
+ Volvo240()
+ speedFactor()
}
}
}
}
package main {
package main.vehicles {
package main.vehicles.cars {
enum Type {
SEDAN
TRUCK
}
}
}
}
Car -up-|> Vehicle
Car o-- Type : type
Car +-down- Type
Saab95 -up-|> Car
Saab95 +-down- Type
Volvo240 -up-|> Car
Volvo240 +-down- Type
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
|
e509c36c2d70c59261b9bc3930954550c0928116 | 4b81e72878f40b705ac32cf8e136311dc4dc3699 | /app/src/main/java/sud_tanj/com/icare/Backend/Backend.plantuml | f545822be61c8678b67aaa0ffe000d0e0d5f2fc2 | [] | no_license | sudtanj/iCare-PHR | 826f6e1ffa0b4217ed128a36386a7494e22c521e | 2d334a5dd7854b8cc204dd8adbe9f74d86c7d694 | refs/heads/master | 2020-03-23T04:46:07.948787 | 2019-12-22T03:22:09 | 2019-12-22T03:22:09 | 141,104,375 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 668 | plantuml | @startuml
title __BACKEND's Class Diagram__\n
package sud_tanj.com.icare {
package sud_tanj.com.icare.Backend {
abstract class BaseAbstractComponent {
# listeners : List<T>
+ addListener()
+ removeSensorListener()
{abstract} # onEventListenerFired()
# fireEventListener()
{abstract} + onDispose()
+ BaseAbstractComponent()
}
}
}
BaseAbstractComponent -up-|> Runnable
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
330a0fd6d6e85eacb889b7251974693d388f6906 | f403ba9f47c28dba5751b079189990752e4e60d4 | /tramway.puml | abcbac59bf036c92514b44096e0c37d7c1c8a855 | [
"CC-BY-3.0"
] | permissive | wanisramdani/tramway | 05bc4a5034b40fa52cf1ab98d5fe6e9aa93a240c | 5b13095ca5554833a538cc383afb4dc924cb481c | refs/heads/master | 2023-03-04T19:11:40.507546 | 2021-01-24T22:15:17 | 2021-01-24T22:18:36 | 234,951,303 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,469 | puml | @startuml tramway
class WorldController {
updateView(): void
}
WorldController -- WorldModel
WorldController -- WorldViewInterface
interface WorldViewInterface {
setLightColor(int lightId, TrafficColor color)
createTram(int tramId)
destroyTram(int tramId)
getGraphicSegment(int tramId): int
setTramDynamic(int tramId, boolean isDynamic)
getTramProgress(int tramId): double
setTramProgress(int tramId, double progress)
}
WorldViewInterface <|.. WorldViewFx
WorldViewInterface <|.. WorldViewText
class WorldModel {
segmentQueues: List<Tram>[]
carsGoingNorth: List<Car>
carsGoingSouth: List<Car>
perhapsCreateCar()
startAll()
stopAll()
}
WorldModel *-- "5" Tram
WorldModel *-- "0..4" Car
WorldModel *-- "1" BridgeArbiter
WorldModel *-- "1" IntersectionArbiter
abstract class TrafficArbiter {
getPermit(TrafficDirection dir): void
releasePermit(TrafficDirection dir): void
p(Semaphore x): void
v(Semaphore x): void
}
class BridgeArbiter {
}
BridgeArbiter --|> TrafficArbiter
class IntersectionArbiter {
}
IntersectionArbiter --|> TrafficArbiter
abstract class Vehicle {
dir: TrafficDirection
canAdvance: Semaphore
logicSegment: int
code: int
advance(): void
enter(): void
leave(): void
}
class Tram {
}
class Car {
}
Tram --|> Vehicle
Car --|> Vehicle
Vehicle -- TrafficArbiter
Vehicle --|> Thread
enum TrafficColor {
GREEN
RED
YELLOW
}
enum TrafficDirection {
NORTH
SOUTH
EAST
WEST
}
@enduml
|
3bd86696fca87014826daa75ae921658af8442c4 | 33a2e6ddc764cb9224d8dcdf6bfff4bfbebd8807 | /Docs/mvc.Beheer.puml | df6486c357851889e4ec5b93bfa438e08f60c998 | [] | no_license | kaasszje/Zovoc-Leden-Beheer | da9477ed49f12a58f9cd6790c0118bbcb69fe013 | 74ef810914e642fb54ef50f048cfb2ef5d21c195 | refs/heads/master | 2023-06-28T09:59:53.874627 | 2021-07-30T12:28:50 | 2021-07-30T12:28:50 | 382,803,243 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,700 | puml | @startuml
'https://plantuml.com/class-diagram
left to right direction
!theme black-knight
skinparam class {
ArrowColor Yellow
ArrowThickness 1
}
skinparam package {
BackgroundColor #000000
}
Package nl.fam_krijgsman.zovoc.model {
class Vereniging
}
Package nl.fam_krijgsman.zovoc.mvc {
Package javax.swing{
class JFrame
class JMenuBar
class JPanel
}
class BeheerModel extends Vereniging {
- teamModel: TeamModel
- ledenModel: LedenModel
+ BeheerModel()
+ getTeamModel(): TeamModel
+ getLedenModel(): LedenModel
+ removeTeamFromLid(Team): void
}
class TeamModel extends ModelHandler {
+ TeamModel()
+ getValueAt(rowIndex, columnIndex): Object
+ setValueAt(rowIndex, columnIndex): void
+ getRowCount(): Integer
+ isCellEditable(rowIndex, columnIndex): boolean
+ remoteTeam(rowIndex): boolean
}
class LedenModel extends ModelHandler {
+ LedenModel()
+ getValueAt(rowIndex, columnIndex): Object
+ setValueAt(rowIndex, columnIndex): void
+ getRowCount(): Integer
+ isCellEditable(rowIndex, columnIndex): boolean
+ removeLid(rowIndex): boolean
}
abstract class ModelHandler extends AbstractTableModel {
- columnNames : String[]
- columnClass : Class[]
+ ModelHandler(columnName, columnClass)
+ getColumnName(columnIndex): String
+ getColumnClass(columnIndex): Class
+ getColumnCount(): Integer
}
abstract class AbstractTableModel
class BeheerView extends JFrame {
- switchPanel: JLayeredPane
- headerPanel: HeaderPanel
- teamPanel: TeamPanel
- ledenPanel: LedenPanel
- addTeamPanel: AddTeamPanel
- addLidPanel: AddLidPanel
- welcomePanel: WelcomePanel
- icon: ImageIcon
- userName: String
- zovocMenuBar: ZovocMenuBar
+ BeheerView(userName: String)
+ switchPanel(panel: JPanel): void
+ displayErrorMessage(message: String): void
+ getAddTeamPanel(): AddTeamPanel
+ getAddLidPanel(): AddLidPanel
+ getLedenPanel(): LedenPanel
+ getTeamPanel(): TeamPanel
+ getZovocMenuBar(): ZovocMenuBar
}
class BeheerController {
- beheerView: BeheerView
- beheerModel: BeheerModel
+ BeheerController(BeheerView, BeheerModel)
+ fillLedenTeamBox(): void
}
'Beheerview
class ZovocMenuBar extends JMenuBar
class HeaderPanel extends JPanel
class WelcomePanel extends JPanel
class LedenPanel extends JPanel
class TeamPanel extends JPanel
class AddTeamPanel extends JPanel
class AddLidPanel extends JPanel
'BeheerController
interface ActionListener {
actionPerformed(ActionEvent): void
}
class MenuListener implements ActionListener
class LedenViewListener implements ActionListener
class AddLedenViewListener implements ActionListener
class TeamViewListener implements ActionListener
class AddTeamViewListener implements ActionListener
'interne Beheermodel classes
TeamModel --+ BeheerModel : innerclass >
LedenModel --+ BeheerModel : innerclass >
ModelHandler --+ BeheerModel : innerclass >
'interne Beheerview classes
ZovocMenuBar --+ BeheerView : innerclass >
HeaderPanel --+ BeheerView : innerclass >
WelcomePanel --+ BeheerView : innerclass >
LedenPanel ---+ BeheerView : innerclass >
TeamPanel ---+ BeheerView : innerclass >
AddTeamPanel ---+ BeheerView : innerclass >
AddLidPanel ---+ BeheerView : innerclass >
'interne Beheercontroller classes
MenuListener --+ BeheerController : innerclass >
LedenViewListener --+ BeheerController : innerclass >
AddLedenViewListener --+ BeheerController : innerclass >
TeamViewListener --+ BeheerController : innerclass >
AddTeamViewListener --+ BeheerController : innerclass >
BeheerController -o BeheerView
BeheerModel o- BeheerController
}
@enduml |
eff87eeaf81f8e53447a9e9647b9b2437b301e89 | 0c4947dd88f0571925ba65e79fd2ea6c6f35cdda | /src/main/java/cn/tomcat/Host.puml | 900961f88707fe0e46575b995b59ca9f5d0e1c8b | [] | no_license | zou2561789/springuml | e31ad444152730d961a37d900951f1a1d3dd9609 | 15a505af77591b3e08a091dda2382940e8e6c48e | refs/heads/master | 2020-05-05T08:10:03.561315 | 2019-06-15T10:36:34 | 2019-06-15T10:36:34 | 179,853,364 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 899 | puml | @startuml
interface Host{
String ADD_ALIAS_EVENT
String REMOVE_ALIAS_EVENT
//Properties
String getXmlBase()
void setXmlBase(String xmlBase)
File getConfigBaseFile()
String getAppBase()
File getAppBaseFile()
void setAppBase(String appBase)
boolean getAutoDeploy()
void setAutoDeploy(boolean autoDeploy)
String getConfigClass()
void setConfigClass(String configClass)
boolean getDeployOnStartup()
void setDeployOnStartup(boolean deployOnStartup)
String getDeployIgnore()
Pattern getDeployIgnorePattern()
void setDeployIgnore(String deployIgnore)
ExecutorService getStartStopExecutor()
boolean getCreateDirs()
void setCreateDirs(boolean createDirs)
boolean getUndeployOldVersions()
void setUndeployOldVersions(boolean undeployOldVersions)
//Public Method
void addAlias(String alias)
String[] findAliases()
void removeAlias(String alias)
}
@enduml |
b86db3066155a82b06fdca13daa1584193a89f4b | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /documentation/serviceApi/inventory/media/src/errorEntities.puml | e3d7851c80125b634171de3341d5307d09056e36 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 1,060 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class Error {
message: string
reason*: string
referenceError: uri
}
class Error400 {
code*: Error400Code
}
Error <|-- Error400
enum Error400Code {
missingQueryParameter
missingQueryValue
invalidQuery
invalidBody
}
class Error401 {
code*: Error401Code
}
Error <|-- Error401
enum Error401Code {
missingCredentials
invalidCredentials
}
class Error403 {
code*: Error403Code
}
Error <|-- Error403
enum Error403Code {
accessDenied
forbiddenRequester
tooManyUsers
}
class Error404 {
code*: string
}
Error <|-- Error404
class Error408 {
code*: string
}
Error <|-- Error408
class Error422 {
code*: Error422Code
propertyPath: string
}
Error <|-- Error422
enum Error422Code {
missingProperty
invalidValue
invalidFormat
referenceNotFound
unexpectedProperty
tooManyRecords
otherIssue
}
class Error500 {
code*: string
}
Error <|-- Error500
@enduml
|
fc3f8db0e126f2b48a69644889020ad04dc6e8f0 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductPublishedMessagePayload.puml | 62ff0b6a34705fe21a1e9be3e719943a4fcd4306 | [] | 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 | 592 | 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 ProductPublishedMessagePayload [[ProductPublishedMessagePayload.svg]] extends MessagePayload {
type: String
removedImageUrls: [[String.svg List<String>]]
productProjection: [[ProductProjection.svg ProductProjection]]
scope: [[ProductPublishScope.svg ProductPublishScope]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
|
6c3495506dcfa8ed3396e59b70cfeb78f66f6a1e | 2b80da125241e634109eea56c01b8a0b48286919 | /docs/UML/Game.puml | 99ab9b81791c9091c7f1d72195de21b881220fc0 | [] | no_license | GastonD/BasketballSim | b65b9252cdceb6f4303e1db8d4cd34f77342db2b | 6be09d439ae952b2a34424ab9c1aaf22079b6c1b | refs/heads/master | 2020-09-21T06:48:16.879673 | 2019-12-13T17:53:54 | 2019-12-13T17:53:54 | 224,714,840 | 0 | 0 | null | 2019-12-13T17:53:56 | 2019-11-28T19:11:52 | C# | UTF-8 | PlantUML | false | false | 511 | puml | @startuml Game
class Game {
+ teamOne : Team
+ teamTwo : Team
+ teamOneScore : int
+ teamTwoScore : int
+ scheduledDay : int
+ teamOneBoxScore : Dictionary<Player, PlayerStats> = null
+ teamTwoBoxScore : Dictionary<Player, PlayerStats> = null
+ Game(t1:Team, t2:Team, day:int)
+ {static} possession(atk:Team, def:Team, atkBxs:Dictionary<Player, PlayerStats>, passBonus:int) : int
+ playGame() : void
- printBoxScore(boxScore:Dictionary<Player, int>) : void
}
@enduml
|
9817a0ae1aa2991d5c6b56e220dc82a340d51b22 | 005aa476ac9d11d36d1c0d202daa1e7c86df94c2 | /hedwig-jdesignpattern/docs/imgs/creational/singleton/singleton.puml | 54386a881d257cd42890c8a2ed0ad23bce52b3e0 | [] | no_license | qdriven/designpattern-sanity | 51d2c9ebb1970c24bb2746ac6ba38ffd966a541c | c67622c9d153a9154e941fa2aad4ab1c10dd37a9 | refs/heads/master | 2022-12-06T22:02:15.117957 | 2020-08-21T05:59:25 | 2020-08-21T05:59:25 | 98,328,079 | 0 | 0 | null | 2020-05-15T19:22:30 | 2017-07-25T16:33:31 | Java | UTF-8 | PlantUML | false | false | 142 | puml | @startuml
class SingletonClient{
- SingletonClient instance
+ static SingletonClient getInstance()
}
instance o-- SingletonClient
@enduml |
ec412a1b57fa21999cc76be9e3aabd9b60e906a3 | 54ebd9eb2ddadc17b215617d96fac1f93f4acfef | /behavioral/command/command-solution.puml | 031768b659beb896ea18009ab98674241e4c5f39 | [] | no_license | cesarkohl/design-patterns | acb42191662c141f064d9c90426dfd4491d43dfe | 991f83d0076b0a69e9d6b7c1163cf49fde3bfcbf | refs/heads/main | 2023-06-11T07:16:18.484116 | 2023-05-28T14:41:01 | 2023-05-28T14:41:01 | 199,520,479 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 733 | puml | @startuml
note as n1
Useful when you need
to revert actions: do/undo
endnote
class Calculator {
+ value: number
- history: ICommand[]
+ executeCommand(command: ICommand): void
+ undo(): void
}
Calculator <-- ICommand
interface ICommand {
execute(currentValue: number): number
undo(currentValue: number): number
}
class AddCommand implements ICommand {
execute(currentValue: number): number
undo(currentValue: number): number
}
class MultiplyCommand implements ICommand {
execute(currentValue: number): number
undo(currentValue: number): number
}
class AddThenMultiplyCommand implements ICommand {
execute(currentValue: number): number
undo(currentValue: number): number
}
@enduml
|
56f893e7bfd76381d6524cbb4ce9b9af880f663d | 1c6eae4b5ebbddce35a2fad77b69189e5290ea2a | /src/design/builder/work/w5/Main.puml | 6e0fbe6b14ec4f8cdf61f433893977c65fc7c35c | [] | no_license | GitHubFeiLong/design | b4d2a07fc4675c469bf40aa5a05ae3c66d2a9382 | 377b5b08771a7257d9b9a9aa9578ed98f59c8697 | refs/heads/master | 2023-02-05T01:08:47.905972 | 2023-01-30T12:51:13 | 2023-01-30T12:51:13 | 187,624,865 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,382 | puml | @startuml
'https://plantuml.com/class-diagram
class DisplayModel {
menu
playList
mainWindow
controllerItem
favoriteList
}
abstract class DisplayModelBuilder {
DisplayModel displayModel;
buildMenu()
buildPlayList()
buildMainWindow()
buildControllerItem()
buildFavoriteList()
boolean isBuildMenu()
boolean isBuildPlayList()
boolean isBuildFavoriteList()
DisplayModel createDisplayModel()
}
class FullDisplayModelBuilder extends DisplayModelBuilder{
buildMenu()
buildPlayList()
buildMainWindow()
buildControllerItem()
buildFavoriteList()
}
class SimpleDisplayModelBuilder extends DisplayModelBuilder{
buildMenu()
buildPlayList()
buildMainWindow()
buildControllerItem()
buildFavoriteList()
boolean isBuildMenu()
boolean isBuildPlayList()
boolean isBuildFavoriteList()
}
class MemoryDisplayModelBuilder extends DisplayModelBuilder{
buildMenu()
buildPlayList()
buildMainWindow()
buildControllerItem()
buildFavoriteList()
boolean isBuildMenu()
boolean isBuildPlayList()
}
class DisplayModelDirector {
DisplayModelBuilder displayModelBuilder
DisplayModel construct(DisplayModelBuilder displayModelBuilder)
}
DisplayModel <.. DisplayModelDirector
DisplayModelBuilder <-- DisplayModelDirector
DisplayModel <-- DisplayModelBuilder
@enduml |
cc8e0a21ca92f90d1ccc2c6f323438632eed5fd2 | a26bbd033192f4ea245a6dd3f166976b39459752 | /3_Documentazione/design/be/servlets_data.puml | 9abfecefdd535123d57a31a5fa06eab58dd12aa9 | [] | no_license | giuliobosco/freqline | fdc673e09e4cfc96dc67a759788120b81fdbae46 | e94256cc349797447cf414bbe4267ef45c89723e | refs/heads/master | 2022-04-10T16:22:55.993289 | 2020-04-06T13:28:19 | 2020-04-06T13:28:19 | 206,082,972 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,661 | puml | @startuml
skinparam classAttributeIconSize 0
package ch.giuliobosco.freqline.servlets {
abstract BaseServlet {
}
package data {
class BaseDataServlet {
- int getId(HttpServletRequest request)
# void doGet(HttpServletRequest request, HttpServletResponse response)
- void doGetById(HttpServletRequest request, HttpServletResponse response, DbDao dao)
- void doGetAll(HttpServletResponse response, DbDao dao)
# void doDelete(HttpServletRequest request, HttpServletResponse response)
# void doPost(HttpServletRequest request, HttpServletResponse response)
- void executePost(HttpServletResponse response, ServletRequestAnalyser sra, int actionBy)
# void doPut(HttpServletRequest request, HttpServletResponse response)
- void executePut(HttpServletRequest request, HttpServletResponse response, ServletRequestAnalyser sra)
# String[] getRequiredPutParameters()
# String[] getRequiredPostParameters()
- DbDao getDao(int actionBy)
- void initConnector()
# Base getBase(Map<String, String> params, DbDao dao, String key)
- boolean hasRequiredPermission(int userId, String requiredPermission)
- boolean hasRequiredPermission(User user, String requiredPermission)
# {abstract} Base mapToBase(Map<String, String[]> params, Base base, int actionBy)
# {abstract} Class<? extends Base> getModel()
# {abstract} DbDao getDao(JdbcConnector connector, int actionBy)
# {abstract} BaseJson getJson(Base base)
# {abstract} String requiredGetPermission()
# {abstract} String requiredPostPermission()
# {abstract} String requiredPutPermission()
# {abstract} String requiredDeletePermission()
}
BaseServlet <|-- BaseDataServlet
class GeneratorServlet {
}
BaseDataServlet <|-- GeneratorServlet
class GroupPermissionServlet {
}
BaseDataServlet <|-- GroupPermissionServlet
class GroupServlet {
}
BaseDataServlet <|-- GroupServlet
class MicServlet {
}
BaseDataServlet <|-- MicServlet
class PermissionServlet {
}
BaseDataServlet <|-- PermissionServlet
class RemoteServlet {
}
BaseDataServlet <|-- RemoteServlet
class UserGroupServlet {
}
BaseDataServlet <|-- UserGroupServlet
class UserServlet {
}
BaseDataServlet <|-- UserServlet
}
}
@enduml |
a22b639ba0b20bd371e50233b939aa7d3c9548e6 | 090d15933ebdb950d4eeb83215a6004679fd8706 | /src/docs/developer-guide/extensions/overview/tng-vnv-lcm-classdiagram.plantuml | 435bfb142b5d5c8e01bab5fb78561119078e75c2 | [
"Apache-2.0"
] | permissive | sonata-nfv/tng-vnv-lcm | c4e6b862f9219c3e7ba3c0b5104a70a622ea0647 | 31f740a4a26c9c652ccf5827b15a8ea48d520c0e | refs/heads/master | 2021-05-04T13:53:04.037062 | 2019-02-19T14:54:29 | 2019-02-19T14:54:29 | 120,324,218 | 4 | 4 | Apache-2.0 | 2019-02-06T10:10:14 | 2018-02-05T15:36:49 | Groovy | UTF-8 | PlantUML | false | false | 5,680 | plantuml | @startuml
title __TNG-VNV-LCM's Class Diagram__\n
package com.github.h2020_5gtango.vnv.lcm {
class Application {
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.config {
class AsyncConfig {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.config {
class BearerAuthorizationInterceptor {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.event {
class CatalogueEventListener {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.helper {
class DebugHelper {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class NetworkService {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.controller {
class NetworkServiceController {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class NetworkServiceDescriptor {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class NetworkServiceInstance {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class NetworkServiceRequest {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class NsRequest {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class NsResponse {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.event {
class OnPackageChangeEvent {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.controller {
class PackageController {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class PackageMetadata {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.config {
class RestConfig {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.scheduler {
class Scheduler {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class Session {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.restclient {
class TestCatalogue {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class TestDescriptor {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.restclient {
class TestExecutionEngine {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class TestPlan {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.restclient {
class TestPlatformManager {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.restclient {
class TestResultRepository {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class TestSuite {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.controller {
class TestSuiteController {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class TestSuiteRequest {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class TestSuiteResult {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.model {
class TestTag {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.restclient {
class UserSessionManager {
}
}
}
package com.github.h2020_5gtango.vnv.lcm {
package com.github.h2020_5gtango.vnv.lcm.workflow {
class WorkflowManager {
}
}
}
BearerAuthorizationInterceptor -up-|> ClientHttpRequestInterceptor
BearerAuthorizationInterceptor o-- UserSessionManager : userSessionManager
CatalogueEventListener o-- Scheduler : scheduler
NetworkService o-- NetworkServiceDescriptor : nsd
NetworkServiceController o-- Scheduler : scheduler
NetworkServiceController o-- TestCatalogue : testCatalogue
PackageController o-- Scheduler : scheduler
RestConfig o-- BearerAuthorizationInterceptor : bearerAuthorizationInterceptor
Scheduler o-- TestCatalogue : testCatalogue
Scheduler o-- WorkflowManager : workflowManager
TestSuite o-- TestDescriptor : testd
TestSuiteController o-- Scheduler : scheduler
TestSuiteController o-- TestCatalogue : testCatalogue
UserSessionManager o-- Session : session
WorkflowManager o-- TestResultRepository : testResultRepository
WorkflowManager o-- TestPlatformManager : testPlatformManager
WorkflowManager o-- TestExecutionEngine : testExecutionEngine
@enduml
|
8a691663e78e7eb1199136fda22b52095abcb77b | de6c5a5bd148ba54f06ef9797f78b6a6fc06e058 | /src/main/java/org/assignment3/resources/ex46uml.puml | 26e0516a429e520bec44c46bca7a31325d4ff961 | [] | no_license | akwill47/weatherlow-cop3330-assignment3 | 879bab21366508ee14317fe1dda975472ead53fe | 82706afc9da87c617be1a2fa0fb278c39690135e | refs/heads/master | 2023-06-03T10:09:39.704192 | 2021-06-21T01:53:04 | 2021-06-21T01:53:04 | 376,952,678 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 258 | puml | @startuml
'https://plantuml.com/class-diagram
App --|> countOccurrences
App --|> display
App --|> parse
App --|> readFile
class readFile{
+read();
}
class countOccurrences{
+count();
}
class display{
+histogram();
}
class parse{
+separateWord();
}
@enduml |
3567438e355c190bbd071f2725ddb3d13d74a20d | c8921fe77a5927904ac3c04bfd080851403dab94 | /uml/uml2/actG.puml | 7996ba840d3da767c87c824651aaf04ff20aba00 | [] | 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 | 1,538 | puml | @startuml
package 戦術サブドメイン {
package 移動モデル {
class 盤{
matrix : 駒[][]
載せる(駒, 座標)
動かす(駒, 座標)
取り除く(駒)
駒を見る(座標)
駒を探す(駒)
}
class 駒{
動かす(座標)
移動範囲を得る(盤)
成る(新能力)
}
abstract 行動駒{
行動を指示する(座標)
行動を実行する(侵入状況)
行動範囲を得る()
}
class 行動盤{
行動範囲matrix : Boolean[][]
行動(駒, 座標)
行動範囲を探索(行動駒)
}
class 侵入状況{
対象 : 駒?
歩数 : Int
侵入角 : Int[]
地形 : 地形?=null
対象の枡と前後2枡を得る() : 枡[5]
}
}
class そのゲームの行動駒
class そのゲームの地形
}
package 戦闘サブドメイン {
class キャラクター{
HP : Int
他ステータス
}
class キャラクター固有の能力
class 能力{
移動範囲を得る()
行動範囲を得る()
全ての能力に共通のルール()
}
}
そのゲームの行動駒 "ゲームのルールを実装する" --|> 行動駒
行動盤 -right-> "載る" 行動駒
行動駒 -left-> "自分を動かす" 行動盤
'駒 -right-> 能力
'人 "動かす " --> 行動駒
'人 "俯瞰する" --> 行動盤
行動駒 -down-|> 駒
行動盤 -down-|> 盤
侵入状況 --> "周囲の地形として\n盤を把握" 行動盤
キャラクター --> キャラクター固有の能力
キャラクター固有の能力 --|> 能力
そのゲームの行動駒 -right-> キャラクター
@enduml |
095b469c9168e41ab6a42f1fa331c83c47ff5100 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Window/TimelineMarkerHeaderGUI.puml | f3084f6474be8635b734ad65d44c253b2c3f8086 | [] | 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 | 1,637 | puml | @startuml
class TimelineMarkerHeaderGUI {
m_TrackHash : int
+ TimelineMarkerHeaderGUI(asset:TimelineAsset, state:WindowState)
+ locked : bool <<get>>
+ showMarkers : bool <<get>>
+ muted : bool <<get>>
ToWindowSpace(rect:Rect) : Rect
+ Draw(markerHeaderRect:Rect, markerContentRect:Rect, state:WindowState) : void
+ Rebuild() : void
HandleDragAndDrop() : void
Hash() : int
{static} DrawMarkerDrawer(data:DrawData, state:WindowState) : void
{static} DrawMarkerDrawerHeaderBackground(data:DrawData) : void
{static} DrawMarkerDrawerHeader(data:DrawData, state:WindowState) : void
{static} DrawMarkerDrawerContentBackground(data:DrawData) : void
{static} DrawLockButton(rect:Rect, state:WindowState) : void
{static} DrawTrackDropDownMenu(rect:Rect, state:WindowState) : void
{static} DrawMuteButton(rect:Rect, state:WindowState) : void
}
class DrawData <<struct>> {
+ showLockButton : bool
+ showMuteButton : bool
}
IRowGUI <|-- TimelineMarkerHeaderGUI
ILayerable <|-- TimelineMarkerHeaderGUI
TimelineMarkerHeaderGUI --> "timeline" TimelineAsset
TimelineMarkerHeaderGUI --> "state" WindowState
TimelineMarkerHeaderGUI --> "m_Layer" MarkersLayer
TimelineMarkerHeaderGUI o-> "m_ZOrder" LayerZOrder
TimelineMarkerHeaderGUI --> "asset" TrackAsset
TimelineMarkerHeaderGUI --> "boundingRect" Rect
TimelineMarkerHeaderGUI --> "zOrder" LayerZOrder
TimelineMarkerHeaderGUI +-- DrawData
DrawData --> "headerRect" Rect
DrawData --> "contentRect" Rect
DrawData --> "trackSwatchStyle" GUIStyle
DrawData --> "trackHeaderFont" GUIStyle
DrawData --> "colorTrackFont" Color
@enduml
|
61fa3665ee04fb98630665c9fc1d47ee5b65cc58 | 3c4e2fd0dd03d22fbed7e9004b2c584e3e6ff0ad | /src/main/java/com/test/it/spring/Spring IoC.puml | b1436c4d5eb5eb2fc65a020a3f79089b1089321e | [] | no_license | zhhongCai/testit | d9e1ec4272e56c478f46cbea32aed896485718e3 | 7040203ce3954c42dc0f421eeb867c268ced2300 | refs/heads/master | 2022-12-29T06:16:56.755660 | 2021-09-24T13:42:27 | 2021-09-24T13:42:27 | 26,839,009 | 0 | 0 | null | 2022-12-16T01:31:59 | 2014-11-19T01:40:29 | Java | UTF-8 | PlantUML | false | false | 764 | puml | @startuml
/'读取XML资源,转化为BeanDefinition'/
interface BeanDefinitionReader {
int loadBeanDefinitions(Resource resource) throws BeanDefinitionStoreException;
int loadBeanDefinitions(Resource... resources) throws BeanDefinitionStoreException;
int loadBeanDefinitions(String location) throws BeanDefinitionStoreException;
int loadBeanDefinitions(String... locations) throws BeanDefinitionStoreException;
}
abstract class AbstractBeanDefinitionReader
class XmlBeanDefinitionReader
XmlBeanDefinitionReader -> AbstractBeanDefinitionReader
AbstractBeanDefinitionReader -> BeanDefinitionReader
/'XmlBeanDefinitionReader读取xml文件转换为BeanDefinition'/
"XmlBeanDefinitionReader: " -> "loadBeanDefinitions(Resource resource)"
@enduml |
e6b8d1a714d19187647eaaadd06cf8da8f1182ff | 0c311512de48c07fcfe14b13d55b6d4fd60e4858 | /land-administration-system/src/main/plantuml/ladm-source.puml | 7967b674d0fdce4eedc62217e1d754202f6c1355 | [] | no_license | marcvanandel/model-driven-low-code-playground | acc510e902e674def2902ccafa56c8cea2477a0b | 6381367a43c5559abee637a4b40a376d380e0842 | refs/heads/master | 2020-11-25T17:46:13.836924 | 2020-01-23T06:52:34 | 2020-01-23T06:52:34 | 228,778,884 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 816 | puml | @startuml LADM_Source
allow_mixing
namespace ladm.source {
class Source {
+ acceptance : DateTime
+ availabilityStatus : enum
+ extArchiveId : ExtArchiveId
+ lifeSpanStamp : DateTime
+ mainType : CI_PresentationFormCode
+ quality : DQ_Element
+ recordation : DateTime
+ sID: ObjectIdentifier
+ source : CI_ResponsibleParty
+ submission : DateTime
}
class AdministrativeSource {
+ text : MultiMediaType
+ type : AdministrativeSourceType
}
class SpatialSource {
+ measurements : OM_Observation
+ procedure : OM_Process
+ type : SpatialSourceType
}
Source -- ladm.common.ObjectIdentifier
Source <|-- AdministrativeSource
Source <|-- SpatialSource
}
@enduml |
6c7f4934a226d8ba92f807f78489a915ac852964 | a02ad03139297299466b25c51c7c786effd0918a | /uml/Assigment4Diagram.puml | 8c5cc4eef68cce264af4f648d4fb6d122653980b | [] | no_license | Andrew-Shepard/todolist-javafx | 2644b291cef48e3d043b6c008daea8768ba17ea2 | 443242b613af64d05fdee8aff6a0c25710194245 | refs/heads/master | 2023-07-24T14:46:09.896712 | 2021-09-07T23:10:51 | 2021-09-07T23:10:51 | 385,072,934 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,230 | puml | @startuml
'https://plantuml.com/class-diagram
class App{
+main()
+start()
}
class Item {
SimpleStringProperty description
+int item_id
+Boolean completion_status
+LocalDate due_date
+setDescription():void
+setDue_date():void
+setCompletion_status():void
}
class User {
+Int active_list
+setActiveList():void
+getActiveList():void
+addNewTodoList():void
+removeExistingTodoList():void
+setTitle():void
+addItem(String description, Boolean completion_status, Date due_date):void
+removeItem():void
+editItemDescription(Item i, String description):void
+editItemDueDate(Item i, String due_date):void
+editItemCompletionStatus(Item i, Boolean completion_status):void
+displayCompleteItems():void
+displayIncompleteItems():void
+displayAllItems():void
+sortItemByDate():void
}
class MainPageController{
+LoadButtonClicked(ActionEvent actionEvent):void
+SaveButtonClicked(ActionEvent actionEvent):void
+RemoveItemButtonClicked(ActionEvent actionEvent):void
+EditItemButtonClicked(ActionEvent actionEvent):void
+AddNewItemButtonClicked(ActionEvent actionEvent):void
+displayAllItems(ActionEvent actionEvent):void
+clearAllItems(ActionEvent actionEvent):void
+displayCompleteItems(ActionEvent actionEvent):void
+displayIncompleteItems(ActionEvent actionEvent):void
+sortByDate(ActionEvent actionEvent):void
}
class EditItemPageController{
+SaveItem(ActionEvent actionEvent):void
+ReturnToMainPage(ActionEvent actionEvent):void
}
class ItemSaveIsScuffed{
+int id
+String description
+Boolean completion_status = false
+String due_date
+setDescription():void
+setDue_date():void
+setCompletion_status():void
}
note left: gson does NOT like\nSimpleStringProperty.\nthis class only exists to\nget past that limitation.
javafx.Application <|-- App
javafx.Application <|-- MainPageController
javafx.Application <|-- EditItemPageController
javafx.Application <|-- EditTodoListPageController
MainPageController o-- User
EditItemPageController o-- User
EditTodoListPageController o-- User
ItemSaveIsScuffed o-- User
Item o-- User
TodoList o-- User
Item *-- TodoList
@enduml |
3eb718b0e2c409c18a9d5215b882c9f206ebb7f3 | 4e2586435708420f782c03c1303da7219890941e | /docs/diagrams/StorageManager.puml | 704d150fcc49cec34454a4d8499561afe03ee631 | [] | no_license | AY2021S1-CS2113-T13-1/tp | 720454016061d5dbc23067e4505e2eac87e04449 | 4345646e211cdaeed2dfdf2e691e334c2d8e32ad | refs/heads/master | 2023-01-19T13:31:58.992002 | 2020-11-10T12:57:57 | 2020-11-10T12:57:57 | 297,301,678 | 0 | 7 | null | 2020-11-10T12:57:58 | 2020-09-21T10:12:20 | Java | UTF-8 | PlantUML | false | false | 1,370 | puml | @startuml
hide circle
skinparam classAttributeIconSize 0
class StorageManager {
+ {static} FOLDER_DIR : String
+ {static} NOTES_DIR : String
- {static} ARCHIVED_NOTES_DIR : String
+ {static} NOTEBOOK_FILE_PATH : String
- {static} ARCHIVED_NOTEBOOK_FILE_PATH : String
- {static} TAG_FILE_PATH : String
- {static} TIMETABLE_FILE_PATH : String
+ StorageManager (Timetable timetable, ParserManager parserManager,Notebook notebook, TagManager tagManager)
+ createFiles(void) : void
+ createFile(String path) : void
- createDirectory (String path) : void
+ loadAllNotes (boolean isArchive) : void
+ loadTimetable () : void
+ getNoteContent (Note note, boolean isArchive) : ArrayList <string>
+ saveAllNoteDetails (boolean isArchive) : void
+ saveNote (Note note, boolean isArchive) : void
+ saveNoteContent (Note note, boolean isArchive) : void
+ saveNoteDetails (Note note, boolean isArchive) : void
+ saveTimetable () : void
+ saveAll() : void
+ deleteNoteContentFile (String noteTitle, boolean isArchive) : void
+ noteExists (Note note, boolean isArchive) : boolean
- {static} getEventDetailsSaveFormat (Event event) : String
}
StorageManager --> "1" Timetable
StorageManager --> "1" Notebook
StorageManager --> "1" ParserManager
StorageManager --> "1" TagManager
@enduml |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.