blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 5 227 | content_id stringlengths 40 40 | detected_licenses listlengths 0 28 | license_type stringclasses 2 values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 36 values | visit_date timestamp[us]date 2015-08-14 10:26:58 2023-09-06 06:45:32 | revision_date timestamp[us]date 2011-07-11 04:02:09 2023-09-04 16:40:12 | committer_date timestamp[us]date 2011-07-11 04:02:09 2023-09-04 16:40:12 | github_id int64 206k 631M ⌀ | star_events_count int64 0 6.51k | fork_events_count int64 0 1.54k | gha_license_id stringclasses 11 values | gha_event_created_at timestamp[us]date 2012-08-01 17:54:24 2023-09-14 21:57:05 ⌀ | gha_created_at timestamp[us]date 2009-05-21 02:09:00 2023-04-21 10:18:22 ⌀ | gha_language stringclasses 55 values | src_encoding stringclasses 12 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 16 1.74M | extension stringclasses 12 values | code stringlengths 16 1.74M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
455d371b0088bd6c71e649ae72b9dd07ecda2ac6 | 5758676606a2f3b662a3c51310dfd4f654e18a60 | /docs/ex43.puml | 88e2a0f3ab21154184540314380a768ce255d118 | [] | no_license | Jsnoap/snoap-cop3330-assignment3 | 7a2274e6d9cb503da670318cbfe0f8f1e03890de | 6dda24753cd7ca70ba8a811ff0d5f97bbed90636 | refs/heads/master | 2023-08-06T02:55:53.930887 | 2021-10-11T21:27:04 | 2021-10-11T21:27:04 | 414,395,809 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 318 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
+main( String[] args )
+createDirectories(String siteName, char jsFolder, char cssFolder, String authorName)
+createIndexHTML(String pathPlacement, String website, String creator)
+printCreations(String webName, char jsDirectory, char cssDirectory)
}
@enduml |
13a6acbd2940b1f6dd57cfc784f371e88d38a5b9 | 227c32f7a5991c0ce2de069dd1f0448c1e6949fb | /PlantUML/PoseFuser/PoseFuser_Class.puml | 0fc7c1d4483acae7a4607fe24c2447381fdeea42 | [] | no_license | ShisatoYano/SLAMDesignUML | 2b3af745ecf8ff1b88845e248a72c589fe9aa1ba | bb8678908952205d1fdc2ea5e49c9ca752e123b9 | refs/heads/master | 2022-11-25T17:49:03.514885 | 2020-08-02T00:27:38 | 2020-08-02T00:27:38 | 261,206,484 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,111 | puml | @startuml
skinparam classAttributeIconSize 0
class PoseFuser{
+ Eigen::Matrix3d ecov
+ Eigen::Matrix3d mcov
+ Eigen::Matrix3d totalCov
+ DataAssociator *dass
+ CovarianceCalculator *cvc
+ PoseFuser()
+ ~PoseFuser()
+ void setDataAssociator(DataAssociator *d){dass = d}
+ void setRefScan(const Scan2D *refScan){dass->setRefBase(refScan->lps)}
+ void setRefLps(const std::vecot<LPoint2D> &refLps){dass->setRefBase(refLps)}
+ double calIcpCovariance(const Pose2D &estMotion, const Scan2D *curScan, Eigen::Matrix3d &cov)
+ double fusePose(Scan2D *curScan, const Pose2D &estPose, const Pose2D &odoMotion, const Pose2D &lastPose, Pose2D &fusedPose, Eigen::Matrix3d &cov)
+ void calOdometryCovariance(const Pose2D &odoMotion, const Pose2D &lastPose, Eigen::Matrix3d &mcov)
+ fuse(const Eigen::Vector3d &mu1, const Eigen::Matrix3d &cv1, const Eigen::Vector3d &mu2, const Eigen::Matrix3d &cv2, Eigen::Vector3d &mu, Eigen::Matrix3d &cv)
+ void printMatrix(const Eigen::Matrix3d &mat)
}
PoseFuser o-- DataAssociator
PoseFuser o-- CovarianceCalculator
@enduml |
6f0e88b9dce6776b676c315dd1548bf65abac559 | 4108210ff97f84d12acf511ede7d0e1cac0babc5 | /src/main/UML/CupCake_Class_Diagram.puml | 70ee0769ba2ed2cacd0e343a649e48abdc585d80 | [] | no_license | ariktwena/CupCake_Onion | 939f6d8c93a8346e596438e733f8cde60a786d34 | 4ad20f6dd13633e9434781551ae885b9b07285c6 | refs/heads/master | 2023-01-14T05:37:12.378772 | 2020-11-22T22:11:04 | 2020-11-22T22:11:04 | 309,806,347 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,725 | puml | @startuml
Title Mini Class Diagram (Onion)
hide circle
package core <<Rectangle>> {
class User {
int id
String email
String role
double credit
byte[] salt
byte[] secret
User withId(user_id)
int getId()
String getUserEmail()
String getUserRole()
double getUser_credit()
byte[] getSalt()
byte[] getSecret()
void setUser_credit()
void generateSalt()
byte[] calculateSecret(byte[] salt, String password)
boolean isPasswordCorrect(String password)
String byteArrayToHex(byte[] a)
}
}
package domain <<Rectangle>> {
interface UserFactory {
interface
}
interface UserRepository {
interface
}
interface UserServices {
interface
}
}
package api <<Rectangle>> {
class Api {
User createUser(String user_email, String password1, String password2)
User login(String email, String password)
ArrayList<User> getAllUsersFromDB()
User createUserFromAdminPage(String user_email, String password, String user_role, double user_credit)
User getUserById(int user_id)
updateUserById(int user_id, String user_role, double user_credit)
void deleteUserById(int user_id)
void changeUserRoleToCustomer(int user_id)
void changeUserRoleToAdmin(int user_id)
}
}
package entries/UI <<Rectangle>> {
class BaseServlet {
Login
Register
AddCustomer
AdminPage
BulkHandlerUsers
DeleteCustomer
EditCustomer
}
}
package infrastructure <<Rectangle>> {
class Database {
}
class DBUserFactory {
implements UserFactory
User createUser(User user)
}
class DBUserRepository {
implements UserRepository
ArrayList<User> getAllUsersFromDB()
User getUserById(int user_id)
}
class DBUserServices {
implements UserServices
void pdateUserById(int user_id, String user_role, double user_credit)
void deleteUserById(int user_id)
void changeUserRoleToCustomer(int user_id)
void changeUserRoleToAdmin(int user_id)
boolean userAldreadyExistsInDB(String email)
User login(String user_email )
void updateUserCreditBalance(int user_id, double newCreditBalance)
}
}
User <-- UserFactory
User <-- UserRepository
User <-- UserServices
UserFactory <-- Api
UserRepository <-- Api
UserServices <-- Api
Api <.. DBUserFactory
Api <.. DBUserRepository
Api <.. DBUserServices
DBUserFactory <-- Database
DBUserRepository <-- Database
DBUserServices <-- Database
Database <-- BaseServlet
@enduml |
c9acf5d4cc1296d9c67696c7ed696e1a146c339a | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1140611/sprint3/core_of_lang08.2.puml | 28a56f705e541e6711354cc70efe14861ea53f3f | [] | no_license | ABCurado/University-Projects | 7fb32b588f2c7fbe384ca947d25928b8d702d667 | 6c9475f5ef5604955bc21bb4f8b1d113a344d7ab | refs/heads/master | 2021-01-12T05:25:21.614584 | 2017-01-03T15:29:00 | 2017-01-03T15:29:00 | 77,926,226 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 371 | puml | @startuml doc-files/core_of_lang08.2.png
class ImportXMLController{
}
class UIController {
}
class ImportXML {
}
class Workbook{
}
class SpreadSheet{
}
class Cell{
}
UIController <-- ImportXMLController
ImportXML <-- ImportXMLController
Workbook <-- ImportXML
SpreadSheet <-- Workbook
SpreadSheet <-- ImportXML
Cell<--SpreadSheet
@enduml
|
7990e9ff355e10d148df174f76c8f5f322089ba1 | 86a3a7f68a26bf947a96c34a6b008dc98e48c575 | /lapr2-2020-g041/docs/UC12/UC12_CD.puml | d03a000a885c567935371ded6cb445dcede6bb1d | [
"MIT"
] | permissive | GJordao12/ISEP-LAPR2 | 7f01f7fe4036f17a4a76f0595e80564c2dda7b3c | 0c537d1cf57f627f98e42b6f1b7e100f49ff2d15 | refs/heads/master | 2023-08-17T10:59:19.469307 | 2021-10-02T16:27:19 | 2021-10-02T16:27:19 | 272,283,723 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,159 | puml | @startuml
class MenuAdministratorUI {
}
class SendEmailAutomaticallyTask {
+getFreelancerToSendEmailTo()
+SendEmailAutomaticallyTask()
}
class Platform {
-String designation
+getOrganizationsRegister()
+getFreelancersRegister()
+getExternalEmailSenderAlgorithm()
}
class Organization {
-String designation
+getPaymentTransactionList()
}
class OrganizationsRegister{
+getOrganizationsList()
+calculateOverallPercentageOfDelays()
+getMean(id)
+getPercentage(id)
}
class PaymentTransaction {
-String id
+getFreelancer()
+getTask()
}
class Date{
+getYear()
}
class Calendar{
+get(Calendar.YEAR)
+getInstance()
+getTime()
+setTime(date)
}
class PaymentTransactionsList{
+getPaymentTransactions()
}
class Task {
-String id
-String briefDescription
-Double timeDuration
-Double costPerHour
-String category
+getTaskExecution()
}
class TaskExecution {
-Date deadline
-Double delay
-String descQualityWork
+getDelay()
+getDate()
}
class FreelancerRegister {
+getFreelancers()
}
interface ExternalEmailSenderAlgorithm {
+sendEmail(EmailSender, email, Subject, Message)
}
class Freelancer {
-String id
-String name
-String email
-Integer NIF
-String IBAN
-double OverallPayments
+getEmail()
+getId()
}
MenuAdministratorUI ..> SendEmailAutomaticallyTask
SendEmailAutomaticallyTask ..> Platform
SendEmailAutomaticallyTask ..> Date
SendEmailAutomaticallyTask ..> Calendar
Platform ..> Date
Platform ..> Calendar
Platform "1" --> "1" ExternalEmailSenderAlgorithm: resort to
Platform "1" --> "1" OrganizationsRegister: has
OrganizationsRegister "1" --> "*" Organization: has registered
Platform "1" --> "1" FreelancerRegister : has
Organization "1" --> "1" PaymentTransactionsList: has
Freelancer "1" --> "*" Task: does
PaymentTransaction "1" --> "1" Freelancer: related to
PaymentTransaction "1" --> "1" Task: related to
FreelancerRegister "1" --> "*" Freelancer: has
PaymentTransactionsList "1" --> "*" PaymentTransaction: has
ExternalEmailSenderAlgorithm "1" --> "*" Freelancer: sends email
Task "1" --> "0..1" TaskExecution : has
@enduml
|
6651bb50474b2c86142dc8620d22f587a232eae9 | 0cdddbffab9119388dc349356bd46a414bd04aa6 | /WebWorkbook/uml/servlet.puml | 70532e506908957ec74767e8e1cce4441d7575b1 | [] | no_license | wanbaep/java-web-workbook | 1fcd106f5f97e8d5be8edb35e8e74fe7a5d63846 | 96ae4cef752bbfcf967f8a0b476ff3bdcfdf9c9f | refs/heads/main | 2023-06-03T13:52:33.948653 | 2021-06-26T03:05:47 | 2021-06-26T03:05:47 | 376,411,391 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 583 | puml | @startuml
skinparam classAttributeIconSize 0
interface javax.Servlet <<interface>> #aliceblue ##[dotted]blue {
+init()
+service()
+destory()
+getServletConfig()
+getServletInfo()
}
abstract javax.GenericServlet <<abstract>> #white {
+init()
+{abstract} service()
+destory()
+getServletConfig()
+getServletInfo()
}
abstract javax.HttpServlet <<abstract>> #white{
+service()
}
class ConcreteServlet <<servlet>> #white {
+service()
}
hide fields
javax.Servlet <|.. javax.GenericServlet
javax.GenericServlet <|.. javax.HttpServlet
javax.GenericServlet <|.. ConcreteServlet
@enduml |
d88229bfec47e471092b20d799419711b7b54291 | a81e562f727c45dbbca8c325630d0e26005d651c | /docs/plantuml/Model/IValuesAndTolerancesInProgress.puml | 691821e1b72384e77a11545b1d715af9bee51978 | [] | no_license | kelvinleclaire/PA2 | 46768de9af832d892812d39b248bf1636eb52db3 | 39fc53a5ecbcdecd81ace88a5f681769dc62813c | refs/heads/main | 2023-04-30T16:37:05.951439 | 2021-05-18T10:21:49 | 2021-05-18T10:21:49 | 368,485,770 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 116 | puml | @startuml
interface IValuesAndTolerancesInProgress extends IValuesAndTolerances {
measuredVal?: number
}
@enduml
|
b44369884146d0cb68ca864c379bda1c83aba824 | 2c50e2c92ea1e2fa53f9c3f1871b9163c61a2e00 | /EyeOfBeholder.Uml.Tests/testData/Operations.puml | 2d02bf04e15a9238088682e92ec0194091d361e7 | [] | no_license | piotr-polanski/EyeOfBeholder | 20a4cb3b15232bebc87793b2dc7e9412da9042c8 | 2222d267e565674084ce69c47bd039f492b878df | refs/heads/develop | 2021-03-19T16:51:42.063522 | 2017-06-06T07:33:55 | 2017-06-06T07:33:55 | 76,058,352 | 0 | 0 | null | 2016-12-10T09:42:41 | 2016-12-09T17:59:58 | C# | UTF-8 | PlantUML | false | false | 176 | puml | @startuml
class SomeArrayList {
+ publicOperation() : Object[]
- privateOperation() : String
# protectedOperation() : int
~ packagePrivateOperation() : dupa
}
@enduml |
9b60d959c917fffbe5de833101e787c65ef22679 | 3cdc8c4ff032e064dbc5767307b88a7a03b66e6a | /docs/graphical/Class_diagramm.plantuml | 4ac7c99ba0dfd53389be2a65dcb49c21d3e6f139 | [] | no_license | useownyxis/tritpo | 78f63fa34e8b59e5fdde39effb469d9bc8489fa4 | 2bc66e91b34e62e6f484b0455488a128b7650fef | refs/heads/master | 2023-02-03T13:52:50.134814 | 2020-12-16T01:43:36 | 2020-12-16T01:43:36 | 319,082,314 | 0 | 1 | null | 2020-12-16T01:43:37 | 2020-12-06T16:47:08 | JavaScript | UTF-8 | PlantUML | false | false | 2,321 | plantuml | @startuml
class Main {
-_Player: Player
-_UI: View
-_sortedBy: Element
-_originalFiles: Array
-_files: Array
-_titlebar: Titlebar
-_createTitlebar():undefined
+constructor(): Object
+sort(Event): undefined
+revertSorting(): undefined
+backupFiles(): undefined
}
class PermissionCheck {
+constructor(): Object
}
class Player {
-_UI: View
-_audioPlayer: Audio
-_index: Number
-_playInterval: undefined
-_repeat: Boolean
-_isShuffled: Boolean
+constructor(View): Object
+play(String, View, Main): undefined
+next(View, Main): undefined
+previous(View, Main): undefined
+setVolume(Number): undefined
+stop(View): undefined
+preloadHead(View, Main): undefined
+playPause(): undefined
+setProgress(Number): undefined
+toggleShuffle(Main, View): undefined
+reshuffleOnClick(Main, View, String): undefined
-_shuffleFiles(Array): Array
-_shuffle(Main, View): undefined
-_unshuffle(Main): undefined
}
class View {
-_currentlyPlaying: Element
-_list: Array<Element>
-_folderButton: Array<Element>
-_playButton: Array<Element>
-_forward: Array<Element>
-_backward: Array<Element>
-_shuffle: Array<Element>
-_repeat: Array<Element>
-_sortByName: Array<Element>
-_sortByAlbum: Array<Element>
-_sortByArtist: Array<Element>
-_search: Array<Element>
-_volume: Array<Element>
-_timerEnd: Array<Element>
-_timerStart: Array<Element>
-_albumCover: Array<Element>
-_songName: Array<Element>
-_artist: Array<Element>
-_progress: Array<Element>
-_updateInterval: Object
-_albumCoverImage: Element<Image>
+constructor(Main, Player): Object
+search(Event): undefined
+listFiles(Array<String>, Boolean, Main, Player): undefined
+resetUI(): undefined
+updateSongListMetaData(Main): Array<Element>
+markSort(Element): undefined
+unmarkSort(Element): undefined
+updateUI(Main, Player): undefined
+togglePlayButton(Player): undefined
+updateTitlebarColor(Main, Element<Image>): undefined
-_toggleRepeat(Player): undefined
-_getElem(String): Element
-_toggleShuffle(Main, Player): undefined
}
View *-- Player: contains
View *-- Main: contains
Player *-- Main: contains
@enduml |
8830f94037c29ab82e1d463c62433f6acc159967 | f601c40e50e0f113f480ae2de3e80bc4a3172f86 | /docs/Solution/Services/app-analyzer/Logical.puml | cbf4a9cbce7b80334408c7a1f3f7819802355b88 | [] | no_license | CAADE/C3 | 07307a3795888672df18e99932e25951911eaf1d | 4bbe48a335b936cf75808d0902b32f73b99ff958 | refs/heads/master | 2022-11-24T14:52:05.724752 | 2019-06-19T03:32:46 | 2019-06-19T03:32:46 | 67,574,474 | 1 | 0 | null | 2022-11-22T11:28:45 | 2016-09-07T05:19:16 | JavaScript | UTF-8 | PlantUML | false | false | 201 | puml | @startuml
package "app-analyzer" #lightblue {
interface "app-analyzer" {
}
CLI ()-- "app-analyzer" : 5000
REST ()-- "app-analyzer" : 3000
Web ()-- "app-analyzer" : 80
}
@enduml
|
36c9d02863e4d765e69efeb42a2b6ca16136a6ce | b7763719b3597ee580f757cff6cc71b13406d811 | /domain-e-com.plantuml | 3c2963d4e0aec17c9c924a8d75e54d01ed2c5f85 | [] | no_license | olegische/test-task-sberdevices | 47309360306b493d4cea2cbad331103ac1b95c0b | 7baed00c91db85b4aab2889e82531623d6137abf | refs/heads/master | 2023-05-14T01:37:58.457085 | 2021-05-28T12:32:44 | 2021-05-28T12:32:44 | 370,906,789 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 300 | plantuml | @startuml
skinparam monochrome true
hide circles
class "Product" as Prod {
id
type
name
price
}
class "Order" as Ord {
id
guid
productId
total
}
class "Customer" as Cust {
id
name
credentials
}
Ord "0..*" o-- "1..*" Prod : contain >
Cust "1" -- "0..*" Ord : make >
@enduml
|
5e6c48673e3f3e8cc6209f60a39985e286e9f4db | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/SearchIndexingInProgressError.puml | 70ec6829d780d9aa87c51cbe6c9a4874d68c2690 | [] | 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 | 445 | 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 SearchIndexingInProgressError [[SearchIndexingInProgressError.svg]] extends ErrorObject {
code: String
message: String
}
interface ErrorObject [[ErrorObject.svg]] {
code: String
message: String
}
@enduml
|
9d841b3b6e85aa2584a425d077244a89185428d0 | 04d607dd9846b9f9a81379c9de714afcf6e58279 | /src/main/java/ex41/diagram41.puml | a0d60b807f084552a72018705aae746e9a8356ac | [] | no_license | christineh11/hawkins-cop3330-assignment3. | c9e3accd5c94c13559a56579a16061e577e65c90 | 7c9ee794f7c363bd249344531a9025cd60c4df5f | refs/heads/master | 2023-08-18T09:11:14.627713 | 2021-10-12T01:37:57 | 2021-10-12T01:37:57 | 416,139,621 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 417 | puml | @startuml
'https://plantuml.com/sequence-diagram
package "ex41" #DDDDDD {
Main <|-- Files
file exercise41_input{
}
class Main{
+name: ArrayList<String>
+{static}{method}main()
+sortnames.readname(name);
+sortnames.output(name);
}
file exercise41_output{
class Files{
+ name:ArrayList<String>
+{method}{static}readname((name)
+{method}{static}output(name)
}
@enduml |
61c066f5d14a9ae440041c32a439b53e81c997f1 | 4da31ca3f9ded9cc6d9ebf2ab2b9414d27219565 | /doc/010_Introduction/diagram.puml | 9270f777e5616811d1dbdf60f0e42c73eeba3da6 | [
"MIT"
] | permissive | sinnerschrader/count-docu | 4378b116a124a8a26552090937f74cd7df22e84a | 8332cede50b59bb5cfc5b0d96ef8fd68431952ba | refs/heads/master | 2021-01-20T15:04:38.441552 | 2017-11-10T12:53:24 | 2017-11-10T12:53:24 | 82,793,140 | 3 | 3 | null | 2023-08-29T11:55:56 | 2017-02-22T10:44:05 | JavaScript | UTF-8 | PlantUML | false | false | 107 | puml | @startuml
class Hello {
message: string
sayIt(): string
}
class World {
}
World -up-|> Hello
@enduml |
0b58111f93bc33b60deea9b6e6623d4d561d4950 | c815f9c82c1400f76243750cd0ec609d217b9943 | /api-gateway/etc/api-gateway-service.urm.puml | 409e7ee918428b2c32cfcddfe75f12418d9f7306 | [
"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 | 1,121 | puml | @startuml
package com.iluwatar.api.gateway {
class App {
+ App()
+ main(args : String[]) {static}
}
class PriceClientImpl {
+ PriceClientImpl()
+ getPrice() : String
}
class ImageClientImpl {
+ ImageClientImpl()
+ getImagePath() : String
}
class MobileProduct {
- price : String
+ MobileProduct()
+ getPrice() : String
+ setPrice(price : String)
}
interface ImageClient {
+ getImagePath() : String {abstract}
}
class ApiGateway {
- imageClient : ImageClient
- priceClient : PriceClient
+ ApiGateway()
+ getProductDesktop() : DesktopProduct
+ getProductMobile() : MobileProduct
}
class DesktopProduct {
- imagePath : String
- price : String
+ DesktopProduct()
+ getImagePath() : String
+ getPrice() : String
+ setImagePath(imagePath : String)
+ setPrice(price : String)
}
interface PriceClient {
+ getPrice() : String {abstract}
}
}
ApiGateway --> "-imageClient" ImageClient
ApiGateway --> "-priceClient" PriceClient
PriceClientImpl ..|> PriceClient
ImageClientImpl ..|> ImageClient
@enduml |
da288b7254b06b6f66f7169639ca99dabf3d7d74 | e8f327b2aa41f6ee546541cbe4260a22fb59c75c | /src/doc/Controllers/HouseMonitoring/US633/US633_cd_HouseMonitoring.puml | d7846087d266a482e63f91669fd5f83c86b1adc1 | [] | no_license | DanielOl1veira/units | 5160065c3cd327332bd0aeb9a289ea742f112087 | ada7ea59d295efc29d6122e747e5c5da67e8ba37 | refs/heads/master | 2020-05-04T09:06:59.991606 | 2019-04-02T15:20:04 | 2019-04-02T15:20:04 | 179,061,264 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,146 | puml | @startuml
title US633 Class Diagram
skinparam titleBorderRoundCorner 10
skinparam titleBorderThickness 2
skinparam titleBorderColor indianred
skinparam titleBackgroundColor ivory
skinparam FontName verdana
skinparam class {
BorderColor indianred
BackgroundColor indianred
BackgroundColor ivory
roundcorner 10
ArrowFontName Verdana
ArrowColor indianred
ArrowFontColor darkslategrey
}
class House
MainUI -- HouseMonitoringUI : >
HouseMonitoringUI -- InputUtils : >
HouseMonitoringUI -- HouseMonitoringController : >
HouseMonitoringController -- House : >
House "1" -- "1" GeographicArea : has >
GeographicArea "1" -- "1" SensorList : has >
SensorList"1" -- "0.n" Sensor : may have >
Sensor "0.n" -- "1" Location: is in >
Sensor "0.n" -- "1" TypeSensor: has >
Sensor "1" -- "1" ReadingList: has >
class HouseMonitoringUI {
runUS633(House)
getStartDate()
getEndDate()
updateAndDisplayUS633()
}
class InputUtils{
getInputYearMonthDay()
}
class HouseMonitoringController {
getHighestTempAmplitudeDate()
getHighestTempAmplitudeValue()
}
class House{
motherArea;
getClosestSensorOfGivenType(String)
getMinDistanceToSensorOfGivenType(String)
}
class GeographicArea{
SensorList;
getSensorsOfGivenType()
}
class SensorList{
List<Sensor> sensors
ReadingList readingList
getSensorListByType(String)
getSensorsByDistanceToHouse(House, double)
getMostRecentlyUsedSensor()
getMostRecentReadingDate()
}
class Sensor{
TypeSensor;
Local;
getSensorTypeName()
getDistanceToHouse(House)
getLinearDistanceBetweenLocalsInKm(Location)
getDateHighestAmplitudeBetweenDates(Date, Date)
}
class TypeSensor{
name;
getName()
}
class Location{
double latitude;
double longitude;
getLinearDistanceBetweenLocalsInKm(Location)
}
class ReadingList{
List<Reading> readings;
getMostRecentReadingDate()
getMostRecentReading()
getDateHighestAmplitudeBetweenDates(Date, Date)
getReadingListBetweenDates(Date, Date)
isReadingDateBetweenTwoDates(Date, Date, Date)
getAmplitudeValueFromDate(Date)
getValuesOfSpecificDayReadings(Date)
getFirstSecondOfDay(Date)
getLastSecondOfDay(Date)
compareDayMonthAndYearBetweenDates(Date, Date)
}
@enduml |
fcd63c55c6de1add1b9b77ed47acf27220f7afae | ad8e77d1d1e5111ca99cfc1f3868186c72b34f49 | /A2Prj.plantuml | 1eb9b9da07270867479cba4e3378ee1123302762 | [] | no_license | PhucTruong98/A2Prj | 29c3d264af89d261fa69c716e97065fff90867ab | 6c1d309920172bab08b0d9e164aaed15a5786760 | refs/heads/master | 2023-04-11T08:10:45.452232 | 2021-04-28T02:49:21 | 2021-04-28T02:49:21 | 362,318,126 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,913 | plantuml | @startuml
title __A2PRJ's Class Diagram__\n
namespace org.csc133.a2 {
class org.csc133.a2.AppMain {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.Bird {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.ButtonsPanel {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.ClockTest {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.DamageDisplay {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.Fixed {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.FuelDisplay {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.Game {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.GameClockComponent {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.GameObject {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.GameObjectCollection {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.GameSettings {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.GameWorld {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.GlassCockpit {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.HeadingDisplay {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.Hellicopter {
}
}
namespace org.csc133.a2 {
interface org.csc133.a2.IDrawable {
}
}
namespace org.csc133.a2 {
interface org.csc133.a2.IsSteerable {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.LastSkyScraperDisplay {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.LivesDisplay {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.Location {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.MapView {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.Movable {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.RefuelingBlimp {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.SevenSegDisplayComponent {
}
}
namespace org.csc133.a2 {
class org.csc133.a2.SkyScraper {
}
}
org.csc133.a2.Bird -up-|> org.csc133.a2.Movable
org.csc133.a2.ButtonsPanel -up-|> com.codename1.ui.Container
org.csc133.a2.ClockTest -up-|> com.codename1.ui.Component
org.csc133.a2.DamageDisplay -up-|> org.csc133.a2.SevenSegDisplayComponent
org.csc133.a2.Fixed -up-|> org.csc133.a2.GameObject
org.csc133.a2.FuelDisplay -up-|> org.csc133.a2.SevenSegDisplayComponent
org.csc133.a2.Game .up.|> java.lang.Runnable
org.csc133.a2.Game -up-|> com.codename1.ui.Form
org.csc133.a2.Game o-- org.csc133.a2.GameWorld : gameWorld
org.csc133.a2.Game o-- org.csc133.a2.GlassCockpit : glassCockpit
org.csc133.a2.Game o-- org.csc133.a2.MapView : mapView
org.csc133.a2.GameClockComponent -up-|> org.csc133.a2.SevenSegDisplayComponent
org.csc133.a2.GameObject .up.|> org.csc133.a2.IDrawable
org.csc133.a2.GameObject o-- org.csc133.a2.Location : location
org.csc133.a2.GameWorld o-- org.csc133.a2.GameObjectCollection : collection
org.csc133.a2.GameWorld o-- org.csc133.a2.GlassCockpit : glassCockpit
org.csc133.a2.GameWorld o-- org.csc133.a2.MapView : mapView
org.csc133.a2.GameWorld o-- org.csc133.a2.Location : startingLocation
org.csc133.a2.GlassCockpit -up-|> com.codename1.ui.Container
org.csc133.a2.GlassCockpit o-- org.csc133.a2.ClockTest : clockTest
org.csc133.a2.GlassCockpit o-- org.csc133.a2.GameObjectCollection : collection
org.csc133.a2.GlassCockpit o-- org.csc133.a2.DamageDisplay : damageDisplay
org.csc133.a2.GlassCockpit o-- org.csc133.a2.FuelDisplay : fuelDisplay
org.csc133.a2.GlassCockpit o-- org.csc133.a2.HeadingDisplay : headingDisplay
org.csc133.a2.GlassCockpit o-- org.csc133.a2.LastSkyScraperDisplay : lastSkyScraperDisplay
org.csc133.a2.GlassCockpit o-- org.csc133.a2.LivesDisplay : livesDisplay
org.csc133.a2.GlassCockpit o-- org.csc133.a2.GameClockComponent : timer
org.csc133.a2.HeadingDisplay -up-|> org.csc133.a2.SevenSegDisplayComponent
org.csc133.a2.Hellicopter .up.|> org.csc133.a2.IsSteerable
org.csc133.a2.Hellicopter -up-|> org.csc133.a2.Movable
org.csc133.a2.LastSkyScraperDisplay -up-|> org.csc133.a2.SevenSegDisplayComponent
org.csc133.a2.LivesDisplay -up-|> org.csc133.a2.SevenSegDisplayComponent
org.csc133.a2.MapView -up-|> com.codename1.ui.Container
org.csc133.a2.MapView o-- org.csc133.a2.GameObjectCollection : gameObjectCollection
org.csc133.a2.Movable -up-|> org.csc133.a2.GameObject
org.csc133.a2.RefuelingBlimp -up-|> org.csc133.a2.Fixed
org.csc133.a2.SevenSegDisplayComponent -up-|> com.codename1.ui.Component
org.csc133.a2.SkyScraper -up-|> org.csc133.a2.Fixed
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
|
ac26adc955853e65f87cf529a8a784f8c50343e9 | 2c4f2efab569c5d9302f9c00a972298802e61f67 | /Task3_InformationHandling/src/by/training/task3/entity/entity.plantuml | 58d4ef18ea1df2ffe799bec90c47bc41d929518a | [] | no_license | alialiusefi/EPAM_JavaWebDev_Course | 066ffe0c3b3fcdd5b5a51b2e59e887752b1f1157 | b229167d84b118147d6b255229976b0ff3ec23aa | refs/heads/master | 2022-12-04T15:02:37.944559 | 2019-08-03T08:56:54 | 2019-08-03T08:56:54 | 170,365,647 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,472 | plantuml | @startuml
title __ENTITY's Class Diagram__\n
package by.training.task3.entity {
class Expression {
+ Expression()
+ toString()
}
}
package by.training.task3.entity {
class Lexeme {
+ Lexeme()
+ toString()
}
}
package by.training.task3.entity {
class Paragraph {
+ Paragraph()
+ toString()
}
}
package by.training.task3.entity {
class Punctuation {
+ Punctuation()
+ toString()
}
}
package by.training.task3.entity {
class Sentence {
+ Sentence()
+ toString()
}
}
package by.training.task3.entity {
class Symbol {
- character : Character
+ Symbol()
+ equals()
+ hashCode()
+ getComponent()
}
}
package by.training.task3.entity {
class Text {
+ Text()
+ toString()
}
}
package by.training.task3.entity {
class Word {
+ Word()
+ toString()
}
}
Expression -up-|> TextComposite
Lexeme -up-|> TextComposite
Paragraph -up-|> TextComposite
Punctuation -up-|> TextComposite
Sentence -up-|> TextComposite
Symbol -up-|> TextComposite
Text -up-|> TextComposite
Word -up-|> TextComposite
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
|
697e21128e2dfb3734e5dcce0f38e750588cf7fd | 51f5c0398b46f6712e44b34f3dd93a70f56c3551 | /src/main/java/seedu/allinonenus/moduleplanner/ModulePlanner.puml | 86636815517b0b57b1aebfe20d2cafdfee22051f | [] | no_license | AY2021S2-CS2113T-T09-3/tp | 27f7266901c5956ad32363ef328c083c97315f6a | 174234bb59eeb735d270f82871ef7971b608c8d0 | refs/heads/master | 2023-04-08T08:58:34.476604 | 2021-04-12T17:06:24 | 2021-04-12T17:06:24 | 344,310,640 | 0 | 4 | null | 2021-04-12T16:47:01 | 2021-03-04T01:14:10 | Java | UTF-8 | PlantUML | false | false | 1,637 | puml | @startuml
'https://plantuml.com/class-diagram
'abstract class AbstractList
'abstract AbstractCollection
'interface List
'interface Collection
'
'List <|-- AbstractList
'Collection <|-- AbstractCollection
'
'Collection <|- List
'AbstractCollection <|- AbstractList
'AbstractList <|-- ArrayList
'
'class ArrayList {
'Object[] elementData
'size()
'}
ModulePlanner "1..*" *-- Student
ModulePlanner "1" *-- Storage
ModulePlanner --> Ui
ModulePlanner --> Parser
ModulePlanner --> Priority
class ModulePlanner {
{static} #String moduleCode
{static} #ArrayList<Student> students
{static} #int totalSlots
{static} +String setModuleCode()
{static} +int setTotalSlots()
{static} +String getModuleCode()
{static} +int getTotalSlots()
{static} +void getStudent()
{static} +void findStudent()
{static} +Priority getChances()
{static} +void readInput()
+void run()
}
class Parser {
{static} #int parserToInteger()
{static} #boolean parserToBoolean()
}
class Storage {
{static} void writeFile()
{static} void createFile()
{static} void readFile()
}
class Student {
# String name
# boolean graduationRequirement
# int year
# int score
# int rank
+ String getName()
+ boolean isGraduationRequirement()
+ int getYear()
+ int getGraduationRequirementScore()
+ int getScore()
+ boolean getGraduationRequirement()
+ int getRank()
+ String toString()
+ int compareTo()
}
enum Priority {
LOW,
MEDIUM,
HIGH
}
class Ui {
+ {static} void showException()
+ {static} void showEmptyDescriptionException()
}
@enduml |
ae95a1e9007c76482192bac8d94d96f591fc77ec | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLSyntaxErrorError.puml | 251c8cce9b7730b34ffc6d8b1bd042b8e7c4c76e | [] | 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 | 414 | 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 GraphQLSyntaxErrorError [[GraphQLSyntaxErrorError.svg]] extends GraphQLErrorObject {
code: String
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
|
5cfaaedf52449a46214805147cf4e46f24125757 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/GraphQLDuplicateAttributeValuesError.puml | 1f7783b6439e2c051a82b9dd53afe1f07daa6b0e | [] | 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 | 490 | 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 GraphQLDuplicateAttributeValuesError [[GraphQLDuplicateAttributeValuesError.svg]] extends GraphQLErrorObject {
code: String
attributes: [[Attribute.svg List<Attribute>]]
}
interface GraphQLErrorObject [[GraphQLErrorObject.svg]] {
code: String
}
@enduml
|
a911c6b518dbddfd9afdb95803896b565853edb7 | cd2efefc85cd057fdf39448ccd0f51b0eff745a1 | /src/main/java/com/author/kurtkalwin/datastore/datastore.plantuml | d610827b42495fa442ddf18b485d9760475fc293 | [
"MIT"
] | permissive | KurtKalwin/localDataStore | 8b57974a9d584a5506c7a479c4bc85a6e4b55b2c | bf4d62485545616622b492afc400b35e61bb8137 | refs/heads/main | 2023-02-12T15:19:43.288616 | 2021-01-03T14:28:44 | 2021-01-03T14:28:44 | 325,941,456 | 0 | 0 | MIT | 2021-01-03T13:26:49 | 2021-01-01T08:14:59 | Java | UTF-8 | PlantUML | false | false | 2,177 | plantuml | @startuml
title __DATASTORE's Class Diagram__\n
namespace com.author.kurtkalwin.datastore {
class com.author.kurtkalwin.datastore.FileStoreManager {
- dataStorePath : String
- dataStoreSize : int
+ FileStoreManager()
+ checkIfKeyExists()
+ deleteKey()
+ getDataStorePath()
+ getDataStoreSize()
+ readFromDataStore()
+ writeToDataStore()
- acquireFileLock()
- checkDataStoreSize()
- createKeyStore()
- createLocalStore()
- setupDataStore()
}
}
namespace com.author.kurtkalwin.datastore {
class com.author.kurtkalwin.datastore.LocalStore {
{static} - DEFAULT_MAX_DATASTORE_SIZE : int
{static} - EVICTION_PERIOD : int
{static} - MAX_JSON_OBJECT_SIZE : int
{static} - MAX_KEY_CHARS : int
+ LocalStore()
+ LocalStore()
+ LocalStore()
+ create()
+ create()
+ delete()
+ getDataStorePath()
+ read()
- startTTLEvictionService()
- validateKeyAndValue()
- validateSizeofJsonObject()
}
}
namespace com.author.kurtkalwin.datastore {
class com.author.kurtkalwin.datastore.TTLEvictionService {
- evictionMap : ConcurrentHashMap<String, Integer>
+ TTLEvictionService()
+ getEvictionMap()
+ run()
- shouldEvictKey()
}
}
com.author.kurtkalwin.datastore.LocalStore .up.|> com.author.kurtkalwin.datastore.Interfaces.KeyValueStore
com.author.kurtkalwin.datastore.LocalStore o-- com.author.kurtkalwin.datastore.FileStoreManager : fileStoreManager
com.author.kurtkalwin.datastore.LocalStore o-- com.author.kurtkalwin.datastore.TTLEvictionService : ttlEvictionService
com.author.kurtkalwin.datastore.TTLEvictionService -up-|> java.util.TimerTask
com.author.kurtkalwin.datastore.TTLEvictionService o-- com.author.kurtkalwin.datastore.FileStoreManager : fileStoreManager
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
|
5b29065bde12028ee86362cf500f29a3c400e732 | 8159905bc8e7af952c48c8f7bfa1611c001c5e35 | /MPD_UrlShortener.puml | d8cea89223606b367bea47f202514b13631e0da7 | [] | no_license | AndreaJ75/URLshortenerService_Project | 2ed5f32c18d390856a0a0a482995b7fbd864daa0 | 702e28875d56b0de6a70614189b5f8da7f9b88ef | refs/heads/master | 2021-01-06T14:33:23.662678 | 2020-06-15T15:31:37 | 2020-06-15T15:31:37 | 241,361,826 | 0 | 0 | null | 2020-06-15T15:31:39 | 2020-02-18T13:00:26 | Java | UTF-8 | PlantUML | false | false | 505 | puml | @startuml
url_link "0..*" *- " 1" app_user: < have
app_user "1..*" - "1..*" authority
(app_user, authority) .. app_user_authority
class app_user {
id
uid
first_name
name
email
creation_date
update_date
}
class authority {
id
authority_level
}
class app_user_authority {
app_user_id
authority_id
}
class url_link {
id
url_long
url_short_key
url_password
click_number
max_click_number
expiration_date
creation_date
update_date
app_user_id
}
enum authority_level {
ROLE_ADMIN
ROLE_USER
}
@enduml
|
daf584abf8431d8ae776b209e3549be3bae8efd6 | a124f8cffd3f9d60d4b1dfe10771c9147d4d8367 | /docs/UML/Diagramme de classe.puml | 3a628adbdc83559fe850748e055103bc585eaa4f | [] | no_license | dorianleveque/CoHub | 6d74d48bc68b78865eca96008319a7900710dcb6 | 1427516ecaa1bcb3e6f53d1822bc9b30fb5a2ba6 | refs/heads/master | 2023-01-13T03:15:42.307065 | 2020-11-21T15:59:01 | 2020-11-21T15:59:01 | 314,390,488 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,220 | puml | @startuml diagramme de classe
skinparam classAttributeIconSize 0
package "class" as alias <<Frame>> {
abstract class Ticket <<abstract>> {
- id: int
- title: string
- description: string
- category: string
- creationDate: string
__
<<create>>
+ Ticket(id: int = null, title: string, description: string,
category: string, creationDate : string, requester: User)
<<destroy>>
+ Ticket()
+ getId(): int
+ getTitle(): string
+ setTitle(title:string)
+ getDescription(): string
+ setDescription(description: string)
+ getCategory (): string
+ setCategory(category: string)
+ getCreationDate (): string
+ getRequester(): User
+ getHelpers(): User [*]
+ displayThumbnail (): string
{abstract}+ display()
+ addHelper(helper: User)
+ isHelper(user: User): boolean
+ addMessage(msg: string, user: User)
+ edit()
+ save()
+ delete()
}
class Conversation {
__
<<create>>
+ Conversation()
<<destroy>>
+ Conversation()
+ addMessage()
+ getMessages(): Message [*]
+ getMessage(id:int): Message
}
class Message {
-text: string
-sender : User
__
<<create>>
+ Message(texte: string, sender : User)
<<destroy>>
+ Message()
+ getText(): string
+ getSender(): User
+ save()
}
class TicketCarPooling {
- departurLocation: string
- arrivalLocation: string
- departurTime: string
- arrivalTime: string
- places: int
__
<<create>>
+ TicketCarPooling(id: int = null, title: string, description: string,
category: string, creationDate: string, requester: User,
departurLocation: string, arrivalLocation: string,
departurTime: string, arrivalTime: string, places: string )
<<destroy>>
+ TicketCarPooling()
+ getDeparturLocation (): string
+ setDeparturLocation(departurLocation: string)
+ getArrivalLocation(): string
+ setArrivalLocation(arrivalLocation: string)
+ getDeparturTime(): string
+ setDeparturTime(departurTime: string)
+ getArrivalTime(): string
+ setArrivalTime(arrivalTime: string)
+ getPlaces(): int
+ setPlaces(places: int)
+ display()
+ save()
}
class TicketStudy {
- subjetct: string
- semester: string
- teacher: string
- theme: string
__
<<create>>
+ TicketStudy(id: int = null, title: string, description: string, category: string,
creationDate: string, requester : User, subjetct: string, semester: string, teacher: string = null,
theme: string = null )
<<destroy>>
+ TicketStudy()
+ getSubject() : string
+ setSubject(subjetct: string)
+ getSemester() : string
+ setSemester(semester: string)
+ getTeacher() : string
+ setTeacher(teacher: string)
+ getTheme() : string
+ setTheme(theme : string)
+ display()
+ save()
}
class TicketSharing {
- item: string
__
<<create>>
+ TicketStudy(id: int = null, title: string, description: string,
category: string, creationDate : string, requester : User, item : string)
<<destroy>>
+ TicketStudy()
+ getItem() : string
+ setItem(item: string)
+ display()
+save()
}
class User {
- id : int
- name : string
- surname : string
- nickname : string
__
<<create>>
+ User(id: int, name: string, surname : string, nickname = null)
<<destroy>>
+ User()
+ getId() : int
+ getName() : string
+ getSurName() : string
+ getNickname() : string
+ setNickname(nickname: string)
+ createTicket(): Ticket
+ editTicket(t: Ticket)
+ handleTicket(id: int)
+ deleteTicket()
+ save()
+ checkRights(id)
}
class TicketListControleur {
__
<<create>>
+ TicketListControleur()
<<destroy>>
+ TicketListControleur()
+ getTickets(): Ticket
+ getTicket(id: int): Ticket
+ retriveTicket(id: int)
+ searchTickets (filter: string)
+ displayTickets()
+ displayTicket(id: int)
+ save()
+ clearTickets()
}
class App {
__
<<create>>
+ App()
<<destroy>>
+ App()
}
class Login {
+ curentUser: User
__
<<create>>
+ Login()
<<destroy>>
+ Login()
+ connect(username: string, password: string)
+ disconnect()
+ check(username: string, password: string): boolean
}
Ticket <|--- TicketCarPooling
Ticket <|---TicketStudy
Ticket <|---TicketSharing
App "1" *-right- "1" TicketListControleur: ticketListControler
App "1" *-left- "1" Login: login
User "1" *---left- "*" Ticket : requester
User "*" o---left- "*" Ticket : helper
Ticket "1" *---left- "1" Conversation: conversation
Conversation"1" *-left-- "*" Message :message
Ticket "*" -down-* "1" TicketListControleur : tickets
}
@enduml |
636561116cc5cf7990bfcd6077b603f8a34fd59d | 605cac101260b1b451322b94580c7dc340bea17a | /malokhvii-eduard/malokhvii02/doc/plantuml/ua/khpi/oop/malokhvii02/event/MillisTimer.puml | 6dca2eec4c33369f5795ad6a04d2dde1be8d842e | [
"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 | 234 | puml | @startuml
class MillisTimer {
-beginTimeMillis: long
-endTimeMillis: long
+MillisTimer()
+getRuntime(): long
+launchTimer(): long
+terminateTimer(): long
}
@enduml
|
00cdff3aabaf2ff84c3a4533e4173905ef02bf35 | 860e8e6ba756ddebbbef4d263a9c8203151b3114 | /Registration.puml | f4bc1d9ea61db97a0525068a5710ffd6cae1d27d | [] | no_license | aleakos/regSystem | 7b30942d3c67176e878ad21759cdba5558c932c8 | 589ed78d965160392d32d06aabf99089a320accb | refs/heads/master | 2023-08-16T02:14:29.094624 | 2021-09-16T17:39:07 | 2021-09-16T17:39:07 | 405,136,601 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 893 | puml | @startuml
'https://plantuml.com/class-diagram
class Course
class CourseCatalogue
class Registration
class Student
class CourseOffering
Course <-- Course : +prerequisite
CourseOffering o-- Course
CourseCatalogue --o Course
Student -- CourseCatalogue : uses
Student -- Registration
CourseOffering -- Registration
class Course {
- String courseName
- String courseNumber
- List<Course> prerequisite
+ addPrerequisite(Course)
+ checkPrerequisite(Course)
}
class Student {
- String firstName
- String lastName
- List<Registration> enrolled
+ register(String)
+ checkCatalogue(Course)
}
class CourseCatalogue {
- Set<Course> courses
+ addCourse()
}
class Registration {
- CourseOffering course
- Student student
- char grade
+ addGrade()
+ checkAvailability()
}
class CourseOffering {
- Course course
- ArrayList<Student> students
- char term
- String year
+ willClassRun()
}
@enduml |
44e3a70c1ac19412e55f3af4d211133f0289d5e2 | 2d233a502e90695894217ded43afcbec9421d34a | /phase2/src/main/java/model/model.plantuml | fb521e8badafde80d0c6308788b04cd9da60cadb | [] | no_license | kexinlin/CSC207-Software-Design | b9d51521481d6e8d9060b7d2febd2af88965b4f4 | 503e3e1b77a022e0804d714fefe79740da4fa4d9 | refs/heads/master | 2021-07-06T12:14:13.445225 | 2019-04-03T19:22:35 | 2019-04-03T19:22:35 | 188,863,831 | 0 | 0 | null | 2020-10-13T13:29:12 | 2019-05-27T14:59:35 | Java | UTF-8 | PlantUML | false | false | 732 | plantuml | @startuml
title __MODEL's Class Diagram__\n
package model {
enum Cash {
FIVE
TEN
TWENTY
FIFTY
numVal
}
}
package model {
class Message {
- text : String
+ Message()
+ getUser()
+ getText()
}
}
package model {
class Request {
- accountType : String
- msg : String
+ Request()
+ getUser()
+ getAccountType()
+ getMsg()
}
}
Message o-- User : user
Request o-- User : user
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
|
13a6714ae420deca6a576320a4a50acd60cf45ac | 7c2a17fd3d19a13fb71558f79900a2908de98c58 | /docs/uml-class-diagrams/middleware01/production/MiddlewareGisManager/MiddlewareGisManager.puml | 8f3a2fbc2d385ff42f93ddbb5ade502b9ba2b0e7 | [] | no_license | casher-ou/csi-3370-software-project | 483b1add9fbab8349f30009eecc123c884bdcc7b | 629fb9cce10429c2b80bd1ad33ab898d1466883b | refs/heads/main | 2023-01-22T00:44:50.062944 | 2020-11-29T23:00:50 | 2020-11-29T23:00:50 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 697 | puml | @startuml MiddlewareGisManager
package edu.oakland.production.middleware01 {
interface MiddlewareGisManager {
__
.. Use Case 1 ..
{abstract} + String receieveGpsSignalStrength(Satellite satelliteSignal)
' Middleware 2 is running evalutaiton concurrently?
{abstract} + void storeLocationDataPoint()
' Called by Middleware 2 in between the 2 "yes" branches
.. Use Case 2 ..
{abstract} + String attemptToRegainGpsLock(String satelliteName)
{abstract} + String evaluateGpsSignalStrength(boolean signalValid)
' Can we print from evaluate? If not, need a way to surface mode
' Get mode methods
}
}
@enduml |
1ae32aaada274b25c7f7bc6c0240135f758d7bf5 | 8a63b0892998da88f779e8a105831b644232540c | /DesignPatternlib/src/main/java/com/lhf/designpatternlib/strategy/strategy.puml | 4b4a85c85d0444397d6e0d225d0726dd6f245026 | [] | no_license | Joshua-Lu/MyStudyApp | b57311677135f3f5e0c98236afbbb14bdae8cbf1 | 6ca03dfd1bcbcb72bf53459949ee34a1879535b7 | refs/heads/master | 2023-08-09T19:00:38.909776 | 2023-07-30T16:15:28 | 2023-07-30T16:15:28 | 225,662,424 | 5 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 227 | puml | @startuml
interface IStrategy {
void strategyMethod()
}
IStrategy <|.. Strategy1
IStrategy <|.. Strategy2
class StrategyContext {
- IStrategy strategy
+ void strategyMethod()
}
StrategyContext *- IStrategy
@enduml |
175933dd63eb489af6c95928924c4b2cef382a38 | 18fc9f62daabb3bbfd158acb7a5657e8a72f133c | /Entwurf/Diagramme/Controller_package.puml | 46a5c7f386986216d51346e9de146f59c3033d90 | [
"MIT"
] | permissive | tzz1995/pse | 62b4f1ec3b0b02c221f43c1223f905d769e0bd37 | eb2179dea45564ae343a752724e849a0fb435d59 | refs/heads/master | 2021-10-23T20:22:57.125118 | 2019-03-19T18:04:16 | 2019-03-19T18:04:16 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 8,704 | puml | @startuml
skinparam defaultFontSize 15
namespace de.sswis.view {
}
namespace de.sswis.controller {
namespace de.sswis.controller.handlers {
}
together {
class de.sswis.controller.ModelServiceLoader [[ModelServiceLoader.html]] {
+getAdaptAlgorithmList(): List<AdaptationAlgorithm>
+getPairAlgorithmList(): List<PairingAlgorithm>
+getRankAlgorithmList(): List<RankingAlgorithm>
+getConditionList(): List<Condition>
+getBaseStrategyList(): List<BaseStrategy>
}
class de.sswis.controller.ModelParser [[ModelParser.html]] {
+parseSimulationToVMResult(Simulation): VMResult
+parseVMCombinedStrategyToCombinedStrategy(VMCombinedStrategy): CombinedStrategy
+parseVMConfigurationToConfigurations(VMConfiguration): Collection<Configuration>
+parseVMGameToGame(VMGame): Game
+parseVMGroupToGroup(VMGroup): Group
+parseVMInitializationToInitialization(VMInitialization): Collection<Initialization>
+parseVMStrategyToStrategy(VMStrategy): Strategy
}
class de.sswis.controller.FileManager [[FileManager.html]] {
+saveConfiguration(VMConfiguration): void
+saveGame(VMGame): void
+saveInitalization(VMInitialization): void
+saveCombinedStrategy(VMCombinedStrategy): void
+saveResult(VMResult): void
+loadConfigurations(String): VMConfiguration
+loadGame(String): VMGame
+loadInitalization(String): VMInitialization
+loadCombinedStrategy(String): VMCombinedStrategy
+loadResult(String): VMResult
+deleteConfiguration(String): void
+deleteGame(String): void
+deleteInitalization(String): void
+deleteCombinedStrategy(String): void
+deleteResult(String): void
}
class de.sswis.controller.ModelProvider [[ModelProvider.html]] {
{static} +getInstance(): ModelProvider
+addConfigurations(Configuration): void
+addGame(Game): void
+addCombinedStrategy(CombinedStrategy): void
+addInitialization(Initialization): void
+addStrategy(Strategy): void
+deleteConfiguration(String): void
+deleteGame(String): void
+deleteCombinedStrategy(String): void
+deleteInitialization(String): void
+deleteStrategy(String): void
}
together {
interface de.sswis.controller.AbstractGuiFactory [[AbstractGuiFactory.html]] {
{abstract} +createMainView(): AbstractMainView
{abstract} +createShowResultView(): AbstractShowResultView
{abstract} +createCompareResultsView(): AbstractShowCompareView
{abstract} +createMultiResultsView(): AbstractShowMultiResultView
{abstract} +createManageConfigurationsView(): AbstractManageConfigurationsView
{abstract} +createManageInitializationsView(): AbstractManageInitializationsView
{abstract} +createManageStrategiesView(): AbstractManageStrategiesView
{abstract} +createManageCombinedStrategiesView(): AbstractManageCombinedStrategiesView
{abstract} +createManageGamesView(): AbstractManageGamesView
{abstract} +createManageResultsView(): AbstractManageResultsView
{abstract} +createNewConfigurationView(): AbstractNewConfigurationView
{abstract} +createNewInitializationView(): AbstractNewInitializationView
{abstract} +createNewStrategyView(): AbstractNewStrategyView
{abstract} +createNewCombinedStrategyView(): AbstractNewCombinedStrategyView
{abstract} +createNewGameView(): AbstractNewGameView
}
class de.sswis.controller.SwingGuiFactory [[SwingGuiFactory.html]] {
+createMainView(): AbstractMainView
+createShowResultView(): AbstractShowResultView
+createCompareResultsView(): AbstractShowCompareView
+createMultiResultsView(): AbstractShowMultiResultView
+createManageConfigurationsView(): AbstractManageConfigurationsView
+createManageInitializationsView(): AbstractManageInitializationsView
+createManageStrategiesView(): AbstractManageStrategiesView
+createManageCombinedStrategiesView(): AbstractManageCombinedStrategiesView
+createManageGamesView(): AbstractManageGamesView
+createManageResultsView(): AbstractManageResultsView
+createNewConfigurationView(): AbstractNewConfigurationView
+createNewInitializationView(): AbstractNewInitializationView
+createNewStrategyView(): AbstractNewStrategyView
+createNewCombinedStrategyView(): AbstractNewCombinedStrategyView
+createNewGameView(): AbstractNewGameView
}
}
together {
interface de.sswis.controller.SimulationObserver [[SimulationObserver.html]] {
{abstract} +update(Simulation): void
}
class de.sswis.controller.ViewNotifier [[ViewNotifier.html]] {
+ViewNotifier(AbstractMainView)
+update(Simulation): void
}
}
de.sswis.controller.Test -[hidden]--> de.sswis.controller.handlers
hide de.sswis.controller.Test
de.sswis.controller.ModelProvider -[hidden]-> de.sswis.controller.FileManager
de.sswis.controller.ModelProvider -[hidden]> de.sswis.controller.handlers
de.sswis.controller.ModelProvider -[hidden]--> de.sswis.controller.handlers
de.sswis.controller.ModelProvider -[hidden]--> de.sswis.controller.ModelParser
de.sswis.controller.FileManager -[hidden]-> de.sswis.controller.ModelServiceLoader
de.sswis.controller.FileManager -[hidden]> de.sswis.controller.handlers
de.sswis.controller.ModelServiceLoader -[hidden]> de.sswis.controller.handlers
de.sswis.controller.ModelServiceLoader -[hidden]-> de.sswis.controller.ModelParser
de.sswis.controller.handlers -[hidden]> de.sswis.controller.AbstractGuiFactory
de.sswis.controller.handlers -[hidden]> de.sswis.controller.SimulationObserver
de.sswis.controller.ModelParser -[hidden]> de.sswis.controller.handlers
de.sswis.controller.SwingGuiFactory -[hidden]-> de.sswis.controller.SimulationObserver
de.sswis.view o-- "1" de.sswis.controller.handlers : actionHandler
de.sswis.controller.handlers --> "1" de.sswis.view : view
de.sswis.controller.handlers --> "1" de.sswis.controller.AbstractGuiFactory : factory
de.sswis.controller.handlers -> "1" de.sswis.controller.FileManager :fileManager
de.sswis.controller.handlers -> "1" de.sswis.controller.ModelServiceLoader : loader
de.sswis.controller.handlers --> "1" de.sswis.controller.ModelProvider : modelProvider
de.sswis.controller.handlers --> "1..*" de.sswis.controller.SimulationObserver : observer
de.sswis.controller.handlers -> "1" de.sswis.controller.ModelParser : parser
de.sswis.controller.ModelProvider -> "1" de.sswis.controller.ModelProvider: instance
de.sswis.controller.SwingGuiFactory -> "*" de.sswis.view
de.sswis.controller.ViewNotifier -> "1" de.sswis.view : mainView
de.sswis.controller.AbstractGuiFactory <|.. de.sswis.controller.SwingGuiFactory
de.sswis.controller.SimulationObserver <|.. de.sswis.controller.ViewNotifier
}
@enduml
PlantUML version 1.2018.09(Fri Jul 27 18:58:18 CEST 2018)
(APACHE source distribution)
Java Runtime: Java(TM) SE Runtime Environment
JVM: Java HotSpot(TM) 64-Bit Server VM
Java Version: 11.0.1+13-LTS
Operating System: Windows 10
OS Version: 10.0
Default Encoding: Cp1252
Language: de
Country: DE |
75180ca75aeef533419620cff16738f2134c77a6 | 3075b6c51514546942e45db273543621aef99dc2 | /plantUmlDiagrams/Altogether.puml | 01d3f7b73a58e909273447646042231cd76c20a8 | [] | no_license | DeclanBU/Design_Patterns_Project | 8192788cd784740e14d55eb14741d7cbad9ca0e5 | 7329048e0ba5ce7b7725f92694ba4a0629f3d9e1 | refs/heads/master | 2020-03-29T00:26:47.891280 | 2018-12-01T23:01:46 | 2018-12-01T23:01:46 | 149,339,795 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 6,587 | puml | @startuml
class FireBrigadeAdapter implements IVehicle {
private IFireBrigade iFireBrigade;
public FireBrigadeAdapter(IFireBrigade iFireBrigade
public String drive()
public String quincheFire()
}
interface IFireBrigade {
String turnOnSiren();
String drive();
}
abstract class Bicycle {
public abstract void setModel(String model);
public abstract String getModel();
public abstract int cost();
}
class Bmx extends Bicycle {
private String model;
public Bmx(){
model = " off road bmx";
public void setModel (String model){
this.model = model;
public String getModel () {
public int cost()
}
class ExtraFiveGears extends ModifiedBicycle {
public String model;
Bicycle bike;
public ExtraFiveGears(Bicycle bike)
this.bike = bike;
public void setModel(String model)
public String getModel(){
public int cost()
}
class ExtraTenGears extends ModifiedBicycle{
public String model;
Bicycle bike;
public ExtraTenGears(Bicycle bike)
this.bike = bike;
public void setModel(String model)
public String getModel()
return bike.getModel();
public int cost()
}
abstract class ModifiedBicycle extends Bicycle {
public abstract String getModel();
}
class MountainBike extends Bicycle {
private String model;
public MountainBike(){
model = "Raleigh Mountain Bicycle";
public void setModel (String model){
public String getModel ()
public int cost() {
}
class Ambulance extends Vehicle {
public Ambulance(){
this.setType("Ambulance");
}
class FireBrigade extends Vehicle implements IFireBrigade {
public FireBrigade()
this.setType(" Fire Brigade");
public String turnOnSiren(){
}
class GardaCar extends Vehicle{
public GardaCar()
this.setType(" Garda Car");
}
class GardaVehicleFactory extends VehicleFactory{
@Override
public Vehicle makeVehicle(String type) {
if (type.equals("C")) {
return new GardaCar();
} else if (type.equals("B")) {
return new HighSpeedGardaBike();
}
class HighSpeedGardaBike extends Vehicle {
public HighSpeedGardaBike()
this.setType(" High Speed Garda motorbike");
}
interface IVehicle {
String drive();
String quincheFire();
}
class RoadUserVehicleFactory extends VehicleFactory{
public IVehicle makeVehicle(String type){
}
abstract class Vehicle implements IVehicle{
private String type;
public void setType(String type){
public String getRescueType()
public String quincheFire()
String drive()
}
abstract class VehicleFactory {
public abstract IVehicle makeVehicle(String type);
}
interface DrivingState {
void gotStopped(String character);
void gotBreathilised(String character);
void gotLucky(String character);
}
class Drunk implements DrivingState{
RoadUser roadUser;
public Drunk(RoadUser roadUser)
this.roadUser = roadUser;
public void gotStopped(String character) {
System.out.println(character + " had too much to drink");
public void gotBreathilised(String character) {
public void gotLucky(String character) {
}
class Sober implements DrivingState{
RoadUser roadUser;
public Sober(RoadUser roadUser)
this.roadUser = roadUser;
public void gotStopped(String character) {
public void gotBreathilised(String character) {
public void gotLucky(String character) {
}
class CannotTurnOnHeadLights implements LightBehaviour {
public String turnOnLights(){
}
class CantDrive implements DrivingBehaviour {
public String drive(){
}
class CarDriver extends RoadUser {
public CarDriver(){
super();
drivingBehaviour = new DrivingOver60();
lightBehaviour = new TurnOnHeadLights();
}
interface DrivingBehaviour {
String drive();
}
class DrivingOver60 implements DrivingBehaviour {
public String drive(){
}
class DrivingUnder30 implements DrivingBehaviour {
public String drive(){
}
interface LightBehaviour {
String turnOnLights();
}
class MotorBikeDriver extends RoadUser {
public MotorBikeDriver()
drivingBehaviour = new Wheelie();
}
abstract class RoadUser {
DrivingBehaviour drivingBehaviour;
LightBehaviour lightBehaviour;
DrivingState drunk,sober,lucky,alcoholLevel;
public RoadUser(){
alcoholLevel = drunk;
public String brake()
public String manoveur()
public String getLightingBehaviour()
public String getDrivingBehaviour() {
public void setdrivingBehaviour(DrivingBehaviour drivingBehaviour){
public void setAlcoholLevel(DrivingState state){
public DrivingState getCurrentState()
public void gotStopped(String roadUser)
public DrivingState getDrunkState() { return drunk; }
public DrivingState getLuckyState() { return lucky; }
public DrivingState getSoberState() { return sober; }
}
class TractorDriver extends RoadUser {
public TractorDriver(){
super();
drivingBehaviour = new DrivingUnder30();
lightBehaviour = new TurnOnHeadLights(); {
}
class TurnOnHeadLights implements LightBehaviour {
public String turnOnLights() {
}
class Walker extends RoadUser {
public Walker() {
super();
drivingBehaviour = new CantDrive();
lightBehaviour = new CannotTurnOnHeadLights();
class BreathiliseTractorDriver extends PulledOver{
public BreathiliseTractorDriver(RoadUser tractorDriver){
super(tractorDriver);
public void breathaliser() {
}
class BreatiliseCarDriver extends PulledOver{
public BreatiliseCarDriver(RoadUser carDriver)
super(carDriver);
public void breathaliser()
}
abstract class PulledOver {
protected RoadUser stoppedDriver;
public PulledOver(RoadUser stoppedDriver)
public void pulledOver() {
public void namePlease()
public void speeding(){
breathaliser();
public void stillSpeeding()
public void breathaliser()
}
class BreathiliseTractorDriver extends PulledOver{
public BreathiliseTractorDriver(RoadUser tractorDriver){
super(tractorDriver);
public void breathaliser()
}
@enduml |
6b2f32488f85e5cf3396f8dbc130718dedcd8d5c | f94fe1542eddf05b1d0f7f7487e3a84c60afab0e | /diagrams/ex46.puml | affc977ef2b51e4fffa38be7a91047a0487f0317 | [] | no_license | Sonxaj/turner-cop3330-assignment3 | f4822b35154a0342271331ec50243cbfa35774d6 | f93767d4999374bcdb1bdc0bfcd10ee2c9d58189 | refs/heads/master | 2023-06-05T05:52:49.957364 | 2021-06-27T05:10:29 | 2021-06-27T05:10:29 | 377,025,787 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 245 | puml | @startuml
class wordF{
-String content
-int frequency
+getContent()
+getFreq()
+incrementFreq()
+String printStars()
+compareTo(wordF word)
}
class wordFrequencyFinder{
File input
List<wordF> words
+readWord()
+printResult()
}
@enduml |
20fea834a1b9202471e6d5fea4ba80b628d2d5c4 | 9719552a1c9d48895aa95b7235a414ce4f9be2a4 | /adapter/src/interfaceadapter/interfaceadapter.puml | a4b79ee8ac9c12273e9bba2e3e89b80207ed1cca | [] | no_license | lzyJava666/designMode | c2b582702ddb38eecf65b355408a937c8678f8c9 | cf3bee2e67ece800853efe6b0a1c06bde8c16bbf | refs/heads/main | 2023-03-07T13:55:48.882683 | 2021-02-04T07:59:16 | 2021-02-04T07:59:16 | 325,688,331 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 210 | puml | @startuml
interface IMethod{
method1():void
method2():void
method3():void
method4():void
method5():void
}
class MethodImpl
IMethod <|.. MethodImpl
class Client
Client ..> MethodImpl
@enduml |
57f2edd68423d3648e907f3fc8e80d3a4905b608 | ccc4a578b9cf4323653f87212acca9b3d12f1c23 | /WasteWatcherApp/WasteWatcherApp/UML/Messaging/IMessage.puml | 38cd83e900c921b74ea82b9f9f5bfd4ebbe652e5 | [] | no_license | MarioGeier00/WasterWatcherApp | 383531013b68fb52927ef4abf529e83bd6beff4b | 88190459884fa0252ebfe63fdf3e1ce852eeb75f | refs/heads/dev | 2023-06-04T09:37:22.112757 | 2021-07-01T11:57:02 | 2021-07-01T11:57:02 | 355,274,133 | 0 | 0 | null | 2021-05-19T12:48:26 | 2021-04-06T17:24:11 | C# | UTF-8 | PlantUML | false | false | 116 | puml | @startuml
interface IMessage {
LongAlert(message:string) : void
ShortAlert(message:string) : void
}
@enduml
|
f0e5ba435a8805fa04c371b9663f25f098cbfb89 | 7362047d625877843633820e89484e4bfac0f18e | /IG/twiskIG/src/Diagramme/DiagrammeUML.puml | 1b816147059c3183bee0c28cec032fa79fe87276 | [] | no_license | Amaroke/ArchivesS4 | 422ea7e8f93be2d3d1d07c07f69ef42c23b2e89b | 7735d7abcd3ea69f507cf1b806a346a6a9e3995a | refs/heads/master | 2023-05-12T07:40:42.250866 | 2021-06-05T14:54:24 | 2021-06-05T14:54:24 | 374,138,168 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 9,584 | puml | @startuml
class twisk.vues.VueArcIG {
+ void reagir()
- int getAX()
- int getBX()
- int getAY()
- int getBY()
- MondeIG getMonde()
- ArcIG getArc()
}
class twisk.ecouteurs.EcouteurDesactiverSelection {
+ void handle(ActionEvent)
- MondeIG getMonde()
}
class twisk.mondeIG.ActiviteIG {
}
class twisk.outils.TailleComposants {
- {static} TailleComposants instance
~ int longeurVBox
~ int hauteurVBox
+ {static} TailleComposants getInstance()
+ int getLongeurVBox()
+ int getHauteurVBox()
}
class twisk.ecouteurs.EcouteurSortie {
+ void handle(ActionEvent)
- MondeIG getMonde()
}
class twisk.ecouteurs.EcouteurArc {
+ void handle(MouseEvent)
- MondeIG getMonde()
- ArcIG getArc()
}
class twisk.exceptions.TwiskExceptionArcExistant {
}
class twisk.ecouteurs.EcouteurTemps {
+ void handle(ActionEvent)
- MondeIG getMonde()
}
class twisk.exceptions.TwiskException {
}
class twisk.exceptions.TwiskExceptionMemePoints {
}
class twisk.ecouteurs.EcouteurEntree {
+ void handle(ActionEvent)
- MondeIG getMonde()
}
class twisk.exceptions.TwiskExceptionDelai {
}
class twisk.mondeIG.ArcIG {
~ PointDeControleIG pt1
~ PointDeControleIG pt2
- boolean select
+ PointDeControleIG getPt1()
+ PointDeControleIG getPt2()
+ boolean isSelect()
+ void setSelect(boolean)
}
abstract class twisk.mondeIG.EtapeIG {
- String identifiant
- int largeur
- int hauteur
- String nom
- int posX
- int posY
- PointDeControleIG[] pointsDeControle
- boolean select
- boolean entree
- boolean sortie
- int temps
- int ecart
+ Iterator<PointDeControleIG> iterator()
+ void resetPdc()
+ void suppPdc()
- int getTemps()
+ void setTemps(int)
+ void setEcart(int)
+ String getNom()
+ void setNom(String)
+ String getIdentifiant()
+ int getPosX()
+ void setPosX(int)
+ int getPosY()
+ void setPosY(int)
+ int getLargeur()
+ int getHauteur()
+ PointDeControleIG[] getPointsDeControle()
- int getNombrePointsDeControle()
+ boolean isSelect()
+ void setSelect(boolean)
+ boolean isNotEntree()
+ void setEntree(boolean)
+ boolean isNotSortie()
+ void setSortie(boolean)
}
class twisk.MainTwisk {
+ {static} void main(String[])
+ void start(Stage)
}
abstract class twisk.vues.VueEtapeIG {
- MondeIG monde
- EtapeIG etape
- MondeIG getMonde()
+ EtapeIG getEtape()
}
class twisk.ecouteurs.EcouteurRenommer {
~ MondeIG monde
+ void handle(ActionEvent)
- MondeIG getMonde()
}
class twisk.mondeIG.PointDeControleIG {
~ int posX
~ int posY
~ String identifiant
~ EtapeIG etape
+ void setPos(int,int)
+ int getPosX()
+ int getPosY()
+ String getIdentifiant()
+ EtapeIG getEtape()
+ int getNumeroEtape()
}
class twisk.ecouteurs.EcouteurDragnDropPanneauDrop {
~ MondeIG monde
~ VueMondeIG vue
+ void handle(DragEvent)
- MondeIG getMonde()
- VueMondeIG getVue()
}
class twisk.ecouteurs.EcouteurPointDeControle {
~ MondeIG monde
~ PointDeControleIG pointDeControleIG
+ void handle(MouseEvent)
- MondeIG getMonde()
- PointDeControleIG getPointDeControleIG()
}
class twisk.exceptions.TwiskExceptionMemeEtape {
}
class twisk.ecouteurs.EcouteurDragnDropActivite {
~ MondeIG monde
~ VueEtapeIG vue
+ void handle(MouseEvent)
- VueEtapeIG getVue()
}
class twisk.vues.VueMondeIG {
- MondeIG monde
+ void reagir()
- MondeIG getMonde()
}
class twisk.vues.VueActiviteIG {
+ void reagir()
}
class twisk.ecouteurs.EcouteurDragnDropPanneau {
~ MondeIG monde
~ VueMondeIG vue
+ void handle(DragEvent)
}
class twisk.vues.VueMenu {
~ MondeIG monde
~ MenuItem renommer
~ MenuItem modifierDelai
~ MenuItem modifierEcart
+ void reagir()
- MondeIG getMonde()
- MenuItem getRenommer()
- MenuItem getModifierDelai()
- MenuItem getModifierEcart()
}
class twisk.mondeIG.MondeIG {
- ArrayList<ArcIG> arcs
- HashMap<String,EtapeIG> etapes
- PointDeControleIG pointSelectionne
+ void ajouter(String)
+ void ajouter(PointDeControleIG,PointDeControleIG)
+ int nbEtapesSelect()
+ Iterator<EtapeIG> iterator()
+ Iterator<ArcIG> iteratorArc()
+ ArrayList<ArcIG> getArcs()
+ HashMap<String,EtapeIG> getEtapes()
+ int getNbEtapes()
+ PointDeControleIG getPointSelectionne()
+ void setPointSelectionne(PointDeControleIG)
}
class twisk.ecouteurs.EcouteurEtape {
- MondeIG monde
- EtapeIG etape
+ void handle(MouseEvent)
- MondeIG getMonde()
- EtapeIG getEtape()
}
class twisk.ecouteurs.EcouteurEcart {
~ MondeIG monde
+ void handle(ActionEvent)
- MondeIG getMonde()
}
class twisk.vues.VueOutils {
- Button plus
- MondeIG monde
- Button getPlus()
- MondeIG getMonde()
+ void reagir()
}
interface twisk.vues.Observateur {
~ void reagir()
}
class twisk.outils.FabriqueIdentifiant {
- {static} FabriqueIdentifiant instance
~ int noEtape
+ {static} FabriqueIdentifiant getInstance()
+ String getIdentifiantEtape()
}
class twisk.ecouteurs.EcouteurSupprimerSelection {
~ MondeIG monde
+ void handle(ActionEvent)
- MondeIG getMonde()
}
class twisk.vues.VuePointDeControleIG {
~ MondeIG monde
~ PointDeControleIG pointDeControle
+ void reagir()
- MondeIG getMonde()
- PointDeControleIG getPointDeControle()
}
class twisk.mondeIG.SujetObserve {
- ArrayList<Observateur> observateurs
+ void ajouterObservateur(Observateur)
+ void notifierObservateur()
- ArrayList<Observateur> getObservateurs()
}
class twisk.exceptions.TwiskExceptionTemps {
}
twisk.vues.Observateur <|.. twisk.vues.VueArcIG
javafx.scene.layout.Pane <|-- twisk.vues.VueArcIG
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurDesactiverSelection
twisk.mondeIG.EtapeIG <|-- twisk.mondeIG.ActiviteIG
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurSortie
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurArc
twisk.exceptions.TwiskException <|-- twisk.exceptions.TwiskExceptionArcExistant
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurTemps
twisk.exceptions.Exception <|-- twisk.exceptions.TwiskException
twisk.exceptions.TwiskException <|-- twisk.exceptions.TwiskExceptionMemePoints
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurEntree
twisk.exceptions.TwiskException <|-- twisk.exceptions.TwiskExceptionDelai
twisk.mondeIG.Iterable <|.. twisk.mondeIG.EtapeIG
javafx.application.Application <|-- twisk.MainTwisk
twisk.vues.Observateur <|.. twisk.vues.VueEtapeIG
twisk.vues.VBox <|-- twisk.vues.VueEtapeIG
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurRenommer
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurDragnDropPanneauDrop
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurPointDeControle
twisk.exceptions.TwiskException <|-- twisk.exceptions.TwiskExceptionMemeEtape
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurDragnDropActivite
twisk.vues.Observateur <|.. twisk.vues.VueMondeIG
javafx.scene.layout.Pane <|-- twisk.vues.VueMondeIG
twisk.vues.Observateur <|.. twisk.vues.VueActiviteIG
twisk.vues.VueEtapeIG <|-- twisk.vues.VueActiviteIG
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurDragnDropPanneau
twisk.vues.Observateur <|.. twisk.vues.VueMenu
javafx.scene.control.MenuBar <|-- twisk.vues.VueMenu
twisk.mondeIG.Iterable <|.. twisk.mondeIG.MondeIG
twisk.mondeIG.SujetObserve <|-- twisk.mondeIG.MondeIG
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurEtape
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurEcart
twisk.vues.Observateur <|.. twisk.vues.VueOutils
javafx.scene.layout.TilePane <|-- twisk.vues.VueOutils
javafx.event.EventHandler <|.. twisk.ecouteurs.EcouteurSupprimerSelection
twisk.vues.Observateur <|.. twisk.vues.VuePointDeControleIG
javafx.scene.shape.Circle <|-- twisk.vues.VuePointDeControleIG
twisk.exceptions.TwiskException <|-- twisk.exceptions.TwiskExceptionTemps
twisk.vues.VueArcIG -- "1" twisk.mondeIG.MondeIG
twisk.vues.VueArcIG -- "1" ArcIG
twisk.ecouteurs.EcouteurDesactiverSelection -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurSortie -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurArc -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurArc -- "1" twisk.mondeIG.ArcIG
twisk.ecouteurs.EcouteurTemps -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurEntree -- "1" twisk.mondeIG.MondeIG
twisk.mondeIG.ArcIG -- "2" twisk.mondeIG.PointDeControleIG
twisk.mondeIG.EtapeIG -- "4" twisk.mondeIG.PointDeControleIG
twisk.vues.VueEtapeIG -- "1" twisk.mondeIG.MondeIG
twisk.vues.VueEtapeIG -- "1" twisk.mondeIG.EtapeIG
twisk.ecouteurs.EcouteurRenommer -- "1" twisk.mondeIG.MondeIG
twisk.mondeIG.PointDeControleIG -- "1" twisk.vues.VueEtapeIG
twisk.ecouteurs.EcouteurDragnDropPanneauDrop -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurDragnDropPanneauDrop -- "1" twisk.vues.VueMondeIG
twisk.ecouteurs.EcouteurPointDeControle -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurPointDeControle -- "1" twisk.mondeIG.PointDeControleIG
twisk.ecouteurs.EcouteurDragnDropActivite -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurDragnDropActivite -- "1" twisk.vues.VueEtapeIG
twisk.vues.VueMondeIG -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurDragnDropPanneau -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurDragnDropPanneau -- twisk.vues.VueMondeIG
twisk.vues.VueMenu -- "1" twisk.mondeIG.MondeIG
twisk.mondeIG.MondeIG -- "*" twisk.vues.VueArcIG
twisk.mondeIG.MondeIG -- "*" twisk.mondeIG.EtapeIG
twisk.mondeIG.MondeIG -- "1" twisk.mondeIG.PointDeControleIG
twisk.ecouteurs.EcouteurEtape -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurEtape -- "1" twisk.mondeIG.EtapeIG
twisk.ecouteurs.EcouteurEcart -- "1" twisk.mondeIG.MondeIG
twisk.vues.VueOutils -- "1" twisk.mondeIG.MondeIG
twisk.ecouteurs.EcouteurSupprimerSelection -- "1" twisk.mondeIG.MondeIG
twisk.vues.VuePointDeControleIG -- "1" twisk.mondeIG.MondeIG
twisk.vues.VuePointDeControleIG -- "1" twisk.mondeIG.PointDeControleIG
twisk.mondeIG.SujetObserve -- "*" twisk.vues.Observateur
@enduml
|
e316b78c3b0de8e616e8011e2d2fc63d48505cb1 | 9bcd4da5e5454922139d0afefc782a997988ad1f | /docs/SprintB/US/US3/US3_CD_V1.puml | 4e99daead1f3e1a4c597340c8188e413ec8ff01a | [
"MIT"
] | permissive | wjacoud/DynaByte | 13f042b210f17830aa3eb31558d3f83d587ab436 | 3ac6b5e2d2e7559ec3e230db7848a1b43d3b40e3 | refs/heads/main | 2023-08-27T09:20:01.825322 | 2021-11-11T17:15:05 | 2021-11-11T17:15:05 | 427,082,047 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,506 | puml | @startuml
class ClientCreatorUI{
}
class ClientCreatorController{
--
+createClient(citizenNumber, healthcareNumber, birthDate, tin, name, phoneNumber, sex)
+saveClient()
+sendNotification(type, message)
+addUser(email)
}
class AuthFacade{
--
+existUser(email)
+addUser(name, email, password)
}
class ClientsStore{
--
+getClients()
+addClient(client)
}
class ClientNotification{
--
+sendNotification(type, message)
}
class Employee{
-String idEmployee
-String name
-String function
-String phoneNumber
-String email
-String address
-String soc
}
class Receptionist {
--
+createClient(citizenNumber, healthcareNumber, birthDate, tin, name, phoneNumber, sex)
+saveClient(client)
-validate(client)
}
class Client {
-String citizenNumber
-String healthcareNumber
-String birthDate
-String tin
-String name
-String phoneNumber
-String sex
--
+Client(citizenNumber, healthcareNumber, birthDate, tin, name, phoneNumber, sex)
}
class Platform{
-String designation
--
+getClients()
+addClient(client)
}
ClientCreatorUI ..> ClientCreatorController
ClientCreatorController ..> Receptionist
ClientCreatorController ..> AuthFacade
ClientCreatorController ..> ClientNotification
Receptionist ..> Platform
Platform ..> ClientsStore
Receptionist "1" --|> "1" Employee : is
Employee "*" -- "1" Platform : uses >
Receptionist "1" -- "*" Client : register
@enduml |
8d66d65698a33450e2ffff32cda9fdf59693737e | 4e22d261d7dcf5fe2731d77ba3cfb47c5568977c | /Documentation/Source/Breakdown/Engine/TempestEngine/GameObjectGatherer-Class.iuml | 9d9e754e53c58448229deb003456208a6c8433ae | [] | no_license | SeraphinaMJ/Reformed | 2d7424d6d38d1cfaf8d385fade474a27c02103a5 | 8563d35ab2b80ca403b3b57ad80db1173504cf55 | refs/heads/master | 2023-04-06T00:40:34.223840 | 2021-05-06T11:25:51 | 2021-05-06T11:25:51 | 364,884,928 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 114 | iuml | namespace GameObjectFiltering {
interface GameObjectGatherer {
+GetList()
}
}
|
d9923bf8081c75c836853036eb92d769dc8e385f | 372d0fe94d7e59fd48620c687fee8fc94841408b | /deadheat-lock-example/microservices-example/searching-service/src/main/java/com/vrush/microservices/searching/specifications/enums/enums.plantuml | d57a087a979b7feb499afb6a98720005d556246f | [
"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 | 542 | plantuml | @startuml
title __ENUMS's Class Diagram__\n
namespace com.vrush.microservices.searching {
namespace specifications {
namespace enums {
enum SpecificationOperationEnum {
BIGGER
EQUAL
EQUAL_SUBCLASS
IN
LIKE
SMALLER
value
}
}
}
}
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
|
0c1d1487a8a2e6365a26859571e75680bbc46c6a | 0d78c1b22cbbd5d3a1aec747048980e51ae2fb79 | /assets/list.plantuml | b5bf4539c1366de68349e67d3728e48022394720 | [
"MIT"
] | permissive | valeriia7/refresher | d79b5ca4805d8f0d68a57e7f890535994b4d9bff | f91bbafc1f6c11da45a69c0189c07e25c652894c | refs/heads/master | 2020-03-22T18:56:12.781274 | 2018-01-05T15:08:11 | 2018-01-05T15:08:11 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 421 | plantuml | @startuml
interface List<T>{
+ add(v: T)
+ get(i: int): T
+ remove(i: int): T
+ insert(i: int, v: T)
+ size(): int
}
class LinkedList<T> implements List {
+ add(v: T)
+ get(i: int): T
+ remove(i: int): T
+ insert(i: int, v: T)
+ size(): int
- first: Element
}
class Element<T> {
Element(v: T)
next: Element
value: T
}
LinkedList +-right- Element
LinkedList *-right- Element
Element *-- Element
@enduml
|
7dcaa8f643514aad4ddc5cd6a6619a27439601ad | 87b542863376319c5d1d7022e0f0820833315878 | /out/production/UBFLIX/edu/ub/ubflix/resources/dao/dao.puml | 9142cae892e184636f60474cc15456d86a86c1de | [] | no_license | carlaMorral/SoftwareDesignProject | 4903b350b7e4a10ac9213059d94cdf8cb629e5af | 47a5136e382b85b6bb1868998445c0eb46220450 | refs/heads/master | 2021-03-30T13:47:37.659737 | 2020-03-18T22:52:19 | 2020-03-18T22:52:19 | 248,061,086 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 808 | puml | @startuml
title __DAO's Class Diagram__\n
namespace ub.edu {
namespace database.dao {
interface ub.edu.resources.dao.DAO {
{abstract} + add()
{abstract} + delete()
{abstract} + getAll()
{abstract} + getById()
{abstract} + update()
}
}
}
namespace ub.edu {
namespace database.dao {
interface ub.edu.resources.dao.DAOClient {
{abstract} + findClientByUserNAmeAndPassword()
}
}
}
namespace ub.edu {
namespace database.dao {
interface ub.edu.resources.dao.DAOSerie {
}
}
}
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
|
6d56a1f02465568c7ad12abe27b8540eba743779 | 84928bc4e24e240e4369015f2f4d305348ec64b9 | /app/src/main/java/com/ustc/location/bluetooth/bluetooth.plantuml | 4cbf6da51ae721622b935416576c56dd62d00737 | [] | no_license | xupingao/BleLbs | 35065b50d0f43eedc7a5faa00e06c80f8ad3ae52 | 19f110e9ce29282a4a385532a1fc3cd2d922f37f | refs/heads/master | 2022-11-18T04:52:16.033609 | 2020-07-19T12:50:24 | 2020-07-19T12:50:24 | 278,265,696 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,347 | plantuml | @startuml
title __BLUETOOTH's Class Diagram__\n
namespace com.ustc.location {
namespace bluetooth {
class com.ustc.location.bluetooth.BleTool {
- beaconPositions : Map<String, Position>
+ BleTool()
+ setBeaconPositions()
+ setScanRule()
+ startScan()
}
}
}
namespace com.ustc.location {
namespace bluetooth {
class com.ustc.location.bluetooth.DeviceAdapter {
- bleDeviceList : List<BleDevice>
- context : Context
+ DeviceAdapter()
+ addDevice()
+ clear()
+ clearConnectedDevice()
+ clearScanDevice()
+ getCount()
+ getItem()
+ getItemId()
+ getView()
+ removeDevice()
}
}
}
com.ustc.location.bluetooth.BleTool o-- com.ustc.location.MainActivity : ctx
com.ustc.location.bluetooth.BleTool o-- com.ustc.location.bluetooth.DeviceAdapter : mDeviceAdapter
com.ustc.location.bluetooth.BleTool o-- com.ustc.location.location.Position : userPos
com.ustc.location.bluetooth.DeviceAdapter -up-|> android.widget.BaseAdapter
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
|
2fec4e72e49b10bb375e539179a210ca55c172b0 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.postprocessing@2.3.0/PostProcessing/Runtime/Effects/ScalableAO.puml | 54e623d7450ac38c2304949b642ab2afa941adfc | [] | 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 | 926 | puml | @startuml
class ScalableAO <<sealed>> {
+ ScalableAO(settings:AmbientOcclusion)
+ GetCameraFlags() : DepthTextureMode
DoLazyInitialization(context:PostProcessRenderContext) : void
Render(context:PostProcessRenderContext, cmd:CommandBuffer, occlusionSource:int) : void
+ RenderAfterOpaque(context:PostProcessRenderContext) : void
+ RenderAmbientOnly(context:PostProcessRenderContext) : void
+ CompositeAmbientOnly(context:PostProcessRenderContext) : void
+ Release() : void
}
enum Pass {
OcclusionEstimationForward,
OcclusionEstimationDeferred,
HorizontalBlurForward,
HorizontalBlurDeferred,
VerticalBlur,
CompositionForward,
CompositionDeferred,
DebugOverlay,
}
IAmbientOcclusionMethod <|-- ScalableAO
ScalableAO --> "m_Result" RenderTexture
ScalableAO --> "m_PropertySheet" PropertySheet
ScalableAO --> "m_Settings" AmbientOcclusion
ScalableAO +-- Pass
@enduml
|
8d5f64b81d3d1c51a7e06800a097a5f3d1f2b431 | d196a6642cf2775338f9ad61a128532d796a4ce9 | /Server/src/main/java/yhames/pro/project/afis/requests/requests.plantuml | 9860423f36f95b25b9b7e9f41ab41776b94397f5 | [] | no_license | HydroZA/Biometric-DRM | 6389bc04435258360c64feb4b913be01e0f2e71b | e4e1113d6beb301669ddf59bbdd7a5ae3d1f822a | refs/heads/master | 2023-06-19T08:13:16.972918 | 2021-07-13T10:50:26 | 2021-07-13T10:50:26 | 385,664,621 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,815 | plantuml | @startuml
title __REQUESTS's Class Diagram__\n
namespace yhames.pro.project.afis {
namespace requests {
class yhames.pro.project.afis.requests.EnrollRequest {
+ handle()
{static} + read()
- EnrollRequest()
}
}
}
namespace yhames.pro.project.afis {
namespace requests {
class yhames.pro.project.afis.requests.HandshakeRequest {
+ handle()
{static} + read()
- HandshakeRequest()
}
}
}
namespace yhames.pro.project.afis {
namespace requests {
class yhames.pro.project.afis.requests.MatchRequest {
+ getMethod()
+ getProbe()
+ handle()
{static} + read()
+ setMethod()
+ setProbe()
- MatchRequest()
}
}
}
namespace yhames.pro.project.afis {
namespace requests {
abstract class yhames.pro.project.afis.requests.Request {
{abstract} + handle()
{static} + read()
}
}
}
yhames.pro.project.afis.requests.EnrollRequest -up-|> yhames.pro.project.afis.requests.Request
yhames.pro.project.afis.requests.EnrollRequest o-- yhames.pro.project.afis.Fingerprint : toEnroll
yhames.pro.project.afis.requests.HandshakeRequest -up-|> yhames.pro.project.afis.requests.Request
yhames.pro.project.afis.requests.MatchRequest -up-|> yhames.pro.project.afis.requests.Request
yhames.pro.project.afis.requests.MatchRequest o-- yhames.pro.project.afis.ComparisonMethod : method
yhames.pro.project.afis.requests.MatchRequest o-- yhames.pro.project.afis.Fingerprint : probe
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
|
6d661cfca25e99933d6b51a475d4e8a346cd71f4 | e032dab934c4fa3ff55da94de2f15d246a4aed8c | /design-pattern/src/main/java/wr1ttenyu/f1nal/study/designpattern/principle/compositereuse/compositeReuse.puml | 5b913ec361ede0613aab0f3129bc2e115463c03d | [] | no_license | wr1ttenyu/f1nal | 9d21aeb1ae14505fc2e9add9220f81719840f37f | fd27d32d2f877ea98c19d892d13df36a99059a46 | refs/heads/master | 2022-07-07T02:15:25.931532 | 2020-06-11T01:19:16 | 2020-06-11T01:19:16 | 207,061,707 | 0 | 0 | null | 2022-01-12T23:05:07 | 2019-09-08T04:31:27 | Java | UTF-8 | PlantUML | false | false | 401 | puml | @startuml
class A
class B
note left: <size:8>如果我们只是让B能使用A的方法,\n<size:8>而让B去继承A的话,就会让B和A的耦合性增强
class B1
B --|> A :继承
B1 o-- A :聚合
B2 ..> A :依赖
B3 *-- A :组合
class A {
#operate1();
#operate2();
}
class B {
}
class B1 {
-a: A
#setA(A a)
}
class B2 {
#operate(A a)
}
class B3 {
-a: A = new A()
}
@enduml |
ec506d9f4d95d89a7ae26991eb5b039a347eb8e4 | 1423267c7da79f77fdec74f3d6c68f173a7d8326 | /Design/SE/SensorController/Software/SensorControllerKlassediagram.puml | f3918061328f501accfbde0660a19ddf91fef218 | [] | no_license | Solvgraa-mager/E4PRJ4 | 60282c6857f62747ce99aacacab8f7b56efbf28e | 3f54f0415dcb1f5f7269db9653860f4071a17082 | refs/heads/main | 2023-05-08T15:53:25.639820 | 2021-06-03T12:47:11 | 2021-06-03T12:47:11 | 335,742,071 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 519 | puml | @startuml StatiskKlassediagramforSensorController
title Statisk Klassediagram for SensorController
class ADCBlokIF{
+read(int sensorNummer) : uint16 value
-SPI(uint8_t temp) : uint8_t
}
class SensorController{
+Run() : void
+Sleep() : void
-ADCBlok_ : ADCBlokIF*
-CC_ : CentralComputerIF*
}
class CentralComputerIF{
+getRequest() : int sensorNo
+send(uint16 value, uint_t valid, uint8_t request) : void
}
SensorController <- ADCBlokIF
CentralComputerIF -> SensorController
@enduml |
60ac79b59d7d401859fbcf978102d4c9160d38fb | 560e8a52f95138903d5198d217551de6bd8aa4a8 | /src/main/java/com/infosupport/poc/ddd/domain/rule/rule.plantuml | bb0388723dcb6d998cf54f9a7d7df3a451f81799 | [] | no_license | ingmars1709/ddd | dcfcf06951c4d968cda849aa462f0e6cc3c2a2d0 | 8cac199a2808a12f65745509bb66dd7a200a4d0f | refs/heads/master | 2020-04-20T19:11:43.488997 | 2020-03-13T08:21:01 | 2020-03-13T08:21:01 | 169,042,695 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,599 | plantuml | @startuml
title __RULE's Class Diagram__\n
package com.infosupport.poc.ddd.domain.rule {
class BankNameMandatoryRule {
+ satisfiedBy()
}
}
package com.infosupport.poc.ddd.domain.rule {
class BusinessRuleNotSatisfied {
- validationMessages : List<String>
+ BusinessRuleNotSatisfied()
+ BusinessRuleNotSatisfied()
+ getValidationMessages()
}
}
abstract class PrintStreamOrWriter {
- PrintStreamOrWriter()
{abstract} ~ lock()
{abstract} ~ println()
}
class SentinelHolder {
{static} + STACK_TRACE_ELEMENT_SENTINEL : StackTraceElement
{static} + STACK_TRACE_SENTINEL : StackTraceElement[]
- SentinelHolder()
}
class WrappedPrintStream {
- printStream : PrintStream
~ WrappedPrintStream()
~ lock()
~ println()
}
class WrappedPrintWriter {
- printWriter : PrintWriter
~ WrappedPrintWriter()
~ lock()
~ println()
}
package com.infosupport.poc.ddd.domain.rule {
class FedwireMandatoryRule {
+ FedwireMandatoryRule()
+ isApplicable()
+ isApplicable()
+ satisfiedBy()
}
}
package com.infosupport.poc.ddd.domain.rule {
class MandatoryRule {
+ satisfiedBy()
}
}
package com.infosupport.poc.ddd.domain.rule {
interface SemanticBusinessRule {
+ isApplicable()
{abstract} + satisfiedBy()
}
}
package com.infosupport.poc.ddd.domain.rule {
enum SemanticBusinessRuleKey {
FEDWIRE_MANDATORY_RULE
MANDATORY_RULE
BANK_NAME_MANDATORY_RULE
}
}
package com.infosupport.poc.ddd.domain.rule {
class SemanticBusinessRuleMap {
{static} - ruleMap : EnumMap<SemanticBusinessRuleKey, SemanticBusinessRule>
{static} - fedwireMandatoryRule : FedwireMandatoryRule
- SemanticBusinessRuleMap()
{static} + satisfiedBy()
{static} + getRuleMap()
{static} + getFedwireMandatoryRule()
}
}
BankNameMandatoryRule -up-|> SemanticBusinessRule
BusinessRuleNotSatisfied +-down- PrintStreamOrWriter
BusinessRuleNotSatisfied +-down- SentinelHolder
BusinessRuleNotSatisfied +-down- WrappedPrintStream
BusinessRuleNotSatisfied +-down- WrappedPrintWriter
FedwireMandatoryRule -up-|> SemanticBusinessRule
MandatoryRule -up-|> SemanticBusinessRule
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
|
d5f94cef68dde4f4ebef9fa7057d5072a5ce6094 | dceede6e0ffcfdf6fbb800429d0233eb108fb71b | /src/main/java/DesignPatterns/UML/Composition/Composite.puml | 25f5ca89e7b9fa3f15f766823f2fd09e39b7f63c | [] | no_license | GitHub-yuteng/LearningNotes | 543ccda372e0d4498eba9245848059f64b3966c9 | 7a37bc8a33190526fa0a6cca5376651ac434f8c4 | refs/heads/master | 2022-12-22T14:05:05.590359 | 2022-04-27T00:36:30 | 2022-04-27T00:36:30 | 200,153,900 | 2 | 0 | null | 2022-12-16T04:25:16 | 2019-08-02T02:53:39 | Java | UTF-8 | PlantUML | false | false | 148 | puml | @startuml
class Computer {
CPU cpu = new CPU();
SSD ssd = new SSD();
}
class CPU {
}
class SSD {
}
Computer *-- CPU
Computer *-- SSD
@enduml |
93e5a73e29027b5fc47bd904ad68bf92a22fec1c | 1b025ecf643494d3b12b63ee2ca6e909069f4a1f | /class_diagram.puml | c62025a509700caaaca6e3fb6c97f43433c6bd46 | [
"Apache-2.0"
] | permissive | CodingCare/wtf-1 | 15d2be8bd0e299e3ac3d27ad516233ee40df22ba | b8ad67befe68792fb055b53c8a7a67ebd8684977 | refs/heads/main | 2023-03-06T10:07:57.430158 | 2021-02-20T00:03:21 | 2021-02-20T00:03:21 | 340,312,060 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 395 | puml | @startuml
left to right direction
class Utilisateur {
}
class Agence {
-agenceId: int
}
Utilisateur "*" -- "*" Agence
enum Role {
{static} +Secretaire
{static} +Accueil
}
class UtilisateurAgence {
- role: Role
+ getRole(): Optional<Role>
+ hasRole(role: Role): boolean
+ isSameAgence(agenceId: int): boolean
}
(Utilisateur,Agence) -- UtilisateurAgence
UtilisateurAgence --> Role
@enduml |
49577712940e8f1f94a6dda41757c68237b55ed8 | 7e6fa61a8595cd38195713b5c7698f5de6f7c7b3 | /base/015/diagrama.puml | a3bccb04c6cf6e8af90a3348619173aa9d9a421c | [] | no_license | qxcodepoo/arcade | 3ff1852792a47584f00c1ab9fd5011ebb2c4b830 | 3722a8c976a51829b2b6f4913360c23bf114433a | refs/heads/master | 2023-08-31T04:07:06.255292 | 2023-08-25T03:16:42 | 2023-08-25T03:16:42 | 217,410,955 | 36 | 42 | null | 2020-09-24T13:22:18 | 2019-10-24T23:12:40 | C++ | UTF-8 | PlantUML | false | false | 3,440 | puml | '--
@startuml
skinparam defaultFontName Hasklig
skinparam dpi 150
'==
class Fone {
- id : str
- number : str
__
' inicializa as variaveis
+ Fone(id : str, number : str)
' verifica se o número é um número de telefone válido
' crie uma str "validos" com todos os caracteres válidos
' para cada caractere c do número:
' se c não estiver em validos:
' retorne false
' retorne true
+ isValid() : bool
__
+ getId() : str
+ getNumber() : str
__
' Gera uma string para impressão
' ex: oi:1234
+ toString() : str
}
class Contact {
- favorited : bool
- fones : List<Fone>
- name : str
__
' inicialize o fone com o nome, favorited como false e a lista de fones vazia
+ Contact(name : str)
__
' se fone for válido:
' insira no fim da lista de fones
' se não:
' informe o erro
+ addFone(id: str, number : str): void
' se o índice existir:
' remove o fone pelo indice
+ rmFone(index : int): void
__
' favorita ou desfavorita o contato
+ toogleFavorited(): void
' retorna se o contato está favoritado
+ isFavorited() : bool
__
+ getFones() : List<Fone>
+ getName() : str
+ setName(name : str): void
__
' use um contador para mostrar o índice do telefone
' use o toString do fone para adicioná-lo à saída
' se o contato estiver favoritado, adicione um @ antes do nome
' o resultado dever ficar assim:
' ex: - david [oi:123, tim:9081, claro:5431]
+ toString() : str
}
class Agenda {
' use um vector em c++
' um ArrayList em Java
' um Array em Typescript
- contacts : List<Contact>
__
' procura o contato pelo nome
' o nome do contato é único na agenda
' se encontrar, retorne o índice do contato no array
' se não encontrar, retorne -1
- findPosByName(name : String) : int
__
+ Agenda()
__
' use a função findPosByName para encontrar o índice do contato
' se o contato existir:
' adicione todos os telefones válidos ao contato
' se não:
' crie um novo contato
' adicione todos os telefones válidos
' reordene a lista de contatos
+ addContact (name : String, fones : List<Fone>)
' use a função findPosByName para encontrar o índice do contato
' retorna uma referência para o contato
' em C++, retorne um 'Contact*'
' se não existir, retorne null
+ getContact(name : String) : Contact | null
' use a função findPosByName para encontrar o índice do contato
' se o contato existir:
' remova o contato
+ rmContact (name : String)
' crie uma lista de contatos para armaenar os resultados
' para cada contato na lista de contatos:
' gere a string do contato usando contato.toString()
' use uma função de busca por substring para verificar se o padrão está na string do contato
' se estiver:
' adicione o contato à lista de resultados
' retorne a lista de resultados
+ search (pattern : String) : List<Contact>
' cria uma lista de contatos vazia
' para cada contato na lista de contatos:
' se o contato estiver favoritado:
' adicione o contato à lista de favoritos
' retorne a lista de favoritos
+ getFavorited() : List<Contact>
__
' retorne a lista de contatos
+ getContacts() : List<Contact>
__
' retorna os contatos separados por uma quebra de linha
+ toString() : String
}
'--
Contact "1" *-- "0..*" Fone
Agenda "1" *-- "0..*" Contact
@enduml |
ce29cc1d9baa70aa60308b073d3117dd582c4504 | 6c21f810f45b6eff4b8accddfe5b35bcf9672d58 | /app/src/main/java/com/example/farmersmarket/farmersmarket.plantuml | aaa3c72035d06a0cdbbd1d180785e886b6eab3d5 | [] | no_license | hieuthanh19/farmer_market | b59a0d29a437203641bc07102018a5b1b94cb0bc | 2ea33a5d957317ad507371d8f92d3fb724cfc7d0 | refs/heads/master | 2023-08-15T00:44:18.507238 | 2021-09-17T03:07:59 | 2021-09-17T03:07:59 | 309,298,108 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 9,839 | plantuml | @startuml
title __FARMERSMARKET's Class Diagram__\n
namespace com.example.farmersmarket {
class com.example.farmersmarket.AddProduct {
{static} ~ CAMERA_PERMISSION_REQUEST_CODE : int
{static} ~ REQUEST_TAKE_PHOTO : int
~ amountInputLayout : TextInputLayout
~ currentPriceInputLayout : TextInputLayout
~ descriptionInputLayout : TextInputLayout
~ nameInputLayout : TextInputLayout
~ originInputLayout : TextInputLayout
~ originalPriceInputLayout : TextInputLayout
~ productImageList : List<ProductImage>
~ productTypes : List<ProductType>
~ spinner : Spinner
{static} - MODE : int
- photoURI : Uri
{static} - product : Product
+ back()
+ done()
+ onRequestPermissionsResult()
+ takePhoto()
# onActivityResult()
# onCreate()
- askCameraPermission()
- createImageFile()
- isFilledAndCorrect()
- loadData()
- openCamera()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.AddWarehouse {
~ addressLayout : TextInputLayout
~ nameLayout : TextInputLayout
{static} - MODE : int
{static} - WAREHOUSE_ID : int
{static} - storeHouse : StoreHouse
+ back()
+ done()
# onCreate()
- isFilled()
- loadData()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.App {
{static} + ACCOUNT_ID : int
+ isLoggedIn()
# onCreate()
- loadFragment()
- onNavigationItemSelectedListener()
- setStatusBarColor()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.Cart {
~ arrCart : List<OrderDetail>
~ btnCheckOut : Button
~ c : Date
~ recyclerView : RecyclerView
~ txtEmpty : TextView
+ back()
+ builAdapter()
+ findView()
+ getDatabase()
+ removeItem()
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.CategoryDetail {
- categoryID : int
+ onCreateView()
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.CategoryPoultryDetail {
- categoryID : int
+ onCreateView()
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.CategorySeafoodDetail {
- categoryID : int
+ onCreateView()
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.CategoryVegetableDetail {
- categoryID : int
+ onCreateView()
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.CheckoutSuccess {
~ btnBackToHome : Button
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.Login {
# onCreate()
- loadFragment()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.Order {
{static} + ORDER_ID : int
+ accountID : int
~ arrOrder : List<Orders>
~ dateOrder : Date
~ recyclerView : RecyclerView
~ txtEmpty : TextView
+ back()
+ builAdapter()
+ findView()
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.OrderDetailAct {
~ arrOrder : List<Orders>
~ arrOrderDetail : List<OrderDetail>
~ recyclerView : RecyclerView
~ txtOrderDetailShippingTotalRS : TextView
~ txtOrderDetailTotalRS : TextView
~ txtOrderDtailOrderDateRS : TextView
~ txtOrderDtailOrderIDRS : TextView
~ txtOrderDtailProductTotalRS : TextView
~ txtOrderDtailStatusRS : TextView
+ back()
+ builAdapter()
+ finView()
+ getStatus()
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.ProductDetail {
{static} + PRODUCT_ID : String
~ arrCartByProductID : List<OrderDetail>
~ carouselView : CarouselView
~ category : TextView
~ description : TextView
~ origin : TextView
~ productAmount : TextView
~ productImageList : List<ProductImage>
~ productName : TextView
~ productOriginalPrice : TextView
~ productPrice : TextView
~ productSale : TextView
~ product_detail_add_to_cart_btn : Button
~ product_detail_user_avatar : ImageView
~ similarList : RecyclerView
~ suggestList : RecyclerView
~ username : TextView
~ warehouseAddress : TextView
+ back()
+ displayCart()
# onCreate()
- emptyImageListener()
- imageListener()
- populateDataIntoViews()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.Setting {
+ back()
# onCreate()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.Warehouse {
{static} + MODE_ADD : int
{static} + MODE_EDIT : int
{static} + REQUEST_CODE : int
{static} + WAREHOUSE_ID : String
{static} + WAREHOUSE_MODE : String
{static} + recyclerView : RecyclerView
~ storeHouseList : List<StoreHouse>
~ warehouseEmpty : TextView
+ back()
+ navigateToAddWarehouse()
# onActivityResult()
# onCreate()
- populateData()
}
}
namespace com.example.farmersmarket {
class com.example.farmersmarket.WarehouseDetail {
{static} + MODE_ADD : int
{static} + MODE_EDIT : int
{static} + PRODUCT_ID : String
{static} + PRODUCT_MODE : String
{static} + REQUEST_CODE : int
{static} + WAREHOUSE_ID : int
~ addProduct : ImageView
~ productEmptyMsg : TextView
~ productLayout : ConstraintLayout
~ productList : List<Product>
~ productListView : RecyclerView
~ search : ImageView
~ title : TextView
{static} - IMAGE_VIEW_MODE_ADD : int
{static} - IMAGE_VIEW_MODE_SEARCH : int
+ back()
# onActivityResult()
# onCreate()
- addProductOnClickListener()
- changeModeImageView()
- loadWarehouseDetail()
- searchProductOnClickListener()
}
}
com.example.farmersmarket.AddProduct -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.AddProduct o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.AddProduct o-- com.example.farmersmarket.viewadapter.ProductImageAdapter : productImageAdapter
com.example.farmersmarket.AddWarehouse -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.AddWarehouse o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.App -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.App o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.Cart -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.Cart o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.Cart o-- com.example.farmersmarket.viewadapter.CarAdapter : carAdapter
com.example.farmersmarket.CategoryDetail -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.CategoryPoultryDetail -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.CategorySeafoodDetail -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.CategoryVegetableDetail -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.CheckoutSuccess -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.Login -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.Order -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.Order o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.Order o-- com.example.farmersmarket.viewadapter.OrderListAdapter : orderListAdapter
com.example.farmersmarket.OrderDetailAct -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.OrderDetailAct o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.OrderDetailAct o-- com.example.farmersmarket.viewadapter.OrderDetailListAdapter : orderAdapter
com.example.farmersmarket.ProductDetail -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.ProductDetail o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.ProductDetail o-- com.example.farmersmarket.object.Product : product
com.example.farmersmarket.Setting -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.Warehouse -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.Warehouse o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.WarehouseDetail -up-|> androidx.appcompat.app.AppCompatActivity
com.example.farmersmarket.WarehouseDetail o-- com.example.farmersmarket.database.AppDatabase : appDatabase
com.example.farmersmarket.WarehouseDetail o-- com.example.farmersmarket.object.StoreHouse : storeHouse
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
|
bb58456c1a9143e4c936b3f44a66751f52fd9beb | 54ebd9eb2ddadc17b215617d96fac1f93f4acfef | /creational/5-prototype/prototype-furniture-simplest.puml | e8a88e5399fb16d1a8532f68da0a9673c378d3e8 | [] | no_license | cesarkohl/design-patterns | acb42191662c141f064d9c90426dfd4491d43dfe | 991f83d0076b0a69e9d6b7c1163cf49fde3bfcbf | refs/heads/main | 2023-06-11T07:16:18.484116 | 2023-05-28T14:41:01 | 2023-05-28T14:41:01 | 199,520,479 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 161 | puml | @startuml
note as n1
const c1 = new Chair();
const c2 = c1.clone();
end note
abstract Prototype {
+ clone() {}
}
class Chair extends Prototype {
}
@enduml
|
4ca8364ca104499df112804bdfb637ad5ee896c8 | bd8b8885cb6ff5fbe7bad398667c32eb77119017 | /Design/class-diagram.puml | 0d3ba45f23b02cace05a9459325cf980ae353f5a | [] | no_license | tylerjamesmadsen/mars-rover | 78b35114abc6465d57411e0b9053f75b0e4c4518 | 8b81e40501dceb31edf0430c4793673b090a7bc4 | refs/heads/main | 2023-05-15T08:23:49.106943 | 2021-06-13T03:09:07 | 2021-06-13T03:09:07 | 375,172,201 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 877 | puml | @startuml MarsRover Class Diagram
enum CompassPoint {
+ N
+ S
+ E
+ W
}
enum Direction {
+ L
+ R
}
class Grid2D {
- boundaryX : uint
- boundaryY : uint
--
+ Grid2D(boundX:uint, boundY: uint) : void
+ ToString() : string
}
class Rover {
- id: guid
- heading : CompassPoint
- positionX : uint
- positionY : uint
--
+ Rover(id : guid, initialHeading : CompassPoint, initialPosition : uint[])
+ CanMove(boundaries : uint[]) : bool
+ Move() : void
+ Turn(direction : Direction)
+ ToString() : string
}
class CommandCenter {
- Plateau : Grid2D
- Rovers : Rover[]
--
+ GetInput() : string[]
+ SendInstructions() : void
+ GetFeedback() : string[]
}
class Program {
+ GetInput() : string[]
+ BuildPlateau() : void
+
}
CommandCenter o-- Grid2D
CommandCenter o-- Rover
Rover o-- CompassPoint
Rover o-- Direction
@enduml |
6c1e0c2c705c700990c12304c62bb67feebfc65c | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/PaymentInteractionAddedMessage.puml | 166876172716d50e7ae3a61fe8016358c8ad0d81 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,192 | 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 PaymentInteractionAddedMessage [[PaymentInteractionAddedMessage.svg]] extends Message {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
interaction: [[CustomFields.svg CustomFields]]
}
interface Message [[Message.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
|
6ef9ae439dad29de51e48812ea8a13f1af400012 | e313af6ff9b250b6d7daf55f4e779659fb141c20 | /docs/adr/0002-new-asset-model/new_asset_model.puml | e4497829a7e00b3d68047ed6283a9ece1c589c1b | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | alphagov/whitehall | 71f0806ea856082bd4ea71139ff3f1d299a02294 | bdeb92e9e1dfc88a8693af44a1ae8c708ab94489 | refs/heads/main | 2023-09-03T23:56:44.719006 | 2023-09-01T15:16:37 | 2023-09-01T15:16:37 | 2,416,064 | 773 | 182 | MIT | 2023-09-14T17:54:53 | 2011-09-19T15:10:49 | Ruby | UTF-8 | PlantUML | false | false | 1,688 | puml | @startuml
allowmixing
hide empty description
hide empty members
skinparam dpi 300
class Document <<model>>
rectangle "Attachables" {
abstract Edition <<model>> {
state
}
class PolicyGroup <<model>>
rectangle "(others)" as othereds
Edition <|-- othereds #line:blue;line.bold
Edition <|-- Attachable #line:blue;line.bold
note on link: several Edition descendants are Attachable
abstract Attachable<<concern>>
}
rectangle "Attachments" {
together {
abstract Attachment <<model>>
class FileAttachment <<model>>
rectangle "(other attachments - html, external)" as otheratts
Attachment <|-- otheratts #line:blue;line.bold
Attachment <|-- FileAttachment #line:blue;line.bold
}
class AttachmentData <<model>> {
carrierwave_file
}
note right: only for file attachments!
Attachment --* AttachmentData
note on link: links to attachments from past editions as well
}
rectangle "Images" {
class Image <<model>>
class ImageData <<model>> {
carrierwave_file
}
Image --* ImageData
note on link: links to images from past editions as well
}
rectangle "Other models with assets" {
class Person <<model>> {
logo
}
note "several other similar\nmodels not shown" as N1
}
Edition *-- Image
Document *-- Edition
Attachable *-- Attachment
class Document {
{method} latest_edition
{method} live_edition
}
class Asset {
asset_manager_id
owner_id
owner_type
variant
state
}
node AssetManager {
class "Asset" as amAsset {
filename
legacy_url_path
state
}
}
Asset .. amAsset: 1:1 relationship based on ID
AttachmentData --* Asset
ImageData --* Asset
Person --* Asset
@enduml
|
7eb2f9bae27e7c1dd5c00cdbc4ff7eff377e6f01 | b120fd65ff39c926b71e8cd50aad1ba2697a1ca6 | /Chapter03-TemplateMethod/src/com/parkgaram/dp/templatemethod/TemplateMethod.puml | fbfa44d7a4495f7e8e3423078dfb9655e9081cd2 | [] | no_license | frog97/java-design-pattern | e8106eaceb213ab3f5c83f273d997fdf56783e09 | 2a03c7071b650aaf82c7becb2f16ceed650a95df | refs/heads/master | 2023-03-30T17:51:21.154591 | 2021-04-11T11:32:51 | 2021-04-11T11:32:51 | 351,084,280 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,741 | puml | @startuml
'https://plantuml.com/class-diagram
abstract class AbstractClass {
- operation1() : void
- operation2() : void
- operation3() : void
+ templateMethod() : void
}
AbstractClass -- templateMethod
class templateMethod
{
- operation1() : void
- operation2() : void
- operation3() : void
}
AbstractClass <|-- ConcreteClass
class ConcreteClass {
- operation1() : void
- operation2() : void
- operation3() : void
}
abstract class AbstConnectHelper{
# {abstract} doSecurity(String string):String
# {abstract} authentication(String id,String password):boolean
# {abstract} authorization(String userName):int)
# {abstract} connection(String info):String
+ requestConnection(String str):String
}
AbstConnectHelper <|-- ConcreteConnectHelper
class ConcreteConnectHelper
{
# doSecurity(String string):String
# authentication(String id,String password):boolean
# authorization(String userName):int)
# connection(String info):String
}
AbstConnectHelper *-- Application
class Application
{
}
'요구 사항
'
'· 신작 게임의 접속을 구현해주세요
'
'requestConnection(String str):String
'
'· 유저가 게임 접속시 다음을 고려해야합니다.
'
'· 보안 과정 보안 관련 부분을 처리합니다.
'
'· doSecurity(String string):String
'
'인증 과정 : user name과 password가 일치하는지 확인합니다.
'
'. authentication(String id,String password):boolean
'
'권한 과정 : 접속자가 유료 회원인지 무료회원인지 게임 마스터 인지 확인합니다.
'
'. authorization(String userName):int)
'
'. 접속 과정 접속자에게 커넥션을 정보를 넘겨줍니다.
'
'. connection(String info):String
@enduml |
ca76d90548001847c38ae52c3ce6776317551707 | 6e29d893e7deebb9339dd5515195d7e510aba402 | /Documentação/Sprint 3/UC07_Registar_Freelancer/UC07_Registar_Freelancer_Diagrama_Classes.puml | 32a2775aba4c209b476aff5eed9c6c98b2b6d8bf | [] | 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 | 1,147 | puml | @startuml
title UC07 - Registar Freelancer
top to bottom direction
class RegistarFreelancerUI{
--
-findByNif(nifFreelancer)
-registaFreelancer(nome, NIF, enderecoPostal, telefone, email)
}
class RegistarFreelancerCTRL{
--
-findByNif(nifFreelancer)
-new Freelancer(nome, nif, enderecoPostal, telefone, email)
-save(freelancer)
}
class GestaoUtilizadoresCTRL {
--
-registerUserWithRoles(nome, email, password, rolename)
}
class AlgoritomoGeradorPasswords{
--
-geraPassword
}
class Freelancer {
-String nome
-String NIF
-String telefone
-Email email
}
class EnderecoPostal {
-String local
-String codPostal
-String localidade
}
class RepositorioFreelancer{
--
-save(freelancer)
}
class Email {
-String email
--
getEmailUtilizador()
}
RegistarFreelancerUI ..> RegistarFreelancerCTRL
Freelancer --> EnderecoPostal: tem >
Freelancer --> Email: tem >
RepositorioFreelancer -- Freelancer
RegistarFreelancerCTRL ..> RepositorioFreelancer
RegistarFreelancerCTRL ..> GestaoUtilizadoresCTRL
RegistarFreelancerCTRL ..> AlgoritomoGeradorPasswords
@enduml |
02ac4f0138d3a72ce47ada004084cc33490d7ec2 | b378a3a0c687f5f2c207d2aca18b157f136bf386 | /assets/exclusion/xla_analysis/PlantUML/gpu_conv_agorithm_picker.puml | dfd29bacf2f56add214d31d695a398c7e832996f | [] | no_license | wzzju/wzzju.github.io | 14d1a2200c41801a67c147c0315bb4bfc982533a | c034b9eed4804f665e95509e3fd167f40611dabb | refs/heads/master | 2023-05-13T04:13:25.848856 | 2023-05-06T14:18:05 | 2023-05-09T11:42:38 | 115,188,979 | 2 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,477 | puml | 'https://plantuml.com/class-diagram
@startuml gpu_conv_algorithm_picker
!theme cerulean-outline
class GpuConvAlgorithmPicker::ReferenceResult {
+ algorithm: stream_executor::dnn::AlgorithmDesc
+ buffer: stream_executor::DeviceMemoryBase
}
class GpuConvAlgorithmPicker {
- {field} stream_exec_: se::StreamExecutor*
- {field} allocator_: se::DeviceMemoryAllocator*
- {field} struct_ReferenceResult
+ {method} GpuConvAlgorithmPicker(stream_exec: se::StreamExecutor*, allocator: se::DeviceMemoryAllocator*)
+ {method} Run(module: HloModule*): StatusOr<bool> <b><color:#008080>override</color></b>
+ {method} name(): absl::string_view <b><color:#008080>override</color></b>
- {method} RunOnComputation(computation: HloComputation*): StatusOr<bool>
- {method} RunOnInstruction(instr: HloInstruction*): StatusOr<bool>
- {method} PickBestAlgorithm(instr: const HloCustomCallInstruction*): StatusOr<tensorflow::AutotuneResult>
- {method} AutotuneOneConvRunner(const GpuConvConfig&, const HloCustomCallInstruction*, ...): StatusOr<tensorflow::AutotuneResult>
- {method} PickBestAlgorithmNoCacheCuda(const HloCustomCallInstruction*, ...): StatusOr<tensorflow::AutotuneResult>
- {method} PickBestAlgorithmNoCacheRocm(const HloCustomCallInstruction*, ...): StatusOr<tensorflow::AutotuneResult>
}
GpuConvAlgorithmPicker::struct_ReferenceResult -[#green,dashed,thickness=1]-> GpuConvAlgorithmPicker::ReferenceResult : definition
@enduml |
a10ef2510a18978d5f43b3e076deb3e68611db2d | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/serviceability/address/media/src/addressModelNoErrors.puml | e84afe6f9bb3c900b21ca040a81ed794541931b6 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 2,317 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class FieldedAddress {
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
streetName*: string
streetNr: string
streetNrLast: string
streetNrLastSuffix: string
streetNrSuffix: string
streetSuffix: string
streetType: string
}
GeographicAddress <|-- FieldedAddress
FieldedAddress *--> GeographicSubAddress : geographicSubAddress
class FormattedAddress {
addrLine1*: string
addrLine2: string
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
}
GeographicAddress <|-- FormattedAddress
class GeographicAddressLabel {
externalReferenceId*: string
externalReferenceType*: string
}
GeographicAddress <|-- GeographicAddressLabel
class GeographicAddress {
id: string {readOnly}
href: string {readOnly}
allowsNewSite: boolean {readOnly}
hasPublicSite: boolean {readOnly}
@schemaLocation: uri
@type*: string
}
GeographicAddress *--> FieldedAddress : associatedGeographicAddress {readOnly}
class GeographicAddressValidation {
provideAlternative*: boolean
validationResult: MEFValidationResultType
}
GeographicAddressValidation *-->"*" GeographicAddress : alternateGeographicAddress
GeographicAddressValidation *--> GeographicAddress : bestMatchGeographicAddress
GeographicAddressValidation *-->"1" GeographicAddress : submittedGeographicAddress
class GeographicAddressValidation_Create {
provideAlternative*: boolean
}
GeographicAddressValidation_Create *-->"1" GeographicAddress : submittedGeographicAddress
class GeographicSubAddress {
buildingName: string
levelNumber: string
levelType: string
privateStreetName: string
privateStreetNumber: string
}
GeographicSubAddress *-->"*" MEFSubUnit : subUnit
class MEFGeographicPoint {
spatialRef*: string
x*: string
y*: string
z: string
}
GeographicAddress <|-- MEFGeographicPoint
class MEFSubUnit {
subUnitNumber*: string
subUnitType*: string
}
enum MEFValidationResultType {
success
partial
fail
}
@enduml
|
a40ae20739842615e36b85a0fb715a5489b37f8e | 8dcd1fda2772a3153f09f9fb83ccca6fd411fa5f | /plantuml/Store.puml | bfd3717fc5a77d7950bb5c5b52f65c4562908e88 | [] | no_license | georgio/ood-3 | eef514ae561beca1fcaf200d326f1c6cab8e50e3 | 72d5f3ee4da2de3e2c343a5aa725c5fa6f235dab | refs/heads/master | 2022-04-21T08:17:49.376166 | 2020-04-24T15:09:31 | 2020-04-24T15:09:31 | 258,545,931 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 543 | puml | @startuml
class Store {
- name : String
- location : String
- phone : String
- manager : String
+ Store(name:String, location:String, phone:String, manager:String)
+ setName(name:String) : void
+ getName() : String
+ setLocation(location:String) : void
+ getLocation() : String
+ setPhone(phone:String) : void
+ getPhone() : String
+ setManager(manager:String) : void
+ getManager() : String
+ getItemCount() : UInt64
+ getItems() : List<Item>
+ addItem(i:Item) : void
}
@enduml
|
2f6afa918add89c4af5dfb1a9e78a08eb7176a35 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/Api/ExecutionSettings.puml | 7b0874c3150cc6a7c6905638c8f24de1184b8865 | [] | 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 | 227 | puml | @startuml
class ExecutionSettings {
+ ExecutionSettings(filtersToExecute:Filter[])
+ runSynchronously : bool
+ playerHeartbeatTimeout : int
}
ExecutionSettings --> "overloadTestRunSettings" ITestRunSettings
@enduml
|
61eea7dab15014dcdc1773be2378c8522b2dbfa6 | 748186200cea736d4b3cd0080409237e735bae85 | /test6/src/Class.puml | 19eb7698753f3a5cdd609bfb17fa36ac801f33f8 | [] | no_license | magehui/is_analysis | f79126e2e240d2df20e6bdfd2e144b3151625698 | 7256e50a7d3f37af74d2cbe2977901749c3ecd06 | refs/heads/master | 2021-04-12T08:22:21.594099 | 2018-06-07T08:25:26 | 2018-06-07T08:25:26 | 125,817,423 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,385 | puml | @startuml
title 基于GitHub的实验管理平台--类图
class users {
<b>user_id</b> (用户ID)
name (用户真实姓名)
github_username (用户GitHub账号)
update_date (用户GitHub账号修改日期)
password (用户密码)
disable (用户是否禁用)
}
class teachers{
<b>teacher_id</b> (老师工号)
<b>semester_id</b> (学期编号)
department (老师所属部门)
}
class students{
<b>student_id</b> (学号)
<b>semester_id</b> (学期编号)
class (班级)
result_sum(成绩汇总)
web_sum (网站正确与否汇总)
}
users <|- students
users <|-- teachers
class tests {
<b>test_id</b> (实验编号)
title (实验名称)
}
class semester {
<b>semester_id</b> (学期编号)
semestername (学期名称)
}
class course {
<b>course_id</b> (课程编号)
<b>semester_id</b> (学期编号)
coursename (课程名称)
}
class grades {
<b>student_id</b> (学号)
<b>course_id</b> (课程编号)
<b>test_id</b> (实验编号)
smallscore (实验中的细分分数)
result (分数)
memo (评价)
update_date (评改日期)
}
students "n" -- "1" semester
teachers "n" -- "1" semester
semester "1" -- "n" course
course "1" -- "n" grades
tests "1" -- "n" grades
@enduml |
6defe4f3dadb8688e956abdfa7979f8ea9dd1527 | 0e33bd9a84ae2cbb80cc44a3d50375dbdf27232c | /docs/diagrams/controller.puml | a7de43f212e7de929c9d5e81329102ddd71d0734 | [
"MIT"
] | permissive | kidomine/awsexplorer | 1fc51e1911806566fc4649e7e1b9e89b60955eb5 | 51def660b6db6acd91607357efb1b67eeeb73cbe | refs/heads/master | 2022-05-10T02:13:31.857221 | 2022-04-15T08:42:29 | 2022-04-15T08:42:29 | 170,159,679 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,524 | puml | ' MIT License
'
' Copyright (c) 2019 Ian Diaz.
'
' Permission is hereby granted, free of charge, to any person obtaining a copy
' of this software and associated documentation files (the "Software"), to deal
' in the Software without restriction, including without limitation the rights
' to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
' copies of the Software, and to permit persons to whom the Software is
' furnished to do so, subject to the following conditions:
'
' The above copyright notice and this permission notice shall be included in all
' copies or substantial portions of the Software.
'
' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
' IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
' FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
' AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
' LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
' OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
' SOFTWARE.
@startuml
class Controller {
-regionList []*Region
-regionListView *RegionListView
-serviceListView *ServiceListView
-serviceInstanceListView *ServiceInstanceListView
-currentView View
+Initialize()
+GetRegionIds(regionList []*Region): []string
+SelectRegionById(regionList []*Region, regionId string): *Region
+HandleEvent(event string)
+Render()
}
Controller .> View
@enduml |
134ca692c1a03be53e998c9619a15cbfea1f5760 | 319488df94b7f979aaa11c71088151b868a4bd8a | /demoISPBehaviorManager/out/production/demoISPBehaviorManager/com/example/isp/demoispbehaviormanager/flycomponents/flycomponents.plantuml | 68e03b462dd24a2b0205448e4da38e888822806e | [] | no_license | ccabrejo20/SOLIDDemos | 0864ad080a1f35f492845d1cc78ad80b0583075e | 8dbb918f710f62d520eda00146a0b1d54a02b244 | refs/heads/master | 2022-12-07T02:28:40.710654 | 2020-08-08T03:47:56 | 2020-08-08T03:47:56 | 285,679,469 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,499 | plantuml | @startuml
title __FLYCOMPONENTS's Class Diagram__\n
namespace com.example.isp.demoispbehaviormanager {
namespace flycomponents {
interface com.example.isp.demoispbehaviormanager.flycomponents.FlyBehavior {
{abstract} + fly()
}
}
}
namespace com.example.isp.demoispbehaviormanager {
namespace flycomponents {
class com.example.isp.demoispbehaviormanager.flycomponents.FlyNoWay {
+ fly()
}
}
}
namespace com.example.isp.demoispbehaviormanager {
namespace flycomponents {
class com.example.isp.demoispbehaviormanager.flycomponents.FlyRocketPowered {
+ fly()
}
}
}
namespace com.example.isp.demoispbehaviormanager {
namespace flycomponents {
class com.example.isp.demoispbehaviormanager.flycomponents.FlyWithWings {
+ fly()
}
}
}
com.example.isp.demoispbehaviormanager.flycomponents.FlyNoWay .up.|> com.example.isp.demoispbehaviormanager.flycomponents.FlyBehavior
com.example.isp.demoispbehaviormanager.flycomponents.FlyRocketPowered .up.|> com.example.isp.demoispbehaviormanager.flycomponents.FlyBehavior
com.example.isp.demoispbehaviormanager.flycomponents.FlyWithWings .up.|> com.example.isp.demoispbehaviormanager.flycomponents.FlyBehavior
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
|
150302eb54ecf1f3802d5beda3030045423e5396 | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/order/trapping_rain_water/trapping_rain_water.plantuml | c483d5bce24d12782fc31462cfb7a3ac4e2dfe61 | [] | no_license | shuile/LeetCode | 8b816b84071a5338db1161ac541437564574f96a | 4c12a838a0a895f8efcfbac09e1392c510595535 | refs/heads/master | 2023-08-17T04:53:37.617226 | 2023-08-15T16:18:46 | 2023-08-15T16:18:46 | 146,776,927 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 516 | plantuml | @startuml
title __TRAPPING_RAIN_WATER's Class Diagram__\n
namespace cn.shui.order {
namespace trapping_rain_water {
class cn.shui.order.trapping_rain_water.Solution {
{static} + main()
{static} - trap()
{static} - trap1()
{static} - trap2()
}
}
}
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
|
92230686a14d0a2ed4457a3cecffd8395f45d9a1 | 39377d14a9cd8174b444e2a7a2922a13f0bcca49 | /docs/source/diagrams/from_thesis/class_diagram/transformers.puml | e412a6c67d5db9a3215e57000693988693d7dc29 | [
"MIT"
] | permissive | rt-phb/Spooq | 6db2f5430a54be33185ae6413c65c40d5aa7523c | ef101dcb4239cee43f56497908fee63998eb5846 | refs/heads/master | 2023-03-29T15:03:04.653314 | 2021-03-17T17:07:47 | 2021-03-17T17:07:47 | 348,779,253 | 0 | 0 | MIT | 2021-03-24T07:49:59 | 2021-03-17T16:32:45 | Python | UTF-8 | PlantUML | false | false | 1,415 | puml | @startuml
skinparam monochrome true
skinparam defaultFontname Bitstream Vera Sans Mono
skinparam defaultFontSize 18
left to right direction
namespace transformer{
class Transformer {
.. derived ..
name : str
logger : logging.logger
__
transform(input_df : DataFrame)
}
class Mapper {
mapping : list
__
transform(input_df : DataFrame)
}
class Exploder {
exploded_elem_name : str = "included"
path_to_array : str = "elem"
__
transform(input_df : DataFrame)
}
class NewestByGroup {
group_by : list = ["id"]
order_by : list = ["updated_at", "deleted_at"]
__
transform(input_df : DataFrame)
}
class Sieve {
filter_expression : str
__
transform(input_df : DataFrame)
}
class ThresholdCleaner {
thresholds : dict
__
transform(input_df : DataFrame)
}
class mapper_custom_data_types << (M,orchid) >> {
add_custom_data_type(function_name, func)
_get_select_expression_for_custom_type(*mapping_tuple)
}
' Exploder --|> Transformer
' NewestByGroup --|> Transformer
' Mapper --|> Transformer
' Sieve --|> Transformer
' ThresholdCleaner --|> Transformer
Transformer --|> Mapper
Mapper <. mapper_custom_data_types : provides custom data types
Transformer --|> Exploder
Transformer --|> NewestByGroup
Transformer --|> Sieve
Transformer --|> ThresholdCleaner
}
@enduml
|
c4501f5d284703adb534790758679a2e59a73fd1 | 112e511928937b8ec60004ca94f1dd996bd9fd1a | /Documents/Shos.Chatter.Server/Areas/HelpPage/ModelDescriptions/ModelNameHelper.puml | 31ef6b608d90b63fb3e925af003f31a3b01d9440 | [
"MIT"
] | permissive | Fujiwo/Shos.Chatter.NetFramework | 2c143b390b1588e38e5967a8b8f1c51bf5487362 | 3c7061398e790c2fc856585fdbf60a18705f11e0 | refs/heads/master | 2023-03-23T09:31:02.071913 | 2021-03-11T05:27:48 | 2021-03-11T05:27:48 | 323,569,895 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 103 | puml | @startuml
class ModelNameHelper <<static>> {
+ {static} GetModelName(type:Type) : string
}
@enduml
|
83cde234b11a0722b29bcf071985566ffb37cbd4 | 57515bfad33d5ab1e68cccc924700e88316e19b9 | /DiagramaClases/Clases/Comprobantes.puml | 878d77e2b1d7ab3ee832976dc2f777dbe3135f5c | [] | no_license | NicolasBachs/DocumentacionZMGestion | 0e42009bf3bbf4d244e85a8545997c880f233074 | a099ddb44b8911b8428b9c4bdc2f9156c480af47 | refs/heads/master | 2023-01-27T17:57:29.235074 | 2020-12-02T15:35:21 | 2020-12-02T15:35:21 | 232,633,959 | 1 | 0 | null | 2020-01-08T18:44:12 | 2020-01-08T18:44:11 | null | UTF-8 | PlantUML | false | false | 278 | puml | @startuml Comprobantes
hide circle
class Comprobantes{
idComprobante: int
idVenta: int
idUsuario: int
tipo: string
numeroComprobante: int
monto: double
fechaAlta: DateTime
fechaBaja: DateTime
estado: string
observaciones: string
}
@enduml |
322bad80f03dc2445c05d6aa7ec34d9b0994bcc7 | 57515bfad33d5ab1e68cccc924700e88316e19b9 | /DiagramaClases/Clases/LineasRemito.puml | 412fdf1891f9eda8ddfd39165b11984e93713f0e | [] | no_license | NicolasBachs/DocumentacionZMGestion | 0e42009bf3bbf4d244e85a8545997c880f233074 | a099ddb44b8911b8428b9c4bdc2f9156c480af47 | refs/heads/master | 2023-01-27T17:57:29.235074 | 2020-12-02T15:35:21 | 2020-12-02T15:35:21 | 232,633,959 | 1 | 0 | null | 2020-01-08T18:44:12 | 2020-01-08T18:44:11 | null | UTF-8 | PlantUML | false | false | 105 | puml | @startuml LineasRemito
hide circle
class LineasRemito{
idRemito: int
idUbicacion: int
}
@enduml |
d11895c36c511b9a2c21033e5de43756913ecc56 | aae1f65a5158a43ff1685b1a06d9eff12b049e4b | /src/main/java/ex46/exercise46_diagram.puml | 6bb6d56660ee1f9c1459a73efc4743e33c314853 | [] | no_license | alex-williams-git/williams-cop3330-assignment3 | f86dbf5defbafe8ceb820c1b38093dba131ed15a | eb1012dc8f3dc3cf2df0c449be82fc0edc2f5028 | refs/heads/master | 2023-08-17T20:06:11.233264 | 2021-10-12T00:07:11 | 2021-10-12T00:07:11 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 551 | puml | @startuml
'https://plantuml.com/class-diagram
class main{
HashMap<String, Integer> wordMap
String inputFile
findFrequency(wordMap, inputFile)
List<Map.Entry<String, Integer>> sortedList
sortMap(wordMap)
printList(sortedList)
}
class findFrequency{
Scanner scan
while(scan.hasNext())
return wordMap
}
class sortMap{
List<Map.Entry<String, Integer>> mapToList
Collections.sort()
return mapToList
}
class printList{
for(Map.Entry<String, Integer> word : sortedList)
word.getKey()
}
findFrequency *-- main
sortMap *-- main
printList *-- main
@enduml |
917654a01fc4d2ab30157f4efef1ba7cf6017d94 | ea92b794f64577cf3f9895848ed841a2482a6d1e | /docs/assets/images/IPeriodLimit-umlClassDiagram-78.puml | ca074af93758cbb78aabb914dc2dd828c5c17c29 | [
"MIT"
] | permissive | dreambo8563/todo-core | a1cdd6e14ec6445dd1dae84d0ba03bf80b1b09da | 96b2af2b5b5c0ba1d1aaa15eba7061c52cafc611 | refs/heads/master | 2022-11-21T11:51:16.649734 | 2020-07-18T17:57:03 | 2020-07-18T17:57:03 | 274,677,442 | 0 | 0 | MIT | 2020-06-28T10:36:09 | 2020-06-24T13:36:10 | TypeScript | UTF-8 | PlantUML | false | false | 309 | puml | @startuml
hide empty methods
hide empty fields
interface "IPeriodLimit" {
+finishDate : FinishDate
}
class "PeriodTask" {
+content : T
+finishDate : FinishDate
+id : string
+owner : ITaskOwner | null
+status : ETaskStatus
+toggle() : void
}
"IPeriodLimit" <|.. "PeriodTask"
@enduml |
73e8227340a4732506b0c49f9c1b7bb202b386b7 | 2099ea9bcbc7ae9c8c28d59f9e0fffbf478c1f03 | /UML/vendor/yiisoft/yii2-dev/framework/helpers.puml | 512c1ddcf17b312736034890ad8ca9aa12567f45 | [] | no_license | adipriyantobpn/UML-diagram-for-some-PHP-packages | b3e3ed8e8898e4a5d56f0647cfbedaaa9d2dbdd5 | 0a9308fbd2d544c8f64a37cf9f11011edfc40ace | refs/heads/master | 2021-08-19T19:24:34.948176 | 2017-11-27T07:48:10 | 2017-11-27T07:48:10 | 112,164,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 32,692 | puml | @startuml
skinparam handwritten true
class yii.helpers.ArrayHelper {
}
class yii.helpers.ArrayHelper extends yii.helpers.BaseArrayHelper
class yii.helpers.BaseArrayHelper {
+{static}filter(array : array, filters : array) : array
+{static}getColumn(array : array, name : string|.Closure, keepKeys : bool = true) : array
+{static}getValue(array : array|object, key : string|.Closure|array, default : mixed = null) : mixed
+{static}htmlDecode(data : array, valuesOnly : bool = true) : array
+{static}htmlEncode(data : array, valuesOnly : bool = true, charset : string = null) : array
+{static}index(array : array, key : string|.Closure|null, groups : string|string[]|.Closure[]|null = []) : array
+{static}isAssociative(array : array, allStrings : bool = true) : bool
+{static}isIn(needle : mixed, haystack : array|.Traversable, strict : bool = false) : bool
+{static}isIndexed(array : array, consecutive : bool = false) : bool
+{static}isSubset(needles : array|.Traversable, haystack : array|.Traversable, strict : bool = false) : bool
+{static}isTraversable(var : mixed) : bool
+{static}keyExists(key : string, array : array, caseSensitive : bool = true) : bool
+{static}map(array : array, from : string|.Closure, to : string|.Closure, group : string|.Closure = null) : array
+{static}merge(a : array, b : array) : array
+{static}multisort(array : array, key : string|.Closure|array, direction : int|array = 4, sortFlag : int|array = 0)
+{static}remove(array : array, key : string, default : mixed = null) : mixed|null
+{static}removeValue(array : array, value : string) : array
+{static}setValue(array : array, path : string|array|null, value : mixed)
+{static}toArray(object : object|array|string, properties : array = [], recursive : bool = true) : array
}
class yii.helpers.BaseConsole {
+{static}BG_BLACK = 40
+{static}BG_BLUE = 44
+{static}BG_CYAN = 46
+{static}BG_GREEN = 42
+{static}BG_GREY = 47
+{static}BG_PURPLE = 45
+{static}BG_RED = 41
+{static}BG_YELLOW = 43
+{static}BLINK = 5
+{static}BOLD = 1
+{static}CONCEALED = 8
+{static}CROSSED_OUT = 9
+{static}ENCIRCLED = 52
+{static}FG_BLACK = 30
+{static}FG_BLUE = 34
+{static}FG_CYAN = 36
+{static}FG_GREEN = 32
+{static}FG_GREY = 37
+{static}FG_PURPLE = 35
+{static}FG_RED = 31
+{static}FG_YELLOW = 33
+{static}FRAMED = 51
+{static}ITALIC = 3
+{static}NEGATIVE = 7
+{static}NORMAL = 0
+{static}OVERLINED = 53
+{static}RESET = 0
+{static}UNDERLINE = 4
-_progressEta
-_progressEtaLastDone = 0
-_progressEtaLastUpdate
-_progressPrefix
-_progressStart
-_progressWidth
+{static}ansiFormat(string : string, format : array = []) : string
+{static}ansiFormatCode(format : array) : string
+{static}ansiStrlen(string : string) : int
+{static}ansiToHtml(string : string, styleMap : array = []) : string
+{static}beginAnsiFormat(format : array)
+{static}clearLine()
+{static}clearLineAfterCursor()
+{static}clearLineBeforeCursor()
+{static}clearScreen()
+{static}clearScreenAfterCursor()
+{static}clearScreenBeforeCursor()
+{static}confirm(message : string, default : bool = false) : bool
+{static}endAnsiFormat()
+{static}endProgress(remove : string|bool = false, keepPrefix : bool = true)
+{static}error(string : string = null) : int|bool
+{static}escape(string : string) : string
+{static}getScreenSize(refresh : bool = false) : array|bool
+{static}hideCursor()
+{static}input(prompt : string = null) : string
+{static}isRunningOnWindows() : bool
+{static}markdownToAnsi(markdown : string) : string
+{static}moveCursorBackward(steps : int = 1)
+{static}moveCursorDown(rows : int = 1)
+{static}moveCursorForward(steps : int = 1)
+{static}moveCursorNextLine(lines : int = 1)
+{static}moveCursorPrevLine(lines : int = 1)
+{static}moveCursorTo(column : int, row : int|null = null)
+{static}moveCursorUp(rows : int = 1)
+{static}output(string : string = null) : int|bool
+{static}prompt(text : string, options : array = []) : string
+{static}renderColoredString(string : string, colored : bool = true) : string
+{static}restoreCursorPosition()
+{static}saveCursorPosition()
+{static}scrollDown(lines : int = 1)
+{static}scrollUp(lines : int = 1)
+{static}select(prompt : string, options : array = []) : string
+{static}showCursor()
+{static}startProgress(done : int, total : int, prefix : string = "", width : int|bool = null)
+{static}stderr(string : string) : int|bool
+{static}stdin(raw : bool = false) : string
+{static}stdout(string : string) : int|bool
+{static}streamSupportsAnsiColors(stream : mixed) : bool
+{static}stripAnsiFormat(string : string) : string
+{static}updateProgress(done : int, total : int, prefix : string = null)
+{static}wrapText(text : string, indent : int = 0, refresh : bool = false) : string
+{static}xtermBgColor(colorCode : int) : string
+{static}xtermFgColor(colorCode : int) : string
}
class yii.helpers.BaseFileHelper {
+{static}PATTERN_CASE_INSENSITIVE = 32
+{static}PATTERN_ENDSWITH = 4
+{static}PATTERN_MUSTBEDIR = 8
+{static}PATTERN_NEGATIVE = 16
+{static}PATTERN_NODIR = 1
+mimeMagicFile : string = "@yii/helpers/mimeTypes.php"
-_mimeTypes = []
+{static}copyDirectory(src : string, dst : string, options : array = [])
+{static}createDirectory(path : string, mode : int = 509, recursive : bool = true) : bool
+{static}filterPath(path : string, options : array) : bool
+{static}findFiles(dir : string, options : array = []) : array
-{static}firstWildcardInPattern(pattern : string) : int|bool
+{static}getExtensionsByMimeType(mimeType : string, magicFile : string = null) : array
+{static}getMimeType(file : string, magicFile : string = null, checkExtension : bool = true) : string
+{static}getMimeTypeByExtension(file : string, magicFile : string = null) : string|null
-{static}lastExcludeMatchingFromList(basePath : string, path : string, excludes : array) : array|null
#{static}loadMimeTypes(magicFile : string) : array
+{static}localize(file : string, language : string = null, sourceLanguage : string = null) : string
-{static}matchBasename(baseName : string, pattern : string, firstWildcard : int|bool, flags : int) : bool
-{static}matchPathname(path : string, basePath : string, pattern : string, firstWildcard : int|bool, flags : int) : bool
#{static}normalizeOptions(options : array) : array
+{static}normalizePath(path : string, ds : string = "\") : string
-{static}parseExcludePattern(pattern : string, caseSensitive : bool) : array
+{static}removeDirectory(dir : string, options : array = [])
}
class yii.helpers.BaseFormatConverter {
+juiFallbackDatePatterns : array = [
\t"short" => [
\t \t"date" => "d/m/y",
\t \t"time" => "",
\t \t"datetime" => "d/m/y"
\t],
\t"medium" => [
\t \t"date" => "M d, yy",
\t \t"time" => "",
\t \t"datetime" => "M d, yy"
\t],
\t"long" => [
\t \t"date" => "MM d, yy",
\t \t"time" => "",
\t \t"datetime" => "MM d, yy"
\t],
\t"full" => [
\t \t"date" => "DD, MM d, yy",
\t \t"time" => "",
\t \t"datetime" => "DD, MM d, yy"
\t]
]
+phpFallbackDatePatterns : array = [
\t"short" => [
\t \t"date" => "n/j/y",
\t \t"time" => "H:i",
\t \t"datetime" => "n/j/y H:i"
\t],
\t"medium" => [
\t \t"date" => "M j, Y",
\t \t"time" => "g:i:s A",
\t \t"datetime" => "M j, Y g:i:s A"
\t],
\t"long" => [
\t \t"date" => "F j, Y",
\t \t"time" => "g:i:sA",
\t \t"datetime" => "F j, Y g:i:sA"
\t],
\t"full" => [
\t \t"date" => "l, F j, Y",
\t \t"time" => "g:i:sA T",
\t \t"datetime" => "l, F j, Y g:i:sA T"
\t]
]
-_icuShortFormats = [
\t"short" => 3,
\t"medium" => 2,
\t"long" => 1,
\t"full" => 0
]
+{static}convertDateIcuToJui(pattern : string, type : string = "date", locale : string = null) : string
+{static}convertDateIcuToPhp(pattern : string, type : string = "date", locale : string = null) : string
+{static}convertDatePhpToIcu(pattern : string) : string
+{static}convertDatePhpToJui(pattern : string) : string
}
class yii.helpers.BaseHtml {
+attributeOrder : array = [
\t0 => "type",
\t1 => "id",
\t2 => "class",
\t3 => "name",
\t4 => "value",
\t5 => "href",
\t6 => "src",
\t7 => "srcset",
\t8 => "form",
\t9 => "action",
\t10 => "method",
\t11 => "selected",
\t12 => "checked",
\t13 => "readonly",
\t14 => "disabled",
\t15 => "multiple",
\t16 => "size",
\t17 => "maxlength",
\t18 => "width",
\t19 => "height",
\t20 => "rows",
\t21 => "cols",
\t22 => "alt",
\t23 => "title",
\t24 => "rel",
\t25 => "media"
]
+attributeRegex : string = "/(^|.*\])([\w\.\+]+)(\[.*|$)/u"
+dataAttributes : array = [
\t0 => "data",
\t1 => "data-ng",
\t2 => "ng"
]
+voidElements : array = [
\t"area" => 1,
\t"base" => 1,
\t"br" => 1,
\t"col" => 1,
\t"command" => 1,
\t"embed" => 1,
\t"hr" => 1,
\t"img" => 1,
\t"input" => 1,
\t"keygen" => 1,
\t"link" => 1,
\t"meta" => 1,
\t"param" => 1,
\t"source" => 1,
\t"track" => 1,
\t"wbr" => 1
]
+{static}a(text : string, url : array|string|null = null, options : array = []) : string
#{static}activeBooleanInput(type : string, model : Model, attribute : string, options : array = []) : string
+{static}activeCheckbox(model : Model, attribute : string, options : array = []) : string
+{static}activeCheckboxList(model : Model, attribute : string, items : array, options : array = []) : string
+{static}activeDropDownList(model : Model, attribute : string, items : array, options : array = []) : string
+{static}activeFileInput(model : Model, attribute : string, options : array = []) : string
+{static}activeHiddenInput(model : Model, attribute : string, options : array = []) : string
+{static}activeHint(model : Model, attribute : string, options : array = []) : string
+{static}activeInput(type : string, model : Model, attribute : string, options : array = []) : string
+{static}activeLabel(model : Model, attribute : string, options : array = []) : string
+{static}activeListBox(model : Model, attribute : string, items : array, options : array = []) : string
#{static}activeListInput(type : string, model : Model, attribute : string, items : array, options : array = []) : string
+{static}activePasswordInput(model : Model, attribute : string, options : array = []) : string
+{static}activeRadio(model : Model, attribute : string, options : array = []) : string
+{static}activeRadioList(model : Model, attribute : string, items : array, options : array = []) : string
+{static}activeTextarea(model : Model, attribute : string, options : array = []) : string
+{static}activeTextInput(model : Model, attribute : string, options : array = []) : string
+{static}addCssClass(options : array, class : string|array)
+{static}addCssStyle(options : array, style : string|array, overwrite : bool = true)
+{static}beginForm(action : array|string = "", method : string = "post", options : array = []) : string
+{static}beginTag(name : string|bool|null, options : array = []) : string
#{static}booleanInput(type : string, name : string, checked : bool = false, options : array = []) : string
+{static}button(content : string = "Button", options : array = []) : string
+{static}buttonInput(label : string = "Button", options : array = []) : string
+{static}checkbox(name : string, checked : bool = false, options : array = []) : string
+{static}checkboxList(name : string, selection : string|array|null = null, items : array = [], options : array = []) : string
+{static}csrfMetaTags() : string
+{static}cssFile(url : array|string, options : array = []) : string
+{static}cssStyleFromArray(style : array) : string
+{static}cssStyleToArray(style : string) : array
+{static}decode(content : string) : string
+{static}dropDownList(name : string, selection : string|array|null = null, items : array = [], options : array = []) : string
+{static}encode(content : string, doubleEncode : bool = true) : string
+{static}endForm() : string
+{static}endTag(name : string|bool|null) : string
+{static}error(model : Model, attribute : string, options : array = []) : string
+{static}errorSummary(models : Model|Model[], options : array = []) : string
+{static}escapeJsRegularExpression(regexp : string) : string
+{static}fileInput(name : string, value : string = null, options : array = []) : string
+{static}getAttributeName(attribute : string) : string
+{static}getAttributeValue(model : Model, attribute : string) : string|array
+{static}getInputId(model : Model, attribute : string) : string
+{static}getInputName(model : Model, attribute : string) : string
+{static}hiddenInput(name : string, value : string = null, options : array = []) : string
+{static}img(src : array|string, options : array = []) : string
+{static}input(type : string, name : string = null, value : string = null, options : array = []) : string
+{static}jsFile(url : string, options : array = []) : string
+{static}label(content : string, for : string = null, options : array = []) : string
+{static}listBox(name : string, selection : string|array|null = null, items : array = [], options : array = []) : string
+{static}mailto(text : string, email : string = null, options : array = []) : string
-{static}mergeCssClasses(existingClasses : array, additionalClasses : array) : array
-{static}normalizeMaxLength(model : Model, attribute : string, options : array)
+{static}ol(items : array|.Traversable, options : array = []) : string
+{static}passwordInput(name : string, value : string = null, options : array = []) : string
+{static}radio(name : string, checked : bool = false, options : array = []) : string
+{static}radioList(name : string, selection : string|array|null = null, items : array = [], options : array = []) : string
+{static}removeCssClass(options : array, class : string|array)
+{static}removeCssStyle(options : array, properties : string|array)
+{static}renderSelectOptions(selection : string|array|null, items : array, tagOptions : array = []) : string
+{static}renderTagAttributes(attributes : array) : string
+{static}resetButton(content : string = "Reset", options : array = []) : string
+{static}resetInput(label : string = "Reset", options : array = []) : string
+{static}script(content : string, options : array = []) : string
+{static}style(content : string, options : array = []) : string
+{static}submitButton(content : string = "Submit", options : array = []) : string
+{static}submitInput(label : string = "Submit", options : array = []) : string
+{static}tag(name : string|bool|null, content : string = "", options : array = []) : string
+{static}textarea(name : string, value : string = "", options : array = []) : string
+{static}textInput(name : string, value : string = null, options : array = []) : string
+{static}ul(items : array|.Traversable, options : array = []) : string
-{static}wrapIntoCondition(content : string, condition : string) : string
}
class yii.helpers.BaseHtmlPurifier {
#{static}configure(config : HTMLPurifier_Config)
+{static}process(content : string, config : array|.Closure|null = null) : string
}
class yii.helpers.BaseInflector {
+{static}TRANSLITERATE_LOOSE = "Any-Latin; Latin-ASCII; [\u0080-\uffff] remove"
+{static}TRANSLITERATE_MEDIUM = "Any-Latin; Latin-ASCII"
+{static}TRANSLITERATE_STRICT = "Any-Latin; NFKD"
+plurals : array = [
\t"/([nrlm]ese|deer|fish|sheep|measles|ois|pox|media)$/i" => "\1",
\t"/^(sea[- ]bass)$/i" => "\1",
\t"/(m)ove$/i" => "\1oves",
\t"/(f)oot$/i" => "\1eet",
\t"/(h)uman$/i" => "\1umans",
\t"/(s)tatus$/i" => "\1tatuses",
\t"/(s)taff$/i" => "\1taff",
\t"/(t)ooth$/i" => "\1eeth",
\t"/(quiz)$/i" => "\1zes",
\t"/^(ox)$/i" => "\1\2en",
\t"/([m|l])ouse$/i" => "\1ice",
\t"/(matr|vert|ind)(ix|ex)$/i" => "\1ices",
\t"/(x|ch|ss|sh)$/i" => "\1es",
\t"/([^aeiouy]|qu)y$/i" => "\1ies",
\t"/(hive)$/i" => "\1s",
\t"/(?:([^f])fe|([lr])f)$/i" => "\1\2ves",
\t"/sis$/i" => "ses",
\t"/([ti])um$/i" => "\1a",
\t"/(p)erson$/i" => "\1eople",
\t"/(m)an$/i" => "\1en",
\t"/(c)hild$/i" => "\1hildren",
\t"/(buffal|tomat|potat|ech|her|vet)o$/i" => "\1oes",
\t"/(alumn|bacill|cact|foc|fung|nucle|radi|stimul|syllab|termin|vir)us$/i" => "\1i",
\t"/us$/i" => "uses",
\t"/(alias)$/i" => "\1es",
\t"/(ax|cris|test)is$/i" => "\1es",
\t"/(currenc)y$/" => "\1ies",
\t"/s$/" => "s",
\t"/^$/" => "",
\t"/$/" => "s"
]
+singulars : array = [
\t"/([nrlm]ese|deer|fish|sheep|measles|ois|pox|media|ss)$/i" => "\1",
\t"/^(sea[- ]bass)$/i" => "\1",
\t"/(s)tatuses$/i" => "\1tatus",
\t"/(f)eet$/i" => "\1oot",
\t"/(t)eeth$/i" => "\1ooth",
\t"/^(.*)(menu)s$/i" => "\1\2",
\t"/(quiz)zes$/i" => "\1",
\t"/(matr)ices$/i" => "\1ix",
\t"/(vert|ind)ices$/i" => "\1ex",
\t"/^(ox)en/i" => "\1",
\t"/(alias)(es)*$/i" => "\1",
\t"/(alumn|bacill|cact|foc|fung|nucle|radi|stimul|syllab|termin|viri?)i$/i" => "\1us",
\t"/([ftw]ax)es/i" => "\1",
\t"/(cris|ax|test)es$/i" => "\1is",
\t"/(shoe|slave)s$/i" => "\1",
\t"/(o)es$/i" => "\1",
\t"/ouses$/" => "ouse",
\t"/([^a])uses$/" => "\1us",
\t"/([m|l])ice$/i" => "\1ouse",
\t"/(x|ch|ss|sh)es$/i" => "\1",
\t"/(m)ovies$/i" => "\1\2ovie",
\t"/(s)eries$/i" => "\1\2eries",
\t"/([^aeiouy]|qu)ies$/i" => "\1y",
\t"/([lr])ves$/i" => "\1f",
\t"/(tive)s$/i" => "\1",
\t"/(hive)s$/i" => "\1",
\t"/(drive)s$/i" => "\1",
\t"/([^fo])ves$/i" => "\1fe",
\t"/(^analy)ses$/i" => "\1sis",
\t"/(analy|diagno|^ba|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i" => "\1\2sis",
\t"/([ti])a$/i" => "\1um",
\t"/(p)eople$/i" => "\1\2erson",
\t"/(m)en$/i" => "\1an",
\t"/(c)hildren$/i" => "\1\2hild",
\t"/(n)ews$/i" => "\1\2ews",
\t"/(n)etherlands$/i" => "\1\2etherlands",
\t"/eaus$/" => "eau",
\t"/(currenc)ies$/" => "\1y",
\t"/^(.*us)$/" => "\1",
\t"/s$/i" => ""
]
+specials : array = [
\t"atlas" => "atlases",
\t"beef" => "beefs",
\t"brother" => "brothers",
\t"cafe" => "cafes",
\t"child" => "children",
\t"cookie" => "cookies",
\t"corpus" => "corpuses",
\t"cow" => "cows",
\t"curve" => "curves",
\t"foe" => "foes",
\t"ganglion" => "ganglions",
\t"genie" => "genies",
\t"genus" => "genera",
\t"graffito" => "graffiti",
\t"hoof" => "hoofs",
\t"loaf" => "loaves",
\t"man" => "men",
\t"money" => "monies",
\t"mongoose" => "mongooses",
\t"move" => "moves",
\t"mythos" => "mythoi",
\t"niche" => "niches",
\t"numen" => "numina",
\t"occiput" => "occiputs",
\t"octopus" => "octopuses",
\t"opus" => "opuses",
\t"ox" => "oxen",
\t"pasta" => "pasta",
\t"penis" => "penises",
\t"sex" => "sexes",
\t"soliloquy" => "soliloquies",
\t"testis" => "testes",
\t"trilby" => "trilbys",
\t"turf" => "turfs",
\t"wave" => "waves",
\t"Amoyese" => "Amoyese",
\t"bison" => "bison",
\t"Borghese" => "Borghese",
\t"bream" => "bream",
\t"breeches" => "breeches",
\t"britches" => "britches",
\t"buffalo" => "buffalo",
\t"cantus" => "cantus",
\t"carp" => "carp",
\t"chassis" => "chassis",
\t"clippers" => "clippers",
\t"cod" => "cod",
\t"coitus" => "coitus",
\t"Congoese" => "Congoese",
\t"contretemps" => "contretemps",
\t"corps" => "corps",
\t"debris" => "debris",
\t"diabetes" => "diabetes",
\t"djinn" => "djinn",
\t"eland" => "eland",
\t"elk" => "elk",
\t"equipment" => "equipment",
\t"Faroese" => "Faroese",
\t"flounder" => "flounder",
\t"Foochowese" => "Foochowese",
\t"gallows" => "gallows",
\t"Genevese" => "Genevese",
\t"Genoese" => "Genoese",
\t"Gilbertese" => "Gilbertese",
\t"graffiti" => "graffiti",
\t"headquarters" => "headquarters",
\t"herpes" => "herpes",
\t"hijinks" => "hijinks",
\t"Hottentotese" => "Hottentotese",
\t"information" => "information",
\t"innings" => "innings",
\t"jackanapes" => "jackanapes",
\t"Kiplingese" => "Kiplingese",
\t"Kongoese" => "Kongoese",
\t"Lucchese" => "Lucchese",
\t"mackerel" => "mackerel",
\t"Maltese" => "Maltese",
\t"mews" => "mews",
\t"moose" => "moose",
\t"mumps" => "mumps",
\t"Nankingese" => "Nankingese",
\t"news" => "news",
\t"nexus" => "nexus",
\t"Niasese" => "Niasese",
\t"Pekingese" => "Pekingese",
\t"Piedmontese" => "Piedmontese",
\t"pincers" => "pincers",
\t"Pistoiese" => "Pistoiese",
\t"pliers" => "pliers",
\t"Portuguese" => "Portuguese",
\t"proceedings" => "proceedings",
\t"rabies" => "rabies",
\t"rice" => "rice",
\t"rhinoceros" => "rhinoceros",
\t"salmon" => "salmon",
\t"Sarawakese" => "Sarawakese",
\t"scissors" => "scissors",
\t"series" => "series",
\t"Shavese" => "Shavese",
\t"shears" => "shears",
\t"siemens" => "siemens",
\t"species" => "species",
\t"swine" => "swine",
\t"testes" => "testes",
\t"trousers" => "trousers",
\t"trout" => "trout",
\t"tuna" => "tuna",
\t"Vermontese" => "Vermontese",
\t"Wenchowese" => "Wenchowese",
\t"whiting" => "whiting",
\t"wildebeest" => "wildebeest",
\t"Yengeese" => "Yengeese"
]
+transliteration : array = [
\t"À" => "A",
\t"Á" => "A",
\t"Â" => "A",
\t"Ã" => "A",
\t"Ä" => "A",
\t"Å" => "A",
\t"Æ" => "AE",
\t"Ç" => "C",
\t"È" => "E",
\t"É" => "E",
\t"Ê" => "E",
\t"Ë" => "E",
\t"Ì" => "I",
\t"Í" => "I",
\t"Î" => "I",
\t"Ï" => "I",
\t"Ð" => "D",
\t"Ñ" => "N",
\t"Ò" => "O",
\t"Ó" => "O",
\t"Ô" => "O",
\t"Õ" => "O",
\t"Ö" => "O",
\t"Ő" => "O",
\t"Ø" => "O",
\t"Ù" => "U",
\t"Ú" => "U",
\t"Û" => "U",
\t"Ü" => "U",
\t"Ű" => "U",
\t"Ý" => "Y",
\t"Þ" => "TH",
\t"ß" => "ss",
\t"à" => "a",
\t"á" => "a",
\t"â" => "a",
\t"ã" => "a",
\t"ä" => "a",
\t"å" => "a",
\t"æ" => "ae",
\t"ç" => "c",
\t"è" => "e",
\t"é" => "e",
\t"ê" => "e",
\t"ë" => "e",
\t"ì" => "i",
\t"í" => "i",
\t"î" => "i",
\t"ï" => "i",
\t"ð" => "d",
\t"ñ" => "n",
\t"ò" => "o",
\t"ó" => "o",
\t"ô" => "o",
\t"õ" => "o",
\t"ö" => "o",
\t"ő" => "o",
\t"ø" => "o",
\t"ù" => "u",
\t"ú" => "u",
\t"û" => "u",
\t"ü" => "u",
\t"ű" => "u",
\t"ý" => "y",
\t"þ" => "th",
\t"ÿ" => "y"
]
+transliterator : mixed = "Any-Latin; Latin-ASCII; [\u0080-\uffff] remove"
+{static}camel2id(name : string, separator : string = "-", strict : bool|string = false) : string
+{static}camel2words(name : string, ucwords : bool = true) : string
+{static}camelize(word : string) : string
+{static}classify(tableName : string) : string
#{static}hasIntl() : bool
+{static}humanize(word : string, ucAll : bool = false) : string
+{static}id2camel(id : string, separator : string = "-") : string
+{static}ordinalize(number : int) : string
+{static}pluralize(word : string) : string
+{static}sentence(words : array, twoWordsConnector : string = null, lastWordConnector : string = null, connector : string = ", ") : string
+{static}singularize(word : string) : string
+{static}slug(string : string, replacement : string = "-", lowercase : bool = true) : string
+{static}tableize(className : string) : string
+{static}titleize(words : string, ucAll : bool = false) : string
+{static}transliterate(string : string, transliterator : string|.Transliterator = null) : string
+{static}underscore(words : string) : string
+{static}variablize(word : string) : string
}
class yii.helpers.BaseJson {
+jsonErrorMessages : array = [
\t"JSON_ERROR_DEPTH" => "The maximum stack depth has been exceeded.",
\t"JSON_ERROR_STATE_MISMATCH" => "Invalid or malformed JSON.",
\t"JSON_ERROR_CTRL_CHAR" => "Control character error, possibly incorrectly encoded.",
\t"JSON_ERROR_SYNTAX" => "Syntax error.",
\t"JSON_ERROR_UTF8" => "Malformed UTF-8 characters, possibly incorrectly encoded.",
\t"JSON_ERROR_RECURSION" => "One or more recursive references in the value to be encoded.",
\t"JSON_ERROR_INF_OR_NAN" => "One or more NAN or INF values in the value to be encoded",
\t"JSON_ERROR_UNSUPPORTED_TYPE" => "A value of a type that cannot be encoded was given"
]
+{static}decode(json : string, asArray : bool = true) : mixed
+{static}encode(value : mixed, options : int = 320) : string
#{static}handleJsonError(lastError : int)
+{static}htmlEncode(value : mixed) : string
#{static}processData(data : mixed, expressions : array, expPrefix : string) : mixed
}
class yii.helpers.BaseMarkdown {
+defaultFlavor : string = "original"
+flavors : array = [
\t"original" => [
\t \t"class" => "cebe\markdown\Markdown",
\t \t"html5" => true
\t],
\t"gfm" => [
\t \t"class" => "cebe\markdown\GithubMarkdown",
\t \t"html5" => true
\t],
\t"gfm-comment" => [
\t \t"class" => "cebe\markdown\GithubMarkdown",
\t \t"html5" => true,
\t \t"enableNewlines" => true
\t],
\t"extra" => [
\t \t"class" => "cebe\markdown\MarkdownExtra",
\t \t"html5" => true
\t]
]
#{static}getParser(flavor : string) : cebe.markdown.Parser
+{static}process(markdown : string, flavor : string = null) : string
+{static}processParagraph(markdown : string, flavor : string = null) : string
}
class yii.helpers.BaseStringHelper {
+{static}base64UrlDecode(input : string) : string
+{static}base64UrlEncode(input : string) : string
+{static}basename(path : string, suffix : string = "") : string
+{static}byteLength(string : string) : int
+{static}byteSubstr(string : string, start : int, length : int = null) : string
+{static}countWords(string : string) : int
+{static}dirname(path : string) : string
+{static}endsWith(string : string, with : string, caseSensitive : bool = true) : bool
+{static}explode(string : string, delimiter : string = ",", trim : mixed = true, skipEmpty : bool = false) : array
+{static}floatToString(number : float|int) : string
+{static}normalizeNumber(value : int|float|string) : string
+{static}startsWith(string : string, with : string, caseSensitive : bool = true) : bool
+{static}truncate(string : string, length : int, suffix : string = "...", encoding : string = null, asHtml : bool = false) : string
#{static}truncateHtml(string : string, count : int, suffix : string, encoding : string|bool = false) : string
+{static}truncateWords(string : string, count : int, suffix : string = "...", asHtml : bool = false) : string
}
class yii.helpers.BaseUrl {
+urlManager : yii.web.UrlManager
+{static}base(scheme : bool|string = false) : string
+{static}canonical() : string
+{static}current(params : array = [], scheme : bool|string = false) : string
+{static}ensureScheme(url : string, scheme : string) : string
#{static}getUrlManager() : yii.web.UrlManager
+{static}home(scheme : bool|string = false) : string
+{static}isRelative(url : string) : bool
#{static}normalizeRoute(route : string) : string
+{static}previous(name : string = null) : string|null
+{static}remember(url : string|array = "", name : string = null)
+{static}to(url : array|string = "", scheme : bool|string = false) : string
+{static}toRoute(route : string|array, scheme : bool|string = false) : string
}
class yii.helpers.BaseVarDumper {
-_depth
-_objects
-_output
+{static}dump(var : mixed, depth : int = 10, highlight : bool = false)
+{static}dumpAsString(var : mixed, depth : int = 10, highlight : bool = false) : string
-{static}dumpInternal(var : mixed, level : int)
+{static}export(var : mixed) : string
-{static}exportClosure(closure : Closure) : string
-{static}exportInternal(var : mixed, level : int)
}
class yii.helpers.Console {
+{static}BG_BLACK = 40
+{static}BG_BLUE = 44
+{static}BG_CYAN = 46
+{static}BG_GREEN = 42
+{static}BG_GREY = 47
+{static}BG_PURPLE = 45
+{static}BG_RED = 41
+{static}BG_YELLOW = 43
+{static}BLINK = 5
+{static}BOLD = 1
+{static}CONCEALED = 8
+{static}CROSSED_OUT = 9
+{static}ENCIRCLED = 52
+{static}FG_BLACK = 30
+{static}FG_BLUE = 34
+{static}FG_CYAN = 36
+{static}FG_GREEN = 32
+{static}FG_GREY = 37
+{static}FG_PURPLE = 35
+{static}FG_RED = 31
+{static}FG_YELLOW = 33
+{static}FRAMED = 51
+{static}ITALIC = 3
+{static}NEGATIVE = 7
+{static}NORMAL = 0
+{static}OVERLINED = 53
+{static}RESET = 0
+{static}UNDERLINE = 4
}
class yii.helpers.Console extends yii.helpers.BaseConsole
class yii.helpers.FileHelper {
+{static}PATTERN_CASE_INSENSITIVE = 32
+{static}PATTERN_ENDSWITH = 4
+{static}PATTERN_MUSTBEDIR = 8
+{static}PATTERN_NEGATIVE = 16
+{static}PATTERN_NODIR = 1
}
class yii.helpers.FileHelper extends yii.helpers.BaseFileHelper
class yii.helpers.FormatConverter {
}
class yii.helpers.FormatConverter extends yii.helpers.BaseFormatConverter
class yii.helpers.Html {
}
class yii.helpers.Html extends yii.helpers.BaseHtml
class yii.helpers.HtmlPurifier {
}
class yii.helpers.HtmlPurifier extends yii.helpers.BaseHtmlPurifier
class yii.helpers.Inflector {
+{static}TRANSLITERATE_LOOSE = "Any-Latin; Latin-ASCII; [\u0080-\uffff] remove"
+{static}TRANSLITERATE_MEDIUM = "Any-Latin; Latin-ASCII"
+{static}TRANSLITERATE_STRICT = "Any-Latin; NFKD"
}
class yii.helpers.Inflector extends yii.helpers.BaseInflector
class yii.helpers.Json {
}
class yii.helpers.Json extends yii.helpers.BaseJson
class yii.helpers.Markdown {
}
class yii.helpers.Markdown extends yii.helpers.BaseMarkdown
class yii.helpers.ReplaceArrayValue {
+value : mixed
+__construct(value : mixed)
}
class yii.helpers.StringHelper {
}
class yii.helpers.StringHelper extends yii.helpers.BaseStringHelper
class yii.helpers.UnsetArrayValue {
}
class yii.helpers.Url {
}
class yii.helpers.Url extends yii.helpers.BaseUrl
class yii.helpers.VarDumper {
}
class yii.helpers.VarDumper extends yii.helpers.BaseVarDumper
@enduml
|
2e27224d60a60d72cdcee363d34f20f1821e8709 | 9dc89e0060db7938382768fe3bb3eabb7ea2f034 | /doc/conception/pmul/class/controller.puml | ba292741d1b0350bf60a967a2f5970e2ed59b9c3 | [] | no_license | Reynault/ShipShop | e06e79384ade8fa5c20ccd6d24b249eba92c35bc | adc6054f0775d4c7695f51490836870b658f309e | refs/heads/master | 2020-08-15T16:11:43.189475 | 2019-12-22T19:22:25 | 2019-12-22T19:22:25 | 215,369,325 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 162 | puml | @startuml
package controller{
class GameController{
}
}
package model{
class ShipShop{
}
}
GameController --> "1" ShipShop: - model
@enduml |
0e8ae7d9c9bec595adf14722bfaf0ce6578ae637 | 7f433ab6e1461965cb7e83069672bf261881b7c1 | /WeatherMonitoring/src/ObserverPattern.puml | 9e76738b00ef6a78ea3d80f9fa7d3d840aa25d6b | [] | no_license | phuduongdev/design-pattern | 8affcd0c015b3bd23a21f94f0f4982b5591b06b8 | d907e4eaeb5a6f250472ef725c1b667929e22d74 | refs/heads/master | 2020-07-31T10:19:54.914974 | 2019-09-27T08:28:35 | 2019-09-27T08:28:35 | 210,572,393 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 829 | puml | @startuml
interface Subject{
registerObserver()
removeObserver()
notifyObserver()
}
class WeatherData{
temperature
humidity
pressure
List<Observer>
registerObserver()
removeObserver()
notifyObserver()
}
interface Observer{
update()
}
interface DiplayElement{
display()
}
class CurrentConditionsDisplay
class StatisticsDisplay
class ForecastDisplay
class ThirdpartyDisplay
Subject <|-- WeatherData
Subject --> Observer
Subject --> DiplayElement
Observer <|.. CurrentConditionsDisplay
Observer <|.. StatisticsDisplay
Observer <|.. ForecastDisplay
Observer <|... ThirdpartyDisplay
DiplayElement <|.. CurrentConditionsDisplay
DiplayElement <|.. StatisticsDisplay
DiplayElement <|.. ForecastDisplay
DiplayElement <|... ThirdpartyDisplay
WeatherData <-- CurrentConditionsDisplay
@enduml |
f03dfe79898fd153125690226eb7f493d288f6c2 | 4a45879f3faebefebb27fad5b61b398bf87217f9 | /dubbo-remoting/dubbo-remoting-zookeeper/src/main/java/com/alibaba/dubbo/remoting/zookeeper/uml/zktransporter.puml | 9d19a16d4aa131b7974c3794fd5fadc8532bacb2 | [
"Apache-2.0"
] | permissive | zhaojigang/dubbo-notes | eda9f2ad21af5665f80382cca0af515d5c038b52 | 51816c8349a073c7801268898a5895f2124ce6ba | refs/heads/2.6.x | 2022-09-23T02:31:48.859625 | 2019-08-15T06:46:39 | 2019-08-15T06:46:46 | 194,365,385 | 3 | 2 | Apache-2.0 | 2022-09-15T03:37:28 | 2019-06-29T04:48:15 | Java | UTF-8 | PlantUML | false | false | 314 | puml | @startuml
interface ZookeeperTransporter {
+ ZookeeperClient connect(URL url)
}
class CuratorZookeeperTransporter implements ZookeeperTransporter {
+ ZookeeperClient connect(URL url)
}
class ZkclientZookeeperTransporter implements ZookeeperTransporter {
+ ZookeeperClient connect(URL url)
}
@enduml |
835871ff68572ff0f17aba674384324a5482b3d5 | 740ec837551b09f09677854163ecd30ba6ea3cb7 | /documents/sd/plantuml/application/Core/MORR/Data/Capture/Video/Exceptions/VideoCaptureException.puml | 52220c23e481ced501918af342348ef27dfa26c1 | [
"MIT"
] | permissive | insightmind/MORR | 913c0c16d14745cbde40af07322ca339a0373f32 | 0830f2155fb3b32dc127587e07cbd780deb0e118 | refs/heads/develop | 2020-12-08T00:23:17.488431 | 2020-04-05T20:50:44 | 2020-04-05T20:50:44 | 232,827,908 | 5 | 1 | MIT | 2020-04-05T20:55:27 | 2020-01-09T14:28:48 | HTML | UTF-8 | PlantUML | false | false | 394 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
!startsub default
class VideoCaptureException {
+ <<create>> VideoCaptureException()
+ <<create>> VideoCaptureException(message: string)
+ <<create>> VideoCaptureException(message: string, innerException: Exception)
}
!endsub
CaptureException <|-- VideoCaptureException
Exception <|-- CaptureException
@enduml
|
4084c55f14ab9d6171c8d12cb73acec43b0e425d | 939ec2212f87c1894d792e169fce964bec902583 | /docs/Solution/Application-Stack/Logical.puml | 714cdacfe1f73561a02d37462a0eae9aca5561b9 | [] | no_license | CAADE/fleet | 37e18246e0a10122a711efccdab3c134232d120e | a62d2a82a2100583d84e41ea21efda9512fc4ac7 | refs/heads/master | 2020-03-22T00:31:19.695430 | 2018-07-13T03:27:19 | 2018-07-13T03:27:19 | 139,250,021 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 746 | puml | @startuml
package "Cloud Stack" #aaffff {
class "CloudResource" {
}
}
package "Application Stack" #dddddd {
interface "Application Stack" {
app
service
instance
create()
update()
destroy()
list()
}
CLI ()-- "Application Stack"
REST ()-- "Application Stack"
Web ()-- "Application Stack"
class Application {
string name
}
class Service {
string name
string type
}
class ServiceInstance {
string name
}
"Application Stack" ..> Application
Application "n" *- "m" Service : services
Service "1" *-- "*" ServiceInstance : instances
Service "1" *- "*" Service : links
ServiceInstance "i" o- "j" CloudResource : resources
}
@enduml
|
bc4f11a9c0eb1131ecc9ba4098393feb1a60cb21 | 54f0570710d72445f30bc8261595126edc5b67ca | /SQLite 10/handin/app_views_add.py.puml | 9bd1c27f7c01b2f8a5983b0e9663cd691ac23865 | [] | no_license | deadbok/eal_programming | cab8fc7145b5115f887a7b10aad90880a799d118 | 33bf532b397f21290d6f85631466d90964aab4ad | refs/heads/master | 2021-01-13T15:11:19.276462 | 2017-06-13T09:20:51 | 2017-06-13T09:20:51 | 76,203,290 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 225 | puml | @startuml
skinparam monochrome true
skinparam classAttributeIconSize 0
scale 2
namespace app {
namespace views {
class Add {
+methods
+get()
+post()
}
}
}
@enduml |
20b7d2d1c3eaa3dc0dbe7fca7415924179c59977 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/treeview/Snapping/ISnappable.puml | 489aa5ab6a85dd372fbc1af9191cd020be552305 | [] | 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 | 291 | puml | @startuml
class Edge <<struct>> {
+ time : double <<get>> <<set>>
+ showSnapHint : bool <<get>> <<set>>
+ Edge(edgeTime:double, snapHint:bool)
}
interface ISnappable {
SnappableEdgesFor(attractable:IAttractable, manipulateEdges:ManipulateEdges) : IEnumerable<Edge>
}
@enduml
|
8098b1f4696d87c45881ce3515d28b58e105a2ee | 618414d7666e67b9535ebd975e1de61e9c01e095 | /QLSV/app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/recyclerview/recyclerview.plantuml | eb0d243092663db33db8500dbdf034698c493da7 | [] | no_license | h2312/Do-an-TTLTA-03-TIN230DV01-0100 | a0792724add3844de35d48a2bd87d3eeb8de8a93 | e9f01e84b45042bd6192333842fb80feabb74707 | refs/heads/master | 2022-06-30T21:56:05.032422 | 2020-04-25T10:33:44 | 2020-04-25T10:33:44 | 258,747,594 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 11,037 | plantuml | @startuml
title __RECYCLERVIEW's Class Diagram__\n
package android.support.v7.recyclerview {
class R {
- R()
}
}
package android.support.v7.recyclerview {
class attr {
{static} + alpha : int
{static} + coordinatorLayoutStyle : int
{static} + fastScrollEnabled : int
{static} + fastScrollHorizontalThumbDrawable : int
{static} + fastScrollHorizontalTrackDrawable : int
{static} + fastScrollVerticalThumbDrawable : int
{static} + fastScrollVerticalTrackDrawable : int
{static} + font : int
{static} + fontProviderAuthority : int
{static} + fontProviderCerts : int
{static} + fontProviderFetchStrategy : int
{static} + fontProviderFetchTimeout : int
{static} + fontProviderPackage : int
{static} + fontProviderQuery : int
{static} + fontStyle : int
{static} + fontVariationSettings : int
{static} + fontWeight : int
{static} + keylines : int
{static} + layoutManager : int
{static} + layout_anchor : int
{static} + layout_anchorGravity : int
{static} + layout_behavior : int
{static} + layout_dodgeInsetEdges : int
{static} + layout_insetEdge : int
{static} + layout_keyline : int
{static} + reverseLayout : int
{static} + spanCount : int
{static} + stackFromEnd : int
{static} + statusBarBackground : int
{static} + ttcIndex : int
- attr()
}
}
package android.support.v7.recyclerview {
class color {
{static} + notification_action_color_filter : int
{static} + notification_icon_bg_color : int
{static} + ripple_material_light : int
{static} + secondary_text_default_material_light : int
- color()
}
}
package android.support.v7.recyclerview {
class dimen {
{static} + compat_button_inset_horizontal_material : int
{static} + compat_button_inset_vertical_material : int
{static} + compat_button_padding_horizontal_material : int
{static} + compat_button_padding_vertical_material : int
{static} + compat_control_corner_material : int
{static} + compat_notification_large_icon_max_height : int
{static} + compat_notification_large_icon_max_width : int
{static} + fastscroll_default_thickness : int
{static} + fastscroll_margin : int
{static} + fastscroll_minimum_range : int
{static} + item_touch_helper_max_drag_scroll_per_frame : int
{static} + item_touch_helper_swipe_escape_max_velocity : int
{static} + item_touch_helper_swipe_escape_velocity : int
{static} + notification_action_icon_size : int
{static} + notification_action_text_size : int
{static} + notification_big_circle_margin : int
{static} + notification_content_margin_start : int
{static} + notification_large_icon_height : int
{static} + notification_large_icon_width : int
{static} + notification_main_column_padding_top : int
{static} + notification_media_narrow_margin : int
{static} + notification_right_icon_size : int
{static} + notification_right_side_padding_top : int
{static} + notification_small_icon_background_padding : int
{static} + notification_small_icon_size_as_large : int
{static} + notification_subtext_size : int
{static} + notification_top_pad : int
{static} + notification_top_pad_large_text : int
- dimen()
}
}
package android.support.v7.recyclerview {
class drawable {
{static} + notification_action_background : int
{static} + notification_bg : int
{static} + notification_bg_low : int
{static} + notification_bg_low_normal : int
{static} + notification_bg_low_pressed : int
{static} + notification_bg_normal : int
{static} + notification_bg_normal_pressed : int
{static} + notification_icon_background : int
{static} + notification_template_icon_bg : int
{static} + notification_template_icon_low_bg : int
{static} + notification_tile_bg : int
{static} + notify_panel_notification_icon_bg : int
- drawable()
}
}
package android.support.v7.recyclerview {
class id {
{static} + action_container : int
{static} + action_divider : int
{static} + action_image : int
{static} + action_text : int
{static} + actions : int
{static} + async : int
{static} + blocking : int
{static} + bottom : int
{static} + chronometer : int
{static} + end : int
{static} + forever : int
{static} + icon : int
{static} + icon_group : int
{static} + info : int
{static} + italic : int
{static} + item_touch_helper_previous_elevation : int
{static} + left : int
{static} + line1 : int
{static} + line3 : int
{static} + none : int
{static} + normal : int
{static} + notification_background : int
{static} + notification_main_column : int
{static} + notification_main_column_container : int
{static} + right : int
{static} + right_icon : int
{static} + right_side : int
{static} + start : int
{static} + tag_transition_group : int
{static} + tag_unhandled_key_event_manager : int
{static} + tag_unhandled_key_listeners : int
{static} + text : int
{static} + text2 : int
{static} + time : int
{static} + title : int
{static} + top : int
- id()
}
}
package android.support.v7.recyclerview {
class integer {
{static} + status_bar_notification_info_maxnum : int
- integer()
}
}
package android.support.v7.recyclerview {
class layout {
{static} + notification_action : int
{static} + notification_action_tombstone : int
{static} + notification_template_custom_big : int
{static} + notification_template_icon_group : int
{static} + notification_template_part_chronometer : int
{static} + notification_template_part_time : int
- layout()
}
}
package android.support.v7.recyclerview {
class string {
{static} + status_bar_notification_info_overflow : int
- string()
}
}
package android.support.v7.recyclerview {
class style {
{static} + TextAppearance_Compat_Notification : int
{static} + TextAppearance_Compat_Notification_Info : int
{static} + TextAppearance_Compat_Notification_Line2 : int
{static} + TextAppearance_Compat_Notification_Time : int
{static} + TextAppearance_Compat_Notification_Title : int
{static} + Widget_Compat_NotificationActionContainer : int
{static} + Widget_Compat_NotificationActionText : int
{static} + Widget_Support_CoordinatorLayout : int
- style()
}
}
package android.support.v7.recyclerview {
class styleable {
{static} + ColorStateListItem : int[]
{static} + ColorStateListItem_android_color : int
{static} + ColorStateListItem_android_alpha : int
{static} + ColorStateListItem_alpha : int
{static} + CoordinatorLayout : int[]
{static} + CoordinatorLayout_keylines : int
{static} + CoordinatorLayout_statusBarBackground : int
{static} + CoordinatorLayout_Layout : int[]
{static} + CoordinatorLayout_Layout_android_layout_gravity : int
{static} + CoordinatorLayout_Layout_layout_anchor : int
{static} + CoordinatorLayout_Layout_layout_anchorGravity : int
{static} + CoordinatorLayout_Layout_layout_behavior : int
{static} + CoordinatorLayout_Layout_layout_dodgeInsetEdges : int
{static} + CoordinatorLayout_Layout_layout_insetEdge : int
{static} + CoordinatorLayout_Layout_layout_keyline : int
{static} + FontFamily : int[]
{static} + FontFamily_fontProviderAuthority : int
{static} + FontFamily_fontProviderCerts : int
{static} + FontFamily_fontProviderFetchStrategy : int
{static} + FontFamily_fontProviderFetchTimeout : int
{static} + FontFamily_fontProviderPackage : int
{static} + FontFamily_fontProviderQuery : int
{static} + FontFamilyFont : int[]
{static} + FontFamilyFont_android_font : int
{static} + FontFamilyFont_android_fontWeight : int
{static} + FontFamilyFont_android_fontStyle : int
{static} + FontFamilyFont_android_ttcIndex : int
{static} + FontFamilyFont_android_fontVariationSettings : int
{static} + FontFamilyFont_font : int
{static} + FontFamilyFont_fontStyle : int
{static} + FontFamilyFont_fontVariationSettings : int
{static} + FontFamilyFont_fontWeight : int
{static} + FontFamilyFont_ttcIndex : int
{static} + GradientColor : int[]
{static} + GradientColor_android_startColor : int
{static} + GradientColor_android_endColor : int
{static} + GradientColor_android_type : int
{static} + GradientColor_android_centerX : int
{static} + GradientColor_android_centerY : int
{static} + GradientColor_android_gradientRadius : int
{static} + GradientColor_android_tileMode : int
{static} + GradientColor_android_centerColor : int
{static} + GradientColor_android_startX : int
{static} + GradientColor_android_startY : int
{static} + GradientColor_android_endX : int
{static} + GradientColor_android_endY : int
{static} + GradientColorItem : int[]
{static} + GradientColorItem_android_color : int
{static} + GradientColorItem_android_offset : int
{static} + RecyclerView : int[]
{static} + RecyclerView_android_orientation : int
{static} + RecyclerView_android_descendantFocusability : int
{static} + RecyclerView_fastScrollEnabled : int
{static} + RecyclerView_fastScrollHorizontalThumbDrawable : int
{static} + RecyclerView_fastScrollHorizontalTrackDrawable : int
{static} + RecyclerView_fastScrollVerticalThumbDrawable : int
{static} + RecyclerView_fastScrollVerticalTrackDrawable : int
{static} + RecyclerView_layoutManager : int
{static} + RecyclerView_reverseLayout : int
{static} + RecyclerView_spanCount : int
{static} + RecyclerView_stackFromEnd : int
- styleable()
}
}
R +-down- attr
R +-down- color
R +-down- dimen
R +-down- drawable
R +-down- id
R +-down- integer
R +-down- layout
R +-down- string
R +-down- style
R +-down- styleable
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
|
7365cb0a17070fd2be93ef785783eaade91a9137 | 1e8e276f82725db04b0f5d44c23200050da2a8bc | /design/db.001.plantuml | 7b82b4728e7b9022988c44bd7b633c414c2971e7 | [] | no_license | arduino-playground-xyz/goback | 3a1886d85597b455f4f3687a82e0544a95c5b4df | b0692842e85b31e0c9ccf2b768b4bbda96ccbe9a | refs/heads/master | 2023-04-30T05:26:42.068744 | 2021-05-15T18:14:04 | 2021-05-15T18:14:04 | 336,603,298 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,300 | plantuml | @startuml
hide circle
title Terentiy - Database schema
class board {
+INT id
+VARHCAR secure_id
+VARCHAR alias
+ENUM type
UNIQUE() INDEX ON secure_id ASC
}
class incubator {
+INT id
+INT board_id
+TINYINY is_active
+VARCHAR alias
+INT measurement_interval
}
class output_device_model {
+INT id
+ENUM type
+VARCHAR model
}
class output_device {
+INT id
+INT incubator_id
+INT device_model_id
+VARCHAR pin
+VARCHAR meta
}
class input_device_model {
+INT id
+ENUM type
+VARCHAR model
}
class input_device {
+INT id
+INT incubator_id
+INT device_model_id
+VARCHAR pin
+VARCHAR meta
}
class decision {
+INT id
+ENUM type
+INT incubator_id
+INT output_device_id null
}
class action {
+INT id
+INT decision_id
+TIMESTAMP created
+INT duration
+INT value
+VARCHAR reason
+VARCHAR timeseries_query
}
class action_state {
+INT action_id
+TIMESTAMP started null
+TIMESTAMP finished null
}
board "1" *-up- "many" incubator
action "1" *-up- "0..1" action_state
input_device_model "1" *-up- "many" input_device
output_device_model "1" *-up- "many" output_device
decision "1" *-up- "many" action
incubator "1" *-up- "many" decision
incubator "1" *-up- "many" input_device
incubator "1" *-up- "many" output_device
@enduml |
d308dde7755f5a7ff10de0ad40e17aaeba37801c | 176fa7e597c2f2337f80a9d4e393e636e5823129 | /stocky-devel/stocky/docs/source/uml_images/classes_Taskmeister_classes.plantuml | ce06f1a259b631e7a5aad52ec32cc3a90b93e9e7 | [
"Apache-2.0"
] | permissive | cfe-lab/stocky | 0133abf16bbf068d8ef3684af4d7b22e96756e37 | 6c4114551d9b61c5ba3db2c237e995fecdd2f6b3 | refs/heads/master | 2021-04-15T17:01:15.610547 | 2019-04-08T18:51:52 | 2019-04-08T18:51:52 | 126,519,914 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,308 | plantuml | @startuml
title classes Taskmeister
class LoggingMixin {
+is_verbose(self)
}
class DelayTaskMeister {
+msg_q
+msg_tosend
+trigger(self)
}
class DaemonTaskMeister {
+STATUS_COMMAND_FAILED
+STATUS_COMPLETED
+STATUS_CONFIG_ERROR
+STATUS_RUNNING
+STATUS_STOPPED
+STATUS_UNDEF
+cmdlst
+cmdstr
+curstat
+do_run
+greenlet
+numchecks
+proc
+get_status(self)
+stop_and_restart_cmd(self)
+stop_cmd(self, do_wait:bool=False)
}
class BaseTaskMeister {
+msg_q
+generate_msg(self)
+set_active(self, is_active:bool)
}
class FileChecker {
+file_exists(self)
+generate_msg(self)
}
class RandomGenerator {
+generate_msg(self)
}
class TickGenerator {
+msgid
+generate_msg(self)
}
class CommandListGenerator {
+cmdlst
+nmsg
+generate_msg(self)
}
class WebSocketReader {
+ws
+generate_msg(self)
}
class RandomRFIDScanner {
+taglst
+generate_msg(self)
}
LoggingMixin <|-- DelayTaskMeister
LoggingMixin <|-- DaemonTaskMeister
LoggingMixin <|-- BaseTaskMeister
BaseTaskMeister <|-- FileChecker
BaseTaskMeister <|-- RandomGenerator
BaseTaskMeister <|-- TickGenerator
TickGenerator <|-- CommandListGenerator
BaseTaskMeister <|-- WebSocketReader
BaseTaskMeister <|-- RandomRFIDScanner
@enduml
|
0e01ff92130bdfb41e41b8f3069fa1b139172b02 | 1c2afbade580f305b0320101394cc74353b46b1f | /docs/source/diagrams/from_thesis/class_diagram/extractors.puml | e30ec8a7be71fee5d0f024911567884329654bba | [
"MIT"
] | permissive | Breaka84/Spooq | 90ebc064f7f3a830eddc30f6710294f1d3cfb667 | 2a624b3f0e5728725dd98064ed1c7fecb5910921 | refs/heads/master | 2023-07-26T01:32:56.953806 | 2023-02-17T16:12:05 | 2023-02-17T16:12:05 | 249,298,485 | 9 | 1 | MIT | 2023-07-25T21:17:39 | 2020-03-23T00:20:43 | Python | UTF-8 | PlantUML | false | false | 1,228 | puml | @startuml
skinparam monochrome true
skinparam defaultFontname Bitstream Vera Sans Mono
skinparam defaultFontSize 18
' left to right direction
' namespace spooq {
namespace extractor {
class Extractor {
.. derived ..
name : str
logger : logging.logger
__
extract()
}
Extractor <|-- JSONExtractor
class JSONExtractor{
input_path : str
base_path : str
partition : str
.. derived ..
spark : SparkSession
__
extract()
}
Extractor <|-- JDBCExtractor
class JDBCExtractor{
jdbc_options : dict
cache : bool = True
.. derived ..
spark : SparkSession
__
extract()
}
JDBCExtractor <|-- JDBCExtractorFullLoad
class JDBCExtractorFullLoad {
query : str
__
extract()
}
JDBCExtractor <|-- JDBCExtractorIncremental
class JDBCExtractorIncremental {
partition : str
source_table : str
spooq_values_table : str
spooq_values_db : str = "spooq_values"
spooq_values_partition_column : str = "updated_at"
__
extract()
}
}
' }
@enduml
|
ed3811866aa8b721c342bdc1cf7fc20054c14a52 | c6ec0691eaf88515667980a8c65e233d22cef417 | /builder-excercise/builder-classes.puml | 8f615ba74b95091b4673b9ebd512ffb2d2d71dd6 | [] | no_license | rvazquezglez/design-patterns-workshop | 220bf24c011996f28f914199044640e484fab3d4 | 2c063e92b3e91e1552ec71156c04f575cd6961ee | refs/heads/master | 2021-07-18T10:15:26.946313 | 2021-07-15T04:16:10 | 2021-07-15T04:16:10 | 49,338,908 | 4 | 5 | null | null | null | null | UTF-8 | PlantUML | false | false | 356 | puml | @startuml
interface Builder{
+buildPart1()
+buildPart2()
+buildPart3()
}
class ConcreteBuilder{
+buildPart1()
+buildPart2()
+buildPart3()
+getResult()
}
class Director {
+Builder builder
+construct()
}
note left: this.builder.buildPart1().buildPart2()
Builder <|-- ConcreteBuilder
Director *-right- Builder
ConcreteBuilder .left.> Product : creates
@enduml |
576301a34eecbb08a1fd110eadd61b06c8e74bb9 | 7e6fa61a8595cd38195713b5c7698f5de6f7c7b3 | /base/036/diagrama.puml | 58f46016e61db66b91c45107878336b4918d0e6e | [] | no_license | qxcodepoo/arcade | 3ff1852792a47584f00c1ab9fd5011ebb2c4b830 | 3722a8c976a51829b2b6f4913360c23bf114433a | refs/heads/master | 2023-08-31T04:07:06.255292 | 2023-08-25T03:16:42 | 2023-08-25T03:16:42 | 217,410,955 | 36 | 42 | null | 2020-09-24T13:22:18 | 2019-10-24T23:12:40 | C++ | UTF-8 | PlantUML | false | false | 1,217 | puml | '--
@startuml
skinparam defaultFontName Hasklig
skinparam dpi 150
'==
class Time {
- hour : int
- minute : int
- second : int
__
' inicializa os atributos todos para 0
' invoca os métodos setHour, setMinute e setSecond
' para tentar atribuir valores válidos
+ Time(hour : int, minute : int, second : int)
' retorna string no formato hh:mm:ss
+ toString() : string
__
' apenas retorna o valor dos atributos
+ getHour() : int
+ getMinute() : int
+ getSecond() : int
__
' se valor for válido
' atribui ao atributo hour
' emite erro se for inválido
+ setHour (value : int)
' se valor for válido
' atribui ao atributo minute
' emite erro se for inválido
+ setMinute(value : int)
' se valor for válido
' atribui ao atributo second
' emite erro se for inválido
+ setSecond(value : int)
__
' incrementa o atributo second em um segundo
' então, se necessário, incrementa o atributo minute
' e, se necessário, incrementa o atributo hour
+ nextSecond()
}
class Legenda {
+ atributoPublic
- atributoPrivate
# atributoProtected
__
+ métodoPublic()
- métodoPrivate()
# métodoProtected()
}
'--
@enduml |
ae2ccdc17ed789a25be685f47e09784e520936ec | 5124b2dbc6276b681910d5584179a02ddc345669 | /documentation/uml/class/StaffService.puml | db2e936c9df403633cecaae96bbe03f443ceca0d | [] | no_license | Dedda/paintball | 258257ce2b0b6160abe4a9dbbbf7c7a658416d5b | fb18cf11e2fc3f7eca7e0d26a2847743b560dc2f | refs/heads/master | 2020-12-30T09:58:02.507682 | 2015-06-16T17:22:59 | 2015-06-16T17:22:59 | 30,232,508 | 1 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 197 | puml | @startuml
class hotel.entity.StaffService {
- staff : int
- service : int
+ getStaff() : int
+ setStaff(int) : void
+ getService() : int
+ setService(int) : void
}
@enduml |
bc7e2b9412171aec39f03cbf157b4776bcfec64a | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Common.Contracts/AsyncEventTypes.puml | f3dec9fb0bb2a0cb91ee892c802fc616f1c7468e | [
"BSD-3-Clause"
] | permissive | noelmartens/TransitionAcademy | 4e02379d234aa4859a497ee2846420f4c55b9e12 | 3b95a5c737ab7b1497b77d455cf64caa73f69e1f | refs/heads/master | 2023-06-14T05:25:35.514249 | 2021-07-02T19:40:29 | 2021-07-02T19:40:29 | 362,512,351 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 88 | puml | @startuml
enum AsyncEventTypes {
OrderSubmitted= 0,
OrderShipped= 10,
}
@enduml
|
e32187b90f987cffdb18c2ef4fb88f188218fd9d | dcca4c0aa19e3085bd37640a52b07fa02396b1d8 | /2.Creational Design Patterns/3.Singleton/docs/diagram/Singleton.puml | 3c09fc16941b5c06dbf0ecd144f1a8817d26f771 | [] | no_license | drronidz/design-patterns-java-maven | 8df24c5bdd021dd45018faf3937b767609e880eb | aa580cd4cc6caa25a418a71bd5af06f86bd354a6 | refs/heads/main | 2023-07-15T15:26:04.451482 | 2021-08-25T23:45:35 | 2021-08-25T23:45:35 | 392,855,046 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 422 | puml | @startuml
'https://plantuml.com/class-diagram
skinparam class {
BackgroundColor white
BorderColor black
ArrowColor black
}
skinparam note {
BackgroundColor lightgrey
BorderColor black
}
class Singleton {
-{static} "instance"
-SingletonData
+{static} getInstance()
+SingletonOperation()
+getSingletonData()
}
note as NoteOne
return instance
end note
NoteOne .. Singleton
@enduml |
5c1d46df067e66e1931dbe74ec694b17e2ec778e | e15413bf56f8405e3f54556efac8d9dcf70863cb | /Wasteless-app/wasteless-server/src/main/java/wasteless/server/diagrams/presentation.plantuml | 131e8d6be61f34b1e706bd4f46f96a47da7dc5ea | [] | no_license | sd-2020-30431/assignment-2-cezarasabou | 901d0b605ac3cd374eff28f958ab845f9d5f829c | f3bfda99dad3f12326b9ff1cc41d2fbfb12b9d38 | refs/heads/master | 2023-01-14T01:25:19.393086 | 2020-04-18T15:47:19 | 2020-04-18T15:47:19 | 249,999,198 | 0 | 0 | null | 2023-01-07T17:08:31 | 2020-03-25T14:21:57 | Java | UTF-8 | PlantUML | false | false | 2,468 | plantuml | @startuml
!define DARKORANGE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
title __PRESENTATION's Class Diagram__\n
namespace wasteless.server {
namespace presentation {
class wasteless.server.presentation.GroceryListController {
+ GroceryListController()
+ calculateWaste()
+ createGroceryList()
+ deleteGroceryList()
+ generateJsonReport()
+ generateTextReport()
+ getAllGroceryLists()
+ getGroceryListById()
+ updateGroceryList()
}
class wasteless.server.presentation.NotificationController {
- template : SimpMessagingTemplate
+ onReceivedMessage()
+ propertyChange()
+ subscribeToWasterService()
~ NotificationController()
}
}
namespace business {
class wasteless.server.business.GroceryListService {
+ GroceryListService()
+ createGroceryList()
+ deleteGroceryList()
+ getAllGroceryLists()
+ getGroceryListById()
+ updateGroceryList()
}
class wasteless.server.business.WasteManagerService {
- support : PropertyChangeSupport
+ WasteManagerService()
+ addPropertyChangeListener()
+ computeWasteDTO()
+ notifyWasteLevels()
+ removePropertyChangeListener()
- getTotalCalories()
}
}
}
wasteless.server.business.WasteManagerService o-- wasteless.server.business.GroceryListService : groceryListService
wasteless.server.presentation.GroceryListController o-- wasteless.server.business.GroceryListService : groceryListService
wasteless.server.presentation.GroceryListController o-- wasteless.server.business.WasteManagerService : wasteManagerService
wasteless.server.presentation.NotificationController .up.|> java.beans.PropertyChangeListener
wasteless.server.presentation.NotificationController o-- wasteless.server.business.WasteManagerService : wasteManagerService
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
|
72ee05e28fad70f3e9c72740b1981a31f11691a8 | c0f03f19e6eb92a6af7aa8408a032d52484529b3 | /docs/exercise42.puml | b8a2c89027c3dca72482bc66d5972bcff57f0c05 | [] | no_license | milobzb/Botros-Java-Practice-Exercises | 6497667a843edd3bc5d3eb488581b41786424a8a | 20b3d741e3b0e2c876d2e32823a59cd96aaca56b | refs/heads/master | 2023-07-04T12:37:36.401362 | 2021-07-27T03:41:55 | 2021-07-27T03:41:55 | 389,837,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 351 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
+main(args: String[]): void
}
class FileUtility {
+parseFile(fileName: String): String
}
class File
class FileNotFoundException
class Scanner
App ..>FileUtility
FileUtility ..> Scanner
FileUtility ..> FileNotFoundException
FileUtility ..> File
FileNotFoundException ..> Exception
@enduml |
21547e3508bc9be6dfa440903ccaa406559ec11b | d3f921b9e488b1d7e2fa86d01a2e6855219b1d05 | /fdv.key.access/fdv.key.access.plantuml | e97d5d94526dede99a0a87acb6b732bf05cc37cd | [
"Apache-2.0"
] | permissive | gematik/ref-ePA-FdV-Modul | d50e244d781702b95a9a31dc4efee09765546d79 | 2c6aba13f01c4fb959424342a5fa8ce1660ffad4 | refs/heads/master | 2022-01-19T20:31:23.703274 | 2022-01-07T07:24:03 | 2022-01-07T07:24:03 | 239,501,237 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 149 | plantuml | @startuml
namespace de.gematik.ti.epa.fdv.key.access.control {
class de.gematik.ti.epa.fdv.key.access.control.DummyClass {
}
}
@enduml
|
3ea828e68195008ae1437674ab53c6e9df4e88c5 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ClassificationShippingRateInput.puml | 896d9d3be0902052d7d13d9d27239b4b6dc9b3a5 | [] | 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 | 494 | 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 ClassificationShippingRateInput [[ClassificationShippingRateInput.svg]] extends ShippingRateInput {
type: String
key: String
label: [[LocalizedString.svg LocalizedString]]
}
interface ShippingRateInput [[ShippingRateInput.svg]] {
type: String
}
@enduml
|
70c9893d1b1d904fbbcc153480b7913eb0f43ed8 | 84928bc4e24e240e4369015f2f4d305348ec64b9 | /FastBleLib/src/main/java/com/clj/fastble/utils/utils.plantuml | a476f0fa1bba81a9188fbf35998d9deecceb5407 | [] | no_license | xupingao/BleLbs | 35065b50d0f43eedc7a5faa00e06c80f8ad3ae52 | 19f110e9ce29282a4a385532a1fc3cd2d922f37f | refs/heads/master | 2022-11-18T04:52:16.033609 | 2020-07-19T12:50:24 | 2020-07-19T12:50:24 | 278,265,696 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,507 | plantuml | @startuml
title __UTILS's Class Diagram__\n
namespace com.clj.fastble {
namespace utils {
class com.clj.fastble.utils.BleLog {
{static} + isPrint : boolean
{static} - defaultTag : String
{static} + d()
{static} + e()
{static} + i()
{static} + w()
}
}
}
namespace com.clj.fastble {
namespace utils {
class com.clj.fastble.utils.BleLruHashMap {
- MAX_SIZE : int
+ BleLruHashMap()
+ toString()
# removeEldestEntry()
}
}
}
namespace com.clj.fastble {
namespace utils {
class com.clj.fastble.utils.HexUtil {
{static} - DIGITS_LOWER : char[]
{static} - DIGITS_UPPER : char[]
{static} + charToByte()
{static} + decodeHex()
{static} + encodeHex()
{static} + encodeHex()
{static} + encodeHexStr()
{static} + encodeHexStr()
{static} + extractData()
{static} + formatHexString()
{static} + formatHexString()
{static} + hexStringToBytes()
{static} # encodeHex()
{static} # encodeHexStr()
{static} # toDigit()
}
}
}
com.clj.fastble.utils.BleLruHashMap -up-|> java.util.LinkedHashMap
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
|
111354ac4dde0e9e232b44872dcf4615d9eaa9f5 | 63d05a2d8db31272352bb47eaf1981b74093b719 | /uml/db/models/l3.puml | 9d49aedf3d1794fe307eab9bf5de408f2aa1b145 | [
"Apache-2.0"
] | permissive | ChaosXu/dragonflow | b0635a237ed48d9741c1bb4d5ebbc17a5f5d815c | e497928bc34269bcecc7ea4488f22b5c98b972dc | refs/heads/master | 2020-05-05T09:33:07.999625 | 2019-04-25T11:07:00 | 2019-04-25T11:07:00 | 179,908,580 | 0 | 0 | null | 2019-04-07T02:18:32 | 2019-04-07T02:18:32 | null | UTF-8 | PlantUML | false | false | 490 | puml | @startuml l3
class LogicalRouter {
ports LogicalRouterPort[]
routes HostRoute[]
}
class LogicalRouterPort {
mac string
lswitch LogicalSwitch
network IpNetowrk
}
class FloatingIp {
floating_ip_address IpAddress
fixed_ip_address IpAddress
lport LogicalPort
floating_lport LogicalPort
lrouter LogicaRouter
}
class HostRoute {
destionation IpNetwork required
nexthop IpAddress required
}
class LogicalPort {
}
LogicalRouter*-->HostRoute
@enduml |
2eac1756156c03c8eb0aa6a4a5e7f3e9d7187258 | dceede6e0ffcfdf6fbb800429d0233eb108fb71b | /src/main/java/DesignPatterns/BehavioralType/ChainOfResponsibility/ChainOfResponsibility.puml | 295bf36e7e5e9cb293c5b703172602a866705616 | [] | no_license | GitHub-yuteng/LearningNotes | 543ccda372e0d4498eba9245848059f64b3966c9 | 7a37bc8a33190526fa0a6cca5376651ac434f8c4 | refs/heads/master | 2022-12-22T14:05:05.590359 | 2022-04-27T00:36:30 | 2022-04-27T00:36:30 | 200,153,900 | 2 | 0 | null | 2022-12-16T04:25:16 | 2019-08-02T02:53:39 | Java | UTF-8 | PlantUML | false | false | 756 | puml | @startuml
class PurchaseRequest {
private int type = 0;
private float price = 0.0f;
private int id = 0;
}
abstract class Approver {
Approver approver;
String name;
abstract void processRequest(PurchaseRequest purchaseRequest);
}
class DepartmentApprover extends Approver {
}
class CollegeApprover extends Approver {
}
class ViceSchoolMasterApprover extends Approver {
}
class SchoolMasterApprover extends Approver {
}
class Client {
PurchaseRequest purchaseRequest;
DepartmentApprover departmentApprover;
CollegeApprover collegeApprover;
ViceSchoolMasterApprover viceSchoolMasterApprover;
SchoolMasterApprover schoolMasterApprover;
}
Approver o-- Approver
PurchaseRequest <.. Client
Approver <.. Client
PurchaseRequest <.. Approver
@enduml |
e955218678ac4226261266c9100cded0141f2521 | be6f3c2838e9be8dce8f8ac10de1ce485d030eaa | /docs/internals/phpdocumentor3/components/template.puml | aac16f82239c4a6c705fe8f552d88bec32bf19c8 | [
"MIT"
] | permissive | zonuexe/phpDocumentor2-ja | 79718326856fba3945ea16ed26eb023b87c3c9fe | aa085f2f10878f0b856cb1d673b5784e115145f9 | refs/heads/doc/ja-translation | 2021-08-09T12:55:10.460481 | 2016-08-18T16:15:50 | 2016-08-18T16:15:50 | 65,297,906 | 0 | 1 | MIT | 2021-01-25T14:35:51 | 2016-08-09T13:38:24 | PHP | UTF-8 | PlantUML | false | false | 3,637 | puml | @startuml
namespace Renderer {
interface Action {
{static} create(Parameter[] $parameters) : Action
}
note left
use a static factory method
to instantiate it using the
parameters of the template
and action so that the
TemplateFactory can locate
the right action and apply
this Factory method
end note
interface ActionHandler {
__invoke(Action $action)
}
class ActionHandlerLocator {
+ locate(Action $action) : ActionHandler|null
}
class Template {
+ getName()
+ getParameters() : Parameter[]
+ getActions() : Action[]
}
class TemplateFactory {
+ create($options : string[]) : Template
}
note bottom
Important: the Factory
should merge the template
parameters into the
Action parameters when
creating Actions.
end note
class TemplateRepository {
+ fetch($name : string) : Template
+ fetchAllNative() : Template[]
}
namespace Template {
class Parameter {
+ getName()
+ getValue()
}
}
namespace Actions {
class Xml
class XmlHandler {
+ __invoke(Xml $action)
}
class Copy
class CopyHandler {
+ __invoke(Copy $action)
}
class Twig
class TwigHandler {
+ __invoke(Twig $action)
}
class Xsl
class XslHandler {
+ __invoke(Xsl $action)
}
class Checkstyle
class CheckstyleHandler {
+ __invoke(Checkstyle $action)
}
class ClassDiagram
class ClassDiagramHandler {
+ __invoke(ClassDiagram $action)
}
class Sourcecode
class SourcecodeHandler {
+ __invoke(Sourcecode $action)
}
}
.Renderer.Template "1" *--> "*" Action
.Renderer.Template "1" *-> "*" .Renderer.Template.Parameter
.Renderer.Template.Parameter "*" <--* "1" Action
TemplateRepository -- .Renderer.Template
TemplateFactory -- .Renderer.Template
TemplateRepository o-> TemplateFactory
Action --> ActionHandler : Uses Action to\nretrieve parameters\nwith which to run\nactions
Action --> ActionHandlerLocator : Uses Action to\nlocate handler
ActionHandlerLocator - ActionHandler : Returns handler\nto caller
ActionHandler --() Renderer
ActionHandlerLocator --() Renderer
Action <|. .Renderer.Actions.Xml
Action <|. .Renderer.Actions.Copy
Action <|. .Renderer.Actions.Twig
Action <|. .Renderer.Actions.Xsl
Action <|. .Renderer.Actions.ClassDiagram
Action <|. .Renderer.Actions.Checkstyle
Action <|. .Renderer.Actions.Sourcecode
ActionHandler <|. .Renderer.Actions.XmlHandler
ActionHandler <|. .Renderer.Actions.CopyHandler
ActionHandler <|. .Renderer.Actions.TwigHandler
ActionHandler <|. .Renderer.Actions.XslHandler
ActionHandler <|. .Renderer.Actions.CheckstyleHandler
ActionHandler <|. .Renderer.Actions.ClassDiagramHandler
ActionHandler <|. .Renderer.Actions.SourcecodeHandler
.Renderer.Actions.Xml -- .Renderer.Actions.XmlHandler
.Renderer.Actions.Copy -- .Renderer.Actions.CopyHandler
.Renderer.Actions.Twig -- .Renderer.Actions.TwigHandler
.Renderer.Actions.Xsl -- .Renderer.Actions.XslHandler
.Renderer.Actions.ClassDiagram -- .Renderer.Actions.ClassDiagramHandler
.Renderer.Actions.Checkstyle -- .Renderer.Actions.CheckstyleHandler
.Renderer.Actions.Sourcecode -- .Renderer.Actions.SourcecodeHandler
}
@enduml
|
f938934ea22fbf82f4a48f7f2b0243c38152ed44 | 1276f2077be141792b20be299d66bb9fa481b4e2 | /backend/src/main/java/at/jku/werewolf/io/lobbymanagement/lobbymanagement.plantuml | c4ae6f1a9b3b1fbc52183e3fb44036e2e81b7a30 | [] | no_license | bauerben00/werewolfio_final | ddba0e331bc04dfa25ea5adb71bd0230f3a7a076 | 6167c74b0df8909b4b82528fa45f39b66ad788f2 | refs/heads/master | 2023-03-17T22:45:09.162695 | 2021-03-14T14:13:57 | 2021-03-14T14:13:57 | 330,441,684 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,120 | plantuml | @startuml
title __LOBBYMANAGEMENT's Class Diagram__\n
namespace t.jku.werewolf.io {
namespace lobbymanagement {
class at.jku.werewolf.io.lobbymanagement.GameLobby {
+ gameRunning : boolean
~ discussiontime : int
~ lobbycode : String
~ votingtime : int
~ werewolves : int
- players : List<Player>
+ GameLobby()
+ GameLobby()
+ countAllAlive()
+ getDiscussiontime()
+ getLobbycode()
+ getPlayers()
+ getVotingtime()
+ getWerewolves()
+ isGameRunning()
+ listWerewolves()
+ setDiscussiontime()
+ setGameRunning()
+ setLobbycode()
+ setPlayers()
+ setVotingtime()
+ setWerewolves()
}
}
}
namespace t.jku.werewolf.io {
namespace lobbymanagement {
enum GameRole {
VILLAGER
WEREWOLF
}
}
}
namespace t.jku.werewolf.io {
namespace lobbymanagement {
class at.jku.werewolf.io.lobbymanagement.LobbyConfiguration {
~ discussiontime : int
~ votingtime : int
~ werewolves : int
+ LobbyConfiguration()
+ LobbyConfiguration()
+ getDiscussiontime()
+ getVotingtime()
+ getWerewolves()
+ setDiscussiontime()
+ setVotingtime()
+ setWerewolves()
}
}
}
namespace t.jku.werewolf.io {
namespace lobbymanagement {
class at.jku.werewolf.io.lobbymanagement.LobbyController {
- simpMessagingTemplate : SimpMessagingTemplate
+ LobbyController()
+ createLobby()
+ getLobbyInformation()
+ joinLobby()
+ startLobby()
- runGame()
}
}
}
namespace t.jku.werewolf.io {
namespace lobbymanagement {
interface at.jku.werewolf.io.lobbymanagement.LobbyRepository {
}
}
}
namespace t.jku.werewolf.io {
namespace lobbymanagement {
class at.jku.werewolf.io.lobbymanagement.Player {
~ countVoteForPlayer : int
~ dead : boolean
~ gotVotes : int
~ isHost : boolean
~ name : String
~ path : String
+ Player()
+ Player()
+ addVote()
+ getName()
+ getPath()
+ getRole()
+ getVotes()
+ isDead()
+ isHost()
+ resetVotes()
+ setDead()
+ setHost()
+ setName()
+ setPath()
+ setRole()
}
}
}
namespace t.jku.werewolf.io {
namespace lobbymanagement {
interface at.jku.werewolf.io.lobbymanagement.PlayerRepository {
}
}
}
namespace t.jku.werewolf.io {
namespace lobbymanagement {
class at.jku.werewolf.io.lobbymanagement.ReturnFromCreateLobby {
~ lobbycode : String
~ userName : String
+ ReturnFromCreateLobby()
+ ReturnFromCreateLobby()
+ getLobbycode()
+ getUserName()
+ setLobbycode()
+ setUserName()
}
}
}
at.jku.werewolf.io.lobbymanagement.GameLobby .up.|> java.io.Serializable
at.jku.werewolf.io.lobbymanagement.LobbyController o-- at.jku.werewolf.io.lobbymanagement.PlayerRepository : playerRepo
at.jku.werewolf.io.lobbymanagement.LobbyController o-- at.jku.werewolf.io.lobbymanagement.LobbyRepository : repo
at.jku.werewolf.io.lobbymanagement.Player .up.|> java.io.Serializable
at.jku.werewolf.io.lobbymanagement.Player o-- at.jku.werewolf.io.lobbymanagement.GameRole : role
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
|
1f323cda14d319c2131205cf174cdfac6b851849 | e90038263ff9bd8bc82d590a6af1c7160ae5d849 | /exercices/MachineACafe/diagramme_classes.puml | 07207a7c72e4cde7b2262b4c5e9ddb03446f703b | [] | no_license | AntoineArthurG/cours-genie-logiciel | e6c417865583e838c9adec8ab178c54226af7036 | c24f325a770648adfecef41323dee79078469ead | refs/heads/main | 2023-02-28T18:27:36.460272 | 2021-05-18T21:07:55 | 2021-05-18T21:07:55 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,018 | puml | @startuml
package monnayeur {
interface SpectreElectromagnetique {
}
class PieceData {
-poids: int
-diametre: float
}
PieceData -> SpectreElectromagnetique
enum Piece {
{static} DIX
{static} VINGT
{static} CINQUANTE
{static} CENT
{static} findPieceCorrespondante(PieceData): Optional<Piece>
-valeur: int
}
Piece --> PieceData
class Monnayeur {
-montantInsere: int
-stock: Map<Piece, int>
+rendreMonnaie()
+insererPiece(piece)
}
note right of Monnayeur::rendreMonnaie
Calcul les pièces à rendre si possible,
sinon PasAssezDePiecesException
end note
Monnayeur ..> Piece
class PasAssezDePiecesException <<Exception>> {}
Monnayeur ..> PasAssezDePiecesException
interface AnalyseurPiece {
+analyser(): Piece
}
Monnayeur --> AnalyseurPiece
}
package boisson {
enum Boisson {
{static} CAFE_LONG
{static} CAFE_COURT
{static} VERRE_EAU
-prix: int
-sucré: bool
}
enum Ingredient {
CAFE
EAU
SUCRE
GOBELET
TOUILLETTE
}
class Recette {
}
Boisson --> Recette
class IngredientRecette {
-doses: int
}
IngredientRecette --> Ingredient
Recette *--> "1..n" IngredientRecette
}
package distributeur {
class Distributeur {
-nbSucres: int
-unitesDistributions: Map<Ingredient, UniteDistribution>
-findUniteDistributionPout(Ingredient): UniteDistribution
-verifierMontant(Boisson)
+ajouterSucre(): void
+enleverSucre(): void
+commander(Boisson): void
+inserer(PieceData): void
+rendreMonnaie(): void
}
note right of Distributeur::nbSucres
Entre 0 et 5
end note
Distributeur ..> Boisson
Distributeur ..> PieceData
Distributeur --> Monnayeur
Distributeur ..> Ingredient
class UniteDistribution {
+UniteDistribution(Ingredient)
+distribuerUneDose()
}
Distributeur *--> "2..n" UniteDistribution
note "Un distributeur par ingrédient" as N1
Distributeur .. N1
N1 .. UniteDistribution
UniteDistribution --> "distribue" Ingredient
}
@enduml |
40152346fa0fd0b678fba571eef3a0d4bc721e62 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartSetCustomLineItemTaxRateAction.puml | 6d044246ba57eb2e32c8c8fc920a2d29f828617d | [] | 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 | 588 | 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 CartSetCustomLineItemTaxRateAction [[CartSetCustomLineItemTaxRateAction.svg]] extends CartUpdateAction {
action: String
customLineItemId: String
customLineItemKey: String
externalTaxRate: [[ExternalTaxRateDraft.svg ExternalTaxRateDraft]]
shippingKey: String
}
interface CartUpdateAction [[CartUpdateAction.svg]] {
action: String
}
@enduml
|
f11fe677f78e70d63ce8c2bbd11c208dd6837eb2 | 50a44f031ffae86ea9e89a8d4ad011984e29e0e5 | /PokerGame.plantuml | 6c617cac799fad560280d259f6fc726632d43989 | [] | no_license | nahtan11/PokerGame | bc721f6c8c8bab24f7b196024428af5a3d309e66 | cb54b4da27896c51961f54b98aeeee01574e2ff2 | refs/heads/master | 2020-09-03T16:03:19.902485 | 2019-11-26T23:28:01 | 2019-11-26T23:28:01 | 219,505,104 | 0 | 1 | null | 2019-11-26T23:03:51 | 2019-11-04T13:13:38 | Java | UTF-8 | PlantUML | false | false | 1,787 | plantuml | @startuml
title __POKERGAME's Class Diagram__\n
namespace output.Game {
class output.Game.EventContextObj {
}
}
namespace output.Game {
class output.Game.EventLoggingDispatcher {
}
}
namespace output.Game {
class output.Game.GameEventInterceptor {
}
}
namespace output.Game {
interface output.Game.IEventInterceptor {
}
}
namespace output.Game {
class output.Game.deckThings {
}
}
namespace output.Game {
class output.Game.fiveCard {
}
}
namespace output.Game {
class output.Game.playerDecisions {
}
}
namespace output.Game {
class output.Game.variables {
}
}
namespace output.Leaderboard {
class output.Leaderboard.Leaderboard {
}
}
namespace output.Main {
class output.Main.Main {
}
}
namespace output.Registry {
class output.Registry.Encryption {
}
}
namespace output.Registry {
interface output.Registry.ICheckUser {
}
}
namespace output.Registry {
class output.Registry.Login {
}
}
namespace output.Registry {
class output.Registry.Register {
}
}
namespace output.Registry {
class output.Registry.registryFactory {
}
}
output.Game.EventLoggingDispatcher .up.|> output.Game.IEventInterceptor
output.Game.GameEventInterceptor .up.|> output.Game.IEventInterceptor
output.Main.Main -up-|> javafx.application.Application
output.Registry.Login .up.|> output.Registry.ICheckUser
output.Registry.Register .up.|> output.Registry.ICheckUser
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
|
3330e516bcc272de14527ec3edc96de992e33f8e | abf0723c3044635cdc4da287d99d8757c11375fa | /src/com/yuuy/spring/app/app.plantuml | f57a231fcf9fb8c493a35c497a2a8edb479e5b07 | [] | no_license | YuuyWei/Learn-Java | 9be260ee521c935c08d88a85351840395d557c00 | 8b5c6781741d55d627d9eceda04ab5ccd1600ef8 | refs/heads/master | 2023-04-29T09:55:20.335076 | 2021-05-11T14:33:37 | 2021-05-11T14:33:37 | 364,447,572 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 451 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.yuuy.spring.app {
class com.yuuy.spring.app.AppConfig {
}
}
namespace com.yuuy.spring.app {
class com.yuuy.spring.app.Application {
{static} + main()
}
}
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
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.