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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
37dac4b37deb6fbf2ad62b391f8d640c66d1aa0a | a249c2addc54fa5250d268f1c9cb71c1f555fec4 | /learn-design-pattern/src/main/java/com/hqbhoho/bigdata/design/pattern/state/state.puml | cb6a61e6504b3265da22de0a5174f1569d79d424 | [] | no_license | hqbhoho/learn-bigdata | 3bb16248eed5498758bf3f98179242078ed6ddf7 | cb2eca9b1b795a4a8712850f0ec49a32b2f7922d | refs/heads/master | 2022-11-21T16:48:22.455348 | 2020-09-15T01:30:16 | 2020-09-15T01:30:28 | 173,652,937 | 19 | 7 | null | 2022-11-16T11:46:09 | 2019-03-04T01:31:39 | Java | UTF-8 | PlantUML | false | false | 1,538 | puml | @startuml
interface RaffleState{
{abstract} {method} + void deductCredit();
{abstract} {method} + void raffle();
{abstract} {method} + void dispensePrize();
}
class RaffleActivity{
{field} - RaffleState currentRaffleState
{field} - NoRaffleState noRaffleState
{field} - CanRaffleState canRaffleState
{field} - DispensePrizeState dispensePrizeState
{field} - DispensePrizeOutState dispensePrizeOutState
{method} + void raffle
}
class NoRaffleState{
{field} - RaffleActivity raffleActivity
{method} + void decuctcCredit();
{method} + void raffle();
{method} + void dispensePrize();
}
class CanRaffleState{
{field} - RaffleActivity raffleActivity
{method} + void decuctcCredit();
{method} + void raffle();
{method} + void dispensePrize();
}
class DispensePrizeState{
{field} - RaffleActivity raffleActivity
{method} + void decuctcCredit();
{method} + void raffle();
{method} + void dispensePrize();
}
class DispensePrizeOutState{
{field} - RaffleActivity raffleActivity
{method} + void decuctcCredit();
{method} + void raffle();
{method} + void dispensePrize();
}
class Client
RaffleState <|.. NoRaffleState
RaffleState <|.. CanRaffleState
RaffleState <|.. DispensePrizeState
RaffleState <|.. DispensePrizeOutState
RaffleActivity o.. RaffleState
RaffleActivity *.. NoRaffleState
RaffleActivity *.. CanRaffleState
RaffleActivity *.. DispensePrizeState
RaffleActivity *.. DispensePrizeOutState
RaffleActivity <.. client
@enduml |
8917fa96b8d415df8e4003f45f94e9393d051b92 | ca1cdd8d52a097e0ea0000d245b942f8f0fd70f8 | /Documentation/UML diagrams/Config.plantUml | f5ff5152c4583dc2b235c9552efe09eccd2406ff | [] | no_license | SupaGait/JavaProject_Fundamental_class | 5f600f05c59eb0e21a86c790a454b0890a4db785 | a14ca03598424fb97744dc9699067d3951083cd7 | refs/heads/master | 2021-01-09T08:11:44.665377 | 2016-02-08T08:17:04 | 2016-02-08T08:17:04 | 49,128,588 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 367 | plantuml | @startuml
package fr.shazilgerard.findmypatient.config {
class Settings {
- final long serialVersionUID = 0L
- String DataBaseName
- String DataBaseEncryptedPass
- Etc..
+ getAndSet()
}
class Configuration {
+ void read()
+ void save()
+ Settings get()
}
}
Serializable ()- Settings
Settings -* Configuration
@enduml |
80cac899e15b6c195850a4210b236ba0fee98b84 | 4d97f70d108affdf4620d2275e4826953dad05de | /de.gematik.ti.test.utils/doc/plantuml/TESTUTILS/parser.plantuml | bef5b149e08a6f0ae44408e89befa6e5e940f792 | [
"Apache-2.0"
] | permissive | gematik/ref-Ti-Test-Utils | 8bfbf94bd7cc29cd7a82120dfde9a47d5e541926 | 7a7b0c75d7e82147439fa4643bf4fe0321c163a0 | refs/heads/master | 2022-02-15T19:34:37.818744 | 2022-01-07T07:24:39 | 2022-01-07T07:24:39 | 233,038,026 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 283 | plantuml | @startuml
package de.gematik.ti.utils.parser {
class ApduParser {
{static} - LOG : Logger
- ApduParser()
{static} + toCommandApdu()
{static} + toCommandApdu()
{static} - parse()
}
}
@enduml
|
f90639fee9273862b2c658c7914a3f71d91ff972 | c69e455e93b370087f3c944b54138d7013ac67cb | /covid.puml | f7ece2d9ea66437f0a30648216d650ec3600cca6 | [] | no_license | Celthund/OOP-Serie3 | fb9904213914461455b5b216d9461b8f09ad7354 | 45df210d04693dbe87a1d50da900798221b99dd5 | refs/heads/master | 2022-11-13T04:43:19.571871 | 2020-07-09T09:21:14 | 2020-07-09T09:21:14 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,847 | puml | @startuml
class MainActivity extends Activity{
void onCreate(Bundle savedInstanceState)
-saveGameModel(String file)
-loadGameLevel(String file)
+onSaveInstanceState(Bundle savedInstanceState)
}
package View {
MainActivity o-- GameView
GameView o-- Tile
interface Tile {
void draw(Canvas canvas, int side);
boolean setSelect(boolean selected);
}
abstract class FigureTile implements Tile {
Paint paint
Img FigureImg
void draw(Canvas canvas, int side);
boolean setSelect(boolean selected);
}
class GameView implements ModelListener {
TilePanel tilePanel
HashMap<Class, Tile> modelToView
+GameView(Context ctx, TilePanel tilePanel)
+setPlayerDead(boolean playerDead)
+update(Level level)
}
class PlayerView extends FigureTile{
FloorView(Context ctx)
}
class TrashView extends FigureTile{
FloorView(Context ctx)
}
class VirusView extends FigureTile{
FloorView(Context ctx)
}
class WallView extends FigureTile{
FloorView(Context ctx)
}
}
package model {
MainActivity o-- GameModel
GameModel o-- Level
GameModel o-- ModelListener
Level o-- Position
Level *-- Element
interface ModelListener {
void update(Level level);
}
class Position {
int line
int column
+Position(int line, int column)
}
class GameModel {
-ModelListener modelListener
+boolean isGameOver
+enum Direction = LEFT, RIGHT
-int TOTAL_LEVELS «final»
-Level levelNumber
-Loader loader
+GameModel(ModelListener modelListener, AssetManager assets)
+loadLevelFromAssets(int levelNumber)
+save(PrintWriter to)
+loadLevel(Scanner from)
+loadLevel(Scanner from, int number)
+movePlayer(Direction direction)
+getNumberLevel(): int
+getVirusCounter(): int
+isPlayerAlive(): boolean
-checkForTrash(Position position)
+updateIfLevelIsFinished()
+checkGravity()
+update()
}
class Level {
int levelNumber
boolean playerAlive
int virusCounter
Position playerPosition
ArrayList<Position> gravityElements
HashMap availableElements
Element[][] board
+getColumn(): int
+int getLine(): int
+int getNumber(): int
+reset()
+get(int line, int column): Element
+get(Position position): Element
+isPositionInbounds(int line, int column): boolean
+isPositionInbounds(Position position): boolean
+put(int line, int column, char type)
+decreaseVirus()
+removeElement(Position position)
-updatePositionInGravityElements(Position oldPosition, Position newPosition)
+moveElement(Position oldPosition, Position newPosition)
}
abstract class Element {
+hasGravity():boolean
+elementCollision(Element element):boolean
+abstract save(PrintWriter to)
}
class Player extends Element{
String character = "@" «final»
+hasGravity():boolean
+save(PrintWriter to)
+boolean elementColision():boolean
}
class Virus extends Element {
String character = "*" «final»
+hasGravity():boolean
+save(PrintWriter to)
+boolean elementColision():boolean
}
class TrashCan extends Element {
String character = "V" «final»
+hasGravity():boolean
+save(PrintWriter to)
+boolean elementColision():boolean
}
class Floor extends Element {
String character = "X" «final»
+hasGravity():boolean
+save(PrintWriter to)
+elementColision():boolean
}
}
@enduml |
f1e0f296723333d52bf5a57fec5d8e66b0d1a0b4 | 66875a75acd1c1ffc6d60a337923aade5d5fac1e | /docs/diagrams/src/class.puml | c2820cfed2771be33258a24e84e673b8dd16d87f | [] | no_license | lmmendonca/agenda-java-labiii | 55aca7fb0b79019244d8e6ebc8f3d128b1fdab0f | 5379627d2aced2112e3f4c1163f0ab3885c395ec | refs/heads/master | 2022-02-14T03:45:51.772188 | 2019-08-28T01:08:00 | 2019-08-28T01:08:00 | 203,715,621 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,163 | puml | @startuml
title Global View - Class Diagram
left to right direction
class Agenda
class Contato
class Agenda {
-List<Contato> contatos
+getContatos()
+setContatos(List<Contato> contatos)
-sort()
+deleteContato(String nome)
+findContato(String nome)
+limparAgenda()
-size()
+nextId()
+save()
+printAgenda()
+toString()
}
class Contato {
-Integer id
-String nome
-List<String> telefones
+getNome()
+setNome(String nome)
+getTelefone()
+setTelefone(List<String> telefones)
+getId()
+setId(Integer id)
+toString()
+addTelefone(String telefone)
+removeTelefone(String telefone)
+editaTelefone(String oldTel, String newTel)
-findTelefone(String telefone)
+existTelefone(String telefone)
}
class FileHelper {
+write(String text, String fileOut, Boolean append)
+buildStringFromFile(String path)
+printFromFile(String path)
+cleanFile(String path)
}
class AgendaTerminalApp {
+main(String[] args)
-void editaContato(Agenda agenda, Scanner scanner)
-void removeContato(Agenda agenda, Scanner scanner)
-void addContato(Agenda agenda, Scanner scanner)
-List<Contato> restauraAgenda()
}
Agenda o--> "n" Contato : possui
AgendaTerminalApp <|-left- Agenda
@enduml |
828f5eeadcedd3dd8cacccde7c95870ac3354638 | 36cb976b603e5322ed48c7802738d6952945751c | /diagram/class-diagram/service.plantuml | 011bbc9313cc74208922e8e84e9dcae8aa8ef017 | [] | no_license | eportfolio-tech/docs | c19e6cc2d02747056329a140f4e2bc93f70cc597 | 0cb887c0a5c3076655876c21d2e2dc06e12bb5f1 | refs/heads/master | 2023-01-08T13:26:53.086181 | 2020-11-05T11:00:34 | 2020-11-05T11:00:34 | 309,687,794 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,049 | plantuml | @startuml
skinparam linetype polyline
skinparam linetype ortho
skinparam dpi 300
title __Service Class Diagram__\n
class tech.eportfolio.server.service.impl.AzureStorageServiceImpl {
- cloudBlobClient
- logger
+ AzureStorageServiceImpl()
+ createContainer()
+ deleteBlob()
+ deleteContainer()
+ listBlob()
+ uploadBlob()
+ uploadBlobFromInputStream()
+ uploadPicture()
}
class tech.eportfolio.server.service.impl.EmailServiceImpl {
- emailSender
- logger
+ sendSimpleMessage()
}
class tech.eportfolio.server.service.impl.PortfolioServiceImpl {
- mongoTemplate
+ PortfolioServiceImpl()
+ create()
+ deleteContent()
+ findByUserIdIn()
+ findByUsername()
+ fromPortfolioDTO()
+ save()
+ searchByKeywordWithPaginationAndVisibilities()
+ searchByTagWithPaginationAndVisibilities()
+ searchWithPagination()
+ searchWithVisibilities()
+ searchWithVisibilities()
+ updateContent()
}
class tech.eportfolio.server.service.impl.RecoveryServiceImpl {
+ buildRecoveryEmailContent()
+ buildRecoveryLink()
+ generatePasswordRecoveryToken()
+ getPasswordRecoverySecret()
+ passwordRecovery()
+ sendRecoveryEmail()
+ setEmailService()
+ setRecoveryTokenProvider()
+ setUserService()
}
class tech.eportfolio.server.service.impl.TagServiceImpl {
+ create()
+ findAll()
+ findById()
+ findByIdIn()
+ findByName()
+ findByNameIn()
+ save()
+ saveAll()
+ saveAllIfNotExist()
}
class tech.eportfolio.server.service.impl.TemplateServiceImpl {
+ create()
+ delete()
+ findAvailableTemplates()
+ findTemplateById()
+ findTemplateByTitle()
+ save()
}
class tech.eportfolio.server.service.impl.UserCommentServiceImpl {
+ UserCommentServiceImpl()
+ create()
+ delete()
+ findById()
+ findByPortfolio()
+ findByUsernameAndIdAndDeleted()
+ findUsersByUserComments()
+ reply()
}
class tech.eportfolio.server.service.impl.UserFollowServiceImpl {
+ UserFollowServiceImpl()
+ delete()
+ findByDestinationUser()
+ findBySourceUsernameAndDestinationName()
+ findBySourceUsernameAndDestinationNameAndDeleted()
+ follow()
+ unfollow()
}
class tech.eportfolio.server.service.impl.UserLikeServiceImpl {
+ UserLikeServiceImpl()
+ delete()
+ findByPortfolio()
+ findByPortfolioAndUsername()
+ findByUser()
+ findByUsernameAndPortfolioId()
+ findByUsernameAndPortfolioIdAndDeleted()
+ like()
+ unlike()
}
class tech.eportfolio.server.service.impl.UserServiceImpl {
- bCryptPasswordEncoder
- logger
+ changePassword()
+ createGithubAvatar()
+ delete()
+ encodePassword()
+ findByEmail()
+ findByIdIn()
+ findByUsername()
+ findByUsernameIn()
+ findDeletedUserWithContainer()
+ fromUserDTO()
+ loadUserByUsername()
+ register()
+ save()
+ saveAll()
+ setAvatarGenerator()
+ setAzureStorageService()
+ setBcryptPasswordEncoder()
+ setUserRepository()
+ verifyPassword()
}
class tech.eportfolio.server.service.impl.UserTagServiceImpl {
+ UserTagServiceImpl()
+ batchAssign()
+ create()
+ delete()
+ findByTagId()
+ findByUsername()
+ findTagsByUser()
+ findUsersByTag()
+ saveAll()
}
class tech.eportfolio.server.service.impl.VerificationServiceImpl {
+ buildEmailContent()
+ buildLink()
+ generateVerificationToken()
+ getVerificationSecret()
+ sendVerificationEmail()
+ setEmailService()
+ setUserService()
+ setVerificationTokenProvider()
+ verify()
+ verify()
}
tech.eportfolio.server.service.impl -[hidden]- tech.eportfolio.server.repository
tech.eportfolio.server.service.impl.AzureStorageServiceImpl .up.|> tech.eportfolio.server.service.AzureStorageService
tech.eportfolio.server.service.impl.EmailServiceImpl .up.|> tech.eportfolio.server.service.EmailService
tech.eportfolio.server.service.impl.PortfolioServiceImpl .up.|> tech.eportfolio.server.service.PortfolioService
tech.eportfolio.server.service.impl.PortfolioServiceImpl o-- tech.eportfolio.server.repository.PortfolioRepository
tech.eportfolio.server.service.impl.RecoveryServiceImpl .up.|> tech.eportfolio.server.service.RecoveryService
tech.eportfolio.server.service.impl.RecoveryServiceImpl o-- tech.eportfolio.server.service.EmailService
tech.eportfolio.server.service.impl.RecoveryServiceImpl o-- tech.eportfolio.server.common.utility.JWTTokenProvider
tech.eportfolio.server.service.impl.RecoveryServiceImpl o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.service.impl.TagServiceImpl .up.|> tech.eportfolio.server.service.TagService
tech.eportfolio.server.service.impl.TagServiceImpl o-- tech.eportfolio.server.repository.TagRepository
tech.eportfolio.server.service.impl.TemplateServiceImpl .up.|> tech.eportfolio.server.service.TemplateService
tech.eportfolio.server.service.impl.TemplateServiceImpl o-- tech.eportfolio.server.repository.TemplateRepository
tech.eportfolio.server.service.impl.UserCommentServiceImpl .up.|> tech.eportfolio.server.service.UserCommentService
tech.eportfolio.server.service.impl.UserCommentServiceImpl o-- tech.eportfolio.server.repository.UserCommentRepository
tech.eportfolio.server.service.impl.UserCommentServiceImpl o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.service.impl.UserFollowServiceImpl .up.|> tech.eportfolio.server.service.UserFollowService
tech.eportfolio.server.service.impl.UserFollowServiceImpl o-- tech.eportfolio.server.repository.UserFollowRepository
tech.eportfolio.server.service.impl.UserLikeServiceImpl .up.|> tech.eportfolio.server.service.UserLikeService
tech.eportfolio.server.service.impl.UserLikeServiceImpl o-- tech.eportfolio.server.repository.UserLikeRepository
tech.eportfolio.server.service.impl.UserServiceImpl .up.|> org.springframework.security.core.userdetails.UserDetailsService
tech.eportfolio.server.service.impl.UserServiceImpl .up.|> tech.eportfolio.server.service.UserService
tech.eportfolio.server.service.impl.UserServiceImpl o-- tech.eportfolio.server.common.utility.AvatarGenerator
tech.eportfolio.server.service.impl.UserServiceImpl o-- tech.eportfolio.server.service.AzureStorageService
tech.eportfolio.server.service.impl.UserServiceImpl o-- tech.eportfolio.server.repository.UserRepository
tech.eportfolio.server.service.impl.UserTagServiceImpl .up.|> tech.eportfolio.server.service.UserTagService
tech.eportfolio.server.service.impl.UserTagServiceImpl o-- tech.eportfolio.server.service.TagService
tech.eportfolio.server.service.impl.UserTagServiceImpl o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.service.impl.UserTagServiceImpl o-- tech.eportfolio.server.repository.UserTagRepository
tech.eportfolio.server.service.impl.VerificationServiceImpl .up.|> tech.eportfolio.server.service.VerificationService
tech.eportfolio.server.service.impl.VerificationServiceImpl o-- tech.eportfolio.server.service.EmailService
tech.eportfolio.server.service.impl.VerificationServiceImpl o-- tech.eportfolio.server.service.UserService
tech.eportfolio.server.service.impl.VerificationServiceImpl o-- tech.eportfolio.server.common.utility.JWTTokenProvider
@enduml
|
4157a5e4867a9ff4cac7a6db746f12ae3f82c360 | a5d364bcb101c28871804f9f28f0e0638d5956cb | /src/uml/classes.puml | 8a61553ac3b047a69cd4e1e0e3cc54452d9a36d8 | [] | no_license | Gradergage/software-design-2018 | fbeb5d5f64dfe0d07d800e44ba1474b04a0a7c76 | eaf500259a8a6f426ba1cce577e6047dff682373 | refs/heads/master | 2020-04-25T00:34:12.800674 | 2019-06-19T12:42:18 | 2019-06-19T12:42:18 | 172,382,016 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,152 | puml | @startuml
interface Пользователь {
авторизация()
показатьСписокЗаявок()
редактироватьЗаявку()
завершитьОбработкуЗаявки()
выход()
}
class Заказчик {
зарегистрироватьЗаявку()
согласитьсяНаПодключение()
отказатьсяОтЗаявки()
оплатитьЗаявку()
}
class ОператорКЦ {
зарегистрироватьЗаявку()
передатьЗаказчикуДокумент
}
class ОператорТО {
}
class ОператорМО {
}
class Тариф {
Наименование
Цена
}
class "Адрес" as adr
{
Адрес
}
class "Заявка на монтажные работы" as order
{
Идентификатор
Пользователь оператор Монтажного отдела
Статус
Указания по монтажу
}
class "Заявка на подключение" as Заявка
{
Адрес подключения
Тарифподключения
Информация от Технического отдела
Статус
Статус оплаты
Пользователь Заказчик
Пользователь оператор Колл-Центра
Пользователь оператор Технического отдела
Заявка на монтажные работы
Документ на оплату
}
class "Документ на оплату" as paybill
{
Cписок стоимости оборудования
Стоимость установки
Суммарная стоимость
}
Заказчик --|> Пользователь
ОператорКЦ --|> Пользователь
ОператорТО --|> Пользователь
ОператорМО --|> Пользователь
Заявка "1" o-- "1" adr
Заявка "1" <-- "1" ОператорКЦ
Заявка "1" o-- "1" ОператорТО
order "1" o-- "1" ОператорМО
Заявка "1" <-- "1" Заказчик
Заявка "1" o-left- "1" paybill
Заявка "1" o-left- "*" order
Тариф "1" --right-o Заявка
@enduml |
a416e2d772a0a67901fee477b95ac5069468a187 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderLineItemAddedMessage.puml | d890c4735c8bc18b9f3d9724902f43accb2c5319 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,210 | 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 OrderLineItemAddedMessage [[OrderLineItemAddedMessage.svg]] extends OrderMessage {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
lineItem: [[LineItem.svg LineItem]]
addedQuantity: Long
}
interface OrderMessage [[OrderMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
}
@enduml
|
924d788a7dad4c162b1e6cd66963aeabef10443e | 56d2bad8bda60e486164d32f47f7b6e65dd1babe | /app/src/main/java/com/journear/app/ui/ui.plantuml | 715f86ca96d54fa050e6ab35c9b8d699080f6039 | [] | no_license | nikhilgirrajtcd/journear-neo | 27372763833899946bfacf2856d7bd69953c6b21 | 28d90bd4b93e049bcf0f80c0358ab1b88f3a52ee | refs/heads/master | 2022-04-23T11:33:29.383211 | 2020-04-27T15:09:41 | 2020-04-27T15:09:41 | 248,527,974 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,789 | plantuml | @startuml
title __UI's Class Diagram__\n
namespace com.journear.app {
namespace ui {
class com.journear.app.ui.CreateJourneyActivity {
- alertDialog : AlertDialog
- hourOfJourney : int
- mapTextValueToJnGeoCodeItem : HashMap<String, JnGeocodeItem>
- minuteOfJourney : int
- timeTextView : TextView
# onCreate()
- configureAutoCompleteTextViewForSearch()
- getCurrentInput()
- setTimeInTextView()
}
}
}
namespace com.journear.app {
namespace ui {
class com.journear.app.ui.LoginActivity {
~ email : EditText
~ logTag : String
~ login : Button
~ password : EditText
~ responseErrorListener : ErrorListener
~ responseListener : Listener
# onCreate()
- afterLoginSuccess()
- validateAndLogin()
- validateInputs()
}
}
}
namespace com.journear.app {
namespace ui {
class com.journear.app.ui.MainActivity {
{static} + MESSAGE_READ : int
{static} + MY_HANDLE : int
{static} + SERVICE_INSTANCE : String
{static} + SERVICE_REG_TYPE : String
{static} + TAG : String
{static} + TXTRECORD_PROP_AVAILABLE : String
+ broadcastReceiver : BroadcastReceiver
{static} ~ SERVER_PORT : int
~ discoveredDnsRecords : HashMap<String, NearbyDevice>
~ dnsSdResponseRecordListener : DnsSdTxtRecordListener
~ dnsSdResponseServiceListener : DnsSdServiceResponseListener
{static} - PERMISSIONS_REQUEST_CODE : int
- _channel : Channel
- _manager : WifiP2pManager
- devicesList : List<NearbyDevice>
- intentFilter : IntentFilter
- mAppBarConfiguration : AppBarConfiguration
- recyclerView : RecyclerView
+ getChannel()
+ getManager()
+ onCreateOptionsMenu()
+ onSupportNavigateUp()
# onCreate()
- checkUserLogon()
- decorateUiForUser()
- discoverDevices()
- getWifiP2pDnsSdServiceInfo()
- shortToast()
- showJourneys()
- showList()
- unregisterAllWifiP2p()
}
}
}
namespace com.journear.app {
namespace ui {
class com.journear.app.ui.StartActivity {
~ login : Button
~ register : Button
# onCreate()
}
}
}
namespace com.journear.app {
namespace ui {
class com.journear.app.ui.UserRegisterActivity {
~ cancel : Button
~ dob : EditText
~ email : EditText
~ gender : RadioGroup
~ password : EditText
~ phone : EditText
~ picker : DatePickerDialog
~ register : Button
~ username : EditText
# onCreate()
}
}
}
com.journear.app.ui.CreateJourneyActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.journear.app.ui.LoginActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.journear.app.ui.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.journear.app.ui.MainActivity o-- com.journear.app.core.entities.NearbyDevice : ndOwnJourneyPlan
com.journear.app.ui.MainActivity o-- com.journear.app.ui.adapters.RecyclerViewAdapter : recyclerViewAdapter
com.journear.app.ui.StartActivity -up-|> androidx.appcompat.app.AppCompatActivity
com.journear.app.ui.UserRegisterActivity -up-|> androidx.appcompat.app.AppCompatActivity
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
|
65cdf9f0ce9fe697ee46fd3c5328e250e1e2e93b | 8dcd1fda2772a3153f09f9fb83ccca6fd411fa5f | /plantuml/Rental.puml | 767dab7d9bb37564e06a3cb1053b78bed40268ab | [] | no_license | georgio/ood-3 | eef514ae561beca1fcaf200d326f1c6cab8e50e3 | 72d5f3ee4da2de3e2c343a5aa725c5fa6f235dab | refs/heads/master | 2022-04-21T08:17:49.376166 | 2020-04-24T15:09:31 | 2020-04-24T15:09:31 | 258,545,931 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 725 | puml | @startuml
class Rental {
- dueDate : DateTime
- rentalDate : DateTime
- dateReturned : DateTime
- member : Member
- baseFee : Double
- extraFee : Double
+ Rental(item:Item, member:Member)
+ getDueDate() : DateTime
+ setDueDate(dueDate:DateTime) : void
+ getDateReturned() : DateTime
+ setDateReturned(dateReturned:DateTime) : void
+ getRentalDate() : DateTime
+ setRentalDate(rentalDate:DateTime) : void
+ setMember(member:Member) : void
+ getMember() : Member
+ setItem(item:Item) : void
+ getItem() : Item
+ getBaseFee() : Double
+ setBaseFee(baseFee:Double) : void
+ getExtraFee() : Double
+ setExtraFee(extraFee:Double) : void
}
@enduml
|
e30ad39ad6acf54146976be732746a06bd1e0dc7 | ed45ea4470bcfc497e2584697d7842a540e04fd9 | /ros/umlresource/class_loader.puml | fa807ce5f64510667e90849ed68e7cf2131256f6 | [] | no_license | cf-zhang/documents | ffcd8213587f8aa9c47406cf2491bf77beec9c33 | 8a4439932017b67fba7988ff7fadd9829bce1e4c | refs/heads/master | 2022-03-03T13:52:27.333343 | 2022-02-25T11:31:22 | 2022-02-25T11:31:22 | 154,789,912 | 11 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,593 | puml | @startuml
namespace class_loader #DDDDDD {
'note top of AbstractMetaObjectBase : typedef std::vector<class_loader::ClassLoader *> ClassLoaderVector;
class ClassLoader {
-- public method --
+explicit ClassLoader(const std::string & library_path, bool ondemand_load_unload = false);
+virtual ~ClassLoader();
+template<class Base> std::vector<std::string> getAvailableClasses();
+std::string getLibraryPath();
+template<class Base> std::shared_ptr<Base> createSharedInstance(const std::string & derived_class_name)
+template<class Base> boost::shared_ptr<Base> createInstance(const std::string & derived_class_name);
+template<class Base> UniquePtr<Base> createUniqueInstance(const std::string & derived_class_name)
+template<class Base> Base * createUnmanagedInstance(const std::string & derived_class_name);
+template<class Base> bool isClassAvailable(const std::string & class_name);
+bool isLibraryLoaded();
+bool isLibraryLoadedByAnyClassloader();
+bool isOnDemandLoadUnloadEnabled();
+void loadLibrary();
+int unloadLibrary();
-- private method --
-template<class Base> void onPluginDeletion(Base * obj);
-template<class Base> Base * createRawInstance(const std::string & derived_class_name, bool managed)
-static bool hasUnmanagedInstanceBeenCreated();
-int unloadLibraryInternal(bool lock_plugin_ref_count);
-- private data --
-bool ondemand_load_unload_;
-std::string library_path_;
-int load_ref_count_;
-boost::recursive_mutex load_ref_count_mutex_;
-int plugin_ref_count_;
-boost::recursive_mutex plugin_ref_count_mutex_;
-static bool has_unmananged_instance_been_created_;
}
@enduml |
bd21dd485d9eea64a5ca65e13da160c28085f220 | 3beac2c13d90c569f4b5c87fce34a984eeddaae5 | /uml/app.puml | 302aba1bd86e97b3d6b33a6c41322b294d6ebe7c | [] | no_license | vuolo/vuolo-cop3330-assignment4part2 | 1489390c2db61e17ddd5957af6735ba0d44b2c54 | b6f436755cc0e81f0ccc9777ff9502acbdc8cf87 | refs/heads/main | 2023-09-03T11:41:26.756619 | 2021-11-16T04:46:09 | 2021-11-16T04:46:09 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,873 | puml | @startuml
class App {
main()
start()
}
class TodoController {
toDoModel: ToDoModel
tableView: TableView
colDescription: TableColumn
colDueDate: TableColumn
colCompleted: TableColumn
txtNewDescription: TextField
dtNewDueDate: DatePicker
chkbx: CheckBox
lvTitles: ListView
chkbxShowIncomplete()
chkbxShowComplete()
showIncomplete: boolean
showComplete: boolean
txtAreaError: TextArea
refreshTitleList()
refreshToDoTasks()
btnSaveClicked()
btnLoadClicked()
btnDeleteListClicked()
btnDeleteToDoTaskClicked()
btnMarkCompleteClicked()
btnNewTaskClicked()
listTitleClicked()
btnCreateNewListClicked()
btnSaveListClicked()
chkbxShowIncompleteClicked()
chkbxShowCompleteClicked()
getTasksToDisplay()
initialize()
}
class ToDoModel {
ToDoList: Collection
getToDoList()
setToDoList()
saveList()
loadFiles()
loadList()
checkForDir()
checkForFile()
}
class ToDoList {
title: String
toDoTasks: Collection
ToDoList()
getToDoTasks()
setToDoTasks()
getTitle()
setTitle()
addTask()
removeTask()
getIncompleteToDoTasks()
getCompleteToDoTasks()
}
class ToDoTask {
description: SimpleStringProperty
dueDate: String
complete: Boolean
ToDoTask()
getDescription()
setDescription()
getDueDate()
setDueDate()
getComplete()
setComplete()
}
class FileLoader {
files: ArrayList<String>
lvFilesItems: ListView<String>
loadList()
loadFiles()
getObservableFileList()
initialize()
}
class FileCreator {
txtNewListTitle: TextField
btnCreateList()
}
App -- ToDoController
ToDoController -- ToDoModel
ToDoController -- FileLoader
ToDoController -- FileCreator
ToDoModel -- ToDoList
ToDoList -- ToDoTask
@enduml |
ba53cb9a78fc932366e54b8e92bb444323a0abe6 | 6e29d893e7deebb9339dd5515195d7e510aba402 | /Documentação/Sprint 2/UC01_Registar_Organizacao/UC01_Registar_Organizacao_DC.puml | 80f7b9e83020a9bed63682b30cdb5d3452e231e5 | [] | no_license | blestonbandeiraUPSKILL/upskill_java1_labprg_grupo2 | 3a257326461907780a503165042584c5b7a8e535 | 95c31675e9008e961f00b177d6814046a72b577c | refs/heads/main | 2023-03-18T20:54:48.147868 | 2021-03-21T20:10:16 | 2021-03-21T20:10:16 | 331,623,577 | 0 | 2 | null | 2021-03-21T20:10:17 | 2021-01-21T12:38:14 | Java | UTF-8 | PlantUML | false | false | 3,432 | puml | @startuml
title UC01 - Registar Organização - Diagrama de Classes
class RegistarOrganizacaoUI {
}
class RegistarOrganizacaoController {
--
+novaOrganizacao(nome, NIF, endLocal, enderacoPostal, endLocalidade, tlf, websiteOrg, emailOrg, nomeG, funcao, tlfG, emailG, pwd)
+registaOrganizacao()
}
class Organizacao {
-String nome
-String NIF
-Website websiteOrg
-String telefone
-Email emailOrg
--
+Organizacao(nome, NIF, websiteOrg, telefone, emailOrg, enderecoOrg, gestorColaborador)
+EnderecoPostal novoEndereco(local, codPostal, localidade)
+Colaborador novoColaborador(nome, funcao, tlf, email)
}
class Colaborador {
-String funcao
-String telefone
-Organizacao organizacao
--
+Colaborador(nome,funcao,tlf,email)
+String getNome()
+String getEmail()
}
class EnderecoPostal {
-String arruamento
-String numeroPorta
-String codPostal
-String localidade
--
+EnderecoPostal(arruamento, numeroPorta, localidade, codPostal)
}
class RepositorioOrganizacao {
--
+Organizacao registaOrganizacao(nif, nome, website, \ntelefoneOrg, emailOrg, \nendArruamento, endPorta, endLocalidade, endCodPostal, \nnomeGestor, telefoneGestor, funcaoGestor)
+saveOrganizacao(nif, nome, website, \ntelefoneOrg, emailOrg, \nendArruamento, endPorta, endLocalidade, endCodPostal, \nnomeGestor, telefoneGestor, funcaoGestor)
-addOrganizacao(Organizacao org)
-registaGestorComoUtilizador(Colaborador colabGestor)
}RepositorioOrganizacao
class AutorizacaoFacade {
--
+registaUtilizadorComPapeis(nomeG,emailG,pwd,rolename)
}
interface AlgoritmoGeradorPasswords {
--
+geraPassword(nomeG, emailG)
}
class Plataforma {
-String designacao
--
+AutorizacaoFacade getAutorizacaoFacade()
+AlgoritmoGeradorPasswords getAlgoritmoGeradorPwd()
}
RegistarOrganizacaoUI ..> RegistarOrganizacaoController
RegistarOrganizacaoController ..> RepositorioOrganizacao
RegistarOrganizacaoController ..> Organizacao
Organizacao "1"-->"1..*" Colaborador
Organizacao "1"-->"1" Colaborador
Organizacao "1"-->"1" EnderecoPostal
RepositorioOrganizacao "1"-->"*" Organizacao
RepositorioOrganizacao ..> AutorizacaoFacade
RepositorioOrganizacao ..> AlgoritmoGeradorPasswords
RepositorioOrganizacao ..> Colaborador
RepositorioOrganizacao ..> EnderecoPostal
newpage
interface AlgoritmoGeradorPasswords {
--
+String geraPassword(String nomeG, String emailG)
}
note left
Esta interface será alvo de múltiplas implementações,
uma por cada algoritmo externo que tenha que ser suportado.
end note
class AlgoritmoGeradorPasswordsAdapter1 {
--
+String geraPassword(String nome, Email email)
}
class AlgoritmoGeradorPasswordsAdapter2 {
--
+String geraPassword(String nome, Email email)
}
class AlgoritmoExterno1API {
+String randomPassword()
+String randomPassword(Integer minChars, Integer maxChars)
}
class AlgoritmoExterno2API {
+Password generatePassword()
+Password generatePassword(String feedChars)
+Password generatePassword(Integer strength)
+Password generatePassword(Integer strength, String feedChars)
}
AlgoritmoGeradorPasswords <|.. AlgoritmoGeradorPasswordsAdapter1
AlgoritmoGeradorPasswordsAdapter1 --> AlgoritmoExterno1API
AlgoritmoGeradorPasswords <|.. AlgoritmoGeradorPasswordsAdapter2
AlgoritmoGeradorPasswordsAdapter2 --> AlgoritmoExterno2API
@enduml |
5a052bb9a3a6158a5b1dd846c864f2fd7ee230d7 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/catalog/media/src/completeCatalogModel.puml | fda83c8984f777e341d84378d79fc5c97b649c91 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 5,943 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
shadowing true
RoundCorner 0
LineColor DarkRed
ArrowColor DarkRed
ArrowThickness 1
}
class ProductCategory {
id*: string
href: string
name*: string
description*: string
lastUpdate*: date-time
lifecycleStatus* CategoryLifecycleStatus
}
class CategoryRef {
id*: string
href: string
}
class ProductOfferingRef {
id*: string
href: string
}
ProductCategory *-->"0..1" CategoryRef : parentCategory
ProductCategory *-->"0..*" CategoryRef : subCategory
ProductCategory *-->"0..*" ProductOfferingRef : productOffering
enum CategoryLifecycleStatusType {
active
obsolete
}
class ProductOffering_Common {
id*: string
href: string
name*: string
description: string
productType* string
lastUpdate*: date-time
lifecycleStatus*: ProductOfferingLifecycleStatus
agreement: List<string>
channel: List<string>
marketSegment: List<string>
}
class ProductOffering {
productOfferingStatusReason string
}
class ProductOffering_Common {
}
ProductOffering_Common <|-- ProductOffering_Find
ProductOffering_Common <|-- ProductOffering
class Region {
country*: string
locality: string
city: string
postcode: string
postcodeExtension: string
stateOrProvince: string
}
class AttachmentValue {
attachmentId*: string
author*: string
content: string
creationDate*: string
description: string
mimeType: string
name*: string
source: MEFBuyerSellerType
url: string
}
class MEFByteSize {
ammount*: float
units*: DataSizeUnit
}
class ProductOfferingLifecycleStatusTransition {
transitionDate*: date-time
plannedLifecycleStatus*: ProductOfferingLifecycleStatus
}
class RelatedContactInformation{
emailAddress*: string
name*: string
number*: string
numberExtension: string
organization: string
role*: string
}
class FieldedAddress {
country*: string
streetType: string
postcodeExtension: string
city*: string
streetNr: string
locality: string
postcode: string
streetNrLast: string
streetNrSuffix: string
streetName*: string
stateOrProvince: string
streetNrLastSuffix: string
streetSuffix: string
}
class GeographicSubAddress {
buildingName: string
id: string
levelNumber: string
levelType: string
privateStreetName: string
privateStreetNumber: string
}
class MEFSubUnit {
subUnitNumber*: string
subUnitType*: string
}
class MEFItemTerm {
description: string
endOfTermAction: MEFEndOfTermAction
name*: string
}
class Duration {
amount*: number
units*: TimeUnit
}
class ProductSpecificationRef {
id*: string
href: string
name: string
}
class ProductOfferingContextualInfo{
contextSchema*: string
}
class Context {
productAction*: MEFProductAction
businessFunction*: MEFBusinessFunction
}
class SchemaRefOrValue {
schema: string
schemaLocation: string
}
ProductOffering_Common *-->"0..*" Region : region
AttachmentValue *-->"0..1" MEFByteSize : region
ProductOffering_Common *-->"0..*" CategoryRef : category
ProductOffering *-->"0..*" AttachmentValue : attachment
ProductOffering *-->"0..*" ProductOfferingLifecycleStatusTransition : upcomingStatusTransitions
ProductOffering *-->"1..*" RelatedContactInformation : relatedContactInformation
RelatedContactInformation *-->"0..*" FieldedAddress: postalAddress
FieldedAddress *--> GeographicSubAddress : geographicSubAddress
GeographicSubAddress *-->"*" MEFSubUnit : subUnit
ProductOffering *-->"0..*" MEFItemTerm: productOfferingTerm
MEFItemTerm *-->"1..1" Duration: duration
MEFItemTerm *-->"1..1" Duration: rollInterval
ProductOffering *-->"0..*" Note: note
ProductOffering *-->"1..1" ProductSpecificationRef: productSpecification
ProductOfferingContextualInfo *-->"1..1" Context: context
ProductOffering *-->"0..14" ProductOfferingContextualInfo: productOfferingContextualInfo
ProductOffering *-->"1..1" SchemaRefOrValue: productOfferingSpecification
enum MEFProductAction{
add
modify
all
}
enum MEFBusinessFunction{
productOfferingQualification
quote
productOrder
productInventory
all
}
enum TimeUnit{
calendarMonths
calendarDays
calendarHours
calendarMinutes
businessDays
businessHours
businessMinutes
}
enum MEFEndOfTermAction{
roll
autoDisconnect
autoRenew
}
enum MEFBuyerSellerType{
buyer
seller
}
enum DataSizeUnit{
BYTES
KBYTES
MBYTES
GBYTES
TBYTES
PBYTES
EBYTES
ZBYTES
YBYTES
}
enum ProductOfferingLifecycleStatusType {
pilotBeta
rejected
active
endOfSale
endOfSupport
obsolete
onHold
orderable
}
class ProductSpecification_Common {
id*: string
href: string
name*: string
description: string
lastUpdate*: date-time
lifecycleStatus*: ProductSpecificationLifecycleStatus
}
class ProductSpecification {
brand: string
producNumber: string
}
class ProductSpecification_Find {
}
ProductSpecification_Common <|-- ProductSpecification_Find
ProductSpecification_Common <|-- ProductSpecification
class Note {
author*: string
date*: date-time
id*: string
source*: MEFBuyerSellerType
text*: string
}
class ProductSpecificationRelationship {
id*: string
type*: string
minCardinality*: number
maxCardinality*: number
}
ProductSpecification *-->"0..*" AttachmentValue : attachment
ProductSpecification *-->"0..*" Note: note
ProductSpecification *-->"1..1" SchemaRefOrValue: sourceSchema
ProductSpecification *-->"0..*" ProductSpecificationRelationship: productSpecificationRelationship
enum ProductSpecificationLifecycleStatus {
pilotBeta
rejected
active
endOfSale
endOfSupport
obsolete
onHold
orderable
}
@enduml
|
52692c017e2f416da5bbbc7c2b1a186eb7c114c6 | 4cd2054a4beded3b16a5292948960a974d5fe810 | /exercise41/AppDiagram.puml | 7643e47f12e5f8ad204d023c7812f92d78c02350 | [] | no_license | BronRed/Reed-a04 | 3ef8a042c3585abeb39f2d0734dc4a8f34baf4ff | a787348edd65ba01431876e244dd48045701bb08 | refs/heads/main | 2023-08-17T21:59:58.486607 | 2021-10-17T23:53:25 | 2021-10-17T23:53:25 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 236 | puml | /*
* UCF COP3330 Fall 2021 Assignment 4 Solutions
* Copyright 2021 Brian Reed
*/
@startuml
class Solution41 {
+main()
}
class NameSorter {
-arrayList<String> names
+readNames()
+outputNames()
}
Solution41 --o NameSorter
@enduml |
dc379c8b001dad6334a9aeaad228b294e1da97ff | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductSetDescriptionAction.puml | ecc08a9f0e49806e38d31dd5a008d4b0bc779158 | [] | 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 | 506 | 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 ProductSetDescriptionAction [[ProductSetDescriptionAction.svg]] extends ProductUpdateAction {
action: String
description: [[LocalizedString.svg LocalizedString]]
staged: Boolean
}
interface ProductUpdateAction [[ProductUpdateAction.svg]] {
action: String
}
@enduml
|
458a076bcb157e4113daf72c3501964b7d36c812 | 766ed5ff121c74f00b14617d3cc66c320f37037f | /Documentation/plantuml/Bausteinsicht/UML/Ebene2/2Ebene-Particles.puml | e99fd7c49c17a3699c94379943ef98d80bb197a1 | [] | no_license | pfeilda/softwareengineeringProjekt | 6fe14198123690905da2c40c06a055a7a30dcea8 | defe7204c0090e5ac1413a68e12ffbfba4268b18 | refs/heads/master | 2020-03-24T04:06:57.891794 | 2018-05-16T19:49:28 | 2018-05-16T19:49:28 | 142,444,352 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,288 | puml | @startuml
namespace ajb{
namespace particles{
abstract class Element{
-label: String
~Element(String label)
+getLabel():String
+{abstract} experimentalProof(Substance assay):boolean
' +{abstract} alter():void
}
class Molecule extends Element{
~Molecule(Ion[] ions)
+getIons():Ion[]
}
Molecule "*" --> "- 1..* ions" Ion
class Ion extends Element{
~Ion(int charge, Atoms[] atom)
-charge:int
+getCharge()
+getAtoms(): Atoms[]
}
Ion "*" --> "- 1..* atoms" Atom
class Atom extends Element{
-elementSymbol: String
-ordinal: int
~Atom(String label, String elementSymbol, int ordinal)
+getElementSymbol():String
+getOrdinal():int
}
class ParticleFactory implements .ajb.miscellaneous.Singleton{
+getMoleculeWithIons(Ions[] ions):Molecule
+getIonForAtomsWithCharge(Charge charge, Atom[] atoms):Ion
+getAtomForElementSymbol(String elementSymbol):Atom
+getAtomForLabel(String label):Atom
+getAtomForOrdinal(int Ordinal):Atom
}
}
}
@enduml |
243c6d0db6b512f2a5604b69c2c16ba91f73fe95 | b7d2ba71058efa46eff4ed885324819fb3f99266 | /src/doc/WEB_Controllers/HouseMonitoring/US630/US630_cd_HouseMonitoring.puml | 5c16eab4543843bed282046d78330df9a6908744 | [] | no_license | Almadanmp/backend4 | 3aaa5cbe453041917a510ceee83bf318499a9823 | 07ab3c1af9c7de6ff35cf23bf44b0e664db82f46 | refs/heads/master | 2022-11-25T10:30:27.184246 | 2019-06-30T19:26:12 | 2019-06-30T19:26:12 | 194,547,877 | 0 | 0 | null | 2022-11-16T11:54:00 | 2019-06-30T18:24:24 | Java | UTF-8 | PlantUML | false | false | 3,072 | puml | @startuml
title US631 Class Diagram - Web Controller Version
skinparam titleBorderRoundCorner 10
skinparam titleBorderThickness 2
skinparam titleBorderColor indianred
skinparam titleBackgroundColor Snow
skinparam FontName quicksand
skinparam titleFontSize 10
skinparam roundcorner 10
skinparam class {
BorderColor indianred
BackgroundColor indianred
BackgroundColor Snow
roundcorner 10
ArrowFontName Verdana
ArrowColor indianred
ArrowFontColor darkslategrey
FontSize 12
}
HTTPClient -- HouseMonitoringControllerWeb : >
HouseMonitoringControllerWeb -- GeographicAreaHouseService : >
GeographicAreaHouseService -- GeographicAreaRepository : >
GeographicAreaRepository -- GeographicAreaCrudRepo : >
GeographicAreaRepository -- GeographicArea : >
GeographicAreaCrudRepo -right- GeographicArea : >
GeographicAreaHouseService -- HouseRepository : >
HouseRepository -- HouseCrudRepo : >
HouseRepository -- House : >
HouseCrudRepo -right- House : >
GeographicArea "1" -- "0.*" AreaSensor : may have >
House"1.*" -right- "1" Localization : in in >
AreaSensor"1.*" -right- "1" Localization : is in >
AreaSensor "1" -left- "0.*" Reading : may have >
AreaSensor -- SensorUtils : >
AreaSensor"0.*" -- "1"SensorType : has a >
Reading -left- ReadingUtils : >
SensorUtils -left- ReadingUtils : >
class HouseMonitoringControllerWeb {
GeographicAreaHouseService;
getHottestDay(DateIntervalDTO)
}
class GeographicAreaHouseService{
GeographicAreaRepository;
HouseRepository;
getClosestAreaSensorOfGivenType(String, House, GeographicArea)
getMinDistanceToSensorOfGivenType(List<AreaSensor, House)
getAreaSensorsByDistanceToHouse(List<AreaSensor>, House, double)
getAreaSensorsDistanceToHouse(List<AreaSensor>, double)
calculateDistanceToSensor(AreaSensor, House)
validateIntervalDTO(DateIntervalDTO)
}
class House{
motherAreaID;
Localization;
getMotherAreaID()
getLocalization()
}
class GeographicArea{
Long ID;
List<AreaSensor>;
getID()
getSensors()
}
class SensorUtils{
getSensorsOfGivenType(List<AreaSensor>, String)
getMostRecentlyUsedSensor(List<AreaSensor>)
getAreaSensorsWithReadings(List<AreaSensor>)
}
class AreaSensor{
String SensorType;
Localization;
List<Reading>;
getSensorType()
getReadings()
getLocalization()
getLastColdestDayInGivenInterval(Date, Date)
getDaysWithReadingsWithReadingsBetweenDates(Date, Date)
getReadingValueOnGivenDay(Date)
getReadingListBetweenDates(Date,Date)
}
class SensorType{
type;
getType()
}
class Localization{
double latitude;
double longitude;
getLinearDistanceBetweenLocalsInKm(Location)
}
class ReadingUtils{
getFirstSecondOfDay(Date)
getLastSecondOfDay(Date)
getReadingDate()
isReadingDateBetweenTwoDates(Date, Date)
getValuesOfSpecificDayReadings(Date)
compareMonthDayAndYearBetweenDates(Date,Date)
getReadingValue(List<Reading>,int)
}
class Reading{
Date date;
double value;
getDate()
getValue()
}
class GeographicAreaRepository{
GeographicAreaCrudRepo;
getByID()
}
Interface GeographicAreaCrudRepo{
findByID()
}
class HouseRepository{
HouseCrudRepo;
getAll()
}
Interface HouseCrudRepo{
findAll()
}
@enduml |
c6d5fc51a6c2c17408016454fb85061d3e669446 | 98c049efdfebfafc5373897d491271b4370ab9b4 | /docs/SPRINT_2/UC28-Create_Pharmacy_Owner/MD.puml | 576184188355cd5d75223b64310e11697ac2eaad | [] | no_license | antoniodanielbf-isep/LAPR3-2020 | 3a4f4cc608804f70cc87a3ccb29cbc05f5edf0f3 | 7ee16e8c995aea31c30c858f93e8ebdf1de7617f | refs/heads/main | 2023-05-27T14:42:05.442427 | 2021-06-20T18:09:59 | 2021-06-20T18:09:59 | 378,709,095 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 561 | puml | @startuml
skinparam classAttributeIconSize 0
hide methods
left to right direction
class Administrator {
}
class User{
}
class PharmacyOwner {
-String email
}
class Pharmacy {
-Integer id
-String designation
}
/'------------------------------------------------------------------------------------ '/
Administrator "1" -- "1" User: acts like >
Administrator "1" -- "*" Pharmacy: creates >
Administrator "1" -- "*" PharmacyOwner: registers >
PharmacyOwner "1" -- "1" Pharmacy: belongs >
PharmacyOwner "1" -- "1" User: acts like >
@enduml
|
f04407313bd67ae35e4103e36141a00a93149850 | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/simplelatedeliveryandpenalty@0.10.0.puml | 4c60841b3c33d117d2d05995f8e17d07c2259e09 | [
"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 | 997 | puml | @startuml
class org.accordproject.simplelatedeliveryandpenalty.SimpleLateDeliveryAndPenaltyContract << (A,green) >> {
+ Party buyer
+ Party seller
+ Duration penaltyDuration
+ Double penaltyPercentage
+ Double capPercentage
+ Duration maximumDelay
}
org.accordproject.simplelatedeliveryandpenalty.SimpleLateDeliveryAndPenaltyContract --|> org.accordproject.contract.Contract
class org.accordproject.simplelatedeliveryandpenalty.SimpleLateDeliveryAndPenaltyRequest << (T,yellow) >> {
+ DateTime agreedDelivery
+ DateTime deliveredAt
+ Double goodsValue
}
org.accordproject.simplelatedeliveryandpenalty.SimpleLateDeliveryAndPenaltyRequest --|> org.accordproject.runtime.Request
class org.accordproject.simplelatedeliveryandpenalty.SimpleLateDeliveryAndPenaltyResponse << (T,yellow) >> {
+ Double penalty
+ Boolean buyerMayTerminate
}
org.accordproject.simplelatedeliveryandpenalty.SimpleLateDeliveryAndPenaltyResponse --|> org.accordproject.runtime.Response
@enduml
|
cd830b8de9b7126292c22c9229652f15acb523bd | b038203821d22f0ae9db9697aaf5b41b9f77a40d | /src-gen/serviceSystem_BC_ServiceProvider.puml | 2bda90fef3dce79b71a864a67b00e911d46f3f8f | [] | no_license | NormanBaechtold/ServiceSystem | 5b9ad5f8bf1860154b70f79f0f33d6fe17cac35a | ba125d9cb21cec6a894cef3936cce7dcbc21b5c9 | refs/heads/master | 2023-08-20T23:35:47.215567 | 2021-10-06T09:08:54 | 2021-10-06T09:08:54 | 394,977,218 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,729 | puml | @startuml
skinparam componentStyle uml2
package "'ServiceProviderContext' Aggregate" <<Rectangle>> {
class ServiceProviderContext <<(A,#fffab8) Aggregate Root>> {
String serviceProviderBusinessNeeds
String serviceProviderData
BusinessNeeds businessNeeds
BusinessCharacteristics businessData
ServiceProviderValueExpectation invoke()
ServiceProviderCustomerJourney provideData()
ServiceProviderCustomerJourney informEngagementDesign()
}
class BusinessNeeds <<(E,DarkSeaGreen) Entity>> {
String businessOperation
String customerData
String smartIntegration
BusinessCharacteristics businessData
LegalObligations requiredFunctionalities
ServiceProviderContext shapes()
}
class BusinessCharacteristics <<(E,DarkSeaGreen) Entity>> {
String branch
String sizeOfBusiness
String location
String visitorData
BusinessNeeds impact()
}
class LegalObligations <<(E,DarkSeaGreen) Entity>> {
String hygieneMeasures
String attendanceLimits
String visitorTracing
BusinessNeeds invokes()
}
}
package "'ValueSpaceServiceProvider' Aggregate" <<Rectangle>> {
class SimplyGoValueProposition1 <<(E,DarkSeaGreen) Entity>> {
String legalCompliance
String businessOperation
ServiceProviderValueExpectation inspiration
ServiceProviderValueExpectation proposeSolutions()
}
class ServiceProviderValueExpectation <<(A,#fffab8) Aggregate Root>> {
String profit
String businessOperation
ServiceProviderContext businessNeeds
SimplyGoValueProposition1 valueProposition
SimplyGoValueProposition1 openSolutionSpace()
ServiceProviderEngagementDesign dictate()
}
}
package "'ServiceProviderCustomerJourney' Aggregate" <<Rectangle>> {
class ServiceProviderServiceForServiceExchange <<(A,#fffab8) Aggregate Root>> {
String serviceExperience
ServiceProviderValueExpectation expectations
ServiceProviderContext engagementPreferences
ServiceProviderResourceIntegration businessData
ServiceProviderResourceExchange externalData
}
class ServiceProviderResourceIntegration <<(V,DarkSeaGreen) Value Object>> {
String businessData
String customerData
ServiceProviderEngagementDesign customerJourney
provide businessData()
}
class ServiceProviderEngagementDesign <<(E,DarkSeaGreen) Entity>> {
String mobileApp
ServiceProviderResourceIntegration integrateResources()
ServiceProviderResourceExchange enableResourceExchange()
}
class ServiceProviderResourceExchange <<(E,DarkSeaGreen) Entity>> {
String customerData
String legalObligations
ServiceProviderEngagementDesign externalResourceAccess
void integrateExternalResources()
}
}
ServiceProviderContext --> BusinessNeeds : businessNeeds
ServiceProviderContext --> BusinessCharacteristics : businessData
BusinessNeeds --> BusinessCharacteristics : businessData
BusinessNeeds --> LegalObligations : requiredFunctionalities
SimplyGoValueProposition1 --> ServiceProviderValueExpectation : inspiration
ServiceProviderValueExpectation --> ServiceProviderContext : businessNeeds
ServiceProviderValueExpectation --> SimplyGoValueProposition1 : valueProposition
ServiceProviderServiceForServiceExchange --> ServiceProviderValueExpectation : expectations
ServiceProviderServiceForServiceExchange --> ServiceProviderContext : engagementPreferences
ServiceProviderServiceForServiceExchange --> ServiceProviderResourceIntegration : businessData
ServiceProviderServiceForServiceExchange --> ServiceProviderResourceExchange : externalData
ServiceProviderResourceIntegration --> ServiceProviderEngagementDesign : customerJourney
ServiceProviderResourceExchange --> ServiceProviderEngagementDesign : externalResourceAccess
legend left
This bounded context implements the subdomain 'ServiceProviderDomain'.
end legend
@enduml
|
e6fa6de403b5d6f3cdb9236744c2680aea189686 | 1ea080a9d1f3e8eafa71b2b51b56252380bb3cf2 | /classes.plantuml | 0a3931a6b6872836b6e7fd4ba76906c51d678e56 | [] | no_license | danilchenko-alexander/kpp | afed774fd11437e7d2df2616231acb1a3b221549 | d76aa23eaa6542cd851157bcb56ceeb25e7303b7 | refs/heads/master | 2020-12-25T13:34:15.641155 | 2016-06-14T09:59:14 | 2016-06-14T09:59:14 | 61,111,627 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 7,444 | plantuml | @startuml
top to bottom direction
skinparam headerFontSize 30
skinparam headerFontStyle bold
skinparam classAttributeIconSize 0
scale 1.0
package default_pack {
class Board {
.. Fields ..
+allEnemiesRemoved : boolean
~board : GameObject[][]
+bombs : ArrayList
+enemies : ArrayList
+fires : ArrayList
.. Methods ..
+addEnemy(Enemy) : void
+draw(Graphics) : void
+getBlockAt(int, int) : Block
+readLevel() : void
-removeDiedEnemies() : void
-removedDiedBombsAndFires() : void
+reset() : void
+setBlockBlockAt(int, int, Block) : void
+update() : void
-updateBombs() : void
-updateEnemies() : void
-updateFires() : void
.. Static ..
+ {static} BLOCKNUMBER : int
}
class Block <? extends GameObject> {
.. Methods ..
-burnSolid() : void
+burnable() : boolean
+changeState(BlockState) : void
+changeStateTo(char) : void
+closeFireAt(int, int, int) : void
+draw(Graphics) : void
-sendCloseFireDown(int) : void
-sendCloseFireLeft(int) : void
-sendCloseFireRight(int) : void
-sendCloseFireUp(int) : void
-sendFireDown(int) : void
-sendFireLeft(int) : void
-sendFireRight(int) : void
-sendFireUp(int) : void
+solid() : boolean
+spreadFireAt(int, int, int) : void
}
class SoftBlock <? extends BlockState> {
.. Fields ..
~image : BufferedImage
.. Methods ..
+burnable() : boolean
~getImage() : BufferedImage
+solid() : boolean
}
class KeyboardHandler <<KeyListener>> {
.. Fields ..
~bomber : Bomber
.. Methods ..
+keyPressed(KeyEvent) : void
+keyReleased(KeyEvent) : void
+keyTyped(KeyEvent) : void
}
class FireState <? extends BlockState> {
.. Fields ..
~image : BufferedImage
.. Methods ..
+burnable() : boolean
~getImage() : BufferedImage
+solid() : boolean
+toString() : String
}
class Bomb <? extends GameObject> {
.. Fields ..
+board : Board
+counter : int
+range : int
+removed : boolean
.. Methods ..
+burnable() : boolean
+changeState(BlockState) : void
-colisionWithFire() : boolean
+draw(Graphics) : void
+solid() : boolean
+update() : void
.. Static ..
+ {static} MAXTIME : int
}
class ResourceLoader {
.. Fields ..
.. Methods ..
.. Static ..
+ {static} PATH : String
+ {static} loadImage() : BufferedImage
}
class TextureAtlas {
.. Fields ..
.. Methods ..
.. Static ..
+ {static} cut() : BufferedImage
~ {static} image : BufferedImage
}
class Enemy <? extends MovingObject> {
.. Fields ..
~count : int
~freq : int
~frequency : int
~random : Random
.. Methods ..
-changeDirection() : void
-moveForwad() : void
+moveOtherwise() : void
+update() : void
.. Static ..
~ {static} MAXSPEED : int
}
class AutomaticHandler <? extends MovingObject> {
.. Fields ..
~count : int
~frequency : int
.. Methods ..
+go() : void
+update() : void
.. Static ..
~ {static} BOMB : int
~ {static} DOWN : int
~ {static} LEFT : int
~ {static} RIGHT : int
~ {static} UP : int
~ {static} bomber : Bomber
~ {static} di : int
~ {static} image : BufferedImage
~ {static} random : Random
}
class Bomber <? extends MovingObject> {
.. Fields ..
~image : BufferedImage
.. Methods ..
-BlockAvailable() : boolean
-colisionWithEnemy() : boolean
+getBoard() : Board
~putBomb() : void
+reset() : void
+update() : void
}
class HardBlock <? extends BlockState> {
.. Fields ..
~image : BufferedImage
.. Methods ..
+burnable() : boolean
~getImage() : BufferedImage
+solid() : boolean
}
class MovingObject <? extends GameObject> {
.. Fields ..
+board : Board
+dir : int
+isAlive : boolean
+speed : int
+xd : int
+yd : int
.. Methods ..
+burnable() : boolean
#canWalk() : boolean
+colisionWithFire() : boolean
+draw(Graphics) : void
+goDown() : void
+goLeft() : void
+goRight() : void
+goUp() : void
+move(int, int) : void
+moveOtherwise() : void
+solid() : boolean
+stopDown() : void
+stopLeft() : void
+stopRight() : void
+stopUp() : void
+toString() : String
.. Static ..
~ {static} DOWN : int
~ {static} LEFT : int
~ {static} RIGHT : int
~ {static} SPEED : int
~ {static} UP : int
}
class Fire <? extends GameObject> {
.. Fields ..
+board : Board
+counter : int
-d : int
-downFireable : int
~image : BufferedImage
-l : int
-leftFireable : int
-r : int
+range : int
+removed : boolean
-rightFireable : int
-u : int
-upFireable : int
.. Methods ..
+burnable() : boolean
-changeFiredTo(BlockState) : void
+changeState(BlockState) : void
+draw(Graphics) : void
+solid() : boolean
+update() : void
.. Static ..
+ {static} MAXTIME_FIRE : int
}
abstract class GameObject {
.. Fields ..
~board : Board
~image : BufferedImage
+isAlive : boolean
+removed : boolean
~state : BlockState
~x : int
~y : int
.. Methods ..
+ {abstract} burnable() : boolean
+changeState(BlockState) : void
+ {abstract} draw(Graphics) : void
+getState() : BlockState
+getX() : int
+getY() : int
+setX(int) : void
+setY(int) : void
+ {abstract} solid() : boolean
+update() : void
.. Static ..
+ {static} SIZE : int
}
class BombBlock <? extends BlockState> {
.. Fields ..
~image : BufferedImage
.. Methods ..
+burnable() : boolean
~getImage() : BufferedImage
+solid() : boolean
}
class Menu {
.. Fields ..
~choice_bot : boolean
~choice_player : boolean
~dim : Dimension
+keyboardHandler : KeyboardHandler
.. Methods ..
+PanelVisible(boolean) : void
-drawMenuScreen() : void
-startComponents(int, boolean) : void
.. Static ..
+ {static} FrameVisible() : void
- {static} openingPictureLabel : JLabel
- {static} openingPicturePanel_lvl_chioce : JPanel
- {static} openningPicturePanel : JPanel
~ {static} frame : JFrame
}
class BomberGame {
.. Fields ..
~automaticHandler : AutomaticHandler
+board : Board
~bomber : Bomber
-choice : boolean
-completed : boolean
-gameTimer : Timer
-image : BufferedImage
-keyboardHandler : KeyboardHandler
-levelLoader : LevelLoader
-levelNo : int
-running : boolean
-ups : int
.. Methods ..
+addEnemy(Enemy) : void
-draw() : void
+getBlockAt(int, int) : Block
+nextLevelExist() : boolean
+paint(Graphics) : void
-run() : void
+setBlockAt(int, int, Block) : void
+setCompleted(boolean) : void
+setRunning(boolean) : void
~update() : void
.. Static ..
+ {static} HEIGHT : int
+ {static} LASTLEVEL : int
+ {static} WIDTH : int
+ {static} main() : void
~ {static} FREQ : int
}
class Utils {
.. Methods ..
.. Static ..
+ {static} resize() : BufferedImage
}
class EmptyBlock <? extends BlockState> {
.. Fields ..
+image : BufferedImage
.. Methods ..
+burnable() : boolean
~getImage() : BufferedImage
+solid() : boolean
}
abstract class BlockState {
.. Methods ..
+ {abstract} burnable() : boolean
~ {abstract} getImage() : BufferedImage
+ {abstract} solid() : boolean
+toString() : String
}
class LevelLoader {
.. Fields ..
~game : BomberGame
~image : BufferedImage
-levelInStr : String
.. Methods ..
+loadLevel(int) : void
+loadLevel() : void
+readLevel(int) : void
+start() : void
}
}
Board *-- "0..*" Enemy
GameObject <|-- Block
BlockState <|-- SoftBlock
KeyboardHandler o-- "1..1" Bomber
BlockState <|-- FireState
GameObject <|-- Bomb
MovingObject <|-- Enemy
MovingObject <|-- AutomaticHandler
AutomaticHandler o-- "1..1" Bomber
MovingObject <|-- Bomber
BlockState <|-- HardBlock
GameObject <|-- MovingObject
MovingObject o-- "1..1" Board
GameObject <|-- Fire
GameObject o-- "1..1" BlockState
BlockState <|-- BombBlock
Menu o-- "1..1" KeyboardHandler
BomberGame o-- "1..1" Bomber
BomberGame o-- "1..1" Board
BomberGame o-- "1..1" KeyboardHandler
BomberGame o-- "1..1" AutomaticHandler
BlockState <|-- EmptyBlock
Board "1..1" *..o "0..*" GameObject
Board "1..1" *..o "0..*" Bomb
Board "1..1" *..o "0..*" Fire
BomberGame "1..1" o..o "1..1" LevelLoader
@enduml
|
618c905021a8832350e637b396bb52aedda9e3f9 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/GUI/TestRunnerResult.puml | 7c8b44d01c20318d6973c39fbd0b061f4a26e8b6 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,006 | puml | @startuml
class TestRunnerResult {
+ id : string
+ uniqueId : string
+ name : string
+ fullName : string
+ duration : float
+ messages : string
+ output : string
+ stacktrace : string
+ notRunnable : bool
+ ignoredOrSkipped : bool
+ description : string
+ isSuite : bool
+ parentId : string
+ parentUniqueId : string
+ notOutdated : bool
+ Update(result:TestRunnerResult) : void
+ SetResultChangedCallback(resultUpdated:Action<TestRunnerResult>) : void
+ <<override>> ToString() : string
+ Id : string <<get>>
+ FullName : string <<get>>
+ ParentId : string <<get>>
+ IsSuite : bool <<get>>
+ Clear() : void
}
class "List`1"<T> {
}
enum ResultStatus {
NotRun,
Passed,
Failed,
Inconclusive,
Skipped,
}
TestRunnerResult o-> "resultStatus" ResultStatus
TestRunnerResult --> "categories<string>" "List`1"
TestRunnerResult --> "Categories<string>" "List`1"
TestRunnerResult +-- ResultStatus
@enduml
|
b2fdf36d04fab0a0faed2a1bd9db5688d4ec325d | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AssociateMissingPermissionError.puml | 456eeeaf719a9fec9a78bd5e67e35b850ac708a8 | [] | 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 | 752 | 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 AssociateMissingPermissionError [[AssociateMissingPermissionError.svg]] extends ErrorObject {
code: String
message: String
associate: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
associateOnBehalf: [[CustomerResourceIdentifier.svg CustomerResourceIdentifier]]
permissions: [[Permission.svg List<Permission>]]
}
interface ErrorObject [[ErrorObject.svg]] {
code: String
message: String
}
@enduml
|
78e9566df7cba02e78e8440d934c0a9b928a6e7b | f843c9d5922c2ef92cc3ca50f20f44184ed27ef8 | /src/main/java/Factory/Enemy/README.puml | 3a0efd56743ac8d90a37d80b7c0cd60e80a3b9be | [] | no_license | yvanross/LOG121-GOF-exemples | c80a4d1b29f0b953e4666e100a82d4fde1923bea | 7cff56d019b40901ed54b85a62d69317cf61da59 | refs/heads/master | 2023-05-04T07:39:48.742354 | 2021-05-21T13:43:50 | 2021-05-21T13:43:50 | 261,219,115 | 2 | 25 | null | 2021-01-25T22:44:14 | 2020-05-04T15:11:44 | Java | UTF-8 | PlantUML | false | false | 315 | puml | @startuml Diagramme de classe
skinparam style strictuml
abstract class EnemyShip
class UFOEnemyShip extends EnemyShip
class RocketEnemyShip extends EnemyShip
class BigUFOEnemyShip extends UFOEnemyShip
class EnemyShipFactory {
makeEnemyShip(String type): EnemyShip
}
EnemyShipFactory -right->EnemyShip
@enduml |
d0c8d03482311eef7ddaa362368ec333a651fd95 | 5b6adf04e916e1eb5c0d96cfa2041d44059d8a08 | /src/main/uml/togglz-classes.puml | a80105a23a14fb07f8836bf902fb0bbaa66a101a | [] | no_license | linux-china/spring-boot-starter-togglz | 078693499f6f65e41c88f9df6eba8d86b2e0fce9 | 9bba4efaf41fb938fb2cb857d3b23eb0dbde6cd6 | refs/heads/master | 2021-01-10T08:13:12.023843 | 2016-01-15T01:28:30 | 2016-01-15T01:28:30 | 49,468,921 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 335 | puml | @startuml
class FeatureManager {
}
interface Feature {
getName();
}
class FeatureState {
Feature feature;
boolean enabled;
String strategyId;
Map<String, String> parameters;
}
class ActivationStrategy {
String id;
boolean isActive();
}
FeatureState -down-> Feature
FeatureState -> ActivationStrategy
@enduml |
0509c48ef054ea9d1946d556f6583ed9c3b56b50 | 6dac6ea52e6b61c3426907a7e2077b583fc127e9 | /models.puml | 7a638db901a72beaff3f4b7b1161cce079c9c0b1 | [
"MIT"
] | permissive | City-of-Helsinki/kerrokantasi | 3c37d735c7a1d2bb6edbf1a941db6e6a4e62732c | 4e37a0180f16faed777687cd619d0af58eee992d | refs/heads/master | 2023-08-03T09:19:29.741648 | 2023-08-01T18:09:10 | 2023-08-02T06:09:29 | 44,660,623 | 8 | 21 | MIT | 2023-09-14T12:44:01 | 2015-10-21T07:46:44 | Python | UTF-8 | PlantUML | false | false | 1,295 | puml | @startuml
skinparam shadowing false
abstract class Base {
created_by: FK user
created_on: datetime
modified_by: FK user
modified_by: datetime
deleted: soft-deletion flag
}
abstract class Comment << versioned >> {
n_votes: cache value
content
followers: M2M
voters: M2M
}
abstract class Image {
title
caption
height
width
image
ordering
}
abstract class Commentable {
n_comments: cache value
commenting: disallow, registered, anonymous
}
class Hearing {
opens_on: datetime
closes_on: datetime
heading: heading of the hearing
abstract: abstract of the hearing
borough: borough which the hearing concerns
servicemap_url: url to the map to embed at http://palvelukartta.hel.fi
latitude: coordinate for position
longitude: coordinate for position
}
class HearingLabel {
label
}
class Section {
type - `introduction`, `section`, `scenario`, `area`, possibly others in the future
position
heading
abstract
content
ordering
}
Base <|-- Hearing
Base <|-- Section
Base <|-- Comment
Base <|-- Image
Hearing *-- "many" Section : contains
Commentable <|-- Hearing
Commentable <|-- Section
Hearing *-- "many" Comment
Hearing *-- "many" Image
Hearing *-- "many" HearingLabel
Section *-- "many" Comment
Section *-- "many" Image
@enduml
|
f89cbd2c39077631b817d396fe24593229145f59 | 4c13527f24ccc6d0524d18cc56deeb7e81886b36 | /Java3/src/main/java/E45.puml | 650eeb2df1823641d1ff739ec473a1de6e4026ee | [] | no_license | Nickc123z/-COOK--cop3330-assignment3 | f5b176a2a2b946a24610e1394b215a708453985d | 2fb7ae553249c86152141ef356db8bf3815e4621 | refs/heads/main | 2023-09-04T09:33:29.931092 | 2021-10-12T03:55:47 | 2021-10-12T03:55:47 | 416,132,133 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 460 | puml | @startuml
'https://plantuml.com/class-diagram
writable <|-- main
rfile <|-- main
getcount <|-- main
readily <|-- main
class rfile {
list = arraylist;
scan = newscan;
}
class writable{
while true(){
count++}
break;
}
class getcount{
returns count;
}
class readily{
while loop;
add.namelist();
}
abstract class main{
scan file;
readfile1.readily();
list = readfile1;
write1 = writefile;
writefile1.writable();
}
@enduml |
b0d2548ddb2fd0ce7d9e8bae0c673ae6899822d6 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/AttributeConstraintEnumDraft.puml | 5804b306e8fcb5f6c116a9f70840924eac60e078 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 420 | puml | @startuml
hide methods
enum AttributeConstraintEnumDraft {
NONE
}
interface ProductTypeChangeAttributeConstraintAction [[ProductTypeChangeAttributeConstraintAction.svg]] {
action: String
attributeName: String
newValue: [[AttributeConstraintEnumDraft.svg AttributeConstraintEnumDraft]]
}
AttributeConstraintEnumDraft --> ProductTypeChangeAttributeConstraintAction #green;text:green : "newValue"
@enduml
|
0ca763a7373892c309beebcd1e55f20ec00591d0 | f939a4efe0206988680cb49787f3edbf0efbfae8 | /Diagrama de Clases.puml | e93a1dcedcea4416128a0b2eb4b36db551d03f24 | [] | no_license | mecsafonso/QueMePongo2 | f3183c0058077234943191eb52b6aebdeda1b6ef | 468b0dee34b07afd59ed295789a3da567c31b651 | refs/heads/main | 2023-04-17T07:57:01.856660 | 2021-04-30T21:17:14 | 2021-04-30T21:17:14 | 361,443,660 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 880 | puml | @startuml
left to right direction
skinparam backgroundColor transparent
skinparam arrowFontColor royalblue
skinparam arrowColor royalblue
'https://plantuml.com/class-diagram
class Prenda{
Map<String,Atributo> atributos
categoria() : Categoria
agregarAtributo(Atributo atributo)
crearBorrador() : Borrador
}
class Tipo{
getCategoria()
}
class Color{
int red
int green
int blue
}
enum Material{
GABARDINA, NYLON, ALGODON
}
enum Categoria{
SUPERIOR, CALZADO, INFERIOR, ACCESORIO
}
enum Trama{
LISA,RAYADA,CON_LUNARES,A_CUADROS,ESTAMPADO
}
interface Atributo{
}
Prenda --right> "1" Tipo
Prenda --> "*" Atributo
Material ..up|> Atributo
Categoria ..up|> Atributo
Trama ..up|> Atributo
Color ..up|> Atributo
class Atuendo{
List<Prenda> prendas
agregarPrenda(Prenda prenda)
}
Atuendo --> "*" Prenda
class Uniforme{
String nombreInstitucion
}
Uniforme --left|> Atuendo
@enduml |
f230948dccafc7d399f2e01d7678836b0e208435 | 3716c63c30e0edc60445fc207517992c7620a96a | /dependecymanager/docs/class_diagram.plantuml | ef80031f689036eb4a6c5839c3d9c9657f3c5489 | [
"Zlib"
] | permissive | davincif/dependency_manager | 4d49ff9ed8b657fc466a5b8551de33ce23ae7778 | 7a46fbecd9622186944b07b4ba28b5ef6da85727 | refs/heads/master | 2020-12-19T19:19:30.128777 | 2020-07-29T15:27:23 | 2020-07-29T15:47:09 | 235,827,015 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 111 | plantuml | # PlantUML Editor
@startuml
class Dependecy_Manager {
init()
install(dev)
install_package(dev)
}
@enduml
|
8ba3d12fca409a9006edc3e6c2823e65f79b921b | 69001696658e56c2dbe8e68edd07ac8ac331c558 | /src/main/java/ex45/base/Word Finder.puml | 7f865d65defda29f5188168728ba3dd7ca3f3783 | [] | no_license | bbmkastan/kastan-cop3330-assignment3 | e6a5b96e86472947d0b27da3cb396dc29284efec | 96ad36b165002f7c8c7872737eaf0f583121085c | refs/heads/main | 2023-06-06T03:49:41.740123 | 2021-06-21T03:54:41 | 2021-06-21T03:54:41 | 378,422,380 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 608 | puml | @startuml
!define DARKBLUE
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
'https://plantuml.com/class-diagram
package classes_used_in_multiple_packages {
class FileReader {
- filePath: string
+ setFilePath(newFilePath)
+ getFilePath()
+ getStrings()
+ readFile()
}
}
package ex45.base {
class App {
+ main()
}
class TextManipulator {
+ generateNewFile(title ,content)
+ replaceUtilizeWithUse()
+ getStringFromArrayList)
}
file "exercise45_input.txt" {
}
}
App --> TextManipulator
TextManipulator o--> FileReader
FileReader o--> exercise45_input.txt
@enduml |
c66817f0e71c897e9f5f6ecf33528e08430b13ff | a1eb6871a4ccbc6135b331ae824db91ec7b71e4e | /build/fixed-interests@0.5.2.puml | 0e418aa03b7a89e42abd8fc218a48c666c90f8cc | [
"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 | 639 | puml | @startuml
class org.accordproject.interests.Request << (T,yellow) >> {
+ String input
}
org.accordproject.interests.Request --|> org.accordproject.base.Transaction
class org.accordproject.interests.Response << (T,yellow) >> {
+ String output
}
org.accordproject.interests.Response --|> org.accordproject.base.Transaction
class org.accordproject.interests.TemplateModel << (A,green) >> {
+ MonetaryAmount loanAmount
+ Double rate
+ Integer loanDuration
}
org.accordproject.interests.TemplateModel --|> org.accordproject.cicero.contract.AccordClause
class org.accordproject.interests.TextResponse {
+ String text
}
@enduml
|
43722330b6c01c41374db8125ab70f86be501dad | 8f79723474b85f849569afca21d13447da9fbe7d | /Assets/Plugins/Script/plantuml/Score.puml | 4c4220e2cbdfe27dc23e46236828d556cd639ee5 | [] | no_license | YutaMochizuki-Siki/taiko | 51d4f004b10ab93ea30a888f7638d9a16904071b | e0cd2cdbdcbe864cd1232bf0ec74d710796ad1d6 | refs/heads/main | 2023-04-22T13:59:21.998542 | 2021-05-11T09:51:09 | 2021-05-11T09:51:09 | 352,619,868 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 303 | puml | @startuml
class Score {
Start() : void
Update() : void
+ button_click() : void
HpParamete(hp:float) : void
}
MonoBehaviour <|-- Score
Score --> "LessHpGage" Slider
Score --> "MoreHpGage" Slider
Score --> "HanteiText" Text
Score --> "ScoreText" Text
Score --> "scorenum" ScoreNum
@enduml
|
0426706a79fe9d5b1941715158b51261c784011a | 427bf83e6a8ace667e70cbba87b2dda899937a14 | /docs/uml.puml | 74ea86fae3e1a8a30b05fd110e8ff66659b08019 | [] | no_license | nikolai-git-house/USFigureSkating | a81eea8d0001f8910fd2ef613a982de84c8ffde7 | 3fb9fa916fcb25d921ee340a68cda2ce9db8a82d | refs/heads/master | 2023-04-01T23:31:52.990061 | 2021-04-08T16:32:41 | 2021-04-08T16:32:41 | 355,962,059 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 989 | puml | @startuml
class User {
public name: String;
public id: Number;
}
class Competition{
public id: Number;
public dates: any;
public name: String;
public detail_link: string;
public icon: string;
public information_link: string;
}
class Rink{
String name
}
abstract class Session{
public name: string
public date: date
public time_start: string
public time_end: string
public slots_registered: number;
public slots_available: number;
public type_key: string;
}
class CompetitionService{
}
class Event{
}
class PracticeIce{
}
class Resurface{
}
class Credits {
public UPI: Number
public OPI: Number
public WU: Number
}
Credits --* User
Competition "1..*" --o CompetitionService
(Competition,CompetitionService) --. User
Arena "1..*" ---* Competition
Session "1..*" --* Arena
Event "0..*" --o User
PracticeIce "0..*" --o User
Event --|> Session
PracticeIce --|> Session
Resurface --|> Session
@enduml
|
faedd3d5b93a6db99eb3a9636b524fab00192e69 | 1796581f86afff7ca46e44c51358bc4b38a5375a | /programming/design-pattern/plantuml/visitor_sample.puml | 5d9be34b2e80858c3459b183293ec1d9b83992b1 | [] | no_license | ruleless/ORG | 7de911d850c3861d44ecb5ee395874c637e22380 | cd3021a55f2ac47e0c1271fe745c1d2c28289eca | refs/heads/master | 2023-06-01T04:41:54.376093 | 2023-05-17T14:28:44 | 2023-05-17T14:28:44 | 44,298,812 | 2 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 402 | puml | @startuml Vistor Sample
class Node {
{method} +TypeCheck()
{method} +GenerateCode()
{method} +PrettyPrint()
}
class VariableRefNode {
{method} +TypeCheck()
{method} +GenerateCode()
{method} +PrettyPrint()
}
class AssignmentNode {
{method} +TypeCheck()
{method} +GenerateCode()
{method} +PrettyPrint()
}
Node <|-- VariableRefNode
Node <|-- AssignmentNode
@enduml |
843e08350512583b4421d210991b752f4cbec6d6 | 61a39d01a651d637be340c423419021654be5572 | /Romuald78-chesspublic-860e4f85613e.plantuml | b2aa31c4fc17f35e4dce26177a1b7986f7e3900f | [] | no_license | Escias/Java-Chess | fd8be387dce94dc2ccd4eedbbfcc54e0a0ae8460 | f370c04a1081d166bec532e4dd731c1f46e42e2e | refs/heads/master | 2021-02-15T09:51:26.090614 | 2020-03-04T12:05:44 | 2020-03-04T12:05:44 | 244,887,017 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,608 | plantuml | @startuml
title __CHESS's Class Diagram__\n
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Bishop {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Board {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.ChessModel {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.King {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Knight {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.LostPieces {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.MoveUtil {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Pawn {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Piece {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Queen {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Rook {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Timer {
}
}
namespace fr.rphstudio.chess.game {
class fr.rphstudio.chess.game.Undo {
}
}
namespace fr.rphstudio.chess.interf {
class fr.rphstudio.chess.interf.ChessException {
}
}
namespace fr.rphstudio.chess.interf {
class fr.rphstudio.chess.interf.EmptyCellException {
}
}
namespace fr.rphstudio.chess.interf {
interface fr.rphstudio.chess.interf.IChess {
}
}
namespace fr.rphstudio.chess.interf {
interface fr.rphstudio.chess.interf.IMove {
}
}
namespace fr.rphstudio.chess.interf {
class fr.rphstudio.chess.interf.OutOfBoardException {
}
}
namespace fr.rphstudio.chess.launcher {
class fr.rphstudio.chess.launcher.ChessFontManager {
}
}
namespace fr.rphstudio.chess.launcher {
class fr.rphstudio.chess.launcher.ChessGameController {
}
}
namespace fr.rphstudio.chess.launcher {
class fr.rphstudio.chess.launcher.MainLauncher {
}
}
fr.rphstudio.chess.game.Bishop .up.|> fr.rphstudio.chess.interf.IMove
fr.rphstudio.chess.game.ChessModel .up.|> fr.rphstudio.chess.interf.IChess
fr.rphstudio.chess.game.ChessModel o-- fr.rphstudio.chess.game.Board : board
fr.rphstudio.chess.game.ChessModel o-- fr.rphstudio.chess.game.LostPieces : lostPieces
fr.rphstudio.chess.game.ChessModel o-- fr.rphstudio.chess.game.Timer : timer
fr.rphstudio.chess.game.King .up.|> fr.rphstudio.chess.interf.IMove
fr.rphstudio.chess.game.Knight .up.|> fr.rphstudio.chess.interf.IMove
fr.rphstudio.chess.game.Pawn .up.|> fr.rphstudio.chess.interf.IMove
fr.rphstudio.chess.game.Piece o-- fr.rphstudio.chess.interf.IChess.ChessColor : color
fr.rphstudio.chess.game.Piece o-- fr.rphstudio.chess.interf.IMove : imove
fr.rphstudio.chess.game.Piece o-- fr.rphstudio.chess.interf.IChess.ChessPosition : position
fr.rphstudio.chess.game.Piece o-- fr.rphstudio.chess.interf.IChess.ChessType : type
fr.rphstudio.chess.game.Queen .up.|> fr.rphstudio.chess.interf.IMove
fr.rphstudio.chess.game.Rook .up.|> fr.rphstudio.chess.interf.IMove
fr.rphstudio.chess.game.Undo o-- fr.rphstudio.chess.interf.IChess.ChessPosition : finalPosition
fr.rphstudio.chess.game.Undo o-- fr.rphstudio.chess.game.Piece : pieceToMove
fr.rphstudio.chess.game.Undo o-- fr.rphstudio.chess.game.Piece : removedPiece
fr.rphstudio.chess.game.Undo o-- fr.rphstudio.chess.interf.IChess.ChessPosition : sourcePosition
fr.rphstudio.chess.interf.EmptyCellException -up-|> fr.rphstudio.chess.interf.ChessException
fr.rphstudio.chess.interf.OutOfBoardException -up-|> fr.rphstudio.chess.interf.ChessException
fr.rphstudio.chess.launcher.ChessGameController -up-|> org.newdawn.slick.state.BasicGameState
fr.rphstudio.chess.launcher.ChessGameController o-- fr.rphstudio.chess.interf.IChess : board
fr.rphstudio.chess.launcher.ChessGameController o-- fr.rphstudio.chess.launcher.ChessFontManager : chessFont
fr.rphstudio.chess.launcher.ChessGameController o-- fr.rphstudio.chess.interf.IChess.ChessColor : currentColor
fr.rphstudio.chess.launcher.ChessGameController o-- fr.rphstudio.chess.interf.IChess.ChessPosition : selectPos
fr.rphstudio.chess.launcher.MainLauncher -up-|> org.newdawn.slick.state.StateBasedGame
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
|
ae0fa397ffc55b6a44860f4c9a145d163d608f52 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /class - design/resource/viewResource.plantuml | 40a0098c809f66ba8f90b52fa8fd5e89981c85bf | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,204 | plantuml | @startuml viewResource
class ViewResourceForm {
- token: string
- resource_id: bigint
+ view_resource(token, resource_id)
}
class IResourceForm <<interface>> {
+ view_resource(token, resource_id)
}
class ResourceController {
+ view_resource(token, resource_id)
}
class ClassroomMember {
- id: bigint
- user_id: bigint
- classroom_id: bigint
- created_at: datetime
+ get_id(): bigint
+ get_user_id(): bigint
+ set_user_id(bigint)
+ get_classroom_id(): bigint
+ set_classroom_id(bigint)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IClassroomMemberDB <<interface>> {
+ create(classroom_id, user_id): void
+ read(classroom_id)
+ read(user_id)
+ read(classroom_member_id)
+ read(classroom_id, user_id)
+ update_rollcall(classroom_member_id, created_at, is_presented)
+ update_bonus_point(classroom_member_id, created_at, point)
+ update_score(classroom_member_id, created_at, test_title, score)
+ delete(classroom_id, user_id)
+ get_user(classroom_member)
+ get_classroom(classroom_member)
}
class Resource {
-id: bigint
-classroom_id: bigint
-uploaded_by: bigint
-resource: string
-created_at: datetime
+ get_id(): bigint
+ get_user_id(): bigint
+ set_user_id(bigint)
+ get_classroom_id(): bigint
+ set_classroom_id(bigint)
+ get_created_at(): datetime
+ get_updated_at(): datetime
}
class IResourceDB <<interface>> {
+ save_resource()
+ get_resource_url()
+ create(classroom_id, uploaded_by, resource_url)
+ read(classroom_id)
+ read(uploaded_by)
+ read(resource_id)
+ delete(resource_id)
}
hide ViewResourceForm circle
hide IResourceForm <<interface>> circle
hide ResourceController circle
hide IClassroomMemberDB <<interface>> circle
hide ClassroomMember circle
hide IResourceDB <<interface>> circle
hide Resource circle
IResourceForm .down.> ViewResourceForm
IClassroomMemberDB .down.> ClassroomMember
IResourceDB .down.> Resource
IResourceForm "1"-left-"1" ResourceController
ResourceController "1"-left-"1" IClassroomMemberDB
ResourceController "1"-left-"1" IResourceDB
@enduml
|
16ea64cdd48b060deedf818ac6c2d79f0eeaa293 | ae856e50e04474c8ab1f4bd57ca78ba391ac8ccd | /ch05-strategy-pattern/diagrams/robot-design-enhanced.puml | 3add241243599c1653f7cfaf6fa57b170ea0f86c | [] | no_license | outofworld98/java-design-patterns | d7c41ad0a41bf1f3d1ba4a9f4f2a212658aec427 | 75964a5387cad3f54726d0f7ba98b0765ca0d650 | refs/heads/master | 2022-03-29T17:38:14.238273 | 2019-01-17T11:10:00 | 2019-01-17T11:10:00 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 868 | puml | @startuml
class Robot {
-name : String
+Robot(Name : String)
+getName() : String
+move() : void
+attack() : void
+setMovingStrategy(movingStrategy : MovingStrategy) : void
+setAttackStrategy(attackStrategy : AttackStrategy) : void
}
class Atom {
+Atom(name : String)
}
class TaekwonV {
+TaekwonV(name : String)
}
Robot <|-- Atom
Robot <|-- TaekwonV
interface MovingStrategy {
+move() : void
}
class WalkingStrategy {
+move() : void
}
class FlyingStrategy {
+move() : void
}
MovingStrategy <|-- WalkingStrategy
MovingStrategy <|-- FlyingStrategy
MovingStrategy <-- Robot
interface AttackStrategy {
+move() : void
}
class PunchStrategy {
+move() : void
}
class MissileStrategy {
+move() : void
}
AttackStrategy <|-- PunchStrategy
AttackStrategy <|-- MissileStrategy
AttackStrategy <-- Robot
@enduml |
f6c9aabc06101410a8a67fb0422cdb32de81f3d1 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.puml | fb1c29c7b7663a09be2c2f09ef110edc4b28128e | [] | 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 | 129 | puml | @startuml
interface IAssetsDatabaseHelper {
OpenAssetInItsDefaultExternalEditor(assetPath:string, line:int) : void
}
@enduml
|
978858d59431190eaae50b762d6921a91591f0a4 | 869d693a038a4a764a6097ae036b5448a86aff21 | /设计类图/注册类图.plantuml | ff95e34faee44a5981c217c8addf6832fca74949 | [] | no_license | clysto/software-engineering | b1c5fe46d0b8c2596e5b3368010ed6149693c47d | 4eeb84d2dd8fe5975f5fcb4ded42c09d9d5efaf2 | refs/heads/master | 2022-11-13T23:01:42.252810 | 2020-06-28T07:10:48 | 2020-06-28T07:10:48 | 264,108,020 | 4 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 413 | plantuml | @startuml 注册类图
skinparam shadowing false
skinparam defaultFontName "微软雅黑"
class 用户 <<注册子系统>>{
- 账号
- 密码
- 手机号
- 邮箱
# 注册账号()
# 接收注册结果()
}
class 注册系统 {
# 账号设置()
# 密码设置()
# 手机号设置()
# 邮箱设置()
# 返回注册信息()
}
注册系统 "1" -up- "1" 用户
@enduml
|
48dd5918f4a7acac1705ec8a7eb266d95b2aa9ca | 61f77755f3ca65fa0a0dfbbdc51137e01ded03fc | /design_model/src/main/java/example/designpattern/structural/flyweight/flyweight pattern.puml | 1985827deebe47139eb8c59567de77e400b40126 | [] | no_license | lyszhen3/myWeb | 670e02a585ea3193f6c388b9cea37969a94792dc | c1543ec5f48d84e6c6481a95e54b84f04654b323 | refs/heads/master | 2023-07-11T02:29:33.530130 | 2019-02-25T01:39:29 | 2019-02-25T01:39:29 | 78,835,228 | 0 | 1 | null | 2022-12-16T04:38:41 | 2017-01-13T09:31:45 | Java | UTF-8 | PlantUML | false | false | 481 | puml | @startuml
abstract class IgoChessman{
+{abstract} String getColor();
+{abstract} void display();
}
class IgoChessmanFactory{
-IgoChessmanFactory instance;
-Hashtable ht;
-IgoChessmanFactory();
+IgoChessmanFactory getInstance();
+IgoChessman getLgoChessman(String color);
}
class BlackIgoChessman{
+String getColor();
}
class WhiteIgoChessman{
+String getColor();
}
BlackIgoChessman -up-|>IgoChessman
WhiteIgoChessman -up-|>IgoChessman
IgoChessmanFactory ..>IgoChessman
@enduml |
7222448cf6e6baa7e73e4c0a2db32f8bbf8ad1b5 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Runtime/Evaluation/InfiniteRuntimeClip.puml | 30e7ceaaa716d0d3ff9e10fd38959b1e8243fc65 | [] | 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 | 340 | puml | @startuml
class InfiniteRuntimeClip {
+ InfiniteRuntimeClip(playable:Playable)
+ <<override>> enable : bool <<set>>
+ <<override>> EvaluateAt(localTime:double, frameData:FrameData) : void
}
RuntimeElement <|-- InfiniteRuntimeClip
InfiniteRuntimeClip --> "intervalStart" Int64
InfiniteRuntimeClip --> "intervalEnd" Int64
@enduml
|
0b5ec52b0438eee646407e0985310aca743e2187 | 7b13715b0b972ea52b88ad8097cc8cb7b41f2bb1 | /Rendu/doc/javadoc/org/hibernate/dialect/identity/SQLiteDialectIdentityColumnSupport.puml | ec345d2cca3c854f56846671a6861596f955c9ab | [] | no_license | heig-vd-pro2017/projet | 8f6e9bb5cc75baaf809eda87b31d7de8c632f713 | db1e7ff720076eea9efe2c4fc8bcad97d80ca2f1 | refs/heads/master | 2021-01-16T23:21:13.159819 | 2017-05-29T17:32:48 | 2017-05-29T17:32:48 | 82,906,602 | 5 | 2 | null | 2017-04-02T16:05:43 | 2017-02-23T08:55:46 | Java | UTF-8 | PlantUML | false | false | 325 | puml | @startuml
class SQLiteDialectIdentityColumnSupport {
[[SQLiteDialectIdentityColumnSupport.html]]
+supportsIdentityColumns(): boolean
+hasDataTypeInIdentityColumn(): boolean
+getIdentitySelectString(String, String, int): String
+getIdentityColumnString(int): String
}
@enduml
|
a0b919f85592f7c96d60d9cadc8bb3c234e01e28 | f995efd248542b35678cfd8dac69e8580f948582 | /exercise44/docs/Solution44.puml | e0aea5ee9f598bcf14430e5bf4db4463df8f37eb | [] | no_license | Tomatoats/Veloz-a04 | 3c3a5bad79817f89c414006042c5abee1370ba6e | 975dd7fbb3b77ee8d65b6c2996ba14742024dacf | refs/heads/main | 2023-08-21T14:19:55.482309 | 2021-10-18T03:58:42 | 2021-10-18T03:58:42 | 414,774,349 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 215 | puml | @startuml
Solution44--inventoryManager
class Solution44{
gets things from the
JSON input
Map: Products
}
class inventoryManager{
-readFromUser(prompt)
reads from user and shows off
the thing they wanted
}
@enduml
|
659a38dc944ecb394d2c14aacace3d8ae5e5ba64 | 64f99d56f63424c070e9d08e50735e9293863269 | /ttally_tc_v2.puml | 92a72461aafe8ce74391ddaa82ee354b8bd914d9 | [] | no_license | EliasTechnik/EnglishPresentation | 5dac746533a84451c7f0c4be8ed4425ad9061616 | 37185a03341635009090251b914aae730735f15c | refs/heads/main | 2023-06-03T23:43:58.915152 | 2021-06-28T12:53:53 | 2021-06-28T12:53:53 | 378,847,152 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,069 | puml | @startuml ttally
class ttally{
-int id //remove
-int dip_nr
-byte device_health
-trgb afront_color
-trgb aback_color
-trgb efront_color
-trgb eback_color
-tip tally_ip //remove
-byte emode
-byte eanimation
-byte amode
-byte aanimation
-bool push_update
-bool online
+create(_id: integer)
+create_dummy()
+void decode_tally_info(msg: array of byte)
+void set_front_color(_front_color:trgb)
+void set_back_color(_back_color:trgb)
+void set_online(_online:boolean)
+void init_tally(_msg: array of byte)
+bool is_online()
+int get_id()
+int get_dip_nr()
+byte get_device_health()
+trgb get_front_color()
+trgb get_back_color()
+trgb get_efront_color()
+trgb get_eback_color()
+string get_tally_ip() //remove
+tip get_tally_ip_bin() //remove
+bool new_data()
+string get_instr_str(msg_type:byte)
}
@enduml |
26c3c437d0e00651fd84c181045bfcad88280d1a | 79d17c448f332733a97c8958082bcd1ef034b0c2 | /Documentation/models.puml | 1f487bc8549b070b6c8c0a067133dafb5194702a | [
"MIT"
] | permissive | saitho/ngHashi | 34fe3bfaa5a05411ab353d31665e9fd7ef367f5e | bdddd85a27a797fd1269c6e3bc9d082702fffa23 | refs/heads/master | 2021-05-06T22:41:36.513992 | 2017-12-31T14:23:18 | 2017-12-31T14:23:18 | 112,853,927 | 0 | 0 | null | 2019-02-12T23:06:18 | 2017-12-02T15:38:49 | TypeScript | UTF-8 | PlantUML | false | false | 4,104 | puml | @startuml
package Angular {
interface AfterViewInit {
+ ngAfterViewInit()
}
interface OnInit {
+ ngOnInit()
}
}
class EditorComponent extends AbstractGameBoardComponent {
# map: EditorMap
+ setBridges: boolean = false
+ islandSize: number
+ gameWidth: number
+ gameHeight: number
+ valid: boolean = false
+ exportData
# initGame(design: AbstractDesign)
+ setTool(tool: string)
# toggleIsland(e) {async}
- hasConnectionOnTile(x: number, y: number): boolean
+ drawGameBoard()
+ submitGitHub()
+ playMap()
+ importModal(content)
+ import(data) {async}
+ export()
# save()
+ onTouchDown(e)
+ onTouchUp(e)
+ onTouchMove(e)
}
class GameComponent extends AbstractGameBoardComponent implements AfterViewInit {
# map: AbstractMap
+ message: string
+ islandSize: number
+ ngAfterViewInit()
+ restart() {async}
+ help(content)
+ print()
+ drawGameBoard()
+ onTouchDown(e)
+ onTouchUp(e)
+ onTouchMove(e)
}
class GameHelpComponent
class LevelSelectComponent {
levels: AbstractMap[]
}
abstract class AbstractGameBoardComponent implements OnInit, AfterViewInit {
# map: AbstractMap
# canvasBg: ElementRef
# canvas: ElementRef
# canvasContext: CanvasRenderingContext2D
# canvasBgContext: CanvasRenderingContext2D
# gameWidth_default: number
# gameHeight_default: number
+ islandSize: number {abstract}
+ gameWidth: number
+ gameHeight: number
# design: AbstractDesign
# started: boolean
# startPosition: Coords
# stopPosition: Coords
# gameBoardConfig
+ ngOnInit()
+ ngAfterViewInit()
# removeConnectionOnCursorPos(e) {async}
# getConnectionsFromCursorPos(e): Connection[]
# initGame(design: AbstractDesign)
+ onTouchDown(e) {abstract}
+ onTouchUp(e) {abstract}
+ onTouchMove(e) {abstract}
# clearGameBoard()
# drawGrid()
+ drawGameBoard()
}
AbstractGameBoardComponent --> Coords
AbstractGameBoardComponent --> GameGUI
AbstractGameBoardComponent --> GameEngine
AbstractGameBoardComponent - "0..*" Connection : "drawnConnections"
class GameGUI {
- map: AbstractMap
+ setMap(map: AbstractMap)
+ removeBridge(connection: Connection)
+ putBridge(start: Coords, stop: Coords)
+ getTile(x, y, islandsOnly = true): Island
+ hasIsland(x, y, islandsOnly = true): boolean
- getLineDirection(start: Coords, stop: Coords)
- getIslandInRange(start: Coords, stop: Coords): Set<Island>
}
GameGUI --> Coords
GameGUI -> GameEngine
class GameEngine {
# connections: IGameEngineConnection[] {static}
+ setConnections(connections: IGameEngineConnection[]) {static}
- getIslandPos(island1: Island, island2: Island, direction: BoardDirections) {static}
- connectionObstructed(island1: Island, island2: Island, direction: BoardDirections): boolean {static}
+ connectIslands(island1: Island, island2: Island, direction: BoardDirections, editorMode = false) {static}
+ disconnectIslands(island1: Island, island2: Island, direction: BoardDirections, editorMode = false) {static}
}
GameEngine --> "0..*" IGameEngineConnection
interface IGameEngineConnection {
direction: BoardDirections;
start: number;
end: number;
otherAxis: number;
island: Island;
connectedIsland: Island;
}
interface Connection extends IGameEngineConnection {
startPx: number;
endPx: number;
otherAxisPx: number;
}
class AbstractMap {
+ title: string
+ themeName: string
# data: Array<Array<Island>>
+ timer: number
# timerActive: boolean
- depthSearchMarkers: Set<Coords>
+ startTimer()
+ stopTimer()
+ importFromJSON(object: any)
+ exportObject()
+ reset()
+ isSolved(): boolean
+ getData(): Array<Array<Island>>
- depthSearch(island: Island)
+ isConnectedGraph(): boolean
}
AbstractMap --> Coords
AbstractMap --> Island
interface Coords {
x: number
y: number
}
class Island {
constructor(bridges: number = 0)
+ init: boolean = false
+ bridges: number
+ tileCoords: Coords
+ pxCoordsStart: Coords
+ pxCoordsEnd: Coords
+ connections: object
+ countConnections(): number
+ isComplete(): boolean
}
Island --> Coords
@enduml
|
84f53377970bc624fc168e9982fd848235ffd517 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyOrderFromQuoteDraft.puml | 10da7a237a59f4300c20dc96dfc3b27a7c8d7aec | [] | 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 | 357 | 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 MyOrderFromQuoteDraft [[MyOrderFromQuoteDraft.svg]] {
id: String
version: Long
quoteStateToAccepted: Boolean
}
@enduml
|
3f71a2757c98c51fe5ffdfa4bf7b47a05f1a5a9c | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.puml | 83e8f3bda157da467adcb5595cbdc29f5c377249 | [] | no_license | TakanoVineYard/AMHH | 215a7c47049df08c5635b501e74f85137b9e985b | 68887a313587a2934fb4ceb2994cbc2a2191d6a3 | refs/heads/master | 2023-01-13T02:08:02.787083 | 2020-11-17T14:51:57 | 2020-11-17T14:51:57 | 303,631,593 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,030 | puml | @startuml
class UnityLogCheckDelegatingCommand {
+ UnityLogCheckDelegatingCommand(innerCommand:TestCommand)
+ <<override>> Execute(context:ITestExecutionContext) : TestResult
+ ExecuteEnumerable(context:ITestExecutionContext) : IEnumerable
{static} CaptureException(result:TestResult, action:Action) : bool
{static} ExecuteAndCheckLog(logScope:LogScope, result:TestResult, action:Action) : bool
{static} PostTestValidation(logScope:LogScope, command:TestCommand, result:TestResult) : void
{static} CheckLogs(result:TestResult, logScope:LogScope) : bool
{static} CheckFailingLogs(logScope:LogScope, result:TestResult) : bool
{static} CheckExpectedLogs(logScope:LogScope, result:TestResult) : bool
{static} MustExpect(method:MemberInfo) : bool
}
class "Dictionary`2"<T1,T2> {
}
DelegatingTestCommand <|-- UnityLogCheckDelegatingCommand
IEnumerableTestMethodCommand <|-- UnityLogCheckDelegatingCommand
UnityLogCheckDelegatingCommand o-> "s_AttributeCache<object,bool?>" "Dictionary`2"
@enduml
|
d2b798e48407a899da683bc620c984f2212a189a | 1484f4a4d4c5b4689f8525742d1e4cda8fdb6d3a | /docs/diagrams/manualtracker/Commands_Logic.puml | 1338c90ddc133abac8251e4debbeb2715bdc91a6 | [] | no_license | AY2021S1-CS2113-T16-1/tp | 8abd1e1798a8ecc64b4b3ae28dd5da618714b972 | 6ef0845c809addb46fef872101ef528780571b5d | refs/heads/master | 2023-01-13T17:13:34.579399 | 2020-11-16T05:03:49 | 2020-11-16T05:03:49 | 300,199,426 | 0 | 1 | null | 2020-11-16T05:03:50 | 2020-10-01T08:10:30 | Java | UTF-8 | PlantUML | false | false | 3,241 | puml | @startuml
left to right direction
hide circle
scale 1500 width
skinparam classAttributeIconSize 0
skinparam BoxPadding 20
skinparam shadowing false
skinparam package<<Layout>> {
borderColor Transparent
backgroundColor Transparent
fontColor Transparent
stereotypeFontColor Transparent
}
rectangle Logic {
package p1 <<Layout>> {
}
package p2 <<Layout>> {
}
package p3 <<Layout>> {
}
class ParamChecker <<Singleton>>{
+ checkAndReturnDate(paramType : String) : LocalDate
+ checkAndReturnTime(paramType : String) : LocalTime
+ checkAndReturnIndex(paramType : String, list : ArrayList) : Integer
+ checkAndReturnDouble(paramType : String) : Double
+ checkAndReturnInt(paramType : String) : Integer
+ checkAndReturnCategory(paramType : String) : String
}
p1 -[hidden] p2
p2 -[hidden] p3
p2 -[hidden] ParamChecker
rectangle "CommandHandlers" {
abstract class ParamHandler {
+ handleParams(packet : CommandPacket) : void
+ {abstract} handleSingleParam(packet : CommandPacket, paramType : String)
}
rectangle "Ledger CommandHandlers" {
class createLedgerHandler <<Singleton>>{
+ handlePacket() : void
+ handleSingleParams(paramType : String) : void
+ handleParams(packet : CommandPacket) : void
}
class retrieveLedgerHandler <<Singleton>>{
+ handlePacket() : void
+ handleSingleParams(paramType : String) : void
+ handleParams(packet : CommandPacket) : void
}
}
package p4 <<Layout>> {
}
rectangle "Entry CommandHandlers" {
class createEntryHandler <<Singleton>>{
+ handlePacket() : void
+ handleSingleParams(paramType : String) : void
+ handleParams(packet : CommandPacket) : void
}
class editEntryHandler <<Singleton>>{
+ handlePacket() : void
+ handleSingleParams(paramType : String) : void
+ handleParams(packet : CommandPacket) : void
}
class retrieveEntryHandler <<Singleton>>{
+ handlePacket() : void
+ handleSingleParams(paramType : String) : void
+ handleParams(packet : CommandPacket) : void
}
}
"Entry CommandHandlers" -[hidden]- p4
ParamChecker -[hidden]- ParamHandler
}
ParamChecker "1" <... createLedgerHandler #line:blue;text:black : < Verifies params using
ParamChecker "1" <... retrieveLedgerHandler #line:blue;text:black : < Verifies params using
ParamChecker "1" <... createEntryHandler #line:blue;text:black : < Verifies params using
ParamChecker "1" <... editEntryHandler #line:blue;text:black : < Verifies params using
ParamChecker "1" <... retrieveEntryHandler #line:blue;text:black : < Verifies params using
ParamHandler <|--- createLedgerHandler #line:purple;line.bold;text:red
ParamHandler <|--- retrieveLedgerHandler #line:purple;line.bold;text:red
ParamHandler <|--- createEntryHandler #line:purple;line.bold;text:red
ParamHandler <|----- retrieveEntryHandler #line:purple;line.bold;text:red
ParamHandler <|--- editEntryHandler #line:purple;line.bold;text:red
}
@enduml |
07da8c9b8cb01fdd76341f809746d7078653d3ae | fa713460b1f3004d5691e7c15a0d275b205ef851 | /diagram/individuals/injection.plantuml | 25848c3adf6202fd3a667a0191d2d6c6cbce557b | [] | no_license | Philippe-DEBANDE/OC-DevAndroid-Projet5 | d513cac4f0fb32445b44edd3eea39937eb08cf18 | b9cf9c1005b79c9714fa6fd6e0a5ef9c861e7d08 | refs/heads/master | 2022-11-28T07:06:10.580004 | 2020-08-02T15:18:32 | 2020-08-02T15:18:32 | 284,226,422 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 598 | plantuml | @startuml
title __INJECTION's Class Diagram__\n
namespace com {
namespace cleanup.todoc {
namespace injection {
class com.cleanup.todoc.injection.Injection {
{static} + provideExecutor()
{static} + provideProjectDataSource()
{static} + provideTaskDataSource()
{static} + provideViewModelFactory()
}
}
}
}
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
|
ccd72772c886a931b96b7ad48c63d32705e5164e | 8b899ba8220c247a9cce52ee728717afa31faf42 | /src/class_machines.puml | 4f8d9675f3e7225fdd18efc34437a4c6bc93e001 | [] | no_license | FerryTix/diagrams | 5313dce8043080074c4097bd4b0e0533a78a1019 | db4a2c2b99f4e4e273ef9b5fd47f7fdef9e5e319 | refs/heads/main | 2023-04-18T03:34:17.313112 | 2021-05-03T19:22:08 | 2021-05-03T19:22:08 | 341,652,352 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,441 | puml | @startuml
skinparam linetype ortho
left to right direction
skinparam nodesep 30
'title: FerryTix Class Diagram
skinparam monochrome true
scale 1.5
class Payment {
'issuedBy: Union<null, VendingMachine>
uuid: UUID
issuedAt: DateTime
amount: Integer
'details: PaymentDetails
'method: PaymentMethod
}
Payment "*" -- "1" VendingMachine
' TicketSale "1" -- "1" Payment
class MachineConfiguration {
'forMachine: VendingMachine
maxBicycles: Integer
maxBicyclesTolerance: Integer
maxPassengers: Integer
maxPassengersTolerance: Integer
'fares: [Fare]
}
MachineConfiguration "1" -- "1…*" VendingMachine
MachineConfiguration "*" -- "*" Fare
class Fare {
' ticketClass: TicketClass
fare: Integer
}
enum MachineLocation {
Bislich
Xanten
}
class VendingMachine {
uuid: UUID
publicKey: PublicKey
'location: MachineLocation
}
MachineLocation "1" -- "*" VendingMachine
class MachineStatus {
vending: Boolean
' waiting: [WaitingPassenger]
batteryCharge: float
estimatedReceiptPaperFillLevel: float
receiptPaperRollLength: float
cpuTemperature: float
'ticketsSoldToday:
volumeOfSalesToday: integer
saleCounter: integer
}
WaitingPassenger "*" - "1" MachineStatus
class WaitingPassenger {
ticketClass: TicketClass
waitingSince: DateTime
}
WaitingPassenger "*" -- "1" TicketClass
VendingMachine "1" - "1" MachineStatus
@enduml |
6689434cbcf6121e29795fa445f3d8f583aba497 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/CartPagedQueryResponse.puml | 217c1bf269974bbd5fe08eca24cb722c2f7eb3f1 | [] | 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 | 394 | 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 CartPagedQueryResponse [[CartPagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[Cart.svg List<Cart>]]
}
@enduml
|
bf259c769dff348129d5d65b41226d169de0d7cd | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Contracts.Admin/Catalog/AdminCatalogsResponse.puml | 979dcfb3e007e89f43bd6506db0dbf0cdd2ffa3e | [
"BSD-3-Clause"
] | permissive | noelmartens/TransitionAcademy | 4e02379d234aa4859a497ee2846420f4c55b9e12 | 3b95a5c737ab7b1497b77d455cf64caa73f69e1f | refs/heads/master | 2023-06-14T05:25:35.514249 | 2021-07-02T19:40:29 | 2021-07-02T19:40:29 | 362,512,351 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 90 | puml | @startuml
class AdminCatalogsResponse {
}
ResponseBase <|-- AdminCatalogsResponse
@enduml
|
9e03917fa4b9f39ca5952bf91da14d803de7af37 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/TypeChangeLocalizedEnumValueLabelAction.puml | a9f6f76bc4572f829ae720d8ae190cdbfab67d69 | [] | 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 | 545 | 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 TypeChangeLocalizedEnumValueLabelAction [[TypeChangeLocalizedEnumValueLabelAction.svg]] extends TypeUpdateAction {
action: String
fieldName: String
value: [[CustomFieldLocalizedEnumValue.svg CustomFieldLocalizedEnumValue]]
}
interface TypeUpdateAction [[TypeUpdateAction.svg]] {
action: String
}
@enduml
|
9ab70f878c4599418c12ab04c7042943276743b1 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductTypeUpdate.puml | 831f77339aa1e67d73199e856020bd40df3c1f29 | [] | 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 | 375 | 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 ProductTypeUpdate [[ProductTypeUpdate.svg]] {
version: Long
actions: [[ProductTypeUpdateAction.svg List<ProductTypeUpdateAction>]]
}
@enduml
|
90941259aa43fe0a348c0ec75c81a4177cee33cd | 531021c0d92723ea2ab9e3609f7bc7ee099099f9 | /todo-code/src/main/kotlin/io/patamon/todo/design_pattern/观察者模式.puml | 80725f0d1b6d1c50e4c1b12d1bf6f541fd59faaf | [] | no_license | IceMimosa/TODO | fba00de99ac6cd99d64c5f0954860863abe78aba | 192c73a827e905f9d0473c602d15d1df7a6623d8 | refs/heads/master | 2022-06-03T15:48:53.673061 | 2022-05-29T13:32:54 | 2022-05-29T13:32:54 | 137,827,298 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 434 | puml | @startuml
package "Subject" {
interface Subject {
+register(Observer observer)
+remove(Observer observer)
+notify(Observer observer)
}
class ConcreteSubject extends Subject {
}
}
package "Observer" {
interface Observer {
+update()
}
class ConcreteObserver extends Observer {
}
}
Subject --> Observer : notify
ConcreteObserver ..> ConcreteSubject : pull
@enduml
|
5a074c57bf4487cf52788f5d3ed32b4a3fa16824 | a68128b7cd155dd88cba45ffd66d1139a939a1f6 | /UML/ListItem.puml | 99ae6a5e9f934c5fb5bd5b760ca97f786187e2a0 | [] | no_license | DyroZang/mousa-cop3330-assignment4 | 430e36f42f273621d47a62155ccb800858cc892d | dfb63fe8f00fbb1763a5a4eeadc3340da96d587a | refs/heads/master | 2023-08-27T06:45:23.835879 | 2021-11-02T02:46:37 | 2021-11-02T02:46:37 | 423,685,854 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 288 | puml | @startuml
class ucf.assignments.ListItem {
- Boolean completed
- String description
- String date
~ String[] months
+ boolean isState()
+ String getDescription()
+ String getDate()
+ void delete()
+ void setCompleted(Boolean)
+ void setDescription(String)
+ void setDate(String)
}
@enduml |
c28f01378349814644b353a5093330beb2ebf91f | 9266fbcd6f9de11116364f51aab7289161b277a3 | /domain-model-with-bounded-contexts.puml | 6138c29946b004af7d8aeeca164259aabd6fd74b | [] | no_license | memor1s/microservices-school | a25206b2ca20d9bed2b56695ab479a214cc703a1 | bf3ddf16566018833a677eb1aba6dc2d59e5722e | refs/heads/master | 2020-05-06T20:09:11.186020 | 2019-09-03T06:40:52 | 2019-09-03T06:40:52 | 180,224,409 | 0 | 0 | null | 2019-06-10T20:29:13 | 2019-04-08T20:05:23 | Java | UTF-8 | PlantUML | false | false | 1,849 | puml | @startuml
'skinparam linetype polyline
'skinparam linetype ortho
left to right direction
namespace userservice {
class User {
+ login
+ password
}
class Principal {
}
class Teacher {
+ name
+ passportNumber
+ phoneNumber
+ email
+ status
+ salary
+ bonus
}
class Parent {
+ name
+ phoneNumber
+ email
}
class Pupil {
+ name
+ age
+ grade
+ phoneNumber
+ email
}
class Address {
+ city
+ street
+ house
+ apartment
+ zipCode
}
User <|- Principal
User <|-- Teacher
User <|-- Parent
User <|-- Pupil
Principal "1" o- "1" Address : lives by >
Pupil "1" o- "1" Address : lives by >
Parent "1" o- "1" Address : lives by >
Teacher "1" o-- "1" Address : lives by >
Pupil "*" -l- "*" Parent: \n\thas\n >
}
together {
namespace scheduleservice {
class userservice.Teacher {
+ name
}
class Schedule {
+ year
}
class Lesson {
+ date
+ marks
+ absentPupils
}
class HomeWork {
+ description
}
Schedule "1" *-l> "*" Lesson : \ncontains\n
Lesson "1" *-l> "1" HomeWork : \ncontains\n
}
namespace curriculumservice {
class Curriculum {
+ grade
}
class Course {
+ lessonCount
}
class Subject {
+ name
}
Curriculum "1" *-u> "*" Course : \ncontains\n
Course "1" *-u> "1" Subject : \ncontains\n
}
}
namespace schoolclassservice {
class SchoolClass {
+ letter
+ grade
+ year
}
}
schoolclassservice .-> userservice : gets info about teachers
schoolclassservice .-> userservice : gets info about pupils
scheduleservice .-> curriculumservice : gets info about courses
scheduleservice .-r> schoolclassservice : gets info about classes
@enduml
|
e5fb71e8a70ea80a026996ac9ee4c8ed57f0a86d | b5bc19cdf4e40c24fb4a028c42cc73d112760547 | /DesignMode/src/main/resources/PrototypePattern.puml | ef4d0d831bb34889e063caeb19e64342938e1cc0 | [
"Apache-2.0"
] | permissive | 793753509/InterviewIForJob | 5b92bae2f72a73ffb36e2cee8638b8bfe3000a2f | 2c3f5fc4e1aa599581223000b5ac591e43bc1388 | refs/heads/main | 2023-03-29T04:18:57.081000 | 2021-04-03T05:00:40 | 2021-04-03T05:00:40 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 333 | puml | @startuml
/'通用形状接口'/
abstract class Shape{
+ int x;
+ int y;
+ String color;
+ {abstract} Shape clone();
}
class Circle{
+ int radius;
+ Shape clone();
}
class Rectangle{
+ int width;
+ int height;
+ Shape clone();
}
Circle --|> Shape
Rectangle --|> Shape
class Client{
}
Client ..> Shape
@enduml
|
50eed9d8e1250f2a0511437395e1f9860d7b4f51 | 24cc83f303b034e808e1c775ba8063f9ce01afc4 | /cleanArchitecture/solid/dip/CD_AbstractFactory.puml | a162007015b7d72325212478d948db4315483e80 | [] | no_license | iamapen/puml | 7110aea5171be5bd8f735fb252c674c8a78a9943 | 9a59dad08faee1b494c2dafefbefb32feacb90b6 | refs/heads/master | 2020-08-26T19:18:18.364585 | 2020-01-05T17:48:55 | 2020-01-05T17:48:55 | 214,042,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,009 | puml | @startuml
title DIP(依存性逆転の原則)
legend top
ソースコードの依存性と、処理の流れが逆向きになる。
「依存性逆転」という呼び名はここから来ている...らしい。
私はいまいち命名はピンと来ないが。
疎結合になる理由はわかる。
endlegend
class Application
package アーキテクチャ境界1 {
interface ServiceFactory {
+ createService() :Service
}
interface Service
Service <-- ServiceFactory :<<creates>>
}
Application --> ServiceFactory
Application -> Service
package アーキテクチャ境界2 {
class ServiceFactoryImpl {
+ createService() :Service
}
ServiceFactory <|.. ServiceFactoryImpl
class ConcreteImpl
Service <|.. ConcreteImpl
ConcreteImpl <-- ServiceFactoryImpl :<<creates>>
}
object main
note bottom
ServiceLocator や DiContainer の初期化など
アプリはここ経由でFactoryにアクセスする
endnote
ServiceFactoryImpl <--o main :<<creates>>
@enduml
|
21ddfe29c80fcd23782f948adf46ff1aa17e799d | 0ec9b09bca5e448ded9866a5fe30c7a63b82b8b3 | /modelViewPresenter/presentationModel/withoutDoubleDispatching/docs/diagrams/src/paquetes.plantuml | da18e14d2689826f27ed8e8c784ef545f4623ce6 | [] | no_license | pixelia-es/USantaTecla-project-mastermind-java.swing.socket.sql | 04de19c29176c4b830dbae751dc4746d2de86f2e | 2b5f9bf273c67eedff96189b6b3c5680c8b10958 | refs/heads/master | 2023-06-10T13:09:55.875570 | 2021-06-29T15:16:23 | 2021-06-29T15:16:23 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 15,301 | plantuml | @startuml mastermind
class View as "usantatecla.\nmastermind.views.\nView"
class ConsoleView as "usantatecla.\nmastermind.views.\nconsole.ConsoleView"
class GraphicsView as "usantatecla.\nmastermind.views.\nconsole.GraphicsView"
class Logic as "usantatecla.\nmastermind.controllers.\nLogic"
abstract class Controller as "usantatecla.\nmastermind.controllers.\nController"
class usantatecla.mastermind.ConsoleMastermind{
+ {static} main(String[])
# createView(): View
}
usantatecla.mastermind.Mastermind <|-down- usantatecla.mastermind.ConsoleMastermind
usantatecla.mastermind.ConsoleMastermind .down.> ConsoleView
class usantatecla.mastermind.GraphicsMastermind{
+ {static} main(String[])
# createView(): View
}
usantatecla.mastermind.Mastermind <|-down- usantatecla.mastermind.GraphicsMastermind
usantatecla.mastermind.GraphicsMastermind .down.> GraphicsView
abstract class usantatecla.mastermind.Mastermind{
# Mastermind()
# {abstract} createView(): View
# play()
}
usantatecla.mastermind.Mastermind *-down-> View
usantatecla.mastermind.Mastermind *-down-> Logic
usantatecla.mastermind.Mastermind .down.> Controller
@enduml
@startuml usantatecla.mastermind.views
abstract class Controller as "usantatecla.\nmastermind.controllers.\nController"
enum Color as "usantatecla.\nmastermind.types.\nColor"
enum Error as "usantatecla.\nmastermind.types.\nError"
abstract class usantatecla.mastermind.views.ColorView{
+ {static} INITIALS: char[]
# ColorView()
# ColorView(Color)
+ {static} getInstance(char): Color
+ allInitials(): String
# {abstract} resultInitials(int): String
}
usantatecla.mastermind.views.ColorView *-down-> Color
abstract class usantatecla.mastermind.views.ErrorView{
+ MESSAGES: String[]
# ErrorView()
+ ErrorView(Error)
# {abstract} colorInitials(): String
}
usantatecla.mastermind.views.ErrorView *-down-> Error
enum usantatecla.mastermind.views.Message{
+ ATTEMPTS
+ SECRET
+ RESUME
+ RESULT
+ PROPOSED_COMBINATION
+ TITLE
+ WINNER
+ LOOSER
- message: String
~ MessageView(String)
+ getMessage(): String
}
abstract class usantatecla.mastermind.views.View{
+ {abstract} interact(Controller)
}
usantatecla.mastermind.views.View .down.> Controller
@enduml
@startuml usantatecla.mastermind.console
abstract class Controller as "usantatecla.\nmastermind.controllers.\nController"
class StartController as "usantatecla.\nmastermind.controllers.\nStartController"
class ProposalController as "usantatecla.\nmastermind.controllers.\nProposalController"
class ResumeController as "usantatecla.\nmastermind.controllers.\nResumeController"
enum Error as "usantatecla.\nmastermind.types.\nError"
enum Color as "usantatecla.\nmastermind.types.\nColor"
abstract class View as "usantatecla.\nmastermind.views.\nView"
abstract class ColorView as "usantatecla.\nmastermind.views.\nColorView"
abstract class ErrorView as "usantatecla.\nmastermind.views.\nErrorView"
enum Message as "usantatecla.\nmastermind.views.\nMessageView"
class Console as "usantatecla.utils.\nConsole"
class YesNoDialog as "usantatecla.utils.\nYesNoDialog"
enum ColorCode as "usantatecla.utils.\nColorCode"
class usantatecla.mastermind.views.console.ConsoleView {
+ ConsoleView()
+ interact(Controller)
}
usantatecla.mastermind.views.console.ConsoleView -up-|> View
usantatecla.mastermind.views.console.ConsoleView *-down-> usantatecla.mastermind.views.console.StartView
usantatecla.mastermind.views.console.ConsoleView *-down-> usantatecla.mastermind.views.console.ProposalView
usantatecla.mastermind.views.console.ConsoleView *-down-> usantatecla.mastermind.views.console.ResumeView
usantatecla.mastermind.views.console.ConsoleView .down.> Controller
usantatecla.mastermind.views.console.ConsoleView .down.> StartController
usantatecla.mastermind.views.console.ConsoleView .down.> ProposalController
usantatecla.mastermind.views.console.ConsoleView .down.> ResumeController
class usantatecla.mastermind.views.console.ResumeView {
~ interact(ResumeController)
}
usantatecla.mastermind.views.console.ResumeView .down.> ResumeController
usantatecla.mastermind.views.console.ResumeView .down.> Message
usantatecla.mastermind.views.console.ResumeView .down.> YesNoDialog
class usantatecla.mastermind.views.console.StartView {
~ interact(StartController)
}
usantatecla.mastermind.views.console.StartView *-down-> usantatecla.mastermind.views.console.SecretCombinationView
usantatecla.mastermind.views.console.StartView .down.> Console
usantatecla.mastermind.views.console.StartView .down.> StartController
usantatecla.mastermind.views.console.StartView .down.> Message
class usantatecla.mastermind.views.console.ProposalView {
~ interact(ProposalController)
}
usantatecla.mastermind.views.console.ProposalView .down.> usantatecla.mastermind.views.console.GameView
usantatecla.mastermind.views.console.ProposalView .down.> usantatecla.mastermind.views.console.ProposedCombinationView
usantatecla.mastermind.views.console.ProposalView .down.> usantatecla.mastermind.views.console.ErrorView
usantatecla.mastermind.views.console.ProposalView .down.> ProposalController
usantatecla.mastermind.views.console.ProposalView .down.> Color
usantatecla.mastermind.views.console.ProposalView .down.> Error
class usantatecla.mastermind.views.console.GameView {
~ GameView(ProposalController)
~ write()
}
usantatecla.mastermind.views.console.GameView *-down-> ProposalController
usantatecla.mastermind.views.console.GameView .down.> usantatecla.mastermind.views.console.AttemptsView
usantatecla.mastermind.views.console.GameView .down.> usantatecla.mastermind.views.console.SecretCombinationView
usantatecla.mastermind.views.console.GameView .down.> usantatecla.mastermind.views.console.ProposedCombinationView
usantatecla.mastermind.views.console.GameView .down.> usantatecla.mastermind.views.console.ResultView
usantatecla.mastermind.views.console.GameView .down.> Message
usantatecla.mastermind.views.console.GameView .down.> Console
class usantatecla.mastermind.views.console.ProposedCombinationView {
+ ProposedCombinationView(ProposalController)
+ write(int)
+ read(): List<Color>
}
usantatecla.mastermind.views.console.ProposedCombinationView *-down-> ProposalController
usantatecla.mastermind.views.console.ProposedCombinationView .down.> usantatecla.mastermind.views.console.ColorView
usantatecla.mastermind.views.console.ProposedCombinationView .down.> Color
usantatecla.mastermind.views.console.ProposedCombinationView .down.> Message
usantatecla.mastermind.views.console.ProposedCombinationView .down.> Console
class usantatecla.mastermind.views.console.SecretCombinationView {
~ SecretCombinationView(Controller)
~ writeln()
}
usantatecla.mastermind.views.console.SecretCombinationView *-down-> Controller
usantatecla.mastermind.views.console.SecretCombinationView ..> Message
usantatecla.mastermind.views.console.SecretCombinationView ..> Console
class usantatecla.mastermind.views.console.ResultView {
+ ResultView(ProposalController)
+ writeln(int)
}
usantatecla.mastermind.views.console.ResultView *-down-> ProposalController
usantatecla.mastermind.views.console.ResultView .down.> Message
usantatecla.mastermind.views.console.ResultView .down.> Console
class usantatecla.mastermind.views.console.AttemptsView {
~ AttemptsView(ProposalController)
~ writeln()
}
usantatecla.mastermind.views.console.AttemptsView *-down-> ProposalController
usantatecla.mastermind.views.console.AttemptsView .down.> Console
usantatecla.mastermind.views.console.AttemptsView .down.> Message
class usantatecla.mastermind.views.console.ColorView {
+ ColorView()
+ ColorView(Color)
# resultInitials(int) : String
+ write()
}
usantatecla.mastermind.views.console.ColorView -up-|> ColorView
usantatecla.mastermind.views.console.ColorView .down.> ColorCode
usantatecla.mastermind.views.console.ColorView .down.> Console
usantatecla.mastermind.views.console.ColorView .down.> Color
class usantatecla.mastermind.views.console.ErrorView {
~ ErrorView()
+ ErrorView(Error)
+ writeln()
# colorInitials() : String
}
usantatecla.mastermind.views.console.ErrorView -up-|> ErrorView
usantatecla.mastermind.views.console.ErrorView .down.> Error
usantatecla.mastermind.views.console.ErrorView .down.> Console
usantatecla.mastermind.views.console.ErrorView .down.> usantatecla.mastermind.views.console.ColorView
@enduml
@startuml usantatecla.mastermind.controllers
abstract class Combination as "usantatecla.\nmastermind.models.\nCombination"
class Game as "usantatecla.\nmastermind.models.\nGame"
class State as "usantatecla.\nmastermind.models.\nState"
class ProposedCombination as "usantatecla.\nmastermind.models.\nProposedCombination"
enum StateValue as "usantatecla.\nmastermind.models.\nStateValue"
enum Error as "usantatecla.\nmastermind.types.\nError"
enum Color as "usantatecla.\nmastermind.types.\nColor"
abstract class usantatecla.mastermind.controllers.Controller{
~ Controller(Game, State)
+ getWidth(): int
}
usantatecla.mastermind.controllers.Controller *-down-> Game
usantatecla.mastermind.controllers.Controller *-down-> State
usantatecla.mastermind.controllers.Controller .down.> Combination
class usantatecla.mastermind.controllers.Logic{
+ Logic()
+ getController(): Controller
}
usantatecla.mastermind.controllers.Logic *-down-> usantatecla.mastermind.controllers.Controller
usantatecla.mastermind.controllers.Logic *-down-> Game
usantatecla.mastermind.controllers.Logic *-down-> State
usantatecla.mastermind.controllers.Logic *-down-> StateValue
usantatecla.mastermind.controllers.Logic .down.> usantatecla.mastermind.controllers.ResumeController
usantatecla.mastermind.controllers.Logic .down.> usantatecla.mastermind.controllers.StartController
usantatecla.mastermind.controllers.Logic .down.> usantatecla.mastermind.controllers.PlayController
class usantatecla.mastermind.controllers.PlayController{
+ ProposalController(Game, State)
+ addProposedCombination(List<Color>): Error
+ isWinner(): boolean
+ isLooser(): boolean
+ getAttempts(): int
+ getColors(int): List<Color>
+ getBlacks(int): int
+ getWhites(int): int
}
usantatecla.mastermind.controllers.Controller <|-down- usantatecla.mastermind.controllers.PlayController
usantatecla.mastermind.controllers.PlayController .down.> Combination
usantatecla.mastermind.controllers.PlayController .down.> Game
usantatecla.mastermind.controllers.PlayController .down.> State
usantatecla.mastermind.controllers.PlayController .down.> ProposedCombination
usantatecla.mastermind.controllers.PlayController .down.> Error
usantatecla.mastermind.controllers.PlayController .down.> Color
class usantatecla.mastermind.controllers.ResumeController{
+ ResumeController(Game, State)
+ resume(boolean)
}
usantatecla.mastermind.controllers.Controller <|-down- usantatecla.mastermind.controllers.ResumeController
usantatecla.mastermind.controllers.ResumeController .down.> Game
usantatecla.mastermind.controllers.ResumeController .down.> State
class usantatecla.mastermind.controllers.StartController{
+ StartController(Game, State)
+ start()
}
usantatecla.mastermind.controllers.Controller <|-down- usantatecla.mastermind.controllers.StartController
usantatecla.mastermind.controllers.StartController .down.> Game
usantatecla.mastermind.controllers.StartController .down.> State
@enduml
@startuml usantatecla.mastermind.models
enum Color as "usantatecla.\nmastermind.types.\nColor"
class usantatecla.mastermind.models.State {
- stateValue: StateValue
+ state()
+ next()
+ reset()
+ getValueState(): StateValue
}
usantatecla.mastermind.models.State *-down-> usantatecla.mastermind.models.StateValue
enum usantatecla.mastermind.models.StateValue {
+ INITIAL
+ IN_GAME
+ FINAL
+ EXIT
}
abstract class usantatecla.mastermind.models.Combination {
- {static} WIDTH: int
# Combination()
+ {static} getWidth(): int
}
usantatecla.mastermind.models.Combination *-down-> "*" Color
class usantatecla.mastermind.models.Game {
- {static} MAX_LONG: int
- attempts: int
+ Game()
+ clear()
+ addProposeCombination(ProposedCombination)
+ isLooser(): boolean
+ isWinner(): boolean
+ getAttempts(): int
+ getProposedCombination(int): ProposedCombination
+ getResult(int): Result
}
usantatecla.mastermind.models.Game *-down-> usantatecla.mastermind.models.SecretCombination
usantatecla.mastermind.models.Game *-down-> "0..*" usantatecla.mastermind.models.Result
usantatecla.mastermind.models.Game *-down-> "0..*" usantatecla.mastermind.models.ProposedCombination
class usantatecla.mastermind.models.ProposedCombination {
~ contains(Color, int): boolean
~ contains(Color): boolean
+ getColors(): List<Color>
}
usantatecla.mastermind.models.Combination <|-down- usantatecla.mastermind.models.ProposedCombination
usantatecla.mastermind.models.ProposedCombination .down.> Color
class usantatecla.mastermind.models.SecretCombination {
~ SecretCombination()
~ getResult(ProposedCombination): Result
}
usantatecla.mastermind.models.Combination <|-down- usantatecla.mastermind.models.SecretCombination
usantatecla.mastermind.models.SecretCombination .down.> usantatecla.mastermind.models.Result
usantatecla.mastermind.models.SecretCombination .down.> usantatecla.mastermind.models.ProposedCombination
usantatecla.mastermind.models.SecretCombination .down.> Color
class usantatecla.mastermind.models.Result {
- blacks: int
- whites: int
~ Result(int, int)
~ isWinner(): boolean
+ getBlacks(): int
+ getWhites(): int
}
usantatecla.mastermind.models.Result .down.> usantatecla.mastermind.models.Combination
@enduml
@startuml usantatecla.mastermind.types
enum usantatecla.mastermind.types.Color {
+ RED
+ BLUE
+ YELLOW
+ GREEN
+ ORANGE
+ PURPLE
+ NULL
~ {static} length(): int
+ isNull(): boolean
}
enum usantatecla.mastermind.types.Error {
+ DUPLICATED
+ WRONG_CHARACTERS
+ WRONG_LENGTH
+ NULL
+ isNull(): boolean
}
@enduml
@startuml usantatecla.utils
class BufferedReader as "java.io.BufferedReader"{}
enum usantatecla.utils.views.ColorCode{
+ RED
+ BLUE
+ YELLOW
+ GREEN
+ ORANGE
+ PURPLE
+ RESET_COLOR
- color: String
~ ColorCode(String)
+ getColor(): String
+ {static} getColorByIndex(int): String
}
class usantatecla.utils.views.Console{
- {static} console: Console
+ {static} getInstance(): Console
+ readString(String): String
+ readString(): String
+ readInt(String): int
+ readChar(String): char
+ writeln()
+ write(String)
+ writeln(String)
+ write(char)
- writeError(String)
}
usantatecla.utils.views.Console *-down-> BufferedReader
class usantatecla.utils.views.YesNoDialog{
- {static} AFIRMATIVE: char
- {static} NEGATIVE: char
- {static} QUESTION: String
- {static} MESSAGE: String
+ YesNoDialog()
+ read(String): boolean
- {static} isAfirmative(char): boolean
- {static} isNegative(char): boolean
}
usantatecla.utils.views.YesNoDialog ..> usantatecla.utils.views.Console
@enduml
|
2611a003dcbf6139c47aed7d48e3304b8b04f076 | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/blue/1161386/sp1/dm.puml | 228b3b4397dc12d06b5c8e6848598e1ca3d2bfe5 | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 420 | puml | @startuml dm.png
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
hide empty methods
class NaryOperation << (C,yellow) >> {
-Expression[] operands
+NaryOperation(operator, operands)
+evaluate()
+accept()
+getOperands()
}
interface NaryOperator << (I, yellow) >>{
-applyTo()
}
NaryOperation o-- NaryOperator
@enduml |
9e21fc4be7832cae058e44a6f206b305772410d6 | 6c1c7cd7bf6df648880c0676964502463f18fda5 | /src/main/java/View/component/component.plantuml | 37aef5c704689e2b4f8fc5b5687d5835cd7e6a5b | [] | no_license | yannickTilly/appliVisiteurCli | 978c0ee4f04bca36c12911c2b7bb477ed53275d8 | 407e183f3998825d96409eef530ed5d6656fe5b5 | refs/heads/master | 2022-12-11T17:56:20.251585 | 2020-05-19T11:24:35 | 2020-05-19T11:24:35 | 217,737,041 | 0 | 0 | null | 2022-11-15T23:31:18 | 2019-10-26T16:28:45 | Java | UTF-8 | PlantUML | false | false | 8,064 | plantuml | @startuml
title __COMPONENT's Class Diagram__\n
namespace View.component {
class View.component.ConsultationDrugsView {
- drugs : VBox
- searchButton : Button
+ ConsultationDrugsView()
+ addDrug()
+ clearDrug()
+ initialize()
+ onChangeModel()
+ setListener()
- fireSearch()
}
}
namespace View.component {
class View.component.ConsultationPratitionnersView {
- pratitionners : VBox
- searchButton : Button
+ ConsultationPratitionnersView()
+ addPratitionner()
+ clearPratitionners()
+ initialize()
+ setListener()
- fireSearch()
}
}
namespace View.component {
class View.component.ConsultationRapportVisiteView {
- date : Label
- description : Label
- drugPresentations : HBox
- pratitionner : Label
- region : Label
+ ConsultationRapportVisiteView()
+ getConsultationRapportVisiteModel()
+ onRapportVisiteChange()
+ setConsultationRapportVisiteModel()
}
}
namespace View.component {
class View.component.ConsultationRapportVisitesView {
- consultationRapportVisitesListeners : Collection<ConsultationRapportVisitesListener>
- rapportVisites : VBox
- searchSubmit : Button
+ ConsultationRapportVisitesView()
+ addConsultationRapportVisitesListener()
+ getConsultationRapportVisitesModel()
+ getRouteListener()
+ initialize()
+ onRapportVisitesChange()
+ removeConsultationRapportVisitesListener()
+ setConsultationRapportVisitesModel()
+ setRouteListener()
- fireRequestConsultationRapportVisite()
- fireSearchSubmit()
}
}
namespace View.component {
class View.component.DrugPresentationResumeView {
- drugName : Label
+ DrugPresentationResumeView()
+ setDrugName()
}
}
namespace View.component {
class View.component.DrugResumeView {
- name : Label
+ DrugResumeView()
+ setName()
}
}
namespace View.component {
class View.component.LoginView {
- gsbLogin : TextField
- listeners : Collection<LoginListener>
- password : PasswordField
- submit : Button
+ LoginView()
+ addListener()
+ initialize()
+ removeListener()
- fireSubmit()
}
}
namespace View.component {
class View.component.MainView {
{static} + consultationDrugs : int
{static} + consultationPratitionners : int
{static} + consultationRapportVisite : int
{static} + consultationRapportVisites : int
{static} + login : int
{static} + newReport : int
+ MainView()
+ display()
+ getConsulatationDrugsView()
+ getConsultationPratitionnersView()
+ getConsultationReportView()
+ getConsultationReportsView()
+ getLoginView()
+ getMenuView()
+ getNewReportView()
+ initialize()
}
}
namespace View.component {
class View.component.MenuView {
- consulter : MenuItem
- drugs : MenuItem
- newReport : MenuItem
- pratitionners : MenuItem
+ MenuView()
+ getListener()
+ initialize()
+ onConsulterClick()
+ onNewReportClick()
+ setListener()
- onDrugsClick()
- onPraticionnersClick()
}
}
namespace View.component {
class View.component.VisitorPrationnerResumeView {
- name : Label
+ PrationnerResumeView()
+ setName()
}
}
namespace View.component {
class View.component.VisitorRapportVisiteResumeView {
- note : Label
- ouvrirRapport : Button
+ RapportVisiteResumeView()
+ setNote()
+ setOnOuvrirRapport()
}
}
namespace View.component {
class View.component.FormReportView {
~ pratitionnersIdName : Hashtable<Long, String>
~ selectedDrugIds : List<Long>
- date : DatePicker
- description : TextArea
- drugs : MenuButton
- pratitionners : ComboBox<Prationner>
- submit : Button
+ SaisirRapportVisiteView()
+ addDrug()
+ addPratitionners()
+ getDate()
+ getDescription()
+ getDrugIds()
+ getListener()
+ getPrationerId()
+ initialize()
+ onSubmit()
+ setListener()
}
}
View.component.ConsultationDrugsView .up.|> Listener.ConsultationDrugsModelListener
View.component.ConsultationDrugsView .up.|> javafx.fxml.Initializable
View.component.ConsultationDrugsView -up-|> javafx.scene.layout.AnchorPane
View.component.ConsultationDrugsView o-- Listener.ConsultationDrugsViewListener : listener
View.component.ConsultationPratitionnersView .up.|> javafx.fxml.Initializable
View.component.ConsultationPratitionnersView -up-|> javafx.scene.layout.AnchorPane
View.component.ConsultationPratitionnersView o-- Listener.ConsultationPratitionnerViewListener : listener
View.component.ConsultationRapportVisiteView .up.|> Listener.ConsultationRapportVisiteModelListener
View.component.ConsultationRapportVisiteView -up-|> javafx.scene.layout.VBox
View.component.ConsultationRapportVisiteView o-- Model.ConsultationRapportVisiteModel : consultationRapportVisiteModel
View.component.ConsultationRapportVisitesView .up.|> Listener.ConsultationRapportVisitesModelListener
View.component.ConsultationRapportVisitesView .up.|> javafx.fxml.Initializable
View.component.ConsultationRapportVisitesView -up-|> javafx.scene.layout.VBox
View.component.ConsultationRapportVisitesView o-- Model.ConsultationRapportVisitesModel : consultationRapportVisitesModel
View.component.ConsultationRapportVisitesView o-- Listener.RouteListener : routeListener
View.component.DrugPresentationResumeView -up-|> javafx.scene.layout.HBox
View.component.DrugResumeView -up-|> javafx.scene.layout.AnchorPane
View.component.LoginView .up.|> javafx.fxml.Initializable
View.component.LoginView -up-|> javafx.scene.layout.VBox
View.component.MainView .up.|> javafx.fxml.Initializable
View.component.MainView -up-|> javafx.scene.layout.BorderPane
View.component.MainView o-- View.component.ConsultationDrugsView : consultationDrugsView
View.component.MainView o-- View.component.ConsultationPratitionnersView : consultationPratitionnersView
View.component.MainView o-- View.component.ConsultationRapportVisiteView : consultationReportView
View.component.MainView o-- View.component.ConsultationRapportVisitesView : consultationReportsView
View.component.MainView o-- View.component.LoginView : loginView
View.component.MainView o-- View.component.MenuView : menuView
View.component.MainView o-- View.component.FormReportView : newReportView
View.component.MenuView .up.|> javafx.fxml.Initializable
View.component.MenuView -up-|> javafx.scene.control.MenuBar
View.component.MenuView o-- Listener.MenuListener : listener
View.component.VisitorPrationnerResumeView -up-|> javafx.scene.layout.AnchorPane
View.component.VisitorRapportVisiteResumeView -up-|> javafx.scene.layout.HBox
View.component.FormReportView .up.|> javafx.fxml.Initializable
View.component.FormReportView -up-|> javafx.scene.layout.VBox
View.component.FormReportView o-- Listener.NewReportListener : listener
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
|
a4b916442f8ca1e844ff31658c7f32abb0d54811 | 4da8d3dea8d3d93a5932ab3e2f3cdce618d04396 | /chatServer.plantuml | f93d31a908e5665fb505abc34a92b9f0f9e4ba51 | [
"MIT"
] | permissive | signofthefour/chatServer2 | b761fa544c5f3972bbf305942de034c705fcd249 | b0d7b919ee7475f8e86486de89264806f4abc316 | refs/heads/master | 2022-10-14T09:55:32.795035 | 2020-06-09T22:32:40 | 2020-06-09T22:32:40 | 268,006,340 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,181 | plantuml | @startuml
title __CHATSERVER's Class Diagram__\n
namespace database {
class database.AccountManager {
}
}
namespace database {
class database.DatabaseControl {
}
}
namespace database {
class database.MysqlUser {
}
}
namespace database {
class database.User {
}
}
namespace protocol {
class protocol.Message {
}
}
namespace protocol {
namespace request {
class protocol.request.Login {
}
}
}
namespace protocol {
namespace request {
interface protocol.request.Request {
}
}
}
namespace server {
class server.ChatClientHandler {
}
}
namespace server {
class server.ChatClientInHandler {
}
}
namespace server {
class server.ChatClientOutHandler {
}
}
namespace server {
class server.ChatServer {
}
}
namespace server {
class server.DirectMessage {
}
}
namespace server {
class server.GroupChat {
}
}
namespace server {
class server.Server {
}
}
database.DatabaseControl o-- database.AccountManager : accountManager
database.DatabaseControl o-- database.MysqlUser : mysqlUser
server.ChatClientHandler o-- server.ChatClientHandler.Output : chatOut
server.ChatClientHandler o-- server.ChatClientHandler.ChatQueue : chatQueue
server.ChatClientHandler o-- server.ChatServer : chatServer
server.ChatClientInHandler .up.|> java.lang.Runnable
server.ChatClientInHandler o-- server.ChatClientHandler : chatClientHandler
server.ChatClientOutHandler .up.|> java.lang.Runnable
server.ChatClientOutHandler o-- server.ChatClientHandler : client
server.ChatClientOutHandler o-- protocol.Message : message
server.ChatServer o-- server.ChatServer.ChatQueue : chatQueue
server.DirectMessage .up.|> java.lang.Runnable
server.DirectMessage o-- server.ChatServer : chatServer
server.DirectMessage o-- protocol.Message : message
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
|
8c1bb7c480daea06abbee58de4d0e37ac423a1e8 | 7b13715b0b972ea52b88ad8097cc8cb7b41f2bb1 | /Rendu/doc/javadoc/ch/tofind/commusica/utils/Logger.Level.puml | 8ace9b35590104b309f5baa41790262aa88e6139 | [] | no_license | heig-vd-pro2017/projet | 8f6e9bb5cc75baaf809eda87b31d7de8c632f713 | db1e7ff720076eea9efe2c4fc8bcad97d80ca2f1 | refs/heads/master | 2021-01-16T23:21:13.159819 | 2017-05-29T17:32:48 | 2017-05-29T17:32:48 | 82,906,602 | 5 | 2 | null | 2017-04-02T16:05:43 | 2017-02-23T08:55:46 | Java | UTF-8 | PlantUML | false | false | 274 | puml | @startuml
enum Logger.Level {
[[Logger.Level.html]]
{static} +INFO
{static} +SEVERE
{static} +SUCCESS
{static} +WARNING
~color: Logger.ANSIColor
-Level(Logger.ANSIColor)
+toString(): String
}
@enduml
|
bf10a75fa89dcbcb56bcf07211d0f34a20904a85 | 880cacbe1934514641649ef669ae72634bde35c8 | /UML/DcPOJO.puml | fd143bf1b7a2113e590ac6723e261c97cbddb7e1 | [] | no_license | Sherif-IT/Zoo | 8a03a0fd6815130d5950d33bf3a709a73a7411ec | 2758d75792350ef265417164bbf2d6c3d022031f | refs/heads/main | 2023-03-11T20:43:25.498971 | 2021-02-16T01:45:40 | 2021-02-16T01:45:40 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 103 | puml |
@startuml
class AnimalPOJO{}
class GazellePOJO{}
AnimalPOJO o--"0:1" GazellePOJO:-gaz
@enduml |
d4020c524448f3232c6cab0855c9e9623ce0f55c | 5a010d81c1f1aac7af40aa372f47177cd0f01432 | /structure.puml | e50e2067a1ed2517093224d91ff6a6419c03656f | [
"MIT"
] | permissive | Christophe1997/seProxy | bda81a08db470a7001ce50906c9ccce5b0bbbdbd | a48ad438222f45e11b90c3b4a826982107a9199d | refs/heads/master | 2020-04-27T01:28:48.943406 | 2019-05-17T09:26:32 | 2019-05-17T09:26:32 | 173,966,852 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,759 | puml | @startuml
package seProxy.parser <<Frame>> {
class ParserWrapper {
init();
getParser();
}
}
package seProxy.rewriter <<Frame>> {
interface Rewriter {
rewrite();
}
}
package seProxy.security <<Frame>> {
package seProxy.security.cipher <<Frame>> {
interface KeyGenerable {
getBlockSize();
generateKey();
toKey();
generateIv();
}
interface SimpleCipher {
byte[] encrypt(plaintext, key);
byte[] decrypt(ciphertext, key);
}
interface IvCipher {
byte[] encrypt(plaintext, key, iv);
byte[] decrypt(ciphertext, key, iv);
}
interface OPECipher {
BigInteger encrypt(plaintext, key);
BigInteger decrypt(ciphertext, key);
BigInteger encrypt(plaintext, key, iv);
BigInteger decrypt(ciphertext, key, iv);
}
KeyGenerable <|-- SimpleCipher
KeyGenerable <|-- OPECipher
SimpleCipher <|-- IvCipher
}
interface SecurityScheme {
encrypt();
decrypt();
middleware();
}
SecurityScheme o-- seProxy.security.cipher
}
package seProxy.proxy <<Frame>> {
interface Middleware {
getColsFromTable();
getSpecificLevel();
getSpecificIv();
getSpecificKey();
adjustLevel();
initDatabase();
}
interface DataSourceManager {
executeUpdate();
getConnection();
printSQLException();
printSQLWarnings();
}
Middleware o-- DataSourceManager
}
SecurityScheme o-- Middleware
Middleware o-- seProxy.security.cipher
Rewriter o-- SecurityScheme
Rewriter o-- ParserWrapper
@enduml |
f84db6ca34e7e751882b7ca1b16f101139de3f17 | a5363088e137b966b8488c3d5bf847c29c52a25f | /exercise45/docs/exercise45UML.puml | ec027e462da498177c2488b7332b3344e81566b5 | [] | no_license | gmartin02/martin-a04 | eb8e1523bc3c257b392490e6df31d49fbbbb1dab | 9e79ed87a1affc72379c1710d250277970616014 | refs/heads/main | 2023-08-23T18:06:56.562606 | 2021-10-18T03:37:14 | 2021-10-18T03:37:14 | 414,690,502 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 444 | puml | @startuml
class Solution45 {
+List<String> fileInput = new ArrayList<>()
'holds file input
+List<String> replacedList = new ArrayList<>()
'holds altered input
-File data = new File("data/exercise45_input.txt")
'constant variable to hold the input file
+main()
+getFileData(): List<String>
+replaceUtilizeWithUsed(): List<String>
+getOutputFileName(): String
+writeToFile(String outputName)
}
@enduml |
8360303ce4a69fcb3acb9517ad9a56a20272482d | 71f991ceeedbb609fdc6461988fe0267d10e8bac | /uml/utils/JokeWheel.puml | 7f784b803d7478001b6c90f67d09a66f4c1d28ed | [] | no_license | CodyAdam/project__chatbot | 23d0ef12207fb0201258c288ee07872d957b1742 | afc0d8532f7a162d5b303b09fb41b345f4736697 | refs/heads/main | 2023-08-02T04:11:36.149644 | 2021-10-09T21:02:45 | 2021-10-09T21:02:45 | 415,371,853 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 107 | puml | @startuml
'https://plantuml.com/class-diagram
class JokeWheel {
List[Joke] list
Integer current
}
@enduml |
4e226dc5f78c481c499fbe1df59bf0d3f18dc356 | 56c20102c13a8954fc972d28603045a4f2f2087f | /src/main/java/com/liyi/design/pattern/principle/合成复用原则.puml | 6b14485e7c9c93c0ffb17e1309f42e6abcd23b06 | [] | no_license | liyigithub1114/design-pattern | 74234027be2b8e90fe5a50afca64d35e6035be1d | 3a5d9e2c96ec21c9903f34657827ade43140feec | refs/heads/master | 2022-11-21T21:29:20.902171 | 2020-07-22T03:28:02 | 2020-07-22T03:28:02 | 281,564,379 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 535 | puml | 使用 继承的方式, 使两个不相关的类 高耦合
@startuml
class A {
method1();
method2();
method3();
}
class B
B --|> A
@enduml
//使用聚合的方式
@startuml
class A{
method1();
method2();
method3();
}
class B{
A a = new A;
}
B *--> A
@enduml
//使用组合的方式
@startuml
class A{
method1();
method2();
method3();
}
class B{
A a;
setA(A a);
}
B *--> A
@enduml
//使用依赖的方式
@startuml
class A{
method1();
method2();
method3();
}
class B{
method(A a);
}
B *--> A
@enduml |
d663b9ce1b9661802757d73a7db4555a5a648160 | 6bbee52d396d1aca9dfeb24d5d4a93293e49470c | /src/main/java/com/inspiware/price/aggregator/service/service.plantuml | f94778ec8cf99b95f9834254cd23a5e71024641a | [] | no_license | rpayal/price-aggregator | 5d99dc92b87398c2f8001921e0b774eda6e4a86e | 49df131fc3a22dc35fc4d7eb11a12e0a453b1d5f | refs/heads/master | 2021-09-22T01:24:42.470662 | 2018-09-04T06:49:54 | 2018-09-04T06:49:54 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 954 | plantuml | @startuml
title __SERVICE's Class Diagram__\n
package com.inspiware.price.aggregator {
package com.inspiware.price.aggregator.service {
class PriceAggregatorService {
{static} + PRICES_BY_VENDOR_CACHE : String
{static} + PRICES_BY_INSTRUMENT_CACHE : String
{static} - log : Logger
- priceStore : Store<InstrumentPriceKey, InstrumentPrice>
- cacheManager : CacheManager
+ PriceAggregatorService()
+ findAllByVendorId()
+ findAllByInstrumentId()
+ addOrUpdate()
+ publish()
- updateVendorCache()
- updateInstrumentCache()
}
}
}
PriceAggregatorService o-- PriceServiceJMSConsumer : priceServiceJMSConsumer
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
|
f55e4539089a2a1214335e193de59f8a6d758ea0 | 00edca75e71f5ae3cc9baa7f4319a2dbd68896ad | /app/src/test/java/com/example/justy/DataFromSensors/DataFromSensors.plantuml | d98d91effa3f9cba9a30e77564bb9a9f14e5f4f1 | [] | no_license | JustynaGacek/DataFromSensors | 6f40fe50e026ae7f62c2c07cd1b93a2cf6d3d4a9 | 912cca3c62d650e3666db3376998940220de3312 | refs/heads/master | 2020-04-17T05:23:47.782690 | 2019-01-22T17:22:29 | 2019-01-22T17:22:29 | 166,276,709 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 374 | plantuml | @startuml
title __DATAFROMSENSORS's Class Diagram__\n
package com.example.justy.DataFromSensors {
class ExampleUnitTest {
+ addition_isCorrect()
}
}
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
|
aae1451a5bbfb3e632b052cb34ce701dc06d40b2 | c2b83ffbeb0748d1b283e093f0b987bdbc3d27ac | /docs/uml-class-diagrams/database/production/DatabaseGisInterfaceImplementation/DatabaseGisInterfaceImplementation.puml | 70ba220f436ef6b72685c71ef098f204d2b208b6 | [] | no_license | Slackjaw1431/csi-3370-software-project | 79666760712ee4625bea3daea48c7072e7826465 | af44ad1066695e4f9eff74eda79cebef3ad2b1af | refs/heads/main | 2023-03-23T23:03:17.404846 | 2021-03-17T18:52:02 | 2021-03-17T18:52:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 480 | puml | @startuml DatabaseGisInterfaceImplementation
package edu.oakland.production.database {
class DatabaseGisInterfaceImplementation {
- DatabaseGisManager manager
__
+ DatabaseGisInterface(DatabaseGisManager m)
.. Use Case 1 ..
+ void recieveStoreRequest(LocationDataPoint locationDataPoint)
.. Use Case 2 ..
+ void recieveModeRequest(String mode)
+ String recieveNextSatRequest(String currentSat)
}
}
@enduml
|
db557dce37e7ae335f4b9b980cf80cdb32c67821 | 618414d7666e67b9535ebd975e1de61e9c01e095 | /QLSV/app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coreui/coreui.plantuml | fc47afef5d77f10368b7b6c97eb6307cacf6e748 | [] | 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 | 9,384 | plantuml | @startuml
title __COREUI's Class Diagram__\n
package android.support.coreui {
class R {
- R()
}
}
package android.support.coreui {
class attr {
{static} + alpha : int
{static} + coordinatorLayoutStyle : int
{static} + font : int
{static} + fontProviderAuthority : int
{static} + fontProviderCerts : int
{static} + fontProviderFetchStrategy : int
{static} + fontProviderFetchTimeout : int
{static} + fontProviderPackage : int
{static} + fontProviderQuery : int
{static} + fontStyle : int
{static} + fontVariationSettings : int
{static} + fontWeight : int
{static} + keylines : int
{static} + layout_anchor : int
{static} + layout_anchorGravity : int
{static} + layout_behavior : int
{static} + layout_dodgeInsetEdges : int
{static} + layout_insetEdge : int
{static} + layout_keyline : int
{static} + statusBarBackground : int
{static} + ttcIndex : int
- attr()
}
}
package android.support.coreui {
class color {
{static} + notification_action_color_filter : int
{static} + notification_icon_bg_color : int
{static} + ripple_material_light : int
{static} + secondary_text_default_material_light : int
- color()
}
}
package android.support.coreui {
class dimen {
{static} + compat_button_inset_horizontal_material : int
{static} + compat_button_inset_vertical_material : int
{static} + compat_button_padding_horizontal_material : int
{static} + compat_button_padding_vertical_material : int
{static} + compat_control_corner_material : int
{static} + compat_notification_large_icon_max_height : int
{static} + compat_notification_large_icon_max_width : int
{static} + notification_action_icon_size : int
{static} + notification_action_text_size : int
{static} + notification_big_circle_margin : int
{static} + notification_content_margin_start : int
{static} + notification_large_icon_height : int
{static} + notification_large_icon_width : int
{static} + notification_main_column_padding_top : int
{static} + notification_media_narrow_margin : int
{static} + notification_right_icon_size : int
{static} + notification_right_side_padding_top : int
{static} + notification_small_icon_background_padding : int
{static} + notification_small_icon_size_as_large : int
{static} + notification_subtext_size : int
{static} + notification_top_pad : int
{static} + notification_top_pad_large_text : int
- dimen()
}
}
package android.support.coreui {
class drawable {
{static} + notification_action_background : int
{static} + notification_bg : int
{static} + notification_bg_low : int
{static} + notification_bg_low_normal : int
{static} + notification_bg_low_pressed : int
{static} + notification_bg_normal : int
{static} + notification_bg_normal_pressed : int
{static} + notification_icon_background : int
{static} + notification_template_icon_bg : int
{static} + notification_template_icon_low_bg : int
{static} + notification_tile_bg : int
{static} + notify_panel_notification_icon_bg : int
- drawable()
}
}
package android.support.coreui {
class id {
{static} + action_container : int
{static} + action_divider : int
{static} + action_image : int
{static} + action_text : int
{static} + actions : int
{static} + async : int
{static} + blocking : int
{static} + bottom : int
{static} + chronometer : int
{static} + end : int
{static} + forever : int
{static} + icon : int
{static} + icon_group : int
{static} + info : int
{static} + italic : int
{static} + left : int
{static} + line1 : int
{static} + line3 : int
{static} + none : int
{static} + normal : int
{static} + notification_background : int
{static} + notification_main_column : int
{static} + notification_main_column_container : int
{static} + right : int
{static} + right_icon : int
{static} + right_side : int
{static} + start : int
{static} + tag_transition_group : int
{static} + tag_unhandled_key_event_manager : int
{static} + tag_unhandled_key_listeners : int
{static} + text : int
{static} + text2 : int
{static} + time : int
{static} + title : int
{static} + top : int
- id()
}
}
package android.support.coreui {
class integer {
{static} + status_bar_notification_info_maxnum : int
- integer()
}
}
package android.support.coreui {
class layout {
{static} + notification_action : int
{static} + notification_action_tombstone : int
{static} + notification_template_custom_big : int
{static} + notification_template_icon_group : int
{static} + notification_template_part_chronometer : int
{static} + notification_template_part_time : int
- layout()
}
}
package android.support.coreui {
class string {
{static} + status_bar_notification_info_overflow : int
- string()
}
}
package android.support.coreui {
class style {
{static} + TextAppearance_Compat_Notification : int
{static} + TextAppearance_Compat_Notification_Info : int
{static} + TextAppearance_Compat_Notification_Line2 : int
{static} + TextAppearance_Compat_Notification_Time : int
{static} + TextAppearance_Compat_Notification_Title : int
{static} + Widget_Compat_NotificationActionContainer : int
{static} + Widget_Compat_NotificationActionText : int
{static} + Widget_Support_CoordinatorLayout : int
- style()
}
}
package android.support.coreui {
class styleable {
{static} + ColorStateListItem : int[]
{static} + ColorStateListItem_android_color : int
{static} + ColorStateListItem_android_alpha : int
{static} + ColorStateListItem_alpha : int
{static} + CoordinatorLayout : int[]
{static} + CoordinatorLayout_keylines : int
{static} + CoordinatorLayout_statusBarBackground : int
{static} + CoordinatorLayout_Layout : int[]
{static} + CoordinatorLayout_Layout_android_layout_gravity : int
{static} + CoordinatorLayout_Layout_layout_anchor : int
{static} + CoordinatorLayout_Layout_layout_anchorGravity : int
{static} + CoordinatorLayout_Layout_layout_behavior : int
{static} + CoordinatorLayout_Layout_layout_dodgeInsetEdges : int
{static} + CoordinatorLayout_Layout_layout_insetEdge : int
{static} + CoordinatorLayout_Layout_layout_keyline : int
{static} + FontFamily : int[]
{static} + FontFamily_fontProviderAuthority : int
{static} + FontFamily_fontProviderCerts : int
{static} + FontFamily_fontProviderFetchStrategy : int
{static} + FontFamily_fontProviderFetchTimeout : int
{static} + FontFamily_fontProviderPackage : int
{static} + FontFamily_fontProviderQuery : int
{static} + FontFamilyFont : int[]
{static} + FontFamilyFont_android_font : int
{static} + FontFamilyFont_android_fontWeight : int
{static} + FontFamilyFont_android_fontStyle : int
{static} + FontFamilyFont_android_ttcIndex : int
{static} + FontFamilyFont_android_fontVariationSettings : int
{static} + FontFamilyFont_font : int
{static} + FontFamilyFont_fontStyle : int
{static} + FontFamilyFont_fontVariationSettings : int
{static} + FontFamilyFont_fontWeight : int
{static} + FontFamilyFont_ttcIndex : int
{static} + GradientColor : int[]
{static} + GradientColor_android_startColor : int
{static} + GradientColor_android_endColor : int
{static} + GradientColor_android_type : int
{static} + GradientColor_android_centerX : int
{static} + GradientColor_android_centerY : int
{static} + GradientColor_android_gradientRadius : int
{static} + GradientColor_android_tileMode : int
{static} + GradientColor_android_centerColor : int
{static} + GradientColor_android_startX : int
{static} + GradientColor_android_startY : int
{static} + GradientColor_android_endX : int
{static} + GradientColor_android_endY : int
{static} + GradientColorItem : int[]
{static} + GradientColorItem_android_color : int
{static} + GradientColorItem_android_offset : int
- styleable()
}
}
R +-down- attr
R +-down- color
R +-down- dimen
R +-down- drawable
R +-down- id
R +-down- integer
R +-down- layout
R +-down- string
R +-down- style
R +-down- styleable
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
a3b286b9f4f2ca0b45b16f51048c674a88ff5879 | 93175f9b0959ddc29487868fdeac72b6c409d6f4 | /UML/To-do-list.puml | d383f3bf8696c24712d8b037652ff1416a361c09 | [] | no_license | goodwinalexjr/goodwin-cop-assignment4 | 74d5d0590b43bfe88e693bd56a47c8ca7bffc248 | e0475193a96daf3f30fb95720d433c5ba70e86fd | refs/heads/master | 2023-05-31T22:56:57.997429 | 2021-07-05T21:09:49 | 2021-07-05T21:09:49 | 383,222,912 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,716 | puml | @startuml
'https://plantuml.com/class-diagram
class App{
main
start
}
class toDoList{
String Title()
}
class toDoListList{
String Title()
String DueDate()
Boolean Complete()
String Description()
}
class addItem{
additem
}
class addTodoList{
addtitle
}
class export{
export
}
class import{
import
}
class editItem{
editItems
}
class editTodoList{
edittitle
}
class removeItemList{
}
class removeToDoList{
}
class FXMLController{
todolist: ListofTodolists
Itemtodolist: Listofitemsinatodolist
newButtonClickedTDL()
edidButtonClickedTDL()
deleteButtonClickedTDL()
addbuttonClicked()
removeButtonClicked()
editlistButtonClicked()
displayAllbuttonClicked()
checkboxClicked()
displayincompleteButtonClicked()
displaycompleteButtonClicked()
exportlistButtonClicked()
ExportalllistButtonClicked()
importlistsButtonClicked()
}
class TodolistAddController{
addTitleButtonClicked
}
class ListAddController{
addListButtonClicked
}
javafx.Application <|-- App
App - FXMLController
FXMLController --|> TodolistAddController
FXMLController --|> ListAddController
TodolistAddController --|> addTodoList
TodolistAddController <|-- addTodoList
ListAddController --|> addItem
ListAddController <|-- addItem
addItem --|> toDoListList
addTodoList --|> toDoList
FXMLController --|> export
FXMLController --|> import
FXMLController <|-- import
toDoListList --|> FXMLController
toDoList --|> FXMLController
editItem <|-- ListAddController
editItem --|> toDoListList
editTodoList <|-- TodolistAddController
editTodoList --|> toDoList
FXMLController --|> removeToDoList
removeToDoList --|> toDoList
removeToDoList <|-- toDoList
FXMLController --|> removeItemList
removeItemList --|> toDoListList
removeItemList <|-- toDoListList
@enduml |
356cb91eeb654f33bfe3ef2f83ff57e6bca2eb34 | 9623791303908fef9f52edc019691abebad9e719 | /src/cn/shui/order/substring_with_concatenation_of_all_words/substring_with_concatenation_of_all_words.plantuml | 9616d1698d18f52060bd2b725b6c906c2cc8661d | [] | no_license | shuile/LeetCode | 8b816b84071a5338db1161ac541437564574f96a | 4c12a838a0a895f8efcfbac09e1392c510595535 | refs/heads/master | 2023-08-17T04:53:37.617226 | 2023-08-15T16:18:46 | 2023-08-15T16:18:46 | 146,776,927 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 571 | plantuml | @startuml
title __SUBSTRING_WITH_CONCATENATION_OF_ALL_WORDS's Class Diagram__\n
namespace cn.shui.order {
namespace substring_with_concatenation_of_all_words {
class cn.shui.order.substring_with_concatenation_of_all_words.Solution {
{static} + main()
{static} - findSubstring()
{static} - findSubstring2()
}
}
}
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
|
a29c725800f727fe648822d9988cdb7ff226e61a | aebdf064115e5817e0c77e15b739eccda80d4550 | /creator/src/main/java/prototype/standard.puml | 9a8c6d35de5aac0c0cb8284444bda588b2314b36 | [] | no_license | thonnyhu/designpattern | e497fbaa44d6b8a98151f8f51f967dfae8145913 | 77dc01fd366f3dfb58aab5f0bd3e6825d6fa6301 | refs/heads/master | 2021-04-28T16:49:52.462770 | 2018-06-11T12:11:26 | 2018-06-11T12:11:26 | 122,023,078 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 427 | puml | @startuml
Client -right-> Prototype :prototype
Prototype <|-- ConcretePrototype1
Prototype <|-- ConcretePrototype2
class Client{
}
note left of Client
p = prototype -> clone()
end note
class Prototype{
+ clone()
}
class ConcretePrototype1{
+ clone()
}
note bottom of ConcretePrototype1
return copy of self
end note
class ConcretePrototype2{
+ clone()
}
note bottom of ConcretePrototype2
return copy of self
end note
@enduml |
dd44214b91591ed57b8bd0d2b1d3219e909b8785 | 4f029f90b241f8b1e4a0179d27c92be6b87c761c | /lib_design_pattern/src/main/java/com/mxdl/desigin/pattern/create/a02_builder/uml/builder.puml | 2a6c7ae40d50dcb2383300a278c79182797c0abf | [] | no_license | mxdldev/java-design-pattern | 806cdb2f4ec87d121c10db4952ed67476772ff29 | f42813ccdb2a1cfdcc790935e41747098467e7e5 | refs/heads/master | 2020-11-26T22:15:35.016854 | 2020-01-08T07:10:34 | 2020-01-08T07:10:34 | 229,215,001 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 781 | puml | @startuml
skinparam classAttributeIconSize 0
package "Builder Pattern"{
interface IPersonBuilder{
+createHeader():String
+createBody():String
+createFooter():String
}
note right:建造协议
class PersonFatBuilder
note bottom:胖子建造者
IPersonBuilder <|-.PersonFatBuilder
class PersonThinBuilder
note bottom:瘦子建造者
IPersonBuilder <|-.PersonThinBuilder
class BuilderHandler{
+createPerson(IPersonBuilder build):Person
}
note top:将一个复杂对象的创建和表示相分离,\n用相同的构建过程创建出不同的对象表示
BuilderHandler o-.>IPersonBuilder
BuilderHandler o-.>Person
class Person
note bottom:被建造的实体对象
}
@enduml
|
c76b82ee1e38b3fd87a27410d7223ae9ad0682e1 | 92e75930e1b37f5cde5009fe4c712888bca13a51 | /applications/block-consumer/images/diagrama-de-entidad-relaciones.plantuml | f468791312a9cddd80c32fa49a1bad3c01f25440 | [] | no_license | AlejandroMFe/padfed-doc | 61895a28e988e379fb9ede37e69d5c2ee3701241 | c7bff1870623475927b53bcfe7537db06c8ef8a9 | refs/heads/master | 2022-11-28T13:09:38.880411 | 2020-07-31T17:54:04 | 2020-07-31T17:54:04 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,694 | plantuml | @startuml diagrama-de-entidad-relaciones
!define primary_key(x) <u>x</u>
hide circle
hide methods
class BC_BLOCK {
primary_key(block): Integer
channel: String
peer: String
consuming_time: Date
valid_system_txs: Integer
invalid_system_txs: Integer
valid_user_txs: Integer
invalid_user_txs: Integer
}
class BC_VALID_TX {
primary_key(block): Integer
primary_key(txseq): Integer
txid: String
org_name: String
timestamp: Date
chaincode: String
function: String
}
class BC_INVALID_TX {
primary_key(block): Integer
primary_key(txseq): Integer
txid: String
org_name: String
timestamp: Date
chaincode: String
function: String
error: String
}
class BC_VALID_TX_WRITE_SET {
primary_key(block): Integer
primary_key(txseq): Integer
primary_key(item): Integer
key: String
value: String
is_delete: Char
}
class BC_INVALID_TX_SET {
primary_key(block): Integer
primary_key(txseq): Integer
primary_key(item): Integer
{field} type: Char (R | W)
key: String
value: String
version: String
{field} type: is_delete: Char (T | null)
}
BC_VALID_TX --[hidden]right> BC_INVALID_TX
BC_VALID_TX "0..n" --up> "1" BC_BLOCK : < has
BC_INVALID_TX "0..n" --up> "1" BC_BLOCK : < has
BC_INVALID_TX_SET "0..n" --up> "1" BC_INVALID_TX : < has
BC_VALID_TX_WRITE_SET "0..n" --up> "1" BC_VALID_TX : < has
note "UK(txid)" as NOTE_UK_TXID
NOTE_UK_TXID ..up> BC_VALID_TX
NOTE_UK_TXID ..up> BC_INVALID_TX
note "Index(key)" as NOTE_INDEX_KEY
NOTE_INDEX_KEY ..up> BC_VALID_TX_WRITE_SET
NOTE_INDEX_KEY ..up> BC_INVALID_TX_SET
@enduml
|
16e51574131dec97832d08bab8f8697f7250230a | f6c2c37243727f10ca1c1acc9d70aaeb040e4610 | /doc/classes/Observable.plantuml | 4035d1de2fdc2dbdf10ac5e1f53ecd0d174b2e38 | [] | no_license | Arcahub/librtk | 6078825bd3fc27cbea7942c8677f571c42716697 | 2ac876687493816fb894b5befeac86c761d2c611 | refs/heads/master | 2023-03-31T12:44:39.474022 | 2021-04-03T17:44:52 | 2021-04-03T17:44:52 | 337,531,888 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,047 | plantuml | @startuml Observable
class Observable {
+Observable(std::function<void(Subscriber<T>*)> sub)
+void subscribe(
std::function<void(T&)> onNext,
std::function<void()> onError,
std::function<void()> onComplete)
---
#void Subscription *_subscribe(Subscriber<T>* subscriber)
------
#Observable<T>* m_source
#{field} std::function<void(Subscriber<T>*)> m_suscribe
}
note left of Observable::Observable
If sub given as argument is not null
Set m_subscribe with sub
end note
note left of Observable::subscribe
Create a subscriber with callbacks passed as params
Add Subscription created from _subscribe to subscriber
Return the subscriber
end note
note left of Observable::_subscribe
If m_suscribe is set
Call m_suscribe
Return empty Subscription
If m_source is set
Call m_source.subscribe with callback
==> call subscriber.next
Return Subscription get from m_source.subscribe
Return empty Subscription
end note
@enduml |
4c1c63a555e45cf6111c59e7c87548e2360f8b5e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/DiscountedPrice.puml | 8d9190ab0ba8816828763d4c6414557abda37690 | [] | 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 | 5,780 | 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 DiscountedPrice [[DiscountedPrice.svg]] {
value: [[TypedMoney.svg TypedMoney]]
discount: [[ProductDiscountReference.svg ProductDiscountReference]]
}
interface Price [[Price.svg]] {
id: String
key: String
value: [[TypedMoney.svg TypedMoney]]
country: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
channel: [[ChannelReference.svg ChannelReference]]
validFrom: DateTime
validUntil: DateTime
discounted: [[DiscountedPrice.svg DiscountedPrice]]
tiers: [[PriceTier.svg List<PriceTier>]]
custom: [[CustomFields.svg CustomFields]]
}
interface ScopedPrice [[ScopedPrice.svg]] {
id: String
value: [[TypedMoney.svg TypedMoney]]
currentValue: [[TypedMoney.svg TypedMoney]]
country: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
channel: [[ChannelReference.svg ChannelReference]]
validFrom: DateTime
validUntil: DateTime
discounted: [[DiscountedPrice.svg DiscountedPrice]]
custom: [[CustomFields.svg CustomFields]]
}
interface ProductPriceDiscountsSetUpdatedPrice [[ProductPriceDiscountsSetUpdatedPrice.svg]] {
variantId: Integer
variantKey: String
sku: String
priceId: String
discounted: [[DiscountedPrice.svg DiscountedPrice]]
staged: Boolean
}
interface ProductPriceExternalDiscountSetMessage [[ProductPriceExternalDiscountSetMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
variantId: Integer
variantKey: String
sku: String
priceId: String
discounted: [[DiscountedPrice.svg DiscountedPrice]]
staged: Boolean
}
interface StandalonePriceDiscountSetMessage [[StandalonePriceDiscountSetMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
discounted: [[DiscountedPrice.svg DiscountedPrice]]
}
interface StandalonePriceExternalDiscountSetMessage [[StandalonePriceExternalDiscountSetMessage.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
sequenceNumber: Long
resource: [[Reference.svg Reference]]
resourceVersion: Long
type: String
resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]]
discounted: [[DiscountedPrice.svg DiscountedPrice]]
}
interface ProductPriceExternalDiscountSetMessagePayload [[ProductPriceExternalDiscountSetMessagePayload.svg]] {
type: String
variantId: Integer
variantKey: String
sku: String
priceId: String
discounted: [[DiscountedPrice.svg DiscountedPrice]]
staged: Boolean
}
interface StandalonePriceDiscountSetMessagePayload [[StandalonePriceDiscountSetMessagePayload.svg]] {
type: String
discounted: [[DiscountedPrice.svg DiscountedPrice]]
}
interface StandalonePriceExternalDiscountSetMessagePayload [[StandalonePriceExternalDiscountSetMessagePayload.svg]] {
type: String
discounted: [[DiscountedPrice.svg DiscountedPrice]]
}
interface StagedStandalonePrice [[StagedStandalonePrice.svg]] {
value: [[TypedMoney.svg TypedMoney]]
discounted: [[DiscountedPrice.svg DiscountedPrice]]
}
interface StandalonePrice [[StandalonePrice.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
key: String
sku: String
value: [[TypedMoney.svg TypedMoney]]
country: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
channel: [[ChannelReference.svg ChannelReference]]
validFrom: DateTime
validUntil: DateTime
tiers: [[PriceTier.svg List<PriceTier>]]
discounted: [[DiscountedPrice.svg DiscountedPrice]]
custom: [[CustomFields.svg CustomFields]]
staged: [[StagedStandalonePrice.svg StagedStandalonePrice]]
active: Boolean
}
DiscountedPrice --> Price #green;text:green : "discounted"
DiscountedPrice --> ScopedPrice #green;text:green : "discounted"
DiscountedPrice --> ProductPriceDiscountsSetUpdatedPrice #green;text:green : "discounted"
DiscountedPrice --> ProductPriceExternalDiscountSetMessage #green;text:green : "discounted"
DiscountedPrice --> StandalonePriceDiscountSetMessage #green;text:green : "discounted"
DiscountedPrice --> StandalonePriceExternalDiscountSetMessage #green;text:green : "discounted"
DiscountedPrice --> ProductPriceExternalDiscountSetMessagePayload #green;text:green : "discounted"
DiscountedPrice --> StandalonePriceDiscountSetMessagePayload #green;text:green : "discounted"
DiscountedPrice --> StandalonePriceExternalDiscountSetMessagePayload #green;text:green : "discounted"
DiscountedPrice --> StagedStandalonePrice #green;text:green : "discounted"
DiscountedPrice --> StandalonePrice #green;text:green : "discounted"
@enduml
|
ef6c8dffc7f844eed7d0b91da231268d1cc8dfd0 | 3a142de7a6e7b4ce7ce96bd96b03f27c6af07fef | /SVG Code Generator Implementing Memento Pattern/plantuml/Program.puml | 91785b12b7ab87bfe2155f76425b4d7c18715d32 | [] | no_license | LiamAspell/Software-Design-Patterns | 9d7fdb2b542591e882c8fae95e4f18a2515e4881 | a0ce2c77c269a8049708560307b63b5257c64f1b | refs/heads/main | 2023-02-19T10:29:54.607519 | 2021-01-24T03:24:26 | 2021-01-24T03:24:26 | 328,373,749 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,972 | puml | @startuml
class Program {
{static} Main(args:string[]) : void
+ {static} addShape(input:String, Canvas:String) : String
+ {static} randomList() : List<int>
+ {static} buildFile(o:Originator) : void
+ {static} printState(o:Originator) : void
+ {static} quitApp() : void
}
class CareTaker {
+ CareTaker()
+ addMemento(m:Memento) : void
+ getMemento(index:int) : Memento
+ undo() : Memento
+ redo() : Memento
}
class Originator {
+ Originator()
+ setArticle(article:String) : void
+ getArticle() : String
+ save() : Memento
+ restore(m:Memento) : void
}
class Memento {
+ state : string
+ Memento(state:String)
+ getState() : String
+ setState(state:String) : void
}
class Shape {
+ fill : string <<get>> <<set>>
+ stroke : string <<get>> <<set>>
+ strokeWidth : string <<get>> <<set>>
+ style(fill:string, stroke:string, strokeWidth:string) : string
}
class Rectangle {
+ X : int <<get>>
+ Y : int <<get>>
+ W : int <<get>>
+ H : int <<get>>
+ Rectangle(x:int, y:int, w:int, h:int, f:string)
+ <<override>> ToString() : string
}
class Circle {
+ X : int <<get>> <<set>>
+ Y : int <<get>> <<set>>
+ R : int <<get>> <<set>>
+ Circle(x:int, y:int, r:int, f:string)
+ <<override>> ToString() : string
}
class Ellipse {
+ xRadius : int <<get>> <<set>>
+ yRadius : int <<get>> <<set>>
+ xCentre : int <<get>> <<set>>
+ yCentre : int <<get>> <<set>>
+ Ellipse(xr:int, yr:int, xc:int, yc:int, f:string)
+ <<override>> ToString() : string
}
class Line {
+ xPos1 : int <<get>> <<set>>
+ yPos1 : int <<get>> <<set>>
+ xPos2 : int <<get>> <<set>>
+ yPos2 : int <<get>> <<set>>
+ Line(x1:int, y1:int, x2:int, y2:int, s:string)
+ <<override>> ToString() : string
}
class Polyline {
+ Polyline(Ppoints:List <int>, s:string)
+ <<override>> ToString() : string
}
class Polygon {
+ Polygon(pPoints:List <int>, s:string, f:string)
+ <<override>> ToString() : string
}
class Path {
+ input : string <<get>> <<set>>
+ Path(i:string, f:string)
+ <<override>> ToString() : string
}
class Text {
+ xPos : int <<get>> <<set>>
+ yPos : int <<get>> <<set>>
+ text : string <<get>> <<set>>
+ Text(x:int, y:int, t:string)
+ <<override>> ToString() : string
}
class "List`1"<T> {
}
Program +-- CareTaker
Program +-- Originator
Program +-- Memento
Program +-- Shape
Program +-- Rectangle
Shape <|-- Rectangle
Program +-- Circle
Shape <|-- Circle
Program +-- Ellipse
Shape <|-- Ellipse
Program +-- Line
Shape <|-- Line
Program +-- Polyline
Shape <|-- Polyline
Polyline --> "PolyLinePoints<int>" "List`1"
Program +-- Polygon
Shape <|-- Polygon
Polygon --> "PolygonPoints<int>" "List`1"
Program +-- Path
Shape <|-- Path
Program +-- Text
Shape <|-- Text
@enduml
|
1f40d05c23b03d7f31a553786221a54390b3e29a | b7e8f93eabe84cab6e07c063f1fccf5e7a6a213d | /exercise42/docs/Solution42UML.puml | 33926d8b89cf2bdbd9738de32ae5caf8583d7260 | [] | no_license | SandersBrandon/Sanders-a04 | 88c99f17179825062d61682feb1fdd8631219c9e | c917b1b8f417eb4f1a1b64757d1733afc6324d53 | refs/heads/main | 2023-08-27T20:47:18.406081 | 2021-10-18T02:16:33 | 2021-10-18T02:16:33 | 417,690,812 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 658 | puml | /*
* UCF COP3330 Fall 2021 Assignment 4 Solutions
* Copyright 2021 Brandon Sanders
*/
@startuml
class Solution42{
-input : file
-output: string
-employee: String
'this will take the input file and be able to read it
-Scanner: string
'going to take input from the docs directory as it is to pass
'along the functions
-inputFile: file
'this will take our file to be read parse it and skip over
'any "," inside the file to then print the remaining of the file
outputInfo()
}
'i think it is able to be made in only one class
'that breaks it down into a singular methods since there isnt much
'to do with the data except parse it and print
@enduml |
0fbee5e101c34b1542db68e4f7e969cf5f46feac | 4e22d261d7dcf5fe2731d77ba3cfb47c5568977c | /Documentation/Source/Breakdown/Engine/TempestEngine/SystemBase-Class.iuml | 3c38b1d51e4ca7a809c925580b2b25e9b1a04c38 | [] | 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 | 631 | iuml | namespace SystemManagement {
class SystemBase {
+Name()
+Initialize()
+StartFrame()
+Update()
+EndFrame()
+Shutdown()
+HandleMessage()
+GetState()
+GetDT()
+UpdateDT()
+SetDesiredFrameTime()
#OnInitialize()
#OnLevelLoad()
#OnStartFrame()
#OnUpdate()
#OnEndFrame()
#OnLevelUnload()
#OnPreShutdown()
#OnShutdown()
#OnHandleMessage()
#GetSystemManager()
}
}
|
ecb0fe7871a22c2947ebdb4706d2fc173d9c608c | 644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc | /docs/uml/tests/ui/MenuViewTest.puml | 74b5a18eb6824c7bd7ae5e2993f81e416b333638 | [] | no_license | tzAcee/photonized | c929a6c04bedd0304a4e427d6c2895cdf73568d3 | aa53ed7bda18959c58467fe4560dc3ff4e1ae422 | refs/heads/main | 2023-05-03T15:13:31.148910 | 2021-05-25T13:55:17 | 2021-05-25T13:55:17 | 316,536,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 191 | puml | @startuml
class MenuViewTest {
+ constructor_test() : void
+ constructor_null_test() : void
+ configure_test() : void
+ build_test() : void
+ show_test() : void
}
@enduml
|
47eb9ce8c736bf86666871307d6e1a7d64bc1080 | 3f0f1beb0020ef10c82e25f24f5ba1e6125d09e2 | /src/zhw/designpattern/builder/builderorigin.puml | 3ecb60b05ca47d8308408b6a232d473214b6064f | [] | no_license | ShepherdOutsidethefortres/JavaBase | 14995735a15d04529ea5fc487fea3aeac878a22c | f7b748ba4b808ba6bf9922718b6fa28615775fc0 | refs/heads/master | 2021-06-26T15:07:04.659964 | 2021-02-25T06:38:51 | 2021-02-25T06:38:51 | 211,585,121 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 494 | puml | @startuml
abstract class CarModel{
-sequence:ArrayList<String>
#{abstract}start():void
#{abstract}stop():void
#{abstract}alarm():void
#{abstract}engineBoom():void
+run():void
+setSequence(ArrayList<String>):void
}
class BenzModel{
#start():void
#stop():void
#alarm():void
#engineBoom():void
}
class BMWModel{
#start():void
#stop():void
#alarm():void
#engineBoom():void
}
CarModel <|-- BenzModel
CarModel <|-- BMWModel
class Client{
+{static}main(String[]):void
}
BenzModel<..Client
@enduml |
79d83b841ef0009ec3846540a90650db71159b11 | e522c7242c8e28f612333e3f2101a2bd0fa70d19 | /Assignment1/diagram.puml | 1bb45ccc68b9908b4da98055d88cd7dc96579752 | [] | no_license | Ntust-Course/Programming-Languages | 313b8552cfdb8da6f584357a273a373a05ea34cc | bcf20f4da5a43c5411ad3a2d697f6ea56a1bda8d | refs/heads/master | 2020-09-05T20:38:16.272150 | 2019-12-31T08:13:11 | 2019-12-31T08:13:11 | 220,208,289 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,069 | puml | @startuml
interface BasicAccount {
+name(): String
+balance(): double
}
interface WithdrawableAccount extends BasicAccount {
+withdraw(double amount): double
}
interface DepositableAccount extends BasicAccount {
+deposit(double amount): double
}
interface InterestableAccount extends BasicAccount {
+computeInterest(): double
}
interface FullFunctionalAccount extends WithdrawableAccount, DepositableAccount, InterestableAccount {
}
abstract class Account {
#accountName: String
#accountBalance: double
#accountInterestRate: double
#openDate: Date
#lastInterestDate: Date
+Account (String, double)
+Account (String, double, Date)
+name(): String
+balance(): double
+deposit(double): double
+withdraw(double): double
+withdraw(double, Date): double
}
class CheckingAccount extends Account implements FullFunctionalAccount {
+CheckingAccount(String, double)
+CheckingAccount(String, double, Date)
+withdraw(double, Date): double
}
class SavingAccount extends Account implements FullFunctionalAccount {
+SavingAccount(String, double)
+SavingAccount(String, double, Date)
-transactionCount: int
-lastTransactionDate: Date
-transactionFee: int
+withdraw(double, Date): double
+computeInterest(Date): double
-processTransaction(): void
-processTransaction(Date): void
-isNewMonth(): boolean
}
class CDAccount extends Account implements FullFunctionalAccount {
-duration: long
+CDAccount(String, double)
+CDAccount(String, double, Date)
+withdraw(double, Date): double
+deposit(double): double
+computeInterest(Date): double
+afterDuration(): boolean
}
class LoanAccount extends SavingAccount {
+LoanAccount(String, double)
+LoanAccount(String, double, Date)
+double withdraw(double)
+double deposit(double)
}
class Time {
{static} +day: long
{static} +month: long
{static} +year: long
}
class Year {
{static} +day: int
{static} +month: int
{static} +year: int
}
@enduml |
c49098e0e4c5abb452b6716d4821fc4550f123c8 | 58f5766244826918a3cf79312f861f76c5aa6f7d | /Documents/uml/Bindings/DataGridColumnValidationRule.puml | e4a633762d4e1cfc00c4d4760b002e45f7aa48d9 | [
"MIT"
] | permissive | BillKrat/CsvEditSharp | 3835aa9d7955a33830be47b044d3c05763c68dff | a91334a8aa1b08c4f7fe38116892b088e92d4da4 | refs/heads/master | 2022-01-28T15:31:06.719793 | 2019-07-28T11:39:25 | 2019-07-28T11:39:25 | 198,216,226 | 0 | 1 | MIT | 2019-07-22T12:10:45 | 2019-07-22T12:10:44 | null | UTF-8 | PlantUML | false | false | 279 | puml | @startuml
class DataGridColumnValidationRule {
+ DataGridColumnValidationRule(isValidate:Func<object, bool>, errorContent:object)
+ <<override>> Validate(value:object, cultureInfo:CultureInfo) : ValidationResult
}
ValidationRule <|-- DataGridColumnValidationRule
@enduml
|
4cd64f113a2105debcf8f447ce9575a1117e9870 | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/catalog/media/src/specificationModel.puml | 1353b964470e942da74ae50a2feb8f4553af58ae | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 1,835 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
shadowing true
RoundCorner 0
LineColor DarkRed
ArrowColor DarkRed
ArrowThickness 1
}
class ProductSpecification_Common {
id*: string
href: string
name*: string
description: string
lastUpdate*: date-time
lifecycleStatus* ProductSpecificationLifecycleStatus
}
class ProductSpecification {
brand: string
producNumber: string
}
class ProductSpecification_Find {
}
ProductSpecification_Common <|-- ProductSpecification_Find
ProductSpecification_Common <|-- ProductSpecification
class AttachmentValue {
attachmentId*: string
author*: string
content: string
creationDate*: string
description: string
mimeType: string
name*: string
source: MEFBuyerSellerType
url: string
}
class MEFByteSize {
ammount*: float
units*: DataSizeUnit
}
AttachmentValue *-->"0..1" MEFByteSize : size
class Note {
author*: string
date*: date-time
id*: string
source*: MEFBuyerSellerType
text*: string
}
class SchemaRefOrValue {
schema: string
schemaLocation: string
}
class ProductSpecificationRelationship {
id*: string
type*: string
minCardinality*: number
maxCardinality*: number
}
ProductSpecification *-->"0..*" AttachmentValue : attachment
ProductSpecification *-->"0..*" Note: note
ProductSpecification *-->"1..1" SchemaRefOrValue: sourceSchema
ProductSpecification *-->"0..*" ProductSpecificationRelationship: productSpecificationRelationship
enum ProductSpecificationLifecycleStatus {
pilotBeta
rejected
active
endOfSale
endOfSupport
obsolete
onHold
orderable
}
enum DataSizeUnit{
BYTES
KBYTES
MBYTES
GBYTES
TBYTES
PBYTES
EBYTES
ZBYTES
YBYTES
}
@enduml
|
aafbb943a005cc265f84ccd205d8264220c47423 | d26c6b65f2e563277985b3349ceb54d4457c0338 | /documents/PlantUmlMarkdown/diagrams/2_6.puml | d983c44168725f81ceb519fddc8b258b76487724 | [] | no_license | ddanilyuk/OBD2019 | 95711347e44e0aba188c5509a519a763ba2740b1 | d6f0ae91bf32ed6137797a3bd7b64250302e8b84 | refs/heads/master | 2020-07-27T03:57:46.754987 | 2019-11-27T09:09:31 | 2019-11-27T09:09:31 | 208,859,440 | 0 | 0 | null | 2019-10-16T09:06:21 | 2019-09-16T17:35:30 | null | UTF-8 | PlantUML | false | false | 150 | puml | @startuml
class User {
username
password
+sign_in()
}
class Group {
name
}
class Member {
roles
}
User .. Member
Group .. Member
@enduml
|
bbe5b141ff15c0fc530de93584b5d982ac804f37 | 544aa08036c71810e0fb59835a7c1b4a0200d169 | /LiJianzhong/factory-method.puml | ebb20f4d85ba45036ff41c137185800e85c1d735 | [] | no_license | likaihz/design-pattern-notes | d72710db4e0602a63b16c402fa35668b5c52ab53 | 81d31b597a36789c95f4499fbf548b2bf5bb4814 | refs/heads/main | 2023-08-28T06:09:39.408533 | 2021-09-21T06:11:07 | 2021-09-21T06:11:07 | 403,346,186 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 346 | puml | @startuml factory method
abstract Creator {
{abstract} factoryMethod()
anOperation()
}
class ConcreteCreator {
factoryMethod()
}
interface Product
class ConcreteProduct
Creator <|-- ConcreteCreator : extends
Product <|.. ConcreteProduct: implements
ConcreteProduct <-- ConcreteCreator
Product <-- Creator
hide empty members
@enduml |
e8be8e536b1772e402298a0c4a8c8f1291209521 | c45ce074df6e9c8bb54ce906f387a4ec1730b2d6 | /diagrams/design/patterns/class/creational/singleton.puml | e6f41e8896665dc42561d7273ef7108268b47a59 | [] | no_license | eromero-kreatech/clean-code | 82a4a62ae6d76985bc77e7a16f5d9890c41b652f | e5a29e0dacead4f25005e67163ffb57fbc4d2d44 | refs/heads/master | 2023-06-26T21:50:19.104747 | 2021-07-24T00:51:11 | 2021-07-24T00:51:11 | 388,963,257 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 412 | puml | @startuml SINGLETON
/' If symbols are not wanted uncomment '/
' skinparam classAttributeIconSize 0
class Singleton {
- static uniqueInstance
- singletonData
+ static instance()
+ SingletonOperation()
}
note as N1
<b><color:royalBlue>Singleton</color></b>
<b>Type:</b> Creational
Ensure a class only has one instance
and provide a global point of access to it.
end note
@enduml
|
86e6ab5e1667e5507e14bfb674c2dcd8bc4c1c04 | 66920e6aa89c3bc9a6b09209f5930563654c9d68 | /artefacts/PREVIEW.plantuml | 81f49b59252f33bbb877dc8c06a148fb3662dae8 | [] | no_license | nitaicharan/Udemy-SBHRESTIJWTS3MSQLMDB5 | ba4d8c1944fe90df318d7ac1d0c8d336f06f25b4 | 473d59b071e32e5bb7e704471f833dd7b85ef694 | refs/heads/main | 2023-01-29T16:05:10.008446 | 2020-12-07T00:16:40 | 2020-12-07T00:16:40 | 315,670,302 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 220 | plantuml | @startuml
title Udemy-SBHRESTIJWTS3MSQLMDB1
package com.course{
class CourseApplication {
{static} +void man()
}
package dominio{
class Pessoa {
- Integer id
+ string nome
}
}
}
@enduml |
ad41314c2d95ad83f6674e372d7a4b2b10812cb4 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductRemoveAssetAction.puml | fe045b26ce55ac3cd7362d91c1b0102c9ae3a57e | [] | 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 | 520 | 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 ProductRemoveAssetAction [[ProductRemoveAssetAction.svg]] extends ProductUpdateAction {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
}
interface ProductUpdateAction [[ProductUpdateAction.svg]] {
action: String
}
@enduml
|
23390ee3857f22d4c9872325b2cfd5bd2e421b71 | 1eb43701902dcb935f22e6dd12644de3ecec78ee | /src/Mastermind.domainmodel.puml | 52317835f9cbff1203db28256fbfd12e0de918c9 | [] | no_license | Master-Desarrollo-20-21/ejercicio-2-vista-publica-clases-mastermind-kodenix | 6185a2ed47f4bec7f0cafc54e29fbebe43782bbc | 07982d9a99abc54e7cc61d58fa6da9bb777b0e0e | refs/heads/main | 2023-01-02T03:02:12.285686 | 2020-10-30T08:41:23 | 2020-10-30T08:41:23 | 307,368,307 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,295 | puml | @startuml MasterMindDomainModel_v1
title MasterMind - Domain Model
class MasterMind {
+play()
+exit()
}
class Board {
+Board(Combination secretCombination)
+void setProposedCombination(ProposedCombination combination)
+Result getResult()
}
class Player
class MakerPlayer {
+SecretCombination generateSecret()
}
class BreakerPlayer {
+ProposedCombination createCombination()
}
class Combination {
+bool isEqual(Combination combination)
}
class ProposedCombination
class SecretCombination
class Result {
+boolean isWinner()
}
class WinnerResult {}
class Success {}
class Black
class White
class Position
class Color
MasterMind *--> Board
MasterMind *--> "2" Player
Board *--> SecretCombination
Board o--> ProposedCombination
Player ^-- MakerPlayer
Player ^-- BreakerPlayer
MakerPlayer --> SecretCombination
BreakerPlayer --> "10" ProposedCombination
Board o--> "0..10" Result
Combination ^-- SecretCombination
Combination ^-- ProposedCombination
Combination *--> "4" Position
Result ^-- WinnerResult
Result *--> Success
Result --> SecretCombination
WinnerResult *--> "4" Black
Position o--> Color
Success --> Color
Success ^-- Black
Success ^-- White
Color --> Red
Color --> Blue
Color --> Yellow
Color --> Green
Color --> Orange
Color --> Purple
@enduml |
bcdf2c3d4de9027412405101adaefbab1e3e9b36 | 9c9c1ec01217aed50767bdd539e976c06421a96f | /src/Model/Model.plantuml | 24632d954270bb885aa73b20a2708d2134de98e2 | [] | no_license | drewmolleur/thebattleofyavin | 93f55dbe627b107dc1c1e253deac470fd5c3f04c | 37e84725d20db9af657977d6bcbbee54b51bee66 | refs/heads/master | 2023-07-23T05:00:53.998302 | 2021-09-06T04:05:58 | 2021-09-06T04:05:58 | 403,222,885 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,030 | plantuml | @startuml
title __MODEL's Class Diagram__\n
namespace Model {
class Model.GameData {
{static} + defense : boolean
+ enemyObjects : ArrayList<GameFigure>
+ fixedObjects : ArrayList<GameFigure>
+ friendObjects : ArrayList<GameFigure>
{static} + loaded : boolean
+ clear()
+ update()
}
}
namespace Model {
abstract class Model.GameFigure {
+ done : boolean
+ hitCount : int
+ image : BufferedImage
+ location : Float
+ points : int
+ x : int
+ y : int
+ DeregisterObserver()
+ GameFigure()
+ GameFigure()
+ LoadImage()
+ NotifyObservers()
{static} + RegisterObserver()
+ collideWith()
{abstract} + getCollisionRadius()
+ getImage()
{abstract} + render()
+ setLocation()
{abstract} + update()
}
}
namespace Model {
class Model.MousePointer {
+ SIZE : int
+ MousePointer()
+ getCollisionRadius()
+ render()
+ update()
}
}
namespace Model {
class Model.Shooter {
+ BARREL_LEN : int
+ BASE_SIZE : int
{static} + UNIT_MOVE : int
+ barrelL : Float
+ barrelR : Float
+ base : Float
- HEIGHT : int
- WIDTH : int
- image : Image
+ Shooter()
+ getCollisionRadius()
+ render()
+ update()
}
}
namespace Model {
class Model.Text {
~ color : Color
~ font : Font
~ text : String
+ Text()
+ getCollisionRadius()
+ render()
+ update()
}
}
Model.MousePointer -up-|> Model.GameFigure
Model.Shooter -up-|> Model.GameFigure
Model.Text -up-|> Model.GameFigure
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
|
055097825822e9dee94173cbb50ac6b03b1a96c2 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/TestRunner/Callbacks/PlayerQuitHandler.puml | 3ee7b6a6565ca7898237ccff2e7dbd726dce6ffa | [] | 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 | 322 | puml | @startuml
class PlayerQuitHandler {
+ Start() : void
+ RunStarted(testsToRun:ITest) : void
+ RunFinished(testResults:ITestResult) : void
+ TestStarted(test:ITest) : void
+ TestFinished(result:ITestResult) : void
}
MonoBehaviour <|-- PlayerQuitHandler
ITestRunnerListener <|-- PlayerQuitHandler
@enduml
|
749431ab08d90d5943854859fc5879b395a8d04c | 2d233a502e90695894217ded43afcbec9421d34a | /phase2/src/main/java/model/exceptions/exceptions.plantuml | e0434e453563b934b082774bcdebdb27bd7dee4a | [] | no_license | kexinlin/CSC207-Software-Design | b9d51521481d6e8d9060b7d2febd2af88965b4f4 | 503e3e1b77a022e0804d714fefe79740da4fa4d9 | refs/heads/master | 2021-07-06T12:14:13.445225 | 2019-04-03T19:22:35 | 2019-04-03T19:22:35 | 188,863,831 | 0 | 0 | null | 2020-10-13T13:29:12 | 2019-05-27T14:59:35 | Java | UTF-8 | PlantUML | false | false | 991 | plantuml | @startuml
title __EXCEPTIONS's Class Diagram__\n
package model {
package model.exceptions {
class AccountNotExistException {
+ AccountNotExistException()
}
}
}
package model {
package model.exceptions {
class InsufficientCashException {
+ InsufficientCashException()
}
}
}
package model {
package model.exceptions {
class InvalidOperationException {
+ InvalidOperationException()
}
}
}
package model {
package model.exceptions {
class NoEnoughMoneyException {
+ NoEnoughMoneyException()
}
}
}
package model {
package model.exceptions {
class NoTransactionException {
+ NoTransactionException()
}
}
}
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
|
489ea0d8bd07c786459b5a1b406d97049bbb5955 | 1fef2f0f0ad13aebb3d3f732d0cae8867ee8e87c | /plantuml/Microwave.Classes/Interfaces/ICookController.puml | a495063967d89f42a717c5e8ae67a06929755050 | [] | no_license | eengstroem/MicrowaveOven | b9711c314f053f00f9208cae69085d7bdf0ba3d4 | ac721f24f0025f5e10f50d4d58c4a7ad30f9fbd2 | refs/heads/master | 2023-04-25T09:55:42.513911 | 2021-05-24T16:45:23 | 2021-05-24T16:45:23 | 363,380,008 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 111 | puml | @startuml
interface ICookController {
StartCooking(power:int, time:int) : void
Stop() : void
}
@enduml
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.