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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b01318575ef3913d5eb9eb4a6b9bd55512cc6475 | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/crm03_01/email_sms_edition/i130616/contact_extension_uc_classes_analysis_crm_03_01.puml | f3bd479ef55d30a551212d233ccfc5c1fa56f0ce | [] | no_license | 1130348/Confusao | 62e06a3428e4455807b6b247c52d9f94b95fa2c1 | 4fa082ace786a61c0868e6ff8f08ac2497fbabd3 | refs/heads/master | 2020-03-25T00:25:42.003519 | 2015-06-26T14:16:24 | 2015-06-26T14:16:24 | 143,185,136 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,699 | puml | @startuml doc-files/contact_extension_uc_classes_analysis_crm_03_01.png
class "<<analysis>> Persistence" as Persistence{
+getRepositoryFactory()
}
interface "<<analysis>> RepositoryFactory" as RepositoryFactory{
+newInstance()
}
class "<<analysis>> ContactsRepository" as ContactsRepository{
+update(contact)
}
class "<<analysis>> List<Email>" as emails{
}
class "<<analysis>> PhoneNumber" as number{
-String text
+validate()
}
class "<<analysis>> Email" as email{
-String text
+validate()
}
class "<<analysis>> Contact" as Contact{
-PhoneNumber MobileNumber
-PhoneNumber WorkMobileNumber
-PhoneNumber WorkNumber
-PhoneNumber HomeNumber
-List<Email> EmailList
+newPhoneNumber(text)
+addMobileNumber(number)
+addWorkMobileNumber(number)
+addHomeNumber(number)
+addWorkNumber(number)
+addEmail(email)
+newEmail(text)
+setPrimaryEmail(email)
}
class "<<analysis>> ContactController" as ContactController{
+addMobileNumber(contact,newNumber)
+addWorkNumber(contact,newNumber)
+addHomeNumber(contact,newNumber)
+addWorkMobileNumber(contact,newNumber)
+newEmail(Contact,text)
+editEmail(Contact,email,text)
+removeEmail(contact,email)
+setPrimaryEMail(contact,email)
}
email <|-- emails
emails <|-- Contact
number <|-- Contact
RepositoryFactory <|-- Persistence
ContactsRepository <|-- RepositoryFactory
ContactsRepository <|-- ContactController
Contact <|-- ContactController
@enduml
|
33eaf5e3883887dfe3d18d30c06e68e4ef587e35 | a64a3341f139e972d48cb10a4fffb724f8b741a4 | /cloudAndroid/virtualapp/prife/VAHook.puml | 6b1349f3093918a10e4a600f1988c7c3703fe15f | [
"Unlicense"
] | permissive | xusx1024/lowpoorpoor | a82dcf9521871485c281654c0fe90023d4eb13fe | c9ffbba9254549220583c3949b4c0ad0b68c2044 | refs/heads/master | 2023-01-07T15:27:01.970178 | 2020-11-11T03:40:55 | 2020-11-11T03:40:55 | 262,482,105 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,546 | puml | @startuml
interface IBinder
abstract class Hook {
getName()
beforeHook
onHook
afterHook
isEnable
}
interface IHookObject {
void addHook(Hook hook);
removeHook(hookName);
getHook(name);
getProxyObject();
}
class HookObject {
Map<String, Hook> mHookMaps;
mBaseObject;
mProxyObject;
}
class PatchObject {
hookObject
}
class ActivityManagerPatch {
}
interface Injectable {
inject()
isEnvBad()
}
class IInterface {
IBinder asBinder();
}
class IActivityManager {
startActivity()
broadcastIntent()
}
IHookObject <|-- HookObject
HookObject <|-- PatchObject
Injectable <|-- PatchObject
Hook <|-- StartActivity
Hook <|-- BroadcastIntent
IHookObject *-- IInterface
HookObject *-- Hook
ActivityManagerPatch *-- StartActivity
ActivityManagerPatch *-- BroadcastIntent
IBinder <|-- HookBinder
IHookObject <|-- HookBinder
IInterface <|-- IActivityManager
PatchObject <|-- ActivityManagerPatch
class PatchManager {
Map<Class, Injectable> mPatchMaps;
init()
injectAll()
addAllPatches()
addPatch()
addAllPatches()
}
PatchManager *-- ActivityManagerPatch
note top of Hook
该类是对方法的hook,每个Hook对象都对应于一个方法,
如IActivityManager.startActivity
endnote
note top of HookObject
该类对应于一个被hook的类,所有内部都代理了IInterface的某个具体子类,
该类中有一张表,存储了每个被hook的方法的Hook对象.
该类中对接口类使用
Proxy.newProxyInstance
InvocationHandler
endnote
@enduml |
73d0c24a9359fa7f0f39961cc742b48b004bc2cc | 1f5a6d8f6827e4add92c2154e20310793d32f549 | /OOP教育訓練計畫/9/01.Observer/src/ES2015-CascadingComboBox/diagrams/v4/ClassDiagram4-6.puml | cbf295d4ad1d816cd257af13306ca3969053ef55 | [] | no_license | YenCheChangGoogle/YccSenaoOOP | 8e9c2b02ded12b64e5e7a7d26faed0f593ee0fce | 79e025ace78e966d07a59b8896c68040fe74ab86 | refs/heads/master | 2021-09-06T16:44:44.578700 | 2018-02-08T16:35:22 | 2018-02-08T16:35:22 | 107,415,206 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 858 | puml | @startuml
skinparam defaultFontName "Fira Code"
skinparam class {
FontStyle bold
FontSize 12
}
scale 800*800
interface IObserver{
+update()
}
interface ISubject{
+registerObserver()
+notifyObservers()
}
class Button{
+caption
+update()
}
class ComboBox{
-createOptionCallback
-data
-defaultOptions
-domObject
-itemSelectedCallback
-observers
#clear()
#onItemSelected()
+notifyObservers()
+registerObserver()
+selectedIndex
+setData()
-bindEvents()
-createOptions()
-fillOptions()
}
class CascadingComboBox{
-children
#onItemSelected()
+attachChild()
+clear()
+clearChildren()
+setData()
+updateChildren()
}
IObserver <|-down- Button
ISubject <|-down- ComboBox
ComboBox <|-down- CascadingComboBox
ISubject .right.> IObserver
@enduml |
56f1fd409ccd81f93299f574fd3f12b4382a834d | 943f050d79c80acace58a223f2ae664c6dacd133 | /phase2-group_0321/src/files/controller.puml | 7997e60ecfd77737665fbe84d593a88484d1f940 | [] | no_license | juliacwiek/ATM_Simulation | 04aaf59d16074868a32cd8f964945a42c6f4d3b2 | 1ea677d43b6820b74be0b2e2894d617ffb951518 | refs/heads/master | 2020-06-19T14:53:11.155046 | 2019-07-14T03:08:18 | 2019-07-14T03:08:18 | 196,752,085 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 15,328 | puml | @startuml
class AddInterestController
class AtmMoneyController
class BankAdvisorController
class BankCommonComponents
class BankManagerController
class CommonComponents
class CustomerAccountsOverviewController
class CustomerCommonComponents
class CustomerController
class DepositWithdrawalController
class ExchangeConverter
class JoinAccountController
class LoginController
class LookupCustomersController
class MyAppointmentsController
class NewAccountRequestController
class NewBankPersonController
class NewCustomerController
class ProcessNewAccountRequestController
class RootLayoutController
class TransferController
class TransferToOtherPayBillController
class UndoTransactionController
class MainApp
CommonComponents <|-up- CustomerCommonComponents
CommonComponents <|-down- BankCommonComponents
CommonComponents <|-left- LoginController
CommonComponents <|-right- NewCustomerController
CommonComponents <|-right- RootLayoutController
BankCommonComponents <|-left- BankAdvisorController
BankCommonComponents <|-left- AddInterestController
BankCommonComponents <|-left- AtmMoneyController
BankCommonComponents <|-right- JoinAccountController
BankCommonComponents <|-right- NewBankPersonController
BankCommonComponents <|-right- BankManagerController
BankCommonComponents <|-- LookupCustomersController
BankCommonComponents <|-- MyAppointmentsController
BankCommonComponents <|-- ProcessNewAccountRequestController
BankCommonComponents <|-- UndoTransactionController
CustomerAccountsOverviewController --|> CustomerCommonComponents
CustomerController -right-|> CustomerCommonComponents
DepositWithdrawalController --|> CustomerCommonComponents
TransferToOtherPayBillController -left-|> CustomerCommonComponents
NewAccountRequestController -left-|> CustomerCommonComponents
TransferController --|> CustomerCommonComponents
DepositWithdrawalController -- ExchangeConverter
class AddInterestController {
-messageLabel: Label
+AddInterestController()
-handleAddInterest(): void
-handleClose(): void
+setInitialMessageLabel(): void
-savingAccountTotal(): BigDecimal
}
class AtmMoneyController {
-billOf5Field: TextField
-billOf10Field: TextField
-billOf20Field: TextField
-billOf50Field: TextField
-billOf5USDField: TextField
-billOf10USDField: TextField
-billOf20USDField: TextField
-billOf50USDField: TextField
-initialize(): void
-handleAddMoney(): void
-handleCancel(): void
-isInputValid(): boolean
}
class BankAdvisorController {
-handleViewMyAppointment(): void
-handleExit(): void
-showAppointmentDialog(): void
}
class BankCommonComponents {
#bankPerson: BankPerson
#setBankPerson(BankPerson bankPerson): void
-atmMoney(): String
#showAddMoneyDialog(): void
#showMakeJointAccountDialog(): void
#handleViewATMBalance(): void
#handleAddMoneyToATM(): void
#handleProcessDepositFile(): void
#handleMakeJointAccount(): void
#handleMyAccountsOverview(): void
#handleLookupCustomers(): void
}
class BankManagerController {
-handleCreateNewCustomer(): void
-handleCreateNewBankPerson(): void
-handleProcessNewAccountRequest(): void
-handleAddInterestToSavings(): void
-handleUndoMostRecentTransaction(): void
-handleUndoParticularTransaction(): void
-handleExit(): void
-showProcessNewAccountRequestDialog(): void
-showUndoTransactionDialog(): void
-showAddInterestDialog(): void
}
class CommonComponents {
#mainApp: MainApp
#dialogStage: Stage
+setMainApp(MainApp mainApp): void
+setDialogStage(dialogStage: Stage): void
#showAlert(title: String, headerText: String, message: String, alertType: Alert.AlertType): void
+{static}isNumeric(str: String): boolean
+{static}isDouble(str: String): boolean
}
class CustomerAccountsOverviewController {
-accountTable: TableView<AccountForFX>
-accountNumberColumn: TableColumn<AccountForFX, Integer>
-accountTypeColumn: TableColumn<AccountForFX, String>
-balanceColumn: TableColumn<AccountForFX, BigDecimal>
-accountOpenDateColumn: TableColumn<AccountForFX, LocalDateTime>
-primaryColumn: TableColumn<AccountForFX, Boolean>
-jointColumn: TableColumn<AccountForFX, Boolean>
-netTotalLabel: Label
-mostRecentPromptLabel: Label
-secondNumberPromptLabel: Label-
-trxIdLabel: Label
-trxTypeLabel: Label
-trxAmountLabel: Label
-trxDateTimeLabel: Label
-secondNumberLabel: Label
-undoableLabel: Label
-isReversingEntryLabel: Label
-accounts: ObservableList<AccountForFX>;
+CustomerAccountsOverviewController()
-initialize(): void
+setAccountTable(): void
-showMostRecentTrxDetails(accountForFX: AccountForFX): void
-setSecondNumberPrompt(trx: Transaction): void
-resetMostRecentTrxDetails(): void
+setFirstEntry(): void
-handleClose(): void
}
class CustomerCommonComponents {
-customer: Customer
+setCustomer(customer: Customer): void
#canTransferOutMoney(account: Account, amountField: TextField): boolean
}
class CustomerController {
-handleRequestNewAccount(): void
-handleDeposit(): void
-handleWithdraw(): void
-handleTransferIn(): void
-handleTransferOut(): void
-handleTransferToOther(): void
-handlePayBill(): void
-handleAccountsOverview(): void
-handleExit(); void
-showNewAccountRequestDialog(): void
-showDepositWithdrawalDialog(isDeposit: boolean): void
-showTransferDialog(isTransferIn: boolean): void
-showTransferToOtherPayBillDialog(isTransferToOther: boolean): void
}
class DepositWithdrawalController {
-amountField: TextField
-currencyField: TextField
-accountTable: TableView<AccountForFX>
-accountNumberColumn: TableColumn<AccountForFX, Integer>
-accountTypeColumn: TableColumn<AccountForFX, String>
-balanceColumn: TableColumn<AccountForFX, BigDecimal>
-accountOpenDateColumn: TableColumn<AccountForFX, LocalDateTime>
-primaryColumn: TableColumn<AccountForFX, Boolean>
-jointColumn: TableColumn<AccountForFX, Boolean>
-amountPromptLabel: Label
-accountPromptLabel: Label
-currencyPromptLabel: Label
-doButton: Button
-accounts: ObservableList<AccountForFX>
-selectedAccount: AccountForFX
-isDeposit: boolean
+DepositWithdrawalController()
-initialize(): void
+setAccountTable(): void
+setControlNames(isDeposit: boolean): void
-handleDepositWithdraw(): void
-handleCancel(): void
-isInputValid(): boolean
-doDepositWithdrawal(isDeposit: boolean): void
-showResult(successful: boolean, account: Account, currency: String): void
-isWithdrawable(withdraw: Withdrawal): boolean
}
class ExchangeConverter {
-{static}CADtoUSD: int
-{static}USDtoCAD: int
+{static}ExchangeRate(convertFrom: String, convertTo: String): double
-{static}randomNumberGenerator(): double
}
class JoinAccountController {
-accountTable: TableView<AccountForFX>
-accountNumberColumn: TableColumn<AccountForFX, Integer>
-accountTypeColumn: TableColumn<AccountForFX, String>
-balanceColumn: TableColumn<AccountForFX, BigDecimal>
-accountOpenDateColumn: TableColumn<AccountForFX, LocalDateTime>
-primaryColumn: TableColumn<AccountForFX, Boolean>
-jointColumn: TableColumn<AccountForFX, Boolean>
-secondNumberField: TextField
-accounts: ObservableList<AccountForFX>
-selectedAccount: AccountForFX
+JoinAccountController()
-initialize(): void
+setAccountTable(): void
-handleMakJoint(): void
-handleCancel(): void
-isInputValid(): boolean
-makeJoin(): void
-showResult(successful: boolean, accountForFX: AccountForFX): void
}
class LoginController {
-userNameField: TextField
-passwordField: TextField
-handleCustomerLogin(): void
-handleBankLogin(): void
-handleCancel(): void
-isInputValid(); boolean
-showBankManagerView(bankManager: BankManager): void
-showBankAdvisorView(bankAdvisor: BankAdvisor): void
-showCustomerView(customer: Customer): void
}
class LookupCustomersController {
-accountTable: TableView<AccountForFX>
-accountNumberColumn: TableColumn<AccountForFX, Integer>
-accountTypeColumn: TableColumn<AccountForFX, String>
-balanceColumn: TableColumn<AccountForFX, BigDecimal>
-accountOpenDateColumn: TableColumn<AccountForFX, LocalDateTime>
-primaryColumn: TableColumn<AccountForFX, Boolean>
-jointColumn: TableColumn<AccountForFX, Boolean>
-netTotalLabel: Label
-mostRecentPromptLabel: Label
-secondNumberPromptLabel: Label
-trxIdLabel: Label
-trxTypeLabel: Label
-trxAmountLabel: Label
-trxDateTimeLabel: Label
-secondNumberLabel: Label
-undoableLabel: Label
-isReversingEntryLabel: Label
-customerComboBox: ComboBox<Integer>
-accounts: ObservableList<AccountForFX>
+LookupCustomersController()
-initialize(): void
+setComboBox(): void
+setAccountTable(customerNumber: int): void
-showMostRecentTrxDetails(accountForFX: AccountForFX): void
-setSecondNumberPrompt(trx: Transaction): void
-resetMostRecentTrxDetails(): void
+setFirstEntry(): void
-handleClose(): void
}
class MyAppointmentsController {
-appointmentTable: TableView<Appointment>
-customerNumberColumn: TableColumn<Appointment, Integer>
-requestedOnColumn: TableColumn<Appointment, LocalDateTime>
-subjectColumn: TableColumn<Appointment, String>
-customerNumberField: TextField
-subjectField: TextField
-appointments: ObservableList<Appointment>
+MyAppointmentsController()
-initialize(): void
+setAppointmentTable(): void
-handleMakeAppointment(): void
-handleCancel(): void
-isInputValid(): boolean
-makeNewAppointment(): void
}
class NewAccountRequestController {
-chequingBox: CheckBox
-savingBox: CheckBox
-powerSavingBox: CheckBox
-creditCardBox: CheckBox
-lineOfCreditBox: CheckBox
-handleSendRequest(): void
-handleCancel(): void
-isInputValid(): boolean
}
class NewBankPersonController {
-userNameField: TextField
-passwordField: TextField
-sinNumberdField: TextField
-roleField: ChoiceBox<String>
-handleCreate(): void
-handleCancel(): void
-isInputValid(): boolean
}
class NewCustomerController {
-userNameField: TextField
-passwordField: TextField
-sinNumberdField: TextField
-handleCreate(): void
-handleCancel(): void
-isInputValid(): boolean
}
class ProcessNewAccountRequestController {
-accountRequestTable: TableView<NewAccountRequestForFX>
-customerNumberColumn: TableColumn<NewAccountRequestForFX, Integer>
-accountTypeColumn: TableColumn<NewAccountRequestForFX, String>
-requestDateTimeColumn: TableColumn<NewAccountRequestForFX, LocalDateTime>
-accountRequests: ObservableList<NewAccountRequestForFX>
+ProcessNewAccountRequestController()
-initialize(): void
+setAccountRequestsTable(): void
-handleApprove(): void
-handleDecline(): void
-handleClose(): void
-isInputValid(): boolean
}
class RootLayoutController {
-handleHelpContactUs(): void
}
class TransferController {
-amountField: TextField
-fromAccountTable: TableView<AccountForFX>
-fromAccountNumberColumn: TableColumn<AccountForFX, Integer>
-fromAccountTypeColumn: TableColumn<AccountForFX, String>
-fromBalanceColumn: TableColumn<AccountForFX, BigDecimal>
-fromAccountOpenDateColumn: TableColumn<AccountForFX, LocalDateTime>
-fromPrimaryColumn: TableColumn<AccountForFX, Boolean>
-fromJointColumn: TableColumn<AccountForFX, Boolean>
-toAccountTable: TableView<AccountForFX>
-toAccountNumberColumn: TableColumn<AccountForFX, Integer>
-toAccountTypeColumn: TableColumn<AccountForFX, String>
-toBalanceColumn: TableColumn<AccountForFX, BigDecimal>
-toAccountOpenDateColumn: TableColumn<AccountForFX, LocalDateTime>
-toPrimaryColumn: TableColumn<AccountForFX, Boolean>
-toJointColumn: TableColumn<AccountForFX, Boolean>
-doTransfer: Button
-fromAccounts: ObservableList<AccountForFX>
-toAccounts: ObservableList<AccountForFX>
-selectedFromAccount: AccountForFX
-selectedToAccount: AccountForFX
-isTransferIn: boolean
+TransferController()
-initialize(): void
-initializeFromTable(): void
-initializeToTable(): void
+setAccountTables(): void
+setControlNames(isTransferIn: boolean): void
-handleTransfer(): void
-handleCancel(): void
-isInputValid(): boolean
-notSameAccount(): boolean
-doTransfer(isTransferIn: boolean): void
-showResult(successful: boolean, fromAccount: Account, toAccount: Account): void
}
class TransferToOtherPayBillController {
-amountField: TextField
-fromAccountTable: TableView<AccountForFX>
-fromAccountNumberColumn: TableColumn<AccountForFX, Integer>
-fromAccountTypeColumn: TableColumn<AccountForFX, String>
-fromBalanceColumn: TableColumn<AccountForFX, BigDecimal>
-fromAccountOpenDateColumn: TableColumn<AccountForFX, LocalDateTime>
-fromPrimaryColumn: TableColumn<AccountForFX, Boolean>
-fromJointColumn: TableColumn<AccountForFX, Boolean>
-fromAccountPromptLabel: Label
-toPromptLabel: Label
-secondNumberField: TextField
-doButton: Button
-fromAccounts: ObservableList<AccountForFX>
-selectedFromAccount: AccountForFX
-isTransferToOther: boolean
+TransferToOtherPayBillController()
-initialize(): void
+setAccountTable(): void
+setControlNames(isTransferToOther: boolean): void
-handleTransferOutOtherPayBill(): void
-handleCancel(): void
-isInputValid(): boolean
-doTransferOutOtherPayBill(isTransferToOther: boolean): void
-showResult(successful: boolean, fromAccount: Account)
}
class UndoTransactionController {
-trxTable: TableView<TransactionForFX>
-trxIDColumn: TableColumn<TransactionForFX, Integer>
-customerNumberColumn: TableColumn<TransactionForFX, Integer>
-accountNumberColumn: TableColumn<TransactionForFX, Integer>
-trxAmountColumn: TableColumn<TransactionForFX, BigDecimal>
-trxTypeColumn: TableColumn<TransactionForFX, String>
-trxDateTimeColumn: TableColumn<TransactionForFX, LocalDateTime>
-secondNumberColumn: TableColumn<TransactionForFX, Integer>
-undoableColumn: TableColumn<TransactionForFX, Boolean>
-isReversingEntryColumn: TableColumn<TransactionForFX, Boolean>
-transactions: ObservableList<TransactionForFX>
+UndoTransactionController()
-initialize(): void
+setTrxTable(): void
-handleUndoTransaction(): void
-transactionForFXFromTrx(trx: Transaction): TransactionForFX
-handleCancel(): void
-isInputValid(): boolean
}
class MainApp {
-{static}theATM: ATM
-{static}theBank: Bank
-primaryStage: Stage
-rootLayout: BorderPane
+MainApp()
+start(primaryStage: Stage): void
-initRootLayout(): void
+showLoginView(): void
+showNewCustomerDialog(): void
+getPrimaryStage(): Stage
+getBank(): Bank
+setBank(bank: Bank): void
+getRootLayout(): BorderPane
+{static}main(args: String[]): void
+showAccountsOverviewDialog(customer: Customer): void
+showNewBankPersonDialog(): void
}
@enduml |
dbe1121f72638d24f1084b58fff2fbc14ad486e2 | 6558255fb4c77f2522ebc21fd7101b377a999c14 | /doc/classdiagram.puml | 75928d3ac18e3ff9ea1bfa1cd593acb8ce75e2af | [
"MIT"
] | permissive | JoernT/Fore | 7350bbab757fe6bac1f435f75c32372a06765e3c | 843123286f8b88fe81ce47ced1122775e5e05bf6 | refs/heads/dev | 2023-03-04T23:27:04.650074 | 2021-03-12T15:34:38 | 2021-03-12T15:34:38 | 295,987,333 | 2 | 2 | MIT | 2023-03-03T03:27:02 | 2020-09-16T09:33:42 | JavaScript | UTF-8 | PlantUML | false | false | 1,722 | puml | @startuml
class XfForm {
init()
refresh()
}
class ModelItem{
node
getValue
setValue
readonly
required
relevant
valid
type
}
class ForeElement{
model
abstract evalInContext()
isBound()
isNotBound()
_inScopeContext()
}
class BoundElement{
ref
evalInContext()
init(model)
getBindingExpr()
getModelItem()
}
ForeElement <|-- BoundElement
package "model" #DDDDDD {
class XfModel{
bindingMap[]
rebuild()
recalculate()
revalidate()
registerBinding()
}
ForeElement <-- XfModel
class XfInstance{
getInstanceData()
getDefaultContext()
}
ForeElement <-- XfInstance
class XfBind
class XfSubmission
}
package "view" #DDDDDD{
class UIElement{
refresh()
}
abstract class AbstractControl{
getValue()
}
class XfSwitch #lightgrey
class XfSelect1 #lightgrey
class XfSelect #lightgrey
BoundElement <|-- AbstractControl
AbstractControl <|-- XfInput
AbstractControl <|-- XfOutput
AbstractControl <|-- XfButton
BoundElement <|-- XfRepeat
BoundElement <|-- XfRepeatitem
BoundElement <|-- XfGroup
BoundElement <|-- XfSwitch
AbstractControl <|-- XfSelect
AbstractControl <|-- XfSelect1
}
package "controller" #DDDDDD{
class XfAction{
needsRebuild
needsRecalculate
needsRevalidate
needsRefresh
execute()
actionPerformed()
}
XfAction <|-- XfDelete
XfAction <|-- XfAppend
XfAction <|-- XfInsert
XfAction <|-- XfSetvalue
}
BoundElement <|-- XfAction
ForeElement <|-- XfBind
BoundElement <|-- XfSubmission
@enduml
|
31abae37c9e093acfb356a46ff80c3b18cc879bb | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/patterns/template-method-pattern.puml | 164d7851749593a0fd73376f099ea899b48a522c | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 202 | puml | @startuml
abstract class Template {
action();
step1();
step2();
step3();
}
class ConcreteClass1
class ConcreteClass2
Template <|-- ConcreteClass1
Template <|-- ConcreteClass2
@enduml |
3910ba47bf78c0b48c6ba090179bff5528835fd7 | 618414d7666e67b9535ebd975e1de61e9c01e095 | /QLSV/app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coordinatorlayout/coordinatorlayout.plantuml | b3e381a6e2de0035f42558d0c6e5fb628afa2289 | [] | 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,516 | plantuml | @startuml
title __COORDINATORLAYOUT's Class Diagram__\n
package android.support.coordinatorlayout {
class R {
- R()
}
}
package android.support.coordinatorlayout {
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.coordinatorlayout {
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.coordinatorlayout {
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.coordinatorlayout {
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.coordinatorlayout {
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.coordinatorlayout {
class integer {
{static} + status_bar_notification_info_maxnum : int
- integer()
}
}
package android.support.coordinatorlayout {
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.coordinatorlayout {
class string {
{static} + status_bar_notification_info_overflow : int
- string()
}
}
package android.support.coordinatorlayout {
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.coordinatorlayout {
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
|
bf0a720c07f6eef48b9f409662584544d74bf3c8 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/PaymentState.puml | 1f9f8c9633d380cf52b1769d15cdf57db2cf450e | [] | 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 | 6,752 | puml | @startuml
hide methods
enum PaymentState {
BALANCE_DUE
FAILED
PENDING
CREDIT_OWED
PAID
}
interface OrderPaymentStateChangedMessage [[OrderPaymentStateChangedMessage.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]]
paymentState: [[PaymentState.svg PaymentState]]
oldPaymentState: [[PaymentState.svg PaymentState]]
}
interface OrderPaymentStateChangedMessagePayload [[OrderPaymentStateChangedMessagePayload.svg]] {
type: String
paymentState: [[PaymentState.svg PaymentState]]
oldPaymentState: [[PaymentState.svg PaymentState]]
}
interface StagedOrderChangePaymentStateAction [[StagedOrderChangePaymentStateAction.svg]] {
action: String
paymentState: [[PaymentState.svg PaymentState]]
}
interface Order [[Order.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
orderNumber: String
purchaseOrderNumber: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupReference.svg CustomerGroupReference]]
anonymousId: String
businessUnit: [[BusinessUnitKeyReference.svg BusinessUnitKeyReference]]
store: [[StoreKeyReference.svg StoreKeyReference]]
lineItems: [[LineItem.svg List<LineItem>]]
customLineItems: [[CustomLineItem.svg List<CustomLineItem>]]
totalPrice: [[TypedMoney.svg TypedMoney]]
taxedPrice: [[TaxedPrice.svg TaxedPrice]]
taxedShippingPrice: [[TaxedPrice.svg TaxedPrice]]
taxMode: [[TaxMode.svg TaxMode]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[Address.svg Address]]
shippingAddress: [[Address.svg Address]]
shippingMode: [[ShippingMode.svg ShippingMode]]
shippingKey: String
shippingInfo: [[ShippingInfo.svg ShippingInfo]]
shippingRateInput: [[ShippingRateInput.svg ShippingRateInput]]
shippingCustomFields: [[CustomFields.svg CustomFields]]
shipping: [[Shipping.svg List<Shipping>]]
itemShippingAddresses: [[Address.svg List<Address>]]
discountCodes: [[DiscountCodeInfo.svg List<DiscountCodeInfo>]]
directDiscounts: [[DirectDiscount.svg List<DirectDiscount>]]
refusedGifts: [[CartDiscountReference.svg List<CartDiscountReference>]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
country: String
locale: String
origin: [[CartOrigin.svg CartOrigin]]
cart: [[CartReference.svg CartReference]]
quote: [[QuoteReference.svg QuoteReference]]
orderState: [[OrderState.svg OrderState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
paymentState: [[PaymentState.svg PaymentState]]
state: [[StateReference.svg StateReference]]
syncInfo: [[SyncInfo.svg List<SyncInfo>]]
returnInfo: [[ReturnInfo.svg List<ReturnInfo>]]
lastMessageSequenceNumber: Long
custom: [[CustomFields.svg CustomFields]]
completedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
}
interface OrderFromCartDraft [[OrderFromCartDraft.svg]] {
id: String
cart: [[CartResourceIdentifier.svg CartResourceIdentifier]]
version: Long
orderNumber: String
purchaseOrderNumber: String
paymentState: [[PaymentState.svg PaymentState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
orderState: [[OrderState.svg OrderState]]
state: [[StateResourceIdentifier.svg StateResourceIdentifier]]
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface OrderFromQuoteDraft [[OrderFromQuoteDraft.svg]] {
quote: [[QuoteResourceIdentifier.svg QuoteResourceIdentifier]]
version: Long
quoteStateToAccepted: Boolean
orderNumber: String
paymentState: [[PaymentState.svg PaymentState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
orderState: [[OrderState.svg OrderState]]
state: [[StateResourceIdentifier.svg StateResourceIdentifier]]
}
interface OrderImportDraft [[OrderImportDraft.svg]] {
orderNumber: String
purchaseOrderNumber: String
customerId: String
customerEmail: String
customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]]
businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]]
store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]]
lineItems: [[LineItemImportDraft.svg List<LineItemImportDraft>]]
customLineItems: [[CustomLineItemImportDraft.svg List<CustomLineItemImportDraft>]]
totalPrice: [[Money.svg Money]]
taxedPrice: [[TaxedPriceDraft.svg TaxedPriceDraft]]
taxRoundingMode: [[RoundingMode.svg RoundingMode]]
taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]]
inventoryMode: [[InventoryMode.svg InventoryMode]]
billingAddress: [[BaseAddress.svg BaseAddress]]
shippingAddress: [[BaseAddress.svg BaseAddress]]
itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]]
shippingInfo: [[ShippingInfoImportDraft.svg ShippingInfoImportDraft]]
paymentInfo: [[PaymentInfo.svg PaymentInfo]]
paymentState: [[PaymentState.svg PaymentState]]
shipmentState: [[ShipmentState.svg ShipmentState]]
orderState: [[OrderState.svg OrderState]]
state: [[StateReference.svg StateReference]]
country: String
origin: [[CartOrigin.svg CartOrigin]]
completedAt: DateTime
custom: [[CustomFieldsDraft.svg CustomFieldsDraft]]
}
interface OrderChangePaymentStateAction [[OrderChangePaymentStateAction.svg]] {
action: String
paymentState: [[PaymentState.svg PaymentState]]
}
PaymentState --> OrderPaymentStateChangedMessage #green;text:green : "paymentState"
PaymentState --> OrderPaymentStateChangedMessage #green;text:green : "oldPaymentState"
PaymentState --> OrderPaymentStateChangedMessagePayload #green;text:green : "paymentState"
PaymentState --> OrderPaymentStateChangedMessagePayload #green;text:green : "oldPaymentState"
PaymentState --> StagedOrderChangePaymentStateAction #green;text:green : "paymentState"
PaymentState --> Order #green;text:green : "paymentState"
PaymentState --> OrderFromCartDraft #green;text:green : "paymentState"
PaymentState --> OrderFromQuoteDraft #green;text:green : "paymentState"
PaymentState --> OrderImportDraft #green;text:green : "paymentState"
PaymentState --> OrderChangePaymentStateAction #green;text:green : "paymentState"
@enduml
|
bfddb442a3f28c61fbe279c7aaedf5138a31d4f7 | 9f9ab0789b0a2e5a5c9dc43652cba0ed342761d2 | /src/main/java/ex41/ex41-ClassDiagram.puml | 851f3144f14e4d7b7d59d17b095d0dbeb39ba995 | [] | no_license | kieran-l-jimenez/jimenez-cop3330-assignment3 | afbe07bcdad58058589ac957e0e53af9fbe02230 | aba5f9e482b5b3b6d81d8e5431d8a669c98baa6d | refs/heads/master | 2023-06-05T16:28:21.426526 | 2021-06-21T03:41:51 | 2021-06-21T03:41:51 | 378,733,105 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 213 | puml | @startuml
'https://plantuml.com/class-diagram
class App{
void main()
void makeFile()
}
App <- NameList
class NameList {
String[] names
int numMembers
List<String> alphabetize()
ArrayList readNames()
}
@enduml |
6151caf4e7fdb3749150acb0b77de0f8771368b4 | b789d8c11f1404ae5264412bff507a012cee0ba4 | /diagrams/mqtt-network-classes.puml | f9d5f04ba1323726e8c545669a92721c4ddbc354 | [] | no_license | lippo97/thesis | 8796365c567afb72b6b02fa6c287f43f5344e068 | 20f2b8153f92ed07ed1838651cdd7db9a3739737 | refs/heads/master | 2020-09-04T19:29:39.394765 | 2019-11-28T15:32:49 | 2019-11-28T15:32:49 | 219,868,501 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 622 | puml | @startuml
skinparam dpi 250
hide empty members
Device "1" o- "1" NetworkManager : use
NetworkManager <|.. MqttNetworkManager
interface NetworkManager <<Interface>> {
+shareState(Map<CodePath, Object>) : void
+getNeighborState() : Map<DeviceUID, Map<CodePath, Object>>
}
class MqttNetworkManager {
-neighbors: List<String>
+listen(): void
+stop(): void
}
note left
""listen()"" e ""stop()"" consentono di
avviare e fermare l'ascolto al broker
di messaggistica.
""neighbors"" è una lista di //topic//,
uno per ogni dispositivo vicino.
end note
class Device {
+getNetworkManager() : NetworkManager
}
@enduml |
fc0b89ed6b823f1521d515309598cbb2e5b72c44 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/OrderDiscountCodeAddedMessagePayload.puml | 563ce26aa379de9858f75b31b82da492071532f9 | [] | 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 | 513 | 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 OrderDiscountCodeAddedMessagePayload [[OrderDiscountCodeAddedMessagePayload.svg]] extends OrderMessagePayload {
type: String
discountCode: [[DiscountCodeReference.svg DiscountCodeReference]]
}
interface OrderMessagePayload [[OrderMessagePayload.svg]] {
type: String
}
@enduml
|
57c27e01ea046922f5c7487b56701426291ef000 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.ide.rider@1.1.4/Rider/Editor/ProjectGeneration/FileIOProvider.puml | 6b67f3177a12c61645ea5479f427016c870630b2 | [] | 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 | 211 | puml | @startuml
class FileIOProvider {
+ Exists(fileName:string) : bool
+ ReadAllText(fileName:string) : string
+ WriteAllText(fileName:string, content:string) : void
}
IFileIO <|-- FileIOProvider
@enduml
|
f6b9decdc6a6704f4926c8060d594dce6ae9e4cc | edd83fe036eb4b47fff7b8df74edb339f625d7dd | /src/core/java-core/multithreading/basic-concept/basic-thread-local/src/com/manhpd/plantuml/thread-local.puml | 4ca279e26413c4b484045716f701fe0805bee443 | [] | no_license | DucManhPhan/J2EE | 1a7cb661f739bf577a4271f86e3af3baad196c3c | 2e3636d126b5e82971627b49696beb93726d8472 | refs/heads/master | 2023-04-15T00:15:02.218224 | 2023-04-10T16:10:15 | 2023-04-10T16:10:15 | 171,880,152 | 3 | 5 | null | 2022-11-24T05:51:47 | 2019-02-21T13:49:34 | Java | UTF-8 | PlantUML | false | false | 977 | puml | @startuml
class ThreadLocal<T> {
- {static} threadLocalHashCode: int
- {static} nextHashCode: AtomicInteger
- {static} HASH_INCREMENT: int
__
+ ThreadLocal()
- {static} nextHashCode(): int
# initialValue(): T
+ {static} withInitial(var0: Supplier<? extends S>): ThreadLocal<S>
+ get(): T
- setInitialValue(): T
+ set(var1: T): void
+ remove(): void
~ getMap(var1: Thread): ThreadLocalMap
~ createMap(var1: Thread, var2: T): void
~ createInheriteMap(var0: ThreadLocalMap): ThreadLocalMap
~ childValue(var1: T): T
}
class ThreadLocalMap {
- {static} INITIAL_CAPACITY: int
- table: Entry[]
}
'SuppliedThreadLocal <|-- ThreadLocal
'
'class SuppliedThreadLocal {
' - supplier: Supplier<? extends T>
' __
'
' ~ SuppliedThreadLocal(var1: Supplier<? extends T>
' # initialValue(): T
'}
'
'class Entry {
' # value: Object
'
' __
'
' # Entry(var1: ThreadLocal<?>, var2: Object)
'}
@enduml |
678f978159c37c9507ff36660bf733772b73871d | 3150c7ff97d773754f72dabc513854e2d4edbf04 | /P3/STUB_Yeste_Guerrero_Cabezas/libraries/concordion-2.1.1/src/test-dummies/java/spec/concordion/common/results/runTotals/testsuite/unimplementedIndex/unimplementedIndex.plantuml | b3c1d4db19a9902dbbf18b34e6668e2754a31ee9 | [
"WTFPL",
"Apache-2.0"
] | permissive | leRoderic/DS18 | c8aa97b9d376788961855d6d75996990b291bfde | 0800755c58f33572e04e7ce828770d19e7334745 | refs/heads/master | 2020-03-29T05:14:14.505578 | 2019-11-07T18:01:37 | 2019-11-07T18:01:37 | 149,574,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,101 | plantuml | @startuml
title __UNIMPLEMENTEDINDEX's Class Diagram__\n
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.unimplementedIndex {
class UnimplementedButHasImplSpec {
+ sleep()
}
}
}
}
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.unimplementedIndex {
class UnimplementedIndex {
}
}
}
}
package spec.concordion.common.results.runTotals {
package spec.concordion.common.results.runTotals.testsuite {
package spec.concordion.common.results.runTotals.testsuite.unimplementedIndex {
class UnimplementedSpec {
}
}
}
}
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
|
4b108f6917c306575a352755729a7fd373a81406 | c377b677f76094cc3889b184fe64de8ced9016a1 | /cms/doc/net.puml | 9284de1d2684a862f961748c4b96d6c945a62f19 | [
"Apache-2.0"
] | permissive | Socrates2017/Zetty | 53715c8faaa475214b2890019aa845eddc4bdbba | 213fba3b3bc4965c3f51bacf444bfbd8aa674188 | refs/heads/master | 2022-11-18T02:33:41.686505 | 2020-11-16T14:24:26 | 2020-11-16T14:24:26 | 220,578,097 | 5 | 2 | Apache-2.0 | 2022-11-16T10:37:46 | 2019-11-09T02:08:44 | Java | UTF-8 | PlantUML | false | false | 4,453 | puml | @startuml
class SocketSession<T, O> {
- SocketSessionStatus socketSessionStatus;
- AsynchronousSocketChannel socketChannel;
- ByteBuffer readBuffer;
- ByteBuffer writeBuffer;
- byte[] contextBytes;
- Builder builder;
- String remoteAddress;
- String localAddress;
- Decode decode;
- Encode encode;
- Processor processor;
- T message;
- Socket socket;
+ SocketSession(AsynchronousSocketChannel socketChannel, Builder builder);
+ SocketSession(Socket socket, Builder builder);
- void init();
+ void decode(Integer readLength);
+ void read();
+ void write(O out);
+ static byte[] buf2Bytes(ByteBuffer buffer, int length);
+ void writeRemaining(ByteBuffer buffer);
+ void destroy();
+ AsynchronousSocketChannel getSocketChannel() ;
+ void setSocketChannel(AsynchronousSocketChannel socketChannel);
+ ByteBuffer getReadBuffer();
+ void setReadBuffer(ByteBuffer readBuffer);
+ ByteBuffer getWriteBuffer();
+ void setWriteBuffer(ByteBuffer writeBuffer);
+ SocketSessionStatus getSocketSessionStatus() ;
+ void setSocketSessionStatus(SocketSessionStatus socketSessionStatus);
+ String getRemoteAddress() ;
+ void setRemoteAddress(String remoteAddress) ;
+ String getLocalAddress() ;
+ void setLocalAddress(String localAddress);
+ T getMessage() ;
+ void setMessage(T message) ;
+ byte[] getContextBytes();
+ void setContextBytes(byte[] contextBytes);
+ Builder getBuilder() ;
+ void setBuilder(Builder builder) ;
+ Decode getDecode() ;
+ void setDecode(Decode decode) ;
+ Encode getEncode() ;
+ void setEncode(Encode encode);
+ Processor getProcessor();
+ void setProcessor(Processor processor) ;
+ Socket getSocket() ;
+ void setSocket(Socket socket);
+ String toString();
}
enum SocketSessionStatus {
NEW
CONNECTED
DESTROYED
}
SocketSession *-- SocketSessionStatus:socket状态
interface Decode<T>{
# boolean decode(SocketSession session, Integer readLength, T t);
}
note bottom of Decode : 对socket接收到的字节码进行解码。\n运行完毕后会进行判断:本次完整的消息是否读取完毕.\n是则返回true;否则返回否,socket将继续读取。
SocketSession o-- Decode : 解码
interface Encode<O> {
ByteBuffer encode(SocketSession session, O out);
}
note bottom of Encode : socket发送消息前,将数据进行编码。\n例如添加头信息、添加消息长度。
SocketSession o-- Encode : 编码
interface Processor<T> {
boolean process(SocketSession session, T message);
}
note bottom of Processor : 解码后封装好的消息(例如httpRequest)传给此处理类,\n进行业务逻辑处理
SocketSession o-- Processor : 业务处理
class Builder {
+ SocketEnum socketType;
+ String host = "localhost";
+ int port = 80;
+ int readBufSize = 1024 * 8;
+ long socketReadTimeout = 30;
+ Map<SocketOption<Object>, Object> socketOptions;
+ ReadHandler readHandler;
+ WriteHandler writeHandler;
+ ByteBuffer writeBuffer;
+ Decode decode;
+ Encode encode;
+ Processor processor;
+ Builder();
+ ZettyServer buildServer();
+ ZettyClient buildClient();
- void init();
+ Builder host(String host);
+ Builder port(int port);
+ Builder readBufSize(int readBufSize);
+ Builder socketReadTimeout(long socketReadTimeout);
+ Builder readHandlerClass(Class<? extends SocketReadHandler> readHandlerClass);
+ Builder setOption(SocketOption socketOption, Object f) ;
+ Builder decode(Decode decode) ;
+ Builder encode(Encode encode) ;
+ Builder processor(Processor processor) ;
+ Builder writeHandler(WriteHandler writeHandler);
+ Builder socketType(SocketEnum socketType);
}
SocketSession o-- Builder : 构建传参
interface CompletionHandler<V,A> {
}
interface SocketReadHandler<Integer, SocketSession> {
}
class ReadHandler {
+ void completed(Integer result, SocketSession session);
+ void failed(Throwable exc, SocketSession session);
}
SocketReadHandler <|-- CompletionHandler : 继承
ReadHandler <|.. SocketReadHandler : 实现
SocketSession <.. ReadHandler : 依赖
Builder <.. ReadHandler : 创建
abstract class WriteHandler<Integer, SocketSession> {
}
WriteHandler <|.. CompletionHandler : 实现
Builder <.. WriteHandler : 创建
SocketSession <.. WriteHandler : 依赖
@enduml |
d84a50528d1c8862e50036ee7ee7716255712477 | f563631a7a9f473bb8a6a53ed87ab80cd9cd9d86 | /Assets/Scripts/plantuml/HitEffectCamera.puml | e514f16f0b66f6a9f41c10ee3bdc7de8afcee620 | [] | no_license | 202004g07/UnityShooting | 74cc68f7abf2cc49bc6455b8c19587e245227b50 | 1249e19e0f660cd8f51930a9466962ac2754ff19 | refs/heads/main | 2023-01-01T21:18:11.351731 | 2020-10-26T09:24:12 | 2020-10-26T09:24:12 | 302,015,985 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 112 | puml | @startuml
class HitEffectCamera <<static>> {
+ {static} HitEffect(time:float, power:float) : void
}
@enduml
|
f2753f4fe56d3919b7c4d10277b507adf8c3de87 | 200cf8a418f1b02a1c348add3fe7bee559f51881 | /Documentation/class-hierarchy/classes.plantuml | c43cb8a88705ce0462a05a107e55dc96c05bf438 | [
"Apache-2.0"
] | permissive | rescala-lang/REScala | b48739c645a5085a5894c12cbd1435175bf526d9 | 28dae9f1c9f1c4bb9daeee2bce9484bee1cd1430 | refs/heads/master | 2023-08-17T23:49:18.710182 | 2023-08-17T12:09:55 | 2023-08-17T12:09:55 | 10,546,692 | 46 | 14 | Apache-2.0 | 2023-08-02T06:42:35 | 2013-06-07T09:30:17 | Scala | UTF-8 | PlantUML | false | false | 1,446 | plantuml | @startuml
class Reactive {
+val level: TurnLocal[Int]
+val dependants: TurnLocal[Set[Reactive]]
__
+reevaluate(): EvaluationResult
+commit(): Unit
}
class "Pulsing[+T]" as Pulsing extends Reactive {
+val pulses: TurnLocal[T]
__
+addDependent(Dependent)
+removeDependent(Dependent)
+notifyDependents(Any)
}
class "Stateful[+T]" as Stateful extends Pulsing {
+get(): T
}
class "StaticReevaluation[+T]" as StaticReevaluation extends Pulsing {
+calculatePulse(): Pulse[T]
}
class "DynamicReevaluation[+T]" as DynamicReevaluation extends Pulsing {
+val dependencies: TurnLocal[Set[Reactive]]
__
+calculatePulseDependencies(): Pulse[T]
}
class "Signal[+T]" as Signal extends Stateful {
… signal syntax …
}
class "Event[+T]" as Event extends Pulsing {
… event syntax …
}
class "DynamicEvent[T]" as DynamicEvent
class "StaticEvent[T]" as StaticEvent
class "StaticSignal[T]" as StaticSignal
class "DynamicSignal[T]" as DynamicSignal
class "Var[T]" as Var
class "ImperativeEvent[T]" as ImperativeEvent
class "EventHandler[T]" as EventHandler
Event <|-- DynamicEvent
DynamicReevaluation <|-- DynamicEvent
Event <|-- StaticEvent
StaticReevaluation <|-- StaticEvent
Signal <|-- Var
Event <|-- EventHandler
StaticReevaluation <|-- EventHandler
Event <|-- ImperativeEvent
Signal <|-- DynamicSignal
DynamicReevaluation <|-- DynamicSignal
Signal <|-- StaticSignal
StaticReevaluation <|-- StaticSignal
@enduml
|
23b7ae5137906eaade15601176e5b46e60e6ef37 | e91c78db8dcbe0aa813b66e62a84a3adaa004513 | /uml/TodoList.puml | 460e984ad0f22c7d11dd4f3bc2c2bd3507dea4d5 | [] | no_license | rharding8/harding-cop3330-assignment4part2 | 27d1ed9312e9632ad7ec079a1ddfacf058990d23 | 58520f874058a6cba2f0c86cdc8a99cd4877a6bc | refs/heads/master | 2023-06-15T04:22:45.353783 | 2021-07-12T04:08:20 | 2021-07-12T04:08:20 | 383,930,934 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,839 | puml | @startuml
'https://plantuml.com/class-diagram
class TodoList {
main()
start()
}
class TodoListController {
Button clearListButton
TextField titleField
Button setTitleButton
TextField pathField
Button addButton
TextField dateField
TextField descriptionField
CheckBox completeBox
Button saveButton
Button updateButton
Button removeButton
ListView<Item>: itemDisplay
Button dateSortButton
Button showAllButton
Button showCompleteButton
Button showIncompleteButton
Button loadButton
ItemList itemList
ObservableList<Item> filteredList
addButtonClicked()
removeButtonClicked()
saveButtonClicked()
loadButtonClicked()
updateButtonClicked()
showAllClicked()
showCompleteClicked()
showIncompleteClicked()
setTitleClicked()
addToList()
removeFromList()
updateItem()
showComplete()
showIncomplete()
setTitle()
save()
load()
initialize()
refresh()
dateSortClicked()
clearListClicked()
clearList()
}
class Item {
String description
String date
Boolean completion
Item()
getDescription()
setDescription()
getDate()
setDate()
isComplete()
setCompletion()
toString()
}
class ItemList {
String title
ObservableList<Item>: items
ItemList()
getTitle()
setTitle()
getItems()
setItems()
addItem()
dateSort()
}
class TodoListIO {
saveList()
loadList()
}
class InputValidator {
isNull()
descriptionValidator()
dateValidator()
pathValidator()
}
javafx.Application <|- TodoList
TodoList - TodoListController
TodoListController -- ItemList
TodoListController - Item
TodoListController -- TodoListIO
TodoListController - InputValidator
ItemList - Item
TodoListIO - ItemList
@enduml |
7b1aa0b1ae3ceb4113002449a00b091531c39822 | 6e651d0b77d1088ea70d19d7a97bd9e764b1c6ce | /monolog-2/_overview.puml | ff0057e3f147e4b04df5dced4bd537e4cc9ee1a6 | [] | no_license | iamapen/phpCd | e158927454d3670deaecb0d6e0fe17366ae793cb | c88c170af91f721fccc6234f8040b8557fac7ac0 | refs/heads/master | 2020-08-09T07:58:56.171544 | 2020-01-16T17:39:34 | 2020-01-16T17:39:34 | 214,042,778 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,537 | puml | @startuml
interface Psr.Log.LoggerInterface {
+ emergency(message:array, context:array)
+ alert(message:array, context:array)
+ critical(message:array, context:array)
+ error(message:array, context:array)
+ warning(message:array, context:array)
+ notice(message:array, context:array)
+ info(message:array, context:array)
+ debug(message:array, context:array)
+ trace(message:array, context:array)
+ log(level:mixed, message:array, context:array)
}
class Monolog.Logger
Psr.Log.LoggerInterface <|.. Monolog.Logger
namespace Monolog.Handler {
interface HandlerInterface {
+ isHandling(record:array) :bool
+ handle(record:array) :bool
+ handleBatch(records:array) :void
+ close() :void
}
interface FormattableHandlerInterface {
+ setFormatter(Monolog.Formatter.FormatterInterface) :self
+ getFormatter() :Monolog.Formatter.FormatterInterface
}
interface ProcessableHandlerInterface {
+ pushProcessor(callback:Callable) :HandlerInterface
+ popProcessor() :Callable
}
}
interface Monolog.Processor.ProcessorInterface {
+ __invoke(record:array) :array
}
interface Monolog.Formatter.FormatterInterface {
+ format(record:array) :mixed
+ formatBatch(records:array) :mixed
}
Monolog.Logger o-- Monolog.Handler.HandlerInterface
Monolog.Logger o-- Monolog.Processor.ProcessorInterface
Monolog.Handler.ProcessableHandlerInterface o-- Monolog.Processor.ProcessorInterface
Monolog.Formatter.FormatterInterface --o Monolog.Handler.FormattableHandlerInterface
@enduml
|
cf68434cba04f3b13322c0a9c3ca7aa44e6e41b7 | 6875a942cb9156cf4682bf3a536f299a4eb59bae | /src/main/java/fr/iat/cinema/doc/cinema_diagclass.puml | da63f1f30824d4f662a44d5d0590dbdb3e4908bb | [] | no_license | SlothyKernel1314/cinema | b8d900fc1a4fca43c7556463dd16ff2148ce1cd8 | 5754b032a89cefb7cae1edaf0bb000051b38466e | refs/heads/master | 2022-08-09T03:20:50.843584 | 2019-03-27T14:27:24 | 2019-03-27T14:27:24 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 339 | puml | @startuml
class Role {
- id
- name
}
class Film {
- id
- name
- rank
- imagePath
}
class Person {
- id
- name
}
class Genre {
- id
- name
}
Role " * " -- " 1 " Person
Role " * " -- " 1 " Film
Genre " * " -- " * " Film
Film "* directedFilms" - "1 director" Person :" "
hide circle
@enduml |
504aacee0c02920f61de1188d0c42fc5c995ba9a | 02a364d6cc772a9bf2e72d02dbecca74ac14d335 | /eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Accessors/EntityFramework/Cart.puml | 75bd1bdee6507866cc9e77e456177d7f7a082bae | [
"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 | 899 | puml | @startuml
class Cart {
+ Cart()
+ CatalogId : int <<get>> <<set>>
+ BillingFirst : string <<get>> <<set>>
+ BillingLast : string <<get>> <<set>>
+ BillingEmailAddress : string <<get>> <<set>>
+ BillingAddr1 : string <<get>> <<set>>
+ BillingAddr2 : string <<get>> <<set>>
+ BillingCity : string <<get>> <<set>>
+ BillingState : string <<get>> <<set>>
+ BillingPostal : string <<get>> <<set>>
+ ShippingFirst : string <<get>> <<set>>
+ ShippingLast : string <<get>> <<set>>
+ ShippingEmailAddress : string <<get>> <<set>>
+ ShippingAddr1 : string <<get>> <<set>>
+ ShippingAddr2 : string <<get>> <<set>>
+ ShippingCity : string <<get>> <<set>>
+ ShippingState : string <<get>> <<set>>
+ ShippingPostal : string <<get>> <<set>>
}
Cart --> "Id" Guid
Cart o-> "CreatedAt" DateTimeOffset
Cart o-> "UpdatedAt" DateTimeOffset
@enduml
|
36a7b5380410e7b55897a38d916becd13eb19310 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ReviewResourceIdentifier.puml | 2ed3331e2d428fa27789fb70ca083ceabc7aeca5 | [] | 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 | 548 | 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 ReviewResourceIdentifier [[ReviewResourceIdentifier.svg]] extends ResourceIdentifier {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
interface ResourceIdentifier [[ResourceIdentifier.svg]] {
typeId: [[ReferenceTypeId.svg ReferenceTypeId]]
id: String
key: String
}
@enduml
|
b37ffe5dafff81d02a690265d4268b92a4854df0 | c815f9c82c1400f76243750cd0ec609d217b9943 | /fluentinterface/etc/fluentinterface.urm.puml | 0283e20b594cb7ac24c4c56f9638ae771bdd4f68 | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 2,691 | puml | @startuml
package com.iluwatar.fluentinterface.fluentiterable.simple {
class SimpleFluentIterable<E> {
- iterable : Iterable<E>
# SimpleFluentIterable<E>(iterable : Iterable<E>)
+ asList() : List<E>
+ filter(predicate : Predicate<? super E>) : FluentIterable<E>
+ first() : Optional<E>
+ first(count : int) : FluentIterable<E>
+ forEach(action : Consumer<? super E>)
+ from(iterable : Iterable<E>) : FluentIterable<E> {static}
+ fromCopyOf(iterable : Iterable<E>) : FluentIterable<E> {static}
+ getRemainingElementsCount() : int
+ iterator() : Iterator<E>
+ last() : Optional<E>
+ last(count : int) : FluentIterable<E>
+ map(function : Function<? super E, T>) : FluentIterable<T>
+ spliterator() : Spliterator<E>
+ toList(iterator : Iterator<E>) : List<E> {static}
}
}
package com.iluwatar.fluentinterface.app {
class App {
+ App()
+ main(args : String[]) {static}
- negatives() : Predicate<? super Integer> {static}
- positives() : Predicate<? super Integer> {static}
- prettyPrint(delimiter : String, prefix : String, iterable : Iterable<E>) {static}
- prettyPrint(prefix : String, iterable : Iterable<E>) {static}
- transformToString() : Function<Integer, String> {static}
}
}
package com.iluwatar.fluentinterface.fluentiterable.lazy {
abstract class DecoratingIterator<E> {
# fromIterator : Iterator<E>
- next : E
+ DecoratingIterator<E>(fromIterator : Iterator<E>)
+ computeNext() : E {abstract}
+ hasNext() : boolean
+ next() : E
}
class LazyFluentIterable<E> {
- iterable : Iterable<E>
# LazyFluentIterable<E>()
# LazyFluentIterable<E>(iterable : Iterable<E>)
+ asList() : List<E>
+ filter(predicate : Predicate<? super E>) : FluentIterable<E>
+ first() : Optional<E>
+ first(count : int) : FluentIterable<E>
+ from(iterable : Iterable<E>) : FluentIterable<E> {static}
+ iterator() : Iterator<E>
+ last() : Optional<E>
+ last(count : int) : FluentIterable<E>
+ map(function : Function<? super E, T>) : FluentIterable<T>
}
}
package com.iluwatar.fluentinterface.fluentiterable {
interface FluentIterable<E> {
+ asList() : List<E> {abstract}
+ copyToList(iterable : Iterable<E>) : List<E> {static}
+ filter(Predicate<? super E>) : FluentIterable<E> {abstract}
+ first() : Optional<E> {abstract}
+ first(int) : FluentIterable<E> {abstract}
+ last() : Optional<E> {abstract}
+ last(int) : FluentIterable<E> {abstract}
+ map(Function<? super E, T>) : FluentIterable<T> {abstract}
}
}
LazyFluentIterable ..|> FluentIterable
SimpleFluentIterable ..|> FluentIterable
@enduml |
c304a1b6daa9ab08ba4ea711b7c2d1d8db36fce7 | 779e759409480749241346f85c3465d9ec5d2ab6 | /src/DataInterfaceDiag.puml | 67ae51ee1b174ee47737966eaa7d78e27923dda8 | [] | no_license | CS3250Team3/CS3250Team3 | 19356459305449b05356cc8c0fe555c7df8f0a57 | b02b02d47052c757b33d86e4c5d6f10ef0914973 | refs/heads/main | 2023-03-17T23:08:33.217565 | 2021-02-19T07:51:39 | 2021-02-19T07:51:39 | 335,437,668 | 0 | 9 | null | 2021-02-25T02:01:11 | 2021-02-02T22:14:19 | Java | UTF-8 | PlantUML | false | false | 229 | puml | @startuml
interface " public Data Interface"{
void initializeDatabase(String filename)
void createEntry()
void readEntry()
void updateEntry()
void deleteEntry()
void saveEntry()
}
@enduml
|
a0ec1d3f21cc2e892880811db9682d8ed49b6b90 | 95a4cab78f56bdb2299d3dc9ab4834ed033f6b38 | /src/Twitter/Util/Util.plantuml | 75badc21480d8e78332f4e2dcbfc5300341f16ff | [] | no_license | Asynchronousx/Tweeter | ce65092bdffaebee37316d1ac07198d3588bd861 | a766ead4c1002966342bc0309b2606647b36fd7e | refs/heads/master | 2020-04-23T15:23:25.412075 | 2019-03-03T11:12:58 | 2019-03-03T11:12:58 | 171,263,655 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,366 | plantuml | @startuml
title __UTIL's Class Diagram__\n
package Twitter {
package Twitter.Util {
interface AccessModifiers {
{abstract} + value()
}
}
}
package Twitter {
package Twitter.Util {
interface Attributes {
{abstract} + value()
}
}
}
package Twitter {
package Twitter.Util {
interface Constructor {
{abstract} + value()
}
}
}
package Twitter {
package Twitter.Util {
class MessageHandler {
{static} + messageHandler : MessageHandler
{static} # fadeIn : FadeTransition
{static} # fadeOut : FadeTransition
{static} + getMessageHandler()
{static} - initTransitions()
+ displayMessage()
}
}
}
package Twitter {
package Twitter.Util {
interface Methods {
{abstract} + value()
}
}
}
package Twitter {
package Twitter.Util {
interface Singleton {
{abstract} + value()
}
}
}
package Twitter {
package Twitter.Util {
interface WindowSizer {
+ anchorSize()
}
}
}
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
|
98431fab38e7ace2e65dc34d664caf51d8724248 | 99ac2c7f858b3b1aaa26b557565ed5e738902587 | /docs/CastOfCharacters.puml | 382ccd1ff07abd19747d91bc8e4e15b29f73744b | [
"Apache-2.0"
] | permissive | s22s/avro2spark | fa081b9efb04f2533aa99d6a1f0c7c71a4829993 | 3f8bec6a12e3a9bbd27933249a2ba38b2183f111 | refs/heads/master | 2021-01-11T14:36:34.601089 | 2017-04-12T13:59:45 | 2017-04-12T13:59:45 | 80,171,684 | 0 | 1 | null | 2017-03-20T15:04:55 | 2017-01-27T01:13:36 | Scala | UTF-8 | PlantUML | false | false | 1,318 | puml | @startuml
hide empty fields
hide empty methods
object AvroDerivedSparkEncoder <<object>> {
+apply[T: AvroRecordCodec]: Encoder[T]
}
package serializer <<Rectangle>> {
class EncodeToAvro <T>
class AvroToSpark <T>
}
package deserializer <<Rectangle>> {
class DecodeFromAvro <T>
class SparkToAvro <T>
}
package org.apache.spark.sql.catalyst {
abstract class LeafExpression
class BoundReference
interface Expression {
+ dataType: DataType
+ eval(input: InternalRow): Any
}
abstract class UnaryExpression {
+ child: Expression
# nullSafeEval(input: Any): Any
}
interface Encoder <T> {
+ schema: StructType
}
class ExpressionEncoder <T>
}
Expression <|-- UnaryExpression
LeafExpression -|> Expression
LeafExpression <|-- BoundReference
UnaryExpression <|-- EncodeToAvro
UnaryExpression <|-- AvroToSpark
UnaryExpression <|-- DecodeFromAvro
UnaryExpression <|-- SparkToAvro
serializer <-- AvroDerivedSparkEncoder: creates
deserializer <-- AvroDerivedSparkEncoder: creates
Encoder <|-- ExpressionEncoder
ExpressionEncoder --> "1..*" serializer: serializer
ExpressionEncoder --> "1" deserializer: deserializer
BoundReference <- EncodeToAvro: child
EncodeToAvro <- AvroToSpark: child
DecodeFromAvro -> SparkToAvro: child
BoundReference <- SparkToAvro: child
@enduml
|
0bde467756f20a97b788fb7c245ecc864c71b814 | 2fa8753f21ca46dbc255ed47d03c634367016ac3 | /other_plant_uml_samples/fowler_1st_example.plantuml | 2b5cc8b02bd1a2fff1e26f85d40bafa41a0105c6 | [] | no_license | gedean/uml_studies | 20a878a6ed4fa33dfb11226bde1065290b9fb881 | c4c55f8d925a53f32751f710ff8c497b1d05523e | refs/heads/master | 2020-06-16T21:29:30.998154 | 2019-09-09T13:48:01 | 2019-09-09T13:48:01 | 195,710,319 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 386 | plantuml | @startuml
class Pedido{
id: Integer[1]
dataRecebimento: Date[0..1]
prePago: Boolean[1]
valorTotal: Money
expandir()
encerrar()
}
note left of Pedido
se Pedido.cliente.obterClassedeCrédito for “ruim”,
então Pedido.éPré-pago deve ser “Verdadeiro”
end note
class Cliente{
nome[1]
endereco[0..1]
obterClasseCredito()
}
Pedido "*" --> "1" Cliente
@enduml |
572253a80085e998673c6bce3ce35e22b596850e | 4aab5441a7540dfa9454564ee89cbe90913982d8 | /server/output.puml | bd533bd6ebbfd1a40465d160e1f572accb58371f | [] | no_license | keycloud/keycloud | e2c8885245c838864e9031c07409230a86556c1b | 62de19590d9a09ad04f4a697cd01036daf8166e7 | refs/heads/master | 2022-02-13T22:01:14.726142 | 2020-06-23T15:29:06 | 2020-06-23T15:29:06 | 211,831,115 | 2 | 0 | null | 2022-02-02T00:58:46 | 2019-09-30T10:06:34 | Go | UTF-8 | PlantUML | false | false | 5,088 | puml | @startuml
namespace main {
class Authenticator << (S,Aquamarine) >> {
+ User *User
+ ID []byte
+ CredentialID []byte
+ PublicKey []byte
+ AAGUID []byte
+ SignCount uint32
+ WebAuthID() []byte
+ WebAuthCredentialID() []byte
+ WebAuthPublicKey() []byte
+ WebAuthAAGUID() []byte
+ WebAuthSignCount() uint32
}
class AuthnHandler << (S,Aquamarine) >> {
- sessionName string
- authn *webauthn.WebAuthn
- cookieStore *sessions.CookieStore
- storage StorageInterface
- securityTokenName string
- userFieldName string
- cookieSessionName string
- startRegistration(writer http.ResponseWriter, request *http.Request)
- finishRegistration(writer http.ResponseWriter, request *http.Request)
- startLogin(writer http.ResponseWriter, request *http.Request)
- finishLogin(writer http.ResponseWriter, request *http.Request)
- standardLogin(writer http.ResponseWriter, request *http.Request)
- standardRegister(writer http.ResponseWriter, request *http.Request)
- logout(writer http.ResponseWriter, request *http.Request)
}
class CRUDHandler << (S,Aquamarine) >> {
- cookieStore *sessions.CookieStore
- storage StorageInterface
+ GetPassword(writer http.ResponseWriter, request *http.Request)
+ GetPasswords(writer http.ResponseWriter, request *http.Request)
+ CreatePassword(writer http.ResponseWriter, request *http.Request)
+ RemovePassword(writer http.ResponseWriter, request *http.Request)
+ RemoveUser(writer http.ResponseWriter, request *http.Request)
+ UpdateUser(writer http.ResponseWriter, request *http.Request)
+ GetUser(writer http.ResponseWriter, request *http.Request)
}
class FileServer << (S,Aquamarine) >> #lightgreen{
- baseDir string
- cookieStore *sessions.CookieStore
- sessionName string
- cookieName string
- storage StorageInterface
- userFieldName string
+ Router *mux.Router
+ ServeFileWithoutCheck(writer http.ResponseWriter, request *http.Request)
}
class GetPasswordRequest << (S,Aquamarine) >> {
+ PasswordIdentifier string
}
class Password << (S,Aquamarine) >> {
+ Password string
+ Id string
+ Url string
+ Username string
}
class PasswordRequest << (S,Aquamarine) >> {
+ Password string
+ Id string
}
class Storage << (S,Aquamarine) >> #lightblue{
- database *sql.DB
+ AddAuthenticator(user webauthn.User, authenticator webauthn.Authenticator) error
+ GetAuthenticator(id []byte) (webauthn.Authenticator, error)
+ GetAuthenticators(user webauthn.User) ([]webauthn.Authenticator, error)
+ GetSessionKeyForUser(user *User) ([]byte, error)
+ UpdateOrCreateSessionKeyForUser(user *User, b []byte) error
+ DeleteSessionKeyForUser(user *User) error
+ GetUser(ID string) (*User, error)
+ CreateUser(u *User) error
+ RemoveUser(u *User) error
+ UpdateUser(u *User) error
+ CreatePassword(u *User, st string, p *Password) error
+ GetPassword(u *User, st string) (*Password, error)
+ UpdatePassword(u *User, st string, p *Password) error
+ DeletePassword(u *User, st string) error
+ GetPasswords(u *User) ([]*Password, error)
}
interface StorageInterface #lightblue{
+ AddAuthenticator( webauthn.User, webauthn.Authenticator) error
+ GetAuthenticator( []byte) (webauthn.Authenticator, error)
+ GetAuthenticators( webauthn.User) ([]webauthn.Authenticator, error)
+ GetUser(webauthnID string) (*User, error)
+ CreateUser( *User) error
+ RemoveUser( *User) error
+ UpdateUser( *User) error
+ GetSessionKeyForUser( *User) ([]byte, error)
+ UpdateOrCreateSessionKeyForUser( *User, []byte) error
+ DeleteSessionKeyForUser( *User) error
+ GetPassword( *User, string) (*Password, error)
+ GetPasswords( *User) ([]*Password, error)
+ CreatePassword( *User, string, *Password) error
+ UpdatePassword( *User, string, *Password) error
+ DeletePassword( *User, string) error
}
class User << (S,Aquamarine) >> {
+ Name string
+ Authenticators <font color=blue>map</font>[string]*Authenticator
+ MasterPassword []byte
+ Mail string
+ Uuid []byte
+ WebAuthID() []byte
+ WebAuthName() string
+ WebAuthDisplayName() string
}
class UserRequest << (S,Aquamarine) >> {
+ Name string
}
class UsernamePasswordRequest << (S,Aquamarine) >> {
+ Username string
+ Password string
}
class UsernameRequest << (S,Aquamarine) >> {
+ Username string
+ Mail string
}
}
"main.StorageInterface" <|-- "main.Storage"
@enduml
|
1cdbedb6bae15b41d7bf35214b267857b0118f16 | 598ba28f80e99591a220e97549ea25d6e71531a7 | /Graph.puml | d44969d4c02f9f50e914762d8e75f543269a8507 | [] | no_license | 8785496/test_kontur | 2992cde3f7ddac5d0cc896ef94042c6b87ce5b36 | 0403ebe0ba3cf13b4e24b29841e0179704ad47b5 | refs/heads/master | 2021-01-25T05:01:59.337985 | 2017-06-13T05:43:13 | 2017-06-13T05:43:13 | 93,501,434 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 323 | puml | @startuml
class Graph {
- bool[][] matrix
- string[] names
+ Graph(child* ch, int chSize, sympathy* sym, int symSize)
+ vector<string> getUnloved()
+ vector<string> getUnhappy()
+ vector<string> getFavorite()
}
object child{
+ int id
+ char[32] name
}
object sympathy{
+ int from
+ int to
}
@enduml |
cc2cebed566f4a4b57e2eceb95fb10191acb8d4b | e07ad94f5c70b0c457b9484269304244ced63a8f | /patterns/builder.puml | 60e241261a274329287e988c7401af9c190f1c98 | [] | no_license | gillescoolen/design-patterns | abfe58fab21c1d47c124f066d2a7883156667bce | c05acb4b919247c5a26bf8341330837894154ae8 | refs/heads/main | 2023-06-01T22:47:39.336414 | 2021-06-18T12:39:56 | 2021-06-18T12:39:56 | 377,582,013 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 629 | puml | @startuml builder
class Developer {
+ createWebsite()
+ createApp()
}
interface Builder {
+ reset()
+ addButton(string color)
+ addInput(string type)
+ addImage(string source)
}
class WebsiteBuilder {
+ reset()
+ addButton(Button button)
+ addInput(Input input)
+ addImage(Image source)
+ Website getResult()
}
class AppBuilder {
+ reset()
+ addButton(Button button)
+ addInput(Input input)
+ addImage(Image source)
+ App getResult()
}
class Website
class App
Developer --> Builder
WebsiteBuilder ..|> Builder
AppBuilder ..|> Builder
WebsiteBuilder --> Website
AppBuilder --> App
@enduml |
976c1e15f7bd0248de03d7abdd092f70070008e2 | 20391c18be0f5d9fa3adee5029be766534a0cf8e | /state-pattern/example2/problem/uml.plantuml | 2ac09e913959cee0a9ec74a77cc7f11c950cd5a4 | [] | no_license | Caballerog/blog | 34ee257ea9e033dfab732d15b7eff7b2a03a59a0 | c02c18b49cd65894ebd5e4f7eebc946195cde0f6 | refs/heads/master | 2023-04-28T15:00:41.602153 | 2023-04-21T19:56:59 | 2023-04-21T19:56:59 | 169,620,009 | 28 | 7 | null | 2022-12-11T21:37:16 | 2019-02-07T18:22:56 | TypeScript | UTF-8 | PlantUML | false | false | 1,920 | plantuml | @startuml
skinparam titleBorderRoundCorner 15
skinparam titleBorderThickness 2
skinparam titleBorderColor blue
title State Pattern - Problem to solve
header
<font color=red>Warning:</font>
Educational Purposes
endheader
center footer Carlos Caballero ([[https://www.carloscaballero.io https://www.carloscaballero.io]])
"Client" -[dashed]-> State : "<<use>>"
"Client" -[dashed]-> Freeza : "<<use>>"
Freeza -[dashed]> State : "<<use>>"
enum State {
TRANSFORMATION1
TRANSFORMATION2
TRANSFORMATION3
TRANSFORMATION4
GOLDEN_FREEZER
}
class Client {
state: State
--
+ request(operation: string)
}
class Freeza {
- power: number;
- energy: number;
- state: State;
--
+ constructor(state: State)
+ isAlive(): boolean
+ transitionTo(state: State): void
+ attack(): void
+ defend(attack: number):void
}
note left of Freeza::transitionTo
this.state = state;
switch(state) {
case STATE.TRANSFORMATION1: ... break;
case STATE.TRANSFORMATION2: ... break;
case STATE.TRANSFORMATION3: ... break;
case STATE.TRANSFORMATION4: ... break;
case STATE.GOLDEN_FREEZER: ... break;
}
end note
note left of Freeza::attack
let attackToEnemy, restoreEnergy;
switch(this.state){
case STATE.TRANSFORMATION1: ... break;
case STATE.TRANSFORMATION2: ... break;
case STATE.TRANSFORMATION3: ... break;
case STATE.TRANSFORMATION4: ... break;
case STATE.GOLDEN_FREEZER: ... break;
}
end note
note left of Freeza::defend
let attackFromEnemy;
switch(this.state){
case STATE.TRANSFORMATION1: ... break;
case STATE.TRANSFORMATION2: ... break;
case STATE.TRANSFORMATION3: ... break;
case STATE.TRANSFORMATION4: ... break;
case STATE.GOLDEN_FREEZER: ... break;
}
}
end note
@enduml |
5854fddc3879c07129d04745578da5b72d004af4 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.puml | c148547489b8ab977650461c98b4b46c017156dd | [] | 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 | 526 | puml | @startuml
class TestRunnerApiMapper {
+ MapTestToTestPlanMessage(testsToRun:ITestAdaptor) : TestPlanMessage
+ MapTestToTestStartedMessage(test:ITestAdaptor) : TestStartedMessage
+ TestResultToTestFinishedMessage(result:ITestResultAdaptor) : TestFinishedMessage
+ GetRunStateFromResultNunitXml(result:ITestResultAdaptor) : string
+ GetTestStateFromResult(result:ITestResultAdaptor) : TestState
+ FlattenTestNames(test:ITestAdaptor) : List<string>
}
ITestRunnerApiMapper <|-- TestRunnerApiMapper
@enduml
|
97fc5f135cdba66c5aa50bc63d8c7bf56096ae5d | 5586dbf7a367070c7f148ae7a58e4baf59176883 | /doc/stat-model.puml | e4b24af79717d23cf529626f2361844dd2d9af32 | [
"MIT"
] | permissive | ratiotile/division-designer | f55ada70cff581098e603011d2448c7aeed6d325 | fad17b9b072fd8a1e21717c24dbeaad21ca5418f | refs/heads/master | 2020-03-16T16:42:54.328342 | 2019-02-04T16:49:58 | 2019-02-04T16:49:58 | 132,800,144 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,784 | puml | @startuml
title Stat Model
class TerrainModifier {
attack
defense
movement
}
class TerrainStats {
plains
forest
hills
mountain
desert
arctic
amphibious
urban
marsh
river
fort
}
TerrainModifier --* TerrainStats
interface UnitComponent {
}
class CoreStats {
name: string
icon: string
priority: int
ic_cost
mp_cost
build_time
speed
organization
morale
strength
officers
air_defense
air_attack
fuel_consumption
supply_consumption
radio_strength
addStats(CoreStats other)
}
UnitComponent <|-- CoreStats
class LandStats {
defensiveness
toughness
softness
suppression
ap_attack
terrain_modifiers
combat_width
transport_weight
addStats(LandStats other)
}
UnitComponent <|-- LandStats
TerrainStats <-- LandStats
class GroundAttack {
soft_attack
hard_attack
addStats(GroundAttack other)
}
UnitComponent <|-- GroundAttack
class SortieStats {
range
air_detection
surface_detection
transport_capacity
sea_attack
sub_attack
addStats(SortieStats other)
}
UnitComponent <|-- SortieStats
class AirStats {
is_cag
strategic_attack
surface_defense
addStats(AirStats other)
}
UnitComponent <|-- AirStats
class NavalStats {
is_capital
hull
convoy_attack
shore_bombardment
sub_detection
sea_defense
visibility
addStats(NavalStats other)
}
UnitComponent <|-- NavalStats
abstract class Unit {
type
is_enabled
applyTech(TechEffect effect)
getStats()
}
CoreStats <-- Unit
class AirUnit {
}
Unit <|-- AirUnit
AirStats <-- AirUnit
SortieStats <-- AirUnit
GroundAttack <-- AirUnit
class LandUnit {
}
Unit <|-- LandUnit
GroundAttack <-- LandUnit
LandStats <-- LandUnit
class SeaUnit {
}
Unit <|-- SeaUnit
SortieStats <-- SeaUnit
NavalStats <-- SeaUnit
class UnitManager {
units: Map<string, Unit>
}
Unit <-- UnitManager
class TechEffect {
unit_name: string
land_stats: LandStats
ground_attack: GroundAttack
core_stats: CoreStats
air_stats: AirStats
sortie_stats: SortieStats
naval_stats: NavalStats
}
LandStats <- TechEffect
CoreStats <-- TechEffect
AirStats <-- TechEffect
SortieStats <-- TechEffect
NavalStats <-- TechEffect
GroundAttack <-- TechEffect
TechEffect <- Unit
class TechPrerequisite {
name: string
level: int
is_achieved: bool
}
class Events {
emitTechLevelChanged(name, level)
listenTechLevelChanged(name)
}
Events <-- Tech
class Tech {
name: string
level: int
max_level: const int
effects: TechEffect[]
prerequisites: TechPrerequisite[]
update_unit(unit_name)
getData()
}
Unit <--- Tech
TechEffect --* Tech
TechPrerequisite <-- Tech
UnitManager <-- Tech
class TechManager {
techs: map<string, Tech>
increaseLevel(string)
decreaseLevel(string)
}
Tech <-- TechManager
Events <-- TechManager
@enduml |
b87f993b0da922e1a3c2d8ac05713bdcefab2a6f | e48aa6eb3063f355a4d92a6faa1570453d8f3215 | /design/aggregate-order.puml | cd4125f8c5333117936d850885b11bd38e523a9b | [] | no_license | yaoyaocjj/exam-plantform | 7e10d79fa7383d38a4dccd47f5b64c9f1f8b7cd3 | 899bff475e5125bb74a2ef27021b65657298919f | refs/heads/master | 2022-11-09T08:13:49.363564 | 2020-07-04T12:56:41 | 2020-07-04T12:56:41 | 276,091,946 | 1 | 0 | null | 2020-06-30T12:27:28 | 2020-06-30T12:27:27 | null | UTF-8 | PlantUML | false | false | 450 | puml | @startuml
package order <<Aggregate>> {
class Order <<Aggregate Root>> {
userId: String
updateOrderItemPrice()
updateAddress()
{static} create(): Order
}
class "Address" as a <<Value Object>>{
zipCode: String
detail: String
}
class OrderItem <<Entity>> {
quality: Number
price: Money
}
Order "1" *-- "1" a
Order "1" *-- "1..99" OrderItem
}
@enduml |
52f0fb45fb7bd9504ae97d78765a51e659f147ea | 7a1d90175f78470e0b54d5431d12c21132d826ff | /docs/_site/user-status/availability.puml | 9aae4ca365c281bec43fa3a398920fbfacba1c1d | [
"CC-BY-3.0",
"Apache-2.0"
] | permissive | reTHINK-project/dev-hyperty | bc4a17625fd2ad4f29f220413682570882a115d2 | 04dcfdb817161ad58ce13878be392f9b6d3ac3df | refs/heads/master | 2020-12-03T03:47:35.106591 | 2019-07-02T15:44:32 | 2019-07-02T15:44:32 | 56,135,123 | 0 | 3 | Apache-2.0 | 2019-05-23T10:16:43 | 2016-04-13T08:37:48 | JavaScript | UTF-8 | PlantUML | false | false | 742 | puml | @startuml "availability-context.png"
Package Availability {
class Availability {
url : URL.URL
reporter : URL.HypertyURL
schema : URL.HypertyCatalogueURL
name : string
scheme = "context"
id: string
type = "availability"
description ?: string
time?: date
values: AvailabilityStatus[]
tag?: string
}
class AvailabilityValue {
name : string
value : AvailabilityStatus
time ?: date
updateTime ?: date
expires ?: date
address ?: URL.HypertyRuntimeURL
}
enum AvailabilityStatus {
AVAILABLE
UNAVAILABLE
AWAY
BUSY
}
}
Availability *-- "1..*" AvailabilityValue
Availability -up-|> Context.Context
AvailabilityValue -up-|> Context.ContextValue
Availability --> HypertyResource.HypertyResourceType
@enduml
|
5f319e6e3aa916f865f9e1a11d4ee8439c5912cf | 968d90f0bdb30c52b4fb4244f2a49db7d02a245c | /src/main/java/ex44_d/ex44.puml | 5b2478278fc919cc939fb71b13f1d0b53ce8e3d1 | [] | no_license | lacostamejia/LuisAcosta-cop3330-assignment3 | 7615763567b7261a94da27f757f0b77530ac276f | ca68e13444bee2c7c128a69bb3a434f6af4e50f7 | refs/heads/main | 2023-06-06T12:39:07.537617 | 2021-06-21T01:02:33 | 2021-06-21T01:02:33 | 377,705,861 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 277 | puml | @startuml
'https://plantuml.com/sequence-diagram
class ex44{
+name : String
+lol : Boolean
+parse : new JSON_function
+main()
}
class JSON_function{
+Parse(String find)
}
ex44 --> JSON_function: (1) Sending all the information so \n we can parse the text file JSON
@enduml |
fbb60d06d5fd5e6bc5f1f3159e4acd7a42109e4c | 3799485d044ea837adff21cb08b03fef972fcf03 | /ArtOrders/ArtOrders.plantuml | 8087391a78d9aa4277fa8b76ecc125c6b82da221 | [] | no_license | KateChaus/artOrders | 4d3f5552fbaed5a96d7050562cc1a9cf5fd7076e | 2ef2c87d48c9aebab5746ea2dd53e66e33433362 | refs/heads/master | 2022-09-20T21:16:40.879672 | 2020-05-30T17:13:23 | 2020-05-30T17:13:23 | 268,121,691 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 5,417 | plantuml | @startuml
title __ARTORDERS's Class Diagram__\n
namespace orders {
class orders.Main {
}
}
namespace orders {
namespace controller.queries {
class orders.controller.queries.ArtOrderController {
}
}
}
namespace orders {
namespace controller.queries {
class orders.controller.queries.GalleryController {
}
}
}
namespace orders {
namespace controller.queries {
class orders.controller.queries.OrderApplicationController {
}
}
}
namespace orders {
namespace controller.queries {
class orders.controller.queries.UserController {
}
}
}
namespace orders {
namespace controller.utils {
class orders.controller.utils.DBConnector {
}
}
}
namespace orders {
namespace controller.utils {
class orders.controller.utils.Hasher {
}
}
}
namespace orders {
namespace model.entities {
class orders.model.entities.ArtOrder {
}
}
}
namespace orders {
namespace model.entities {
class orders.model.entities.Gallery {
}
}
}
namespace orders {
namespace model.entities {
class orders.model.entities.OrderApplication {
}
}
}
namespace orders {
namespace model.entities {
class orders.model.entities.User {
}
}
}
namespace orders {
namespace model.enums {
enum OrderStatus {
}
}
}
namespace orders {
namespace model.enums {
enum OrderStyle {
}
}
}
namespace orders {
namespace model.enums {
enum OrderType {
}
}
}
namespace orders {
namespace view.panels {
class orders.view.panels.OrdersPanel {
}
}
}
namespace orders {
namespace view.panels {
class orders.view.panels.ProfilePanel {
}
}
}
namespace orders {
namespace view.panels {
class orders.view.panels.UsersPanel {
}
}
}
namespace orders {
namespace view.renderers {
class orders.view.renderers.GalleryRenderer {
}
}
}
namespace orders {
namespace view.renderers {
class orders.view.renderers.ImageRenderer {
}
}
}
namespace orders {
namespace view.renderers {
class orders.view.renderers.OrderApplicationRenderer {
}
}
}
namespace orders {
namespace view.renderers {
class orders.view.renderers.OrderRenderer {
}
}
}
namespace orders {
namespace view.renderers {
class orders.view.renderers.UserRenderer {
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.LoginWindow {
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.MainWindow {
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.OpenOrderWindow {
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.ProfileEditorWindow {
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.RegisterWindow {
}
}
}
namespace orders {
namespace view.windows {
class orders.view.windows.SearchWindow {
}
}
}
namespace test {
class test.UserControllerTest {
}
}
orders.model.entities.ArtOrder o-- orders.model.entities.User : customer
orders.model.entities.ArtOrder o-- orders.model.entities.OrderApplication : orderApplication
orders.model.entities.ArtOrder o-- orders.model.enums.OrderStatus : orderStatus
orders.model.entities.Gallery o-- orders.model.entities.User : user
orders.model.entities.OrderApplication o-- orders.model.entities.User : artist
orders.model.entities.OrderApplication o-- orders.model.enums.OrderStyle : style
orders.model.entities.OrderApplication o-- orders.model.enums.OrderType : type
orders.view.panels.OrdersPanel -up-|> javax.swing.JPanel
orders.view.panels.ProfilePanel -up-|> javax.swing.JPanel
orders.view.panels.UsersPanel -up-|> javax.swing.JPanel
orders.view.renderers.GalleryRenderer .up.|> javax.swing.ListCellRenderer
orders.view.renderers.GalleryRenderer -up-|> javax.swing.JPanel
orders.view.renderers.ImageRenderer .up.|> javax.swing.ListCellRenderer
orders.view.renderers.ImageRenderer -up-|> javax.swing.JPanel
orders.view.renderers.OrderApplicationRenderer .up.|> javax.swing.ListCellRenderer
orders.view.renderers.OrderApplicationRenderer -up-|> javax.swing.JPanel
orders.view.renderers.OrderRenderer .up.|> javax.swing.ListCellRenderer
orders.view.renderers.OrderRenderer -up-|> javax.swing.JPanel
orders.view.renderers.UserRenderer .up.|> javax.swing.ListCellRenderer
orders.view.renderers.UserRenderer -up-|> javax.swing.JPanel
orders.view.windows.MainWindow o-- orders.view.panels.OrdersPanel : ordersPanel
orders.view.windows.MainWindow o-- orders.view.panels.ProfilePanel : profilePanel
orders.view.windows.MainWindow o-- orders.model.entities.User : user
orders.view.windows.MainWindow o-- orders.view.panels.UsersPanel : usersPanel
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
|
44d25d912cdcf9758ec132728b97fbe94cabc303 | f209b75f7e591c10d7dc1c0c97e462a0167b11fd | /doc/class-diagram.puml | 5fd4eee629ddd524e6d53602cf122c61322681c2 | [
"MIT"
] | permissive | darkwebdesign/doctrine-enhancement-pack | 631a936ce63e3c265656734c4bfa7f7214175e66 | 97cb24302f08810b1de8bfb9e2a0aeda687621de | refs/heads/master | 2022-12-31T20:23:51.590004 | 2020-10-28T08:58:36 | 2020-10-28T08:58:36 | 105,874,768 | 4 | 0 | MIT | 2020-10-28T08:58:38 | 2017-10-05T10:02:59 | PHP | UTF-8 | PlantUML | false | false | 956 | puml | @startuml
interface Doctrine\Common\EventSubscriber {
}
class EnhancedEventSubscriber implements Doctrine\Common\EventSubscriber {
- $eventManager : Doctrine\Common\EventManager
- $originalEntities : object[]
+ __construct(Doctrine\Common\EventManager $eventManager) : void
+ prePersist(Doctrine\ORM\Event\LifecycleEventArgs $args) : void
+ preUpdate(Doctrine\ORM\Event\PreUpdateEventArgs $args) : void
+ preRemove(Doctrine\ORM\Event\LifecycleEventArgs $args) : void
+ postPersist(Doctrine\ORM\Event\LifecycleEventArgs $args) : void
+ postUpdate(Doctrine\ORM\Event\LifecycleEventArgs $args) : void
+ postRemove(Doctrine\ORM\Event\LifecycleEventArgs $args) : void
+ getSubscribedEvents() : array
}
class Events {
PRE_PERSIST = 'prePersist';
PRE_UPDATE = 'preUpdate';
PRE_REMOVE = 'preRemove';
POST_PERSIST = 'postPersist';
POST_UPDATE = 'postUpdate';
POST_REMOVED = 'postRemove';
}
@enduml |
7c3b54a2042d2e43c294cdfc6e6d56b207f13883 | f5f59016295a183565af167a861e2c8db9f1b070 | /diagrams/src/lib/utility/Application.Utility/ClientLibrary/Payment/TransferData.puml | 2b481076bc39e7f157aafedc1b3d98c07ad775ba | [
"MIT"
] | permissive | converge-app/collaboration-broker-service | fb21788289134c265f1cd5db3ceaa3f32ba18406 | 69c676a5bbb3e602f939f9c91680560a6c63926a | refs/heads/master | 2023-03-19T11:36:58.937045 | 2019-12-17T12:06:26 | 2019-12-17T12:06:26 | 218,333,241 | 0 | 0 | MIT | 2023-03-04T01:16:20 | 2019-10-29T16:29:32 | C# | UTF-8 | PlantUML | false | false | 159 | puml | @startuml
class TransferData {
+ SenderId : string <<get>> <<set>>
+ ReceiverId : string <<get>> <<set>>
+ Amount : long <<get>> <<set>>
}
@enduml
|
1331c36e95e4368ad2cd48255039a96acbc6375e | 9e9676cdfe6aea6d2db11068ad34eda0c3376d56 | /deliveries/final/uml/adrenaline-cli.puml | 602ffead5c8e47146e731435d8ec5f6337f8c5c8 | [
"MIT"
] | permissive | slinkydeveloper/ing-sw-2019-guardiani-mucignat-lischio | 621f17a7631d6c8c3a2ec3b3a7443e76de47e565 | f985abed3a1f7e2c95ae7fa20dcab1870840d110 | refs/heads/master | 2022-12-26T02:14:57.116316 | 2019-07-05T09:49:41 | 2019-07-05T09:49:41 | 176,522,157 | 0 | 0 | MIT | 2020-10-13T13:22:31 | 2019-03-19T13:50:02 | HTML | UTF-8 | PlantUML | false | false | 353 | puml | @startuml
package com.adrenalinici.adrenaline.cli <<Folder>> {
class "BufferedConsoleOut"
class "CliGameViewProxy"
class "PrintUtils"
}
class "BufferedConsoleOut" {
writer : BufferedWriter
flush()
println(String)
}
class "CliGameViewProxy" {
view : BaseCliGameView
handleNewServerMessage(OutboxMessage)
}
class "PrintUtils"
@enduml |
868e2a1774ef7ee59b328168c578915e2d747bd8 | 5c444423b1f6f7b7699611395f7c5e5e5b0477ee | /DiveIntoDesignPatterns/creational/Builder/main.plantuml | 156108653cbffd4e6025a4a651ca56bc7d0fcb4a | [
"MIT"
] | permissive | zhengtong0898/books | f7951cbb949ba2cc4ff6c3015c031f54c127d490 | 65ca7d7cfaf3d07f910a0ba324e00017022c68ee | refs/heads/master | 2021-06-21T14:40:34.883570 | 2020-07-16T02:56:34 | 2020-07-16T02:56:34 | 254,500,102 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,003 | plantuml | @startuml
hide empty members
class Car {}
class Manual {}
interface Builder << interface >> {
+ reset()
+ void set_seats(std::string number)
+ void set_engine(std::string engine)
+ void set_trip_computer()
+ void set_gps()
}
class CarBuilder << concrete builder >> {
- Car & car
+ reset()
+ void set_seats(std::string number)
+ void set_engine(std::string engine)
+ void set_trip_computer()
+ void set_gps()
+ Car get_result()
}
class CarManualBuilder << concrete builder >> {
- Manual & manual
+ reset()
+ void set_seats(std::string number)
+ void set_engine(std::string engine)
+ void set_trip_computer()
+ void set_gps()
+ Manual get_result()
}
class Director {
- Builder & builder
+ reset(Builder & builder)
+ makeSUV()
+ makeSportsCar()
}
CarBuilder "one" --> "one" Car
CarManualBuilder "one" --> "one" Manual
Builder <|.down. CarBuilder
Builder <|.down. CarManualBuilder
Builder "one" <-left-o "one" Director: " 聚合 "
@enduml |
c936298d6408d57d08db2bacd8fb0e2dfcd1f4d8 | c067a7796bba1bcd97ed5d7a5a7877a3217d532c | /uml/Properties/Proxy/Dati.puml | 5b52f4d55117d90bfb67c13f08f1df319b6438bf | [] | no_license | inifares23lab/PMO_Proj-DatiCovid | 6897e2d04753c6faff3045aa2ac8822035683e14 | 186ec91ef3eb5647439c346909bfd8e7b3fb9e6e | refs/heads/master | 2022-10-22T03:17:14.494294 | 2020-06-16T21:10:50 | 2020-06-16T21:10:50 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 220 | puml | @startuml
class Dati {
- _url : string
- _path : string
- flag : bool
<<internal>> Dati(url:string, path:string, b:bool)
+ DownloadDati() : JArray
- ParseDati() : JArray
}
IDati <|-- Dati
@enduml
|
1548ad0d4de3e8216665ceeb95bdc9e48a3ded24 | c071afa8c9ef0c26eae424fb721f292f903d7289 | /gfx/uml/DriverManager.plantuml | 357269726c8b841f1cdc765f451a5fe3a753aa4a | [] | no_license | Konafets/thesis | 4628b7e675164690e4b1a8345eecd11c20d9cbfc | 94a27a586356d3b7356d0690cf4ed5dd6a0dc6b7 | refs/heads/master | 2016-09-06T18:47:47.614390 | 2014-05-26T17:51:30 | 2014-05-26T17:51:30 | 18,177,420 | 3 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 168 | plantuml | @startuml
set namespaceSeparator none
hide empty members
hide empty methods
class Doctrine.DBAL.DriverManager {
+getConnection(): Doctrine.DBAL.Connection
}
@enduml
|
a56eb9460d1a44dc2a4dfee7d15d14811e5072d7 | 2320185f3c6235480356afc00c054ea8ef29d440 | /docs/Test S3upload/uml/s3_upload_original_deps.puml | 69363e0ec13106985f05a0874ce2974b7d0da0f6 | [
"MIT"
] | permissive | prufrock/flowerbug | d117a3841940861a0dec809e5500fa2c4622a9c4 | 88e36d26f9415a3801987a832bfcef508cd35c8a | refs/heads/master | 2019-07-09T07:40:55.254051 | 2018-04-20T02:44:59 | 2018-04-20T02:44:59 | 1,151,857 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 317 | puml | @startuml
class php_standard_library {
resource fopen(string $path)
}
class S3Client {
stdClass putObject(array $args)
waitUntil($waiter, array $input)
}
Command <|-- S3Upload
S3Upload <-- S3UploadService
S3Upload <-- php_standard_library
S3UploadService <-- S3Client
S3UploadService <-- S3Exception
@enduml
|
d06e3fdaa4edfc7fc49b59fb8325e7d02e2693d3 | 127929127483e0263242a9dd187c7e0d2548be7f | /Gestão e Virtualização de Redes/Gestão de Redes/Trabalhos Práticos/SNMP-Monitor/M1/SNMP-Manager/src/src.plantuml | 0a04dd68a78d832c7f686254711463d171d98019 | [] | no_license | chico2911/MIEI | fce493c77fb3f4657c940f7abfcac6da3d314eaa | c7618d585825e9e10d766eeb51d77773a0420c5c | refs/heads/main | 2023-06-17T06:11:23.538885 | 2021-02-28T17:10:59 | 2021-02-28T17:10:59 | 333,534,779 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,313 | plantuml | @startuml
title __Diagrama de Classes__\n
namespace SNMPMonitor {
class Host {
- adress : String
- communityTarget : String
- port : String
+ Host()
+ getAdress()
+ getCommunityTarget()
+ getPort()
+ setAdress()
+ setCommunityTarget()
+ setPort()
+ toString()
}
}
namespace SNMPMonitor {
class Parser {
~ path : String
+ Parser()
+ now()
}
}
namespace SNMPMonitor {
class Process {
- cpu : int
- index : int
- ram : int
- timestamp : Timestamp
+ Process()
+ Process()
+ clone()
+ getCpu()
+ getIndex()
+ getRam()
+ getTimestamp()
+ setCpu()
+ setIndex()
+ setRam()
+ toObject()
+ toString()
}
}
namespace SNMPMonitor {
class SNMPClient {
~ snmp : Snmp
~ target : CommunityTarget
- hostAdress : String
- hostCommunityTarget : String
- hostPort : String
+ SNMPClient()
+ SNMPClient()
+ doWalk()
+ start()
- configTarget()
}
}
namespace SNMPMonitor {
class SNMPMonitor {
~ hostList : List<Host>
~ threadWorkers : List<Worker>
+ SNMPMonitor()
+ createWorkers()
{static} + main()
}
}
namespace SNMPMonitor {
class Worker {
~ online : boolean
~ processMap : Map<Integer, Process>
~ time : int
- thread : Thread
+ Worker()
+ Worker()
+ postHost()
+ registerHost()
+ run()
- giveMapCPUEntrys()
- giveMapEntrys()
- giveMapRamEntrys()
- writeLog()
- writeTimeStamp()
}
}
namespace SNMPMonitor {
class databaseConnecter {
~ adress : String
~ jsonParser : JSONParser
~ processMap : Map<Integer, Process>
+ databaseConnecter()
+ getProcess()
+ postProcess()
+ putProcess()
+ run()}
}
SNMPMonitor "1" *-- "1" Parser
Worker o-- databaseConnecter
Worker "1" *-- "n" Process
Worker "1" *-- "1" SNMPClient
SNMPMonitor "1" *-- "n" Worker
SNMPMonitor o-- Host
@enduml
|
cddd43d8bf83f41320e1367f30f43658c1c03cb5 | eb70c9d0d749bc70ccc1867a508b9053bc190a06 | /dds/doc/diagram-design/class.puml | 87c18b976e9ad582cb02fd3f043c7d1fc0902b02 | [
"Apache-2.0"
] | permissive | keivanh/SOSS-DDS | 05ee34ae9d9b4135117c7e116104742ff1d3fcb0 | a19e68abf33400a4dac4b7454c1562e29c13572e | refs/heads/master | 2022-12-10T19:29:50.508294 | 2019-10-31T09:32:11 | 2019-10-31T09:32:11 | 292,014,424 | 0 | 0 | Apache-2.0 | 2020-09-01T14:05:16 | 2020-09-01T14:05:15 | null | UTF-8 | PlantUML | false | false | 994 | puml | @startuml
SystemHandler "0..n" *--> Publisher
SystemHandler "0..n" *--> Subscriber
SystemHandler *--> Participant
SystemHandler ..> dtparser
Participant <-- Publisher
Participant <-- Subscriber
Publisher ..> Conversion
Subscriber ..> Conversion
class SystemHandler {
+ configure() override
+ okay() override
+ spin_once() override
+ subscribe() override
+ advertise() override
}
class Participant {
- dds::participant
- map<dds::dynamic_types>
+ register_dynamic_type(name, builder)
+ create_dynamic_data(name)
}
class Publisher {
- dds::Publisher
- dds::dynamic_data
- topic_name
- message_type
+ publish(soss_message)
}
class Subscriber {
- dds::subscriber
- dds::dynamic_data
- topic_name
- message_type
+ receive(dynamic_type_message)
}
class Conversion << (S,#FF7700) Singleton >> {
+ dds_message soss_to_dds(soss_message)
+ soss_message dds_to_soss(dds_message)
}
package dtparser {
}
@enduml
|
865e16da59c4d40555e0993801596aa6fdaf4c31 | 2cd586389dbc7e67937e88ba81d8441d5dccbc45 | /uml/GUI_uml.puml | 9d570711d971fdb08b04b9384deae93929dbce75 | [] | no_license | xFebreze/Dussuau-cop3330-assignment4part2 | 56f52c9e60d04d6afcc471d1a856cf55f3986d7b | 4c834440325b3e4f452046a42b50ac433cb7c708 | refs/heads/master | 2023-06-16T12:50:18.987127 | 2021-07-15T03:26:49 | 2021-07-15T03:26:49 | 384,866,331 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 966 | puml | @startuml
'https://plantuml.com/class-diagram
class App{
main()
start()
}
class ItemController{
ItemList: List<Item>
TableView: ItemDisplay
TextField: DescriptionField
DatePicker: DueDate
CheckBox: completeItems
CheckBox: incompleteItems
addItemButtonClicked()
removeItemButtonClicked()
clearItemsButtonClicked()
editItemDescriptionButtonClicked()
editItemDueDateButtonClicked()
markItemCompleteButtonClicked()
DisplayItemsButtonClicked()
SaveListButtonClicked()
LoadListButtonClicked()
HelpButtonClicked()
addItem()
removeItem()
clearItems()
editItemDescription()
editItemDueDate()
markItemComplete()
DisplayItems()
SaveList()
LoadList()
ReadFile()
alerts()
}
class Item{
Description: String
DueDate: String 'YYYY-MM-DD'
Completion: Boolean
constructors()
getters()
}
Item <-* ItemController
App *--> ItemController
@enduml |
ddff3dd0596a9bfa7ee9ceed27c10b3ad4b1a4a6 | 83e7e36f936f6f329518855c1da0d681db5f9de1 | /Lists/List.puml | 6f2402793cdfd2ac65ca235b14707f421839229f | [] | no_license | SupaGait/AlgorithmsTesting | 327497473fd9510a0321b3fa0bc7daeb0ff1a59b | 0450d2f7e100f2a3f95b7f1be3061b46e2bf11ee | refs/heads/master | 2021-01-10T15:51:25.188118 | 2016-02-22T16:48:32 | 2016-02-22T16:48:32 | 48,748,112 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 912 | puml | @startuml
abstract List<T>{
+ virutal ~List()
+ add(T element)
+ remove(uint position)
+ getAt(uint position) : T&
+ isEmpty() : bool
+ size(): uint
}
class ArrayList<T>{
- arrayData : uniquePtr<T>
- arraySize : uint
+ ArrayList(uint size)
}
note bottom of ArrayList
Array based implementation
- Elements are contiguously laid out in memory
- If more elements are added then the array can hold,
the array with elements is re-allocated
end note
class LinkedList<T>{
- head : Node<T>
- size : uint
}
note bottom of LinkedList
Dynamic based implementation
- Elements are possibly spread across memory
- Each added element is newly created in memory
end note
class Node<T>{
- previous : Node<T>
- next : Node<T>
- element : T
+ getElement() : T
+ setNext(Node<t>)
+ setPrevious(Node<t>)
}
List <|.. ArrayList
List <|.. LinkedList
LinkedList -> Node
@enduml |
8690fabea68902656a3d17079df5b2d92d3b3dab | 02b0d37dad8182bfbc5414bbd250f36c6e888b28 | /PlantUml/Scripts/Libs/Log.puml | 38913f77d97dd3a46ee50ad8ca4b81e23167d55e | [] | no_license | Darcy97/U3D_Libs | ee8b1afb4e4cdc99fd80ab404fc8171cf2181ca0 | cc6143112916cafa346a00bc1fab7841b7888444 | refs/heads/master | 2020-06-21T16:37:56.155301 | 2019-08-20T07:04:09 | 2019-08-20T07:04:09 | 197,504,293 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 278 | puml | @startuml
class Log {
+ {static} Print(message:string, details:string) : void
+ {static} Print(messageObj:Object, details:string) : void
+ {static} Error(message:string, details:string) : void
+ {static} Error(messageObj:Object, details:string) : void
}
@enduml
|
da6b6ccc8bbe06399fde424f1c3f6953258cbf0f | 91cc372e0ac19fe7dd67f5c712801de341d975b8 | /uml/keb 208/data.puml | 7948cd6f4e7c765d3f6433e94dc318f5134c080b | [] | no_license | Alser69rus/A3135 | 76d62eb826d22e96da22774d9210927c4f7a397d | c06155783a1ffa8ff79f746edf441c6df1e82f2f | refs/heads/master | 2022-12-07T12:10:41.344543 | 2020-08-30T14:51:52 | 2020-08-30T14:51:52 | 291,405,161 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 358 | puml | @startuml
class Fill{
t1:datetime
t2:datetime
empty:bool=True
time()
text()
result()
start()
stop()
reset()
}
class Junctions{
empty:bool=True
success()
fail()
reset()
text()
result()
}
class Empty{
t1:datetime
t2:datetime
empty:bool=True
time()
text()
result()
start()
stop()
reset()
}
class Keb{
}
Keb *-- Fill
Keb *-- Junctions
Keb *-- Empty
@enduml |
ea31c72427cc48ded7bac8d29f65d4e2630d61aa | 9e9676cdfe6aea6d2db11068ad34eda0c3376d56 | /deliveries/final/uml/adrenaline-gui.puml | 6a1323b0ec8efc4093fc9c0d307e107ca64b289e | [
"MIT"
] | permissive | slinkydeveloper/ing-sw-2019-guardiani-mucignat-lischio | 621f17a7631d6c8c3a2ec3b3a7443e76de47e565 | f985abed3a1f7e2c95ae7fa20dcab1870840d110 | refs/heads/master | 2022-12-26T02:14:57.116316 | 2019-07-05T09:49:41 | 2019-07-05T09:49:41 | 176,522,157 | 0 | 0 | MIT | 2020-10-13T13:22:31 | 2019-03-19T13:50:02 | HTML | UTF-8 | PlantUML | false | false | 3,521 | puml | @startuml
package com.adrenalinici.adrenaline.gui <<Folder>> {
class "GuiUtils"
class "GuiView"
}
package com.adrenalinici.adrenaline.gui.controller <<Folder>> {
class "ConnectMatchController"
class "DashboardCellController"
class "DashboardGamePaneController"
class "MainGamePaneController"
class "MyStatusGamePaneController"
class "OtherPlayersGamePaneController"
class "PlayerGamePaneController"
class "StartGuiController"
}
class "ConnectMatchController" {
portText : TextField
hostText : TextField
socketButton : Button
rmiButton : Button
matchesListView : ListView<String>
newMatchButton : Button
view : GuiView
matches : Map<String, Set<PlayerColor>>
registeredHandler : String
startingNewMatch : Boolean
initialize()
onConnectClicked(MouseEvent)
onStartNewMatchClicked(MouseEvent)
}
class "DashboardCellController" {
position : Label
players : HBox
content : Label
initialize()
}
class "DashboardGamePaneController" {
dashboardGridPane : GridPane
remainingSkullsLabel : Label
playerTurnLabel : Label
frenzyModeLabel : Label
playersKillTrackHBox : HBox
cellControllers : DashboardCellController[][]
initialize()
initializeView(DashboardChoice)
initializeView(LightGameModel, PlayerColor)
showGameInfo(LightGameModel)
updateCell(DashboardCellUpdatedEvent)
updateGameModel(GameModelUpdatedEvent)
updateTurnOfPlayer(PlayerColor)
}
class "GuiUtils"
class "GuiView" {
eventBus : ViewEventBus
networkAdapterThread : Thread
adapter : ClientNetworkAdapter
startNetworkAdapter()
stopNetworkAdapter()
}
class "MainGamePaneController" {
dashboardController : DashboardGamePaneController
thisPlayerController : MyStatusGamePaneController
otherPlayersController : OtherPlayersGamePaneController
view : GuiView
registeredHandler : String
firstUpdate : boolean
openedDialog : Dialog
initialize()
start()
}
class "MyStatusGamePaneController" {
playerColorLabel : Label
damagesGrid : GridPane
marksGrid : GridPane
pointsLabel : Label
timesKilledLabel : Label
yellowAmmoLabel : Label
redAmmoLabel : Label
blueAmmoLabel : Label
powerupHBox : HBox
gunsHBox : HBox
thisPlayer : PlayerColor
otherPlayers : List<PlayerColor>
dashboardCellPositions : List<Position>
view : GuiView
initialize()
initializeView(PlayerColor, LightGameModel)
update(PlayerDashboardUpdatedEvent)
}
class "OtherPlayersGamePaneController" {
otherPlayersVBox : VBox
playerGamePaneControllers : Map<PlayerColor, PlayerGamePaneController>
initialize()
initializePlayers(List<PlayerColor>, LightGameModel)
update(PlayerDashboardUpdatedEvent)
}
class "PlayerGamePaneController" {
playerColorLabel : Label
damagesGrid : GridPane
marksGrid : GridPane
pointsLabel : Label
timesKilledLabel : Label
initializePlayer(PlayerColor, LightGameModel)
updatePlayerInfo(List<PlayerColor>, List<PlayerColor>, int, int)
}
class "StartGuiController" {
startButton : Button
changeSceneRmiSocket(ActionEvent)
}
"ConnectMatchController" --> "GuiView" : view
"MainGamePaneController" --> "DashboardGamePaneController" : dashboardController
"MainGamePaneController" --> "GuiView" : view
"MainGamePaneController" --> "MyStatusGamePaneController" : thisPlayerController
"MainGamePaneController" --> "OtherPlayersGamePaneController" : otherPlayersController
"MyStatusGamePaneController" --> "GuiView" : view
"OtherPlayersGamePaneController" --> "PlayerGamePaneController" : playerGamePaneControllers
@enduml |
89fea30783f8c29d928aee97962d348c0702d563 | 95b53785927421f87a56eec40ba728efb86c3e9c | /2022-tavasz/rails-tanfolyam/first/er.plantuml | c85e0b7283b9f304a3f373b298a583b7f529ee61 | [] | no_license | kir-dev/tanfolyam | 725933f7b187a5df3295578e93765fc837a9d253 | c5ca0ed9393728af02a6d95c2a15cdf82b61eec0 | refs/heads/master | 2023-05-25T20:06:55.433094 | 2023-05-09T09:56:11 | 2023-05-09T09:56:11 | 16,394,462 | 4 | 1 | null | 2023-05-09T09:56:13 | 2014-01-30T23:31:52 | HTML | UTF-8 | PlantUML | false | false | 638 | plantuml | @startuml modell
!theme aws-orange
skinparam classFontSize 15
hide circle
class Jam {
+ int id
+ datetime date_of_creation
+ string recipient_name
}
class JamType {
+ int id
+ string name
}
Jam "0..*" --- "1" JamType
note right of Jam::id
Belső használatú id, a lekvárok egyszerű megkülömbözetésére
end note
note left of Jam::date_of_creation
A lekvár elkészítésének az ideje
end note
note right of Jam::recipient_name
Annak a neve akinek a lekvárt szánják
end note
note right of JamType::name
A típus neve, Pl: 'Barackos'
end note
@enduml |
c145837875a9ff9f101dd18e427f38f18e19e739 | dc6bc4b4d04aaedd50aaa703bfa05972a32239b0 | /openapi2puml-core/src/main/java/org/openapi2puml/openapi/plantuml/plantuml.plantuml | 229ec0bf3510959f5e798ae3ec555516a62ee208 | [
"Apache-2.0"
] | permissive | openapi2puml/openapi2puml | 1a4586b475b88e5c0f2f676fbf85895d6ab745d7 | db2886ffd2b3e4302c8647ce93a9a229391e912a | refs/heads/master | 2022-02-28T21:11:18.269239 | 2022-01-24T09:25:48 | 2022-01-24T09:25:48 | 203,056,881 | 7 | 6 | Apache-2.0 | 2022-01-24T09:25:49 | 2019-08-18T21:10:51 | Java | UTF-8 | PlantUML | false | false | 1,780 | plantuml | @startuml
title __PLANTUML's Class Diagram__\n
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.FormatUtility {
{static} + toTitleCase()
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.MustacheUtility {
{static} - LOGGER : Logger
+ createPlantUmlFile()
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.PlantUMLCodegen {
{static} ~ CLASS_DIAGRAMS : String
{static} ~ ENTITY_RELATIONS : String
{static} ~ INTERFACE_DIAGRAMS : String
{static} ~ TITLE : String
{static} ~ VERSION : String
{static} - LOGGER : Logger
- generateDefinitionModelOnly : boolean
- includeCardinality : boolean
- swagger : Swagger
- targetLocation : File
+ PlantUMLCodegen()
+ convertSwaggerToPlantUmlObjectModelMap()
+ generatePlantUmlFile()
}
}
}
}
namespace org.openapi2puml {
namespace openapi {
namespace plantuml {
class org.openapi2puml.openapi.plantuml.PlantUMLGenerator {
{static} - LOGGER : Logger
+ PlantUMLGenerator()
+ transformOpenApi2Puml()
- generateUmlDiagramFile()
}
}
}
}
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
|
9d75369d788bcfa02cace9f5fdde6f4abc92f2d6 | d3a876dfe2851c165719340252ac30e60912f6e6 | /bg-manager/bg-designPattern/src/main/java/com/mhm/struct/adapter/adapter.puml | 54f924227e756ac8ce0c9b98b367309c30c91a48 | [] | no_license | 289562326/bigdata_mhm | 846af37dbc8a00580b3c0424f1cebc21d659c672 | 210636d2ea350c0228deccf1485d3d1a6eb4a39c | refs/heads/master | 2022-07-10T14:41:56.081002 | 2021-04-29T11:33:58 | 2021-04-29T11:33:58 | 190,759,465 | 0 | 0 | null | 2022-06-17T03:33:35 | 2019-06-07T14:42:09 | Java | UTF-8 | PlantUML | false | false | 324 | puml | @startuml
Target <|-- ConcreteTarget
Target <|-- Adapter
Adaptee <|-- Adapter
Adapter <|-- OjectAdapter
interface Target{
request():void
}
class Adaptee{
adpaterRequest():void
}
class ConcreteTarget{
request():void
}
class Adapter{
request():void
super.adpaterRequest()
}
class OjectAdapter{
request():void
}
@enduml |
a908fb4f9c2f71fbc033f6e68d965279f8918baa | 06b4f9b29e51db9eef79b9f9828f3aa369840ec1 | /Deliverables/Oblig3/src/main/java/map/map.plantuml | 761b82079ecef0b6a3324ffc7864157c6280b30f | [] | no_license | inf112-v19/Thebadguys | d650f57d5b23824e82498cfc55c7026d29a59762 | ec1cbbd1ab466b1482fb0a72b466f351481d4917 | refs/heads/master | 2020-04-19T11:14:13.465654 | 2019-05-03T17:29:09 | 2019-05-03T17:29:09 | 168,161,605 | 0 | 0 | null | 2019-03-08T14:24:40 | 2019-01-29T13:44:35 | Java | UTF-8 | PlantUML | false | false | 1,305 | plantuml | @startuml
title __MAP's Class Diagram__\n
package map {
class GameMap {
# tiles : IGrid<MapTile>
# x : int
# y : int
+ GameMap()
+ getCell()
+ getHeight()
+ getPlayerGold()
+ getPlayerHitPoints()
+ getWidth()
+ isPlaying()
+ movePlayer()
+ playerCanGo()
+ isValidPosition()
}
}
package map {
interface IGameMap {
{abstract} + getCell()
{abstract} + getHeight()
{abstract} + getPlayerGold()
{abstract} + getPlayerHitPoints()
{abstract} + getWidth()
{abstract} + isPlaying()
{abstract} + movePlayer()
{abstract} + playerCanGo()
}
}
package map {
enum MapTile {
WALL
OPEN
PLAYER
MONSTER
FLAG
LASER
CONVEYERBELT
EXPRESSCONVEYERBELT
GEAR
CHECKPOINT
REPAIRSITE
}
}
package map {
class MovePlayerException {
{static} - serialVersionUID : long
+ MovePlayerException()
}
}
GameMap -up-|> IGameMap
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
|
cb0b7ee9a8044bb477c7cc601a86e581b0de33be | 9135671486239cf7d362921b4454b58553f7ed24 | /heranca/bin/questionario/oo.puml | e7035f5ffa4520584b76d9a894700ca492872ec9 | [] | no_license | LucianoOliver/cursoJava | 8e326d436ba56684fb988fb01170d15764544330 | a5f44ddd503778a15bbb1f173f87bc310bc7b0e0 | refs/heads/master | 2020-03-27T21:15:15.889782 | 2019-04-15T16:58:35 | 2019-04-15T16:58:35 | 147,128,549 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 313 | puml | @startuml
package exercicio05 {
class Animal {
+ andar()
+ correr()
}
class Mamifero {
+ mamar()
}
class Cachorro {
+ latir()
}
class Gato {
+ miar()
}
Animal <|-- Mamifero
Mamifero <|-- Cachorro
Mamifero <|-- Gato
}
@enduml |
af6f4f00e2af524272016b973e95450cc83f0e1c | 9b3f205e4d2ede67bea3d0edd3d79dabb329df5e | /shepherd/uml.puml | 2507e57b5fbe6fce03b8406f3fc5b910b62275ba | [] | no_license | oatleals/ShepherdUI | 6f86724dc89c54f6c660bbd6d3efb62d4de540fc | a18d67ee26b94db23276108849a8874753186b49 | refs/heads/main | 2023-04-26T00:53:12.826243 | 2021-05-12T01:11:30 | 2021-05-12T01:11:30 | 375,797,524 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,724 | puml | @startuml
set namespaceSeparator ::
class "shepherd::UI::HomePage.dart::HomePage" {
+_HomePageState* createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "shepherd::UI::HomePage.dart::HomePage"
class "shepherd::UI::HomePage.dart::_HomePageState" {
+Widget* build()
+void showClockInDialog()
+void showClockOutDialog()
}
"flutter::src::widgets::framework.dart::State" <|-- "shepherd::UI::HomePage.dart::_HomePageState"
class "shepherd::UI::ClockOutForm.dart::ClockOutForm" {
+_ClockOutFormState* createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "shepherd::UI::ClockOutForm.dart::ClockOutForm"
class "shepherd::UI::ClockOutForm.dart::_ClockOutFormState" {
+Widget* build()
+void recursiveShowDialog()
}
"flutter::src::widgets::framework.dart::State" <|-- "shepherd::UI::ClockOutForm.dart::_ClockOutFormState"
class "shepherd::UI::ClockInForm.dart::ClockInForm" {
+_ClockInFormState* createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-- "shepherd::UI::ClockInForm.dart::ClockInForm"
class "shepherd::UI::ClockInForm.dart::_ClockInFormState" {
+Widget* build()
}
"flutter::src::widgets::framework.dart::State" <|-- "shepherd::UI::ClockInForm.dart::_ClockInFormState"
class "shepherd::domain_data::LocalDBContainer.dart::LocalDBContainer" {
+Database* localdb
+Future<void>* init()
+Future<void>* insert()
}
"shepherd::domain_data::LocalDBContainer.dart::LocalDBContainer" o-- "sqflite_common::sqlite_api.dart::Database*"
class "shepherd::domain_data::WorkData.dart::WorkData" {
+bool* isClockIn
+bool* isAuthenticated
+int* userId
+int* clientId
+int* clientPass
+double* time
+double* latitude
+double* longitude
+List<String*>* tasks
+Map<String*, dynamic>* stringObjMap()
+Map<String*, String*>* stringStringMap()
}
class "shepherd::location::LocationFinder.dart::LocationFinder" {
+Location* location
-bool* _serviceEnabled
-PermissionStatus* _permissionGranted
+LocationData* locationData
+Future<void>* getLocation()
}
"shepherd::location::LocationFinder.dart::LocationFinder" o-- "location::location.dart::Location*"
"shepherd::location::LocationFinder.dart::LocationFinder" o-- "location_platform_interface::location_platform_interface.dart::PermissionStatus*"
"shepherd::location::LocationFinder.dart::LocationFinder" o-- "location_platform_interface::location_platform_interface.dart::LocationData*"
class "shepherd::provider::GlobalState.dart::GlobalState" {
+bool* isClockedIn
+String* clientId
+String* userId
+LocalDBContainer* localdbContainer
+bool* backendIsVerifying
+int* numTasks
+List<TextEditingController*>* taskControllers
+String* clockButtonRoute
+Text* clockButtonText
+TextEditingController* clientIDController
+TextEditingController* clientPassController
+void clockIn()
+void clockOut()
+void newTask()
}
"shepherd::provider::GlobalState.dart::GlobalState" o-- "shepherd::domain_data::LocalDBContainer.dart::LocalDBContainer*"
"shepherd::provider::GlobalState.dart::GlobalState" o-- "flutter::src::widgets::text.dart::Text*"
"shepherd::provider::GlobalState.dart::GlobalState" o-- "flutter::src::widgets::editable_text.dart::TextEditingController*"
"flutter::src::foundation::change_notifier.dart::ChangeNotifier" <|-- "shepherd::provider::GlobalState.dart::GlobalState"
class "shepherd::main.dart::MyApp" {
+Widget* build()
}
"flutter::src::widgets::framework.dart::StatelessWidget" <|-- "shepherd::main.dart::MyApp"
class "shepherd::controllers::ClockController.dart::ClockController" {
{static} +Future<void>* clockIn()
{static} +Future<void>* clockOut()
{static} +void showProgressIndicator()
}
@enduml |
ec25aef6aa349d79c7bcbb5d3256a17c697302b4 | 32400b49f1a61a28e7f823f4760bb40b46a1b560 | /library-api.puml | a2dc90d6f150eb2c986265fd181e110434920a8d | [] | no_license | wanno-drijfhout/Nerds.Library | 864a3f6aef93d648161907e3a1b5eeda96805be0 | ad3d438421d97adb11c53acc3256b69b0cb6592c | refs/heads/master | 2020-05-19T14:01:09.060243 | 2019-05-05T16:01:13 | 2019-05-05T16:01:13 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,271 | puml | @startuml
class Organization {
+Name
}
Organization *-- Books.Book
Business.BookBusiness --* Organization
package Books
{
class Book {
#ID
+UniqueBarcode
}
Book -> BookTemplate
class BookTemplate {
#ID
}
BookTemplate --> Publication
BookTemplate --> Title
BookTemplate o--> Author
BookTemplate o--> Genre
class Author {
#ID
+Name
+DayOfBirth
+DayOfDeath
}
class Publication {
+ISBN10
+ISBN13
+PublicationDate
}
Publication --> Publisher
class Publisher {
#ID
+Name
}
class Genre {
#ID
+Caption
}
class Title {
#ID
+Caption
+Subcaption
}
}
package Business
{
class BookBusiness {
+GetAvailableBooks(DateTime, Customer) : Book[]
+Reserve(Book,Customer) : Reservation
+Return(Book,Customer) : Reservation
}
BookBusiness o--> Reservation
BookBusiness o--> Review
BookBusiness o--> Availability
Books.Book "*" <-o BookBusiness
Books.BookTemplate "1" <- BookBusiness
class Reservation {
+BeginTerm
+EndTerm
+IsBookTaken
+IsBookReturned
}
Reservation --> Customer
Books.Book <.. Reservation
class Availability {
+BookId
+UniqueBarcode
+IsAvailable
}
class Customer {
#ID
+Name
+EmailAddress
}
class Review {
#ID
+Stars
+Text
}
Review --> Customer
}
@enduml |
4944b95d5c8bb75671acec9de3d0ebb3283a9be3 | e85b9c34f894b1bb48a1e75684ac25d2691c0709 | /bmcs_shear/dic_crack/class_diagram.puml | 5e283e0f07115ea2077aa3eb2e90ec82db16a01a | [] | no_license | bmcs-group/bmcs_shear_zone | 3ebe5405102abf64ab2764f19d5ad959f1bec405 | f86705a02e809b84669b3ea80b4c175899e5ae5a | refs/heads/master | 2023-05-11T02:21:54.684942 | 2023-01-26T09:59:01 | 2023-01-26T09:59:01 | 289,317,533 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 502 | puml | @startuml
'https://plantuml.com/class-diagram
interface IDICGrid {
X_IJa
U_TIJa
F_T
time_T
w_T
t
}
class DICGrid {
}
DICGrid --|> IDICGrid
class DICGridTri {
}
DICGridTri --|> IDICGrid
class DICStateFields{
U_TMNa
omega_TMN
}
DICStateFields --> IDICGrid
class DICCrack {
index_range
}
DICCrackList --> DICStateFields
DICCrackList *--> DICCrack
DICCrack --> IDICGrid
DICCrack --> DICStressProfile
DICStressProfile --> IDICGrid
class DICAlign{
}
class DICCOR{
}
@enduml |
3a14725b087074918ff061319afa69313097da4f | 44182fd501cdb83876ea4edb3a1ce65d17c24c8f | /uml/class.puml | b46979b1682949e58cb0dfd2778c7c46e6ce1053 | [
"MIT"
] | permissive | Silentdoer/mysql5_client | dd7fb1d119286b024d2599aa79c58b4a8491029f | 76ef419746edf90413266eaf76c4d8d87d38df43 | refs/heads/master | 2023-05-18T16:33:22.950048 | 2021-06-10T12:39:59 | 2021-06-10T12:39:59 | 374,266,915 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,792 | puml | @startuml
class DataReader {
DataReader(Stream<List<int>> stream)
Future?<ReaderBuffer> readBuffer(int length)
}
class ReaderBuffer {
int get payloadLength
bool get isAllRead
ReaderBuffer(List<DataChunk> chunks, int payloadLength)
void skipByte()
void skipBytes(int length)
int checkOneLengthInteger()
int readOneLengthInteger()
int readFixedLengthInteger(int length)
int readLengthEncodedInteger()
String readFixedLengthString(int length)
String readFixedLengthUTF8String(int length)
String readLengthEncodedString()
String readLengthEncodedUTF8String()
String readNulTerminatedString()
String readNulTerminatedUTF8String()
String readRestOfPacketString()
String readRestOfPacketUTF8String()
DataRange readFixedLengthDataRange(int length)
DataRange readLengthEncodedDataRange()
DataRange readRestOfPacketDataRange()
DataRange readNulTerminatedDataRange()
}
class DataChunk {
bool get isEmpty
int get length
DataChunk(List<int> data, [int start = 0, int length])
int checkOneByte()
int extractOneByte()
DataChunk extractDataChunk(int length)
DataRange extractFixedLengthDataRange(int length)
DataRange extractUpToDataRange(int terminator)
}
class DataRange {
int get length
bool get isPending
DataRange(List<int> data, [int start = 0, int length])
DataRange.pending(List<int> data, [int start = 0])
DataRange.nil()
DataRange.byte(int byte)
void addExtraRange(DataRange extraRange)
int toInt()
String toString()
String toUTF8String()
}
DataChunk ..> DataRange : create
ReaderBuffer ..> DataRange : uses
ReaderBuffer "_chunks" o--> "n" DataChunk
DataReader ..> DataChunk : create
DataReader ..> ReaderBuffer : create
@enduml |
28722cbf5c2f624dd3e19b706a4e7b81fc02da2b | a1b305d6231f056755e3928969c797eefe25f73e | /docs/ex44.puml | 76755294caa47253b83738570186120ff090443a | [] | no_license | maxwellgraeser/Graeser-cop3330-assignment3 | 191cfbd22cced1e260b11a5a048124aa5817c332 | eae96e7462d749e28272f0f341285b0a92798749 | refs/heads/master | 2023-08-26T15:42:02.766281 | 2021-10-12T02:38:55 | 2021-10-12T02:38:55 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 219 | puml | @startuml
class App {
+void main()
+String getInput()
+boolean productCheck(String target, JSONArray jArray)
+void printOutput(String target, JSONArray jArray)
+String input
+JSONParser
+JSONObject jsonObject
}
@enduml |
4552b90eebe648b292db6f0a0445f2a80d41ada7 | 8b2a1da80f7cf21697a3f3f1c536ea78eb1c7998 | /sb1/src/main/java/com/zxf/test4/Abc.puml | d89e503011d2c2cc99759c9a519aa14fcedc7440 | [] | no_license | zhang6132326/reps4 | b7a6053e23d1bac4afeb766ad15f745e0877eaf6 | 078616768ba8f8c1d37f186b76972c8546eea449 | refs/heads/master | 2023-02-03T11:59:29.903891 | 2020-12-19T12:53:14 | 2020-12-19T12:53:14 | 322,591,549 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 398 | puml | @startuml
abstract class Operation{
String numberA
String NumberB
double getResult()
}
class OperationAdd
class OperationDiv
class OperationMul
class OperationSub
class OperationFactory{
{static} Operation create()
}
class Main
Main..>OperationFactory
OperationFactory ..> Operation
Operation<|--OperationAdd
Operation<|--OperationSub
Operation<|--OperationMul
Operation<|--OperationDiv
@enduml |
09b6c8e49bcbb82e1032aebca1e69bb0e4c8a048 | e6a585dfa5292761773d2d523832eef2b49e8e9d | /docs/diagrams/ModelComponent.plantuml | 759a3c6d84acccc807f6d2eddf83752976e03e54 | [] | no_license | AY2021S2-CS2113T-F08-3/tp | 82d8b49f18290b6e0d37f1aaa77b711455ace50f | 27db5d4a86be5478fc4e8258997fb8c83257cec6 | refs/heads/master | 2023-04-14T04:07:25.089995 | 2021-04-12T16:53:53 | 2021-04-12T16:53:53 | 344,644,739 | 0 | 4 | null | 2021-04-12T15:56:05 | 2021-03-05T00:12:02 | Java | UTF-8 | PlantUML | false | false | 803 | plantuml | @startuml ModelComponent
hide circle
!define LIGHTGREEN
!includeurl https://raw.githubusercontent.com/Drakemor/RedDress-PlantUML/master/style.puml
skinparam classAttributeIconSize 0
rectangle Model #Khaki {
class RecommendationList
class ReviewList
}
class RecommendationList #Gold {
- ui : Ui
+ recommendations : ArrayList<Recommendation>
+ addRecommendation()
+ listRecommendations()
+ editRecommendation()
+ deleteRecommendation()
+ convertRecommendation()
}
class ReviewList #Gold {
- ui : Ui
+ reviews : ArrayList<Reviews>
- displayStars : boolean
+ addReview()
+ sortReviews()
+ listReviews()
+ viewReview()
+ editReview()
+ deleteReview()
+ changeDisplay()
}
RecommendationList - ReviewList : converts to >
@enduml
|
64d0f8be1f7594f03d6d92dc1b2f32be298e35ad | 67281736ad0eaecef5a0b546b0423bc8b1ec53d4 | /DesignPattern/src/main/java/alliswell/pattern/creational/prototype/prototype.puml | 1b4b2773dc6a48bf505e82899eb92a228793c0b3 | [] | no_license | alliswell008/Alliswell | 3e1f6a16d11ffed7c72e340bcdabc8f093ab4928 | 2ecbaffab1aaf3ebd90e7f2f92f6e53fc80122c1 | refs/heads/master | 2022-12-23T14:01:01.706623 | 2021-04-04T14:37:57 | 2021-04-04T14:37:57 | 74,367,659 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 746 | puml | @startuml
title __**原型模式**__\n
note as N1
**定义**:用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象
**适用**:当要实例化的类是在运行时刻指定时;或者需要创建多个对象并且这些
对象内部状态相差不大
end note
newpage
abstract class Prototype {
+ clone()
}
class ConcretePrototype
ConcretePrototype -up-|> Prototype
Client -right-> Prototype
note as pn
原型类,声明一个
克隆自身的接口
end note
Prototype -right-> pn
note as cpn
具体原型类,实现一个克隆自身的操作
end note
ConcretePrototype --> cpn
note as cn
让一个原型克隆自身
从而创建一个新的对象
end note
Client -left-> cn
@enduml |
ff43283d84a9aa628801b89197e8546294188d04 | a8a94e6c5a115f2aebcc2a72e73b6594ca382e9b | /Documentation/Graph.puml | 0ab8a02af50b506ff7eb469eff888a5f1989421c | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | menturi/piLibrary | 1bc9e3e41c530a73aa1b6dfd8115bcfd8969d82e | 94170fd4b02fae74f6b95bff8acde11692dc1bc5 | refs/heads/main | 2023-08-07T02:40:29.542323 | 2021-10-06T23:14:42 | 2021-10-06T23:14:42 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,914 | puml | @startuml piLibrary Dependency
' this doesn't seem to work... manually editing the SVG
skinparam background transparent
' "level-of-Detail"
hide circle
'hide methods
'hide members
class piCommon [[../../piCommon.spin2]] {
.. ABORT Signals ..
ERROR_NONE
ERROR_UNSPECIFIED
ERROR_INVALIDCALL
ERROR_INVALIDARGUMENT
ERROR_NOTIMPLEMENTED
.. Timeouts ..
TIME_IMMEDIATE
TIME_INFINITE
__
TimeoutToCounts(timeout)
CountsToTimeout(counts)
TimeoutToCT(timeout)
AbortToString(code)
}
class piString {
.. Special Characters ..
NUL, SOH, ...RS, US, SPACE, DEL
.. Config Flags ..
CASE_LOWER, _UPPER
SIGNEDNESS_... SIGNED, _UNSIGNED
SendDec(value)
SendStr(data)
SendFormat(pointer, argptr)
SendFormat_1(data, arg1)
SendFormat_2(data, arg1, arg2)
SendFormat_3(data, arg1, arg2, arg3)
SendFormat_4(data, arg1, arg2, arg3, arg4)
Upper(string)
Lower(string)
Insert(string, position, substring)
NextToken(pointer)
}
class piInlineSerial {
.. Config Flags ..
PARITY_NONE, _EVEN, _ODD
STOPBITS_1, _2
DEFAULT_CONFIG
.. Status Flags ..
RX_FRAMING_ERROR
RX_PARITY_ERROR
RX_OVERFLOW_ERROR
__
Start(baudrate, txPin, rxPin, config, stack)
Stop()
GetStatus()
Write(pointer, size, timeout)
Read(pointer, size, timeout)
ReadLine(pointer, size, timeout)
ReadUntil(pointer, size, ct)
}
class piTerminal {
STACK_SIZE_BASELINE
Start(baudrate, txPin, rxPin, config, callback, buffer, size, stack)
Run(baudrate, txPin, rxPin, config, callback, buffer, size)
Stop()
Prompt(buffer, size)
}
class piDiagnostics {
StackPrepare(pointer, size)
StackGetUnused(pointer, size)
}
'hide piCommon
piString *-- piCommon
piInlineSerial *-- piCommon
piTerminal *-- piString
piTerminal *-- piCommon
piTerminal *-- piInlineSerial
@enduml |
665cc713a56778359927fe82e3310d35e78c41ec | 6f1febb6cbffcc25e8c63d021c245930ac91b059 | /original.plantuml | 9bca811eb0f9b5f819df70468473a35e6c6f59b3 | [] | no_license | Nigel0583/SDP_Memento | 81b4c7423f7317fd7b81ef652226c6373397295c | cd724e995a5f95f67531a49328fece0baa684bbc | refs/heads/master | 2023-01-28T13:51:57.902866 | 2020-11-29T12:28:26 | 2020-11-29T12:28:26 | 314,869,457 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 971 | plantuml | @startuml
skinparam classAttributeIconSize 0
class DrawGraphic {
- X1 : int
- X2 : int
- Y1 : int
- Y2 : int
- bufferedImage : BufferedImage
- graphics2D : Graphics2D
+ DrawGraphic()
+ black()
+ blue()
+ clear()
+ green()
+ load()
+ red()
+ save()
# paintComponent()
}
class DrawerGUI {
~ btBlack : JButton
~ btBlue : JButton
~ btClear : JButton
~ btGreen : JButton
~ btLoad : JButton
~ btRed : JButton
~ btSave : JButton
~ listener : ActionListener
~ pnDrawer : JPanel
- file : File
- lbFileName : JLabel
- saveCounter : int
+ DrawerGUI()
}
class Driver {
{static} + main()
}
DrawGraphic -up-|> javax.swing.JComponent
DrawerGUI -up-|> javax.swing.JFrame
DrawerGUI o-- DrawGraphic : drawGraphic
@enduml
|
3d72125cbcc73ec3d29a945f5cb08ebba2d87153 | f567ea15a5ea127d4e1933b2383fe8bd02175c48 | /PUML/Assignment4.puml | 409fde3322a747198f406c4477811271f8c4677b | [] | no_license | nick-vigg/Viggiani-cop330-Assignment4 | 66b2c642310b6df6a48f91c837a809a18129838a | 161eaac5c39b47b5cba5baf59019906cf8a1c3f9 | refs/heads/master | 2023-06-07T14:45:37.352687 | 2021-07-06T02:48:25 | 2021-07-06T02:48:25 | 383,198,137 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 740 | puml | @startuml
'https://plantuml.com/class-diagram
class App {
+ main()
+ start()
}
class Lists{
-lists[] : ArrayList<ToDoList>
-listTitle : String
addList()
removeList()
}
class ToDoList {
- toDoTitle : String
- items[] : ArrayList<Item>
setTitle()
addItem()
removeItem()
}
class Item {
- itemStatus : boolean
- itemDescription : String
- itemDueDate : String
editDescription()
editStatus()
editDueDate()
}
class ItemController{
addItemButtonClicked()
itemDueDateSet()
itemDescriptionSet()
isCompleteSet()
}
class ListController{
addListButtonClicked()
deleteButtonClicked()
displayListButtonClicked()
}
javafx.Application <|- App
App *-- Lists
Lists <-- ToDoList
ToDoList o-- Item
Item - ItemController
Lists - ListController
@enduml |
cc8a915855cb648e7f1bd1b75a7593c8422c5533 | a49e5f0e798a935e41536bda9522096305c5e277 | /diagrams/dc_visibilidad_atributos.plantuml | 74faae31c6cbf66c1f79ffad25653739fb191b6a | [] | no_license | fiuba/algo3_uml_si_o_si | 8f9514df2f97d29312a9ecede611d379d884c28e | 90a137a51efcabc3b678b335ef498f0d3b710357 | refs/heads/master | 2023-04-13T10:24:55.552593 | 2021-04-29T21:41:54 | 2021-04-29T21:44:15 | 362,944,660 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 250 | plantuml | @startuml
skinparam classAttributeIconSize 0
class Nombre {
- atributoPrivado : ClaseX
+ atributoPublico : ClaseY
# atributoProtegido : ClaseY
+ metodoA() : ClaseY
+ metodoB(param : ClaseZ) : void
}
@enduml
|
66ad2faee708a3176d355cfa9b54f7d2b1196186 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.puml | 796cb999a999a0c7a531d0050dc241d3edd33af3 | [] | 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 | 523 | puml | @startuml
class RecompileScripts {
+ RecompileScripts()
+ RecompileScripts(expectScriptCompilation:bool)
+ RecompileScripts(expectScriptCompilation:bool, expectScriptCompilationSuccess:bool)
+ ExpectDomainReload : bool <<get>>
+ ExpectedPlaymodeState : bool <<get>>
+ ExpectScriptCompilation : bool <<get>>
+ ExpectScriptCompilationSuccess : bool <<get>>
+ Perform() : IEnumerator
}
IEditModeTestYieldInstruction <|-- RecompileScripts
RecompileScripts --> "Current" RecompileScripts
@enduml
|
ee6a443b615655c76b1c4b5dd58e7484ff65eb06 | ed45ea4470bcfc497e2584697d7842a540e04fd9 | /ros2/navigation2/nav2_costmap_2d/costmap.puml | d1d3cb9a8ffb5fe33feb0e28197aaedd6d4aaa43 | [] | 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 | 19,589 | puml | @startuml
'https://plantuml.com/class-diagram
namespace nav2_costmap_2d{
class ArrayParser{
-- public method --
vector<vector<float>> parseVVF(input, error_return);
}
enum CostValues{
NO_INFORMATION = 255,
LETHAL_OBSTACLE = 254,
INSCRIBED_INFLATED_OBSTACLE = 253,
FREE_SPACE = 0
}
class CollisionCheckerException{
-- public method --
explicit CollisionCheckerException(const std::string description)
}
class IllegalPoseException
{
-- public method --
IllegalPoseException(const std::string name, const std::string description)
-- protected data --
std::string name_;
}
CollisionCheckerException <-- IllegalPoseException
class CostmapMath{
inline double sign(double x)
inline double sign0(double x)
inline double distance(double x0, double y0, double x1, double y1)
double distanceToLine(pX, pY, x0, y0, x1, y1);
bool intersects(std::vector<Point> & polygon, float testx, float testy);
bool intersects(polygon1, polygon2);
}
class footprint{
void calculateMinAndMaxDistances(footprint, min_dist, max_dist);
geometry_msgs::msg::Point toPoint(geometry_msgs::msg::Point32 pt);
geometry_msgs::msg::Point32 toPoint32(geometry_msgs::msg::Point pt);
geometry_msgs::msg::Polygon toPolygon(std::vector<geometry_msgs::msg::Point> pts);
std::vector<geometry_msgs::msg::Point> toPointVector(:Polygon::SharedPtr polygon);
void transformFootprint(x,y,theta,footprint_spec,oriented_footprint);
void transformFootprint(x,y,theta,footprint_spec,oriented_footprint);
void padFootprint(std::vector<geometry_msgs::msg::Point> & footprint, double padding);
std::vector<geometry_msgs::msg::Point> makeFootprintFromRadius(double radius);
bool makeFootprintFromString(footprint_string,footprint);
}
class FootprintSubscriber{
-- public method --
FootprintSubscriber(node, topic_name, footprint_timeout);
FootprintSubscriber(node, topic_name, footprint_timeout);
FootprintSubscriber(node_base, node_topics, node_logging, node_clock, topic_name, footprint_timeout);
~FootprintSubscriber() {}
bool getFootprint(footprint, valid_footprint_timeout);
bool getFootprint(std::vector<geometry_msgs::msg::Point> & footprint);
bool getFootprint(footprint, stamp, valid_footprint_timeout);
-- protected method --
void footprint_callback(const geometry_msgs::msg::PolygonStamped::SharedPtr msg);
-- protected data --
rclcpp::node_interfaces::NodeBaseInterface::SharedPtr node_base_;
rclcpp::node_interfaces::NodeTopicsInterface::SharedPtr node_topics_;
rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr node_logging_;
rclcpp::node_interfaces::NodeClockInterface::SharedPtr node_clock_;
void footprint_callback(const geometry_msgs::msg::PolygonStamped::SharedPtr msg);
std::string topic_name_;
bool footprint_received_{false};
rclcpp::Duration footprint_timeout_;
geometry_msgs::msg::PolygonStamped::SharedPtr footprint_;
rclcpp::Subscription<geometry_msgs::msg::PolygonStamped>::SharedPtr footprint_sub_;
}
class FootprintCollisionChecker<?CostmapT>{
-- public method --
FootprintCollisionChecker();
explicit FootprintCollisionChecker(CostmapT costmap);
double footprintCost(const Footprint footprint);
double footprintCostAtPose(double x, double y, double theta, const Footprint footprint);
double lineCost(int x0, int x1, int y0, int y1) const;
bool worldToMap(double wx, double wy, unsigned int & mx, unsigned int & my);
double pointCost(int x, int y) const;
void setCostmap(CostmapT costmap);
-- protected data --
CostmapT costmap_
}
class CostmapTopicCollisionChecker{
-- public method --
CostmapTopicCollisionChecker(costmap_sub,footprint_sub, tf, name, global_frame, robot_base_frame,transform_tolerance);
~CostmapTopicCollisionChecker()
double scorePose(const geometry_msgs::msg::Pose2D & pose);
bool isCollisionFree(const geometry_msgs::msg::Pose2D & pose);
-- protected method --
void unorientFootprint(const Footprint & oriented_footprint, Footprint & reset_footprint);
Footprint getFootprint(const geometry_msgs::msg::Pose2D & pose);
-- protected data --
std::string name_;
std::string global_frame_;
std::string robot_base_frame_;
tf2_ros::Buffer & tf_;
CostmapSubscriber & costmap_sub_;
FootprintSubscriber & footprint_sub_;
double transform_tolerance_;
FootprintCollisionChecker<std::shared_ptr<Costmap2D>> collision_checker_;
}
CostmapTopicCollisionChecker *-- CostmapSubscriber
CostmapTopicCollisionChecker *-- FootprintSubscriber
CostmapTopicCollisionChecker *-- FootprintCollisionChecker
class Costmap{
}
class MapLocation{
unsigned int x
unsigned int y
}
class MarkCell{
-- public method --
MarkCell(unsigned char * costmap, unsigned char value)
inline void operator()(unsigned int offset)
-- private data --
unsigned char * costmap_;
unsigned char value_;
}
class PolygonOutlineCells{
-- public: method --
PolygonOutlineCells(
inline void operator()(unsigned int offset)
-- private data --
const Costmap2D & costmap_;
std::vector<MapLocation> & cells_;
}
PolygonOutlineCells *-- Costmap2D
PolygonOutlineCells *-- MapLocation
class Costmap2D{
-- public method --
Costmap2D();
virtual ~Costmap2D();
unsigned char getCost(unsigned int mx, unsigned int my) const;
unsigned char getCost(unsigned int index) const;
void setCost(unsigned int mx, unsigned int my, unsigned char cost);
void mapToWorld(unsigned int mx, unsigned int my, double & wx, double & wy) const;
bool worldToMap(double wx, double wy, unsigned int & mx, unsigned int & my) const;
void worldToMapNoBounds(double wx, double wy, int & mx, int & my) const;
void worldToMapEnforceBounds(double wx, double wy, int & mx, int & my) const;
inline unsigned int getIndex(unsigned int mx, unsigned int my) const
inline void indexToCells(unsigned int index, unsigned int & mx, unsigned int & my) const
unsigned char * getCharMap() const;
unsigned int getSizeInCellsX() const;
unsigned int getSizeInCellsY() const;
double getSizeInMetersX() const;
double getSizeInMetersY() const;
double getOriginX() const;
double getOriginY() const;
double getResolution() const;
void setDefaultValue(unsigned char c)
unsigned char getDefaultValue()
bool setConvexPolygonCost()
void polygonOutlineCells()
void convexFillCells()
virtual void updateOrigin(double new_origin_x, double new_origin_y);
bool saveMap(std::string file_name);
void resizeMap()
void resetMap(unsigned int x0, unsigned int y0, unsigned int xn, unsigned int yn);
void resetMapToValue()
unsigned int cellDistance(double world_dist);
typedef std::recursive_mutex mutex_t;
mutex_t * getMutex()
-- protected method --
void copyMapRegion()
virtual void deleteMaps();
virtual void resetMaps();
virtual void initMaps(unsigned int size_x, unsigned int size_y);
inline void raytraceLine(at, x0, y0, x1, y1, max_length)
-- protected data --
unsigned int size_x_;
unsigned int size_y_;
double resolution_;
double origin_x_;
double origin_y_;
unsigned char * costmap_;
unsigned char default_value_;
-- private method --
inline void bresenham2D(at,abs_da,abs_db,error_b,offset_a,offset_b,offset,max_length)
-- private data --
mutex_t * access_;
}
Costmap2D *-- PolygonOutlineCells
Costmap2D *-- MarkCell
class Costmap2DROS{
-- public method --
explicit Costmap2DROS(const std::string & name);
explicit Costmap2DROS(name,parent_namespace, local_namespace);
~Costmap2DROS();
nav2_util::CallbackReturn on_configure(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_activate(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_deactivate(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_cleanup(const rclcpp_lifecycle::State & state) override;
nav2_util::CallbackReturn on_shutdown(const rclcpp_lifecycle::State & state) override;
void start();
void stop();
void pause();
void resume();
void updateMap();
void resetLayers();
bool isCurrent()
bool getRobotPose(geometry_msgs::msg::PoseStamped & global_pose);
std::string getName() const
double getTransformTolerance() const
Costmap2D * getCostmap()
std::string getGlobalFrameID()
std::string getBaseFrameID()
LayeredCostmap * getLayeredCostmap()
geometry_msgs::msg::Polygon getRobotFootprintPolygon()
std::vector<geometry_msgs::msg::Point> getRobotFootprint()
std::vector<geometry_msgs::msg::Point> getUnpaddedRobotFootprint()
void getOrientedFootprint(std::vector<geometry_msgs::msg::Point> & oriented_footprint);
void setRobotFootprint(const std::vector<geometry_msgs::msg::Point> & points);
void setRobotFootprintPolygon(const geometry_msgs::msg::Polygon::SharedPtr footprint);
std::shared_ptr<tf2_ros::Buffer> getTfBuffer() {return tf_buffer_;}
bool getUseRadius() {return use_radius_;}
-- protected method --
void getParameters();
-- protected data --
rclcpp::Node::SharedPtr client_node_;
LifecyclePublisher<PolygonStamped> footprint_pub_;
Costmap2DPublisher * costmap_publisher_{nullptr};
Subscription<Polygon>::SharedPtr footprint_sub_;
Subscription<ParameterEvent>::SharedPtr parameter_sub_;
std::shared_ptr<tf2_ros::Buffer> tf_buffer_;
std::shared_ptr<tf2_ros::TransformListener> tf_listener_;
LayeredCostmap * layered_costmap_{nullptr};
std::string name_;
std::string parent_namespace_;
void mapUpdateLoop(double frequency);
bool map_update_thread_shutdown_{false};
bool stop_updates_{false};
bool initialized_{false};
bool stopped_{true};
std::thread * map_update_thread_
rclcpp::Time last_publish_{0, 0, RCL_ROS_TIME};
rclcpp::Duration publish_cycle_{1, 0};
pluginlib::ClassLoader<Layer> plugin_loader_
bool always_send_full_costmap_{false};
std::string footprint_;
float footprint_padding_{0};
std::string global_frame_;
int map_height_meters_{0};
double map_publish_frequency_{0};
double map_update_frequency_{0};
int map_width_meters_{0};
double origin_x_{0};
double origin_y_{0};
std::vector<std::string> default_plugins_;
std::vector<std::string> default_types_;
std::vector<std::string> plugin_names_;
std::vector<std::string> plugin_types_;
double resolution_{0};
std::string robot_base_frame_;
double robot_radius_;
bool rolling_window_{false};
bool track_unknown_space_{false};
double transform_tolerance_{0};
bool use_radius_{false};
std::vector<geometry_msgs::msg::Point> unpadded_footprint_;
std::vector<geometry_msgs::msg::Point> padded_footprint_;
std::unique_ptr<ClearCostmapService> clear_costmap_service_;
}
LifecycleNode <-- Costmap2DROS
Costmap2DROS *-- Costmap2DPublisher
Costmap2DROS *-- LayeredCostmap
Costmap2DROS *-- ClearCostmapService
class LayeredCostmap{
-- public method --
LayeredCostmap(std::string global_frame, bool rolling_window, bool track_unknown);
~LayeredCostmap();
void updateMap(double robot_x, double robot_y, double robot_yaw);
std::string getGlobalFrameID() const
void resizeMap(size_x, size_y, resolution, origin_x,origin_y, size_locked);
void getUpdatedBounds(double & minx, double & miny, double & maxx, double & maxy)
bool isCurrent();
Costmap2D * getCostmap()
bool isRolling()
bool isTrackingUnknown()
std::vector<std::shared_ptr<Layer>> * getPlugins()
void addPlugin(std::shared_ptr<Layer> plugin)
bool isSizeLocked()
void getBounds(unsigned int * x0, unsigned int * xn, unsigned int * y0, unsigned int * yn)
bool isInitialized()
void setFootprint(const std::vector<geometry_msgs::msg::Point> & footprint_spec);
const std::vector<geometry_msgs::msg::Point> & getFootprint() {return footprint_;}
double getCircumscribedRadius() {return circumscribed_radius_;}
double getInscribedRadius() {return inscribed_radius_;}
bool isOutofBounds(double robot_x, double robot_y);
-- private data --
Costmap2D costmap_;
std::string global_frame_;
bool rolling_window_;
bool current_;
double minx_, miny_, maxx_, maxy_;
unsigned int bx0_, bxn_, by0_, byn_;
std::vector<std::shared_ptr<Layer>> plugins_;
bool initialized_;
bool size_locked_;
double circumscribed_radius_, inscribed_radius_;
std::vector<geometry_msgs::msg::Point> footprint_;
}
LayeredCostmap *-- Costmap2D
LayeredCostmap o-- Layer
class Layer{
-- public method --
Layer();
virtual ~Layer() {}
void initialize(parent, name, tf, node, client_node, rclcpp_node);
virtual void deactivate()
virtual void activate()
virtual void reset()
virtual void updateBounds(robot_x,robot_y,robot_yaw,min_x,min_y,max_x,max_y);
virtual void updateCosts(master_grid,min_i,min_j,max_i,max_j) = 0;
virtual void matchSize() {}
virtual void onFootprintChanged() {}
std::string getName() const
bool isCurrent() const
const std::vector<geometry_msgs::msg::Point> & getFootprint() const;
void declareParameter(const std::string & param_name, const rclcpp::ParameterValue & value);
bool hasParameter(const std::string & param_name);
void undeclareAllParameters();
std::string getFullName(const std::string & param_name);
-- protected method --
virtual void onInitialize() {}
-- protected data --
LayeredCostmap * layered_costmap_;
std::string name_;
tf2_ros::Buffer * tf_;
nav2_util::LifecycleNode::SharedPtr node_;
rclcpp::Node::SharedPtr client_node_;
rclcpp::Node::SharedPtr rclcpp_node_;
bool current_;
bool enabled_;
std::unordered_set<std::string> local_params_;
-- private data --
std::vector<geometry_msgs::msg::Point> footprint_spec_;
}
Layer *-- LayeredCostmap
class CostmapLayer{
-- public method --
CostmapLayer()
bool isDiscretized()
virtual void matchSize();
virtual void clearArea(int start_x, int start_y, int end_x, int end_y);
void addExtraBounds(double mx0, double my0, double mx1, double my1);
-- protected method --
void updateWithTrueOverwrite();
void updateWithOverwrite();
void updateWithMax();
void updateWithAddition();
void touch();
void useExtraBounds(double * min_x, double * min_y, double * max_x, double * max_y);
-- protected data --
bool has_extra_bounds_;
-- private data --
double extra_min_x_, extra_max_x_, extra_min_y_, extra_max_y_;
}
Layer <-- CostmapLayer
Costmap2D <-- CostmapLayer
class StaticLayer{
-- public method --
StaticLayer();
virtual ~StaticLayer();
virtual void onInitialize();
virtual void activate();
virtual void deactivate();
virtual void reset();
virtual void updateBounds();
virtual void updateCosts();
virtual void matchSize();
-- private method --
void getParameters();
void processMap(const nav_msgs::msg::OccupancyGrid & new_map);
void incomingMap(const nav_msgs::msg::OccupancyGrid::SharedPtr new_map);
void incomingUpdate(map_msgs::msg::OccupancyGridUpdate::ConstSharedPtr update);
unsigned char interpretValue(unsigned char value);
-- private data --
std::string global_frame_;
std::string map_frame_;
bool has_updated_data_{false};
unsigned int x_{0};
unsigned int y_{0};
unsigned int width_{0};
unsigned int height_{0};
Subscription<:OccupancyGrid> map_sub_;
Subscription<OccupancyGridUpdate> map_update_sub_;
std::string map_topic_;
bool map_subscribe_transient_local_;
bool subscribe_to_updates_;
bool track_unknown_space_;
bool use_maximum_;
unsigned char lethal_threshold_;
unsigned char unknown_cost_value_;
bool trinary_costmap_;
bool map_received_{false};
tf2::Duration transform_tolerance_;
std::atomic<bool> update_in_progress_;
nav_msgs::msg::OccupancyGrid::SharedPtr map_buffer_;
}
CostmapLayer <-- StaticLayer
enum InputSensorType{
VARIABLE,
FIXED,
ALL
}
class RangeSensorLayer{
-- public method --
virtual void onInitialize();
virtual void updateBounds();
virtual void updateCosts();
virtual void reset();
virtual void deactivate();
virtual void activate();
void bufferIncomingRangeMsg()
-- private method --
void updateCostmap();
void processRangeMsg(Range & range_message);
void processFixedRangeMsg(Range & range_message);
void processVariableRangeMsg(Range & range_message);
void resetRange();
inline double gamma(double theta);
inline double delta(double phi);
inline double sensor_model(double r, double phi, double theta);
inline void get_deltas(double angle, double * dx, double * dy);
inline void update_cell(ox, oy, ot, r, nx, ny, clear);
inline double to_prob(unsigned char c)
inline unsigned char to_cost(double p)
float area(int x1, int y1, int x2, int y2, int x3, int y3)
int orient2d(int Ax, int Ay, int Bx, int By, int Cx, int Cy)
-- private data --
std::function<void(Range & range_message)> processRangeMessageFunc_;
std::mutex range_message_mutex_;
std::list<Range> range_msgs_buffer_;
double max_angle_, phi_v_;
double inflate_cone_;
std::string global_frame_;
double clear_threshold_, mark_threshold_;
bool clear_on_max_reading_;
tf2::Duration transform_tolerance_;
double no_readings_timeout_;
rclcpp::Time last_reading_time_;
unsigned int buffered_readings_;
std::vector<Subscription<Range>::SharedPtr> range_subs_;
double min_x_, min_y_, max_x_, max_y_;
}
CostmapLayer <-- RangeSensorLayer
Class CostmapSubscriber{
-- public method --
CostmapSubscriber(node, topic_name);
CostmapSubscriber(node, topic_name);
CostmapSubscriber(node_base, node_topics, node_logging, topic_name);
~CostmapSubscriber()
std::shared_ptr<Costmap2D> getCostmap();
-- protected method --
void toCostmap2D();
void costmapCallback(const nav2_msgs::msg::Costmap::SharedPtr msg);
-- protected data --
rclcpp::node_interfaces::NodeBaseInterface::SharedPtr node_base_;
rclcpp::node_interfaces::NodeTopicsInterface::SharedPtr node_topics_;
rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr node_logging_;
std::shared_ptr<Costmap2D> costmap_;
nav2_msgs::msg::Costmap::SharedPtr costmap_msg_;
std::string topic_name_;
bool costmap_received_{false};
rclcpp::Subscription<nav2_msgs::msg::Costmap>::SharedPtr costmap_sub_;
}
CostmapSubscriber *-- Costmap
class ClearCostmapService{
-- public method --
ClearCostmapService(node, costmap);
ClearCostmapService() = delete;
void clearExceptRegion(double reset_distance);
void clearAroundRobot( window_size_x, window_size_y);
void clearEntirely();
-- private method --
void clearExceptRegionCallback(request_header, request, response);
void clearAroundRobotCallback(request_header, request, response);
void clearEntireCallback(request_header, request, response);
void clearLayerExceptRegion(costmap, pose_x, pose_y, reset_distance);
bool isClearable(const std::string & layer_name) const;
bool getPosition(double & x, double & y) const;
std::string getLayerName(const Layer & layer) const;
-- private data --
nav2_util::LifecycleNode::SharedPtr node_;
Costmap2DROS & costmap_;
unsigned char reset_value_;
std::vector<std::string> clearable_layers_;
Service<ClearCostmapExceptRegion> clear_except_service_;
Service<ClearCostmapAroundRobot>::SharedPtr clear_around_service_;
Service<ClearEntireCostmap>::SharedPtr clear_entire_service_;
}
class Costmap2DPublisher{
-- public method --
Costmap2DPublisher(ros_node,costmap,global_frame,topic_name,always_send_full_costmap);
~Costmap2DPublisher();
void on_configure()
void on_activate()
void on_deactivate()
void on_cleanup() {}
void updateBounds(x0,xn,y0,yn)
void publishCostmap();
bool active()
-- private method --
void prepareGrid();
void prepareCostmap();
void costmap_service_callback( request_header, request, response);
-- private data --
nav2_util::LifecycleNode::SharedPtr node_;
Costmap2D * costmap_;
std::string global_frame_;
std::string topic_name_;
unsigned int x0_, xn_, y0_, yn_;
double saved_origin_x_;
double saved_origin_y_;
bool active_;
bool always_send_full_costmap_;
LifecyclePublisher<OccupancyGrid>::SharedPtr costmap_pub_;
LifecyclePublisher<OccupancyGridUpdate> costmap_update_pub_;
LifecyclePublisher<Costmap>::SharedPtr costmap_raw_pub_;
Service<GetCostmap>::SharedPtr costmap_service_;
float grid_resolution;
unsigned int grid_width, grid_height;
std::unique_ptr<nav_msgs::msg::OccupancyGrid> grid_;
std::unique_ptr<nav2_msgs::msg::Costmap> costmap_raw_;
static char * cost_translation_table_;
}
ClearCostmapService *-- Costmap2DROS
Costmap2DPublisher *-- Costmap2D
Costmap2DPublisher *-- Costmap
}
std.runtime_error <-- nav2_costmap_2d.CollisionCheckerException
@enduml |
53bd20ba49ce94051f8ae8f9078af4edc4a99fa1 | 5992899e0dc7e047598bf810d6d66fb171b6b8fa | /src/main/javadoc/resources/fr/kbertet/lattice/ClosureSystem.iuml | 641d8d73e7970d93787cba3a5fa2de40f76683a9 | [
"CECILL-B"
] | permissive | kbertet/java-lattices | 9e237162ce8330f64769e27284a7f98fa189206f | ddca76f97c41024866e3f3a32b719cb0492c034b | refs/heads/master | 2020-12-03T09:19:43.451861 | 2014-12-12T11:20:45 | 2014-12-12T11:20:45 | 29,913,611 | 1 | 0 | null | 2015-01-27T12:41:58 | 2015-01-27T12:41:58 | null | UTF-8 | PlantUML | false | false | 535 | iuml | package fr.kbertet.lattice {
class ClosureSystem {
+{abstract} TreeSet<Comparable> getSet()
+{abstract} TreeSet<Comparable> closure(TreeSet<Comparable> set)
+{abstract} void save(String file)
+ConceptLattice closedSetLattice(boolean diagram)
+ConceptLattice lattice()
+Vector<Concept> allClosures()
+Concept nextClosure(Concept cl)
+DGraph precedenceGraph()
+TreeMap<Object, TreeSet> getReducibleElements()
}
abstract class ClosureSystem
}
|
8e3ae82bb0a92efb35339fb2583aa2e56fcf8ef3 | 0a0fa701ab93f38592532f36e2be71e353bfd568 | /UML/class diagramm/all.puml | c048b356a70594364aa03fbe0a902950f12eb53e | [] | no_license | Pahoomich/nwchat | acdc409de39530909fba61ef49192d40f0ffe586 | 96b9ecf35e0e0ecc5b37d59de794882bc63c38ef | refs/heads/master | 2020-05-24T16:44:08.730653 | 2020-01-21T06:42:58 | 2020-01-21T06:42:58 | 187,366,752 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,457 | puml | @startuml
' отключить схематическое отображение public private ...
skinparam classAttributeIconSize 0
'
'
' конфиги
'
'
class SecurityConfiguration{
- bCryptPasswordEncoder: BCryptPasswordEncoder
- dataSource : DataSource
- USERS_QUERY : String
- ROLES_QUERY : String
+ SecurityConfiguration(BCryptPasswordEncoder bCryptPasswordEncoder, DataSource dataSource) : SecurityConfiguration
# configure(AuthenticationManagerBuilder auth) : void
# configure(HttpSecurity http) : void
+ persistentTokenRepository() : PersistentTokenRepository
}
class WebSocketConfig{
+ registerStompEndpoints(StompEndpointRegistry registry) : void
+ configureMessageBroker(MessageBrokerRegistry registry) : void
}
class WebMvcConfig{
+ passwordEncoder() : BCryptPasswordEncoder
+ layoutDialect() : LayoutDialect
}
class NwchatApplication{
+ main(String[] args) : void
}
'
'
' интерфейсы
'
'
interface UserRepository{
findByLogin(String login) : User
}
interface DocsRepository
interface RoleRepository{
findByRole(String role) : Role
}
interface UserService{
findUserByLogin(String login) : User
saveUser(User user) : void
}
interface CrudRepository <T, ID> {
save(T var1): T
saveAll(Iterable<T> var1) : Iterable<T>
findById(ID var1) : Optional<T>
existsById(ID var1) : boolean
findAll() : Iterable<T>
findAllById(Iterable<ID> var1) : Iterable<T>
count() : long
deleteById(ID var1) : void
delete(T var1) : void
deleteAll(Iterable<T> var1) : void
deleteAll() : void
}
'
'
' контроллеры
'
'
class ChatController {
- UserService userService
+ (UserService userService) : ChatController
+ sendMessage(@Payload ChatMessage chatMessage) : ChatMessage
+ addUser(@Payload ChatMessage chatMessage, SimpMessageHeaderAccessor headerAccessor) : ChatMessage
+ index() : ModelAndView
}
class DocController {
- DocsRepository docsRepository
+ index() : ModelAndView
+ show(long id) : ModelAndView
+ create(Doc doc, BindingResult result) : ModelAndView
+ create() : ModelAndView
+ update(long id) : ModelAndView
+ delete(long id) : ModelAndView
}
class "IndexController" {
userService : UserService
}
class "UserController" {
userService : UserService
}
class "Role" {
role_id : int
role : String
}
class "ChatMessage" {
type : MessageType
content : String
sender : String
}
class "Doc" {
id : long
title : String
text : String
dateCreate : Timestamp
dateUpdate : Timestamp
}
class "User" {
user_id : int
login : String
firstName : String
lastName : String
password : String
active : int
roles : Set<Role>
}
class "UserServiceImplements" {
userRepository : UserRepository
roleRepository : RoleRepository
bCryptPasswordEncoder : BCryptPasswordEncoder
}
'
'
' связи между интерфейсами
'
'
CrudRepository <|-- UserRepository
CrudRepository <|-- DocsRepository
CrudRepository <|-- RoleRepository
"UserService" <|-- "UserServiceImplements"
"ChatController" --> "UserService" : userService
"DocController" --> "DocsRepository" : docsRepository
"IndexController" --> "UserService" : userService
"UserController" --> "UserService" : userService
"User" --> "*" "Role" : roles
"UserServiceImplements" --> "UserRepository" : userRepository
"UserServiceImplements" --> "RoleRepository" : roleRepository
@enduml |
e60a4606f0e83c3ec3e26875853ba0b6140c0854 | c85d255daca76e76b7073e0a288849be195b214e | /app/src/main/java/com/architectica/socialcomponents/main/profile/profile.plantuml | 5e77e0d009f97674e9cffa7c2ec8b07ff68c03a1 | [
"Apache-2.0"
] | permissive | AryaAshish/Archcrony | 75bb4646d938b2da11721aff0dde11ad49f4a357 | 3cf972c48e900d513d53ebed857373741c1969b5 | refs/heads/master | 2020-04-29T12:34:32.168647 | 2019-08-01T12:56:05 | 2019-08-01T12:56:05 | 176,141,477 | 1 | 3 | Apache-2.0 | 2019-08-01T12:56:06 | 2019-03-17T18:16:12 | Java | UTF-8 | PlantUML | false | false | 5,527 | plantuml | @startuml
title __PROFILE's Class Diagram__\n
namespace com.architectica.socialcomponents {
namespace main.profile {
class com.architectica.socialcomponents.main.profile.ProfileActivity {
{static} + CREATE_POST_FROM_PROFILE_REQUEST : int
{static} + USER_ID_EXTRA_KEY : String
{static} - TAG : String
- bioTextView : TextView
- currentUserId : String
- followersCounterTextView : TextView
- followingsCounterTextView : TextView
- imageView : ImageView
- likesCountersTextView : TextView
- mAuth : FirebaseAuth
- mGoogleApiClient : GoogleApiClient
- nameEditText : TextView
- postsCounterTextView : TextView
- postsProgressBar : ProgressBar
- progressBar : ProgressBar
- recyclerView : RecyclerView
- skillTextView : TextView
- statusTextView : TextView
- swipeContainer : SwipeRefreshLayout
- userID : String
+ createPresenter()
+ hideLoadingPostsProgress()
+ onConnectionFailed()
+ onCreateOptionsMenu()
+ onOptionsItemSelected()
+ onPostRemoved()
+ onPostUpdated()
+ onStart()
+ onStop()
+ onUnfollowButtonClicked()
+ openCreatePostActivity()
+ openPostDetailsActivity()
+ setBio()
+ setDefaultProfilePhoto()
+ setFollowStateChangeResultOk()
+ setProfileName()
+ setProfilePhoto()
+ setSkill()
+ setStatus()
+ showLikeCounter()
+ showPostCounter()
+ showUnfollowConfirmation()
+ startEditProfileActivity()
+ updateFollowButtonState()
+ updateFollowersCount()
+ updateFollowingsCount()
+ updateLikesCounter()
+ updatePostsCounter()
# onActivityResult()
# onCreate()
- initListeners()
- loadPostsList()
- onRefreshAction()
- scheduleStartPostponedTransition()
- startMainActivity()
- startUsersListActivity()
}
}
}
namespace com.architectica.socialcomponents {
namespace main.profile {
class com.architectica.socialcomponents.main.profile.ProfilePresenter {
- activity : Activity
+ buildCounterSpannable()
+ checkFollowState()
+ checkPostChanges()
+ getFollowersCount()
+ getFollowingsCount()
+ loadProfile()
+ onCreatePostClick()
+ onEditProfileClick()
+ onFollowButtonClick()
+ onPostListChanged()
+ unfollowUser()
~ ProfilePresenter()
~ onPostClick()
- followUser()
}
}
}
namespace com.architectica.socialcomponents {
namespace main.profile {
interface com.architectica.socialcomponents.main.profile.ProfileView {
{abstract} + hideLoadingPostsProgress()
{abstract} + onPostRemoved()
{abstract} + onPostUpdated()
{abstract} + openCreatePostActivity()
{abstract} + openPostDetailsActivity()
{abstract} + setBio()
{abstract} + setDefaultProfilePhoto()
{abstract} + setFollowStateChangeResultOk()
{abstract} + setProfileName()
{abstract} + setProfilePhoto()
{abstract} + setSkill()
{abstract} + setStatus()
{abstract} + showLikeCounter()
{abstract} + showPostCounter()
{abstract} + showUnfollowConfirmation()
{abstract} + startEditProfileActivity()
{abstract} + updateFollowButtonState()
{abstract} + updateFollowersCount()
{abstract} + updateFollowingsCount()
{abstract} + updateLikesCounter()
{abstract} + updatePostsCounter()
}
}
}
com.architectica.socialcomponents.main.profile.ProfileActivity .up.|> com.architectica.socialcomponents.dialogs.UnfollowConfirmationDialog.Callback
com.architectica.socialcomponents.main.profile.ProfileActivity .up.|> com.architectica.socialcomponents.main.profile.ProfileView
com.architectica.socialcomponents.main.profile.ProfileActivity .up.|> com.google.android.gms.common.api.GoogleApiClient.OnConnectionFailedListener
com.architectica.socialcomponents.main.profile.ProfileActivity -up-|> com.architectica.socialcomponents.main.base.BaseActivity
com.architectica.socialcomponents.main.profile.ProfileActivity o-- com.architectica.socialcomponents.views.FollowButton : followButton
com.architectica.socialcomponents.main.profile.ProfileActivity o-- com.architectica.socialcomponents.adapters.PostsByUserAdapter : postsAdapter
com.architectica.socialcomponents.main.profile.ProfilePresenter -up-|> com.architectica.socialcomponents.main.base.BasePresenter
com.architectica.socialcomponents.main.profile.ProfilePresenter o-- com.architectica.socialcomponents.managers.FollowManager : followManager
com.architectica.socialcomponents.main.profile.ProfilePresenter o-- com.architectica.socialcomponents.model.Profile : profile
com.architectica.socialcomponents.main.profile.ProfilePresenter o-- com.architectica.socialcomponents.managers.ProfileManager : profileManager
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
|
04cc3a838d85efc71b2e8f1c31bcc4c821b7a6b6 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ChannelPagedQueryResponse.puml | 07102f87592685620426b28ed697532f4cc5ccaf | [] | 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 | 406 | 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 ChannelPagedQueryResponse [[ChannelPagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[Channel.svg List<Channel>]]
}
@enduml
|
b61ebf9b88410d61f8e15070e8c91c2a0df8371e | 531021c0d92723ea2ab9e3609f7bc7ee099099f9 | /todo-code/src/main/kotlin/io/patamon/todo/design_pattern/模板方法设计模式.puml | 19b07e01f3c337f168dad83edfec29c05b06d075 | [] | 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 | 315 | puml | @startuml
package "Parent" {
abstract Parent {
-method()
+abstract childDo()
+hook()
}
}
package "Children" {
class Children1 extends Parent {
+abstract childDo()
}
class Children2 extends Parent {
+abstract childDo()
+hook()
}
}
@enduml
|
37bec89483ee8ae791cb0cd4b85f32ab3c62eb1c | 6153f22ccad5e550ec60e6465d77bd7088174144 | /DesignPattern/CommandPattern/uml.puml | 34d03b00247101d46eb13695c852ab8521aaa060 | [
"MIT",
"LicenseRef-scancode-other-permissive"
] | permissive | zwxbest/Demo | a5093d4e82b269d200d23a7a390e299334301917 | 16ce40b63907d52d65ad93fba6a793847911d216 | refs/heads/master | 2023-06-08T17:15:27.688512 | 2022-03-03T03:53:31 | 2022-03-03T03:53:31 | 123,203,277 | 1 | 7 | MIT | 2023-05-26T22:15:03 | 2018-02-27T23:52:55 | Roff | UTF-8 | PlantUML | false | false | 228 | puml | @startuml
abstract class Command{
ExcuteCommand()
}
class Barbecuer{
}
class Waiter{
}
Command->Barbecuer
BakeMuttonCommand--up|>Command
BakeMuttonCommand--up|>Command
Waiter"1"->"*"Command
Main..>Command
Main..>Waiter
@enduml |
a8cf5a4fd40be1ae301b9b927b8336313afba0d3 | 3036c22a32729f805d97314fa406f2746b0e5e7a | /src/uml/ATF Class Diagram.puml | 5e4662f369ba98d981ca6249ea612641470085b6 | [] | no_license | Moriceg/ATF_from_scratch_EM | 495ce8bd4ea9bdd08e591959a05d5ac107bc82e9 | 850974515638de48ae7dfe7a5a05ed9a6d2794a3 | refs/heads/master | 2021-07-09T05:23:02.835157 | 2019-04-09T09:40:53 | 2019-04-09T13:56:37 | 133,915,040 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,132 | puml | @startuml
IUiMap ..> UiMap
class UiMap {
-WebDriver _driver
+UiMap(WebDriver driver)
+List<WebElement> getElements()
+WebElement getElement()
+click(String xPath)
+inputData(WebElement element, String xPath)
}
class DriverFactory {
-WebDriver driver
-String browser
-DriverFactory(String browser)
-WebDriver driverInitialize()
+WebDriver getBrowser()
+setDriver(WebDriver driver)
}
IConfiguration ..> Configuration
class Configuration{
+loadConfiguration()
+String getConfigurationSection()
+selectConfigurationSection()
+String getItem(String key)
+setItem(String key)
}
com.atf.LoginTest "1" o-- "1" DriverFactory
class Constants {
+{static}String DRIVERS_DIRECTORY
+{static}String PATH_TO_DRIVERS
+{static}String CHROME_DRIVER_DIRECTORY
+{static}String IE_DRIVER_DIRECTORY
+{static}String FIREFOX_DRIVER_DIRECTORY
+{static}String SYSTEM_UNDERTEST
+{static}String BROWSER
}
class com.atf.LoginTest{
+WebDriver driver
+String browserForTest
+LoginPageObject loginPage
+UiMap uiMap
+setUp()
+tearDown()
--
Others test methods
}
UiMap --> com.atf.LoginTest
Constants --> com.atf.LoginTest
Constants --> DriverFactory
@enduml |
1a5a135e40be5b8d8bbf4c936bea2c1554d93336 | e0f79076cdc050bdf5449eb8c5da1f1294378ac6 | /src/main/java/com/atguigu/priciples/segregation/improve/Segragation2.puml | df3a530206856657a19aef3c8ba09790a35d76d7 | [] | no_license | rrong777/design_patterns | 0ab37c77523736dc8d79d29f26de87e844b6a7b6 | 2ff4f4cb82e948d3c11e3c18826dc8a90c34fd8a | refs/heads/main | 2023-05-03T08:42:43.712829 | 2021-05-25T04:42:54 | 2021-05-25T04:42:54 | 368,487,168 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 377 | puml | @startuml
interface Interface1 {
operation1():void
}
interface Interface2 {
operation2():void
operation3():void
}
interface Interface3 {
operation4():void
operation5():void
}
class A{}
class B implements Interface1,Interface2{}
class C{}
class D implements Interface1,Interface3{}
A ..> Interface1
A ..> Interface2
C ..> Interface1
C ..> Interface3
@enduml
|
fe309378d0f5767d4cdbaf66ba31c1b6d1855beb | bc6c6d669b8ad8515be5b5af56400135194e2be6 | /src/com/ivivisoft/state/template/StateUML.puml | 9c4e3fb22d2e6ea145d723657efec8ab952c789d | [] | no_license | ivivisoft/designpattern | 50e5079ef50d18ae779092bdf190669201809ddf | c1bff1cd8d79a5d78ab37b679bbd65d0d70d6796 | refs/heads/master | 2021-01-20T15:04:27.232211 | 2017-05-14T10:50:05 | 2017-05-14T10:50:05 | 90,717,041 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 658 | puml | @startuml
Context o--> State:组合
State <|.. ConcreteStateA:实现
State <|.. ConcreteStateB:实现
'环境,也称上下文,通常定义客户感兴趣的接口,
'同时维护一个来具体处理当前
'状态的实例对象
class Context{
+ void request(String sampleParameter)
}
'状态接口,用来封装与上下文的一个特定状态所对应的行为
interface State{
+ void handle(String sampleParameter)
}
'具体的实现状态处理的类,每个类实现一个跟上下文相关的状态处理
class ConcreteStateA{
+ void handle(String sampleParameter)
}
class ConcreteStateB{
+ void handle(String sampleParameter)
}
@enduml |
f481aa26601ec5d1b749c1027e976bbb48fd5a0f | 537498d7dc9775ed553e8e6e0482142c97ad6bff | /app/src/main/java/com/example/jiana/myapplication/ATM_1.puml | 02e759d8941e70e63e9a738c5bb4367e8f70383a | [] | no_license | zhaohaun/OOD-study | 497deeb71d127dd776b9ba1333587a075b78574f | 9e6107100935e9ee9f27df7efe49cac6191a40c4 | refs/heads/master | 2021-05-10T21:11:29.422477 | 2016-05-18T17:20:25 | 2016-05-18T17:20:25 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 898 | puml | @startuml
abstract Transaction<<abstract>> {
+Execute()
}
class DepositTransaction
class WithdrawalTransaction
class TransferTransaction
interface DepositUI <<interface>>{
+RequestDepositAmount()
}
interface WithdrawalUI <<interface>>{
+RequestWithdrawalAmount()
}
interface TransferUI <<interface>>{
+RequestTransferAmount()
}
interface UI <<interface>>{
+RequestDepositAmount()
+RequestWithdrawalAmount()
+RequestTransferAmount()
}
hide members
show Transaction methods
show DepositUI methods
show TransferUI methods
show WithdrawalUI methods
show UI methods
DepositTransaction -up-|> Transaction
WithdrawalTransaction -up-|> Transaction
TransferTransaction -up-|> Transaction
DepositTransaction ..> DepositUI
WithdrawalTransaction ..> WithdrawalUI
TransferTransaction ..> TransferUI
UI -up-|> DepositUI
UI -up-|> WithdrawalUI
UI -up-|> TransferUI
@enduml |
afa523fbb33e4146bb9626e9274e53ba5278291f | 99fd128e25c1aef4813198b9594d1366b6e23943 | /Techs/software-craft/know-design/design-pattern/structural-patterns/proxy/proxy_pattern_class.puml | 3c8db22feaa1b73be78da2cfba959573cf2ec321 | [] | no_license | tcfh2016/knowledge-map | 68a06e33f8b9da62f9260035123b9f86850316f0 | 23aff8bf83c07330f1d6422fc6d634d3ecf88da4 | refs/heads/master | 2023-08-24T19:14:58.838786 | 2023-08-13T12:04:37 | 2023-08-13T12:04:45 | 83,497,980 | 2 | 2 | null | null | null | null | UTF-8 | PlantUML | false | false | 199 | puml | @startuml
class Client {
}
abstract Subject {
}
Client -> Subject
class ConcreteSubject {
}
class Proxy {
}
Subject <|-- ConcreteSubject
Subject <|-- Proxy
ConcreteSubject <- Proxy
@enduml
|
3eea4a9525ef18344baf61a34726e80874bd9e5e | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductRevertStagedChangesAction.puml | deee1994337da425e2822d0e24a462cbf3e7cc0a | [] | 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 | 439 | 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 ProductRevertStagedChangesAction [[ProductRevertStagedChangesAction.svg]] extends ProductUpdateAction {
action: String
}
interface ProductUpdateAction [[ProductUpdateAction.svg]] {
action: String
}
@enduml
|
9ef4660f3bb30120f4a67ab16ea6ad0a493ce371 | 1ac0a5cf0a74b207d7cdac817f81b15f452f494c | /Livrables/Diagrammes/Composants/UML/MasterChef.plantuml | 9e730199004771a04d0d6102bb28b0639f71ee8b | [
"MIT"
] | permissive | HugoLA1/Projet-programmation-systeme | 1f143b71a52871ca3536b30d78592c29f19aae97 | 5262fa64cd862283078346b4f8a2aa69246d47d6 | refs/heads/master | 2020-06-01T10:33:49.688170 | 2018-12-13T13:22:55 | 2018-12-13T13:22:55 | 190,750,176 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 230 | plantuml | @startuml
class MasterChef {
+ sectionChefs : List<SectionChef> <<get>> <<set>>
+ commandsToDo : List<Command> <<get>> <<set>>
+ posX : int <<get>> <<set>>
+ posY : int <<get>> <<set>>
+ MasterChef()
}
@enduml
|
9c73a81e80fe6e04e1927868c2539d273c45e358 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/MyPaymentUpdateAction.puml | d827dbb00319eefa389150cfd9a1910b70dad19e | [] | 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 | 2,345 | 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 MyPaymentUpdateAction [[MyPaymentUpdateAction.svg]] {
action: String
}
interface MyPaymentAddTransactionAction [[MyPaymentAddTransactionAction.svg]] {
action: String
transaction: [[TransactionDraft.svg TransactionDraft]]
}
interface MyPaymentChangeAmountPlannedAction [[MyPaymentChangeAmountPlannedAction.svg]] {
action: String
amount: [[Money.svg Money]]
}
interface MyPaymentSetCustomFieldAction [[MyPaymentSetCustomFieldAction.svg]] {
action: String
name: String
value: [[Object.svg Object]]
}
interface MyPaymentSetMethodInfoInterfaceAction [[MyPaymentSetMethodInfoInterfaceAction.svg]] {
action: String
interface: String
}
interface MyPaymentSetMethodInfoMethodAction [[MyPaymentSetMethodInfoMethodAction.svg]] {
action: String
method: String
}
interface MyPaymentSetMethodInfoNameAction [[MyPaymentSetMethodInfoNameAction.svg]] {
action: String
name: [[LocalizedString.svg LocalizedString]]
}
interface MyPaymentSetTransactionCustomFieldAction [[MyPaymentSetTransactionCustomFieldAction.svg]] {
action: String
name: String
value: [[Object.svg Object]]
}
interface MyPaymentUpdate [[MyPaymentUpdate.svg]] {
version: Long
actions: [[MyPaymentUpdateAction.svg List<MyPaymentUpdateAction>]]
}
MyPaymentUpdateAction --> MyPaymentAddTransactionAction #blue;text:blue : "action : addTransaction"
MyPaymentUpdateAction --> MyPaymentChangeAmountPlannedAction #blue;text:blue : "action : changeAmountPlanned"
MyPaymentUpdateAction --> MyPaymentSetCustomFieldAction #blue;text:blue : "action : setCustomField"
MyPaymentUpdateAction --> MyPaymentSetMethodInfoInterfaceAction #blue;text:blue : "action : setMethodInfoInterface"
MyPaymentUpdateAction --> MyPaymentSetMethodInfoMethodAction #blue;text:blue : "action : setMethodInfoMethod"
MyPaymentUpdateAction --> MyPaymentSetMethodInfoNameAction #blue;text:blue : "action : setMethodInfoName"
MyPaymentUpdateAction --> MyPaymentSetTransactionCustomFieldAction #blue;text:blue : "action : setTransactionCustomField"
MyPaymentUpdateAction --> MyPaymentUpdate #green;text:green : "actions"
@enduml
|
f1aadc7fa87dc065a01e925b42108463760dbf67 | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Manipulators/Utils/ManipulatorsUtils.puml | ff4d3e62b1d2e8c8dde87d79212a281d796cd212 | [] | 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 | 111 | puml | @startuml
class ManipulatorsUtils <<static>> {
}
ManipulatorsUtils --> "actionModifier" EventModifiers
@enduml
|
9154c00552d4333bf200e4cc34a1a1f9a52f56c3 | 70b52b6b0217b218c77a7ab5acbdf2fce264e89f | /src/main/java/cs/service/core/resources/resources.plantuml | 73c8e876055316a62e07b94d6dd1a0b244acf45f | [] | no_license | 123cs/demo_java | b1f7befdd19640ccd241b85c5b297db02913588d | 209d9edeb6da39fe58e28190ad2327f7cb66645a | refs/heads/master | 2020-04-07T16:25:02.300852 | 2018-11-21T10:51:23 | 2018-11-21T10:51:23 | 158,528,295 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 732 | plantuml | @startuml
title __RESOURCES's Class Diagram__\n
package cs.service.core {
package cs.service.core.resources {
abstract class AbstractResource {
# _systemMain : SystemMain
# copyProperties()
# convertMapToJson()
# outputJson()
}
}
}
package cs.service.core {
package cs.service.core.resources {
class DemoResource {
# sc : SecurityContext
+ demo()
+ demoAuth()
}
}
}
DemoResource -up-|> AbstractResource
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
|
3266350dd5a96e341f7c7a29efb8814cafb30059 | d6ca810d2ec991d97c1bc8581ed06763c57641ce | /development/felica/TestCords/FericaReader/plantuml/FericaLib/FelicaLib.puml | 0da98da5ee89817c05205d5dc730352dbb2bd338 | [] | no_license | miyashita-atsushi/team_a | c847d571c5a522339ee0c3ac2c5ee0cb0753411b | 3cfec172375aafeef64c40a575dddde64f0a8ed3 | refs/heads/master | 2023-02-25T07:39:36.010130 | 2020-05-29T09:12:57 | 2020-05-29T09:12:57 | 254,561,813 | 0 | 1 | null | 2021-01-29T20:47:18 | 2020-04-10T06:33:38 | C# | UTF-8 | PlantUML | false | false | 354 | puml | @startuml
enum SystemCode {
Any= 0xffff,
Common= 0xfe00,
Cyberne= 0x0003,
Edy= 0xfe00,
Suica= 0x0003,
}
class Felica {
+ Felica()
+ Dispose() : void
+ Polling(systemcode:int) : void
+ IDm() : byte[]
+ PMm() : byte[]
+ ReadWithoutEncryption(servicecode:int, addr:int) : byte[]
}
IDisposable <|-- Felica
@enduml
|
bbc8131caf3e00705a636bcee00d3748fe672fe7 | bd63d80260f1ae132bcb12154952b9127eb7c716 | /presensor.plantuml | bd47351d761e1126767183bbf42ce16b10866724 | [] | no_license | mateuscostaluz/presensor | 73a6a3874d68fd4b61ff2aeee2e810e968c865d5 | 19c11898fed18ea2cb699e18f7786fe831bb147f | refs/heads/main | 2023-06-03T05:12:42.885084 | 2021-06-20T22:39:05 | 2021-06-20T22:39:05 | 291,566,288 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 11,724 | plantuml | @startuml
title __PRESENCE-CONTROL-USING-BLUETOOTH-BEACON's Class Diagram__\n
class br.gov.sp.fatec.presensor.controller.AlunoController {
+ AlunoController()
+ cadastro()
+ findAll()
+ login()
}
class br.gov.sp.fatec.presensor.controller.HorarioDisciplinaController {
+ HorarioDisciplinaController()
+ findAll()
+ findHorarioDisciplinaByDiaSemanaAndHorario()
}
class br.gov.sp.fatec.presensor.controller.PresencaController {
+ PresencaController()
+ findAll()
+ findByCustomFilter()
+ savePresenca()
}
class br.gov.sp.fatec.presensor.dto.AlunoLogin {
- email : String
- senha : String
+ getEmail()
+ getSenha()
}
class br.gov.sp.fatec.presensor.dto.AlunoRq {
- email : String
- nome : String
- ra : Long
- senha : String
+ getEmail()
+ getNome()
+ getRa()
+ getSenha()
+ setEmail()
+ setNome()
+ setRa()
+ setSenha()
}
class br.gov.sp.fatec.presensor.dto.AlunoRs {
- email : String
- nome : String
- ra : Long
{static} + converter()
+ getEmail()
+ getNome()
+ getRa()
+ setEmail()
+ setNome()
+ setRa()
}
class br.gov.sp.fatec.presensor.dto.HorarioDisciplinaRs {
- horarioFim : Time
- horarioInicio : Time
- id : Long
{static} + converter()
+ getDiaSemana()
+ getDisciplina()
+ getHorarioFim()
+ getHorarioInicio()
+ getId()
+ getSala()
+ setDiaSemana()
+ setDisciplina()
+ setHorarioFim()
+ setHorarioInicio()
+ setId()
+ setSala()
}
class br.gov.sp.fatec.presensor.dto.PresencaRq {
- idHorarioDisciplina : Long
- raAluno : Long
+ getIdHorarioDisciplina()
+ getRaAluno()
+ setIdHorarioDisciplina()
+ setRaAluno()
}
class br.gov.sp.fatec.presensor.dto.PresencaRs {
- dataPresenca : LocalDate
- diaSemana : String
- idPresenca : Long
- nomeAluno : String
- nomeDisciplina : String
- numeroSala : Integer
- raAluno : Long
- siglaDisciplina : String
- uuidBeaconSala : String
{static} + converter()
+ getDataPresenca()
+ getDiaSemana()
+ getIdPresenca()
+ getNomeAluno()
+ getNomeDisciplina()
+ getNumeroSala()
+ getRaAluno()
+ getSiglaDisciplina()
+ getUuidBeaconSala()
+ setDataPresenca()
+ setDiaSemana()
+ setIdPresenca()
+ setNomeAluno()
+ setNomeDisciplina()
+ setNumeroSala()
+ setRaAluno()
+ setSiglaDisciplina()
+ setUuidBeaconSala()
}
class br.gov.sp.fatec.presensor.dto.Response {
- data : Object
- message : String
- status : Integer
+ Response()
+ getData()
+ getMessage()
+ getStatus()
+ setData()
+ setMessage()
+ setStatus()
}
class br.gov.sp.fatec.presensor.exception.CustomException {
- httpStatus : HttpStatus
- message : String
{static} - serialVersionUID : long
+ CustomException()
+ getHttpStatus()
+ getMessage()
}
class br.gov.sp.fatec.presensor.model.Aluno {
- email : String
- nome : String
- ra : Long
- role : String
- senha : String
+ getEmail()
+ getNome()
+ getRa()
+ getRole()
+ getRoles()
+ getSenha()
+ setEmail()
+ setNome()
+ setRa()
+ setRole()
+ setSenha()
}
class br.gov.sp.fatec.presensor.model.DiaSemana {
- dia : String
- id : Integer
+ getDia()
+ getId()
+ setDia()
+ setId()
}
class br.gov.sp.fatec.presensor.model.Disciplina {
- nome : String
- sigla : String
+ getNome()
+ getSigla()
+ setNome()
+ setSigla()
}
class br.gov.sp.fatec.presensor.model.HorarioDisciplina {
- horarioFim : Time
- horarioInicio : Time
- id : Long
+ getDiaSemana()
+ getDisciplina()
+ getHorarioFim()
+ getHorarioInicio()
+ getId()
+ getSala()
+ setDiaSemana()
+ setDisciplina()
+ setHorarioFim()
+ setHorarioInicio()
+ setId()
+ setSala()
}
class br.gov.sp.fatec.presensor.model.Presenca {
- dataPresenca : LocalDate
- id : Long
+ getAluno()
+ getDataPresenca()
+ getHorarioDisciplina()
+ getId()
+ setAluno()
+ setDataPresenca()
+ setHorarioDisciplina()
+ setId()
}
enum br.gov.sp.fatec.presensor.model.Role {
ROLE_ADMIN
ROLE_CLIENT
}
class br.gov.sp.fatec.presensor.model.Sala {
- numero : Integer
- uuidBeacon : String
+ getNumero()
+ getUuidBeacon()
+ setNumero()
+ setUuidBeacon()
}
interface br.gov.sp.fatec.presensor.repository.AlunoRepository {
{abstract} + existsByEmail()
{abstract} + findByEmail()
}
interface br.gov.sp.fatec.presensor.repository.DisciplinaRepository {
{abstract} + findBySigla()
}
interface br.gov.sp.fatec.presensor.repository.HorarioDisciplinaRepository {
{abstract} + findByDiaSemanaAndHorarioNamedParams()
}
class br.gov.sp.fatec.presensor.repository.PresencaCustomRepository {
- em : EntityManager
+ PresencaCustomRepository()
+ findBySiglaDisciplinaAndNumeroSalaAndData()
}
interface br.gov.sp.fatec.presensor.repository.PresencaRepository {
{abstract} + findByRaAlunoAndIdHorarioDisciplinaAndData()
}
interface br.gov.sp.fatec.presensor.repository.SalaRepository {
{abstract} + findByNumero()
}
class br.gov.sp.fatec.presensor.security.JwtTokenFilter {
+ JwtTokenFilter()
# doFilterInternal()
}
class br.gov.sp.fatec.presensor.security.JwtTokenFilterConfigurer {
+ JwtTokenFilterConfigurer()
+ configure()
}
class br.gov.sp.fatec.presensor.security.JwtTokenProvider {
- secretKey : String
- validityInMilliseconds : long
+ createToken()
+ getAuthentication()
+ getUsername()
+ resolveToken()
+ validateToken()
# init()
}
class br.gov.sp.fatec.presensor.security.MyUserDetails {
+ loadUserByUsername()
}
class br.gov.sp.fatec.presensor.security.WebConfig {
+ addCorsMappings()
}
class br.gov.sp.fatec.presensor.security.WebSecurityConfig {
+ authenticationManagerBean()
+ passwordEncoder()
# configure()
}
class br.gov.sp.fatec.presensor.service.DateTimeServices {
{static} + getDayOfWeek()
{static} + getLocalDate()
{static} + getLocalTime()
}
class br.gov.sp.fatec.presensor.service.UserService {
- authenticationManager : AuthenticationManager
- passwordEncoder : PasswordEncoder
+ signin()
+ signup()
}
br.gov.sp.fatec.presensor.controller.AlunoController o-- br.gov.sp.fatec.presensor.repository.AlunoRepository : alunoRepository
br.gov.sp.fatec.presensor.controller.AlunoController o-- br.gov.sp.fatec.presensor.service.UserService : userService
br.gov.sp.fatec.presensor.controller.HorarioDisciplinaController o-- br.gov.sp.fatec.presensor.repository.HorarioDisciplinaRepository : horarioDisciplinaRepository
br.gov.sp.fatec.presensor.controller.PresencaController o-- br.gov.sp.fatec.presensor.repository.AlunoRepository : alunoRepository
br.gov.sp.fatec.presensor.controller.PresencaController o-- br.gov.sp.fatec.presensor.repository.HorarioDisciplinaRepository : horarioDisciplinaRepository
br.gov.sp.fatec.presensor.controller.PresencaController o-- br.gov.sp.fatec.presensor.repository.PresencaCustomRepository : presencaCustomRepository
br.gov.sp.fatec.presensor.controller.PresencaController o-- br.gov.sp.fatec.presensor.repository.PresencaRepository : presencaRepository
br.gov.sp.fatec.presensor.dto.HorarioDisciplinaRs o-- br.gov.sp.fatec.presensor.model.DiaSemana : diaSemana
br.gov.sp.fatec.presensor.dto.HorarioDisciplinaRs o-- br.gov.sp.fatec.presensor.model.Disciplina : disciplina
br.gov.sp.fatec.presensor.dto.HorarioDisciplinaRs o-- br.gov.sp.fatec.presensor.model.Sala : sala
br.gov.sp.fatec.presensor.model.HorarioDisciplina o-- br.gov.sp.fatec.presensor.model.DiaSemana : diaSemana
br.gov.sp.fatec.presensor.model.HorarioDisciplina o-- br.gov.sp.fatec.presensor.model.Disciplina : disciplina
br.gov.sp.fatec.presensor.model.HorarioDisciplina o-- br.gov.sp.fatec.presensor.model.Sala : sala
br.gov.sp.fatec.presensor.model.Presenca o-- br.gov.sp.fatec.presensor.model.Aluno : aluno
br.gov.sp.fatec.presensor.model.Presenca o-- br.gov.sp.fatec.presensor.model.HorarioDisciplina : horarioDisciplina
br.gov.sp.fatec.presensor.repository.PresencaCustomRepository o-- br.gov.sp.fatec.presensor.repository.DisciplinaRepository : disciplinaRepository
br.gov.sp.fatec.presensor.repository.PresencaCustomRepository o-- br.gov.sp.fatec.presensor.repository.SalaRepository : salaRepository
br.gov.sp.fatec.presensor.security.JwtTokenFilter o-- br.gov.sp.fatec.presensor.security.JwtTokenProvider : jwtTokenProvider
br.gov.sp.fatec.presensor.security.JwtTokenFilterConfigurer o-- br.gov.sp.fatec.presensor.security.JwtTokenProvider : jwtTokenProvider
br.gov.sp.fatec.presensor.security.JwtTokenProvider o-- br.gov.sp.fatec.presensor.security.MyUserDetails : myUserDetails
br.gov.sp.fatec.presensor.security.MyUserDetails o-- br.gov.sp.fatec.presensor.repository.AlunoRepository : alunoRepository
br.gov.sp.fatec.presensor.security.WebSecurityConfig o-- br.gov.sp.fatec.presensor.security.JwtTokenProvider : jwtTokenProvider
br.gov.sp.fatec.presensor.service.UserService o-- br.gov.sp.fatec.presensor.repository.AlunoRepository : alunoRepository
br.gov.sp.fatec.presensor.service.UserService o-- br.gov.sp.fatec.presensor.security.JwtTokenProvider : jwtTokenProvider
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
|
8d6db404565caa3984b2fdceaa3503fb241cc528 | abf0723c3044635cdc4da287d99d8757c11375fa | /src/com/yuuy/spring/framework/framework.plantuml | 1b876d3dc7bb616ae351b23e46b312e9f256df04 | [] | no_license | YuuyWei/Learn-Java | 9be260ee521c935c08d88a85351840395d557c00 | 8b5c6781741d55d627d9eceda04ab5ccd1600ef8 | refs/heads/master | 2023-04-29T09:55:20.335076 | 2021-05-11T14:33:37 | 2021-05-11T14:33:37 | 364,447,572 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,113 | plantuml | @startuml
title __FRAMEWORK's Class Diagram__\n
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.Autowired {
}
}
namespace com.yuuy.spring.framework {
class com.yuuy.spring.framework.BeanDefinition {
- clazz : Class
- scope : String
+ BeanDefinition()
+ getClazz()
+ getScope()
+ setClazz()
+ setScope()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.BeanNameAware {
{abstract} + setBeanName()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.BeanPostProcessor {
{abstract} + postProcessorAfterInitialization()
{abstract} + postProcessorBeforeInitialization()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.Component {
{abstract} + value()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.ComponentScan {
{abstract} + value()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.InitializeBean {
{abstract} + afterPropertiesSet()
}
}
namespace com.yuuy.spring.framework {
class com.yuuy.spring.framework.MyApplicationContext {
- beanDefinitionMap : Map<String, BeanDefinition>
- beanPostProcessors : List<String>
- configClass : Class
- singletonPools : Map<String, Object>
+ MyApplicationContext()
+ getBean()
- createBean()
- createSingleton()
{static} - getClass()
- getScanPath()
- register()
- registerBeanDefinition()
- registerBeanPostProcessor()
- scan()
}
}
namespace com.yuuy.spring.framework {
interface com.yuuy.spring.framework.Scope {
{abstract} + value()
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
|
636e5488a8ca7c6dfa96c392376bf382e7602fda | f18ba1fbeb7f8d6149aff64633f9c77a92cfc936 | /assignments/e.lukyanchikova/elukyanchikovaTP3/elukyanchikovaTP3.plantuml | 8a542b859696a82bc5b7ee24a0d78224c88ab15d | [] | no_license | kzvdar42/InnopolisDesignPatterns | c34a728b7964f22a6b774a4616b7ac9515ae6263 | b1042e76875c9ccf69017e20edcea4b9e7b5682b | refs/heads/master | 2021-02-07T05:17:54.245396 | 2020-04-19T22:40:48 | 2020-04-19T22:40:48 | 243,987,548 | 0 | 0 | null | 2020-02-29T14:54:34 | 2020-02-29T14:54:34 | null | UTF-8 | PlantUML | false | false | 1,891 | plantuml | @startuml
title __ELUKYANCHIKOVATP3's Class Diagram__\n
class elukyanchikovaTP3.BrestPepperoniPizza {
+ BrestPepperoniPizza()
}
class elukyanchikovaTP3.BrestVegetarianPizza {
+ BrestVegetarianPizza()
}
class elukyanchikovaTP3.Main {
{static} + main()
}
abstract class elukyanchikovaTP3.Pizza {
# pizzaName : String
+ cook()
+ deliver()
+ getPizzaName()
+ pack()
+ prepare()
}
abstract class elukyanchikovaTP3.Pizzeria {
+ orderPizza()
{abstract} ~ createPizza()
}
namespace elukyanchikovaTP3 {
class elukyanchikovaTP3.PizzeriaStyleBrest {
# createPizza()
}
}
class elukyanchikovaTP3.PizzeriaStyleStrasbourg {
# createPizza()
}
class elukyanchikovaTP3.PizzeriaTest {
+ BrestPepperoniPizzaTest()
+ BrestVegetarianPizzaTest()
+ StrasbourgPepperoniPizzaTest()
+ StrasbourgVegetarianPizzaTest()
}
class elukyanchikovaTP3.StrasbourgPepperroniPizza {
+ StrasbourgPepperroniPizza()
}
class elukyanchikovaTP3.StrasbourgVegetarianPizza {
+ StrasbourgVegetarianPizza()
}
elukyanchikovaTP3.BrestPepperoniPizza -up-|> elukyanchikovaTP3.Pizza
elukyanchikovaTP3.BrestVegetarianPizza -up-|> elukyanchikovaTP3.Pizza
elukyanchikovaTP3.PizzeriaStyleBrest -up-|> elukyanchikovaTP3.Pizzeria
elukyanchikovaTP3.PizzeriaStyleStrasbourg -up-|> elukyanchikovaTP3.Pizzeria
elukyanchikovaTP3.StrasbourgPepperroniPizza -up-|> elukyanchikovaTP3.Pizza
elukyanchikovaTP3.StrasbourgVegetarianPizza -up-|> elukyanchikovaTP3.Pizza
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
|
de702924498a2692a03d45a32f064ae2b60a6dcf | 4d643dcfa275852670031cf5749921cfd235221c | /patterns/b_Iterator.puml | 13f6f023019139962445d1e63d9ba6a041c48f01 | [] | no_license | ezhov-da/notes | a2552cb0a53ffccf6e426986a06af09d280d2566 | 51e77e442c3db8900eadc3b35c701b26b170911d | refs/heads/master | 2023-05-12T20:58:00.276582 | 2021-05-28T05:37:01 | 2021-05-28T05:37:01 | 275,666,019 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 681 | puml | @startuml
title Итератор (Iterator)
note as INFO
<b>Тип:</b> <u>Поведенческий</u>
<b>Что это:</b>
Предоставляет способ последова-
тельного доступа к элементам
множества, независимо от его
внутреннего устройства.
endnote
class Client
interface Aggregate{
+createIterator(): Context
}
class ConcreteAggregate{
+createIterator() : Context
}
interface Iterator{
+next(): Context
}
class ConcreteIterator{
+next(): Context
}
Client --> Aggregate
Client --> Iterator
Aggregate <|.. ConcreteAggregate
Iterator <|.. ConcreteIterator
@enduml |
eefa1414ea4d0ea81bda9c98f65ed8f742e58738 | 9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9 | /java/resources/plantuml/structural/Composite-class.puml | 1080eadb8f0fc69e3ad0246fef3bd3435226f8dc | [
"MIT"
] | permissive | vuquangtin/designpattern | 4d4a7d09780a0ebde6b12f8edf589b6f45b38f62 | fc672493ef31647bd02c4122ab01992fca14675f | refs/heads/master | 2022-09-12T07:00:42.637733 | 2020-09-29T04:20:50 | 2020-09-29T04:20:50 | 225,505,298 | 0 | 0 | null | 2022-09-01T23:16:34 | 2019-12-03T01:41:33 | Java | UTF-8 | PlantUML | false | false | 614 | puml | @startuml
title Composite
abstract class Component{
# int price
+ {abstract} void describe()
+ int getPrice()
+ void remove()
+ void add()
+ Component getChild(int n)
}
class SinglePart{
+ void describe()
}
class CompoundPart{
+ void describe()
+ int getPrice()
+ void remove()
+ void add()
+ Component getChild(int n)
}
class SinglePartException{
}
class Сlient{
}
Сlient -right-> Component
skinparam linetype ortho
Component .right.> SinglePartException
CompoundPart o--up Component
Component <|--down SinglePart
Component <|--down CompoundPart
@enduml
|
c7a98bcbd5d89bc38d598535476ce7dec1d6c71c | c9c618e7ea0dc7e1e8957ddba74791e0b34419af | /src/main/java/structuration/proxy/eni/proxy.puml | c73c3a4d4a1efee42a41a1be1f95639657f5a953 | [] | no_license | soffiane/java-design-patterns | c978e24723721895e559683ad3334a44ce540a05 | bff3ce4caf56590daa35e8b1a08bdcdf6e118e73 | refs/heads/master | 2020-12-03T06:12:13.046057 | 2020-02-13T21:48:22 | 2020-02-13T21:48:22 | 231,225,139 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 759 | puml | @startuml
note "Proxy est un pattern dont le but est de\nfournir un objet qui va controler l'acces\na un autre. Le proxy a la meme interface\nque l'objet controlé. Ici on a besoin de differer\nle chargement de la video sur la fiche d'un vehicule" as N0
object VueVehicule
interface Animation{
+clic()
+dessine()
}
class Film{
+clic()
+dessine()
+charge()
+joue()
}
class AnimationProxy{
#photo
+clic()
+dessine()
+dessine(photo)
}
VueVehicule --> "1 #animation" Animation
AnimationProxy ..> Animation
Film ..> Animation
AnimationProxy --> "0..1 #film" Film
note bottom of AnimationProxy : if (film != null)\nfilm.dessine();\nelse\ndessine(photo);
note right of AnimationProxy : if(film == null) {\nfilm = new Film();\nfilm.charge();}\nfilm.joue();
@enduml |
18044170e2df8ff422d02437f97d25378ced1f32 | 4cf5737cadb807568ddac14c8f1ff342a6e6cb0a | /documentation/serviceApi/inventory/media/src/useCase1Model.puml | c525299da6b5d5a0e73fd67fabb3063b657c8ea4 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Legato-SDK | b2ed422108f4bbb5d3aff27123d3f31305fd808f | 7f723970592cc5020aaaa0d2ffe30de6a73b3d97 | refs/heads/working-draft | 2023-07-06T06:44:01.113378 | 2023-06-23T14:14:48 | 2023-06-23T14:14:48 | 94,903,642 | 5 | 4 | Apache-2.0 | 2022-05-04T10:22:56 | 2017-06-20T15:00:38 | null | UTF-8 | PlantUML | false | false | 3,562 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class MefServiceConfiguration {
@type*: string
}
class Service {
description: string
endDate: date-time
externalId: string
serviceDate: string
serviceType: string
startDate: date-time
startMode: string
state: ServiceStateType
}
Service *-->"*" Note_BusSof : note
Service *-->"*" RelatedPlaceRefOrValue : place
Service *-->"*" RelatedContactInformation : relatedContactInformation
Service *--> MefServiceConfiguration : serviceConfiguration
Service *-->"*" ServiceOrderItemRef : serviceOrderItem
Service *-->"*" ServiceRelationship : serviceRelationship
class ServiceOrderItemRef {
itemId*: string
serviceOrderHref: string
serviceOrderId: string
}
class ServiceRef {
href: uri
id*: string
}
class ServiceRelationship {
relationshipType*: string
}
ServiceRelationship *--> "1" ServiceRef : service
enum ServiceStateType {
feasibilityChecked
designed
reserved
active
inactive
terminated
}
class RelatedContactInformation {
emailAddress*: string
name*: string
number*: string
numberExtension: string
organization: string
role*: string
}
RelatedContactInformation *--> FieldedAddressValue : postalAddress
class FieldedAddressValue {
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
streetName*: string
streetNr: string
streetNrLast: string
streetNrLastSuffix: string
streetNrSuffix: string
streetSuffix: string
streetType: string
}
FieldedAddressValue *--> GeographicSubAddress : geographicSubAddress
class Note_BusSof {
author*: string
date*: date-time
id*: string
source*: BusSofType
text*: string
}
enum BusSofType {
bus
sof
}
class RelatedPlaceRefOrValue {
@type*: string
@schemaLocation: uri
role*: string
}
class FieldedAddress {
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
streetName*: string
streetNr: string
streetNrLast: string
streetNrLastSuffix: string
streetNrSuffix: string
streetSuffix: string
streetType: string
}
RelatedPlaceRefOrValue <|-- FieldedAddress
FieldedAddress *--> GeographicSubAddress : geographicSubAddress
class FormattedAddress {
addrLine1*: string
addrLine2: string
city*: string
country*: string
locality: string
postcode: string
postcodeExtension: string
stateOrProvince: string
}
RelatedPlaceRefOrValue <|-- FormattedAddress
class GeographicAddressLabel {
externalReferenceId*: string
externalReferenceType*: string
}
RelatedPlaceRefOrValue <|-- GeographicAddressLabel
class GeographicAddressRef {
href: string
id*: string
}
RelatedPlaceRefOrValue <|-- GeographicAddressRef
class GeographicSiteRef {
href: string
id*: string
}
RelatedPlaceRefOrValue <|-- GeographicSiteRef
class GeographicSubAddress {
buildingName: string
levelNumber: string
levelType: string
privateStreetName: string
privateStreetNumber: string
}
GeographicSubAddress *-->"*" GeographicSubAddressUnit : subUnit
class GeographicPoint {
spatialRef*: string
x*: string
y*: string
z: string
}
RelatedPlaceRefOrValue <|-- GeographicPoint
class GeographicSubAddressUnit {
subUnitNumber*: string
subUnitType*: string
}
@enduml
|
e3eb10c9890f1d43f21c9c42a73c72b38efbc078 | 8cf018eb6de40017601592f1f125ea67d5de7086 | /docs/Solution/Service-Stack/Storage-Services/Secondary-Data-Store/Logical.puml | 9c33d8cb34b8ea476303046d0ef278785967aaa0 | [] | no_license | CAADE/ADC | bec251477e457a9ee4eca673fdab04b65c4290f5 | a81ba7532e7092ab564bcb30f8ec36bab3b71d0b | refs/heads/master | 2021-06-23T22:20:00.239150 | 2019-04-03T05:15:20 | 2019-04-03T05:15:20 | 104,887,854 | 5 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 367 | puml | @startuml
package "Service-Stack/Storage-Services/Secondary-Data-Store" {
interface "Service-Stack/Storage-Services/Secondary-Data-Store" {
}
CLI ()-- "Service-Stack/Storage-Services/Secondary-Data-Store"
REST ()-- "Service-Stack/Storage-Services/Secondary-Data-Store"
Web ()-- "Service-Stack/Storage-Services/Secondary-Data-Store"
}
@enduml
|
dc11f663dfeea76f365f0875f71eb4fe21db99d2 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StagedQuoteState.puml | f0ae67202053d2db459dc7adaa91b7f53ca048a5 | [] | 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,617 | puml | @startuml
hide methods
enum StagedQuoteState {
IN_PROGRESS
SENT
CLOSED
}
interface StagedQuoteStateChangedMessage [[StagedQuoteStateChangedMessage.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]]
stagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
oldStagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
}
interface StagedQuoteStateChangedMessagePayload [[StagedQuoteStateChangedMessagePayload.svg]] {
type: String
stagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
oldStagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
}
interface StagedQuoteChangeStagedQuoteStateAction [[StagedQuoteChangeStagedQuoteStateAction.svg]] {
action: String
stagedQuoteState: [[StagedQuoteState.svg StagedQuoteState]]
}
StagedQuoteState --> StagedQuoteStateChangedMessage #green;text:green : "stagedQuoteState"
StagedQuoteState --> StagedQuoteStateChangedMessage #green;text:green : "oldStagedQuoteState"
StagedQuoteState --> StagedQuoteStateChangedMessagePayload #green;text:green : "stagedQuoteState"
StagedQuoteState --> StagedQuoteStateChangedMessagePayload #green;text:green : "oldStagedQuoteState"
StagedQuoteState --> StagedQuoteChangeStagedQuoteStateAction #green;text:green : "stagedQuoteState"
@enduml
|
169f8dcf3b155df3d6a11d4052e3d3c7d3f286e8 | fb399fdc6767c22f28bd8abcd96bb48e6d8257b0 | /src/main/java/edu/kis/vh/nursery/factory/factory.plantuml | a75766a27950f767f63e3529483c6e6e88e2992d | [] | no_license | WojciechPrzerywacz/pio_git_rhymers | 97bde023526c30d77f28780a92dda40b0d9fcbec | ce0f6c711efacc804468030b1a8fb1214c4eb7c3 | refs/heads/master | 2023-02-18T22:15:19.330620 | 2021-01-19T20:11:55 | 2021-01-19T20:11:55 | 321,822,987 | 1 | 0 | null | 2021-01-19T20:22:33 | 2020-12-16T00:22:56 | HTML | UTF-8 | PlantUML | false | false | 908 | plantuml | @startuml
title __FACTORY's Class Diagram__\n
namespace edu.kis.vh.nursery {
namespace factory {
class edu.kis.vh.nursery.factory.DefaultRhymersFactory {
+ getFIFORhymer()
+ getFalseRhymer()
+ getHanoiRhymer()
+ getStandardRhymer()
}
}
}
namespace edu.kis.vh.nursery {
namespace factory {
interface edu.kis.vh.nursery.factory.RhymersFactory {
{abstract} + getFIFORhymer()
{abstract} + getFalseRhymer()
{abstract} + getHanoiRhymer()
{abstract} + getStandardRhymer()
}
}
}
edu.kis.vh.nursery.factory.DefaultRhymersFactory .up.|> edu.kis.vh.nursery.factory.RhymersFactory
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
|
842a85b93fa7baff59fdd1a10272b054e2680226 | c452e4f63f50eca1ab44e5bb5fa557cbc5c93515 | /src/main/resources/ex43/ClassDiagrams/FolderType.puml | 583a6bd5d6686303aecea8aa3ac10927d900d94c | [] | no_license | mplekunov/Assignment_3 | b1ca62cde7a6a1dd495bdc8c52e34d494a8e947b | 81138b959274d3c8bf9586c0c4f6c164f6c84780 | refs/heads/master | 2023-05-31T12:28:19.214249 | 2021-06-21T00:40:42 | 2021-06-21T00:40:42 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 91 | puml | @startuml
'https://plantuml.com/class-diagram
enum FolderType {
CSS,
JS
}
@enduml |
f89ba5f55b52ae74bec36a2002818c36a30dd0d3 | 844665d08d1be5dacc41d8495725d881c68dba71 | /Conferencias/Conferencia 4_ Patrones de Diseño de Comportamiento/PrincipleAndPatternDesign/out/production/PrincipleAndPatternDesign/cu/datys/patterns/gof/behavioral/state/traffic/class-diagram.puml | 57f452fd51af648707d407a5168966fd05b6ab70 | [
"MIT"
] | permissive | alexescalonafernandez/curso-patrones-diseno | ec1cf0a993707d78c294208e04604a3a0ffd164e | f586e27791e1281087df6cc137da87f407179e65 | refs/heads/master | 2021-01-25T13:35:26.659206 | 2018-03-02T20:18:06 | 2018-03-02T20:18:06 | 123,588,331 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,614 | puml | @startuml
skinparam backgroundcolor transparent
skinparam classFontSize 18
skinparam noteFontSize 18
skinparam arrowFontSize 18
skinparam classAttributeFontSize 18
skinparam titleFontColor #5cb85c
Title State Pattern Example
abstract class State {
+ {abstract} void handleRequest()
}
class TrafficLight {
- final State red
- final State yellow
- final State green
- State state
+ TrafficLight()
+ void changeState()
+ State getGreenLightState()
+ State getYellowLightState()
+ State getRedLightState()
+ void setState(State state)
}
class GreenTrafficLightState extends State{
- TrafficLight trafficLight
+ GreenTrafficLightState(TrafficLight trafficLight)
+ void handleRequest()
}
class RedTrafficLightState extends State{
- TrafficLight trafficLight
+ RedTrafficLightState(TrafficLight trafficLight)
+ void handleRequest()
}
class YellowTrafficLightState extends State{
- TrafficLight trafficLight
+ YellowTrafficLightState(TrafficLight trafficLight)
+ void handleRequest()
}
TrafficLight --> State: has
note right of TrafficLight::TrafficLight
red = new RedTrafficLightState(this);
yellow = new YellowTrafficLightState(this);
green = new GreenTrafficLightState(this);
state = red;
end note
note right of TrafficLight::changeState
state.handleRequest();
end note
note top of RedTrafficLightState
change to green
end note
note top of GreenTrafficLightState
public void handleRequest() {
State next = trafficLight.getYellowLightState();
trafficLight.setState(next);
}
end note
@enduml |
6a776e119bfa0cce480c97a1270620d173d7c33b | a775a2ceb878c990d1a21acbdf1b21d2a1ff040a | /openhealthcard.common/doc/plantuml/OHCCOM/common.plantuml | 5730e51095d6d8ca298a0b0b2d99daffe5978d80 | [
"Apache-2.0"
] | permissive | gematik/ref-OpenHealthCard-Common-Android | ebcc0df76b7495ba1ea34fcc1876e81466457064 | 1324039e57079fb608f4d8f883c1f6fb0ff1330d | refs/heads/master | 2022-01-21T06:40:25.029973 | 2022-01-07T07:24:31 | 2022-01-07T07:24:31 | 214,091,590 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,386 | plantuml | @startuml
namespace de.gematik.ti.openhealthcard.common {
abstract class de.gematik.ti.openhealthcard.common.AbstractAndroidCardReaderController {
{static} - LOG : Logger
{static} - MAX_SECONDS_WAIT_FOR_PERMISSION : long
- context : Context
- permissionWaitingLock : ReentrantLock
+ setContext()
+ waitForPermission()
# checkContext()
# getContext()
- requestPermissionAndWait()
}
}
namespace de.gematik.ti.openhealthcard.common {
class de.gematik.ti.openhealthcard.common.WaitingPermissionReceiver {
{static} - LOG : Logger
- context : Context
- permission : String
- receivedResult : CompletableFuture<Boolean>
+ onReceive()
# WaitingPermissionReceiver()
~ get()
- registerPermissionReceiver()
- unregisterPermissionReceiver()
}
}
de.gematik.ti.openhealthcard.common.AbstractAndroidCardReaderController .up.|> de.gematik.ti.openhealthcard.common.interfaces.IAndroidCardReaderController
de.gematik.ti.openhealthcard.common.AbstractAndroidCardReaderController -up-|> de.gematik.ti.cardreader.provider.api.AbstractCardReaderController
de.gematik.ti.openhealthcard.common.WaitingPermissionReceiver -up-|> android.content.BroadcastReceiver
@enduml
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.