blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 227 | content_id stringlengths 40 40 | detected_licenses listlengths 0 28 | license_type stringclasses 2 values | repo_name stringlengths 6 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 61 values | visit_date timestamp[us]date 2015-08-14 10:26:58 2023-09-06 07:53:38 | revision_date timestamp[us]date 2011-01-31 21:28:29 2023-09-05 14:54:58 | committer_date timestamp[us]date 2011-01-31 21:28:29 2023-09-05 14:54:58 | github_id int64 206k 631M ⌀ | star_events_count int64 0 108k | fork_events_count int64 0 34.4k | gha_license_id stringclasses 13 values | gha_event_created_at timestamp[us]date 2012-08-01 17:54:24 2023-09-14 21:57:05 ⌀ | gha_created_at timestamp[us]date 2009-05-21 02:09:00 2023-04-21 10:18:22 ⌀ | gha_language stringclasses 79 values | src_encoding stringclasses 12 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 8 1.29M | extension stringclasses 17 values | code stringlengths 8 1.29M | non_uml bool 1 class | uml bool 1 class | has_non_ascii bool 2 classes | has_non_latin bool 1 class | uml_subtype stringclasses 10 values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cf9caa27fd0786db026f896c21af39169a8b439c | e618e68be491bb98c0573a467be63146a053cc6c | /SA/sequencediagram/productstock/simple/CreateProductStock.puml | 6363c2c568cd8e33aa7e38942947753304176e50 | [] | no_license | dedeandress/belanjayukid-be-services | 14101c676e2bdd56c5df72b9ccddae648951cf8b | 9bedbf42cdd0b764e27c9dc839df8b401ac0bb62 | refs/heads/master | 2022-04-07T04:29:30.602535 | 2020-02-28T05:39:33 | 2020-02-28T05:39:33 | 194,123,362 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 926 | puml | @startuml
title: Create ProductStock Sequence Diagram
actor user
participant BelanjaYukFE
box "BelanjaYuk.id" #LightBlue
participant BelanjaYukBE
participant ProductStockService
end box
user -> BelanjaYukFE ++ : Create product stock menu
activate user
BelanjaYukFE -> BelanjaYukBE ++ : /graphql create product stock
note right of BelanjaYukFE
content type: application/json
request body:
mutation{
createProductStock(name): ProductStock
}
end note
BelanjaYukBE -> BelanjaYukBE : parseGraphql()
BelanjaYukBE -> ProductStockService ++ : call createProductStock()
note left
passing:
- context
- ProductStock(id: UUID, name: String, status: Boolean)
end note
ProductStockService --> BelanjaYukBE -- : ProductStock
BelanjaYukBE --> BelanjaYukFE -- : ProductStock
BelanjaYukFE --> user -- : create product stock successful and view product stock
deactivate user
@enduml | false | true | false | false | usecase |
2a7d413ec59b68edcec42f7f43c101ce27b007ab | 2c05781e3f3f455f813383f54eaa39d541e37a6a | /diagram/domain-diagram.plantuml | 5ab12db65e942fef8586f34011ac2942c514d970 | [] | no_license | lcalmsky/shop | 1c3728f46fea37b06cfaa159f5e36241ee35db42 | 6a9a096005dfdc0cbbcd6db68cbd463bcd46a60a | refs/heads/master | 2023-06-07T14:26:28.708582 | 2021-06-25T17:28:38 | 2021-06-25T17:28:39 | 376,308,226 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,165 | plantuml | @startuml
class Member {
+id: Long
+name: String
+address: Address
+orders: List
}
class Order {
+id: Long
+member: Member
+orderItems: List<OrderItem>
+delivery: Delivery
+orderDate: Date
+status: OrderStatus
}
class Delivery {
+id: Long
+order: Order
+address: Address
+status: DeliveryStatus
}
class OrderItem {
+id: Long
+item: item
+order: Order
+orderPrice: Integer
+count: Integer
}
class Category {
+id: Long
+name: String
+items: List<Item>
+parent: Category
+child: List<Category>
}
class Item {
+id: Long
+name: String
+price: Integer
+stockQuantity: Integer
+categories: List<Category>
}
class Album {
+artist: String
+etc: String
}
class Book {
+author: String
+isbn: String
}
class Movie {
+director: String
+actor: String
}
class Address <<value type>> {
+city: String
+street: String
+zipcode: String
}
Member "1..*" -down- Order
Order "1..*" - OrderItem
Order "1..1" -down- Delivery
OrderItem "*..1" - Item
Item "*..*" - Category
Album --|> Item
Movie --|> Item
Book --|> Item
@enduml
| false | true | false | false | class |
47a4e2a05b989eb4249ff72b98441122c039d9eb | 29e499c7049d725de515d0f0294f765b6bbb4dc3 | /DesignPattern/out/production/DesignPattern/com/ilike/responsibilitychain/OA.puml | c7a19edd68605650b40518fe849f2c138f029678 | [] | no_license | dongyuancaizi/designPatternLearning | 70dddd9d156fd3d4e9c07bb4f94f76820b625308 | 1fbde529b073b9a205bffd90607574754d6aac50 | refs/heads/master | 2020-07-04T05:13:23.384529 | 2019-11-19T13:09:10 | 2019-11-19T13:09:10 | 202,167,833 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 304 | puml | @startuml
abstract class Approver{
Approver approver;
void processRequest();
}
Approver<|-- DepartmentApprover
Approver<|-- CollegeApprover
Approver<|-- ViceSchoolMasterApprover
Approver<|-- SchoolMasterApprover
PurchaseRequest <--Approver
Client --> PurchaseRequest
Client --> Approver
@enduml | false | true | false | false | class |
b09fcccb43c0cfa12701384eb556c1eb44bf0736 | b78fe46d0492145fbd29f94731a841fa579651ea | /src/main/webapp/doc/repondreUneQuestion.puml | c31d3bb47cefad57b645690356515fac18e22c73 | [] | no_license | michel-plasse/siomassy2021 | 94a35a2607ccef3e4577a83ccffe921710f8a769 | 8afc0887ede9c88cc72d1b65210e921cda87a9a1 | refs/heads/master | 2023-05-05T04:37:47.986442 | 2021-05-25T00:19:06 | 2021-05-25T00:19:06 | 353,038,986 | 4 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,185 | puml | @startuml
' par défaut, les couches sont disposées dans l'ordre d'apparition
' nous utilison participant pour préciser qu'après Navigateur il y a Vue et non Controleur
participant Navigateur
participant Vue
Navigateur -> Controleur: POST /repondreQuestion\n avec idQuestion, reponse
Controleur -> Controleur: verifie idQuestion est entier\n reponse pas vide
Controleur -> Controleur: id du user en session
Controleur -> Dao: QuestionDao.insertReponse (idQuestion, idPersonne,reponse)
Dao -> SGBD: INSERT INTO reponses_question...
SGBD -> Dao: ok ou exception
Dao -> Controleur: ok ou exception
Controleur -> Navigateur: response.sendRedirect("reponsesQuestion")
Vue -> Navigateur: reponsesQuestion
@enduml
/' (commentaire sur plusieurs lignes, comme en Java, avec ' qui remplace *)
1ere étape
Créer le contrôleur et une vue minimale, et tester
Pour cela, créer une servlet MesCanauxServlet dans fr.siomassy2021.controller, avec
le chemin (utl) /mescanaux.
=> commit
2e étape
Mettre des canaux en dur dans le contrôleur,
et les afficher dans la JSP.
=> commit
3e étape
Appel de la Dao, qui construit la liste en dur
Le memberId est aussi mis en dur à 1
=> commit
'/
| false | true | true | false | sequence |
5c32fd5d0acb57cb49727f989db583463f98a94f | 04460473eaa41558adc49b93f488ba786903725b | /Complete.puml | 0a18d6513c294ec0a2460fa31dd7adf488a9d2a6 | [] | no_license | gmpvpc/gmpvpc-doc | 4ff53cbb0221a3f959c707467625e32e9652d41d | 9e2f01ba7f5afed7d8b82b2aae145dab6ea27a11 | refs/heads/master | 2020-03-28T07:37:36.415822 | 2018-06-11T14:28:59 | 2018-06-11T14:28:59 | 147,913,808 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,666 | puml | @startuml
package activities {
class LoginActivity {
-txtLogin: EditText[1]
-txtPassword: EditText[1]
-btnLogin: Button[1]
}
class MainActivity {
-btnTraining: Button[1]
-btnStatistics: Button[1]
-btnSettings: Button[1]
}
class SettingsActivity {
-txtPassword: EditText[1]
-txtRepeatPassword: EditText[1]
-btnSaveSettings: Button[1]
}
class TrainingActivity {
-btnDuration: RadioButton[1]
-btnSpeed: RadioButton[1]
-btnAccuracy: RadioButton[1]
}
class CalibrationActivity {
-btnCancel: Button[1]
}
class TrainingResultActivity {
-lblDate: TextView[1]
-lblTime: TextView[1]
-lblPunch: TextView[1]
-lblVelocity: TextView[1]
-lblAccuracy: TextView[1]
}
class GlobalStatsActivity {
-btnHistory: Button[1]
}
class HistoryActivity {
}
class AdminActivity {
-btnUsers: Button[1]
-btnGloves: Button[1]
-btnDojoSettings: Button[1]
}
}
package fragments {
class ChartFragment {
}
class UserListFragment {
-lstUsers: ListView[1]
}
class GloveListFragment {
-lstGloves: ListView[1]
}
class HistoryFragment {
-lstHistory: ListView[1]
}
class GlobalStatsFragment {
-lstGlobalStats: ListView[1]
}
TrainingResultActivity --> "1 -chartFragment" ChartFragment
AdminActivity --> "1 -gloveListFragment" GloveListFragment
AdminActivity --> "1 -userListFragment" UserListFragment
HistoryActivity --> "1 -historyFragment" HistoryFragment
GlobalStatsActivity --> "1 -globalStatsFragments" GlobalStatsFragment
}
package adapters {
class GlobalResultAdapter {
-{static}ITEM: int[1]
-{static}NAME: int[1]
-{static}POSITION: int[1]
-{static}RESULT: int[1]
-{static}TITLE: int[1]
}
class UserAdapter {
}
class GloveAdapter {
}
class HistoryAdapter {
}
GlobalStatsFragment --> "1 -globalResultAdapter" GlobalResultAdapter
UserListFragment --> "1 -userAdapter" UserAdapter
GloveListFragment --> "1 -gloveAdapter" GloveAdapter
HistoryFragment --> "1 -historyAdapter" HistoryAdapter
}
package managers {
package model {
class ClientManagerResult {
-result: Object[1]
-clazz: Class<?>[1]
}
enum TypeMethod {
CREATE,
UPDATE,
DELETE,
READ
}
}
interface ClientManagerListener {
+fireResponse(result: ClientManagerResult[1])
}
interface ClientManager {
+read(listener: ClientManagerListener[1], url: String[1])
+create(listener: ClientManagerListener[1], url: String[1])
+update(listener: ClientManagerListener[1], url: String[1])
+delete(listener: ClientManagerListener[1], url: String[1])
}
abstract class ClientManagerAsync implements ClientManager {
+read(listener: ClientManagerListener[1], url: String[1])
+create(listener: ClientManagerListener[1], url: String[1])
+update(listener: ClientManagerListener[1], url: String[1])
+delete(listener: ClientManagerListener[1], url: String[1])
#{abstract}get(url: String[1]): String[1]
#{abstract}post(url: String[1], ): String[1]
#{abstract}put(url: String[1]): String[1]
#{abstract}delete(url: String[1]): String[1]
}
class ClientAsyncTask {
-jsonObject: JSONObject[1]
#doInBackground(urls: String[0..*]): String[1]
#onPostExecute(result: String[1])
}
class HttpClientManager extends ClientManagerAsync {
-execute(request: HttpRequestBase[1]): String
-convertInputStreamToString(inputStream: InputStream[1]) : String[1]
}
class DojoManager <<Singleton>> {
}
ClientAsyncTask --> "1 -typeMethod" TypeMethod
ClientAsyncTask --> "1 -listener" ClientManagerListener
ClientManagerAsync ..> ClientAsyncTask
ClientManagerListener ..> ClientManagerResult
ClientManagerListener <.. ClientManager
DojoManager -up-> ClientManager
LoginActivity .up.> DojoManager : <<usage>>
MainActivity .up.> DojoManager : <<usage>>
SettingsActivity .up.> DojoManager : <<usage>>
TrainingActivity .up.> DojoManager : <<usage>>
CalibrationActivity .up.> DojoManager : <<usage>>
TrainingResultActivity ..up> DojoManager : <<usage>>
GlobalStatsActivity .up.> DojoManager : <<usage>>
HistoryActivity .up.> DojoManager : <<usage>>
AdminActivity .up.> DojoManager : <<usage>>
}
@enduml | false | true | false | false | class |
3b98fa5737a0183ff1dd116a782cc8e2ed891c7a | 4e22d261d7dcf5fe2731d77ba3cfb47c5568977c | /Documentation/Source/Breakdown/Engine/TempestEngine/Rendering/ShaderProgram-Class.iuml | b239dc0b9154791dbaba00053aac3d50e4d2c583 | [] | no_license | SeraphinaMJ/Reformed | 2d7424d6d38d1cfaf8d385fade474a27c02103a5 | 8563d35ab2b80ca403b3b57ad80db1173504cf55 | refs/heads/master | 2023-04-06T00:40:34.223840 | 2021-05-06T11:25:51 | 2021-05-06T11:25:51 | 364,884,928 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 70 | iuml | namespace Graphics::Rendering {
class ShaderProgram
}
| false | true | false | false | class |
df339d925af76ef104e1d3caa6fdecdb5a7d5430 | 500285fe250dffdbd79697ec5f2fa314e2e476ff | /doc/uml/00_context.puml | a1efa4a7b373686b0da7d82b8f7869ad3a5ee83e | [] | no_license | Zepmanbc/oc_dapython_pr8 | 47ac9745600a6c9357df4a7c613b656ac3b867c7 | 1009051f42688df06389f507d56eff1001507009 | refs/heads/master | 2020-04-30T02:31:27.009603 | 2019-04-29T20:59:49 | 2019-04-29T20:59:49 | 176,562,185 | 0 | 1 | null | 2019-04-13T15:53:12 | 2019-03-19T17:10:08 | CSS | UTF-8 | PlantUML | false | false | 213 | puml | @startuml 00_context
title Diagramme de contexte
rectangle pur_beurre
actor user
actor OpenFoofFacts <<system>>
actor Developpeur
user - pur_beurre
pur_beurre - OpenFoofFacts
pur_beurre -- Developpeur
@enduml | false | true | false | false | sequence |
7897cc9effdb0ff581d672f47532c390e5f18901 | f008b2b358bf10e40232d7fe30bf6363cf9ba0b2 | /app/UML/SSDViewPaletteDetails.puml | e18860deb1f4fddd3816382be290647359434870 | [] | no_license | zealousduck/PicYaPalette | 5b3913a15dbaa2d69fd27308f60ac26ebd0ce5db | f9be43e584bdd9cb2c4b33896ad01f961a60b2ce | refs/heads/master | 2020-05-17T04:54:44.255725 | 2015-05-03T18:27:37 | 2015-05-03T18:27:37 | 33,617,151 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 144 | puml | @startuml
User -> System: Select a palette from Favorites or Generated Palettes screens
System --> User: Display Palette Details screen
@enduml | false | true | false | false | sequence |
5029a6da5a1f4b5a344a780de5d659f030fd5d4f | 065da8d391be577d7fc71aa024ab81e35c39618b | /PlantUml/Dolphin.IO/FileEnumerator.puml | 739d93b455b3bfe39ae95bec1ee7247be809c514 | [] | no_license | leoshiang/Dolphin.CSharp | 1fc921ea04a4a721b49557748f7ca15f89f9e414 | 61438432f088c6b380356afdcba4c627985fa152 | refs/heads/master | 2023-04-17T03:59:19.871766 | 2023-03-30T02:03:42 | 2023-03-30T02:03:42 | 204,225,824 | 0 | 0 | null | 2022-12-08T04:32:20 | 2019-08-25T00:02:55 | C# | UTF-8 | PlantUML | false | false | 202 | puml | @startuml
class FileEnumerator {
+ FileEnumerator(fileSystem:IFileSystem)
+ FindFiles(directory:string, filter:ISearchFilter) : IEnumerable<string>
}
IFileEnumerator <|-- FileEnumerator
@enduml
| false | true | false | false | class |
d7a0c6aaaae6fa5ca0e4dd95e43a3574370b5dc8 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/availabilityAndPricingDiscovery/media/src/extension_pattern.puml | aea62a680300857bff8f3006337e31dfbf53e237 | [
"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 | 943 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
ClassBorderColor<<ProductSpecification>> FireBrick
}
set namespaceSeparator none
class ProductOfferingConfiguration {
installationInterval: Duration
productConfigurationIdentifier*: string
productOffering: ProductOfferingRef
}
ProductOfferingConfiguration *-->"1" MEFProductConfiguration : productConfiguration
class MEFProductConfiguration {
@type*: string <<discriminator>>
}
class urn:mef:lso:spec:sonata:access-eline-ovc:v5.0.0:all <<ProductSpecification>> {
<<... attributes are skipped ...>>
}
MEFProductConfiguration <|-- "urn:mef:lso:spec:sonata:access-eline-ovc:v5.0.0:all"
class urn:mef:lso:spec:sonata:carrier-ethernet-operator-uni:v5.0.0:all <<ProductSpecification>> {
<<... attributes are skipped ...>>
}
MEFProductConfiguration <|-- "urn:mef:lso:spec:sonata:carrier-ethernet-operator-uni:v5.0.0:all"
@enduml
| false | true | false | false | sequence |
b3df807a5221fea3c4ad00fb9bae7a3aa2c80d5d | cbb18ed5b97ea8436eb50e0f42c90662a78b48d0 | /Household-Model/src/main/java/de/applegreen/household/model/util/util.plantuml | 689d54325d1460485147f2c0e4423dd31aedabce | [] | no_license | alexApplegreen/household | b3b312dca2fc9d9f01cabcf152434c1164cf9efb | 991228fb76c0d624e4f6463b18b7503adb88bf6a | refs/heads/master | 2022-08-10T04:07:55.125362 | 2022-01-06T08:25:32 | 2022-01-06T08:25:32 | 234,955,001 | 0 | 1 | null | 2022-06-21T02:40:20 | 2020-01-19T19:41:02 | JavaScript | UTF-8 | PlantUML | false | false | 700 | plantuml | @startuml
title __UTIL's Class Diagram__\n
namespace de.applegreen.household.model {
namespace util {
class de.applegreen.household.model.util.ProbationDAO {
- month : LocalDateTime
- probationAlex : Double
- probationSophie : Double
+ ProbationDAO()
+ getMonth()
+ getProbationAlex()
+ getProbationSophie()
+ setMonth()
+ setProbationAlex()
+ setProbationSophie()
}
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
db5d627773513af9ce3f80ef187b8fe8c78f2c92 | 68b465c4da2f9378b84511d1e52e685615088466 | /ProyectoFinal/diagramas/secuenciales/AtaqueUsuario.plantuml | 3a21f658bd90101d35e0afdbbbaa0d112a6eced0 | [] | no_license | Vicroni/Modelado2020-4 | 470be04c19201219c23ced776aefbaf6da0c7003 | 13ee04f2e561ac9c669b12f364e70c3c5af31872 | refs/heads/master | 2022-12-22T06:45:30.350866 | 2020-09-29T15:24:12 | 2020-09-29T15:24:12 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 343 | plantuml | @startuml AtaqueUsuario
participant Usuario order 10
participant Comandante order 20
participant Soldado order 30
participant Enemigo order 40
Usuario -> Comandante : Ordena un ataque al enemigo
Comandante -> Soldado : Ordena un ataque al enemigo
Soldado -> Enemigo: Disminuye tu vida
Enemigo -> Enemigo: Disminuye su propia vida
@enduml | false | true | false | false | sequence |
6fc73de1c7b2659da98e77e39e95fa7cb8986aa1 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Animation/AnimationTrack.puml | c78270ea5ead9e7da3d1e455973885005cbfe030 | [] | 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 | 3,605 | puml | @startuml
enum MatchTargetFields {
PositionX= 1 << 0,
PositionY= 1 << 1,
PositionZ= 1 << 2,
RotationX= 1 << 3,
RotationY= 1 << 4,
RotationZ= 1 << 5,
}
enum TrackOffset {
ApplyTransformOffsets,
ApplySceneOffsets,
Auto,
}
enum AppliedOffsetMode {
NoRootTransform,
TransformOffset,
SceneOffset,
TransformOffsetLegacy,
SceneOffsetLegacy,
SceneOffsetEditor,
SceneOffsetLegacyEditor,
}
class MatchTargetFieldConstants <<static>> {
+ {static} HasAny(me:MatchTargetFields, fields:MatchTargetFields) : bool
+ {static} Toggle(me:MatchTargetFields, flag:MatchTargetFields) : MatchTargetFields
}
class AnimationTrack <<partial>> {
<<const>> k_DefaultInfiniteClipName : string = "Recorded"
<<const>> k_DefaultRecordableClipName : string = "Recorded"
m_InfiniteClipTimeOffset : double
m_InfiniteClipRemoveOffset : bool
m_InfiniteClipApplyFootIK : bool = true
m_ApplyAvatarMask : bool = true
+ applyOffsets : bool <<get>> <<set>>
+ applyAvatarMask : bool <<get>> <<set>>
+ inClipMode : bool <<get>>
ResetOffsets() : void
+ CreateClip(clip:AnimationClip) : TimelineClip
+ CreateInfiniteClip(infiniteClipName:string) : void
+ CreateRecordableClip(animClipName:string) : TimelineClip
CompileTrackPlayable(graph:PlayableGraph, track:TrackAsset, go:GameObject, tree:IntervalTree<RuntimeElement>, mode:AppliedOffsetMode) : Playable
CreateLayerMixer(graph:PlayableGraph, go:GameObject, inputCount:int) : Playable
RequiresMotionXPlayable(mode:AppliedOffsetMode, gameObject:GameObject) : bool
{static} UsesAbsoluteMotion(mode:AppliedOffsetMode) : bool
HasController(gameObject:GameObject) : bool
{static} CreateGroupMixer(graph:PlayableGraph, go:GameObject, inputCount:int) : AnimationLayerMixerPlayable
CreateInfiniteTrackPlayable(graph:PlayableGraph, go:GameObject, tree:IntervalTree<RuntimeElement>, mode:AppliedOffsetMode) : Playable
ApplyTrackOffset(graph:PlayableGraph, root:Playable, go:GameObject, mode:AppliedOffsetMode) : Playable
AssignAnimationClip(clip:TimelineClip, animClip:AnimationClip) : void
+ <<override>> GatherProperties(director:PlayableDirector, driver:IPropertyCollector) : void
GetOffsetMode(go:GameObject, animatesRootTransform:bool) : AppliedOffsetMode
}
class "IEnumerable`1"<T> {
}
MatchTargetFieldConstants o-> "All" MatchTargetFields
MatchTargetFieldConstants o-> "None" MatchTargetFields
MatchTargetFieldConstants o-> "Position" MatchTargetFields
MatchTargetFieldConstants o-> "Rotation" MatchTargetFields
TrackAsset <|-- AnimationTrack
ILayerable <|-- AnimationTrack
AnimationTrack o-> "m_InfiniteClipOffsetPosition" Vector3
AnimationTrack o-> "m_InfiniteClipOffsetEulerAngles" Vector3
AnimationTrack o-> "m_MatchTargetFields" MatchTargetFields
AnimationTrack o-> "m_Position" Vector3
AnimationTrack o-> "m_EulerAngles" Vector3
AnimationTrack --> "m_AvatarMask" AvatarMask
AnimationTrack o-> "m_TrackOffset" TrackOffset
AnimationTrack --> "m_InfiniteClip" AnimationClip
AnimationTrack --> "position" Vector3
AnimationTrack --> "rotation" Quaternion
AnimationTrack --> "eulerAngles" Vector3
AnimationTrack --> "trackOffset" TrackOffset
AnimationTrack --> "matchTargetFields" MatchTargetFields
AnimationTrack --> "infiniteClip" AnimationClip
AnimationTrack --> "avatarMask" AvatarMask
AnimationTrack --> "outputs<PlayableBinding>" "IEnumerable`1"
AnimationTrack --> "infiniteClipOffsetPosition" Vector3
AnimationTrack --> "infiniteClipOffsetRotation" Quaternion
AnimationTrack --> "infiniteClipOffsetEulerAngles" Vector3
@enduml
| false | true | false | false | class |
0161ab9b5bbbff53c419f4647d58f3d755a5b701 | 81894fcd984ad28d577fc09d0b1aafcb4df06c8c | /certificate-product-example.puml | dda850256f842fba3af95340150db8247f81f0b1 | [] | no_license | epcis-resources/epcis-erm | b1ede38c59c6d8349cfefdf8b067e1dc17c76913 | 592ca1e281ef333ec8529e50906ffb0c2580f8aa | refs/heads/master | 2023-08-14T19:46:07.779577 | 2020-12-17T15:01:11 | 2020-12-17T15:01:11 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,776 | puml | @startuml
class CertificateGrant1 {
a fsm:CertificateGrant
gs1-epcis:eventTime "2019-08-22"^^xsd:dateTime
gs1-epcis:recordTime "2020-12-02"xsd:dateTime
gs1-epcis:eventTimeZoneOffset "00"
gs1-epcis:eventID "certificate_grant2"
gs1-epcis:action <taxonomy/action_type/observe>
gs1-epcis:businessStep urn:epcglobal:cbv:bizstep:receiving
gs1-epcis:disposition urn:epcglobal:cbv:disp:active
}
class Organization1 {
a gs1:Organization
gs1:organizationName "NSE Products, Inc."
}
class TheIslamicFoodAndNutritionCouncilOfAmerica {
a fsm:CertificationBody
gs1:organizationName "The Islamic Food And Nutrition Council Of America"
}
class Halal_Certificate {
a fsm:Certificate
gs1:linkType https://www.nuskin.com/content/nuskin/en_MY/products/nu_skin/halal_certificate/_jcr_content/bodyContent/image_fef8.img.jpg/16eb5681485-cache.jpg
gs1:expirationDate "2021-03-31"^^xsd:date
}
class gtin/37003902 {
"https://id.gs1.org/gtin/37003902"
a gs1:Products
gs1:productName "ageLoc Body Shaping Gel"
}
class gtin/37003902/lot/1 {
a fsm:Batch
gs1:productName "ageLoc Body Shaping Gel"
gs1:hasBatchLotNumber "1"
}
CertificateGrant1 --> Organization1 : gs1-epcis:destination
CertificateGrant1 --> TheIslamicFoodAndNutritionCouncilOfAmerica : gs1-epcis:source
CertificateGrant1 --> Halal_Certificate : epc
Halal_Certificate --> "gtin/37003902" : fsm:product
"gtin/37003902/lot/1" -up-> "gtin/37003902" : fsm:product
@enduml | false | true | false | false | sequence |
e03b9c67f6dc2585d4d39ae5ea4e8db5ccef1cff | 8e8095d9bd1a6dba0dbdeb5589bdc4fa57c2f26b | /doc/sources/modules.puml | 1cb783f4074f21cd2895b561e2398fb0a332fa17 | [] | no_license | B1zDelNickus/prj-builder-src | c942bd08e419bd6775a6475cffd42229901b7b7b | ade4a483ef9e4560e49e4087cd32c20f595bbc87 | refs/heads/master | 2020-08-29T11:07:05.293930 | 2019-10-28T09:52:53 | 2019-10-28T09:52:53 | 218,014,551 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 776 | puml | @startuml
cloud "core" {
[sources-core]
[gson]
}
cloud "special"{
[databases]
[bus]
[ktor]
}
package "source" {
[test]
folder integration {
[model]<<maven>>
model-->core
test --> model
}
folder in {
[db]<<migration>>
[transport]
[agent]<<service>>
transport -> db
agent -> transport
in --> model
in .> special
}
folder out {
[provider]<<maven>>
[service]<<service>>
[client]<<maven>>
client ..> service : rest
service --> provider
provider ..> db
out .> special
out --> model
}
integration ..> test
in ..> test
out ..> test
}
@enduml | false | true | false | false | class |
78060a165c1cbc3c4477c35058f442d2c5adc7a6 | fefb59504b9a239c96d3100e1c14925f323bc14a | /docs/resources/new_cluster.plantuml | 953aab1ff7193c958c3b7ad1fa1eaa1b38d49f4a | [
"Apache-2.0"
] | permissive | fabric8-services/fabric8-cluster | 139c296b591ae251878f42d449aaf7d43dec02d8 | 9b56418804d4b315d72fc42401b2c1270324bcdc | refs/heads/master | 2020-03-26T07:11:22.422113 | 2020-02-25T23:28:49 | 2020-02-25T23:28:49 | 144,640,567 | 1 | 5 | Apache-2.0 | 2020-02-25T23:28:50 | 2018-08-13T22:34:56 | Go | UTF-8 | PlantUML | false | false | 613 | plantuml | @startuml
title Add new cluster
actor "OSIO user" as user
box "OSIO"
participant "UI\nuser settings page" as usersettings
participant "Auth Service" as auth
participant "Cluster Service" as cs
end box
box "OSD Cluster" #LightBlue
participant "cluster API" as cluster
end box
user -> usersettings : Add cluster API URL
group link OSIO - OSD accounts
usersettings -> auth : GET /token/link?for={clusterAPI}
auth --> cs : get cluster
auth <-- cs
auth --> cluster
cluster --> user : autenticate
cluster --> auth : {user_token}
auth -> cs : Create new identity_cluster\nPOST /clusters/identity
end
@enduml | false | true | false | false | sequence |
dda831a0e420f3ecac3d994cb44051cb2d788136 | e032dab934c4fa3ff55da94de2f15d246a4aed8c | /design-pattern/src/main/java/wr1ttenyu/f1nal/study/designpattern/pattern23/decorator/JdkDecoratorApply.puml | 40a20091f3c65bd69bcff4490affec63fa247792 | [] | no_license | wr1ttenyu/f1nal | 9d21aeb1ae14505fc2e9add9220f81719840f37f | fd27d32d2f877ea98c19d892d13df36a99059a46 | refs/heads/master | 2022-07-07T02:15:25.931532 | 2020-06-11T01:19:16 | 2020-06-11T01:19:16 | 207,061,707 | 0 | 0 | null | 2022-01-12T23:05:07 | 2019-09-08T04:31:27 | Java | UTF-8 | PlantUML | false | false | 416 | puml | @startuml
abstract class InputStream
class FileInputStream
class ByteArrayInputStream
class FilterInputStream
class DataInputStream
class BufferedInputStream
ByteArrayInputStream --|> InputStream
FileInputStream --|> InputStream
FilterInputStream --|> InputStream
DataInputStream --|> FilterInputStream
BufferedInputStream --|> FilterInputStream
class FilterInputStream {
#in:volatile InputStream
}
@enduml | false | true | false | false | class |
165e9de3c2012b100e1409d73251c196e9c8dc08 | 2674d2bfed6d4a96db1f1d40d19b237642d01ca7 | /docs/green/s1160696/sp2/design.puml | d7572ab57462ed3c73d08924179571fbe79c00f8 | [] | no_license | HugoFernandes2343/LAPR4_2017-2018 | 9c827075d64c92d89c05bb772f7e7c3192416803 | e1d4724d9995676ac1f25bed0e9c2884929c12bb | refs/heads/master | 2023-02-26T22:39:42.292967 | 2018-06-20T12:37:30 | 2018-06-20T12:37:30 | 336,568,975 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,092 | puml | @startuml
actor Actor
participant "WorkbookView" as WV
participant "Cell" as Cell
participant "RelationalOperator" as RO
participant "Language" as Language
participant "WorkbooksServiceImpl" as WS
participant "ConditionalFunctionController" as CFC
participant "ConditionalFormatExtension" as CFE
participant "BinaryOperationExtension" as BOE
Actor -> WV : press the Conditional Function button
WV ->Language : list=getBinaryOperators()
WV ->RO : getIdentifier()
WV -> Actor : asks to choose a formula(operator), a value, and style changes
Actor -> WV: select values and confirms the conditional format
WV -> WV : activecell= getActiveCell()
WV -> Cell : content= getContent()
WV -> WS : activateConditional(activeCellDTO, name, formula, value)
WS -> CFC : activateExtension(activeCellDTO, name, formula, value)
CFC -> CFE : new (name);
CFC -> CFE : extend(Cell);
CFC -> CFE : valueChanged(c);
CFE -> BOE : new (value, conOperator, condValue)
WV -> Cell : setStyle()
WV -> Actor : shows the conditional format applied in the cell selected
@enduml | false | true | false | false | usecase |
8b9d94021296f3e3a277999e0986f747c1901890 | c6fa8545978b664ac557f530c9b0fab84780d450 | /AbstractFactoryAndSingleton/docs/img/AF_SD.puml | efd16b09cae0277f6c28cd1bb27a0c7cbe32d4b2 | [] | no_license | rovany706/design-patterns | 1779eaf3fdea4b865d7160c46ba918fe0540342a | 79eb1e40ebe4e3eb5b3f00f7020bc5e85b0e8fc1 | refs/heads/master | 2020-12-14T15:35:25.922667 | 2020-04-15T09:02:51 | 2020-04-15T09:02:51 | 234,789,540 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 886 | puml | @startuml
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
}
activate Client
activate AbstractFactory
Client -> AbstractFactory: createFactory1
AbstractFactory -> ConcreteFactory1: new
activate ConcreteFactory1
AbstractFactory --> Client: return factory1
Client -> ConcreteFactory1: createProductA()
ConcreteFactory1 -> ProductA1: new
activate ProductA1
deactivate ConcreteFactory1
deactivate ProductA1
Client -> AbstractFactory: createFactory2
AbstractFactory -> ConcreteFactory2: new
activate ConcreteFactory2
AbstractFactory --> Client: return factory2
deactivate AbstractFactory
Client -> ConcreteFactory2: createProductA()
deactivate Client
ConcreteFactory2 -> ProductA2: new
activate ProductA2
deactivate ConcreteFactory2
deactivate ProductA2
@enduml | false | true | false | false | sequence |
4577785787bcd2906a84eb90b0ef6d55c78d3f67 | f0f016da328b1e084f18b2a73f0a6c1f479f22b6 | /app/src/main/model.puml | e43a47593baefa8d6a7766f49bcf0dab3d5d637c | [] | no_license | sofina/MyDemo | c4eb12c650cff4bf787e9f71a535cf14894b8bc8 | 28fcebfa18479b517eb679e4995a0a5085d85701 | refs/heads/master | 2020-04-08T21:43:34.045813 | 2018-12-05T04:22:22 | 2018-12-05T04:22:22 | 159,755,979 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 151 | puml | @startuml
package "Load" {
(Model)-right-> (Data)
note top of Model : input
(Data) -right-> (Resource)
note bottom of Resource : output
}
@enduml | false | true | false | false | uml-unknown |
cf8b3cfe7659fcb0276fe0a18bc0838d98411699 | 5eb340b2dbd94fc2483367ae3621c42340653d62 | /src/app/app.plantuml | dc3a032ab005bcf3bbe71e92f264d7544d331568 | [] | no_license | Lenard9999/MyFarm | 27159aee920c2b92bf789a4917e29b84c9fa55ca | af2866ea5496f598055459007cbe78b74f1ce44e | refs/heads/master | 2020-09-06T16:25:11.726294 | 2019-11-08T14:04:26 | 2019-11-08T14:04:26 | 220,478,402 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 77,282 | plantuml | @startuml
title __APP's Class Diagram__\n
package app {
class GameController {
- gameTimer : Timer
- task : TimerTask
- time : int
- period : int
- delay : int
- count : int
+ GameController()
+ addTime()
+ setText()
+ printStatus()
}
}
package app {
class GameWindow {
{static} - serialVersionUID : long
- bgIcon : ImageIcon
- bg : JLabel
- img : ImageIcon
- toolkit : Toolkit
- cursorimage : Image
- cursor : Cursor
+ GameWindow()
+ initGame()
+ playMusic()
+ addFont()
+ getPlayerPanel()
+ getInventoryPanel()
+ getLotPanel()
+ getShopPanel()
+ cursor()
}
}
class AccessibleJFrame {
# AccessibleJFrame()
+ getAccessibleName()
+ getAccessibleStateSet()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class AccessibleAWTFrame {
{static} - serialVersionUID : long
# AccessibleAWTFrame()
+ getAccessibleRole()
+ getAccessibleStateSet()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class AccessibleAWTWindow {
{static} - serialVersionUID : long
# AccessibleAWTWindow()
+ getAccessibleRole()
+ getAccessibleStateSet()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class WindowDisposerRecord {
~ owner : WeakReference<Window>
~ weakThis : WeakReference<Window>
~ context : WeakReference<AppContext>
~ WindowDisposerRecord()
+ updateOwner()
+ dispose()
}
enum Type {
NORMAL
UTILITY
POPUP
}
class AccessibleAWTContainer {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleContainerHandler : ContainerListener
# AccessibleAWTContainer()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getAccessibleAt()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class WakingRunnable {
~ WakingRunnable()
+ run()
}
class DropTargetEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- DropTargetEventTargetFilter()
+ accept()
}
class MouseEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- MouseEventTargetFilter()
+ accept()
}
interface EventTargetFilter {
{abstract} + accept()
}
abstract class AccessibleAWTComponent {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleAWTComponentHandler : ComponentListener
# accessibleAWTFocusHandler : FocusListener
# AccessibleAWTComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleParent()
+ getAccessibleIndexInParent()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getLocale()
+ getAccessibleComponent()
+ getBackground()
+ setBackground()
+ getForeground()
+ setForeground()
+ getCursor()
+ setCursor()
+ getFont()
+ setFont()
+ getFontMetrics()
+ isEnabled()
+ setEnabled()
+ isVisible()
+ setVisible()
+ isShowing()
+ contains()
+ getLocationOnScreen()
+ getLocation()
+ setLocation()
+ getBounds()
+ setBounds()
+ getSize()
+ setSize()
+ getAccessibleAt()
+ isFocusTraversable()
+ requestFocus()
+ addFocusListener()
+ removeFocusListener()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class DummyRequestFocusController {
- DummyRequestFocusController()
+ acceptRequestFocus()
}
class SingleBufferStrategy {
- caps : BufferCapabilities
+ SingleBufferStrategy()
+ getCapabilities()
+ getDrawGraphics()
+ contentsLost()
+ contentsRestored()
+ show()
}
class BltSubRegionBufferStrategy {
# BltSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class FlipSubRegionBufferStrategy {
# FlipSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class BltBufferStrategy {
# caps : BufferCapabilities
# backBuffers : VolatileImage[]
# validatedContents : boolean
# width : int
# height : int
- insets : Insets
# BltBufferStrategy()
+ dispose()
# createBackBuffers()
+ getCapabilities()
+ getDrawGraphics()
~ getBackBuffer()
+ show()
~ showSubRegion()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
}
class FlipBufferStrategy {
# numBuffers : int
# caps : BufferCapabilities
# drawBuffer : Image
# drawVBuffer : VolatileImage
# validatedContents : boolean
~ width : int
~ height : int
# FlipBufferStrategy()
# createBuffers()
- updateInternalBuffers()
# getBackBuffer()
# flip()
~ flipSubRegion()
# destroyBuffers()
+ getCapabilities()
+ getDrawGraphics()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
+ show()
~ showSubRegion()
+ dispose()
}
class ProxyCapabilities {
- orig : BufferCapabilities
- ProxyCapabilities()
}
enum VSyncType {
VSYNC_DEFAULT
VSYNC_ON
VSYNC_OFF
id
}
class FlipContents {
{static} - I_UNDEFINED : int
{static} - I_BACKGROUND : int
{static} - I_PRIOR : int
{static} - I_COPIED : int
{static} - NAMES : String[]
{static} + UNDEFINED : FlipContents
{static} + BACKGROUND : FlipContents
{static} + PRIOR : FlipContents
{static} + COPIED : FlipContents
- FlipContents()
}
enum BaselineResizeBehavior {
CONSTANT_ASCENT
CONSTANT_DESCENT
CENTER_OFFSET
OTHER
}
class AWTTreeLock {
~ AWTTreeLock()
}
package app {
class InventoryPanel {
{static} - serialVersionUID : long
- background : Image
- buyFrame : ImageIcon
- buyFrameHov : ImageIcon
- buyTitle : JButton
- boughtTitle : int
- ml : MouseListener
- pickIcon : ImageIcon
- waterIcon : ImageIcon
- hoeIcon : ImageIcon
- fertIcon : ImageIcon
- handIcon : ImageIcon
- turnipIcon : ImageIcon
- carrotIcon : ImageIcon
- tomatoIcon : ImageIcon
- potatoIcon : ImageIcon
- roseIcon : ImageIcon
- tulipIcon : ImageIcon
- sgIcon : ImageIcon
- sunflowerIcon : ImageIcon
- mangoIcon : ImageIcon
- appleIcon : ImageIcon
- bananaIcon : ImageIcon
- orangeIcon : ImageIcon
- pickIconhov : ImageIcon
- waterIconhov : ImageIcon
- hoeIconhov : ImageIcon
- fertIconhov : ImageIcon
- handIconhov : ImageIcon
- turnipIconhov : ImageIcon
- carrotIconhov : ImageIcon
- tomatoIconhov : ImageIcon
- potatoIconhov : ImageIcon
- roseIconhov : ImageIcon
- tulipIconhov : ImageIcon
- sgIconhov : ImageIcon
- sunflowerIconhov : ImageIcon
- mangoIconhov : ImageIcon
- appleIconhov : ImageIcon
- bananaIconhov : ImageIcon
- orangeIconhov : ImageIcon
- usePick : JButton
- useWater : JButton
- useHoe : JButton
- useHand : JButton
- turnip : JButton
- carrot : JButton
- tomato : JButton
- potato : JButton
- rose : JButton
- tulip : JButton
- stargazer : JButton
- sunflower : JButton
- mango : JButton
- apple : JButton
- banana : JButton
- orange : JButton
- fertilizer : JButton
- fertQuant : JLabel
- turnipQuant : JLabel
- carrotQuant : JLabel
- tomatoQuant : JLabel
- potatoQuant : JLabel
- roseQuant : JLabel
- tulipQuant : JLabel
- stargazerQuant : JLabel
- sunflowerQuant : JLabel
- mangoQuant : JLabel
- appleQuant : JLabel
- bananaQuant : JLabel
- orangeQuant : JLabel
- mode : JLabel
- itemChoice : int
+ paintComponent()
+ InventoryPanel()
+ actionPerformed()
+ getBuyTitleButton()
+ getML()
+ getBuyIndicator()
+ setBuyIndicator()
+ getViewChoice()
+ setModeText()
+ setItemChoice()
+ setFertQuant()
+ setTurnipQuant()
+ setCarrotQuant()
+ setTomatoQuant()
+ setPotatoQuant()
+ setRoseQuant()
+ setTulipQuant()
+ setStargazerQuant()
+ setSunflowerQuant()
+ setMangoQuant()
+ setAppleQuant()
+ setBananaQuant()
+ setOrangeQuant()
+ getHoe()
}
}
class AccessibleJPanel {
# AccessibleJPanel()
+ getAccessibleRole()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class ReadObjectCallback {
- roots : Vector<JComponent>
- inputStream : ObjectInputStream
~ ReadObjectCallback()
+ validateObject()
- registerComponent()
}
abstract class AccessibleJComponent {
- propertyListenersCount : int
# accessibleFocusHandler : FocusListener
# AccessibleJComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
# getBorderTitle()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
~ getAccessibleExtendedComponent()
+ getToolTipText()
+ getTitledBorderText()
+ getAccessibleKeyBinding()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class KeyboardState {
{static} - keyCodesKey : Object
~ KeyboardState()
{static} ~ getKeyCodeArray()
{static} ~ registerKeyPressed()
{static} ~ registerKeyReleased()
{static} ~ keyIsPressed()
{static} ~ shouldProcess()
}
class IntVector {
~ array : int[]
~ count : int
~ capacity : int
~ IntVector()
~ size()
~ elementAt()
~ addElement()
~ setElementAt()
}
class ActionStandin {
- actionListener : ActionListener
- command : String
- action : Action
~ ActionStandin()
+ getValue()
+ isEnabled()
+ actionPerformed()
+ putValue()
+ setEnabled()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleAWTContainer {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleContainerHandler : ContainerListener
# AccessibleAWTContainer()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getAccessibleAt()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class WakingRunnable {
~ WakingRunnable()
+ run()
}
class DropTargetEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- DropTargetEventTargetFilter()
+ accept()
}
class MouseEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- MouseEventTargetFilter()
+ accept()
}
interface EventTargetFilter {
{abstract} + accept()
}
abstract class AccessibleAWTComponent {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleAWTComponentHandler : ComponentListener
# accessibleAWTFocusHandler : FocusListener
# AccessibleAWTComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleParent()
+ getAccessibleIndexInParent()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getLocale()
+ getAccessibleComponent()
+ getBackground()
+ setBackground()
+ getForeground()
+ setForeground()
+ getCursor()
+ setCursor()
+ getFont()
+ setFont()
+ getFontMetrics()
+ isEnabled()
+ setEnabled()
+ isVisible()
+ setVisible()
+ isShowing()
+ contains()
+ getLocationOnScreen()
+ getLocation()
+ setLocation()
+ getBounds()
+ setBounds()
+ getSize()
+ setSize()
+ getAccessibleAt()
+ isFocusTraversable()
+ requestFocus()
+ addFocusListener()
+ removeFocusListener()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class DummyRequestFocusController {
- DummyRequestFocusController()
+ acceptRequestFocus()
}
class SingleBufferStrategy {
- caps : BufferCapabilities
+ SingleBufferStrategy()
+ getCapabilities()
+ getDrawGraphics()
+ contentsLost()
+ contentsRestored()
+ show()
}
class BltSubRegionBufferStrategy {
# BltSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class FlipSubRegionBufferStrategy {
# FlipSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class BltBufferStrategy {
# caps : BufferCapabilities
# backBuffers : VolatileImage[]
# validatedContents : boolean
# width : int
# height : int
- insets : Insets
# BltBufferStrategy()
+ dispose()
# createBackBuffers()
+ getCapabilities()
+ getDrawGraphics()
~ getBackBuffer()
+ show()
~ showSubRegion()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
}
class FlipBufferStrategy {
# numBuffers : int
# caps : BufferCapabilities
# drawBuffer : Image
# drawVBuffer : VolatileImage
# validatedContents : boolean
~ width : int
~ height : int
# FlipBufferStrategy()
# createBuffers()
- updateInternalBuffers()
# getBackBuffer()
# flip()
~ flipSubRegion()
# destroyBuffers()
+ getCapabilities()
+ getDrawGraphics()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
+ show()
~ showSubRegion()
+ dispose()
}
class ProxyCapabilities {
- orig : BufferCapabilities
- ProxyCapabilities()
}
enum VSyncType {
VSYNC_DEFAULT
VSYNC_ON
VSYNC_OFF
id
}
class FlipContents {
{static} - I_UNDEFINED : int
{static} - I_BACKGROUND : int
{static} - I_PRIOR : int
{static} - I_COPIED : int
{static} - NAMES : String[]
{static} + UNDEFINED : FlipContents
{static} + BACKGROUND : FlipContents
{static} + PRIOR : FlipContents
{static} + COPIED : FlipContents
- FlipContents()
}
enum BaselineResizeBehavior {
CONSTANT_ASCENT
CONSTANT_DESCENT
CENTER_OFFSET
OTHER
}
class AWTTreeLock {
~ AWTTreeLock()
}
package app {
class LotPanel {
{static} - serialVersionUID : long
- grass : ImageIcon
- plowed : ImageIcon
- plowedWithSeed : ImageIcon
- rock : ImageIcon
- max : ImageIcon
- deads : ImageIcon
- watered : ImageIcon
- wateredSeed : ImageIcon
- tiles : ArrayList<JButton>
- tileChoice : int
+ LotPanel()
+ actionPerformed()
+ getTileChoice()
+ setChoice()
+ updateTileIcon()
}
}
class AccessibleJPanel {
# AccessibleJPanel()
+ getAccessibleRole()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class ReadObjectCallback {
- roots : Vector<JComponent>
- inputStream : ObjectInputStream
~ ReadObjectCallback()
+ validateObject()
- registerComponent()
}
abstract class AccessibleJComponent {
- propertyListenersCount : int
# accessibleFocusHandler : FocusListener
# AccessibleJComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
# getBorderTitle()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
~ getAccessibleExtendedComponent()
+ getToolTipText()
+ getTitledBorderText()
+ getAccessibleKeyBinding()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class KeyboardState {
{static} - keyCodesKey : Object
~ KeyboardState()
{static} ~ getKeyCodeArray()
{static} ~ registerKeyPressed()
{static} ~ registerKeyReleased()
{static} ~ keyIsPressed()
{static} ~ shouldProcess()
}
class IntVector {
~ array : int[]
~ count : int
~ capacity : int
~ IntVector()
~ size()
~ elementAt()
~ addElement()
~ setElementAt()
}
class ActionStandin {
- actionListener : ActionListener
- command : String
- action : Action
~ ActionStandin()
+ getValue()
+ isEnabled()
+ actionPerformed()
+ putValue()
+ setEnabled()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleAWTContainer {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleContainerHandler : ContainerListener
# AccessibleAWTContainer()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getAccessibleAt()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class WakingRunnable {
~ WakingRunnable()
+ run()
}
class DropTargetEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- DropTargetEventTargetFilter()
+ accept()
}
class MouseEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- MouseEventTargetFilter()
+ accept()
}
interface EventTargetFilter {
{abstract} + accept()
}
abstract class AccessibleAWTComponent {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleAWTComponentHandler : ComponentListener
# accessibleAWTFocusHandler : FocusListener
# AccessibleAWTComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleParent()
+ getAccessibleIndexInParent()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getLocale()
+ getAccessibleComponent()
+ getBackground()
+ setBackground()
+ getForeground()
+ setForeground()
+ getCursor()
+ setCursor()
+ getFont()
+ setFont()
+ getFontMetrics()
+ isEnabled()
+ setEnabled()
+ isVisible()
+ setVisible()
+ isShowing()
+ contains()
+ getLocationOnScreen()
+ getLocation()
+ setLocation()
+ getBounds()
+ setBounds()
+ getSize()
+ setSize()
+ getAccessibleAt()
+ isFocusTraversable()
+ requestFocus()
+ addFocusListener()
+ removeFocusListener()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class DummyRequestFocusController {
- DummyRequestFocusController()
+ acceptRequestFocus()
}
class SingleBufferStrategy {
- caps : BufferCapabilities
+ SingleBufferStrategy()
+ getCapabilities()
+ getDrawGraphics()
+ contentsLost()
+ contentsRestored()
+ show()
}
class BltSubRegionBufferStrategy {
# BltSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class FlipSubRegionBufferStrategy {
# FlipSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class BltBufferStrategy {
# caps : BufferCapabilities
# backBuffers : VolatileImage[]
# validatedContents : boolean
# width : int
# height : int
- insets : Insets
# BltBufferStrategy()
+ dispose()
# createBackBuffers()
+ getCapabilities()
+ getDrawGraphics()
~ getBackBuffer()
+ show()
~ showSubRegion()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
}
class FlipBufferStrategy {
# numBuffers : int
# caps : BufferCapabilities
# drawBuffer : Image
# drawVBuffer : VolatileImage
# validatedContents : boolean
~ width : int
~ height : int
# FlipBufferStrategy()
# createBuffers()
- updateInternalBuffers()
# getBackBuffer()
# flip()
~ flipSubRegion()
# destroyBuffers()
+ getCapabilities()
+ getDrawGraphics()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
+ show()
~ showSubRegion()
+ dispose()
}
class ProxyCapabilities {
- orig : BufferCapabilities
- ProxyCapabilities()
}
enum VSyncType {
VSYNC_DEFAULT
VSYNC_ON
VSYNC_OFF
id
}
class FlipContents {
{static} - I_UNDEFINED : int
{static} - I_BACKGROUND : int
{static} - I_PRIOR : int
{static} - I_COPIED : int
{static} - NAMES : String[]
{static} + UNDEFINED : FlipContents
{static} + BACKGROUND : FlipContents
{static} + PRIOR : FlipContents
{static} + COPIED : FlipContents
- FlipContents()
}
enum BaselineResizeBehavior {
CONSTANT_ASCENT
CONSTANT_DESCENT
CENTER_OFFSET
OTHER
}
class AWTTreeLock {
~ AWTTreeLock()
}
package app {
class Menu {
{static} - serialVersionUID : long
- startGame : ImageIcon
- exit : ImageIcon
- hovS : ImageIcon
- hovE : ImageIcon
- img : ImageIcon
- clip : Clip
- weIcon : ImageIcon
- we : JLabel
- logoIcon : ImageIcon
- logo : JLabel
- bgIcon : ImageIcon
- bg : JLabel
- startBtn : JButton
- extBtn : JButton
+ Menu()
+ actionPerformed()
+ printMenu()
+ playMenuMusic()
{static} + main()
}
}
class AccessibleJFrame {
# AccessibleJFrame()
+ getAccessibleName()
+ getAccessibleStateSet()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class AccessibleAWTFrame {
{static} - serialVersionUID : long
# AccessibleAWTFrame()
+ getAccessibleRole()
+ getAccessibleStateSet()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class AccessibleAWTWindow {
{static} - serialVersionUID : long
# AccessibleAWTWindow()
+ getAccessibleRole()
+ getAccessibleStateSet()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class WindowDisposerRecord {
~ owner : WeakReference<Window>
~ weakThis : WeakReference<Window>
~ context : WeakReference<AppContext>
~ WindowDisposerRecord()
+ updateOwner()
+ dispose()
}
enum Type {
NORMAL
UTILITY
POPUP
}
class AccessibleAWTContainer {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleContainerHandler : ContainerListener
# AccessibleAWTContainer()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getAccessibleAt()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class WakingRunnable {
~ WakingRunnable()
+ run()
}
class DropTargetEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- DropTargetEventTargetFilter()
+ accept()
}
class MouseEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- MouseEventTargetFilter()
+ accept()
}
interface EventTargetFilter {
{abstract} + accept()
}
abstract class AccessibleAWTComponent {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleAWTComponentHandler : ComponentListener
# accessibleAWTFocusHandler : FocusListener
# AccessibleAWTComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleParent()
+ getAccessibleIndexInParent()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getLocale()
+ getAccessibleComponent()
+ getBackground()
+ setBackground()
+ getForeground()
+ setForeground()
+ getCursor()
+ setCursor()
+ getFont()
+ setFont()
+ getFontMetrics()
+ isEnabled()
+ setEnabled()
+ isVisible()
+ setVisible()
+ isShowing()
+ contains()
+ getLocationOnScreen()
+ getLocation()
+ setLocation()
+ getBounds()
+ setBounds()
+ getSize()
+ setSize()
+ getAccessibleAt()
+ isFocusTraversable()
+ requestFocus()
+ addFocusListener()
+ removeFocusListener()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class DummyRequestFocusController {
- DummyRequestFocusController()
+ acceptRequestFocus()
}
class SingleBufferStrategy {
- caps : BufferCapabilities
+ SingleBufferStrategy()
+ getCapabilities()
+ getDrawGraphics()
+ contentsLost()
+ contentsRestored()
+ show()
}
class BltSubRegionBufferStrategy {
# BltSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class FlipSubRegionBufferStrategy {
# FlipSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class BltBufferStrategy {
# caps : BufferCapabilities
# backBuffers : VolatileImage[]
# validatedContents : boolean
# width : int
# height : int
- insets : Insets
# BltBufferStrategy()
+ dispose()
# createBackBuffers()
+ getCapabilities()
+ getDrawGraphics()
~ getBackBuffer()
+ show()
~ showSubRegion()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
}
class FlipBufferStrategy {
# numBuffers : int
# caps : BufferCapabilities
# drawBuffer : Image
# drawVBuffer : VolatileImage
# validatedContents : boolean
~ width : int
~ height : int
# FlipBufferStrategy()
# createBuffers()
- updateInternalBuffers()
# getBackBuffer()
# flip()
~ flipSubRegion()
# destroyBuffers()
+ getCapabilities()
+ getDrawGraphics()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
+ show()
~ showSubRegion()
+ dispose()
}
class ProxyCapabilities {
- orig : BufferCapabilities
- ProxyCapabilities()
}
enum VSyncType {
VSYNC_DEFAULT
VSYNC_ON
VSYNC_OFF
id
}
class FlipContents {
{static} - I_UNDEFINED : int
{static} - I_BACKGROUND : int
{static} - I_PRIOR : int
{static} - I_COPIED : int
{static} - NAMES : String[]
{static} + UNDEFINED : FlipContents
{static} + BACKGROUND : FlipContents
{static} + PRIOR : FlipContents
{static} + COPIED : FlipContents
- FlipContents()
}
enum BaselineResizeBehavior {
CONSTANT_ASCENT
CONSTANT_DESCENT
CENTER_OFFSET
OTHER
}
class AWTTreeLock {
~ AWTTreeLock()
}
package app {
class PlayerPanel {
{static} - serialVersionUID : long
- background : Image
- icon : ImageIcon
- divideIcon : ImageIcon
- time : JLabel
- title : JLabel
- coins : JLabel
- level : JLabel
- xp : JLabel
- item : JLabel
- description : JLabel
- tileStatus : JLabel
- promptText : JLabel
- coinIcon : JLabel
- divide : JLabel
- prompt : int
+ PlayerPanel()
+ getPrompt()
+ setPrompt()
+ setPromptText()
+ setTileStatus()
+ setDescription()
+ setXP()
+ setTime()
+ setTitle()
+ setCoins()
+ setLevel()
+ setCurrentinHand()
+ paintComponent()
}
}
class AccessibleJPanel {
# AccessibleJPanel()
+ getAccessibleRole()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class ReadObjectCallback {
- roots : Vector<JComponent>
- inputStream : ObjectInputStream
~ ReadObjectCallback()
+ validateObject()
- registerComponent()
}
abstract class AccessibleJComponent {
- propertyListenersCount : int
# accessibleFocusHandler : FocusListener
# AccessibleJComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
# getBorderTitle()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
~ getAccessibleExtendedComponent()
+ getToolTipText()
+ getTitledBorderText()
+ getAccessibleKeyBinding()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class KeyboardState {
{static} - keyCodesKey : Object
~ KeyboardState()
{static} ~ getKeyCodeArray()
{static} ~ registerKeyPressed()
{static} ~ registerKeyReleased()
{static} ~ keyIsPressed()
{static} ~ shouldProcess()
}
class IntVector {
~ array : int[]
~ count : int
~ capacity : int
~ IntVector()
~ size()
~ elementAt()
~ addElement()
~ setElementAt()
}
class ActionStandin {
- actionListener : ActionListener
- command : String
- action : Action
~ ActionStandin()
+ getValue()
+ isEnabled()
+ actionPerformed()
+ putValue()
+ setEnabled()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleAWTContainer {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleContainerHandler : ContainerListener
# AccessibleAWTContainer()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getAccessibleAt()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class WakingRunnable {
~ WakingRunnable()
+ run()
}
class DropTargetEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- DropTargetEventTargetFilter()
+ accept()
}
class MouseEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- MouseEventTargetFilter()
+ accept()
}
interface EventTargetFilter {
{abstract} + accept()
}
abstract class AccessibleAWTComponent {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleAWTComponentHandler : ComponentListener
# accessibleAWTFocusHandler : FocusListener
# AccessibleAWTComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleParent()
+ getAccessibleIndexInParent()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getLocale()
+ getAccessibleComponent()
+ getBackground()
+ setBackground()
+ getForeground()
+ setForeground()
+ getCursor()
+ setCursor()
+ getFont()
+ setFont()
+ getFontMetrics()
+ isEnabled()
+ setEnabled()
+ isVisible()
+ setVisible()
+ isShowing()
+ contains()
+ getLocationOnScreen()
+ getLocation()
+ setLocation()
+ getBounds()
+ setBounds()
+ getSize()
+ setSize()
+ getAccessibleAt()
+ isFocusTraversable()
+ requestFocus()
+ addFocusListener()
+ removeFocusListener()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class DummyRequestFocusController {
- DummyRequestFocusController()
+ acceptRequestFocus()
}
class SingleBufferStrategy {
- caps : BufferCapabilities
+ SingleBufferStrategy()
+ getCapabilities()
+ getDrawGraphics()
+ contentsLost()
+ contentsRestored()
+ show()
}
class BltSubRegionBufferStrategy {
# BltSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class FlipSubRegionBufferStrategy {
# FlipSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class BltBufferStrategy {
# caps : BufferCapabilities
# backBuffers : VolatileImage[]
# validatedContents : boolean
# width : int
# height : int
- insets : Insets
# BltBufferStrategy()
+ dispose()
# createBackBuffers()
+ getCapabilities()
+ getDrawGraphics()
~ getBackBuffer()
+ show()
~ showSubRegion()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
}
class FlipBufferStrategy {
# numBuffers : int
# caps : BufferCapabilities
# drawBuffer : Image
# drawVBuffer : VolatileImage
# validatedContents : boolean
~ width : int
~ height : int
# FlipBufferStrategy()
# createBuffers()
- updateInternalBuffers()
# getBackBuffer()
# flip()
~ flipSubRegion()
# destroyBuffers()
+ getCapabilities()
+ getDrawGraphics()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
+ show()
~ showSubRegion()
+ dispose()
}
class ProxyCapabilities {
- orig : BufferCapabilities
- ProxyCapabilities()
}
enum VSyncType {
VSYNC_DEFAULT
VSYNC_ON
VSYNC_OFF
id
}
class FlipContents {
{static} - I_UNDEFINED : int
{static} - I_BACKGROUND : int
{static} - I_PRIOR : int
{static} - I_COPIED : int
{static} - NAMES : String[]
{static} + UNDEFINED : FlipContents
{static} + BACKGROUND : FlipContents
{static} + PRIOR : FlipContents
{static} + COPIED : FlipContents
- FlipContents()
}
enum BaselineResizeBehavior {
CONSTANT_ASCENT
CONSTANT_DESCENT
CENTER_OFFSET
OTHER
}
class AWTTreeLock {
~ AWTTreeLock()
}
package app {
class ShopPanel {
{static} - serialVersionUID : long
- background : Image
- turnipIcon : ImageIcon
- carrotIcon : ImageIcon
- tomatoIcon : ImageIcon
- potatoIcon : ImageIcon
- roseIcon : ImageIcon
- tulipIcon : ImageIcon
- sgIcon : ImageIcon
- sunflowerIcon : ImageIcon
- mangoIcon : ImageIcon
- appleIcon : ImageIcon
- bananaIcon : ImageIcon
- orangeIcon : ImageIcon
- fertilizerIcon : ImageIcon
- turnipIconhov : ImageIcon
- carrotIconhov : ImageIcon
- tomatoIconhov : ImageIcon
- potatoIconhov : ImageIcon
- roseIconhov : ImageIcon
- tulipIconhov : ImageIcon
- sgIconhov : ImageIcon
- sunflowerIconhov : ImageIcon
- mangoIconhov : ImageIcon
- appleIconhov : ImageIcon
- bananaIconhov : ImageIcon
- orangeIconhov : ImageIcon
- fertilizerIconhov : ImageIcon
- turnip : JButton
- carrot : JButton
- tomato : JButton
- potato : JButton
- rose : JButton
- tulip : JButton
- stargazer : JButton
- sunflower : JButton
- mango : JButton
- apple : JButton
- banana : JButton
- orange : JButton
- fertilizer : JButton
- buyChoice : int
+ ShopPanel()
+ actionPerformed()
+ paintComponent()
+ setBuyChoice()
+ getBuyChoice()
+ addMouseListeners()
}
}
class AccessibleJPanel {
# AccessibleJPanel()
+ getAccessibleRole()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class ReadObjectCallback {
- roots : Vector<JComponent>
- inputStream : ObjectInputStream
~ ReadObjectCallback()
+ validateObject()
- registerComponent()
}
abstract class AccessibleJComponent {
- propertyListenersCount : int
# accessibleFocusHandler : FocusListener
# AccessibleJComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
# getBorderTitle()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
~ getAccessibleExtendedComponent()
+ getToolTipText()
+ getTitledBorderText()
+ getAccessibleKeyBinding()
}
class AccessibleFocusHandler {
# AccessibleFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class KeyboardState {
{static} - keyCodesKey : Object
~ KeyboardState()
{static} ~ getKeyCodeArray()
{static} ~ registerKeyPressed()
{static} ~ registerKeyReleased()
{static} ~ keyIsPressed()
{static} ~ shouldProcess()
}
class IntVector {
~ array : int[]
~ count : int
~ capacity : int
~ IntVector()
~ size()
~ elementAt()
~ addElement()
~ setElementAt()
}
class ActionStandin {
- actionListener : ActionListener
- command : String
- action : Action
~ ActionStandin()
+ getValue()
+ isEnabled()
+ actionPerformed()
+ putValue()
+ setEnabled()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleAWTContainer {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleContainerHandler : ContainerListener
# AccessibleAWTContainer()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getAccessibleAt()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
}
class AccessibleContainerHandler {
# AccessibleContainerHandler()
+ componentAdded()
+ componentRemoved()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class WakingRunnable {
~ WakingRunnable()
+ run()
}
class DropTargetEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- DropTargetEventTargetFilter()
+ accept()
}
class MouseEventTargetFilter {
{static} ~ FILTER : EventTargetFilter
- MouseEventTargetFilter()
+ accept()
}
interface EventTargetFilter {
{abstract} + accept()
}
abstract class AccessibleAWTComponent {
{static} - serialVersionUID : long
- propertyListenersCount : int
# accessibleAWTComponentHandler : ComponentListener
# accessibleAWTFocusHandler : FocusListener
# AccessibleAWTComponent()
+ addPropertyChangeListener()
+ removePropertyChangeListener()
+ getAccessibleName()
+ getAccessibleDescription()
+ getAccessibleRole()
+ getAccessibleStateSet()
+ getAccessibleParent()
+ getAccessibleIndexInParent()
+ getAccessibleChildrenCount()
+ getAccessibleChild()
+ getLocale()
+ getAccessibleComponent()
+ getBackground()
+ setBackground()
+ getForeground()
+ setForeground()
+ getCursor()
+ setCursor()
+ getFont()
+ setFont()
+ getFontMetrics()
+ isEnabled()
+ setEnabled()
+ isVisible()
+ setVisible()
+ isShowing()
+ contains()
+ getLocationOnScreen()
+ getLocation()
+ setLocation()
+ getBounds()
+ setBounds()
+ getSize()
+ setSize()
+ getAccessibleAt()
+ isFocusTraversable()
+ requestFocus()
+ addFocusListener()
+ removeFocusListener()
}
class AccessibleAWTFocusHandler {
# AccessibleAWTFocusHandler()
+ focusGained()
+ focusLost()
}
class AccessibleAWTComponentHandler {
# AccessibleAWTComponentHandler()
+ componentHidden()
+ componentShown()
+ componentMoved()
+ componentResized()
}
class DummyRequestFocusController {
- DummyRequestFocusController()
+ acceptRequestFocus()
}
class SingleBufferStrategy {
- caps : BufferCapabilities
+ SingleBufferStrategy()
+ getCapabilities()
+ getDrawGraphics()
+ contentsLost()
+ contentsRestored()
+ show()
}
class BltSubRegionBufferStrategy {
# BltSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class FlipSubRegionBufferStrategy {
# FlipSubRegionBufferStrategy()
+ show()
+ showIfNotLost()
}
class BltBufferStrategy {
# caps : BufferCapabilities
# backBuffers : VolatileImage[]
# validatedContents : boolean
# width : int
# height : int
- insets : Insets
# BltBufferStrategy()
+ dispose()
# createBackBuffers()
+ getCapabilities()
+ getDrawGraphics()
~ getBackBuffer()
+ show()
~ showSubRegion()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
}
class FlipBufferStrategy {
# numBuffers : int
# caps : BufferCapabilities
# drawBuffer : Image
# drawVBuffer : VolatileImage
# validatedContents : boolean
~ width : int
~ height : int
# FlipBufferStrategy()
# createBuffers()
- updateInternalBuffers()
# getBackBuffer()
# flip()
~ flipSubRegion()
# destroyBuffers()
+ getCapabilities()
+ getDrawGraphics()
# revalidate()
~ revalidate()
+ contentsLost()
+ contentsRestored()
+ show()
~ showSubRegion()
+ dispose()
}
class ProxyCapabilities {
- orig : BufferCapabilities
- ProxyCapabilities()
}
enum VSyncType {
VSYNC_DEFAULT
VSYNC_ON
VSYNC_OFF
id
}
class FlipContents {
{static} - I_UNDEFINED : int
{static} - I_BACKGROUND : int
{static} - I_PRIOR : int
{static} - I_COPIED : int
{static} - NAMES : String[]
{static} + UNDEFINED : FlipContents
{static} + BACKGROUND : FlipContents
{static} + PRIOR : FlipContents
{static} + COPIED : FlipContents
- FlipContents()
}
enum BaselineResizeBehavior {
CONSTANT_ASCENT
CONSTANT_DESCENT
CENTER_OFFSET
OTHER
}
class AWTTreeLock {
~ AWTTreeLock()
}
GameController o-- GameWindow : window
GameController o-- Game : model
GameWindow -up-|> JFrame
GameWindow o-- PlayerPanel : player
GameWindow o-- LotPanel : lot
GameWindow o-- InventoryPanel : inventory
GameWindow o-- ShopPanel : shop
GameWindow +-down- AccessibleJFrame
GameWindow +-down- AccessibleAWTFrame
GameWindow +-down- AccessibleAWTWindow
GameWindow +-down- WindowDisposerRecord
GameWindow +-down- Type
GameWindow +-down- AccessibleAWTContainer
GameWindow +-down- WakingRunnable
GameWindow +-down- DropTargetEventTargetFilter
GameWindow +-down- MouseEventTargetFilter
GameWindow +-down- EventTargetFilter
GameWindow +-down- AccessibleAWTComponent
GameWindow +-down- DummyRequestFocusController
GameWindow +-down- SingleBufferStrategy
GameWindow +-down- BltSubRegionBufferStrategy
GameWindow +-down- FlipSubRegionBufferStrategy
GameWindow +-down- BltBufferStrategy
GameWindow +-down- FlipBufferStrategy
GameWindow +-down- ProxyCapabilities
GameWindow +-down- BaselineResizeBehavior
GameWindow +-down- AWTTreeLock
AccessibleJFrame -up-|> AccessibleAWTFrame
AccessibleJFrame +-down- AccessibleContainerHandler
AccessibleJFrame +-down- AccessibleAWTFocusHandler
AccessibleJFrame +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFrame -up-|> AccessibleAWTWindow
AccessibleAWTFrame +-down- AccessibleContainerHandler
AccessibleAWTFrame +-down- AccessibleAWTFocusHandler
AccessibleAWTFrame +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTWindow -up-|> AccessibleAWTContainer
AccessibleAWTWindow +-down- AccessibleContainerHandler
AccessibleAWTWindow +-down- AccessibleAWTFocusHandler
AccessibleAWTWindow +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WindowDisposerRecord -up-|> DisposerRecord
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleAWTContainer +-down- AccessibleAWTFocusHandler
AccessibleAWTContainer +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WakingRunnable -up-|> Runnable
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
DummyRequestFocusController -up-|> RequestFocusController
SingleBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
BltBufferStrategy -up-|> BufferStrategy
FlipBufferStrategy -up-|> BufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
ProxyCapabilities +-down- VSyncType
ProxyCapabilities +-down- FlipContents
FlipContents -up-|> AttributeValue
InventoryPanel -up-|> ActionListener
InventoryPanel -up-|> JPanel
InventoryPanel +-down- AccessibleJPanel
InventoryPanel +-down- ReadObjectCallback
InventoryPanel +-down- AccessibleJComponent
InventoryPanel +-down- KeyboardState
InventoryPanel +-down- IntVector
InventoryPanel +-down- ActionStandin
InventoryPanel +-down- AccessibleAWTContainer
InventoryPanel +-down- WakingRunnable
InventoryPanel +-down- DropTargetEventTargetFilter
InventoryPanel +-down- MouseEventTargetFilter
InventoryPanel +-down- EventTargetFilter
InventoryPanel +-down- AccessibleAWTComponent
InventoryPanel +-down- DummyRequestFocusController
InventoryPanel +-down- SingleBufferStrategy
InventoryPanel +-down- BltSubRegionBufferStrategy
InventoryPanel +-down- FlipSubRegionBufferStrategy
InventoryPanel +-down- BltBufferStrategy
InventoryPanel +-down- FlipBufferStrategy
InventoryPanel +-down- ProxyCapabilities
InventoryPanel +-down- BaselineResizeBehavior
InventoryPanel +-down- AWTTreeLock
AccessibleJPanel -up-|> AccessibleJComponent
AccessibleJPanel +-down- AccessibleFocusHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleAWTFocusHandler
AccessibleJPanel +-down- AccessibleAWTComponentHandler
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
ReadObjectCallback -up-|> ObjectInputValidation
AccessibleJComponent -up-|> AccessibleExtendedComponent
AccessibleJComponent -up-|> AccessibleAWTContainer
AccessibleJComponent +-down- AccessibleFocusHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleAWTFocusHandler
AccessibleJComponent +-down- AccessibleAWTComponentHandler
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
KeyboardState -up-|> Serializable
ActionStandin -up-|> Action
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleAWTContainer +-down- AccessibleAWTFocusHandler
AccessibleAWTContainer +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WakingRunnable -up-|> Runnable
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
DummyRequestFocusController -up-|> RequestFocusController
SingleBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
BltBufferStrategy -up-|> BufferStrategy
FlipBufferStrategy -up-|> BufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
ProxyCapabilities +-down- VSyncType
ProxyCapabilities +-down- FlipContents
FlipContents -up-|> AttributeValue
LotPanel -up-|> ActionListener
LotPanel -up-|> JPanel
LotPanel +-down- AccessibleJPanel
LotPanel +-down- ReadObjectCallback
LotPanel +-down- AccessibleJComponent
LotPanel +-down- KeyboardState
LotPanel +-down- IntVector
LotPanel +-down- ActionStandin
LotPanel +-down- AccessibleAWTContainer
LotPanel +-down- WakingRunnable
LotPanel +-down- DropTargetEventTargetFilter
LotPanel +-down- MouseEventTargetFilter
LotPanel +-down- EventTargetFilter
LotPanel +-down- AccessibleAWTComponent
LotPanel +-down- DummyRequestFocusController
LotPanel +-down- SingleBufferStrategy
LotPanel +-down- BltSubRegionBufferStrategy
LotPanel +-down- FlipSubRegionBufferStrategy
LotPanel +-down- BltBufferStrategy
LotPanel +-down- FlipBufferStrategy
LotPanel +-down- ProxyCapabilities
LotPanel +-down- BaselineResizeBehavior
LotPanel +-down- AWTTreeLock
AccessibleJPanel -up-|> AccessibleJComponent
AccessibleJPanel +-down- AccessibleFocusHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleAWTFocusHandler
AccessibleJPanel +-down- AccessibleAWTComponentHandler
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
ReadObjectCallback -up-|> ObjectInputValidation
AccessibleJComponent -up-|> AccessibleExtendedComponent
AccessibleJComponent -up-|> AccessibleAWTContainer
AccessibleJComponent +-down- AccessibleFocusHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleAWTFocusHandler
AccessibleJComponent +-down- AccessibleAWTComponentHandler
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
KeyboardState -up-|> Serializable
ActionStandin -up-|> Action
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleAWTContainer +-down- AccessibleAWTFocusHandler
AccessibleAWTContainer +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WakingRunnable -up-|> Runnable
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
DummyRequestFocusController -up-|> RequestFocusController
SingleBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
BltBufferStrategy -up-|> BufferStrategy
FlipBufferStrategy -up-|> BufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
ProxyCapabilities +-down- VSyncType
ProxyCapabilities +-down- FlipContents
FlipContents -up-|> AttributeValue
Menu -up-|> ActionListener
Menu -up-|> JFrame
Menu +-down- AccessibleJFrame
Menu +-down- AccessibleAWTFrame
Menu +-down- AccessibleAWTWindow
Menu +-down- WindowDisposerRecord
Menu +-down- Type
Menu +-down- AccessibleAWTContainer
Menu +-down- WakingRunnable
Menu +-down- DropTargetEventTargetFilter
Menu +-down- MouseEventTargetFilter
Menu +-down- EventTargetFilter
Menu +-down- AccessibleAWTComponent
Menu +-down- DummyRequestFocusController
Menu +-down- SingleBufferStrategy
Menu +-down- BltSubRegionBufferStrategy
Menu +-down- FlipSubRegionBufferStrategy
Menu +-down- BltBufferStrategy
Menu +-down- FlipBufferStrategy
Menu +-down- ProxyCapabilities
Menu +-down- BaselineResizeBehavior
Menu +-down- AWTTreeLock
AccessibleJFrame -up-|> AccessibleAWTFrame
AccessibleJFrame +-down- AccessibleContainerHandler
AccessibleJFrame +-down- AccessibleAWTFocusHandler
AccessibleJFrame +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTFrame -up-|> AccessibleAWTWindow
AccessibleAWTFrame +-down- AccessibleContainerHandler
AccessibleAWTFrame +-down- AccessibleAWTFocusHandler
AccessibleAWTFrame +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
AccessibleAWTWindow -up-|> AccessibleAWTContainer
AccessibleAWTWindow +-down- AccessibleContainerHandler
AccessibleAWTWindow +-down- AccessibleAWTFocusHandler
AccessibleAWTWindow +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WindowDisposerRecord -up-|> DisposerRecord
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleAWTContainer +-down- AccessibleAWTFocusHandler
AccessibleAWTContainer +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WakingRunnable -up-|> Runnable
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
DummyRequestFocusController -up-|> RequestFocusController
SingleBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
BltBufferStrategy -up-|> BufferStrategy
FlipBufferStrategy -up-|> BufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
ProxyCapabilities +-down- VSyncType
ProxyCapabilities +-down- FlipContents
FlipContents -up-|> AttributeValue
PlayerPanel -up-|> JPanel
PlayerPanel +-down- AccessibleJPanel
PlayerPanel +-down- ReadObjectCallback
PlayerPanel +-down- AccessibleJComponent
PlayerPanel +-down- KeyboardState
PlayerPanel +-down- IntVector
PlayerPanel +-down- ActionStandin
PlayerPanel +-down- AccessibleAWTContainer
PlayerPanel +-down- WakingRunnable
PlayerPanel +-down- DropTargetEventTargetFilter
PlayerPanel +-down- MouseEventTargetFilter
PlayerPanel +-down- EventTargetFilter
PlayerPanel +-down- AccessibleAWTComponent
PlayerPanel +-down- DummyRequestFocusController
PlayerPanel +-down- SingleBufferStrategy
PlayerPanel +-down- BltSubRegionBufferStrategy
PlayerPanel +-down- FlipSubRegionBufferStrategy
PlayerPanel +-down- BltBufferStrategy
PlayerPanel +-down- FlipBufferStrategy
PlayerPanel +-down- ProxyCapabilities
PlayerPanel +-down- BaselineResizeBehavior
PlayerPanel +-down- AWTTreeLock
AccessibleJPanel -up-|> AccessibleJComponent
AccessibleJPanel +-down- AccessibleFocusHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleAWTFocusHandler
AccessibleJPanel +-down- AccessibleAWTComponentHandler
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
ReadObjectCallback -up-|> ObjectInputValidation
AccessibleJComponent -up-|> AccessibleExtendedComponent
AccessibleJComponent -up-|> AccessibleAWTContainer
AccessibleJComponent +-down- AccessibleFocusHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleAWTFocusHandler
AccessibleJComponent +-down- AccessibleAWTComponentHandler
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
KeyboardState -up-|> Serializable
ActionStandin -up-|> Action
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleAWTContainer +-down- AccessibleAWTFocusHandler
AccessibleAWTContainer +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WakingRunnable -up-|> Runnable
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
DummyRequestFocusController -up-|> RequestFocusController
SingleBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
BltBufferStrategy -up-|> BufferStrategy
FlipBufferStrategy -up-|> BufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
ProxyCapabilities +-down- VSyncType
ProxyCapabilities +-down- FlipContents
FlipContents -up-|> AttributeValue
ShopPanel -up-|> ActionListener
ShopPanel -up-|> JPanel
ShopPanel +-down- AccessibleJPanel
ShopPanel +-down- ReadObjectCallback
ShopPanel +-down- AccessibleJComponent
ShopPanel +-down- KeyboardState
ShopPanel +-down- IntVector
ShopPanel +-down- ActionStandin
ShopPanel +-down- AccessibleAWTContainer
ShopPanel +-down- WakingRunnable
ShopPanel +-down- DropTargetEventTargetFilter
ShopPanel +-down- MouseEventTargetFilter
ShopPanel +-down- EventTargetFilter
ShopPanel +-down- AccessibleAWTComponent
ShopPanel +-down- DummyRequestFocusController
ShopPanel +-down- SingleBufferStrategy
ShopPanel +-down- BltSubRegionBufferStrategy
ShopPanel +-down- FlipSubRegionBufferStrategy
ShopPanel +-down- BltBufferStrategy
ShopPanel +-down- FlipBufferStrategy
ShopPanel +-down- ProxyCapabilities
ShopPanel +-down- BaselineResizeBehavior
ShopPanel +-down- AWTTreeLock
AccessibleJPanel -up-|> AccessibleJComponent
AccessibleJPanel +-down- AccessibleFocusHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleContainerHandler
AccessibleJPanel +-down- AccessibleAWTFocusHandler
AccessibleJPanel +-down- AccessibleAWTComponentHandler
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
ReadObjectCallback -up-|> ObjectInputValidation
AccessibleJComponent -up-|> AccessibleExtendedComponent
AccessibleJComponent -up-|> AccessibleAWTContainer
AccessibleJComponent +-down- AccessibleFocusHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleContainerHandler
AccessibleJComponent +-down- AccessibleAWTFocusHandler
AccessibleJComponent +-down- AccessibleAWTComponentHandler
AccessibleFocusHandler -up-|> FocusListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
KeyboardState -up-|> Serializable
ActionStandin -up-|> Action
AccessibleAWTContainer -up-|> AccessibleAWTComponent
AccessibleAWTContainer +-down- AccessibleContainerHandler
AccessibleAWTContainer +-down- AccessibleAWTFocusHandler
AccessibleAWTContainer +-down- AccessibleAWTComponentHandler
AccessibleContainerHandler -up-|> ContainerListener
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
WakingRunnable -up-|> Runnable
DropTargetEventTargetFilter -up-|> EventTargetFilter
MouseEventTargetFilter -up-|> EventTargetFilter
AccessibleAWTComponent -up-|> Serializable
AccessibleAWTComponent -up-|> AccessibleComponent
AccessibleAWTComponent -up-|> AccessibleContext
AccessibleAWTComponent +-down- AccessibleAWTFocusHandler
AccessibleAWTComponent +-down- AccessibleAWTComponentHandler
AccessibleAWTFocusHandler -up-|> FocusListener
AccessibleAWTComponentHandler -up-|> ComponentListener
DummyRequestFocusController -up-|> RequestFocusController
SingleBufferStrategy -up-|> BufferStrategy
BltSubRegionBufferStrategy -up-|> SubRegionShowable
BltSubRegionBufferStrategy -up-|> BltBufferStrategy
FlipSubRegionBufferStrategy -up-|> SubRegionShowable
FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy
BltBufferStrategy -up-|> BufferStrategy
FlipBufferStrategy -up-|> BufferStrategy
ProxyCapabilities -up-|> ExtendedBufferCapabilities
ProxyCapabilities +-down- VSyncType
ProxyCapabilities +-down- FlipContents
FlipContents -up-|> AttributeValue
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
296d73bcf949334e60d99bc6cf9a8b111844b74b | f95c049d6274252b0c0b1a4f50db92bc34798bb2 | /thingml-gen/UML/PrimeConfig/PrimeConfig/docs/Check_behaviour.plantuml | ef284910b87c1ea9dbf9afb6d69b31cef6ebb5a4 | [] | no_license | mkals/SequenceFinder | 4a9454dc2c926776fe7da0cb26d71fa6028b8167 | 14afbe55550759a942ba95b5f4b098b24746787e | refs/heads/master | 2021-01-20T15:07:42.704096 | 2017-05-09T08:59:26 | 2017-05-09T08:59:26 | 90,724,846 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 301 | plantuml | @startuml
skinparam defaultTextAlignment left
caption Behavior of thing Checker
[*] --> behaviour
state behaviour{
state Active{
Active --> Active : num:prime_service?testForPrime\naction do \nprime_service!result(checkNumber(testForPrime.number))\nprint ("Active")\nend\n
}
[*] --> Active
}
@enduml
| false | true | false | false | sequence |
db12dcac1b0ad772cd31c77c56ca8d79c3819802 | 659cf4bd3cc9d4e939f44936cdee4c16c540ed20 | /va_uninstall_pkg.puml | 3ec5c35620591c423c60cf7d070d7495a4fdc404 | [] | no_license | peggy109/VADoc | 7e8bfd9d7f1500163b32128dab7cf039b2dbd07d | 42c8b4e44e16f4e92a2b1a85c8130e89c7fe5b17 | refs/heads/master | 2020-04-12T14:14:29.371693 | 2019-01-10T10:43:03 | 2019-01-10T10:43:03 | 162,544,622 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,702 | puml | @startuml
title Uninstall Package
box "main process (io.virtual)" #LightBlue
participant HomePresenterImpl
participant AppRepository
participant VirtualCore as VC
end box
box "server process (io.virtual:x)" #LightGreen
participant VAppManagerService as VAppMS
participant PackageCacheManager
participant PackageSetting
participant PackagePersistenceLayer
participant VEnvironment
participant BroadcastSystem
participant VActivityManagerService
end box
-> VC : uninstallPackage
VC ---> VAppMS : uninstallPackage
VAppMS -> VAppMS : uninstallPackageFully
[->HomePresenterImpl : deleteApp
HomePresenterImpl -> VC : getInstalledAppInfo
VC -> HomePresenterImpl : info:InstalledAppInfo
alt userid 2 3 N
HomePresenterImpl -> HomePresenterImpl :
note right : userid = MultiplePackageAppData.userId
else userid 0
HomePresenterImpl -> HomePresenterImpl :
note right : user 0
end
HomePresenterImpl -> AppRepository : removeVirtualApp
AppRepository -> VC : uninstallPackageAsUser
VC ---> VAppMS : uninstallPackageAsUser
VAppMS -> PackageCacheManager : getSetting
VAppMS -> VAppMS : getPackageInstalledUsers
alt userids.length == 1
VAppMS -> VAppMS : uninstallPackageFully
activate VAppMS
VAppMS -> BroadcastSystem : stopApp
VAppMS -> VActivityManagerService: killAppByPkg
VAppMS -> VEnvironment : getPackageResourcePath
VEnvironment -> VAppMS : apkpath=/data/user/0/io.virtualapp/virtual/data/app/com.xxx/base.apk
note right of VAppMS : delete apkpath
VAppMS -> VEnvironment : getDataAppPackageDirectory
VEnvironment -> VAppMS : appDir=/data/user/0/io.virtualapp/virtual/data/app/com.xxx
note right of VAppMS : delete appDir
VAppMS -> VEnvironment : getOdexFile
VEnvironment -> VAppMS : dexpath=/data/user/0/io.virtualapp/virtual/opt/data@app@<com.xxx>-1@base.apk@classes.dex
note right of VAppMS : delete dexpath
VAppMS -> VEnvironment : getDataUserPackageDirectory
VEnvironment -> VAppMS : userPkgPath=/data/user/0/io.virtualapp/virtual/data/user/x/com.xxx
note right of VAppMS : delete userPkgPath
VAppMS -> PackageCacheManager : remove
VAppMS -> VAppMS : notifyAppUninstalled
activate VAppMS
deactivate VAppMS
deactivate VAppMS
else userids.length >= 2
VAppMS -> VActivityManagerService: killAppByPkg
VAppMS -> PackageSetting : setInstalled
VAppMS -> VAppMS : notifyAppUninstalled
VAppMS -> PackagePersistenceLayer : save
VAppMS -> VEnvironment : getDataUserPackageDirectory
VEnvironment -> VAppMS : userPkgPath=/data/user/0/io.virtualapp/virtual/data/user/x/com.xxx
note right of VAppMS : delete userPkgPath
end
@enduml | false | true | false | false | sequence |
970a16e3b9317df2836bcaddc8c4d9b8881c354b | efb0f6a3ddfbb9750c3af36b650ddbe35be69f46 | /source/_draft/spring-aop/Advised.puml | e3a6b890bbcb7486630511304bd0447849678155 | [] | no_license | holmofy/blog.hufeifei.cn | f902a36fa91ba2e87f44541a8f72e455d21f780b | 2523b19474c1b0aa49c97b472a2777291a06c147 | refs/heads/master | 2023-08-30T19:40:48.930273 | 2023-08-25T13:18:35 | 2023-08-25T13:18:35 | 159,538,879 | 1 | 0 | null | 2022-04-02T11:56:20 | 2018-11-28T17:21:00 | HTML | UTF-8 | PlantUML | false | false | 230 | puml | @startuml
interface Advised
Advised <|.. AdvisedSupport
AdvisedSupport <|.. ProxyCreatorSupport
ProxyCreatorSupport <|.. ProxyFactoryBean
ProxyCreatorSupport <|.. ProxyFactory
ProxyCreatorSupport <|.. AspectJProxyFactory
@enduml | false | true | false | false | class |
e093bc2d1a88743cf27ef5eaa8e50bb020223e6a | 82ae020839bc0b0ea65f89df5aa2dc7e9a63180b | /docs/components.puml | fd90c9b3fbe1c16ccb0552a185981198957591db | [] | no_license | asynkron/protoactor-go-sender-example | 094ce9ecc2710d8669c7a41b349ec036e458eece | 7b3c91273e94cc039935b46d1a65187e029d3119 | refs/heads/master | 2023-03-03T04:42:24.473158 | 2021-02-13T07:04:38 | 2021-02-13T07:04:38 | 338,588,800 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 757 | puml | @startuml
package "Process A" {
component "Actor A" as actorA
component "Actor B" as actorB
component "Actor C" as actorC
}
package "Process B" {
component "Actor D" as actorD
component "Actor E" as actorE
}
interface "consul" as consul
note right
Manage cluster membership and
dispatch tasks to available cluster note
end note
cloud "Cluster" {
package "Process C" {
component "Grain A" as grainA
}
package "Process D" {
component "Grain A" as grainAsub #ccc
}
}
actorA <-> actorB : Local
actorC <-up-> actorB : Local
actorD <-down-> actorB : Remote
actorD <-> actorE : Local
actorE <-down-> consul : gRPC based call\nor plain remote call
consul <-down-> grainA
consul <.down.> grainAsub
@enduml | false | true | false | false | sequence |
a0aaf6deedc6caba5d36bc6b8e1bc431cd84b2b5 | 9273a854c121d4cd2398e56c6c61add4bd0472f7 | /src/plant-uml/ciba-example.puml | 5905c277800365877807edb7b62b6211e2a7b815 | [] | no_license | sriniip/open-banking-docs | d3296a84a0f7d56060fda6e21d8f0a77859e32ea | af988b88ec5942ffaae9f35bb441259808c0de97 | refs/heads/master | 2023-08-14T23:32:22.749411 | 2021-10-19T01:58:26 | 2021-10-19T01:58:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 15,709 | puml | @startuml CIBA_Example_Sequence
title \n\n\n
hide footbox
participant "Third-Party\nApp" as TPP
box Infrastructure #6FA8DC
participant "Ingress\nController" as INGRESS
participant "API\nGateway" as API_GATEWAY
end box
box Identity and Access Control #94c47d
participant "Identity Management\n---\nAuthorisation Server" as IAM
participant "Consent\nManagement\n---\nACP API" as CONSENT
end box
box Open Banking APIs #e06666
participant "API\nBuilder" as API_BUILDER
end box
box Core Banking Applications #d5a6bd
participant "Banking\nIdentity\nProvider" as ASPSP_IDP
participant "Banking\nSystems" as ASPSP_API
end box
participant "Open Banking\nDirectory\n---\nJSON Web Key Set" as OBD_JWKS
participant "Certificate\nAuthority\n---\nOCSP Endpoint" as OCSP
participant "Mobile\nBanking\nApp" as MOBILE
actor "Customer" as PSU
hide footbox
skinparam defaultFontName Roboto
skinparam BoxPadding 10
== Part 0: Registration of Token Delivery Preferences ==
note right of TPP
CIBA requires that Clients register a delivery mode prior to the
transmission of any Authentication Requests:
|||
[[https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html#rfc.section.4 Clients registering to use CIBA MUST indicate a token delivery mode]]
|||
The Authorization Server (AS) therefore must host a registration
endpoint - defined in the discoverable OpenID Configuration -
that allows the Client to do so. The parameters for this call
are described in the CIBA specification and differ depending
on the method in question. The modes are:
|||
* **Poll**: Client polls the Token endpoint.
* **Ping**: AS notifies, Client retrieves from Token endpoint.
* **Push**: AS sends tokens to Client.
|||
The supported modes vary by AS as they are implementor specific i.e.
implementors of the AS can choose to only support one-or-more given
modes. The supported modes must be made pushed in the AS OpenID
Configuration.
end note
TPP -> INGRESS: ""POST /connect/register""
note right of INGRESS
The Kubernetes Ingress Controller is responsible for TLS
termination and perfoming an OCSP call to the Certificate
Authority to ensure the client certificate presented is
valid. The fingerprint of the certificate will be forwarded
to Identity Management to verify the validity of the OAuth
Client as this cannot be asserted via OCSP.
end note
INGRESS -> OCSP: Check Client Certificate Validity
INGRESS <-- OCSP: Response
INGRESS -> API_GATEWAY: Registration Request
note right of API_GATEWAY
The API Gateway acts as a proxy for both Identity and Consent
Management. This approach is designed to ensure all identity
and access control can be monitored and logged for analytics purposes
end note
API_GATEWAY -> IAM: Registration Request
IAM -> IAM: Verify Client
IAM -> IAM: Store Client Parameters
API_GATEWAY <-- IAM: Response
INGRESS <-- API_GATEWAY: Response
TPP <-- INGRESS: Response
== Part 1: Create Consent and Send Authentication Request ==
note right of TPP
The Third-Party App requests an Access Token using
the Client Credentials grant type. Nominally authentication
is through Mutual Authentication over TLS but it could
equally be using ""private_key_jwt"".
end note
TPP -> INGRESS: ""POST /oauth2/token""
INGRESS -> OCSP: Check Client Certificate Validity
INGRESS <-- OCSP: Response
INGRESS -> API_GATEWAY: ""POST /oauth2/token""
API_GATEWAY -> IAM: ""POST /oauth2/token""
IAM -> IAM: Verify Client
API_GATEWAY <- IAM: ""200 OK""\n""{"access_token": "..."}""
INGRESS <-- API_GATEWAY: ""200 OK""\n""{"access_token": "..."}""
TPP <-- INGRESS: ""200 OK""\n""{"access_token": "..."}""
note right of TPP
With the Access Token in hand the Third-Party can then
create the consent resource. This needs to be completed
before the Authentication Request as the value of the
""consentId"" is required to set the value of the scope.
end note
TPP -> INGRESS: ""POST /payments/v1/consents""
INGRESS -> OCSP: Check Client Certificate Validity
INGRESS <-- OCSP: Response
INGRESS -> API_GATEWAY: ""POST /payments/v1/consents""
API_GATEWAY -> CONSENT: ""POST /payments/v1/consents""
CONSENT -> CONSENT: Validate consent request properties
API_GATEWAY <-- CONSENT: ""201 Created""\n""{consentId: "..."}""
INGRESS <-- API_GATEWAY: ""201 Created""\n""{consentId: "..."}""
TPP <-- INGRESS: ""201 Created""\n""{consentId: "..."}""
note right of TPP
The Third-Party App can now create and send the Authentication
Request. This includes the dynamic scope that holds the value
of the ""consentId"" returned by Identity Management.
end note
TPP -> TPP: Create Authentication Request
TPP -> INGRESS: ""POST /bc-authorize""
INGRESS -> OCSP: Check Client Certificate Validity
INGRESS <-- OCSP: Response
INGRESS -> API_GATEWAY: ""POST /bc-authorize""
note right of API_GATEWAY
As with the redirection-based FAPI profiles the Authentication
Request is a JSON Web Signature. It therefore needs to be
checked for validity. Note that in the context of CIBA Pushed
Authorization Request is not required as the Authentication Request
is always sent via a secured backchannel and never through the browser.
end note
API_GATEWAY -> OBD_JWKS: Get JSON Web Key Set
API_GATEWAY <-- OBD_JWKS: Response
API_GATEWAY -> API_GATEWAY: Match Authentication\nRequest parameter ""kid""
API_GATEWAY -> API_GATEWAY: Verify Authentication\nRequest parameter signature
API_GATEWAY -> IAM: Forward Authentication Request
IAM -> IAM: Validate Authentication Request
note right of IAM
Note this approach is non-normative and the actual
implementation required should be considered on a
case-by-case basis.
end note
IAM -> ASPSP_IDP: Send Authentication Request notification
API_GATEWAY <-- IAM: ""201 Created""\n""{auth_req_id: "..."}""
INGRESS <-- API_GATEWAY: ""201 Created""\n""{auth_req_id: "..."}""
TPP <-- INGRESS: ""201 Created""\n""{auth_req_id: "..."}""
== Part 2: Customer Authenticates at Mobile Banking App ==
note right of ASPSP_IDP
The flow shown is a hypothetical approach to allowing
the End User to authenticate and confirm consent. In this
scenario has installed their mobile banking app and can
receive and act-on a request to authenticate and confirm
consent.
end note
ASPSP_IDP -> ASPSP_IDP: Correlate Authentication\nRequest with Customer
ASPSP_IDP -> ASPSP_API: Trigger push notification to Customer
note right of ASPSP_API
The push notification needs to carry some context.
For example, the ""consentId"" - to require the
consent to be correlated correctly.
end note
MOBILE <- ASPSP_API: Send push notification to mobile banking app
MOBILE -> PSU: Notify Customer
MOBILE <-- PSU: Tap notification
MOBILE -> PSU: Request biometric\ngesture to authenticate
MOBILE <-- PSU: Present biometric\ngesture
note right of ASPSP_IDP
As with the majority of mobile banking apps authentication
in this example is outsourced to the mobile operating system.
Once the customer has authenticated the mobile banking app
simply sends a "user authenticated" notification to the IDP.
|||
This flow is non-normative, implementation-specific and
would be created based on the implementors architecture
and technology.
end note
MOBILE -> ASPSP_IDP: User authenticated notification
MOBILE <-- ASPSP_IDP: Acknowledgement
MOBILE -> ASPSP_API: Request Customer accounts
MOBILE <-- ASPSP_API: Response
== Part 3: Customer Confirms Consent and Selects Account ==
note left of MOBILE
As Consent needs to be retrieved from a hostile security zone
i.e. from a Customer's mobile device the request to Consent
Management should be routed via the Ingress Controller/API
Gateway. This flow is implementation-specific and would be
created based on the implementors architecture and technology.
|||
In this example the Customer is the sole account
holder and therefore no further authorizations are required.
end note
MOBILE -> INGRESS: Retrieve consent
INGRESS -> API_GATEWAY: Retrieve consent
API_GATEWAY -> CONSENT: Retrieve consent
CONSENT -> CONSENT: Retrieve Consent
API_GATEWAY <-- CONSENT: Response
INGRESS <-- API_GATEWAY: Response
MOBILE <-- INGRESS: Response
note right of ASPSP_API
The Consent Confirmation screen requires the following properties to be displayed:
* Transaction Value.
* Recipient details (name, CPF/CNPJ).
* Payment Date.
* Payment method (currently fixed on PIX).
* Fee amount charged by the bank (if any).
end note
par Request fee amount for payment
note right of ASPSP_API
Fees for payment must be provided from the Banking Systems
end note
MOBILE -> ASPSP_API: Request fee amount
MOBILE <-- ASPSP_API: Response
else
alt Debtor account not provided in Consent
note right of ASPSP_API
If the debtor account has not been provided in the Consent then
the customer's payment accounts will need to be retrieved:
* If the customer only has one payment account then this is the default.
* If they have multiple accounts they should be able to select one.
This should be incorporated into the Consent Confirmation screen.
end note
MOBILE -> MOBILE: Query account list for payment accounts
else Debtor account provided in Consent
note right of ASPSP_API
If the debtor account has already been provided ownership of the
account by the customer **must** be verified. In this example this
can be done at the Mobile Banking App as it has already retrieved
the list of customer accounts.
end note
MOBILE -> MOBILE: Verify debtor account ownership
end alt
end par
MOBILE -> MOBILE: Render consent\nconfirmation screen
MOBILE -> PSU: Request consent\nconfirmation
MOBILE <-- PSU: Confirm consent
MOBILE -> INGRESS: Update consent as authorized
INGRESS -> API_GATEWAY: Update consent as authorized
API_GATEWAY -> CONSENT: Update consent
CONSENT -> CONSENT: Update Consent
API_GATEWAY <-- CONSENT: Response
INGRESS <-- API_GATEWAY: Response
MOBILE <-- INGRESS: Response
note left of MOBILE
The final step is to call the Identity Management
component to indicate that the Customer has been
authenticated. Identity Management will then signal
to the Third-Party App using the chosen mode that
authentication is complete. Again this flow is
implementation-specific and would be created based
on the implementors architecture and technology.
end note
MOBILE -> API_GATEWAY: Authentication complete notification
API_GATEWAY -> IAM: Forward authentication complete notification
== Part 4: Client Granted Access Token ==
note right of TPP
Notes on Token behaviors
===
The Third-Party App is made aware of the success of the
based on their registered delivery mode. Each of these is
shown below.
|||
Note that the Poll looping example is purely illustrative
as the Third-Party App would poll as soon as they received
the ""auth_req_id"" from the AS. Writing the diagram to
incorporate this sequentially would, however be extremely confusing
hence the sequence shown below.
|||
For Poll and Ping mode the Third-Party App must use the
[[https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html#rfc.section.10.1 CIBA grant type]] as described in the source specification.
end note
alt Client Registered Poll Mode
note right of TPP
In Poll mode the TPP will periodically call the Token endpoint
until they get a positive response i.e. they do not receive
the 400 HTTP response code but instead are returned one-or-more
tokens (Access, Refresh, ID) from the Token endpoint.
end note
loop Exit when Authentication Request successful
TPP -> INGRESS: ""POST /token auth_req_id=...""
INGRESS -> OCSP: Check Client Certificate Validity
INGRESS <-- OCSP: Response
INGRESS -> API_GATEWAY: ""POST /token auth_req_id=...""
API_GATEWAY -> IAM: ""POST /token auth_req_id=...""
IAM -> IAM: Retrieve Authentication request
IAM -> IAM: Check status
API_GATEWAY <-- IAM: ""400 Bad Request {...}""
INGRESS <-- API_GATEWAY: ""400 Bad Request {...}""
TPP <-- INGRESS: ""400 Bad Request {...}""
end loop
TPP -> INGRESS: ""POST /token auth_req_id=...""
INGRESS -> OCSP: Check Client Certificate Validity
INGRESS <-- OCSP: Response
INGRESS -> API_GATEWAY: ""POST /token auth_req_id=...""
API_GATEWAY -> IAM: ""POST /token auth_req_id=...""
IAM -> IAM: Retrieve Authentication request
IAM -> IAM: Check status
IAM -> IAM: Create tokens
API_GATEWAY <-- IAM: ""200 OK {...}""
INGRESS <-- API_GATEWAY: ""200 OK {...}""
TPP <-- INGRESS: ""200 OK {...}""
else Client Registered Ping Mode
note right of TPP
Ping mode is a simple notification by the AS to a callback
URL pre-registered by the Third-Party App in Part 0. On
receipt the Third-Party App can then call the Token endpoint
in the same way as in Poll mode and collect one-or-more tokens.
end note
TPP <- IAM: Authentication Request complete notification
TPP --> IAM: ""204 No Content""
TPP -> INGRESS: ""POST /token auth_req_id=...""
INGRESS -> OCSP: Check Client Certificate Validity
INGRESS <-- OCSP: Response
INGRESS -> API_GATEWAY: ""POST /token auth_req_id=...""
API_GATEWAY -> IAM: ""POST /token auth_req_id=...""
IAM -> IAM: Retrieve Authentication request
IAM -> IAM: Create tokens
API_GATEWAY <-- IAM: ""200 OK {...}""
INGRESS <-- API_GATEWAY: ""200 OK {...}""
TPP <-- INGRESS: ""200 OK {...}""
else Client Registered Push Mode
note right of TPP
In Push mode tokens are created by the AS and then transmitted
to the Third-Party App, therefore negating the need for them to
visit the Token endpoint. Their are various implications of using
this method which are discussed in the [[https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html#rfc.section.10.3 specification]].
end note
IAM -> IAM: Retrieve Authentication request
IAM -> IAM: Create tokens
IAM -> IAM: Retrieve callback URL and security\ntoken for Third-Party App
TPP <- IAM: ""POST /cb {...}""
TPP --> IAM: ""204 No Content""
end alt
== Part 5: TPP Makes Payment Instruction Request ==
note right of TPP
With the Access Token in hand the Third-Party App can now
make the payment instruction request. The Access Token
is bound to this single operation and will be revoked once
the payment instruction is successfully transmitted.
end note
TPP -> INGRESS: ""POST /payments/v1/pix/payments""
INGRESS -> OCSP: Check Client Certificate Validity
INGRESS <-- OCSP: Response
INGRESS -> API_GATEWAY: ""POST /payments/v1/pix/payments""
note right of API_GATEWAY
The approach to Access Token introspection remains the same under payments
i.e. the API Gateway will need an assertion that indicates the consent granted
by the Customer matches the payment being instructed.
end note
API_GATEWAY -> CONSENT: Request Access Token properties
CONSENT -> CONSENT: Retrieve Access Token properties
API_GATEWAY <-- CONSENT: Response
API_GATEWAY -> API_GATEWAY: Introspect Access Token properties
note right of API_GATEWAY
On introspecting the Access Token the API Gateway will decorate the
request with the debtor account which is stored with the Consent. This can
then be forwarded to the API Builder application and used to make the correct
payment instruction in the Banking Systems.
end note
API_GATEWAY -> API_GATEWAY: Decorate request with debtor account
API_GATEWAY -> API_BUILDER: ""POST /payments/v1/pix/payments""
note right of API_BUILDER
This flow is non-normative and will vary on customer requirements.
It //could// be to a PIX-compliant API or any other available mechanism
to make a PIX payment.
end note
API_BUILDER -> API_BUILDER: Mediate request payload
API_BUILDER -> ASPSP_API: Deliver payment instruction to Banking System API
API_BUILDER <-- ASPSP_API: Response
API_BUILDER -> API_BUILDER: Mediate response payload
API_GATEWAY <-- API_BUILDER: ""201 Created""\n""{paymentId: "..."}""
INGRESS <-- API_GATEWAY: ""201 Created""\n""{paymentId: "..."}""
TPP <-- INGRESS: ""201 Created""\n""{paymentId: "..."}""
@enduml | false | true | false | false | usecase |
c1024d48f33bbc20e17d58aaf25ab2eb7aa23a65 | 2ed26e4235a2dd2abe15418ccc770cb313afc083 | /state/etc/state.urm.puml | ea9a6383a89860ded3d71aa7cecf2c54965f7cfc | [
"MIT"
] | permissive | secorjeretweaz/java-design-patterns | 38ffb25f9cf212a5edf74eb44a709879bdc876f9 | b2eaa6676430cda29663735125f026df5bb5dcbc | refs/heads/master | 2020-03-29T19:47:22.792134 | 2018-10-02T08:26:07 | 2018-10-02T08:26:07 | 150,280,998 | 0 | 0 | MIT | 2018-09-25T14:41:40 | 2018-09-25T14:41:39 | null | UTF-8 | PlantUML | false | false | 817 | puml | @startuml
package com.iluwatar.state {
class AngryState {
- LOGGER : Logger {static}
- mammoth : Mammoth
+ AngryState(mammoth : Mammoth)
+ observe()
+ onEnterState()
}
class App {
+ App()
+ main(args : String[]) {static}
}
class Mammoth {
- state : State
+ Mammoth()
- changeStateTo(newState : State)
+ observe()
+ timePasses()
+ toString() : String
}
class PeacefulState {
- LOGGER : Logger {static}
- mammoth : Mammoth
+ PeacefulState(mammoth : Mammoth)
+ observe()
+ onEnterState()
}
interface State {
+ observe() {abstract}
+ onEnterState() {abstract}
}
}
AngryState --> "-mammoth" Mammoth
PeacefulState --> "-mammoth" Mammoth
Mammoth --> "-state" State
AngryState ..|> State
PeacefulState ..|> State
@enduml | false | true | false | false | class |
065f19daab7cdd83431a30bdd8f8995c5b0c7c5e | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /sequence - design/classroom/viewClass.plantuml | 90c92c9c781852c6d96469f150c16d2cf1050c60 | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 468 | plantuml | @startuml viewClass
actor ": User"
activate ": User"
": User" -->> ": IClassroomForm": // request get class info
activate ": IClassroomForm"
": IClassroomForm" -> ": ClassroomController": view_classroom(token)
activate ": ClassroomController"
": ClassroomController" -> ": IClassroomMemberDB": get_classroom(classroom_member)
activate ": IClassroomMemberDB"
": IClassroomForm" -->> ": User": view all class
deactivate ": IClassroomForm"
deactivate ": User"
@enduml | false | true | false | false | usecase |
3b66c66801024c370cfb7e5fb649f7c5fbf27ff9 | cd311955a4e833889d31ab910eccf7c2a322de41 | /documentation/diagrams/sequence/localbusiness_auth-linkedin.puml | 0a24ec452455b2f341a2da463c51c6b2fbc393db | [] | no_license | ogabrielguerra/puc-tcc | 11a8a89e533429f52acd4df1f05419dc2763ccc3 | e02d78e8214c387796553f3703d7b1bc4da1e8c6 | refs/heads/master | 2023-08-26T06:24:38.929937 | 2021-10-23T14:16:50 | 2021-10-23T14:16:50 | 303,121,964 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,222 | puml | @startuml
title "Autenticação com OAuth/Linkedin"
skinparam sequenceMessageAlign center
actor User as user
'participant LocalBusiness as localbusiness
participant Login as login
control "Callback URI" as callback
boundary "Linkedin API" as lapi
database MySQL as database
box "LocalBusiness"
user -> login
activate login
login -> lapi: Usuário autoriza o acesso do App
deactivate login
activate callback
end box
activate lapi
callback <-- lapi: Código de Autorização
callback -> lapi: Requisitar Access Token
callback <-- lapi: Access Token
callback ->> lapi : Acessar nome completo
callback ->> lapi : Acessar email
lapi --> callback : Email do usuário
lapi --> callback : Nome completo do usuário
deactivate lapi
callback -> database : Salvar token representando\ndados do usuário
activate database
database --> callback
deactivate database
callback -> react : Token
deactivate callback
activate react
react -> database : Token
activate database
database --> react: Email / Nome completo
react -> database : Cria a conta
database --> react : Sucesso
react -> database : Exclui o Token
database --> react : Sucesso
deactivate database
react -> react : Autentica o usuário no App
@enduml | false | true | true | false | sequence |
ddebc89c5c6638efa27bf06cb41859e571d46d31 | 0dd10c38a35377f990886a15b6da8ff649970a61 | /classdiagram/example.puml | bcb17bbe22e12c4396acd5cb8c8278383853d30a | [] | no_license | jmorleyjones/plantuml-demo | f04c69d966f09505a32ac439d6733e4be27d9490 | d1f1a00bddaad67c63655fab9a83e74f124d18e3 | refs/heads/master | 2021-02-13T19:59:02.645716 | 2020-03-03T21:45:26 | 2020-03-03T21:45:26 | 244,727,268 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 321 | puml | @startuml
object contact{
type = "seller"
email = "some@company.com"
name = ""
id = 123
}
object account {
type = "seller"
name = ""
id = 123
}
object Deal
object LoanData
object PropertyData
account o-- "*" contact
account o-- "*" Deal
Deal o-- "*" LoanData
Deal o-- "*" PropertyData
@enduml
| false | true | false | false | class |
7c17c2390547edca2499cb3b06a550c41d5e46fb | 7ff701bf65a5d5666c1eaf508db22e05ee04949b | /use-case-diagram/Homework/Lab-submit/60030089/Food1.puml | 27a5332fdda7417548d0c9dc2c0ba5450c6ee77f | [] | no_license | OOAD-089/PlantUML-Labs | 74b42ca95cd0e5f4ad8e953a98fddc530d2c9c52 | 8ba37b1d593e406959e877a5af01a9c722ab8cf2 | refs/heads/master | 2022-06-03T04:06:14.456626 | 2020-04-27T14:26:34 | 2020-04-27T14:26:34 | 259,310,330 | 0 | 0 | null | 2020-04-27T12:29:23 | 2020-04-27T12:29:22 | null | UTF-8 | PlantUML | false | false | 607 | puml | @startuml Food1
actor Owner
actor Customer
left to right direction
skinparam Shadowing false
skinparam usecase{
FontColor white
BackgroundColor #cornflowerBlue
BorderColor #cornflowerBlue
ArrowColor #cornflowerBlue
}
skinparam actor{
FontColor YellowGreen
BackgroundColor YellowGreen
BorderColor YellowGreen
}
skinparam rectangle{
FontColor YellowGreen
BorderColor YellowGreen
}
rectangle "Online Food shop overview"{
Customer -- (member register)
Customer -- (Login)
(Login) -- Owner
(Manage \n Goods) -- Owner
Customer -- (Make\norder)
(Print slips) -- Owner
}
@enduml | false | true | false | false | usecase |
c1b4504fa6da2aa3f30befc2ba5d57321fe93e59 | c17d67715206a3ab16c4e852d34f1df3ed3b9211 | /QuizApp/QuizApp.puml | 19e3b47cd4bd62d1f08b6351fc0a8ec207f4efb8 | [] | no_license | jackcarroll5/Object-Oriented-Analysis-And-Design | a5137718260b0f3ba03d20e326022dd2136056eb | 5dff7bee0663954097522f3e26e02c69b545dc60 | refs/heads/master | 2020-03-28T10:49:18.412649 | 2019-03-19T14:42:49 | 2019-03-19T14:42:49 | 148,148,567 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 430 | puml | @startuml
class Question{
- question : String
- answer : String
+ setText()
+ setAnswer()
+ display()
+ setQuestion()
+ checkAnswer()
}
class ChoiceQuestion{
- choices : String[]
+ display()
+ addChoice(text : String, answer : boolean)
}
class Quiz{
+ createQuestion()
+ presentQuestion()
+ addChoiceQuestion()
}
Quiz "0" --> "*" Question : "Consists"
Question <|-- ChoiceQuestion
@enduml | false | true | false | false | sequence |
3d154917a1c6601d2a8611f33c931c357bdd90fe | 8be8b335724928b1ed443e5fac6bb1976425d536 | /uml/ToDoList.puml | e1c2666c35d96e75513ccd67e208cdda617c51f5 | [] | no_license | yuuniper/yu-cop3330-assignment4 | ccdff1d1ab8317dae6dfac3a1e8c54488327c413 | ec1b07b0e59222599eb0e10d8f07d7b37e2404f6 | refs/heads/master | 2023-06-18T00:16:00.849468 | 2021-07-07T03:58:27 | 2021-07-07T03:58:27 | 383,104,337 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 660 | puml | @startuml
'https://plantuml.com/class-diagram
Class HomePage{
main()
start()
}
Class HomePageController{
ListView<String> listView
loadListView()
addListClicked()
removeListClicked()
editListClicked()
saveListClicked()
}
Class EditListController{
TableView<Task> table
TextField toDoListTitle
TextField getTask
TextField getDescription
CheckBox getCheckBox
DatePicker getDate
homeClicked()
addItemClicked()
removeItemClicked()
allItemsButtonClicked()
completedItemsClicked()
incompleteItemsClicked()
saveListClicked()
getTitle()
loadList()
setTitle()
}
JavaFx.Application <|-- HomePage
HomePage--HomePageController
HomePage--EditListController
@enduml | false | true | false | false | class |
e50e0a71f0661e2604b51cd54e80386ff339499b | 5aaa3893816642348ed9a5544490bc6e91e9a7a4 | /schema/prints/prints.puml | 52f6d4c5886e0f1dcc9da2b71f85b9a181b46810 | [
"MIT"
] | permissive | HakubJozak/hlasovani | 2ff06edc47c6ef933a6bd24ca985a0a3173d98e9 | 8b6e5260a53e2af4da125c406c95355645159ae8 | refs/heads/master | 2021-01-10T17:46:05.327862 | 2015-11-12T10:42:49 | 2015-11-12T10:42:49 | 45,179,858 | 0 | 0 | null | 2015-11-11T16:35:47 | 2015-10-29T11:49:15 | Ruby | UTF-8 | PlantUML | false | false | 3,066 | puml | @startuml
left to right direction
class Print {
- id: int
- type: PrintType
- state: PrintState
- number: int
- number_after_slash: int
- name: string
- name_full: string
- law_proposer_type: string
- authority: Authority
- authority_election_term: Authority
- proposers: Proposer[]
- date_of_propose: Date
- date_of_deliver: DateTime
- date_of_next_discussion: DateTime
- discussion_date_change: int
- is_fast_proposal: boolean
- is_eu: boolean
- with_wote_of_no_confidence: boolean
- date_of_e_version: Date
- url: string
- state: int
__
}
class PrintType {
- id: int
- name: string
- name_abbr: string
}
class PrintState{
- id: int
- state_type: PrintStateType
- print_type: PrintType
- description: string
- days_until_next_discussion: int
}
class PrintStateType{
- id: int
- description: string
}
class PrintTransition{
- id: int
- from_state: PrintState
- to_state: PrintState
- action: PrintTransitionType
}
class PrintTransitionType{
- id: int
- description: string
}
class Proposer {
- id: int
- print: Print
- person: Person
- index: int
- type: int
- proposer_type: string
}
class PropositionHistory{
- id: int
- print: Print
- date: Date
- voting: Voting
- transition: PrintTransition
- meeting_point: MeetingPoint
- meeting_number: int
- act_number: int
- responsible_person_by_council: MemberOfParliament
- responsible_by_chairman: MemberOfParliament
- act_number_council: int
- date_of_publication: Date
- publication_number: int
- notes: String
}
class PrintResult{
- id: int
- description: string
}
class PrintDependent{
- id: int
- type: PrintType
- number_after_slash: int
- proposition_history: PropositionHistory
- name: string
- name_full: string
- number: int
- authority: Authority
- act_number_council: int/string
- responsible_person: MemberOfParliament
- date_of_propose: Date
- date_of_deliver: Date
- is_sorted: boolean
- url: string
- result: PrintResult
- state: int
}
class CouncilHistory {
- print: Print
- authority: Authority
- type: int
- proposition_history: PropositionHistory
- responsible_person: MemberOfParliament
- index: int
}
Print "*" --> "1" PrintType : type >
Print "*" --> "1" PrintState : state >
PrintState "*" --> "1" PrintStateType : state_type >
PrintState "*" --> "1" PrintType : print_type >
PrintTransition "*" --> "1" PrintState : from_state >
PrintTransition "*" --> "1" PrintState : to_state >
PrintTransition "*" --> "1" PrintTransitionType
Person <--> Proposer
Print <-- Proposer
Print <-- PropositionHistory
PropositionHistory --> Voting
PropositionHistory --> PrintTransition
PropositionHistory --> MeetingPoint
PropositionHistory --> MemberOfParliament : responsible_person_by_council
PropositionHistory --> MemberOfParliament : responsible_person_by_chairman
PrintDependent --> PrintType
PrintDependent --> PropositionHistory
PrintDependent --> Authority
PrintDependent --> MemberOfParliament : responsible_person
PrintDependent --> PrintResult
Print <-- CouncilHistory
CouncilHistory --> Authority
CouncilHistory --> PropositionHistory
CouncilHistory --> MemberOfParliament
@enduml
| false | true | false | false | sequence |
e7304dcc0f55dbb766c726995a48a60f8993d9e7 | ee7d9381254f18bcf81334e6eebd3eba369c02e6 | /docs/diagrams/AddFoodSequenceDiagram.puml | b44786cc01d2f5c13848f77b2dd880bb7269b533 | [] | no_license | dmbclub/tp | 354468c8b607e0619c5dec4391cd007317d2861b | 212c2e7643d9dc5c43369155e27565875e359e1e | refs/heads/master | 2023-01-08T05:38:59.646038 | 2020-11-06T16:42:40 | 2020-11-06T16:42:40 | 297,849,747 | 0 | 0 | null | 2020-11-08T12:22:51 | 2020-09-23T04:15:10 | Java | UTF-8 | PlantUML | false | false | 1,023 | puml | @startuml
skinparam Shadowing false
participant ":Fitr"
participant "<<class>>\n:Ui"
participant "<<class>>\n:Parser"
-> ":Fitr" ++ : "food chicken rice /600 1"
":Fitr" -> "<<class>>\n:Ui" : read()
activate "<<class>>\n:Ui"
return userInput
":Fitr" -> "<<class>>\n:Parser" : parse(userInput)
activate "<<class>>\n:Parser"
create ":AddFoodCommand"
"<<class>>\n:Parser" -> ":AddFoodCommand"
activate ":AddFoodCommand"
return
|||
return command
deactivate "<<class>>\n:Parser"
participant ":Food"
participant ":FoodList"
participant ":StorageManager"
":Fitr" -> ":AddFoodCommand" : execute()
activate ":AddFoodCommand"
create ":Food"
":AddFoodCommand" -> ":Food"
activate ":Food"
return food
":AddFoodCommand" -> ":FoodList" : addFood(food)
activate ":FoodList"
|||
return
":AddFoodCommand" -> ":StorageManager" : writeFoodList()
activate ":StorageManager"
|||
return
|||
":AddFoodCommand" --> ":Fitr"
deactivate ":AddFoodCommand"
":AddFoodCommand" -[hidden]-> ":Fitr"
destroy ":AddFoodCommand"
hide footbox
@enduml
| false | true | false | false | sequence |
f1530c31aa5dc40a51c0b7c40534a492f36b3bcf | 9096886254ff0b704bce422211a2b2ea944661fd | /src/plantuml/activity/sample/test.puml | d95fb027547303b878f52e4a2c2aec69220c6bc1 | [] | no_license | hirosige/node_plantuml | 92f38412f337c10deed59705de481ac1b50c17fd | 737b10bec0faaf8ee3715b1c18f349640c06f745 | refs/heads/master | 2020-05-23T08:16:58.100342 | 2016-10-12T02:49:18 | 2016-10-12T02:49:18 | 70,238,456 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 265 | puml | @startuml
(*) --> "check input"
If "input is verbose" then
If "input is verbose again" then
--> [Yes] "turn on verbosity"
--> "run command"
else
--> [No] "run command"
Endif
else
--> [No] "run command"
Endif
-->(*)
@enduml | false | true | false | false | activity |
c62e9451417f0611506cc4e5a4ffe62b8414e14a | de8a1e04d05dced7044f25dd1e9e6464c99168e0 | /intro-refactoring-d02/doc/java.plantuml | 8e867e15f5b5fef1abf894a812fa09d205c266e5 | [
"Unlicense"
] | permissive | chyeyexx7/Disseny-de-Software-20-21 | cb8049b192291901ab6cf6d14bf642cbf1d85557 | 5d581f19185b8e5aab4e59d7fbe0245013802a67 | refs/heads/main | 2022-12-28T21:26:03.001096 | 2020-10-08T04:39:19 | 2020-10-08T04:39:19 | 302,228,330 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 904 | plantuml | @startuml
title __JAVA's Class Diagram__\n
class Customer {
- name : String
- rentals : Vector
+ Customer()
+ addRental()
+ getName()
+ statement()
}
class Movie {
{static} + CHILDRENS : int
{static} + NEW_RELEASE : int
{static} + REGULAR : int
- priceCode : int
- title : String
+ Movie()
+ getPriceCode()
+ getTitle()
+ setPriceCode()
}
class Rental {
- daysRented : int
+ Rental()
+ getDaysRented()
+ getMovie()
}
Rental o--> Movie : movie
Customer "1" --> "*" Rental: rents
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | sequence |
178ac5bca1f20b0d9974e0c3fd80781dc9ab3603 | e97fa247de81bda8f86620771f28d361b2565ff7 | /src/balapan/case23.puml | 30d94fc068bdf0974ebad65fcd895395d9ae4894 | [] | no_license | billymontolalu/thesis | a7513e64edd847e6a98a33efdc0b93558cd9a0bb | e6975930b8d05aeb49f5dd0864e385147f191035 | refs/heads/master | 2020-04-12T08:11:46.233731 | 2017-01-19T02:19:13 | 2017-01-19T02:19:13 | 65,616,028 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 532 | puml | @startuml
Vehicle : String colour
Vehicle : int speed
Vehicle : int weight
Vehicle : int maxWeight
Vehicle : String suspensi
Vehicle : String motif
Vehicle : turnLeft()
Vehicle : turnRight()
Bicycle : int wheelSize
MotorVehicle : String engineType
Passenger : int weight
Race : int idRace
Bonus : int crash
Bonus : int fasumCrash
Bicycle --|> Vehicle
MotorVehicle --|> Vehicle
FourWhell --|> MotorVehicle
TwoWhell --|> MotorVehicle
Truck --|> FourWhell
Car --|> FourWhell
Vehicle --|> Race
Passenger --|> Race
Bonus --> Race
@enduml | false | true | false | false | class |
5a55630417631617bf855adcd66f49b48f1a96e4 | 0e465546db393f27db953c2a03198828d78321f1 | /docs/states.puml | 6006f35d0d716d752221f37befcfb0a87a77431e | [
"Apache-2.0",
"JSON"
] | permissive | alexsaar/werder-city-guide | d8a42516b64eb31288b8e1b3002f8509d58c3871 | 81fc0b268e0e3dea28c004f8ef60dde566a6837d | refs/heads/master | 2021-01-11T20:55:08.831423 | 2017-02-21T19:31:01 | 2017-02-21T19:31:01 | 79,212,747 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 80 | puml | @startuml
[*] --> NEWS : Open
NEWS --> NEWS : Help
NEWS --> [*] : Stop
@enduml | false | true | false | false | sequence |
b938b0dfa06c9d718b7cde72eae708bfc1afbeb5 | 08738204ffb10b361a9d7a3b492cd0563f19e151 | /architecture/entités/joueur/joueur-initialisation-position.puml | c6255e1443a9df86b798e9fcddd2fc4adfb058d5 | [] | no_license | ldalzotto/MyCrossyRoad | 95b6e8a7aaa3944892cb664dccbe5f2ba58be0f4 | 69aa9082f763a9700a82f0d1b534738ecff488ca | refs/heads/master | 2021-01-22T21:00:21.860081 | 2017-04-10T07:48:05 | 2017-04-10T07:48:05 | 85,384,738 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 231 | puml | @startuml
hide footbox
participant "Joueur" as joueur
participant "ComposantPhysique3D" as compPhys
joueur -> joueur : Envoi message : Initialisation position
joueur -> compPhys : Envoi message : Initialisation position
@enduml | false | true | false | false | sequence |
6d70b2768cf9ed79149db2a63746606a70fc8305 | 2c585011206dbdd86fde2b1ec7b16af3e0b729e3 | /homework/uml/task2.puml | 047b419bda312e36b2d46028a00440241ae03d5e | [] | no_license | jwork-2021-attic/jw02-hollowopk | 54d6acb5d3d046e62ae963cf2bd3901374bef6d0 | e60f51fb8a2e22c328cc931637a2757f44accd36 | refs/heads/master | 2023-08-15T13:08:24.555782 | 2021-09-26T07:09:24 | 2021-09-26T07:09:24 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,559 | puml | @startuml
interface Sorter {
load(int[] elements);
sort();
getPlan();
}
class BubbleSorter {
int[] a
String plan
load(int[] a)
swap(int i, int j)
sort()
getPlan()
}
class QuickSorter {
int[] a
String plan
load(int[] a)
swap(int i, int j)
sort()
quicksort(int left, int right)
getPlan()
}
class Colors {
int[] colors
}
class Snake {
Snake theSnake
Sorter sorter
getTheSnake()
Snake()
setSorter(Sorter sorter)
lineUp(Line line)
parsePlan(String plan)
execute(String step,Line line)
}
class Monster {
int r
int g
int b
int rank
Position position
Monster(int r, int g, int b, int rank)
toString()
setPosition(Position position)
getPosition()
swapPosition(Monster another)
getValue()
}
interface Linable {
setPosition(Position position)
getPosition()
getValue()
}
class Line {
Position[] positions
Line(int length)
put(Linable linable, int i)
get(int i)
toString()
toArray()
}
class Position {
Linable linable
Position(Linable linable)
setLinable(Linable linable)
}
class Scene {
main(String[] args)
getRandomArray(int size)
}
interface Sorter {
load(int[] elements)
sort()
getPlan()
}
BubbleSorter --|> Sorter
QuickSorter --|> Sorter
Monster --|> Linable
Position --|> Line
@enduml | false | true | false | false | class |
31a7ad3d1c63586987822a53398c0030a963789c | b084e5a0ab4edf22313b30eacc19748ee4046540 | /uml/casos_de_uso.puml | c678ecca222d0aee7a5537c4bcffbfaa054970be | [
"MIT"
] | permissive | CarlosRA97/AprendizajeServicioVoluntario | 59ce8b5a3155be97c288b35c8fabfbdf66a6e552 | 7470baf10ae5a0636b238af6ac392b35ec21bd81 | refs/heads/master | 2022-05-29T20:49:18.221203 | 2020-05-02T21:08:53 | 2020-05-02T21:08:53 | 244,902,134 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,682 | puml | @startuml casos_de_uso
' Actores
actor Admin as "Administrador de actividades"
actor Demand as "Demandante"
actor Offer as "Ofertante"
' Casos de uso
(Registrarse como solicitante) as RegisterDemand
(Registrarse como ofertante) as RegisterOffer
(Solicitar la participacion a una actividad) as RequestActivity
(Evaluar la calidad de una actividad) as EvaluateQuality
(Evaluar la viabilidad de una actividad) as EvaluateViability
(Retirar la participacion de una actividad) as RemoveParticipation
(Comentar en una actividad) as CommentActivity
(Modificar una actividad) as ModifyActivity
(Evaluar el estado de una actividad) as EvaluateActivityStatus
(Crear una actividad) as CreateActivity
(Modificar preferencias) as ModifyPrefernces
usecase ManageParticipation as "Gestiona la participacion
de un solicitante en una actividad"
left to right direction
' Operaciones de Demandante
Demand --> RegisterDemand
Demand --> RequestActivity
Demand --> ModifyPrefernces
RequestActivity ..> EvaluateQuality
RequestActivity ..> RemoveParticipation
RequestActivity ..> CommentActivity
' Operaciones de Administrador
Admin -right-> EvaluateViability
' Compartido con ofertante
EvaluateViability ..> ManageParticipation
EvaluateViability ..> ModifyActivity
EvaluateViability ..> EvaluateActivityStatus
' Operaciones de Ofertante
Offer -down-> RegisterOffer
Offer -up-> CreateActivity
CreateActivity .up.> ManageParticipation
CreateActivity .up.> ModifyActivity
CreateActivity .up.> EvaluateActivityStatus
@enduml
| false | true | false | false | usecase |
97c3a18c496ccac6364c3012e2f44498a248dad8 | 897c5f0768d85d6070cbac83453eaeda84f86ab7 | /SELAIN SISTEM/UML/SEQUENCE/admin tu/UploadSPTBKA.puml | 5c71289e14951f45b4d40995dec63523822c8686 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | fiqihrosady/sistem_kp | b593e68eda63e3c4b2953447a2aa8f25f33f9921 | 7b9060a89f852577a6f4c1ea2596b59beb5e5b77 | refs/heads/master | 2020-09-27T00:03:37.042300 | 2019-12-05T18:54:26 | 2019-12-05T18:54:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,421 | puml | @startuml
autonumber
hide footbox
title Mengupload SPT BKA
Actor AdminTU
boundary Dashboard_V
boundary KontrolSPTBKA_V
boundary UploadSPTBKA_V
control Admin_C
control KontrolSPT_C
Entity SuratPerintahTugas_E
Admin_C --> Dashboard_V: load->view()
Dashboard_V --> AdminTU: Halaman Dashboard
AdminTU --> Dashboard_V: klik menu SPT BKA
Dashboard_V --> KontrolSPT_C: kontrolsptbka()
KontrolSPT_C --> SuratPerintahTugas_E:
SuratPerintahTugas_E --> KontrolSPT_C:
KontrolSPT_C --> KontrolSPTBKA_V: load->view()
KontrolSPTBKA_V --> AdminTU: Halaman SPT BKA
AdminTU --> KontrolSPTBKA_V: klik tombol Upload SPT BKA
KontrolSPTBKA_V --> KontrolSPT_C: uploadsptbkalengkap()
KontrolSPT_C --> UploadSPTBKA_V: load->view()
UploadSPTBKA_V --> AdminTU: Halaman Upload File Lengkap SPT BKA
AdminTU --> UploadSPTBKA_V: Mengisi Inputan dan klik tombol upload
note right of AdminTU
Inputan file spt bka lengkap
end note
UploadSPTBKA_V --> KontrolSPT_C: uploadsptbkalengkap()
KontrolSPT_C --> SuratPerintahTugas_E:
alt isValid() case
SuratPerintahTugas_E --> KontrolSPT_C: isValid()
KontrolSPT_C --> KontrolSPTBKA_V: load->view()
KontrolSPTBKA_V --> AdminTU: Halaman Kontrol SPT BKA
else isInvalid() case
SuratPerintahTugas_E --> KontrolSPT_C: isValid()
KontrolSPT_C --> UploadSPTBKA_V: load->view()
UploadSPTBKA_V --> AdminTU: Halaman Upload SPT BKA
end
@enduml | false | true | false | false | sequence |
92d6753913edd6d01ee04a23a58bc777fa440678 | da174bbe3abbb67a32ebb809666a27a5f66edd5f | /src/main/resources/diagrams/sequence/getDepartures.puml | 87b14d42b50382e2d74eae9cbe8e0b6aedfc7024 | [] | no_license | hyber1z0r/FerryBackend | 8967cff0fc1f1a0f6e6aa70bd65e3acfe9544fce | 33754fe4bfa729cdffdc857af13bcdf494d942cc | refs/heads/master | 2021-01-13T09:11:51.608133 | 2017-01-05T10:43:45 | 2017-01-05T10:43:45 | 71,994,344 | 0 | 0 | null | 2017-01-05T10:41:51 | 2016-10-26T10:55:33 | Kotlin | UTF-8 | PlantUML | false | false | 651 | puml | @startuml
actor Frontend
Frontend -> UserInterface: getDepartures(date: LocalDate, route: RouteIdentifier)
activate UserInterface
UserInterface -> EntityManager: createNamedQuery("Departure.search")
activate EntityManager
UserInterface <- EntityManager: query
deactivate EntityManager
UserInterface -> Query: resultList
activate Query
database DB
Query -> DB
activate DB
UserInterface <- DB: List<Departure>
deactivate DB
deactivate Query
loop map
UserInterface -> Departure: toDTO
activate Departure
UserInterface <- Departure: DepartureDetail
deactivate Departure
end
Frontend <- UserInterface: List<DepartureDetail>
deactivate UserInterface
@enduml | false | true | false | false | usecase |
22670a448f625028a03829ec63acf03082c9ff05 | 560e8a52f95138903d5198d217551de6bd8aa4a8 | /src/main/java/com/infosupport/poc/ddd/dao/dao.plantuml | df4bd58715d8d18ad0b08765684b475d639246d9 | [] | no_license | ingmars1709/ddd | dcfcf06951c4d968cda849aa462f0e6cc3c2a2d0 | 8cac199a2808a12f65745509bb66dd7a200a4d0f | refs/heads/master | 2020-04-20T19:11:43.488997 | 2020-03-13T08:21:01 | 2020-03-13T08:21:01 | 169,042,695 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 783 | plantuml | @startuml
title __DAO's Class Diagram__\n
package com.infosupport.poc.ddd.dao {
class PaymentInstructionFactory {
+ createPaymentInstructionEntity()
+ createPaymentInstruction()
}
}
package com.infosupport.poc.ddd.dao {
class PaymentInstructionRepositoryImpl {
- entityManager : EntityManager
+ add()
+ find()
- findOrderingAccount()
}
}
PaymentInstructionRepositoryImpl -up-|> PaymentInstructionRepository
PaymentInstructionRepositoryImpl o-- PaymentInstructionFactory : paymentInstructionFactory
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
00ca5970fd59b3f4c43564731f84044e256d9ec5 | 7434fc14a1eec0716e2320cdb1ccc8488a81f32e | /xyz.elite.xtext.languages.plantuml/src/test/resources/all-features.puml | 7905f1f4a5ff7dd8267263d028f1ca23b232eec5 | [
"MIT",
"Apache-2.0"
] | permissive | elite-se/plantestic-team-2 | 07b6f0e6f6f817b2cd3a68e7520518f4feb4f1c7 | e0db4a4496e546efe3ba06c813fe6169103c7a0e | refs/heads/master | 2022-11-30T06:51:33.348412 | 2020-08-04T16:19:11 | 2020-08-04T16:19:15 | 270,653,236 | 0 | 0 | Apache-2.0 | 2020-07-19T11:47:52 | 2020-06-08T12:05:42 | JavaScript | UTF-8 | PlantUML | false | false | 1,218 | puml | @startuml
' Configuration
header All Features PUML Diagram
footer Seite %page%/%lastpage%
skinparam roundcorner 25
title TITEL =)
hide footbox
actor "Alice" << (O, #eeaaaa) >> #aF7
autonumber 3 2
[--> Alice : Externer Trigger
activate Alice
participant "Multiline\nBob" as Bob
autoactivate on
Alice -> Bob : start()
== Initialization ==
/'
Multiline comment:
Syntax bellow yields a 100 pixel high spacing :)
'/
||100||
box "Cloud Services" #8877cc
create control "CCC-Mock"
Bob o-> "CCC-Mock" ++: request(POST, "/event/${location}", {location : "dingolfing"})
... wait(10 s) Auf schönes Wetter ;) ...
end box
return response(200||201, {event})
"CCC-Mock" -> "CCC-Mock" : bootSkynet()
== Hier wirds kritisch ==
Bob<-[#0000aa]->Alice : Comunicación muy importante
ref over Alice, Bob: Hier hängt ein ref Kasten\nmit mehreren Zeilen Text\n
== Schicksalskram ==
alt robot takeover
Alice -[#ffaaaa]>x "CCC-Mock" !! : Sie wurden soeben terminiert
destroy "CCC-Mock"
note left of Alice #eba : Alice ist großer Fan\nder Terminator Filmreihe ;)
else peacful
loop 100 times
Alice -> "CCC-Mock" : request(POST, "/gift")
"CCC-Mock" -> Alice : Thank you =)
end
end
[<-- Alice : Result
@enduml | false | true | true | false | usecase |
db10e93702deeab0de2c5f763587ca48737ab9bb | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-datatype-enkeladresse.puml | 3494ed923aed5d662ad2d011f196e0f3c9bda9d1 | [] | no_license | arkivverket/noark5-tjenestegrensesnitt-standard | 299f371a341e59402d49bfc11ee9e2672dad657e | 03025f8b9f1496f4a2f5b155e212a44768390274 | refs/heads/master | 2023-06-10T02:19:28.432679 | 2023-06-09T08:40:40 | 2023-06-09T08:40:40 | 136,293,843 | 7 | 11 | null | 2023-08-22T10:40:36 | 2018-06-06T07:58:53 | Python | UTF-8 | PlantUML | false | false | 757 | puml | @startuml
skinparam nodesep 100
hide circle
class Arkivstruktur.EnkelAdresse <<dataType>> {
+adresselinje1 : string [0..1]
+adresselinje2 : string [0..1]
+adresselinje3 : string [0..1]
+postnr : Postnummer [0..1]
+poststed : string
+landkode : Land [0..1] [1..1]
}
class Arkivstruktur.KorrespondansepartEnhet <Korrespondansepart> {
}
Arkivstruktur.KorrespondansepartEnhet *-- Arkivstruktur.EnkelAdresse
class Arkivstruktur.KorrespondansepartPerson <Korrespondansepart> {
}
Arkivstruktur.KorrespondansepartPerson *-- Arkivstruktur.EnkelAdresse
class Arkivstruktur.PartEnhet <Part> {
}
Arkivstruktur.PartEnhet *-- Arkivstruktur.EnkelAdresse
class Arkivstruktur.PartPerson <Part> {
}
Arkivstruktur.PartPerson *-- Arkivstruktur.EnkelAdresse
@enduml
| false | true | false | false | class |
974e0b98b0d1c6103ec780be19327c65717bd25e | f37e90775a158ea0ae644e334eac5bba341f4989 | /Documentation+/PlantUml/object/instances.puml | c6dd18f9ef82bdc5392a8318d32719e2f52cb732 | [] | no_license | Aleks-Ya/yaal_examples | 0087bbaf314ca5127051c93b89c8fc2dcd14c1e3 | ec282968abf1b86e54fc2116c39f2d657b51baac | refs/heads/master | 2023-09-01T07:40:44.404550 | 2023-08-27T15:24:34 | 2023-08-29T22:01:46 | 14,327,752 | 4 | 2 | null | 2021-06-16T20:39:19 | 2013-11-12T09:26:08 | Java | UTF-8 | PlantUML | false | false | 159 | puml | @startuml
title Several instances of a class
object "london: City" as london
object "washington: City" as washington
object "berlin: City" as berlin
@enduml
| false | true | false | false | object |
f79f8a077a7102192d899168387019e11f2cc08f | ad54ca0d015c9b2def3125a537549c326f376515 | /sequence.puml | 3bf29afd79f33b34e0f9112df5b5a99fd10dac30 | [
"MIT"
] | permissive | hearmymessage/plantuml-sandbox | 0a28fbd6ef3dceb76885b511c2c65d70f82fe551 | 2a866fc310f20cff552bac84e7ee3698b7f4995e | refs/heads/main | 2022-12-25T11:27:05.763305 | 2020-10-05T17:48:25 | 2020-10-05T17:48:25 | 301,480,134 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 704 | puml | @startuml
box "PIONEER" #LightBlue
actor Becca
database PIONEER
collections keystore
database BECCADB
end box
box "Stats" #Orange
actor Alice
database SECRETS
end box
== Encrypt PIONEER data ==
PIONEER -> Becca: PIONEER data
Becca -> keystore: Generate and store key
Becca -> Becca: Encrypt PIONEER data
Becca <- BECCADB: encrypted PIONEER data
== Send encrypted PIONEER data ==
Becca -> Alice: encrypted PIONEER data
== Retrieve secret data ==
SECRETS -> Alice: Secret data
== Combine and return data ==
Alice -> Alice: Combine data
Alice -> Becca: Combined data
== Store and Decrypt data ==
keystore -> Becca: Retrieve key
Becca -> Becca: Decrypt
Becca -> BECCADB: Store combined data
@enduml
| false | true | false | false | sequence |
1b05ff177f92680923c97750a04d2fa0367e0e70 | fa5ebd1d59ae2e0bd5fcb065fcabbc2c4a21b346 | /mojaloop-technical-overview/central-bulk-transfers/assets/diagrams/sequence/seq-bulkPrepare-prepare-1.1.1.plantuml | 23f7017d3fb71e02896f370a0111532aa975dd4d | [
"Apache-2.0"
] | permissive | chopoti/documentation | f67f00f68696394849a976e5b2225dead6d462f2 | eedd7587119c3f0f50c70519d6f5c368b5fec857 | refs/heads/master | 2020-05-20T20:25:01.075946 | 2019-05-08T11:59:33 | 2019-05-08T11:59:33 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 18,434 | plantuml | /'*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files 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, the Mojaloop files are 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.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Samuel Kummary <sam@modusbox.com>
--------------
******'/
@startuml
' declare title
title 1.1.1. Bulk Prepare Handler Consume
autonumber
' Actor Keys:
' boundary - APIs/Interfaces, etc
' collections - Kafka Topics
' control - Kafka Consumers
' entity - Database Access Objects
' database - Database Persistance Store
' declare actors
collections "topic-bulk-prepare" as TOPIC_BULK_PREPARE
control "Bulk Prepare Handler" as BULK_PREP_HANDLER
collections "topic-transfer-prepare" as TOPIC_TRANSFER_PREPARE
collections "Event-Topic" as TOPIC_EVENTS
collections "topic-bulk-processing" as TOPIC_BULK_PROCESSING
entity "Position DAO" as POS_DAO
entity "Participant DAO" as PARTICIPANT_DAO
database "Central Store" as DB
box "Central Service" #LightYellow
participant TOPIC_BULK_PREPARE
participant BULK_PREP_HANDLER
participant TOPIC_TRANSFER_PREPARE
participant TOPIC_EVENTS
participant TOPIC_BULK_PROCESSING
participant POS_DAO
participant PARTICIPANT_DAO
participant DB
end box
' start flow
activate BULK_PREP_HANDLER
group Bulk Prepare Handler Consume
TOPIC_BULK_PREPARE <- BULK_PREP_HANDLER: Consume Bulk Prepare message
activate TOPIC_BULK_PREPARE
deactivate TOPIC_BULK_PREPARE
break
group Validate Event
BULK_PREP_HANDLER <-> BULK_PREP_HANDLER: Validate event - Rule: type == 'bulk-prepare' && action == 'bulk-prepare'\n<color #FF0000><b>Error codes:</b> 2001</color>
end
end
group Persist Event Information
|||
BULK_PREP_HANDLER -> TOPIC_EVENTS: Publish event information
ref over BULK_PREP_HANDLER, TOPIC_EVENTS : Event Handler Consume {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-event-9.1.0.svg 9.1.0]]} \n
|||
end
group Validate Bulk Prepare Transfer
BULK_PREP_HANDLER <-> BULK_PREP_HANDLER: <color #AAA>Schema validation of the incoming message</color>
BULK_PREP_HANDLER <-> BULK_PREP_HANDLER: <color #AAA>Verify the message's signature (to be confirmed in future requirement)</color>
note right of BULK_PREP_HANDLER #lightgrey
The above validation steps are already handled by
the ML-Adapter for the open source implementation.
It may need to be added in future for custom adapters.
end note
group Validate Duplicate check
BULK_PREP_HANDLER -> POS_DAO: Request to retrieve Hash for a bulkTransferId
activate POS_DAO
POS_DAO -> DB: Request Transfer Hash for a bulkTransferId
activate DB
hnote over DB #lightyellow
bulkTransferDuplicateCheck
end note
POS_DAO <-- DB: Return hash if it exists
deactivate DB
BULK_PREP_HANDLER <-- POS_DAO: Return hash if it exists
deactivate POS_DAO
alt If bulkTransferId exists
group Persist Event Information
|||
BULK_PREP_HANDLER -> TOPIC_EVENTS: Publish event information
ref over BULK_PREP_HANDLER, TOPIC_EVENTS : Event Handler Consume {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-event-9.1.0.svg 9.1.0]]} \n
|||
end
BULK_PREP_HANDLER -> BULK_PREP_HANDLER: Generate Hash for the incoming message and compare hashes
alt BulkTransfer exists, hash matches
BULK_PREP_HANDLER -> POS_DAO: Request to retrieve Bulk Transfer state \n<color #FF0000><b>Error code:</b> 2003</color>
activate POS_DAO
POS_DAO -> DB: Request BulkTransfer state
hnote over DB #lightyellow
bulkTransfer
bulkTransferStateChange
end note
activate DB
POS_DAO <-- DB: Return Transfer state
deactivate DB
POS_DAO --> BULK_PREP_HANDLER: Return Transfer state
deactivate POS_DAO
break
alt If bulkTransferState IN ['COMPLETED', 'REJECTED']
BULK_PREP_HANDLER -> POS_DAO: Request to retrieve bulkTransferState, completedTimestamp of the bulk and the individual transfers involved
activate POS_DAO
POS_DAO -> DB: Return bulk transfer state, completedTimestamp for bulk and the list of individual transfers
activate DB
hnote over DB #lightyellow
bulkTransfer
bulkTransferAssociation
end note
POS_DAO <-- DB: Return bulk transfer state, completedTimestamp for bulk and the list of individual transfers
deactivate DB
BULK_PREP_HANDLER <-- POS_DAO: Return completedTimestamp for bulk and the list of individual transfers
deactivate POS_DAO
loop for each individual transfer in the bulk
BULK_PREP_HANDLER -> POS_DAO: Request to retrieve fulfilment, completedTimestamp for each individual transferId
activate POS_DAO
POS_DAO -> DB: Request fulfilment, completedTimestamp for the transferId
activate DB
hnote over DB #lightyellow
transfer
transferFulfilment
end note
POS_DAO <-- DB: Return fulfilment, completedTimestamp (if they exist) for individual transfers
deactivate DB
BULK_PREP_HANDLER <-- POS_DAO: Return fulfilment, completedTimestamp (if they exist) for individual transfers
deactivate POS_DAO
end
note right of BULK_PREP_HANDLER #yellow
Message:
{
id: <bulkTransferMessage.bulkTransferId>
from: <bulkTransferMessage.payerFsp>,
to: <bulkTransferMessage.payeeFsp>,
type: application/json
content: {
headers: <bulkTransferHeaders>,
payload: {
bulkTransferState: "COMPLETED",
individualTransferResults:
[
{
transferId: “b51ec534-ee48-4575-b6a9-ead2955b8069”,
fulfilment: “WLctttbu2HvTsa1XWvUoGRcQozHsqeu9Ahl2JW9Bsu8”,
extensionList:
{
extension:
[
{
key: "key",
“value”: value
}
]
}
}
],
completedTimestamp: "2019-10-24T08:38:08.699-04:00"
}
},
metadata: {
event: {
id: <uuid>,
responseTo: <previous.uuid>,
type: bulk-notification,
action: bulk-prepare-duplicate,
createdAt: <timestamp>,
state: {
status: "success",
code: 0
}
}
}
}
end note
BULK_PREP_HANDLER -> TOPIC_BULK_PROCESSING: Publish Notification event for Payer with the completed bulk transfer \nFor the Data Model, refer to the Swagger (bulkTransferState - mandatory, individualTransferResults, completedTimestamp - sample values above).
else If transferState IN ['RECEIVED', 'PENDING', 'ACCEPTED', 'PROCESSING']
BULK_PREP_HANDLER <-> BULK_PREP_HANDLER: This request can be ignored, because a callback will be sent to the client once the bulk transfer is complete.
else If transferState does not exist
BULK_PREP_HANDLER -> TOPIC_BULK_PROCESSING: Send /error callback with appropriate error message\n(Invalid duplicate request)\n<color #FF0000><b>Error code:</b> 3100</color>
end
end
else BulkTransfer exists, hash does not match
break
BULK_PREP_HANDLER -> TOPIC_BULK_PROCESSING: Publish Notification (failure) event for Payer\n<color #FF0000><b>Error codes:</b> 3106</color> \nFor the Data Model, refer to the final step in this diagram (has the same text).
end
end
else If bulkTransferId does NOT exist
BULK_PREP_HANDLER -> POS_DAO: Request to persist Transfer Hash \n<color #FF0000><b>Error code:</b> 2003</color>
activate POS_DAO
POS_DAO -> DB: Persist Bulk Transfer message hash
hnote over DB #lightyellow
bulkTransferDuplicateCheck
end note
POS_DAO --> BULK_PREP_HANDLER: Return success
deactivate POS_DAO
end
deactivate POS_DAO
end
group Validate Payer
BULK_PREP_HANDLER -> PARTICIPANT_DAO: Request to retrieve Payer Participant details (if it exists)
activate PARTICIPANT_DAO
PARTICIPANT_DAO -> DB: Request Participant details
hnote over DB #lightyellow
participant
participantCurrency
end note
activate DB
PARTICIPANT_DAO <-- DB: Return Participant details if it exists
deactivate DB
PARTICIPANT_DAO --> BULK_PREP_HANDLER: Return Participant details if it exists
deactivate PARTICIPANT_DAO
BULK_PREP_HANDLER <-> BULK_PREP_HANDLER: Validate Payer\n<color #FF0000><b>Error codes:</b> 3202</color>
end
group Validate Payee
BULK_PREP_HANDLER -> PARTICIPANT_DAO: Request to retrieve Payee Participant details (if it exists)
activate PARTICIPANT_DAO
PARTICIPANT_DAO -> DB: Request Participant details
hnote over DB #lightyellow
participant
participantCurrency
end note
activate DB
PARTICIPANT_DAO <-- DB: Return Participant details if it exists
deactivate DB
PARTICIPANT_DAO --> BULK_PREP_HANDLER: Return Participant details if it exists
deactivate PARTICIPANT_DAO
BULK_PREP_HANDLER <-> BULK_PREP_HANDLER: Validate Payee\n<color #FF0000><b>Error codes:</b> 3203</color>
end
BULK_PREP_HANDLER <-> BULK_PREP_HANDLER: Validate crypto-condition\n<color #FF0000><b>Error codes:</b> 3100</color>
alt Validate Bulk Prepare Transfer (success)
group Persist Bulk Transfer State (with bulktransferState='RECEIVED')
BULK_PREP_HANDLER -> POS_DAO: Request to persist bulk transfer\n<color #FF0000><b>Error codes:</b> 2003</color>
activate POS_DAO
POS_DAO -> DB: Persist bulkTransfer
hnote over DB #lightyellow
bulkTransfer
bulkTransferParticipant
bulkTransferStateChange
bulkTransferExtension
end note
activate DB
deactivate DB
POS_DAO --> BULK_PREP_HANDLER: Return success
deactivate POS_DAO
end
else Validate Bulk Prepare Transfer (failure)
group Persist Bulk Transfer State (with bulkTransferState='INVALID') (Introducing a new status INVALID to mark these entries)
BULK_PREP_HANDLER -> POS_DAO: Request to persist bulk transfer\n(when Payee/Payer/crypto-condition validation fails)\n<color #FF0000><b>Error codes:</b> 2003</color>
activate POS_DAO
POS_DAO -> DB: Persist transfer
hnote over DB #lightyellow
bulkTransfer
bulkTransferParticipant
bulkTransferStateChange
bulkTransferExtension
bulkTransferError
end note
activate DB
deactivate DB
POS_DAO --> BULK_PREP_HANDLER: Return success
deactivate POS_DAO
end
end
end
alt Validate Bulk Prepare Transfer (success)
BULK_PREP_HANDLER -> BULK_PREP_HANDLER: Break down the bulk into indidivual transfers\n<color #FF0000><b>Error codes:</b> 2003</color>
loop for every individual transfer in the bulk
note right of BULK_PREP_HANDLER #yellow
Message:
{
id: <transferMessage.transferId>
from: <transferMessage.payerFsp>,
to: <transferMessage.payeeFsp>,
type: application/json
content: {
headers: <transferHeaders>,
payload: <transferMessage>
},
metadata: {
event: {
id: <uuid>,
responseTo: <previous.uuid>,
type: bulk-prepare,
action: prepare,
createdAt: <timestamp>,
state: {
status: "success",
code: 0
}
}
}
}
end note
BULK_PREP_HANDLER -> TOPIC_TRANSFER_PREPARE: Route & Publish Prepare event to the Payer for the Individual Transfer\n<color #FF0000><b>Error codes:</b> 2003</color>
activate TOPIC_TRANSFER_PREPARE
deactivate TOPIC_TRANSFER_PREPARE
end
else Validate Bulk Prepare Transfer (failure)
note right of BULK_PREP_HANDLER #yellow
Message:
{
id: <bulkTransferMessage.bulkTransferId>
from: <ledgerName>,
to: <bulkTransferMessage.payerFsp>,
type: application/json
content: {
headers: <bulkTransferHeaders>,
payload: {
"errorInformation": {
"errorCode": <possible codes: [2003, 3100, 3105, 3106, 3202, 3203, 3300, 3301]>
"errorDescription": "<refer to section 35.1.3 for description>",
"extensionList": <transferMessage.extensionList>
}
},
metadata: {
event: {
id: <uuid>,
responseTo: <previous.uuid>,
type: bulk-notification,
action: bulk-abort,
createdAt: <timestamp>,
state: {
status: 'error',
code: <errorInformation.errorCode>
description: <errorInformation.errorDescription>
}
}
}
}
end note
BULK_PREP_HANDLER -> TOPIC_BULK_PROCESSING: Publish Notification (failure) event for Payer\n<color #FF0000><b>Error codes:</b> 2003</color>
activate TOPIC_BULK_PROCESSING
deactivate TOPIC_BULK_PROCESSING
end
end
deactivate BULK_PREP_HANDLER
@enduml
| false | true | true | false | sequence |
f7e4c36e5075c32a8c87fe5e459261ce9615acbc | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductUnpublishedMessagePayload.puml | c943d0f5b2c6d7f6bc01120e762d67261f481326 | [] | 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 | 420 | 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 ProductUnpublishedMessagePayload [[ProductUnpublishedMessagePayload.svg]] extends MessagePayload {
type: String
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
08566fabb77009e6a3b05346d527398ae700e8c5 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductSetDiscountedPriceAction.puml | eecfd796bab1d67cda6682d423d84dadf94910d1 | [] | 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 | 543 | 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 ProductSetDiscountedPriceAction [[ProductSetDiscountedPriceAction.svg]] extends ProductUpdateAction {
action: String
priceId: String
staged: Boolean
discounted: [[DiscountedPriceDraft.svg DiscountedPriceDraft]]
}
interface ProductUpdateAction [[ProductUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
60baca4b0a15c54f52d376fe9a66519d158e419e | 1aa9654c18c622dcec50c65d01a4075c601f692d | /WisherApp/app/src/main/java/ru/omegapps/wisherapp/fragments/wishgen/wishgen.plantuml | 9f59e4a7f45327576e2443ac6e9949ab715cc173 | [] | no_license | iCatOK/wisher-app-android | 52e217f01757f969f9a1c7609db708d5770dbb0f | 32de7790360a816da32c86704f9bdd74021b91f0 | refs/heads/master | 2023-06-15T07:22:44.548594 | 2021-07-12T16:15:06 | 2021-07-12T16:15:06 | 370,042,960 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,413 | plantuml | @startuml
title __WISHGEN's Class Diagram__\n
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.AdresseeConfigFragment {
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
- addresseeName : EditText
- mParam1 : String
- mParam2 : String
- nextStepButton : Button
- randomGenButton : Button
- setTagButton : Button
- sex : String
- sexRadioGroup : RadioGroup
- tagGroup : TagGroup
- tagList : List<String>
- tagText : EditText
+ AdresseeConfigFragment()
+ hideKeyboard()
{static} + newInstance()
+ onCreate()
+ onCreateView()
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.BeginSetupFragment {
~ chosenIndexes : ArrayList<Integer>
~ nextStepButton : Button
~ recyclerView : RecyclerView
~ wishBlocks : ArrayList<WishBlock>
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
{static} - STEP_NAME : String
- mParam1 : String
- mParam2 : String
+ BeginSetupFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
+ onMyItemClick()
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.EndSetupFragment {
~ chosenIndexes : ArrayList<Integer>
~ nextStepButton : Button
~ recyclerView : RecyclerView
~ wishBlocks : ArrayList<WishBlock>
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
{static} - STEP_NAME : String
+ EndSetupFragment()
+ onCreate()
+ onCreateView()
+ onMyItemClick()
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.MiddleSetupFragment {
~ chosenIndexes : ArrayList<Integer>
~ nextStepButton : Button
~ recyclerView : RecyclerView
~ wishBlocks : ArrayList<WishBlock>
{static} - ARG_PARAM1 : String
{static} - ARG_PARAM2 : String
{static} - STEP_NAME : String
- mParam1 : String
- mParam2 : String
+ MiddleSetupFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
+ onMyItemClick()
}
}
}
}
namespace ru.omegapps.wisherapp {
namespace fragments {
namespace wishgen {
class ru.omegapps.wisherapp.fragments.wishgen.WishGenSessionEndFragment {
{static} - WISH_TEXT : String
- mWishText : String
+ WishGenSessionEndFragment()
{static} + newInstance()
+ onCreate()
+ onCreateView()
}
}
}
}
ru.omegapps.wisherapp.fragments.wishgen.AdresseeConfigFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.BeginSetupFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemClickListener
ru.omegapps.wisherapp.fragments.wishgen.BeginSetupFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.EndSetupFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemClickListener
ru.omegapps.wisherapp.fragments.wishgen.EndSetupFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.MiddleSetupFragment .up.|> ru.omegapps.wisherapp.interfaces.OnMyItemClickListener
ru.omegapps.wisherapp.fragments.wishgen.MiddleSetupFragment -up-|> androidx.fragment.app.Fragment
ru.omegapps.wisherapp.fragments.wishgen.WishGenSessionEndFragment -up-|> androidx.fragment.app.Fragment
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
9646cab36143ece3e5c7ce619d8b11ba7a7c2b92 | 2f9950f2f20c5260b217175bca467776eb5afdd9 | /doc/design/moking_sequence.puml | b82e76522255598881cde859faae1612dcba9c45 | [] | no_license | samuelrivas/moka | fecb6cf8be6ad6db813a766033cc18d9fdcc3b76 | 92521e43d1d685794f462ed49403c99baeae0226 | refs/heads/master | 2021-01-01T15:40:35.863642 | 2014-02-01T10:18:37 | 2014-02-01T10:18:37 | 4,950,744 | 5 | 1 | null | 2014-02-01T10:28:56 | 2012-07-08T22:59:42 | Erlang | UTF-8 | PlantUML | false | false | 2,173 | puml | @startuml
actor user
Participant moka
Participant moka_mod_utils
Participant Module
Participant CallHandler1
Participant FunProcess
Participant Dependency
Create moka
note right of moka : Supervisors are hidden for simplicity
user -> moka : start(Module)
activate moka
moka -> moka_mod_utils : parse(Module)
activate moka_mod_utils
moka_mod_utils --> moka : AbstractModule0
deactivate moka_mod_utils
moka --> user : Ref
deactivate moka
user -> moka : substitute(Ref, call, new_call)
activate moka
Create CallHandler1
note right of CallHandler1 : One call_handler per subsitute(...) call
moka -> CallHandler1 : start_link(new_call)
moka -> moka_mod_utils : substitute(AbstracModule0, call, new_call)
activate moka_mod_utils
moka_mod_utils --> moka : AbstractModule1
deactivate moka_mod_utils
moka --> user : ok
deactivate moka
user -> Module : call(Args)
Activate Module
note right of Module : Calling the original code
Module -> Dependency : call(InnerArgs)
Activate Dependency
Dependency --> Module : DepResult
Deactivate Dependency
Module --> user : Result
Deactivate Module
user -> moka : load(Ref)
Activate moka
moka -> moka_mod_utils : load(Module, AbstractModule1)
Activate moka_mod_utils
moka_mod_utils -> Module : load(NewCode)
moka_mod_utils --> moka : ok
Deactivate moka_mod_utils
moka --> user : ok
Deactivate moka
user -> Module : call(Args)
Activate Module
note right of Module : Calling the modified code
Module -> CallHandler1
Activate CallHandler1
CallHandler1 -> FunProcess
Deactivate CallHandler1
Activate FunProcess
FunProcess -> FunProcess : new_call(InnerArgs)
FunProcess --> Module : NewDepResult
Deactivate FunProcess
Module --> user : NewResult
deactivate Module
@enduml
| false | true | false | false | usecase |
79c958e5153e7acf0e6359ec9d3e0909701e1713 | 32bdffd59d206a82201db971642dbebca69a36bc | /data/detectordag/device-source/shadow.plantuml | 63a2529ebd3b717507f92869ccbeec86f2ccfd84 | [] | no_license | briggySmalls/blog | 28c637cfb358043c871f3eb3d75377239caadd89 | 471767e84acd0528bae989811b2d56ec2aa66ce6 | refs/heads/master | 2020-12-27T17:10:14.260669 | 2020-04-27T08:28:08 | 2020-04-27T08:28:08 | 237,983,396 | 0 | 1 | null | 2020-04-26T17:06:35 | 2020-02-03T14:23:16 | HTML | UTF-8 | PlantUML | false | false | 316 | plantuml | @startuml
left to right direction
skinparam shadowing false
database database {
class account
}
rectangle iot as "AWS IoT" {
class thing
class shadow
}
account "1" --- "many" thing
thing "1" -- "1" shadow
account : email
account : id
thing : name
thing : account-id
shadow : power-status
@enduml
| false | true | false | false | sequence |
4bcf5d9c6da7a298cd571c88ba9c27af80aa1108 | 8664bf2165c807e312c4ddc0cbab2815c56119e1 | /documentss/offers/add_new_offer2.puml | 7373f14bcedfa2b47e687c14b8e1c589cbc2bdb2 | [
"MIT"
] | permissive | tuanlvse294/CHome | 3f36afcfd9c0b8a327b0bc81622da5fff095b492 | 115e898e8f734f90de915d73e8a98d3044afad58 | refs/heads/master | 2020-04-13T09:21:03.904078 | 2019-05-09T18:00:56 | 2019-05-09T18:00:56 | 163,108,106 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 788 | puml | @startuml
actor User
control OfferController
boundary offer.edit
entity OfferModel
User -> OfferController : click create new offer button
activate User
activate OfferController
OfferController -> OfferController:create()
OfferController -> offer.edit : view()
deactivate OfferController
activate offer.edit
offer.edit -> offer.edit:render()
offer.edit -->User
deactivate offer.edit
User -> OfferController : new offer's info
activate OfferController
OfferController->OfferController:store()
OfferController->OfferController:validate()
OfferController->OfferModel:offer's info
activate OfferModel
OfferModel->OfferModel:save()
OfferModel --> OfferController
deactivate OfferModel
OfferController --> User: return home, show notification
deactivate OfferController
deactivate User
@enduml | false | true | false | false | sequence |
f050a2cbf7697ef9c3e10c1548874383d8a907f4 | 9ba4dac95dcce98fe80a3faa35b03a66dc99a925 | /puml/SliceTrackerPlugins.puml | 09eff168e056d200569f4a004a6b3f83a9a248ef | [
"BSD-3-Clause",
"LicenseRef-scancode-3dslicer-1.0"
] | permissive | cat2tom/SliceTracker | 9ec3f808b463307a0ff6188478cd486ba49dd440 | bebe998bbabedb602cceb0f9cf72eec9448d46de | refs/heads/master | 2021-01-01T16:44:12.195665 | 2017-07-14T23:43:34 | 2017-07-14T23:43:34 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,775 | puml | @startuml
abstract class SliceTrackerPlugin {
+ {abstract} LogicClass
}
class SliceTrackerLogicBase
SliceTrackerLogicBase <.. SliceTrackerPlugin::LogicClass: uses instance of
package "SliceTracker Plugins" #DDDDDD {
package "Training Management" #FDADDF {
class SliceTrackerTrainingPlugin {
}
SliceTrackerPlugin <|-- SliceTrackerTrainingPlugin
}
package "Registration Results Management" #FDADDF {
class SliceTrackerRegistrationResultsPlugin {
+ LogicClass
+ onLayoutChanged()
}
class SliceTrackerRegistrationResultsLogic
SliceTrackerPlugin <|-- SliceTrackerRegistrationResultsPlugin
SliceTrackerRegistrationResultsPlugin::LogicClass ..> SliceTrackerRegistrationResultsLogic: uses
}
package "Target Management" #FDDDDD {
class SliceTrackerTargetTablePlugin {
+ LogicClass
+ targetTableModel
}
class SliceTrackerTargetTableLogic {
}
class ZFrameGuidanceComputation {
}
class CustomTargetTableModel {
# _guidanceComputations
}
SliceTrackerPlugin <|-- SliceTrackerTargetTablePlugin
SliceTrackerTargetTablePlugin::LogicClass ..> SliceTrackerTargetTableLogic: uses
SliceTrackerTargetTablePlugin::targetTableModel ..> CustomTargetTableModel: uses
ZFrameGuidanceComputation <.. CustomTargetTableModel::_guidanceComputations
}
package "Targeting" #FDDDFF {
class SliceTrackerTargetingPlugin {
+ LogicClass
}
class SliceTrackerTargetTargetingLogic {
}
SliceTrackerPlugin <|-- SliceTrackerTargetingPlugin
SliceTrackerTargetingPlugin::LogicClass ..> SliceTrackerTargetTargetingLogic: uses
}
package "Case Management" #DDF0DD {
class SliceTrackerCaseManagerPlugin {
+ LogicClass
}
class SliceTrackerCaseManagerLogic {
}
SliceTrackerPlugin <|-- SliceTrackerCaseManagerPlugin
SliceTrackerCaseManagerPlugin::LogicClass ..> SliceTrackerCaseManagerLogic: uses
}
package "Future Plugins" #DDFFDD {
class SliceTrackerNeedleSegmentationPlugin {
+ LogicClass
}
SliceTrackerPlugin <|-- SliceTrackerNeedleSegmentationPlugin
SliceTrackerNeedleSegmentationPlugin::LogicClass ..> SliceTrackerNeedleSegmentationLogic: uses
class SliceTrackerTargetDisplacementChartPlugin {
+ LogicClass
}
SliceTrackerPlugin <|-- SliceTrackerTargetDisplacementChartPlugin
SliceTrackerTargetDisplacementChartPlugin::LogicClass ..> SliceTrackerTargetDisplacementChartLogic: uses
}
package "Segmentation Management" #5555FF {
class SliceTrackerSegmentationPluginBase {
.. event ..
+ SegmentationStartedEvent
+ SegmentationFinishedEvent
}
SliceTrackerPlugin <|-- SliceTrackerSegmentationPluginBase
class SliceTrackerAutomaticSegmentationPlugin {
+ LogicClass
}
class SliceTrackerAutomaticSegmentationLogic
SliceTrackerSegmentationPluginBase <|--SliceTrackerAutomaticSegmentationPlugin
SliceTrackerAutomaticSegmentationLogic <.. SliceTrackerAutomaticSegmentationPlugin::LogicClass: uses
class SliceTrackerManualSegmentationPlugin {
.. event ..
+ SegmentationCancelledEvent
__
+ volumeClipToLabelWidget
}
SliceTrackerSegmentationPluginBase <|--SliceTrackerManualSegmentationPlugin
VolumeClipToLabelWidget <.. SliceTrackerManualSegmentationPlugin::volumeClipToLabelWidget: uses
class VolumeClipToLabelWidget {
.. event ..
+ SegmentationFinishedEvent
+ SegmentationStartedEvent
+ SegmentationCanceledEvent
--
+ logic
}
class VolumeClipToLabelLogic {
}
VolumeClipToLabelWidget::logic ..> VolumeClipToLabelLogic: uses
}
}
SliceTrackerWidgetBase <|-- SliceTrackerPlugin
@enduml | false | true | false | false | class |
bcb6da9864a354a304b73096b9ec050db7bf80bb | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/order/media/src/productOrderFlow.puml | 93ccee05d0e6c33d85bd16a5d1e5fc412412f09c | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 1,109 | puml | @startuml
' skinparam Linetype polyline
' skinparam Linetype ortho
skinparam state {
BackgroundColor White
BorderColor Black
}
hide empty description
state issues_detected <<choice>>
note right of issues_detected : issues detected?
'''state rank'''
inProgress -d[hidden]-> held.assessingCharge
held.assessingCharge -d[hidden]-> completed
held.assessingCharge -d[hidden]-> failed
held.assessingCharge -d[hidden]-> partial
''' diagram'''
[*] --> acknowledged
acknowledged --> issues_detected
issues_detected -d-> inProgress : no
issues_detected -l-> rejected : yes
inProgress -l-> pending.assessingModification
inProgress -d-> completed
inProgress -d-> failed
inProgress -d-> partial
inProgress --> held.assessingCharge
inProgress -r-> assessingCancellation
inProgress -r-> pendingCancellation
pending.assessingModification -r-> inProgress
held.assessingCharge -l-> inProgress
assessingCancellation -l-> inProgress
assessingCancellation -r-> pendingCancellation
pendingCancellation --> cancelled
completed --> [*]
failed --> [*]
partial --> [*]
cancelled --> [*]
rejected --> [*]
@enduml | false | true | false | false | sequence |
7777a65d1f8d136e349782d6a88d8e0bc4960f03 | c664ac184960c70018e702015f5d81fa6ca92851 | /design/Covid19_App_design.plantuml | 1eb5bc4426a222da3be8b75a0a73272b34da6747 | [] | no_license | bbdItCorporation/Covid19_App | 63887ff1694e7be80a112e8c081793f88cd96d10 | 74c18828a3dae6c8c10c38f4718d4613316befc6 | refs/heads/master | 2023-03-02T14:27:37.951890 | 2021-02-08T14:10:20 | 2021-02-08T14:10:20 | 308,445,967 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,250 | plantuml | @startuml Covid19App
skinparam BackgroundColor #2C2C3B
skinparam ClassBackgroundColor #3D3D3D
skinparam ClassFontColor #398EE9
skinparam ClassAttributeFontColor #FCAF3E
skinparam ArrowColor #569CD6
skinparam ClassBorderColor #569CD6
skinparam ClassBorderThickness 2
skinparam ArrowFontColor #398EE9
class User << Entity>> {
- long id;
- String name;
- String surname;
- String role;
- String login;
- String passwordHash;
- String mail;
+ getId() : long
+ getName() : String
+ setName(String name)
+ getSurname() : String
+ setSurname(String surname)
+ getRole() : String
+ setRole(String role)
+ getLogin() : String
+ setLogin(String login)
+ getPasswordHash() : String
+ setPasswordHash(String passwordHash)
+ getMail() : String
+ setMail(String mail)
}
class Hasher {
- hash params!
+ hash(String string) : String
}
class LoginController <<Controller>> {
}
class PatientController <<Controller>> {
}
class AdminController <<Controller>> {
}
class Patient << Entity>> {
- baza info
+ set i get
}
interface JpaRepository {
}
interface PatientRepository <<Repository>> {
}
interface UserRepository <<Repository>> {
}
class ExcelDocGenerator {
+ generateExcelDoc()
- getTableData()
}
class WordDocGenerator {
+ generateWordDoc()
- getTableData()
}
interface DbExtractor {
}
class DbExtractorImpl {
}
class Validator {
+ Validator(String whitelist);
+ validate(String str)
'regex
'[0-9@a-zA-Z\._-]
'[^a-z^A-Z]+
'https://regexr.com/
}
JpaRepository <|-- PatientRepository : extends
JpaRepository <|-- UserRepository : extends
AdminController *-- DbExtractor : uses
LoginController *-- DbExtractor : uses
PatientController *-- DbExtractor : uses
DbExtractor <|-- DbExtractorImpl : implements
ExcelDocGenerator *-- DbExtractor : uses
WordDocGenerator *-- DbExtractor : uses
PatientController *-- WordDocGenerator : uses
PatientController *-- ExcelDocGenerator : uses
DbExtractorImpl *-- PatientRepository : uses
DbExtractorImpl *-- UserRepository : uses
PatientRepository *-- Patient : uses
UserRepository *-- User : uses
AdminController *-- Hasher : uses
LoginController *-- Hasher : uses
@enduml
| false | true | false | false | class |
038df61e88526516da9595198231c2ac8176af2a | 009f679930a9b010f5c3a9490a86a55a53fe2394 | /lib/src/csui/utils/commands/open.plugins/doc/default-open-plugin-rules.puml | a2955dea249a3d0905df07b055a3be4c0a073ee7 | [] | no_license | vashisht7/OTCS-Widgets | 7ad278f211903fff526c29e052a28b357dcc4ae0 | 2dd13681c6e08fc2e015c28d2456409d0e9fda13 | refs/heads/main | 2023-04-21T03:08:21.442389 | 2021-05-16T15:57:45 | 2021-05-16T15:57:45 | 367,908,656 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 501 | puml | @startuml
(*) --> if "Download is enforced\n(in the Open command)" then
->[true] "Download"
else
-->[false] if "Brava Viewer is enabled and fits\n(sequence 400)" then
->[true] "Show in Brava Viewer"
else
-->[false] if "CS Viewer is enabled and fits\n(sequence 600)" then
->[true] "Show in CS Viewer"
else
-->[false] if "Browser is enabled and fits\n(sequence 800)" then
->[true] "Show in browser"
else
-->[false] "Download (fallback)"
endif
endif
endif
@enduml | false | true | false | false | activity |
d2f7ff2d511bf4dab4914f3c31a09e7063a8490a | d1ffaec31f5b34555dd61e14cdb9159924a941ea | /Finales/final-2021-08-26-AlgoVozBatallas/resolucion_alumno/plantuml/Clases.plantuml | db2ddb4a2e3abd1f4d1fc39019dc7f06940ff1ec | [
"MIT"
] | permissive | guille-acosta/7507-Algo3 | 79250bf90d927881636074cd80c6a4da5039f0c9 | 4e3019ca8199f1e3e40aa21d5110f2697a72f12b | refs/heads/master | 2023-08-12T03:44:14.748803 | 2021-09-17T12:07:23 | 2021-09-17T12:07:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,116 | plantuml | @startuml
skinparam style strictuml
skinparam classAttributeIconSize 0
skinparam monochrome true
hide empty members
class Coach {
-yaRobo : bool
+ robarDe( batalla : Batalla )
+ perderParticipante( participante : Participante )
+ asignarParticipante( participante : Participante[] )
+ batallaEntre( unParticipante:Participante, otroParticipante:Participante):Participante
}
class Participante {
+ setHabilidad( habilidad:HabilidadExtra )
+ presentaMejorQue( otro:Participante ):Participante
+ presentaMejorQue( otro:Participante , otra:Presentacion ):Participante
}
class Presentacion{
- errores : uint
+ errores() : uint
+ presentaMejorQue( participante:Participante, otro:Participante , otra:Presentacion ):Participante
+ masHabilQue( participante:Participante, otro:Participante , otra:HabilidadExtra ):Participante
{static} new Presentacion( habilidad:HabilidadExtra ):Presentacion
{static} new Presentacion( ):Presentacion
}
class Batalla {
- perdedor : Participante
- ganador : Participante
- setGanador( unParticipante: Participante)
- setPerdedor( unParticipante: Participante)
+ entre( unParticipante:Participante, otroParticipante:Participante):Participante
+ robarPor( coach:Coach )
}
interface HabilidadExtra <<interface>> {
+ masHabilQue( participante:Participante, otro:Participante , otra:HabilidadExtra ):Participante
+ masHabilQue( participante:Participante, otro:Participante , otra:HabilidadBailar ):Participante
+ masHabilQue( participante:Participante, otro:Participante , otra:HabilidadInstrumento ):Participante
+ masHabilQue( participante:Participante, otro:Participante , otra:HabilidadCarisma ):Participante
+ masHabilQue( participante:Participante, otro:Participante , otra:SinHabilidad ):Participante
}
Coach o-- Participante
Participante *-- Presentacion
Participante "1"*-"1" HabilidadExtra
HabilidadExtra <|.. HabilidadBailar
HabilidadExtra <|.. HabilidadInstrumento
HabilidadExtra <|.. HabilidadCarisma
HabilidadExtra <|.. SinHabilidad
Batalla "1" -> "2" Participante
Coach --> Batalla
Presentacion "1"*-"1" HabilidadExtra
@enduml | false | true | false | false | class |
41981af758134961e769f6509b67ec548322fec8 | f8781f0e74245981db90d630c5ebc8e4407effb7 | /exercise43/docs/Solution43UML.puml | 4af12fa62594386237bf0aa088e10831ec07af38 | [] | no_license | Perry-codes/perry-a04 | 3865001ae99bb2d5fe9a905ae6e02ccfd213cd60 | 78bbd778f64916b59b534babac671a528b64ca19 | refs/heads/master | 2023-08-27T18:11:43.650631 | 2021-10-17T23:15:53 | 2021-10-17T23:15:53 | 414,005,740 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 216 | puml | @startuml
class Solution43 {
main()
}
class websiteTemplate{
-String siteName
-String siteAuthor
-Path websiteRoot
-createJsFolder()
-createCssFolder()
-createIndexFile()
}
Solution43 -- websiteTemplate
@enduml | false | true | false | false | class |
3d1c215d466a1458c23944fd7e1970021a482884 | f15c2d2b5479bc44514eacae90591d78df51d981 | /src/main/resources/com/github/adriancitu.burp/tabnabbing/parser/ObserverClassDiagram.puml | 27e6613de782ed37fd57e7c2c48901783f1c0aa9 | [
"MIT"
] | permissive | m3rc1ful/burp-tabnabbing-extension | 02559ad00a6559a95cf32fb919cabb7b90f6778e | 224c0d7c2f989f810fe7c6d9da6449c7f024e887 | refs/heads/master | 2021-09-14T05:49:33.979702 | 2018-05-08T21:22:44 | 2018-05-08T21:22:44 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,119 | puml | @startuml
legend top left
Observer/Observable class diagram
for parsing HTML
end legend
package java.io {
interface Closable {
void close();
}
}
package com.github.adriancitu.burp.tabnabbing.parser {
interface IByteReader {
public byte[] fetchMoreBytes(int howManyBytes)
public void attachListeners(List<IByteReaderObserver> listeners)
}
interface IByteReaderObserver {
void handleByte(IByteReader reader, byte toHandle)
boolean problemFound()
Optional<TabNappingProblem>getProblem()
}
abstract class AbstractObserver
class HTMLResponseReader {
Optional<String> getProblem()
}
Closable <|-- IByteReader
Closable <|-- IByteReaderObserver
IByteReaderObserver <|-- AbstractObserver
AbstractObserver <|-- HTMLAnchorReaderObserver
AbstractObserver <|-- JSWindowsOpenReaderObserver
}
package com.github.adriancitu.burp.tabnabbing.util {
class HtmlByteArrayUtility
HTMLAnchorReaderObserver ... HtmlByteArrayUtility: uses
JSWindowsOpenReaderObserver ... HtmlByteArrayUtility: uses
IByteReader <|-- HTMLResponseReader
IByteReader o-- "have list of" IByteReaderObserver
}
@enduml | false | true | false | false | class |
0fc780ff8806815991e368a6eb3d3e8ac2a6e45e | d86302c394a15a2084445799f7ee73d2990e8e2a | /junit5uml/doc/how_intellij_selects_tests/juni5class.puml | 6d23d11399755933c5ef0e1d7f024f2bd4641894 | [] | no_license | haihanyin/sourcecodeuml | 4eed7a0b1531669370b2430ca38d6268151c8556 | 865726c9cddc5cecc84caf34f0bf992eb277d68a | refs/heads/master | 2022-11-23T03:13:14.528701 | 2019-07-29T20:56:43 | 2019-07-29T20:56:43 | 196,833,125 | 0 | 0 | null | 2022-11-16T11:52:23 | 2019-07-14T12:20:55 | Java | UTF-8 | PlantUML | false | false | 1,423 | puml | @startuml
interface TestEngine {
TestDescriptor discover(EngineDiscoveryRequest, UniqueId)
void execute(ExecutionRequest)
}
interface TestDescriptor {
Optional<TestDescriptor> getParent()
Set<? extends TestDescriptor> getChildren()
void accept(Visitor)
}
abstract HierarchicalTestEngine {
}
class JupiterTestEngine {
}
class ExecutionRequest {
TestDescriptor rootTestDescriptor
EngineExecutionListener engineExecutionListener
}
interface EngineDiscoveryRequest {
List<DiscoverySelector> getSelectorsByType(Class selectorType)
List<DiscoveryFilter> getFiltersByType(Class filterType)
}
class EngineDiscoveryRequestResolver {
void resolve(EngineDiscoveryRequest, TypeDescriptor)
}
interface EngineExecutionListener {
void dynamicTestRegistered()
void executionSkipped()
void executionStarted()
void executionFinished()
void reportingEntryPublished()
}
TestEngine <|-- HierarchicalTestEngine
HierarchicalTestEngine <|-- JupiterTestEngine
TestEngine --> TestDescriptor: discover result
TestDescriptor --> TestDescriptor: parent/children
TestEngine --> ExecutionRequest: handle execute request
ExecutionRequest --> TestDescriptor: execution root
TestDescriptor <|-- JupiterEngineDescriptor
JupiterEngineDescriptor <-- JupiterTestEngine: root descriptor
TestEngine --> EngineDiscoveryRequest: handle discover request
ExecutionRequest --> EngineExecutionListener: action listener
@enduml | false | true | false | false | sequence |
df7e0a63a9d4e65759350f7b9f7d24d6fb663ab8 | 12b3c91d0e79e6e80f4c095c0064e9765e959efb | /netty-start/src/main/java/com/netty/start/echo/channelFuture.puml | d6f11257436eef6c7ec9631581414da68a9d2f30 | [] | no_license | binecy/bin-learning | 8d40628a5724e871dcfe48d6cef6eb31528497d2 | e356a4b3187f91ee8f35362c5babf03d9757ea9b | refs/heads/master | 2021-01-21T05:29:08.337953 | 2018-03-09T08:49:45 | 2018-03-09T08:49:45 | 83,192,816 | 4 | 0 | null | 2017-10-25T03:04:24 | 2017-02-26T08:02:43 | Java | UTF-8 | PlantUML | false | false | 546 | puml | @startuml
/'abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection
List <|-- AbstractList
Collection <|-- AbstractCollection
Collection <|- List
AbstractCollection <|- AbstractList
AbstractList <|-- ArrayList
class ArrayList {
Object[] elementData
size()
}
enum TimeUnit {
DAYS
HOURS
MINUTES
}'/
interface Future
interface ChannelFuture
Future <|- ChannelFuture
interface ChannelPromise
ChannelFuture <|- ChannelPromise
class DefaultChannelPromise
ChannelPromise <|- DefaultChannelPromise
@enduml | false | true | false | false | class |
025514e11497ea8a87ca3bfb4caf76dd082fe300 | 01ef21f2539ebb644aa52799ec5349c2eea0e075 | /doc/msg_handler_sequence.puml | e6d6d3f69d1bc23f35400a6f4e46c5aba7554d11 | [] | no_license | dozen/sqsd | 73fa53fb1f07884752bb70021a28bd52c9c99f20 | 9aa35636b80a182be328b867e620d27cfbac4169 | refs/heads/master | 2020-03-24T07:03:15.869413 | 2018-07-29T13:56:02 | 2018-07-29T13:56:02 | 142,550,803 | 1 | 0 | null | 2018-07-27T08:34:05 | 2018-07-27T08:34:05 | null | UTF-8 | PlantUML | false | false | 1,530 | puml | @startuml
title "sequence about sqsd handler"
hide footbox
participant MessageProducer
participant SQS
participant QueueTracker
participant MessageConsumer
participant HandleJob
participant Worker
MessageProducer -> MessageProducer : Run()
activate MessageProducer
MessageProducer -> QueueTracker : IsWorking()
activate QueueTracker
MessageProducer <-- QueueTracker : bool
deactivate QueueTracker
MessageProducer -> SQS : GetMessages()
activate SQS
MessageProducer <-- SQS : []*sqs.Message
deactivate SQS
loop HandleMessage([]*sqs.Message)
MessageProducer -> MessageProducer : NewQueue(*sqs.Message) *Queue
MessageProducer -> QueueTracker : Register(*queue)
activate QueueTracker
QueueTracker -> QueueTracker : queueStack <- struct{}{}
QueueTracker -> QueueTracker : CurrentWorkings.Store(queue.ID(), queue)
MessageConsumer <-- QueueTracker : <-tracker.NextQueue()
deactivate QueueTracker
activate MessageConsumer
MessageConsumer ->> HandleJob : goroutine
activate HandleJob
deactivate MessageConsumer
end
HandleJob -> Worker : <POST Request>
activate Worker
Worker -> Worker : <work hard!>
HandleJob <-- Worker : <HTTP response>
deactivate Worker
HandleJob -> SQS : DeleteMessage(*sqs.Message)
activate SQS
HandleJob <-- SQS
deactivate SQS
HandleJob -> QueueTracker : Complete(*Queue)
activate QueueTracker
QueueTracker -> QueueTracker : CurrentWorkings.Delete(queue.ID())
QueueTracker -> QueueTracker : <- queueStack
HandleJob <-- QueueTracker
deactivate QueueTracker
deactivate HandleJob
@enduml | false | true | false | false | sequence |
9eae7338bcac75bb8e78a3a70e76f4f124c5d883 | 622c008212ad81846b9e5fbf6ac5ea98d4a442c9 | /src/com/principle/segregation/Segregation01.puml | 8fbebba3cf94edcc46ad02a5793dcb137c101e3d | [] | no_license | YangLiuQing-star/design-pattern | a6561cf5113128be355ec118807c2c0c6206bad7 | 2823c77e317a1de922142590166f784966f0b152 | refs/heads/master | 2022-12-27T21:23:56.249453 | 2020-10-13T13:49:25 | 2020-10-13T13:49:25 | 303,718,595 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 146 | puml | @startuml
interface Interface1
class A
class B
class C
class D
B ..|> Interface1
C ..|> Interface1
A --> Interface1
D --> Interface1
@enduml
| false | true | false | false | class |
cf06eedb72d9cdf0952cd9bfdbb25d0c9a723349 | 03ae68b31d1e0c2b64a49d03f9b32eebc281badb | /basic/src/main/java/top/non/late/pavilion/basic/java/designs/builder/uml/class.puml | 8f8af8b79cacc62bfbf2c0ce539b9625bd864eac | [
"Apache-2.0"
] | permissive | nonlatepavilion/basics | 38ad7eac6d55bdcf61c83a567efe79b6a98eaa2b | d419b2e968cd36f1a3eea39bf4b94dc5e6da7b19 | refs/heads/master | 2021-01-23T02:18:50.574341 | 2017-09-25T01:30:18 | 2017-09-25T01:30:18 | 102,439,329 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 743 | puml | @startuml
class Director{
- Builder builder;
Director(Builder builder);
Product build();
}
interface Builder{
+ buildOne();
+ buildTwo();
+ buildThree();
+ build();
}
class Product{
- Object a;
- Object b;
- Object c;
}
class ConcreteBuilderA{
- Product product;
+ buildOne();
+ buildTwo();
+ buildThree();
+ build();
}
class ConcreteBuilderB{
- Product product;
+ buildOne();
+ buildTwo();
+ buildThree();
+ build();
}
Director --> Builder
' A know product but product don't know A
ConcreteBuilderA --> Product
ConcreteBuilderB --> Product
Builder <|.. ConcreteBuilderA
Builder <|.. ConcreteBuilderB
'Builder -left Director
'Builder -right Product
@enduml | false | true | false | false | class |
c17ed262242029a09de091c32065900595aa4944 | f37e90775a158ea0ae644e334eac5bba341f4989 | /Documentation+/PlantUml/component/component_group.puml | 73fdc5264ecd8461daf8f8bc2e05198ea2de4cbc | [] | no_license | Aleks-Ya/yaal_examples | 0087bbaf314ca5127051c93b89c8fc2dcd14c1e3 | ec282968abf1b86e54fc2116c39f2d657b51baac | refs/heads/master | 2023-09-01T07:40:44.404550 | 2023-08-27T15:24:34 | 2023-08-29T22:01:46 | 14,327,752 | 4 | 2 | null | 2021-06-16T20:39:19 | 2013-11-12T09:26:08 | Java | UTF-8 | PlantUML | false | false | 389 | puml | @startuml
package "Some Group" {
HTTP - [First Component]
[Another Component]
}
node "Other Groups" {
FTP - [Second Component]
[First Component] --> FTP
}
cloud {
[Example 1]
}
database "MySql" {
folder "This is my folder" {
[Folder 3]
}
frame "Foo" {
[Frame 4]
}
}
[Another Component] --> [Example 1]
[Example 1] --> [Folder 3]
[Folder 3] --> [Frame 4]
@enduml | false | true | false | false | sequence |
3b25141f8bec7ee9673790acf46bfa7da46b3395 | a19b43d50073ed38260e6c9668e098ba6a919281 | /docs/src/main/plantuml/schedule.puml | 5bacdb62a2f5861092b19751ab5ed175a617c0a3 | [
"Apache-2.0"
] | permissive | tevans78/microprofile-conference | c2ec5aa3762b9649ea450ddf561a4ee6ab8abe5d | 0c9747bc5adcdfa3f613cd1415aad87be6f20f25 | refs/heads/master | 2021-01-18T08:47:19.087048 | 2016-09-09T15:23:55 | 2016-09-09T15:23:55 | 68,029,964 | 0 | 0 | null | 2016-09-12T17:08:53 | 2016-09-12T17:08:53 | null | UTF-8 | PlantUML | false | false | 202 | puml | @startuml
class Schedule
class Session
class Venue
class ScheduleDAO
class ScheduleResource
ScheduleResource ..> ScheduleDAO
ScheduleDAO ..> Schedule
Schedule --> Session
Schedule --> Venue
@enduml
| false | true | false | false | class |
3d552d75b46abde2833667da5be2dd049e140ebb | c83a04a4fbab368af268b855e158be1d0098ff30 | /puml/Sequence-RqP-Request-Resource.puml | d01b53585aedd9b217d5f0ceb8547886e7cc5e18 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | ForgeRock/frdp-uma-resource-server | f2ad7346cab73d87f2777e4c55475498a4d0eb54 | d0c2d72aa1f1c96cf5dce3f03c7a74c6ff075130 | refs/heads/master | 2023-01-28T20:03:04.395299 | 2021-08-19T20:22:27 | 2021-08-19T20:22:27 | 228,416,835 | 10 | 2 | MIT | 2023-01-23T10:54:18 | 2019-12-16T15:26:09 | Java | UTF-8 | PlantUML | false | false | 2,570 | puml | @startuml
title RqP - Request Resource
hide footbox
actor "Requesting Party\n(RqP)" as RQP
box "Client Application (CA)\n<<Custom Application>>" #palegreen
participant "User Interface" as CAUI
end box
box "Resource Server (RS)\n<<Custom Application>>" #peachpuff
participant "REST API" as RSREST
database "Resource" as RSRESOURCE
database "Credential" as RSCRED
end box
box "Authorization Server (AS)\nForgeRock Access Manager" #antiquewhite
participant "AM API" as AMREST
participant "UMA API" as UMAREST
participant "OAuth API" as OAUTHREST
end box
box "Content Server (CS)\n<<Custom Application>>" #paleturquoise
participant "REST API" as CSREST
database "Data" as CSDATA
end box
RQP->AMREST: Authenticate
activate AMREST
AMREST-->RQP: Authenticated
deactivate AMREST
RQP->CAUI: Access Interface
activate CAUI
CAUI->CAUI: Obtain Resource Id\n(maybe from Discover Resources)
CAUI->RSREST: GET /share/resources/{resourceId}\nscopes (no valid RPT)
deactivate CAUI
activate RSREST
RSREST->RSRESOURCE: Get _id
deactivate RSREST
activate RSRESOURCE
RSRESOURCE-->RSREST: meta data
deactivate RSRESOURCE
activate RSREST
RSREST->RSCRED: Get PAT
deactivate RSREST
activate RSCRED
RSCRED-->RSREST: PAT
deactivate RSCRED
activate RSREST
RSREST->UMAREST: POST /am/uma/permission_request\nresource_id + scopes
note left: Get permission ticket for the\nresource and scope
deactivate RSREST
activate UMAREST
UMAREST-->RSREST: permission ticket
deactivate UMAREST
activate RSREST
RSREST-->CAUI: permission ticket + AS URI
deactivate RSREST
activate CAUI
CAUI->CAUI: Get client auth basic
CAUI->OAUTHREST: POST /am/oauth2/access_token\nscope=openid\nSSO session
note left: Get claim token for the\nRequesting Party (RqP)
deactivate CAUI
activate OAUTHREST
OAUTHREST->OAUTHREST: Validate SSO session
OAUTHREST-->CAUI: claim token
deactivate OAUTHREST
activate CAUI
CAUI->OAUTHREST: POST /am/oauth2/access_token\ngrant_type=urn:ietf:params:oauth:grant-type:uma-ticket\nscope=..., ticket=..., claim_token=..., claim_token_format=...
note left: Get Requesting Party Token (RPT)\nusing the permission ticket\nand claim token
deactivate CAUI
activate OAUTHREST
OAUTHREST->AMREST:Check Access
deactivate OAUTHREST
activate AMREST
AMREST->AMREST: No Policy for RqP + Resource + scopes \nCreate Access Request for Resource Owner
AMREST-->OAUTHREST: No Access, request Submitted
deactivate AMREST
activate OAUTHREST
OAUTHREST-->CAUI: Error: Request Submitted
deactivate OAUTHREST
activate CAUI
CAUI-->RQP:
deactivate CAUI
@enduml
| false | true | false | false | usecase |
da31f95d4fa53d26d68456d842f045391ae04d27 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.textmeshpro@2.1.1/Scripts/Runtime/TMP_TextElement.puml | 039c37b14eeb2776e74a729d90ea2132e9f7eac9 | [] | 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 | 345 | puml | @startuml
enum TextElementType {
Character= 0x1,
Sprite= 0x2,
}
class TMP_TextElement {
+ unicode : uint <<get>> <<set>>
+ glyphIndex : uint <<get>> <<set>>
+ scale : float <<get>> <<set>>
}
TMP_TextElement --> "elementType" TextElementType
TMP_TextElement --> "textAsset" TMP_Asset
TMP_TextElement --> "glyph" Glyph
@enduml
| false | true | false | false | class |
69da4185a393187230a5e1a0a98a2eb04cbf615b | e58fcda7c86c6b746f7eea7f08b5e50b6ad546ac | /lab2/src/guitarHero/guitarHero.plantuml | 1d8af34d73e92a7e5119793d8026f67751f3f57c | [] | no_license | ppongnp/SDA-labs | b2828656bc50382679a1a1d767b0c43d01cb53d9 | 35f8b1930b4c5962f46a3c973fa1ecccc677b54c | refs/heads/master | 2021-01-01T12:44:41.729434 | 2020-05-03T20:23:19 | 2020-05-03T20:23:19 | 239,284,063 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,689 | plantuml | @startuml
title __GUITARHERO's Class Diagram__\n
namespace guitarHero {
abstract class guitarHero.GameCharacter {
+ GameCharacter()
+ change()
+ playGuitar()
+ playSolo()
+ setGuitar()
+ setSolo()
}
}
namespace guitarHero {
class guitarHero.GameCharacterHendrix {
+ GameCharacterHendrix()
+ change()
+ playSolo()
}
}
namespace guitarHero {
class guitarHero.GameCharacterSlash {
+ GameCharacterSlash()
+ change()
+ playSolo()
}
}
namespace guitarHero {
class guitarHero.GameCharacterYoung {
+ GameCharacterYoung()
}
}
namespace guitarHero {
interface guitarHero.GuitarBehavior {
{abstract} + play()
}
}
namespace guitarHero {
class guitarHero.Guitar_GibsonLesPaul {
+ play()
}
}
namespace guitarHero {
class guitarHero.Guitar_GibsonSG {
+ play()
}
}
namespace guitarHero {
class guitarHero.Guitar_Telecaster {
+ play()
}
}
namespace guitarHero {
interface guitarHero.SoloBehavior {
{abstract} + solo()
}
}
namespace guitarHero {
class guitarHero.Solo_JumpOffStage {
+ solo()
}
}
namespace guitarHero {
class guitarHero.Solo_PutGuitarOnFire {
+ solo()
}
}
namespace guitarHero {
class guitarHero.Solo_SmashTheGuitar {
+ solo()
}
}
namespace guitarHero {
class guitarHero.TestGuitarHero {
{static} + main()
}
}
guitarHero.GameCharacter o-- guitarHero.GuitarBehavior : guitarBehavior
guitarHero.GameCharacter o-- guitarHero.SoloBehavior : soloBehavior
guitarHero.GameCharacterHendrix -up-|> guitarHero.GameCharacter
guitarHero.GameCharacterSlash -up-|> guitarHero.GameCharacter
guitarHero.GameCharacterYoung -up-|> guitarHero.GameCharacter
guitarHero.Guitar_GibsonLesPaul .up.|> guitarHero.GuitarBehavior
guitarHero.Guitar_GibsonSG .up.|> guitarHero.GuitarBehavior
guitarHero.Guitar_Telecaster .up.|> guitarHero.GuitarBehavior
guitarHero.Solo_JumpOffStage .up.|> guitarHero.SoloBehavior
guitarHero.Solo_PutGuitarOnFire .up.|> guitarHero.SoloBehavior
guitarHero.Solo_SmashTheGuitar .up.|> guitarHero.SoloBehavior
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
c1e0d340546390b5c9d36901aa923ad686a77ceb | 49ade9e69003fd2175cfbfa0409bde56a291f430 | /docs/setlistbot-c4-class-reddit-bot.puml | 31e489306bba96d851acfaf94771f1c26a977e69 | [] | no_license | cjbanna/setlistbot | f4c15b8ac2b6215678ec55be715b848bece4790d | 06c5ea3439068fc4decf24da03e3ac362ee9b2bd | refs/heads/main | 2023-05-28T21:03:57.578670 | 2023-05-22T06:25:45 | 2023-05-22T06:25:45 | 84,362,983 | 1 | 0 | null | 2023-05-17T03:40:56 | 2017-03-08T20:26:03 | C# | UTF-8 | PlantUML | false | false | 3,944 | puml | @startuml C4 Code
class Setlist {
+string ArtistId
+string ArtistName
+DateTime Date
+Location Location
+Set[] Sets
}
class Set {
+string Name
+Song[] Songs
+TimeSpan Duration
}
class Song {
+string Name
+int Position
+string Transition
+string Footnote
+TimeSpan Duration
}
class Location {
+string Venue
+string City
+string State
+string Country
}
Setlist --* Set : 1..*
Setlist --* Location
Set --* Song : 1..*
class Comment <<Aggregate>> {
+string Id
+string Author
+string Body
+string Permalink
+string Subreddit
+string Reply
+DateTime[] Dates
+bool HasMentionOf(string text)
+void SetReply(string reply, DateTime[] showDates)
}
class Post <<Aggregate>> {
+string Id
+string Author
+string Title
+string SelfText
+string Permalink
+string Subreddit
+string Reply
+DateTime[] Dates
+bool HasMentionOf(string text)
+void SetReply(string reply, DateTime[] showDates)
}
class SetlistbotTimerFunc {
+void Run()
}
SetlistbotTimerFunc --* IRedditSetlistBot
interface IRedditSetlistBot {
+void ReplyToMentions()
}
class RedditSetlistBot <<IRedditSetlistBot>> {
+void ReplyToMentions()
-void ReplyToPosts(string subreddit)
-void ReplyToComments(string subreddit)
}
RedditSetlistBot ..|> IRedditSetlistBot
RedditSetlistBot --* IRedditService
RedditSetlistBot --* BotOptions
RedditSetlistBot --* ISetlistProviderFactory
RedditSetlistBot --* IReplyBuilderFactory
RedditSetlistBot --* IPostRepository
RedditSetlistBot --* ICommentRepository
' RedditSetlistBot --* ICommentReplyService
' RedditSetlistBot --* IPostReplyService
' interface IPostReplyService {
' +void Reply(Post post)
' }
' class PostReplyService <<IPostReplyService>> {
' +void Reply(Post post)
' }
' PostReplyService ..|> IPostReplyService
' PostReplyService --* IPostRepository
' PostReplyService --* IReplyBuilderFactory
' PostReplyService --* ISetlistProviderFactory
' PostReplyService --* IRedditService
' interface ICommentReplyService {
' +void Reply(Comment comment)
' }
' class CommentReplyService <<ICommentReplyService>> {
' +void Reply(Comment comment)
' }
' CommentReplyService ..|> ICommentReplyService
' CommentReplyService --* ICommentRepository
' CommentReplyService --* IReplyBuilderFactory
' CommentReplyService --* ISetlistProviderFactory
' CommentReplyService --* IRedditService
class BotOptions <<IOptions>> {
+string SetlistbotType
+string Subreddit
+int MaxSetlistCount
+bool RequireMention
}
class RedditOptions <<IOptions>> {
+string Username
+string Password
+string Key
+string Secret
}
interface IRedditClient {
+string GetAuthToken()
+string GetComments(string subreddit, string before)
+string GetPosts(string subreddit, string before)
+string PostComment(string parent, string text)
}
interface IRedditService {
+Comment[] GetComments(string subreddit, string before)
+Post[] GetPosts(string subreddit, string before)
+bool PostComment(string parent, string text)
}
IRedditService --* IRedditClient
IRedditService --* RedditOptions
interface ICommentRepository {
+Comment Get(string id)
+Comment Add(Comment comment)
+void Delete(Comment comment)
}
ICommentRepository ..> Comment
interface IPostRepository {
+Post Get(string id)
+Post Add(Post post)
+void Delete(Post post)
}
IPostRepository ..> Post
interface IReplyBuilderFactory {
+IReplyBuilder Get(string artistId)
}
IReplyBuilderFactory ..> IReplyBuilder
interface IReplyBuilder {
+string ArtistId
+string BuildReply(Setlist[] setlists)
}
interface ISetlistProviderFactory {
+ISetlistProvider Get(string artistId)
}
ISetlistProviderFactory ..> ISetlistProvider
interface ISetlistProvider {
+string ArtistId
+Setlist GetSetlist(DateTime date)
}
ISetlistProvider ..> Setlist
| false | true | false | false | class |
3582b20e24674039bc354182cda178015033d3d8 | 70b6b3086d64939b4bd08cf8aad93ac5283cf1ac | /examples/dependentTypes.example.puml | ded6f919f13daf1b5a25848be0d132a34f53b7a2 | [
"MIT"
] | permissive | tizuck/scala-uml-diagrams | 4a9d35e54a0f6fb3ef753e46eb59e81d7c42a26b | c5c432132bff9df7ab60352f0e715583d9d51973 | refs/heads/main | 2023-03-01T02:44:15.288794 | 2021-02-03T22:26:55 | 2021-02-03T22:26:55 | 306,687,367 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 532 | puml | @startuml Dependent Types
'trait Foo[A]{type B;def value:B}
'object Bar { def foo[T](t:T,f:Foo[T]):f.B}
class Foo<T> <<trait>>
class B <<type>>
Foo +-- B
class Bar <<object>> {
foo<T> (s1:FooSeq1) : <<dependent ids=["f"]>> B
}
Bar +-- FooSeq1
Bar ..> FooSeq1 : "<<path dependent id = """f""", method = """foo""" >>"
class FooSeq1<T> <<paramseq>> {
t:T
f:Foo<T>
}
hide class circle
hide <<paramList>> methods
skinparam class {
BackgroundColor White
ArrowColor Black
BorderColor Black
}
@enduml | false | true | false | false | class |
4c7d5ea098f081be5db1c67a8e0aa2711093ef99 | 62b8852c1e2379236a0677a786fcbf6aed4210a2 | /Server/src/utils/daoUtils/daoUtils.plantuml | 3f9d9e1c52c0f5ef8d0874d59dedbab6958b6e90 | [] | no_license | NoPainNoGainPds/NpNg | cfef2925c5d58ce8e4d831c3852c6a28ff7c9290 | c64e7d5ee3f8566777ef8d4d6c00f43eadf5c969 | refs/heads/master | 2021-03-24T11:00:19.426555 | 2018-05-15T09:49:15 | 2018-05-15T09:49:15 | 120,328,898 | 1 | 0 | null | 2018-02-15T20:35:08 | 2018-02-05T16:13:26 | Java | UTF-8 | PlantUML | false | false | 3,075 | plantuml | @startuml
title __DAOUTILS's Class Diagram__\n
package utils {
package utils.daoUtils {
class BoutiqueDAO {
- logger : Logger
+ BoutiqueDAO()
+ create()
+ delete()
+ update()
+ find()
+ findFromReference()
+ findFromReference()
+ findWhoSale()
+ getNbBoutiques()
}
}
}
package utils {
package utils.daoUtils {
class CategorieBoutiqueDAO {
- logger : Logger
+ CategorieBoutiqueDAO()
+ create()
+ delete()
+ update()
+ find()
+ findFromReference()
+ findFromReference()
}
}
}
package utils {
package utils.daoUtils {
class CategorieProduitDAO {
- logger : Logger
+ CategorieProduitDAO()
+ create()
+ delete()
+ update()
+ find()
+ findFromReference()
+ findFromReference()
}
}
}
package utils {
package utils.daoUtils {
class EmplacementDAO {
- logger : Logger
+ EmplacementDAO()
+ create()
+ delete()
+ update()
+ find()
+ findFromReference()
+ findFromReference()
+ getPathLocation()
}
}
}
package utils {
package utils.daoUtils {
class FournisseurDAO {
- logger : Logger
+ FournisseurDAO()
+ create()
+ delete()
+ update()
+ find()
+ findFromReference()
+ findFromReference()
}
}
}
package utils {
package utils.daoUtils {
class ProduitDAO {
- logger : Logger
+ ProduitDAO()
+ create()
+ delete()
+ update()
+ find()
+ findFromReference()
+ findFromReference()
}
}
}
package utils {
package utils.daoUtils {
class StockEntreeDAO {
- logger : Logger
+ StockEntreeDAO()
+ create()
+ delete()
+ update()
+ find()
+ findFromReference()
+ findFromReference()
+ findFromReference()
}
}
}
package utils {
package utils.daoUtils {
class StockSortieDAO {
- logger : Logger
+ StockSortieDAO()
+ create()
+ delete()
+ update()
+ find()
+ findFromReference()
+ findFromReference()
+ findFromReference()
}
}
}
BoutiqueDAO -up-|> DAO
BoutiqueDAO o-- Client : client
CategorieBoutiqueDAO -up-|> DAO
CategorieProduitDAO -up-|> DAO
EmplacementDAO -up-|> DAO
FournisseurDAO -up-|> DAO
ProduitDAO -up-|> DAO
StockEntreeDAO -up-|> DAO
StockSortieDAO -up-|> DAO
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
ca3f1965a1aeb6688fdc301ecab1e8c06a168cf0 | a60b058a3f6852084171c33e533e9ecabdea5749 | /multicast/seq.puml | adff798efde291c8c752c4c8e285da8264cd42d0 | [] | no_license | nus/webrtc_example | 5699206138ba029dce831618ff22e43057b8f3ea | f60fdf7b18063c420e531eec1dcb875dcf21221a | refs/heads/master | 2021-01-20T13:17:41.285939 | 2017-05-11T13:18:27 | 2017-05-11T13:18:27 | 90,469,174 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 493 | puml | @startuml
participant publisher as pub
participant subscriber as sub
sub -> server : subscribe: 1
server -> pub : subscribe: 1, uuid: 'uuid'
pub -> pub : creatOffer
pub -> server : desc: { type: offer}, uuid: 'uuid'
server -> server : delete uuid from message
server -> sub : desc: {type: offer}
sub -> sub : createAnswer
sub -> server : desc: {type: answer}
server -> pub : desc: {type: answer}, uuid: 'uuid'
...
server -> pub : disconnect
pub -> pub : remove the peer connection
@enduml
| false | true | false | false | sequence |
ed0d217fe9695fd5b547eb7c12bfb687c7415caf | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Recording/AnimationTrackRecorder.puml | f685699f50089c2d00220a6152857f84c7319da1 | [] | 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,028 | puml | @startuml
class AnimationTrackRecorder {
+ {static} <<readonly>> kRecordClipDefaultName : string
m_CurveCount : int = 0
m_ClipTime : double
m_needRebuildRects : bool
m_TrackHasPreviewComponents : bool
+ PrepareForRecord(state:WindowState) : void
+ PrepareTrack(track:TrackAsset, state:WindowState, gameObject:GameObject, startTime:double) : AnimationClip
{static} GetCurveCount(animationClip:AnimationClip) : int
+ FinializeTrack(track:TrackAsset, state:WindowState) : void
+ FinalizeRecording(state:WindowState) : void
+ {static} GetUniqueRecordedClipName(owner:Object, name:string) : string
+ {static} AddRecordableClip(parentTrack:TrackAsset, state:WindowState, atTime:double) : TimelineClip
{static} ShiftKeys(keys:Keyframe[], time:float) : Keyframe[]
{static} ShiftObjectKeys(keys:ObjectReferenceKeyframe[], time:float) : ObjectReferenceKeyframe[]
}
AnimationTrackRecorder --> "m_TargetClip" AnimationClip
AnimationTrackRecorder --> "recordClip" TimelineClip
@enduml
| false | true | false | false | class |
8645397dc1bd964d39ee4bfbe1a03afaaa5d384d | eb79b5e41b205bca757ecb47616d107d0c78e13d | /design_patterns/structural/adapter/2.turkey_duck_adapter.puml | 0ffa4a62c620a8769c9dfc22851d91c3b1ebd2a0 | [] | no_license | kevinwong1983/exploration | 6023bb1c903c316794b132b1bff4ef817fe55f5d | 20029c025c7ae44e0dba535a6ec47b065b19f65b | refs/heads/master | 2022-06-09T09:48:26.087800 | 2022-06-05T22:29:47 | 2022-06-05T22:29:47 | 207,248,735 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 549 | puml | @startuml
skinparam monochrome true
class DuckSimulator
Interface Duck {
quack()
fly()
}
class TurkeyAdapter {
quack()
fly()
}
class Turkey {
gobble()
fly()
}
Duck *-- DuckSimulator : compose
Duck <.. TurkeyAdapter : implements
TurkeyAdapter *-- Turkey : compose
note as N1
<b>The Adapter Example
The pattern coverts the interface of a
class into another interface that clients
expect. It allows classes to work together
that couldn't otherwise because of
incompatible interfaces.
end note
@enduml | false | true | false | false | class |
8a968b00f85aea460e07299b6d3f28577dd8b2fe | d5da244bd37acd495fc309fecb80905c0d972412 | /docs/uml/packages-summary.puml | 00df5c4434a8f969be4af079188865aa73f9f1f0 | [] | no_license | demurgos/pld-agile | f3c9e63d458b66a258479915408be5ef5753648b | d98c6ab00a10f4500817864677546d6f5816645a | refs/heads/master | 2021-01-11T03:07:13.476939 | 2016-10-20T16:26:12 | 2016-10-20T16:26:12 | 70,149,700 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 785 | puml | @startuml
package services {
package xml {
class Parser {
}
}
package tsp {
abstract class TspSolver {
}
class BasicTspSolver {
}
class AdvancedTspSolver {
}
class WayPointIterator {
}
}
}
package models {
class CityMap {
}
class Planning {
}
class DeliveryRequest {
}
}
package components {
package mapcanvas {
}
package planningdetails {
}
package application {
class MainController {
}
}
}
MainController -up-> Parser
MainController -down-> CityMap
MainController -down-> Planning
MainController -down-> DeliveryRequest
MainController -up-> tsp
@enduml
| false | true | false | false | class |
66785140e03e53be51ef8c4a1f2fea94ede8c782 | aebdf064115e5817e0c77e15b739eccda80d4550 | /oo/src/main/java/guitarshop2ed/firstgeneration/2st-first.puml | b39ce3e601d8458e46d0734d4ceda1422a8e93a4 | [] | no_license | thonnyhu/designpattern | e497fbaa44d6b8a98151f8f51f967dfae8145913 | 77dc01fd366f3dfb58aab5f0bd3e6825d6fa6301 | refs/heads/master | 2021-04-28T16:49:52.462770 | 2018-06-11T12:11:26 | 2018-06-11T12:11:26 | 122,023,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,589 | puml | @startuml
Enum Builder{
FENDER,
MARTIN,
GIBSON,
COLLINS,
OLSON,
RYAN,
PRS,
ANY;
}
Enum Type{
ACOUSTIC,
ELECTRIC
}
Enum Wood{
INDIAN_ROSEWOOD,
BRAZILIAN_ROSEWOOD,
MAHOGANY,
MAPLE,
COCOBOLO,
CEDAR,
ADIRONDACK,
ALDER,
SITKA;
}
Enum Style{
}
Class InstrumentSpec{
- Builder builder;
- Type type;
- Wood backWood ,topWood;
- String model;
}
InstrumentSpec -up-> Builder
InstrumentSpec -up-> Type
InstrumentSpec -up-> Wood
Class GuitarSpec{
- int numberStrings;
+ GuitarSpec()
+ boolean match(GuitarSpec otherSpec);
}
Class MandolinSpec{
- Style style;
+ MandolinSpec()
+ boolean match(MandolinSpec otherSpec);
}
MandolinSpec -down-> Style
InstrumentSpec <|-- GuitarSpec
InstrumentSpec <|-- MandolinSpec
Class Instrument{
- String serialNumber;
- double price;
- InstrumentSpec instrumentSpec;
+ Instrument(String serialNumber, double price,InstrumentSpec instrumentSpec);
}
Class Guitar{
+ Guitar(String serialNumber, double price,GuitarSpec guitarSpec);
}
Class Mandolin{
+ Mandolin(String serialNumber, double price,MandolinSpec mandolinSpec);
}
Instrument <|-- Guitar
Instrument <|-- Mandolin
Instrument -> InstrumentSpec
Class Inventory{
- List<Instrument> guitars;
+ void addInstrument(String serialNumber, double price,InstrumentSpec guitarSpec);
+ Instrument getInstrument();
+ List<Guitar> search(GuitarSpec guitarSpec)
+ List<Mandolin> search(MandolinSpec mandolinSpec)
}
Inventory -down-> Instrument
@enduml | false | true | false | false | class |
f7728551cd1a9681542621eaccad2e98d2dc5a1e | 7a1d90175f78470e0b54d5431d12c21132d826ff | /docs/_site/group-chat-manager/group-chat-data-model.puml | a1384e59bc38eea48828399f08ceaec42517c3e9 | [
"CC-BY-3.0",
"Apache-2.0"
] | permissive | reTHINK-project/dev-hyperty | bc4a17625fd2ad4f29f220413682570882a115d2 | 04dcfdb817161ad58ce13878be392f9b6d3ac3df | refs/heads/master | 2020-12-03T03:47:35.106591 | 2019-07-02T15:44:32 | 2019-07-02T15:44:32 | 56,135,123 | 0 | 3 | Apache-2.0 | 2019-05-23T10:16:43 | 2016-04-13T08:37:48 | JavaScript | UTF-8 | PlantUML | false | false | 449 | puml | @startuml
class DataSync {
}
class DataSyncChild {
}
package Communication {
class Communication {
owner
}
class Participant{
}
class ChatMessage {
}
}
package HypertyResource {
class HypertyResource{
}
}
Communication -up-|> DataSync
HypertyResource -up-|> ChatMessage
ChatMessage -up-|> DataSyncChild
Communication "1"*..>"1..*" Participant
Communication "1"*..>"1..*" ChatMessage
ChatMessage ..> Participant : author
@enduml
| false | true | false | false | class |
7af2edac51b84922e4771855e31a1a21267e2cd5 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.puml | 2cd5ae5f26598cfdc3adc5538dc026a12e775713 | [] | 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 | 536 | puml | @startuml
class UnityTestAssemblyBuilder {
+ UnityTestAssemblyBuilder()
+ Build(assemblies:Assembly[], testPlatforms:TestPlatform[], options:IDictionary<string, object>) : ITest
+ BuildAsync(assemblies:Assembly[], testPlatforms:TestPlatform[], options:IDictionary<string, object>) : IEnumerator<ITest>
+ {static} GetNUnitTestBuilderSettings(testPlatform:TestPlatform) : Dictionary<string, object>
}
DefaultTestAssemblyBuilder <|-- UnityTestAssemblyBuilder
IAsyncTestAssemblyBuilder <|-- UnityTestAssemblyBuilder
@enduml
| false | true | false | false | class |
7b16fd974d66b1c6cc2945bf462187cdeeb29dce | 8c59fbc94a2ba7fa9a12c10991fe334cda0df128 | /metrics/ci_integrations/docs/diagrams/ci_integrations_coverage_class_diagram.puml | 1fee4c908917e51d2b41e0d2a27c7bc22e1aa738 | [
"Apache-2.0"
] | permissive | solid-vovabeloded/flank-dashboard | 7e952fa1399585d3f15cae2ed2cab435fb82df3f | 15dae0c40823cc12886a1bb0c087442c0697ac89 | refs/heads/master | 2023-07-11T19:54:58.430004 | 2021-08-06T10:29:26 | 2021-08-06T10:29:26 | 389,593,827 | 0 | 0 | Apache-2.0 | 2021-07-26T10:33:52 | 2021-07-26T10:25:59 | null | UTF-8 | PlantUML | false | false | 653 | puml | @startuml coverage_data_model_class_diagram
package core.src {
package domain {
package value_objects {
class Percent {
value: double
}
}
package entities {
class Coverage {
percent: Percent
}
}
}
package data.model {
class CoverageData {
Map<String, dynamic> toJson()
factory fromJson()
}
interface DataModel {
{abstract} Map<String, dynamic> toJson()
}
}
}
Coverage -> Percent : uses
CoverageData -|> Coverage
CoverageData ..|> DataModel
@enduml
| false | true | false | false | sequence |
414af2afb7ca1486b4dd7c95374b0a3f5ced42bc | 288e89ff72e6fd38ce1b739810a671b3c28bf89d | /posts/go-oo.puml | 3c9a96a0c4a7672f1e5b31900a2426f9e2c757e0 | [] | no_license | gypsydave5/gypsydave5.github.io | c5db513e78091ec46b2b8b4906596d56c0828439 | bb6d2bd1f6d42c9829903bfcc14c963e46cc86a4 | refs/heads/source | 2022-11-20T19:20:18.419645 | 2022-11-01T14:21:55 | 2022-11-01T14:21:55 | 19,790,960 | 2 | 3 | null | 2019-04-27T22:11:53 | 2014-05-14T18:23:00 | HTML | UTF-8 | PlantUML | false | false | 821 | puml | @startuml
interface "InterfaceA" {
MethodOne() string
}
interface "InterfaceB" {
MethodTwo() string
}
interface "InterfaceC" {
InterfaceA
InterfaceB
}
"InterfaceA" -right-* "InterfaceC"
"InterfaceB" -left-* "InterfaceC"
struct "TypeOne" {
MethodOne() string
}
struct "TypeTwo" {
MethodTwo() string
}
struct "TypeThree" {
TypeOne
TypeTwo
}
struct "TypeFour" {
MethodOne() string
MethodTwo() string
}
"TypeOne" -right-* "TypeThree"
"TypeTwo" -left-* "TypeThree"
"TypeOne" .up..|> "InterfaceA"
"TypeTwo" .up..|> "InterfaceB"
"TypeThree" .up..|> "InterfaceA"
"TypeThree" .up..|> "InterfaceB"
"TypeThree" .up..|> "InterfaceC"
"TypeFour" .up...|> "InterfaceC"
"TypeFour" .up...|> "InterfaceB"
"TypeFour" .up...|> "InterfaceA"
@enduml
| false | true | false | false | class |
558c648d51bcc90d20227c94c99a8ccb8164d4f5 | 8381929e1d715c527d4352a9371195884f68f9e4 | /Docs/DomainModel/Objects-InitialState.puml | a3e73b1c4a201f6e1d1046ba7248e5821b8e195f | [] | no_license | kiarras/requirements | e42038dbf2707da192b8fed24b20f3bd41c095c7 | 1427e4ecb3aa5847b066153ffbde97d7dda4e84e | refs/heads/main | 2023-06-16T10:45:25.600781 | 2021-07-10T16:01:50 | 2021-07-10T16:01:50 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,250 | puml | @startuml
title Initial State 3 players (Objects)
object "Uno" as Uno {
}
object "Player1" as Player1{
cards = [Card32,
Card22,
Card1,
Card23,
Card4,
Card66,
Card80]
}
object "Player2" as Player2{
cards = [Card2,
Card3,
Card6,
Card88,
Card92,
Card44,
Card33]
}
object "Player3" as Player3{
cards = [Card12,
Card24,
Card35,
Card49,
Card60,
Card73,
Card24]
}
object "Turn" as Turn {
currentPlayer= player1
}
object "Card0Blue" as Card0Blue {
color = Color.Blue
value = 0
turnedValue = TurnedValue.UP
}
object "Card4Green" as Card4Green {
color = Color.None
value = 4
turnedValue = TurnedValue.DOWN
}
object "CardSkipGreen" as CardSkipGreen {
color = Color.Green
turnedValue = TurnedValue.DOWN
}
object "CardReverseYellow" as CardReverseYellow {
color = Color.Yellow
turnedValue = TurnedValue.DOWN
}
object "CardWild" as CardWild {
color = Color.None
turnedValue = TurnedValue.DOWN
}
object "Card9Blue" as Card9Blue {
color = Color.Blue
value = 9
turnedValue = TurnedValue.DOWN
}
object "Card1Red" as Card1Red {
color = Color.Red
value = 1
turnedValue = TurnedValue.DOWN
}
object "Card9Red" as Card9Red {
color = Color.Red
value = 9
turnedValue = TurnedValue.DOWN
}
object "DrawPile" as DrawPile {
cards = [
allRemainingCards
]
}
note bottom of DrawPile
exactly 86 cards
(108 - 7 * 3 - 1)
(all cards - 7 cards
by player - 1 card in discard
at start)
endnote
object "DiscardPile" as DiscardPile {
cards = [
OneRandomCard
]
}
Uno *-- Player1
Uno *-- Player2
Uno *-- Player3
Uno *-- Turn
Turn --> Player1
Uno *-- DrawPile
Uno *-- DiscardPile
DiscardPile o-- Card0Blue
Player1 o-- CardSkipGreen
Player1 o-left- Card9Blue
Player1 o-- Card9Red
Player1 o-- Card1Red
Player1 o-- Card4Green
Player1 o-right- CardWild
Player1 o-- CardReverseYellow
note as PlayerCardsNote
same as player1 cards
(7 random cards drawed
from draw pile)
endnote
PlayerCardsNote .up. Player2
PlayerCardsNote .up. Player3
@enduml | false | true | true | false | class |
a43982d43f27097e873fd0d3aa01c1a808a346c6 | d2c96f969cd4a57d2fef25280205e11be26a64b4 | /de.gematik.ti.utils/doc/plantuml/TIUTILS/codec.plantuml | 4ef0dc5d2ca6ce7a0bd5eb42c209751e370e6a1d | [
"Apache-2.0"
] | permissive | gematik/ref-Ti-Utils | cfe9a03769e801529bf652528828083f0cc767b1 | be995beba79613c5242be9c5388952c7816782e5 | refs/heads/master | 2022-01-15T08:47:41.366276 | 2022-01-07T07:23:43 | 2022-01-07T07:23:43 | 232,986,325 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 334 | plantuml | @startuml
namespace de.gematik.ti.utils.codec {
class de.gematik.ti.utils.codec.Hex {
{static} - HEX_RADIX : int
{static} + decode()
{static} + encodeHexString()
{static} + encodeHexString()
# Hex()
{static} # toDigit()
}
}
@enduml
| false | true | false | false | class |
00f87f8190330eb1070fcc3331205b6d3ed7e136 | f573ade0bcb356e9dd327ccbc5e02c58d45ff334 | /src/main/java/LPY/appliVisiteur/CodeGen/Model/Model.plantuml | cc9de0c577676b56a879285ee1866244cddf7968 | [] | no_license | yannickTilly/appliVisiteur | e9ff8bed951d629b9d7d976cf499f0c732d67b45 | 431308a6361e7bdff478bac4e0ae3c1a4748ed5c | refs/heads/master | 2022-11-20T17:08:46.661436 | 2020-05-19T11:24:53 | 2020-05-19T11:24:53 | 213,645,469 | 0 | 0 | null | 2022-11-15T23:31:27 | 2019-10-08T13:11:30 | Java | UTF-8 | PlantUML | false | false | 398 | plantuml | @startuml
title __MODEL's Class Diagram__\n
namespace PY.appliVisiteur {
namespace CodeGen.Model {
class LPY.appliVisiteur.CodeGen.Model.ApiCliModel {
}
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
0b0a34455e4126edacae8551eb5b3e7678dd1baa | 59ddb23e6f0aab73bc00291e8a2f6d6d9a798da1 | /docs/Creational/AbstractFactory/uml.puml | 88b25185725ab8157d048f8a242747f50a82a2e7 | [] | no_license | xiaomidapao/patterns | d40cd0d55fb9ce09dffe34509a24a5f1d2bb186b | 038a1d6cf4eaa2aa2473ff2abbe972b18870f2b1 | refs/heads/master | 2020-07-24T02:24:55.441380 | 2019-09-15T02:34:03 | 2019-09-15T02:34:03 | 207,773,180 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 484 | puml | @startuml
interface Product{
+ calculatePrice()
}
class ShippableProduct{
- productPrice
- shippingCosts
+ __construct(productPrice,shippingCosts)
+ calculatePrice()
}
class DigitalProduct{
- price
+ __construct(price)
+ calculatePrice()
}
Product <|.. ShippableProduct
Product <|.. DigitalProduct
class ProductFactory{
+ {static} SHIPPING_COSTS
+ createShippableProduct()
+ createDigitalProduct()
}
Product <.. ProductFactory
@enduml | false | true | false | false | class |
e6a8ed5ca87f911664e9af2465bdcc82442aedc2 | 5992899e0dc7e047598bf810d6d66fb171b6b8fa | /src/main/javadoc/resources/fr/kbertet/lattice/io/ArrowRelationWriterTeX.iuml | eedd5a7f9101fa621a00aaaab42ed1157d44f28e | [
"CECILL-B"
] | permissive | kbertet/java-lattices | 9e237162ce8330f64769e27284a7f98fa189206f | ddca76f97c41024866e3f3a32b719cb0492c034b | refs/heads/master | 2020-12-03T09:19:43.451861 | 2014-12-12T11:20:45 | 2014-12-12T11:20:45 | 29,913,611 | 1 | 0 | null | 2015-01-27T12:41:58 | 2015-01-27T12:41:58 | null | UTF-8 | PlantUML | false | false | 323 | iuml | package fr.kbertet.lattice.io {
class ArrowRelationWriterTeX {
-{static}ArrowRelationWriterTeX instance
+void write(ArrowRelation arrow, BufferedWriter file)
+{static}ArrowRelationWriterTeX getInstance()
+{static}void register()
}
ArrowRelationWriter <|-- ArrowRelationWriterTeX
}
| false | true | false | false | class |
009e8d08ea39f0035c48d0d6887b6e62be4eafba | b2377dbb97354ebb11f18337fae7a5deb10e9fd1 | /docs/Solution/Cloud-Stack/Deployment.puml | 47939a3a4a2f00f24078cdfbf41c49027113cfda | [] | no_license | CAADE/H2C | 634e94afdd5302232d234aa7abefcfc61a24ea8e | 91227f94a60c8e3285c24333da340c06a51afa9d | refs/heads/master | 2021-03-27T18:25:35.652782 | 2018-06-01T21:58:49 | 2018-06-01T21:58:49 | 83,159,772 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 150 | puml | @startuml
package "Cloud-Stack" {
cloud cloud1
node node1
artifact artifact1
storage objectStore
database db1
folder folder1
}
@enduml
| false | true | false | false | sequence |
439e6f1ac648b30aa9ecb48df8855ea573488632 | d3ed31698aa6133e5c16fe83add8d37cd0fda02f | /doc/diagrams/src/overview.plantuml | 0f792947506374d06b9f0dc59adc60392cf3e754 | [
"MIT"
] | permissive | th3architect/node-red-contrib-ctrlx-automation | fef64cbe38f9f6f8b163181129c0093cd12167a4 | d7ecef715ef72f6e8d6dc9a5c086bc0a3dfd4804 | refs/heads/master | 2023-01-25T00:50:51.893910 | 2020-12-01T08:21:28 | 2020-12-01T08:21:28 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,110 | plantuml | @startuml Overview
skinparam componentStyle uml2
package ctrlx {
class CtrlxCore
{
-String token
+CtrlxCore(hostname, username, password)
+logIn()
+logOut()
+datalayerRead(path)
+datalayerReadMetadata(path)
+datalayerWrite(path, data)
+datalayerCreate(path, data)
+datalayerDelete(path)
+datalayerBrowse(path)
}
}
package node-red-contrib-ctrlx-automation {
class CtrlxConfig << Node-RED config node >>
{
+String hostname
+String username
+String password
+bool debug
+String name
}
enum Method {
READ
WRITE
CREATE
DELETE
METADATA
BROWSE
}
class CtrlxDatalayerRequest << Node-RED node >>
{
+CtrlxConfig device
+Method method
+String path
+String name
+onInput()
+onClose()
}
}
package "ctrlX CORE" <<Node>> {
class HttpsServer
}
CtrlxConfig "1" *-- "1" CtrlxCore : use >
CtrlxDatalayerRequest "0..*" --> "1" CtrlxConfig : register, unregister, use >
CtrlxConfig "1" --> "0..*" CtrlxDatalayerRequest : notify status >
CtrlxCore "0..*" --> "1" HttpsServer
@enduml
| false | true | false | false | sequence |
25196afe0a2bf2a645c0d166e9da1f42895f240e | 4419af28339ceb78ce656ec28bb2039792b10200 | /doc/Diagramme.puml | 1d560def6d26a8546687dcb7fab4473ef93fecbd | [] | no_license | M1M-OnFire/rest.shop | d4d0e983f50a04ce1aa371e704ee5a8367142e16 | fca0456a8793677dfa27e628d0d6b3eebf53dcc0 | refs/heads/master | 2023-03-24T13:03:03.019870 | 2021-03-23T07:09:20 | 2021-03-23T07:09:20 | 333,385,942 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,966 | puml | @startuml diagram
package boutique {
package model {
class Categorie {
- sousCategorie: Categorie
- name: string
- items: List<Item>
- getCategorie: string
- getsousCategorie: Categorie
+ this(sousCategorie: Categorie, name: string)
}
class Item {
- marque: string
- prix: double
- libelle: string
- photo: string
+ this(marque: string, prix: double, libelle: string, photo: string, categorie: Categorie)
+ getlibelle(): string
+ getPrix(): double
+ getMarque(): string
+ getPhoto(): string
+ setlibelle(): void
+ setPrix(): void
+ setMarque(): void
+ setPhoto(): void
}
}
package dao {
class ItemDao{
- contentProvider : Map<String, Item>
- this : ()
+ getModel() : Map<String, Item>
}
}
package ressources {
class ItemRessource{
- uriInfo : UriInfo
- request : Request
- id : String
+ this : (uriInfo : UriInfo , request Request , id : String)
+ getItem() : Article
+ getItemHTML() : Article
+ putArticle(article : JAXBElement<Article>) : Response
+ deleteTodo() : void
- putAndGetResponse(article : Article) : Response
}
class ItemsRessources{
- uriInfo : UriInfo
- request : Request
+ getItemsBrowser() : List<Article>
+ getItems() : List<Article>
+ getCount() : String
+ newItem(id :String, summary : String, description : String, servletResponse : HttpServletResponse) : void
+ getItem(id : String) : ArticleRessource
}
}
}
Categorie *--> Categorie: "sous-categorie"
Categorie *--> Item
@enduml | false | true | false | false | sequence |
174d6c44cbad9a6edcda438176f21809520fef89 | db515b19d12333ee687a3031046e2c882725f513 | /src/main/java/ex46/diagram.puml | 009c734fb9a86f67b7cd492466fa5178f0cd35f2 | [] | no_license | MerrekDeBolt/DeBolt-cop3330-assignment03 | 9cfb6c116011edc7728f8ede089e6b0dc74b507f | 5b21d86244b873aad49f550cf29f4b0f5742dfc0 | refs/heads/master | 2023-08-21T12:21:41.911226 | 2021-10-12T03:46:40 | 2021-10-12T03:46:40 | 411,409,483 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 283 | puml | @startuml
'https://plantuml.com/sequence-diagram
class App
{
public static void main(String[] args)
public static ArrayList<Word> createWords(ArrayList<String> wordStrings)
}
class Word
{
public String Value
public int Amount
}
App --|> Word
Word --|> App
@enduml | false | true | false | false | class |
4add012e4754a3d1c003c32b2da339c9dc4eb782 | 57e95452505413652ef6fec3106ba60f845b0a8b | /info202_project-master/Diagrams/filterbyCategory.puml | 18a85f34a60916aacdbe7c663ba07e1bd98c72a7 | [] | no_license | hugonzb/Product-Lookup | 8820cdcb58da70a850f00d11614e24f34363b779 | cf9000f43a5f8bfceea07ea490d048c2d539e77d | refs/heads/master | 2022-11-07T09:35:54.457160 | 2020-06-18T08:06:41 | 2020-06-18T08:06:41 | 272,931,990 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,785 | puml | @startuml
skinparam style strictuml
actor "User" as user
participant "Administration menu" as mainmenu <<dialog>>
mainmenu++
user -> mainmenu : Clicks "View Products" button
create "ProductViewer" as viewer <<dialog>>
mainmenu -> viewer: Construct
viewer++
create "ProductDatabase" as productdatabase <<dao>>
viewer -> productdatabase : Construct
productdatabase++
participant "DbConnection" as dbconnection <<dao>>
productdatabase -> dbconnection++ : getDefaultConnectionUri()
dbconnection -> productdatabase : return DEFAULT_URI
productdatabase--
dbconnection--
database H2
create "SimpleListModel" as slm <<gui helper>>
viewer -> slm : Construct
viewer -> user: Display all products
user -> viewer : Clicks a category to filter by
viewer -> viewer : viewerCategoryBox.getSelectedItem()
viewer -> productdatabase++ : returnCategoryProducts(specifiedCategory)
productdatabase -> dbconnection++ : getConnectionUri(productUri)
dbconnection -> H2++ : getConnection()
H2 -> productdatabase : return connection
dbconnection--
H2--
productdatabase -> H2++ : prepareStatement(sql)
H2--
productdatabase -> productdatabase : stmt.setString(1, specifiedCategory)
productdatabase -> H2++ : executeQuery()
H2 -> productdatabase : Return result of query and put into ResultSet
H2--
productdatabase -> productdatabase : Get product details from ResultSet and put them into corresponding variables
productdatabase -> productdatabase : Add variables into an instance of product then add it to a list
productdatabase -> viewer : return products
productdatabase--
viewer -> slm++ : updateItems(product)
slm--
viewer -> viewer : viewerList.setModel(slm)
viewer -> user : Display products filtered by specific category
viewer--
@enduml
| false | true | false | false | usecase |
fa80b4d4681f82389373b347c9a0bcbda13abada | 5bdc19e7ff1d6880ca51c600fb9edc3943a3c4b5 | /doc/plantuml/src/sequence_diagrams/february2020/iterate_playback.puml | 5a90be284f1f54567bb58f9f44305399d733a591 | [] | no_license | Warwolt/tr2k_drum_machine | 1a8e617137ed8c6d23856bf490c18f0067979564 | 430e9a3199b16807a6e88860d80c1ec4fd826fa9 | refs/heads/master | 2022-04-08T10:36:54.567422 | 2020-02-24T22:30:07 | 2020-02-24T22:30:07 | 192,423,856 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 333 | puml | @startuml
title Iterate Playback
->TempoTimingManager: handlePlayback()
TempoTimingManager -> TempoTimer: playbackStepIsDue()
TempoTimer --> TempoTimingManager: true
loop for each PlaybackHandler
TempoTimingManager -> PlaybackHandler: handlePlaybackStep()
end
TempoTimingManager -> TempoTimer: startCountingNextStep()
@enduml
| false | true | false | false | sequence |
29a110c35b606f72cd7e6a14e1510c3ceb22ce08 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ChannelRemoveRolesAction.puml | 32aead20e5de72938f8750d52d80994c14948878 | [] | 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 | 480 | 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 ChannelRemoveRolesAction [[ChannelRemoveRolesAction.svg]] extends ChannelUpdateAction {
action: String
roles: [[ChannelRoleEnum.svg List<ChannelRoleEnum>]]
}
interface ChannelUpdateAction [[ChannelUpdateAction.svg]] {
action: String
}
@enduml
| false | true | false | false | class |
15ccb8512e1bfa72ae706cf414e006a7399164f8 | 1fef2f0f0ad13aebb3d3f732d0cae8867ee8e87c | /plantuml/Microwave.Test.Unit/UserInterfaceTest.puml | cd1c9d626620b4b9a19cfe2b47400dddfddd3dbd | [] | no_license | eengstroem/MicrowaveOven | b9711c314f053f00f9208cae69085d7bdf0ba3d4 | ac721f24f0025f5e10f50d4d58c4a7ad30f9fbd2 | refs/heads/master | 2023-04-25T09:55:42.513911 | 2021-05-24T16:45:23 | 2021-05-24T16:45:23 | 363,380,008 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,168 | puml | @startuml
class UserInterfaceTest {
+ Setup() : void
+ Ready_DoorOpen_LightOn() : void
+ DoorOpen_DoorClose_LightOff() : void
+ Ready_DoorOpenClose_Ready_PowerIs50() : void
+ Ready_2PowerButton_PowerIs100() : void
+ Ready_14PowerButton_PowerIs700() : void
+ Ready_15PowerButton_PowerIs50Again() : void
+ SetPower_CancelButton_DisplayCleared() : void
+ SetPower_DoorOpened_DisplayCleared() : void
+ SetPower_DoorOpened_LightOn() : void
+ SetPower_TimeButton_TimeIs1() : void
+ SetPower_2TimeButton_TimeIs2() : void
+ SetTime_StartButton_CookerIsCalled() : void
+ SetTime_DoorOpened_DisplayCleared() : void
+ SetTime_DoorOpened_LightOn() : void
+ Ready_PowerAndTime_CookerIsCalledCorrectly() : void
+ Ready_FullPower_CookerIsCalledCorrectly() : void
+ SetTime_StartButton_LightIsCalled() : void
+ Cooking_CookingIsDone_LightOff() : void
+ Cooking_CookingIsDone_ClearDisplay() : void
+ Cooking_DoorIsOpened_CookerCalled() : void
+ Cooking_DoorIsOpened_DisplayCleared() : void
+ Cooking_CancelButton_CookerCalled() : void
+ Cooking_CancelButton_LightCalled() : void
}
@enduml
| false | true | false | false | class |
e73632a48357cefafd7dc41bd31b2e3e01a52767 | 1c2ffdfa1f2d5109bb4e1a2fb5e9e48c5cea8edd | /assets/FSMexample.plantuml | a212ca3dc05be75db8a6acbf7b18583e1e577314 | [
"MIT"
] | permissive | mcci-catena/Catena-Arduino-Platform | e4b940473831521d84d7f766965c49fcd1a5d247 | 2ce0ec05ac252edab2c5a60d7d0a9a894b30ad70 | refs/heads/master | 2023-08-31T18:10:49.000465 | 2023-06-26T11:01:17 | 2023-06-26T11:01:17 | 72,812,020 | 15 | 11 | MIT | 2023-09-07T12:00:23 | 2016-11-04T03:44:20 | C++ | UTF-8 | PlantUML | false | false | 907 | plantuml | @startuml
/'
Module: FSMexample.plantuml
Function:
PlantUML reference source for cFSM state diagram.
Copyright:
See accompanying LICENSE file at
https:://github.com/mcci-catena/Catena-Arduino-Platform
Author:
Terry Moore, MCCI Corporation July 2019
Notes:
PlantUML images in REAMDE.md are generated by pasting this file into
the server at http://www.plantuml.com/plantuml, and grabbing the
resulting URLs. That has to be done several times, with different
values edited into the variables below. The comments in README.md
will tell you what's needed.
'/
[*] --> stLocked : stInitial
state stLocked
state stUnlocked
stLocked --> stLocked : evPush
stLocked : Entry/ lock the turnstile
stLocked --> stUnlocked : evCoin
stLocked -left-> [*] : shutdown\nstFinal
stUnlocked --> stUnlocked : evCoin
stUnlocked : Entry/ unlock the turnstile
stUnlocked --> stLocked : evPush | shutdown
@enduml
| false | true | false | false | sequence |
af83d778a4fbbe41fc1bfc219c0c1ff6c165c2dd | 978188ed021da194b6d3aa48359c009d3e91a3f7 | /demo_parent/demo_common/uml_test.puml | 3607006850d89021295b034ca768d2546b1eb9b1 | [
"Apache-2.0"
] | permissive | xjcooo/demo | aa39606d269d7ee129d241d660e7ae36f3ad1a83 | 7407c911fcd685b75f0470f4298f058deae310ac | refs/heads/master | 2023-01-19T05:09:42.661313 | 2019-10-30T08:41:32 | 2020-07-16T06:00:00 | 149,698,629 | 1 | 0 | Apache-2.0 | 2023-01-05T05:19:44 | 2018-09-21T02:27:43 | Java | UTF-8 | PlantUML | false | false | 1,047 | puml | @startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
@enduml
@startuml
actor Foo1
boundary Foo2
control Foo3
entity Foo4
database Foo5
collections Foo6
Foo1 -> Foo2 : To boundary
Foo1 -> Foo3 : To control
Foo1 -> Foo4 : To entity
Foo1 -> Foo5 : To database
Foo1 -> Foo6 : To collections
@enduml
@startuml
Bob ->x Alice
Bob -> Alice
Bob ->> Alice
Bob -\ Alice
Bob \\- Alice
Bob //-- Alice
Bob ->o Alice
Bob o\\-- Alice
Bob <-> Alice
Bob <->o Alice
Bob -[#red]> Alice : hello
Alice -[#0000FF]->Bob : ok
@enduml
@startuml
== Initialization ==
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
== Repetition ==
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
@enduml
@startuml
header Page Header
footer Page %page% of %lastpage%
title Example Title
Alice -> Bob : message 1
note left: this is a first note
Alice -> Bob : message 2
@enduml | false | true | false | false | sequence |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.