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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4879aa3887318a8715ac7132abb9301c5364f288 | d10503f47377addd953c47db621947c28060f809 | /Composite/uml/SequenceDiagram.puml | 7f63070053b1ef0c3c26605ece0075779aba2037 | [
"MS-PL"
] | permissive | BeqaKhaburdzania/FreeUni-SDP-2013-Lab-UML | a0c93981e4924ded0b1db50b296d48c0155f376e | dd5fbb54da0daf0fa8ecb7184af9baecaf508d85 | refs/heads/master | 2021-01-17T23:11:04.570954 | 2015-03-18T20:17:21 | 2015-03-18T20:17:21 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 614 | puml | @startuml
actor main
create SinglePart
main -> SinglePart : new
create CompoundPart
main -> CompoundPart : new
create ArrayList
CompoundPart -> ArrayList
main -> CompoundPart : add(part)
activate CompoundPart
CompoundPart -> ArrayList : add(child)
deactivate CompoundPart
main -> SinglePart : describe()
main -> CompoundPart : describe()
activate CompoundPart
loop while ArrayList.hasNext()
CompoundPart -> ArrayList : next()
ArrayList --> CompoundPart
CompoundPart -> SinglePart
end
deactivate CompoundPart
@enduml
| false | true | false | false | usecase |
8d6e37dfd211161a4f0c553201e97646da65892c | c3dcb84f1adeab2f4a7c884a91e89eeea9b61add | /docs/objetos/heranca.puml | 4b10204aee15cbe483fcbb9a464c5cc6ccdc6634 | [
"CC-BY-4.0"
] | permissive | rodrigoprestesmachado/cpw2 | 5efd1acea642e2189784eb17711e55bdbf63e5db | b2312646445685f687aaf693abaab012c9048ced | refs/heads/main | 2023-07-19T22:41:50.196548 | 2023-02-27T01:20:50 | 2023-02-27T01:20:50 | 215,394,320 | 0 | 4 | CC-BY-4.0 | 2023-02-27T01:20:51 | 2019-10-15T20:51:21 | JavaScript | UTF-8 | PlantUML | false | false | 402 | puml | @startuml
Message <|-- TextMessage
Message <|-- VoiceMessage
User "1" --> "0..*" Message : send
User "0..*" -- "0..*" Channel : join
Channel "1" --> "0..*" Message : contains
class User {
- Number id
- String name
}
class Channel {
-Number id
- String hash
}
class Message {
-Number id
}
class TextMessage {
- String text
}
class VoiceMessage {
- Stream audio
- Time duration
}
@enduml | false | true | false | false | sequence |
5e70b0f9152997caf771ff1d1294e5a4f759f79b | 372d0fe94d7e59fd48620c687fee8fc94841408b | /deadheat-lock-example/microservices-example/financial-service/src/main/java/com/vrush/microservices/booking/dtos/dtos.plantuml | 19362d6474d5f1d123fc02ca727d80aa96597d63 | [
"Apache-2.0"
] | permissive | vrushofficial/deadheat-lock | 4ae44e23fea2ad57db17aadeba58e39ef4f63822 | 11c516a2ca0e58dd2d6b2ef8c54da0975fcbe5d2 | refs/heads/main | 2023-01-14T17:28:38.161881 | 2020-11-29T11:11:55 | 2020-11-29T11:11:55 | 310,531,739 | 2 | 1 | null | 2020-11-19T08:16:25 | 2020-11-06T08:06:52 | CSS | UTF-8 | PlantUML | false | false | 1,090 | plantuml | @startuml
title __DTOS's Class Diagram__\n
namespace com.vrush.microservices.booking.dtos {
class com.vrush.microservices.booking.dtos.BookingPayloadDTO {
- ccvEncrypted : String
- creditCardNumberEncrypted : String
- expireDateEncrypted : String
- idBooking : UUID
- totalValue : BigDecimal
+ BookingPayloadDTO()
+ BookingPayloadDTO()
+ equals()
+ getCcvEncrypted()
+ getCreditCardNumberEncrypted()
+ getExpireDateEncrypted()
+ getIdBooking()
+ getTotalValue()
+ hashCode()
+ setCcvEncrypted()
+ setCreditCardNumberEncrypted()
+ setExpireDateEncrypted()
+ setIdBooking()
+ setTotalValue()
+ toString()
# canEqual()
}
}
com.vrush.microservices.booking.dtos.BookingPayloadDTO .up.|> java.io.Serializable
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 |
79ef36b982b0a0e2a9545e8f004eb5224f3cdb73 | 9f26ce0c66c8d2ebe19a52985649c2cdd67cf688 | /doc/Redmine.puml | 6eb0a9e4c15a9921d3226b669df393ff3dd0e25b | [
"CC0-1.0"
] | permissive | kawasima/rbac-example | 0e5ca5a90c282ab8c35d38e2c094c3e775abdc86 | 9a57b3caf0763ff6f147be6c25bba07b6f1ac9ae | refs/heads/master | 2021-01-10T08:48:15.089249 | 2015-12-02T04:11:33 | 2015-12-02T04:11:33 | 47,236,303 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 606 | puml | @startuml
class Role {
id
name
position
assignable
builtin
permissions
}
class MemberRole {
id
member_id
role_id
inherited_from
}
class Member {
id
user_id
project_id
created_on
main_notification
}
class Project {
id
name
description
homepage
is_public
parent_id
created_on
updated_on
identifier
status
lft
rgt
}
class User {
id
login
hashed_password
firstname
lastname
mail
mail_notification
admin
statu
last_login_on
language
auth_source_id
created_on
updated_on
type
identity_url
}
MemberRole "*" - "1" Role
Member "1" - "*" MemberRole
Member "*" -up- "1" Project
Member "*" -down- "1" User
@enduml | false | true | false | false | class |
82fe5d70ee4ef604503a29f07d665da45d79420b | 9f6da3da9d9b4f54870f8666fc4c952a929699cd | /test3/object_overDLNotice.puml | fb8e8e45a95dca4dd88c566ec15a77e9350cc1ec | [] | no_license | ApplauseWow/is_analysis | 9b8dc04e296b29b3f774ce0ebaf7c2429d84a582 | 0c05aa3a3831c9fd35f6bfaa779c0524a3041276 | refs/heads/master | 2022-06-11T22:39:26.829425 | 2020-05-04T15:53:30 | 2020-05-04T15:53:30 | 172,485,325 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 145 | puml | @startuml
object overDeadLineNotice{
noticeId = "10"
bookId = "9856"
readerId = "10001"
overDays = 3
isPaid = False
}
@enduml | false | true | false | false | object |
716cafa850753e1504d208a8693aa0aef67b427b | cbae2c225bd245204a40e41a25415c41604e6219 | /design_document/diagrams/sequence_diagram/sequence-diagram_editBillInfo.plantuml | e8874759cfa4665ed7651aaad7a20ee62a83fecd | [] | no_license | fcremo/AlfonsoCarsenzuolaCremonese-ingsw2 | c15da77f1c33c9cdd0dd1dbe0c79bfe7bfea3903 | 931288cf6f6e98e177432e5445c6361a0c3443c4 | refs/heads/master | 2021-03-30T17:25:41.027189 | 2017-11-26T20:43:18 | 2017-11-26T20:43:18 | 105,372,279 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,388 | plantuml | @startuml
actor User
participant WebServer
participant UserManagementService
participant NotificationDeliveryService
participant ExternalPaymentService
activate User #FFBBBB
User -> WebServer: PersonalArea
activate WebServer #FFBBBB
WebServer -> WebServer: LoadPersonalArea
WebServer --> User: ShowPersonalAreaPage
deactivate WebServer
User -> WebServer: EditBillingInformation
activate WebServer #FFBBBB
WebServer --> User: RedirectionMessage
deactivate WebServer
User -> ExternalPaymentService: InsertNewBillingInformation
activate ExternalPaymentService #FFBBBB
ExternalPaymentService -> ExternalPaymentService: VerifyData
deactivate ExternalPaymentService
alt correct data
ExternalPaymentService -> WebServer: CorrectBillingInformation
activate WebServer #FFBBBB
activate UserManagementService #FFBBBB
WebServer -> UserManagementService: InsertedBillingInformation
deactivate UserManagementService #FFBBBB
WebServer --> User: ShowNewBillingInformation
WebServer -> NotificationDeliveryService: RequestNotificationEmail
deactivate WebServer
activate NotificationDeliveryService #FFBBBB
NotificationDeliveryService -> User: NotificationEmail
deactivate NotificationDeliveryService
else incorrect data
ExternalPaymentService -> WebServer: IncorrectBillingInformation
activate WebServer #FFBBBB
WebServer --> User: Error
deactivate WebServer
end
@enduml
| false | true | false | false | sequence |
9a99e7ad4356bf1852546af2d45b6e103e8b5ec2 | 2ea37bbd5cf58165698a6dac1f68d077c3fd81cb | /Golang/beginner/CommuncationSystem/ver3.groupChat/groupChat.puml | f483b386bdaddcc897095576f47d858f238d26f4 | [] | no_license | bai62/CloudCode | 3a151477bcb63cdf5fb6b3c6fcf16fbfba4d8164 | 7ad2ff75eb7bc02e93c2ac7e975d9a480dccf4ae | refs/heads/master | 2023-08-18T11:57:52.699706 | 2021-10-18T08:48:32 | 2021-10-18T08:48:32 | 413,453,406 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 409 | puml | @startuml
'https://plantuml.com/sequence-diagram
'autonumber'
participant UserListener as ul
actor user as c
participant conn #orange
participant Handler as h
participant Broadcast as b
participant ServerListener as sl
c --> conn : Accepted
conn->h
h->c:new user
h->b : user is online
h->b : group chat message
b-->sl:send msg by chan
sl-->ul:send msg to users by chan
ul-->conn: write msg into conn
@enduml | false | true | false | false | sequence |
5f3be1971c225aa7e25fc01ab9d715ce8ef26985 | 8bb877ad60070ad145b0e46177bf91cf7de36243 | /osa0/spa.plantuml | 558248c0f8a8c86dc5ccac4491113f5b0107ba6a | [] | no_license | mikkoka/fullstack-hy2020 | 93214fe4d738df11c5e4d643af0ead7226146cd3 | b829f1eb5452e8df720ecaffd388589927a44b72 | refs/heads/main | 2023-02-09T11:10:32.222357 | 2020-12-31T23:37:12 | 2020-12-31T23:37:12 | 319,766,589 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,171 | plantuml | Title: Single Page App
skinparam Title {
FontName American Typewriter
FontSize 30
}
skinparam sequence {
ArrowThickness 3
roundcorner 30
ParticipantBorderColor Black
ParticipantBackgroundColor LightGrey
ArrowColor Black
}
skinparam note {
FontName American Typewriter
BackgroundColor White
BorderColor Black
}
skinparam shadowing false
skinparam handwritten true
selain->palvelin: HTTP GET https://studies.cs.helsinki.fi/exampleapp/spa
palvelin-->selain: HTML-koodi
selain->palvelin: HTTP GET https://studies.cs.helsinki.fi/exampleapp/main.css
palvelin-->selain: main.css
selain->palvelin: HTTP GET https://studies.cs.helsinki.fi/exampleapp/spa.js
palvelin-->selain: spa.js
note over selain: selain alkaa suorittaa js-koodia\njoka pyytää JSON-datan palvelimelta
selain->palvelin: HTTP GET https://studies.cs.helsinki.fi/exampleapp/data.json
palvelin-->selain: JSON -tiedosto, sisältää muistiinpanot
note over selain: selain suorittaa tapahtumankäsittelijän\njoka renderöi muistiinpanot näytölle
selain->palvelin: HTTP GET https://studies.cs.helsinki.fi/exampleapp/favicon.ico
palvelin-->selain: favicon.ico
| false | true | true | false | sequence |
fddbd2e4825b9a8143e8fc5e1db9d125d5fbee9f | 22c062df90adff61becb66216348f35b57920adb | /UML/StructureDiagrams/ObjectDiagram/diagrams/ShapeCircleEllipse.puml | 0b7f6f15d2bf63d05444231def9a8691b3bf7487 | [
"BSD-3-Clause"
] | permissive | zainmehdi/software_engineering | 0ca30f6daf526434fbec9ae0240da0685dc5977a | 9b655590d05246d6e859673161de05ecde788b14 | refs/heads/master | 2022-12-29T14:33:41.798904 | 2020-10-12T13:57:20 | 2020-10-12T13:57:20 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 288 | puml | @startuml
skinparam classAttributeIconSize 0
class Shape
{
+ {abstract} draw():void
+ {abstract} getArea():double
}
class Circle
{
+ draw():void
+ getArea():double
}
class Ellipse
{
+ draw():void
+ getArea():double
}
Shape <|-- Circle
Shape <|-- Ellipse
@enduml
| false | true | false | false | class |
a5facc3316bd17195ff1eebc909ead48647b529e | a1004fbfa5e175e6bcfe1cf550ced55fc09447ad | /docs/diagrams/lum-architecture.puml | dfb8793fb1403f6e4423898f130035dca0d9f614 | [] | no_license | acumos/license-usage-manager | ba5c22f63d4e0c94327b0c9fafe988b1f0b68eab | dd8078667d1a63394e6027a7ecd7a884238e3e1a | refs/heads/master | 2022-06-14T21:08:13.761454 | 2020-07-06T16:10:45 | 2020-07-06T16:10:45 | 199,718,873 | 1 | 4 | null | 2020-10-13T18:10:50 | 2019-07-30T19:59:50 | JavaScript | UTF-8 | PlantUML | false | false | 23,411 | puml | ' ===============LICENSE_START=======================================================
' Acumos CC-BY-4.0
' ===================================================================================
' Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
' ===================================================================================
' This Acumos documentation file is distributed by AT&T
' under the Creative Commons Attribution 4.0 International License (the "License");
' you may not use this file except in compliance with the License.
' You may obtain a copy of the License at
'
' http://creativecommons.org/licenses/by/4.0
'
' This file is distributed on an "AS IS" BASIS,
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
' See the License for the specific language governing permissions and
' limitations under the License.
' ===============LICENSE_END=========================================================
@startuml lum-architecture
allowmixing
' scale 4096*4096
hide empty description
hide class circle
hide methods
skinparam title {
FontSize 24
FontColor Blue
FontStyle Bold
BorderRoundCorner 15
BorderThickness 2
}
skinparam roundcorner 20
skinparam class {
FontColor Blue
FontStyle Bold
HeaderBackgroundColor Wheat
}
skinparam component {
BackgroundColor Snow
}
skinparam usecase {
FontColor Navy
BackgroundColor Snow
}
skinparam note {
FontColor Black
BackgroundColor azure
}
title = data model for license usage management based on ODRL
package "<&people> Supplier -- totally schematic - only the concepts" as supplierMgt #ff9999 {
class "<&person> supplier == softwareLicensor" as supplier {
softwareLicensorId TEXT <&key> PK
}
class "<&shield> supplierPublicLicense" as supplierPublicLicense {
supplierPublicLicenseId TEXT <&key> PK
}
class "<&credit-card> purchaseOrder" as purchaseOrder {
purchaseOrderId TEXT <&key> PK
softwareLicensorId TEXT <&link-intact> FK
..
purchaseOrderBuyer TEXT
<&list> subscribers = [<b>subscriber</b>] TEXT[] - multiple subscribers
assetUsageAgreement JSON
}
}
package "<&dollar> BSS -- totally schematic - only the concepts" as BSS #99ff99 {
package "<&dollar> AM (Asset Manager) purchases RTU from supplier" as assetManager {
class "<&dollar> entPurchaseOrder" as entPurchaseOrder {
purchaseOrder=assetUsageAgreement for multiple rights to use of the software
generate the asset-tags per RTU rules
select-specify the users per RTU
==
<b>assetUsageAgreementId</b> GUID <&key> PK -- assetUsageAgreement id
==alternative PKs==
<b>purchaseOrderId</b> TEXT <&link-intact> FK to purchaseOrder -- PON
--agreements details--
agreementDetails JSON <&info> -- assetUsageAgreement->[<rule>]
}
}
}
package "<&laptop> Acumos (softwareManagementSystem)" as SMS {
component "<&shield> <b>lumProxy</b> (generic and stateless)" as lumProxy
}
package "<&shield> LUM (License Usage Manager)" as LUM #eeffee {
actor "<&cog> dev" as devAdmin
component "<&aperture> <&shield> <b>lumServer</b>........................................................................................................................................................................................................................" as lumServer
package "<&cog> software-management-system" as swmgt #eeeeee {
class "<&cog> <&signpost> swMgtSystem" as swMgtSystem {
contains all settings per softwareManagementSystem like Acumos
==
<b>swMgtSystemId</b> TEXT <&key> PK -- like "Acumos"
==
--housekeeping--
creator TEXT, modifier TEXT -- creator, modifier userId
<&clock> created DATETIME, <&clock> modified DATETIME
}
}
package "<&shield> LI (License Inventory)" as LI #eeeeee {
class "<&info> swidTag" as swidTag {
ISO/IEC 19770-2: software identification tag
==
<b>swTagId</b> GUID+version <&key> PK -- identifier of the software up to specific version - revisionId in Acumos
..
possible format: <swPersistentId>_<swVersion>
example:
"c0de3e70-e815-461f-9734-a239c450bf77_7.5.3.123-t1"
--alternative <&key> PK--
<b>swPersistentId</b> GUID -- versionless product-id - solutionId in Acumos
example: "c0de3e70-e815-461f-9734-a239c450bf77"
<b>swVersion</b> TEXT -- semver like "7.5.3.123-t1"
<b>swVersionComparable</b> TEXT -- semver in comparable format "00000007.00000005.00000003.00000123-t00000001"
--
<b>licenseProfileId</b> GUID <&link-intact> FK to licenseProfile -- assigned license
<b>softwareLicensorId</b> TEXT IDX -- supplier or owner of the software
--matching software to target on permission/right-to-use--
swCategory TEXT -- image processing, software, image, video, data, ...
swCatalogs JSONB -- array of catalog info the software is stored in Acumos
> [{"swCatalogId": "", -- uid for the catalog identifier
> "swCatalogType": "" -- restricted, company-wide, public, etc.
}]
swCreators TEXT[] -- collection of userId values of the creators for swidTag = superusers of the software
..SWID details..
swProductName TEXT -- product name like Windows
swidTagDetails JSONB:
> edition TEXT -- like Pro, Dev, Enterprise, Ultimate
> revision TEXT -- build or revision number
> marketVersion TEXT -- might differ from swVersion
> patch BOOL -- indication that this is a patch
> productUrl TEXT -- url to find more info at the licensor site
--housekeeping--
<&tag> <b>swidTagRevision</b> INTEGER -- 1,2,3,... revision of the swidTag - updates are allowed - auto-incremented by LUM
swidTagActive BOOL -- whether swidTag is not revoked-closed
creator TEXT, modifier TEXT, closer TEXT -- creator, modifier, closer userId
<&clock> created DATETIME, <&clock> modified DATETIME, <&ban> <&clock> closed DATETIME
closureReason TEXT -- reason for the closure - revoked, expired, etc.
}
class "<&shield> licenseProfile" as licenseProfile {
terms and conditions define the rights for managing the usage of the software asset
==
<b>licenseProfileId</b> GUID <&key> PK - identifier of the license - can be shared between multiple swTagId
--
<b>softwareLicensorId</b> TEXT IDX -- supplier or owner of the software
--body--
licenseProfile JSONB -- full body of the license profile
--cornerstone--
<&lock-locked> <b>isRtuRequired</b> BOOL -- whether requires the right-to-use for usage, when false goes directly to usageMetrics
--lawyer readable--
<&signpost> licenseTxt TEXT -- license.txt - humanly readable terms and conditions for the licenseProfile
--human readable--
licenseName TEXT -- name of the license in free text
licenseDescription TEXT -- desciption of the license in free text
licenseNotes TEXT -- any textual notes
--housekeeping--
<&tag> <b>licenseProfileRevision</b> INTEGER -- 1,2,3,... revision of the license - updates are allowed - auto-incremented by LUM
licenseProfileActive BOOL -- whether the license profile is currently active - not closed and not expired and not revoked
creator TEXT, modifier TEXT, closer TEXT -- creator, modifier, closer userId
<&clock> created DATETIME, <&clock> modified DATETIME, <&ban> <&clock> closed DATETIME
closureReason TEXT -- reason for the closure - revoked, expired, etc.
}
}
package "<&dollar> AUA (asset-usage-agreement/entitlement = list of permissions/Rights To Use)" as AUA #eeeeee {
class "<&dollar> assetUsageAgreement" as assetUsageAgreement {
ODRL - Agreement https://www.w3.org/TR/odrl-model/#policy-agreement
related to ISO/IEC 19770-3: software entitlement (ENT) - collection of purchased rights-to-use
==
<b>softwareLicensorId</b> TEXT <&key> PK1 -- supplier or owner of the software
<b>assetUsageAgreementId</b> GUID <&key> PK2 -- UID key to assetUsageAgreement in IRI or URI format
possible format: "http://software-licensor/<softwareLicensorId>/agreement/<agreement-uuid>"
--assetUsageAgreement details--
<b>agreement</b> JSONB <&info> -- full body of ODRL agreement received from supplier
<b>agreementRestriction</b> JSONB <&info> -- full body of ODRL agreement restriction from the subscriber company
<b>groomedAgreement</b> JSONB <&info> -- groomed full body of ODRL agreement with restriction already applied
--housekeeping--
<&tag> <b>assetUsageAgreementRevision</b> INTEGER -- 1,2,3,... revision - updates are allowed
assetUsageAgreementActive BOOL -- whether agreement is enabled, but not revoked-closed or expired
creator TEXT, modifier TEXT, closer TEXT -- creator, modifier, closer userId
<&clock> created DATETIME, <&clock> modified DATETIME, <&ban> <&clock> closed DATETIME
closureReason TEXT -- reason for the closure - revoked, expired, etc.
}
class "<&dollar> rightToUse" as rightToUse {
in ODRL this is a permission rule for matching and usage rights for specific software assets
==
<b>assetUsageRuleId</b> GUID <&key> PK -- uuid of the rule
..alternative PKs..
<b>softwareLicensorId</b> TEXT UIDX1-1 -- supplier or owner of the software
<b>assetUsageAgreementId</b> GUID <&key> UIDX1-2 <&link-intact> FK to assetUsageAgreement
<b>rightToUseId</b> TEXT <&key> UIDX1-3 -- uid of the rule (uri/iri)
possible format: "http://software-licensor/<softwareLicensorId>/permission/<permission-uuid>"
--rightToUse details--
<b>assetUsageRuleType</b> ENUM {permission, prohibition}
<b>actions</b> TEXT[] -- list of action values for the rule (permission.action)
<&crop> <b>targetRefinement</b> JSONB -- groomed target refinement with restriction already applied
<&crop> <b>assigneeRefinement</b> JSONB -- groomed assignee refinement with restriction already applied
<&crop> <b>usageConstraints</b> JSONB -- groomed usageConstraints with restriction already applied
<&crop> consumedConstraints JSONB -- constraints that were consumed by grooming - for debugging
==entitlement keys from supplier and are consumed by the software to unlock the functionality==
<&shield> <&list> <b>licenseKeys</b> = [<b>licenseKey</b>] TEXT[]
--timeframe limits extracted from constraints--
<&clock> isPerpetual BOOL -- never expires if true
<&clock> enableOn DATE, <&clock> expireOn DATE GMT
<&clock> goodFor INTERVAL -- timeperiod in seconds for entitled usage. Example: 30 days == 2592000 secs
..timeframe and usage metrics..
<b>assigneeMetrics</b> JSONB {users: ['alex', 'justin']} -- metrics for assignee - list of unique users
usageStartReqId GUID -- identifier of request that started the usage of the rightToUse
<&clock> usageStarted DATETIME -- populated on first start of the usage
<&clock> usageEnds DATETIME -- usageStarted + goodFor
--housekeeping--
<&tag> <b>rightToUseRevision</b> INTEGER -- 1,2,3,... revision of the rightToUse - updates are allowed
<&tag> <b>metricsRevision</b> INTEGER -- 1,2,3,... auto-incremented by LUM - revision of changing the value of the metrics
rightToUseActive BOOL -- whether rightToUse is enabled and not revoked-closed or expired
creator TEXT, modifier TEXT, closer TEXT -- creator, modifier, closer userId
<&clock> created DATETIME, <&clock> modified DATETIME, <&ban> <&clock> closed DATETIME
closureReason TEXT -- reason for the closure - revoked, expired, etc.
metricsModifierReqId GUID -- identifier of request that modified the metrics
<&clock> metricsModified DATETIME -- when the metrics was updated
}
}
package "<&shield> AUM (Asset Usage Manager)" as AUM #eeeeee {
class "<&task> assetUsageReq" as assetUsageReq {
request for granting the entitlement for the asset usage or record the event
can be more than one asset when other assets are included
==
<b>assetUsageReqId</b> GUID PK -- identifier of request that inserted the assetUsageHistory
==<&data-transfer-download> request received by LUM==
action TEXT -- download, deploy, execute, ...
assetUsageType ENUM {assetUsage, assetUsageEvent}
requestHttp JSON: -- http method+urlPath part of the request
{> method TEXT -- put, delete, post
> path TEXT -- path in url like "/asset-usage/{assetUsageId}"
> ips TEXT[] -- ip-addresses of the http client, ...}
..full copy of request message..
<b>request</b> JSON -- see API for more details
--usage entitlement result full copy of response message--
<b>responseHttpCode</b> INTEGER -- 200 for success, 224 for revoked, 402 for denial
<b>response</b> JSON -- see API for more details
<&check> usageEntitled BOOL -- whether the action on the request has been entitled (true) or not (false) by LUM
==housekeeping==
userId TEXT -- userId on the request
<&check> status ENUM {entitled, denied, eventRecorded, ...}
<&clock> requestStarted DATETIME
<&check> requestDone BOOL -- true on sending the response
<&clock> responseSent DATETIME -- when the response was sent
}
class "<&shield> usageMetrics" as usageMetrics {
usage per single RTU+action on each asset separately.
contains constraints with status-metrics onRule and onRuleStandalone.
for usageType == rightToUse -> usageMetricsId == rightToUse.assetUsageRuleId <&link-intact> FK to rightToUse
for usageType == bySwCreator -> usageMetricsId == swidTag.swTagId <&link-intact> FK to swidTag
for usageType == freeToUse -> usageMetricsId == swidTag.swTagId <&link-intact> FK to swidTag
==
<b>usageMetricsId</b> GUID <&key> PK1
<b>action</b> TEXT <&key> PK2 -- download, deploy, execute, ...
usageType ENUM {rightToUse, bySwCreator, freeToUse, assetUsageEvent} <&key> PK3 -- how the usageMetrics is created
==
<b>swTagId</b> GUID+version <&key> PK -- identifier of the software up to specific version - revisionId in Acumos
<b>assetUsageRuleId</b> GUID <&link-intact> FK to rightToUse -- identifier of the rightToUse for usageType=rightToUse
--usage metrics--
<&spreadsheet> metrics JSONB -- metrics - count of action calls etc. {count:3, users:['alex', 'justin']}
--housekeeping--
<&tag> <b>usageMetricsRevision</b> INTEGER -- 1,2,3,... revision of the metrics
creator TEXT, modifier TEXT -- creator, modifier userId
<&clock> created DATETIME, <&clock> modified DATETIME
creatorRequestId GUID -- identifier of request that created the metrics
modifierRequestId GUID -- identifier of request that modified the metrics
}
package "<&shield> AUT (Asset Usage Tracking)" as AUT #eeffee {
class "<&task> assetUsage" as assetUsage {
usage of the software asset by users
==
<b>assetUsageId</b> GUID <&key> PK <&link-intact> FK1 to assetUsageHistory
..master or included asset..
<b>isIncludedAsset</b> BOOL -- included asset (true), master asset (false)
--tails of history--
<b>assetUsageSeqTail</b> INTEGER -- sequential number 1,2,3,... <&link-intact> FK2 to tail record on assetUsageHistory
<b>assetUsageSeqTailEntitled</b> INTEGER <&link-intact> FK2 to assetUsageHistory for last successful entitlement in assetUsageHistory
<b>assetUsageSeqTailEntitlement</b> INTEGER <&link-intact> FK2 to assetUsageHistory for last entitlement
<b>assetUsageSeqTailEvent</b> INTEGER <&link-intact> FK2 to assetUsageHistory for last event
--housekeeping--
creator TEXT, modifier TEXT -- creator, modifier userId
<&clock> created DATETIME, <&clock> modified DATETIME
}
class "<&shield> includedAssetUsage" as includedAssetUsage {
when software piece is either copied-included or composed of other software pieces
==
<b>assetUsageId</b> GUID <&key> PK <&link-intact> FK to assetUsage
<b>includedAssetUsageId</b> GUID <&key> PK2 <&link-intact> FK to assetUsage
--housekeeping--
creator TEXT -- creator userId
<&clock> created DATETIME
creatorRequestId GUID -- identifier of request that created the record
}
class "<&layers> snapshot" as snapshot {
historical snapshots of any data
==
softwareLicensorId TEXT <&key> PK1 -- supplier or owner of the software
snapshotType ENUM {licenseProfile, swidTag, assetUsageAgreement, rightToUse} <&key> PK2
snapshotKey TEXT <&key> PK3 -- PK to the source table like swTagId
snapshotRevision INTEGER <&key> PK4 -- revision field on the source table like swidTagRevision
--snapshot itself--
snapshotBody JSON -- copy of the full record from source table
--housekeeping--
creator TEXT -- creator userId
<&clock> created DATETIME
<&clock> requestId GUID -- uuid of the request that recorded the snapshot
<&clock> txStep TEXT -- transaction step that recorded the snapshot
}
class "<&task> assetUsageHistory" as assetUsageHistory {
history of the usage of the software asset - can only insert - never update or delete to this table
==
<b>assetUsageId</b> GUID <&key> PK1 <&link-intact> FK to assetUsage
<b>assetUsageSeq</b> INTEGER <&key> PK2 -- sequential number 1,2,3,...
--type--
assetUsageType ENUM {assetUsage, assetUsageEvent}
==notnullable FKs==
<b>assetUsageReqId</b> GUID <&link-intact> FK to assetUsageReq
<b>action</b> TEXT <&link-intact> FK2 to usageMetrics -- download, deploy, execute, ...
<b>softwareLicensorId</b> TEXT IDX -- supplier or owner of the software
..asset residence - searchable keys..
<&tag> <b>swMgtSystemId</b> TEXT -- like "Acumos"
<&tag> <b>swMgtSystemInstanceId</b> TEXT -- system instance id that manages the software pieces and sent the request - like "Acumos#22"
<&tag> <b>swMgtSystemComponent</b> TEXT -- component inside the system that sent the request like "model-runner"
..nullable FKs..
<b>swTagId</b> GUID+version <&link-intact> FK to swidTag
<&tag> <b>swidTagRevision</b> INTEGER -- 1,2,3,... revision of the swidTag - updates are allowed - auto-incremented by LUM
<b>licenseProfileId</b> GUID <&link-intact> FK to licenseProfile
<&tag> <b>licenseProfileRevision</b> INTEGER -- 1,2,3,... revision of the license - updates are allowed - auto-incremented by LUM
<&lock-locked> <b>isRtuRequired</b> BOOL -- whether requires the right-to-use for usage
<b>assetUsageRuleId</b> GUID <&link-intact> FK to rightToUse -- identifier of the rightToUse for usageType=rightToUse
<&tag> <b>rightToUseRevision</b> INTEGER -- 1,2,3,... rightToUse revision
<b>assetUsageAgreementId</b> GUID <&link-intact> FK to assetUsageAgreement
<&tag> <b>assetUsageAgreementRevision</b> INTEGER -- 1,2,3,... assetUsageAgreement revision
<b>usageMetricsId</b> GUID <&link-intact> FK1 to usageMetrics
<b>metrics</b> JSONB -- usage metrics used for entitlement
==usage entitlement result==
<&check> usageEntitled BOOL
<&check> isUsedBySwCreator BOOL -- whether the userId listed in swCreators of the software
<&list> <b>licenseKeys</b> = [<b>licenseKey</b>] TEXT[]
assetUsageDenialSummary TEXT -- human readable summary for denial of the asset-usage
<&list> assetUsageDenial JSON[] -- denials of the usage of the software asset - see API
--housekeeping--
creator TEXT -- creator userId
<&clock> created DATETIME
}
}
component "<&print> asset-usage report" as AUMReport
}
}
supplier "1" *--{ "many" purchaseOrder : sign with buyer (for Acumos) >
supplier "1" *-{ "many" supplierPublicLicense : >
purchaseOrder .> entPurchaseOrder : get/add/update/revoke\n purchaseOrder with RTUs
supplierPublicLicense .right.> SMS : <&shield> add/update/revoke license
lumProxy .down.> lumServer : <&shield> get/add/update/revoke \n license
lumProxy .down.> lumServer : request for entitlement
lumServer .up.> lumProxy : entitlement response
entPurchaseOrder .down.> lumServer : <&dollar> get/add/update/revoke \n assetUsageAgreement
lumServer ..> licenseProfile : <&shield> get/add/update/revoke license
licenseProfile "1" *--{ "many" swidTag
devAdmin ..> swMgtSystem : setup asset assignment rules
lumServer ..> assetUsageAgreement : <&dollar> get/add/update/revoke assetUsageAgreement
assetUsageAgreement "1" *--{ "many" rightToUse : permissions and prohibitions >
swidTag ..> usageMetrics : <&lock-unlocked> <b>isRtuRequired == false</b> \n goes directly to usageMetrics \n with freeToUse >
rightToUse ..> usageMetrics : usage by RTU >
assetUsage .up.> usageMetrics : is usage entitled ? >
includedAssetUsage "0-many" }-* "1" assetUsage : includes <
assetUsage "1" *-{ "many" assetUsageHistory : entitlement per single asset >
assetUsageHistory "many" }-o "0-1" snapshot : snapshots in history >
lumServer ..> assetUsageReq : usage and events
assetUsageReq ..> assetUsage : usage on each asset >
assetUsageReq "1" *--{ "many" assetUsageHistory : per single asset >
assetUsageReq .> AUMReport
left footer
Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
endfooter
@enduml
| false | true | false | false | usecase |
dfe72c6aec88e43e8dca1dfacba5ff777650590a | 35fb4960297c31a530317e50ed8ec31b8dfd671b | /gitResetADDR--somefile/resetADDR--somefile.puml | 01526be8aad55238ba2862d4e2b73845f1336646 | [] | no_license | jalbertomr/githubBloggerDoc | cedf2e38f54b3ee620ae7d1a38a3ce860d3bf166 | a36f5650b5252967f56ce6bcfba3e790908e1edb | refs/heads/main | 2023-01-31T04:40:23.795375 | 2020-12-16T04:35:45 | 2020-12-16T04:35:45 | 321,867,336 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,590 | puml | @startuml
scale 1500 width
title git reset ADDRESS -- someFile
skinparam roundCorner 20
actor User
box "<size:20>GIT jalbertomr.blogspot.com</size>"
participant "Working dir" as WD #FF5555
participant "Stage" as S #99FF99
database "commit 1" as C1
database "commit 2" as C2
database "commit 3" as C3
== git reset ADDRESS -- someFile ==
== Make 3 commits ==
User -> WD: create file1:v1
note right of WD #lightgray
file1:v1
end note
note left of S #Salmon
file1:v1
end note
User-> S : <color:limegreen><back:black><b> git add file1 </b></back></color>
note right of S #99FF99
file1:v1
end note
User-> C1 : <color:limegreen><back:black><b> git commit -m "file1:v1" </b></back></color>
note right of C1
HEAD
file1:v1
end note
User -> WD: update file1:v1->v2
note right of WD #lightgray
file1:v2
end note
note left of S #Salmon
file1:v2
end note
User-> C2 : <color:limegreen><back:black><b> git commit -am "file1" </b></back></color>
note right of C2
HEAD
file1:v2
end note
User -> WD: update file1.v2->v3
note right of WD #lightgray
file1:v3
end note
note left of S #Salmon
file1:v3
end note
User-> C3 : <color:limegreen><back:black><b> git commit -am "file1" </b></back></color>
note right of C3
HEAD
file1:v3
end note
== Apply command: git reset ADDRESS -- someFile (first commit)==
User -> C1 : <color:limegreen><back:black><b> git reset 289e5 -- file1 </b></back></color>
note right of C1
HEAD
file1:v3
end note
note right of S #99FF99
file1:v3->v1
end note
note left of S #Salmon
file1:v1->v3
end note
note right of WD #lightgray
file1:v3
end note
@enduml | false | true | false | false | usecase |
79eef1e0e54c1e3d27b60b018acc19c6b5a736b8 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /sequence - design/student/addStudent.plantuml | 025a2d68cb842eb4d7ef09e032d5bb7c61408bbd | [] | 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 | 1,503 | plantuml | @startuml addStudent
actor ": Teacher"
activate ": Teacher"
": Teacher" -->> ": IStudentForm": // Add student to classroom
activate ": IStudentForm"
": IStudentForm" -> ": IStudentForm": validate(token, classroom_id, user_id)
alt all information is filled and valid
": IStudentForm" -> ": StudentController": add_student(token, classroom_id, user_id)
activate ": StudentController"
": StudentController" -> ": StudentController": validate_add_student(token, classroom_id, user_id)
alt student is valid for enroll classroom
": StudentController" -> ": IClassroomMemberDB": read(classroom_id, user_id)
activate ": IClassroomMemberDB"
alt student is not exist in classroom
": StudentController" ->> ": IClassroomDB": create(classroom_id, user_id)
deactivate ": StudentController"
deactivate ": IClassroomMemberDB"
activate ": IClassroomDB"
": IStudentForm" -->> ": Teacher": // student is added to classroom
deactivate ": IClassroomDB"
else student is exist in classroom
": IStudentForm" -->> ": Teacher": // student is exist in classroom
end
else student is not valid for enroll classroom
": IStudentForm" -->> ": Teacher": // student is not valid to added to classroom
end
else some information is missing or invalid
": IStudentForm" -->> ": Teacher": // Check information again
end
deactivate ": IStudentForm"
deactivate ": Teacher"
@enduml | false | true | false | false | usecase |
0f253ff9df30dfd0f9185d2be134db800dd82c69 | 670651c9b0d996df23c34b36cd56ce065c142cae | /docs/ClassDiagram.puml | 9f95fbeab3fda2ee48736f531eaf3ad691af4788 | [] | no_license | abznt/Assignment8 | d19ca71471ce495e90ce55bc00898c209068a96d | 228fedc505c9f8bd42f88abefc9b1c03b6809df8 | refs/heads/master | 2023-01-08T15:31:03.773242 | 2020-11-01T21:14:18 | 2020-11-01T21:14:18 | 306,170,950 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,383 | puml | @startuml
skinparam ClassBorderColor black
skinparam ClassBackgroundColor white
abstract Node {
-Node* _left
-Node* _right
#Node(Node* left = nullptr, Node* right = nullptr)
+virtual ~Node()
+Node* left()
+Node* right()
+virtual double evaluate() const = 0
+virtual void print(std::ostream&) const = 0
+virtual Node* clone() const = 0
+virtual Node* derivative(string variableName) const = 0
+ostream& operator<<(ostream& os, const Node& node)
+ostream& operator<<(ostream& os, const Node* node)
}
abstract BinaryNode {
#BinaryNode(Node* left, Node* right)
}
hide BinaryNode attributes
abstract UnaryNode {
#UnaryNode(Node* left)
}
hide UnaryNode attributes
class Positive {
+Positive(Node* left)
+double evaluate() const override
+void print(std::ostream&) const override
+Node* clone() const override
+Node* derivative(string variableName) const override
}
hide Positive attributes
class Negative {
+Negative(Node* left)
+double evaluate() const override
+void print(std::ostream&) const override
+Node* clone() const override
+Node* derivative(string variableName) const override
}
hide Negative attributes
abstract LeafNode {
#LeafNode()
}
hide LeafNode attributes
Class Sub {
+Sub(Node* left, Node* right)
+double evaluate() const override
+void print(std::ostream&) const override
+Node* clone() const override
+Node* derivative(string variableName) const override
}
hide Sub attributes
Class Add {
+Add(Node* left, Node* right)
+double evaluate() const override
+void print(std::ostream&) const override
+Node* clone() const override
+Node* derivative(string variableName) const override
}
hide Add attributes
Class Mul {
+Mul(Node* left, Node* right)
+double evaluate() const override
+void print(std::ostream&) const override
+Node* clone() const override
+Node* derivative(string variableName) const override
}
hide Mul attributes
Class Div {
+Div(Node* left, Node* right)
+double evaluate() const override
+void print(std::ostream&) const override
+Node* clone() const override
+Node* derivative(string variableName) const override
}
hide Div attributes
Class Variable {
-static map<string, double> _variableValuesByName
-string _name
+Variable(string name)
+double evaluate() const override
+void print(std::ostream&) const override
+Node* clone() const override
+Node* derivative(string variableName) const override
+static bool exists(string nameKey)
+static void setVariableValueByName(string nameKey, double val)
+static double getVariableValueByName(string nameKey)
}
class Constant {
-double _val
+Constant(double val)
+double evaluate() const override
+void print(std::ostream&) const override
+Node* clone() const override
+Node* derivative(string variableName) const override
}
Class ExpressionTree {
-Node* _root
+ExpressionTree(Node* root)
+ExpressionTree(ExpressionTree& tree)
+~ExpressionTree()
+Node* root() const
+double evaluate() const
+ExpressionTree derivative(const string& variableName) const
+ostream& operator<<(ostream &os, const Node &node)
+ostream& operator<<(ostream &os, const Node *node)
}
ExpressionTree *-- Node
BinaryNode -|> Node
Add --|> BinaryNode
Sub --|> BinaryNode
BinaryNode <|-- Mul
BinaryNode <|-- Div
Node <|-- UnaryNode
UnaryNode <|-- Positive
UnaryNode <|-- Negative
Node <|- LeafNode
LeafNode <|-- Variable
Constant --|> LeafNode
@enduml | false | true | false | false | class |
3e4740e616a5917110edf65926c67404e46cac36 | 13a3d4bdf8ee0c5f2df7028d3792d5b631fbf481 | /docs/domain.puml | cbd9b71cc7e3fcc7de973e0321b414f72a1c1774 | [] | no_license | LarexSetch/arches | f8ee65f4d95f7073f2a0f6adde944235eda7ec12 | 98f5b112441b251ea00292058fcb51dcecf4ae55 | refs/heads/master | 2021-05-23T08:54:38.722446 | 2020-04-13T22:30:09 | 2020-04-13T22:30:09 | 253,208,598 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 881 | puml | @startuml
class Element {
private String id;
private String name;
private ElementType type;
}
class Method {
String id;
String elementId;
String name;
AccessLevel accessLevel;
}
class MethodArgument {
String id;
String methodId;
String name;
String type;
}
class Property {
String id;
String elementId;
String name;
String type;
}
class Relation {
RelationType type;
Element source;
Element target;
}
enum RelationType {
DEPENDS_ON,
EXTENDS,
AGGREGATE,
RELATED,
COMPOSITION;
}
enum ElementType {
CLASS,
INTERFACE;
}
enum AccessLevel {
PUBLIC,
PROTECTED,
PRIVATE;
}
Method *.. Element
Property *.. Element
MethodArgument *.. Method
Relation *.. Element
AccessLevel o.. Method
AccessLevel o.. Property
RelationType o.. Relation
ElementType o.. Element
@enduml | false | true | false | false | class |
b211959b82a906c75ca0c631a14666f41edd64f0 | 5c60b5ce8e885c5eee2b72ab805ec1191686a005 | /docs/pumlFiles/addItemToItemListSequence.puml | 2a4c2a95da57a3ce952a8752475af8a3575fd848 | [] | no_license | alvynben/tp | ea41264feb9a5e1e99fc0cf60b6344d115689496 | 63b63df620d6688d4cf890c3f986cdc96503d155 | refs/heads/master | 2023-08-29T04:55:55.681506 | 2021-11-12T11:47:15 | 2021-11-12T11:47:15 | 403,198,097 | 0 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 975 | puml | @startuml
'https://plantuml.com/sequence-diagram
skinparam backgroundColor #f2f2f2
skinparam defaultFontSize 16
autonumber
activate ":AddCommand"
":AddCommand"-> ":AddCommand": addItemToItemList(newItem)
activate ":AddCommand"
":AddCommand" -> ":Ui": getQuantityToBeAdded(newItem)
activate ":Ui"
":AddCommand" <-- ":Ui": int qtyToBeAdded
deactivate ":Ui"
":AddCommand" -> ":ItemList": addItem(newItem)
activate ":ItemList"
":AddCommand" <-- ":ItemList": int finalQty
deactivate ":ItemList"
alt originalQty > 0
":AddCommand" -> ":Ui": printReactionToAddingExistingItem()
activate ":Ui"
":AddCommand" <-- ":Ui"
deactivate ":Ui"
else
":AddCommand" -> ":Ui": printReactionToAddingItem()
activate ":Ui"
":AddCommand" <-- ":Ui"
deactivate ":Ui"
end
":AddCommand" -> ":ShoppingList": removeItem(newItem, newItemQty)
activate ":ShoppingList"
":AddCommand" <-- ":ShoppingList"
deactivate ":ShoppingList"
":AddCommand" <-- ":AddCommand"
deactivate ":AddCommand"
@enduml | false | true | false | false | sequence |
7d05034d63c1c2e2386740e66facb486ace422bd | 5182c071d0316eff5aad407dff1872e3ef8f0c10 | /readmeFiles/Car.iuml | 7874a0025b23859248a7c3a68778abbcec500471 | [
"Apache-2.0"
] | permissive | fh-erfurt/1234Altwagen | 99bdd696c68b32fb20577ab5b6b411d65853eaae | 3a90aa709cbfb481a74cdaa94ea16c7579c9c7a0 | refs/heads/master | 2020-08-29T12:27:59.230959 | 2020-08-03T17:08:57 | 2020-08-03T17:08:57 | 218,030,883 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 360 | iuml | @startuml
class Car {
-chassisNumber: string
-constructionYear: int
-drivenKM: int
-price: float
-brand: string
-model: string
-note: string
-location: Location
-status: CarStatus
+Car(String, String, int, String, String, String, Location, CarStatus)
{method} getter und setter
+equals(Object): boolean
}
@enduml | false | true | false | false | class |
c7c77583fc2ab2a3bc0ce83ff85ded27ef29bde1 | 2fa6d795127fcd683fe34bb7d74876e0fcd939eb | /src/main/java/pl/me/automation/pages/page.plantuml | c5e3a3e4d2e099a988f8d32ab575ed80fb33e32f | [] | no_license | KingaMRepo/TestStore | 911f842d61785d4782088c01b73b40e3b5db8824 | 4692d0ff7b7936d2c35d2bacd916179dcfc3511e | refs/heads/master | 2023-03-25T19:54:11.198774 | 2021-03-25T20:14:07 | 2021-03-25T20:14:07 | 279,931,454 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 25,271 | plantuml | @startuml
title __PAGE's Class Diagram__\n
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.AboutPage {
- header : WebElement
+ AboutPage()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.ChangePasswordPage {
- acceptNewPassword : WebElement
- accountDisplayName : WebElement
- accountEmail : WebElement
- accountFirstName : WebElement
- accountLastName : WebElement
- accountNameMessage : WebElement
- alert : WebElement
- currentPassword : WebElement
- errors : List<WebElement>
- myAccountWelcomeAlert : WebElement
- newPassword : WebElement
- submitButton : WebElement
+ ChangePasswordPage()
+ acceptNewPassword()
+ clearAccountDisplayName()
+ clearAccountEmail()
+ clearAccountFirstName()
+ clearAccountLastName()
+ enterAccountDisplayName()
+ enterAccountEmail()
+ enterAccountFirstName()
+ enterAccountLastName()
+ enterCurrentPassword()
+ enterNewPassword()
+ getAlertText()
+ getErrorLabels()
+ isAlertDisplayed()
+ isMyAccountWelcomeTextDisplayed()
+ submitPassword()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.ContactPage {
- contactMessage : WebElement
- emailValidationError : WebElement
- header : WebElement
- messageSubjectSelect : WebElement
- messageValidationError : WebElement
- nameValidationError : WebElement
- sendMessageButton : WebElement
- userEmailInput : WebElement
- userLastName : WebElement
- userMessageInput : WebElement
- userNameInput : WebElement
+ ContactPage()
+ clickSendMessageButton()
+ enterEmailAddress()
+ enterMessage()
+ enterUserLastName()
+ enterUserName()
+ isContactMessageDisplayed()
+ isEmailValidationErrorDisplayed()
+ isMessageValidationError()
+ isNameValidationError()
+ selectMessageSubject()
+ sendMessage()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.EditBillingAddressPage {
- address1Input : WebElement
- address2Input : WebElement
- billingState : WebElement
- cityInput : WebElement
- companyInput : WebElement
- countrySelect : WebElement
- editBillingAddressAlert : WebElement
- errors : List<WebElement>
- header : WebElement
- paymentAddress : WebElement
- phoneNumber : WebElement
- postCodeInput : WebElement
- stateInput : WebElement
- submitButton : WebElement
- userLastNameInput : WebElement
- userNameInput : WebElement
+ EditBillingAddressPage()
+ clearBillingAddress1()
+ clearBillingCity()
+ clearBillingPhoneNumber()
+ clearBillingPostCode()
+ clearBillingRegion()
+ clearBillingUserLastName()
+ clearBillingUserName()
+ clickBillingSubmitButton()
+ enterBillingAddress1()
+ enterBillingCity()
+ enterBillingPhoneNumber()
+ enterBillingPostCode()
+ enterBillingRegion()
+ enterBillingUserLastName()
+ enterBillingUserName()
+ getErrorLabels()
+ getPaymentAddress()
+ isEditBillingAddressAlertDisplayed()
+ selectBillingCountryName()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.EditShippingAddressPage {
- errors : List<WebElement>
- header : WebElement
- shippingAddress1 : WebElement
- shippingAddressFormAlert : WebElement
- shippingAddressFormErrorAlert : WebElement
- shippingCity : WebElement
- shippingCountrySelect : WebElement
- shippingFirstLastName : WebElement
- shippingFirstName : WebElement
- shippingPostcode : WebElement
- shippingSaveButton : WebElement
+ EditShippingAddressPage()
+ clearShippingAddress1()
+ clearShippingCity()
+ clearShippingPostcode()
+ clearShippingUserLastName()
+ clearShippingUserName()
+ clickShippingSubmitButton()
+ enterShippingAddress1()
+ enterShippingCity()
+ enterShippingPostalCode()
+ enterShippingUserLastName()
+ enterShippingUserName()
+ getErrorLabels()
+ getShippingAddressFormAlert()
+ isShippingAddressFormAlert()
+ selectBillingCountryName()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.HomePage {
- acceptCookieButton : WebElement
- addToShoppingCardButton : WebElement
- buyButton : WebElement
- checkShoppingCardButton : WebElement
- contactMessage : WebElement
- cookieAcceptButton : WebElement
- cookieNotice : WebElement
- cookieNoticeContainer : WebElement
- cookiePrivacyPolicyButton : WebElement
- cookieRefuseButton : WebElement
- products : Map<String, Product>
- productsInBasket : List<Product>
- recommendedProducts : List<WebElement>
- recommendedProductsNames : List<WebElement>
- wishListButtons : List<WebElement>
- wishListPopupMessage : WebElement
+ HomePage()
+ addProductsToWishList()
+ addRecommendedProductsToBasket()
+ clickCookie()
+ getProductsInBasket()
+ isCookieRefuseButtonDisplayed()
+ isWishListPopupMessageDisplayed()
+ refuseCookie()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.LoggedInUserPage {
- loggedInUserPageText : WebElement
+ LoggedInUserPage()
+ isLogeInUserPageDisplayed()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.LostPasswordReminderPage {
{static} + resetText : String
- lostPasswordInfoText : WebElement
- resetPasswordButton : WebElement
- resetPasswordMessage : WebElement
- userLoginInput : WebElement
+ LostPasswordReminderPage()
+ clickResetPasswordButton()
+ getResetPasswordText()
+ insertUserLoginOrEmail()
}
}
}
namespace pl.me.automation {
namespace page {
abstract class pl.me.automation.page.Menu {
+ h1Header : WebElement
- aboutButton : WebElement
- contactButton : WebElement
- homeButton : WebElement
- logoButton : WebElement
- myAccountButton : WebElement
- shopButton : WebElement
- shopSubMenu : List<WebElement>
- shoppingCardButton : WebElement
- widgetButton : WebElement
- widgetCard : WebElement
- widgetProduct : List<WebElement>
- widgetProductNames : List<WebElement>
- wishListButton : WebElement
+ Menu()
+ clickAboutPage()
+ clickContact()
+ clickHome()
+ clickLogo()
+ clickMyAccount()
+ clickMyAccountWaitForOrder()
+ clickShop()
+ clickShoppingCard()
+ clickWistListPage()
+ deleteProductFromWidgetByName()
+ goFromWidgetButtonToShoppingCard()
+ selectShopCategory()
+ showProductsFromWidget()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.MyAccountPage {
- addressAndBillingButton : WebElement
- addressAndBillingEditButton : WebElement
- changePasswordAndAccountDetailsButton : WebElement
- changePasswordAndAccountDetailsErrors : WebElement
- errorAlert : WebElement
- gmailLogInUserName : WebElement
- header : WebElement
- logOutButton : WebElement
- loginEmail : WebElement
- loginPasswordInput : WebElement
- logoutFromMyAccountButton : WebElement
- lostPasswordReminder : WebElement
- lostPasswordUserLogin : WebElement
- myAccountUserText : WebElement
- orderListButton : WebElement
- orderListLastOrder : WebElement
- passwordInput : WebElement
- passwordReminder : WebElement
- paymentAddress : WebElement
- paymentAndDeliveryAddressesButton : WebElement
- paymentAndDeliveryAddressesMessage : WebElement
- registerButton : WebElement
- rememberMeCheckbox : WebElement
- resetPasswordSubmitButton : WebElement
- resetPasswordSuccessSendAlert : WebElement
- shippingAddressEditButton : WebElement
- showOrderDetailsButtons : List<WebElement>
- submitButton : WebElement
- userEmailInput : WebElement
- userNameInput : WebElement
- userNameOrEmailInput : WebElement
- userNameText : WebElement
- welcomeToMyAccountText : WebElement
+ MyAccountPage()
+ clickAddressAndBillingButton()
+ clickEditAddressAndBillingEditButton()
+ clickEditShippingAddressEditButtonButton()
+ clickIntoChangePasswordAndAccountDetailsButton()
+ clickLastOrdersButton()
+ clickLoginPasswordReminder()
+ clickLoginRememberMeCheckbox()
+ clickLoginSubmit()
+ clickLostPasswordReminderButton()
+ clickOrderDetailsButton()
+ clickPaymentAndDeliveryAddressesButton()
+ clickRegister()
+ clickRegisterFalse()
+ clickResetPasswordSubmitButton()
+ enterLoginOrEmailToLostPasswordUserField()
+ enterLoginUserLoginPassword()
+ enterLoginUserNameOrEmail()
+ enterRegisterUserEmail()
+ enterRegisterUserName()
+ enterRegisterUserPassword()
+ getDisplayedEmail()
+ getMyAccountUserText()
+ getOrderListLastOrder()
+ getPaymentAddress()
+ getRegistrationAndLoginErrorText()
+ getResetPasswordSuccessSendAlert()
+ getUserNameText()
+ isChangePasswordAndAccountDetailsErrorsDisplay()
+ isRegistrationAndLoginErrorDisplayed()
+ isUserNameTextDisplayed()
+ isWelcomeToMyAccountTextDisplay()
+ logOutFromMyAccountPage()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.OrderPage {
+ h1Header : WebElement
+ orderNumber : WebElement
+ receivedOrderAlert : WebElement
- wishListProductName : WebElement
+ OrderPage()
+ getOrderNumber()
+ getWishListProductName()
+ isOrderAcceptMessageIsDisplay()
+ isReceivedOrderAlertDisplayed()
}
}
}
namespace pl.me.automation {
namespace page {
abstract class pl.me.automation.page.PageObject {
# wait : WebDriverWait
# webDriver : WebDriver
+ PageObject()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.PaymentPage {
- accountLoginButton : WebElement
- appliedCouponAlertMessage : WebElement
- applyCouponButton : WebElement
- billingRegistrationError : WebElement
- cardNumberField : WebElement
- clickToAddCouponButton : WebElement
- couponAmount : WebElement
- couponCodeInput : WebElement
- error : WebElement
- errors : List<WebElement>
- formValidationError : WebElement
- h3Header : WebElement
{static} - log : Logger
- loginSubmitButton : WebElement
- lostPasswordButton : WebElement
- newUPaymentMethodRadioButton : WebElement
- password : WebElement
- payUPayment : WebElement
- payUPaymentMethod : WebElement
- payURadioButton : WebElement
- paymentAccountUsername : WebElement
- paymentAddress : WebElement
- paymentCity : WebElement
- paymentCountrySelect : WebElement
- paymentEmail : WebElement
- paymentFormEmailError : WebElement
- paymentFormError : WebElement
- paymentMethods : List<WebElement>
- paymentPassword : WebElement
- paymentPhone : WebElement
- paymentPostCode : WebElement
- paymentRegion : WebElement
- paymentSubmitButton : WebElement
- paymentUserLastNameInput : WebElement
- paymentUserNameInput : WebElement
- priceAmount : WebElement
- shipToDifferentAddressCheckbox : WebElement
- shippingAddress : WebElement
- shippingCity : WebElement
- shippingCountrySelect : WebElement
- shippingFirstName : WebElement
- shippingLastName : WebElement
- shippingPostcode : WebElement
- shippingPrice : WebElement
- shippingRate : WebElement
- shippingState : WebElement
- stipeCardValidityError : WebElement
- stipeErrorField : WebElement
- stripeCardNumberInput : WebElement
- stripePaymentBox : WebElement
- sumPrice : WebElement
- termsAndConditionsCheckbox : WebElement
- termsAndConditionsCheckbox1 : WebElement
- unableToProcessOrderAlert : WebElement
- unableToProcessOrderAlertField : WebElement
- userNameOrEmailField : WebElement
+ PaymentPage()
+ acceptTermsAndConditionsCheckbox()
+ applyCouponCode()
+ checkIfPayURadioButtonIsSelected()
+ choosePaymentMethod()
+ clickLoginButton()
+ clickLostPasswordButton()
+ clickNewUPaymentMethodRadioButton()
+ clickSubmitButton()
+ deselectShipToDifferentAddressCheckbox()
+ enterBillingAccountPassword()
+ enterBillingAccountUsername()
+ enterBillingUserAddress()
+ enterBillingUserCity()
+ enterBillingUserEmail()
+ enterBillingUserLastName()
+ enterBillingUserName()
+ enterBillingUserPhone()
+ enterBillingUserPostCode()
+ enterBillingUserRegion()
+ enterShippingAddress()
+ enterShippingCity()
+ enterShippingPostCode()
+ enterShippingRegion()
+ enterShippingUserLastName()
+ enterShippingUserName()
+ enterUserNameOrEmail()
+ enterUserPassword()
+ findElementInFrame()
+ getErrorLabels()
+ getErrorText()
+ getFormValidationErrorText()
+ getProductCouponAmount()
+ getProductPriceAmount()
+ getProductShipping()
+ getProductSumPrice()
+ getShippingMethodRate()
+ getStipeCardValidityErrorText()
+ getUnableToProcessOrderAlertText()
+ isAppliedCouponAlertMessageDisplayed()
+ isPaymentEmptyFormErrorDisplayed()
+ isPaymentFormErrorDisplayed()
+ isShipToDifferentAddressCheckboxChecked()
+ paymentAccept()
+ selectBillingCountry()
+ selectShippingCountry()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.PrivacyPolicyPage {
- policyText : WebElement
- privacyPolicyText : WebElement
+ PrivacyPolicyPage()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.SearchResultsPage {
- h1 : WebElement
- searchResultAlert : WebElement
- searchResultButton : WebElement
- searchResultImage : WebElement
- searchResultProduct : WebElement
+ SearchResultsPage()
+ clickSearchResultButton()
+ displayProductPhoto()
+ isSearchResultsPageDisplayedShowingAlert()
+ isSearchResultsPageDisplayedShowingProduct()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.ShopPage {
~ priceList : List<String>
- activeFilterButton : WebElement
- activeFilters : List<WebElement>
- activeFiltersButtons : List<WebElement>
- addToCardButtons : List<WebElement>
- basketButton : WebElement
- colourFilterInput : WebElement
- dragAndDropSliderButton : WebElement
- dragAndDropSliderMaxFilter : WebElement
- dragAndDropSliderMaxValue : WebElement
- dragAndDropSliderMinFilter : WebElement
- dragAndDropSliderMinValue : WebElement
- dragAndDropSliderRightHandle : WebElement
- filterNames : List<WebElement>
- filterPrices : List<WebElement>
- filteredProductsNames : List<WebElement>
- firstRateSortedProduct : WebElement
- h2Header : WebElement
- productButton : List<WebElement>
- productNames : List<WebElement>
- productPrice : List<WebElement>
- productPrices : List<WebElement>
- products : Map<String, Product>
- productsImageList : List<WebElement>
- productsInBasket : List<Product>
- searchField : WebElement
- searchSubmit : WebElement
- sizeFilterInput : WebElement
- sizeFilterSelect : WebElement
- sortingSelect : WebElement
- starRating : List<WebElement>
- submitButton : WebElement
- widgetCardTotalPrice : WebElement
- wishListButtons : List<WebElement>
+ ShopPage()
+ activeFilterDelete()
+ activeFiltersDeleteByIndex()
+ activeFiltersDeleteByName()
+ addProductsToBasket()
+ addProductsToWishListByIndex()
+ clickAddToBasketButton()
+ clickBasket()
+ clickProduct()
+ clickToShowSingleProductCard()
+ dragAndDropPriceFilter()
+ filterProductsByColour()
+ filterProductsBySize()
+ findProduct()
+ getDragAndDropSliderMaxFilter()
+ getDragAndDropSliderMaxValue()
+ getDragAndDropSliderMinFilter()
+ getDragAndDropSliderMinValue()
+ getFilterLabels()
+ getFilteredPrices()
+ getFilteredProductName()
+ getProductName()
+ getProductPrice()
+ getProductPrice()
+ getProductsInBasket()
+ getStarRating()
+ getWidgetTotalPrice()
+ sortProducts()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.ShoppingCardPage {
- appliedCouponAlertMessage : WebElement
- applyCouponButton : WebElement
- basketTotalPrice : WebElement
- couponAmount : WebElement
- couponCodeInput : WebElement
- couponErrorAlert : WebElement
- deliveryRadioButtonsLabels : List<WebElement>
- emptyBasketLabel : WebElement
- h1Header : WebElement
- priceAmount : WebElement
- proceedToCheckoutButton : WebElement
- productFromBasket : List<WebElement>
- productName : WebElement
- productUnitPrice : WebElement
- products : Map<String, Product>
- productsInBasketNames : List<WebElement>
- removeProductFromBasket : List<WebElement>
- shippingMethods : List<WebElement>
- shippingPriceFirstMethod : WebElement
- shippingPriceSecondMethod : WebElement
- shippingPriceThirdMethod : WebElement
- sumPrice : WebElement
+ ShoppingCardPage()
+ applyCouponCode()
+ chooseShippingMethod()
+ getAppliedCouponFailAlertMessage()
+ getAppliedCouponSuccessfullyAlertMessage()
+ getDeliveryType()
+ getProductCouponAmount()
+ getProductName()
+ getProductPrice()
+ getProductPriceAmount()
+ getProductShippingFirstMethod()
+ getProductShippingSecondMethod()
+ getProductShippingThirdMethod()
+ getProductSumPrice()
+ getProductsInBasketNames()
+ getShoppingCardTotalPrice()
+ getSummaryPrice()
+ isDisplayEmptyBasket()
+ proceedToCheckout()
+ removeProductsByName()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.SingleProductPage {
~ js : JavascriptExecutor
- addCommentSubmitButton : WebElement
- addToCardSingleProductButton : WebElement
- addedStarRating : WebElement
- authorEmail : WebElement
- closeButton : WebElement
- commentAuthor : WebElement
- commentDescription : WebElement
- commentTextArea : WebElement
- noReviewsText : WebElement
- productZoom : WebElement
- productbuttonArraw : WebElement
- recommendProductButton : WebElement
- recommendProductNameText : WebElement
- recommendedProductsButtons : List<WebElement>
- recommendedProductsNames : List<WebElement>
- reviewsButton : WebElement
- singeProductImage : WebElement
- singleProductName : WebElement
- singleProductNameText : WebElement
- starRatingList : List<WebElement>
- widgetIcon : WebElement
+ SingleProductPage()
+ ZoomProductPhoto()
+ addStarRating()
+ clickAddToCardSingeProductButton()
+ clickAlertBoxAccept()
+ clickCommentSubmitButton()
+ clickRecommendProductButton()
+ clickRecommendedProductsButton()
+ clickReviewsButton()
+ clickWidget()
+ enterComment()
+ enterUserNameAndEmail()
+ getAddedStarRating()
+ getAlertBoxText()
+ getCommentDescription()
+ getNoReviewsText()
+ getRecommendProductNameText()
+ getRecommendedProductsName()
+ getSingleProductName()
+ getSingleProductNameText()
+ isZoomImageDisplayed()
}
}
}
namespace pl.me.automation {
namespace page {
class pl.me.automation.page.WishListPage {
- addToCardButton : List<WebElement>
- header : WebElement
- productRemoveButtons : List<WebElement>
- productsNames : List<WebElement>
- removeAlert : WebElement
- wishListProduct : WebElement
- wishListRemoveProducts : Map<String, WebElement>
+ WishListPage()
+ addProductFromWishListToCard()
+ getProductName()
+ getWishListProductName()
+ isRemoveAlertDisplay()
+ removeProductsByName()
}
}
}
pl.me.automation.page.AboutPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.ChangePasswordPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.ContactPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.EditBillingAddressPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.EditShippingAddressPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.HomePage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.LoggedInUserPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.LostPasswordReminderPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.Menu -up-|> pl.me.automation.page.PageObject
pl.me.automation.page.MyAccountPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.OrderPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.PaymentPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.PrivacyPolicyPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.SearchResultsPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.ShopPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.ShoppingCardPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.SingleProductPage -up-|> pl.me.automation.page.Menu
pl.me.automation.page.WishListPage -up-|> pl.me.automation.page.Menu
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 |
8d24a6d52a35fa1506711c4672c530271b1228c9 | d92ed1ed95ec7c23dde55fa041114b4f2daef99a | /diagrams/domainmodel.puml | f20d7b93ccc13ef51e5991536c46eb3be2e20198 | [] | no_license | simo95i9/DAT21V2-Projekt-Delfinen | 39691a7eb43db547f517e440c776ca1fe1acdf58 | 7844ed4200e3ee7769aa63bb62f77f1ea7839e00 | refs/heads/master | 2023-04-25T19:49:44.057234 | 2021-05-27T09:41:46 | 2021-05-27T09:41:46 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 942 | puml | @startuml
left to right direction
skinparam classAttributeIconSize 0
hide enum methods
hide class methods
class "Swim club" as swimclub {
}
class "Membership Fee" as memberfee {
startDate
endDate
Price
isPaid
}
class "Member" as member {
MemberIDNumber
Name
Address
Birthday
isActive
}
class "Coach" as coach {
}
class "Result" as result {
Date
Time
}
enum "Competition.ResultType" as resulttype {
Competition
Training
}
enum "Group.Discipline" as discipline {
"Freestyle (front crawl)"
"Back crawl"
"Butterfly"
"Breaststroke"
}
class "Team" as team {
Name
}
swimclub "1" --- "0..*" memberfee
swimclub "1" --d- "0..*" member
swimclub "1" --d- "0..*" coach
coach "0..*" --- "0..*" team
member "0..*" --- "0..*" team
member "1" --l- "0..*" memberfee
result "0..*" --- "1" resulttype
member "1" --d- "0..*" result
result "0..*" --d- "1" discipline
@enduml | false | true | false | false | class |
6b1c84773e430ad4e3ccd1234f32ce43943d23c6 | 3b453de9d7e99aabdc903bbd0d63435bdfd36b06 | /Actividades/A2.2.Visitor/diagrama.puml | 378b28bddcf6fe6c27f78985995b806c92a94943 | [] | no_license | esmemag96/A01023086_AyMSS18 | e3a7e2504947902a8501fa27a8910b1c472c8a2c | 40e1419ffaa8303dc9cba635253e68e8dab68c56 | refs/heads/master | 2021-05-12T14:38:03.239214 | 2018-05-12T19:23:14 | 2018-05-12T19:23:14 | 116,961,721 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 926 | puml | @startuml Diagram
class Text{
+void accept(IVisitor* visitor)
}
class HyperLink{
+string:URL
+void accept(IVisitor* visitor)
}
class Bold{
+void accept(IVisitor* visitor)
}
class DocPart{
+string:text
+ virtual void accept(IVisitor*)
}
class Document{
+list<DocPart> docpart
}
class IVisitor{
+string out;
+virtual void visit (HyperLink)
+virtual void visit (Text)
+virtual void visit (Bold)
}
class HTMLVisitor{
+void visit(HyperLink h)
+void visit(Text t)
+void visit(Bold b)
}
class TextVisitor{
+void visit(HyperLink h)
+void visit(Text t)
+void visit(Bold b)
}
class Latexvisitor{
+void visit(HyperLink h)
+void visit(Text t)
+void visit(Bold b)
}
IVisitor <|-- HTMLVisitor
IVisitor <|-- Latexvisitor
IVisitor <|-- TextVisitor
Document --> DocPart
DocPart <|-- Text
DocPart <|-- HyperLink
DocPart <|-- Bold
Document <-> IVisitor
| false | true | false | false | class |
d2824e260ef40c870bfda2cc73dc870c6dde8e18 | 567f67d85c0fd2269533a084f9ae772794b3be5b | /Lab1/src/DiceGame.puml | 38a704c9a62c723e76304948c6a86427388b609a | [] | no_license | Con-OBrien/Object-Orientated-Analysis-And-Design | 07f0b090ff66cca7b39e5687b6c941f0a6ee0296 | 73123f6787470677c30ee036c95eaff138e6b464 | refs/heads/master | 2020-03-28T21:14:26.502666 | 2018-10-15T14:27:57 | 2018-10-15T14:27:57 | 149,140,794 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 135 | puml | @startuml
Class Die {
- faceValue: int
+roll()
+ getFaceValue()
}
Class DiceGame {
}
DiceGame --> "2..2" Die : "requires"
@enduml | false | true | false | false | sequence |
5926d4f49657f01a3b3c8809bbba421cbbf837c8 | 7f421449c7a43ca9e6691826d4274cdabaef493a | /msg.plantuml | e6a90061c1de27e3ea2dca685f1cbc26e63d961b | [
"MIT"
] | permissive | Rutgers-SE/tic-tac-toe | 174c7c26a61911a36e729ae45b75d493b9b80070 | 2bcf159fc05a13cce9b164e6b094d7ed762c06d7 | refs/heads/master | 2021-01-19T13:41:51.860410 | 2017-05-08T22:20:03 | 2017-05-08T22:20:03 | 88,101,105 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 503 | plantuml | @startuml
Player1 -> GameServer: "join"
Player1 <-- GameServer: "ok m0"
Player2 -> GameServer: "join"
Player2 <-- GameServer: "ok m0 b1-0-0-0-0-0-0-0-0 t0"
Player1 <-- GameServer: "ok m0 b1-0-0-0-0-0-0-0-0 t1"
Player1 -> GameServer: "move m0 p0-0"
Player1 <-- GameServer: "ok b1-0-0-0-0-0-0-0-0 t0"
Player2 <-- GameServer: "ok b1-0-0-0-0-0-0-0-0 t1"
Player2 -> GameServer: "move m0 p1-1"
Player2 <-- GameServer: "ok b1-0-0-0-2-0-0-0-0 t0"
Player1 <-- GameServer: "ok b1-0-0-0-2-0-0-0-0 t1"
@enduml
| false | true | false | false | sequence |
5c6233b930ad7b9179652b7e672c9900bc0bf2c0 | aab4138e27583d3248417913f4672862d144677f | /sequence_diagrams/02_Participants/01_defining_participants.plantuml | 8acc55c73f2be0ea6e26a85c9784254b282c2456 | [] | no_license | fishey2/plantuml_examples | 6b12c5706bc4b4068d969bd721c60416d5a4ae3b | d56a255616fdaf4d8ddfdf2dc58d20e1c923b658 | refs/heads/master | 2021-01-04T03:24:31.321397 | 2020-02-18T21:51:55 | 2020-02-18T21:51:55 | 240,356,644 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 805 | plantuml | @startuml
' Includes the sequence_diagram_stylesheet from a gist
!include https://gist.githubusercontent.com/fishey2/7178a88643a8850908c799be1ec68fd6/raw/fc90505df1321e5c5022eab84d1e0b5044194d1c/example_sequence_stylesheet.iuml
header Participants
' You can define participants with friendly names
' when you do this it makes it long to refer to it
' as you can see in the example below
participant "Friendly Name 1"
' Instead we can define a friendly name and an alias
' This means we can refer to the participant in this script as second
' yet in the diagram it will appear as 'Friendly Name 2'
participant "Friendly Name 2" as second
' This creates an arrow going from 'Friendly Name 1' and 'Friendly Name 2'
"Friendly Name 1" -> second
@enduml | false | true | false | false | sequence |
9cb13d98afd1cd86300569ffae5a8b7d8af37010 | de4eb4b6da85b8c473116ad15ce1422aa2ffd1f0 | /doc/Multiplayer/uml/weapon-firing.sequence.puml | a46d01397412b5f2fb1df597ca09659b782c2a65 | [
"MIT"
] | permissive | ProfPorkins/GameTech | bed4ce9905ebb73d04521642915b3770ec90540c | fab91e9ddc50ded98b6a40dde800ffcc368494c0 | refs/heads/trunk | 2023-04-17T08:17:11.088161 | 2023-04-11T19:37:21 | 2023-04-11T19:37:21 | 60,926,266 | 20 | 6 | MIT | 2021-05-30T16:34:06 | 2016-06-11T20:21:58 | JavaScript | UTF-8 | PlantUML | false | false | 971 | puml | @startuml Weapon Firing - Sequence
participant "Client A" as ClientA
participant Server
participant "Client B" as ClientB
note over ClientA: p1 (0, 0)\np2 (0, 4)
/ note over Server: p1 (0, 0)\np2 (0, 4)
/ note over ClientB: p1 (0, 0)\np2 (0, 4)
ClientA -> Server: input: fire-weapon
note over Server: Update Game Model\n Accept fire-weapon
Server -> ClientA: update: game-state\n(projectile info)
Server -> ClientB: update: game-state\n(projectile info)
note over ClientA: Start local projectile tracking\n Animate weapon projectile
/ note over ClientB: Start local projectile tracking\n Animate weapon projectile
note over Server: Update Game Model\n Projectile hits p2
Server -> ClientA: update: game-state\n(p2 damage info)
Server -> ClientB: update: game-state\n(p2 damage info)
note over ClientA: ** **Animate p2 Explosion\nRemove projectile from tracking
/ note over ClientB: ** **Animate p2 Explosion\nRemove projectile from tracking
@enduml
| false | true | false | false | sequence |
2c3b1e77ae7445544052b0fe781c7c5d863b464c | 9ee1c310361871f35f60d289c1310ac247baf747 | /helper/src/main/resources/uml/GamePlayTicketReady.puml | ddd8540e73c26879035e0aac590922bb573b6ad5 | [] | no_license | leezhaowei/helper | ab4077f3e72a2d846fa0683cef318bb01e51b91f | 8cbdeb29768e4cb9532cdbfbb437ca59fc0aa489 | refs/heads/master | 2021-01-21T04:46:58.557960 | 2017-12-28T13:58:10 | 2017-12-28T13:58:10 | 36,051,624 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,782 | puml | @startuml
title Game Play - Ticket Ready Game Play
skinparam sequence {
ArrowColor black
MessageAlign center
}
skinparam note{
FontColor deepskyblue
BackgroundColor white
BorderColor black
}
actor Browser
participant "Game lobby"
participant "SKB PF"
participant "SKB eInstant"
participant "Game Layer"
Browser -> "Game lobby" : Launch game
activate "Game lobby"
"Game lobby" -> "SKB PF" : initialize
deactivate "Game lobby"
"SKB eInstant" --> "SKB PF" : <color:deepskyblue> send loading complete
"SKB PF" -> "SKB eInstant" : System.Init: return client config
"SKB PF" -> "SKB eInstant" : Game.Init: return resp
note left
Currency, Game Logic,
Paytable Response
end note
activate "SKB eInstant"
"SKB eInstant" --> "SKB PF" : <color: deepskyblue> Game.InitDone
note right
Error when phase 1
&& normal
end note
"SKB eInstant" -> "Game Layer" : game init
deactivate "SKB eInstant"
activate "Game Layer"
"SKB PF" -> "SKB eInstant" : <i>onBeforeShowStage</i>
"SKB eInstant" --> "SKB PF" : <color:deepskyblue> call next state
"SKB PF" -> "SKB eInstant" : <i>onStartGameInitial</i>
note left of "SKB eInstant"
Nothing to do when at
this state
end note
"Game Layer" --> "SKB eInstant" : <color:deepskyblue>jLottery gamePreInited
deactivate "Game Layer"
activate "SKB eInstant"
"SKB eInstant" -> "Game Layer" : game startAssetLoading
deactivate "SKB eInstant"
activate "Game Layer"
"Game Layer" --> "SKB eInstant" : <color:deepskyblue> jLottery assetsLoadedAndGameReady
deactivate "Game Layer"
activate "SKB eInstant"
alt wagerType = "BUY" || normal play
"SKB eInstant" --> "SKB PF" : <color:deepskyblue> call next state
end alt
deactivate "SKB eInstant"
"SKB PF" -> "SKB eInstant" : <i>onBeforeRequest</i>
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>call next state
"SKB PF" -> "SKB eInstant" : <i>onMakeRequest</i>
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>Game.PlayData
note right
Send buy ticket
request
end note
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>call next state
alt request failed
"SKB PF" -> "SKB eInstant" :<i>onAbortNextStage</i>
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>call next state
"SKB PF" -> "SKB eInstant" :<i>onResetNextStage</i>
note right
Handle two cases:
1. Exception when BUY then
reset game state to ready to buy
2. Exception when REVEAL then
close game
end note
alt 1st play call failed
"SKB eInstant" -> "Game Layer" : reset game
note right
Game screen will
show buy mode
end note
else 2nd play call failed
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>call game close
end alt
end alt
"SKB PF" -> "SKB eInstant" : <i>onResolveStage</i>
note left
When TRY mode,
OutcomeDetail.Stage ===
NextStage === "Wager"
end note
"SKB eInstant" -> "Game Layer" : game startUserInteraction
activate "Game Layer"
"Game Layer" -> "SKB eInstant" : <color:deepskyblue>jLottery ticketResultHasBeenSeen
deactivate "Game Layer"
activate "SKB eInstant"
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>call next state
"SKB eInstant" -> "Game Layer" : game enterResultScreenState
deactivate "SKB eInstant"
activate "Game Layer"
"SKB PF" -> "SKB eInstant" :<i>onExitStage</i>
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>call next state
"SKB PF" -> "SKB eInstant" :<i>onEnterNextStage</i>
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>call next state
"Game Layer" --> "SKB eInstant" : <color:deepskyblue>jLottery playerWantsToExit
deactivate "Game Layer"
activate "SKB eInstant"
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>Game Close
deactivate "SKB eInstant"
"SKB PF" -> "SKB eInstant" :<i>onEndGame</i>
"SKB eInstant" --> "SKB PF" : <color:deepskyblue>call next state
@enduml | false | true | false | false | sequence |
505cad62cd4ddc3a0e4c5bfd13dbaad9ff33033e | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-codelist-avskrivningsmaate.puml | 0f9850078480035caea6a9f5b6a2cf3d766fbc8a | [] | 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 | 298 | puml | @startuml
skinparam nodesep 100
hide circle
class Kodelister.Avskrivningsmaate <<codelist>> {
+Besvart med brev = BU
+Besvart med e-post = BE
+Besvart på telefon = TLF
+Tatt til etterretning = TE
+Tatt til orientering = TO
+Besvart med notat = BN
+Saken ble avsluttet = SA
}
@enduml
| false | true | true | false | class |
2ab356450cd8d81cf96d8394bb533879c9d51b13 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/QuoteRequestUpdate.puml | fe4f0f3af379534f7b25c8ea0a9bc9340cb6b237 | [] | 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 | 379 | 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 QuoteRequestUpdate [[QuoteRequestUpdate.svg]] {
version: Long
actions: [[QuoteRequestUpdateAction.svg List<QuoteRequestUpdateAction>]]
}
@enduml
| false | true | false | false | class |
1508f4386f848d8153351c0126582d9d5b33141f | b7d2ba71058efa46eff4ed885324819fb3f99266 | /src/doc/Security/Login_SD.puml | 2de48fb754495439d1c753d4542f44aee75b5291 | [] | no_license | Almadanmp/backend4 | 3aaa5cbe453041917a510ceee83bf318499a9823 | 07ab3c1af9c7de6ff35cf23bf44b0e664db82f46 | refs/heads/master | 2022-11-25T10:30:27.184246 | 2019-06-30T19:26:12 | 2019-06-30T19:26:12 | 194,547,877 | 0 | 0 | null | 2022-11-16T11:54:00 | 2019-06-30T18:24:24 | Java | UTF-8 | PlantUML | false | false | 1,980 | puml | @startuml
skinparam titleBorderRoundCorner 10
skinparam titleBorderThickness 3
skinparam titleBorderColor indianred
skinparam titleBackgroundColor snow
skinparam FontName quicksand
skinparam actor {
BorderColor indianred
backgroundColor Snow
}
skinparam sequence {
LifeLineBackgroundColor indianred
ParticipantBackgroundColor snow
}
skinparam roundcorner 10
skinparam component {
arrowThickness 1
ArrowFontName Verdana
ArrowColor indianred
ArrowFontColor darkslategrey
}
title - AUTHENTICATION - \n Success Case
autonumber
actor "Client"
"Web API" -->> "Client": Request Username and Password
activate "Web API"
"Client" ->> "Web API": Insert Username and Password
participant "Redux Store"
"Web API" ->> ":SpringResolver": POST ".../login/" \n({"username":"admin", "password":"admin123"})
activate ":SpringResolver"
":SpringResolver" ->> "AUTH0": get Token \n({"username":"admin", "password":"admin123"})
deactivate ":SpringResolver"
activate "AUTH0"
"AUTH0" ->> "AUTH0": Validate Credentials \n({"username":"admin", "password":"admin123"})
"AUTH0" -->> "Web API": return new ResponseEntity<>(HttpStatus.OK), Header: Bearer Token
deactivate "AUTH0"
activate "Redux Store"
"Web API" -> "Redux Store": setItem(loginToken)
"Web API" -> "Redux Store": setItem(userName)
deactivate "Redux Store"
create ":LoginWebController"
"Web API" ->>":LoginWebController": getUserRole(bearer token)
activate ":LoginWebController"
create ":UserService"
":LoginWebController" ->> ":UserService": getUserRole(bearer token)
activate ":UserService"
":UserService" -->> ":LoginWebController": return user role
deactivate ":UserService"
":LoginWebController" -->> "Web API": return new ResponseEntity<>(String, HttpStatus.OK)
deactivate ":LoginWebController"
activate "Redux Store"
"Web API" -> "Redux Store": setItem(userRole)
deactivate "Redux Store"
"Web API" ->> "Web API": Redirect to About page
"Web API" --> "Client": Show Menu Options
deactivate "Web API"
@enduml | false | true | false | false | usecase |
42385c5ab01612091ebcb807240052fc3f4c7b27 | 462b9598f08a48ab835f0b189d4d344560965227 | /src/main/java/csheets/worklog/n1060708/sprint2/lang02_01_analysis.puml | 1022b52cec4b4c2824657e0b4fb8cc97c0a25969 | [] | no_license | VitorMascarenhas/LAPR4-2016 | 19f5593b98b81763f77021fb04278ed231337028 | e53a5a46c0e09fbc155fb91f2010d50532de85d2 | refs/heads/master | 2020-03-19T10:31:05.321699 | 2018-06-06T19:49:19 | 2018-06-06T19:49:19 | 136,027,190 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 301 | puml | @startuml doc-files/lang02_01_analysis.png
interface Expression<T> {
}
class TemporalVariable {
}
class Reference {
}
class CellReference {
}
Expression <|-- Reference
Expression <|-- TemporalVariable
Reference <|-- CellReference
@enduml | false | true | false | false | class |
64763ef729ed07a944dfadedf5933e1c20df7dc5 | eb83d9f3bd50c687c48810ac0654ec0e2315a0ff | /sysl2/sysl/tests/passthrough_b-golden.puml | a55df3489cae4404f5a48508f651f25e7d46505e | [
"Apache-2.0"
] | permissive | anz-bank/sysl-legacy | 1505d794719011932ec298381bb5334b84d0d98a | 5831389caa377c607812cb73176b2ae7b686cf3c | refs/heads/master | 2021-06-19T08:04:53.160044 | 2019-11-27T00:00:46 | 2019-11-27T00:00:46 | 215,662,592 | 2 | 1 | Apache-2.0 | 2021-06-02T00:31:47 | 2019-10-16T23:29:10 | Go | UTF-8 | PlantUML | false | false | 497 | puml | ''''''''''''''''''''''''''''''''''''''''''
'' ''
'' AUTOGENERATED CODE -- DO NOT EDIT! ''
'' ''
''''''''''''''''''''''''''''''''''''''''''
@startuml
hide stereotype
scale max 16384 height
skinparam component {
BackgroundColor FloralWhite
BorderColor Black
ArrowColor Crimson
ArrowColor<<indirect>> silver
}
[System_a] as _0 <<highlight>>
[System_b] as _1
_0 --> _1
[System_c] as _2
_1 --> _2 <<indirect>>
@enduml | false | true | false | false | uml-unknown |
16115b13e644356c9e49c352abcfe4402fc325a1 | 319785f57f68f9bea70cba9b034328dd4230b33b | /ClassDiagram.puml | a291f852cd490bf0e713995d96540eb1bef3a3d3 | [] | no_license | freedev82/TestRepo | 74e1f356f5d326613954dad36dd238a1bccebd7c | 766eedeabdee8bb6228c9c37c99c7f9011ef657a | refs/heads/master | 2022-12-25T15:43:31.523223 | 2020-09-28T10:16:56 | 2020-09-28T10:16:56 | 299,269,129 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 500 | puml | @startuml
title Parser Class Diagram
namespace connector {
class AbstractConnector << (S,Aquamarine) >> {
+ IsConnect bool
+ Init()
}
interface Connector {
+ Init()
+ Connect()
+ Close()
}
class ModbusTCPConnector << (S,Aquamarine) >> {
- client *modbus.TCPClientHandler
+ Connect()
+ Close()
+ Read()
}
}
"connector.AbstractConnector" *-- "extends""connector.ModbusTCPConnector"
@enduml
| false | true | false | false | class |
ea355b3c1496e18d3fa805f499820f6125e69703 | 5faa54d3d9cb76f882b65ccdc8f7f0c5385c0712 | /empresa-emplados-clientes/modelo-clases.plantuml | feab7d7b6ab087a82a4968b844dd0fea0e1c024f | [] | no_license | xiomarasantos/MisionTIC2022-Ciclo2-Nivelacion2y3 | afc0cf9887360b47e21ac94a952aad4f5ddebf73 | d3ae6d710f9b13712c30efbb327878afc138c7f6 | refs/heads/main | 2023-06-26T23:31:32.971825 | 2021-07-24T16:23:07 | 2021-07-24T16:23:07 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 361 | plantuml | @startuml
class Empresa {
- nit
- nombre
}
abstract class Persona{
- nombre
- edad
+ mostrarDatos()
}
class Empleado extends Persona {
- sueldoBruto
}
class Cliente extends Persona {
- telefonoContacto
}
class Directivo extends Empleado {
- categoria
}
Empresa *-left- Empleado
Empresa o-right- Cliente
Directivo "1" -- "1..10" Empleado
@enduml | false | true | false | false | class |
835cc044e6c4b18be8e002ea667a005a236b975b | 65c79e69d7c97dc7eb1532e77ae1bd2ece83fbe6 | /notes/Design/UML/StaticProxy.puml | 2e32d83e4d172fe4dd152910442ae51f7689e2d8 | [] | no_license | zhangjukai/Go-Gad | 8618bf0a377d34f784ad7c201d08431861f48c52 | d463e3faccc580d77b67886a11288c78622ddbae | refs/heads/master | 2023-05-31T06:37:30.215749 | 2023-05-12T03:28:19 | 2023-05-12T03:28:19 | 185,611,030 | 0 | 0 | null | 2022-12-15T23:30:09 | 2019-05-08T13:25:51 | Java | UTF-8 | PlantUML | false | false | 294 | puml | @startuml
interface Target {
+ doSomeThing():String
}
class TargetImpl {
+ doSomeThing():String
}
class ProxyObject {
- target : Target
+ doSomeThing():String
}
class client
TargetImpl ..|> Target
ProxyObject ..|> Target
ProxyObject o-- TargetImpl
ProxyObject<.. client
@enduml | false | true | false | false | class |
2e47b83ed6e357a23c3efb628ffa9159fbfbdd6f | 66dbbb89f4126eaca58d7c4670f1a026dd37f6a5 | /Entidade.puml | 379cf1a75900c4b9fe1ef9ba56447fb6d7401b9f | [] | no_license | Eudes-batista/sistema-jsf | fe40bd48d28bd26c63942edf171f682d48a90fc7 | 5501332b1167e654da8d5d1c40da64264ff967c0 | refs/heads/master | 2022-12-19T06:10:13.693414 | 2020-09-29T12:05:50 | 2020-09-29T12:05:50 | 170,207,682 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 56,922 | puml | @startuml
abstract class com.zoomtecnologia.zox.bean.GenericoBean
abstract class com.zoomtecnologia.zox.filtros.Filtro
abstract class com.zoomtecnologia.zox.modelo.ModeloGenerico
annotation com.zoomtecnologia.zox.modelo.cadastros.Column
annotation com.zoomtecnologia.zox.modelo.cadastros.EmbeddedId
annotation com.zoomtecnologia.zox.modelo.cadastros.Entity
annotation com.zoomtecnologia.zox.modelo.cadastros.Length
annotation com.zoomtecnologia.zox.modelo.cadastros.Table
annotation com.zoomtecnologia.zox.modelo.estoque.Column
annotation com.zoomtecnologia.zox.modelo.estoque.Entity
annotation com.zoomtecnologia.zox.modelo.estoque.Id
annotation com.zoomtecnologia.zox.modelo.estoque.JoinColumn
annotation com.zoomtecnologia.zox.modelo.estoque.JoinColumns
annotation com.zoomtecnologia.zox.modelo.estoque.ManyToOne
annotation com.zoomtecnologia.zox.modelo.estoque.NamedQueries
annotation com.zoomtecnologia.zox.modelo.estoque.NamedQuery
annotation com.zoomtecnologia.zox.modelo.estoque.Table
annotation com.zoomtecnologia.zox.modelo.estoque.Temporal
annotation java.lang.Override
annotation java.lang.SuppressWarnings
annotation javax.faces.bean.ManagedBean
annotation javax.persistence.Column
annotation javax.persistence.Embeddable
annotation javax.persistence.EmbeddedId
annotation javax.persistence.Entity
annotation javax.persistence.Id
annotation javax.persistence.JoinColumn
annotation javax.persistence.JoinColumns
annotation javax.persistence.Lob
annotation javax.persistence.ManyToOne
annotation javax.persistence.NamedQueries
annotation javax.persistence.NamedQuery
annotation javax.persistence.OneToMany
annotation javax.persistence.OneToOne
annotation javax.persistence.PersistenceContext
annotation javax.persistence.Table
annotation javax.persistence.Temporal
annotation javax.validation.constraints.Min
annotation javax.validation.constraints.NotNull
annotation lombok.Data
annotation lombok.EqualsAndHashCode
annotation lombok.Getter
annotation lombok.Setter
annotation lombok.ToString
annotation org.hibernate.annotations.ForeignKey
annotation org.hibernate.validator.constraints.Length
annotation org.springframework.beans.factory.annotation.Autowired
annotation org.springframework.context.annotation.Scope
annotation org.springframework.stereotype.Repository
annotation org.springframework.stereotype.Service
annotation org.springframework.transaction.annotation.Transactional
class com.zoomtecnologia.zox.bean.ContatoBean
class com.zoomtecnologia.zox.bean.EstadoBean
class com.zoomtecnologia.zox.bean.GrupoBean
class com.zoomtecnologia.zox.bean.NcmBean
class com.zoomtecnologia.zox.bean.PaisBean
class com.zoomtecnologia.zox.bean.PessoaBean
class com.zoomtecnologia.zox.bean.UnidadeBean
class com.zoomtecnologia.zox.escopo.ViewScope
class com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer
class com.zoomtecnologia.zox.modelo.cadastros.Cfop
class com.zoomtecnologia.zox.modelo.cadastros.Cidade
class com.zoomtecnologia.zox.modelo.cadastros.CidadePK
class com.zoomtecnologia.zox.modelo.cadastros.Cnae
class com.zoomtecnologia.zox.modelo.cadastros.Contato
class com.zoomtecnologia.zox.modelo.cadastros.ContatoPK
class com.zoomtecnologia.zox.modelo.cadastros.Documento
class com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK
class com.zoomtecnologia.zox.modelo.cadastros.Empresa
class com.zoomtecnologia.zox.modelo.cadastros.Endereco
class com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK
class com.zoomtecnologia.zox.modelo.cadastros.Estado
class com.zoomtecnologia.zox.modelo.cadastros.EstadoPK
class com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario
class com.zoomtecnologia.zox.modelo.cadastros.Ibpt
class com.zoomtecnologia.zox.modelo.cadastros.Pais
class com.zoomtecnologia.zox.modelo.cadastros.Pessoa
class com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar
class com.zoomtecnologia.zox.modelo.cadastros.TipoDeMovimento
class com.zoomtecnologia.zox.modelo.estoque.Cest
class com.zoomtecnologia.zox.modelo.estoque.CestPK
class com.zoomtecnologia.zox.modelo.estoque.CestaTributacao
class com.zoomtecnologia.zox.modelo.estoque.Grupo
class com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais
class com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais
class com.zoomtecnologia.zox.modelo.estoque.LocaEstoque
class com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK
class com.zoomtecnologia.zox.modelo.estoque.Ncm
class com.zoomtecnologia.zox.modelo.estoque.Produto
class com.zoomtecnologia.zox.modelo.estoque.SubGrupo
class com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK
class com.zoomtecnologia.zox.modelo.estoque.Tributacao
class com.zoomtecnologia.zox.modelo.estoque.TributacaoPK
class com.zoomtecnologia.zox.modelo.estoque.Unidade
class com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl
class com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl
class com.zoomtecnologia.zox.servico.impl.GenericServiceImpl
class com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl
class com.zoomtecnologia.zox.servico.impl.NcmServiceImpl
class com.zoomtecnologia.zox.servico.impl.PaisServicoImpl
class com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl
class com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl
class java.util.ArrayList
class java.util.Arrays
class java.util.Date
class java.util.HashMap
class java.util.List
class java.util.Map
class javax.faces.component.UIViewRoot
class javax.faces.context.FacesContext
class javax.faces.event.AbortProcessingException
class javax.faces.event.PostConstructViewMapEvent
class javax.faces.event.PreDestroyViewMapEvent
class javax.faces.event.SystemEvent
class javax.persistence.CascadeType
class javax.persistence.EntityManager
class javax.persistence.TemporalType
class org.apache.commons.lang3.StringUtils
class org.hibernate.Criteria
class org.hibernate.Session
class org.hibernate.criterion.Criterion
class org.hibernate.criterion.Disjunction
class org.hibernate.criterion.LogicalExpression
class org.hibernate.criterion.MatchMode
class org.hibernate.criterion.Order
class org.hibernate.criterion.Projections
class org.hibernate.criterion.Restrictions
class org.hibernate.sql.JoinType
class org.omnifaces.util.Messages
class org.primefaces.model.LazyDataModel
class org.primefaces.model.SortOrder
class org.springframework.beans.factory.ObjectFactory
class org.springframework.web.context.request.FacesRequestAttributes
enum com.zoomtecnologia.zox.modelo.cadastros.TipoContato
interface com.zoomtecnologia.zox.modelo.EntidadeBase
interface com.zoomtecnologia.zox.servico.ContatoService
interface com.zoomtecnologia.zox.servico.EntidadeService
interface com.zoomtecnologia.zox.servico.EstadoService
interface com.zoomtecnologia.zox.servico.GrupoService
interface com.zoomtecnologia.zox.servico.NcmService
interface com.zoomtecnologia.zox.servico.PadraoService
interface com.zoomtecnologia.zox.servico.PaisService
interface com.zoomtecnologia.zox.servico.PessoaService
interface com.zoomtecnologia.zox.servico.UnidadeServico
interface java.io.Serializable
interface javax.faces.event.ViewMapListener
interface org.springframework.beans.factory.config.Scope
com.zoomtecnologia.zox.bean.GenericoBean ..> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.bean.GenericoBean ..> com.zoomtecnologia.zox.modelo.ModeloGenerico
com.zoomtecnologia.zox.bean.GenericoBean ..> java.lang.Override
com.zoomtecnologia.zox.bean.GenericoBean ..> lombok.Getter
com.zoomtecnologia.zox.bean.GenericoBean ..> lombok.Setter
com.zoomtecnologia.zox.bean.GenericoBean ..> org.omnifaces.util.Messages
com.zoomtecnologia.zox.bean.GenericoBean ..> org.primefaces.model.LazyDataModel
com.zoomtecnologia.zox.bean.GenericoBean ..> com.zoomtecnologia.zox.servico.EntidadeService
com.zoomtecnologia.zox.bean.GenericoBean --|> java.io.Serializable
com.zoomtecnologia.zox.filtros.Filtro ..> lombok.Getter
com.zoomtecnologia.zox.filtros.Filtro ..> lombok.Setter
com.zoomtecnologia.zox.filtros.Filtro --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.ModeloGenerico ..> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.ModeloGenerico ..> java.lang.Override
com.zoomtecnologia.zox.modelo.ModeloGenerico ..> java.util.List
com.zoomtecnologia.zox.modelo.ModeloGenerico ..> java.util.Map
com.zoomtecnologia.zox.modelo.ModeloGenerico --|> org.primefaces.model.LazyDataModel
com.zoomtecnologia.zox.modelo.ModeloGenerico ..> org.primefaces.model.SortOrder
com.zoomtecnologia.zox.modelo.ModeloGenerico ..> com.zoomtecnologia.zox.servico.EntidadeService
com.zoomtecnologia.zox.bean.ContatoBean --|> com.zoomtecnologia.zox.bean.GenericoBean
com.zoomtecnologia.zox.bean.ContatoBean ..> java.lang.Override
com.zoomtecnologia.zox.bean.ContatoBean ..> javax.faces.bean.ManagedBean
com.zoomtecnologia.zox.bean.ContatoBean ..> lombok.Getter
com.zoomtecnologia.zox.bean.ContatoBean ..> lombok.Setter
com.zoomtecnologia.zox.bean.ContatoBean ..> org.springframework.beans.factory.annotation.Autowired
com.zoomtecnologia.zox.bean.ContatoBean ..> org.springframework.context.annotation.Scope
com.zoomtecnologia.zox.bean.ContatoBean ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.bean.ContatoBean ..> com.zoomtecnologia.zox.modelo.cadastros.Contato
com.zoomtecnologia.zox.bean.ContatoBean ..> com.zoomtecnologia.zox.modelo.cadastros.ContatoPK
com.zoomtecnologia.zox.bean.ContatoBean ..> java.util.Arrays
com.zoomtecnologia.zox.bean.ContatoBean ..> java.util.List
com.zoomtecnologia.zox.bean.ContatoBean ..> com.zoomtecnologia.zox.modelo.cadastros.TipoContato
com.zoomtecnologia.zox.bean.ContatoBean ..> com.zoomtecnologia.zox.servico.ContatoService
com.zoomtecnologia.zox.bean.EstadoBean --|> com.zoomtecnologia.zox.bean.GenericoBean
com.zoomtecnologia.zox.bean.EstadoBean ..> java.lang.Override
com.zoomtecnologia.zox.bean.EstadoBean ..> javax.faces.bean.ManagedBean
com.zoomtecnologia.zox.bean.EstadoBean ..> lombok.Getter
com.zoomtecnologia.zox.bean.EstadoBean ..> lombok.Setter
com.zoomtecnologia.zox.bean.EstadoBean ..> org.springframework.beans.factory.annotation.Autowired
com.zoomtecnologia.zox.bean.EstadoBean ..> org.springframework.context.annotation.Scope
com.zoomtecnologia.zox.bean.EstadoBean ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.bean.EstadoBean ..> com.zoomtecnologia.zox.modelo.cadastros.Estado
com.zoomtecnologia.zox.bean.EstadoBean ..> com.zoomtecnologia.zox.modelo.cadastros.EstadoPK
com.zoomtecnologia.zox.bean.EstadoBean ..> com.zoomtecnologia.zox.modelo.cadastros.Pais
com.zoomtecnologia.zox.bean.EstadoBean ..> java.util.List
com.zoomtecnologia.zox.bean.EstadoBean ..> com.zoomtecnologia.zox.servico.EstadoService
com.zoomtecnologia.zox.bean.EstadoBean ..> com.zoomtecnologia.zox.servico.PaisService
com.zoomtecnologia.zox.bean.EstadoBean --|> java.io.Serializable
com.zoomtecnologia.zox.bean.GrupoBean --|> com.zoomtecnologia.zox.bean.GenericoBean
com.zoomtecnologia.zox.bean.GrupoBean ..> java.lang.Override
com.zoomtecnologia.zox.bean.GrupoBean ..> javax.faces.bean.ManagedBean
com.zoomtecnologia.zox.bean.GrupoBean ..> org.springframework.beans.factory.annotation.Autowired
com.zoomtecnologia.zox.bean.GrupoBean ..> org.springframework.context.annotation.Scope
com.zoomtecnologia.zox.bean.GrupoBean ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.bean.GrupoBean ..> com.zoomtecnologia.zox.modelo.estoque.Grupo
com.zoomtecnologia.zox.bean.GrupoBean ..> com.zoomtecnologia.zox.servico.GrupoService
com.zoomtecnologia.zox.bean.NcmBean --|> com.zoomtecnologia.zox.bean.GenericoBean
com.zoomtecnologia.zox.bean.NcmBean ..> java.lang.Override
com.zoomtecnologia.zox.bean.NcmBean ..> javax.faces.bean.ManagedBean
com.zoomtecnologia.zox.bean.NcmBean ..> org.springframework.beans.factory.annotation.Autowired
com.zoomtecnologia.zox.bean.NcmBean ..> org.springframework.context.annotation.Scope
com.zoomtecnologia.zox.bean.NcmBean ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.bean.NcmBean ..> com.zoomtecnologia.zox.modelo.estoque.Ncm
com.zoomtecnologia.zox.bean.NcmBean ..> com.zoomtecnologia.zox.servico.NcmService
com.zoomtecnologia.zox.bean.NcmBean --|> java.io.Serializable
com.zoomtecnologia.zox.bean.PaisBean --|> com.zoomtecnologia.zox.bean.GenericoBean
com.zoomtecnologia.zox.bean.PaisBean ..> java.lang.Override
com.zoomtecnologia.zox.bean.PaisBean ..> javax.faces.bean.ManagedBean
com.zoomtecnologia.zox.bean.PaisBean ..> org.springframework.beans.factory.annotation.Autowired
com.zoomtecnologia.zox.bean.PaisBean ..> org.springframework.context.annotation.Scope
com.zoomtecnologia.zox.bean.PaisBean ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.bean.PaisBean ..> com.zoomtecnologia.zox.modelo.cadastros.Pais
com.zoomtecnologia.zox.bean.PaisBean ..> com.zoomtecnologia.zox.servico.PaisService
com.zoomtecnologia.zox.bean.PessoaBean --|> com.zoomtecnologia.zox.bean.GenericoBean
com.zoomtecnologia.zox.bean.PessoaBean ..> java.lang.Override
com.zoomtecnologia.zox.bean.PessoaBean ..> javax.faces.bean.ManagedBean
com.zoomtecnologia.zox.bean.PessoaBean ..> org.springframework.beans.factory.annotation.Autowired
com.zoomtecnologia.zox.bean.PessoaBean ..> org.springframework.context.annotation.Scope
com.zoomtecnologia.zox.bean.PessoaBean ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.bean.PessoaBean ..> com.zoomtecnologia.zox.modelo.cadastros.Pessoa
com.zoomtecnologia.zox.bean.PessoaBean ..> com.zoomtecnologia.zox.servico.PessoaService
com.zoomtecnologia.zox.bean.UnidadeBean --|> com.zoomtecnologia.zox.bean.GenericoBean
com.zoomtecnologia.zox.bean.UnidadeBean ..> java.lang.Override
com.zoomtecnologia.zox.bean.UnidadeBean ..> javax.faces.bean.ManagedBean
com.zoomtecnologia.zox.bean.UnidadeBean ..> org.springframework.beans.factory.annotation.Autowired
com.zoomtecnologia.zox.bean.UnidadeBean ..> org.springframework.context.annotation.Scope
com.zoomtecnologia.zox.bean.UnidadeBean ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.bean.UnidadeBean ..> com.zoomtecnologia.zox.modelo.estoque.Unidade
com.zoomtecnologia.zox.bean.UnidadeBean ..> com.zoomtecnologia.zox.servico.UnidadeServico
com.zoomtecnologia.zox.escopo.ViewScope ..> java.util.Map
com.zoomtecnologia.zox.escopo.ViewScope ..> javax.faces.context.FacesContext
com.zoomtecnologia.zox.escopo.ViewScope ..> org.springframework.beans.factory.ObjectFactory
com.zoomtecnologia.zox.escopo.ViewScope ..> org.springframework.web.context.request.FacesRequestAttributes
com.zoomtecnologia.zox.escopo.ViewScope --|> org.springframework.beans.factory.config.Scope
com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer ..> java.util.HashMap
com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer ..> java.util.Map
com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer ..> javax.faces.component.UIViewRoot
com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer ..> javax.faces.event.AbortProcessingException
com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer ..> javax.faces.event.PostConstructViewMapEvent
com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer ..> javax.faces.event.PreDestroyViewMapEvent
com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer ..> javax.faces.event.SystemEvent
com.zoomtecnologia.zox.escopo.ViewScopeCallbackRegistrer --|> javax.faces.event.ViewMapListener
com.zoomtecnologia.zox.modelo.cadastros.Cfop --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.cadastros.Cfop ..> java.lang.Override
com.zoomtecnologia.zox.modelo.cadastros.Cfop ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Cfop ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Cfop ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.Cfop ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Cfop ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Cfop ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.cadastros.Cfop --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.cadastros.Cfop --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Cidade --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> java.lang.Override
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> javax.persistence.EmbeddedId
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Cidade ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.cadastros.Cidade --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.cadastros.Cidade --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.CidadePK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.CidadePK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.cadastros.CidadePK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.cadastros.CidadePK ..> javax.persistence.JoinColumns
com.zoomtecnologia.zox.modelo.cadastros.CidadePK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.cadastros.CidadePK ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.CidadePK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.cadastros.CidadePK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Cnae --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> java.lang.Override
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Cnae ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.cadastros.Cnae --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.cadastros.Cnae --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Contato --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.cadastros.Contato ..> java.lang.Override
com.zoomtecnologia.zox.modelo.cadastros.Contato ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Contato ..> javax.persistence.EmbeddedId
com.zoomtecnologia.zox.modelo.cadastros.Contato ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Contato ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Contato ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Contato ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.cadastros.Contato ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.cadastros.Contato --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.cadastros.Contato --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.ContatoPK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.ContatoPK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.cadastros.ContatoPK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.cadastros.ContatoPK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.cadastros.ContatoPK ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.ContatoPK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.cadastros.ContatoPK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Documento ..> com.zoomtecnologia.zox.modelo.cadastros.Column
com.zoomtecnologia.zox.modelo.cadastros.Documento ..> com.zoomtecnologia.zox.modelo.cadastros.EmbeddedId
com.zoomtecnologia.zox.modelo.cadastros.Documento ..> com.zoomtecnologia.zox.modelo.cadastros.Entity
com.zoomtecnologia.zox.modelo.cadastros.Documento ..> com.zoomtecnologia.zox.modelo.cadastros.Length
com.zoomtecnologia.zox.modelo.cadastros.Documento ..> com.zoomtecnologia.zox.modelo.cadastros.Table
com.zoomtecnologia.zox.modelo.cadastros.Documento ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Documento --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.cadastros.DocumentoPK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Empresa ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Empresa ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Empresa ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.Empresa ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.cadastros.Empresa ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.cadastros.Empresa ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Empresa ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Empresa --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Endereco ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Endereco ..> javax.persistence.EmbeddedId
com.zoomtecnologia.zox.modelo.cadastros.Endereco ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Endereco ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.cadastros.Endereco ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.cadastros.Endereco ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Endereco ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Endereco --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK ..> javax.persistence.JoinColumns
com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.cadastros.EnderecoPK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Estado --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.cadastros.Estado ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Estado ..> javax.persistence.EmbeddedId
com.zoomtecnologia.zox.modelo.cadastros.Estado ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Estado ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.cadastros.Estado ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.cadastros.Estado ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Estado ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Estado ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.cadastros.Estado --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.cadastros.Estado --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.EstadoPK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.EstadoPK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.cadastros.EstadoPK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.cadastros.EstadoPK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.cadastros.EstadoPK ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.EstadoPK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.cadastros.EstadoPK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.FuncaoFuncionario --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> javax.persistence.Temporal
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> java.util.Date
com.zoomtecnologia.zox.modelo.cadastros.Ibpt ..> javax.persistence.TemporalType
com.zoomtecnologia.zox.modelo.cadastros.Ibpt --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Pais --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> java.lang.Override
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Pais ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.cadastros.Pais --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.cadastros.Pais --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.Pessoa --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> java.lang.Override
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.Lob
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.OneToMany
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.Temporal
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.validation.constraints.Min
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.validation.constraints.NotNull
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> java.util.ArrayList
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> java.util.Date
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> java.util.List
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.CascadeType
com.zoomtecnologia.zox.modelo.cadastros.Pessoa ..> javax.persistence.TemporalType
com.zoomtecnologia.zox.modelo.cadastros.Pessoa --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.cadastros.Pessoa --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar ..> com.zoomtecnologia.zox.modelo.estoque.Produto
com.zoomtecnologia.zox.modelo.cadastros.ReferenciaAuxiliar --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.cadastros.TipoDeMovimento ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.cadastros.TipoDeMovimento ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.cadastros.TipoDeMovimento ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.cadastros.TipoDeMovimento ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.cadastros.TipoDeMovimento ..> lombok.Data
com.zoomtecnologia.zox.modelo.cadastros.TipoDeMovimento --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.Cest ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.Cest ..> javax.persistence.EmbeddedId
com.zoomtecnologia.zox.modelo.estoque.Cest ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.Cest ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.estoque.Cest ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.estoque.Cest ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.Cest ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.Cest --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.CestPK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.CestPK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.estoque.CestPK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.estoque.CestPK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.estoque.CestPK ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.CestPK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.estoque.CestPK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.estoque.CestaTributacao --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.Grupo --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> java.lang.Override
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.estoque.Grupo ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.estoque.Grupo --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.estoque.Grupo --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais ..> javax.persistence.OneToOne
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.estoque.InformacoesNutricionais --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais ..> javax.persistence.OneToOne
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.estoque.ItensInformacoesNutricionais --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.LocaEstoque ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.LocaEstoque ..> javax.persistence.EmbeddedId
com.zoomtecnologia.zox.modelo.estoque.LocaEstoque ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.LocaEstoque ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.LocaEstoque ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.LocaEstoque --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK ..> lombok.Getter
com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK ..> lombok.Setter
com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.estoque.LocalEstoquePK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.Ncm --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> java.lang.Override
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> javax.persistence.OneToMany
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> lombok.ToString
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> java.util.ArrayList
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> java.util.List
com.zoomtecnologia.zox.modelo.estoque.Ncm ..> javax.persistence.CascadeType
com.zoomtecnologia.zox.modelo.estoque.Ncm --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.estoque.Ncm --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.Column
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.Entity
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.Id
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.JoinColumn
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.JoinColumns
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.ManyToOne
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.NamedQueries
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.NamedQuery
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.Table
com.zoomtecnologia.zox.modelo.estoque.Produto ..> com.zoomtecnologia.zox.modelo.estoque.Temporal
com.zoomtecnologia.zox.modelo.estoque.Produto ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.Produto ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.estoque.Produto ..> java.util.Date
com.zoomtecnologia.zox.modelo.estoque.Produto --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.SubGrupo ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.SubGrupo ..> javax.persistence.EmbeddedId
com.zoomtecnologia.zox.modelo.estoque.SubGrupo ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.SubGrupo ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.estoque.SubGrupo ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.estoque.SubGrupo ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.SubGrupo ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.SubGrupo ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.estoque.SubGrupo --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.estoque.SubGrupoPK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.Tributacao ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.Tributacao ..> javax.persistence.EmbeddedId
com.zoomtecnologia.zox.modelo.estoque.Tributacao ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.Tributacao ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.estoque.Tributacao ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.estoque.Tributacao ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.Tributacao ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.Tributacao ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.estoque.Tributacao --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> javax.persistence.Embeddable
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> javax.persistence.JoinColumn
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> javax.persistence.JoinColumns
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> javax.persistence.ManyToOne
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> org.hibernate.annotations.ForeignKey
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> com.zoomtecnologia.zox.modelo.cadastros.Estado
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK ..> javax.persistence.CascadeType
com.zoomtecnologia.zox.modelo.estoque.TributacaoPK --|> java.io.Serializable
com.zoomtecnologia.zox.modelo.estoque.Unidade --|> com.zoomtecnologia.zox.filtros.Filtro
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> java.lang.Override
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> javax.persistence.Column
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> javax.persistence.Entity
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> javax.persistence.Id
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> javax.persistence.NamedQueries
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> javax.persistence.NamedQuery
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> javax.persistence.Table
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> lombok.Data
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> lombok.EqualsAndHashCode
com.zoomtecnologia.zox.modelo.estoque.Unidade ..> org.hibernate.validator.constraints.Length
com.zoomtecnologia.zox.modelo.estoque.Unidade --|> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.modelo.estoque.Unidade --|> java.io.Serializable
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> java.lang.Override
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> javax.persistence.PersistenceContext
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.springframework.transaction.annotation.Transactional
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> com.zoomtecnologia.zox.modelo.cadastros.Contato
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl --|> com.zoomtecnologia.zox.servico.impl.GenericServiceImpl
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> java.util.List
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> javax.persistence.EntityManager
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.apache.commons.lang3.StringUtils
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.hibernate.Criteria
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.hibernate.Session
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.hibernate.criterion.MatchMode
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.hibernate.criterion.Order
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.hibernate.criterion.Projections
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl ..> org.hibernate.criterion.Restrictions
com.zoomtecnologia.zox.servico.impl.ContatoServiceImpl --|> com.zoomtecnologia.zox.servico.ContatoService
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> java.lang.Override
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> javax.persistence.PersistenceContext
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.springframework.transaction.annotation.Transactional
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> com.zoomtecnologia.zox.modelo.cadastros.Estado
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl --|> com.zoomtecnologia.zox.servico.impl.GenericServiceImpl
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> java.util.List
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> javax.persistence.EntityManager
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.apache.commons.lang3.StringUtils
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.hibernate.Criteria
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.hibernate.Session
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.hibernate.criterion.MatchMode
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.hibernate.criterion.Order
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.hibernate.criterion.Projections
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.hibernate.criterion.Restrictions
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl ..> org.hibernate.sql.JoinType
com.zoomtecnologia.zox.servico.impl.EstadoServiceImpl --|> com.zoomtecnologia.zox.servico.EstadoService
com.zoomtecnologia.zox.servico.impl.GenericServiceImpl ..> java.lang.Override
com.zoomtecnologia.zox.servico.impl.GenericServiceImpl ..> java.lang.SuppressWarnings
com.zoomtecnologia.zox.servico.impl.GenericServiceImpl ..> javax.persistence.PersistenceContext
com.zoomtecnologia.zox.servico.impl.GenericServiceImpl ..> org.springframework.transaction.annotation.Transactional
com.zoomtecnologia.zox.servico.impl.GenericServiceImpl ..> javax.persistence.EntityManager
com.zoomtecnologia.zox.servico.impl.GenericServiceImpl ..> com.zoomtecnologia.zox.modelo.EntidadeBase
com.zoomtecnologia.zox.servico.impl.GenericServiceImpl --|> com.zoomtecnologia.zox.servico.PadraoService
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> java.lang.Override
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> javax.persistence.PersistenceContext
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.springframework.transaction.annotation.Transactional
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> com.zoomtecnologia.zox.modelo.estoque.Grupo
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl --|> com.zoomtecnologia.zox.servico.impl.GenericServiceImpl
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> java.util.List
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> javax.persistence.EntityManager
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.apache.commons.lang3.StringUtils
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.hibernate.Criteria
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.hibernate.Session
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.hibernate.criterion.MatchMode
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.hibernate.criterion.Order
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.hibernate.criterion.Projections
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl ..> org.hibernate.criterion.Restrictions
com.zoomtecnologia.zox.servico.impl.GrupoServiceImpl --|> com.zoomtecnologia.zox.servico.GrupoService
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> java.lang.Override
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> javax.persistence.PersistenceContext
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.springframework.transaction.annotation.Transactional
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> com.zoomtecnologia.zox.modelo.estoque.Ncm
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl --|> com.zoomtecnologia.zox.servico.impl.GenericServiceImpl
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> java.util.List
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> javax.persistence.EntityManager
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.apache.commons.lang3.StringUtils
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.hibernate.Criteria
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.hibernate.Session
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.hibernate.criterion.MatchMode
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.hibernate.criterion.Order
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.hibernate.criterion.Projections
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl ..> org.hibernate.criterion.Restrictions
com.zoomtecnologia.zox.servico.impl.NcmServiceImpl --|> com.zoomtecnologia.zox.servico.NcmService
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> java.lang.Override
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> javax.persistence.PersistenceContext
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.springframework.transaction.annotation.Transactional
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> com.zoomtecnologia.zox.modelo.cadastros.Pais
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl --|> com.zoomtecnologia.zox.servico.impl.GenericServiceImpl
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> java.util.List
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> javax.persistence.EntityManager
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.apache.commons.lang3.StringUtils
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.hibernate.Criteria
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.hibernate.Session
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.hibernate.criterion.MatchMode
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.hibernate.criterion.Order
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.hibernate.criterion.Projections
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl ..> org.hibernate.criterion.Restrictions
com.zoomtecnologia.zox.servico.impl.PaisServicoImpl --|> com.zoomtecnologia.zox.servico.PaisService
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> java.lang.Override
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> javax.persistence.PersistenceContext
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.springframework.transaction.annotation.Transactional
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> com.zoomtecnologia.zox.modelo.cadastros.Pessoa
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl --|> com.zoomtecnologia.zox.servico.impl.GenericServiceImpl
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> java.util.List
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> javax.persistence.EntityManager
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.apache.commons.lang3.StringUtils
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.hibernate.Criteria
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.hibernate.Session
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.hibernate.criterion.Criterion
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.hibernate.criterion.Disjunction
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.hibernate.criterion.MatchMode
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.hibernate.criterion.Order
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.hibernate.criterion.Projections
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl ..> org.hibernate.criterion.Restrictions
com.zoomtecnologia.zox.servico.impl.PessoaServicoImpl --|> com.zoomtecnologia.zox.servico.PessoaService
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> java.lang.Override
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> javax.persistence.PersistenceContext
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.springframework.stereotype.Service
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.springframework.transaction.annotation.Transactional
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> com.zoomtecnologia.zox.modelo.estoque.Unidade
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl --|> com.zoomtecnologia.zox.servico.impl.GenericServiceImpl
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> java.util.List
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> javax.persistence.EntityManager
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.apache.commons.lang3.StringUtils
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.hibernate.Criteria
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.hibernate.Session
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.hibernate.criterion.Criterion
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.hibernate.criterion.LogicalExpression
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.hibernate.criterion.MatchMode
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.hibernate.criterion.Order
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.hibernate.criterion.Projections
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl ..> org.hibernate.criterion.Restrictions
com.zoomtecnologia.zox.servico.impl.UnidadeServicoImpl --|> com.zoomtecnologia.zox.servico.UnidadeServico
com.zoomtecnologia.zox.modelo.EntidadeBase --|> java.io.Serializable
com.zoomtecnologia.zox.servico.ContatoService ..> org.springframework.stereotype.Repository
com.zoomtecnologia.zox.servico.ContatoService ..> com.zoomtecnologia.zox.modelo.cadastros.Contato
com.zoomtecnologia.zox.servico.ContatoService --|> com.zoomtecnologia.zox.servico.EntidadeService
com.zoomtecnologia.zox.servico.EntidadeService ..> java.util.List
com.zoomtecnologia.zox.servico.EntidadeService ..> org.hibernate.Criteria
com.zoomtecnologia.zox.servico.EntidadeService --|> com.zoomtecnologia.zox.servico.PadraoService
com.zoomtecnologia.zox.servico.EstadoService ..> org.springframework.stereotype.Repository
com.zoomtecnologia.zox.servico.EstadoService ..> com.zoomtecnologia.zox.modelo.cadastros.Estado
com.zoomtecnologia.zox.servico.EstadoService --|> com.zoomtecnologia.zox.servico.EntidadeService
com.zoomtecnologia.zox.servico.GrupoService ..> org.springframework.stereotype.Repository
com.zoomtecnologia.zox.servico.GrupoService ..> com.zoomtecnologia.zox.modelo.estoque.Grupo
com.zoomtecnologia.zox.servico.GrupoService --|> com.zoomtecnologia.zox.servico.EntidadeService
com.zoomtecnologia.zox.servico.NcmService ..> org.springframework.stereotype.Repository
com.zoomtecnologia.zox.servico.NcmService ..> com.zoomtecnologia.zox.modelo.estoque.Ncm
com.zoomtecnologia.zox.servico.NcmService --|> com.zoomtecnologia.zox.servico.EntidadeService
com.zoomtecnologia.zox.servico.PadraoService --|> java.io.Serializable
com.zoomtecnologia.zox.servico.PaisService ..> org.springframework.stereotype.Repository
com.zoomtecnologia.zox.servico.PaisService ..> com.zoomtecnologia.zox.modelo.cadastros.Pais
com.zoomtecnologia.zox.servico.PaisService ..> java.util.List
com.zoomtecnologia.zox.servico.PaisService --|> com.zoomtecnologia.zox.servico.EntidadeService
com.zoomtecnologia.zox.servico.PessoaService ..> org.springframework.stereotype.Repository
com.zoomtecnologia.zox.servico.PessoaService ..> com.zoomtecnologia.zox.modelo.cadastros.Pessoa
com.zoomtecnologia.zox.servico.PessoaService --|> com.zoomtecnologia.zox.servico.EntidadeService
com.zoomtecnologia.zox.servico.UnidadeServico ..> org.springframework.stereotype.Repository
com.zoomtecnologia.zox.servico.UnidadeServico ..> com.zoomtecnologia.zox.modelo.estoque.Unidade
com.zoomtecnologia.zox.servico.UnidadeServico --|> com.zoomtecnologia.zox.servico.EntidadeService
@enduml | false | true | false | false | class |
d91df953b3bf42014912edfba0bda687e5118e81 | 897c5f0768d85d6070cbac83453eaeda84f86ab7 | /SELAIN SISTEM/UML/DIAGRAM/UsecaseDiagram3.puml | 41d6592793a394441eca46c0cf42ef7473d37096 | [
"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 | 3,375 | puml | @startuml Usecase
Left to Right Direction
skinParam packageStyle rectangle
actor Admin_TU
rectangle "Use Case Diagram Manajemen Surat Perintah Tugas"{
Admin_TU -- (Melihat Dashboard)
Admin_TU -- (Melihat Profil)
Admin_TU -- (Mengubah Profil)
Admin_TU-- (Mengubah Password)
Admin_TU -- (Forgot Password)
Admin_TU -- (Melihat Surat Masuk)
Admin_TU -- (Menambah Surat Masuk)
Admin_TU -- (Mengubah Surat Masuk)
Admin_TU -- (Menghapus Surat Masuk)
Admin_TU -- (Melihat File Disposisi)
Admin_TU -- (Mendisposisi Surat Masuk)
Admin_TU -- (Melihat Trash Surat Masuk)
Admin_TU -- (Mengembalikan Surat Masuk)
Admin_TU -- (Menghapus Permanen Surat Masuk)
Admin_TU -- (Melihat SPT BKD)
Admin_TU -- (Melihat File SPT Lengkap BKD)
Admin_TU -- (Mengupload SPT Lengkap BKD)
Admin_TU -- (Memverifikasi SPT Lengkap BKD)
Admin_TU -- (Melihat SPT BKA)
Admin_TU -- (Melihat File SPT Lengkap BKA)
Admin_TU -- (Mengupload SPT Lengkap BKA)
Admin_TU -- (Memverifikasi SPT Lengkap BKA)
Admin_TU -- (Mencari Surat Masuk)
Admin_TU -- (Mencari Trash Surat Masuk)
Admin_TU -- (Mencari SPT BKD)
Admin_TU -- (Mencari SPT BKA)
Admin_TU -- (Melihat Pemberitahuan Surat Masuk)
Admin_TU -- (Melihat Pemberitahuan SPT BKD)
Admin_TU -- (Melihat Pemberitahuan SPT BKA)
' semua aktor
(Melihat Dashboard)..> (Login) : include
(Melihat Profil)..> (Login) : include
(Mengubah Profil)..> (Login) : include
(Mengubah Password)..> (Login) : include
(Forgot Password)..> (Login) : include
(Melihat Role)..> (Login) : include
(Menambah Role)..> (Melihat Role) : include
(Mengubah Role)..> (Melihat Role) : include
(Menghapus Role)..> (Melihat Role) : include
(Menambah Akses)..> (Melihat Role) : include
(Mengurangi Akses)..> (Melihat Role) : include
' admin tu
(Melihat Surat Masuk)..> (Login) : include
(Menambah Surat Masuk)..> (Melihat Surat Masuk) : include
(Mengubah Surat Masuk)..> (Melihat Surat Masuk) : include
(Menghapus Surat Masuk)..> (Melihat Surat Masuk) : include
(Melihat File Disposisi)..> (Melihat Surat Masuk) : include
(Mendisposisi Surat Masuk)..> (Melihat Surat Masuk) : include
(Melihat Trash Surat Masuk)..> (Login) : include
(Mengembalikan Surat Masuk)..> (Melihat Trash Surat Masuk) : include
(Menghapus Permanen Surat Masuk)..> (Melihat Trash Surat Masuk) : include
(Melihat SPT BKD)..> (Login) : include
(Melihat File SPT Lengkap BKD)..> (Melihat SPT BKD) : include
(Mengupload SPT Lengkap BKD)..> (Melihat SPT BKD) : include
(Memverifikasi SPT Lengkap BKD)..> (Melihat SPT BKD) : include
(Melihat SPT BKA)..> (Login) : include
(Melihat File SPT Lengkap BKA)..> (Melihat SPT BKA) : include
(Mengupload SPT Lengkap BKA)..> (Melihat SPT BKA) : include
(Memverifikasi SPT Lengkap BKA)..> (Melihat SPT BKA) : include
(Mencari Surat Masuk)..> (Melihat Surat Masuk) : include
(Mencari Trash Surat Masuk)..> (Melihat Trash Surat Masuk) : include
(Mencari SPT BKD)..> (Melihat SPT BKD) : include
(Mencari SPT BKA)..> (Melihat SPT BKA) : include
(Melihat Pemberitahuan Surat Masuk)..> (Melihat Surat Masuk) : include
(Melihat Pemberitahuan SPT BKD)..> (Melihat SPT BKD) : include
(Melihat Pemberitahuan SPT BKA)..> (Melihat SPT BKA) : include
}
@enduml | false | true | false | false | usecase |
8a46ff011502d616842ab406b35e17f8e39a0cbd | b0d5bc5244fd6e70c16cb78aab6b9b99d05cb245 | /src/test/java/io/github/bigbio/pgatk/utilities/iongen/model/model.plantuml | f19bea6487a549fa166f24b6eac92b44446458ed | [] | no_license | bigbio/pgatk-utilities | 51fde07d6a93777e264ac06b2ce3565acf90b560 | 5277cf6eec28d7db34e65af0442ea471919aacd6 | refs/heads/master | 2023-04-22T04:23:38.728052 | 2021-04-30T14:24:57 | 2021-04-30T14:24:57 | 284,158,103 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 990 | plantuml | @startuml
title __MODEL's Class Diagram__\n
package io.github.bigbio.pgatk.utilities.iongen {
package io.github.bigbio.pgatk.utilities.iongen.model {
class PeakSetTest {
+ testSplitPeaksWindow()
+ testTopIntensityPeak()
+ testSubset()
}
}
}
package io.github.bigbio.pgatk.utilities.iongen {
package io.github.bigbio.pgatk.utilities.iongen.model {
class PeptideScoreTest {
- mzArray : double[]
- intensityArray : double[]
+ testPeptideScore()
+ testCumulativeProbability()
+ testMatchedSet()
+ testPeptideScore2()
+ testPeptideScore3()
}
}
}
PeptideScoreTest o-- PrecursorIon : precursorIon
PeptideScoreTest o-- PeakSet : peakSet
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 |
2b00b7b0d72d31b4537c0f7458b5bd56c4ff50f6 | a04aa1e0237fccb93942fe8c0cb39e822d3b9bde | /001-akka-actor-as-function-orchestrator/src/main/java/net/siudek/dev/example1/Orchestration.puml | f5c63f8a82ff93eed998a95af4ddcd3119b73da9 | [] | no_license | siudeks/tech-spikes | 9e66b0167b6e9f9d11ddcc3703a7aa4c22b6d331 | a805ef5f9ba82b8cd23f204244a5a710ee1dc637 | refs/heads/master | 2023-07-09T22:33:45.647597 | 2023-07-03T08:22:43 | 2023-07-03T08:22:43 | 224,722,733 | 4 | 0 | null | 2023-07-05T20:51:55 | 2019-11-28T20:16:30 | Java | UTF-8 | PlantUML | false | false | 247 | puml | @startuml
title Hello sequences
actor MyFunctionActor
actor VerificationService
autonumber
== Claim Verification (?)==
MyFunctionActor -> VerificationService : Verify a Claim
VerificationService --> MyFunctionActor : The Claim in Invalid
@enduml | false | true | false | false | usecase |
6a41d063d9ae9921f3cf233c4d7056ee61ed1a2e | 3d152062945dc6bc52a4d87ca0f0c8052e14c7aa | /docs/diagrams/SearchCommandClassDiagram.puml | 2e098eaf79987ec1d338f63b13a7a4c53c1cd6ff | [
"MIT"
] | permissive | Cherweijie/main | adff38b7d3a7f5de1e5213454f860e1b4b93c248 | 25e8860f5b2417a30c69a9d07daef097c2aec5e6 | refs/heads/master | 2021-01-14T17:10:02.254944 | 2020-04-11T10:21:35 | 2020-04-11T10:21:35 | 242,690,844 | 0 | 1 | NOASSERTION | 2020-02-24T09:12:25 | 2020-02-24T09:07:53 | null | UTF-8 | PlantUML | false | false | 1,482 | puml | @startuml
skinparam backgroundColor #ffffff
skinparam classAttributeIconSize 0
hide circle
"{abstract}\nCommand" <|-- SearchCommand
ReturnOrderContainsKeywordsPredicate "1" <-left- SearchCommand : returnPredicate
ReturnOrderContainsKeywordsPredicate -[dashed]-|> Predicate
OrderContainsKeywordsPredicate "1" <-down- SearchCommand : orderPredicate
OrderContainsKeywordsPredicate -[dashed]left-|> Predicate
SearchCommand .right.> Model
SearchCommandParser .down.> SearchCommand
abstract class "{abstract}\nCommand" {
{abstract} execute(Model model) : CommandResult
}
class SearchCommand {
'Methods of SearchCommand
+ execute(model : Model) : CommandResult
}
interface Model <<interface>> {
+ updateFilteredOrderList(predicate: Predicate<Order>) : void
+ updateFilteredReturnOrderList(predicate: Predicate<ReturnOrder>) : void
}
class OrderContainsKeywordsPredicate<Order> {
'Fields of OrderContainsKeywordsPredicate
- keywords : List<String>
- argumentMultimap : ArgumentMultimap
- isGeneralSearch : boolean
'Methods of OrderContainsKeywordsPredicate
}
class ReturnOrderContainsKeywordsPredicate<Order> {
'Fields of ReturnOrderContainsKeywordsPredicate
- keywords : List<String>
- argumentMultimap : ArgumentMultimap
- isGeneralSearch : boolean
}
interface Predicate<T> <<interface>> {
'Interface Methods
+ test(t : T) : boolean
}
class SearchCommandParser {
+ parse(String args) : SearchCommand
}
@enduml
| false | true | false | false | class |
93c03235449750e16e0144d12d4ded7aaf9dd94f | 672966aec59ec38a1c5ef6362500fa3c7f570d21 | /cvinfo.plantuml | 948811a68ad3b09b35dda6748cf7beca5f8f1cca | [] | no_license | cleaver/cv-info | 653411fcd1d545e23f803e82efd54146acc2e5c3 | afefcbe66a1dc998e9b8fa24fe298973d529ae69 | refs/heads/main | 2023-04-23T22:10:36.192142 | 2021-05-17T19:37:37 | 2021-05-17T19:37:37 | 337,818,311 | 1 | 0 | null | 2021-05-17T16:11:41 | 2021-02-10T18:37:52 | JavaScript | UTF-8 | PlantUML | false | false | 279 | plantuml | @startuml cv-info
participant cvinfo as cvinfo
participant "/api/cvinfo" as api
participant login as login
cvinfo -> api : request content
api -> cvinfo : 403
cvinfo -> login : send credentials
login -> cvinfo : JWT
cvinfo -> api : request content
api -> cvinfo : content
@enduml | false | true | false | false | sequence |
f416f36ec5d7bedd40d1f2c26076fad112f1f979 | fe6109dd094f07e02abd5946994431cff7127fed | /docs/db.plantuml | 05e77099168ff3345e0920c28c2093ea2e9d0460 | [] | no_license | esoprana/pyTirocinioAI | 95378215683637986f7188b2deb147c7b1268b5d | d8cc3f4927ae2dbc6fac99aeafba4801aa87d33d | refs/heads/master | 2021-06-05T05:48:54.929731 | 2018-10-25T22:19:57 | 2018-10-25T22:19:57 | 139,976,046 | 0 | 1 | null | 2021-05-09T18:36:35 | 2018-07-06T11:25:43 | Python | UTF-8 | PlantUML | false | false | 1,531 | plantuml | @startuml
skinparam class {
BackgroundColor White
ArrowColor Grey
BorderColor Black
BackgroundColor<<Embedded>> Grey
BorderColor<<Embedded>> Black
}
namespace AI {
class Topic {
name: str
rules: List[Rule]
}
class Rule {
condition: dict
score: int
action: Action
}
class Action <<Embedded>> {
text: List[str]
operations: List[dict]
isQuestion: bool
immediatlyNext: bool
}
}
namespace Data{
class User {
username: str
googleSessionId: UUID
}
class Context {
ofUser: Ref<User>
timestamp: datetime
params: List[Params]
message: Message
}
class Message <<Embedded >> {
text: str
}
class UserMessage <<Embedded>> {
intent: dict
photo: dict
sentiment: dict
google_topic: dict
}
class BotMessage <<Embedded>> {
fromRule: Ref<Rule>
}
class Params <<Embedded>>{
ofTopic: Ref<Topic>
values: dict
startTime: datetime
priority: int
}
}
Data.UserMessage -up-|> Data.Message
Data.BotMessage -up-|> Data.Message
Data.Context "1" -left-* "1+" Data.Params : params
Data.Context "1+" -right-* "1" Data.User : ofUser
Data.Context "1" --* "1" Data.Message : message
Data.Params "0+" --* "1" AI.Topic: ofTopic
Data.BotMessage "1" --* "0+" AI.Rule
AI.Topic "1" -right-* "0+" AI.Rule : rules
AI.Rule "1" --* "1" AI.Action : action
@enduml
| false | true | false | false | class |
af9ea38e6dd8d7f134080dcd2fbd9a20b68578cd | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test-dummies/java/spec/concordion/common/results/runTotals/runTotals.plantuml | 43b06ce43b1cba3103c5c711e44f082b0e0f5c94 | [
"WTFPL",
"Apache-2.0"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,026 | plantuml | @startuml
title __RUNTOTALS's Class Diagram__\n
package spec.concordion.common.results.runTotals {
class Annotations {
{static} - beforeClassCalled : boolean
- beforeCalled : boolean
- ruleMethodInvoked : boolean
- ruleFieldInvoked : boolean
+ rule : TestRule
+ before()
{static} + beforeClass()
+ ruleMethod()
+ wasBeforeCalled()
+ wasBeforeClassCalled()
+ wasRuleMethodInvoked()
+ wasRuleFieldInvoked()
}
}
package spec.concordion.common.results.runTotals {
class ExpectedToFailTest {
+ getSuccessString()
+ throwException()
}
}
package spec.concordion.common.results.runTotals {
class ExpectedToFailWithExampleFixture {
}
}
package spec.concordion.common.results.runTotals {
class IgnoredTest {
+ getSuccessString()
+ throwException()
}
}
package spec.concordion.common.results.runTotals {
class InvalidHTMLTest {
+ runTotalsExtension : RunTotalsExtension
}
}
package spec.concordion.common.results.runTotals {
class JUnit3RunTotalsTest {
+ getSuccessString()
}
}
package spec.concordion.common.results.runTotals {
class JUnit4RunTotalsTest {
+ getSuccessString()
}
}
package spec.concordion.common.results.runTotals {
class MixedSuccessesAndFailures {
+ getSuccessString()
+ throwException()
}
}
package spec.concordion.common.results.runTotals {
class RuleWithCallback {
- callback : Statement
+ RuleWithCallback()
+ apply()
}
}
package spec.concordion.common.results.runTotals {
class CompoundStatement {
~ statement1 : Statement
~ statement2 : Statement
+ CompoundStatement()
+ evaluate()
}
}
package spec.concordion.common.results.runTotals {
class RunSomeOthers {
+ runTotalsExtension : RunTotalsExtension
}
}
package spec.concordion.common.results.runTotals {
class RunTotalsExtension {
+ addTo()
+ throwableCaught()
+ runStarted()
+ successReported()
+ failureReported()
+ ignoredReported()
- writeText()
- writeText()
}
}
package spec.concordion.common.results.runTotals {
class UnimplementedTest {
+ getSuccessString()
+ throwException()
}
}
package spec.concordion.common.results.runTotals {
class UnimplementedWithAssertTest {
+ getSuccessString()
+ throwException()
+ doTest()
}
}
RuleWithCallback -up-|> TestRule
RuleWithCallback +-down- CompoundStatement
RunTotalsExtension -up-|> ConcordionExtension
RunTotalsExtension -up-|> RunListener
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 |
e3ae9ec3c5cfaea80b37dd4277457074b628096d | 5953de53d0973280f0c78fafe7fc16a91eba72a5 | /diagrams/uml/sequence/lifecycle.plantuml | b38002c2e47d9d555fcdfcb11fd0d9965f91915a | [] | no_license | steve-papadogiannis/dist-sys-client-android | aac3092b3d2ac9520fe9b61a05c2b9d6ab56e191 | 93c42962142487a03adf8c41a258374330b639a7 | refs/heads/master | 2023-03-12T03:32:50.587801 | 2021-02-27T14:26:11 | 2021-02-27T14:26:11 | 88,501,990 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 951 | plantuml | @startuml
skinparam sequenceArrowThickness 2
skinparam roundcorner 20
actor User
box Service
participant Client
end box
boundary Server
autonumber "<b>[000]"
== Initialization ==
User -> Client : Navigates to the Application
activate Client
== Configuration ==
User -> Client : Submits the IP and Port of the Server
== Runtime ==
loop 0..n
User -> Client : Selects a starting point in the Map Fragment
User -> Client : Selects a ending point in the Map Fragment
User -> Client : Presses "Get Directions" button
Client -> Client : Creates AsyncTask
activate Client
Client -> Server : Queries for Directions Result
Server --> Client : Responds the Directions Result
Client -> Client : Draws the Directions polyline in Map Fragment
deactivate Client
end
== Shutdown ==
User -> Client : Exists the application
Client -> Client : Creates AsyncTask
activate Client
Client -> Server : Sends "terminate" signal
deactivate Client
deactivate Client
@enduml | false | true | false | false | sequence |
ab698c372463429587ce8cadd1f488b122dc4426 | 836688f2ee223924dc333e08467afb11d15f0518 | /plantuml/ennemis.plantuml | d08c15528aa63c7204ce5332f6b5aca2c7b63afe | [] | no_license | khadijaDhieb/Projet_Warriors_Java | b0085dc98083d3016b71de369d0b7edea02ae124 | 6ff5f601d88310982df99bff4fe44fb09100454c | refs/heads/master | 2022-09-18T14:56:17.495545 | 2020-06-03T09:20:46 | 2020-06-03T09:20:46 | 262,982,308 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,537 | plantuml | @startuml
title __ENNEMIS's Class Diagram__\n
namespace com.projet_warriors {
namespace ennemis {
class com.projet_warriors.ennemis.Dragon {
+ Dragon()
}
}
}
namespace com.projet_warriors {
namespace ennemis {
abstract class com.projet_warriors.ennemis.Ennemis {
# forcaAttaque : int
# nom : String
# status : Boolean
# viePoints : int
+ Ennemis()
+ getForcaAttaque()
+ getNom()
+ getStatus()
+ getViePoints()
+ interact()
+ setForcaAttaque()
+ setNom()
+ setStatus()
+ setViePoints()
+ toString()
}
}
}
namespace com.projet_warriors {
namespace ennemis {
class com.projet_warriors.ennemis.Gobelin {
+ Gobelin()
}
}
}
namespace com.projet_warriors {
namespace ennemis {
class com.projet_warriors.ennemis.Sorcier {
+ Sorcier()
}
}
}
com.projet_warriors.ennemis.Dragon -up-|> com.projet_warriors.ennemis.Ennemis
com.projet_warriors.ennemis.Ennemis .up.|> com.projet_warriors.Case
com.projet_warriors.ennemis.Gobelin -up-|> com.projet_warriors.ennemis.Ennemis
com.projet_warriors.ennemis.Sorcier -up-|> com.projet_warriors.ennemis.Ennemis
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 |
9a8382f231a8b4fe939368fc10991d2708a7e85b | 51eaf1430762e6df7966555761212ecc510078a9 | /solutions/Sandbox/classes_gen/Self/TestLanguageView.puml | 519c0200867e84e7463c49a4ecf09cba4ea29c3a | [] | no_license | CampagneLaboratory/UML_Diagrams | 1912f7f857e5951c2164e4fa7469d50de919af8d | ef1eb91c9de27b5846b7777e67a9c01015f5e119 | refs/heads/master | 2020-03-30T05:44:32.868157 | 2014-09-14T18:45:56 | 2014-09-14T18:45:56 | 23,975,794 | 3 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 258 | puml | @startuml
package TestLanguage {
class Child {
+myInt
+myString
+myBool
}
hide empty members
class Parent {
}
hide empty members
Parent o-- "0..1"ReferedTo : ref
Parent *-- "0..1" Child : child
class InterfaceConcept {
}
hide empty members
}
@enduml
| false | true | false | false | class |
f2ff344257d56e93485a7727c8d6b86579d5242b | 873b28ccdc2f16a3aac913c3e5a0364c65158c7a | /diagramms/tools.iuml | e1627a9c413110807e6290a6ee6182a3a528b281 | [] | no_license | Anthony-Jhoiro/Archi-Sys_sophia | def06beec12359baf56899ff6b5171355b6c0416 | 004b5bcf605de615c1698dba58dda62e39cbeef3 | refs/heads/master | 2023-02-24T00:48:05.048210 | 2021-01-28T19:06:56 | 2021-01-28T19:06:56 | 326,987,807 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 765 | iuml | !$err = "-[#red]->"
!unquoted procedure SOMEONE_SAY(icon, name, before, prefix)
!if (%strlen(before) == 0)
prefix --> "icon : ##name"
!else
prefix -->[before] "icon : ##name"
!endif
!endprocedure
!unquoted procedure DEAMON_SAY(name, before="", prefix="")
SOMEONE_SAY("😈", name, before, prefix)
!endprocedure
!unquoted procedure INVOKER_SAY(name, before="", prefix="")
SOMEONE_SAY("🧙", name, before, prefix)
!endprocedure
!unquoted procedure ERROR(name, before="", prefix="")
!if (%strlen(before) == 0)
prefix $err "❌ : ##name" << error >>
!else
prefix $err[before] "❌ : ##name" << error >>
!endif
!endprocedure
skinparam activity {
ArrowColor #0077ff
FontColor<< error >> #red
BorderColor #0077ff
BorderColor<< error >> #red
} | false | true | true | false | sequence |
fd18ed3cfcae9fc8388570c5f8c712099d1cd40f | b04d5166435afbe4a531aaccc447a40c92bb649b | /docs/Solution/Data-Coordinator/Physical.puml | af36512fcd8cd0d4451db0c6c6edf589f631950b | [] | no_license | CAADE/CloudLet | bc8e2d2ca4662aa60732888d727fca11d4045f66 | 08066bb296578ca6dc60a20388b15cb0f08425c4 | refs/heads/master | 2021-07-24T19:23:37.384552 | 2018-08-11T13:37:52 | 2018-08-11T13:37:52 | 81,122,426 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 148 | puml | @startuml
package "Data Coordinator" {
component component1
component component2
interface i1
}
i1 - component1
component1 --> component2
@enduml
| false | true | false | false | class |
06eb186746b82b8c9bce4227c46f6eb8d0309296 | e6a585dfa5292761773d2d523832eef2b49e8e9d | /docs/diagrams/classDiagram.plantuml | 9773ec656a34025b0fc18a2502aa301858846495 | [] | no_license | AY2021S2-CS2113T-F08-3/tp | 82d8b49f18290b6e0d37f1aaa77b711455ace50f | 27db5d4a86be5478fc4e8258997fb8c83257cec6 | refs/heads/master | 2023-04-14T04:07:25.089995 | 2021-04-12T16:53:53 | 2021-04-12T16:53:53 | 344,644,739 | 0 | 4 | null | 2021-04-12T15:56:05 | 2021-03-05T00:12:02 | Java | UTF-8 | PlantUML | false | false | 1,900 | plantuml | @startuml Class_Diagram
hide circle
!define LIGHTGREEN
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
skinparam classAttributeIconSize 0
together {
class Ui
class Parser
class Commands
}
together {
class RecommendationList
class ReviewList
}
together {
class Sorter
class SortMethod
}
class Ui #Turquoise {
+ readCommand() : String
}
class Commands #PaleGreen {
- boolean isReviewMode
}
class RecommendationList #Gold {
- ui : Ui
+ recommendations : ArrayList<Recommendation>
+ addRecommendation()
+ listRecommendations()
+ editRecommendation()
+ deleteRecommendation()
+ convertRecommendation()
}
class ReviewList #Gold {
- ui : Ui
+ reviews : ArrayList<Reviews>
- displayStars : boolean
+ addReview()
+ sortReviews()
+ listReviews()
+ viewReview()
+ editReview()
+ deleteReview()
+ changeDisplay(displayType : String)
}
class Parser #PaleGreen {
+ determineCommand(input : String)
}
class Sorter #NavajoWhite {
+ sortMethod : SortMethod
+ stringToSortMethod(sortMethod : String) : SortMethod
+ sortMethodToString(sortMethod : SortMethod) : String
+ getSortMethod() : String
+ changeSortMethod(sortMethod : String)
+ sortReviews(reviewList : ArrayList) : ArrayList
}
class Storage #PowderBlue {
- Ui ui
+ retrieveDataFile() : boolean
+ loadConnoisseurData() : ConnoisseurData
+ saveConnoisseurData()
}
enum SortMethod #NavajoWhite {
RATING
CATEGORY
TITLE
LATEST
EARLIEST
}
Ui - Parser : parse commands >
Parser - Commands : execute commands >
Commands -- Storage : store data >
Commands -- ReviewList : execute on >
Commands -- RecommendationList : execute on >
RecommendationList - ReviewList : convert to >
ReviewList -- Sorter : sort using >
Sorter -- SortMethod
@enduml
| false | true | false | false | class |
15d33f4f175dd6f1af8d66eb06d91b24dd366595 | b2b69447ba5e57ef57698482303eec1137f0a5e0 | /Domain_uTrack.puml | bf7b0dfdde69ae56fda75513b9a8eff891959b35 | [] | no_license | DanielYesteLopez/uTrack | a518b82b8c40cc1ee279d36c90402c39c147e768 | 4c8a2bb2305d2a2791ed917c376dc89bf6904b5f | refs/heads/master | 2021-02-12T09:46:13.805688 | 2020-06-07T16:07:51 | 2020-06-07T16:07:51 | 244,583,383 | 0 | 0 | null | 2020-05-17T19:04:26 | 2020-03-03T08:38:50 | Kotlin | UTF-8 | PlantUML | false | false | 651 | puml | @startuml
class Data {
}
class Statistic {
}
class Sensor {
}
class Training {
}
class Recommended_Exercise {
}
class Unregistered_User {
}
class uTrack {
}
class User {
}
class Bicycle {
}
class Exercise {
}
uTrack "1" o-- "*" Data : "Has"
uTrack "1" o-- "*" User : "Has"
Data "*" -- "*" Statistic : "Creates"
User "1" -- "*" Statistic : "Visualizes"
Unregistered_User "1" -- "1" User : "Transforms to"
User "1" *-- "1" Bicycle : "Has"
User "1" -- "*" Training : "Does"
Training "1" *-- "1..*" Exercise : "Contains"
Training "1" o-- "0,1" Recommended_Exercise : "Has"
Training "1" -- "*" Sensor : "Uses"
Sensor "1" -- "*" Data : "Provides"
@enduml | false | true | false | false | class |
78eb1c933f72bb5fe5c43bdf2c85db8ae995e0ab | f5c98e0a0324b0622d52ac893c94305d3bcbbeb6 | /docs/chain_reactor.plantuml | 121686eecd7254aab66b5faa29d62964648cb04a | [] | no_license | trav3ll3r/chainReaction | 218b576dc343ff7ff1ab12bb58998674a7e6ced5 | d88db8ab32dd4c41e7334c16520ef32364f6daa1 | refs/heads/master | 2021-09-10T17:32:44.135087 | 2018-03-30T05:01:46 | 2018-03-30T05:01:46 | 106,146,648 | 0 | 0 | null | 2018-03-18T10:58:53 | 2017-10-08T03:12:44 | Kotlin | UTF-8 | PlantUML | false | false | 924 | plantuml | @startuml
skinparam arrowThickness 4
skinparam arrowColor #448844
(start) --> [PreMainTasks]
[PreMainTasks] -right-> [MainTask] : then
[MainTask] -right-> [PostMainTasks] : then
[PostMainTasks] --> [Links] : then
[Links] --> [Reactions] : then
[Reactions] -down-> [Decision] : Success\nor Error
[Decision] .right.> [Links] : not-done
[Decision] *-[dotted,#888,thickness=2]right- (Reactor.decision)
[Decision] --> [parent.onDone] : +finalStatus
[PreMainTasks] .[dotted,#f00,thickness=2].> [parent.onDone] : skip-entire-chain\nSuccess\nor Error
[PostMainTasks] .[dotted,#f00,thickness=2].> [parent.onDone] : skip-entire-chain\nSuccess\nor Error
[parent.onDone] --> (end)
(end) .[dashed,#00f,thickness=3].> [Reactions] : parent-chain
[PreMainTasks] .[dotted,#f00,thickness=2].> [Links]: skip-main-task
[PostMainTasks] .[dotted,#f00,thickness=2].> [Reactions] : onError\nskip-links
@enduml | false | true | false | false | sequence |
6ae12596baa7225b748dee0154b4673aae8bf9cf | ba539ebf7aa664db4ba52e56f3ba4e5af1e95775 | /doc/virtualService/petrinet.puml | 7afdf7c0bc9ab90369c8e95d955dde0ec4cfa43b | [
"MIT"
] | permissive | p2o-lab/polaris-backend | 0e05c77b9e38e702c5a7c967055fdf10e787d0bb | 8f4ea3073bf13c09e2f2a4d0b5bc9973d9136aa1 | refs/heads/develop | 2023-06-07T18:41:39.338953 | 2021-02-25T17:41:03 | 2021-02-25T17:41:03 | 172,935,840 | 3 | 3 | MIT | 2023-06-06T01:30:32 | 2019-02-27T15:00:25 | TypeScript | UTF-8 | PlantUML | false | false | 460 | puml | @startuml
skinparam monochrome true
hide methods
hide empty fields
class AggregatedService
class Petrinet {
}
class PNState
class Operation {
module
service
strategy
command
parameters
}
class PNTransition {
condition
}
AggregatedService "1" *-- "16" Petrinet
Petrinet "1" *- "*" PNState
Petrinet "1" -- "1" PNTransition : > initialTransition
PNState "1" *- "*" Operation
PNState "1" *-- "*" PNTransition
PNTransition "1" *-- "*" PNState
@enduml | false | true | false | false | class |
9aa99887118ccd3bf88cce69d56ca3def97301b8 | 5e7944ee05697f9b6e48f9e9debc652d25f16178 | /UML/UML.puml | 35375d98233d462a3832c2930f1e11b1b5238695 | [] | no_license | geenavandijk/vandijk-cop3330-assignment4 | 91eaf58bb9fe633992ae5884c171de7671bc7edf | 218800454fffdb36fdfa6f366fb0af69c669ca14 | refs/heads/master | 2023-08-20T14:38:59.867368 | 2021-11-02T00:40:12 | 2021-11-02T00:40:12 | 423,659,812 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,403 | puml | @startuml
class ToDoController{
- ToDoListManager data
- TextField descriptionItem
- TextField editAddListTitle
- MenuItem editDate
- MenuItem editDeleteItem
- MenuItem editDeleteList
- MenuItem editDescription
- TextField editListAddItem
- TextField editSearchList
- MenuItem loadAll
- TextField loadSelectList
- TextField searchItem
- MenuItem storeAll
- TextField storeSingleList
- TextField titleList
- MenuItem viewAll
- TextField viewSelectList
- MenuItem viewSelectListAllItems
- MenuItem viewSelectListCompletedItems
- MenuItem viewSelectListIncompletedItems
void editDateClicked(ActionEvent event)
void editDeleteItemClicked(ActionEvent event)
void editDeleteListClicked(ActionEvent event)
void editDescriptionClicked(ActionEvent event)
void completedClicked(ActionEvent event)
void editListAddItemClicked(ActionEvent event)
void loadAllClicked(ActionEvent event)
void loadSelectListClicked(ActionEvent event)
void storeAllClicked(ActionEvent event)
void storeSingleListClicked(ActionEvent event)
void viewAllClicked(ActionEvent event)
void viewSelectListAllItemsClicked(ActionEvent event)
void viewSelectListCompletedItemsClicked(ActionEvent event)
void viewSelectListIncompletedClicked(ActionEvent event)
}
class ToDoApplication extends Application {
+ void start (Stage stage)
+ void stop ()
+ static void main (String[] args)
}
class ToDoList {
List <Items> items
String toDoListTitle
int numItems
+ void setItems
+ List<Items> getItems()
+ String getToDoListTitle()
+ void setToDoListTitle(String toDoListTitle)
+ ToDoList()
+ void removeItem (String itemName)
+ void viewList (String title, int option)
+ void storeList (String listTitle)
}
class Items {
String description
Date dueDate
boolean completed
+ String getDescription()
+ void setDescription(String description)
+ Date getDueDate()
+ void setDueDate(String dueDate)
+ boolean isCompleted()
+ void setCompleted(boolean completed)
+ void editDescription (String newName)
+ void editDueDate (Date newDate)
+ void completed ()
}
class ToDoListManager{
List <ToDoList> lists
int numLists
+ void setLists(List<ToDoList> lists)
+ ToDoListManager()
+ void newList(String title)
+ void removeList (String title)
+ void loadList (String listTitle)
}
ToDoListManager --> ToDoList
ToDoList --> Items
ToDoApplication --> ToDoController
ToDoController --> ToDoListManager
ToDoController --> ToDoList
ToDoController --> Items
@enduml | false | true | false | false | class |
16a168c782510b5cbc70f061122b3bff36ee20ea | 8fd0134c67d11d6ac49142e1e0b62be1aef01cb2 | /docs/uml/pipeline/diagrammiSequenza/sequenzaSTT.puml | 1a41c62af582acc33b7ecb4cf378ebe462b1fdef | [] | no_license | BreakingBugSwe/ajarvis | 2810e3b045799c623e5e91a6c8f7dcf4ad1a37ef | 3363547c7661baa9ffac580ed38764a8b95c59be | refs/heads/master | 2020-03-20T05:53:15.580567 | 2018-06-15T10:03:09 | 2018-06-15T10:03:09 | 137,229,832 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,022 | puml | @startuml
[-> aSpeechToTextStep: transcribe(RecordingElement):RecordingElement
activate aSpeechToTextStep
aSpeechToTextStep -> aSpeechToTextStep: requestSpeechToTextAnalysis()
activate aSpeechToTextStep
aSpeechToTextStep -> aRecordingModel: getFilename():String
activate aRecordingModel
aRecordingModel --> aSpeechToTextStep: filename
deactivate aRecordingModel
aSpeechToTextStep -> aSpeechToTextStep: buildSpeechRequest(filename:String)
activate aSpeechToTextStep
aSpeechToTextStep --> aSpeechToTextStep: request
deactivate aSpeechToTextStep
aSpeechToTextStep -> SpeechToText: recognize(request)
activate SpeechToText
SpeechToText --> aSpeechToTextStep: result
deactivate SpeechToText
aSpeechToTextStep -> aRecordingModel: getId()
activate aRecordingModel
aRecordingModel --> aSpeechToTextStep: id
deactivate aRecordingModel
aSpeechToTextStep --> anotherRecordingModel: new RecordingElement(id:Id,filename:String,transcription:String)
aSpeechToTextStep -> Repository: store(RecordingElement)
activate Repository
@enduml
| false | true | false | false | sequence |
1a6ebd4397b7a1cb66f8b10cd2cd201d33e1abd6 | 1484f4a4d4c5b4689f8525742d1e4cda8fdb6d3a | /docs/diagrams/implementation_module/Logic.puml | d79a9b31d6abcfb1f7fad13a26dd73af070ecada | [] | no_license | AY2021S1-CS2113-T16-1/tp | 8abd1e1798a8ecc64b4b3ae28dd5da618714b972 | 6ef0845c809addb46fef872101ef528780571b5d | refs/heads/master | 2023-01-13T17:13:34.579399 | 2020-11-16T05:03:49 | 2020-11-16T05:03:49 | 300,199,426 | 0 | 1 | null | 2020-11-16T05:03:50 | 2020-10-01T08:10:30 | Java | UTF-8 | PlantUML | false | false | 1,930 | puml | @startuml
left to right direction
hide circle
skinparam classAttributeIconSize 0
skinparam BoxPadding 20
skinparam shadowing false
skinparam linetype ortho
skinparam package<<Layout>> {
borderColor Transparent
backgroundColor Transparent
fontColor Transparent
stereotypeFontColor Transparent
}
rectangle Logic {
package p2 <<Layout>> {
}
class ParamChecker <<Singleton>>{
+ checkAndReturnDate(paramType : String) : LocalDate
+ checkAndReturnTime(paramType : String) : LocalTime
+ checkAndReturnIndex(paramType : String, list : ArrayList) : Integer
+ checkAndReturnDouble(paramType : String) : Double
+ checkAndReturnInt(paramType : String) : Integer
+ checkAndReturnCategory(paramType : String) : String
}
rectangle CommandHandlers {
abstract class "{abstract}\nParamHandler" {
# paramChecker : ParamChecker
# hasParsedAllParams : boolean
+ handleParams(packet : CommandPacket) : void
+ getHasParsedAllRequiredParams() : boolean
+ setRequiredParams(paramTypes : String...) : void
# checkParamRequirementSatisfied(param : String) : boolean
+ {abstract} handleSingleParam(packet : CommandPacket, paramType : String)
}
class XYZCommandHandler <<SingleTon>>{
+ handlePacket() : void
+ handleSingleParams(paramType : String) : void
+ handleParams(packet : CommandPacket) : void
}
ParamChecker "1" <.. XYZCommandHandler #line:blue;text:black : Checks param validity with
"{abstract}\nParamHandler" <|-[norank]- XYZCommandHandler #line:purple;line.bold;text:red
note bottom of XYZCommandHandler: Includes: \n1. FinanceTools Calculator functions\n2. DataTracker Commands\n eg. RetrieveEntryHandler()\n CreateLedgerHandler()
}
note right of ParamChecker: Contains methods that check validity of params supplied
@enduml | false | true | false | false | class |
719c09cd077f80726e7c1909fb871766a665bc8f | 0dc0f52b9819a580ddb5d81a0e4b2e9c3805b6b0 | /docs/architecture/diagrams/2-selectBankProfile.puml | 64c8ec3b2475edf1d7ccccef4a189da2c5090d23 | [
"Apache-2.0"
] | permissive | mohbadar/open-banking-gateway | be49916f4beb099e003fcf8370dc7a6dcf3193ef | 99884011cd2ccdb2bedd76860e303a6a119c6bd5 | refs/heads/master | 2020-09-16T22:34:50.573597 | 2019-11-19T16:52:07 | 2019-11-19T16:52:07 | 223,906,784 | 1 | 0 | Apache-2.0 | 2019-11-25T09:11:49 | 2019-11-25T09:11:48 | null | UTF-8 | PlantUML | false | false | 1,353 | puml | @startuml
autonumber "<b><color blue>[00]"
actor psu
box "PsuUserAgent" #LightGray
participant "FinTechUI" as FinTechUI
participant "PsuTppConsentSessionUI" as TppConsentUI
participant "PsuAspspConsentSessionUI" as AspspConsentUI
end box
box "FinTechDC" #DarkSeaGreen
participant "FinTechApi" as FinTechAPI
end box
box "TppDC" #LightGray
participant "TppBankingApi" as TPPBankingAPI
participant "TppBankSearchAPI" as BankList
participant "TppConsentSessionApi" as ConsentAPI
participant "TppConsentSessionStoreAPI" as ConsentStore
participant "BankingProtocolSelector" as ProtocolSelector
participant "BankingProtocol" as BankingProtocol
participant ConsentDB
end box
box "AspspDC" #LightSkyBlue
participant "AspspConsentSessionApi" as ASPSP
end box
== PSU searches and selects a bank ==
FinTechUI --> psu : Display bank list
psu -> FinTechUI ++ : selectBank
FinTechUI -> FinTechAPI ++ : selectBankProfile[...](bankId)
FinTechAPI -> TPPBankingAPI ++ : selectBankProfile[...](bankId)
TPPBankingAPI -> ProtocolSelector ++: selectBankingProtocol(bankId)
return BankingProtocol
TPPBankingAPI -> BankingProtocol ++ : getBankProfile(bankId)
BankingProtocol -> BankList ++ : getBankProfile(bankId)
return bankProfile
return bankProfile
return bankProfile
return bankProfile
return Display use cases
@enduml | false | true | false | false | usecase |
4db6bbb4530e8b5b3fb01429d4fcbd09cf482515 | ae5dac0b4bb492b46287be6fa65c553d214d66e3 | /diagrams/ex44.puml | cf8fd3c2ae3db7d66abba738a3aafb5dff78b66f | [] | no_license | DreDreDreDre/jara-cop3330-assignment3 | 3437b3ce34f809677ee3ed4b9bee7d800d801688 | c75953606088c09ae83d57d923d5fd174213bab4 | refs/heads/master | 2023-08-11T01:22:05.665678 | 2021-10-10T22:58:27 | 2021-10-10T22:58:27 | 415,705,536 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 244 | puml | @startuml
class App
{
+readProduct(JsonReader reader, String productName):boolean
+readJson(JsonReader reader, String input):boolean
+main(String[] args):void
}
file exercise44_input.json{
}
App <-> exercise44_input.json
@enduml | false | true | false | false | class |
dd274ef8e93ec75c6febaae9d0667a4818c24e63 | a546db78e9806979e459831fb16c6e51878eb60b | /src/main/model/data/additional/helpers/helpers.plantuml | 8bb10f0565df4fd9f034d7a9f246d17721acf31a | [] | no_license | Bryce-MW/WikidataExplorer | 92fd35b8e9364d9bd7e005a39d321bc788ea049f | 9ad2dac3c82077466dcb36f25128611881f8965b | refs/heads/master | 2023-06-22T20:58:25.975518 | 2021-07-25T22:33:33 | 2021-07-25T22:33:33 | 287,648,884 | 5 | 1 | null | 2020-08-16T06:03:52 | 2020-08-15T00:23:27 | Java | UTF-8 | PlantUML | false | false | 1,849 | plantuml | @startuml
title __HELPERS's Class Diagram__\n
namespace model.data {
namespace additional {
namespace helpers {
class model.data.additional.helpers.EntityData {
+ entityType : String
+ id : String
+ numericId : double
+ EntityData()
}
}
}
}
namespace model.data {
namespace additional {
namespace helpers {
class model.data.additional.helpers.GlobeCoordinateData {
+ globe : String
+ latitude : double
+ longitude : double
+ precision : double
+ GlobeCoordinateData()
}
}
}
}
namespace model.data {
namespace additional {
namespace helpers {
class model.data.additional.helpers.MonolingualTextData {
+ language : String
+ value : String
+ MonolingualTextData()
}
}
}
}
namespace model.data {
namespace additional {
namespace helpers {
class model.data.additional.helpers.QuantityData {
+ amount : String
+ lowerBound : String
+ unit : String
+ upperBound : String
+ QuantityData()
}
}
}
}
namespace model.data {
namespace additional {
namespace helpers {
class model.data.additional.helpers.TimeData {
+ after : double
+ before : double
+ calendarmodel : String
+ precision : double
+ time : String
+ timezone : double
+ TimeData()
}
}
}
}
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 |
554950d4bd8c69f8cc12da10db58acfb5062e16e | 6e29d893e7deebb9339dd5515195d7e510aba402 | /Documentação/Sprint 4/UC12_Eliminar_Candidatura/UC12_ExcertoMD_Eliminar_Candidatura.plantuml | da0b530bee0e5cb2da193a4d40d0a5254d3d195e | [] | no_license | blestonbandeiraUPSKILL/upskill_java1_labprg_grupo2 | 3a257326461907780a503165042584c5b7a8e535 | 95c31675e9008e961f00b177d6814046a72b577c | refs/heads/main | 2023-03-18T20:54:48.147868 | 2021-03-21T20:10:16 | 2021-03-21T20:10:16 | 331,623,577 | 0 | 2 | null | 2021-03-21T20:10:17 | 2021-01-21T12:38:14 | Java | UTF-8 | PlantUML | false | false | 2,097 | plantuml | @startuml
title UC12 - Eliminar Candidatura
class Plataforma {
-String designacao
}
class Anuncio {
-Data dataInicioPublicitacao
-Data dataFimPublicitacao
-Data dataInicioCandidatura
-Data dataFimCandidatura
-Data inicioSeriacao
-Data fimSeriacao
}
class Categoria {
-String id
-String descricao
}
class GrauProficiencia {
-Integer valor
-String designacao
}
class CaracterizacaoCT {
-boolean obrigatoria
}
class CompetenciaTecnica {
-String codigo
-String descricaoBreve
-String descricaoDetalhada
}
class Tarefa {
-String referencia
-String designacao
-String descricaoInformal
-String descricaoTecnica
-Integer duracaoEstimada
-double custoEstimado
}
class Freelancer {
-String nome
-String NIF
-String telefone
-Email email
}
class Candidatura {
-Data dataCandidatura
-Data dataEdicaoCandidatura
-Double valorPretendido
-Integer numeroDias
-String txtApresentacao
-String txtMotivacao
}
class HabilitacaoAcademica{
-String grau
-String designacaoCurso
-String nomeInstituicao
-Double mediaCurso
}
class ReconhecimentoCT {
-Data dataReconhecimento
}
Plataforma "1" -- "*" Categoria : possui >
Plataforma "1" -- "*" Anuncio : publicita >
Plataforma "1" -- "*" CompetenciaTecnica : possui >
Plataforma "1" -- "*" Freelancer : tem/usa >
Anuncio "0..1" -- "1" Tarefa : publicita >
Anuncio "0..1" -- "1" Tarefa : dá origem <
Anuncio "1" - "*" Candidatura : recebe >
Tarefa "*" -- "1" Categoria : enquadra-se em >
Candidatura "*" -- "1" Freelancer : realizada por >
Freelancer "1" --- "*" HabilitacaoAcademica : tem >
Freelancer "1" --- "*" ReconhecimentoCT : recebe(u) <
ReconhecimentoCT "*" - "1" CompetenciaTecnica : relativo a >
ReconhecimentoCT "*" -- "1" GrauProficiencia : reconhece >
CompetenciaTecnica "1" - "*" GrauProficiencia : aplica >
CaracterizacaoCT "*" - "1" GrauProficiencia : exige (como mínimo) >
Categoria "*" --- "*" CompetenciaTecnica : requer >
(Categoria, CompetenciaTecnica) . CaracterizacaoCT
@enduml | false | true | true | false | class |
32ea6b22c6206e31452e71c4d679b3e8cf9c700c | efb0f6a3ddfbb9750c3af36b650ddbe35be69f46 | /source/_draft/spring-aop/TargetSource.puml | b0d99f826b089e990c8f7fbd4a44d747581aab70 | [] | 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 | 1,187 | puml | @startuml
interface TargetSource
abstract AbstractRefreshableTargetSource
abstract AbstractLazyCreationTargetSource
abstract AbstractBeanFactoryBasedTargetSource
abstract AbstractPoolingTargetSource
abstract AbstractPrototypeBasedTargetSource
TargetSource <|.right. HotSwappableTargetSource
TargetSource <|.up. EmptyTargetSource
TargetSource <|.up. JndiObjectTargetSource
TargetSource <|.up. SingletonTargetSource
TargetSource <|.. AbstractRefreshableTargetSource
TargetSource <|.. AbstractBeanFactoryBasedTargetSource
TargetSource <|.. AbstractLazyCreationTargetSource
AbstractRefreshableTargetSource <|.. BeanFactoryRefreshableTargetSource
BeanFactoryRefreshableTargetSource <|.. RefreshableScriptTargetSource
AbstractBeanFactoryBasedTargetSource <|.up. SimpleBeanTargetSource
AbstractBeanFactoryBasedTargetSource <|.up. LazyInitTargetSource
AbstractPrototypeBasedTargetSource <|.. PrototypeTargetSource
AbstractPrototypeBasedTargetSource <|.. ThreadLocalTargetSource
AbstractBeanFactoryBasedTargetSource <|.. AbstractPrototypeBasedTargetSource
AbstractBeanFactoryBasedTargetSource <|.. AbstractPoolingTargetSource
AbstractPoolingTargetSource <|.. CommonsPool2TargetSource
@enduml | false | true | false | false | class |
e9e69f35df055afadf7ccca78fdab750af900225 | f563631a7a9f473bb8a6a53ed87ab80cd9cd9d86 | /Assets/Scripts/plantuml/include.puml | 801858158c8af62e5658cb2fbac17689ae795e45 | [] | no_license | 202004g07/UnityShooting | 74cc68f7abf2cc49bc6455b8c19587e245227b50 | 1249e19e0f660cd8f51930a9466962ac2754ff19 | refs/heads/main | 2023-01-01T21:18:11.351731 | 2020-10-26T09:24:12 | 2020-10-26T09:24:12 | 302,015,985 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,084 | puml | @startuml
class GoToMainScene {
- isPush : bool = true
- Start() : void
Update() : void
}
MonoBehaviour <|-- GoToMainScene
GoToMainScene --> "image" Image
class HitEffectCamera <<static>> {
+ {static} HitEffect(time:float, power:float) : void
}
interface IDestroyable {
Destroy() : void
}
interface IMovable {
Move() : void
}
class LaserController {
- LaserTime : float = 0.75f
- LaserStayTime : float = 2f
- Start() : void
- Update() : void
- Shoot_Laser() : void
}
MonoBehaviour <|-- LaserController
LaserController --> "LaserBeam" GameObject
LaserController --> "Player" PlayerController
LaserController o-> "ease" Ease
LaserController --> "LaserTransformCashe" Transform
LaserController --> "defaultScale" Vector3
abstract class MoveObjBase {
+ Speed : float
# <<virtual>> Update() : void
# <<virtual>> Move() : void
# <<virtual>> OnTriggerEnter2D(collision:Collider2D) : void
# OnBecameInvisible() : void
# Destroy() : void
}
MonoBehaviour <|-- MoveObjBase
class SlowTimeScale <<static>> {
+ {static} SlowTime(time:float, EndTimeScale:float, ease:Ease) : DG.Tweening.Core.TweenerCore<float, float, DG.Tweening.Plugins.Options.FloatOptions>
}
class BombController {
- Speed : float = 10
Update() : void
+ Move() : void
}
MonoBehaviour <|-- BombController
IMovable <|-- BombController
class BombGenerator {
- span : float
- Start() : void
CreateBomb() : IEnumerator
}
MonoBehaviour <|-- BombGenerator
BombGenerator --> "BombPrefab" BombController
class Defenceline {
- Defenceline()
+ Durability : float <<get>> <<set>>
}
Defenceline --> "instance" Defenceline
Defenceline --> "Instance" Defenceline
class DefenselineController {
- damage : float = 10
- Durability : float = 100
- Start() : void
- OnTriggerEnter2D(collision:Collider2D) : void
}
MonoBehaviour <|-- DefenselineController
DefenselineController --> "gameDirector" GameDirector
class EnemyController {
- ShakeEffectPow : float = 0.15f
- ShakeEffectTime : float = 0.5f
- Start() : void
# <<override>> OnTriggerEnter2D(collision:Collider2D) : void
- OnDestroy() : void
}
MoveObjBase <|-- EnemyController
EnemyController --> "ExplosionEffects" GameObject
EnemyController --> "Player" PlayerController
EnemyController --> "UI_Manager" Score
class EnemyGenerator {
- Span : float = 1
- Accselarate : float = 1.02f
- MultiEnemy : float = 0.2f
- ResetSpanTime : float = 0.7f
- SpanBaffa : float
- speedBaffa : float
- DiffChangeCount : float = 0.01f
- speedChangeTest : float = 0.01f
- Start() : void
ChangeSpan() : IEnumerator
CreateEnemy() : IEnumerator
}
MonoBehaviour <|-- EnemyGenerator
EnemyGenerator --> "EnemyPrefab" EnemyController
class GameDirector {
- time : float = 2.0f
- EndTimeScale : float = 0
- Start() : void
+ GoToGameOverScene() : void
+ LastScore() : void
- Retry() : void
}
MonoBehaviour <|-- GameDirector
GameDirector --> "GameOverUI" GameObject
GameDirector --> "GameUI" GameObject
GameDirector --> "GO_Score" Text
GameDirector --> "ScoreText" Score
GameDirector --> "RetryButton" Button
GameDirector --> "ExplosionEffects" GameObject
GameDirector o-> "ease" Ease
class BulletController {
# <<override>> OnTriggerEnter2D(collision:Collider2D) : void
}
MoveObjBase <|-- BulletController
class CreateBullet {
Update() : void
}
MonoBehaviour <|-- CreateBullet
CreateBullet --> "BulletPrefab" BulletController
class PlayerController {
- Speed : float = 1
- Life : float = 1
- ShakeEffectPow : float = 0.15f
- ShakeEffectTime : float = 0.5f
- damage : float
- damageCount : float = 0
- hasBomb : bool = false
- BombCount : int
- Start() : void
Update() : void
+ Move() : void
- OnTriggerEnter2D(collision:Collider2D) : void
+ Damage() : void
+ HasMaxBombs() : bool
- GetBomb() : void
- UseBomb() : void
- KillAllEnemys() : void
}
class "List`1"<T> {
}
MonoBehaviour <|-- PlayerController
IMovable <|-- PlayerController
PlayerController --> "gameDirector" GameDirector
PlayerController --> "UI_Manager" Score
PlayerController --> "Bombs" Transform
PlayerController --> "BG_Color" Color
PlayerController --> "m_Color" Color
PlayerController --> "spriteRenderer" SpriteRenderer
PlayerController --> "bombs<GameObject>" "List`1"
class ChikaTest {
+ speed : float = 1.0f
- time : float
Start() : void
Update() : void
SetAlphaColor(color:Color) : Color
}
MonoBehaviour <|-- ChikaTest
ChikaTest --> "text" Text
class Pause {
- AnimationTime : float = 1
- Start() : void
Update() : void
+ PauseAndResume() : void
}
MonoBehaviour <|-- Pause
Pause --> "PauseUI" GameObject
class Quit {
Start() : void
+ AppQuit() : void
}
MonoBehaviour <|-- Quit
Quit --> "QuitButton" Button
class Score {
point : float
- Start() : void
Update() : void
+ AddScore() : void
+ AddScore(num:int) : void
+ GetScore() : string
}
MonoBehaviour <|-- Score
Score --> "score" Text
@enduml
| false | true | false | false | sequence |
b6507acf0e519f8bd2670b08b1419f8e1fb6d1a3 | 02b0d37dad8182bfbc5414bbd250f36c6e888b28 | /PlantUml/Scripts/Libs/Singleton.puml | dfde52fc129ab0b8bc3d41d560d1a12b23152c5c | [] | no_license | Darcy97/U3D_Libs | ee8b1afb4e4cdc99fd80ab404fc8171cf2181ca0 | cc6143112916cafa346a00bc1fab7841b7888444 | refs/heads/master | 2020-06-21T16:37:56.155301 | 2019-08-20T07:04:09 | 2019-08-20T07:04:09 | 197,504,293 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 204 | puml | @startuml
class "Singleton`1"<T> <<static>> {
- {static} <<volatile>> _instance : T
- {static} <<readonly>> _locker : object
+ {static} Instance : T <<get>>
{static} Singleton()
}
@enduml
| false | true | false | false | class |
8000c195134b12a5db60139f1caff750cabb22be | 605cac101260b1b451322b94580c7dc340bea17a | /malokhvii-eduard/malokhvii02/doc/plantuml/ua/khpi/oop/malokhvii02/event/StreamHolder.puml | a489985cefc7fbcf522f991dbe89c7f09f1dfcf9 | [
"MIT"
] | permissive | P-Kalin/kit26a | fb229a10ad20488eacbd0bd573c45c1c4f057413 | 2904ab619ee48d5d781fa3d531c95643d4d4e17a | refs/heads/master | 2021-08-30T06:07:46.806421 | 2017-12-16T09:56:41 | 2017-12-16T09:56:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 300 | puml | @startuml
class StreamHolder {
-in: Scanner
-out: PrintStream
-outIndex: long
+StreamHolder(PrintStream, Scanner)
+closeIn(): void
+getCurrentOutLabel(): String
+getIn(): Scanner
+getOut(): PrintStream
}
@enduml
| false | true | false | false | class |
679189be577ae993a67f70f8a962440d8722772c | d3f5323b94d6a2b82dd03958d8eb834acf0fa55a | /orchid/src/main/resources/help/component-diagram/component-diagram-01.uml | 834d951f1aab05458da9b3d4b29b9ab518be25e5 | [] | no_license | unidal/garden | 620d34166804c5f37a0b800befe08b54e87dfee7 | fd77faadb53b86ac251b8d0b8d6a7055e3a74735 | refs/heads/master | 2022-10-31T16:58:16.907708 | 2021-11-22T09:57:38 | 2021-11-22T09:57:38 | 2,817,716 | 8 | 7 | null | 2022-10-12T20:40:47 | 2011-11-21T05:01:48 | HTML | UTF-8 | PlantUML | false | false | 131 | uml | @startuml
() "First Interface"
() "Another interface" as Interf2
interface Interf3
interface "Last\ninterface" as Interf4
@enduml | false | true | false | false | class |
fa52fb5bce0a901cb63783bbcf6d80936975bf72 | be809e6091a45ffded8f21b1b48a4e232d12ad90 | /Documentation/Diagrams/Source/NUCLEO-F103RB/Measurement_Device_Class_Diagram.plantuml | 6eba52de44e9a8da87322d565d6bc4eef4639adf | [
"MIT"
] | permissive | RobertGawron/HardwareDataLogger | 0ac9c585f2e28d8bca6d53e6610d1309b9c65140 | 9f97124f8060b7caf4c65e2e26831bb8a3c6070d | refs/heads/main | 2023-08-17T23:19:34.865717 | 2021-09-26T17:12:50 | 2021-09-26T17:12:50 | 304,281,614 | 1 | 0 | MIT | 2021-09-26T17:12:50 | 2020-10-15T09:52:45 | C | UTF-8 | PlantUML | false | false | 646 | plantuml | @startuml
package BusinessLogic {
class MeasurementSubject {
}
}
package Device {
interface IMeasurementDevice {
}
class PulesTransmitingDevice {
}
class UARTTransmitingDevice {
}
}
package Driver {
class GPIOCounterDevice {
}
interface IUARTDriver {
}
class UARTDriver {
}
}
MeasurementSubject *--- PulesTransmitingDevice
MeasurementSubject *-- UARTTransmitingDevice
IMeasurementDevice <|-- PulesTransmitingDevice
IMeasurementDevice <|-- UARTTransmitingDevice
UARTTransmitingDevice -- IUARTDriver
PulesTransmitingDevice -- GPIOCounterDevice
IUARTDriver --|> UARTDriver
@enduml | false | true | false | false | class |
c02c235d20c015c5a42106986e25b83e8a397d34 | f05aa0620a6165d8cbe4ebbefdff7a6a24af4727 | /doc/placeable.plantuml | 14959d61bb45956df2396caf70337babd1222f39 | [] | no_license | CDK6182CHR/PlantVsZombie | d28e81cdbfa87c64092d5ee696dc9cd79dafd6a7 | 00ce1efc745cadf9a7cbf28d4bd4120484b0ba71 | refs/heads/master | 2022-02-27T02:27:13.161851 | 2019-11-09T13:11:38 | 2019-11-09T13:11:38 | 217,850,308 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 254 | plantuml | abstract class Placeable{
}
abstract class Plant{
}
Placeable <|-- Plant
abstract class Seed{
}
Placeable <|-- Seed
abstract class Zombie{
}
Placeable <|-- Zombie
Plant "produces" --> Seed
Seed "attacks" --> Zombie
Zombie "eats" --> Plant | false | true | false | false | class |
9bc331c6fd8df9b0d969dd8ebe2cf79a66833aae | 242cec44956a09b0667479e8aa21e31cd7852a45 | /doc/HTC_overview.puml | 01e0e418edaf70e7a2532c636d6245ff93d4618d | [] | no_license | HomeMadeBots/Home_Temperature_Controller | 37c46be3b5c1af2a24dce92e1749bbe1d1b1aea9 | 0214bd15908e051b8b357586170d041cb99f5388 | refs/heads/main | 2023-08-27T18:09:22.584959 | 2021-09-29T12:44:23 | 2021-09-29T12:44:23 | 407,500,019 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,949 | puml | @startuml
!includeurl https://gist.githubusercontent.com/Arnaud-Bonneuil/c317a7a30bed7d64e2b5b1f558ac00cf/raw/sober.puml
object Display_Manager
object Mode_Manager
object Setting_Manager
object Boiler_Manager
object HTC_Clock
object HTC_Keypad {
No_Button_Threshold = 1000
Select_Button_Threshold = 650
Left_Button_Threshold = 450
Down_Button_Threshold = 250
Up_Button_Threshold = 50
}
object Boiler_Relay_Actuator {
Relay_Configuration = MONOSTABLE_RELAY_NORMALLY_OPEN
}
object Air_Temperature_Sensor {
T_One_Wire_Device_Address = [ 0x28 0xEE 0xF4 0x79 0xA2 0x0 0x3 0xFD ]
}
object HTC_LCD {
Font_Configuration = LCD_CONFIG_FONT_5x8
Number_Lines_Configuration = LCD_CONFIG_NB_LINES_2
Number_Colomns_Configuration = LCD_CONFIG_NB_COLUMNS_16
}
object Keypad_Pin {
Arduino_Pin_Id = PIN_A0
}
object Boiler_Relay_Pin {
Arduino_Pin_Id = 13
}
object One_Wire {
Pin_Address = &PIND
Bit_Index = 6
}
object DO_Pin_LCD_Backlight {
Arduino_Pin_Id = 10
}
object DO_Pin_LCD_Data_4 {
Arduino_Pin_Id = 4
}
object DO_Pin_LCD_Data_5 {
Arduino_Pin_Id = 5
}
object DO_Pin_LCD_Data_6 {
Arduino_Pin_Id = 6
}
object DO_Pin_LCD_Data_7 {
Arduino_Pin_Id = 7
}
object DO_Pin_LCD_Enable {
Arduino_Pin_Id = 9
}
object DO_Pin_LCD_Register_Select {
Arduino_Pin_Id = 8
}
Display_Manager -d-> Mode_Manager : HTC_Mode
Display_Manager -d-> HTC_Keypad : Any_Button_Pressed
Display_Manager -d-> Setting_Manager : HTC_Setting_Mode
Display_Manager -d-> Boiler_Manager : Target_Home_Temperatures
Display_Manager -d-> HTC_LCD : LCD_Commands + LCD_Special_Character_Config
Display_Manager -d-> Air_Temperature_Sensor : Ambiant_Air_Temperature
Display_Manager -d-> HTC_Clock : Clock_Data
Mode_Manager -d-> HTC_Keypad : Mode_Button_Pressed
note on link : Mode change button is the Select button
Setting_Manager -d-> HTC_Keypad : Increase_Setting_Button_Pressed\lDecrease_Setting_Button_Pressed\lNext_Setting_Button_Pressed\lPrevious_Setting_Button_Pressed
note on link
Increase setting button is Up button,
Decrease is Down,
Prev is Left,
Next is Right.
end note
Setting_Manager -d-> HTC_Clock : Clock_Setting
Setting_Manager -d-> Boiler_Manager : Target_Home_Temperature_Setting
Boiler_Manager -d-> Mode_Manager : HTC_Mode
Boiler_Manager -d-> HTC_Clock : Clock_Data
Boiler_Manager -d-> Boiler_Relay_Actuator : Relay_Actuation_Requests
Boiler_Manager -d-> Air_Temperature_Sensor : Ambiant_Air_Temperature
HTC_Keypad -d-> Keypad_Pin : Analogic_Input
Boiler_Relay_Actuator -d-> Boiler_Relay_Pin : Discrete_Output
Air_Temperature_Sensor -d-> One_Wire : One_Wire_Protocole
HTC_LCD -d-> DO_Pin_LCD_Backlight : Discrete_Output
HTC_LCD -d-> DO_Pin_LCD_Data_4 : Discrete_Output
HTC_LCD -d-> DO_Pin_LCD_Data_5 : Discrete_Output
HTC_LCD -d-> DO_Pin_LCD_Data_6 : Discrete_Output
HTC_LCD -d-> DO_Pin_LCD_Data_7 : Discrete_Output
HTC_LCD -d-> DO_Pin_LCD_Enable : Discrete_Output
HTC_LCD -d-> DO_Pin_LCD_Register_Select : Discrete_Output
@enduml | false | true | false | false | sequence |
c0bf67181a3b4219f9727ad6a5226ec99d32d95c | 8e80454ea61c9fd5b1dd8e940984ff39940e5a30 | /doc/SD_Triggered_Timer.puml | 74ec5ee6109fcdf85291c0fa95d6ea8624c0bf66 | [] | no_license | HomeMadeBots/Timers | b46c71947f7ce98099396db8341a6c9f0c4e3dd1 | acde9fff6af11ec2a780712377a55863eb756a44 | refs/heads/main | 2023-08-14T15:32:21.050116 | 2021-09-23T13:42:24 | 2021-09-23T13:42:24 | 393,326,230 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,013 | puml | @startuml
!includeurl https://gist.githubusercontent.com/Arnaud-Bonneuil/c317a7a30bed7d64e2b5b1f558ac00cf/raw/sober.puml
!pragma teoz true
participant "Timer_User" as User
participant ":Triggered_Timer" as Triggered_Timer
participant OS
note over Triggered_Timer : Recurrence_Millisecond = 10
{tick_1} OS -> Triggered_Timer : Tick
User -> Triggered_Timer : Start(40)
|||
{tick_2} OS -> Triggered_Timer : Tick
{tick_1} <-> {tick_2} : 10ms
User -> Triggered_Timer : Is_Active
activate Triggered_Timer
return true
OS -> Triggered_Timer : Tick
User -> Triggered_Timer : Get_Remaining_Time
activate Triggered_Timer
return 20
OS -> Triggered_Timer : Tick
|||
|||
OS -> Triggered_Timer : Tick
activate Triggered_Timer
Triggered_Timer -> User : Time_Is_Up
deactivate Triggered_Timer
|||
OS -> Triggered_Timer : Tick
User -> Triggered_Timer : Is_Active
activate Triggered_Timer
return false
OS -> Triggered_Timer : Tick
User -> Triggered_Timer : Get_Remaining_Time
activate Triggered_Timer
return 0
@enduml | false | true | false | false | sequence |
af5b27cc686bc35ea3ae85738e4d245ac039a0c0 | c815f9c82c1400f76243750cd0ec609d217b9943 | /service-locator/etc/service-locator.urm.puml | 9e41e7f40555d806f3f9469c3adc4bd0a5449e2a | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 913 | puml | @startuml
package com.iluwatar.servicelocator {
class ServiceLocator {
- serviceCache : ServiceCache {static}
- ServiceLocator()
+ getService(serviceJndiName : String) : Service {static}
}
class App {
+ App()
+ main(args : String[]) {static}
}
class ServiceImpl {
- id : int
- serviceName : String
+ ServiceImpl(serviceName : String)
+ execute()
+ getId() : int
+ getName() : String
}
class InitContext {
+ InitContext()
+ lookup(serviceName : String) : Object
}
class ServiceCache {
- serviceCache : Map<String, Service>
+ ServiceCache()
+ addService(newService : Service)
+ getService(serviceName : String) : Service
}
interface Service {
+ execute() {abstract}
+ getId() : int {abstract}
+ getName() : String {abstract}
}
}
ServiceLocator --> "-serviceCache" ServiceCache
ServiceImpl ..|> Service
@enduml | false | true | false | false | class |
ea825af52e635971b200df2ad7626aeb33756d8b | ee6841e96c76962e9f74ba032a25d2e923b7e42c | /tech-apache/apache-lang/src/main/resources/apache/collections/queue.puml | 567845ca77710adb49c3cad906380bff924c1dcb | [] | no_license | physicsLoveJava/java-miscellaneous | 614cfbad7dd7679e99c561b210ebbbf1a9df941e | e7563fdc9b5f955662cba40fc48614e45747d020 | refs/heads/master | 2021-07-19T13:30:51.096326 | 2019-01-21T09:09:50 | 2019-01-21T09:09:50 | 105,858,854 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 756 | puml | @startuml
interface Collection
interface Queue
Collection <|-- Queue
AbstractCollection <|-- AbstractCollectionDecorator
AbstractCollectionDecorator <|-- AbstractQueueDecorator
Queue <|-- AbstractQueueDecorator
Collection <|-- AbstractCollection
AbstractCollection <|-- CircularFifoQueue
Queue <|-- CircularFifoQueue
BoundedCollection <|-- CircularFifoQueue
Collection <|-- BoundedCollection
Queue <|-- PredicatedQueue
AbstractPredicateCollection <|-- PredicatedQueue
AbstractCollectionDecorator <|-- AbstractPredicateCollection
Queue <|-- TransformedQueue
TransformedCollection <|-- TransformedQueue
AbstractCollectionDecorator <|-- TransformedCollection
AbstractQueueDecorator <|-- UnmodifiableQueue
Unmodifiable <|-- UnmodifiableQueue
@enduml | false | true | false | false | class |
cfbb66ad1e43352c4329cbe3a440ed5eeff06ef2 | 17a6a64d2275c47c9b205f088394b4937292f9f5 | /docs/architecture/plantuml/PolicyExecutionFlow.puml | a06fdf5f63faaa0fee374d5ca0fad4cb3a0bae55 | [
"Apache-2.0",
"CC-BY-4.0"
] | permissive | onap/policy-parent | 2e8db0a82311ed576a2d3166ac293b8b5687987c | b12c67854c70ae410e02af501126ecf8434e5dd9 | refs/heads/master | 2023-08-16T15:28:59.552318 | 2023-08-04T13:00:54 | 2023-08-08T10:14:28 | 159,416,823 | 3 | 1 | NOASSERTION | 2021-06-29T19:01:07 | 2018-11-27T23:53:56 | null | UTF-8 | PlantUML | false | false | 432 | puml | @startuml
title Policy Execution
participant REQUESTOR
participant RESPONDEE
participant PDP
autonumber
alt Synchronous Invocation
REQUESTOR --> PDP: Execute Policy
activate PDP
hnote over REQUESTOR : wait
PDP --> REQUESTOR: Policy Execution Result
deactivate PDP
else Asynchronous Invocation
REQUESTOR --> PDP: Execute Policy
activate PDP
PDP --> RESPONDEE: Policy Execution Result
deactivate PDP
end
@enduml | false | true | false | false | sequence |
5e4f5d6aa30f1a386350af55602331a26f54a015 | 3e8de74dfe19cd437fd7842887394d4921a109d7 | /docs/images/proxy.plantuml | 66b9dbcbd523b778f38bf01df4665a7f52caf5ba | [] | no_license | jmbruel/InnopolisDesignPatterns | 62c5f1df870883cd44245d6459243c83b96d0995 | a9ffbfc16a29ed3d560d5be12e8fb1d2f1bed50e | refs/heads/master | 2021-02-04T20:34:22.378185 | 2020-11-16T17:40:28 | 2020-11-16T17:40:28 | 243,707,157 | 0 | 7 | null | 2020-10-23T08:58:33 | 2020-02-28T07:49:59 | JavaScript | UTF-8 | PlantUML | false | false | 368 | plantuml | @startuml
'-----------------------------------
' UML patterns illustrated
' JMB 2014
'-----------------------------------
abstract class Sujet
Sujet : {abstract} +requete()
class SujetReel {
+requete()
}
class Procuration {
+requete()
}
note right: sujetReel.requete();
Sujet <|-- SujetReel
Sujet <|-- Procuration
SujetReel "+sujetReel" <-- Procuration
@enduml
| false | true | false | false | class |
89232d88ed4321c6e6493c3835b848f40a9f143f | 57fbc019b098405977ffe0e93551d48425ba78d0 | /ethereum/101/eip-status.plantuml | 759604af24741a053e2c4e8f026a0629018d34c8 | [] | no_license | 3rdstage/models | 40922c538ad3b56a555817d2258ee5f863002fca | 7d6d41020f53fb39eace3fa3987af63a56d0ace3 | refs/heads/master | 2023-07-19T08:53:40.724866 | 2023-01-09T09:00:46 | 2023-01-09T09:00:46 | 205,056,655 | 0 | 2 | null | 2021-11-04T06:22:06 | 2019-08-29T01:39:54 | D | UTF-8 | PlantUML | false | false | 554 | plantuml | @startuml
' https://plantuml.com/state-diagram
scale max 2048 width
state Main {
state "Draft" as draft
state "Review" as review
state "Last Call" as call
state "Final" as final
}
state "Stagnant" as stagnant
state "Withdrawn" as withdrawn
state "Living" as living
[*] --> living
[*] --> draft
draft --> review
review --> call
call --> review
call --> final
final --> [*]
draft --> stagnant
review --> stagnant
stagnant --> draft
stagnant --> withdrawn
draft --> withdrawn
review --> withdrawn
call --> withdrawn
withdrawn --> [*]
@enduml | false | true | false | false | state |
2bed1e0f87604f54d5a1bd6d400377eb65709a8f | e9da06d38d0d0dd482c5c7b25c4f509ebb10d907 | /GeneratorPML/GeneratorPML/test.puml | d327a955f5a4b47c8d2e898bcbe61120724658aa | [] | no_license | heggy98/plantuml | 43837f0eb6d9f656d03bc68eca54525bcc5bede3 | 79919997963966b86e321fcbe61fdcae4b3bdadd | refs/heads/main | 2023-03-31T03:29:13.844982 | 2021-03-31T22:13:02 | 2021-03-31T22:13:02 | 353,337,698 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 387 | puml | @startuml
package eng.task{
interface Parseable{
+ parse (param : String) : void
}
interface Formatable{
- format() : String
}
class Id{
- id : int
+ getId() : int
}
class Record{
+ format() : String
+ parse(param : String) : void
+ updateId (newId : int):void
+ updateId(newId : int, force : boolean):true
}
Record --|> Id
Record ..|> Formatable
Record ..|> Parseable
}
@enduml
| false | true | false | false | class |
44902bd0a48ade7ca8ee90ac44f5cc8bd7970752 | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/java/Collection.puml | f5864c0735d66a59add6ca8396064948d229f70a | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 6,175 | puml | @startuml
title Collection Class Diagram
interface Iterable<T> {
Iterator<T> iterator();
}
interface Collection<E>{
int size();
boolean isEmpty();
boolean contains(Object o);
Iterator<E> iterator();
Object[] toArray();
<T> T[] toArray(T[] a);
boolean add(E e);
boolean remove(Object o);
boolean containsAll(Collection<?> c);
boolean addAll(Collection<? extends E> c);
boolean removeAll(Collection<?> c);
boolean retainAll(Collection<?> c);
void clear();
boolean equals(Object o);
int hashCode();
}
abstract class AbstractCollection<E>
interface List<E> {
E get(int index);
E set(int index, E element);
void add(int index, E element);
E remove(int index);
int indexOf(Object o);
int lastIndexOf(Object o);
ListIterator<E> listIterator();
ListIterator<E> listIterator(int index);
List<E> subList(int fromIndex, int toIndex);
}
abstract class AbstractList<E> {
ListIterator<E> listIterator();
ListIterator<E> listIterator(final int index);
}
interface RandomAccess
abstract class AbstractSequentialList<E>
class Vector<E> {
-Object[] elementData;
}
class ArrayList<E> {
transient Object[] elementData;
}
class LinkedList<E> {
Node<E> first;
Node<E> last;
}
interface Queue<E> {
boolean add(E e);
boolean offer(E e);
E remove();
E poll();
E element();
E peek();
}
interface Deque<E> {
void addFirst(E e);
void addLast(E e);
boolean offerFirst(E e);
boolean offerLast(E e);
E removeFirst();
E removeLast();
E pollFirst();
E pollLast();
E getFirst();
E getLast();
E peekFirst();
E peekLast();
Iterator<E> iterator();
Iterator<E> descendingIterator();
}
interface Set<E>
abstract class AbstractSet<E>
interface SortedSet<E> {
Comparator<? super E> comparator();
SortedSet<E> subSet(E fromElement, E toElement);
SortedSet<E> headSet(E toElement);
SortedSet<E> tailSet(E fromElement);
E first();
E last();
}
interface Comparator<E> {
int compare(T o1, T o2);
boolean equals(Object obj);
}
interface NavigableSet<E> {
E lower(E e);
E floor(E e);
E ceiling(E e);
E higher(E e);
E pollFirst();
E pollLast();
Iterator<E> iterator();
NavigableSet<E> descendingSet();
Iterator<E> descendingIterator();
}
class HashSet<E> {
-transient HashMap<E, Object> map;
}
class TreeSet<E> {
-transient NavigableMap<E, Object> map;
}
abstract class Dictionary<K, V> {
abstract public int size();
abstract public boolean isEmpty();
abstract public Enumeration<K> keys();
abstract public Enumeration<V> elements();
abstract public V get(Object key);
abstract public V put(K key, V value);
abstract public V remove(Object key);
}
interface Map<K, V> {
int size();
boolean isEmpty();
boolean containsKey(Object key);
boolean containsValue(Object value);
V get(Object key);
V put(K key, V value);
V remove(Object key);
void putAll(Map<? extends K, ? extends V> m);
void clear();
Set<K> keySet();
Collection<V> values();
Set<Map.Entry<K, V>> entrySet();
boolean equals(Object o);
int hashCode();
}
interface Entry<K,V> {
K getKey();
V getValue();
V setValue(V value);
boolean equals(Object o);
int hashCode();
}
interface SortedMap<K, V> {
Comparator<? super K> comparator();
}
class Hashtable<K, V> {
-transient Entry<K, V>[] table;
}
abstract class AbstractMap<K, V>
interface NavigableMap {
Map.Entry<K,V> lowerEntry(K key);
K lowerKey(K key);
Map.Entry<K,V> floorEntry(K key);
K floorKey(K key);
Map.Entry<K,V> ceilingEntry(K key);
K ceilingKey(K key);
Map.Entry<K,V> higherEntry(K key);
K higherKey(K key);
Map.Entry<K,V> firstEntry();
Map.Entry<K,V> lastEntry();
NavigableMap<K,V> descendingMap();
NavigableSet<K> navigableKeySet();
NavigableSet<K> descendingKeySet();
}
class HashMap<K, V> {
entry<K, V>[] table;
}
class TreeMap<K, V> {
Entry<K, V> root;
}
interface Iterator<E> {
boolean hasNext();
E next();
void remove();
}
interface ListIterator<E> {
boolean hasPrevious();
E previous();
int nextIndex();
int previousIndex();
void set(E e);
void add(E e);
}
interface Comparable<T> {
int compareTo(T o);
}
class Stack<E> {
E push(E item);
E pop();
E peek();
boolean empty();
int search(Object o);
}
abstract class AbstractQueue<E>
class ArrayDeque<E>
interface Enumeration<E> {
boolean hasMoreElements();
E nextElement();
}
class EnumMap<K extends Enum<K>, V> {
K[] keys;
Object[] vals;
}
abstract class EnumSet<E extends Enum<E>> {
K[] keys;
}
class IdentityHashMap<K,V>
class LinkedHashMap<K,V>
class LinkedHashSet<E>
class PriorityQueue<E>
class Properties
class WeakHashMap<K,V>
Iterable <|-- Collection
Collection <|-- AbstractCollection
Collection <|-- List
Collection <|-- Queue
Queue <|-- Deque
AbstractCollection <|-- AbstractList
List <|-- AbstractList
AbstractList <|-- AbstractSequentialList
AbstractList <|-- Vector
RandomAccess <|-- Vector
Vector <|-- Stack
AbstractList <|-- ArrayList
RandomAccess <|-- ArrayList
AbstractSequentialList <|-- LinkedList
Deque <|-- LinkedList
Collection <|-- Set
AbstractCollection <|-- AbstractSet
Set <|-- AbstractSet
Set <|-- SortedSet
SortedSet <|-- NavigableSet
AbstractSet <|-- HashSet
AbstractSet <|-- TreeSet
NavigableSet <|-- TreeSet
Map *-- Entry
Map <|-- SortedMap
Dictionary <|-- Hashtable
Map <|-- Hashtable
Map <|-- AbstractMap
SortedMap <|-- NavigableMap
AbstractMap <|-- HashMap
AbstractMap <|-- TreeMap
NavigableMap <|-- TreeMap
Iterator <|-- ListIterator
Queue <|-- AbstractQueue
AbstractQueue <|-- ArrayDeque
Deque <|-- ArrayDeque
AbstractMap <|-- EnumMap
AbstractSet <|-- EnumSet
AbstractMap <|-- IdentityHashMap
HashMap <|-- LinkedHashMap
HashSet <|-- LinkedHashSet
AbstractQueue <|-- PriorityQueue
Hashtable <|-- Properties
AbstractMap <|-- WeakHashMap
@enduml | false | true | false | false | class |
f0e1381760c87dbe49ac05d29e2b13c0e79043bf | e95b540dc3376644e4711a7755cd6d35db66d362 | /Actividades/A4.1.Command/prueba1.puml | daf642b50743c527925f224663cadf36aaab1938 | [] | no_license | Aarzh/A01023376_AyMSS18 | bc7d3e5647be3545d68745fc1b0fa13133ac2b31 | 233175047cd3f61f9f3dd1c0dd7c9d6a90bf76ca | refs/heads/master | 2021-05-12T14:35:14.542072 | 2018-05-15T22:43:11 | 2018-05-15T22:43:11 | 116,961,356 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 130 | puml | @startuml
class Parent{
int a;
void function();
}
class Child{
int a;
void function();
}
Parent <|-- Child
@end
| false | true | false | false | class |
18f4f44fcf2943c60f4e7edf59bf2e632af7875c | b3b1f82b0656c970d39a505933c4f712b16d9798 | /factory_method.plantuml | a67f5208e37b16cc89a201a3b5add2cbbc9093d3 | [] | no_license | seryafarma/FactoryMethodPattern | 3493608d951cc0d054ca7cfd6fce25961dc94dca | efaf2646c3ef61f96b49532dd4852cce4cb228c5 | refs/heads/master | 2022-08-01T19:40:13.783423 | 2020-05-29T21:59:29 | 2020-05-29T21:59:29 | 266,235,186 | 0 | 0 | null | 2020-05-29T21:52:33 | 2020-05-23T00:41:57 | C++ | UTF-8 | PlantUML | false | false | 756 | plantuml | @startuml
Toy <|-- Car
Toy <|-- Bike
Toy <|-- Plane
Car <-- ToyFactory : create
Bike <-- ToyFactory : create
Plane <-- ToyFactory : create
ToyFactory <- Main : calls
class Main {
+main()
}
class ToyFactory {
+createToy(enum type)
}
class Toy {
-name
-price
+prepareParts()
+combineParts()
+assembleParts()
+applyLabel()
+showProduct()
+getName()
+getPrice()
}
class Car {
+prepareParts()
+combineParts()
+assembleParts()
+applyLabel()
+showProduct()
+getName()
+getPrice()
}
class Bike {
+prepareParts()
+combineParts()
+assembleParts()
+applyLabel()
+showProduct()
+getName()
+getPrice()
}
class Plane {
+prepareParts()
+combineParts()
+assembleParts()
+applyLabel()
+showProduct()
+getName()
+getPrice()
}
@enduml | false | true | false | false | class |
0919deafe0640fea37623233c2d5e607154258e7 | b939fd46b3cad8dd74283f9468fe782741352e4a | /assets/puml-theme-swedbankpay.puml | d7c5b0e5aa8397e4941986af47b06c3f50e4041b | [
"Apache-2.0"
] | permissive | SwedbankPay/developer.swedbankpay.com | 2179f1a0fccffe9348050e2721aa274006b80f86 | a4d43452f1591474e03182f1843ce5af3970f2c5 | refs/heads/develop | 2023-09-01T20:27:47.061075 | 2023-09-01T10:06:25 | 2023-09-01T10:06:25 | 210,605,116 | 9 | 42 | Apache-2.0 | 2023-09-13T21:10:03 | 2019-09-24T13:05:36 | Ruby | UTF-8 | PlantUML | false | false | 10,730 | puml | ''
'' swedbankpay theme based on https://design.swedbankpay.com
''
'' Author = "Asbjørn Ulsberg"
'' Copyright (c) 2021 Swedbank Pay
!$theme = "swedbankpay"
!$black = "#222222"
!$text_gray = "#767676"
!$list_gray = "#999999"
!$light_gray = "#f9f8f6"
!$white = "#ffffff"
!$solid_brown = "#2f2424"
!$dark_brown = "#493c3b"
!$medium_brown = "#72605e"
!$soft_brown = "#a38b80"
!$light_brown = "#d4c4bc"
!$orange = "#f35b1c"
!$light_orange = "#f5b895"
!$peach = "#fbf2ea"
!$cyan = "#257886"
!$light_cyan = "#ebf8f2"
!$brand_primary = "#fdc129"
!$brand_primary_light = "#ffcc00"
!$brand_primary_light_2 = "#ffdf88"
!$brand_primary_light_3 = "#fff3d5"
!$brand_secondary_dark_1 = $dark_brown
!$brand_secondary_dark_2 = $solid_brown
!$brand_secondary = "#512b2b"
!$brand_secondary_light_1 = $medium_brown
!$brand_secondary_light_2 = $soft_brown
!$brand_secondary_light_3 = $light_brown
!$brand_secondary_light_4 = "#d4b8a3"
!$brand_secondary_info_1 = "#8acdc3"
!$brand_secondary_info_2 = "#efb7b6"
!$brand_tertiary = "#ee7023"
!$brand_accent = "#31a3ae"
!$brand_accent_links = $cyan
!$brand_accent_disabled = "#98d0d6"
' Background Colors
!$brand_bg_1 = $peach
!$brand_bg_2 = $light_cyan
!$brand_bg_3 = "#fbedf4"
!$brand_bg_4 = "#e9f7fb"
!$brand_bg_gray = "#ebe7e2"
!$brand_bg_white = "#ffffff"
' State colors
!$brand_success = "#437e15"
!$brand_success_light = "#f2f7eb"
!$brand_success_light_2 = "#99cc66"
!$brand_warning = "#f9ce22"
!$brand_warning_light = "#fff3d5"
!$brand_warning_2 = $brand_tertiary
!$brand_error_border = "#f1bbb9"
!$brand_error = "#c5131c"
!$brand_error_light = "#f9ded3"
!$brand_info = "#3e6ab6"
!$brand_info_light = "#e8eff9"
!$primary_text = $solid_brown
!$secondary_text = $black
!$info_text = $black
!$success_text = $white
!$warning_text = $white
!$danger_text = $white
!procedure $code($msg)
<font:Consolas>$msg</font>
!endprocedure
!procedure $participant($sprite, $title)
participant "<$$sprite,color=$light_orange>\n\n$title"
!endprocedure
!procedure $primary_scheme()
FontColor $primary_text
BorderColor $light_orange
BackgroundColor $peach
!endprocedure
sprite $payer [75x79/4z] {
xT85bWCn30JHxjBzpxmCyeGC2gV2CF-PT9uC4NpT0Y82088WVmpu_Zc8tp-3cbXAAJyW5NT2lQWNzQ9U5FT0EGVO1d17BRM5-NsrJjPUV126GSfiO4zJj1Ha
TOW2-m2bCSeWaygNqrL2YoXm4MNGbj8S1LgcudTwErHCKSOg6XMeW299BUKbIakKazHUeq7AIbHkGraIM2Vgf0mw5UwYGCDKxAN07HIxdurRog0PoZBA0MY2
4eWTokh8UCVQfQIfONcNKb-xez-XB4qEIxYCaYOfGnMbGied_Wkg6fO7B4uDgtArAADycyE2ilFW6pscLdTmYvJW5YdZAafGHXbNKO92obMKu1OfuofAK40L
z0u
}
sprite $merchant [75x62/4z] {
xPG7TiCm3CM8h_kVEJkXPPggdjZT8c-PYE4j-nZG6eHI64u1aaAfS3MxRLk6SieHoVNLKrAx_feYxKegf9XoSEP4cY8J2YBEgQLQc2-auXuj4yobbCwdK_4A
MKYrOq5oYFaB98pZ3jycnLIAGqCzrRB_Es8k9GvJuaLkK9QgyqpXzVugPbLoLjWBJQjq74HG117dcEJZNj6fuzFjPZmCKgOKLJXVjcKwPMFbI8Xj6dnZh48A
M-KdfHXz5ueCKqWHxYdsBAIqbD8efPw_aVfF_QTQCSKLUu0LKcQ0EQmlCcQIXYcGD7LM7J657fHJ21uH6p6HyeAki9wIUzrPJ-6b1-KKUa8r9USRfEujU3k5
Y9DD2abrdcdgN3jd
}
sprite $server [75x98/4z] {
xPS5hkH050FjyltFl3JGcWo_UALF9GXNcgsMH0D9CXqiWHg0X5K16xLKud2IELoe4kOa5ohs4A-sSjZ7AXMqLNAkZYDLJcqcwNJjdcfQmVZgE53rUj2zSQLz
gelHxlm3ai3X40wd0AUhq_MwI18lrJ_PdF-oo5WDZ0HsmuGaEXoC3LJb8qOg7pHIrOzKCeMF6gdghgAF8pNZIFMfekluGIBrIlaIkOfKiccY37BmeqMgsf6g
F0Bo4FLpiAcY6AbOtWlTI2s5gkhuPvVwgaeLl5JE56zKP7VlgR45uA1IGPLhrLQOiSgR8r86gglyMyUHwbgPcOeGheu3LQq7QOmheztnx8k9Op85QwaAT5NT
LHJi3nQfBm6em1TI_QX-L3yg3lHCqAgTmGNJfBsuYH_j4uggUWLVTvLCgsPgkQmEhtb-0m
}
sprite $3rdparty [75x67/4z] {
xPO7biCW34JvtF_EszS3cIU7bqbFj7LawGSBKTg20RHpMF-pcCOlHgo8n8PCISEBajLf4j6WcC0aA1jZ-7xdHt7MKPslLYJDW86ZRj3_wLgsnWzO0686hCrQ
RfndkyhBv3rnVwYJQzuNBIV9LcOBPlj9T1yh-uhZAG8pb9mdT6Cld1nV8-xqj2xdwlL0pedkJg-9LU77LpZhSGsxd3cdD3fwMABeZ17IuakBwU_trmnJ5dyl
Ve3gXif7TVvQvJDu_hxAk_tyQ_3yEyFvzwlz3TETyc6V6vXDU61MZ79sBDgIwn8YhUPUaZuRXjeZ4w7Q6nMKFM-66YMDzQH9p_ORiFJmV5-oDJxyA8q9HHUI
PjdqhW9Cvm9-JEYlIJQV7WgfF_AxLBI4KXKiSfCSuZR9XDBdADZaZ690SNHKCueQjL0h5cjrnXayNr-ThzkbxLHSbih-1
}
''
'' Global Default Values
''
skinparam backgroundColor "transparent"
skinparam useBetaStyle false
skinparam creoleMonospacedFont "Consolas"
skinparam defaultMonospacedFontName "Consolas"
skinparam defaultFontName "Arial"
skinparam defaultFontSize 16
skinparam dpi 100
skinparam shadowing false
skinparam roundcorner 20
skinparam ParticipantPadding 40
skinparam BoxPadding 40
skinparam Padding 8
skinparam ArrowColor $orange
skinparam stereotype {
CBackgroundColor $brand_secondary_light_1
CBorderColor $orange
ABackgroundColor $brand_success_light
ABorderColor $brand_success
IBackgroundColor $brand_error_light
IBorderColor $brand_error
EBackgroundColor $brand_warning_light
EBorderColor $brand_warning
NBackgroundColor $brand_info_light
NBorderColor $brand_info
}
skinparam title {
FontColor $primary_text
BorderColor $orange
FontSize 20
BorderRoundCorner 8
BorderThickness 1
BackgroundColor $peach
}
skinparam legend {
BackgroundColor $brand_secondary
BorderColor $brand_secondary_dark_1
FontColor $primary_text
}
!startsub swimlane
skinparam swimlane {
BorderColor $brand_info
BorderThickness 2
TitleBackgroundColor $brand_secondary
TitleFontColor $primary_text
}
!endsub
!startsub activity
skinparam activity {
$primary_scheme()
BarColor $brand_success
StartColor $brand_info
EndColor $brand_info
''
DiamondBackgroundColor $brand_secondary_light_1
DiamondBorderColor $brand_secondary_dark_1
DiamondFontColor $primary_text
}
!endsub
!startsub participant
skinparam participant {
$primary_scheme()
BorderThickness 0
BackgroundColor $white
ParticipantBorderThickness 2
}
!endsub
!startsub actor
skinparam actor {
$primary_scheme()
BackgroundColor $peach
BorderColor $orange
}
!endsub
!startsub arrow
skinparam arrow {
Thickness 1
Color $orange
FontColor $primary_text
}
!endsub
!startsub sequence
skinparam sequence {
BorderColor $orange
' For some reason sequence title font color does not pick up from global
TitleFontColor $primary_text
BackgroundColor $peach
StartColor $orange
EndColor $orange
''
BoxBackgroundColor $brand_bg_1
BoxBorderColor $brand_secondary_dark_1
BoxFontColor $primary_text
''
DelayFontColor $primary_text
''
LifeLineBorderColor $orange
LifeLineBorderThickness 1
LifeLineBorderRoundCorner 20
LifeLineBackgroundColor $white
''
GroupBorderThickness 1
GroupBorderColor $orange
GroupFontColor $primary_text
GroupHeaderFontColor $primary_text
GroupHeaderFontWeight 1
GroupBackgroundColor $white
GroupBodyBackgroundColor $peach
GroupHeaderBackgroundColor $brand_primary_light_2
''
DividerBackgroundColor $brand_secondary_dark_1
DividerBorderColor $brand_secondary_dark_1
DividerBorderThickness 2
DividerFontColor $primary_text
''
ReferenceBackgroundColor $brand_primary_light_2
ReferenceBorderColor $brand_secondary_dark_1
ReferenceFontColor $primary_text
ReferenceHeaderFontColor $primary_text
ReferenceHeaderBackgroundColor $brand_secondary
''
StereotypeFontColor $primary_text
}
!endsub
!startsub partition
skinparam partition {
BorderColor $brand_primary
FontColor $primary_text
BackgroundColor $brand_primary_light_2
}
!endsub
!startsub collections
skinparam collections {
$primary_scheme()
}
!endsub
!startsub control
skinparam control {
$primary_scheme()
}
!endsub
!startsub entity
skinparam entity {
$primary_scheme()
}
!endsub
!startsub boundary
skinparam boundary {
$primary_scheme()
}
!endsub
!startsub agent
skinparam agent {
BackgroundColor $brand_warning
BorderColor $brand_warning_light
FontColor $primary_text
}
!endsub
!startsub note
skinparam note {
BorderThickness 1
BackgroundColor $brand_bg_2
BorderColor $cyan
}
!endsub
!startsub artifact
skinparam artifact {
BackgroundColor $brand_secondary_dark_1
BorderColor $brand_secondary_dark_2
FontColor $primary_text
}
!endsub
!startsub component
skinparam component {
$primary_scheme()
}
!endsub
!startsub interface
skinparam interface {
BackgroundColor $brand_error
BorderColor $brand_error
FontColor $primary_text
}
!endsub
!startsub storage
skinparam storage {
$primary_scheme()
}
!endsub
!startsub node
skinparam node {
$primary_scheme()
}
!endsub
!startsub cloud
skinparam cloud {
$primary_scheme()
}
!endsub
!startsub database
skinparam database {
$primary_scheme()
}
!endsub
!startsub class
skinparam class {
$primary_scheme()
HeaderBackgroundColor $brand_primary_light
StereotypeFontColor $primary_text
BorderThickness 1
AttributeFontColor $primary_text
AttributeFontSize 11
}
!endsub
!startsub object
skinparam object {
$primary_scheme()
StereotypeFontColor $primary_text
BorderThickness 1
AttributeFontColor $primary_text
AttributeFontSize 11
}
!endsub
!startsub usecase
skinparam usecase {
$primary_scheme()
BorderThickness 2
StereotypeFontColor $primary_text
}
!endsub
!startsub rectangle
skinparam rectangle {
$primary_scheme()
StereotypeFontColor $primary_text
}
!endsub
!startsub package
skinparam package {
$primary_scheme()
}
!endsub
!startsub folder
skinparam folder {
$primary_scheme()
}
!endsub
!startsub frame
skinparam frame {
$primary_scheme()
}
!endsub
!startsub state
skinparam state {
$primary_scheme()
StartColor $orange
EndColor $brand_secondary
AttributeFontColor $primary_text
AttributeFontSize 11
}
!endsub
!startsub queue
skinparam queue {
$primary_scheme()
}
!endsub
!startsub card
skinparam card {
$primary_scheme()
}
!endsub
!startsub file
skinparam file {
$primary_scheme()
}
!endsub
!startsub stack
skinparam stack {
$primary_scheme()
}
!endsub
| false | true | true | false | sequence |
2461ba6ce1d7e04d7e7485c43159a571acc77dff | f4da6e8a094f5658cf24ac46369905315f1c66a0 | /ieee2410nominal.plantuml | 538724dbd6137271909a3853d271c460a85300f1 | [
"Apache-2.0"
] | permissive | p1940/p1940 | 43def654658c0f417798cdd39e924073559a1736 | 592b407cf7da1799da58a5591531802b7a8c9073 | refs/heads/master | 2021-03-29T19:28:23.448288 | 2020-07-22T16:02:08 | 2020-07-22T16:02:08 | 247,979,736 | 1 | 19 | Apache-2.0 | 2021-01-26T05:06:30 | 2020-03-17T13:40:33 | TeX | UTF-8 | PlantUML | false | false | 798 | plantuml | @startuml
autonumber
participant "Mobile App" as MobileApp
participant "Mobile App\nServer" as MobileSrv
participant "IEEE 2410\nMobile SDK" as SDK
participant "IEEE 2410\nServer" as Server
MobileSrv -> Server : **AuthenticationRequest**
note right : VTR
Server -> MobileSrv : **AuthenticationRequest** returns sessionId (& required biometries?)
MobileSrv --> MobileApp : sessionId for Auth
MobileApp --> SDK : Vendor Authentication Initiated
SDK -> Server : **RegisterSession**
Server -> SDK : **RegisterSession** returns biometries to check (?)
SDK -> SDK : Perform biometric\nauthentication
SDK -> Server : **AuthenticationResponse**
Server -> SDK : **AuthenticationResponse** returns issued identity token
note right : VOT
SDK --> MobileSrv : Authentication response & identity token
@enduml
| false | true | false | false | sequence |
9dcf77ae32f45722b38eb1cebe24bddac2d82684 | ed160782ff6013bb6dc5e26c388b04982bc6a04c | /Client/src/sample/sample.plantuml | afe9d0d3cc99fa8a819b8c709b7931009a8d89c3 | [] | no_license | sherifawad/bankSystemNoSteg | bdf5a04bc05253f806a7dca8cc74bc6dece929d2 | 075f6b4c35cb497587bc2e6df5d7bf09cf07f730 | refs/heads/master | 2022-11-27T06:12:05.257346 | 2020-08-07T12:43:57 | 2020-08-07T12:43:57 | 285,826,736 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,612 | plantuml | @startuml
title __SAMPLE's Class Diagram__\n
package sample {
class ClientMain {
+ start()
{static} + main()
}
}
package sample {
class Controller {
- btnsm : Button
- chs : CheckBox
- btnsi : Button
- btnso : Button
- btnse : Button
- btnsc : Button
- btnrm : Button
- btnro : Button
- btnre : Button
- btnrc : Button
- listview : ListView
~ fileAsString : String
~ stegFileAsString : String
~ outputFile : String
~ outputDir : String
~ srcFiles : String[]
~ filesAsString : ArrayList<String>
~ selectedFile : File
~ stegFile : File
~ saveFile : File
~ selectedDirectory : File
~ selectedFiles : List<File>
- buttonArrayList : ArrayList<Button>
{static} ~ newMap : HashMap<String, byte[]>
+ initialize()
+ checkBox()
+ singleChooser()
+ steg()
+ multiChooser()
+ fileSaving()
+ outputDir()
+ senderExecute()
+ receiveExecute()
- buttonsList()
- disableButtons()
- enableButtons()
}
}
ClientMain -up-|> Application
Controller -up-|> Initializable
Controller o-- Client : client
Controller o-- Algorithm : algorithm
Controller o-- publicParameters : publicParameter
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 |
c823c4692e48690fb4f7338d462126fdd3422f6c | 7a1d90175f78470e0b54d5431d12c21132d826ff | /docs/connector/connector-bob-accepts.puml | 1dd23e2b8b9d7616fde5761ca94fd8c95993e375 | [
"Apache-2.0",
"CC-BY-3.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 | 1,810 | puml | @startuml
autonumber
participant "App" as app
participant "WRTC\nAPI" as wrtcAPI
participant "Connector\nHyperty" as voiceH
participant "Connection\nController" as connCtrl
participant "Connection\nData Object" as ConnA
participant "Bob Peer\nData Object" as ConnB
participant "Syncher" as sync
participant "Message BUS" as bus
bus -> sync : postMessage( createConnectionObjectReq )
sync -> voiceH : onNotification( notification )
group Hyperty acknowledges notification received
sync <- voiceH : notification.ack()
sync -> bus : postMessage( createConnectionObjectRes )
end group
group Hyperty subscribes connection object
voiceH -> sync : subscribe( connectionURL )
create ConnA
sync -> ConnA : new()
sync -> bus : postMessage( subscribeConnectionReq )
...
sync <- bus : postMessage( subscribeConnectionRes )
sync --> voiceH : return ConnectionDataObject
voiceH --> sync : notification.accept()
create connCtrl
voiceH -> connCtrl : new( Connection )
connCtrl -> connCtrl : Object.observe(Connection, callback )
voiceH -> app : on( ConnectionController )
end group
newpage
group Bob accepts Connection Invitation from Alice
app -> connCtrl : accept()
connCtrl -> ConnA : get Alice CommResources\n(incl SDP)
connCtrl <-- ConnA : return Alice CommResources\n(incl SDP)
connCtrl -> wrtcAPI : set Alice CommResources\n(incl SDP)
connCtrl -> wrtcAPI : get CommResources\n(incl SDP)
connCtrl <-- wrtcAPI : return CommResources\n(incl SDP)
connCtrl -> sync : create( connectionObjSchema, CommResources, aliceHypertyURL )
create ConnB
sync -> ConnB : new()
sync -> sync : Object.observe( Connection )
sync -> bus : postMessage( createBobPeerObjectReqMsg )
...
sync <- bus : postMessage( createBobPeerObjectResOkMsg )
connCtrl <-- sync : return BobPeer
end group
@enduml
| false | true | false | false | sequence |
295cd48928ac3f9b13037771b7279279fceb4d8e | 8cf018eb6de40017601592f1f125ea67d5de7086 | /docs/Solution/Service-Stack/Storage-Services/UseCases.puml | 5f479400be47bc0df44da02f41b415a6af03a516 | [] | no_license | CAADE/ADC | bec251477e457a9ee4eca673fdab04b65c4290f5 | a81ba7532e7092ab564bcb30f8ec36bab3b71d0b | refs/heads/master | 2021-06-23T22:20:00.239150 | 2019-04-03T05:15:20 | 2019-04-03T05:15:20 | 104,887,854 | 5 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 341 | puml | @startuml
left to right direction
skinparam usecase {
BackgroudnColor #ffffaa
BackgroundColor<<Main>> #lightblue
}
actor :User: <<Person>>
actor :SubSystem: <<Person>>
rectangle "Service-Stack/Storage-Services" {
UseCase UC1 <<Main>> as "Use Case1"
UseCase UC2 as "Use Case2"
User --> UC1
UC1 --> UC2
UC2 --> SubSystem
}
@enduml
| false | true | false | false | usecase |
03e3d7ad0169070dd8d88edd62218fa7e7e350f2 | 0c5e47ecc8c280c7b6c41e585aace67524473bd4 | /src/main/resources/uebung4/exercise011d5.puml | a786341028af18ddd5d70a588651edbf95df42b3 | [] | no_license | phbenisc/msiComplexTheorie | bad88319e1ffe89bcb9c09d71b48447afab12897 | 24ba533c2915308f1edc304d37583cbed76c386f | refs/heads/master | 2023-02-27T21:38:58.384128 | 2021-02-01T07:57:27 | 2021-02-01T07:57:27 | 306,917,234 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 387 | puml | @startuml
'scale 350 width
left to right direction
skinparam monochrome true
skinparam state {
BackgroundColor<<A>> Green
BorderColor Gray
}
[*] --> n0
'
state "nein" as n0
state "nein" as n1 <<A>>
state "nein" as n2
state "nein" as n3
state "ja" as j0 <<A>>
n0: 0
j0: 1
n1: 2
n2: 3
n3: 4
n0 --> n2: a
n2 --> n1: b
n1 --> n1: a
n1 --> n1: b
n1 --> n3: a
n3 --> j0: b
@enduml
| false | true | false | false | sequence |
922c9f8d6d6d4d112c4646833fac25ebe30016ac | e48aa6eb3063f355a4d92a6faa1570453d8f3215 | /design/paper-seq-reassemble.puml | a26530cbb50d9096ad84315f8fa2c500fb1aee35 | [] | no_license | yaoyaocjj/exam-plantform | 7e10d79fa7383d38a4dccd47f5b64c9f1f8b7cd3 | 899bff475e5125bb74a2ef27021b65657298919f | refs/heads/master | 2022-11-09T08:13:49.363564 | 2020-07-04T12:56:41 | 2020-07-04T12:56:41 | 276,091,946 | 1 | 0 | null | 2020-06-30T12:27:28 | 2020-06-30T12:27:27 | null | UTF-8 | PlantUML | false | false | 408 | puml | @startuml
actor Teacher
Teacher -> PaperController : PUT /paper/:paper_id
PaperController -> PaperController: transform()
PaperController -> PaperService : reassemblePaper()
entity Paper
PaperService -> PaperRepository: find()
database paperDB
PaperRepository -> paperDB: SELECT ***
PaperService -> Paper : reassemble()
PaperService -> PaperRepository: save()
PaperRepository -> paperDB: UPDATE ***
@enduml | false | true | false | false | sequence |
4e15552136b3d7b7141eae62e4ba0367d81627dc | 49201c6059aff7268f202bb61942cc3eb7ba462b | /PrechatClass.puml | df0f8979a2c1db93946804d3b148906af71b8d1b | [] | no_license | OzBenDev/designs | fdc614d5ceff22e14600d1614c7b206aec375a70 | d22aa7238f080312bb9bded8ac77676cc5e630fd | refs/heads/master | 2023-08-07T14:00:41.829442 | 2021-09-14T13:14:47 | 2021-09-14T13:14:47 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,463 | puml | @startuml
class BoldChatUIHandler
class FormConfiguration
BoldChatUIHandler --> PreChatFragment : creates
PreChatFragment ..down|> FormPresenter
interface FormConfiguration{
getFieldMainTextStyle() : StyleConfig
getFieldSecondaryTextStyle() : StyleConfig
getFieldBackground() : Int
getFieldHeight(): Int
}
interface FormPresenter{
fun showForm()
fun validateForm()
}
abstract class PreChat {
- List <FormField> FormFields
- String Branding
}
class PreChatData {
PreChat
branding (specific)
}
class BoldChatUIHandler{
var branding
showPreChat()
}
PreChatData --|> PreChat
class PreChatFragment {
- object PreChatData: Form
- interface submitListener: FormListener
- initFormAdapter(context, container, PreChatData)
}
PreChatFragment *--> PreChatData
class BoldFormFieldsAdapter {
- getTextInputView(formField: FormField): BaseFormComponent?
- getSelectionView(formField: FormField): BaseFormComponent?
+ addFormFields()
+ validateForm()
}
BoldFormFieldsAdapter *--down> FormConfiguration
PreChatFragment *-right> BoldFormFieldsAdapter
interface FormComponent{
fun setDataAndValidate() : Boolean
fun onValidationError()
fun getData() : String?
}
abstract class BaseFormComponent
SelectionView --up|> BaseFormComponent
TextInputView --up|> BaseFormComponent
BaseFormComponent ..left|> FormComponent
BoldFormFieldsAdapter *--> BaseFormComponent
@enduml | false | true | false | false | sequence |
44e077a765b918f77826d1371dca02182d12a19f | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/blue/1090657/sp2/workbook.puml | bb646158881eb3f4c22179a15853c32bd1604cdf | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 397 | puml | @startuml workbook.png
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
hide empty methods
class Workbook {
-List<Spreadsheet> spreadsheets
}
class Spreadsheet
Class WorkbookDescription {
-name
-description
-workbook
}
Workbook o-- Spreadsheet: has
WorkbookDescription *-- Workbook
@enduml | false | true | false | false | class |
8d1d63a6b0847ddd7f45e71a10760918f3332108 | 1136a23e1c82aee31c05882fe3ef9fabb9167e7c | /src/DecoratorPattern/UML.puml | fa93e19378475255a262f67d465217eb68c1e511 | [] | no_license | vladv75/DesignPatterns | 868a42fff7b37fa5b8e48b7ef85bce7b654266ed | fa1bdee0798f47c0a850481f67db6aab8d30156a | refs/heads/master | 2021-01-20T20:52:38.291802 | 2016-02-07T10:31:05 | 2016-02-07T10:31:05 | 60,034,456 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 668 | puml | @startuml
abstract class Beverage {
description
getDescription()
cost()
}
abstract class CondimentDecorator {
getDescription()
}
Beverage <|-- Espresso
Beverage <|-- DarkRoast
Beverage <|-- CondimentDecorator
CondimentDecorator <|-- Milk
CondimentDecorator <|-- Mocha
CondimentDecorator <|-- Whip
class Espresso {
description = "Espresso"
cost()
}
class DarkRoast {
description = "DarkRoast"
cost()
}
class Milk {
Beverage beverage;
getDescription();
cost();
}
class Mocha {
Beverage beverage;
getDescription();
cost();
}
class Whip {
Beverage beverage;
getDescription();
cost();
}
@enduml | false | true | false | false | class |
b3ef2197fb1a46c8d6f672270a574f95a5f15175 | 7f8dfe38b0cf7874b6a9483449ac4bde2349b47f | /Student.puml | f1c942aa8b1abc1e0e36dba5a2f2c48a74d59ea3 | [] | no_license | xchgx/JavaOOP | ec5d5e27fc00ba2e6660543249c299f7f8566e68 | 696f7c6fbda6f396e765cc87e7ba38b80afee7e4 | refs/heads/master | 2022-11-06T21:24:32.726711 | 2020-06-24T02:53:30 | 2020-06-24T02:53:30 | 262,337,687 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 22,021 | puml | @startuml
abstract class com.xchgx.javaoop.course07.beike01.Xingzhuang
abstract class com.xchgx.javaoop.course07.beike02.Food
abstract class com.xchgx.javaoop.course07.beike03.Food
abstract class com.xchgx.javaoop.course07.beike03.Meat
abstract class com.xchgx.javaoop.course07.ketangbiji01.Person
abstract class com.xchgx.javaoop.course07.ketangbiji02.Parent
abstract class com.xchgx.javaoop.course07.ketangbiji03.Parent
abstract class com.xchgx.javaoop.course07.ketangbiji05.Xingzhuang
annotation java.lang.Override
class com.xchgx.javaoop.course01.beike01.Calculator
class com.xchgx.javaoop.course01.beike01.Student
class com.xchgx.javaoop.course01.beike01.Test
class com.xchgx.javaoop.course01.demo.Calc
class com.xchgx.javaoop.course01.demo.Test
class com.xchgx.javaoop.course01.ketangbiji1.Calc
class com.xchgx.javaoop.course01.ketangbiji1.Test
class com.xchgx.javaoop.course02.beike.Changfangxing
class com.xchgx.javaoop.course02.beike.ChangfangxingTest
class com.xchgx.javaoop.course02.beike.Sanjiaoxing
class com.xchgx.javaoop.course02.beike.SanjiaoxingTest
class com.xchgx.javaoop.course02.beike.Tixing
class com.xchgx.javaoop.course02.beike.TixingTest
class com.xchgx.javaoop.course02.beike.Zhengfangxing
class com.xchgx.javaoop.course02.beike.ZhengfangxingTest
class com.xchgx.javaoop.course02.ketangbiji01.RandomStudentTest
class com.xchgx.javaoop.course02.ketangbiji01.Sanjiaoxing
class com.xchgx.javaoop.course02.ketangbiji01.SanjiaoxingTest
class com.xchgx.javaoop.course02.ketangbiji01.Tixing
class com.xchgx.javaoop.course02.ketangbiji01.TixingTest
class com.xchgx.javaoop.course02.ketangbiji01.Zhengfangxing
class com.xchgx.javaoop.course02.ketangbiji01.ZhengfangxingTest
class com.xchgx.javaoop.course03.beike01.Employee
class com.xchgx.javaoop.course03.beike01.Manager
class com.xchgx.javaoop.course03.beike01.Test
class com.xchgx.javaoop.course03.beike02.Person
class com.xchgx.javaoop.course03.beike02.Student
class com.xchgx.javaoop.course03.beike02.Test
class com.xchgx.javaoop.course03.beike03.Person
class com.xchgx.javaoop.course03.beike03.Student
class com.xchgx.javaoop.course03.beike03.Test
class com.xchgx.javaoop.course03.beike031.Child
class com.xchgx.javaoop.course03.beike031.Parent
class com.xchgx.javaoop.course03.beike031.Test
class com.xchgx.javaoop.course03.beike04.Pentagon
class com.xchgx.javaoop.course03.beike04.Rectangle
class com.xchgx.javaoop.course03.beike04.Shape
class com.xchgx.javaoop.course03.beike04.Test
class com.xchgx.javaoop.course03.beike04.Triangle
class com.xchgx.javaoop.course03.beike05.Employee
class com.xchgx.javaoop.course03.beike05.Manager
class com.xchgx.javaoop.course03.beike06.Employee
class com.xchgx.javaoop.course03.beike06.Manager
class com.xchgx.javaoop.course03.beike06.Test
class com.xchgx.javaoop.course03.ketangbiji01.Employee
class com.xchgx.javaoop.course03.ketangbiji01.Manager
class com.xchgx.javaoop.course03.ketangbiji01.Manager2
class com.xchgx.javaoop.course03.ketangbiji01.Manager2Test
class com.xchgx.javaoop.course03.ketangbiji02.Person
class com.xchgx.javaoop.course03.ketangbiji02.Student
class com.xchgx.javaoop.course03.ketangbiji02.StudentTest
class com.xchgx.javaoop.course04.beike01.Dongwu
class com.xchgx.javaoop.course04.beike01.Hu
class com.xchgx.javaoop.course04.beike01.Niu
class com.xchgx.javaoop.course04.beike01.Shu
class com.xchgx.javaoop.course04.beike01.Test
class com.xchgx.javaoop.course04.beike01.Test2
class com.xchgx.javaoop.course04.beike02.Caigou
class com.xchgx.javaoop.course04.beike02.Programer
class com.xchgx.javaoop.course04.beike02.Worker
class com.xchgx.javaoop.course04.beike02.WorkerTest
class com.xchgx.javaoop.course04.beike02.Xiaoshou
class com.xchgx.javaoop.course04.ketangbiji01.Dongwu
class com.xchgx.javaoop.course04.ketangbiji01.Niu
class com.xchgx.javaoop.course04.ketangbiji01.Shu
class com.xchgx.javaoop.course04.ketangbiji01.Test
class com.xchgx.javaoop.course04.ketangbiji02.Caigou
class com.xchgx.javaoop.course04.ketangbiji02.Employee
class com.xchgx.javaoop.course04.ketangbiji02.Programer
class com.xchgx.javaoop.course04.ketangbiji02.Test
class com.xchgx.javaoop.course04.ketangbiji02.Xiaoshou
class com.xchgx.javaoop.course04.ketangbiji03.Sanjiaoxing
class com.xchgx.javaoop.course04.ketangbiji03.Sibianxing
class com.xchgx.javaoop.course04.ketangbiji03.Test
class com.xchgx.javaoop.course04.ketangbiji03.Wubianxing
class com.xchgx.javaoop.course04.ketangbiji03.Xingzhuang
class com.xchgx.javaoop.course05.beike01.Bijiao
class com.xchgx.javaoop.course05.beike02.User
class com.xchgx.javaoop.course05.beike02.UserTest
class com.xchgx.javaoop.course05.beike03.Foodie
class com.xchgx.javaoop.course05.beike03.Shuiguo
class com.xchgx.javaoop.course05.beike03.Shushi
class com.xchgx.javaoop.course05.beike03.Test
class com.xchgx.javaoop.course05.ketangbiji01.Bijiao
class com.xchgx.javaoop.course05.ketangbiji01.Test
class com.xchgx.javaoop.course05.ketangbiji02.Test
class com.xchgx.javaoop.course05.ketangbiji02.User
class com.xchgx.javaoop.course05.ketangbiji03.Meat
class com.xchgx.javaoop.course05.ketangbiji03.My
class com.xchgx.javaoop.course05.ketangbiji03.Shuiguo
class com.xchgx.javaoop.course05.ketangbiji03.Shushi
class com.xchgx.javaoop.course05.ketangbiji03.Test
class com.xchgx.javaoop.course05.ketangbiji04.User
class com.xchgx.javaoop.course06.beike01.Food
class com.xchgx.javaoop.course06.beike01.Meat
class com.xchgx.javaoop.course06.beike01.My
class com.xchgx.javaoop.course06.beike01.Shuiguo
class com.xchgx.javaoop.course06.beike01.Shushi
class com.xchgx.javaoop.course06.beike01.Test
class com.xchgx.javaoop.course06.beike02.Person
class com.xchgx.javaoop.course06.beike02.Student
class com.xchgx.javaoop.course06.beike03.Person
class com.xchgx.javaoop.course06.beike03.Student
class com.xchgx.javaoop.course06.beike04.Person
class com.xchgx.javaoop.course06.beike05.Foodie
class com.xchgx.javaoop.course06.beike05.Shuiguo
class com.xchgx.javaoop.course06.beike05.Shushi
class com.xchgx.javaoop.course06.beike05.Test
class com.xchgx.javaoop.course06.ketangbiji01.Food
class com.xchgx.javaoop.course06.ketangbiji01.Meat
class com.xchgx.javaoop.course06.ketangbiji01.Mianbao
class com.xchgx.javaoop.course06.ketangbiji01.My
class com.xchgx.javaoop.course06.ketangbiji01.Shuiguo
class com.xchgx.javaoop.course06.ketangbiji01.Shushi
class com.xchgx.javaoop.course06.ketangbiji01.Test
class com.xchgx.javaoop.course07.beike01.Sanjiaoxing
class com.xchgx.javaoop.course07.beike01.XingzhuangTest
class com.xchgx.javaoop.course07.beike01.Zhengfangxing
class com.xchgx.javaoop.course07.beike03.FoodTest
class com.xchgx.javaoop.course07.beike03.Shuiguo
class com.xchgx.javaoop.course07.beike04.Sanjiaoxing
class com.xchgx.javaoop.course07.beike04.Zhengfangxing
class com.xchgx.javaoop.course07.beike05.Child
class com.xchgx.javaoop.course07.beike05.Parent
class com.xchgx.javaoop.course07.beike05.Test
class com.xchgx.javaoop.course07.hero.beike06.GameStart
class com.xchgx.javaoop.course07.hero.beike07.Drj
class com.xchgx.javaoop.course07.hero.beike07.GameStart2
class com.xchgx.javaoop.course07.hero.beike07.Zgl
class com.xchgx.javaoop.course07.hero.beike08.Cyj
class com.xchgx.javaoop.course07.hero.beike08.Drj
class com.xchgx.javaoop.course07.hero.beike08.GameStart3
class com.xchgx.javaoop.course07.hero.beike08.Hero
class com.xchgx.javaoop.course07.hero.beike08.Zgl
class com.xchgx.javaoop.course07.ketangbiji01.Test
class com.xchgx.javaoop.course07.ketangbiji02.Child
class com.xchgx.javaoop.course07.ketangbiji02.Test
class com.xchgx.javaoop.course07.ketangbiji03.Child
class com.xchgx.javaoop.course07.ketangbiji03.Test
class com.xchgx.javaoop.course07.ketangbiji04.Sanjiaoxing
class com.xchgx.javaoop.course07.ketangbiji04.Zhengfangxing
class com.xchgx.javaoop.course07.ketangbiji05.Sjx
class com.xchgx.javaoop.course07.ketangbiji05.Test
class com.xchgx.javaoop.course08.beike01.ChildJiekouImpl
class com.xchgx.javaoop.course08.beike01.ChildJiekouImplTest
class com.xchgx.javaoop.course08.beike01.JiekouImpl
class com.xchgx.javaoop.course08.beike01.JiekouTest
class com.xchgx.javaoop.course08.beike03.DriverTest
class com.xchgx.javaoop.course08.beike04.RacerPeople
class com.xchgx.javaoop.course08.beike04.RacerTest
class com.xchgx.javaoop.course08.beike05.TeachTest
class com.xchgx.javaoop.course08.beike05.Teacher
class com.xchgx.javaoop.course08.beike06.NiuRen
class com.xchgx.javaoop.course08.beike06.NiuRenTest
class com.xchgx.javaoop.course08.beike07.InterCpu
class com.xchgx.javaoop.course08.beike07.Test
class com.xchgx.javaoop.course08.ketangbiji01.ChildJiekouImpl
class com.xchgx.javaoop.course08.ketangbiji01.ChildJiekouTest
class com.xchgx.javaoop.course08.ketangbiji01.JiekouImpl
class com.xchgx.javaoop.course08.ketangbiji01.JiekouTest
class com.xchgx.javaoop.course08.ketangbiji01.Man
class com.xchgx.javaoop.course08.ketangbiji02.Test
class com.xchgx.javaoop.course09.beike01.Student
class com.xchgx.javaoop.course09.beike02.Teacher
class com.xchgx.javaoop.course09.beike03.FindMax
class com.xchgx.javaoop.course09.ketangbiji01.Test
class com.xchgx.javaoop.course09.ketangbiji01.Test2
class com.xchgx.javaoop.course09.ketangbiji01.Test3
class com.xchgx.javaoop.course10.beike01.DataCount
class com.xchgx.javaoop.course10.beike01.DataCountTest
class com.xchgx.javaoop.course10.ketangbiji01.DataCount
class com.xchgx.javaoop.course10.ketangbiji01.DataCountTest
class com.xchgx.javaoop.course11.beike01.DataCount
class com.xchgx.javaoop.course11.beike01.DataCountTest
class com.xchgx.javaoop.course11.beike02.DataCount
class com.xchgx.javaoop.course11.beike02.DataCountTest
class com.xchgx.javaoop.course11.ketangbiji01.DataCount
class com.xchgx.javaoop.course11.ketangbiji01.DataCountTest
class com.xchgx.javaoop.course12.beike01.ArrayListTest
class com.xchgx.javaoop.course12.beike01.TwoArrayTest
class com.xchgx.javaoop.course12.beike01.TwoArrayYanghuiTest
class com.xchgx.javaoop.course12.beike02.App
class com.xchgx.javaoop.course12.beike02.App2
class com.xchgx.javaoop.course12.beike02.App3
class com.xchgx.javaoop.course12.beike02.Manager
class com.xchgx.javaoop.course12.beike02.Student
class com.xchgx.javaoop.course12.ketangbiji01.TwoArrayTest
class com.xchgx.javaoop.course12.ketangbiji01.TwoArrayYanghuiTest
class com.xchgx.javaoop.course12.ketangbiji02.ArrayListTest
class com.xchgx.javaoop.course12.ketangbiji03.Manager
class com.xchgx.javaoop.course12.ketangbiji03.Student
class com.xchgx.javaoop.course13.beike01.LiaoTianJiLu
class com.xchgx.javaoop.course13.beike01.StringTest
class com.xchgx.javaoop.course13.beike01.Student
class com.xchgx.javaoop.course13.beike02.Manager
class com.xchgx.javaoop.course13.beike02.Student
class java.io.BufferedReader
class java.io.File
class java.io.FileInputStream
class java.io.FileNotFoundException
class java.io.IOException
class java.io.InputStreamReader
class java.util.ArrayList
class java.util.List
class java.util.Scanner
interface com.xchgx.javaoop.course08.beike01.ChildJiekou
interface com.xchgx.javaoop.course08.beike01.Jiekou
interface com.xchgx.javaoop.course08.beike02.Driver
interface com.xchgx.javaoop.course08.beike03.Driver
interface com.xchgx.javaoop.course08.beike04.Racer
interface com.xchgx.javaoop.course08.beike05.Teach
interface com.xchgx.javaoop.course08.beike06.Driver
interface com.xchgx.javaoop.course08.beike06.Racer
interface com.xchgx.javaoop.course08.beike06.Teach
interface com.xchgx.javaoop.course08.beike07.Cpu
interface com.xchgx.javaoop.course08.beike07.Memery
interface com.xchgx.javaoop.course08.ketangbiji01.ChildJiekou
interface com.xchgx.javaoop.course08.ketangbiji01.Jiekou
com.xchgx.javaoop.course07.beike03.Meat --|> com.xchgx.javaoop.course07.beike03.Food
com.xchgx.javaoop.course01.ketangbiji1.Test ..> java.io.BufferedReader
com.xchgx.javaoop.course01.ketangbiji1.Test ..> java.io.IOException
com.xchgx.javaoop.course01.ketangbiji1.Test ..> java.io.InputStreamReader
com.xchgx.javaoop.course03.beike01.Employee ..> java.lang.Override
com.xchgx.javaoop.course03.beike01.Manager --|> com.xchgx.javaoop.course03.beike01.Employee
com.xchgx.javaoop.course03.beike02.Student --|> com.xchgx.javaoop.course03.beike02.Person
com.xchgx.javaoop.course03.beike03.Student ..> java.lang.Override
com.xchgx.javaoop.course03.beike03.Student --|> com.xchgx.javaoop.course03.beike03.Person
com.xchgx.javaoop.course03.beike031.Child --|> com.xchgx.javaoop.course03.beike031.Parent
com.xchgx.javaoop.course03.beike04.Pentagon ..> java.lang.Override
com.xchgx.javaoop.course03.beike04.Pentagon --|> com.xchgx.javaoop.course03.beike04.Shape
com.xchgx.javaoop.course03.beike04.Rectangle ..> java.lang.Override
com.xchgx.javaoop.course03.beike04.Rectangle --|> com.xchgx.javaoop.course03.beike04.Shape
com.xchgx.javaoop.course03.beike04.Triangle ..> java.lang.Override
com.xchgx.javaoop.course03.beike04.Triangle --|> com.xchgx.javaoop.course03.beike04.Shape
com.xchgx.javaoop.course03.beike06.Employee ..> java.lang.Override
com.xchgx.javaoop.course03.beike06.Manager --|> com.xchgx.javaoop.course03.beike06.Employee
com.xchgx.javaoop.course03.ketangbiji01.Manager2 --|> com.xchgx.javaoop.course03.ketangbiji01.Employee
com.xchgx.javaoop.course03.ketangbiji02.Student ..> java.lang.Override
com.xchgx.javaoop.course03.ketangbiji02.Student --|> com.xchgx.javaoop.course03.ketangbiji02.Person
com.xchgx.javaoop.course04.beike01.Hu ..> java.lang.Override
com.xchgx.javaoop.course04.beike01.Hu --|> com.xchgx.javaoop.course04.beike01.Dongwu
com.xchgx.javaoop.course04.beike01.Niu ..> java.lang.Override
com.xchgx.javaoop.course04.beike01.Niu --|> com.xchgx.javaoop.course04.beike01.Dongwu
com.xchgx.javaoop.course04.beike01.Shu ..> java.lang.Override
com.xchgx.javaoop.course04.beike01.Shu --|> com.xchgx.javaoop.course04.beike01.Dongwu
com.xchgx.javaoop.course04.beike02.Caigou ..> java.lang.Override
com.xchgx.javaoop.course04.beike02.Caigou --|> com.xchgx.javaoop.course04.beike02.Worker
com.xchgx.javaoop.course04.beike02.Programer ..> java.lang.Override
com.xchgx.javaoop.course04.beike02.Programer --|> com.xchgx.javaoop.course04.beike02.Worker
com.xchgx.javaoop.course04.beike02.Xiaoshou ..> java.lang.Override
com.xchgx.javaoop.course04.beike02.Xiaoshou --|> com.xchgx.javaoop.course04.beike02.Worker
com.xchgx.javaoop.course04.ketangbiji01.Niu ..> java.lang.Override
com.xchgx.javaoop.course04.ketangbiji01.Niu --|> com.xchgx.javaoop.course04.ketangbiji01.Dongwu
com.xchgx.javaoop.course04.ketangbiji01.Shu ..> java.lang.Override
com.xchgx.javaoop.course04.ketangbiji01.Shu --|> com.xchgx.javaoop.course04.ketangbiji01.Dongwu
com.xchgx.javaoop.course04.ketangbiji02.Caigou ..> java.lang.Override
com.xchgx.javaoop.course04.ketangbiji02.Caigou --|> com.xchgx.javaoop.course04.ketangbiji02.Employee
com.xchgx.javaoop.course04.ketangbiji02.Programer ..> java.lang.Override
com.xchgx.javaoop.course04.ketangbiji02.Programer --|> com.xchgx.javaoop.course04.ketangbiji02.Employee
com.xchgx.javaoop.course04.ketangbiji02.Xiaoshou ..> java.lang.Override
com.xchgx.javaoop.course04.ketangbiji02.Xiaoshou --|> com.xchgx.javaoop.course04.ketangbiji02.Employee
com.xchgx.javaoop.course04.ketangbiji03.Sanjiaoxing ..> java.lang.Override
com.xchgx.javaoop.course04.ketangbiji03.Sanjiaoxing --|> com.xchgx.javaoop.course04.ketangbiji03.Xingzhuang
com.xchgx.javaoop.course04.ketangbiji03.Sibianxing ..> java.lang.Override
com.xchgx.javaoop.course04.ketangbiji03.Sibianxing --|> com.xchgx.javaoop.course04.ketangbiji03.Xingzhuang
com.xchgx.javaoop.course04.ketangbiji03.Wubianxing ..> java.lang.Override
com.xchgx.javaoop.course04.ketangbiji03.Wubianxing --|> com.xchgx.javaoop.course04.ketangbiji03.Xingzhuang
com.xchgx.javaoop.course05.beike02.User ..> java.lang.Override
com.xchgx.javaoop.course05.beike03.Foodie ..> java.lang.Override
com.xchgx.javaoop.course06.beike01.Meat --|> com.xchgx.javaoop.course06.beike01.Food
com.xchgx.javaoop.course06.beike01.Shuiguo --|> com.xchgx.javaoop.course06.beike01.Food
com.xchgx.javaoop.course06.beike01.Shushi --|> com.xchgx.javaoop.course06.beike01.Food
com.xchgx.javaoop.course06.beike03.Student --|> com.xchgx.javaoop.course06.beike03.Person
com.xchgx.javaoop.course06.beike05.Foodie ..> java.lang.Override
com.xchgx.javaoop.course06.ketangbiji01.Meat --|> com.xchgx.javaoop.course06.ketangbiji01.Food
com.xchgx.javaoop.course06.ketangbiji01.Mianbao --|> com.xchgx.javaoop.course06.ketangbiji01.Food
com.xchgx.javaoop.course06.ketangbiji01.Shuiguo --|> com.xchgx.javaoop.course06.ketangbiji01.Food
com.xchgx.javaoop.course06.ketangbiji01.Shushi --|> com.xchgx.javaoop.course06.ketangbiji01.Food
com.xchgx.javaoop.course07.beike01.Sanjiaoxing --|> com.xchgx.javaoop.course07.beike01.Xingzhuang
com.xchgx.javaoop.course07.beike01.Sanjiaoxing ..> java.lang.Override
com.xchgx.javaoop.course07.beike01.Zhengfangxing --|> com.xchgx.javaoop.course07.beike01.Xingzhuang
com.xchgx.javaoop.course07.beike01.Zhengfangxing ..> java.lang.Override
com.xchgx.javaoop.course07.beike03.Shuiguo --|> com.xchgx.javaoop.course07.beike03.Food
com.xchgx.javaoop.course07.beike03.Shuiguo ..> java.lang.Override
com.xchgx.javaoop.course07.beike05.Child ..> java.lang.Override
com.xchgx.javaoop.course07.beike05.Child --|> com.xchgx.javaoop.course07.beike05.Parent
com.xchgx.javaoop.course07.hero.beike07.Drj ..> java.lang.Override
com.xchgx.javaoop.course07.hero.beike07.Zgl ..> java.lang.Override
com.xchgx.javaoop.course07.hero.beike08.Cyj --|> com.xchgx.javaoop.course07.hero.beike08.Hero
com.xchgx.javaoop.course07.hero.beike08.Drj --|> com.xchgx.javaoop.course07.hero.beike08.Hero
com.xchgx.javaoop.course07.hero.beike08.Zgl --|> com.xchgx.javaoop.course07.hero.beike08.Hero
com.xchgx.javaoop.course07.ketangbiji02.Child --|> com.xchgx.javaoop.course07.ketangbiji02.Parent
com.xchgx.javaoop.course07.ketangbiji03.Child --|> com.xchgx.javaoop.course07.ketangbiji03.Parent
com.xchgx.javaoop.course07.ketangbiji05.Sjx --|> com.xchgx.javaoop.course07.ketangbiji05.Xingzhuang
com.xchgx.javaoop.course07.ketangbiji05.Sjx ..> java.lang.Override
com.xchgx.javaoop.course08.beike01.ChildJiekouImpl ..> java.lang.Override
com.xchgx.javaoop.course08.beike01.ChildJiekouImpl --|> com.xchgx.javaoop.course08.beike01.ChildJiekou
com.xchgx.javaoop.course08.beike01.JiekouImpl ..> java.lang.Override
com.xchgx.javaoop.course08.beike01.JiekouImpl --|> com.xchgx.javaoop.course08.beike01.Jiekou
com.xchgx.javaoop.course08.beike04.RacerPeople ..> java.lang.Override
com.xchgx.javaoop.course08.beike04.RacerPeople --|> com.xchgx.javaoop.course08.beike04.Racer
com.xchgx.javaoop.course08.beike05.Teacher ..> java.lang.Override
com.xchgx.javaoop.course08.beike05.Teacher --|> com.xchgx.javaoop.course08.beike05.Teach
com.xchgx.javaoop.course08.beike06.NiuRen ..> java.lang.Override
com.xchgx.javaoop.course08.beike06.NiuRen --|> com.xchgx.javaoop.course08.beike06.Driver
com.xchgx.javaoop.course08.beike06.NiuRen --|> com.xchgx.javaoop.course08.beike06.Racer
com.xchgx.javaoop.course08.beike06.NiuRen --|> com.xchgx.javaoop.course08.beike06.Teach
com.xchgx.javaoop.course08.beike07.InterCpu ..> java.lang.Override
com.xchgx.javaoop.course08.beike07.InterCpu --|> com.xchgx.javaoop.course08.beike07.Cpu
com.xchgx.javaoop.course08.ketangbiji01.ChildJiekouImpl ..> java.lang.Override
com.xchgx.javaoop.course08.ketangbiji01.ChildJiekouImpl --|> com.xchgx.javaoop.course08.ketangbiji01.ChildJiekou
com.xchgx.javaoop.course08.ketangbiji01.JiekouImpl ..> java.lang.Override
com.xchgx.javaoop.course08.ketangbiji01.JiekouImpl --|> com.xchgx.javaoop.course08.ketangbiji01.Jiekou
com.xchgx.javaoop.course09.beike02.Teacher ..> com.xchgx.javaoop.course09.beike01.Student
com.xchgx.javaoop.course12.beike01.ArrayListTest ..> java.util.ArrayList
com.xchgx.javaoop.course12.beike01.ArrayListTest ..> java.util.List
com.xchgx.javaoop.course12.beike02.App ..> java.io.BufferedReader
com.xchgx.javaoop.course12.beike02.App ..> java.io.File
com.xchgx.javaoop.course12.beike02.App ..> java.io.FileInputStream
com.xchgx.javaoop.course12.beike02.App ..> java.io.IOException
com.xchgx.javaoop.course12.beike02.App ..> java.io.InputStreamReader
com.xchgx.javaoop.course12.beike02.App ..> java.util.ArrayList
com.xchgx.javaoop.course12.beike02.App ..> java.util.Scanner
com.xchgx.javaoop.course12.beike02.App2 ..> java.util.ArrayList
com.xchgx.javaoop.course12.beike02.App3 ..> java.util.ArrayList
com.xchgx.javaoop.course12.beike02.Manager ..> java.util.ArrayList
com.xchgx.javaoop.course12.ketangbiji02.ArrayListTest ..> java.util.ArrayList
com.xchgx.javaoop.course12.ketangbiji03.Manager ..> java.util.ArrayList
com.xchgx.javaoop.course13.beike01.LiaoTianJiLu ..> java.io.BufferedReader
com.xchgx.javaoop.course13.beike01.LiaoTianJiLu ..> java.io.File
com.xchgx.javaoop.course13.beike01.LiaoTianJiLu ..> java.io.FileInputStream
com.xchgx.javaoop.course13.beike01.LiaoTianJiLu ..> java.io.FileNotFoundException
com.xchgx.javaoop.course13.beike01.LiaoTianJiLu ..> java.io.IOException
com.xchgx.javaoop.course13.beike01.LiaoTianJiLu ..> java.io.InputStreamReader
com.xchgx.javaoop.course13.beike01.LiaoTianJiLu ..> java.util.ArrayList
com.xchgx.javaoop.course13.beike01.LiaoTianJiLu ..> java.util.Scanner
com.xchgx.javaoop.course13.beike02.Manager ..> java.io.BufferedReader
com.xchgx.javaoop.course13.beike02.Manager ..> java.io.FileInputStream
com.xchgx.javaoop.course13.beike02.Manager ..> java.io.FileNotFoundException
com.xchgx.javaoop.course13.beike02.Manager ..> java.io.IOException
com.xchgx.javaoop.course13.beike02.Manager ..> java.io.InputStreamReader
com.xchgx.javaoop.course13.beike02.Manager ..> java.util.ArrayList
com.xchgx.javaoop.course08.beike01.ChildJiekou --|> com.xchgx.javaoop.course08.beike01.Jiekou
com.xchgx.javaoop.course08.ketangbiji01.ChildJiekou --|> com.xchgx.javaoop.course08.ketangbiji01.Jiekou
@enduml | false | true | false | false | class |
8f43ef2a1f889b2f875e063d05408e8a5b1f890d | 85592c2f8d87903b27b3b6a1dd1f733231f6585c | /guava-tests/test/com/nanyin/test/design/composite/composite.puml | 4c707a072768cd4c6f8e9c6cc05d493eb113258f | [
"Apache-2.0"
] | permissive | NanYinIU/guava-with-comments | 52aa7248f4eb7f8d7bb8173b0d432de5a327490f | 04f402389aadc903ff4c595049dfb01575d3bd71 | refs/heads/master | 2021-06-27T20:31:52.847594 | 2019-06-28T03:04:02 | 2019-06-28T03:04:02 | 140,093,917 | 0 | 0 | Apache-2.0 | 2020-10-13T09:33:12 | 2018-07-07T15:05:44 | Java | UTF-8 | PlantUML | false | false | 472 | puml | @startuml
abstract class Component{
+ name:String
+ areaLevel:Integer
+ printName():void
+ printLevel():void
+ printAll():void
+ list:List<Component>
}
Component "1" --* "n" Component
class Country{
+ printName():void
+ printLevel():void
}
class Province{
+ printName():void
+ printLevel():void
}
class City{
+ printName():void
+ printLevel():void
}
Component <|.. Country
Component <|.. Province
Component <|.. City
Country <-- App
Province <-- App
City <-- App
@enduml
| false | true | false | false | class |
42fc81f3ea8544ecb9a02c3c48cf08540da896e7 | e26b12eef876a125fde9033090a333f28cd1f098 | /Latex/UML/PAT-fine-v1.plantuml | 58cafc3aacdcfccf155fa71cb759111e98a42ffe | [] | no_license | XaBerr/tesi-magistrale | 6dfe91f887af0d8f6d44d3bfe1c2709dc86adea2 | 0408d1ea5a0e337b00e5e1e3d0d4641be448cf34 | refs/heads/master | 2022-12-14T23:07:52.957898 | 2020-09-07T13:34:03 | 2020-09-07T13:34:03 | 281,984,022 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 636 | plantuml | @startuml PAT-fine-v1
!$LIGHT = 1
!includeurl https://raw.githubusercontent.com/XaBerr/plantUMLstyle/master/style.plantuml
hide members
rectangle "position sensitive device" as sensor
rectangle "PID KPA101" as controller
rectangle "two axis motors" as actuator
rectangle "fast steering mirror" as system
circle "input\lvolt\lposition\l(x,y)" as x
circle "output\rvolt\rposition\r(x,y)" as y
circle "error\rdelta\rvolt" as e
circle "vibrations + beam fluctuation" as d
x -right--> e
e -right-> controller
controller -right-> actuator
actuator -right-> system
d -down-> system
system -right-> y
y -down-> sensor
sensor --> e
@enduml
| false | true | false | false | uml-unknown |
00cba0d3421fa10cd19e29712276a4058526a7ea | a6b39a99d2e6bef2468d15e823f7ef64377c5522 | /ejemplo.puml | 3c047df08a2616eb49e91e19e44e21c976577be0 | [] | no_license | kewapo/pruebas | bd3919cbfa67980f70ba019ed581d54e09e83583 | 1957e65d29b3e8a709c3c8cc45cdd86200fbf122 | refs/heads/master | 2021-09-08T05:15:26.209659 | 2018-03-07T13:05:47 | 2018-03-07T13:05:47 | 114,354,256 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 189 | puml | @startuml
skinparam handwritten true
title __Fichero: ejemplo.py__\n
class Ejemplo <<(F,lightgreen)>> {
+ruta = 'E:\\libros'
-- funciones --
+guardar_archivos()
+leer_archivos()
}
@enduml | false | true | false | false | class |
ab119c11506a58aa6e97265260c0d3eb22e68681 | 084fcc4a31b60fe11f3f647f7d49a3c1c6621b44 | /kapitler/media/uml-class-registrering.puml | 38b1aad5bc808880f3feada9cf99a978a926b463 | [] | 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 | 2,739 | puml | @startuml
skinparam nodesep 100
hide circle
class Arkivstruktur.Registrering <Arkivenhet> {
+arkivertDato : datetime [0..1] [1..1]
+arkivertAv : string [0..1] [1..1]
+referanseArkivertAv : SystemID [0..1] [1..1]
+kassasjon : Kassasjon [0..1]
+skjerming : Skjerming [0..1]
+gradering : Gradering [0..1]
+referanseArkivdel : SystemID [0..1] [1..1]
+registreringsID : string [0..1] [1..1]
+tittel : string
+offentligTittel : string [0..1]
+beskrivelse : string [0..1]
+noekkelord : string [0..*]
+forfatter : string [0..*]
+dokumentmedium : Dokumentmedium [0..1] [1..1]
+oppbevaringssted : string [0..*]
+virksomhetsspesifikkeMetadata : VirksomhetsspesifikkeMetadata [0..1]
}
class Arkivstruktur.Arkivdel <Arkivenhet> {
}
Arkivstruktur.Arkivdel "arkivdel 0..1" o--> "registrering 0..*" Arkivstruktur.Registrering
class Arkivstruktur.Arkivenhet {
}
Arkivstruktur.Arkivenhet <|-- Arkivstruktur.Registrering
class Arkivstruktur.Klasse <Arkivenhet> {
}
Arkivstruktur.Klasse "klasse 0..1" o--> "registrering 0..*" Arkivstruktur.Registrering
class Arkivstruktur.Mappe <Arkivenhet> {
}
Arkivstruktur.Mappe "mappe 0..1" o--> "registrering 0..*" Arkivstruktur.Registrering
class Arkivstruktur.Kryssreferanse <Arkivenhet> {
}
Arkivstruktur.Registrering "registrering 0..1" *--> "kryssreferanse 0..*" Arkivstruktur.Kryssreferanse
class Arkivstruktur.Dokumentbeskrivelse <Arkivenhet> {
}
Arkivstruktur.Registrering "registrering 1..*" o--> "dokumentbeskrivelse 0..*" Arkivstruktur.Dokumentbeskrivelse
class Arkivstruktur.Korrespondansepart {
}
Arkivstruktur.Registrering *-- "korrespondansepart 0..*" Arkivstruktur.Korrespondansepart
class Arkivstruktur.Merknad {
}
Arkivstruktur.Registrering *-- "merknad 0..*" Arkivstruktur.Merknad
class Arkivstruktur.Part {
}
Arkivstruktur.Registrering *-- "part 0..*" Arkivstruktur.Part
class Arkivstruktur.Gradering <<dataType>> {
}
Arkivstruktur.Registrering *-- Arkivstruktur.Gradering
class Arkivstruktur.Kassasjon <<dataType>> {
}
Arkivstruktur.Registrering *-- Arkivstruktur.Kassasjon
class Arkivstruktur.Skjerming <<dataType>> {
}
Arkivstruktur.Registrering *-- Arkivstruktur.Skjerming
class VirksomhetsspesifikkeMetadata.VirksomhetsspesifikkeMetadata <<VirksomhetsspesifikkeMetadata>> {
}
Arkivstruktur.Registrering *-- VirksomhetsspesifikkeMetadata.VirksomhetsspesifikkeMetadata
class Sakarkiv.Arkivnotat <Registrering> {
}
Arkivstruktur.Registrering <|-- Sakarkiv.Arkivnotat
class Sakarkiv.Journalpost <Registrering> {
}
Arkivstruktur.Registrering <|-- Sakarkiv.Journalpost
class Arkivstruktur.NasjonaleIdentifikatorer.Nasjonalidentifikator {
}
Arkivstruktur.Registrering o-- "nasjonalidentifikator 0..*" Arkivstruktur.NasjonaleIdentifikatorer.Nasjonalidentifikator
@enduml
| false | true | false | false | class |
d188337d7a58a7e2158c9640911b070b86e182bc | b0d5bc5244fd6e70c16cb78aab6b9b99d05cb245 | /src/main/java/io/github/bigbio/pgatk/utilities/iongen/impl/impl.plantuml | c30be9f02e2c63a65b8e956e372fc220fb7b70c9 | [] | no_license | bigbio/pgatk-utilities | 51fde07d6a93777e264ac06b2ce3565acf90b560 | 5277cf6eec28d7db34e65af0442ea471919aacd6 | refs/heads/master | 2023-04-22T04:23:38.728052 | 2021-04-30T14:24:57 | 2021-04-30T14:24:57 | 284,158,103 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,941 | plantuml | @startuml
title __IMPL's Class Diagram__\n
package io.github.bigbio.pgatk.utilities.iongen {
package io.github.bigbio.pgatk.utilities.iongen.impl {
abstract class AbstractPrecursorIon {
+ AbstractPrecursorIon()
- getProductIonPTM()
+ getProductIon()
}
}
}
package io.github.bigbio.pgatk.utilities.iongen {
package io.github.bigbio.pgatk.utilities.iongen.impl {
abstract class AbstractProductIon {
- position : int
+ AbstractProductIon()
+ getType()
+ getPrecursorIon()
+ getPosition()
+ compareTo()
+ getMass()
}
}
}
package io.github.bigbio.pgatk.utilities.iongen {
package io.github.bigbio.pgatk.utilities.iongen.impl {
class DefaultPeptideIon {
- charge : int
- mass : double
- calculateMass()
+ DefaultPeptideIon()
+ getMassOverCharge()
+ getCharge()
+ getMass()
+ getPeptide()
+ equals()
+ hashCode()
+ toString()
}
}
}
package io.github.bigbio.pgatk.utilities.iongen {
package io.github.bigbio.pgatk.utilities.iongen.impl {
class DefaultPrecursorIon {
+ DefaultPrecursorIon()
+ DefaultPrecursorIon()
+ DefaultPrecursorIon()
+ DefaultPrecursorIon()
}
}
}
package io.github.bigbio.pgatk.utilities.iongen {
package io.github.bigbio.pgatk.utilities.iongen.impl {
class DefaultProductIon {
+ DefaultProductIon()
+ toString()
}
}
}
package io.github.bigbio.pgatk.utilities.iongen {
package io.github.bigbio.pgatk.utilities.iongen.impl {
class ImmoniumIon {
- typeName : String
- charge : int
- position : int
+ ImmoniumIon()
+ ImmoniumIon()
+ toString()
+ getMass()
+ getMassOverCharge()
+ getCharge()
+ getPosition()
+ getAcid()
+ getTypeName()
+ compareTo()
}
}
}
AbstractPrecursorIon -up-|> PrecursorIon
AbstractPrecursorIon -up-|> DefaultPeptideIon
AbstractProductIon -up-|> ProductIon
AbstractProductIon -up-|> Comparable
AbstractProductIon -up-|> DefaultPeptideIon
AbstractProductIon o-- PrecursorIon : precursorIon
AbstractProductIon o-- ProductIonType : type
DefaultPeptideIon -up-|> PeptideIon
DefaultPeptideIon o-- Peptide : peptide
DefaultPrecursorIon -up-|> AbstractPrecursorIon
DefaultProductIon -up-|> AbstractProductIon
ImmoniumIon -up-|> Comparable
ImmoniumIon o-- AminoAcid : acid
ImmoniumIon o-- PTModification : modification
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 |
02433c7f65e59d638b454b6385a8c215e843893a | ddd27ef7207e3b508ba557b6f5ca1b2bd172a734 | /app/UML/ApplicationState5.puml | d8bd199dbdc89351a56d27051f8c62f546458751 | [] | no_license | QRP0002/Wireless_Quote | 7c095f66043b7780f03d624be2fe7956b3369a27 | 0b4762a69db0ebada3d518573e7618a0e57f0368 | refs/heads/master | 2020-06-04T02:48:51.629364 | 2015-05-01T12:49:49 | 2015-05-01T12:49:49 | 33,549,841 | 0 | 0 | null | 2015-04-16T20:57:50 | 2015-04-07T14:57:28 | Java | UTF-8 | PlantUML | false | false | 574 | puml | @startuml
[*] --> EmployeeManageQuote
EmployeeManageQuote : do/ display view and edit quote
EmployeeManageQuote --> EmployeeEdit : select Edit Quote
EmployeeEdit : do/ display text fields
EmployeeEdit: do/ display information
EmployeeManageQuote --> EmployeeView : Select View Quote
EmployeeView : do/ display information
EmployeeManageQuote --> DeleteQuote : Select Delete Quote
DeleteQuote: do/ remove quote
DeleteQuote --> EmployeeManageQuote : Select Back
EmployeeView --> EmployeeManageQuote : Select Back
EmployeeEdit --> EmployeeManageQuote : Select Back
@enduml | false | true | false | false | sequence |
64ab090dc0fb0dedd66099e5163d90085e8bf14c | 29e499c7049d725de515d0f0294f765b6bbb4dc3 | /DesignPattern/out/production/DesignPattern/com/ilike/factory/Factory.puml | 99d25d448bab4bee063d9b0333053793c553df20 | [] | 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 | 430 | puml | @startuml
abstract class Pizza
class CheesePizza
class GreekPizza
class chinaPizza
class OrderPizza
class PizzaStore
class PepperStore
class SimpleFactory
Pizza<|--CheesePizza
Pizza<|--GreekPizza
Pizza<|--PepperStore
Pizza<|--chinaPizza
OrderPizza o--SimpleFactory
OrderPizza<--PizzaStore
abstract class Pizza{
void prepare()
void bake()
void cut()
void box()
}
class CheesePizza {
}
class GreekPizza {
}
@enduml | false | true | false | false | class |
5da79488cead1a8173ce67d78b3ed6dfed5de0d8 | 0451c8ba480721dd4f116d8d1c989fc941bf91f8 | /personalFinanceManagement/src/main/java/switch2019/project/controllerLayer/rest/US007CreateGroupAccountControllerRest_Part1.puml | 15f8ff4d24e67d1a8a59747f2b6504fa2237bbde | [] | no_license | mleitaoribeiro/DevOpsMaven | ee8eac2ea35a3818a4480c7ee57c305f9f8938e3 | c8e4bcb36dfd765a08f8b9140d3b60a260734ae1 | refs/heads/master | 2023-01-01T13:37:18.143028 | 2020-07-02T16:16:52 | 2020-07-02T16:16:52 | 304,918,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,723 | puml | @startuml
skinparam DefaultFontSize 25
participant "HTTP Client (Test)"
participant "inputDTO:\ncreateGroupAccountInfoDTO"
participant "mvcResult :MvcResult"
participant "mvc:MockMvc"
participant "info:createGroupAccountInfoDTO"
participant "AccountDTOAssembler"
participant "createGroupAccountDTO:\nCreateGroupAccountDTO"
participant "restController:\nUS007CreateGroupAccountControllerRest"
participant "accountDTO:AccountDTO"
participant "service:US007CreateGroupAccountService"
== Arrange ==
autonumber
create "inputDTO:\ncreateGroupAccountInfoDTO"
"HTTP Client (Test)" -> "inputDTO:\ncreateGroupAccountInfoDTO": inputDTO = CreateGroupAccountInfoDTO\n(personEmail, accountDenomination, accountDescription);
activate "HTTP Client (Test)" #FFBBBB
"HTTP Client (Test)" -> "HTTP Client (Test)": inputJson = mapToJson(inputDTO)
== Act ==
"HTTP Client (Test)" -> "mvc:MockMvc" :POST /groups/{groupDescription}/accounts {inputJson}
activate "mvc:MockMvc" #FFBBBB
autonumber 3.1
"mvc:MockMvc" -> "mvc:MockMvc" : deserialize inputJson
create "info:createGroupAccountInfoDTO"
"mvc:MockMvc"-->"info:createGroupAccountInfoDTO" :create
"mvc:MockMvc"-> "restController:\nUS007CreateGroupAccountControllerRest": createGroupAccount(groupDescription, info)
activate "restController:\nUS007CreateGroupAccountControllerRest" #FFBBBB
autonumber 3.3.1
"restController:\nUS007CreateGroupAccountControllerRest"-> "AccountDTOAssembler":transformToCreateGroupAccountDTO(groupDescription, info)
activate "AccountDTOAssembler" #FFBBBB
autonumber 3.3.1.1
"AccountDTOAssembler" -> "info:createGroupAccountInfoDTO" : personEmail = getPersonEmail();
activate "info:createGroupAccountInfoDTO" #FFBBBB
"AccountDTOAssembler" -> "info:createGroupAccountInfoDTO" : accountDescription = getAccountDescription();
"AccountDTOAssembler" -> "info:createGroupAccountInfoDTO" : accountDenomination = getAccountDenomination();
deactivate "info:createGroupAccountInfoDTO"
create "createGroupAccountDTO:\nCreateGroupAccountDTO"
"AccountDTOAssembler" -> "createGroupAccountDTO:\nCreateGroupAccountDTO" : CreateGroupAccountDTO = createGroupAccountDTO(personEmail,\ngroupDescription, accountDenomination, accountDescription)
deactivate "createGroupAccountDTO:\nCreateGroupAccountDTO"
autonumber 3.3.1.5
"AccountDTOAssembler" --> "restController:\nUS007CreateGroupAccountControllerRest" : createGroupAccountDTO
deactivate "AccountDTOAssembler"
autonumber 3.3.2
"restController:\nUS007CreateGroupAccountControllerRest"->"service:US007CreateGroupAccountService": createGroupAccount(createGroupAccountDTO)
activate "service:US007CreateGroupAccountService" #FFBBBB
autonumber 3.3.2.1
|||
ref over "service:US007CreateGroupAccountService": US007CreateGroupAccountControllerRest_Part2
"service:US007CreateGroupAccountService" --> "restController:\nUS007CreateGroupAccountControllerRest" : accountDTO
|||
autonumber 3.3.3
deactivate "service:US007CreateGroupAccountService" #FFBBBB
"restController:\nUS007CreateGroupAccountControllerRest"->"restController:\nUS007CreateGroupAccountControllerRest": selfLink = /groups/{ownerID}/accounts/{accountDenomination}
"restController:\nUS007CreateGroupAccountControllerRest"-> "accountDTO:AccountDTO": add(selfLink)
activate "accountDTO:AccountDTO" #FFBBBB
deactivate "accountDTO:AccountDTO" #FFBBBB
"restController:\nUS007CreateGroupAccountControllerRest"->"restController:\nUS007CreateGroupAccountControllerRest": accountsLink = /groups/{groupDescription}/accounts
"restController:\nUS007CreateGroupAccountControllerRest"-> "accountDTO:AccountDTO": add(accountsLink)
activate "accountDTO:AccountDTO" #FFBBBB
deactivate "accountDTO:AccountDTO" #FFBBBB
|||
create "responseEntity:Response Entity"
"restController:\nUS007CreateGroupAccountControllerRest" --> "responseEntity:Response Entity" : create (accountDTO,HttpStatus.CREATED)
"restController:\nUS007CreateGroupAccountControllerRest" --> "mvc:MockMvc": responseEntity
deactivate "restController:\nUS007CreateGroupAccountControllerRest"
autonumber 3.4
"mvc:MockMvc" -> "mvc:MockMvc" : serialize responseEntity
"HTTP Client (Test)" <-- "mvc:MockMvc" : {jsonResponse}
deactivate "mvc:MockMvc"
autonumber 4
|||
create "mvcResult :MvcResult"
"HTTP Client (Test)" --> "mvcResult :MvcResult" : create
autonumber 5
activate "mvcResult :MvcResult" #FFBBBB
"HTTP Client (Test)" -> "mvcResult :MvcResult" : status = getStatus()
"HTTP Client (Test)" -> "mvcResult :MvcResult" : result = getContentAsString()
deactivate "mvcResult :MvcResult" #FFBBBB
== Assert ==
"HTTP Client (Test)" -> "HTTP Client (Test)" : assertEquals(201, status)
"HTTP Client (Test)" -> "HTTP Client (Test)" : assertEquals(expectedResult, result)
deactivate "service:US007CreateGroupAccountService"
@enduml | false | true | false | false | sequence |
cab2789e7ddbd79ac93f61e6489b0bc039b96797 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Animation/TimelineAnimationUtilities.puml | 88d0ea0e1251bfb65622a2cb6c69fb2de0f0c9e7 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,624 | puml | @startuml
class TimelineAnimationUtilities {
+ {static} ValidateOffsetAvailabitity(director:PlayableDirector, animator:Animator) : bool
+ {static} GetPreviousClip(clip:TimelineClip) : TimelineClip
+ {static} GetNextClip(clip:TimelineClip) : TimelineClip
+ {static} UpdateClipOffsets(asset:AnimationPlayableAsset, track:AnimationTrack, transform:Transform, globalPosition:Vector3, globalRotation:Quaternion) : RigidTransform
+ {static} GetTrackOffsets(track:AnimationTrack, transform:Transform) : RigidTransform
+ {static} UpdateTrackOffset(track:AnimationTrack, transform:Transform, offsets:RigidTransform) : void
{static} GetMatchFields(clip:TimelineClip) : MatchTargetFields
{static} WriteMatchFields(asset:AnimationPlayableAsset, result:RigidTransform, fields:MatchTargetFields) : void
+ {static} MatchPrevious(currentClip:TimelineClip, matchPoint:Transform, director:PlayableDirector) : void
+ {static} MatchNext(currentClip:TimelineClip, matchPoint:Transform, director:PlayableDirector) : void
+ {static} CreateTimeController(state:WindowState, clip:TimelineClip) : TimelineWindowTimeControl
+ {static} CreateTimeController(state:WindowState, clipData:TimelineWindowTimeControl.ClipData) : TimelineWindowTimeControl
+ {static} EditAnimationClipWithTimeController(animationClip:AnimationClip, timeController:TimelineWindowTimeControl, sourceObject:Object) : void
+ {static} UnlinkAnimationWindowFromTracks(tracks:IEnumerable<TrackAsset>) : void
+ {static} UnlinkAnimationWindowFromClips(timelineClips:IEnumerable<TimelineClip>) : void
+ {static} UnlinkAnimationWindowFromAnimationClips(clips:ICollection<AnimationClip>) : void
+ {static} UnlinkAnimationWindow() : void
+ {static} GetAnimationWindowCurrentFrame() : int
+ {static} SetAnimationWindowCurrentFrame(frame:int) : void
+ {static} ConstrainCurveToBooleanValues(curve:AnimationCurve) : void
+ {static} ConstrainCurveToRange(curve:AnimationCurve, minValue:float, maxValue:float) : void
+ {static} IsAnimationClip(clip:TimelineClip) : bool
}
enum OffsetEditMode {
None= -1,
Translation= 0,
Rotation= 1,
}
class RigidTransform <<struct>> {
+ {static} Compose(pos:Vector3, rot:Quaternion) : RigidTransform
+ {static} Mul(a:RigidTransform, b:RigidTransform) : RigidTransform
+ {static} Inverse(a:RigidTransform) : RigidTransform
}
TimelineAnimationUtilities +-- OffsetEditMode
TimelineAnimationUtilities +-- RigidTransform
RigidTransform --> "position" Vector3
RigidTransform --> "rotation" Quaternion
RigidTransform --> "identity" RigidTransform
@enduml
| false | true | false | false | class |
8656d5fb0a70cc7a89cd410a7a2204900dc91c5e | 6420f15160af4c5e7ed7e61cf9f182fbd306540a | /liskov.puml | d04eb1d28e6306ab510171aaa8095f9a68ca3d14 | [
"MIT"
] | permissive | jessebluemr/solid-principles | dbe6066afb712a7cb17d4da45116032b622804f7 | 508234b8260d0f6f938267fa5093137fbe58f9e6 | refs/heads/master | 2022-11-05T00:57:59.914356 | 2020-06-25T14:19:48 | 2020-06-25T14:19:48 | 274,739,116 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 208 | puml | @startuml liskov
class Graphic {
draw()
}
class Rectangle {
}
class Ellipse {
scaleX()
scaleY()
}
class Circle {
}
Graphic <|-- Rectangle
Graphic <|-- Ellipse
Ellipse <|-- Circle
@enduml
| false | true | false | false | class |
98bb121e4b5b3e80876bd07621a18215d8a5ccd1 | c8e5514bd3ea44e6613f469e88bc0562ba16ae62 | /src/site/sphinx/formatting/puml/colors/Yellow.puml | 55718876aa42247861fb20005b6fd66949e5b0a2 | [] | no_license | weedySeaDragon/plantuml-documentation | 1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba | 3c23cd2cd7fc1b4a85423ef9861711907fab2296 | refs/heads/develop | 2022-12-09T05:57:04.055959 | 2022-05-12T16:05:20 | 2022-05-12T16:05:20 | 165,910,589 | 55 | 6 | null | 2022-11-22T10:34:29 | 2019-01-15T19:28:35 | SCSS | UTF-8 | PlantUML | false | false | 307 | puml | @startuml
skinparam ClassBackgroundColor #Yellow
skinparam ClassFontColor #Yellow
skinparam ClassBorderColor #Yellow
skinparam ClassStereotypeFontSize 0
skinparam CircledCharacterFontSize 0
skinparam CircledCharacterRadius 0
skinparam ClassBorderThickness 0
skinparam Shadowing false
class Dummy
@enduml | false | true | false | false | class |
6cf63d1976c09dc00bae497ef47298c22c12343b | 5865f5a94a03a2cb217d5c2a0c83d593bbaef526 | /STACJA_PALIW_ACTIVITY_DIAGRAM.plantuml | f2703baa77a8daeb1c666078def38eb71905f05d | [] | no_license | TheLongDistanceRunner2/ProjektowanieObiektowe2021 | 8969065a75c659d14ae7235f433d97970e3de0f2 | 2a6945dc2901340d1eab33c8b24413285298f122 | refs/heads/master | 2023-02-20T14:33:29.225376 | 2021-01-20T13:52:24 | 2021-01-20T13:52:24 | 327,702,360 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,451 | plantuml | @startuml
(*) -down-> "Przyjazd na stację"
if "wybór czynności:" then
-right-> "Zakup rzetonu do odkurzania samochodu"
-down-> "Płatność przy kasie"
else
-down-> "Mycie samochodu"
-down-> "Płatność przy myjni"
if "wybór rodzaju płatności:" then
-down-> "Kartą"
-down-> "Autoryzacja płatności"
-down-> "Wydruk potwierdzenia"
-down-> "Wydruk rachunku"
else
-right-> "Gotówką"
-down-> "Wydruk rachunku"
endif
-down-> "Umycie samochodu"
-down-> (*)
else
-left-> "Tankowanie samochodu"
if "wybór paliwa: " then
-left-> "Benzyna"
-down-> "Zatankowanie"
else
-down-> "Diesel"
-down-> "Zatankowanie"
else
-right-> "LPG"
-down-> "Zatankowanie"
endif
-down-> "Punkty"
endif
if "czy zbieramy punkty?" then
-right-> "Tak"
-down-> "Nabicie punktów na kartę"
-down-> "Płatność przy kasie"
else
-down-> "nie"
if "czy chcemy założyć kartę?" then
-down-> "Tak, chcę"
-down-> "Założenie karty"
-down-> "Nabicie punktów na nową kartę"
-down-> "Płatność przy kasie"
else
-right-> "Nie, dziękuję"
-down-> "Płatność przy kasie"
endif
endif
if "wybór formy płatności:" then
-down-> "Karta"
-down-> "Autoryzacja"
-down-> "Potwierdzenie"
-down-> "Rachunek"
else
-right-> "Gotówka"
-down-> "Rachunek"
endif
if "wybór rachunku:" then
-left-> "Paragon"
--> "Koniec transakcji"
else
-right-> Faktura
--> "Koniec transakcji"
endif
if "za co zaplacono?"
-left-> "Za tankowanie"
-down-> (*)
else
-right-> "Za odkurzanie"
-down-> "Wykorzystanie rzetonu"
-down-> "Odkurzenie samochodu"
-down-> (*)
endif
@enduml | false | true | true | false | activity |
cb8321b361f4abcd9c44e550757170366bb0f913 | 02c7ba8d36f29b971209a6b0b108c2dd9f0c8d33 | /docs/diagrams/WordLimitMode.puml | 9398cd677948e6697e98e7e2491a5e3a46ddd13a | [] | no_license | AY2122S1-CS2113-T13-4/tp | 34144974d170d4308330e311844ba697b867fc15 | 80a78268ab2b1bb49cbd88d926b7ade648d2ebc8 | refs/heads/master | 2023-08-30T01:44:28.925411 | 2021-11-08T15:54:52 | 2021-11-08T15:54:52 | 411,932,228 | 0 | 5 | null | 2021-11-08T15:54:53 | 2021-09-30T05:17:44 | Java | UTF-8 | PlantUML | false | false | 1,881 | puml | @startuml
-> WordGameCommand: run()
activate WordGameCommand
WordGameCommand -> WordGameCommand: getNumber(args, WORD_SIGNIFIER)
activate WordGameCommand
WordGameCommand --> WordGameCommand: wordLimit
deactivate
create WordLimitGame
WordGameCommand -> WordLimitGame: createGame(args, isReady, setContent)
activate WordLimitGame
WordLimitGame -> TextUi: getWordLimit()
activate TextUi
TextUi --> WordLimitGame: isValidWord(n)
deactivate
WordLimitGame --> WordGameCommand
deactivate
WordGameCommand -> WordLimitGame: runGame()
activate WordLimitGame
WordLimitGame -> WordLimitGame: trimContent(limit)
activate WordLimitGame
WordLimitGame --> WordLimitGame
deactivate
WordLimitGame -> WordLimitGame: getTimeNow()
activate WordLimitGame
WordLimitGame --> WordLimitGame
deactivate
loop until Exit
WordLimitGame -> Utils: displayLines(row)
activate Utils
Utils --> WordLimitGame: line
deactivate
WordLimitGame -> TextUi: printLine(displayed)
activate TextUi
TextUi --> WordLimitGame
deactivate
WordLimitGame -> TextUi: readCommand()
activate TextUi
TextUi --> WordLimitGame: inputs
deactivate
alt Exit
else continue typing
WordLimitGame -> WordLimitGame: updateUserLines(inputs)
activate WordLimitGame
end
deactivate
end
WordLimitGame --> WordGameCommand
deactivate
WordGameCommand -> WordLimitGame: gameSummary()
activate WordLimitGame
WordLimitGame -> WordLimitGame: getDuration()
activate WordLimitGame
WordLimitGame --> WordLimitGame: gameTime
deactivate
WordLimitGame -> TextUi: handleSummary(...,"Word-Limited")
activate TextUi
TextUi --> WordLimitGame: summary
deactivate
WordLimitGame -> WordLimitGame: handleStorage(summary)
activate WordLimitGame
WordLimitGame --> WordLimitGame
deactivate
WordLimitGame --> WordGameCommand
deactivate
destroy WordLimitGame
@enduml | false | true | false | false | sequence |
60b53b837aa757ef44851356c112577b8e3ca399 | d99806bb17e4a22325f775539981c6b7799b9d16 | /docs/green/1160557/sp1/sd.puml | c122122e02c23d9e079ee863f982caf6beccdbce | [] | no_license | Fuel4us/GWTFinalProject | 3d0e1194f142cfcbdfc3d24f37a7537ff3a30dfb | b6c2f6add1687ca7800a9ec243edbe067ca6090c | refs/heads/master | 2020-03-21T19:47:13.534718 | 2018-06-28T05:33:43 | 2018-06-28T05:33:43 | 138,969,901 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 836 | puml | @startuml hilario2
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
actor User
User -> LoginPresenter : onReveal() / navigate to page
LoginPresenter -> LoginPresenter : getEmail()
LoginPresenter -> LoginPresenter : getPassword()
LoginPresenter -> UsersServiceImpl : UserDTO user : attemptLogin(email, password)
UsersServiceImpl -> LoginUserController : UserDTO user : attemptLogin(email, password)
loop allUsers
LoginUserController -> ArrayUsers : string : getEmail()
alt "string equals email" case
LoginUserController -> ArrayUsers : b : verifyPassword(password)
end
end
alt "user != null" case
LoginPresenter -> LoginPresenter : redirectToHomePage()
end
LoginPresenter -> LoginPresenter : refreshView()
@enduml | false | true | false | false | usecase |
1241165cee6750761c788bfe87aa01a9c739be7a | 431581c3aa9c4db082509f747a221c9131819615 | /.diverse/UseCase.puml | 03521980d83bdb4ad1c59e759ccfbc3a3c09ea70 | [] | no_license | shonyko/food-delivery-management-system | 78eb9ae4e22322a77e6ff0d1a004cdc735427cf0 | c12755c00b15bf14ee60dd00e96c0ce080c983ac | refs/heads/master | 2023-07-15T00:44:08.538453 | 2021-05-21T20:05:29 | 2021-05-21T20:05:29 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 761 | puml | @startuml
Admin -> (Logare)
Admin --> (Importare produse)
Admin -> (Operatii CRUD cu produse)
Admin -> (Generare rapoarte)
(Importare produse) ....> (Logare) :includes
(Operatii CRUD cu produse) ....> (Logare) :includes
(Generare rapoarte) ....> (Logare) :includes
Angajat -> (Logare)
Angajat -> (Primeste notificare)
Angajat -> (Vizualizare comenzi)
(Primeste notificare) ...> (Logare) :includes
(Vizualizare comenzi) ...> (Logare) :includes
Client ---> (Logare)
Client --> (Inregistrare)
Client --> (Vizualizare produse)
Client --> (Selectare produse)
Client --> (Plasarea comenzii)
(Logare) .> (Inregistrare) :includes
(Vizualizare produse) .> (Logare) :includes
(Plasarea comenzii) .> (Logare) :includes
@enduml | false | true | false | false | class |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.