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
2db2983fce8dbe9c7ddcccb36f2d156311eb2e0a
d2c96f969cd4a57d2fef25280205e11be26a64b4
/de.gematik.ti.utils/doc/plantuml/TIUTILS/primitives.plantuml
990ee6ffc699ac06d53eb9cda970d5a5e167b2a2
[ "Apache-2.0" ]
permissive
gematik/ref-Ti-Utils
cfe9a03769e801529bf652528828083f0cc767b1
be995beba79613c5242be9c5388952c7816782e5
refs/heads/master
2022-01-15T08:47:41.366276
2022-01-07T07:23:43
2022-01-07T07:23:43
232,986,325
1
0
null
null
null
null
UTF-8
PlantUML
false
false
417
plantuml
@startuml namespace de.gematik.ti.utils.primitives { class de.gematik.ti.utils.primitives.Bytes { {static} - LOG : Logger {static} - PAD : byte {static} + bigIntToByteArray() {static} + concatNullables() {static} + copyByteArray() {static} + padData() {static} + unPadData() # Bytes() } } @enduml
2e672e12b251f6f1bdec10d1e17951f78fe57614
8170950413b0f627360cb16a1712972232558681
/class-diagram.puml
6b1434aac581d5188b1a3bf7ebf9cde8f4cd5dce
[ "MIT" ]
permissive
furkan-tan/tryp
6c8f00ec8f4083c5f0887fe85b265f212922e607
740e0382e6157e2a5eedd03010a56c495002cb7c
refs/heads/main
2023-07-04T19:24:31.921867
2021-08-13T11:35:57
2021-08-13T11:35:57
382,844,424
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,033
puml
@startuml Tryp class Passenger <<Entity>>{ +id:String +name:String +surname:String +email:String +phone:Number +profilePicture:String +ratingHistory:Number[] +rating:Number +currentTrip:Trip +upcomingTrips:Trip[] +tripHistroy:Trip[] +cards:Card[] +bookTrip(Trip) +cancelTrip(Trip) +updateProfilePicture(String) +addCard(Card) +rateDriver(Driver) +printTripHistory() +printUpcomingTrips() +printCurrentTrip() } class Driver <<Entity>>{ +id:String +name:String +surname:String +email:String +phone:Number +profilePicture:String +drivingLicense:String +ratingHistory:Number[] +rating:Number +currentTrip:Trip +upcomingTrips:Trip[] +tripHistory:Trip[] +vehicles:Vehicle[] +addVehicle(Vehicle) +removeVehicle(Vehicle) +createTrip(Trip) +editTrip(Trip) +cancelTrip(Trip) +ratePassenger(Passenger) +startTrip(Trip) +completeTrip() +printTripHistory() +printUpcomingTrips() +printCurrentTrip() } class Vehicle <<Value Object>>{ +id:String +brand:String +model:String +year:Number +availableSeat:Number +availableSeat:Number } class Car <<Value Object>>{ } class Motorcycle <<Value Object>>{ } class Van <<Value Object>>{ } class Trip <<Entity>>{ +id:String +driver:Driver +vehicle:Vehicle +passengers:Passenger[] +createdAt:Date +tripDate:Date +from:String +destination:String +price:Number +status:TripStatus +print() } enum TripStatus{ +AVAILABLE +BOOKED +IN_PROGRESS +FINISHED +CANCELLED } class Card <<Value Object>>{ +name:String +cardNumber:Number +expirationMonth:Number +expirationYear:Number +cvv:Number +type:CardType } enum CardType{ +CREDIT_CARD +DEBIT_CARD +GIFT_CARD } Driver "1" *-- "many" Vehicle Passenger "1" *-- "many" Card Car -up-|> Vehicle Van -up-|> Vehicle Motorcycle -up-|> Vehicle @enduml
feb476a4db494e4f3d404bd4a1efed7697ab45cc
304a78f676c311b54190672c51530c87ce067b8d
/HW5/hw5ClassDiagram.puml
1876da883577f97420f2f7a232086588659fe7d7
[]
no_license
TurkerTercan/Data-Structures
eb21cd7a323bf1018108d676f589038de812a50d
18da9c73e2ba4171036c94ee1c9b14723efde95f
refs/heads/main
2023-06-10T21:54:51.984209
2021-07-05T20:49:44
2021-07-05T20:49:44
383,256,819
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,496
puml
@startuml interface DataInterface<E> { +isAlone() : boolean +increase() : +decrease() : +getValue() : int +getCount() : int } class AgeData { +age : int +people : int +isAlone() : boolean +increase() : +decrease() : +getValue() : int +getCount() : int +toString() : String } class BinaryTree<E>{ #root : Node<E> +getLeftSubtree() : BinaryTree<E> +getRightSubtree() : BinaryTree<E> +getData() : E +isLeaf() : boolean +toString() : String -preOrderTraverse(Node<E>, int, StringBuilder) : +{static}readBinaryTree(Scanner): BinaryTree<String> } class Node<E>{ #data : E #left : Node<E> #right : Node<E> +toString() : String } interface SearchTree{ +add(E) : boolean +contains(E) : boolean +find(E) : E +delete(E) : E +remove(E) : boolean } class BinarySearchTree<E extends Comparable<E>> { #addReturn : boolean #deleteReturn : E +add(E) : boolean -add(Node<E>, E) : Node<E> +contains(E) : boolean -contains(Node<E>, E) : boolean +find(E) : E -find(Node<E>, E) : E +delete(E) : E -delete(Node<E>, E) : Node<E> #findLargestChild(Node<E>) : E +remove(E) : boolean } class FileSystemTree{ #root : FileNode #removeScan : Scanner +addDir(String) : -addDir(String[], FileNode, int) : +addFile(String) : -addFile(String[], FileNode, int) : +toString() : String +printFileSystem() : -print(FileNode, StringBuilder, int) : +remove(String) : -remove(String[], FileNode, int) : -moveElements(FileNode, FileNode) : -removeElements(FileNode) : -search(FileNode, FileNode, String) : -printNode(FileNode, FileNode, ArrayList<String>) : } #class FileNode{ #data : String #nodes : FileNode[] #capacity : int #used : int #isFile : boolean +isFile() : boolean +hasCapacity() : boolean +resize() : +toString() : String +removeNode(int) : } class ExpressionTree{ -isPostFix : boolean -{static} OPERATORS : String +{static} readBinaryTree(Scanner) : BinaryTree<String> +{static} isOperator(char) : boolean -reverseString(String) : String +toString() : String +toString2() : String -preOrderTraverse(Node<String>, StringBuilder) : -postOrderTraverse(Node<String>, StringBuilder) : +eval() : int -operate(char, int, int) : int -evalPrefix(Node<String>) : int -{static} isNumber(String) : boolean -evalPostfix(Node<String>) : int } class SyntaxErrorException{ } class AgeSearchTree<E extends DataInterface>{ -isFound : boolean -size : int +add(E) : boolean -add(Node<E>, E) : Node<E> +delete(E) : E -delete(Node<E>, E) : Node<E> +remove(E) : boolean +youngerThan(int) : int -youngerThan(Node<E>, int) : int -countChildren(Node<E>) : int +olderThan(int) : int +toString() : String -preOrderTraverse(Node<E>, StringBuilder) : } class MaxHeap<E extends DataInterface>{ -table : ArrayList<E> -comparator : Comparator<E> +add(E) : +remove(int) : -getIndex(int) : int -compare(int, int) : int -swap(int, int) : +find(E) : E +youngerThan(int) : int +olderThan(int) : int +toString() : String } class MyComparator<E extends DataInterface>{ +compare(E, E) : int } interface Comparator MaxHeap <|-- DataInterface MyComparator <|-- DataInterface MyComparator <|.. Comparator MaxHeap *-- MyComparator AgeSearchTree <|-- BinarySearchTree ExpressionTree *-- SyntaxErrorException SyntaxErrorException <|-- Exception ExpressionTree <|-- BinaryTree FileSystemTree *-- FileNode BinarySearchTree <|-- BinaryTree BinarySearchTree <|.. SearchTree interface Serializable BinaryTree *-- Node BinaryTree <|.. Serializable Node <|.. Serializable interface Comparable<E> DataInterface <|-- Comparable AgeData <|.. DataInterface @enduml
b06c6386491c3ecf26fe139d84e45d9ea45cf20a
373916af6d9d7f1645c2480ef805a4a340282b07
/6.Prototype/sample/doc/test.puml
e6cc889993925c32954e6660f9199d9a1f56df55
[]
no_license
KKimishima/Design_Pattern
138c6ed4f38db48f07e5b5733d2fdbc069f9c4e4
881a707f88fc07be0fc3b80bce46883ddf90c9d7
refs/heads/master
2021-07-24T09:37:23.321365
2017-11-05T12:23:18
2017-11-05T12:23:18
105,424,286
0
0
null
null
null
null
UTF-8
PlantUML
false
false
431
puml
@startuml class Manager{ showcase --- register create } interface Product{ --- abstract void use() abstract Product createClone() } class MassageBox{ decochar --- use createClone } class Underline{ - ulchar --- + use + crateClone } class Main{ } Manager -->Product:use MassageBox ..>Product:実装 Underline ..>Product:実装 Main -->Manager Main -->MassageBox @enduml
92af02e0dc8aff7f08230b648bf9301d261dae68
f12cda9a8bd887e1ac151257ac672f6b26e2dfc6
/src/com/jambit/onboarding2020/tbrpg/domain/Item/Item.plantuml
209ff64ccccc9d24d92c22d3a698ffbbdb9c2bab
[ "Apache-2.0" ]
permissive
jambit/onboardingphase2020_TextbasedRPG
04f81709ae0b03cd39d0da8b17b578b1d5f9d0b0
116c8db39f34ea28b05fbddde8cd133d83928811
refs/heads/Development
2022-12-28T13:36:26.169235
2020-09-25T11:28:01
2020-09-25T11:28:01
294,055,805
2
0
Apache-2.0
2020-09-25T11:29:12
2020-09-09T08:49:20
Java
UTF-8
PlantUML
false
false
2,601
plantuml
@startuml title __ITEM's Class Diagram__\n namespace com.jambit.onboarding2020.tbrpg { namespace domain.Item { interface com.jambit.onboarding2020.tbrpg.domain.Item.Consumable { {abstract} + consume() } } } namespace com.jambit.onboarding2020.tbrpg { namespace domain.Item { class com.jambit.onboarding2020.tbrpg.domain.Item.EscapeRope { + EscapeRope() + consume() } } } namespace com.jambit.onboarding2020.tbrpg { namespace domain.Item { class com.jambit.onboarding2020.tbrpg.domain.Item.HealthPotion { + HealthPotion() + consume() } } } namespace com.jambit.onboarding2020.tbrpg { namespace domain.Item { class com.jambit.onboarding2020.tbrpg.domain.Item.Item { - lore : String - name : String - sellValue : int + Item() + Item() + getLore() + getName() + getSellValue() + setLore() + setName() + setSellValue() + toString() } } } namespace com.jambit.onboarding2020.tbrpg { namespace domain.Item { class com.jambit.onboarding2020.tbrpg.domain.Item.Weapon { - atkDamage : int - critChance : double - hitChance : double + Weapon() + getAtkDamage() + getCritChance() + getHitChance() + setAtkDamage() + setCritChance() + setHitChance() + toString() } } } com.jambit.onboarding2020.tbrpg.domain.Item.EscapeRope .up.|> com.jambit.onboarding2020.tbrpg.domain.Item.Consumable com.jambit.onboarding2020.tbrpg.domain.Item.EscapeRope -up-|> com.jambit.onboarding2020.tbrpg.domain.Item.Item com.jambit.onboarding2020.tbrpg.domain.Item.EscapeRope o-- com.jambit.onboarding2020.tbrpg.domain.Player.Player : player com.jambit.onboarding2020.tbrpg.domain.Item.HealthPotion .up.|> com.jambit.onboarding2020.tbrpg.domain.Item.Consumable com.jambit.onboarding2020.tbrpg.domain.Item.HealthPotion -up-|> com.jambit.onboarding2020.tbrpg.domain.Item.Item com.jambit.onboarding2020.tbrpg.domain.Item.HealthPotion o-- com.jambit.onboarding2020.tbrpg.domain.Player.Player : player com.jambit.onboarding2020.tbrpg.domain.Item.Weapon -up-|> com.jambit.onboarding2020.tbrpg.domain.Item.Item 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
aea40361b57c8a11397e1933c696f2e3ac851894
4e1c09ee5238da28a2ef839d5b3db1b411575f77
/docs/diagram.puml
2277fee4e6aaca4617d42d8f98c5b5879d2a70a3
[ "MIT" ]
permissive
nzhulikov/alesis-templater
e6ee7cd6ede4ed906b74331b175e3e3939a3847a
14b2b9c8ff04ed5838d58cf02bae138086937654
refs/heads/master
2023-03-10T18:36:38.389656
2021-02-19T23:47:39
2021-02-19T23:47:39
271,061,553
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,370
puml
@startuml package Model { +class Preset { + Data: IReadOnlyCollection<byte> + <<create>> Preset(data: byte[]) } +enum DeviceInputType { Pads Keys ModWheel PitchBend } +class PresetSpec { - deviceInputSpecs: List<DeviceInputSpec> + DeviceInputSpecs: IReadOnlyCollection<DeviceInputSpec> + AddChannelIndices(type: DeviceInputType, indices: IReadOnlyCollection<int>)) } +class DeviceInputSpec { + Type: DeviceInputType + ChannelIndices: IReadOnlyCollection<int> } +class TemplatingRules { + UseChannels: IReadOnlyCollection<int> + InputTypes: IReadOnlyCollection<DeviceInputType> } } package Filesystem { +class PresetSpecFileManager { + LoadPresetSpecAsync(path: string): Task<PresetSpec> + SavePresetSpecAsync(path: string, spec: PresetSpec): Task } +class PresetFileManager { + LoadPresetAsync(path: string): Task<Preset> + SavePresetAsync(path: string, template: Preset): Task } } package Specs { ~class PresetDiff { + Indices: IReadOnlyCollection<int> + <<create>> PresetDiff(indices: IReadOnlyCollection<int>) } ~class PresetsComparer { + ComparePresets(t1: Preset, t2: Preset): PresetDiff } interface IPresetSpecBuilder { + WithDeviceInputType(type: DeviceInputType): DeviceInputSpecBuilder + Build(): PresetSpec } -class DeviceInputSpecBuilder implements IPresetSpecBuilder { - parentInstance: IPresetSpecBuilder + SetChannelIndicesDiff(preset: Preset) : DeviceInputSpecBuilder + WithDeviceInputType(type: DeviceInputType): DeviceInputSpecBuilder + Build(): PresetSpec } ~class PresetSpecBuilder implements IPresetSpecBuilder { - draft: PresetSpec + CreateFrom(base: Preset) + WithDeviceInputType(type: DeviceInputType): DeviceInputSpecBuilder + Build(): PresetSpec } PresetSpecBuilder <.. DeviceInputSpecBuilder } package Templating { +class PresetsGenerator { + Generate(template: Preset, rules: IReadOnlyCollection<TemplatingRules>): List<Preset> } ~class PresetBuilder { + CreateFrom(template: Preset) + SetChannel(channel: int, input: DeviceInputType): PresetBuilder + Build(): Preset } } @enduml
f2ed5444a6dd785aa62721b606ceac5b0e2d598a
f0d77e8c9412ba90cf1f11f892a09a2ed17aa5c0
/uml/toDo_UML.puml
06983a2c25caa05855721a42a76465fd1c2a9d6d
[]
no_license
C-Gagne/gagne-cop3330-assignment4
a084523f3f2d2f3922adbce152568e29886a4167
540d0e9aef7a25028fa47a60e8efdc2171e810bd
refs/heads/master
2023-06-08T16:17:44.919068
2021-07-05T01:43:24
2021-07-05T01:43:24
382,984,815
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,990
puml
@startuml 'https://plantuml.com/class-diagram class ToDo { main() start() } class ToDo_Controller { saveListOfToDo(ActionEvent clickSaveList) loadListOfToDO(ActionEvent clickLoadList) createNewList(ActionEvent clickCreateNewList) deleteList(ActionEvent clickDeleteList) changeTitleCellEvent(CellEditEvent editedCell) goToList(ActionEvent clickGoToList) } class ToDoList_Controller { initialize() changeDescriptionCellEvent(CellEditEvent editedCell) changeDueDateCellEvent(CellEditEvent editedCell) saveToDoFile(ActionEvent clickedSaveFile) loadToDoFile(ActionEvent clickedLoadFile) addItemToList(ActionEvent clickedAddItem) removeItemFromList(ActionEvent clickedRemoveItem) backToListOfToDo(ActionEvent clickedBackButton) } class UserInput { getUserInput() return userFileName } class SaveFile { public void writeSingleToDoExcel(String userFileName) public void writeListToDoExcel(String userFileName) } class LoadFile { writeSingleToDoExcel(String userFileName) writeListToDoExcel(String userFileName) } class List_of_Entries { Map<String, List<Entry>> listOfEntries; String title; setListEntries(Map<String, List<Entry>> list_Entries) Map<String, List<Entry>> getEntries() return listOfEntries; } class Entry { SimpleBooleanProperty status; LocalDate dueDate; SimpleStringProperty description; } class DatePickerCell { DatePickerCell(ObservableList<List_of_Entries> dueDateEntry) updateDueDate(Date dueDate, boolean empty) createDatePicker() } javaFX.Application <|-- ToDo ToDo <|-- ToDo_Controller ToDo_Controller <-> ToDoList_Controller ToDo_Controller <-- SaveFile SaveFile <-- UserInput ToDo_Controller <-- LoadFile LoadFile <-- UserInput ToDo_Controller <-- List_of_Entries List_of_Entries *-- Entry ToDoList_Controller <-- SaveFile ToDoList_Controller <-- LoadFile DatePickerCell --|> ToDoList_Controller @enduml
eadd5f00a5ecd5583fbf27ca54d77d8e61ba2479
f9c341a0793f4aa76bd53a9a5e3191f0c17eb4e7
/backend/src/main/java/com/engineer/lrogozinski/dto/dto.plantuml
ceb5ee52caac710a7b50b9b578fbc03d3df0dc4f
[]
no_license
LukaszRogozinski/SkillParty
930f16e59bddb0280faa61ac4b76cc59d0a677e0
a917e77bd000431faa06028b8fd5dd9fb706eb90
refs/heads/master
2020-03-30T12:42:46.963493
2019-01-27T19:03:01
2019-01-27T19:03:01
151,236,325
0
0
null
null
null
null
UTF-8
PlantUML
false
false
5,809
plantuml
@startuml title __DTO's Class Diagram__\n package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class AccountDto { - id : Integer - username : String - password : String + AccountDto() + getId() + getUsername() + getPassword() + getUserdata() + setId() + setUsername() + setPassword() + setUserdata() + equals() + hashCode() # canEqual() + toString() + AccountDto() {static} + builder() } } } package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class AccountDtoBuilder { - id : Integer - username : String - password : String ~ AccountDtoBuilder() + id() + username() + password() + userdata() + build() + toString() } } } package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class EventCategoryDto { - name : String + EventCategoryDto() + getName() + setName() + equals() + hashCode() # canEqual() + toString() + EventCategoryDto() {static} + builder() } } } package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class EventCategoryDtoBuilder { - name : String ~ EventCategoryDtoBuilder() + name() + build() + toString() } } } package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class EventDto { - id : Integer - name : String - description : String - avaliableQuantity : Integer - price : Integer - averageVote : Double - token : String - eventCategory : String - imageUrl : String + EventDto() + getId() + getName() + getDescription() + getAvaliableQuantity() + getPrice() + getAverageVote() + getToken() + getEventCategory() + getImageUrl() + setId() + setName() + setDescription() + setAvaliableQuantity() + setPrice() + setAverageVote() + setToken() + setEventCategory() + setImageUrl() + equals() + hashCode() # canEqual() + toString() + EventDto() {static} + builder() } } } package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class EventDtoBuilder { - id : Integer - name : String - description : String - avaliableQuantity : Integer - price : Integer - averageVote : Double - token : String - eventCategory : String - imageUrl : String ~ EventDtoBuilder() + id() + name() + description() + avaliableQuantity() + price() + averageVote() + token() + eventCategory() + imageUrl() + build() + toString() } } } package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class UserDataDto { } } } package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class UserInfo { - username : String - name : String - surname : String - email : String - city : String - street : String - houseNo : Integer - flatNo : Integer - averageVote : Double - favouriteCategories : List<String> + UserInfo() + getUsername() + getName() + getSurname() + getEmail() + getCity() + getStreet() + getHouseNo() + getFlatNo() + getAverageVote() + getFavouriteCategories() + setUsername() + setName() + setSurname() + setEmail() + setCity() + setStreet() + setHouseNo() + setFlatNo() + setAverageVote() + setFavouriteCategories() + equals() + hashCode() # canEqual() + toString() + UserInfo() {static} + builder() } } } package com.engineer.lrogozinski { package com.engineer.lrogozinski.dto { class UserInfoBuilder { - username : String - name : String - surname : String - email : String - city : String - street : String - houseNo : Integer - flatNo : Integer - averageVote : Double - favouriteCategories : List<String> ~ UserInfoBuilder() + username() + name() + surname() + email() + city() + street() + houseNo() + flatNo() + averageVote() + favouriteCategories() + build() + toString() } } } AccountDto o-- UserData : userdata AccountDto +-down- AccountDtoBuilder AccountDtoBuilder o-- UserData : userdata EventCategoryDto +-down- EventCategoryDtoBuilder EventDto +-down- EventDtoBuilder UserInfo +-down- UserInfoBuilder 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
0c36d0f5d8ef88253d67da0c34a65a87406280b8
1f9f3670cda9695ba7eb641653fd178f6fd62e55
/test6/out/production/test6/main/class.puml
7cade79995dc7070b38af60b054bc9bc07c30087
[]
no_license
yimoqiuyi/is_analysis
ac5751f0d8abe2e63dbd83d0f7ba8bdcb5879ddc
deafb5534d466934aa923321bf25e90dba000e9d
refs/heads/master
2021-04-12T08:05:44.722507
2019-04-26T01:38:40
2019-04-26T01:38:40
125,817,161
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,593
puml
Skip to content Features Business Explore Marketplace Pricing This repository Search Sign in or Sign up Watch 1 Star 8 Fork 53 zwdbox/is_analysis Code Issues 2 Pull requests 0 Projects 0 Insights Branch: master Find file Copy path is_analysis/test6/src/class.puml 205a8e8 14 days ago @zwdbox zwdbox version1 1 contributor RawBlameHistory 40 lines (36 sloc) 913 Bytes @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> (老师工号) department (老师所属部门) } class students{ <b>student_id</b> (学号) class (班级) result_sum(成绩汇总) web_sum (网站正确与否汇总) } users <|- students users <|-- teachers class grades { <b>student_id</b> (学号) <b>test_id</b> (实验编号) result (分数) memo (评价) update_date (评改日期) } class tests { <b>test_id</b> (实验编号) title (实验名称) } class semester{ <b>semester_id</b> (学期) note(标注) } students "1" -- "n" grades tests "1" -- "n" grades teachers "n" -- "n" students semester "1" -- "n" students semester "1" -- "n" tests @enduml © 2018 GitHub, Inc. Terms Privacy Security Status Help Contact GitHub API Training Shop Blog About Press h to open a hovercard with more details.
b236d8eea709b2dd17d62051ed6bc993b14aa10e
8807241e723a5c552f70817336989da0f15efe37
/src/main/java/oop/example/Ex43/Ex43_UML.puml
aab0351ac605290b088c006882f8210a3867243e
[]
no_license
Kmullens1/mullens-cop3330-assignment3
2c1c1d612edb0b7839bc426d08cf74441a41900a
5bb28dbc4c1e0861ee4d7f3db3981122c8c50005
refs/heads/master
2023-08-04T09:01:52.611560
2021-09-20T04:17:45
2021-09-20T04:17:45
377,706,754
0
0
null
null
null
null
UTF-8
PlantUML
false
false
609
puml
@startuml 'https://plantuml.com/sequence-diagram class Ex43{ - String siteName - String author - String responseJava - String responseCSS + main() + readUserInput() } class CreateHTMLFile{ - String siteName - String author + htmlFile() } class CreateJavaSFolder{ - String responseJava - String siteName + checkUserResponse() + javaScriptFolder() } class CreateCSSFolder{ - String responseCSS - String siteName + checkUserResponse() + cssFolder() } Ex43 -- CreateJavaSFolder Ex43 -- CreateCSSFolder Ex43 -- CreateHTMLFile @enduml
af334716f6f4e3d767defb07042f32f28bb0d6da
844665d08d1be5dacc41d8495725d881c68dba71
/Conferencias/Conferencia 5_ Patrones de Diseño en la Programación Modular/MultiModuleApp/null_object/src/cu/datys/null_object/spi/class-diagram.puml
917f3f894a3a50a2d4bbfc8a18f7106ceb5da5d0
[ "MIT" ]
permissive
alexescalonafernandez/curso-patrones-diseno
ec1cf0a993707d78c294208e04604a3a0ffd164e
f586e27791e1281087df6cc137da87f407179e65
refs/heads/master
2021-01-25T13:35:26.659206
2018-03-02T20:18:06
2018-03-02T20:18:06
123,588,331
0
0
null
null
null
null
UTF-8
PlantUML
false
false
806
puml
@startuml skinparam backgroundcolor transparent skinparam classFontSize 18 skinparam noteFontSize 18 skinparam arrowFontSize 18 skinparam classAttributeFontSize 18 skinparam packageFontSize 18 skinparam classStereotypeFontSize 18 skinparam titleFontColor #5cb85c 'skinparam titleFontColor #FFFFFF 'skinparam titleFontSize 32 Title Module null_object: cu.datys.null_object.spi package interface NullObject { + default boolean isNull() } interface NullObjectFactory { + boolean accept(Class nullable) + NullObject create() } interface NullObjectFactoryProvider #FEFF99 { + NullObjectFactory getFactory(Class nullable) } NullObjectFactoryProvider --> NullObjectFactory: provides NullObjectFactory --> NullObject: create note right of NullObject::is return false; end note @enduml
ab77f7cbc308fddff614c8822f00726cab152e5d
4e22d261d7dcf5fe2731d77ba3cfb47c5568977c
/Documentation/Source/Breakdown/Engine/TempestEngine/Input/GamepadInputAdapter-Class.iuml
e063cbb6ff3815529b141cf26d6ba9efc0dcdb02
[]
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
107
iuml
namespace InputSystem { class GamepadInputAdapter { +UpdateState() } }
a4c24f7d2178d590be985ebf32447ad7a050138b
6e43c89d67e8f3edcfea7d99aa87b09e47680b80
/Homework2/Homework2.puml
5d9c90a7bf4bf9790626de0d3389c23a7bedf7a7
[]
no_license
SteveTsao/DesignPattern
9fe82d94b6550e0c8501f7eff28fbf13aa57bbfe
4879a9b9102877143d0e45bc01500a04b1e032d1
refs/heads/master
2021-09-12T23:20:23.307109
2018-04-22T15:20:17
2018-04-22T15:20:17
114,538,275
0
0
null
null
null
null
UTF-8
PlantUML
false
false
359
puml
@startuml class Clock { -onTick } abstract class AbstractProxy { +publish } class ProxyObservable { +publish +subscribe +unsubscribe } abstract class AbstractSubscriber { +notify } class DigitalClock { -right +update } Clock .> AbstractProxy AbstractProxy <|-- ProxyObservable AbstractSubscriber <|-- DigitalClock @enduml
e7c5b216bdf67d606dd6b19da8dc5c7f6d771c37
d99806bb17e4a22325f775539981c6b7799b9d16
/docs/red/1161292/sp2/domainModel.puml
f97cbe3a867bd4570efb8064c0177c7129dac2b3
[]
no_license
Fuel4us/GWTFinalProject
3d0e1194f142cfcbdfc3d24f37a7537ff3a30dfb
b6c2f6add1687ca7800a9ec243edbe067ca6090c
refs/heads/master
2020-03-21T19:47:13.534718
2018-06-28T05:33:43
2018-06-28T05:33:43
138,969,901
0
0
null
null
null
null
UTF-8
PlantUML
false
false
213
puml
@startuml skinparam handwritten true skinparam monochrome true skinparam packageStyle rect skinparam defaultFontName FG Virgil skinparam shadowing false hide empty methods class User << (E,yellow) >> { } @enduml
3b1ba5d701db9e10a97409ab49621789c8034db1
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.puml
4b743f25033feb55e698ba40aa67d3f12d2b6e28
[]
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
152
puml
@startuml class LegacyPlayerRunTask { + <<override>> Execute(testJobData:TestJobData) : IEnumerator } TestTaskBase <|-- LegacyPlayerRunTask @enduml
d9edb1bcdc431cf2b11c887327d17e555a26667d
cea7fd40d30d2f7510d0c58bdab70ef624f13568
/src/main/java/ex41/App.puml
0fb9d43eadcbf05efe2028791ee8252f01354569
[]
no_license
faizatucf/Ahmed-cop3330-assignment3
2ee9c12262133b961d727f4c952e6c8a27970bbb
1afd969fea823ca1319f07b91cede2078bdc256c
refs/heads/main
2023-08-23T11:24:18.220835
2021-10-08T18:23:52
2021-10-08T18:23:52
415,086,611
0
0
null
null
null
null
UTF-8
PlantUML
false
false
201
puml
@startuml class App { +output(out:String):void +outputString(result:ArrayList<String>):void +sort(filenamein:String ,filenameout:String):ArrayList<String> +main(String [] args):void } @enduml
0f0c8fe88e4b28a962cdb1511d22701dfe94272a
b6b965aba95a85b0a43bd8bebb83d591f711fd8d
/uml/Boss-AddGoodsCategory.puml
9ca894d01045eefb2a0e5d436788e3db8feb469b
[]
no_license
codeworld-GitHub/mytest
57365f2497cb6074b967b3c657649f98707d19d5
9a990d20c9895db2e28b695a03fbf08cf0f424bf
refs/heads/master
2023-07-26T23:45:04.650458
2023-07-13T10:23:04
2023-07-13T10:23:04
172,627,845
0
0
null
2023-06-14T22:46:14
2019-02-26T03:05:55
Java
UTF-8
PlantUML
false
false
5,672
puml
'新增商品类目 流程图 @startuml start :登录boss 进入商品-商品类目; :点击新增一级类目或添加子类目; repeat :填写类目信息; repeat while (参数校验) is (不通过) :点击确认按钮; if(新增商品分类成功?) then (yes) :数据入库; :查询父分类是否关联优惠券; if(有关联?) then (yes) :批量新增优惠券商品作用范围; :数据入库; else (no) endif else (no) endif stop @enduml '新增商品类目 时序图 @startuml autonumber actor react react -> controller :发起新增类目请求 controller -> provider :调用微服务新增\ngoodsCateProvider.add provider -> service :调用新增\ngoodsCateService.add service -> service :cateParentId若为null设0 service -> repository :判断名称是否重复\ngoodsCateRepository.count database db repository -> db :查询数据 db --> repository :返回数量 repository --> service :返回数量 service -> repository :判断同父分类子类数是否超限\ngoodsCateRepository.count repository -> db :查询数据 db --> repository :返回数量 repository --> service :返回数量 service -> repository :调用保存\ngoodsCateRepository.saveAndFlush repository -> db :调用保存 db --> repository :返回保存对象 repository --> service :返回保存对象 service -> service :redis生成缓存 service -> service :调用ares埋点发送mq\ngoodsAresService.dispatchFunction service --> provider :返回保存对象 provider --> controller :返回保存对象 controller -> provider :查询父分类关联优惠券\ncouponMarketingScopeQueryProvider\n.listByScopeId provider -> service :根据优惠券ID查询作用范围 service -> repository :根据优惠券ID查询作用范围 repository -> db :查询数据 db --> repository :返回查询对象 repository --> service :返回查询对象 service --> provider :返回查询对象 provider --> controller :返回查询对象 controller -> provider :**如果关联**则调用批量新增优惠券商品作用范围\ncouponMarketingScopeProvider\n.batchAdd provider -> service :批量插入优惠券商品作用范围\ncouponMarketingScopeService\n.addbatchCouponMarketingScope service -> repository :批量插入优惠券商品作用范围 repository -> db :批量插入 db --> repository :返回 repository --> service :返回 service --> provider :返回 provider --> controller :返回 controller --> react :返回 @enduml '新增商品类目 类图 @startuml class BossGoodsCateController{ -GoodsCateProvider goodsCateProvider -CouponMarketingScopeProvider couponMarketingScopeProvider -CouponMarketingScopeQueryProvider couponMarketingScopeQueryProvider +BaseResponse add(GoodsCateAddRequest saveRequest) } 'controller注入 BossGoodsCateController *-- GoodsCateProvider BossGoodsCateController *-- CouponMarketingScopeProvider BossGoodsCateController *-- CouponMarketingScopeQueryProvider '定义接口 interface GoodsCateProvider{ +BaseResponse<GoodsCateAddResponse> add(GoodsCateAddRequest request) } '接口实现 class GoodsCateController implements GoodsCateProvider{ -GoodsCateService goodsCateService +BaseResponse<GoodsCateAddResponse> add(GoodsCateAddRequest request) } GoodsCateController *-- GoodsCateService class GoodsCateService{ -GoodsCateRepository goodsCateRepository -RedisService redisService +GoodsAresService goodsAresService +GoodsCate add(GoodsCateSaveRequest saveRequest) } GoodsCateService *-- GoodsCateRepository GoodsCateService *-- RedisService GoodsCateService *-- GoodsAresService interface GoodsCateRepository{ +<S extends T> S saveAndFlush(S entity) +T findOne(Specification<T> spec) +long count(Specification<T> spec) } class RedisService{ -RedisTemplate<String, ?> redisTemplate +boolean setString(final String key, final String value) } class GoodsAresService{ -JmsTemplate jmsTemplate +void dispatchFunction(String funcType, Object... objs) } '------------------------------------------------------------------------ '定义接口 interface CouponMarketingScopeQueryProvider{ +BaseResponse batchAdd(CouponMarketingScopeBatchAddRequest request) } '接口实现 class CouponMarketingScopeQueryController implements CouponMarketingScopeQueryProvider{ -CouponMarketingScopeService couponMarketingScopeService +BaseResponse batchAdd(CouponMarketingScopeBatchAddRequest request) } CouponMarketingScopeQueryController *-- CouponMarketingScopeService class CouponMarketingScopeService{ -CouponMarketingScopeRepository couponMarketingScopeRepository +List<CouponMarketingScope> listScopeByScopeId(String scopeId) +void addBatchCouponMarketingScope(List<CouponMarketingScope> couponMarketingScopes) } CouponMarketingScopeService *-- CouponMarketingScopeRepository interface CouponMarketingScopeRepository{ +List<CouponMarketingScope> findByScopeId(String scopeId) +List save(Iterable entities) } '------------------------------------------------------------------------ '定义接口 interface CouponMarketingScopeProvider{ +BaseResponse<CouponMarketingScopeByScopeIdResponse> listByScopeId(CouponMarketingScopeByScopeIdRequest request) } '接口实现 class CouponMarketingScopeController implements CouponMarketingScopeProvider{ -CouponMarketingScopeService couponMarketingScopeService +BaseResponse<CouponMarketingScopeByScopeIdResponse> listByScopeId(CouponMarketingScopeByScopeIdRequest request) } CouponMarketingScopeController *-- CouponMarketingScopeService @enduml
897ed89350de793571b3f7bd0986b292ed9969b5
74cb674dc7b9c3f65f6ab08fc5ad3a43c3bf12d3
/Offline 2/Problem 1/src/component/hardware/storage/storage.plantuml
a7b1d170e899597698f43860df36894c85eb404b
[]
no_license
zarif98sjs/CSE-308-Software-Engineering
a9759bbee2ea0647eae2ea677d08741293a1cc14
515015a40c10d916d5089f11784b4ff75319fcbd
refs/heads/main
2023-06-27T05:57:00.443594
2021-07-28T13:57:32
2021-07-28T13:57:32
344,690,362
2
1
null
null
null
null
UTF-8
PlantUML
false
false
801
plantuml
@startuml title __STORAGE's Class Diagram__\n namespace component.hardware.storage { class component.hardware.storage.BuiltInStorage { + toString() } } namespace component.hardware.storage { class component.hardware.storage.SDCard { + toString() } } namespace component.hardware.storage { interface component.hardware.storage.Storage { {abstract} + toString() } } component.hardware.storage.BuiltInStorage .up.|> component.hardware.storage.Storage component.hardware.storage.SDCard .up.|> component.hardware.storage.Storage 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
405d23087e724dd45e64b88d6c8700080b418256
dad5d984313a3ae0b71b5363ad782a146a76b6d2
/source/plantuml/designPattern/AbstractFactory.puml
4a2909b413b119a48ec52d600ddca3b1688168aa
[]
no_license
florianley/florianley.github.io
330191fdf04a25f2c453770fa7df2f04f8da5300
f1a9e498368ea48f3431d526b8bd97d1e3935efe
refs/heads/master
2023-02-28T14:01:03.612522
2021-02-09T19:30:46
2021-02-09T19:30:46
305,364,958
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,596
puml
@startuml skinparam participant { BorderColor Black BorderThickness 1 FontName Helvetica FontSize 13 BackgroundColor 0066A1 HeaderBackgroundColor 0066A1 AttributeFontColor black FontColor White FontStyle bold } skinparam sequence { ArrowColor Black GroupBackgroundColor 0066A1 GroupHeaderFontColor White LifeLineBorderColor Black LifeLineBackgroundColor White FontColor red } skinparam class { ArrowColor Black BackgroundColor transparent GroupHeaderFontColor White BorderColor Black LifeLineBackgroundColor White FontColor Black } skinparam note { BackgroundColor transparent FontColor 3284B3 BorderColor black } interface ComputerAbstractFactory{ {method} + createComputer(): Computer } abstract class Computer{ + abstract String getRAM() + abstract String getHDD() + abstract String getCPU() } class PC{ - String ram - String hdd - String cpu + getRam() + getHDD() + getCPU() } class ComputerFactory{ + static Computer getComputer() } class Server{ - String ram - String hdd - String cpu + getRam() + getHDD() + getCPU() } class ServerFactory{ - String ram - String hdd - String cpu + Computer createComputer() } class PCFactory{ - String ram - String hdd - String cpu + Computer createComputer() } class Client{ } Computer <|-- PC Computer <|-- Server Client --> ComputerFactory ComputerAbstractFactory <|.. PCFactory ComputerAbstractFactory <|.. ServerFactory Client --> ComputerAbstractFactory ServerFactory --> Server PCFactory --> PC ComputerFactory --> Computer @enduml
f965c8d5a03c4ca490378cca7c3b572243880a1c
4beec2545e0bc9ae7f36905f46459521726e4747
/asciidocs/plantuml/Motel.puml
b85ccafeb0899c6561a477745c6918f8b7a11ebc
[]
no_license
2122-4ahif-syp/01-cld-hotel-christophhandel
4dd1d15be9d09eb76de47e3a9278930c1fd5898c
da57be5124d318c29332773c07f7ac68781fb1ca
refs/heads/master
2023-08-22T23:31:17.561355
2021-10-11T08:32:49
2021-10-11T08:32:49
415,830,025
0
0
null
null
null
null
UTF-8
PlantUML
false
false
913
puml
@startuml class Zimmer{ nummer: int personen: int } class Kategorie{ id: int bezeichnung: String } class Mitarbeiter{ -svnr: String -name: String -adresse: String } class Raumpfleger{ } class Betreuer{ -fach: String } class Kunde{ -kundennr: int -name: String -adresse: String } class Buchung{ -von: LocalDate -bis: LocalDate } class Leistungspaket{ -bezeichnung: String -preis: int -anzahl: int } Leistungspaket--|>Basispaket Leistungspaket-|>Luxuspaket Leistungspaket->Betreuer Mitarbeiter-->Betreuer Mitarbeiter -|>Raumpfleger Kunde"1"<-"*"Buchung Zimmer"1"<--"*"Buchung Raumpfleger-->Zimmer Raumpfleger - Zimmer (Raumpfleger,Zimmer).. x Luxuspaket"1"<--"1..*"Basispaket Buchung"1" <- "*"Leistungspaket (Buchung,Leistungspaket)..y (Leistungspaket,Betreuer)..z Kategorie"1"<--"*"Zimmer @enduml
dddd6f5d6cf6977a30a53e2c151bfe8cbff0ef27
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/CartDiscountValueFixed.puml
ac57bf09230ea04ba005ac17632ecfdd0f1634a6
[]
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
456
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 CartDiscountValueFixed [[CartDiscountValueFixed.svg]] extends CartDiscountValue { type: String money: [[TypedMoney.svg List<TypedMoney>]] } interface CartDiscountValue [[CartDiscountValue.svg]] { type: String } @enduml
f1e377f267cb0cdbcc09d3cbc06f0c339f872dac
996001a7af8adff163b8425821145f33ae66f741
/practise/diagrams/Domain.puml
2b09f31bc8b296d5637ff79ae1f7dffaec57e774
[]
no_license
veronikagolovnina/SBTTraineeship
35f228d2ed7bcc86e855696e7772e450d801b995
b13647d21e2a32440c2236a49ba346c354691ffe
refs/heads/master
2021-01-21T08:43:58.732387
2016-05-14T08:23:41
2016-05-14T08:23:41
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,200
puml
@startuml class User { Long id String firstName String middleName String lastName UserGroup userGroup } note top of User |= user | | id | | first_name | | middle_name | | last_name | | group_id | end note class UserGroup { Long id String groupName } note top of UserGroup |= user_group | | id | | group_name | end note User "many" --> "1" UserGroup class SystemLog { Long id String code String message Date dateTime User user } note top of SystemLog |= system_log | | id | | code | | message | | date_time | | user_id | end note class Question { Long id List<Answer> answers AnswerType answerType (single, multiple) TestChapter testChapter String text Test test } note top of Question |= question | | id | | answer_type | | test_chapter_id | | text | | test_id | end note Question "many" --> "1" TestChapter Question "1" <--> "many" Answer class Answer { Long id Question question String text Boolean isRight } note top of Answer |= answer | | id | | question_id | | text | | is_right | end note class Result { User user TestRun testRun Question question Answer answer } note top of Result |= result | | id | | user_id | | test_run_id | | question_id | | answer_id | end note class Test { String title String description List<Question> questions } note top of Test |= test | | id | | title | | description | end note Question "many" <-- "many" Test note right on link | test_question | | question_id | | test_id | end note class TestChapter { Long id String title Integer position } note top of TestChapter |= test_chapter | | id | | title | | position | end note class TestRun { TestRunStatus testRunStatus (NEW, COMPLETED) User user Test test } note top of TestRun |= test_run | | id | | test_run_status | | user_id | | test_id | end note TestRun "many" --> "1" Test TestRun "many" --> "1" User Result "many" --> "1" User Result "many" --> "1" TestRun Result "many" --> "1" Question @enduml
821040411d23af326e2bb7d1749d073d627ad85d
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.puml
ecaf452e26b635b4b835aa9592bd9b3d2770bd05
[]
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
183
puml
@startuml interface ITestListCacheData { } class "List`1"<T> { } ITestListCacheData --> "platforms<TestPlatform>" "List`1" ITestListCacheData --> "cachedData<ITest>" "List`1" @enduml
c0a20485c338378096f19ef73cb939ce5b10154c
114d183f85e91502b4f87581521dcfa41a8152a0
/doc/diagrams/eagine/value_tree/overview.puml
98872189bcd3b7b6f6acd27cebd1ba6d7e184edb
[ "BSL-1.0", "GPL-3.0-only", "GPL-1.0-or-later" ]
permissive
ford442/oglplu2
5544c888a11b9b2f92c3dd658c914403a6372604
abf1e28d9bcd0d2348121e8640d9611a94112a83
refs/heads/develop
2023-07-28T03:56:59.431213
2021-09-01T05:40:48
2021-09-01T05:40:48
403,495,160
0
0
BSL-1.0
2021-09-06T05:23:50
2021-09-06T05:21:38
null
UTF-8
PlantUML
false
false
2,150
puml
@startuml enum value_type { unknown bool_type byte_type int16_type int32_type int64_type float_type duration_type, string_type, composite } interface attribute_interface { +type_id() : identifier } note "\ - rapidyaml\n\ - rapidjson\n\ - filesystem\n\ - rapidxml\n\ - ...\n\ " as impl_note interface compound_interface { +type_id() : identifier +add_ref(attribute_interface) +release(attribute_interface) +structure() : attribute_interface +attribute_name(...) : string +canonical_type(...) : value_type +is_link(...) : bool +nested_count(...) +nested(...) : attribute_interface +find(...) : attribute_interface +value_count(...) +fetch_values(...) } class concrete_attribute { } class concrete_compound { } package implementation { } class attribute { +type_id() : identifier +name() : string } class compound { +type_id() : identifier +structure() : attribute +root() : compound_attribute +attribute_name(...) : string +canonical_type(...) : value_type +is_link(...) : bool +nested_count(...) +nested(...) : attribute_interface +find(...) : attribute_interface +value_count(...) +fetch_values(...) } class compound_attribute { +type_id() : identifier +name(...) : string +canonical_type(...) : value_type +is_link(...) : bool +nested_count(...) +nested(...) : attribute_interface +find(...) : attribute_interface +value_count(...) +fetch_values(...) } compound_interface --> attribute_interface : uses compound_interface --> value_type attribute_interface <|-- concrete_attribute compound_interface <|-- concrete_compound concrete_compound ..> concrete_attribute : instantiates implementation <-- concrete_attribute : uses implementation <-- concrete_compound : uses impl_note .. implementation compound --> attribute : uses compound o--> compound_interface attribute o--> attribute_interface compound_attribute *--> compound compound_attribute *--> attribute compound_attribute ..> compound_attribute : nested compound ..> compound_attribute : root @enduml
10bfb391435f047201fb043c6ef93c8dfe71cbf9
77327db95c89cd0308a6aeace3a31952562cf198
/out/production/Travel/com/company/del.puml
3a447cab95e477187d53549478418bb18377d76a
[ "MIT" ]
permissive
KVM-Projects/TravelManagementSystem
75f4db7a419eff26be607fb026447d1ab38586e0
c2138c3e8118d749bc7af795128523b3e1b50d3f
refs/heads/main
2023-06-18T22:50:30.446613
2021-07-04T16:03:46
2021-07-04T16:03:46
364,597,209
1
2
null
2021-07-04T16:03:46
2021-05-05T14:06:05
Java
UTF-8
PlantUML
false
false
367
puml
@startuml 'idea.disableSyntaxCheck abstract class AbstractList abstract AbstractCollection interface List interface Collection List <|-- AbstractList Collection <|-- AbstractCollection Collection <|- List AbstractCollection <|- AbstractList AbstractList <|-- ArrayList class ArrayList { Object[] elementData size() } enum TimeUnit { DAYS HOURS MINUTES } @enduml
925add4b52ab5bacade140a62d491089a424cce7
6fae72ab779f8a67b157e41c254213b44d1e40e9
/test3/class.puml
e92bfcaabb7b9f34b9d20834d1b368d6b222e892
[]
no_license
1771190842/is_analysis
9c7481edfb5db01a007bd956883e36720f9678b9
067e01b98a39e53592c0a0f13cd6f579bea69810
refs/heads/master
2020-04-25T13:44:57.478546
2019-05-06T04:49:00
2019-05-06T04:49:00
172,818,762
0
0
null
null
null
null
UTF-8
PlantUML
false
false
692
puml
@startuml class 书籍 { Int :书本id String :书名 String :作者 Date :购买日期 } class 借书记录 { Date :借书日期 Date :归还日期 bool : 管理员处理情况 } class 用户 { Int :用户ID String :用户密码 String :其他用户信息 Date :注册日期 } class 记录{ Int : 流水号 Int :书本号 Int : 借阅者id } class 预定记录 { Date :预定日期 Date :预定过期日期 } class 管理员 { Int :管理员ID String :密码 String :姓名 } 记录<|--预定记录 记录<|--借书记录 管理员"1"--"*"记录 :审核 用户"1"--"*"记录 :申请 书籍"1"--"*"记录 @enduml
ed8f90298a7d8e71b0b6b4b02d6596ea3e497319
20644d12a34773dd4586c4f6b767745ad004db26
/core/out/production/CN-assignment-1/com/lobby/login/login.plantuml
f6c8d54c07152fce6c96ee7d4eac9ff1b89982a0
[]
no_license
thuyhoang-bkuer/CN-assignment-1
5862f4a2e136a484eff14f322e23a4462fe2fa0e
58d119a48fac65b6fcbbf1b59b5975ced5357e10
refs/heads/master
2020-08-27T05:53:40.188382
2019-10-27T13:43:58
2019-10-27T13:43:58
217,261,236
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,343
plantuml
@startuml title __LOGIN's Class Diagram__\n namespace com.client.login { class com.client.login.LoginController { {static} + controller : ChatController + hostnameTextfield : TextField - borderPane : BorderPane - connectBtn : Button - imageSource : String - imageView : ImageView {static} - instance : LoginController - portTextfield : TextField - scene : Scene - usernameTextfield : TextField - xOffset : double - yOffset : double + LoginController() + closeSystem() + generateAnimation() {static} + getInstance() + initialize() + loginButtonAction() + minimizeWindow() + showErrorDialog() + showScene() } } namespace com.client.login { class com.client.login.MainLauncher { {static} - primaryStageObj : Stage {static} + getPrimaryStage() {static} + main() + start() } } com.client.login.LoginController .up.|> javafx.fxml.Initializable com.client.login.MainLauncher -up-|> javafx.application.Application right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
adaf635159e21742c6ecb8ba5cf19fe3d0b1b81a
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/MyCartSetLocaleAction.puml
639f40e0e8781bf21735aa92cc6c173e92680933
[]
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
433
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 MyCartSetLocaleAction [[MyCartSetLocaleAction.svg]] extends MyCartUpdateAction { action: String locale: String } interface MyCartUpdateAction [[MyCartUpdateAction.svg]] { action: String } @enduml
a0ea93a7a26674f4b2bfcf7e9803d7c62814b531
61d4334cda2e47cea540787b6c96ad96bc785e86
/ckcore/docs/workflow.puml
156bc8ebfcbd74170a95ba9496401aaa32d8b151
[ "Apache-2.0" ]
permissive
mjsolidarios/cloudkeeper
6bcda443852c80b679ffd1dd904235a7d46df8a2
7b25414f7649b6035d3ee528ce82c2639012eeb1
refs/heads/main
2023-08-28T17:00:19.407030
2021-10-07T10:26:14
2021-10-07T10:26:14
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,096
puml
@startuml class MessageType { name: str kind?: Kind } package Events { interface Message { } interface ActionMessage { workflow_instance_id: str step_name: str } class Event { data: Json } class ActionDone { subscriber_id: str } class ActionError { subscriber_id: str } Message <|-- Event Message <|-- ActionMessage ActionMessage <|-- ActionDone ActionMessage <|-- ActionError ActionMessage <|-- Action ActionError ..> Action: processed ActionDone ..> Action: processed } note right of Message { - Multiple instances of the same workflow are possible. - Every instance of a workflow has a unique id. - Every step in a workflow has a unique name (in the workflow). - Message ID could be created by {instance_id}::{step_name} } note bottom of ActionDone { subscriber_id is available on the server side. and is not required to transmit. safe guard: no other actor can send done on behalf of a different subscriber. } package Workflows { class Workflow { id: str name: str } interface Step { timeout: duration } class EmitAction { message_type: str } class ExecuteCommand { command: str } class WaitForEvent { message_type: str } Step <|-- EmitAction Step <|-- ExecuteCommand Step <|-- WaitForEvent enum ErrorBehaviour { Stop Continue } enum SurpassBehaviour { Parallel Replace Wait Drop } interface Trigger { } class ByTime class ByEvent class ByTimeAndEvent class WorkflowInstance { id: str current_step(): Step } Trigger <|--ByTime Trigger <|--ByEvent Trigger <|--ByTimeAndEvent ByEvent ...> MessageType ByTimeAndEvent ...> MessageType WorkflowInstance --> Workflow WorkflowInstance ..> Step Step --> ErrorBehaviour } package Subscribers { class Subscriber { id: str } class Subscription { id: str timeout: duration } } note bottom of Subscriber { The id of the subscriber is defined by the subscriber and has to be unique. Example: <code> gce_collector, aws_collector </code> } Subscriber -> Subscription: subscriptions Subscription ..> MessageType: event Message ...> WorkflowInstance Message ..> MessageType Workflow -> "0..*" Trigger: trigger Workflow -> "0..*" Step: steps Step ..> MessageType Workflow --> "1" SurpassBehaviour: next_run @enduml @startuml interface Step { timeout: duration } class EmitAction { message_type: str } class ExecuteCommand { command: str } class WaitForEvent { message_type: str } Step <|-- EmitAction Step <|-- ExecuteCommand Step <|-- WaitForEvent note bottom of EmitAction { - Emits a specified action. - Waits for all subscribers to respond with an ack. (wait_for_complete==true) } note bottom of ExecuteCommand { - Executes a specified CLI command. - Waits for the command to finish. } note bottom of WaitForEvent { - Waits for a specified event to arrive. } @enduml
9e4213acdc30ebe37cb75c05ffaae18fd3ad89ed
651a2439478b74a6a9fd06cb27edc0105b62105c
/docs/catalog-of-terms/Entity-DDD/entity-ddd.puml
9f1b2dd6ffaa991c101e42431d4cbe5effadce49
[ "MIT" ]
permissive
NicoJuicy/modular-monolith-with-ddd
2abbaefe3e715faf009257db1ce76d2ac0539a7b
ff54f9e6a2f8a672ea0aef5ffe7c163b0b8eb7b8
refs/heads/master
2023-01-20T16:11:47.006416
2022-08-23T20:58:28
2022-08-23T20:58:28
221,891,602
0
0
MIT
2023-01-18T14:33:28
2019-11-15T09:36:27
null
UTF-8
PlantUML
false
false
501
puml
@startuml Entity class "MeetingGroup" << Entity >> { MeetingGroupId: Id -string: _description -DateTime: _createDate -DateTime: _paymentDateTo {static} MeetingGroup CreateBasedOnProposal() Meeting CreateMeeting(..) void SetExpirationDate(DateTime dateTo) void JoinToGroupMember(MemberId memberId) void LeaveGroup(MemberId memberId) void EditGeneralAttributes(...) bool IsMemberOfGroup(MemberId attendeeId) bool IsOrganizer(MemberId memberId) } @enduml
7c1fbba89ad110267ed5e9a373722ad7c7261bf6
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
/build/supplyagreement-perishable-goods@0.16.0.puml
1d0025b70d8d80c4236ec6697e4caa3524ab096e
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "CC-BY-4.0" ]
permissive
accordproject/cicero-template-library
737586850933daac2fbff2ff8b2d60dd50526b80
35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea
refs/heads/main
2023-04-27T01:07:05.932361
2022-08-26T13:02:59
2022-08-26T13:02:59
109,224,687
77
149
Apache-2.0
2023-04-20T21:43:00
2017-11-02T06:11:37
HTML
UTF-8
PlantUML
false
false
636
puml
@startuml class org.accordproject.perishablegoods.contract.SupplyAgreementPerishableGoodsContract << (A,green) >> { + Grower grower + Importer importer + Shipment shipment + DateTime dueDate + MonetaryAmount unitPrice + Unit unit + Integer minUnits + Integer maxUnits + String product + Integer sensorReadingFrequency + TemporalUnit duration + Double minTemperature + Double maxTemperature + Double minHumidity + Double maxHumidity + Double penaltyFactor } org.accordproject.perishablegoods.contract.SupplyAgreementPerishableGoodsContract --|> org.accordproject.contract.Contract @enduml
407907f6a21876268884fadc7ec63b910e493d22
d827540cbf464c3c09194c3022598f94043a04f8
/puml-diagrams/cd_versamento.puml
d3586da7e5432776c4469f54b4f3d2d3c7e94770
[]
no_license
gliasphaltatori/pagopa-specifichepagamenti-docs
25f671a585e50a68a02291378ac28f0767b14866
49c30c276bff9109f36e598f9678b94b58a9a997
refs/heads/master
2023-04-30T21:55:52.268768
2021-05-11T08:08:00
2021-05-11T08:08:00
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
518
puml
@startuml class Versamento { dataEsecuzionePagamento importoTotaleDaVersare tipoVersamento ibanAddebito bicAddebito firmaRicevuta } class datiSingoloVersamento{ importoSingoloVersamento commissioneCaricoPA ibanAccredito bicAccredito ibanAppoggio credenzialiPagatore vausaleVersamento datiSpecificiRiscossione datiMarcaBolloDigitale } class datiMarcaBolloDigitale{ tipoBollo hashDocumento provinciaResidenza } Versamento *-down- datiSingoloVersamento datiSingoloVersamento *-down- datiMarcaBolloDigitale @enduml
09b555badbbe3f1deaa1cfc4f90048ff4097a2a4
5124b2dbc6276b681910d5584179a02ddc345669
/documentation/uml/class/Reservation.puml
ca30c25d1fd676e3b68585fe04a8670dc2f783d1
[]
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
938
puml
@startuml class hotel.entity.Reservation { - id : int - start : Date - end : Date - guest : Guest - people : int - rooms : List<Integer> - additionalInfo : String - payed : Date - canceled : Date + Reservation() + Reservation(int, Date, Date, Guest, int, List<Integer> String, Date, Date) + getId() : int + setId(int) :void + getStart() : Date + setStart(Date) : void + getEnd() : Date + setEnd(Date) : void + getGuest() : Guest + setGuest(Guest) : void + getAdditionalInformation() : String + setAdditionalInformation(String) : void + getPayed() : Date + setPayed(Date) : void + getCanceled() : Date + setCanceled(Date) : void + getDays() : int + getPeople() : int + setPeople(int) : void + getRooms() : List<Integer> + setRooms(List<Integer>) : void + isPayed() : boolean + isCanceled() : boolean } @enduml
4c8196746e8e2157ed470ca66fc2117a8e7c8791
4a33cd939bd0845f543a4eba93fd879e3154eadb
/proxy/nginx.puml
ab96f9b25249429c2237909cf2e238cd68c229c0
[]
no_license
aryeht/grok-design-patterns
0ff5008a193a34313e7a45ffc9e7169bf003176c
e564555bf72611516f4bd008ccb2688389e9a78f
refs/heads/master
2021-01-16T16:55:07.463463
2020-02-26T13:16:58
2020-02-26T13:16:58
243,189,601
0
0
null
null
null
null
UTF-8
PlantUML
false
false
289
puml
@startuml together { class Client interface Server } interface Server { {abstract} handleRequest() } Server <- Client together { class api class nginx } api : handleRequest() nginx : handleRequest() Server <|.. api Server <|.. nginx nginx o-> api : subject @endum
b966eb1c89098474a722a13183a60004c7a4a7ca
70b6b3086d64939b4bd08cf8aad93ac5283cf1ac
/examples/towards/sealed.puml
c4f2dd9789ffe2ed541539eebb35595bbef8c763
[ "MIT" ]
permissive
tizuck/scala-uml-diagrams
4a9d35e54a0f6fb3ef753e46eb59e81d7c42a26b
c5c432132bff9df7ab60352f0e715583d9d51973
refs/heads/main
2023-03-01T02:44:15.288794
2021-02-03T22:26:55
2021-02-03T22:26:55
306,687,367
0
0
null
null
null
null
UTF-8
PlantUML
false
false
774
puml
@startuml package ast { abstract class Expression << trait>> abstract class BinaryOp << caseclass >> { op : String -- <<scalaclass>> -- isSealed } Expression <|-- BinaryOp : " " BinaryOp --> "1 " Expression : " expr1 " BinaryOp --> "1" Expression : " expr2" note "<<scalaclass>>\nisSealed" as N1 Expression -right- N1 } hide circle hide Expression members hide methods skinparam defaultFontName Source Code Pro skinparam ClassStereotypeFontColor #1b1f23 skinparam class { BackgroundColor White BorderColor #1b1f23 ArrowColor #1b1f23 FontColor #6f42c1 } skinparam note { BackgroundColor White BorderColor #1b1f23 ArrowColor #1b1f23 FontColor #d73a49 } skinparam stereotype { FontColor #d73a49 } @enduml
ef70c9d33a9d58099d86ad9de1b9588038926221
327724f1ecd2c5ef94f97bb515a9c88331afcb24
/plantuml/src/main/resources/phantuml.exercise/class-1.puml
caa0d182c095b665db1053721c425b95c13843e8
[]
no_license
JimiStephen/tutorial
a5e336c747916904c566df7cb2fc1802bbfc1a89
e96475b5ab9e3b0a755aca7b61b2c7405fca21fa
refs/heads/master
2023-04-13T12:58:14.397379
2023-04-09T05:23:14
2023-04-09T05:23:14
196,685,349
1
0
null
2023-01-13T23:37:25
2019-07-13T06:09:40
HTML
UTF-8
PlantUML
false
false
344
puml
@startuml abstract class AbstractList abstract AbstractCollection interface List interface Collection List <|-- AbstractList Collection <|-- AbstractCollection Collection <|- List AbstractCollection <|- AbstractList AbstractList <|-- ArrayList class ArrayList { Object[] elementData size() } enum TimeUnit { DAYS HOURS MINUTES } @enduml
0598cf32cb3968ac8a2d48a527a4f22cf45af091
277e486d2376a273e2dea329633c06af8415ce43
/Лабораторная работа 1/OOP_Lab1_Final/lab1.puml
80771add8401f64d4f7a13fbd1407929c0bdef24
[]
no_license
BrainKicker/Prog_Sem3
5c5e025d9e5bbbef31fc758d30a04b78de5c52c3
019f7a000a5d1fbee3d14afef9e38b81502fbe8d
refs/heads/main
2023-08-27T00:12:39.743896
2021-10-23T01:46:58
2021-10-23T01:46:58
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
5,402
puml
@startuml class vector<T> { - {static} initial_capacity : int = 10 - _size : int = 0 - _capacity : int = 0 - _arr : T* = nullptr -- - __copy(other : const vector<T>&) - __move(other : vector<T>&&) - __free() + vector(n : int = initial_capacity) {explicit} + vector(initializerList : const std::initializer_list<T>&) + vector(other : const vector<T>&) + vector(other : vector<T>&&) + ~vector() + resize(n : int) + reserve(n : int) + add(elem : const T&) + remove(index : int) + size() : int {const} + operator=(initializerList : const std::initializer_list<T>&) : vector<T>& + operator=(other : const vector<T>&) : vector<T>& + operator=(other : vector<T>&&) : vector<T>& + operator[](index : int) : T& + operator[](index : int) : const T& {const} <<friend>> + operator<<(out : std::ostream&, v : const vector<T>&) : std::ostream& + begin() : iterator + end() : iterator + rbegin() : iterator + rend() : iterator + from(index : int) : iterator + rfrom(index : int) : iterator + begin() : const_iterator {const} + end() : const_iterator {const} + rbegin() : const_iterator {const} + rend() : const_iterator {const} + from(index : int) : const_iterator {const} + rfrom(index : int) : const_iterator {const} } rectangle iterator <<typedef>> { } rectangle const_iterator <<typedef>> { } class vector_iterator<T> { - _reverse : bool - _cur : T* -- - vector_iterator(start : T*, reverse : bool = false) {explicit} + reverse() : vector_iterator<T>& + operator*() : T& + operator++() : vector_iterator<T>& + operator++(int) : vector_iterator<T> + operator+=(n : int) : vector_iterator<T>& + operator--() : vector_iterator<T>& + operator--(int) : vector_iterator<T> + operator-=(n : int) : vector_iterator<T>& + operator==(other : const vector_iterator<T>&) : bool {const} + operator!=(other : const vector_iterator<T>&) : bool {const} } class matrix<T> { - _width : int = 0 - _height : int = 0 - _matr : vector<column> = nullptr -- - __copy(other : const matrix<T>&) - __move(other : matrix<T>&&) + matrix(width : int, height : int) + matrix(initializerList : const std::initializer_list<column>&) + matrix(other : const matrix<T>&) + matrix(other : matrix<T>&&) + width() : int {const} + height() : int {const} + operator[](index : int) : column& + operator[](index : int) : const column& {const} + operator=(initializerList : const std::initializer_list<vector<T>>&) : matrix<T>& + operator=(other : const matrix<T>&) : matrix<T>& + operator=(other : matrix<T>&&) : matrix<T>& <<friend>> + operator<<(out : std::ostream&, m : const matrix<T>&) : std::ostream& } rectangle column <<typedef>> { } class pair<T,R=T> { + first : T + second : R -- - __copy(other : const pair<T,R>&) - __move(other : pair<T,R>&&) + pair(f : T, s : R) + pair(other : const : pair<T,R>&) + pair(other : pair<T,R>&&) + operator=(other : const : pair<T,R>&) + operator=(other : pair<T,R>&&) } class field { - _cells : matrix<cell> -- - __copy(other : const field&) - __move(other : field&&) + {static} default_entry_exit_generator(f : const field&) : pair<pair<int>,pair<int>> + field(width : int, height : int, generator : entry_exit_generator = default_entry_exit_generator) + field(other : const field&) + field(other : field&&) + width() : int {const} + height() : int {const} + get(x : int, y : int) : cell& + get(x : int, y : int) : const cell& {const} + operator=(other : const field&) : field& + operator=(other : field&&) : field& <<friend>> + operator<<(out : std::ostream&, f : const field&) : std::ostream& } rectangle entry_exit_generator <<typedef>> { } class cell { - _type : int = 0 - _item : artifact -- - __copy(other : const cell&) - __move(other : cell&&) + cell(type : int = CELL_NOTHING, item : const artifact& = artifact()) + cell(other : const cell&) + cell(other : cell&&) + type() : int {const} + set_type(type : int) + item() : const artifact& {const} + set_item(item : const artifact&) + operator=(other : const cell&) : cell& + operator=(other : cell&&) : cell& <<friend>> + operator<<(out : std::ostream&, c : const cell&) : std::stream& } enum cell_types { CELL_NOTHING = 0 CELL_ENTRY = 1 CELL_EXIT = 2 } class artifact { - _data : std::unique_ptr<data> -- - __copy(other : const artifact&) - __move(other : artifact&&) - {static} get_id() : int + artifact() + artifact(id : int) + artifact(other : const artifact&) + artifact(other : artifact&& + type() : int {const} + id() : int {const} + is_none() : bool {const} + operator=(other : const artifact&) : artifact& + operator=(other : artifact&&) : artifact& <<friend>> + operator<<(out : std::ostream&, art : const artifact&) : std::ostream& } class artifact::data { - _id : int = get_id() {const} - _type : int -- + data(type: int) + data(other : const data&) } enum artifact_types { ART_NOTHING = 0 } vector .d.> iterator: <<creates>> vector .d.> const_iterator: <<creates>> iterator .d.> vector_iterator: <<import>> const_iterator .d.> vector_iterator: <<import>> iterator .r[hidden].> const_iterator vector_iterator ..> vector: <<friend>> vector -r-* matrix matrix .d.> column column .l.> vector: <<import>> matrix -* field field .> pair: <<creates>> field .d.> entry_exit_generator entry_exit_generator .> pair: <<import>> cell -l-o field cell_types -u-o cell artifact -l-o cell artifact::data -u-* artifact artifact::data .d.> artifact: <<friend>> artifact_types -r-o artifact::data @enduml
08b5c4dbfa3d4cf58792d14bcdb489f138379321
0e0595b97aa91ffada0fcd46baf3f80428685c66
/src/main/java/flyweight/doc/flyweight.puml
1334f722efc28b49eeacb67c8b1bacbff7685116
[ "Zlib" ]
permissive
alarm10086/GoF
a6a47390080075ee3387593843c2bf3d2e40ce50
153d458a30bb2da2e79ee7b142353d0323b83330
refs/heads/master
2020-03-20T21:20:58.000341
2018-07-27T19:12:43
2018-07-27T19:12:43
137,736,414
0
0
null
null
null
null
UTF-8
PlantUML
false
false
266
puml
@startuml note "享元模式" as N1 Flyweight --o FlyweightFactory: Creates < FlyweightFactory <-- Client: Uses < Flyweight <-- Client: Uses < class Flyweight { == methodA methodB } class FlyweightFactory { pool == getFlyweight } @enduml
d7b10c96a798c8d3b2214dc42e34d87b77cd3386
0dd85a64e032128821cd978d9871185c91324af5
/UML/diagram.puml
d3d5371bc6d92e09778505ee6167f7faf27c8e68
[]
no_license
graciebliss/Bliss-cop3330-assignment4
5f82c8ba1e4d805aeb160dc1eebcfcdf60463fe3
63b7c63102ba13f934bffa1cccdb6888a23521b2
refs/heads/master
2023-06-12T00:04:09.211641
2021-07-11T16:21:25
2021-07-11T16:21:25
383,243,109
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,005
puml
@startuml 'https://plantuml.com/class-diagram class ListProgram { + main() + start() } class ListProgramController { + addListClick(ActionEvent actionEvent) + removeListClick(ActionEvent actionEvent) + addClick(ActionEvent actionEvent) + removeClick(ActionEvent actionEvent) + editListClick(ActionEvent actionEvent) + editClick(ActionEvent actionEvent) + markCompleteClick(ActionEvent actionEvent) + displayAll(ActionEvent actionEvent) + SaveOneClick(ActionEvent actionEvent) + saveAllClick(ActionEvent actionEvent) + loadOneClick(ActionEvent actionEvent) + displayComplete(ActionEvent actionEvent) + displayIncomplete(ActionEvent actionEvent) + loadMultipleClick(ActionEvent actionEvent) + sortByDateClick(ActionEvent actionEvent) } class Lists { ArrayList<List> Lists + createLists() + addAList(List list) + removeAList(List list) + editList(List list) + loadList(File file) + loadLists(File file) + saveList(File file, List list) + saveLists(File file, ArrayList<List>) } class List { String listTitle ArrayList<Tasks> Tasks ArrayList<Tasks> CompletedTasks ArrayList<Tasks> IncompleteTasks + createList(String title) + setTitle(String title) + getTitle() + getTasks() + addTask(Task task) + editTask(Task task) + removeTask(Task task) + markCompleted(Boolean completed) + displayCompletedTasks() + displayIncompleteTasks() + sortByDate(List list) + toString() } class Task { String descript String date Boolean isCompleted + createTask(String descript, String date, Boolean isCompleted) + setDescription(String descript) + setDate(String date) + setIsCompleted(Boolean isCompleted) + getDescription() + getDate() + getIsCompleted() + toString() } javafx.Application <|-- ListProgram ListProgram -- ListProgramController ListProgramController *-> Lists Lists *--> List List *--> Task @enduml
081ad9d66e36c39396fd4c14e694af32148e0cba
5c415270a84b05da7de1098123f86e2e7538ed63
/uml/ex_1/User.puml
e18df7846b2d32ee310c9d0acb1b44c432faec68
[]
no_license
maxime-bambara/php-poo-learning
9ab934fc60a046cb3693af551ab87d0581e1f1d0
38098553777fbfa15367706fb6637636ebf0b3f0
refs/heads/master
2023-02-11T13:07:19.012140
2021-01-12T09:00:43
2021-01-12T09:00:43
328,599,965
0
0
null
null
null
null
UTF-8
PlantUML
false
false
169
puml
@startuml class User { - friends: array + getFriends(): array + addFriend(Friend) + removeFriend(Friend) + likeVideo(): void + writeComment(): void } @enduml
ce1d4814fb876a089d7d2efd57ef4f9cf491d79e
2d4c9e512a49683156794f355c73ebbde4f9ef31
/Test Manager Module.puml
9d6297893cafb2c2284e8df56b7eafbec02d4adc
[]
no_license
jacxon4/test-manager-module-assessment
69952959b889e84629aa3114b8c43ef974d18fce
8fb174fdc60b934dd863bde776e16cf2dc318c33
refs/heads/master
2020-05-04T11:04:10.341415
2019-04-02T14:53:19
2019-04-02T14:53:19
179,100,054
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,107
puml
@startuml Interface ITest TestManagerModule ...> ITest TestManagerModule ...> IOperation ITest <|.. MicrobiologyTest ITest <|.. BiochemistryTest ITest <|.. HaematologyTest ITest <|.. ImmunologyTest Order o-- ITest IOperation <|.. ValidateOperation IOperation <|.. RepeatOperation Order : - tests: ITest[] ITest : {abstract}accept(IOperation) ITest : - testType: string ITest : - name: string MicrobiologyTest : - microbiologyTestProp: string MicrobiologyTest : +accept(IOperation){operation.perform(this)} BiochemistryTest : - biochemistryTestProp: string BiochemistryTest : +accept(IOperation){operation.perform(this)} HaematologyTest : - haematologyTestProp: string HaematologyTest : +accept(IOperation){operation.perform(this)} ImmunologyTest : - immunologyTestProp: string ImmunologyTest : +accept(IOperation){operation.perform(this)} Interface IOperation IOperation : {abstract}perform(ITest) ValidateOperation : +perform(ITest) RepeatOperation : +perform(ITest) enum TestTypes{ Haematology Microbiology Immunology Biochemistry } @enduml
a1661fc8dade2e173abc4ceb97133cc029a4aa2f
6c369b570f222c894964989ee63b706c69e8174d
/docs/dev/design_patterns/command.puml
579a309deddb32a82ed622b3d38bf20c21d73b95
[]
no_license
k2works/etude_for_rails
f74eae1844a9430d3c81047203ffc5d384e995ed
e728291c99ad4e34f144deedc44617bb796ac275
refs/heads/master
2021-01-20T01:46:29.373716
2018-04-26T08:53:20
2018-04-26T08:53:20
89,328,180
0
0
null
2017-06-08T02:25:58
2017-04-25T07:00:29
HTML
UTF-8
PlantUML
false
false
183
puml
@startuml Command <|-- ConcreteCommand1 Command <|-- ConcreteCommand2 class Command { execute() } class ConcreteCommand1 { execute() } class ConcreteCommand2 { execute() } @enduml
a230c38a28537fbb1926c5176e7a4b490db85a76
3d33f4e31702fdba9b2d095dd3d91d711409264c
/class-diagram/core-endorser-class.puml
681b16651a5b4b5b7cc8668d984cb346d811ddf5
[ "Apache-2.0", "CC-BY-4.0" ]
permissive
JulienGuo/fabric-addsm
81a181dd4f91160abbd9f131d87e8c187a32c542
8a489300031d07c09f44fc0f1687793f6eaaa1c0
refs/heads/master
2021-05-04T21:27:43.690594
2018-02-02T05:43:34
2018-02-02T05:43:34
119,926,380
0
1
null
null
null
null
UTF-8
PlantUML
false
false
252
puml
@startuml namespace github.com\\hyperledger\\fabric\\core\\endorser { class chaincodeError { status int32 msg string } } namespace github.com\\hyperledger\\fabric\\core\\endorser { class Endorser { policyChecker policy.PolicyChecker } } @enduml
1ef439d036d50022db4384a2e954d98de2f9e5dd
c9d49168edc406499204f69721424bb6deded5fd
/Modelo/Usuario.plantuml
8a5ae03600e7923173a9f645415be8e573f402d9
[ "MIT" ]
permissive
JonatasAfonso/poc-consultorio-comum
1d2880314bacbf7809f59c2d76c8619e73bf6253
936a507ec888eb978abfdbf44c7cb4fe30a3633d
refs/heads/main
2023-03-12T19:39:26.314301
2021-02-26T12:35:39
2021-02-26T12:35:39
342,554,404
0
0
null
null
null
null
UTF-8
PlantUML
false
false
83
plantuml
@startuml class Usuario{ Id : Guid Login : String Password : String } @enduml
43b01f863d97f394b22968d046ba4098dfcdbbbd
a9baa2e8564fa35e0cab0bed8b3f0a9e3648ef37
/fdv.service.localization/src/main/java/de/gematik/ti/epa/android/fdv/service/localization/localization.plantuml
294d1cbb1104fb6d9f40ccba9d3568a3f655fb81
[ "Apache-2.0" ]
permissive
gematik/ref-ePA-Service-Localization-Android
e24a058725921e7d089bdfecb2a1b409fef15ce0
89eed874678075f56f8173f8e103e0c2199f15a6
refs/heads/master
2022-01-12T22:35:53.149197
2022-01-07T07:24:07
2022-01-07T07:24:07
216,012,799
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,149
plantuml
@startuml title __LOCALIZATION's Class Diagram__\n namespace de.gematik.ti.epa.android.fdv.service.localization { abstract class de.gematik.ti.epa.android.fdv.service.localization.AbstractServiceLocator { {static} - PORT : int {static} - SCHEME : String - dnsTxtRecordValues : Map<String, GatewayModulePathType> - fqdn : String - lookupStatus : LookupStatus - running : boolean + endpointURLForInterface() + getHomeCommunityId() + getLookupStatus() + isRunning() + lookup() # answerCallback() {abstract} # doResolve() # setRunning() ~ handleAnswer() ~ setLookupStatus() - checkTxtVersion() - clear() - fillDnsTxtRecordValues() - fillModuleList() - handleRecordsAsStrings() - handleTTL() - setFqdn() } } namespace de.gematik.ti.epa.android.fdv.service.localization { class de.gematik.ti.epa.android.fdv.service.localization.GatewayModulePathType { - path : String - validUntil : Date + GatewayModulePathType() + getPath() + getValidUntil() } } namespace de.gematik.ti.epa.android.fdv.service.localization { class de.gematik.ti.epa.android.fdv.service.localization.ServiceLocator { - abstractServiceLocator : IServiceLocalizer + ServiceLocator() + endpointURLForInterface() + getHomeCommunityId() + getLookupStatus() + lookup() } } namespace de.gematik.ti.epa.android.fdv.service.localization { class de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV10 { + ServiceLocatorV10() # doResolve() - initializeResolverCallback() } } namespace de.gematik.ti.epa.android.fdv.service.localization { class de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV9 { {static} - DEFAULT_TTL : int {static} - TAG : String - dnssecResolverApi : DnssecResolverApi + ServiceLocatorV9() # doResolve() - getApplicationUsingReflection1() - getApplicationUsingReflection2() } } de.gematik.ti.epa.android.fdv.service.localization.AbstractServiceLocator .up.|> de.gematik.ti.epa.fdv.service.localization.spi.IServiceLocalizer de.gematik.ti.epa.android.fdv.service.localization.ServiceLocator .up.|> de.gematik.ti.epa.fdv.service.localization.spi.IServiceLocalizer de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV10 .up.|> de.gematik.ti.epa.fdv.service.localization.spi.IServiceLocalizer de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV10 -up-|> de.gematik.ti.epa.android.fdv.service.localization.AbstractServiceLocator de.gematik.ti.epa.android.fdv.service.localization.ServiceLocatorV9 -up-|> de.gematik.ti.epa.android.fdv.service.localization.AbstractServiceLocator 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
64c99f2fdd1b1305d7ede592f3c2b0dea6ebeec1
9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9
/java/resources/plantuml/behavioral/Command.puml
9a506f61d225433be8a54301d612cb25cb1eca3c
[ "MIT" ]
permissive
vuquangtin/designpattern
4d4a7d09780a0ebde6b12f8edf589b6f45b38f62
fc672493ef31647bd02c4122ab01992fca14675f
refs/heads/master
2022-09-12T07:00:42.637733
2020-09-29T04:20:50
2020-09-29T04:20:50
225,505,298
0
0
null
2022-09-01T23:16:34
2019-12-03T01:41:33
Java
UTF-8
PlantUML
false
false
228
puml
@startuml scale 1024 height Command <|.. ConcreteCommand Receiver <-- ConcreteCommand interface Command{ excute() } class ConcreteCommand { -Receiver receiver +excute(); } class Receiver{ +action(); } @enduml
1ae90c6ca982e8b631de2772554dab43923536ed
740ec837551b09f09677854163ecd30ba6ea3cb7
/documents/sd/plantuml/application/Core/MORR/Session/SessionConfiguration.puml
42cefbe580de26c596cc122ce296ae4c9e6017b6
[ "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
418
puml
@startuml skinparam monochrome true skinparam classAttributeIconSize 0 interface IConfiguration IConfiguration <|-- SessionConfiguration !startsub default class SessionConfiguration { + Encoders : IEnumerable<Type> <<get>> <<set>> + Decoders : IEnumerable<Type>? <<get>> <<set>> + RecordingDirectory : DirectoryPath <<get>> <<set>> + Parse(configuration : RawConfiguration) : void } !endsub @enduml
1745ad67baae8cdc9fe735edecff612ca1999fb8
94a499e05faee7347671752ec0628993dff072ea
/map_based_resources/Point.puml
501697b3549800f3bafc423e3ae8524fe5a57d81
[]
no_license
AlandSailingRobots/AerialImagesToWaterDepth
b503df8ab6ee90dcab29604d57ff3dd3afd11e22
fa486a0e38f1f252fa533b76eaf3424cbf33847e
refs/heads/develop
2020-04-22T11:22:13.761365
2019-11-27T19:34:46
2019-11-27T19:34:46
170,337,749
2
3
null
2019-02-18T14:53:35
2019-02-12T15:04:16
null
UTF-8
PlantUML
false
false
1,779
puml
@startuml title Point class DataPoint { + FinnishSystem : str + MeasurableSystem : str + coordinate_type : str + decimals_in_point : int + level : int - __init__(latitude, longitude, coordinate_type, level) - reduceDecimals(decimal=decimals_in_point) - convert_coordinate_systems(inverse=False, destination=FinnishSystem, save_in_point=False, return_point=False) - convert_to_correct_coordinate_system(initial_point, correct_coordinate_system=MeasurableSystem) - calculate_distance_to_point(other_point) - circle_distance(distance) - create_neighbouring_point(distance, heading, rounding=decimals_in_point) } class LocationInImage { + height: float + width: float - __init__(width, height) } class ImagePoint{ + cropped_images: Dict[Any, Image] + data_point_in_image: LocationInImage + image_tile : ImageTile + layer: MapLayer + name: str + web_map : MapService _ __init__(data_point_in_image, image_tile, web_map, layer) _ get_box_around(size, data_point=None) _ get_cropped_image(size, square_size=3, lock=None) _ get_image_bounding_box(size, square_size, lock=None) _ make_image_bigger(data_point_image, new_image_size, floor_square_size, lock=None) _ show_image_with_point() } class MeasurementPoint { + data_point: DataPoint + image_points: List[ImagePoint] - __init__(data_point) - add_image_point(image_point) - get_cropped_images(size, lock=None) - get_cropped_image_single(size, position=0, lock=None) - retrieve_all_images() } '!includesub MapResources.puml!ImageTile MeasurementPoint "1" *-- "*" ImagePoint MeasurementPoint "1" *-- "1" DataPoint ImageTile "1" --*"1" ImagePoint LocationInImage "1" *-- "1" ImagePoint @enduml
f31873199da19eee81db8feeb79341670c8d5ab7
7844bf3adaf752c1a3819e0d540d46051b36ab07
/docs/behavioral_patterns/observer.puml
574412f9d9775b7111921681d55675efe0b40f9a
[ "MIT" ]
permissive
johanvergeer/python-design-patterns
4f42463eabdfad50226aa019904b702681aba1fe
db63eeb5dd3c6536ba75dc70369aa895a4cf9d0c
refs/heads/master
2021-01-02T17:38:47.291145
2020-02-18T16:11:20
2020-02-18T16:11:27
239,725,177
0
0
null
null
null
null
UTF-8
PlantUML
false
false
637
puml
@startuml package observer { enum WeatherType { + COLD + RAINY + SUNNY + WINDY } class Weather { - _current_weather : WeatherType + add_observer(obs : WeatherObserver) + remove_observer(obs : WeatherObserver) + time_passes() - _notify_observers() } class Hobbits { + Hobbits() + update(currentWeather : WeatherType) } class Orcs { + Orcs() + update(currentWeather : WeatherType) } interface WeatherObserver { + update(WeatherType) {abstract} } } Weather --> "0..* _observers" WeatherObserver Hobbits .up.|> WeatherObserver Orcs .up.|> WeatherObserver @enduml
3bfbf0eb590e55b612b01501cecd07788ec36e1a
2a05c19c522de7ac2f880aa0ba60547ace21cc30
/uml/dependency.puml
592b988fb59e6545765b201cd8a026cf3841923f
[]
no_license
lbvs86823/lbvs86823.github.com
458c5ca2ccae6a54519129a86545d817cfaf418f
129e1ea762ab70c2b54886b561775d5dfd7841d6
refs/heads/master
2021-12-07T03:23:18.169009
2021-08-20T09:19:30
2021-08-20T09:19:30
16,271,667
0
0
null
null
null
null
UTF-8
PlantUML
false
false
164
puml
@startuml title 依赖关系 class Driver { - name : String + driving(Car car): void } class Car { + move(): void } Driver ..> Car : 依赖 @enduml
fd727494937edc304d4bede3e9178989819e8e98
ad220fbaa3799ab6669a89b07f799234424efa96
/src/controllers/controllers.plantuml
3ddb90d7e3d9806b8b8352e0e359657f07cb771d
[]
no_license
Bert54/ACL_2019_TP11_GROUPE3
271befc364675de7f346618af7e51d542c922a21
ec7e5036d1bfb81e5b70b6f05579cb938485f7d7
refs/heads/master
2020-11-27T03:04:42.612167
2019-12-14T01:38:56
2019-12-14T01:38:56
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,762
plantuml
@startuml title __CONTROLLERS's Class Diagram__\n namespace controllers { class controllers.ExitAppMouseController { + ExitAppMouseController() + mouseClicked() + mouseEntered() + mouseExited() + mousePressed() + mouseReleased() } } namespace controllers { class controllers.InstructionMouseController { - closeGameButton : JPanel - instructionGameButton : JPanel - retourGameButton : JPanel - startGameButton : JPanel + InstructionMouseController() + mouseClicked() + mouseEntered() + mouseExited() + mousePressed() + mouseReleased() } } namespace controllers { class controllers.PauseMouseController { + PauseMouseController() + mouseClicked() + mouseEntered() + mouseExited() + mousePressed() + mouseReleased() } } namespace controllers { class controllers.PlayMouseController { + PlayMouseController() + mouseClicked() + mouseEntered() + mouseExited() + mousePressed() + mouseReleased() } } namespace controllers { class controllers.RetourMouseController { + RetourMouseController() + mouseClicked() + mouseEntered() + mouseExited() + mousePressed() + mouseReleased() } } namespace controllers { class controllers.StartGameMouseController { - closeGameButton : JPanel - instructionGameButton : JPanel - retourGameButton : JPanel - startGameButton : JPanel + StartGameMouseController() + mouseClicked() + mouseEntered() + mouseExited() + mousePressed() + mouseReleased() } } controllers.ExitAppMouseController .up.|> java.awt.event.MouseListener controllers.ExitAppMouseController o-- engine.GameController : worldController controllers.InstructionMouseController .up.|> java.awt.event.MouseListener controllers.InstructionMouseController o-- engine.GameController : worldController controllers.PauseMouseController .up.|> java.awt.event.MouseListener controllers.PauseMouseController o-- engine.GameController : worldController controllers.PlayMouseController .up.|> java.awt.event.MouseListener controllers.PlayMouseController o-- engine.GameController : worldController controllers.RetourMouseController .up.|> java.awt.event.MouseListener controllers.RetourMouseController o-- engine.GameController : worldController controllers.StartGameMouseController .up.|> java.awt.event.MouseListener controllers.StartGameMouseController o-- engine.GameController : worldController @enduml
92a5bf57575160ae7d205cd9d984ff85d6598f5c
296d4ac94193286428f4a2cd6736a2ecac4b8081
/docs/uml_class_common_adapter.puml
b9ae85d53aeab811fb7caec5dab788cc0ba8a413
[]
no_license
shellever/ListView
4d70577c0cbebe35054d422a61cc61cc4a33f626
71d05d202f2c0ea24db0e19e231933d9a4f38843
refs/heads/master
2020-06-28T16:04:03.209709
2016-11-26T09:05:27
2016-11-26T09:05:27
74,490,371
3
1
null
null
null
null
UTF-8
PlantUML
false
false
2,482
puml
@startuml class Bean { private String title; private String desc; private String time; private String phone; private boolean isChecked; __ ..Constructor .. public Bean(); public Bean(String title, String desc, String time, String phone); .. Getter and Setter .. public String getTitle(); public void setTitle(String title); public String getDesc(); public void setDesc(String desc); public String getTime(); public void setTime(String time); public String getPhone(); public void setPhone(String phone); public boolean isChecked(); public void setChecked(boolean checked); .. toString .. public String toString(); } class ViewHolder { private SparseArray<View> mViews; private int mPosition; private View mConvertView; __ .. Private Constructor .. private ViewHolder(Context context, ViewGroup parent, int layoutId, int position); .. Public Method .. public static ViewHolder get(Context context, View convertView, ViewGroup parent, int layoutId, int position); public View getView(int viewId); public View getConvertView(); .. Setter Method .. public ViewHolder setText(int viewId, String text); public ViewHolder setImageResource(int viewId, int resId); public ViewHolder setImageBitmap(int viewId, Bitmap bitmap); public ViewHolder setImageURI(int viewId, Uri uri); } abstract class CommonAdapter<T> { protected Context mContext; protected List<T> mDataList; protected LayoutInflater mInflater; protected int mLayoutId; __ .. Constructor .. public CommonAdapter(Context context, List<T> dataList, int layoutId); .. BaseAdapter .. public int getCount(); public T getItem(int position); public long getItemId(int position); public View getView(int position, View convertView, ViewGroup parent); .. Abstract Method .. public abstract void convert(ViewHolder holder, T t); } BaseAdapter <|-- CommonAdapter : extends ViewHolder <.. CommonAdapter : parameterify class CustomCommonAdapter<Bean> { public CustomCommonAdapter(Context context, List<Bean> dataList, int layoutId); public void convert(ViewHolder holder, final Bean bean); } CommonAdapter <|-- CustomCommonAdapter : extends Bean <.. CustomCommonAdapter : genericify Bean <.. CustomCommonAdapter : parameterify package mViews <<Database>>{ class SparseArray<View> } ViewHolder <-- mViews @enduml
6355b18d09008846fdb4ed4751b2db8bb6624876
57981e0a8e7929bf474c5299307a0a3fca6c08b8
/uml/toDoList.puml
a3974757c512f99068d298fa18d4904e36318d6b
[]
no_license
erica-joseph/joseph-cop3330-assignment4part2
a2c794f305692dca2cedfdfce7a7e95ff93c14eb
a0cfc8b7d8abc78423a593d5f1b92e1b80223167
refs/heads/master
2023-06-06T19:46:29.547398
2021-07-17T16:57:00
2021-07-17T16:57:00
385,101,119
0
0
null
null
null
null
UTF-8
PlantUML
false
false
856
puml
@startuml class toDoList { main() start() } class toDoListController { toDoListModel NavBar ListView AddItemButton DatePickerButton DescriptionTextField } class toDoListModel { addtoDoList() removetoDoList() editTitletoDoList() addItemtoDoList() removeItemtoDoList() CompleteItemtoDoList() displayExistingItemtoDoList() displayIncompleteItemtoDoList() displayCompleteItemtoDoList() saveItemstoDoList() savetoDoList() loadtoDoList() loadMultotoDoList() toString(): String } class toDoListItem { description: String dueDate: Date 'of format MM-DD-YYYY editDesItemtoDoList (String) editDueItemtoDoList (Date) toString(): String } toDoListModel *->toDoListItem toDoList -- toDoListController toDoListController *--> toDoListModel @enduml
b4d7153f07a81f88ce7fac3209392fad295c5fcf
9acdf3dfa58d45f1f3d6c88ddd73cb8a31ba9b19
/uml/diagram.puml
dde9697eba73675ac00883d712e937cbf00f207d
[]
no_license
Sachman19/mishra-cop3330-assignment4part2
63746986fba9eeb70fe455516e87a38405236221
335a1a8fc64652ea21de4f82d69fa82cbc7e76ba
refs/heads/master
2023-06-17T13:29:05.264766
2021-07-15T18:16:21
2021-07-15T18:16:21
385,050,214
0
0
null
null
null
null
UTF-8
PlantUML
false
false
449
puml
@startuml 'https://plantuml.com/class-diagram class app class toDoList class item app <-- toDoList toDoList <-- item class app { ArrayList toDoLists menu() sort() } class toDoList { ArrayList items String title setTitle() createItem() modItem() getList() } class item { String description int year, month, day int complete setters() 'setComplete() 'setDate() 'setDescription() getters() 'getComplete() 'getDate() 'getDescription() } @enduml
f904b4a84de7961bbee52b481323e34648724c9e
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/GraphQLPendingOperationError.puml
0f915e82c49a9228a66361166402407ce6c05ee3
[]
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
424
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 GraphQLPendingOperationError [[GraphQLPendingOperationError.svg]] extends GraphQLErrorObject { code: String } interface GraphQLErrorObject [[GraphQLErrorObject.svg]] { code: String } @enduml
277c03f16f292dde98463f7c0427a638ad080455
d68b1330ef8ce59c635f4692417a9192d5206942
/framework/src/main/java/no/ntnu/idi/apollo69framework/uml/framework_dependencies.plantuml
6c78efa00eb84f1b4307662382c6e9a1370245d1
[ "MIT" ]
permissive
GardSteinsvik/apollo-69
847f74b762383641db20214ff7b5281c9d63f130
96cbf617618075a54613112bc8c0b34215fd50f7
refs/heads/master
2021-02-12T20:21:06.214711
2020-04-27T16:02:37
2020-04-27T16:02:37
244,626,902
0
0
null
null
null
null
UTF-8
PlantUML
false
false
8,647
plantuml
@startuml namespace no.ntnu.idi.apollo69framework { class Apollo69Framework { {static} + getMessageClasses() } class MessageClassListHolder { {static} - CLASSES_SINGLETON : List<Class> } class GameObjectDimensions { {static} + ASTEROID_HEIGHT : float {static} + ASTEROID_WIDTH : float {static} + GAME_RADIUS : int {static} + GEM_HEIGHT : float {static} + GEM_RADIUS : float {static} + GEM_WIDTH : float {static} + INNER_RADIUS : int {static} + POWERUP_HEIGHT : float {static} + POWERUP_RADIUS : float {static} + POWERUP_WIDTH : float {static} + SHOT_HEIGHT : float {static} + SHOT_WIDTH : float {static} + SPACE_SHIP_HEIGHT : float {static} + SPACE_SHIP_WIDTH : float } class no.ntnu.idi.apollo69framework.HelperMethods { {static} + getRandomNumber() {static} + getRandomPosition() } namespace network_messages { class DeviceInfo { - deviceId : String + DeviceInfo() + DeviceInfo() + getDeviceId() + setDeviceId() } class PlayerDead { + PlayerDead() } class PlayerInQueue { - position : int - queueSize : int + PlayerInQueue() + PlayerInQueue() + getPosition() + getQueueSize() + setPosition() + setQueueSize() } class PlayerInput { - boosting : boolean - playerId : String - posX : float - posY : float - rotationDegrees : float - shooting : boolean + PlayerInput() + PlayerInput() + getPlayerId() + getPosX() + getPosY() + getRotationDegrees() + getType() + isBoosting() + isShooting() + setBoosting() + setPlayerId() + setPosX() + setPosY() + setRotationDegrees() + setShooting() + setType() } enum PlayerInputType { BOOST MOVE ROTATE SHOOT } class PlayerMatchmade { } class PlayerSpawn { - name : String - playerId : String + PlayerSpawn() + PlayerSpawn() + getName() + getPlayerId() + getPositionDto() + setName() + setPlayerId() + setPositionDto() + toString() } class ServerMessage { - message : String - recipientDeviceId : String + ServerMessage() + ServerMessage() + ServerMessage() + getMessage() + getRecipientDeviceId() + isForDevice() + setMessage() + setRecipientDeviceId() } class UpdateMessage { - asteroidDtoList : List<AsteroidDto> - explosionDtoList : List<ExplosionDto> - pickupDtoList : List<PickupDto> - playerDtoList : List<PlayerDto> - powerupDtoList : List<PowerupDto> - shotDtoList : List<ShotDto> + UpdateMessage() + getAsteroidDtoList() + getExplosionDtoList() + getPickupDtoList() + getPlayerDtoList() + getPowerupDtoList() + getShotDtoList() + setAsteroidDtoList() + setExplosionDtoList() + setPickupDtoList() + setPlayerDtoList() + setPowerupDtoList() + setShotDtoList() } namespace data_transfer_objects { class AsteroidDto { + hp : float + AsteroidDto() + AsteroidDto() } class DimensionDto { + height : float + width : float + DimensionDto() + DimensionDto() + DimensionDto() } class ExplosionDto { + frameNumber : int + ExplosionDto() + ExplosionDto() } enum GemType { COIN DEFAULT METEORITE RUBY STAR } class PickupDto { + PickupDto() + PickupDto() } class PlayerDto { + boosting : boolean + hp : float + name : String + playerId : String + score : int + shieldHp : float + spaceshipType : int + visible : boolean + PlayerDto() + PlayerDto() } class PositionDto { + x : float + y : float + PositionDto() + PositionDto() + PositionDto() } class PowerupDto { + PowerupDto() + PowerupDto() } enum PowerupType { ENERGY HEALTH INVISIBLE SHIELD } class RotationDto { + degrees : float + x : float + y : float + RotationDto() + RotationDto() } class ShotDto { + radius : float + ShotDto() + ShotDto() } } } } no.ntnu.idi.apollo69framework.Apollo69Framework +-down- no.ntnu.idi.apollo69framework.Apollo69Framework.MessageClassListHolder no.ntnu.idi.apollo69framework.network_messages.PlayerInput o-- no.ntnu.idi.apollo69framework.network_messages.PlayerInputType no.ntnu.idi.apollo69framework.network_messages.PlayerSpawn o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.AsteroidDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.DimensionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.GemType no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.RotationDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupType no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ShotDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto @enduml
9dacd65473217c425c581536e53fe35b3a51fedc
304a78f676c311b54190672c51530c87ce067b8d
/HW4/src/HW4.puml
220adf67d49b7299910e5c622f373d6d35f18d00
[]
no_license
TurkerTercan/Data-Structures
eb21cd7a323bf1018108d676f589038de812a50d
18da9c73e2ba4171036c94ee1c9b14723efde95f
refs/heads/main
2023-06-10T21:54:51.984209
2021-07-05T20:49:44
2021-07-05T20:49:44
383,256,819
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,366
puml
@startuml abstract class AbstractList abstract class AbstractCollection interface Deque interface ListIterator class RecursiveMethods{ +{static} reverseString(String) : String +{static} elfishWord(String) : boolean -{static} elfishRecursive(String, boolean, boolean, boolean) : boolean +{static} recursiveSelectionSort(int[], int, int) : -{static} findMinimumIndex(int[], int, int) : int -{static} OPERATORS : String -{static} calculateOperator(char, Stack<Integer>) : int -{static} calculateOperatorReverse(char, Stack<Integer>): int -{static} isOperator(char) : boolean +{static} EvaluatePrefix(String) : int +{static} EvaluatePostfix(String) : int +{static} prefix(String, Stack<Integer>) : int -{static} postfix(String, Stack<Integer>) : int +{static} printPattern(int[][], int, int) : -{static} recursivePrint(int[][], int, int, int, int) : -{static} printTopLine(int[][], int, int, int, int) : -{static} printRightLine(int[][], int, int, int, int) : -{static} printBottomLine(int[][], int, int, int, int) : -{static} printLeftLine(int[][], int, int, int, int) : } class MyDequeClass<E>{ -final mylist : MyLinkedList<E> -final removed : RemovedLinkedList<E> +add(E) : boolean +iterator(): Iterator<E> +descendingIterator() : Iterator<E> +addFirst(E) : +addLast(E) : +offerFirst(E) : boolean +offerLast(E) : boolean +removeFirst() : E +removeLast() : E +pollFirst() : E +pollLast() : E +getFirst() : E +getLast() : E +peekFirst() : E +peekLast() : E +removeFirstOccurrence(Object) : boolean +removeLastOccurrence(Object) : boolean +offer(E) : boolean +remove() : E +poll() : E +element() : E +peek() : E +push() : E +pop() : E +size() : int +toString() : String } class MyLinkedList<E>{ -head : Node<E> -tail : Node<E> -removed : RemovedLinkedList<E> -size : int +size() : int +get() : E +addFirst(E) : +addLast(E) : +add(E) : boolean +iterator(): Iterator<E> +descendingIterator(): Iterator<E> +listIterator(int) : ListIterator<E> +listIterator() : ListIterator<E> } class MyListIterator{ -nextItem : Node<E> -lastItemReturned : Node<E> -index : int +hasNext() : boolean +next() : E +hasPrevious() : boolean +previous() : E +nextIndex() : int +previousIndex() : int +remove() : +add() : +set() : } class RemovedLinkedList<E>{ -head : Node<E> -tail : Node<E> -size : int +addNode(Node<E>) : +removeNode() : Node<E> +size() : int +get() : E +addFirst(E) : +addLast(E) : +add(E) : boolean +iterator(): Iterator<E> +descendingIterator(): Iterator<E> +listIterator(int) : ListIterator<E> +listIterator() : ListIterator<E> } class Node<E>{ +data : E +next : Node<E> +prev : Node<E> } MyListIterator <|.. ListIterator MyLinkedList <|-- AbstractList RemovedLinkedList <|-- AbstractList MyLinkedList *-- Node MyLinkedList *-- MyListIterator RemovedLinkedList *-- Node RemovedLinkedList *-- MyListIterator MyDequeClass *-- RemovedLinkedList MyDequeClass *-- MyLinkedList MyDequeClass <|-- AbstractCollection MyDequeClass <|.. Deque class SyntaxErrorException{ } SyntaxErrorException <|-- Exception @enduml
3b21c75185a7ef80a75ad3fc0bf3cc7ffdf5d6f0
aae14e6e15d33643a7b0942e7b94660089cd9d8c
/Backend/btcexplorer/src/main/java/com/jxust/btcexplorer/controller/controller.plantuml
d98f57c46143de2afb214efe12a5a5f7aeb0e50d
[]
no_license
KhayaSambo/Spring-Bitcoin-Explorer-with-Angular
973c4c06874f7f34cbd65c9aed3a6c6664c97aa5
d819c679cf0a5fc39e0b3ea985453c46baf0e834
refs/heads/main
2023-06-13T03:49:24.801551
2021-06-30T09:57:42
2021-06-30T09:57:42
381,642,600
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,293
plantuml
@startuml title __CONTROLLER's Class Diagram__\n namespace om.jxust.btcexplorer { namespace controller { class com.jxust.btcexplorer.controller.BlockController { + blockInfo() + blockhash() + control() + getBalances() + getBestBlockHash() + getBlock() + getBlockChainInfo() + getBlockChainTips() + getBlockCount() + getBlockHash() + getDifficulty() + getMemPoolInfo() + getNewAddress() + getRPCInfo() + getWalletInfo() + listWallets() + setPreciousBlock() + uptime() + utils() + wallet() } } } namespace om.jxust.btcexplorer { namespace controller { class com.jxust.btcexplorer.controller.IndexController { + fullscreen() + index() } } } com.jxust.btcexplorer.controller.BlockController o-- com.jxust.btcexplorer.service.BTCService : service 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
588f0e5b599410638f23cd572152a749607caf28
13dfd92e94ac994798c21f7e2716669182591b4d
/doc/mcd.puml
09927700562aa3399215e8417b5bd2f9b10259c3
[]
no_license
0xnome/pldjardin
0c5ade37c7b21c559d433acf22b35d08f56fa0d9
c43f1fd38446176318e1bce9c14c991844004658
refs/heads/master
2020-12-24T21:37:38.528428
2016-05-04T02:28:02
2016-05-04T02:28:02
57,016,312
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,722
puml
@startuml skinparam shadowing false skinparam monochrome false skinparam TitleFontSize 20 skinparam sequenceTitleFontSize 20 skinparam sequenceTitleFontStyle plain skinparam state { BackgroundColor white BackgroundColor<<Warning>> lightblue } class Plante{ id nom espece - [liste?] image description } class Jardin{ id nom site email de contact horaire - [texte libre] description image restreint - [bool -> restreint aux membres] compostier - [bool] } class Lopin{ id nom description } class Utilisateur{ id nom prenom mail motdepasse ville photo description - [texte pour se presenter?] } class Adresse{ ville code postal rue latitude longitude } class Actualite{ id texte datetime } class CommentaireJardin{ id datetime texte } class CommentairePlante{ id datetime texte } class CommentaireLopin{ id datetime texte } class Action{ id date type } Jardin "0..n" -- "0..1" Lopin : jardin Lopin "0..n" -- "1..1" Plante : lopin Action "1..1" -- "0..n" Utilisateur : utilisateur Action "0..1" -- "0..n" Plante : plante 'Action "0..1" -- "0..n" Lopin : lopin CommentairePlante "1..1" -- "0..n" Utilisateur : auteur CommentairePlante "1..1" -- "0..n" Plante : plante CommentaireJardin "1..1" -- "0..n" Utilisateur : auteur CommentaireJardin "1..1" -- "0..n" Jardin : jardin CommentaireLopin "1..1" -- "0..n" Utilisateur : auteur CommentaireLopin "1..1" -- "0..n" Lopin : lopin Utilisateur "0..n" -- "1..n" Jardin : administrateurs Utilisateur "0..n" -- "1..n" Jardin : membres Actualite "1..1" -- "0..n" Jardin : jardin Actualite "1..1" -- "0..n" Utilisateur : auteur Adresse "1..n" -- "1..1" Jardin : adresse Adresse "1..n" -- "1..1" Lopin : adresse @enduml
e703848da6efc6e9d9bad6f0e219bd730dec84cf
57515bfad33d5ab1e68cccc924700e88316e19b9
/DiagramaClases/Metaclases/IObjeto.puml
132780a785aed064bb69fa09c8ee33ded947b549
[]
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
97
puml
@startuml IObjeto hide circle interface IObjeto{ dame() darAlta() darBaja() } @enduml
620da496567e879985a9be97f5e3fd09031e42f0
366b04c0ecc60f4f827ccc25cc47201652cf29e8
/src/command/_initialState/uml/initialState_01.puml
04075b1a98c7335c7dc9e3e713607c9b5092e276
[]
no_license
vitalispopoff/designPatterns
c14b6d222603d6873229b17254b4e001b1b23bac
9d90e87ddbd6f964ba681c7bb13b94551383ff07
refs/heads/master
2022-11-16T10:20:38.580475
2020-06-20T21:36:16
2020-06-20T21:36:16
267,718,159
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,020
puml
@startuml hide field skinparam class{ BorderColor<<Command>> #blue BackgroundColor<<Command>> #lightGreen BorderColor<<CommandImpl>> #blue BackgroundColor<<.>> #whtie BorderColor<<.>> #gray } package CLIENT/RECEIVER <<Rectangle>>{ class Application{ {method} add (Document) } } Application o-up-> "*" Menu #Grey class Menu <<.>> { {method} add (MenuItem) } package INVOKER <<Rectangle>>{ class MenuItem{ {method} clicked () } } Application .right. MenuItem #white Menu o-right-> "*" MenuItem #Grey package COMMAND <<Rectangle>>{ abstract Command <<Command >>{ {method} execute () } } MenuItem o-right- Command #blue : command > package ConcreteCOMMAND <<Rectangle>> { class OpenCommand <<CommandImpl>> { {method} execute () {method} askUser () } } Command <|-- OpenCommand #blue Application <- OpenCommand #blue Application .> OpenCommand #blue @enduml
820c2380da04cb80db4a73869726e123d00a221c
a0759da97e19348ccfaef59e0228e10dd6c1187f
/src/main/java/ex44/ex44.puml
3625f834bc87e0f805f11a0e74bda3e47e06abe3
[]
no_license
k-laughner/laughner-cop3330-assignment3
0c198626deeb977d386c930b67c2c636f3426b85
0d48cf0f1c7a8714655d3fb6e6bdeab098c76a54
refs/heads/master
2023-08-18T19:29:33.266353
2021-10-11T23:47:16
2021-10-11T23:47:16
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
157
puml
@startuml 'https://plantuml.com/class-diagram class match { +matcher( JSONArray, String ) : int } class App { +main() : void +getInput() : String } @enduml
37c27d76db93fc3d405d9786a9d1d9aa1691f586
f53f915a4ae704b122a7259164f85b1363888e04
/exercise43/docs/Solution43plant.puml
152cf628be31feee03b479e2be84d9a631d2420d
[]
no_license
cristiamenciso/enciso-a04
50cba9bd532816884b94dcd19abe39c1bf81024a
ecd6fb5477e0b4adb59b057de467fccd68e4dd38
refs/heads/main
2023-09-04T07:45:53.909559
2021-10-17T16:59:22
2021-10-17T16:59:22
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
306
puml
@startuml 'https://plantuml.com/class-diagram Solution43 *- Input Solution43 *- WebBuilder class Solution43 { main() } class Input { -String siteName -String author -String js -String css -String path; +void getInput } class WebBuilder { -void makeFile() +void makeSite() } @enduml
752ee3c67e0b4110e49c62fed08aeead13218856
814fb02b5e06f716209e186f601118062b35deb4
/meta_model.iuml
4d519b9f034814818dae52d38d925aa619799ec6
[]
no_license
PierreLEDEZ/META-minispec
a7d7ba0031862787d5c1d9f52417db479b410f5e
369c72eeeb4702ab3c95f2e23a11d072962838b3
refs/heads/main
2023-02-13T18:09:59.191287
2021-01-11T11:35:47
2021-01-11T11:35:47
324,777,021
0
0
null
null
null
null
UTF-8
PlantUML
false
false
690
iuml
@startuml skinparam monochrome true skinparam shadowing false skinparam classAttributeIconSize 0 class NamedElement { name: String } class Model { } class Entity { } class Attribute { type: String } class Association { min: Integer max: Integer size: Integer type: String of: String } NamedElement <|-- Model NamedElement <|-- Entity NamedElement <|-- Attribute NamedElement <|-- Association Model -right-> "0..*" Entity : entities Entity -right-> "0..*" Attribute: attributes Entity -down-> "0..*" Association: associations class Visitor {} class Printer {} class RenamingTool {} Visitor <|-- Printer Visitor <|-- RenamingTool hide circle hide methods @enduml
fdfd7b88e518b54094341e00e9479e96e934604b
72fb5e2adc3ffa059fdcb1792dc7aa862322c6af
/.idea/modules/app/app.plantuml
d290ab36bbfd01f4ce814fc8c1b485c0eaf86fba
[]
no_license
Basir98/Android_project_weather-map
a1874e443c2bacd336e44f2ab4c7e1a559eb7407
90ce48db890899c160c34a7e929138280dae8c84
refs/heads/master
2023-08-31T20:09:16.591326
2021-10-27T22:27:19
2021-10-27T22:27:19
406,106,432
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,032
plantuml
@startuml title __ASSIGNMENT3.APP's Class Diagram__\n namespace com.example.assignment3 { class com.example.assignment3.BuildConfig { } } namespace com.example.assignment3 { class com.example.assignment3.ForecastWeatherActivity { } } namespace com.example.assignment3 { class com.example.assignment3.MainActivity { } } namespace com.example.assignment3 { class com.example.assignment3.MapsActivity { } } com.example.assignment3.ForecastWeatherActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.assignment3.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity com.example.assignment3.MapsActivity .up.|> com.google.android.gms.maps.OnMapReadyCallback com.example.assignment3.MapsActivity -up-|> androidx.fragment.app.FragmentActivity 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
d5e6b02f9f21789dab77825be42632a4661139e1
491ed6fafa8274fd2ededab329c30eea0c5dbb39
/src/main/java/ex43/Diagram.puml
2cd87632da4272f28e7b4f13ddd608c3c31cecbf
[]
no_license
cbwilliams6/williams-cop3330-assignment3
0ecddf0e7e037100542903c6153dd2a6aa671bd5
47af89a782b8df7b26ed26e8b9a4ef9883832da0
refs/heads/master
2023-08-18T10:39:13.112609
2021-10-11T22:08:17
2021-10-11T22:08:17
416,100,998
0
0
null
null
null
null
UTF-8
PlantUML
false
false
332
puml
@startuml class App { input: Scanner siteName: String author: String javascript: String css: String directory: String index: FileWriter {method} main(args: String[]): void {method} websiteGenerator(siteName, author): void {method} folderGenerator(siteName, javascript, css): void } @enduml
4534d12291ce434f584616789d0fb6f636c03317
098c4dc9eba11232cf789f1ebb348e17a1821dc4
/RpgCombatKata/RpgCombatKata.Domain/DomainClassDiagram.plantuml
ccfe1d0ab0fe2f2ebf868899cd3daec36c9e8a70
[]
no_license
romuloedu/rpg-combat-kata
06ce5f408ca3291efdf82f3af88fbbe9e7066520
f7447a1e3eac9b8132224a3f0462408036608c30
refs/heads/master
2022-07-29T02:03:57.810435
2020-05-17T22:15:25
2020-05-17T22:15:25
264,009,292
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,095
plantuml
@startuml scale 1 interface ILivingThing { HealthPoints: float SetDamage(int damagePoints): void } abstract class Character { +Level: int +IsAlive: bool {abstract} +MaxRange: uint +Position: MapPosition +Factions: List<Faction> +SetRegeneration(float healthPoints): void +JoinFaction(Faction faction): void +LeaveFaction(Faction faction): void } class Thing { +IsDestroyed: bool } class AttackService { +Attack(float damage, Character attacker, ILivingThing target): void } class HealService { +Heal(float healthPoints, Character healer, Character target): void } class PositionService { +IsInRange(Character attacker, Character target): bool } class FactionService { +IsAllies(Character character1, Character character2): bool } class MeeleCharacter { } class OtherCharacter { } class Faction { +Id: int } class MapPosition { +X: uint } ILivingThing <|-- Character ILivingThing <|-- Thing Character <|-- MeeleCharacter Character <|-- OtherCharacter MapPosition o-- Character Faction "*" o-- "*" Character @enduml
6e2d22120803678cc525a42c0aa68dca922b1aaa
0307a91066deecd090531ad3f2cb0a2c1b3c24ba
/TeamCode/TeamCode.plantuml
e7bb1b5230bdb82a6594fa2fc75c77b2076e4390
[ "BSD-3-Clause" ]
permissive
13201Hazmat/SkyStone
8fd7a6c1b06f4b915d2b043088a810659496f004
1d238e239a1c7b8a19b5f2c7b6b0996cd858f450
refs/heads/master
2020-07-31T18:59:16.514312
2020-01-25T05:33:54
2020-01-25T05:33:54
210,719,301
0
1
null
2020-01-25T05:24:36
2019-09-25T00:08:24
Java
UTF-8
PlantUML
false
false
26,771
plantuml
@startuml title __TEAMCODE's Class Diagram__\n namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC1_Skystone_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.BLUE_SkyStone_ParkBridge_Vuforia { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC1_Skystone_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.RED_SkyStone_ParkBridge_Vuforia { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC2_MoveFdn_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkBridge { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC2_MoveFdn_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkWall { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC2_MoveFdn_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkBridge { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC2_MoveFdn_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkWall { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC3_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromBuildingZone { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC3_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromLoadingZone { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC3_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromBuildingZone { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC3_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromLoadingZone { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC3_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromBuildingZone { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC3_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromLoadingZone { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC3_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromBuildingZone { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC3_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromLoadingZone { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC4_Skystone_MoveFdn_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkBridge_Vuforia { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC4_Skystone_MoveFdn_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkWall_Vuforia { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC4_Skystone_MoveFdn_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkBridge_Vuforia { } } } namespace org.firstinspires.ftc.teamcode { namespace AutonomousModes.AutoUC4_Skystone_MoveFdn_Park { class org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkWall_Vuforia { } } } namespace org.firstinspires.ftc.teamcode { class org.firstinspires.ftc.teamcode.BuildConfig { } } namespace org.firstinspires.ftc.teamcode { namespace OpModes { class org.firstinspires.ftc.teamcode.OpModes.AutoUC1_Skystone_Park { } } } namespace org.firstinspires.ftc.teamcode { namespace OpModes { class org.firstinspires.ftc.teamcode.OpModes.AutoUC2_MoveFdn_Park { } } } namespace org.firstinspires.ftc.teamcode { namespace OpModes { class org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park { } } } namespace org.firstinspires.ftc.teamcode { namespace OpModes { class org.firstinspires.ftc.teamcode.OpModes.AutoUC4_Skystone_MoveFdn_Park { } } } namespace org.firstinspires.ftc.teamcode { namespace OpModes { class org.firstinspires.ftc.teamcode.OpModes.HazmatTeleOpMode { } } } namespace org.firstinspires.ftc.teamcode { namespace SubSystems { class org.firstinspires.ftc.teamcode.SubSystems.Arm { } } } namespace org.firstinspires.ftc.teamcode { namespace SubSystems { class org.firstinspires.ftc.teamcode.SubSystems.Chassis { } } } namespace org.firstinspires.ftc.teamcode { namespace SubSystems { class org.firstinspires.ftc.teamcode.SubSystems.HzGamepad1 { } } } namespace org.firstinspires.ftc.teamcode { namespace SubSystems { class org.firstinspires.ftc.teamcode.SubSystems.Intake { } } } namespace org.firstinspires.ftc.teamcode { namespace UnitTesting { class org.firstinspires.ftc.teamcode.UnitTesting.AutoTestRunDistance { } } } namespace org.firstinspires.ftc.teamcode { namespace UnitTesting { class org.firstinspires.ftc.teamcode.UnitTesting.AutoTestTurnAngle { } } } namespace org.firstinspires.ftc.teamcode { namespace UnitTesting { class org.firstinspires.ftc.teamcode.UnitTesting.AutonomousTester { } } } namespace org.firstinspires.ftc.teamcode { namespace UnitTesting { class org.firstinspires.ftc.teamcode.UnitTesting.ConceptTensorFlowObjectDetection { } } } namespace org.firstinspires.ftc.teamcode { namespace UnitTesting { class org.firstinspires.ftc.teamcode.UnitTesting.ConceptVuforiaSkyStoneNavigation { } } } namespace org.firstinspires.ftc.teamcode { namespace UnitTesting { class org.firstinspires.ftc.teamcode.UnitTesting.NewArmConfiguration { } } } namespace org.firstinspires.ftc.teamcode { namespace UnitTesting { class org.firstinspires.ftc.teamcode.UnitTesting.NewGripTest { } } } namespace org.firstinspires.ftc.teamcode { namespace UnitTesting { class org.firstinspires.ftc.teamcode.UnitTesting.SensorCaliberation { } } } org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.BLUE_SkyStone_ParkBridge_Vuforia -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.BLUE_SkyStone_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC1_Skystone_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.BLUE_SkyStone_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.BLUE_SkyStone_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.BLUE_SkyStone_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.RED_SkyStone_ParkBridge_Vuforia -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.RED_SkyStone_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC1_Skystone_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.RED_SkyStone_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.RED_SkyStone_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC1_Skystone_Park.RED_SkyStone_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkBridge -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkBridge o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC2_MoveFdn_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkBridge o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkBridge o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkBridge o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkWall -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkWall o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC2_MoveFdn_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkWall o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkWall o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.BLUE_MoveFdn_ParkWall o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkBridge -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkBridge o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC2_MoveFdn_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkBridge o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkBridge o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkBridge o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkWall -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkWall o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC2_MoveFdn_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkWall o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkWall o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC2_MoveFdn_Park.RED_MoveFdn_ParkWall o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromBuildingZone -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromBuildingZone o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromLoadingZone -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromLoadingZone o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkBridge_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromBuildingZone -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromBuildingZone o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromLoadingZone -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromLoadingZone o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.BLUE_ParkWall_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromBuildingZone -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromBuildingZone o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromLoadingZone -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromLoadingZone o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkBridge_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromBuildingZone -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromBuildingZone o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromBuildingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromLoadingZone -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromLoadingZone o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC3_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC3_Park.RED_ParkWall_fromLoadingZone o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkBridge_Vuforia -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC4_Skystone_MoveFdn_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkWall_Vuforia -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkWall_Vuforia o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC4_Skystone_MoveFdn_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkWall_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkWall_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.BLUE_SkyStone_MoveFdn_ParkWall_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkBridge_Vuforia -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC4_Skystone_MoveFdn_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkBridge_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkWall_Vuforia -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkWall_Vuforia o-- org.firstinspires.ftc.teamcode.OpModes.AutoUC4_Skystone_MoveFdn_Park : AutoMode org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkWall_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkWall_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.AutonomousModes.AutoUC4_Skystone_MoveFdn_Park.RED_SkyStone_MoveFdn_ParkWall_Vuforia o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.OpModes.HazmatTeleOpMode -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.OpModes.HazmatTeleOpMode o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : hzArm org.firstinspires.ftc.teamcode.OpModes.HazmatTeleOpMode o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : hzChassis org.firstinspires.ftc.teamcode.OpModes.HazmatTeleOpMode o-- org.firstinspires.ftc.teamcode.SubSystems.HzGamepad1 : hzGamepad1 org.firstinspires.ftc.teamcode.OpModes.HazmatTeleOpMode o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : hzIntake org.firstinspires.ftc.teamcode.UnitTesting.AutoTestRunDistance -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.UnitTesting.AutoTestRunDistance o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.UnitTesting.AutoTestRunDistance o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.UnitTesting.AutoTestRunDistance o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.UnitTesting.AutoTestRunDistance o-- org.firstinspires.ftc.teamcode.SubSystems.HzGamepad1 : hzGamepad1 org.firstinspires.ftc.teamcode.UnitTesting.AutoTestTurnAngle -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.UnitTesting.AutoTestTurnAngle o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : hzArm org.firstinspires.ftc.teamcode.UnitTesting.AutoTestTurnAngle o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : hzChassis org.firstinspires.ftc.teamcode.UnitTesting.AutoTestTurnAngle o-- org.firstinspires.ftc.teamcode.SubSystems.HzGamepad1 : hzGamepad1 org.firstinspires.ftc.teamcode.UnitTesting.AutoTestTurnAngle o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : hzIntake org.firstinspires.ftc.teamcode.UnitTesting.AutonomousTester -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.UnitTesting.AutonomousTester o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : autoArm org.firstinspires.ftc.teamcode.UnitTesting.AutonomousTester o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : autoChassis org.firstinspires.ftc.teamcode.UnitTesting.AutonomousTester o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : autoIntake org.firstinspires.ftc.teamcode.UnitTesting.ConceptTensorFlowObjectDetection -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.UnitTesting.ConceptVuforiaSkyStoneNavigation -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.UnitTesting.NewArmConfiguration -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.UnitTesting.NewArmConfiguration o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : hzArm org.firstinspires.ftc.teamcode.UnitTesting.NewArmConfiguration o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : hzChassis org.firstinspires.ftc.teamcode.UnitTesting.NewArmConfiguration o-- org.firstinspires.ftc.teamcode.SubSystems.HzGamepad1 : hzGamepad1 org.firstinspires.ftc.teamcode.UnitTesting.NewArmConfiguration o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : hzIntake org.firstinspires.ftc.teamcode.UnitTesting.NewGripTest -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.UnitTesting.NewGripTest o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : hzArm org.firstinspires.ftc.teamcode.UnitTesting.NewGripTest o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : hzChassis org.firstinspires.ftc.teamcode.UnitTesting.NewGripTest o-- org.firstinspires.ftc.teamcode.SubSystems.HzGamepad1 : hzGamepad1 org.firstinspires.ftc.teamcode.UnitTesting.NewGripTest o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : hzIntake org.firstinspires.ftc.teamcode.UnitTesting.SensorCaliberation -up-|> com.qualcomm.robotcore.eventloop.opmode.LinearOpMode org.firstinspires.ftc.teamcode.UnitTesting.SensorCaliberation o-- org.firstinspires.ftc.teamcode.SubSystems.Arm : hzArm org.firstinspires.ftc.teamcode.UnitTesting.SensorCaliberation o-- org.firstinspires.ftc.teamcode.SubSystems.Chassis : hzChassis org.firstinspires.ftc.teamcode.UnitTesting.SensorCaliberation o-- org.firstinspires.ftc.teamcode.SubSystems.HzGamepad1 : hzGamepad1 org.firstinspires.ftc.teamcode.UnitTesting.SensorCaliberation o-- org.firstinspires.ftc.teamcode.SubSystems.Intake : hzIntake 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
f1f64b910daec22e6431d0329ccd1985378d1768
ff1e2753766e967897531220aded72838e2d1540
/assets/images/javaee/classes-request-response.plantuml
cbf3a24a7909071331e097bf969c3a303520ec7e
[]
no_license
prof-wagnermacedo/prof-wagnermacedo.github.io
a821a97b45edfc2d9a00ad2d80cefc079c3207a0
17e186cd3ce0f9e4ef74bd55d317fe626fee673f
refs/heads/master
2021-06-05T08:33:32.713539
2020-09-13T15:31:26
2020-09-13T15:31:26
96,470,111
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,250
plantuml
@startuml set namespaceSeparator none skinparam Class { FontStyle bold FontSize 15 AttributeFontSize 17 AttributeFontName Ubuntu Mono } interface ServletRequest <<javax.servlet>> { +getParameter(String) : String +getContentType() : String +getContentLength() : int +getLocale() : Locale +getReader() : BufferedReader .. // outros métodos... } interface HttpServletRequest <<javax.servlet.http>> extends ServletRequest { +getMethod() : String +getHeader(String) : String +getCookies() : Cookie[] +getQueryString() : String +getSession() : HttpSession .. // outros métodos... } interface ServletResponse <<javax.servlet>> { +setContentType(String) : void +setContentLength(int) : void +setLocale(Locale) : void +getWriter() : PrintWriter .. // outros métodos... } interface HttpServletResponse <<javax.servlet.http>> extends ServletResponse { +setStatus(int) : void +setHeader(String, String) : void +addCookie(Cookie) : void +sendRedirect(String) : void +sendError(int) : void .. // outros métodos... } hide fields @enduml
d6c05c60a2b4c70db4f4f4db846a2e6b8b4b5a18
3e42a3533e38dfc8912d3bb6e59e942c718fd57e
/src/com/zjh/factory/factorymethod/factorymethod.puml
8848becddb36742dfb0c15cb3c750c44e116c331
[]
no_license
zjh-escape/DesignPattern
d2c90dc1380322d9ed3fb85cb4fdc8e88b1bf1a5
e268fff5cf556e8a6b64208855c50a0b0d36bc64
refs/heads/master
2022-04-24T16:54:50.067028
2020-04-18T07:45:29
2020-04-18T07:45:29
256,657,447
0
0
null
null
null
null
UTF-8
PlantUML
false
false
578
puml
@startuml abstract class Pizza{ + void prepare() + void bake() + void cut() + void box() } class BJCheesePizza class BJPepperPizza class LDCheesePizza class LDPepperPizza Pizza <|-- BJCheesePizza Pizza <|-- BJPepperPizza Pizza <|-- LDCheesePizza Pizza <|-- LDPepperPizza abstract class OrderPizza{ + Pizza createPizza(); } class BJOrderPizza class LDOrderPizza OrderPizza <|-- BJOrderPizza OrderPizza <|-- LDOrderPizza BJPepperPizza <.. BJOrderPizza BJCheesePizza <.. BJOrderPizza LDPepperPizza <.. LDOrderPizza LDCheesePizza <.. LDOrderPizza @enduml
5db3e0b4a4dcbaf7d5c19e954f6d556c17e409e8
618414d7666e67b9535ebd975e1de61e9c01e095
/QLSV/app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/livedata/livedata.plantuml
5f6e02f610228dc832b6ffbf6e935ee94345f5b9
[]
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
383
plantuml
@startuml title __LIVEDATA's Class Diagram__\n package android.arch.lifecycle { package android.arch.lifecycle.livedata { class R { - R() } } } 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
0d70a00d8d89c530dc1a4468259d8f2ddc11c959
653f21cf6253c69421aa4d44c9ae454af6046089
/demo-uml/src/main/resources/uml/rule.puml
99c68187ad50f1a2bcb4a0b7fbdad18e8413b390
[]
no_license
bluesgao/my-demo-parent
63ba851e8a5bb3657dfad546311bd59fd11612c0
f584330f14063a672059edba288a57439a5ce257
refs/heads/master
2021-09-07T20:55:22.261247
2018-03-01T01:15:12
2018-03-01T01:15:12
115,093,427
0
0
null
null
null
null
UTF-8
PlantUML
false
false
451
puml
@startuml title 规则类图 scale 1.5 interface Rule abstract class AbstractRule class DefaultRule class RuleA class RuleB class RuleC Rule <|.. AbstractRule :implement AbstractRule <|-- DefaultRule :extend AbstractRule <|-- RuleA :extend AbstractRule <|-- RuleB :extend AbstractRule <|-- RuleC :extend interface Rule { + excute(); } abstract class AbstractRule { + excute(); } class RuleA { } class RuleB { } class RuleC { } @enduml
4cd96af29a98a7b5c93670f3381a57175d0ea0a6
11d8f12a310bcfddfb7b2ac0aaaa7c77cf5da661
/docs/models/restaurant.plantuml
f101bd240ce6ef346dfa00dc195c080d3bdb121b
[ "MIT" ]
permissive
michael-bailey/js-restaurant
7643e853fcd7a1d5eb2ff9b69088fb107bf1e1e7
f1367de0e86c971f7fa7ddea7ec21afe23f4d8b0
refs/heads/master
2023-07-10T02:19:25.683319
2021-08-18T15:59:25
2021-08-18T15:59:25
299,285,586
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,133
plantuml
@startuml Restaurant ' notes ' note top of Restaurant : This is the main class of the module ' note left of Table : This Represents a sing table in the Restaurant class Restaurant { id INT name STRING image_url STRING static getInstanceById(id: INT) constructor(data: Object) } class Menu { id INT name STRING restaurantID INT static getInstanceById(id: INT) constructor(data: Object) } class Item { id INT name STRING price FLOAT menuID INT static getInstanceById(id: INT) constructor(data: Object) } class Ingredient { id INT name STRING isAllergen BOOL itemID INT static getInstanceById(id: INT) constructor(data: Object) } class Table { id INT number INT seats INT restaurantID INT static getInstanceById(id: INT) constructor(data: Object) } class Booking { id INT groupName STRING contactNumber STRING time DATE tableID static getInstanceById(id: INT) constructor(data: Object) } Restaurant--{Menu Menu--{Item Item--{Ingredient Restaurant--{Table Table--{Booking @enduml
f59f945bbbc2929f41234080b733f0f4acffb257
bdd433c3af2f10384f0a4fb06a6354b51a70750e
/plantuml/C4/includes/Models/Tip.puml
a57ba9fad32ae1eb6307255563b7b99e725e08d8
[]
no_license
I4PRJ4/I4PRJ4-plantuml
d6188b60011e5a5f6f3cf7853393cba43996dfbf
2b528f0a911917d5ee61a6d0051d46ea59282c5a
refs/heads/master
2023-05-14T13:43:29.403199
2021-06-03T10:33:59
2021-06-03T10:33:59
348,710,373
0
0
null
null
null
null
UTF-8
PlantUML
false
false
359
puml
@startuml class Tip { + TipId : int <<get>> <<set>> + Username : string <<get>> <<set>> + CourseId : int <<get>> <<set>> + Course : Course <<get>> <<set>> + Date : DateTime <<get>> <<set>> + Headline : string <<get>> <<set>> + Text : string <<get>> <<set>> + IsVerified : bool <<get>> <<set>> = false } Tip --> Course @enduml
4c63e69ed1814d2292261d017bbb004e4fdc3b9d
dbfa2186dc31ddb16725236b9531bfd0ee0a9f3b
/1verProject/app/app.plantuml
efd89a1f8f7a99bfdabcc32da62ca3962bf67575
[]
no_license
Mutaaa/kotlinsimplegame
d8c9087b1e4c47c482735f2c5c533404cfd4e73e
662451383dea914ca6cc5ea8ceb5529812878cbc
refs/heads/master
2021-08-28T07:47:11.190349
2021-08-26T12:11:29
2021-08-26T12:11:29
231,376,867
0
0
null
null
null
null
UTF-8
PlantUML
false
false
343
plantuml
@startuml title __APP's Class Diagram__\n namespace com.example.androidgame { class com.example.androidgame.BuildConfig { } } 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
2d93ad50b61390668fa4f0dbad84997b87c4e75f
cf826b34b584c18dba80ca8b6eee174c22e71187
/src/main/java/oop/exercises/ex44/exercise44.puml
926afcf594be30a58fc29fcecd8f9c8c28efc744
[]
no_license
Ivedent-Lloyd-III/lloyd-cop3330-assignment3
a41994969378f17d7c15c90aa2ed7ae1a13e7956
ade3ee3d56e652492c41a9a30fa8e6adddc986b4
refs/heads/master
2023-06-02T17:50:48.536779
2021-06-21T03:55:53
2021-06-21T03:55:53
377,673,629
0
0
null
null
null
null
UTF-8
PlantUML
false
false
163
puml
@startuml class solution44 class solution44 { +inputFile; File +productArray; ArrayList +main(); void -readFile(); ArrayList -generateOutput(); void } @enduml
70742eed7f8fab19c56a29c5ff3036a55d03bd8c
1c6eae4b5ebbddce35a2fad77b69189e5290ea2a
/src/design/observer/w4/Main.puml
55f4d7eb9ced9d6118b96c4db2949c8440426cda
[]
no_license
GitHubFeiLong/design
b4d2a07fc4675c469bf40aa5a05ae3c66d2a9382
377b5b08771a7257d9b9a9aa9578ed98f59c8697
refs/heads/master
2023-02-05T01:08:47.905972
2023-01-30T12:51:13
2023-01-30T12:51:13
187,624,865
0
0
null
null
null
null
UTF-8
PlantUML
false
false
438
puml
@startuml 'https://plantuml.com/class-diagram abstract class Subject { # List<Observer> observers # void attach(Observer observer) # void detach(Observer observer) + void notify() } class CatSubject extends Subject{ + void notify() } interface Observer{ + void update() } class MouseObserver implements Observer{ + void update() } class MasterObserver implements Observer { + void update() } @enduml
405c40f4a3a941396f8da5efa2e91ee12ed7a2e3
e19da2b4d59acf1fee903de42b8b44adf359cfc5
/ftc_app-dev/openCVLibrary3/src/main/java/org/opencv/photo/photo.plantuml
44eb471a405a5110fb0677b1589b353b2fefca9b
[ "BSD-3-Clause" ]
permissive
wyrobotics/roverruckus-robophins
489e13fe470ffd6f6e6a4b5d117472427d1f8895
effa587f9eafd80e464b0f047bb6e4fa58532642
refs/heads/master
2020-09-20T09:39:46.926438
2019-11-27T13:46:34
2019-11-27T13:46:34
224,439,459
0
0
null
null
null
null
UTF-8
PlantUML
false
false
16,600
plantuml
@startuml title __PHOTO's Class Diagram__\n package org.opencv { package org.opencv.photo { class AlignExposures { # AlignExposures() {static} + __fromPtr__() + process() # finalize() {static} - process_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class AlignMTB { # AlignMTB() {static} + __fromPtr__() + calculateShift() + getCut() + getExcludeRange() + getMaxBits() + computeBitmaps() + process() + process() + setCut() + setExcludeRange() + setMaxBits() + shiftMat() # finalize() {static} - calculateShift_0() {static} - getCut_0() {static} - getExcludeRange_0() {static} - getMaxBits_0() {static} - computeBitmaps_0() {static} - process_0() {static} - process_1() {static} - setCut_0() {static} - setExcludeRange_0() {static} - setMaxBits_0() {static} - shiftMat_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class CalibrateCRF { # CalibrateCRF() {static} + __fromPtr__() + process() # finalize() {static} - process_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class CalibrateDebevec { # CalibrateDebevec() {static} + __fromPtr__() + getRandom() + getLambda() + getSamples() + setLambda() + setRandom() + setSamples() # finalize() {static} - getRandom_0() {static} - getLambda_0() {static} - getSamples_0() {static} - setLambda_0() {static} - setRandom_0() {static} - setSamples_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class CalibrateRobertson { # CalibrateRobertson() {static} + __fromPtr__() + getRadiance() + getThreshold() + getMaxIter() + setMaxIter() + setThreshold() # finalize() {static} - getRadiance_0() {static} - getThreshold_0() {static} - getMaxIter_0() {static} - setMaxIter_0() {static} - setThreshold_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class MergeDebevec { # MergeDebevec() {static} + __fromPtr__() + process() + process() # finalize() {static} - process_0() {static} - process_1() {static} - delete() } } } package org.opencv { package org.opencv.photo { class MergeExposures { # MergeExposures() {static} + __fromPtr__() + process() # finalize() {static} - process_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class MergeMertens { # MergeMertens() {static} + __fromPtr__() + getContrastWeight() + getExposureWeight() + getSaturationWeight() + process() + process() + setContrastWeight() + setExposureWeight() + setSaturationWeight() # finalize() {static} - getContrastWeight_0() {static} - getExposureWeight_0() {static} - getSaturationWeight_0() {static} - process_0() {static} - process_1() {static} - setContrastWeight_0() {static} - setExposureWeight_0() {static} - setSaturationWeight_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class MergeRobertson { # MergeRobertson() {static} + __fromPtr__() + process() + process() # finalize() {static} - process_0() {static} - process_1() {static} - delete() } } } package org.opencv { package org.opencv.photo { class Photo { {static} - CV_INPAINT_NS : int {static} - CV_INPAINT_TELEA : int {static} + INPAINT_NS : int {static} + INPAINT_TELEA : int {static} + NORMAL_CLONE : int {static} + MIXED_CLONE : int {static} + MONOCHROME_TRANSFER : int {static} + RECURS_FILTER : int {static} + NORMCONV_FILTER : int {static} + LDR_SIZE : int {static} + createAlignMTB() {static} + createAlignMTB() {static} + createAlignMTB() {static} + createAlignMTB() {static} + createCalibrateDebevec() {static} + createCalibrateDebevec() {static} + createCalibrateDebevec() {static} + createCalibrateDebevec() {static} + createCalibrateRobertson() {static} + createCalibrateRobertson() {static} + createCalibrateRobertson() {static} + createMergeDebevec() {static} + createMergeMertens() {static} + createMergeMertens() {static} + createMergeMertens() {static} + createMergeMertens() {static} + createMergeRobertson() {static} + createTonemap() {static} + createTonemap() {static} + createTonemapDrago() {static} + createTonemapDrago() {static} + createTonemapDrago() {static} + createTonemapDrago() {static} + createTonemapDurand() {static} + createTonemapDurand() {static} + createTonemapDurand() {static} + createTonemapDurand() {static} + createTonemapDurand() {static} + createTonemapDurand() {static} + createTonemapMantiuk() {static} + createTonemapMantiuk() {static} + createTonemapMantiuk() {static} + createTonemapMantiuk() {static} + createTonemapReinhard() {static} + createTonemapReinhard() {static} + createTonemapReinhard() {static} + createTonemapReinhard() {static} + createTonemapReinhard() {static} + colorChange() {static} + colorChange() {static} + colorChange() {static} + colorChange() {static} + decolor() {static} + denoise_TVL1() {static} + denoise_TVL1() {static} + denoise_TVL1() {static} + detailEnhance() {static} + detailEnhance() {static} + detailEnhance() {static} + edgePreservingFilter() {static} + edgePreservingFilter() {static} + edgePreservingFilter() {static} + edgePreservingFilter() {static} + fastNlMeansDenoising() {static} + fastNlMeansDenoising() {static} + fastNlMeansDenoising() {static} + fastNlMeansDenoising() {static} + fastNlMeansDenoising() {static} + fastNlMeansDenoising() {static} + fastNlMeansDenoising() {static} + fastNlMeansDenoising() {static} + fastNlMeansDenoisingColored() {static} + fastNlMeansDenoisingColored() {static} + fastNlMeansDenoisingColored() {static} + fastNlMeansDenoisingColored() {static} + fastNlMeansDenoisingColored() {static} + fastNlMeansDenoisingColoredMulti() {static} + fastNlMeansDenoisingColoredMulti() {static} + fastNlMeansDenoisingColoredMulti() {static} + fastNlMeansDenoisingColoredMulti() {static} + fastNlMeansDenoisingColoredMulti() {static} + fastNlMeansDenoisingMulti() {static} + fastNlMeansDenoisingMulti() {static} + fastNlMeansDenoisingMulti() {static} + fastNlMeansDenoisingMulti() {static} + fastNlMeansDenoisingMulti() {static} + fastNlMeansDenoisingMulti() {static} + fastNlMeansDenoisingMulti() {static} + fastNlMeansDenoisingMulti() {static} + illuminationChange() {static} + illuminationChange() {static} + illuminationChange() {static} + inpaint() {static} + pencilSketch() {static} + pencilSketch() {static} + pencilSketch() {static} + pencilSketch() {static} + seamlessClone() {static} + stylization() {static} + stylization() {static} + stylization() {static} + textureFlattening() {static} + textureFlattening() {static} + textureFlattening() {static} + textureFlattening() {static} - createAlignMTB_0() {static} - createAlignMTB_1() {static} - createAlignMTB_2() {static} - createAlignMTB_3() {static} - createCalibrateDebevec_0() {static} - createCalibrateDebevec_1() {static} - createCalibrateDebevec_2() {static} - createCalibrateDebevec_3() {static} - createCalibrateRobertson_0() {static} - createCalibrateRobertson_1() {static} - createCalibrateRobertson_2() {static} - createMergeDebevec_0() {static} - createMergeMertens_0() {static} - createMergeMertens_1() {static} - createMergeMertens_2() {static} - createMergeMertens_3() {static} - createMergeRobertson_0() {static} - createTonemap_0() {static} - createTonemap_1() {static} - createTonemapDrago_0() {static} - createTonemapDrago_1() {static} - createTonemapDrago_2() {static} - createTonemapDrago_3() {static} - createTonemapDurand_0() {static} - createTonemapDurand_1() {static} - createTonemapDurand_2() {static} - createTonemapDurand_3() {static} - createTonemapDurand_4() {static} - createTonemapDurand_5() {static} - createTonemapMantiuk_0() {static} - createTonemapMantiuk_1() {static} - createTonemapMantiuk_2() {static} - createTonemapMantiuk_3() {static} - createTonemapReinhard_0() {static} - createTonemapReinhard_1() {static} - createTonemapReinhard_2() {static} - createTonemapReinhard_3() {static} - createTonemapReinhard_4() {static} - colorChange_0() {static} - colorChange_1() {static} - colorChange_2() {static} - colorChange_3() {static} - decolor_0() {static} - denoise_TVL1_0() {static} - denoise_TVL1_1() {static} - denoise_TVL1_2() {static} - detailEnhance_0() {static} - detailEnhance_1() {static} - detailEnhance_2() {static} - edgePreservingFilter_0() {static} - edgePreservingFilter_1() {static} - edgePreservingFilter_2() {static} - edgePreservingFilter_3() {static} - fastNlMeansDenoising_0() {static} - fastNlMeansDenoising_1() {static} - fastNlMeansDenoising_2() {static} - fastNlMeansDenoising_3() {static} - fastNlMeansDenoising_4() {static} - fastNlMeansDenoising_5() {static} - fastNlMeansDenoising_6() {static} - fastNlMeansDenoising_7() {static} - fastNlMeansDenoisingColored_0() {static} - fastNlMeansDenoisingColored_1() {static} - fastNlMeansDenoisingColored_2() {static} - fastNlMeansDenoisingColored_3() {static} - fastNlMeansDenoisingColored_4() {static} - fastNlMeansDenoisingColoredMulti_0() {static} - fastNlMeansDenoisingColoredMulti_1() {static} - fastNlMeansDenoisingColoredMulti_2() {static} - fastNlMeansDenoisingColoredMulti_3() {static} - fastNlMeansDenoisingColoredMulti_4() {static} - fastNlMeansDenoisingMulti_0() {static} - fastNlMeansDenoisingMulti_1() {static} - fastNlMeansDenoisingMulti_2() {static} - fastNlMeansDenoisingMulti_3() {static} - fastNlMeansDenoisingMulti_4() {static} - fastNlMeansDenoisingMulti_5() {static} - fastNlMeansDenoisingMulti_6() {static} - fastNlMeansDenoisingMulti_7() {static} - illuminationChange_0() {static} - illuminationChange_1() {static} - illuminationChange_2() {static} - inpaint_0() {static} - pencilSketch_0() {static} - pencilSketch_1() {static} - pencilSketch_2() {static} - pencilSketch_3() {static} - seamlessClone_0() {static} - stylization_0() {static} - stylization_1() {static} - stylization_2() {static} - textureFlattening_0() {static} - textureFlattening_1() {static} - textureFlattening_2() {static} - textureFlattening_3() } } } package org.opencv { package org.opencv.photo { class Tonemap { # Tonemap() {static} + __fromPtr__() + getGamma() + process() + setGamma() # finalize() {static} - getGamma_0() {static} - process_0() {static} - setGamma_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class TonemapDrago { # TonemapDrago() {static} + __fromPtr__() + getBias() + getSaturation() + setBias() + setSaturation() # finalize() {static} - getBias_0() {static} - getSaturation_0() {static} - setBias_0() {static} - setSaturation_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class TonemapDurand { # TonemapDurand() {static} + __fromPtr__() + getContrast() + getSaturation() + getSigmaColor() + getSigmaSpace() + setContrast() + setSaturation() + setSigmaColor() + setSigmaSpace() # finalize() {static} - getContrast_0() {static} - getSaturation_0() {static} - getSigmaColor_0() {static} - getSigmaSpace_0() {static} - setContrast_0() {static} - setSaturation_0() {static} - setSigmaColor_0() {static} - setSigmaSpace_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class TonemapMantiuk { # TonemapMantiuk() {static} + __fromPtr__() + getSaturation() + getScale() + setSaturation() + setScale() # finalize() {static} - getSaturation_0() {static} - getScale_0() {static} - setSaturation_0() {static} - setScale_0() {static} - delete() } } } package org.opencv { package org.opencv.photo { class TonemapReinhard { # TonemapReinhard() {static} + __fromPtr__() + getColorAdaptation() + getIntensity() + getLightAdaptation() + setColorAdaptation() + setIntensity() + setLightAdaptation() # finalize() {static} - getColorAdaptation_0() {static} - getIntensity_0() {static} - getLightAdaptation_0() {static} - setColorAdaptation_0() {static} - setIntensity_0() {static} - setLightAdaptation_0() {static} - delete() } } } AlignExposures -up-|> Algorithm AlignMTB -up-|> AlignExposures CalibrateCRF -up-|> Algorithm CalibrateDebevec -up-|> CalibrateCRF CalibrateRobertson -up-|> CalibrateCRF MergeDebevec -up-|> MergeExposures MergeExposures -up-|> Algorithm MergeMertens -up-|> MergeExposures MergeRobertson -up-|> MergeExposures Tonemap -up-|> Algorithm TonemapDrago -up-|> Tonemap TonemapDurand -up-|> Tonemap TonemapMantiuk -up-|> Tonemap TonemapReinhard -up-|> Tonemap 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
49f805d42235b8510042f1c1ae24f02e59d935af
81894fcd984ad28d577fc09d0b1aafcb4df06c8c
/broilers/broiler-export-import.puml
fd5f88c9019801137493bb6c48ef21b5fb321c19
[]
no_license
epcis-resources/epcis-erm
b1ede38c59c6d8349cfefdf8b067e1dc17c76913
592ca1e281ef333ec8529e50906ffb0c2580f8aa
refs/heads/master
2023-08-14T19:46:07.779577
2020-12-17T15:01:11
2020-12-17T15:01:11
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,800
puml
@startuml class ImporterOfLiveBroilers { a gs1:Organization gs1:organizationName "HatchingFirm A" } class ExporterOfLiveBroilers { a gs1:Organization gs1:organizationName "HatchingFirm A" } class ExporterOfBroilerMeat { a gs1:Organization gs1:organizationName "HatchingFirm A" } class ImporterOfBroilerMeat { a gs1:Organization gs1:organizationName "HatchingFirm A" } class Broiler { a gs1:Product gs1:productName "Broiler" } class BroilerMeat { a gs1:Product gs1:productName "Broiler meat" } class BroilerFarm { a gs1:Organization gs1:organizationName "HatchingFirm A" } class SlaughterHouse { a gs1:Organization gs1:organizationName "HatchingFirm A" } class ExportingLiveBroiler { a gs1-epcis:ObjectEvent eventTime "2020-05-02T09:00:00" recordTime "2020-11-09T09:00:00" eventTimeZoneOffset "+02" eventID "6" bizStep urn:epcglobal:cbv:bizstep:receiving } class ImportingLiveBroiler { a gs1-epcis:ObjectEvent eventTime "2020-05-02T09:00:00" recordTime "2020-11-09T09:00:00" eventTimeZoneOffset "+02" eventID "6" bizStep urn:epcglobal:cbv:bizstep:receiving } class ExportingBroilerMeat { a gs1-epcis:ObjectEvent eventTime "2020-05-02T09:00:00" recordTime "2020-11-09T09:00:00" eventTimeZoneOffset "+02" eventID "6" bizStep urn:epcglobal:cbv:bizstep:receiving } class ImportingBroilerMeat { a gs1-epcis:ObjectEvent eventTime "2020-05-02T09:00:00" recordTime "2020-11-09T09:00:00" eventTimeZoneOffset "+02" eventID "6" bizStep urn:epcglobal:cbv:bizstep:receiving } ExportingLiveBroiler --> BroilerFarm : source ExportingLiveBroiler --> ExporterOfLiveBroilers : destination ExportingLiveBroiler -up-> Broiler : epc ImportingLiveBroiler --> ImporterOfLiveBroilers : source ImportingLiveBroiler --> BroilerFarm : destination ImportingLiveBroiler -up-> Broiler : epc ExportingBroilerMeat --> SlaughterHouse : source ExportingBroilerMeat --> ExporterOfBroilerMeat : destination ExportingBroilerMeat -up-> BroilerMeat : epc ImportingBroilerMeat --> ImporterOfBroilerMeat : source ImportingBroilerMeat --> SlaughterHouse : destination ImportingBroilerMeat -up-> BroilerMeat : epc @enduml
14ae4ac2d027ff16153615add6bed9f9d2d723a8
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Recording/TrackAssetRecordingExtensions.puml
ff111db1cafa05f73e53910b32680518aa854152
[]
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
192
puml
@startuml class TrackAssetRecordingExtensions <<static>> { } class "Dictionary`2"<T1,T2> { } TrackAssetRecordingExtensions o-> "s_ActiveClips<TrackAsset,AnimationClip>" "Dictionary`2" @enduml
9833eaca681d7962190ff197613eaa5ee925d09b
e5e0d04a44fe67064105c32404e11f52d66ce464
/docs/plantuml/ArchitectureDiagram.puml
7cd3c692a8ed7d3c795663b0ff18cea2293eb4b5
[]
no_license
durianpancakes/tp
19902f0c344eca4544cda3caabb85c70d174853a
7f9ff12f6d81a47bc208e64dcbcecb6dbf8687a5
refs/heads/master
2023-01-07T01:13:07.145901
2020-11-08T13:10:16
2020-11-08T13:10:16
299,612,457
0
0
null
2020-09-29T12:36:16
2020-09-29T12:36:15
null
UTF-8
PlantUML
false
false
905
puml
@startuml allowmixing skinparam actorStyle awesome skinparam rectangle { roundCorner 25 } skinparam MinClassWidth 100 hide circle hide members scale 450 width skinparam Class { BorderColor Azure } skinparam Shadowing false skinparam Actor { BorderColor Olive BackgroundColor Khaki } actor user rectangle #Azure { class UserInterface #SkyBlue { } class Model #YellowGreen { } class Controller #LightSalmon { } class Main #Silver { } class Storage #Tan { } } package Data <<File>> #LightSalmon { } user ..down> UserInterface UserInterface -down[bold,#SkyBlue]-> Controller Controller -[Bold,#LightSalmon]-> Model : manipulate data Model --[bold,#YellowGreen]> UserInterface : update view UserInterface <-[#Silver] Main Main -up[#Silver]> Model Main -right[#Silver]> Storage Storage ..[#Peru]> Data Controller -[bold,#LightSalmon]> Storage @enduml
5a18bf152271b3d4839b6426983f29dc73d77995
0c46b2988021dacf063778be69c12cf9466ff379
/INF/B3/Fortgeschrittene Programmierkonzepte (FPK)/2/Übungen/05-annotations-reflection/assets/uml/model-spec.plantuml
e4580f65b9052317776473cebe4bdb6f7a45c2df
[ "MIT" ]
permissive
AL5624/TH-Rosenheim-Backup
2db235cf2174b33f25758a36e83c3aa9150f72ee
fa01cb7459ab55cb25af79244912d8811a62f83f
refs/heads/master
2023-01-21T06:57:58.155166
2023-01-19T08:36:57
2023-01-19T08:36:57
219,547,187
0
0
null
2022-05-25T23:29:08
2019-11-04T16:33:34
C#
UTF-8
PlantUML
false
false
378
plantuml
@startuml ModelSpec package de.thro.inf.fpk.a06.model { +class Joke { -number: int -content: String -rubrics: String[] +getNumber(): int +setNumber(number: int): void +getContent(): String +setContent(content: String): void +getRubrics(): String[] +setRubrics(rubrics: String[]): void } } @enduml
8a634042300455de125afce883b2e96c6f61c40e
98d354b02719933a104aa96a689fa0963a2218d1
/doc/uml/class_diagrams/adapters/bookdataadapter.plantuml
d5e866367e707dcfab23e6d0b467765986b3f708
[ "Apache-2.0" ]
permissive
cmput301w19t02/Alexandria
fbbc1cf26ad3a18d7a5baecc582418d49bf83546
1e66077a3661ef6f8c72d414117b5512c59f9d8a
refs/heads/master
2023-01-28T11:39:01.320635
2019-04-01T21:57:49
2019-04-01T21:57:49
169,452,637
2
6
Apache-2.0
2023-01-09T11:35:24
2019-02-06T18:12:07
Java
UTF-8
PlantUML
false
false
2,654
plantuml
@startuml title __BOOK DATA ADAPTER's Class Diagram__\n package ca.ualberta.CMPUT3012019T02.alexandria { package ca.ualberta.CMPUT3012019T02.alexandria.model { class BookListItem { - cover : Bitmap - coverId : String - title : String - author : String - isbn : String - status : String - ownerId : String {static} + getComparator() + BookListItem() + BookListItem() + BookListItem() + getCover() + setCover() + getTitle() + setTitle() + getAuthor() + setAuthor() + getIsbn() + setIsbn() + getStatus() + setStatus() + getOwnerId() + setOwnerId() + getCoverId() + setCoverId() } } } package ca.ualberta.CMPUT3012019T02.alexandria { package ca.ualberta.CMPUT3012019T02.alexandria.adapter { class BookDataAdapter { - myBorrowedBookList : List<BookListItem> - myOwnedBookList : List<BookListItem> {static} - instance : BookDataAdapter {static} + getInstance() - BookDataAdapter() + getMyBorrowedBooksList() + getMyOwnedBooksList() - fetchMyBorrowedBooksList() - fetchMyOwnedBooksList() - userBooksToBookList() } } } package ca.ualberta.CMPUT3012019T02.alexandria { package ca.ualberta.CMPUT3012019T02.alexandria.adapter { class CacheObserver { + update() } } } package ca.ualberta.CMPUT3012019T02.alexandria { package ca.ualberta.CMPUT3012019T02.alexandria.cache { class ObservableUserCache { {static} - instance : ObservableUserCache - databaseReference : DatabaseReference - valueEventListener : ValueEventListener - userController : UserController - user : User - database : DatabaseReference {static} + getInstance() - ObservableUserCache() + updateReference() + getBorrowedBook() + getOwnedBook() + getBorrowedBooks() + getOwnedBooks() + getProfile() + getChatRoomId() } } } note top of BookDataAdapter Adapter Pattern & Observer Pattern Adaptees: - ImageController - BookController end note note top of ObservableUserCache Observer Pattern end note BookDataAdapter -up-|> Observable BookDataAdapter +-down- CacheObserver CacheObserver -up-|> Observer BookDataAdapter o-- "*" BookListItem ObservableUserCache o-- "1" CacheObserver ObservableUserCache -up-|> Observable right footer PlantUML diagram partly generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
c58d64d18a7ecc58a4ed84ca2fda5264c7f3ca4b
688464ec890d36414be01fb2243022b123511cc4
/src/test/resources/issue-28-example.puml
36f68229f332501c7e63f363b3148d0954571e06
[ "Apache-2.0" ]
permissive
talsma-ict/umldoclet
207611b1b70fda0758ff39d83a07196361e17334
98248cf1d6d3780ddf8ef850a39b6dd4b080efc5
refs/heads/develop
2023-08-31T17:28:14.954343
2023-08-25T19:20:22
2023-08-25T19:20:22
52,003,734
224
41
Apache-2.0
2023-09-13T21:03:05
2016-02-18T11:49:03
Java
UTF-8
PlantUML
false
false
534
puml
@startuml ' Example link usage within class diagrams ' Found at: http://plantuml.sourceforge.net/qa/?qa=90/web-links-in-generated-images-e-g-using-image-maps class Dummy [[http://www.yahoo.com]] Object <|-- Foo class Foo { [[http://www.google.com]] + methods1() [[http://www.yahoo.com/A1{Some explainations about this method}]] + methods2() [[http://www.yahoo.com/A2]] } class Foo2 { + methods1() [[http://www.yahoo.com/B1]] + methods2() [[http://www.yahoo.com/B2]] } class Object { [[http://www.yahoo.com]] } @enduml
a424da0848de9bbb1e09c1873bc910f7782a38b3
72f77450eb99de6de59f44206cc663b22e57b016
/study_java/study-design_patterns/src/main/java/top/mcwebsite/builder_pattern/builder_pattern.puml
8a0c7ec5984de8382abc5b915d1853a1f94eed27
[]
no_license
woxin123/Java-Study
27a09b34a954dc0294f62944fa79be02d6ae8029
f569c4fe27fa65f88232d246906aa67f9ab9d4ba
refs/heads/master
2022-12-17T01:43:03.476391
2019-06-17T07:07:58
2019-06-17T07:07:58
105,738,558
2
0
null
2022-12-16T06:40:00
2017-10-04T06:35:48
JavaScript
UTF-8
PlantUML
false
false
219
puml
@startuml class Director { Construct(); } class Builder { BuildPart(); } Director o-r- Builder:builder class ConcreteBuilder { } class Product{ } Builder <|-- ConcreteBuilder ConcreteBuilder -r-> Product @enduml
2cfc9c45f92b85797fc632e3db8b6a21f86be185
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderSearchFilterExpression.puml
8c55427557950a5d20fca8563b659b3aef51200f
[]
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
501
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 OrderSearchFilterExpression [[OrderSearchFilterExpression.svg]] extends OrderSearchCompoundExpression { filter: [[OrderSearchQueryExpression.svg List<OrderSearchQueryExpression>]] } interface OrderSearchCompoundExpression [[OrderSearchCompoundExpression.svg]] { } @enduml
93a9b13794c0b9882cc7d0c55f48c7c3bf59878b
d68b1330ef8ce59c635f4692417a9192d5206942
/framework/src/main/java/no/ntnu/idi/apollo69framework/uml/generated/data_transfer_objects.plantuml
47c3e5245965313bf987c198188dff891d747517
[ "MIT" ]
permissive
GardSteinsvik/apollo-69
847f74b762383641db20214ff7b5281c9d63f130
96cbf617618075a54613112bc8c0b34215fd50f7
refs/heads/master
2021-02-12T20:21:06.214711
2020-04-27T16:02:37
2020-04-27T16:02:37
244,626,902
0
0
null
null
null
null
UTF-8
PlantUML
false
false
5,779
plantuml
@startuml namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.AsteroidDto { + hp : float + AsteroidDto() + AsteroidDto() } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.DimensionDto { + height : float + width : float + DimensionDto() + DimensionDto() + DimensionDto() } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto { + frameNumber : int + ExplosionDto() + ExplosionDto() } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { enum GemType { COIN DEFAULT METEORITE RUBY STAR } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto { + PickupDto() + PickupDto() } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto { + boosting : boolean + hp : float + name : String + playerId : String + score : int + shieldHp : float + spaceshipType : int + visible : boolean + PlayerDto() + PlayerDto() } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto { + x : float + y : float + PositionDto() + PositionDto() + PositionDto() } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto { + PowerupDto() + PowerupDto() } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { enum PowerupType { ENERGY HEALTH INVISIBLE SHIELD } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.RotationDto { + degrees : float + x : float + y : float + RotationDto() + RotationDto() } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ShotDto { + radius : float + ShotDto() + ShotDto() } } } } no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.AsteroidDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.DimensionDto : dimensionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.GemType : gemType no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.RotationDto : rotationDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupType : powerupType no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ShotDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto 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
e93a01cea1d0b9f00a02d57521358b5b7161cbba
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
/build/volumediscountolist@0.4.0.puml
629240f20b9429a91b7c3a232833654628bcbd5e
[ "Apache-2.0", "CC-BY-4.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
accordproject/cicero-template-library
737586850933daac2fbff2ff8b2d60dd50526b80
35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea
refs/heads/main
2023-04-27T01:07:05.932361
2022-08-26T13:02:59
2022-08-26T13:02:59
109,224,687
77
149
Apache-2.0
2023-04-20T21:43:00
2017-11-02T06:11:37
HTML
UTF-8
PlantUML
false
false
821
puml
@startuml class org.accordproject.volumediscountlist.RateRange { + Double volumeUpTo + Double volumeAbove + Double rate } org.accordproject.volumediscountlist.RateRange --|> concerto.Concept class org.accordproject.volumediscountlist.VolumeDiscountContract << (A,green) >> { + RateRange[] rates } org.accordproject.volumediscountlist.VolumeDiscountContract --|> org.accordproject.contract.Contract class org.accordproject.volumediscountlist.VolumeDiscountRequest << (T,yellow) >> { + Double netAnnualChargeVolume } org.accordproject.volumediscountlist.VolumeDiscountRequest --|> concerto.Transaction class org.accordproject.volumediscountlist.VolumeDiscountResponse << (T,yellow) >> { + Double discountRate } org.accordproject.volumediscountlist.VolumeDiscountResponse --|> concerto.Transaction @enduml
c2fbb2a8f62894c435007367dbc014f7aac15bd5
ece0340d094951c9b00dc7990820da3b18de26cc
/out/production/DateTest/类图/参考/test8.puml
576febc5d466178e55e3ae797810e3b513099fd3
[]
no_license
swf2020/clssuml
1ae35ac8f8cd3c0dc83bc6d691ee0b2d893cca5e
bb233a0e4f9058fa36aebb2aa806ed8039735a80
refs/heads/master
2022-12-04T17:14:55.118424
2020-08-21T09:02:14
2020-08-21T09:02:14
284,682,724
0
0
null
null
null
null
UTF-8
PlantUML
false
false
273
puml
@startuml class Feeder<<饲养员>>{ -void feed() } abstract Food class Bone class Fish Food <|--Bone Food <|--Fish abstract Animal{ -void eat() } class Dog{ -void eat() } class Cat{ -void eat() } Animal <|-- Dog Animal <|-- Cat Feeder ..>Food Feeder ..>Animal @enduml
055bec558a9e2a7f5c730c137cd411a775789985
850df42c7544ac83b23b4ad25e86fa2c22ec2f61
/src/main/java/org/yyb/adapter/objectadapter/objectdapter.puml
6f0ae63ffda7082c63ff4f9935180946f0a3a9d7
[ "Apache-2.0" ]
permissive
yangyibo/gof
1d1759911b0e70add0bff1c9dd437e6df0622498
60e0bd1c65de1717fa51a48d6b6126b1e5ba069f
refs/heads/master
2022-12-19T19:58:34.423758
2020-08-15T17:48:47
2020-08-15T17:48:47
278,110,455
0
0
Apache-2.0
2020-10-13T23:28:07
2020-07-08T14:24:12
Java
UTF-8
PlantUML
false
false
390
puml
@startuml class Phone { + charging(): void } interface Voltage5V { + output5V(): void } class Voltage220V { + output220V(): void } class VoltageAdapter { - voltage220v: Voltage220V + VoltageAdapter(Voltage220V) } Voltage5V <|.. VoltageAdapter Voltage220V --o VoltageAdapter Voltage5V <.. Phone class Client Phone <.. Client VoltageAdapter <.. Client Voltage220V <.. Client @enduml
8a6d65e1b0f01ad9432a049a390dd11a1be24059
a1eb6871a4ccbc6135b331ae824db91ec7b71e4e
/build/purchase-order-failure@0.11.0.puml
a26dd4a70ae325bd0a753edd2876b876bcb3ca99
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "CC-BY-4.0" ]
permissive
accordproject/cicero-template-library
737586850933daac2fbff2ff8b2d60dd50526b80
35e6c93ba9d9e78d9384c44a78d85ac216d9e9ea
refs/heads/main
2023-04-27T01:07:05.932361
2022-08-26T13:02:59
2022-08-26T13:02:59
109,224,687
77
149
Apache-2.0
2023-04-20T21:43:00
2017-11-02T06:11:37
HTML
UTF-8
PlantUML
false
false
890
puml
@startuml class com.docusign.clauses.PurchaseOrderFailureResponse << (T,yellow) >> { + MonetaryAmount penalty } com.docusign.clauses.PurchaseOrderFailureResponse --|> org.accordproject.runtime.Response class com.docusign.clauses.PurchaseOrderFailureState << (A,green) >> { + DateTime[] pastFailures + Integer nbPastFailures } com.docusign.clauses.PurchaseOrderFailureState --|> org.accordproject.runtime.State class com.docusign.clauses.PurchaseOrderFailure << (A,green) >> { + Party buyer + Duration lateOne + Duration lateTwo + Duration lateThree + Double lateOnePercent + Double lateTwoPercent + Double lateThreePercent + String article + String thisSection + Integer maxFailures + Duration failureRange + MonetaryAmount repeatedFailureCompensation } com.docusign.clauses.PurchaseOrderFailure --|> org.accordproject.contract.Contract @enduml
673d24091f96b71b7842f0a8cfbede80dd2dbdee
3dd18ea1f7bc562203cd243e66148d676a171db1
/src/main/resources/singleton/singleton.puml
5256e19d3d0f017cd096f6e9b1f04ed98e2b9f0a
[]
no_license
Carlos-Messi-Gold-Ye/design-model
44c2b6a13994195ef54cedd31ee4c4f92e250589
23f6d1baca5fb425cd35915b1f6409ff9c7af9dc
refs/heads/master
2020-06-14T01:29:09.899964
2019-09-19T02:57:05
2019-09-19T02:57:05
194,851,032
0
0
null
null
null
null
UTF-8
PlantUML
false
false
243
puml
@startuml class Singleton { .. 私有实体对象 .. - Singleton instance .. 私有构造方法 .. - Singleton() .. 公共静态获取实体方法 .. {static} + Singleton getInstance() } Singleton <|-- Singleton @enduml
d2e3361ad601819e0df43edaf391760243045469
82afadd8db7da5b825dc5616058cb8ec55c3e41e
/src/main/asciidoc/images/exercise-classes.puml
2bac41e147f8b2220d28cb0b5974b5cd0fec30db
[]
no_license
umons-polytech-odl2017/odl-tp3-theopoipoi
646e48559e4ed4f349336e7f62f10cf1f0e3de30
05d8e8438a813e2102781d15c1fece10dc941b11
refs/heads/master
2023-01-05T23:00:52.967319
2020-10-13T19:45:12
2020-10-13T19:45:12
108,538,819
0
0
null
2020-10-13T19:45:13
2017-10-27T11:39:03
Java
UTF-8
PlantUML
false
false
462
puml
@startuml package javax.swing { abstract class JComponent { + paintComponent(g : java.awt.Graphics) : void } class JPanel JComponent <|-- JPanel } package exercise { class DrawingPanel { + paintComponent(g : java.awt.Graphics) : void } interface Drawable { + draw(g : java.awt.Graphics) : void } JPanel <|-- DrawingPanel DrawingPanel o-> Drawable Drawable <|-- ConvexPolygon ConvexPolygon <|-- Rectangle Rectangle <|-- Square } @enduml
a20b5f03ad9ce742142328bebe13000c44a4fc59
730f4b05dc69c20a053e79ad21fd290e5be5a52a
/out/production/Pattern/factory/simplefactory/improve/Pizza.puml
e942c01d63b4d41bb8e7f44c4b1ec8195c1c13e3
[]
no_license
Initial2/DesignPattern
c7e3aa17a1f32addef6e3e2b900e81ae559483f9
bbb70c9674a6a85a76bc24f34bb0822cd905d42a
refs/heads/master
2023-05-30T21:47:53.117584
2021-06-23T13:09:04
2021-06-23T13:09:04
375,302,733
0
0
null
null
null
null
UTF-8
PlantUML
false
false
573
puml
@startuml abstract class Pizza{ name : String + prepare() : void + bake() : void + cut() : void + box() : void } class CheesePizza { } CheesePizza --|> Pizza class GreekPizza { } GreekPizza --|> Pizza class PepperPizza { } PepperPizza --|> Pizza class SimpleFactory{ + createPizza(orderType : String) : Pizza } SimpleFactory -->Pizza SimpleFactory --> CheesePizza SimpleFactory --> GreekPizza SimpleFactory --> PepperPizza class PizzaStore{ + orderPizza() : void - getType() : String } PizzaStore --> SimpleFactory @enduml
a487ddc450dc6d7d528c3babb59f79e659296bef
dda7b506188d7a34ac15ae3b7c3a55f8c94eabe7
/src/main/java/com/clexel/dp/behavior/strategy/strategy.puml
bce8e75ec2541580545949cb5ed80afbdfe7a455
[ "Apache-2.0" ]
permissive
jonathanzhan/design-pattern
77e7088c37a40320c94f18f4f68dbfff260639d0
3b118a1e0769b78127ed806b95ff011db5b15be8
refs/heads/master
2021-07-05T21:20:38.942127
2019-08-29T09:37:57
2019-08-29T09:37:57
191,871,045
0
0
Apache-2.0
2020-10-13T13:53:42
2019-06-14T03:37:20
Java
UTF-8
PlantUML
false
false
431
puml
@startuml caption 策略模式 interface Strategy{ Strategy : method() } class Context { - Strategy strategy + setStrategy(Strategy strategy) + execMethod() } note as N1 public void execMethod() { strategy.method(); } end note Context .. N1 class StrategyImp1 { method() } class StrategyImp2 { method() } Strategy -left--o Context StrategyImp2 -up..|> Strategy StrategyImp1 -up..|> Strategy @enduml
559b6ea68bf0d72a66fa473ebd95edb1191cb9b2
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderEditPreviewFailure.puml
51b3a9065523d2841cc33998434d9af406dc3939
[]
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
962
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 OrderEditPreviewFailure [[OrderEditPreviewFailure.svg]] extends OrderEditResult { type: String errors: [[ErrorObject.svg List<ErrorObject>]] } interface OrderEditResult [[OrderEditResult.svg]] { type: String } interface EditPreviewFailedError [[EditPreviewFailedError.svg]] { code: String message: String result: [[OrderEditPreviewFailure.svg OrderEditPreviewFailure]] } interface GraphQLEditPreviewFailedError [[GraphQLEditPreviewFailedError.svg]] { code: String result: [[OrderEditPreviewFailure.svg OrderEditPreviewFailure]] } OrderEditPreviewFailure --> EditPreviewFailedError #green;text:green : "result" OrderEditPreviewFailure --> GraphQLEditPreviewFailedError #green;text:green : "result" @enduml
261b0b88fa138bc6366a95137907807a7c62da85
e996fa8ecacb2f092ee170ba4703cdafd464097a
/bouquet/templates/docs/Solution/SubSystemName/ClassOverview.puml
620bfeef5274c44842b97f51d38bfafaab0ec480
[ "MIT" ]
permissive
madajaju/bouquet
24f46a8786cc9829eee8b7a2c452137b1481683a
3224eef247bae360d30e90bd4928eb2cde29f3ac
refs/heads/master
2023-04-28T22:12:20.533376
2018-11-21T13:45:09
2018-11-21T13:45:09
90,114,169
2
1
null
2023-04-18T11:23:53
2017-05-03T06:08:04
JavaScript
UTF-8
PlantUML
false
false
237
puml
@startuml rectangle "Class Overview TBD" @enduml package "<%= subsystem.name %>" #dddddd {} package "<%= system.name %>" #ffffaa { interface "CLI" interface "Web" interface "REST" class "Class1" { } } "CLI" -- "Class1"
30af24f33bfef8bd34d8de2ae5589439809ba154
87027febfeaac25bcdecd455a7c2edc0ee5edf31
/doc/uml/cls_user.puml
7eaeae48a87e2a2cf41df575945d10256625841a
[]
no_license
Godotcoffee/nurupo
28ddef7fde33db357ed4480cfd6380ca937ab963
83935d31c0e94648746fadb3680a6f5a2b365874
refs/heads/master
2020-04-10T09:37:27.672966
2018-12-28T00:31:13
2018-12-28T00:31:13
160,942,585
0
0
null
null
null
null
UTF-8
PlantUML
false
false
948
puml
@startuml package com.nurupo.movie.user.Entity { class User { -id: Int -username: String -password: String -hashedPassword: String -email: String -userStatus: Int -registerDate: Date +getter() +setter() } class Token { -id: Int -tokenKey: UUID -userId: Int -startDate: Date -durationDate: Duration -logout: Boolean +getter() +setter() } class Login { -username: String = "" -password: String = "" +getter() +setter() } } package com.nurupo.movie.user.Dao { interface IUserDao { +findByUsername(name: String): User +findByEmail(email: String): User } interface ITokenDao { +findByUserId(id: Int): Token } } JpaRepository <|-- IUserDao JpaRepository <|-- ITokenDao IUserDao ..> User ITokenDao ..> Token @enduml
1398ae1e7643dc83db6c6bdf22f56b1674a88163
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.postprocessing@2.3.0/PostProcessing/Runtime/Effects/LensDistortion.puml
c1d029d4813f0d32a059de9e5d485aa1bf227ec6
[]
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
683
puml
@startuml class LensDistortion <<sealed>> { + <<override>> IsEnabledAndSupported(context:PostProcessRenderContext) : bool } class LensDistortionRenderer <<sealed>> { + <<override>> Render(context:PostProcessRenderContext) : void } class "PostProcessEffectRenderer`1"<T> { } PostProcessEffectSettings <|-- LensDistortion LensDistortion o-> "intensity" FloatParameter LensDistortion o-> "intensityX" FloatParameter LensDistortion o-> "intensityY" FloatParameter LensDistortion o-> "centerX" FloatParameter LensDistortion o-> "centerY" FloatParameter LensDistortion o-> "scale" FloatParameter "PostProcessEffectRenderer`1" "<LensDistortion>" <|-- LensDistortionRenderer @enduml
d7f2ada46bc2d2a2f4f04fa56794112a81733c80
a75b114abecddbd68930efc00914c6e039de740f
/uml.puml
ed43b2eb09360cdfca887e0fab51adeeac569d59
[]
no_license
AbdelDer/dcsmobile
d068cb6d88f4c37916479471b79c8998767cfefa
094527caa4a8d4e170c0cd6865a49390a4d07525
refs/heads/master
2023-04-06T14:56:29.907185
2021-03-31T14:55:48
2021-03-31T14:55:48
267,109,873
0
0
null
null
null
null
UTF-8
PlantUML
false
false
20,191
puml
@startuml set namespaceSeparator :: class "dcsmobile::models::DeviceList.dart::DeviceList" { -String _accountID -String _deviceID -String _groupID -String _vehicleModel -double _latitude -double _longitude -num _timestamp -double _speedKPH +String groupID +String accountID +String deviceID +String vehicleModel +double latitude +double longitude +num timestamp +double speedKPH +String timestampAsString +String toString() } class "dcsmobile::models::EventData.dart::EventData" { -String _deviceID -num _timestamp -double _latitude -double _longitude -double _altitude -double _speedKPH +String deviceID +double timestamp +double latitude +double longitude +double altitude +double speedKPH } class "dcsmobile::models::Group.dart::Group" { -String _accountID -String _userID -String _groupID +String userID +String accountID +String groupID } class "dcsmobile::models::Device.dart::Device" { -String _accountID -String _deviceID -String _vehicleModel -double _latitude -double _longitude -num _timestamp -double _speedKPH +String accountID +String deviceID +String vehicleModel +double latitude +double longitude +num timestamp +double speedKPH +String timestampAsString +Future<String> address +String toString() } class "dcsmobile::models::User.dart::User" { -String _accountID -String _userID -String _password +List<DeviceList> devices +String userID +String accountID +String password } class "dcsmobile::models::Account.dart::Account" { -String _accountID -String _password +List<Device> devices +String accountID +String password } class "dcsmobile::models::Report.dart::Report" { -String _deviceID -double _maxSpeed -double _avgSpeed -double _distance -double _runningTime -double _parkingTime +String deviceID +double maxSpeed +double runningTime +double parkingTime +double distance +double avgSpeed +String parkingTimeAsString +List<String> parkingTimeAsStringList +String runningTimeAsString +List<String> runningTimeAsStringList } class "dcsmobile::widgets::dashboard::customswipper.dart::CustomSwipper" { +MediaQueryData mediaQuery +dynamic data +_CustomSwipperState createState() } "dcsmobile::widgets::dashboard::customswipper.dart::CustomSwipper" o-- "flutter::src::widgets::media_query.dart::MediaQueryData" "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::widgets::dashboard::customswipper.dart::CustomSwipper" class "dcsmobile::widgets::dashboard::customswipper.dart::_CustomSwipperState" { +MediaQueryData mediaQuery +dynamic data +double itemHeight +double itemWidth +double boxConstraints +void initState() +Widget build() +Container customContainer() } "dcsmobile::widgets::dashboard::customswipper.dart::_CustomSwipperState" o-- "flutter::src::widgets::media_query.dart::MediaQueryData" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::widgets::dashboard::customswipper.dart::_CustomSwipperState" class "dcsmobile::widgets::dashboard::dashboardfirstrow.dart::DashboardFirstRow" { +GlobalKey<ScaffoldState> scaffoldKey +dynamic data +_DashboardFirstRowState createState() } "dcsmobile::widgets::dashboard::dashboardfirstrow.dart::DashboardFirstRow" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::widgets::dashboard::dashboardfirstrow.dart::DashboardFirstRow" class "dcsmobile::widgets::dashboard::dashboardfirstrow.dart::_DashboardFirstRowState" { +GlobalKey<ScaffoldState> scaffoldKey +dynamic data -int _indexStack -double _top -double _bottom -double _left -double _right +Widget build() } "dcsmobile::widgets::dashboard::dashboardfirstrow.dart::_DashboardFirstRowState" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::widgets::dashboard::dashboardfirstrow.dart::_DashboardFirstRowState" class "dcsmobile::widgets::dashboard::dashboardsecondrow.dart::DashboardSecondRow" { +_DashboardSecondRowState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::widgets::dashboard::dashboardsecondrow.dart::DashboardSecondRow" class "dcsmobile::widgets::dashboard::dashboardsecondrow.dart::_DashboardSecondRowState" { -int _indexStack -List<bool> _visible +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::widgets::dashboard::dashboardsecondrow.dart::_DashboardSecondRowState" class "dcsmobile::widgets::dashboard::transparentcontainer.dart::TransparentContainer" { +IconData icon +dynamic quantity +dynamic description +_TransparentContainerState createState() } "dcsmobile::widgets::dashboard::transparentcontainer.dart::TransparentContainer" o-- "flutter::src::widgets::icon_data.dart::IconData" "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::widgets::dashboard::transparentcontainer.dart::TransparentContainer" class "dcsmobile::widgets::dashboard::transparentcontainer.dart::_TransparentContainerState" { +IconData icon +dynamic quantity +dynamic description -double _fontSize -double _iconSize +Widget build() } "dcsmobile::widgets::dashboard::transparentcontainer.dart::_TransparentContainerState" o-- "flutter::src::widgets::icon_data.dart::IconData" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::widgets::dashboard::transparentcontainer.dart::_TransparentContainerState" class "dcsmobile::widgets::dashboard::roundedcontainer.dart::RoundedContainer" { +dynamic colors +dynamic maxSubject +dynamic maxValue +dynamic model +_RoundedContainerState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::widgets::dashboard::roundedcontainer.dart::RoundedContainer" class "dcsmobile::widgets::dashboard::roundedcontainer.dart::_RoundedContainerState" { +dynamic colors +dynamic maxSubject +dynamic maxValue +dynamic model -double _heightContainer -double _widthContainer -double _fontSize +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::widgets::dashboard::roundedcontainer.dart::_RoundedContainerState" class "dcsmobile::Api::ApiShowDialog.dart::ApiShowDialog" { {static} +dynamic dialog() } class "dcsmobile::Api::Api.dart::Api" { {static} +HttpClient httpClient {static} +String baseUrl {static} +Future login() {static} +Future userGroup() {static} +Future devices() {static} +Future dashboardFirstRow() {static} +Future getHistory() {static} +Future getActualPosition() {static} +Future getReport() } "dcsmobile::Api::Api.dart::Api" o-- "dart::_http::HttpClient" class "dcsmobile::Api::Response.dart::Status" { +int index {static} +List<Status> values {static} +Status LOADING {static} +Status COMPLETED {static} +Status ERROR } "dcsmobile::Api::Response.dart::Status" o-- "dcsmobile::Api::Response.dart::Status" class "dcsmobile::Api::Response.dart::Response<T>" { +Status status +T data +String message +String toString() } "dcsmobile::Api::Response.dart::Response<T>" o-- "dcsmobile::Api::Response.dart::Status" class "dcsmobile::Api::HttpCustom.dart::HttpCustom" { +String url +String body +Future post() } class "dcsmobile::animations::fadeanimation.dart::FadeAnimation" { +double delay +Widget child +Widget build() } "dcsmobile::animations::fadeanimation.dart::FadeAnimation" o-- "flutter::src::widgets::framework.dart::Widget" "flutter::src::widgets::framework.dart::StatelessWidget" <|-- "dcsmobile::animations::fadeanimation.dart::FadeAnimation" class "dcsmobile::animations::speedometer.dart::Speedometer" { +double size +double minValue +double maxValue +double currentValue +double warningValue +Color backgroundColor +Color meterColor +Color warningColor +Color kimColor +TextStyle displayNumericStyle +String displayText +TextStyle displayTextStyle +_SpeedometerState createState() } "dcsmobile::animations::speedometer.dart::Speedometer" o-- "dart::ui::Color" "dcsmobile::animations::speedometer.dart::Speedometer" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::animations::speedometer.dart::Speedometer" class "dcsmobile::animations::speedometer.dart::_SpeedometerState" { +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::animations::speedometer.dart::_SpeedometerState" class "dcsmobile::animations::speedometer.dart::ArcPainter" { +double startAngle +double sweepAngle +Color color +void paint() +bool shouldRepaint() } "dcsmobile::animations::speedometer.dart::ArcPainter" o-- "dart::ui::Color" "flutter::src::rendering::custom_paint.dart::CustomPainter" <|-- "dcsmobile::animations::speedometer.dart::ArcPainter" class "dcsmobile::animations::speedometer.dart::TriangleClipper" { +Path getClip() +bool shouldReclip() } "flutter::src::rendering::proxy_box.dart::CustomClipper<T>" <|-- "dcsmobile::animations::speedometer.dart::TriangleClipper" class "dcsmobile::animations::speedometer.dart::KimClipper" { +Path getClip() +bool shouldReclip() } "flutter::src::rendering::proxy_box.dart::CustomClipper<T>" <|-- "dcsmobile::animations::speedometer.dart::KimClipper" class "dcsmobile::commons::fancyappbar.dart::FancyAppBar" { +String text +Color statusBarColor +double contentHeight +bool rightShow +void Function() callback +GlobalKey<ScaffoldState> scaffoldKey +Size preferredSize +_FancyAppBarState createState() } "dcsmobile::commons::fancyappbar.dart::FancyAppBar" o-- "dart::ui::Color" "dcsmobile::commons::fancyappbar.dart::FancyAppBar" o-- "dart::ui::void Function()" "dcsmobile::commons::fancyappbar.dart::FancyAppBar" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "dcsmobile::commons::fancyappbar.dart::FancyAppBar" o-- "dart::ui::Size" "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::commons::fancyappbar.dart::FancyAppBar" "flutter::src::widgets::preferred_size.dart::PreferredSizeWidget" <|-- "dcsmobile::commons::fancyappbar.dart::FancyAppBar" class "dcsmobile::commons::fancyappbar.dart::_FancyAppBarState" { +GlobalKey<ScaffoldState> scaffoldKey -double _iconSize +Widget build() } "dcsmobile::commons::fancyappbar.dart::_FancyAppBarState" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::commons::fancyappbar.dart::_FancyAppBarState" class "dcsmobile::commons::FECommons.dart::FECommons" { {static} -String _title {static} +AppBar appBar } "dcsmobile::commons::FECommons.dart::FECommons" o-- "flutter::src::material::app_bar.dart::AppBar" class "dcsmobile::commons::FEDrawer.dart::FEDrawer" { +Widget build() } "flutter::src::widgets::framework.dart::StatelessWidget" <|-- "dcsmobile::commons::FEDrawer.dart::FEDrawer" class "dcsmobile::charts::donutautolabelchart.dart::DonutAutoLabelChart" { +List<Series> seriesList +bool animate +Widget build() {static} -List _createSampleData() } "flutter::src::widgets::framework.dart::StatelessWidget" <|-- "dcsmobile::charts::donutautolabelchart.dart::DonutAutoLabelChart" class "dcsmobile::charts::donutautolabelchart.dart::VehicleStatus" { +String status +num value +Color colorVal } "dcsmobile::charts::donutautolabelchart.dart::VehicleStatus" o-- "dart::ui::Color" class "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListView<T>" { +GlobalKey<ScaffoldState> scaffoldKey -Key _key -dynamic _description -dynamic _option -dynamic _search +DeviceListViewState createState() } "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListView<T>" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListView<T>" o-- "flutter::src::foundation::key.dart::Key" "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListView<T>" class "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListViewState" { +GlobalKey<ScaffoldState> scaffoldKey -Key _key -dynamic _description -dynamic _option +String search +void initState() +Widget build() +dynamic fetchDevices() -ListView _devicesListView() -ListTile _tile() +void dispose() } "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListViewState" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListViewState" o-- "flutter::src::foundation::key.dart::Key" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListViewState" class "dcsmobile::pages::login.dart::Login" { +_LoginState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::pages::login.dart::Login" class "dcsmobile::pages::login.dart::_LoginState" { -GlobalKey<FormState> _formKey -GlobalKey<ScaffoldState> _scaffoldKey -TextEditingController _usernameController -TextEditingController _accountController -TextEditingController _passwordController +EncryptedSharedPreferences encryptedSharedPreferences +void initState() +Widget build() -Future _login() -void _verifySavedInfo() +dynamic saveLoginInfo() } "dcsmobile::pages::login.dart::_LoginState" o-- "flutter::src::widgets::framework.dart::GlobalKey<FormState>" "dcsmobile::pages::login.dart::_LoginState" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "dcsmobile::pages::login.dart::_LoginState" o-- "flutter::src::widgets::editable_text.dart::TextEditingController" "dcsmobile::pages::login.dart::_LoginState" o-- "encrypted_shared_preferences::encrypted_shared_preferences.dart::EncryptedSharedPreferences" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::pages::login.dart::_LoginState" class "dcsmobile::pages::Position.dart::Position" { -dynamic _description -dynamic _option +_PositionState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::pages::Position.dart::Position" class "dcsmobile::pages::Position.dart::_PositionState" { -GlobalKey<ScaffoldState> _scaffoldKey -GlobalKey<DeviceListViewState> _deviceListViewKey -dynamic _description -dynamic _option -DeviceListView _deviceListView -double _modelFontSize -double _adresseFontSize -double _detailsFontSize -Widget _title -IconData _icon +void initState() +Widget build() } "dcsmobile::pages::Position.dart::_PositionState" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "dcsmobile::pages::Position.dart::_PositionState" o-- "flutter::src::widgets::framework.dart::GlobalKey<DeviceListViewState>" "dcsmobile::pages::Position.dart::_PositionState" o-- "dcsmobile::pages::Utils::DeviceListView.dart::DeviceListView" "dcsmobile::pages::Position.dart::_PositionState" o-- "flutter::src::widgets::framework.dart::Widget" "dcsmobile::pages::Position.dart::_PositionState" o-- "flutter::src::widgets::icon_data.dart::IconData" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::pages::Position.dart::_PositionState" class "dcsmobile::pages::vehicleliveposition.dart::VehicleLivePosition" { +dynamic deviceID +dynamic option +_VehicleLivePositionState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::pages::vehicleliveposition.dart::VehicleLivePosition" class "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" { -dynamic _deviceID -dynamic _option -GoogleMapController _googleMapController -Uint8List _carPin -Uint8List _markerPin -GlobalKey<ScaffoldState> _scaffoldKey -Map<MarkerId, Marker> _markers -Set<Polyline> _polylines -List<LatLng> _route -StreamSubscription<EventData> _streamSubscription -Position _lastPosition -Marker _marker -double _speedKPH -double _warningSpeed -CameraPosition _kGooglePlex +void initState() -double _getMyBearing() +void dispose() -Stream _eventDataStream() -dynamic _loadCarPin() +Widget build() -dynamic _setData() } "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" o-- "google_maps_flutter::google_maps_flutter.dart::GoogleMapController" "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" o-- "dart::typed_data::Uint8List" "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" o-- "dart::async::StreamSubscription<EventData>" "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" o-- "geolocator::geolocator.dart::Position" "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" o-- "google_maps_flutter_platform_interface::src::types::marker.dart::Marker" "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" o-- "google_maps_flutter_platform_interface::src::types::camera.dart::CameraPosition" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::pages::vehicleliveposition.dart::_VehicleLivePositionState" class "dcsmobile::pages::splash.dart::Splash" { +_SplashState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::pages::splash.dart::Splash" class "dcsmobile::pages::splash.dart::_SplashState" { -AnimationController _scaleController -AnimationController _scale2Controller -AnimationController _widthController -AnimationController _positionController -Animation<double> _scaleAnimation -Animation<double> _scale2Animation -Animation<double> _widthAnimation -Animation<double> _positionAnimation +bool hideIcon +void initState() +Widget build() } "dcsmobile::pages::splash.dart::_SplashState" o-- "flutter::src::animation::animation_controller.dart::AnimationController" "dcsmobile::pages::splash.dart::_SplashState" o-- "flutter::src::animation::animation.dart::Animation<double>" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::pages::splash.dart::_SplashState" "flutter::src::widgets::ticker_provider.dart::TickerProviderStateMixin<T>" <|-- "dcsmobile::pages::splash.dart::_SplashState" class "dcsmobile::pages::dashboard.dart::Dashboard" { +_DashboardState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::pages::dashboard.dart::Dashboard" class "dcsmobile::pages::dashboard.dart::_DashboardState" { -GlobalKey<ScaffoldState> _scaffoldKey +MediaQueryData mediaQuery +bool useMobileLayout +Widget build() -dynamic _fetchData() -dynamic _content() } "dcsmobile::pages::dashboard.dart::_DashboardState" o-- "flutter::src::widgets::framework.dart::GlobalKey<ScaffoldState>" "dcsmobile::pages::dashboard.dart::_DashboardState" o-- "flutter::src::widgets::media_query.dart::MediaQueryData" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::pages::dashboard.dart::_DashboardState" class "dcsmobile::pages::ReportView.dart::ReportView" { -dynamic _deviceID -dynamic _vehicleModel +_ReportViewState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "dcsmobile::pages::ReportView.dart::ReportView" class "dcsmobile::pages::ReportView.dart::_ReportViewState" { -dynamic _deviceID -dynamic _vehicleModel -Report _report -double _warningSpeed -String _title -int _indexStack -List<bool> _visible -StreamSubscription<Report> _streamSubscription +void initState() +void dispose() -Stream _reportStream() +Widget build() +Container roundedContainer() } "dcsmobile::pages::ReportView.dart::_ReportViewState" o-- "dcsmobile::models::Report.dart::Report" "dcsmobile::pages::ReportView.dart::_ReportViewState" o-- "dart::async::StreamSubscription<Report>" "flutter::src::widgets::framework.dart::State<T>" <|-- "dcsmobile::pages::ReportView.dart::_ReportViewState" @enduml