blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 227 | content_id stringlengths 40 40 | detected_licenses listlengths 0 28 | license_type stringclasses 2 values | repo_name stringlengths 6 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 61 values | visit_date timestamp[us]date 2015-08-14 10:26:58 2023-09-06 07:53:38 | revision_date timestamp[us]date 2011-01-31 21:28:29 2023-09-05 14:54:58 | committer_date timestamp[us]date 2011-01-31 21:28:29 2023-09-05 14:54:58 | github_id int64 206k 631M ⌀ | star_events_count int64 0 108k | fork_events_count int64 0 34.4k | gha_license_id stringclasses 13 values | gha_event_created_at timestamp[us]date 2012-08-01 17:54:24 2023-09-14 21:57:05 ⌀ | gha_created_at timestamp[us]date 2009-05-21 02:09:00 2023-04-21 10:18:22 ⌀ | gha_language stringclasses 79 values | src_encoding stringclasses 12 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 8 1.29M | extension stringclasses 17 values | code stringlengths 8 1.29M | non_uml bool 1 class | uml bool 1 class | has_non_ascii bool 2 classes | has_non_latin bool 1 class | uml_subtype stringclasses 10 values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
03e05f7bc4adcddd9c41bcf6cac2f4f4928c73ec | 6efcde6793a8895229ca8face50530e85dfe5869 | /exercise44/docs/classes.puml | 99a1dee34fd55918141137b98b6a7d0c67c7ff38 | [] | no_license | Jyke321/cordonero-a04 | dde9e4144b0660f2a10e69b6786d0dbddf4758c4 | 0b3fe00b2525d99ae820de61baad046411a1b2bb | refs/heads/main | 2023-08-23T03:19:27.506727 | 2021-10-17T21:56:41 | 2021-10-17T21:56:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 345 | puml | @startuml
class Solution44 {
+main(String args[])
}
class DataHandler {
-List<Hashmap<>> data
+getDataFromJSON()
-doesProductExist()
-displayProduct()
'this one has a loop and uses the private functions
'to prompt the user until a corresponding product is found
+findProduct()
}
Solution44 -- DataHandler
@enduml | false | true | false | false | class |
8c6ca9d0a349de266425f1ff4fe2163a26037eae | 1ec3cfb7bb25780a4d2c84f206540df171438d05 | /doc/basic_data_modell.puml | c85feca8d30b3e12b4e4eee6422774144f83599d | [
"Apache-2.0"
] | permissive | OkieOth/othDict | 2f0670d0501215214619650d465c6b4ca1df5d82 | 1ff49635e57231731dbe66dc89995821d146e848 | refs/heads/master | 2016-09-12T22:50:28.952325 | 2016-04-20T20:53:37 | 2016-04-20T20:53:37 | 56,350,676 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 235 | puml | @startuml
class Language {
short_name
descr
}
class App {
short_name
descr
}
class DictEntry {
language_id
resource_id
text
status
}
Language "1" -- "0..n" DictEntry
App "m" -- "n" DictEntry
@enduml
| false | true | false | false | class |
a352d225173b0c52548a5c7ffbe273173bc311fe | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductUpdateAction.puml | 5294c6a0d23c4735c073c9934b96400d95fd17fa | [] | 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 | 14,243 | 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 ProductUpdateAction [[ProductUpdateAction.svg]] {
action: String
}
interface ProductAddAssetAction [[ProductAddAssetAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
asset: [[AssetDraft.svg AssetDraft]]
position: Integer
}
interface ProductAddExternalImageAction [[ProductAddExternalImageAction.svg]] {
action: String
variantId: Long
sku: String
image: [[Image.svg Image]]
staged: Boolean
}
interface ProductAddPriceAction [[ProductAddPriceAction.svg]] {
action: String
variantId: Long
sku: String
price: [[PriceDraft.svg PriceDraft]]
staged: Boolean
}
interface ProductAddToCategoryAction [[ProductAddToCategoryAction.svg]] {
action: String
category: [[CategoryResourceIdentifier.svg CategoryResourceIdentifier]]
orderHint: String
staged: Boolean
}
interface ProductAddVariantAction [[ProductAddVariantAction.svg]] {
action: String
sku: String
key: String
prices: [[PriceDraft.svg List<PriceDraft>]]
images: [[Image.svg List<Image>]]
attributes: [[Attribute.svg List<Attribute>]]
staged: Boolean
assets: [[AssetDraft.svg List<AssetDraft>]]
}
interface ProductChangeAssetNameAction [[ProductChangeAssetNameAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
name: [[LocalizedString.svg LocalizedString]]
}
interface ProductChangeAssetOrderAction [[ProductChangeAssetOrderAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetOrder: [[String.svg List<String>]]
}
interface ProductChangeMasterVariantAction [[ProductChangeMasterVariantAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
}
interface ProductChangeNameAction [[ProductChangeNameAction.svg]] {
action: String
name: [[LocalizedString.svg LocalizedString]]
staged: Boolean
}
interface ProductChangePriceAction [[ProductChangePriceAction.svg]] {
action: String
priceId: String
price: [[PriceDraft.svg PriceDraft]]
staged: Boolean
}
interface ProductChangeSlugAction [[ProductChangeSlugAction.svg]] {
action: String
slug: [[LocalizedString.svg LocalizedString]]
staged: Boolean
}
interface ProductLegacySetSkuAction [[ProductLegacySetSkuAction.svg]] {
action: String
sku: String
variantId: Integer
}
interface ProductMoveImageToPositionAction [[ProductMoveImageToPositionAction.svg]] {
action: String
variantId: Long
sku: String
imageUrl: String
position: Long
staged: Boolean
}
interface ProductPublishAction [[ProductPublishAction.svg]] {
action: String
scope: [[ProductPublishScope.svg ProductPublishScope]]
}
interface ProductRemoveAssetAction [[ProductRemoveAssetAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
}
interface ProductRemoveFromCategoryAction [[ProductRemoveFromCategoryAction.svg]] {
action: String
category: [[CategoryResourceIdentifier.svg CategoryResourceIdentifier]]
staged: Boolean
}
interface ProductRemoveImageAction [[ProductRemoveImageAction.svg]] {
action: String
variantId: Long
sku: String
imageUrl: String
staged: Boolean
}
interface ProductRemovePriceAction [[ProductRemovePriceAction.svg]] {
action: String
priceId: String
sku: String
variantId: Long
price: [[PriceDraft.svg PriceDraft]]
staged: Boolean
}
interface ProductRemoveVariantAction [[ProductRemoveVariantAction.svg]] {
action: String
id: Long
sku: String
staged: Boolean
}
interface ProductRevertStagedChangesAction [[ProductRevertStagedChangesAction.svg]] {
action: String
}
interface ProductRevertStagedVariantChangesAction [[ProductRevertStagedVariantChangesAction.svg]] {
action: String
variantId: Long
}
interface ProductSetAssetCustomFieldAction [[ProductSetAssetCustomFieldAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
name: String
value: [[Object.svg Object]]
}
interface ProductSetAssetCustomTypeAction [[ProductSetAssetCustomTypeAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface ProductSetAssetDescriptionAction [[ProductSetAssetDescriptionAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
description: [[LocalizedString.svg LocalizedString]]
}
interface ProductSetAssetKeyAction [[ProductSetAssetKeyAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
}
interface ProductSetAssetSourcesAction [[ProductSetAssetSourcesAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
sources: [[AssetSource.svg List<AssetSource>]]
}
interface ProductSetAssetTagsAction [[ProductSetAssetTagsAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
assetId: String
assetKey: String
tags: [[String.svg List<String>]]
}
interface ProductSetAttributeAction [[ProductSetAttributeAction.svg]] {
action: String
variantId: Long
sku: String
name: String
value: [[Object.svg Object]]
staged: Boolean
}
interface ProductSetAttributeInAllVariantsAction [[ProductSetAttributeInAllVariantsAction.svg]] {
action: String
name: String
value: [[Object.svg Object]]
staged: Boolean
}
interface ProductSetCategoryOrderHintAction [[ProductSetCategoryOrderHintAction.svg]] {
action: String
categoryId: String
orderHint: String
staged: Boolean
}
interface ProductSetDescriptionAction [[ProductSetDescriptionAction.svg]] {
action: String
description: [[LocalizedString.svg LocalizedString]]
staged: Boolean
}
interface ProductSetDiscountedPriceAction [[ProductSetDiscountedPriceAction.svg]] {
action: String
priceId: String
staged: Boolean
discounted: [[DiscountedPriceDraft.svg DiscountedPriceDraft]]
}
interface ProductSetImageLabelAction [[ProductSetImageLabelAction.svg]] {
action: String
sku: String
variantId: Long
imageUrl: String
label: String
staged: Boolean
}
interface ProductSetKeyAction [[ProductSetKeyAction.svg]] {
action: String
key: String
}
interface ProductSetMetaDescriptionAction [[ProductSetMetaDescriptionAction.svg]] {
action: String
metaDescription: [[LocalizedString.svg LocalizedString]]
staged: Boolean
}
interface ProductSetMetaKeywordsAction [[ProductSetMetaKeywordsAction.svg]] {
action: String
metaKeywords: [[LocalizedString.svg LocalizedString]]
staged: Boolean
}
interface ProductSetMetaTitleAction [[ProductSetMetaTitleAction.svg]] {
action: String
metaTitle: [[LocalizedString.svg LocalizedString]]
staged: Boolean
}
interface ProductSetPriceKeyAction [[ProductSetPriceKeyAction.svg]] {
action: String
priceId: String
staged: Boolean
key: String
}
interface ProductSetPriceModeAction [[ProductSetPriceModeAction.svg]] {
action: String
priceMode: [[ProductPriceModeEnum.svg ProductPriceModeEnum]]
}
interface ProductSetPricesAction [[ProductSetPricesAction.svg]] {
action: String
variantId: Long
sku: String
prices: [[PriceDraft.svg List<PriceDraft>]]
staged: Boolean
}
interface ProductSetProductPriceCustomFieldAction [[ProductSetProductPriceCustomFieldAction.svg]] {
action: String
priceId: String
staged: Boolean
name: String
value: [[Object.svg Object]]
}
interface ProductSetProductPriceCustomTypeAction [[ProductSetProductPriceCustomTypeAction.svg]] {
action: String
priceId: String
staged: Boolean
type: [[TypeResourceIdentifier.svg TypeResourceIdentifier]]
fields: [[FieldContainer.svg FieldContainer]]
}
interface ProductSetProductVariantKeyAction [[ProductSetProductVariantKeyAction.svg]] {
action: String
variantId: Long
sku: String
key: String
staged: Boolean
}
interface ProductSetSearchKeywordsAction [[ProductSetSearchKeywordsAction.svg]] {
action: String
searchKeywords: [[SearchKeywords.svg SearchKeywords]]
staged: Boolean
}
interface ProductSetSkuAction [[ProductSetSkuAction.svg]] {
action: String
variantId: Long
sku: String
staged: Boolean
}
interface ProductSetTaxCategoryAction [[ProductSetTaxCategoryAction.svg]] {
action: String
taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]]
}
interface ProductTransitionStateAction [[ProductTransitionStateAction.svg]] {
action: String
state: [[StateResourceIdentifier.svg StateResourceIdentifier]]
force: Boolean
}
interface ProductUnpublishAction [[ProductUnpublishAction.svg]] {
action: String
}
interface ProductUpdate [[ProductUpdate.svg]] {
version: Long
actions: [[ProductUpdateAction.svg List<ProductUpdateAction>]]
}
ProductUpdateAction --> ProductAddAssetAction #blue;text:blue : "action : addAsset"
ProductUpdateAction --> ProductAddExternalImageAction #blue;text:blue : "action : addExternalImage"
ProductUpdateAction --> ProductAddPriceAction #blue;text:blue : "action : addPrice"
ProductUpdateAction --> ProductAddToCategoryAction #blue;text:blue : "action : addToCategory"
ProductUpdateAction --> ProductAddVariantAction #blue;text:blue : "action : addVariant"
ProductUpdateAction --> ProductChangeAssetNameAction #blue;text:blue : "action : changeAssetName"
ProductUpdateAction --> ProductChangeAssetOrderAction #blue;text:blue : "action : changeAssetOrder"
ProductUpdateAction --> ProductChangeMasterVariantAction #blue;text:blue : "action : changeMasterVariant"
ProductUpdateAction --> ProductChangeNameAction #blue;text:blue : "action : changeName"
ProductUpdateAction --> ProductChangePriceAction #blue;text:blue : "action : changePrice"
ProductUpdateAction --> ProductChangeSlugAction #blue;text:blue : "action : changeSlug"
ProductUpdateAction --> ProductLegacySetSkuAction #blue;text:blue : "action : legacySetSku"
ProductUpdateAction --> ProductMoveImageToPositionAction #blue;text:blue : "action : moveImageToPosition"
ProductUpdateAction --> ProductPublishAction #blue;text:blue : "action : publish"
ProductUpdateAction --> ProductRemoveAssetAction #blue;text:blue : "action : removeAsset"
ProductUpdateAction --> ProductRemoveFromCategoryAction #blue;text:blue : "action : removeFromCategory"
ProductUpdateAction --> ProductRemoveImageAction #blue;text:blue : "action : removeImage"
ProductUpdateAction --> ProductRemovePriceAction #blue;text:blue : "action : removePrice"
ProductUpdateAction --> ProductRemoveVariantAction #blue;text:blue : "action : removeVariant"
ProductUpdateAction --> ProductRevertStagedChangesAction #blue;text:blue : "action : revertStagedChanges"
ProductUpdateAction --> ProductRevertStagedVariantChangesAction #blue;text:blue : "action : revertStagedVariantChanges"
ProductUpdateAction --> ProductSetAssetCustomFieldAction #blue;text:blue : "action : setAssetCustomField"
ProductUpdateAction --> ProductSetAssetCustomTypeAction #blue;text:blue : "action : setAssetCustomType"
ProductUpdateAction --> ProductSetAssetDescriptionAction #blue;text:blue : "action : setAssetDescription"
ProductUpdateAction --> ProductSetAssetKeyAction #blue;text:blue : "action : setAssetKey"
ProductUpdateAction --> ProductSetAssetSourcesAction #blue;text:blue : "action : setAssetSources"
ProductUpdateAction --> ProductSetAssetTagsAction #blue;text:blue : "action : setAssetTags"
ProductUpdateAction --> ProductSetAttributeAction #blue;text:blue : "action : setAttribute"
ProductUpdateAction --> ProductSetAttributeInAllVariantsAction #blue;text:blue : "action : setAttributeInAllVariants"
ProductUpdateAction --> ProductSetCategoryOrderHintAction #blue;text:blue : "action : setCategoryOrderHint"
ProductUpdateAction --> ProductSetDescriptionAction #blue;text:blue : "action : setDescription"
ProductUpdateAction --> ProductSetDiscountedPriceAction #blue;text:blue : "action : setDiscountedPrice"
ProductUpdateAction --> ProductSetImageLabelAction #blue;text:blue : "action : setImageLabel"
ProductUpdateAction --> ProductSetKeyAction #blue;text:blue : "action : setKey"
ProductUpdateAction --> ProductSetMetaDescriptionAction #blue;text:blue : "action : setMetaDescription"
ProductUpdateAction --> ProductSetMetaKeywordsAction #blue;text:blue : "action : setMetaKeywords"
ProductUpdateAction --> ProductSetMetaTitleAction #blue;text:blue : "action : setMetaTitle"
ProductUpdateAction --> ProductSetPriceKeyAction #blue;text:blue : "action : setPriceKey"
ProductUpdateAction --> ProductSetPriceModeAction #blue;text:blue : "action : setPriceMode"
ProductUpdateAction --> ProductSetPricesAction #blue;text:blue : "action : setPrices"
ProductUpdateAction --> ProductSetProductPriceCustomFieldAction #blue;text:blue : "action : setProductPriceCustomField"
ProductUpdateAction --> ProductSetProductPriceCustomTypeAction #blue;text:blue : "action : setProductPriceCustomType"
ProductUpdateAction --> ProductSetProductVariantKeyAction #blue;text:blue : "action : setProductVariantKey"
ProductUpdateAction --> ProductSetSearchKeywordsAction #blue;text:blue : "action : setSearchKeywords"
ProductUpdateAction --> ProductSetSkuAction #blue;text:blue : "action : setSku"
ProductUpdateAction --> ProductSetTaxCategoryAction #blue;text:blue : "action : setTaxCategory"
ProductUpdateAction --> ProductTransitionStateAction #blue;text:blue : "action : transitionState"
ProductUpdateAction --> ProductUnpublishAction #blue;text:blue : "action : unpublish"
ProductUpdateAction --> ProductUpdate #green;text:green : "actions"
@enduml
| false | true | false | false | sequence |
2395dc631c03c9f8e3921c7f569563355eca5334 | 9f554c4f5aab12e7286f5c983311a384b414332a | /diagrams/PublishersContainer.puml | 2a155a54901ee386d47b8281af8ab60aeb59f043 | [
"Apache-2.0"
] | permissive | jet/propulsion | bab26a88cd2c3bc75155d571b501e288ef1f1379 | 1aa2dc9ce06931f29a9fbdfaa025ca4d9d9b75ab | refs/heads/master | 2023-08-18T20:03:10.810615 | 2023-08-09T22:36:48 | 2023-08-09T22:36:48 | 190,426,177 | 171 | 32 | Apache-2.0 | 2023-09-14T02:18:33 | 2019-06-05T16:03:26 | F# | UTF-8 | PlantUML | false | false | 2,763 | puml | @startuml
!includeurl https://raw.githubusercontent.com/skleanthous/C4-PlantumlSkin/master/build/output/c4.puml
title Container Diagram for Propulsion Publishers
caption Container Diagram for Propulsion Pipeline and related systems for a Publishing scenario
actor "Application" <<External>> as apps
frame Source <<Expanded>> {
frame source <<External>> [
**Propulsion Source**
]
database store <<External>> [
**Consistent Event Store**
]
}
frame Sink <<Expanded>> {
frame ingester <<External>> [
**Propulsion Ingester**
]
frame scheduler <<External>> [
**Propulsion Scheduler**
**Single Instance**
//single-threaded//
]
frame dispatcher <<External>> [
**Propulsion Dispatcher**
//(hasa DegreeOfParallelism)//
]
together {
database batches <<External>> [
**Prepared Batches**
StreamName ->
Index + Event
]
database queue <<External>> [
**StreamSpans Queue**
StreamName ->
Write Position + Spans of Messages
]
}
}
rectangle stats <<Component>> [
Stats
]
rectangle parser <<Component>> [
Parser
]
rectangle handler <<Component>> [
Handler
]
rectangle services <<External System>> [
**Consistent processing**
__Equinox__
]
rectangle outputs <<External System>> [
**Output Feeds**
____
Topics / Buses
ATOM feeds
]
store <- source : observes
source -> ingester : feeds batches to\n(with backpressure)
ingester -> source : periodically marks progress on
ingester -> parser : affords\nfiltering and transformation\nvia
ingester -> batches : holds
scheduler <- ingester : pulls batches from
scheduler -> ingester : notifies progress to
scheduler -> stats : passes timings+outcomes to
scheduler -> dispatcher : delegates to
scheduler -> queue : completely owns and manages
dispatcher -> handler : triggers executions of
dispatcher <- handler : may yield outcome to
dispatcher -> scheduler : remits timings and outcomes to
handler -> outputs : emits to
apps <.> services : transacts\nagainst
services <-> store : Query/\nTransact\n[events]
stats -[hidden]R-> parser
store -[hidden]D-> ingester
store -[hidden]R-> source
source -[hidden]D-> ingester
ingester -[hidden]L-> scheduler
ingester -[hidden]D-> batches
ingester -[hidden]U-> parser
scheduler -[hidden]D-> queue
scheduler -[hidden]D-> dispatcher
scheduler -[hidden]U-> stats
handler -[hidden]U-> apps
handler -[hidden]U-> outputs
apps -[hidden]D-> outputs
@enduml | false | true | false | false | usecase |
1c72c4d14e584b476d7812f8c49816fe9367a447 | 3cd6a5ea51c646b30b97f99b35f0f89a966ac123 | /src/main/resources/DeleteProduct.puml | 799656a646c72105347693bae3b42667a10d52a2 | [] | no_license | JWill2580/shopping-cart | 65163d46c1665200d826fc55d40a11ab7dfb6385 | 5be26310840e4de46b6481b0daecf0fcdca48a46 | refs/heads/master | 2022-11-24T15:12:59.207758 | 2020-08-04T07:11:41 | 2020-08-04T07:11:41 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,806 | puml | @startuml product-viewer-sequence-diagram
skinparam guillemet false
skinparam classAttributeIconSize 0
skinparam linetype ortho
skinparam style strictuml
skinparam sequenceParticipant underline
hide circle
title Delete product process
actor "Staff" as staff
participant "Administration" as admin <<main>>
staff -> admin: runs program
activate admin
create "Main Screen" as main <<JFrame>>
admin -> main: <<construct>>
deactivate admin
activate main
main --> staff: displays main menu
staff -> main: <<UI event>> clicks view product
create "View Dialog" as dialog <<JDialog>>
main -> dialog: <<construct>>
deactivate main
create "DB Manage Products" as dao <<DAO>>
activate dialog
dialog -> dao: <<construct>>
activate dao
dialog->dao : getProducts()
database "Database" as db
dao -> db: SELECT * FROM product
activate db
dao<--db: data
deactivate db
dao->dao : construct a product list from data
dialog <-- dao: Collection<products>
deactivate dao
create "Simple List Model" as slm <<Helper>>
dialog -> slm: <<construct>>
activate slm
dialog-> slm: updateItems(categories)
deactivate slm
dialog -> dialog: txt.categorysetModel(simpleListModel)
staff <-- dialog: display list of product
staff->dialog : clicks on product to delete
staff->dialog : <<UI event>> clicks delete button
dialog -> dialog : showConfirmDialog()
alt clicks yes
staff -> dialog : <<UI event>> clicks yes
dialog -> dao : deleteProduct(product)
dao -> db : DELETE FROM product WHERE product_id = ?
dialog-> slm: updateItems(categories)
activate slm
deactivate slm
dialog -> dialog: txt.categorysetModel(simpleListModel)
else clicks no
staff -> dialog : <<UI event>> clicks no
end
staff -> dialog: <<UI event>> clicks close
dialog -> dialog: dispose()
destroy dialog
@enduml
| false | true | false | false | usecase |
230d760222b3d048acf1e544756916f89887411a | cdae9f2c0be2ac42d728f1895a6d9284eab7e02c | /vortrag/images/src/pu/sequence/share_file_in_group.plantuml | cf81a23b679bfcb7016fd9d63c308ca9c3db16e1 | [] | no_license | fab-du/documentations | 943c7b8edf6fdd605feb54337616d19ac92446f3 | 2fd118d6e25f72472ef0bd36bc64fa964344238c | refs/heads/master | 2021-01-21T14:01:15.730145 | 2016-05-09T16:43:07 | 2016-05-09T16:43:07 | 53,966,952 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 619 | plantuml | @startuml
user -> locale: shared the file in groug
locale -> remote : downloads the Symkey of the file
locale<-- remote : symkey
user <- locale : requests after passphrase
user --> locale : passphrase
locale -> locale: decrypts symkey with user the secret key
locale -> remote : downloads the KGV of the group
locale<-- remote : KGV
locale -> locale: decrypts KGV with the user public key
locale -> locale : checks if KGV is correct
locale -> locale : encrypts the symkey of the file with the KGV
locale -> remote : uploads the encrypted symkey
remote -> remote : put in database in
locale <-- remote : ok
@enduml | false | true | false | false | sequence |
f1dac61a7b6ca0b6d0abd62f8a6696a123704367 | 10d153ee925c8511a5a2470cbf3dae3e4aa96ac9 | /IntroDiagrammes/uml/ExosOO_version3_sd.puml | 0f41d165a5f2974c4f0cc022761ed0af53a35eb5 | [] | no_license | profesig/exosOO | db703060b96949019a6a7bf6a462b1bd6070d633 | 56ec1d91ea4d4f8c1a6480e3e43d483593878e60 | refs/heads/master | 2016-09-05T17:07:28.191472 | 2014-02-27T16:57:44 | 2014-02-27T16:58:02 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,615 | puml | @startuml
participant Main as "ExosOO_version3"
participant BankingSystem as ":BankingSystem"
participant AccountManager as ":AccountManager"
participant AnAccount as "a:Account"
participant DebitAccount as "debitAccount:Account"
participant CreditAccount as "creditAccount:Account"
activate Main
Main -> BankingSystem : transfer(amount,debitAccountNumber,creditAccountNumber)
activate BankingSystem
BankingSystem -> BankingSystem : printBefore(amount,debitAccountNumber, creditAccountNumber)
activate BankingSystem
BankingSystem -> AccountManager : printAccounts()
loop for each Account a in accounts
activate AccountManager
AccountManager -> AnAccount : toString()
deactivate AccountManager
end loop
deactivate BankingSystem
BankingSystem -> AccountManager: debitAccount := findAccount(debitAccountNumber)
activate AccountManager
loop for each Account a in accounts
AccountManager -> AnAccount : getAccountNumber()
deactivate AccountManager
end loop
BankingSystem -> AccountManager: creditAccount := findAccount(creditAccountNumber)
activate AccountManager
loop for each Account a in accounts
AccountManager -> AnAccount : getAccountNumber()
deactivate AccountManager
end loop
BankingSystem -> DebitAccount : debit(amount)
BankingSystem -> CreditAccount : credit(amount)
BankingSystem -> BankingSystem : printAfter()
activate BankingSystem
BankingSystem -> AccountManager : printAccounts()
loop for each Account a in accounts
activate AccountManager
AccountManager -> AnAccount : toString()
deactivate AccountManager
end loop
deactivate BankingSystem
deactivate BankingSystem
deactivate Main
@enduml | false | true | false | false | sequence |
b126fcbbfd6a1283fb8fbeb5027a4be32402ffd0 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/ProductPriceDiscountsSetMessagePayload.puml | 71357d2c9ab661a995766afeb83b511e90f92a61 | [] | 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 | 539 | 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 ProductPriceDiscountsSetMessagePayload [[ProductPriceDiscountsSetMessagePayload.svg]] extends MessagePayload {
type: String
updatedPrices: [[ProductPriceDiscountsSetUpdatedPrice.svg List<ProductPriceDiscountsSetUpdatedPrice>]]
}
interface MessagePayload [[MessagePayload.svg]] {
type: String
}
@enduml
| false | true | false | false | class |
baac2efc24958f52b3f43a3afb2d642b0e5bf6a5 | 8bfdf61a6ade53c16c74ae182bd9a19179261d15 | /documentation/classes/angularJS-minesweeper_classes.puml | f018c4c13c45b173efcaf2c7a42410ef4ca8af7f | [
"MIT"
] | permissive | JensUngerer/angularJS-minesweeper | 0753c0adc269048d3515943b6a592d2284f88311 | 53a4f0ee518880fa55be9eda48906311468c80bb | refs/heads/master | 2022-12-15T06:39:13.836631 | 2020-12-09T10:16:22 | 2020-12-09T10:16:22 | 184,193,375 | 0 | 0 | MIT | 2022-12-06T15:36:31 | 2019-04-30T04:47:59 | JavaScript | UTF-8 | PlantUML | false | false | 870 | puml | @startuml
class MinesweeperGameComponent {
+ game: MinesweeperGame
+ tabledField: MinesweeperField[]
+ reset()
}
class MinesweeperGame {
- width: number
- height: number
- bombs: number
+ revealedCounter: number
+ fields: MinesweeperField[]
- initNeighbours(): void
- getField(): MinesweeperField
+ reset(): void
}
class MinesweeperField {
+ x: number
+ y: number
+ value: number
+ state: number
+ mark(): void
+ reveal(): void
+ reset(): void
}
class MinesweeperFieldComponent {
+ field: MinesweeperField
+ state: MinesweeperStateEnum
+ $onChanges(): void
}
MinesweeperGameComponent --> MinesweeperGame
MinesweeperGameComponent --> MinesweeperField
MinesweeperGame --> MinesweeperField
MinesweeperFieldComponent --> MinesweeperField
@enduml | false | true | false | false | class |
451099007092bed2e5160cb3be475309327e82c5 | 5311c3ad523918b01c52d8f00a9b96e38b24db9e | /bot/src/main/java/ModerationModule/InfoModule/uml/InfoModule.plantuml | 10c79efd3de419b33557b6198ec9704a45385012 | [] | no_license | twgust/DiscordBot | 08bfa99b0e9c3a1baf15b3a04782e518a41f5da9 | 895f8b56dfb7b2c6776c86a88d401cecc2af1d8a | refs/heads/master | 2022-06-04T22:32:34.518640 | 2020-12-20T19:49:56 | 2020-12-20T19:49:56 | 246,451,508 | 1 | 0 | null | 2022-05-20T21:32:36 | 2020-03-11T02:02:05 | Java | UTF-8 | PlantUML | false | false | 1,047 | plantuml | @startuml
title __INFOMODULE's Class Diagram__\n
namespace ModerationModule {
namespace InfoModule {
class ModerationModule.InfoModule.HelpCommand {
{static} - ctrl : Controller
- helpText : String
- perm : Permission
+ HelpCommand()
{static} + dispHelp()
+ execute()
+ getHelp()
+ getPerm()
}
}
}
namespace ModerationModule {
namespace InfoModule {
class ModerationModule.InfoModule.InfoCommand {
- helpText : String
- perm : Permission
+ InfoCommand()
+ execute()
+ getHelp()
+ getPerm()
}
}
}
ModerationModule.InfoModule.HelpCommand -up-|> ModerationModule.ModCommand
ModerationModule.InfoModule.InfoCommand -up-|> ModerationModule.ModCommand
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
e3b6dfd8e16a073a1db32501e4eb134957422076 | 3544dd8b98d0e9cdbf671bcf5785bdf741fbd6eb | /07-aggregates-boundaries/images/after_aggregate.puml | 86e637cca8184828f47b6cf7b9fba25cb669839d | [] | no_license | cloudeyes/2021-msa-study | 82552a05e4a0fd369228ce0fb18cf834a4eef258 | 4c682df8a8c7b4e6b2345115ca70fec64dcddc5a | refs/heads/main | 2023-03-19T02:13:35.253848 | 2021-03-14T05:52:38 | 2021-03-14T05:52:38 | 320,253,724 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 562 | puml | @startuml ../images/after_aggregate
hide members
allowmixing
package "Service Layer" as ServiceLayer {
rectangle "allocate()" as service_allocate
}
show members
hide class fields
package Repositories {
class ProductRepository {
get()
}
}
package "Domain Model" as DomainModel {
class Product {
allocate()
}
class Batch
Product -[hidden]> Batch
}
hide Batch members
service_allocate -> ProductRepository: "get me the product\nfor this SKU"
service_allocate --> Product: product.allocate(orderline)
@enduml | false | true | false | false | sequence |
deb6e91d6a0ee038e127e8ff346eb120bfcfffb9 | 1fdb3eeb00a050b0cf936cbc5199b333324b111b | /doc/usecase.puml | aa9f688f042a5aa36d8189b65b403ddcf1051e39 | [] | no_license | BilelJegham/loli-arbre | 86a8493531d92ec1a38112801ef6c8e63867d5c1 | 32c5003aacc87809e2de00384cd547ccc7ca1b43 | refs/heads/master | 2022-03-08T06:54:39.062170 | 2019-11-11T17:24:19 | 2019-11-11T17:24:19 | 220,959,733 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 168 | puml | actor Marguerite
Marguerite --> (Accéder à ses données)
(Accéder à ses données) <.. (Récuperer ses données) : <<includes>>
Marguerite --> (Agir sur l'objet) | false | true | true | false | usecase |
1fca41b4b43c956ffc05821070b86675b8697b9b | 5eefa5b832f98a2890f6253b349f53ec75bbc6d0 | /tests/net.sourceforge.plantuml.ecore.tests/model/sample.ecore.plantuml | 9e5d72321b2423867b33fd697790c071934f96c2 | [] | no_license | hallvard/plantuml | 46d21a7b9ec3293ef17e5df9f8d5aca6c3502eb4 | 903a99cf2ddcd8d3f15a94651f519e4539a64428 | refs/heads/master | 2023-07-28T15:35:59.470916 | 2023-07-19T13:17:47 | 2023-07-19T13:26:29 | 1,220,963 | 216 | 61 | null | 2023-04-19T12:20:08 | 2011-01-04T21:53:29 | Java | UTF-8 | PlantUML | false | false | 1,037 | plantuml | @startuml
class Library [[marker:/org.eclipse.emf.ecore.diagnostic/ecoreeditortest/model/sample.ecore?uri=platform:/resource/ecoreeditortest/model/sample.ecore%23//Library]] {
}
class Book [[marker:/org.eclipse.emf.ecore.diagnostic/ecoreeditortest/model/sample.ecore?uri=platform:/resource/ecoreeditortest/model/sample.ecore%23//Book]] {
kind: BookKind
}
class Author [[marker:/org.eclipse.emf.ecore.diagnostic/ecoreeditortest/model/sample.ecore?uri=platform:/resource/ecoreeditortest/model/sample.ecore%23//Author]] {
}
class Named [[marker:/org.eclipse.emf.ecore.diagnostic/ecoreeditortest/model/sample.ecore?uri=platform:/resource/ecoreeditortest/model/sample.ecore%23//Named]] {
name: EString
}
enum BookKind [[marker:/org.eclipse.emf.ecore.diagnostic/ecoreeditortest/model/sample.ecore?uri=platform:/resource/ecoreeditortest/model/sample.ecore%23//BookKind]] {
Novel: Novel
Non-fiction: Non-fiction
}
Named <|-- Book
Named <|-- Author
Library *--> "books *" Book
Library *--> "authors *" Author
Book --> "author" Author
@enduml
| false | true | false | false | class |
d7b7cc0ca098f3e53b355f9ccb86eaa69fba35cc | 7af9abe5d5d1e07ea2694c03ee4871f4aa59b81c | /uml/States/battle.puml | 9e16b80580d2a4918fbfab4006bfff76538157a5 | [
"MIT"
] | permissive | snackpackgames/ansible-text-specifications | e9a0d60aeb77b437b14c31c767f0e54c389d6a36 | 1330b7a8bc1b66b1c29ee4800bec04ed56d81bd1 | refs/heads/master | 2021-03-30T12:55:19.218286 | 2020-03-24T18:41:38 | 2020-03-24T18:41:38 | 248,056,296 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 190 | puml | @startuml BattleSystem
[*] -> BattleStart
BattleStart --> PlayerTurn
PlayerTurn -> EnemyTurn
EnemyTurn -> PlayerTurn
EnemyTurn --> BattleEnd
PlayerTurn --> BattleEnd
BattleEnd -> [*]
@enduml | false | true | false | false | uml-unknown |
9133ed3afc967f02be17e1c5c6e804b41f3a2783 | 009f91fbcf8e724301241173e2569f007f75b548 | /src/com/company/uml/mediator.puml | d681008b6f6af1ab3e051d5f8302295a89c66af2 | [] | no_license | wangwilliams/design | cac17b3eeea719070eb1d2bf8c378d4f58c4e337 | 696b92a57f6424fd5ad36867673b85eff63cb831 | refs/heads/master | 2021-03-21T15:09:46.671524 | 2020-03-16T16:46:59 | 2020-03-16T16:46:59 | 247,306,333 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 894 | puml | @startuml
abstract class Colleague{
#mediator:Mediator
+setMediator(Mediator mediator):void
+receive():void
+send(Colleague colleague):void
}
class ColleagueA{
+setMediator(Mediator mediator):void
+receive():void
+send(Colleague colleague):void
}
class ColleagueB{
+setMediator(Mediator mediator):void
+receive():void
+send(Colleague colleague):void
}
class ColleagueC{
+setMediator(Mediator mediator):void
+receive():void
+send(Colleague colleague):void
}
ColleagueA-up-|>Colleague
ColleagueB-up-|>Colleague
ColleagueC-up-|>Colleague
abstract class Mediator{
+register(Colleague colleague):void
+relay(Colleague cl):void
}
class ConcreteMediator{
-List<Colleague> colleagues
+register(Colleague colleague):void
+relay(Colleague cl):void
}
Mediator<|--ConcreteMediator
Colleague-right--*ConcreteMediator
@enduml | false | true | true | false | class |
c116885777d6188003d8c1ae9635614c13b85c55 | fea621f3e8fd78c5399b689ad90b45eafdb07002 | /test.puml | 2a0e9db3377955437d830b6dad60b337668fc25d | [] | no_license | Suhas-13/ExpensesTracker | 0e75143c6d13728770614eea9e83fffb73ca1b78 | 15afc79a152ec3f08293d7fd03620d7e92a306a8 | refs/heads/main | 2023-05-02T04:53:56.455725 | 2021-05-17T13:29:52 | 2021-05-17T13:29:52 | 366,961,181 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,280 | puml | @startuml
class com.example.expensetracker.Range {
- double priceLow
- double priceHigh
+ double getPriceLow()
+ void setPriceLow(double)
+ double getPriceHigh()
+ void setPriceHigh(double)
}
class com.example.expensetracker.Expense {
- String name
- Double price
- LocalDate date
- String location
- String notes
- String category
- int randomId
- String currency
- Range priceRange
+ Object getCharacteristic(String)
+ String getCurrency()
+ void setCurrency(String)
+ String getName()
+ void setName(String)
+ Range getPriceRange()
+ void setPriceRange(Range)
+ Double getPrice()
+ void setPrice(double)
+ String getLocation()
+ void setLocation(String)
+ String getNotes()
+ void setNotes(String)
+ String getCategory()
+ LocalDate getDate()
+ void setCategory(String)
+ void setDate(String)
+ int compareTo(Expense)
}
class com.example.expensetracker.CsvHandler {
+ {static} void exportCsv(ExpenseSheet,String)
+ {static} ExpenseSheet importCsv(String)
}
class com.example.expensetracker.Operation {
+ {static} int ADD_OPERATION
+ {static} int REMOVE_OPERATION
- int operationType
- Expense operationExpense
+ void toggleOperationType()
+ int getOperationType()
+ void setOperationType(int)
+ Expense getOperationExpense()
+ void setOperationExpense(Expense)
}
class com.example.expensetracker.ExpenseViewHolder {
+ TextView nameView
+ TextView priceView
+ TextView currencyView
+ TextView locationView
+ TextView categoryView
+ TextView dateView
+ TextView notesView
}
class com.example.expensetracker.ExpensesAdapter {
- TreeSet<Expense> mExpenses
- TreeSet<Expense> mSearchResults
- LayoutInflater mInflater
- Context expenseContext
- boolean showSearchResults
+ void deleteFromSearchTree(Expense)
+ boolean isShowSearchResults()
+ void setSearchResults(TreeSet<Expense>)
+ void setExpenses(TreeSet<Expense>)
+ void setShowSearchResults(boolean)
+ int getCount()
+ Object getItem(int)
+ long getItemId(int)
+ View getView(int,View,ViewGroup)
}
class com.example.expensetracker.MainActivity {
+ {static} ExpenseSheet expenses
+ {static} Activity currentActivity
- ListView expensesView
- int selectedPosition
+ {static} Context mainContext
- ExpensesAdapter adapter
- SharedPreferences mPrefs
~ Calendar myCalendar
- OperationsStack currentOperationStack
- SharedPreferences.Editor mEditor
+ void refreshAdapter()
+ void loadExpenseSheet(ExpenseSheet)
+ void onRequestPermissionsResult(int,String[],int[])
# void onCreate(Bundle)
+ void newSheetClick(View)
+ void undoButtonClick(View)
# void onActivityResult(int,int,Intent)
+ void importSheetClick(View)
+ void exportSheetClick(View)
+ void redoButtonClick(View)
+ void hideListViewSelector()
+ void deleteExpenseButtonClick(View)
+ void saveData()
+ {static} void disableSoftInputFromAppearing(EditText)
+ String padDate(int)
+ void addExpenseButtonClick(View)
+ void setupExpenseAnalysisData(LinearLayout,LayoutInflater,String,boolean)
+ void openDataAnalysis(View)
+ void searchButtonClick(View)
}
class com.example.expensetracker.ExpenseSheet {
+ HashMap<String,ArrayList<Expense>> nameMap
+ HashMap<String,ArrayList<Expense>> categoryMap
+ HashMap<String,ArrayList<Expense>> locationMap
+ HashMap<LocalDate,ArrayList<Expense>> dateMap
+ HashMap<String,ArrayList<Expense>> currencyMap
+ TreeMap<Double,ArrayList<Expense>> priceMap
+ TreeSet<Expense> sortedExpenses
+ boolean addExpense(Expense)
+ void searchHelper(Expense,HashMap<Expense,Integer>,String)
+ ArrayList<Expense> searchByRange(Range)
+ TreeSet<Expense> multiSearch(Expense)
+ boolean removeExpense(Expense)
}
class com.example.expensetracker.OperationsStack {
- Stack<Operation> undoOperations
- Stack<Operation> redoOperations
+ boolean addExpense(Expense)
+ boolean removeExpense(Expense)
+ void performUndo()
+ void performRedo()
}
class com.example.expensetracker.DataAnalysis {
- {static} Integer OUTLIER_VARIANCE
+ {static} TreeSet<Expense> findOutliers(ExpenseSheet)
+ {static} HashMap<String,Double> calculateTotal(ExpenseSheet)
+ {static} HashMap<String,Double> calculateAverages(ExpenseSheet)
}
com.example.expensetracker.Comparable <|.. com.example.expensetracker.Expense
android.widget.BaseAdapter <|-- com.example.expensetracker.ExpensesAdapter
androidx.appcompat.app.AppCompatActivity <|-- com.example.expensetracker.MainActivity
@enduml | false | true | false | false | class |
ea50d4c303e65417287e09afff9c33ed8229e5b7 | 4e7f14078082ad35376dc5a940dbb954e229ec20 | /lock_relationships.puml | 0a447ddfa47b7886590ba2bb98ada779181cd4f9 | [] | no_license | zyake/postgres_analysis | 7b61c06afbeab875ef3449797d65d74a12c5a36e | c41f66d15b08d7ba65be9f64d0e4e45b9d5b8791 | refs/heads/master | 2023-04-23T18:29:46.353841 | 2021-05-10T12:28:31 | 2021-05-10T12:28:31 | 276,897,082 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 581 | puml | @startuml
object LWLock
object LOCK
object Latch
object epoll
object CAS_instruction
object Sysv_semaphore
object background_process
LWLock <|--- LOCK : utilize to protect data structure
Latch <|--- LOCK : utilize to sleep and receive notification
CAS_instruction <|--- LWLock : utilize as spin lock
Sysv_semaphore <|--- LWLock : utilize to sleep and receive notification
LWLock <|--- background_process: utilize to protect shared objects
Latch <|--- background_process : utilize to receive notification
epoll <|--- Latch : utilize to wake up on events
@enduml | false | true | false | false | class |
6148409bb49b71f65b683a929a43c10572d3dae0 | f3a045ea9fd76756b4529cca776fc2cf3e02445a | /diagram/watermelondb-sync-flow.plantuml | fa00c0adda8e871d189e8d015f6965a7e7a1677b | [] | no_license | fahrinh/my-blog | 4408b6ef141e2e927add873b232e35f716742644 | 69a1981aea935a028a770ebdc69156090e128284 | refs/heads/master | 2023-01-11T14:42:02.868244 | 2022-12-26T12:07:40 | 2022-12-26T12:07:40 | 170,065,018 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,275 | plantuml | @startuml
title WatermelonDB Sync Flow
actor User
participant "ReactApp+WatermelonDB" as ReactApp
participant BackendApp
database ServerDB
User -> ReactApp : click Sync\n(or auto sync)
activate ReactApp
autonumber
ReactApp -> ReactApp : ""synchronize()""
activate ReactApp #Yellow
ReactApp -> ReactApp : ""pullChanges(lastPulledAt)""
activate ReactApp #OrangeRed
ReactApp -> BackendApp : ""GET pull(lastPulledAt)""
activate BackendApp
BackendApp -> ServerDB : get ""changes"" \n& ""timestamp""
ServerDB -> BackendApp : ""changes"" \n& ""timestamp""
BackendApp -> ReactApp : ""changes"" \n& ""timestamp""
deactivate BackendApp
ReactApp -> ReactApp : apply ""changes"" on localDB
ReactApp -> ReactApp : for next pull, set\n""lastPulledAt"" = ""timestamp""
deactivate ReactApp
ReactApp -> ReactApp : ""pushChanges(changes,""\n""lastPulledAt)""
activate ReactApp #DeepSkyBlue
ReactApp -> BackendApp : ""POST push(lastPulledAt,""\n""changes)""
activate BackendApp
BackendApp -> ServerDB : check conflict\nusing ""lastPulledAt""
ServerDB -> BackendApp
BackendApp -> ServerDB : if no conflict,\nrecord ""changes""
ServerDB -> BackendApp
BackendApp -> ReactApp
deactivate ReactApp
deactivate BackendApp
autonumber stop
ReactApp -> User
deactivate ReactApp
@enduml | false | true | false | false | usecase |
770b4f1ead867f5a741fc11fde32e2f5ab840450 | 842ee4cf8171eba46be7fab064b2af0535897504 | /src/pers/mtx/composite/uml.puml | fcaafde959d59b0c61c38ea84c3cb23871292cee | [] | no_license | mgtoxd/DesignPattern | ad17f7a8fb130c1b378bbda66e2353b0c4964881 | 5d7f53ec2d9b862ec5628d4335bc451f0ef671bf | refs/heads/master | 2020-12-04T02:10:30.224776 | 2020-01-13T03:30:14 | 2020-01-13T03:30:14 | 231,566,324 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 261 | puml | @startuml
class OrganizationComponet{
add():void
remove():void
print():void
}
College-|>OrganizationComponet
Department-|>OrganizationComponet
University-|>OrganizationComponet
University o-- College
College o-- Department
Client.>OrganizationComponet
@enduml | false | true | false | false | class |
5c378da34a5449c74ed209faaa96fc6bc96e7ae1 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/StoreCartDiscountsLimitReachedError.puml | 08171b03f81e3a0062f352bd897866b3ab2639dc | [] | 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 | 519 | 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 StoreCartDiscountsLimitReachedError [[StoreCartDiscountsLimitReachedError.svg]] extends ErrorObject {
code: String
message: String
stores: [[StoreKeyReference.svg List<StoreKeyReference>]]
}
interface ErrorObject [[ErrorObject.svg]] {
code: String
message: String
}
@enduml
| false | true | false | false | class |
67d4bcfc648c4c68a8eab0f815fff33fe1fe2a75 | 9e418a0fb69b8ee356d5c1d5d009706394edf54d | /class - analysis/class/createClass.plantuml | 66478a41a415db529902c4657da3b31536e9575e | [] | no_license | anonyhostvn/OOAD-Diagram | 67f3a3a4aa976ee8459d3f4801147ddd1382e41e | f8f7a0e4ba826335cc964d3b73bebea3f4f857e4 | refs/heads/master | 2023-01-10T04:26:29.983705 | 2020-11-13T10:08:12 | 2020-11-13T10:08:12 | 311,749,932 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 777 | plantuml | @startuml createClass
class Classroom <<entity>> {
id: bigint
classroom_name: string
description: string
teacher_id: bigint
created_at: datetime
updated_at: datetime
// create ()
// read ()
// delete ()
// update ()
// request checking classroom valid ()
}
class CreateClassroomForm <<boundary>> {
// validate ()
// create class room ()
}
class ClassroomController <<controller>> {
// validate create classroom ()
// create class room ()
// request create classroom ()
}
hide Classroom <<entity>> circle
hide CreateClassroomForm <<boundary>> circle
hide ClassroomController <<controller>> circle
ClassroomController "1" -left- "1" Classroom
ClassroomController "1" -down- "1" CreateClassroomForm
@enduml
| false | true | false | false | class |
804353f66bfeeecdda279d294552df206520fe50 | 939ec2212f87c1894d792e169fce964bec902583 | /docs/Solution/Hardware-Stack/Physical.puml | 9b16279b417dae01b1d2453be77872c9c0422979 | [] | no_license | CAADE/fleet | 37e18246e0a10122a711efccdab3c134232d120e | a62d2a82a2100583d84e41ea21efda9512fc4ac7 | refs/heads/master | 2020-03-22T00:31:19.695430 | 2018-07-13T03:27:19 | 2018-07-13T03:27:19 | 139,250,021 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 331 | puml | @startuml
package "Hardware Stack" #ccffff {
interface CLI
interface Web
interface REST
folder nodejs #ffffff {
component sailsjs
component sails.io
}
folder bin #ffffff {
component hardware
}
}
CLI -- hardware
hardware -- REST
Web -- sailsjs
Web -- REST
REST -- sailsjs
@enduml
| false | true | false | false | class |
9df2deaf67de476812e3562d2ae89ff6a4f6db34 | bd56234fd84691338c7d84191a244407fb01c3da | /diagrams/main.puml | bc1ee891ae40a65340d7da6b69c8b04bfdae5554 | [
"Apache-2.0"
] | permissive | LiScI-Lab/Guardian-of-Times | abc3d89af198df1842c8c1d119fe0ba2ef687a32 | 6855eff086cf7b6c2d054d18fe0b43ea506ea71b | refs/heads/staging | 2021-06-07T16:29:56.125805 | 2021-05-20T09:47:32 | 2021-05-20T09:47:32 | 138,572,432 | 3 | 1 | Apache-2.0 | 2021-02-08T20:31:23 | 2018-06-25T09:25:05 | Ruby | UTF-8 | PlantUML | false | false | 582 | puml | @startuml
class User {
}
class Team {
name
}
class Team::Member {
status: [invited, joined, leaved]
role: [owner, participant]
}
class Team::Member::TargetHours {
since
hours
}
class Team::Progress {
start
end
description
}
class Tag::Target
class Tag {
name
description
}
User "1" -- "*" Team::Member
Team "1" -- "*" Team::Member
Team "1" -- "*" Team::Progress
Team::Member "1" -- "*" Team::Member::TargetHours
Team::Member "*" -- "*" Team::Progress
Tag::Target "*" -- "1" Tag
Tag::Target "*" -- "1" Team
Tag::Target "*" -- "1" Team::Progress
@enduml | false | true | false | false | activity |
91c95cd1ff034f948e2b647cc0d90e244fc965d4 | 1d2ffca3316557b321a0c4000d45fd1a4fa42a61 | /puml/process_modeling_wf.puml | 3dc8982c20611a145fe6250518a7d7e70c53241d | [] | no_license | andriikopp/research-calculations | b7eccd40481cf40fb3c75ce2b42dc41b119a8441 | 7b009fcf393dc760830f4300fefa325dc09e43ac | refs/heads/master | 2022-07-05T13:27:30.788097 | 2020-11-29T15:16:46 | 2020-11-29T15:16:46 | 121,494,385 | 1 | 0 | null | 2022-06-21T02:03:33 | 2018-02-14T09:49:02 | JavaScript | UTF-8 | PlantUML | false | false | 792 | puml | @startuml
(*) --> "Define process landscape"
note left: Complexity = (N processes)
--> "Define coarse-grained process structure"
note left: Complexity = (N processes) x (M phases)
--> "Define detailed process decomposition"
note left
Complexity = (N processes) x (M phases) x
x (K activities)
end note
--> "Define process execution scenarios"
note left
Complexity = (N processes) x (M phases) x
x (K activities) x (P tasks)
end note
--> "Define roles, resources, and work products"
if "Need to extend upper models" then
--> [true] "Append process environment elements to upper layers"
--> "Define process landscape"
else
--> [false] (*)
@enduml
| false | true | false | false | activity |
c22f6c2fd9ab78e7b0c49612717ffeb3256b0751 | d702b31e656edcb9944228c0309f153bdff29eec | /src/main/java/de/gematik/ti/healthcardaccess/entities/entities.plantuml | 38b13be204a4189d355ef6c81c48a45728d837c4 | [
"Apache-2.0"
] | permissive | gematik/ref-HealthCardAccess | 4f3957bfe40c56ffbf82782528a6e543ea00e9e3 | eb9a12f7eea309bb5b23269de9d8fa924f91fe4f | refs/heads/master | 2022-02-14T18:25:41.769547 | 2022-01-07T07:24:17 | 2022-01-07T07:24:17 | 213,916,430 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,423 | plantuml | @startuml
title __ENTITIES's Class Diagram__\n
namespace de.gematik.ti.healthcardaccess {
namespace entities {
class de.gematik.ti.healthcardaccess.entities.Version2 {
- data : byte[]
- fillingInstructionsEfAtrVersion : byte[]
- fillingInstructionsEfEnvironmentSettingsVersion : byte[]
- fillingInstructionsEfGdoVersion : byte[]
- fillingInstructionsEfKeyInfoVersion : byte[]
- fillingInstructionsEfLoggingVersion : byte[]
- fillingInstructionsVersion : byte[]
- objectSystemVersion : byte[]
- productIdentificationObjectSystemVersion : byte[]
{static} + fromArray()
+ getFillingInstructionsEfAtrVersion()
+ getFillingInstructionsEfEnvironmentSettingsVersion()
+ getFillingInstructionsEfGdoVersion()
+ getFillingInstructionsEfKeyInfoVersion()
+ getFillingInstructionsEfLoggingVersion()
+ getFillingInstructionsVersion()
+ getObjectSystemVersion()
+ getProductIdentificationObjectSystemVersion()
- Version2()
- handleConstructedContent()
- handleTagData()
- readData()
}
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
cb0981a1c5f6db39cf0f25c35b24d3b8d7787ffe | 186819bc98500f794e563bd3ba5a23073756a2ba | /PSP2/Hospital/src/main/java/com/hospital/Hospital/controller/doctorController/doctorController.plantuml | 2babf6cb6c73c4f3ecffc0f97315b98637915058 | [] | no_license | macro161/PSP | 0e53943e4f8568b2c4b788524dc9e12f276d5c9e | 7e5e094bbe42af30006fb28d541229dea4efb610 | refs/heads/master | 2020-03-30T08:04:17.541705 | 2018-12-07T20:24:18 | 2018-12-07T20:24:18 | 150,986,741 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 624 | plantuml | @startuml
title __DOCTORCONTROLLER's Class Diagram__\n
package com.hospital.Hospital {
package com.hospital.Hospital.controller.doctorController {
class DoctorController {
+ getDoctorById()
+ createDoctor()
+ deleteDoctor()
+ updateDoctor()
+ getAllDoctors()
+ treatPatient()
}
}
}
DoctorController o-- DoctorService : doctorService
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
480adca59bd7162bc800637427b5be46a0b30154 | b615d963ae1cfa22289775c561dd073b55a71ebd | /docs/uml-class-diagrams/middleware02/test/MiddlewareCommDatabaseInterfaceImplementationTests/MiddlewareCommDatabaseInterfaceImplementationTests.puml | 5ee069b9d913cc8005ba542832d803d9635670f4 | [] | no_license | elilley15/csi-3370-software-project | 8062dddf435ab0c7941acdf03225f84c18457947 | d2642cf649dabeafd6d9753c483b9df265d85118 | refs/heads/main | 2023-01-18T15:48:03.237629 | 2020-11-28T21:24:10 | 2020-11-28T21:24:10 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 182 | puml | @startuml MiddlewareCommDatabaseInterfaceImplementationTests
package edu.oakland.test.middleware02 {
class MiddlewareCommDatabaseInterfaceImplementationTests {
}
}
@enduml | false | true | false | false | class |
8b60ead88fbcbf212ba90420fcd2e7cca2a3b4c7 | 4f796adb722fc3d527a31e7695c669d22ec9f988 | /use-case-diagram/Homework/Lab-submit/60030031/foodshop-diagram-3.puml | b7cc9e66846b487b8c547c91d45edc33724873d7 | [] | no_license | OOAD-031/PlantUML-Labs | 2f43dc5d39f35a04fc8b6d02ebea7cab008ab09c | 96948c711f240447c4e72d1004ac0e57d592b598 | refs/heads/master | 2022-04-21T02:30:26.450573 | 2020-04-20T08:36:18 | 2020-04-20T08:36:18 | 257,059,541 | 0 | 0 | null | 2020-04-19T17:22:11 | 2020-04-19T17:22:11 | null | UTF-8 | PlantUML | false | false | 633 | puml | @startuml foodshop3
actor Customer
actor Supervisor
left to right direction
skinparam actor{
FontColor OliveDrab
BackgroundColor OliveDrab
BorderColor OliveDrab
Shadowing false
}
skinparam usecase {
FontColor White
ArrowColor SteelBlue
BackgroundColor SteelBlue
BorderColor SteelBlue
Shadowing false
}
skinparam rectangle{
FontColor OliveDrab
BorderColor OliveDrab
Shadowing false
}
rectangle "Online Food shop menu management subsystem"{
Customer -- (Select items)
Customer -- (make order)
(check order) -- Supervisor
(make purchase order) -- Supervisor
}
@enduml | false | true | false | false | usecase |
396d7a2f7a0515ce9cf209c90b26a82c878dc812 | c815f9c82c1400f76243750cd0ec609d217b9943 | /property/etc/property.urm.puml | 6ff0e5c52ed6d1eb07fdac49cbfa4b91efff7a89 | [
"MIT"
] | permissive | mikulucky/java-design-patterns | 6ab10e9e5c95b6caffebf045d37d04a1571bc0cd | cbbf3bf08842723964719ed7d8ab92864ec5a58d | refs/heads/master | 2021-01-17T23:34:49.962450 | 2016-09-28T19:54:28 | 2016-09-28T19:54:28 | 48,302,802 | 1 | 1 | null | 2016-01-02T23:58:44 | 2015-12-20T01:00:47 | Java | UTF-8 | PlantUML | false | false | 1,318 | puml | @startuml
package com.iluwatar.property {
class App {
+ App()
+ main(args : String[]) {static}
}
interface Prototype {
+ get(Stats) : Integer {abstract}
+ has(Stats) : boolean {abstract}
+ remove(Stats) {abstract}
+ set(Stats, Integer) {abstract}
}
class Character {
- name : String
- properties : Map<Stats, Integer>
- prototype : Prototype
- type : Type
+ Character()
+ Character(name : String, prototype : Character)
+ Character(type : Type, prototype : Prototype)
+ get(stat : Stats) : Integer
+ has(stat : Stats) : boolean
+ name() : String
+ remove(stat : Stats)
+ set(stat : Stats, val : Integer)
+ toString() : String
+ type() : Type
}
enum Type {
+ MAGE {static}
+ ROGUE {static}
+ WARRIOR {static}
+ valueOf(name : String) : Type {static}
+ values() : Type[] {static}
}
enum Stats {
+ AGILITY {static}
+ ARMOR {static}
+ ATTACK_POWER {static}
+ ENERGY {static}
+ INTELLECT {static}
+ RAGE {static}
+ SPIRIT {static}
+ STRENGTH {static}
+ valueOf(name : String) : Stats {static}
+ values() : Stats[] {static}
}
}
App --+ Character
Character --> "-prototype" Prototype
Character --> "-type" Type
Type ..+ Character
Character ..|> Prototype
@enduml | false | true | false | false | class |
93c7ea61a260ec71ad4a9725c506bcd243dab6fa | 50a21938eb8e7bb30c55415d2bedb393318ef237 | /docs/server_structure.puml | e5ff506f0caf723f53d5b7945532456874317198 | [] | no_license | qaszz/no.kristiania.Eksamen.Oving | a7b9d6d5a412fd9b08d2c995cbdf7aa0ab0b0ba8 | 45a99efd7aa93730adae676490411c79db0ae4b7 | refs/heads/master | 2023-01-05T06:19:00.259994 | 2020-11-07T18:32:55 | 2020-11-07T18:32:55 | 305,700,419 | 0 | 0 | null | 2020-11-07T18:32:56 | 2020-10-20T12:28:06 | Java | UTF-8 | PlantUML | false | false | 882 | puml | @startuml
actor user
participant WebBrowser
box Java Server
participant HttpServer
participant WorkerListController
participant WorkerDao
end box
database PostgreSQL
User -> WebBrowser: List workers
WebBrowser -> HttpServer: /index.html
WebBrowser <- HttpServer: <html>....<script>fetch()</html
WebBrowser -> HttpServer: /api/workers
HttpServer -> HttpServer: controllers.get("/api/workers")
note left of HttpServer: this is called routing
HttpServer -> WorkerListController: handle(HttpMessage request)
WorkerListController -> WorkerDao: list()
WorkerDao -> PostgreSQL: SELECT * FROM WORKERS
WorkerDao <- PostgreSQL: ResultSet
WorkerListController <- WorkerDao: List<Worker>
HttpServer <- WorkerListController: [HttpMessage response]
WebBrowser <- HttpServer: <li>Name: Per, Email Address: Per@gmail.com</li><li>...</li>
User <- WebBrowser: List of workers
@enduml | false | true | false | false | usecase |
04affc90c2b9577ed7ce71a273f6d0c71cdce0aa | 55261e1e9a841f514598d8fb0fbe95a7493460e3 | /class/classes/logic/blockReward.puml | 9d357121373ff28081a47649a8afa58ac610672c | [] | no_license | LucasIsasmendi/lisk-core-plantuml | ac01094fd56590b361ab8992b52f0cfc3175aa60 | e0941f6e800dc16a9dc0f8367304149fbf2200e1 | refs/heads/master | 2021-01-21T11:53:42.861882 | 2017-05-24T12:56:58 | 2017-05-24T12:56:58 | 91,758,697 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 280 | puml | @startuml
class BlockReward < logic > {
- __private: {}
.. this ..
+ milestones
+ distance
+ rewardOffset
-- Methods --
+ BlockReward ()
+ calcMilestone (height)
+ calcReward (height)
+ calcSupply (height)
.. __private ..
- parseHeight (height)
}
@endtuml
| false | true | false | false | class |
343ce45f59014ed7d146ecb02b8da117a1ef83f3 | 30d336418cf16c3e42943e07b2c9b1d4fbc836a8 | /app/src/main/assets/collectdata_class.puml | 3cb019c63c791c69bb5e9deb8c505d32099cda05 | [] | no_license | zhangshu345/android-amap-track-collect | 5666dae17a4f15dc4546eeb63be50ec3731edc82 | 2615a952ecd43304069da8a48c50caf248b81a84 | refs/heads/master | 2021-10-10T15:32:51.663294 | 2018-12-11T05:36:01 | 2018-12-11T05:36:01 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 593 | puml | @startuml
class Track
class Media
class Trip{
String tripID;
String tracks;
String medias;
}
Trip --> Track
Trip --> Media
interface ITripTrackCollection{
void start();
void stop();
void pause();
void destory();
}
class TripTrackCollection implements ITripTrackCollection{
Vector<LocationInfo> mLocations;
ExtcutorService mVecoterThread;
ScheduledExecutorService mDatabaseThread;
}
class TrackCollectService extends Service implements ITripTrackCollection{
TripTrackCollection TripTrackCollection;
}
TrackCollectService -->TripTrackCollection
@enduml | false | true | false | false | class |
5275817d5b4a367ad28caacae3c4b1623e5b6627 | ab1416f6fd6655094298e6c7bab1ac47d2533342 | /samples/PlantUML/overview.puml | 985bcffeda3f13995e0e2558fc656fc3b33c3057 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | monkslc/hyperpolyglot | 6ddc09e9d10d30bd8ce5c80a3bd755fa5714d621 | a55a3b58eaed09b4314ef93d78e50a80cfec36f4 | refs/heads/master | 2023-05-26T15:26:14.686247 | 2023-05-17T13:51:31 | 2023-05-17T13:51:31 | 248,387,967 | 43 | 11 | Apache-2.0 | 2023-05-17T13:51:35 | 2020-03-19T02:02:35 | RenderScript | UTF-8 | PlantUML | false | false | 1,958 | puml | @startuml
' from https://github.com/Distrotech/bind10/blob/master/doc/design/datasrc/overview.txt'
hide members
note "Automatic placement of classes\ndoesn't look good. This diagram\nhas to be improved." as n1
Auth "1" *--> "*" ConfigurableClientList
Auth --> DataSourceClient
Auth --> ZoneWriter
Auth --> ZoneTableAccessor
Auth --> DataSourceStatus
Auth --> ZoneTableIterator
ConfigurableClientList "1" *--> "*" DataSourceInfo
ConfigurableClientList ..> ZoneTableSegment : <<reset>>
ConfigurableClientList ..> DataSourceStatus : <<create>>
ConfigurableClientList ..> ZoneWriter : <<create>>
ConfigurableClientList ..> ZoneTableAccessor : <<create>>
DataSourceInfo "1" *--> "*" DataSourceClient
DataSourceInfo "1" *--> "*" CacheConfig
DataSourceInfo "1" *--> "*" ZoneTableSegment
ZoneTableAccessor ..> ZoneTableIterator : <<create>>
ZoneTableAccessorCache --> CacheConfig
ZoneTableAccessorCache ..> ZoneTableIteratorCache : <<create>>
ZoneTableAccessorCache --o ZoneTableAccessor
ZoneTableIteratorCache --o ZoneTableIterator
ZoneTableIteratorCache --> CacheConfig
ZoneWriter --> ZoneTableSegment
ZoneWriter ..> ZoneData : add/replace
ZoneTableSegment "1" *--> "1" ZoneTableHeader
ZoneTableSegment "1" *--> "1" MemorySegment
CacheConfig ..> LoadAction
LoadAction ..> ZoneData : create
LoadAction *--> ZoneDataLoader
ZoneDataLoader --> ZoneData
ZoneDataLoader *--> ZoneDataUpdater
ZoneDataLoader --> MemorySegment
ZoneDataUpdater --> ZoneData
ZoneDataUpdater ..> RdataSet : create
ZoneDataUpdater ..> RdataSet : add
ZoneTableHeader "1" *--> "1" ZoneTable
ZoneTable "1" *--> "1" ZoneData
ZoneData "1" *--> "1" RdataSet
LoadFromFile --o LoadAction
IteratorLoader --o LoadAction
MemorySegmentMapped --o MemorySegment
MemorySegmentLocal --o MemorySegment
ZoneTableSegmentMapped --o ZoneTableSegment
ZoneTableSegmentLocal --o ZoneTableSegment
ZoneTableSegmentMapped *--> MemorySegmentMapped
ZoneTableSegmentLocal *--> MemorySegmentLocal
@enduml
| false | true | false | false | class |
ca73e946b8aff0d8bbbaf5f818726b5582d9cc1d | 2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8 | /CleanSheets/src/main/java/csheets/worklog/n1141071/sprint3/crm04_02_design_edit.puml | 7e69ed5f461fd89f4831825402b767f22b2b8d3d | [] | no_license | ABCurado/University-Projects | 7fb32b588f2c7fbe384ca947d25928b8d702d667 | 6c9475f5ef5604955bc21bb4f8b1d113a344d7ab | refs/heads/master | 2021-01-12T05:25:21.614584 | 2017-01-03T15:29:00 | 2017-01-03T15:29:00 | 77,926,226 | 1 | 3 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,126 | puml | @startuml doc-files/crm04_02_design_edit.png
actor Actor
participant "UI : ListUI" as UI
participant "Controller : ListController" as controller
participant "List" as list
participant "NewList : List" as newlist
participant "VersionControl" as version
participant "ListPersistence" as persistence
note right of Actor
Main UC diagram can be found in crm04_02_design
end note
note right of Actor
This is the Edit List diagram
end note
Actor -> UI : Select List
UI -> controller : getListData(List)
UI -> Actor : Show List Versions and List Data
Actor -> UI : Select version
UI -> controller : getListVersionData(List,Version)
UI -> Actor : Show version data
loop
Actor -> UI : Edit Version data
end loop
Actor -> UI : Apply new data
UI -> controller : editList(List,title,text)
controller -> list : createNewVersion(title,text)
create newlist
list -> newlist : create(title,text,contact,versionControl)
newlist -> version : addVersion()
list -> controller : return newlist
controller -> persistence : saveList(newList)
UI -> Actor : Show new version
@enduml
| false | true | false | false | usecase |
5316b8d03eaad57c68a85ad7310f403920b4905f | 63114b37530419cbb3ff0a69fd12d62f75ba7a74 | /plantuml/Library/PackageCache/com.unity.test-framework@1.1.16/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.puml | e60e77aa13193ef8f8fac95a7b2fc9114c26dd06 | [] | 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 | 320 | puml | @startuml
class UnhandledLogMessageException {
+ UnhandledLogMessageException(log:LogEvent)
+ <<override>> StackTrace : string <<get>>
}
ResultStateException <|-- UnhandledLogMessageException
UnhandledLogMessageException --> "LogEvent" LogEvent
UnhandledLogMessageException --> "ResultState" ResultState
@enduml
| false | true | false | false | class |
475acd8f49879cc90e8dee97c47769b4e9d58cdf | 08639b667dc91837352d4c721deacf1fb7bf393a | /class-diagram/class-diagram-sp.plantuml | 487a26d123b24f27aa8debd144cdfe41e3be221f | [] | no_license | binderclip/code-snippets-plantuml | f51eb42d89335795855d8459c52eca22901bfa27 | 1b7d92be55853d0221b7a6dad24c25b161d18a77 | refs/heads/master | 2021-07-05T00:26:06.677021 | 2020-07-21T13:07:12 | 2020-07-21T13:07:12 | 130,339,313 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 154 | plantuml | @startuml class-diagram-sp
class Dummy {
String data
void methods()
}
class Flight {
flightNumber: Integer
departureTime: Date
}
@enduml
| false | true | false | false | class |
e6fb51edd5d6b0bf7b2d79f30e86a7e1b1ebb836 | 6180d2f459e52ba2494532385294cb16554ff305 | /diagrams/class/object_classes.puml | c87399ff8519fea1d1aa5177ea016adcf8d65572 | [] | no_license | MyraMidnight/VLN1_h16 | 2214cbc9106ac2f8504e81303df1338c49f89b2e | 5834fc1f8fae1f9db5baa333b9322c7fa6001ab9 | refs/heads/master | 2020-09-17T00:16:55.151798 | 2019-12-15T12:09:05 | 2019-12-15T12:09:05 | 223,929,419 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,299 | puml | @startuml
class Voyage {
captainId : string [1] /kennitala
copilots : array of strings [1] /kennitölur
headAttendantId: string[1] /kennitala
flightAttendants: array of strings [1..3] /kennitölur
flightOut : string [1]
flightIn : string [1]
destination: int [1]
dateOut : string [1]
dateIn : string [1]
}
class Staff {
name: string [1]
socialId (kennitala): string [1]
address (heimilisfang): string [1]
phoneHome: string [1]
phoneMobile: string [1]
email: string [1]
}
class Pilot {
licence: string [1] = plane type
role: string [1] = "pilot"
}
note right of Pilot : other role "captain"
class Flight {
flightId: string [1] = "NA"
flightStart: string[1]
}
class Destination {
id: int [1] /auto generated
country: string [1]
airport: string [1]
flightTime: string [1]
flightDistance: int [1]
contact: string [1]
contactPhone: string [1]
}
class FlightAttendant {
role: string [1] = "attendant"
}
note right of FlightAttendant : other role "lead_attendant"
Staff <|-- Pilot
Staff <|-- FlightAttendant
Voyage "1" --o "2" Flight
Voyage "0..*" -left-* "1" Pilot : copilot
Voyage "0..*" -left-* "1" Pilot : captain
Voyage "0..*" --* "1" FlightAttendant : Head
Voyage "0..*" --* "1..3" FlightAttendant
Voyage --o Destination
@enduml | false | true | true | false | class |
dfec1a25fc4f75078d11ff2e4b5d8c0b4e331a34 | 644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc | /photoniced/testiii/common/IVisitor.puml | ebeb29f9632302537d4e8efb04a96db5b188f5ff | [] | no_license | tzAcee/photonized | c929a6c04bedd0304a4e427d6c2895cdf73568d3 | aa53ed7bda18959c58467fe4560dc3ff4e1ae422 | refs/heads/main | 2023-05-03T15:13:31.148910 | 2021-05-25T13:55:17 | 2021-05-25T13:55:17 | 316,536,113 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 750 | puml | @startuml
interface IVisitorElement {
Accept(visitor:IVisitor) : void
}
interface IVisitor {
Visit(element:IVisitorElement) : void
}
interface IFolder {
Name : string <<get>> <<set>>
Path : string <<get>>
}
interface IFile {
Name : string <<get>> <<set>>
Path : string <<get>>
+ Size : long <<get>>
}
interface IDataProcessor {
Visit(element:IFolder) : void
Visit(element:IFile) : void
}
class "IEnumerable`1"<T> {
}
IVisitorElement <|-- IFolder
IFolder --> "Parent" IFolder
IFolder --> "Files<IFile>" "IEnumerable`1"
IFolder --> "Folders<IFolder>" "IEnumerable`1"
IVisitorElement <|-- IFile
IFile --> "Parent" IFolder
IFile --> "Created" DateTime
IFile --> "Changed" DateTime
IVisitor <|-- IDataProcessor
@enduml
| false | true | false | false | class |
71c16e50ec21df599332578ecb585d2ae0639314 | 62de719e261fac67d2a2bc347a98be5515b48948 | /docs/red/1161027/sp1/sd.puml | 0c3f75b59466dabfbfb26f9ed56cd046906af28b | [] | no_license | raulcorreia7/isep_lapr4_17_18 | 82672fca46e433856d52b3839e3739fa53b8f52c | 79217fa01912657da37ef6cdb1a05194dd2f5110 | refs/heads/master | 2020-04-15T17:52:21.964106 | 2019-01-09T17:13:14 | 2019-01-09T17:13:14 | 164,891,237 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,176 | puml | '1150710@isep.ipp.pt
@startuml create_chart_core_9.png
skinparam handwritten false
skinparam monochrome false
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
box "Chart Creation"
actor user
participant "ChartWizzardView"
participant "ChartWizzardPresenter"
participant "ChartWizardController"
participant "BarChartCreator"
participant "ChartCreatorInterface"
participant Database
end box
user -> ChartWizzardView : selects active workbook
ChartWizzardView->ChartWizzardPresenter : getActiveWorkbook(Workbook dto)
ChartWizzardPresenter-> ChartWizardController : getActiveWorkbook(Workbook DTO)
ChartWizardController-> Database : getWorkbook(WorkbookDTO)
ChartWizzardView -> user : asks for info to the Chart
user -> ChartWizzardView :insert info
ChartWizzardView->ChartWizzardPresenter: insertInfo(name,Labels on rows or collumns)
ChartWizzardPresenter->ChartWizardController: insertInfo(name,Labels on rows or collumns,dataRange)
ChartWizardController->BarChartCreator: create()
ChartWizzardView->user: shows chart
@enduml
| false | true | false | false | usecase |
0528525cfab7e8674e4614099e7404774c2186a6 | 784420293504203e0485674947e252b9a884f9cf | /asciidoctor-editor-other/src/doc/asciidoc/diagrams/ASP-architecture.puml | 5029579976105d0c194d6ffa54b7e8cc48c12102 | [
"Apache-2.0"
] | permissive | de-jcup/eclipse-asciidoctor-editor | db5515421613e8ccfec749318fb6366b1f838e76 | 5dbbb4fdeac0634eec94c1cb6773246457ac2c3f | refs/heads/master | 2023-02-16T00:20:39.858165 | 2023-02-10T21:52:39 | 2023-02-10T21:52:54 | 125,332,958 | 49 | 18 | NOASSERTION | 2022-08-21T23:26:15 | 2018-03-15T08:06:29 | Java | UTF-8 | PlantUML | false | false | 1,713 | puml | interface AsciiDoctorAdapter
component AsciiDoctorEditorActivator
component AsciiDoctorWrapper
package "asciidoctor editor ASP parts" {
component "ASP Support" as aspSupport #LightGreen
component ASPAsciiDoctorAdapter #LightGreen
component ASPServerAdapter #LightGreen
note right of aspSupport
The ASP support will provide
the asp client to ASPAsciiDoctorAdapter,
but will wait until server instance is
really available...
So its ensured that html or pdf jobs
are not failing because server instance
is initializing.
end note
}
package "asp" {
component ASPClient #LightBlue
node "ASP Server instance" as aspServer #LightBlue
}
'note left of ASPClient
' ASP client is part of ASP project and will only be instanciated
'end note
component InstalledAsciiDoctorAdapter #lightgray
component AsciiDoctorEditorBuildSupport
component AsciiDoctorEditorPDFLauncher
component AsciiDoctorEditorPreferencePage
AsciiDoctorEditorBuildSupport --> AsciiDoctorWrapper : job ("build")
AsciiDoctorEditorPDFLauncher --> AsciiDoctorWrapper : job ("pdf")
AsciiDoctorEditorPreferencePage --> aspSupport #green
aspSupport --> ASPServerAdapter #green :delegates to
AsciiDoctorWrapper --> AsciiDoctorAdapter : calls
AsciiDoctorAdapter - ASPAsciiDoctorAdapter
AsciiDoctorAdapter - InstalledAsciiDoctorAdapter
AsciiDoctorEditorActivator -> aspSupport #green : requestStart
AsciiDoctorEditorActivator -> aspSupport #green : requestStop
ASPServerAdapter-> ASPClient #green : "create and\nconfigure client"
ASPServerAdapter-> aspServer #green : "start and \nstops server instance"
ASPClient <--> aspServer : communicate
ASPAsciiDoctorAdapter --> ASPClient
ASPAsciiDoctorAdapter . aspSupport
| false | true | false | false | sequence |
04b15349cc2b238db16fa1002c63ed02e751c2d5 | b8c409912c930baf8050f8c85da0cf2e97966b27 | /src/main/resources/uml/case/2_4用例描述.puml | 049b4c9187a8122055f3d99eceb52e218bd86a69 | [] | no_license | tom1120/BaseStudy | 8cd1b735a119e022d54738c7ba3d8a9cd16aa8d5 | 35d1c19a6ebaabbb52870af8b61604d8f0290a5e | refs/heads/master | 2023-07-24T13:22:00.656180 | 2023-07-08T15:53:45 | 2023-07-08T15:53:45 | 135,059,686 | 0 | 0 | null | 2023-07-08T15:54:31 | 2018-05-27T15:40:27 | Java | UTF-8 | PlantUML | false | false | 263 | puml | @startuml
'https://plantuml.com/use-case-diagram
usecase UC1 as "You can use several lines to define your usecase.
You can also use separators.
--
Several separators are possible.
==
And you can add titles:
..Conclusion..
This allows large description."
@enduml | false | true | false | false | usecase |
c7429924435aa91f3de9962b8ea6d940e4f82be9 | 8e4fc7e0c3b6a8fa3a9d99403aa14bf6b9374401 | /lib/UML/Choped/Calendar.puml | 0ab9ad337632abea9d56f0d3f6370d4f421f1502 | [] | no_license | Dariusz-Pluta/Locato | 5acff50930b68616bf232374c7322bfe1d484b7f | 2611a960ae69638aa9af2222dc254a32b2ec7619 | refs/heads/master | 2022-10-23T10:32:21.820239 | 2020-06-20T10:27:26 | 2020-06-20T10:27:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,230 | puml | @startuml
set namespaceSeparator ::
class "flutter::src::widgets::framework.dart::StatefulWidget" #Green
class "flutter::src::widgets::framework.dart::State<StatefulWidget>" #MediumSpringGreen
class "flutter::src::widgets::framework.dart::GlobalKey<FormState>" #DarkRed
class "flutter::src::widgets::framework.dart::State<T>" #SteelBlue
class "flutter::src::widgets::framework.dart::StatelessWidget" #Tomato
class "Locato::Pages::Calendar.dart::Calendar" {
+_CalendarState createState()
}
"flutter::src::widgets::framework.dart::StatefulWidget" <|-up[#Green]- "Locato::Pages::Calendar.dart::Calendar"
class "Locato::Pages::Calendar.dart::_CalendarState" {
-List _selectedEvents
-Map<DateTime, List<Event>> _events
-List<Event> _downloadEvents
-CalendarController _calendarController
-DateTime _selectedDay
+void initState()
+void dispose()
-void _onDaySelected()
+Widget build()
-Widget _buildTableCalendar()
-Widget _buildEventsMarker()
-Widget _buildEventList()
}
"Locato::Pages::Calendar.dart::_CalendarState" o-- "table_calendar::table_calendar.dart::CalendarController"
"flutter::src::widgets::framework.dart::State<T>" <|-up[#SteelBlue]- "Locato::Pages::Calendar.dart::_CalendarState"
@enduml | false | true | false | false | class |
03aa7c7e4f7613a9c1bb6c05ad6e8ec0f8b8a4e4 | 2bdea266b9dbed4c9c7a2010bf5b3caf61d1174c | /src/main/java/ua/knucea/controller/uml/UserController.puml | 129073a867d22a3d9973c6e69253f9fe0e675eaa | [] | no_license | Spotyk/springApp | e0a5b58f9e99e6cc75c4104fbdfa7864049f34f3 | b1e7da87e211fcb79204e09af15286109516db84 | refs/heads/master | 2021-12-11T16:58:31.134179 | 2021-09-14T17:18:51 | 2021-09-14T17:18:51 | 226,185,934 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 237 | puml | @startuml
class UserController {
userService:UserService
uploadPath:String
UserController()
cabinet()
getUserUpdatePage()
String updateUser()
List<String> updateUser()
updateFilePath()
register()
addUser()
}
@enduml | false | true | false | false | class |
efcfbd972387fd45fe4240f8c70ac9cc42f12ee0 | 24034df05451d1379cd5d067fd04119989e79ad4 | /examples2/ex4-asyncconsumedpush/images/AsynchronousServiceDeterministicPush.puml | f968773532c733c83239d16f4744c22f9ab35aa1 | [
"Apache-2.0"
] | permissive | isabella232/ioc-unit | da0c604b0a21c97d8e023b4563e9e59527c5a4ba | 70d14ab1e514622e574023b6889806132d3e4b48 | refs/heads/master | 2023-03-08T15:48:51.039896 | 2021-01-02T16:52:10 | 2021-01-02T16:52:10 | 331,292,518 | 0 | 0 | Apache-2.0 | 2021-02-24T04:04:53 | 2021-01-20T11:56:56 | null | UTF-8 | PlantUML | false | false | 945 | puml | @startuml
title: Asynchronous Service Call, Deterministic, Results Pushed to Callback
actor Test as t
participant "Asynchronous\nService" as aS
participant "Callback\nSimulator" as cb
participant "Callback\nResults" as cbr
participant "Asynchronous\nInterceptor" as aI
participant Future as f
participant Runnable as r
participant "Asynchronous\nManager" as aM
participant "Asynchronous\nWrapper" as aW
participant "Remote\nService\nSimulator" as rs
t -> aS: newRemoteEntity(..)
aS -> aI: newRemoteEntity(correlationId, ..)
create f
aI -> f: new(correlationId,..)
create r
aI -> r: new(f)
note right of r: f must later get result
aI -> aM: enque(r)
aS --> t: correlationId
t -> aM: once
aM -> r: run
r -> aW: newRemoteEntity()
aW -> rs: newEntity
rs -> aW: id
aW --> cb: correlationId, id
cb -> cbr: put(correlationId, id)
r -> f: store id, set done
destroy f
r --> aM
destroy r
aM --> t: done
t -> cbr: get(correlationId)
cbr --> t: id
@enduml | false | true | false | false | usecase |
82b816eb1ac1decd1770a0c651b82a12379c6167 | 3a8b601a60fa9945706cbb2a557d09dfc398cf81 | /src/AFdbdemo/abstractfactory/DBUML.puml | 8cf473fa1ce349da94808ef0d4976f0e17f52db7 | [] | no_license | dragonwang-hub/three_factory_design_patterns | 93793c9f6377706645d334adb6927ad283c56c07 | 3fa5ce7cc46c62efa785ab54641034e9d3722254 | refs/heads/master | 2023-04-05T00:40:57.835385 | 2021-04-20T14:36:47 | 2021-04-20T14:36:47 | 357,225,612 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,420 | puml | @startuml
'https://plantuml.com/class-diagram
package "Product"{
interface IUser {
void insert(User user)
User getUser(int id)
}
note top: Abstract ProductA
package "Concrete ProductA" {
class SqlserverUser implements IUser {
void insert(User user)
User getUser(int id)
}
class AccessUser implements IUser {
void insert(User user)
User getUser(int id)
}
}
interface IDepartment {
void insert(Department department)
Department getDepartment(int id)
}
note top: Abstract ProductB
package "Concrete ProductB" {
class SqlserverDepartment implements IDepartment {
void insert(Department department)
Department getDepartment(int id)
}
class AccessDepartment implements IDepartment {
void insert(Department department)
Department getDepartment(int id)
}
}
}
interface IFactory {
IUser createUser()
IDepartment createDepartment()
}
note top: Abstract Factory
package "Concrete Factory"{
class SqlserverFactory implements IFactory {
IUser createUser()
IDepartment createDepartment()
}
class AccessFactory implements IFactory {
IUser createUser()
IDepartment createDepartment()
}
}
SqlserverUser <.[#green] SqlserverFactory
SqlserverDepartment <.[#green] SqlserverFactory
AccessUser <.[#blue] AccessFactory
AccessDepartment <.[#blue] AccessFactory
@enduml | false | true | false | false | class |
766ff83c63b5e974a62358c0ef79f4690b64ee0c | 614e2c7be30154c32775a38e5d7b105fc4023292 | /doc/plantUML/DomeinModel.puml | f4b7322c593a5f88d93714346ecb3648b85a56a6 | [] | no_license | lolzzzyo/vkfep2021-test | 353db8c3e4a3a9e89fdbeb444ecfb3c03bd58e85 | e254b9806a75739f9b3cf3b5c6cc02974f00a355 | refs/heads/main | 2023-03-01T18:08:04.502798 | 2021-02-05T14:54:46 | 2021-02-05T14:54:46 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 246 | puml | @startuml
hide circle
hide empty members
class Reparatiekaart {
- klant: String
- voertuigType: VoertuigType
- reparatie: ArrayList<String>
- tijd: Number
}
enum VoertuigType <<Enumeration>> {
Fiets
Scooter
}
@enduml | false | true | false | false | class |
e5108242e5587cbd9b8529d83c44f3cd05ab82e6 | 8b8bddef64054a6eaa60abeb42ce8448a993219e | /app/app.plantuml | 16dd54b647fcd21cbe92e4da0eed69208f809ad6 | [] | no_license | fouomene/Todoc | 6c899f17d927e68580442d9078ea2c9bd6e6a1f0 | e413c8e28523c30b989ebe71c2ec0e5256ee38c6 | refs/heads/master | 2022-11-11T10:15:28.594481 | 2020-07-06T10:07:26 | 2020-07-06T10:07:26 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 4,696 | plantuml | @startuml
title __APP's Class Diagram__\n
namespace com.cleanup.todoc {
class com.cleanup.todoc.BuildConfig {
}
}
namespace com.cleanup.todoc {
namespace database {
abstract class com.cleanup.todoc.database.TodocDatabase {
}
}
}
namespace com.cleanup.todoc {
namespace database {
class com.cleanup.todoc.database.TodocDatabase_Impl {
}
}
}
namespace com.cleanup.todoc {
namespace database {
namespace dao {
interface com.cleanup.todoc.database.dao.ProjectDao {
}
}
}
}
namespace com.cleanup.todoc {
namespace database {
namespace dao {
class com.cleanup.todoc.database.dao.ProjectDao_Impl {
}
}
}
}
namespace com.cleanup.todoc {
namespace database {
namespace dao {
interface com.cleanup.todoc.database.dao.TaskDao {
}
}
}
}
namespace com.cleanup.todoc {
namespace database {
namespace dao {
class com.cleanup.todoc.database.dao.TaskDao_Impl {
}
}
}
}
namespace com.cleanup.todoc {
namespace injection {
class com.cleanup.todoc.injection.Injection {
}
}
}
namespace com.cleanup.todoc {
namespace injection {
class com.cleanup.todoc.injection.ViewModelFactory {
}
}
}
namespace com.cleanup.todoc {
namespace model {
class com.cleanup.todoc.model.Project {
}
}
}
namespace com.cleanup.todoc {
namespace model {
class com.cleanup.todoc.model.Task {
}
}
}
namespace com.cleanup.todoc {
namespace repository {
class com.cleanup.todoc.repository.ProjectDataRepository {
}
}
}
namespace com.cleanup.todoc {
namespace repository {
class com.cleanup.todoc.repository.TaskDataRepository {
}
}
}
namespace com.cleanup.todoc {
namespace service {
class com.cleanup.todoc.service.TaskComparator {
}
}
}
namespace com.cleanup.todoc {
namespace ui {
class com.cleanup.todoc.ui.MainActivity {
}
}
}
namespace com.cleanup.todoc {
namespace ui {
class com.cleanup.todoc.ui.TaskViewModel {
}
}
}
namespace com.cleanup.todoc {
namespace ui {
class com.cleanup.todoc.ui.TasksAdapter {
}
}
}
com.cleanup.todoc.database.TodocDatabase -up-|> android.arch.persistence.room.RoomDatabase
com.cleanup.todoc.database.TodocDatabase_Impl -up-|> com.cleanup.todoc.database.TodocDatabase
com.cleanup.todoc.database.TodocDatabase_Impl o-- com.cleanup.todoc.database.dao.ProjectDao : _projectDao
com.cleanup.todoc.database.TodocDatabase_Impl o-- com.cleanup.todoc.database.dao.TaskDao : _taskDao
com.cleanup.todoc.database.dao.ProjectDao_Impl .up.|> com.cleanup.todoc.database.dao.ProjectDao
com.cleanup.todoc.database.dao.TaskDao_Impl .up.|> com.cleanup.todoc.database.dao.TaskDao
com.cleanup.todoc.injection.ViewModelFactory .up.|> android.arch.lifecycle.ViewModelProvider.Factory
com.cleanup.todoc.injection.ViewModelFactory o-- com.cleanup.todoc.repository.ProjectDataRepository : projectDataSource
com.cleanup.todoc.injection.ViewModelFactory o-- com.cleanup.todoc.repository.TaskDataRepository : taskDataSource
com.cleanup.todoc.repository.ProjectDataRepository o-- com.cleanup.todoc.database.dao.ProjectDao : projectDao
com.cleanup.todoc.repository.TaskDataRepository o-- com.cleanup.todoc.database.dao.TaskDao : taskDao
com.cleanup.todoc.ui.MainActivity .up.|> com.cleanup.todoc.ui.TasksAdapter.DeleteTaskListener
com.cleanup.todoc.ui.MainActivity -up-|> android.support.v7.app.AppCompatActivity
com.cleanup.todoc.ui.MainActivity o-- com.cleanup.todoc.ui.TasksAdapter : adapter
com.cleanup.todoc.ui.MainActivity o-- com.cleanup.todoc.ui.MainActivity.SortMethod : sortMethod
com.cleanup.todoc.ui.MainActivity o-- com.cleanup.todoc.ui.TaskViewModel : taskViewModel
com.cleanup.todoc.ui.TaskViewModel -up-|> android.arch.lifecycle.ViewModel
com.cleanup.todoc.ui.TaskViewModel o-- com.cleanup.todoc.repository.ProjectDataRepository : projectDataSource
com.cleanup.todoc.ui.TaskViewModel o-- com.cleanup.todoc.repository.TaskDataRepository : taskDataSource
com.cleanup.todoc.ui.TasksAdapter -up-|> android.support.v7.widget.RecyclerView.Adapter
com.cleanup.todoc.ui.TasksAdapter o-- com.cleanup.todoc.ui.TasksAdapter.DeleteTaskListener : deleteTaskListener
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
d3f740cc09696134c517d8bf57ca63c7b52d9dd3 | 71a886e08b95bc6eb6bcf83fee1e494a0be5c231 | /architecture/src/main/resources/diagrams/ext-claim-int/claim-create.puml | a1cd39b04d4c5e540725063aaf919e76472642a7 | [] | no_license | siarhei/java8 | 6cfce577f9c25daecc930042a71347998a5988e1 | 18201e75ddfca19415a63dbddfe031162c4738e2 | refs/heads/master | 2021-09-08T04:01:25.935910 | 2021-09-06T17:01:51 | 2021-09-06T17:01:51 | 147,394,381 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 769 | puml | @startuml
participant "Base Claims" as bc #lightblue
participant "Claims Integration Layer" as cil #lightgreen
queue "Claims" as c #lightgreen
queue "Claims Status Update" as csu #lightgreen
participant "Claims Integration" as ci #lightgreen
c <- ci : 1 : fetch new data
cil <- c : 2 : new claim received
bc <- cil : 3 : NewExternalClaimAsyncTask
bc <- bc : 4 : validate
bc --> cil : 5 : ClaimValidatedEvent
cil --> csu : 6 : update status
csu --> ci : 7 : update status received
alt "Validation Passes"
bc <- bc : 8 : create new claim
bc --> cil : 9 : ClaimCreatedEvent
cil --> csu : 10 : update status
csu --> ci : 11 : update status received
end
legend
|= |= Type |
|<back:#lightgreen> </back>| Integration |
|<back:#lightblue> </back>| EIS |
endlegend
@enduml | false | true | false | false | sequence |
f12bb10a864016f239a842fe655805c7c544103c | b19e1cd9af26a9f3cb65823e1a7885ce278337fe | /documentation/productApi/serviceability/offeringQualification/media/notifications.puml | bba695917987c137cb764e22c57ae33f7458e382 | [
"Apache-2.0"
] | permissive | MEF-GIT/MEF-LSO-Sonata-SDK | 969c3717fba3fffa009bf3a5de65337b2caccaaf | 6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f | refs/heads/working-draft | 2023-07-07T02:17:11.649855 | 2023-06-23T09:30:18 | 2023-06-23T09:30:18 | 90,886,429 | 33 | 32 | Apache-2.0 | 2023-01-05T23:58:23 | 2017-05-10T16:38:08 | null | UTF-8 | PlantUML | false | false | 385 | puml | @startuml
skinparam {
ClassBackgroundColor White
ClassBorderColor Black
}
class Event {
eventId*: string
eventType*: PoqEventType
eventTime*: date-time
}
Event *-->"1" PoqEvent : event
class PoqEvent {
id: string
href: string
buyerId: string
sellerId: string
}
enum PoqEventType {
poqCreateEvent
poqStateChangeEvent
}
@enduml
| false | true | false | false | sequence |
38afb3bbe89d2569a17ceb921e48cd038521c61b | 464b64f2144fce0e6a57ce1fccd07696b9357706 | /architecture/AndroidApp.plantuml | 416989d9e9fdc19ce7557073825dcb683fbdfdd6 | [] | no_license | ambroseled/SENG402-2020 | 62331ffcbe8dbb1fdcd46bf1f6fa8340ea293258 | 04feabfef072ff0b88d081553fe1083689fba4f1 | refs/heads/master | 2023-02-21T23:09:58.003542 | 2021-01-29T01:47:18 | 2021-01-29T01:47:18 | 303,280,995 | 2 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,966 | plantuml | @startuml
hide method
hide field
together {
class MainActivity
class MainActivityViewModel
class UnimplementedSectionFragment
}
package modules {
package setplan {
class SetPlanFragment
class SetPlanViewModel
class SetPlanViewModelFactory
}
package syncfiles {
class SyncFilesFragment
class SyncFilesViewModel
class SyncFilesViewModelFactory
}
package testnozzles {
class TestNozzlesFragment
class TestNozzlesViewModel
class TestNozzlesViewModelFactory
}
}
package network {
package apiservices {
class ApiHostSettings
interface INozzlesApiService
interface ISprayPlansApiService
interface ISprayReportsApiService
interface IStateChangeApiService
}
package datasources {
interface ISyncFilesDataSource
interface IStateChangeDataSource
interface INozzlesDataSource
class SyncFilesDataSource
class StateChangeDataSource
class NozzlesDataSource
}
}
package sidebar {
class SidebarSections
class SidebarSectionRecyclerView
}
MainActivity .down.> MainActivityViewModel
SidebarSections .down.> UnimplementedSectionFragment
SidebarSections .down.> TestNozzlesFragment
SidebarSections .down.> SyncFilesFragment
SidebarSections .down.> SetPlanFragment
SidebarSectionRecyclerView .down.> SidebarSections
MainActivity .down.> SidebarSectionRecyclerView
' Data sources implementing interfaces
SyncFilesDataSource .up.|> ISyncFilesDataSource
StateChangeDataSource .up.|> IStateChangeDataSource
NozzlesDataSource .up.|> INozzlesDataSource
' Data sources and their dependencies
NozzlesDataSource *-down- INozzlesApiService
StateChangeDataSource *-down- IStateChangeApiService
SyncFilesDataSource *-down- ISprayPlansApiService
SyncFilesDataSource *-down- ISprayReportsApiService
' API services
INozzlesApiService .down.> ApiHostSettings
ISprayPlansApiService .down.> ApiHostSettings
ISprayReportsApiService .down.> ApiHostSettings
IStateChangeApiService .down.> ApiHostSettings
' Fragments and their dependencies
SetPlanFragment .down.> SetPlanViewModelFactory
SetPlanFragment .down.> SetPlanViewModel
SyncFilesFragment .down.> SyncFilesViewModelFactory
SyncFilesFragment .down.> SyncFilesViewModel
TestNozzlesFragment .down.> TestNozzlesViewModelFactory
TestNozzlesFragment .down.> TestNozzlesViewModel
' ViewModelFactories and their dependencies
SetPlanViewModelFactory .up.> SetPlanViewModel
SetPlanViewModelFactory *-down- ISyncFilesDataSource
SetPlanViewModelFactory *-down- IStateChangeDataSource
SyncFilesViewModelFactory .up.> SyncFilesViewModel
SyncFilesViewModelFactory *-down- ISyncFilesDataSource
TestNozzlesViewModelFactory .up.> TestNozzlesViewModel
TestNozzlesViewModelFactory *-down- INozzlesDataSource
' ViewModels and their dependencies
SetPlanViewModel .down.> ISyncFilesDataSource
SetPlanViewModel .down.> IStateChangeDataSource
SyncFilesViewModel .down.> ISyncFilesDataSource
TestNozzlesViewModel .down.> INozzlesDataSource
@enduml
| false | true | false | false | class |
312a2128a7d9e13b4a5d1b9afaf09acef05661cc | b6ef874704b2d26f7d1ed4838f68f7735d84dc93 | /docs/uml-diagrams/TimetableSave.puml | cecbe9349a418dfadd7415f0a6b2b5df52d46997 | [] | no_license | AY2122S1-CS2113T-W12-2/tp | 1494ecfe347d8733e1041085cff7ff4efe2b7739 | 47addc59a00bf047e96c84218a229c0faf0b0876 | refs/heads/master | 2023-08-26T04:02:15.336551 | 2021-11-11T04:31:02 | 2021-11-11T04:31:02 | 408,789,383 | 2 | 3 | null | 2021-11-10T14:26:41 | 2021-09-21T11:15:45 | Java | UTF-8 | PlantUML | false | false | 833 | puml | @startuml
[-> TimetableStorage : save()
activate TimetableStorage
TimetableStorage -> FileWriter**
activate FileWriter
FileWriter --> TimetableStorage
deactivate FileWriter
TimetableStorage -> Gson**
activate Gson
Gson --> TimetableStorage
deactivate Gson
TimetableStorage -> TimetableDto**
activate TimetableDto
TimetableDto --> TimetableStorage
deactivate TimetableDto
TimetableStorage -> Gson : toJson(timetableDto, fileWriter)
activate Gson
Gson --> TimetableStorage
deactivate Gson
destroy Gson
destroy TimetableDto
TimetableStorage -> FileWriter : flush()
activate FileWriter
FileWriter --> TimetableStorage
deactivate FileWriter
TimetableStorage -> FileWriter : close()
activate FileWriter
FileWriter --> TimetableStorage
deactivate FileWriter
destroy FileWriter
<-- TimetableStorage
deactivate TimetableStorage
@enduml | false | true | false | false | sequence |
8ece26f4d55881ca3190719afccab628e8b8d83b | a0ef2f48207a8fb6253cc4bfd1aa321260c96906 | /proto/session.puml | f876372f1d54dabc59063fe134814db779e8530c | [
"MIT"
] | permissive | arkavo-com/secure-rest-server | 19b8831a75fcfda05692a177948609bae4573a81 | 8644ba8aae9b04cd7c8d99029666d2d218ce6a6e | refs/heads/master | 2021-06-26T09:40:29.028562 | 2020-10-17T21:59:09 | 2020-10-17T21:59:09 | 140,202,365 | 5 | 0 | MIT | 2020-10-17T21:59:10 | 2018-07-08T21:01:31 | Go | UTF-8 | PlantUML | false | false | 209 | puml | @startuml
title session
[*] --> Activated : CREATE
Activated --> Reduced : REDUCE
Activated --> Reduced : IDLE
Reduced --> Deactivated : EXPIRE
Activated --> Deactivated : TERMINATE
Deactivated --> [*]
@enduml | false | true | false | false | sequence |
77400948465b51aa575c68c50046df0760072bc5 | 7d618c99d0bcee98fa0fdc58c1d8e1880c78d192 | /Reeks08/FieldValidation/FieldValidation/pattern/UML/Class.puml | c3d7cffb159ea1a5b1027a5e232009be82285ad4 | [
"MIT"
] | permissive | LorenzoDeBie/SoftwareOntwikkelingII | f67cdea65841ae2220180134cac20fc98926ec2f | 0f8a6fc6f89ca99b5339a16bd1da3f31182263b9 | refs/heads/master | 2020-08-05T23:44:58.411612 | 2019-12-05T14:38:19 | 2019-12-05T14:38:19 | 212,760,021 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 612 | puml | @startuml
interface IValidator {
+ ValidationBehaviour
+ PerformValidation(s: string): bool
}
interface IValidationBehaviour {
+ Validate(s: string): bool
}
class NumberValidationBehaviour {
+ Validate(s: string): bool
}
class EmailValidationBehaviour {
+ Validate(s: string): bool
}
class RekeningValidationBehaviour {
+ Validate(s: string): bool
}
IValidator::ValidationBehaviour o.right. IValidationBehaviour
NumberValidationBehaviour -up-|> IValidationBehaviour
EmailValidationBehaviour -up-|> IValidationBehaviour
RekeningValidationBehaviour -up-|> IValidationBehaviour
@enduml | false | true | false | false | class |
1bdab0b8538499532f0550de85e05fe0778b98ea | dec0acd462a0dc5772f3840b62df68ce106a8126 | /design-pattern/java-design-pattern-learn/src/site/markdown/uml/proxy/proxy-sequence.puml | 3193ea86bae7ee5eb48bb1fd6aa307e45c568ce6 | [
"Apache-2.0"
] | permissive | laidu/java-learn | 5382cf6a635871de27d0bd84ee75a35a5e45936d | e33e1ca519652c06e6dea47159daeb6f1f76431c | refs/heads/master | 2023-07-09T10:37:17.163359 | 2023-06-26T14:07:57 | 2023-06-26T14:07:57 | 100,566,396 | 12 | 3 | Apache-2.0 | 2023-07-07T22:07:28 | 2017-08-17T05:50:37 | Java | UTF-8 | PlantUML | false | false | 942 | puml | @startuml
skinparam backgroundColor #EEEBDC
skinparam handwritten true
skinparam sequence {
ArrowColor DeepSkyBlue
ActorBorderColor DeepSkyBlue
LifeLineBorderColor blue
LifeLineBackgroundColor #A9DCDF
ParticipantBorderColor DeepSkyBlue
ParticipantBackgroundColor DodgerBlue
ParticipantFontName Impact
ParticipantFontSize 17
ParticipantFontColor #A9DCDF
ActorBackgroundColor aqua
ActorFontColor DeepSkyBlue
ActorFontSize 17
ActorFontName Aapex
}
Client -> ProxySubject: request
activate Client
activate ProxySubject
ProxySubject --> ConcreteSubject: create
deactivate ProxySubject
ProxySubject -> ProxySubject: preRequest
activate ProxySubject
ProxySubject --> ConcreteSubject: request
activate ConcreteSubject
ConcreteSubject -> ProxySubject: request_result
deactivate ConcreteSubject
ProxySubject --> ProxySubject: postRequest
ProxySubject -> Client : request_result
deactivate ProxySubject
deactivate Client
@enduml | false | true | false | false | sequence |
52d6b85b29e9b7322b33585d42837e5a87319b68 | 694fd70b693c9670161b2492ece407123bf11cad | /plantuml/designpattern/concept-command-1.plantuml | 55e5f36cac53a7f7f3aaff0f1b58e29c073d29b2 | [
"CC-BY-3.0-US",
"BSD-3-Clause",
"WTFPL",
"GPL-1.0-or-later",
"MIT",
"OFL-1.1"
] | permissive | windowforsun/blog | 4a341a9780b8454a9449c177f189ca304569031b | b0bce013f060f04a42dfa7ef385dbeea1644fdab | refs/heads/master | 2023-09-04T03:17:39.674741 | 2023-08-21T14:39:37 | 2023-08-21T14:39:37 | 170,632,539 | 0 | 1 | MIT | 2023-09-05T17:48:27 | 2019-02-14T05:26:51 | HTML | UTF-8 | PlantUML | false | false | 310 | plantuml | @startuml
interface Command {
{abstract} execute()
}
class ConcreteCommand {
receiver
execute()
}
class Receiver {
action()
}
class Invoker {
}
class Client {
}
Command <-left-o Invoker
Command <|.down. ConcreteCommand
Receiver <-left-o ConcreteCommand
ConcreteCommand <-- Client : Creates <
@enduml | false | true | false | false | class |
3e828d685cc129908f53662299c0e8e7e811de40 | 884753fa90d56def28d02a4c58c2903ae361f3cb | /asciidoc/plantuml/cld.puml | c58f46e10b535448ed05468df5f970a6cbc01fdf | [] | no_license | 2021-4ahitm-sew/06-microproject-panache-sknogler | 0d9286a203b0fb15f5924276917fbcfe38f02673 | 1a4aa97bfa86046b15330bec3761fdfede961ac0 | refs/heads/master | 2023-02-19T00:58:17.321802 | 2021-01-22T15:34:03 | 2021-01-22T15:34:03 | 331,922,267 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 171 | puml | @startuml
class Event{
- String name;
- String date;
- long id;
}
class Host{
- String name;
- long ssn;
- long id;
}
Host "1" -- "*" Event : hosts
@enduml | false | true | false | false | class |
eb7e3b69d912a1c147153e3f4b23425d162fea12 | 06e93d722a18add11c25541a4e525b9f4b9ab83d | /implementation/ast_statements.puml | d26277bd3c27fb4e2b6a125f099a7a4c0e2b1260 | [] | no_license | eroatta/thesis | a00ee3c69966b9794ca69147881b94909a306851 | bd191d1691dea9ba433772fabf9b9726bc1b7237 | refs/heads/master | 2021-09-18T00:11:01.309241 | 2021-08-22T18:54:47 | 2021-08-22T18:54:47 | 91,565,606 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 669 | puml | @startuml ast_statements
package ast {
interface Stmt {
# stmtNode()
}
class AssignStmt implements Stmt {
+ Lhs []Expr
+ TokPos token.Pos
+ Tok token.Token
+ Rhs []Expr
}
class RangeStmt implements Stmt {
+ For token.Pos
+ Init Stmt
+ Key Expr
+ Value Expr
+ TokPos token.Pos
+ Tok token.Token // ASSIGN, DEFINE
+ X Expr
+ Body *BlockStmt
}
class GeneralStmt as "..." implements Stmt
note bottom of GeneralStmt
Otros statements,
pero que no son de importancia
para la herramienta.
end note
}
@enduml
| false | true | false | false | class |
c820ee21d1a03c55605d6ef4dec32d4a6db9a7fc | effd000c89ab6561d1694b201bac15c8d8b72d08 | /diagram/class_diagram.puml | ee614b375456cac5cf23d27c3c3c085d333fc19b | [] | no_license | ShuHsiangLiang/JKOShop | 31eef81bf21b1b0ab65bfbd8b5b1462b40c29157 | 41faad19d57eab1c747145c0bf93192c3e38a26e | refs/heads/master | 2023-06-09T23:55:19.782117 | 2021-07-02T03:58:10 | 2021-07-02T03:58:10 | 380,865,867 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,138 | puml | @startuml
User "1" o-- "0..n" Listing
Category "1" *-- "0..n" Listing
package "User Service" {
UserService --> User
UserService --> UserMessage
UserService --> VerifyID
}
package "Product Service" {
ProductService --> Listing
ProductService --> Category
ProductService --> ProductMessage
}
UserMessage ..|> Message
ProductMessage ..|> Message
class User {
+id: Interger
+name: String
}
class Listing {
+id: Interger
+title: String
+description: String
+price: Interger
+username: String
+createtime: Date
}
class Category {
+id: Interger
+name: String
-list: Object
}
class VerifyID {
-doCaseInsensitive(name: String): String
-isExisted(name: String): Bool
}
class UserService {
+Register(username: String): Message
}
class ProductService {
+createListing(): Message
+deleteListing(): Message
+getListing(): Message
+getCategory(): Message
+getTopCategory(): Message
}
interface Message {
+Success()
+Error()
}
class UserMessage {
-Success()
-Error()
}
class ProductMessage {
-Success()
-Error()
}
enum Status {
}
@enduml | false | true | false | false | class |
a9e86ebd2f4c2cb140e340809503878713f18de9 | f746c0c045fadc8ad6f50f90f817442aa460e12e | /diagrams/demo-03.puml | bf2df2064d950eb0c0ac31d65c3019bd7338f8c6 | [] | no_license | eLetterBank/appsvc | cc024925cf8f9543f83240f2a7c626fc594fe09a | 8cd13958710cf62072f097f3a724627e7565deee | refs/heads/master | 2023-07-11T02:33:51.954367 | 2023-07-04T05:32:21 | 2023-07-04T05:32:21 | 77,613,385 | 1 | 1 | null | 2017-08-03T06:38:41 | 2016-12-29T13:17:19 | Java | UTF-8 | PlantUML | false | false | 1,638 | puml | @startuml
'''''''''''''''''''''''''''''''''''''''''''''''''
' define diagram participants
'''''''''''''''''''''''''''''''''''''''''''''''''
actor PayRollCron
participant PayDayTransaction
participant PayRoll
participant PayRollDatabase
participant Employee
participant PayCheck
'''''''''''''''''''''''''''''''''''''''''''''''''
' formatting options
'''''''''''''''''''''''''''''''''''''''''''''''''
hide footbox
autonumber
skinparam sequence {
ParticipantBorderColor black
ParticipantBackgroundColor #A9DCDF
ParticipantFontName Futura
ParticipantFontSize 15
ActorBackgroundColor #A9DCDF
ActorBorderColor black
ArrowFontName Futura
}
'''''''''''''''''''''''''''''''''''''''''''''''''
' describe sequence of events
'''''''''''''''''''''''''''''''''''''''''''''''''
PayRollCron->PayDayTransaction: initialise(today)
PayRollCron->PayDayTransaction: execute
activate PayDayTransaction
PayDayTransaction->PayRoll: get
PayRoll->PayRollDatabase: new
activate PayRollDatabase
PayRollDatabase-->PayDayTransaction
PayDayTransaction->PayRollDatabase: find_employees
PayRollDatabase-->PayDayTransaction: employees
deactivate PayRollDatabase
PayDayTransaction->PayDayTransaction: for each employee e
activate PayDayTransaction
PayDayTransaction->Employee: pay_date(date) ?
Employee-->PayDayTransaction: true
PayDayTransaction->Employee: calculate_pay(date)
Employee-->PayDayTransaction: amount
PayDayTransaction->PayCheck: new (amount)
PayCheck-->PayRoll: check
PayDayTransaction->Employee: send_pay(check)
deactivate PayDayTransaction
PayDayTransaction-->PayRollCron:
deactivate PayDayTransaction
@enduml | false | true | false | false | usecase |
3dcae3323ff6af2191f7f71820302bff85841634 | ea92b794f64577cf3f9895848ed841a2482a6d1e | /docs/assets/images/TaskAPI-umlClassDiagram-9.puml | 99c91356fefc2946581375efd1abbe3f0f44d863 | [
"MIT"
] | permissive | dreambo8563/todo-core | a1cdd6e14ec6445dd1dae84d0ba03bf80b1b09da | 96b2af2b5b5c0ba1d1aaa15eba7061c52cafc611 | refs/heads/master | 2022-11-21T11:51:16.649734 | 2020-07-18T17:57:03 | 2020-07-18T17:57:03 | 274,677,442 | 0 | 0 | MIT | 2020-06-28T10:36:09 | 2020-06-24T13:36:10 | TypeScript | UTF-8 | PlantUML | false | false | 319 | puml | @startuml
hide empty methods
hide empty fields
class "TaskAPI" {
{static} -instance : TaskAPI | null
+createTask(content: string | URL) : Promise<object>
{static} +getInstance() : TaskAPI<>
}
interface "ITaskAPI" {
+createTask(content: string | URL) : Promise<object>
}
"ITaskAPI" <|.. "TaskAPI"
@enduml | false | true | false | false | class |
8162e68fc7bde2c98a6355373bab0fe591c384ac | f8e357daee592f0c24cd2e5778c643a77b4a6404 | /08_sequencediagram/50_sequence_participant.puml | 2cddf457ca435ab6eda69689dcb93c195b6c2b14 | [] | no_license | jahmanitheone/plantuml | bd3914c882d79157f387aa84268510edbebb05c2 | dda0a93ca7caabf456c96bd9ef8249c1f3ddf9a1 | refs/heads/main | 2023-01-01T12:40:34.242849 | 2020-10-22T17:01:59 | 2020-10-22T17:01:59 | 306,404,003 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 412 | puml | '
'Basics: Participant creation
'
'You can use the create keyword just before the first reception of a message to emphasize the fact that this message
'is actually creating this new object
'
'create: message with creates object
'
@startuml
Bob -> Alice : hello
create Other
Alice -> Other : new
create control String
Alice -> String
note right : You can also put notes!
Alice --> Bob : ok
@enduml | false | true | false | false | sequence |
eb2c66b95bf0f2000d141f0f0ed6155296093f07 | b8ceedc92306034d6edd33fef22143c96f342a36 | /docs/diagrams/BookPredicateEmptyObjectDiagram.puml | b479312b9d2516909d995fea45b6688f5b0fc18c | [
"MIT"
] | permissive | AY1920S1-CS2103T-F13-1/main | aa04f087a5cd11e6d8a2758cea5623d3054265bd | c6262e35daa2f807d8415cbe4dde8f62a110ba71 | refs/heads/master | 2020-07-25T07:05:44.886872 | 2019-11-11T09:41:36 | 2019-11-11T09:41:36 | 208,202,695 | 1 | 5 | NOASSERTION | 2019-11-11T09:41:38 | 2019-09-13T05:41:11 | Java | UTF-8 | PlantUML | false | false | 207 | puml | @startuml
object BookPredicate {
String title = null
String author = null
String serialNumber = null
Set<Genre> genres = null;
Flag loanState = null;
int displayLimit = -1;
}
@enduml
| false | true | false | false | object |
9a2ee712147739fb1c2f9707e8bfb6de1561cf21 | f7389ede7c743b8ce3d174eee24ebcab316354f6 | /Diagrammer/CentralComputer/Klasser/Display/CD.puml | 60be34dbfe93d2a47aec5f015abec502a9adf6a4 | [] | no_license | Solvgraa-mager/E3PRJ3 | 7e2b70775c0d8b8312bc893e0c9014fd766af9b0 | fb507b5528417459714c00b73c75378d6465af19 | refs/heads/master | 2023-01-31T11:01:30.966313 | 2020-12-18T10:28:55 | 2020-12-18T10:28:55 | 294,479,612 | 0 | 1 | null | null | null | null | UTF-8 | PlantUML | false | false | 446 | puml | @startuml
skinparam wrapWidth 200
class Display<<Boundary>>{
+Display(int rows, int cols, int bits, int rs, int strb,int d0, int d1, int d2, int d3, int d4, int d5, int d6, int d7)
+StartCountDown(int count)
+LostLife(int player,&SumoBot,&SumoBot)
+ShowWinner(int player)
+writeToScreen(string msg)
- _displayfd : int
- _rows : int
- _cols : int
- _bits : int
- _rs : int
- _strb : int
- _data[8] : int
}
@enduml | false | true | false | false | class |
b29804098e9dfa79b3c6ae3e1c5b4ea86fc86de5 | 57515bfad33d5ab1e68cccc924700e88316e19b9 | /DiagramaClases/Gestores/GestorProductos.puml | 0df2dee62008111e685a4b2c57fa1885dbb6a01c | [] | no_license | NicolasBachs/DocumentacionZMGestion | 0e42009bf3bbf4d244e85a8545997c880f233074 | a099ddb44b8911b8428b9c4bdc2f9156c480af47 | refs/heads/master | 2023-01-27T17:57:29.235074 | 2020-12-02T15:35:21 | 2020-12-02T15:35:21 | 232,633,959 | 1 | 0 | null | 2020-01-08T18:44:12 | 2020-01-08T18:44:11 | null | UTF-8 | PlantUML | false | false | 118 | puml | @startuml GestorProductos
hide circle
class GestorProductos{
listarTiposProducto(): List<TiposProducto>
}
@enduml | false | true | false | false | class |
c0a386be7bc8b9d9f14511f29da7935008a23c14 | db31c4003cf55a19b04e132f894e129b51eb7922 | /GetTogether/Models/Diagrams/Model.puml | c12d33e910167c438a8c98371c8f7ca478ed8ffe | [] | no_license | OutOfTeaException/GetTogether | 1ac68f94fd582c93ec35036b455d5aa6d6a778a0 | bf47998eff42069401ab989a34f670f980a34892 | refs/heads/master | 2020-03-26T01:36:40.565386 | 2018-08-11T09:59:28 | 2018-08-11T09:59:28 | 144,374,571 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 404 | puml | @startuml Model
class Group
class DateSearch
class DateProposal
class Date
class User
Group "1" -- "*" DateSearch : belongs to <
DateSearch "1" -- "1" Date : has a final date >
DateSearch "1" -- "*" DateProposal : has proposals
Group "*" -- "*" User : belongs to <
DateSearch "1" -- "1" User : created by >
DateSearch "1" -- "*" User : partecipants >
DateProposal "1" -- "1" User : created by >
@enduml | false | true | false | false | sequence |
aacce7fc266bb16ba0c849a36648e0b172d2e498 | d1edde6aa73146da07b5e06f1976012e3ebc8f72 | /architecturing-with-python/figure 1-1.plantuml | 1fa7452f9b52abb8c57bfc49a20e01c34727837b | [
"MIT"
] | permissive | olom70/diagrams | 178cb44be9dbf7f11638270c7148f2d39a4f3d78 | d18fd3fc8449914807b55234fef9ced11534122a | refs/heads/main | 2023-06-10T03:33:37.118350 | 2021-07-02T18:13:58 | 2021-07-02T18:13:58 | 363,165,296 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 754 | plantuml | @startuml figure 1
'!include https://raw.githubusercontent.com/bschwarz/puml-themes/master/themes/silver/puml-theme-silver.puml
!include https://raw.githubusercontent.com/bschwarz/puml-themes/master/themes/cerulean/puml-theme-cerulean.puml
'left to right direction
top to bottom direction
component [Flask] as F
rectangle "ServiceLayer" {
component [Services] as S
component [Unit Of Work] as U
}
rectangle "Domain" {
component [D1]
component [D2]
component [D3]
}
rectangle "Adapters" {
component [repository] as R
}
database DB
F --> S : invokes
U --> Adapters : provides
S -> U : starts
R --> DB : commit changes to
Adapters -> Domain : load and save
S ----> Domain : call methods on
D1 -> D2
D2 --> D3
@enduml
| false | true | false | false | sequence |
0faa6b6c046c4f523f8d7c1814cf9b88ca742676 | 212a7ed7413f918246e59c41df1eb9078f06c654 | /plantuml/_class.plantuml | fc931a03daaf5ab25bc0f98d2c0ed435297a0884 | [] | no_license | maxant/tullia2 | d63081fd038bd6d490e0a0070f14aa3b9443ba47 | 9639c686e8ce896dcd817fbb83a2b861ddd5dcbd | refs/heads/master | 2020-04-08T02:54:40.342442 | 2018-11-25T15:02:43 | 2018-11-25T15:02:43 | 158,953,553 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,039 | plantuml | @startuml
Class01 <|-- Class02 : extension
Class03 "1" *-- "many" Class04 : composition (contains)
Class05 o-- Class06 : agregation
Class01 : -Object[] private(someString)
Class01 : #Object[] protected(someString)
Class01 : ~Object[] packageprotected(someString)
Class01 : +Object[] public(someString)
Class02 : #Object[] field
note "This note is connected\nto several objects." as N
Class01 .. N
N .. Class02
interface Class01 << general >>
abstract Class02
class myObject
hide myObject members
show myObject fields
hide myObject circle
myObject : someValue
myObject -- Class06
newpage
Class07 .. Class08
Class09 -- Class10
Class11 <|.. Class12
enum TimeUnit
TimeUnit : DAYS
TimeUnit : HOURS
TimeUnit : MINUTES
newpage
class WithOwnSpot << (S,orchid) >>
Class13 --> "1" Class14
Class15 ..> Class16
Class17 ..|> Class18
Class19 <--* Class20
newpage
package foo1.foo2.foo3 {
class Object
}
foo1.foo2 +-- foo1.foo2.foo3
newpage
foo -left-> dummyLeft
foo -right-> dummyRight
foo -up-> dummyUp
foo -down-> dummyDown
@enduml
| false | true | false | false | class |
91edc0424985e4a14649fc5f460a7ae647ec5fd5 | 9e1a64a87faaab153b600662026f1c0e7c8a10ea | /src/main/resources/start-cmp.puml | 103ec8c0184e610c74f2c1bd772b304553698048 | [
"MIT"
] | permissive | nhoomtham/heroku-java-getting-started | de9fe0ba4f6928f64afbaabd51becbb806f402c3 | 5ad7f31ff9b9f077ea39ce41b2ee9cc0350b02b9 | refs/heads/master | 2021-05-08T15:29:25.214735 | 2018-02-07T11:30:47 | 2018-02-07T11:30:47 | 120,116,115 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 177 | puml | @startuml
package "App Group" {
HTTP - [Main Component]
rPC - [Caller Component]
}
package "File Groups" {
FTP - [FileProcessor Component]
[Main Component] --> FTP
}
@enduml | false | true | false | false | uml-unknown |
8964e3dfafb16ae4f7e9707fcba8b205e292f4af | 873458ec9d2a064d4bfb8cfb3fd49c85bf38a8f3 | /docs/isp/isp-good.puml | 5f410a502b0fd87940b50b0732c1ec2b44f791de | [] | no_license | vikas-a/SOLID | 50caecae680a86f7dca8668121fcb5ff05c2c2bd | 0c55eb2c5964bc1a2fc261698452d07bdfd75fa7 | refs/heads/master | 2021-02-17T06:04:07.881039 | 2020-03-09T10:02:32 | 2020-03-09T10:02:32 | 245,076,042 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 274 | puml | @startuml
interface FeatheredCreature{
+ molt()
}
interface FlyingCreature{
+ fly()
}
interface SwimmingCreature{
+ swim()
}
class Penguin
class Eagle
FeatheredCreature <-- Eagle
FeatheredCreature <-- Penguin
FlyingCreature <-- Eagle
SwimmingCreature <-- Penguin
@enduml | false | true | false | false | class |
dcced20d203b269863d7bdf863e6274c615bfcd2 | d97b774fd95a8e98e37c46ee1771f6e6e407a148 | /uml/api/Subscription.puml | 8b13fd5d55612b7e11d99e32444eaf8a5b0cd922 | [] | no_license | commercetools/commercetools-api-reference | f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96 | 2db4f78dd409c09b16c130e2cfd583a7bca4c7db | refs/heads/main | 2023-09-01T05:22:42.100097 | 2023-08-31T11:33:37 | 2023-08-31T11:33:37 | 36,055,991 | 52 | 30 | null | 2023-08-22T11:28:40 | 2015-05-22T06:27:19 | RAML | UTF-8 | PlantUML | false | false | 1,210 | puml | @startuml
hide empty fields
hide empty methods
legend
|= |= line |
|<back:black> </back>| inheritance |
|<back:green> </back>| property reference |
|<back:blue> </back>| discriminated class |
endlegend
interface Subscription [[Subscription.svg]] extends BaseResource {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]]
createdBy: [[CreatedBy.svg CreatedBy]]
changes: [[ChangeSubscription.svg List<ChangeSubscription>]]
destination: [[Destination.svg Destination]]
key: String
messages: [[MessageSubscription.svg List<MessageSubscription>]]
format: [[DeliveryFormat.svg DeliveryFormat]]
status: [[SubscriptionHealthStatus.svg SubscriptionHealthStatus]]
}
interface BaseResource [[BaseResource.svg]] {
id: String
version: Long
createdAt: DateTime
lastModifiedAt: DateTime
}
interface SubscriptionPagedQueryResponse [[SubscriptionPagedQueryResponse.svg]] {
limit: Long
offset: Long
count: Long
total: Long
results: [[Subscription.svg List<Subscription>]]
}
Subscription --> SubscriptionPagedQueryResponse #green;text:green : "results"
@enduml
| false | true | false | false | sequence |
778d1fccceee7bc6eae8a9080716d363185f871c | e6bf25bf22e546086f64e8312df64dc179c05975 | /onMessage.puml | 9fa2cf9d586b52eaeba507716f4f9c8950144110 | [] | no_license | avrabe/CarND-MPC-Project | 75af2865c6871c17d6481734352dc40fa96016aa | 8ad0aca3c2d29873839291d6f179e29f58e0ffa6 | refs/heads/master | 2020-09-20T04:23:16.921513 | 2017-06-27T03:48:05 | 2017-06-27T03:48:05 | 94,500,105 | 0 | 1 | null | 2017-06-19T06:07:23 | 2017-06-16T03:10:10 | C++ | UTF-8 | PlantUML | false | false | 364 | puml | @startuml
(*) --> "Compensate latency"
--> "Transform global waypoints\nrelativ to\ncar position"
--> "Fit waypoints into polynom of 3rd order"
--> "Calculate cte and epsi"
--> "Check for upcoming steep curve"
If "curve is steep" then
--> [Yes] "Reduce reference speed"
--> "Solve MPC"
else
--> [No] "Use max reference speed"
--> "Solve MPC"
Endif
-->(*)
@enduml
| false | true | false | false | activity |
ecec09f4969000f0e777e87b5f1d693242c27f37 | e1e9de85a6af8c45f7337f0340e41256fa7b931e | /src/com/blj/javawiki/multithread/Thread_class.puml | 98d5c82c37382336d8a330dfa042e244afa72d10 | [] | no_license | bailiangjin/JavaCodeWiki | 5edeaa4beffe567f58dc75b73483c8a72b09219e | b73c3a1f2f1ddb2b781413042dddf2ec029a60f1 | refs/heads/master | 2021-11-08T01:11:32.765285 | 2021-11-02T12:14:02 | 2021-11-02T12:30:23 | 145,964,981 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 843 | puml | @startuml
'https://plantuml.com/class-diagram
interface Runnable {
+ {abstract} void run
}
class Thread{
- long tid
- ThreadGroup group
- volatile int threadStatus = 0
- boolean daemon = false
- boolean stillborn = false
- Runnable target
- ClassLoader contextClassLoader
- {static} long threadSeqNumber
+ {static} int MIN_PRIORITY = 1
+ {static} int NORM_PRIORITY = 5
+ {static} int MAX_PRIORITY = 10
+ void start()
+ {static} void sleep(long millis, int nanos)
+ void run()
+ void interrupt()
+ boolean isInterrupted()
+ {static} boolean interrupted()
+ {static} native void yield()
+ {static} native void sleep(long millis) throws InterruptedException
+ void setPriority
- {static} long nextThreadID()
- void exit()
}
Runnable <|-- Thread
@enduml | false | true | false | false | class |
ac7f762ce9ebe2c52f6aa35d4144fceec9bbf752 | f2b0300b19defee84f850f3382572cd9996f5b6f | /星巴兹咖啡(装饰模式)/beverage.puml | b7e62009c3cfea56adba21d73624caba395ba60e | [] | no_license | yangqing870410/design_pattern | 95a0b486132e835da2a0223066c3f9063776112a | a0afd06412df0c9f5614e7c2c24c8e0a26abe9bf | refs/heads/master | 2022-07-16T14:15:42.449648 | 2020-05-17T13:08:13 | 2020-05-17T13:08:13 | 259,402,736 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 932 | puml | @startuml
Beverage <|-- DarkRoast
Beverage <|-- Decaf
Beverage <|-- Espresso
Beverage <|-- HouseBlend
Beverage <|-- CondimentDecorator
CondimentDecorator <|-- Milk
CondimentDecorator <|-- Mocha
CondimentDecorator <|-- Soy
CondimentDecorator <|-- Whip
abstract class Beverage
Beverage : getDescription()
Beverage : setDescription()
Beverage : cost()
class DarkRoast
DarkRoast : getDescription()
DarkRoast : cost()
class Decaf
Decaf : getDescription()
Decaf : cost()
class Espresso
Espresso : getDescription()
Espresso : cost()
class HouseBlend
HouseBlend : getDescription()
HouseBlend : cost()
class CondimentDecorator
CondimentDecorator : $_beverage
CondimentDecorator : getDescription()
CondimentDecorator : cost()
class Milk
Milk : getDescription()
Milk : cost()
class Mocha
Mocha : getDescription()
Mocha : cost()
class Soy
Soy : getDescription()
Soy : cost()
class Whip
Whip : getDescription()
Whip : cost()
@enduml | false | true | false | false | class |
c680a6404771e77a1a155dc6c9ce82e156e04574 | b45b9d4545b5221d10264e8972bc8a0c39701cdb | /mental-model/tag-template-tag-classes.plantuml | f9ffa51317f4525d82e120b4c780793f78c34fb8 | [
"MIT"
] | permissive | ricardolsmendes/gcp-datacatalog-diagrams | de2a2e49aa8f1b44c846c4440bc00bf9814dcd1d | d4802083952a798104e963cfc7938be0895184da | refs/heads/master | 2021-12-23T16:33:42.530149 | 2021-12-21T20:54:51 | 2021-12-21T20:54:51 | 192,744,939 | 3 | 1 | MIT | 2019-09-03T14:35:02 | 2019-06-19T14:08:07 | null | UTF-8 | PlantUML | false | false | 986 | plantuml | @startuml
skinparam backgroundcolor transparent
title A mental model on Google Cloud Data Catalog Tag Template and Tag relationship\n
TagTemplate *-- "1..*" TagTemplateField
TagTemplateField *-- FieldType
FieldType o-- PrimitiveType
FieldType *-- EnumType
Tag -> TagTemplate
Tag *-- "1..*" TagField
!startsub MAINCLASSES
class TagTemplate {
-String id
-String displayName
+TagTemplate create()
+TagTemplate get()
+void delete()
}
class Tag {
-String id
-String scope
-String column
+Tag create()
+Tag update()
+Tag delete()
+Tag[] list()
}
class TagField {
-Boolean boolValue
-Double doubleValue
-String stringValue
-Timestamp timestampValue
-String enumValue
}
!endsub
class TagTemplateField {
-String displayName
+TagTemplateField create()
+TagTemplateField rename()
+TagTemplateField update()
+void delete()
}
enum PrimitiveType {
BOOL
DOUBLE
STRING
TIMESTAMP
}
class EnumType {
-String[] allowedValues
}
@enduml
| false | true | false | false | class |
ed66ee195a5867bff904ef63e93c0f5cf0a67f4b | 1937460662648a713597714a219fc99a4b341a52 | /src/DanielAssignment5UML.plantuml | d8f1e2244b2b885915c6b241635fb28a5ae0ff0f | [] | no_license | danieldsj/prog78004 | 629e74b2a148d6470ee133c92f8c8518bebd0cf6 | 07e5da0fc206c3ec21cbdca6fd2f824ae5a0aaac | refs/heads/master | 2020-03-16T19:43:58.196807 | 2018-07-04T11:07:04 | 2018-07-04T11:07:04 | 132,929,484 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 541 | plantuml | @startuml
Colorable o-- Square : aggregation
GeometricObject o-- Square : aggregation
DanielAssignment5 --- GeometricObject : association
DanielAssignment5 --- Square : association
DanielAssignment5 --- Colorable : association
interface Colorable {
{abstract} howToColor()
}
abstract class GeometricObject {
{abstract} getArea()
}
class Square {
- width : double
- height : double
Square() : void
+ getArea() : double
+ howToColor() : void
}
class DanielAssignment5 {
{static} + main() : void
}
@enduml | false | true | false | false | class |
a97ec4274e7eb46cc6c37d71cd32addf13b3f21e | 94e97ae339bc000b35437c3c12b268365fe464fe | /src/main/java/ex43/ex43uml.puml | 3dc9dc27cc39c38270ec06fff1a8ac4fbd7408d8 | [] | no_license | ko815770/Niyamabha-cop3330-assignment3 | d5ddc8881f9d509cf606dc1a308d0277d76eb141 | b3b715ddc5541ec46b7080e61c24375f497ab0bc | refs/heads/master | 2023-08-24T11:11:42.314333 | 2021-10-11T20:08:36 | 2021-10-11T20:08:36 | 416,070,763 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 198 | puml | @startuml
class App {
main()
website web
}
class parseData {
String name, author
Char Java, Css
set()
get()
makeweb(name, author, Java, Css)
}
app <-- parseData
@enduml | false | true | false | false | class |
89b18dc3a8c7cfb965a8e5d54425d8a539de90d3 | 462b9598f08a48ab835f0b189d4d344560965227 | /src/main/java/csheets/worklog/n1120035/sprint2/ExportXml_Analysis_01.puml | a588f7deb228d06c5e3e2ee1b4da459ff176224f | [] | no_license | VitorMascarenhas/LAPR4-2016 | 19f5593b98b81763f77021fb04278ed231337028 | e53a5a46c0e09fbc155fb91f2010d50532de85d2 | refs/heads/master | 2020-03-19T10:31:05.321699 | 2018-06-06T19:49:19 | 2018-06-06T19:49:19 | 136,027,190 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 583 | puml | @startuml doc-files/ExportXML_Analysis_01.png
actor User
participant "<<analysis>>\nExportXmlUI" as UI
participant "<<analysis>>\nExportXmlCtrl" as ctrl
participant "<<analysis>>\nCreateFile" as srv
participant "<<analysis>>\nFileType" as type
participant "<<analysis>>\nToXml" as file
User -> UI : run()
UI -> ctrl : run()
ctrl -> srv : List<SpreadSheets> convertData(WorkBook)
ctrl -> type : new FileType()
type -> file : new file
file -> ctrl : String[] allBytes()
ctrl -> srv : create(String name, String bytes)
ctrl -> UR : return()
@enduml
| false | true | false | false | usecase |
8f878e3baeae627d44f787323743f3f17debaa1b | a08d18fffd5657f2eea3307191d3e5159398ee16 | /src/PaooGame/GameWindow/GameWindow.plantuml | d19caa545994d5a84cf653af4048036f45f4ae66 | [] | no_license | raducornea/Joc-PAOO | 9436b9b0e74af3020d746fe9400828cd17e9aaae | 1f597ba2db22d662c624f7c0329727539e81fe04 | refs/heads/master | 2023-07-30T12:00:36.361135 | 2021-09-19T07:10:59 | 2021-09-19T07:10:59 | 408,056,883 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 668 | plantuml | @startuml
title __GAMEWINDOW's Class Diagram__\n
namespace PaooGame {
namespace GameWindow {
class PaooGame.GameWindow.GameWindow {
- canvas : Canvas
- wndFrame : JFrame
- wndHeight : int
- wndTitle : String
- wndWidth : int
+ BuildGameWindow()
+ GameWindow()
+ GetCanvas()
+ GetWndFrame()
+ GetWndHeight()
+ GetWndWidth()
}
}
}
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
77dfe2c9b82fceefb71db0a8d887ab7195b722a2 | 4e66b60562009e54e3249595d08d88573c1d7fba | /plantuml/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator.puml | a7192d6b9b30a7fb30adb2b8de570b72f593aef5 | [
"MIT"
] | permissive | pierre3/PlantUmlClassDiagramGenerator | a17a7ec5e3b547b0a9d5afee1d74436c6d602782 | 00bd84d543a14f05c95857426060e677c4668cc8 | refs/heads/master | 2023-07-06T01:15:15.436366 | 2023-05-31T13:39:56 | 2023-06-02T10:24:02 | 41,860,665 | 598 | 123 | MIT | 2023-08-20T06:56:51 | 2015-09-03T13:17:42 | C# | UTF-8 | PlantUML | false | false | 1,198 | puml | @startuml
class ClassDiagramGenerator {
+ ClassDiagramGenerator(writer:TextWriter, indent:string, ignoreMemberAccessibilities:Accessibilities, createAssociation:bool)
+ Generate(root:SyntaxNode) : void
+ GenerateInternal(root:SyntaxNode) : void
+ <<override>> VisitInterfaceDeclaration(node:InterfaceDeclarationSyntax) : void
+ <<override>> VisitClassDeclaration(node:ClassDeclarationSyntax) : void
+ <<override>> VisitStructDeclaration(node:StructDeclarationSyntax) : void
+ <<override>> VisitEnumDeclaration(node:EnumDeclarationSyntax) : void
+ <<override>> VisitConstructorDeclaration(node:ConstructorDeclarationSyntax) : void
+ <<override>> VisitFieldDeclaration(node:FieldDeclarationSyntax) : void
+ <<override>> VisitPropertyDeclaration(node:PropertyDeclarationSyntax) : void
+ <<override>> VisitMethodDeclaration(node:MethodDeclarationSyntax) : void
+ <<override>> VisitEnumMemberDeclaration(node:EnumMemberDeclarationSyntax) : void
+ <<override>> VisitEventFieldDeclaration(node:EventFieldDeclarationSyntax) : void
+ <<override>> VisitGenericName(node:GenericNameSyntax) : void
}
CSharpSyntaxWalker <|-- ClassDiagramGenerator
@enduml
| false | true | false | false | class |
7564314272269201d7b696269afa25759fc324c1 | 6631f2c7a4b3fcde26546ab707faf8a2fa56b160 | /app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/raywenderlich/android/imet/imet.plantuml | e609e8d641708223334e7e8fb9c1b05549efdc63 | [] | no_license | DeniE46/iMet-raywenderlich- | a051175bbb549f111f6597e0cd9d4f8064ad14c9 | 698820ae72707421f5febaa4987428a258153660 | refs/heads/master | 2020-04-10T21:44:21.743382 | 2019-05-17T10:02:18 | 2019-05-17T10:02:18 | 161,305,177 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 125,257 | plantuml | @startuml
title __IMET's Class Diagram__\n
package com.raywenderlich.android.imet {
class R {
}
}
package com.raywenderlich.android.imet {
class anim {
{static} + abc_fade_in : int
{static} + abc_fade_out : int
{static} + abc_grow_fade_in_from_bottom : int
{static} + abc_popup_enter : int
{static} + abc_popup_exit : int
{static} + abc_shrink_fade_out_from_bottom : int
{static} + abc_slide_in_bottom : int
{static} + abc_slide_in_top : int
{static} + abc_slide_out_bottom : int
{static} + abc_slide_out_top : int
{static} + abc_tooltip_enter : int
{static} + abc_tooltip_exit : int
{static} + design_bottom_sheet_slide_in : int
{static} + design_bottom_sheet_slide_out : int
{static} + design_snackbar_in : int
{static} + design_snackbar_out : int
{static} + nav_default_enter_anim : int
{static} + nav_default_exit_anim : int
{static} + nav_default_pop_enter_anim : int
{static} + nav_default_pop_exit_anim : int
}
}
package com.raywenderlich.android.imet {
class animator {
{static} + design_appbar_state_list_animator : int
}
}
package com.raywenderlich.android.imet {
class attr {
{static} + action : int
{static} + actionBarDivider : int
{static} + actionBarItemBackground : int
{static} + actionBarPopupTheme : int
{static} + actionBarSize : int
{static} + actionBarSplitStyle : int
{static} + actionBarStyle : int
{static} + actionBarTabBarStyle : int
{static} + actionBarTabStyle : int
{static} + actionBarTabTextStyle : int
{static} + actionBarTheme : int
{static} + actionBarWidgetTheme : int
{static} + actionButtonStyle : int
{static} + actionDropDownStyle : int
{static} + actionLayout : int
{static} + actionMenuTextAppearance : int
{static} + actionMenuTextColor : int
{static} + actionModeBackground : int
{static} + actionModeCloseButtonStyle : int
{static} + actionModeCloseDrawable : int
{static} + actionModeCopyDrawable : int
{static} + actionModeCutDrawable : int
{static} + actionModeFindDrawable : int
{static} + actionModePasteDrawable : int
{static} + actionModePopupWindowStyle : int
{static} + actionModeSelectAllDrawable : int
{static} + actionModeShareDrawable : int
{static} + actionModeSplitBackground : int
{static} + actionModeStyle : int
{static} + actionModeWebSearchDrawable : int
{static} + actionOverflowButtonStyle : int
{static} + actionOverflowMenuStyle : int
{static} + actionProviderClass : int
{static} + actionViewClass : int
{static} + activityChooserViewStyle : int
{static} + alertDialogButtonGroupStyle : int
{static} + alertDialogCenterButtons : int
{static} + alertDialogStyle : int
{static} + alertDialogTheme : int
{static} + allowStacking : int
{static} + alpha : int
{static} + alphabeticModifiers : int
{static} + argType : int
{static} + arrowHeadLength : int
{static} + arrowShaftLength : int
{static} + autoCompleteTextViewStyle : int
{static} + autoSizeMaxTextSize : int
{static} + autoSizeMinTextSize : int
{static} + autoSizePresetSizes : int
{static} + autoSizeStepGranularity : int
{static} + autoSizeTextType : int
{static} + background : int
{static} + backgroundSplit : int
{static} + backgroundStacked : int
{static} + backgroundTint : int
{static} + backgroundTintMode : int
{static} + barLength : int
{static} + barrierAllowsGoneWidgets : int
{static} + barrierDirection : int
{static} + behavior_autoHide : int
{static} + behavior_hideable : int
{static} + behavior_overlapTop : int
{static} + behavior_peekHeight : int
{static} + behavior_skipCollapsed : int
{static} + borderWidth : int
{static} + borderlessButtonStyle : int
{static} + bottomSheetDialogTheme : int
{static} + bottomSheetStyle : int
{static} + buttonBarButtonStyle : int
{static} + buttonBarNegativeButtonStyle : int
{static} + buttonBarNeutralButtonStyle : int
{static} + buttonBarPositiveButtonStyle : int
{static} + buttonBarStyle : int
{static} + buttonGravity : int
{static} + buttonIconDimen : int
{static} + buttonPanelSideLayout : int
{static} + buttonStyle : int
{static} + buttonStyleSmall : int
{static} + buttonTint : int
{static} + buttonTintMode : int
{static} + cardBackgroundColor : int
{static} + cardCornerRadius : int
{static} + cardElevation : int
{static} + cardMaxElevation : int
{static} + cardPreventCornerOverlap : int
{static} + cardUseCompatPadding : int
{static} + cardViewStyle : int
{static} + chainUseRtl : int
{static} + checkboxStyle : int
{static} + checkedTextViewStyle : int
{static} + clearTask : int
{static} + closeIcon : int
{static} + closeItemLayout : int
{static} + collapseContentDescription : int
{static} + collapseIcon : int
{static} + collapsedTitleGravity : int
{static} + collapsedTitleTextAppearance : int
{static} + color : int
{static} + colorAccent : int
{static} + colorBackgroundFloating : int
{static} + colorButtonNormal : int
{static} + colorControlActivated : int
{static} + colorControlHighlight : int
{static} + colorControlNormal : int
{static} + colorError : int
{static} + colorPrimary : int
{static} + colorPrimaryDark : int
{static} + colorSwitchThumbNormal : int
{static} + commitIcon : int
{static} + constraintSet : int
{static} + constraint_referenced_ids : int
{static} + content : int
{static} + contentDescription : int
{static} + contentInsetEnd : int
{static} + contentInsetEndWithActions : int
{static} + contentInsetLeft : int
{static} + contentInsetRight : int
{static} + contentInsetStart : int
{static} + contentInsetStartWithNavigation : int
{static} + contentPadding : int
{static} + contentPaddingBottom : int
{static} + contentPaddingLeft : int
{static} + contentPaddingRight : int
{static} + contentPaddingTop : int
{static} + contentScrim : int
{static} + controlBackground : int
{static} + coordinatorLayoutStyle : int
{static} + counterEnabled : int
{static} + counterMaxLength : int
{static} + counterOverflowTextAppearance : int
{static} + counterTextAppearance : int
{static} + customNavigationLayout : int
{static} + data : int
{static} + dataPattern : int
{static} + defaultNavHost : int
{static} + defaultQueryHint : int
{static} + destination : int
{static} + dialogPreferredPadding : int
{static} + dialogTheme : int
{static} + displayOptions : int
{static} + divider : int
{static} + dividerHorizontal : int
{static} + dividerPadding : int
{static} + dividerVertical : int
{static} + drawableSize : int
{static} + drawerArrowStyle : int
{static} + dropDownListViewStyle : int
{static} + dropdownListPreferredItemHeight : int
{static} + editTextBackground : int
{static} + editTextColor : int
{static} + editTextStyle : int
{static} + elevation : int
{static} + emptyVisibility : int
{static} + enterAnim : int
{static} + errorEnabled : int
{static} + errorTextAppearance : int
{static} + exitAnim : int
{static} + expandActivityOverflowButtonDrawable : int
{static} + expanded : int
{static} + expandedTitleGravity : int
{static} + expandedTitleMargin : int
{static} + expandedTitleMarginBottom : int
{static} + expandedTitleMarginEnd : int
{static} + expandedTitleMarginStart : int
{static} + expandedTitleMarginTop : int
{static} + expandedTitleTextAppearance : int
{static} + fabCustomSize : int
{static} + fabSize : int
{static} + fastScrollEnabled : int
{static} + fastScrollHorizontalThumbDrawable : int
{static} + fastScrollHorizontalTrackDrawable : int
{static} + fastScrollVerticalThumbDrawable : int
{static} + fastScrollVerticalTrackDrawable : int
{static} + font : int
{static} + fontFamily : int
{static} + fontProviderAuthority : int
{static} + fontProviderCerts : int
{static} + fontProviderFetchStrategy : int
{static} + fontProviderFetchTimeout : int
{static} + fontProviderPackage : int
{static} + fontProviderQuery : int
{static} + fontStyle : int
{static} + fontWeight : int
{static} + foregroundInsidePadding : int
{static} + gapBetweenBars : int
{static} + goIcon : int
{static} + graph : int
{static} + headerLayout : int
{static} + height : int
{static} + hideOnContentScroll : int
{static} + hintAnimationEnabled : int
{static} + hintEnabled : int
{static} + hintTextAppearance : int
{static} + homeAsUpIndicator : int
{static} + homeLayout : int
{static} + icon : int
{static} + iconTint : int
{static} + iconTintMode : int
{static} + iconifiedByDefault : int
{static} + imageButtonStyle : int
{static} + indeterminateProgressStyle : int
{static} + initialActivityCount : int
{static} + insetForeground : int
{static} + isLightTheme : int
{static} + itemBackground : int
{static} + itemIconTint : int
{static} + itemPadding : int
{static} + itemTextAppearance : int
{static} + itemTextColor : int
{static} + keylines : int
{static} + launchDocument : int
{static} + launchSingleTop : int
{static} + layout : int
{static} + layoutManager : int
{static} + layout_anchor : int
{static} + layout_anchorGravity : int
{static} + layout_behavior : int
{static} + layout_collapseMode : int
{static} + layout_collapseParallaxMultiplier : int
{static} + layout_constrainedHeight : int
{static} + layout_constrainedWidth : int
{static} + layout_constraintBaseline_creator : int
{static} + layout_constraintBaseline_toBaselineOf : int
{static} + layout_constraintBottom_creator : int
{static} + layout_constraintBottom_toBottomOf : int
{static} + layout_constraintBottom_toTopOf : int
{static} + layout_constraintCircle : int
{static} + layout_constraintCircleAngle : int
{static} + layout_constraintCircleRadius : int
{static} + layout_constraintDimensionRatio : int
{static} + layout_constraintEnd_toEndOf : int
{static} + layout_constraintEnd_toStartOf : int
{static} + layout_constraintGuide_begin : int
{static} + layout_constraintGuide_end : int
{static} + layout_constraintGuide_percent : int
{static} + layout_constraintHeight_default : int
{static} + layout_constraintHeight_max : int
{static} + layout_constraintHeight_min : int
{static} + layout_constraintHeight_percent : int
{static} + layout_constraintHorizontal_bias : int
{static} + layout_constraintHorizontal_chainStyle : int
{static} + layout_constraintHorizontal_weight : int
{static} + layout_constraintLeft_creator : int
{static} + layout_constraintLeft_toLeftOf : int
{static} + layout_constraintLeft_toRightOf : int
{static} + layout_constraintRight_creator : int
{static} + layout_constraintRight_toLeftOf : int
{static} + layout_constraintRight_toRightOf : int
{static} + layout_constraintStart_toEndOf : int
{static} + layout_constraintStart_toStartOf : int
{static} + layout_constraintTop_creator : int
{static} + layout_constraintTop_toBottomOf : int
{static} + layout_constraintTop_toTopOf : int
{static} + layout_constraintVertical_bias : int
{static} + layout_constraintVertical_chainStyle : int
{static} + layout_constraintVertical_weight : int
{static} + layout_constraintWidth_default : int
{static} + layout_constraintWidth_max : int
{static} + layout_constraintWidth_min : int
{static} + layout_constraintWidth_percent : int
{static} + layout_dodgeInsetEdges : int
{static} + layout_editor_absoluteX : int
{static} + layout_editor_absoluteY : int
{static} + layout_goneMarginBottom : int
{static} + layout_goneMarginEnd : int
{static} + layout_goneMarginLeft : int
{static} + layout_goneMarginRight : int
{static} + layout_goneMarginStart : int
{static} + layout_goneMarginTop : int
{static} + layout_insetEdge : int
{static} + layout_keyline : int
{static} + layout_optimizationLevel : int
{static} + layout_scrollFlags : int
{static} + layout_scrollInterpolator : int
{static} + listChoiceBackgroundIndicator : int
{static} + listDividerAlertDialog : int
{static} + listItemLayout : int
{static} + listLayout : int
{static} + listMenuViewStyle : int
{static} + listPopupWindowStyle : int
{static} + listPreferredItemHeight : int
{static} + listPreferredItemHeightLarge : int
{static} + listPreferredItemHeightSmall : int
{static} + listPreferredItemPaddingLeft : int
{static} + listPreferredItemPaddingRight : int
{static} + logo : int
{static} + logoDescription : int
{static} + maxActionInlineWidth : int
{static} + maxButtonHeight : int
{static} + measureWithLargestChild : int
{static} + menu : int
{static} + multiChoiceItemLayout : int
{static} + navGraph : int
{static} + navigationContentDescription : int
{static} + navigationIcon : int
{static} + navigationMode : int
{static} + nullable : int
{static} + numericModifiers : int
{static} + overlapAnchor : int
{static} + paddingBottomNoButtons : int
{static} + paddingEnd : int
{static} + paddingStart : int
{static} + paddingTopNoTitle : int
{static} + panelBackground : int
{static} + panelMenuListTheme : int
{static} + panelMenuListWidth : int
{static} + passwordToggleContentDescription : int
{static} + passwordToggleDrawable : int
{static} + passwordToggleEnabled : int
{static} + passwordToggleTint : int
{static} + passwordToggleTintMode : int
{static} + popEnterAnim : int
{static} + popExitAnim : int
{static} + popUpTo : int
{static} + popUpToInclusive : int
{static} + popupMenuStyle : int
{static} + popupTheme : int
{static} + popupWindowStyle : int
{static} + preserveIconSpacing : int
{static} + pressedTranslationZ : int
{static} + progressBarPadding : int
{static} + progressBarStyle : int
{static} + queryBackground : int
{static} + queryHint : int
{static} + radioButtonStyle : int
{static} + ratingBarStyle : int
{static} + ratingBarStyleIndicator : int
{static} + ratingBarStyleSmall : int
{static} + reverseLayout : int
{static} + rippleColor : int
{static} + scrimAnimationDuration : int
{static} + scrimVisibleHeightTrigger : int
{static} + searchHintIcon : int
{static} + searchIcon : int
{static} + searchViewStyle : int
{static} + seekBarStyle : int
{static} + selectableItemBackground : int
{static} + selectableItemBackgroundBorderless : int
{static} + showAsAction : int
{static} + showDividers : int
{static} + showText : int
{static} + showTitle : int
{static} + singleChoiceItemLayout : int
{static} + spanCount : int
{static} + spinBars : int
{static} + spinnerDropDownItemStyle : int
{static} + spinnerStyle : int
{static} + splitTrack : int
{static} + srcCompat : int
{static} + stackFromEnd : int
{static} + startDestination : int
{static} + state_above_anchor : int
{static} + state_collapsed : int
{static} + state_collapsible : int
{static} + statusBarBackground : int
{static} + statusBarScrim : int
{static} + subMenuArrow : int
{static} + submitBackground : int
{static} + subtitle : int
{static} + subtitleTextAppearance : int
{static} + subtitleTextColor : int
{static} + subtitleTextStyle : int
{static} + suggestionRowLayout : int
{static} + switchMinWidth : int
{static} + switchPadding : int
{static} + switchStyle : int
{static} + switchTextAppearance : int
{static} + tabBackground : int
{static} + tabContentStart : int
{static} + tabGravity : int
{static} + tabIndicatorColor : int
{static} + tabIndicatorHeight : int
{static} + tabMaxWidth : int
{static} + tabMinWidth : int
{static} + tabMode : int
{static} + tabPadding : int
{static} + tabPaddingBottom : int
{static} + tabPaddingEnd : int
{static} + tabPaddingStart : int
{static} + tabPaddingTop : int
{static} + tabSelectedTextColor : int
{static} + tabTextAppearance : int
{static} + tabTextColor : int
{static} + textAllCaps : int
{static} + textAppearanceLargePopupMenu : int
{static} + textAppearanceListItem : int
{static} + textAppearanceListItemSecondary : int
{static} + textAppearanceListItemSmall : int
{static} + textAppearancePopupMenuHeader : int
{static} + textAppearanceSearchResultSubtitle : int
{static} + textAppearanceSearchResultTitle : int
{static} + textAppearanceSmallPopupMenu : int
{static} + textColorAlertDialogListItem : int
{static} + textColorError : int
{static} + textColorSearchUrl : int
{static} + theme : int
{static} + thickness : int
{static} + thumbTextPadding : int
{static} + thumbTint : int
{static} + thumbTintMode : int
{static} + tickMark : int
{static} + tickMarkTint : int
{static} + tickMarkTintMode : int
{static} + tint : int
{static} + tintMode : int
{static} + title : int
{static} + titleEnabled : int
{static} + titleMargin : int
{static} + titleMarginBottom : int
{static} + titleMarginEnd : int
{static} + titleMarginStart : int
{static} + titleMarginTop : int
{static} + titleMargins : int
{static} + titleTextAppearance : int
{static} + titleTextColor : int
{static} + titleTextStyle : int
{static} + toolbarId : int
{static} + toolbarNavigationButtonStyle : int
{static} + toolbarStyle : int
{static} + tooltipForegroundColor : int
{static} + tooltipFrameBackground : int
{static} + tooltipText : int
{static} + track : int
{static} + trackTint : int
{static} + trackTintMode : int
{static} + uri : int
{static} + useCompatPadding : int
{static} + viewInflaterClass : int
{static} + voiceIcon : int
{static} + windowActionBar : int
{static} + windowActionBarOverlay : int
{static} + windowActionModeOverlay : int
{static} + windowFixedHeightMajor : int
{static} + windowFixedHeightMinor : int
{static} + windowFixedWidthMajor : int
{static} + windowFixedWidthMinor : int
{static} + windowMinWidthMajor : int
{static} + windowMinWidthMinor : int
{static} + windowNoTitle : int
}
}
package com.raywenderlich.android.imet {
class bool {
{static} + abc_action_bar_embed_tabs : int
{static} + abc_allow_stacked_button_bar : int
{static} + abc_config_actionMenuItemAllCaps : int
{static} + abc_config_showMenuShortcutsWhenKeyboardPresent : int
}
}
package com.raywenderlich.android.imet {
class color {
{static} + abc_background_cache_hint_selector_material_dark : int
{static} + abc_background_cache_hint_selector_material_light : int
{static} + abc_btn_colored_borderless_text_material : int
{static} + abc_btn_colored_text_material : int
{static} + abc_color_highlight_material : int
{static} + abc_hint_foreground_material_dark : int
{static} + abc_hint_foreground_material_light : int
{static} + abc_input_method_navigation_guard : int
{static} + abc_primary_text_disable_only_material_dark : int
{static} + abc_primary_text_disable_only_material_light : int
{static} + abc_primary_text_material_dark : int
{static} + abc_primary_text_material_light : int
{static} + abc_search_url_text : int
{static} + abc_search_url_text_normal : int
{static} + abc_search_url_text_pressed : int
{static} + abc_search_url_text_selected : int
{static} + abc_secondary_text_material_dark : int
{static} + abc_secondary_text_material_light : int
{static} + abc_tint_btn_checkable : int
{static} + abc_tint_default : int
{static} + abc_tint_edittext : int
{static} + abc_tint_seek_thumb : int
{static} + abc_tint_spinner : int
{static} + abc_tint_switch_track : int
{static} + accent_material_dark : int
{static} + accent_material_light : int
{static} + background_floating_material_dark : int
{static} + background_floating_material_light : int
{static} + background_material_dark : int
{static} + background_material_light : int
{static} + bright_foreground_disabled_material_dark : int
{static} + bright_foreground_disabled_material_light : int
{static} + bright_foreground_inverse_material_dark : int
{static} + bright_foreground_inverse_material_light : int
{static} + bright_foreground_material_dark : int
{static} + bright_foreground_material_light : int
{static} + button_material_dark : int
{static} + button_material_light : int
{static} + cardview_dark_background : int
{static} + cardview_light_background : int
{static} + cardview_shadow_end_color : int
{static} + cardview_shadow_start_color : int
{static} + colorAccent : int
{static} + colorPrimary : int
{static} + colorPrimaryDark : int
{static} + design_bottom_navigation_shadow_color : int
{static} + design_error : int
{static} + design_fab_shadow_end_color : int
{static} + design_fab_shadow_mid_color : int
{static} + design_fab_shadow_start_color : int
{static} + design_fab_stroke_end_inner_color : int
{static} + design_fab_stroke_end_outer_color : int
{static} + design_fab_stroke_top_inner_color : int
{static} + design_fab_stroke_top_outer_color : int
{static} + design_snackbar_background_color : int
{static} + design_tint_password_toggle : int
{static} + dim_foreground_disabled_material_dark : int
{static} + dim_foreground_disabled_material_light : int
{static} + dim_foreground_material_dark : int
{static} + dim_foreground_material_light : int
{static} + error_color_material : int
{static} + foreground_material_dark : int
{static} + foreground_material_light : int
{static} + highlighted_text_material_dark : int
{static} + highlighted_text_material_light : int
{static} + material_blue_grey_800 : int
{static} + material_blue_grey_900 : int
{static} + material_blue_grey_950 : int
{static} + material_deep_teal_200 : int
{static} + material_deep_teal_500 : int
{static} + material_grey_100 : int
{static} + material_grey_300 : int
{static} + material_grey_50 : int
{static} + material_grey_600 : int
{static} + material_grey_800 : int
{static} + material_grey_850 : int
{static} + material_grey_900 : int
{static} + notification_action_color_filter : int
{static} + notification_icon_bg_color : int
{static} + notification_material_background_media_default_color : int
{static} + primary_dark_material_dark : int
{static} + primary_dark_material_light : int
{static} + primary_material_dark : int
{static} + primary_material_light : int
{static} + primary_text_default_material_dark : int
{static} + primary_text_default_material_light : int
{static} + primary_text_disabled_material_dark : int
{static} + primary_text_disabled_material_light : int
{static} + ripple_material_dark : int
{static} + ripple_material_light : int
{static} + secondary_text_default_material_dark : int
{static} + secondary_text_default_material_light : int
{static} + secondary_text_disabled_material_dark : int
{static} + secondary_text_disabled_material_light : int
{static} + switch_thumb_disabled_material_dark : int
{static} + switch_thumb_disabled_material_light : int
{static} + switch_thumb_material_dark : int
{static} + switch_thumb_material_light : int
{static} + switch_thumb_normal_material_dark : int
{static} + switch_thumb_normal_material_light : int
{static} + tooltip_background_dark : int
{static} + tooltip_background_light : int
}
}
package com.raywenderlich.android.imet {
class dimen {
{static} + abc_action_bar_content_inset_material : int
{static} + abc_action_bar_content_inset_with_nav : int
{static} + abc_action_bar_default_height_material : int
{static} + abc_action_bar_default_padding_end_material : int
{static} + abc_action_bar_default_padding_start_material : int
{static} + abc_action_bar_elevation_material : int
{static} + abc_action_bar_icon_vertical_padding_material : int
{static} + abc_action_bar_overflow_padding_end_material : int
{static} + abc_action_bar_overflow_padding_start_material : int
{static} + abc_action_bar_progress_bar_size : int
{static} + abc_action_bar_stacked_max_height : int
{static} + abc_action_bar_stacked_tab_max_width : int
{static} + abc_action_bar_subtitle_bottom_margin_material : int
{static} + abc_action_bar_subtitle_top_margin_material : int
{static} + abc_action_button_min_height_material : int
{static} + abc_action_button_min_width_material : int
{static} + abc_action_button_min_width_overflow_material : int
{static} + abc_alert_dialog_button_bar_height : int
{static} + abc_alert_dialog_button_dimen : int
{static} + abc_button_inset_horizontal_material : int
{static} + abc_button_inset_vertical_material : int
{static} + abc_button_padding_horizontal_material : int
{static} + abc_button_padding_vertical_material : int
{static} + abc_cascading_menus_min_smallest_width : int
{static} + abc_config_prefDialogWidth : int
{static} + abc_control_corner_material : int
{static} + abc_control_inset_material : int
{static} + abc_control_padding_material : int
{static} + abc_dialog_fixed_height_major : int
{static} + abc_dialog_fixed_height_minor : int
{static} + abc_dialog_fixed_width_major : int
{static} + abc_dialog_fixed_width_minor : int
{static} + abc_dialog_list_padding_bottom_no_buttons : int
{static} + abc_dialog_list_padding_top_no_title : int
{static} + abc_dialog_min_width_major : int
{static} + abc_dialog_min_width_minor : int
{static} + abc_dialog_padding_material : int
{static} + abc_dialog_padding_top_material : int
{static} + abc_dialog_title_divider_material : int
{static} + abc_disabled_alpha_material_dark : int
{static} + abc_disabled_alpha_material_light : int
{static} + abc_dropdownitem_icon_width : int
{static} + abc_dropdownitem_text_padding_left : int
{static} + abc_dropdownitem_text_padding_right : int
{static} + abc_edit_text_inset_bottom_material : int
{static} + abc_edit_text_inset_horizontal_material : int
{static} + abc_edit_text_inset_top_material : int
{static} + abc_floating_window_z : int
{static} + abc_list_item_padding_horizontal_material : int
{static} + abc_panel_menu_list_width : int
{static} + abc_progress_bar_height_material : int
{static} + abc_search_view_preferred_height : int
{static} + abc_search_view_preferred_width : int
{static} + abc_seekbar_track_background_height_material : int
{static} + abc_seekbar_track_progress_height_material : int
{static} + abc_select_dialog_padding_start_material : int
{static} + abc_switch_padding : int
{static} + abc_text_size_body_1_material : int
{static} + abc_text_size_body_2_material : int
{static} + abc_text_size_button_material : int
{static} + abc_text_size_caption_material : int
{static} + abc_text_size_display_1_material : int
{static} + abc_text_size_display_2_material : int
{static} + abc_text_size_display_3_material : int
{static} + abc_text_size_display_4_material : int
{static} + abc_text_size_headline_material : int
{static} + abc_text_size_large_material : int
{static} + abc_text_size_medium_material : int
{static} + abc_text_size_menu_header_material : int
{static} + abc_text_size_menu_material : int
{static} + abc_text_size_small_material : int
{static} + abc_text_size_subhead_material : int
{static} + abc_text_size_subtitle_material_toolbar : int
{static} + abc_text_size_title_material : int
{static} + abc_text_size_title_material_toolbar : int
{static} + app_bar_height : int
{static} + cardview_compat_inset_shadow : int
{static} + cardview_default_elevation : int
{static} + cardview_default_radius : int
{static} + category_title_padding : int
{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} + default_margin : int
{static} + default_padding : int
{static} + design_appbar_elevation : int
{static} + design_bottom_navigation_active_item_max_width : int
{static} + design_bottom_navigation_active_text_size : int
{static} + design_bottom_navigation_elevation : int
{static} + design_bottom_navigation_height : int
{static} + design_bottom_navigation_item_max_width : int
{static} + design_bottom_navigation_item_min_width : int
{static} + design_bottom_navigation_margin : int
{static} + design_bottom_navigation_shadow_height : int
{static} + design_bottom_navigation_text_size : int
{static} + design_bottom_sheet_modal_elevation : int
{static} + design_bottom_sheet_peek_height_min : int
{static} + design_fab_border_width : int
{static} + design_fab_elevation : int
{static} + design_fab_image_size : int
{static} + design_fab_size_mini : int
{static} + design_fab_size_normal : int
{static} + design_fab_translation_z_pressed : int
{static} + design_navigation_elevation : int
{static} + design_navigation_icon_padding : int
{static} + design_navigation_icon_size : int
{static} + design_navigation_max_width : int
{static} + design_navigation_padding_bottom : int
{static} + design_navigation_separator_vertical_padding : int
{static} + design_snackbar_action_inline_max_width : int
{static} + design_snackbar_background_corner_radius : int
{static} + design_snackbar_elevation : int
{static} + design_snackbar_extra_spacing_horizontal : int
{static} + design_snackbar_max_width : int
{static} + design_snackbar_min_width : int
{static} + design_snackbar_padding_horizontal : int
{static} + design_snackbar_padding_vertical : int
{static} + design_snackbar_padding_vertical_2lines : int
{static} + design_snackbar_text_size : int
{static} + design_tab_max_width : int
{static} + design_tab_scrollable_min_width : int
{static} + design_tab_text_size : int
{static} + design_tab_text_size_2line : int
{static} + disabled_alpha_material_dark : int
{static} + disabled_alpha_material_light : int
{static} + drawable_padding : int
{static} + fab_margin : int
{static} + fastscroll_default_thickness : int
{static} + fastscroll_margin : int
{static} + fastscroll_minimum_range : int
{static} + highlight_alpha_material_colored : int
{static} + highlight_alpha_material_dark : int
{static} + highlight_alpha_material_light : int
{static} + hint_alpha_material_dark : int
{static} + hint_alpha_material_light : int
{static} + hint_pressed_alpha_material_dark : int
{static} + hint_pressed_alpha_material_light : int
{static} + item_touch_helper_max_drag_scroll_per_frame : int
{static} + item_touch_helper_swipe_escape_max_velocity : int
{static} + item_touch_helper_swipe_escape_velocity : int
{static} + notification_action_icon_size : int
{static} + notification_action_text_size : int
{static} + notification_big_circle_margin : int
{static} + notification_content_margin_start : int
{static} + notification_large_icon_height : int
{static} + notification_large_icon_width : int
{static} + notification_main_column_padding_top : int
{static} + notification_media_narrow_margin : int
{static} + notification_right_icon_size : int
{static} + notification_right_side_padding_top : int
{static} + notification_small_icon_background_padding : int
{static} + notification_small_icon_size_as_large : int
{static} + notification_subtext_size : int
{static} + notification_top_pad : int
{static} + notification_top_pad_large_text : int
{static} + profile_image_size : int
{static} + text_margin : int
{static} + tooltip_corner_radius : int
{static} + tooltip_horizontal_padding : int
{static} + tooltip_margin : int
{static} + tooltip_precise_anchor_extra_offset : int
{static} + tooltip_precise_anchor_threshold : int
{static} + tooltip_vertical_padding : int
{static} + tooltip_y_offset_non_touch : int
{static} + tooltip_y_offset_touch : int
}
}
package com.raywenderlich.android.imet {
class drawable {
{static} + abc_ab_share_pack_mtrl_alpha : int
{static} + abc_action_bar_item_background_material : int
{static} + abc_btn_borderless_material : int
{static} + abc_btn_check_material : int
{static} + abc_btn_check_to_on_mtrl_000 : int
{static} + abc_btn_check_to_on_mtrl_015 : int
{static} + abc_btn_colored_material : int
{static} + abc_btn_default_mtrl_shape : int
{static} + abc_btn_radio_material : int
{static} + abc_btn_radio_to_on_mtrl_000 : int
{static} + abc_btn_radio_to_on_mtrl_015 : int
{static} + abc_btn_switch_to_on_mtrl_00001 : int
{static} + abc_btn_switch_to_on_mtrl_00012 : int
{static} + abc_cab_background_internal_bg : int
{static} + abc_cab_background_top_material : int
{static} + abc_cab_background_top_mtrl_alpha : int
{static} + abc_control_background_material : int
{static} + abc_dialog_material_background : int
{static} + abc_edit_text_material : int
{static} + abc_ic_ab_back_material : int
{static} + abc_ic_arrow_drop_right_black_24dp : int
{static} + abc_ic_clear_material : int
{static} + abc_ic_commit_search_api_mtrl_alpha : int
{static} + abc_ic_go_search_api_material : int
{static} + abc_ic_menu_copy_mtrl_am_alpha : int
{static} + abc_ic_menu_cut_mtrl_alpha : int
{static} + abc_ic_menu_overflow_material : int
{static} + abc_ic_menu_paste_mtrl_am_alpha : int
{static} + abc_ic_menu_selectall_mtrl_alpha : int
{static} + abc_ic_menu_share_mtrl_alpha : int
{static} + abc_ic_search_api_material : int
{static} + abc_ic_star_black_16dp : int
{static} + abc_ic_star_black_36dp : int
{static} + abc_ic_star_black_48dp : int
{static} + abc_ic_star_half_black_16dp : int
{static} + abc_ic_star_half_black_36dp : int
{static} + abc_ic_star_half_black_48dp : int
{static} + abc_ic_voice_search_api_material : int
{static} + abc_item_background_holo_dark : int
{static} + abc_item_background_holo_light : int
{static} + abc_list_divider_mtrl_alpha : int
{static} + abc_list_focused_holo : int
{static} + abc_list_longpressed_holo : int
{static} + abc_list_pressed_holo_dark : int
{static} + abc_list_pressed_holo_light : int
{static} + abc_list_selector_background_transition_holo_dark : int
{static} + abc_list_selector_background_transition_holo_light : int
{static} + abc_list_selector_disabled_holo_dark : int
{static} + abc_list_selector_disabled_holo_light : int
{static} + abc_list_selector_holo_dark : int
{static} + abc_list_selector_holo_light : int
{static} + abc_menu_hardkey_panel_mtrl_mult : int
{static} + abc_popup_background_mtrl_mult : int
{static} + abc_ratingbar_indicator_material : int
{static} + abc_ratingbar_material : int
{static} + abc_ratingbar_small_material : int
{static} + abc_scrubber_control_off_mtrl_alpha : int
{static} + abc_scrubber_control_to_pressed_mtrl_000 : int
{static} + abc_scrubber_control_to_pressed_mtrl_005 : int
{static} + abc_scrubber_primary_mtrl_alpha : int
{static} + abc_scrubber_track_mtrl_alpha : int
{static} + abc_seekbar_thumb_material : int
{static} + abc_seekbar_tick_mark_material : int
{static} + abc_seekbar_track_material : int
{static} + abc_spinner_mtrl_am_alpha : int
{static} + abc_spinner_textfield_background_material : int
{static} + abc_switch_thumb_material : int
{static} + abc_switch_track_mtrl_alpha : int
{static} + abc_tab_indicator_material : int
{static} + abc_tab_indicator_mtrl_alpha : int
{static} + abc_text_cursor_material : int
{static} + abc_text_select_handle_left_mtrl_dark : int
{static} + abc_text_select_handle_left_mtrl_light : int
{static} + abc_text_select_handle_middle_mtrl_dark : int
{static} + abc_text_select_handle_middle_mtrl_light : int
{static} + abc_text_select_handle_right_mtrl_dark : int
{static} + abc_text_select_handle_right_mtrl_light : int
{static} + abc_textfield_activated_mtrl_alpha : int
{static} + abc_textfield_default_mtrl_alpha : int
{static} + abc_textfield_search_activated_mtrl_alpha : int
{static} + abc_textfield_search_default_mtrl_alpha : int
{static} + abc_textfield_search_material : int
{static} + abc_vector_test : int
{static} + avd_hide_password : int
{static} + avd_show_password : int
{static} + design_bottom_navigation_item_background : int
{static} + design_fab_background : int
{static} + design_ic_visibility : int
{static} + design_ic_visibility_off : int
{static} + design_password_eye : int
{static} + design_snackbar_background : int
{static} + ic_add : int
{static} + ic_contact : int
{static} + ic_facebook : int
{static} + ic_gmail : int
{static} + ic_launcher_background : int
{static} + ic_met_at : int
{static} + ic_profile_image : int
{static} + ic_twitter : int
{static} + navigation_empty_icon : int
{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
{static} + tooltip_frame_dark : int
{static} + tooltip_frame_light : int
}
}
package com.raywenderlich.android.imet {
class id {
{static} + ALT : int
{static} + CTRL : int
{static} + FUNCTION : int
{static} + META : int
{static} + SHIFT : int
{static} + SYM : int
{static} + action0 : int
{static} + action_bar : int
{static} + action_bar_activity_content : int
{static} + action_bar_container : int
{static} + action_bar_root : int
{static} + action_bar_spinner : int
{static} + action_bar_subtitle : int
{static} + action_bar_title : int
{static} + action_container : int
{static} + action_context_bar : int
{static} + action_divider : int
{static} + action_image : int
{static} + action_menu_divider : int
{static} + action_menu_presenter : int
{static} + action_mode_bar : int
{static} + action_mode_bar_stub : int
{static} + action_mode_close_button : int
{static} + action_peoplesListFragment_to_addPeopleFragment : int
{static} + action_peoplesListFragment_to_peopleDetailsFragment : int
{static} + action_text : int
{static} + actions : int
{static} + activity_chooser_view_content : int
{static} + add : int
{static} + addFab : int
{static} + addPeopleFragment : int
{static} + alertTitle : int
{static} + all : int
{static} + always : int
{static} + async : int
{static} + auto : int
{static} + barrier : int
{static} + beginning : int
{static} + blocking : int
{static} + bottom : int
{static} + buttonContact : int
{static} + buttonPanel : int
{static} + cancel_action : int
{static} + center : int
{static} + center_horizontal : int
{static} + center_vertical : int
{static} + chains : int
{static} + checkbox : int
{static} + chronometer : int
{static} + clip_horizontal : int
{static} + clip_vertical : int
{static} + collapseActionView : int
{static} + container : int
{static} + contentPanel : int
{static} + coordinator : int
{static} + custom : int
{static} + customPanel : int
{static} + decor_content_parent : int
{static} + default_activity_button : int
{static} + design_bottom_sheet : int
{static} + design_menu_item_action_area : int
{static} + design_menu_item_action_area_stub : int
{static} + design_menu_item_text : int
{static} + design_navigation_view : int
{static} + dimensions : int
{static} + direct : int
{static} + disableHome : int
{static} + edit_query : int
{static} + end : int
{static} + end_padder : int
{static} + enterAlways : int
{static} + enterAlwaysCollapsed : int
{static} + exitUntilCollapsed : int
{static} + expand_activities_button : int
{static} + expanded_menu : int
{static} + fill : int
{static} + fill_horizontal : int
{static} + fill_vertical : int
{static} + fixed : int
{static} + forever : int
{static} + ghost_view : int
{static} + gone : int
{static} + home : int
{static} + homeAsUp : int
{static} + icon : int
{static} + icon_group : int
{static} + ifRoom : int
{static} + image : int
{static} + imageViewIcon : int
{static} + info : int
{static} + invisible : int
{static} + italic : int
{static} + item_touch_helper_previous_elevation : int
{static} + largeLabel : int
{static} + left : int
{static} + line1 : int
{static} + line3 : int
{static} + listMode : int
{static} + list_item : int
{static} + masked : int
{static} + media_actions : int
{static} + menu_add : int
{static} + menu_search : int
{static} + message : int
{static} + middle : int
{static} + mini : int
{static} + multiply : int
{static} + nav_controller_view_tag : int
{static} + navigationHostFragment : int
{static} + navigation_graph : int
{static} + navigation_header_container : int
{static} + never : int
{static} + none : int
{static} + normal : int
{static} + notification_background : int
{static} + notification_main_column : int
{static} + notification_main_column_container : int
{static} + packed : int
{static} + parallax : int
{static} + parent : int
{static} + parentPanel : int
{static} + parent_matrix : int
{static} + peopleDetailsFragment : int
{static} + peopleRecyclerView : int
{static} + peoplesListFragment : int
{static} + percent : int
{static} + pin : int
{static} + progress_circular : int
{static} + progress_horizontal : int
{static} + radio : int
{static} + right : int
{static} + right_icon : int
{static} + right_side : int
{static} + save_image_matrix : int
{static} + save_non_transition_alpha : int
{static} + save_scale_type : int
{static} + screen : int
{static} + scroll : int
{static} + scrollIndicatorDown : int
{static} + scrollIndicatorUp : int
{static} + scrollView : int
{static} + scrollable : int
{static} + search_badge : int
{static} + search_bar : int
{static} + search_button : int
{static} + search_close_btn : int
{static} + search_edit_frame : int
{static} + search_go_btn : int
{static} + search_mag_icon : int
{static} + search_plate : int
{static} + search_src_text : int
{static} + search_voice_btn : int
{static} + select_dialog_listview : int
{static} + shortcut : int
{static} + showCustom : int
{static} + showHome : int
{static} + showTitle : int
{static} + smallLabel : int
{static} + snackbar_action : int
{static} + snackbar_text : int
{static} + snap : int
{static} + spacer : int
{static} + split_action_bar : int
{static} + spread : int
{static} + spread_inside : int
{static} + src_atop : int
{static} + src_in : int
{static} + src_over : int
{static} + standard : int
{static} + start : int
{static} + status_bar_latest_event_content : int
{static} + submenuarrow : int
{static} + submit_area : int
{static} + tabMode : int
{static} + tag_transition_group : int
{static} + text : int
{static} + text2 : int
{static} + textInputContact : int
{static} + textInputEmail : int
{static} + textInputFacebook : int
{static} + textInputMetAt : int
{static} + textInputName : int
{static} + textInputTwitter : int
{static} + textSpacerNoButtons : int
{static} + textSpacerNoTitle : int
{static} + textViewEmail : int
{static} + textViewFacebook : int
{static} + textViewMet : int
{static} + textViewName : int
{static} + textViewTwitter : int
{static} + text_input_password_toggle : int
{static} + textinput_counter : int
{static} + textinput_error : int
{static} + time : int
{static} + title : int
{static} + titleDividerNoCustom : int
{static} + title_template : int
{static} + top : int
{static} + topPanel : int
{static} + touch_outside : int
{static} + transition_current_scene : int
{static} + transition_layout_save : int
{static} + transition_position : int
{static} + transition_scene_layoutid_cache : int
{static} + transition_transform : int
{static} + uniform : int
{static} + up : int
{static} + useLogo : int
{static} + view_offset_helper : int
{static} + visible : int
{static} + withText : int
{static} + wrap : int
{static} + wrap_content : int
}
}
package com.raywenderlich.android.imet {
class integer {
{static} + abc_config_activityDefaultDur : int
{static} + abc_config_activityShortDur : int
{static} + app_bar_elevation_anim_duration : int
{static} + bottom_sheet_slide_duration : int
{static} + cancel_button_image_alpha : int
{static} + config_tooltipAnimTime : int
{static} + design_snackbar_text_max_lines : int
{static} + hide_password_duration : int
{static} + show_password_duration : int
{static} + status_bar_notification_info_maxnum : int
}
}
package com.raywenderlich.android.imet {
class layout {
{static} + abc_action_bar_title_item : int
{static} + abc_action_bar_up_container : int
{static} + abc_action_menu_item_layout : int
{static} + abc_action_menu_layout : int
{static} + abc_action_mode_bar : int
{static} + abc_action_mode_close_item_material : int
{static} + abc_activity_chooser_view : int
{static} + abc_activity_chooser_view_list_item : int
{static} + abc_alert_dialog_button_bar_material : int
{static} + abc_alert_dialog_material : int
{static} + abc_alert_dialog_title_material : int
{static} + abc_dialog_title_material : int
{static} + abc_expanded_menu_layout : int
{static} + abc_list_menu_item_checkbox : int
{static} + abc_list_menu_item_icon : int
{static} + abc_list_menu_item_layout : int
{static} + abc_list_menu_item_radio : int
{static} + abc_popup_menu_header_item_layout : int
{static} + abc_popup_menu_item_layout : int
{static} + abc_screen_content_include : int
{static} + abc_screen_simple : int
{static} + abc_screen_simple_overlay_action_mode : int
{static} + abc_screen_toolbar : int
{static} + abc_search_dropdown_item_icons_2line : int
{static} + abc_search_view : int
{static} + abc_select_dialog_material : int
{static} + abc_tooltip : int
{static} + activity_main : int
{static} + design_bottom_navigation_item : int
{static} + design_bottom_sheet_dialog : int
{static} + design_layout_snackbar : int
{static} + design_layout_snackbar_include : int
{static} + design_layout_tab_icon : int
{static} + design_layout_tab_text : int
{static} + design_menu_item_action_area : int
{static} + design_navigation_item : int
{static} + design_navigation_item_header : int
{static} + design_navigation_item_separator : int
{static} + design_navigation_item_subheader : int
{static} + design_navigation_menu : int
{static} + design_navigation_menu_item : int
{static} + design_text_input_password_icon : int
{static} + fragment_add_people : int
{static} + fragment_people_details : int
{static} + fragment_peoples_list : int
{static} + layout_list_item : int
{static} + notification_action : int
{static} + notification_action_tombstone : int
{static} + notification_media_action : int
{static} + notification_media_cancel_action : int
{static} + notification_template_big_media : int
{static} + notification_template_big_media_custom : int
{static} + notification_template_big_media_narrow : int
{static} + notification_template_big_media_narrow_custom : int
{static} + notification_template_custom_big : int
{static} + notification_template_icon_group : int
{static} + notification_template_lines_media : int
{static} + notification_template_media : int
{static} + notification_template_media_custom : int
{static} + notification_template_part_chronometer : int
{static} + notification_template_part_time : int
{static} + select_dialog_item_material : int
{static} + select_dialog_multichoice_material : int
{static} + select_dialog_singlechoice_material : int
{static} + support_simple_spinner_dropdown_item : int
}
}
package com.raywenderlich.android.imet {
class menu {
{static} + menu_add_people : int
{static} + menu_peoples_list : int
}
}
package com.raywenderlich.android.imet {
class mipmap {
{static} + ic_launcher : int
}
}
package com.raywenderlich.android.imet {
class navigation {
{static} + navigation_graph : int
}
}
package com.raywenderlich.android.imet {
class string {
{static} + abc_action_bar_home_description : int
{static} + abc_action_bar_up_description : int
{static} + abc_action_menu_overflow_description : int
{static} + abc_action_mode_done : int
{static} + abc_activity_chooser_view_see_all : int
{static} + abc_activitychooserview_choose_application : int
{static} + abc_capital_off : int
{static} + abc_capital_on : int
{static} + abc_font_family_body_1_material : int
{static} + abc_font_family_body_2_material : int
{static} + abc_font_family_button_material : int
{static} + abc_font_family_caption_material : int
{static} + abc_font_family_display_1_material : int
{static} + abc_font_family_display_2_material : int
{static} + abc_font_family_display_3_material : int
{static} + abc_font_family_display_4_material : int
{static} + abc_font_family_headline_material : int
{static} + abc_font_family_menu_material : int
{static} + abc_font_family_subhead_material : int
{static} + abc_font_family_title_material : int
{static} + abc_search_hint : int
{static} + abc_searchview_description_clear : int
{static} + abc_searchview_description_query : int
{static} + abc_searchview_description_search : int
{static} + abc_searchview_description_submit : int
{static} + abc_searchview_description_voice : int
{static} + abc_shareactionprovider_share_with : int
{static} + abc_shareactionprovider_share_with_application : int
{static} + abc_toolbar_collapse_description : int
{static} + add_people : int
{static} + app_name : int
{static} + appbar_scrolling_view_behavior : int
{static} + bottom_sheet_behavior : int
{static} + character_counter_pattern : int
{static} + hint_contact : int
{static} + hint_email : int
{static} + hint_facebook : int
{static} + hint_met_at : int
{static} + hint_name : int
{static} + hint_twitter : int
{static} + password_toggle_content_description : int
{static} + path_password_eye : int
{static} + path_password_eye_mask_strike_through : int
{static} + path_password_eye_mask_visible : int
{static} + path_password_strike_through : int
{static} + people_details : int
{static} + people_id : int
{static} + save : int
{static} + search : int
{static} + search_menu_title : int
{static} + status_bar_notification_info_overflow : int
}
}
package com.raywenderlich.android.imet {
class style {
{static} + AlertDialog_AppCompat : int
{static} + AlertDialog_AppCompat_Light : int
{static} + Animation_AppCompat_Dialog : int
{static} + Animation_AppCompat_DropDownUp : int
{static} + Animation_AppCompat_Tooltip : int
{static} + Animation_Design_BottomSheetDialog : int
{static} + AppTheme : int
{static} + Base_AlertDialog_AppCompat : int
{static} + Base_AlertDialog_AppCompat_Light : int
{static} + Base_Animation_AppCompat_Dialog : int
{static} + Base_Animation_AppCompat_DropDownUp : int
{static} + Base_Animation_AppCompat_Tooltip : int
{static} + Base_CardView : int
{static} + Base_DialogWindowTitle_AppCompat : int
{static} + Base_DialogWindowTitleBackground_AppCompat : int
{static} + Base_TextAppearance_AppCompat : int
{static} + Base_TextAppearance_AppCompat_Body1 : int
{static} + Base_TextAppearance_AppCompat_Body2 : int
{static} + Base_TextAppearance_AppCompat_Button : int
{static} + Base_TextAppearance_AppCompat_Caption : int
{static} + Base_TextAppearance_AppCompat_Display1 : int
{static} + Base_TextAppearance_AppCompat_Display2 : int
{static} + Base_TextAppearance_AppCompat_Display3 : int
{static} + Base_TextAppearance_AppCompat_Display4 : int
{static} + Base_TextAppearance_AppCompat_Headline : int
{static} + Base_TextAppearance_AppCompat_Inverse : int
{static} + Base_TextAppearance_AppCompat_Large : int
{static} + Base_TextAppearance_AppCompat_Large_Inverse : int
{static} + Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large : int
{static} + Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small : int
{static} + Base_TextAppearance_AppCompat_Medium : int
{static} + Base_TextAppearance_AppCompat_Medium_Inverse : int
{static} + Base_TextAppearance_AppCompat_Menu : int
{static} + Base_TextAppearance_AppCompat_SearchResult : int
{static} + Base_TextAppearance_AppCompat_SearchResult_Subtitle : int
{static} + Base_TextAppearance_AppCompat_SearchResult_Title : int
{static} + Base_TextAppearance_AppCompat_Small : int
{static} + Base_TextAppearance_AppCompat_Small_Inverse : int
{static} + Base_TextAppearance_AppCompat_Subhead : int
{static} + Base_TextAppearance_AppCompat_Subhead_Inverse : int
{static} + Base_TextAppearance_AppCompat_Title : int
{static} + Base_TextAppearance_AppCompat_Title_Inverse : int
{static} + Base_TextAppearance_AppCompat_Tooltip : int
{static} + Base_TextAppearance_AppCompat_Widget_ActionBar_Menu : int
{static} + Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle : int
{static} + Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse : int
{static} + Base_TextAppearance_AppCompat_Widget_ActionBar_Title : int
{static} + Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse : int
{static} + Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle : int
{static} + Base_TextAppearance_AppCompat_Widget_ActionMode_Title : int
{static} + Base_TextAppearance_AppCompat_Widget_Button : int
{static} + Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored : int
{static} + Base_TextAppearance_AppCompat_Widget_Button_Colored : int
{static} + Base_TextAppearance_AppCompat_Widget_Button_Inverse : int
{static} + Base_TextAppearance_AppCompat_Widget_DropDownItem : int
{static} + Base_TextAppearance_AppCompat_Widget_PopupMenu_Header : int
{static} + Base_TextAppearance_AppCompat_Widget_PopupMenu_Large : int
{static} + Base_TextAppearance_AppCompat_Widget_PopupMenu_Small : int
{static} + Base_TextAppearance_AppCompat_Widget_Switch : int
{static} + Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem : int
{static} + Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item : int
{static} + Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle : int
{static} + Base_TextAppearance_Widget_AppCompat_Toolbar_Title : int
{static} + Base_Theme_AppCompat : int
{static} + Base_Theme_AppCompat_CompactMenu : int
{static} + Base_Theme_AppCompat_Dialog : int
{static} + Base_Theme_AppCompat_Dialog_Alert : int
{static} + Base_Theme_AppCompat_Dialog_FixedSize : int
{static} + Base_Theme_AppCompat_Dialog_MinWidth : int
{static} + Base_Theme_AppCompat_DialogWhenLarge : int
{static} + Base_Theme_AppCompat_Light : int
{static} + Base_Theme_AppCompat_Light_DarkActionBar : int
{static} + Base_Theme_AppCompat_Light_Dialog : int
{static} + Base_Theme_AppCompat_Light_Dialog_Alert : int
{static} + Base_Theme_AppCompat_Light_Dialog_FixedSize : int
{static} + Base_Theme_AppCompat_Light_Dialog_MinWidth : int
{static} + Base_Theme_AppCompat_Light_DialogWhenLarge : int
{static} + Base_ThemeOverlay_AppCompat : int
{static} + Base_ThemeOverlay_AppCompat_ActionBar : int
{static} + Base_ThemeOverlay_AppCompat_Dark : int
{static} + Base_ThemeOverlay_AppCompat_Dark_ActionBar : int
{static} + Base_ThemeOverlay_AppCompat_Dialog : int
{static} + Base_ThemeOverlay_AppCompat_Dialog_Alert : int
{static} + Base_ThemeOverlay_AppCompat_Light : int
{static} + Base_V14_Widget_Design_AppBarLayout : int
{static} + Base_V21_Theme_AppCompat : int
{static} + Base_V21_Theme_AppCompat_Dialog : int
{static} + Base_V21_Theme_AppCompat_Light : int
{static} + Base_V21_Theme_AppCompat_Light_Dialog : int
{static} + Base_V21_ThemeOverlay_AppCompat_Dialog : int
{static} + Base_V21_Widget_Design_AppBarLayout : int
{static} + Base_V22_Theme_AppCompat : int
{static} + Base_V22_Theme_AppCompat_Light : int
{static} + Base_V23_Theme_AppCompat : int
{static} + Base_V23_Theme_AppCompat_Light : int
{static} + Base_V26_Theme_AppCompat : int
{static} + Base_V26_Theme_AppCompat_Light : int
{static} + Base_V26_Widget_AppCompat_Toolbar : int
{static} + Base_V26_Widget_Design_AppBarLayout : int
{static} + Base_V7_Theme_AppCompat : int
{static} + Base_V7_Theme_AppCompat_Dialog : int
{static} + Base_V7_Theme_AppCompat_Light : int
{static} + Base_V7_Theme_AppCompat_Light_Dialog : int
{static} + Base_V7_ThemeOverlay_AppCompat_Dialog : int
{static} + Base_V7_Widget_AppCompat_AutoCompleteTextView : int
{static} + Base_V7_Widget_AppCompat_EditText : int
{static} + Base_V7_Widget_AppCompat_Toolbar : int
{static} + Base_Widget_AppCompat_ActionBar : int
{static} + Base_Widget_AppCompat_ActionBar_Solid : int
{static} + Base_Widget_AppCompat_ActionBar_TabBar : int
{static} + Base_Widget_AppCompat_ActionBar_TabText : int
{static} + Base_Widget_AppCompat_ActionBar_TabView : int
{static} + Base_Widget_AppCompat_ActionButton : int
{static} + Base_Widget_AppCompat_ActionButton_CloseMode : int
{static} + Base_Widget_AppCompat_ActionButton_Overflow : int
{static} + Base_Widget_AppCompat_ActionMode : int
{static} + Base_Widget_AppCompat_ActivityChooserView : int
{static} + Base_Widget_AppCompat_AutoCompleteTextView : int
{static} + Base_Widget_AppCompat_Button : int
{static} + Base_Widget_AppCompat_Button_Borderless : int
{static} + Base_Widget_AppCompat_Button_Borderless_Colored : int
{static} + Base_Widget_AppCompat_Button_ButtonBar_AlertDialog : int
{static} + Base_Widget_AppCompat_Button_Colored : int
{static} + Base_Widget_AppCompat_Button_Small : int
{static} + Base_Widget_AppCompat_ButtonBar : int
{static} + Base_Widget_AppCompat_ButtonBar_AlertDialog : int
{static} + Base_Widget_AppCompat_CompoundButton_CheckBox : int
{static} + Base_Widget_AppCompat_CompoundButton_RadioButton : int
{static} + Base_Widget_AppCompat_CompoundButton_Switch : int
{static} + Base_Widget_AppCompat_DrawerArrowToggle : int
{static} + Base_Widget_AppCompat_DrawerArrowToggle_Common : int
{static} + Base_Widget_AppCompat_DropDownItem_Spinner : int
{static} + Base_Widget_AppCompat_EditText : int
{static} + Base_Widget_AppCompat_ImageButton : int
{static} + Base_Widget_AppCompat_Light_ActionBar : int
{static} + Base_Widget_AppCompat_Light_ActionBar_Solid : int
{static} + Base_Widget_AppCompat_Light_ActionBar_TabBar : int
{static} + Base_Widget_AppCompat_Light_ActionBar_TabText : int
{static} + Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse : int
{static} + Base_Widget_AppCompat_Light_ActionBar_TabView : int
{static} + Base_Widget_AppCompat_Light_PopupMenu : int
{static} + Base_Widget_AppCompat_Light_PopupMenu_Overflow : int
{static} + Base_Widget_AppCompat_ListMenuView : int
{static} + Base_Widget_AppCompat_ListPopupWindow : int
{static} + Base_Widget_AppCompat_ListView : int
{static} + Base_Widget_AppCompat_ListView_DropDown : int
{static} + Base_Widget_AppCompat_ListView_Menu : int
{static} + Base_Widget_AppCompat_PopupMenu : int
{static} + Base_Widget_AppCompat_PopupMenu_Overflow : int
{static} + Base_Widget_AppCompat_PopupWindow : int
{static} + Base_Widget_AppCompat_ProgressBar : int
{static} + Base_Widget_AppCompat_ProgressBar_Horizontal : int
{static} + Base_Widget_AppCompat_RatingBar : int
{static} + Base_Widget_AppCompat_RatingBar_Indicator : int
{static} + Base_Widget_AppCompat_RatingBar_Small : int
{static} + Base_Widget_AppCompat_SearchView : int
{static} + Base_Widget_AppCompat_SearchView_ActionBar : int
{static} + Base_Widget_AppCompat_SeekBar : int
{static} + Base_Widget_AppCompat_SeekBar_Discrete : int
{static} + Base_Widget_AppCompat_Spinner : int
{static} + Base_Widget_AppCompat_Spinner_Underlined : int
{static} + Base_Widget_AppCompat_TextView_SpinnerItem : int
{static} + Base_Widget_AppCompat_Toolbar : int
{static} + Base_Widget_AppCompat_Toolbar_Button_Navigation : int
{static} + Base_Widget_Design_AppBarLayout : int
{static} + Base_Widget_Design_TabLayout : int
{static} + CardView : int
{static} + CardView_Dark : int
{static} + CardView_Light : int
{static} + Platform_AppCompat : int
{static} + Platform_AppCompat_Light : int
{static} + Platform_ThemeOverlay_AppCompat : int
{static} + Platform_ThemeOverlay_AppCompat_Dark : int
{static} + Platform_ThemeOverlay_AppCompat_Light : int
{static} + Platform_V21_AppCompat : int
{static} + Platform_V21_AppCompat_Light : int
{static} + Platform_V25_AppCompat : int
{static} + Platform_V25_AppCompat_Light : int
{static} + Platform_Widget_AppCompat_Spinner : int
{static} + RtlOverlay_DialogWindowTitle_AppCompat : int
{static} + RtlOverlay_Widget_AppCompat_ActionBar_TitleItem : int
{static} + RtlOverlay_Widget_AppCompat_DialogTitle_Icon : int
{static} + RtlOverlay_Widget_AppCompat_PopupMenuItem : int
{static} + RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup : int
{static} + RtlOverlay_Widget_AppCompat_PopupMenuItem_Text : int
{static} + RtlOverlay_Widget_AppCompat_Search_DropDown : int
{static} + RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 : int
{static} + RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 : int
{static} + RtlOverlay_Widget_AppCompat_Search_DropDown_Query : int
{static} + RtlOverlay_Widget_AppCompat_Search_DropDown_Text : int
{static} + RtlOverlay_Widget_AppCompat_SearchView_MagIcon : int
{static} + RtlUnderlay_Widget_AppCompat_ActionButton : int
{static} + RtlUnderlay_Widget_AppCompat_ActionButton_Overflow : int
{static} + TextAppearance_AppCompat : int
{static} + TextAppearance_AppCompat_Body1 : int
{static} + TextAppearance_AppCompat_Body2 : int
{static} + TextAppearance_AppCompat_Button : int
{static} + TextAppearance_AppCompat_Caption : int
{static} + TextAppearance_AppCompat_Display1 : int
{static} + TextAppearance_AppCompat_Display2 : int
{static} + TextAppearance_AppCompat_Display3 : int
{static} + TextAppearance_AppCompat_Display4 : int
{static} + TextAppearance_AppCompat_Headline : int
{static} + TextAppearance_AppCompat_Inverse : int
{static} + TextAppearance_AppCompat_Large : int
{static} + TextAppearance_AppCompat_Large_Inverse : int
{static} + TextAppearance_AppCompat_Light_SearchResult_Subtitle : int
{static} + TextAppearance_AppCompat_Light_SearchResult_Title : int
{static} + TextAppearance_AppCompat_Light_Widget_PopupMenu_Large : int
{static} + TextAppearance_AppCompat_Light_Widget_PopupMenu_Small : int
{static} + TextAppearance_AppCompat_Medium : int
{static} + TextAppearance_AppCompat_Medium_Inverse : int
{static} + TextAppearance_AppCompat_Menu : int
{static} + TextAppearance_AppCompat_SearchResult_Subtitle : int
{static} + TextAppearance_AppCompat_SearchResult_Title : int
{static} + TextAppearance_AppCompat_Small : int
{static} + TextAppearance_AppCompat_Small_Inverse : int
{static} + TextAppearance_AppCompat_Subhead : int
{static} + TextAppearance_AppCompat_Subhead_Inverse : int
{static} + TextAppearance_AppCompat_Title : int
{static} + TextAppearance_AppCompat_Title_Inverse : int
{static} + TextAppearance_AppCompat_Tooltip : int
{static} + TextAppearance_AppCompat_Widget_ActionBar_Menu : int
{static} + TextAppearance_AppCompat_Widget_ActionBar_Subtitle : int
{static} + TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse : int
{static} + TextAppearance_AppCompat_Widget_ActionBar_Title : int
{static} + TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse : int
{static} + TextAppearance_AppCompat_Widget_ActionMode_Subtitle : int
{static} + TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse : int
{static} + TextAppearance_AppCompat_Widget_ActionMode_Title : int
{static} + TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse : int
{static} + TextAppearance_AppCompat_Widget_Button : int
{static} + TextAppearance_AppCompat_Widget_Button_Borderless_Colored : int
{static} + TextAppearance_AppCompat_Widget_Button_Colored : int
{static} + TextAppearance_AppCompat_Widget_Button_Inverse : int
{static} + TextAppearance_AppCompat_Widget_DropDownItem : int
{static} + TextAppearance_AppCompat_Widget_PopupMenu_Header : int
{static} + TextAppearance_AppCompat_Widget_PopupMenu_Large : int
{static} + TextAppearance_AppCompat_Widget_PopupMenu_Small : int
{static} + TextAppearance_AppCompat_Widget_Switch : int
{static} + TextAppearance_AppCompat_Widget_TextView_SpinnerItem : int
{static} + TextAppearance_Compat_Notification : int
{static} + TextAppearance_Compat_Notification_Info : int
{static} + TextAppearance_Compat_Notification_Info_Media : int
{static} + TextAppearance_Compat_Notification_Line2 : int
{static} + TextAppearance_Compat_Notification_Line2_Media : int
{static} + TextAppearance_Compat_Notification_Media : int
{static} + TextAppearance_Compat_Notification_Time : int
{static} + TextAppearance_Compat_Notification_Time_Media : int
{static} + TextAppearance_Compat_Notification_Title : int
{static} + TextAppearance_Compat_Notification_Title_Media : int
{static} + TextAppearance_Design_CollapsingToolbar_Expanded : int
{static} + TextAppearance_Design_Counter : int
{static} + TextAppearance_Design_Counter_Overflow : int
{static} + TextAppearance_Design_Error : int
{static} + TextAppearance_Design_Hint : int
{static} + TextAppearance_Design_Snackbar_Message : int
{static} + TextAppearance_Design_Tab : int
{static} + TextAppearance_Widget_AppCompat_ExpandedMenu_Item : int
{static} + TextAppearance_Widget_AppCompat_Toolbar_Subtitle : int
{static} + TextAppearance_Widget_AppCompat_Toolbar_Title : int
{static} + Theme_AppCompat : int
{static} + Theme_AppCompat_CompactMenu : int
{static} + Theme_AppCompat_DayNight : int
{static} + Theme_AppCompat_DayNight_DarkActionBar : int
{static} + Theme_AppCompat_DayNight_Dialog : int
{static} + Theme_AppCompat_DayNight_Dialog_Alert : int
{static} + Theme_AppCompat_DayNight_Dialog_MinWidth : int
{static} + Theme_AppCompat_DayNight_DialogWhenLarge : int
{static} + Theme_AppCompat_DayNight_NoActionBar : int
{static} + Theme_AppCompat_Dialog : int
{static} + Theme_AppCompat_Dialog_Alert : int
{static} + Theme_AppCompat_Dialog_MinWidth : int
{static} + Theme_AppCompat_DialogWhenLarge : int
{static} + Theme_AppCompat_Light : int
{static} + Theme_AppCompat_Light_DarkActionBar : int
{static} + Theme_AppCompat_Light_Dialog : int
{static} + Theme_AppCompat_Light_Dialog_Alert : int
{static} + Theme_AppCompat_Light_Dialog_MinWidth : int
{static} + Theme_AppCompat_Light_DialogWhenLarge : int
{static} + Theme_AppCompat_Light_NoActionBar : int
{static} + Theme_AppCompat_NoActionBar : int
{static} + Theme_Design : int
{static} + Theme_Design_BottomSheetDialog : int
{static} + Theme_Design_Light : int
{static} + Theme_Design_Light_BottomSheetDialog : int
{static} + Theme_Design_Light_NoActionBar : int
{static} + Theme_Design_NoActionBar : int
{static} + ThemeOverlay_AppCompat : int
{static} + ThemeOverlay_AppCompat_ActionBar : int
{static} + ThemeOverlay_AppCompat_Dark : int
{static} + ThemeOverlay_AppCompat_Dark_ActionBar : int
{static} + ThemeOverlay_AppCompat_Dialog : int
{static} + ThemeOverlay_AppCompat_Dialog_Alert : int
{static} + ThemeOverlay_AppCompat_Light : int
{static} + Widget_AppCompat_ActionBar : int
{static} + Widget_AppCompat_ActionBar_Solid : int
{static} + Widget_AppCompat_ActionBar_TabBar : int
{static} + Widget_AppCompat_ActionBar_TabText : int
{static} + Widget_AppCompat_ActionBar_TabView : int
{static} + Widget_AppCompat_ActionButton : int
{static} + Widget_AppCompat_ActionButton_CloseMode : int
{static} + Widget_AppCompat_ActionButton_Overflow : int
{static} + Widget_AppCompat_ActionMode : int
{static} + Widget_AppCompat_ActivityChooserView : int
{static} + Widget_AppCompat_AutoCompleteTextView : int
{static} + Widget_AppCompat_Button : int
{static} + Widget_AppCompat_Button_Borderless : int
{static} + Widget_AppCompat_Button_Borderless_Colored : int
{static} + Widget_AppCompat_Button_ButtonBar_AlertDialog : int
{static} + Widget_AppCompat_Button_Colored : int
{static} + Widget_AppCompat_Button_Small : int
{static} + Widget_AppCompat_ButtonBar : int
{static} + Widget_AppCompat_ButtonBar_AlertDialog : int
{static} + Widget_AppCompat_CompoundButton_CheckBox : int
{static} + Widget_AppCompat_CompoundButton_RadioButton : int
{static} + Widget_AppCompat_CompoundButton_Switch : int
{static} + Widget_AppCompat_DrawerArrowToggle : int
{static} + Widget_AppCompat_DropDownItem_Spinner : int
{static} + Widget_AppCompat_EditText : int
{static} + Widget_AppCompat_ImageButton : int
{static} + Widget_AppCompat_Light_ActionBar : int
{static} + Widget_AppCompat_Light_ActionBar_Solid : int
{static} + Widget_AppCompat_Light_ActionBar_Solid_Inverse : int
{static} + Widget_AppCompat_Light_ActionBar_TabBar : int
{static} + Widget_AppCompat_Light_ActionBar_TabBar_Inverse : int
{static} + Widget_AppCompat_Light_ActionBar_TabText : int
{static} + Widget_AppCompat_Light_ActionBar_TabText_Inverse : int
{static} + Widget_AppCompat_Light_ActionBar_TabView : int
{static} + Widget_AppCompat_Light_ActionBar_TabView_Inverse : int
{static} + Widget_AppCompat_Light_ActionButton : int
{static} + Widget_AppCompat_Light_ActionButton_CloseMode : int
{static} + Widget_AppCompat_Light_ActionButton_Overflow : int
{static} + Widget_AppCompat_Light_ActionMode_Inverse : int
{static} + Widget_AppCompat_Light_ActivityChooserView : int
{static} + Widget_AppCompat_Light_AutoCompleteTextView : int
{static} + Widget_AppCompat_Light_DropDownItem_Spinner : int
{static} + Widget_AppCompat_Light_ListPopupWindow : int
{static} + Widget_AppCompat_Light_ListView_DropDown : int
{static} + Widget_AppCompat_Light_PopupMenu : int
{static} + Widget_AppCompat_Light_PopupMenu_Overflow : int
{static} + Widget_AppCompat_Light_SearchView : int
{static} + Widget_AppCompat_Light_Spinner_DropDown_ActionBar : int
{static} + Widget_AppCompat_ListMenuView : int
{static} + Widget_AppCompat_ListPopupWindow : int
{static} + Widget_AppCompat_ListView : int
{static} + Widget_AppCompat_ListView_DropDown : int
{static} + Widget_AppCompat_ListView_Menu : int
{static} + Widget_AppCompat_PopupMenu : int
{static} + Widget_AppCompat_PopupMenu_Overflow : int
{static} + Widget_AppCompat_PopupWindow : int
{static} + Widget_AppCompat_ProgressBar : int
{static} + Widget_AppCompat_ProgressBar_Horizontal : int
{static} + Widget_AppCompat_RatingBar : int
{static} + Widget_AppCompat_RatingBar_Indicator : int
{static} + Widget_AppCompat_RatingBar_Small : int
{static} + Widget_AppCompat_SearchView : int
{static} + Widget_AppCompat_SearchView_ActionBar : int
{static} + Widget_AppCompat_SeekBar : int
{static} + Widget_AppCompat_SeekBar_Discrete : int
{static} + Widget_AppCompat_Spinner : int
{static} + Widget_AppCompat_Spinner_DropDown : int
{static} + Widget_AppCompat_Spinner_DropDown_ActionBar : int
{static} + Widget_AppCompat_Spinner_Underlined : int
{static} + Widget_AppCompat_TextView_SpinnerItem : int
{static} + Widget_AppCompat_Toolbar : int
{static} + Widget_AppCompat_Toolbar_Button_Navigation : int
{static} + Widget_Compat_NotificationActionContainer : int
{static} + Widget_Compat_NotificationActionText : int
{static} + Widget_Design_AppBarLayout : int
{static} + Widget_Design_BottomNavigationView : int
{static} + Widget_Design_BottomSheet_Modal : int
{static} + Widget_Design_CollapsingToolbar : int
{static} + Widget_Design_CoordinatorLayout : int
{static} + Widget_Design_FloatingActionButton : int
{static} + Widget_Design_NavigationView : int
{static} + Widget_Design_ScrimInsetsFrameLayout : int
{static} + Widget_Design_Snackbar : int
{static} + Widget_Design_TabLayout : int
{static} + Widget_Design_TextInputLayout : int
{static} + Widget_Support_CoordinatorLayout : int
}
}
package com.raywenderlich.android.imet {
class styleable {
{static} + ActionBar : int[]
{static} + ActionBar_background : int
{static} + ActionBar_backgroundSplit : int
{static} + ActionBar_backgroundStacked : int
{static} + ActionBar_contentInsetEnd : int
{static} + ActionBar_contentInsetEndWithActions : int
{static} + ActionBar_contentInsetLeft : int
{static} + ActionBar_contentInsetRight : int
{static} + ActionBar_contentInsetStart : int
{static} + ActionBar_contentInsetStartWithNavigation : int
{static} + ActionBar_customNavigationLayout : int
{static} + ActionBar_displayOptions : int
{static} + ActionBar_divider : int
{static} + ActionBar_elevation : int
{static} + ActionBar_height : int
{static} + ActionBar_hideOnContentScroll : int
{static} + ActionBar_homeAsUpIndicator : int
{static} + ActionBar_homeLayout : int
{static} + ActionBar_icon : int
{static} + ActionBar_indeterminateProgressStyle : int
{static} + ActionBar_itemPadding : int
{static} + ActionBar_logo : int
{static} + ActionBar_navigationMode : int
{static} + ActionBar_popupTheme : int
{static} + ActionBar_progressBarPadding : int
{static} + ActionBar_progressBarStyle : int
{static} + ActionBar_subtitle : int
{static} + ActionBar_subtitleTextStyle : int
{static} + ActionBar_title : int
{static} + ActionBar_titleTextStyle : int
{static} + ActionBarLayout : int[]
{static} + ActionBarLayout_android_layout_gravity : int
{static} + ActionMenuItemView : int[]
{static} + ActionMenuItemView_android_minWidth : int
{static} + ActionMenuView : int[]
{static} + ActionMode : int[]
{static} + ActionMode_background : int
{static} + ActionMode_backgroundSplit : int
{static} + ActionMode_closeItemLayout : int
{static} + ActionMode_height : int
{static} + ActionMode_subtitleTextStyle : int
{static} + ActionMode_titleTextStyle : int
{static} + ActivityChooserView : int[]
{static} + ActivityChooserView_expandActivityOverflowButtonDrawable : int
{static} + ActivityChooserView_initialActivityCount : int
{static} + ActivityNavigator : int[]
{static} + ActivityNavigator_android_name : int
{static} + ActivityNavigator_action : int
{static} + ActivityNavigator_data : int
{static} + ActivityNavigator_dataPattern : int
{static} + AlertDialog : int[]
{static} + AlertDialog_android_layout : int
{static} + AlertDialog_buttonIconDimen : int
{static} + AlertDialog_buttonPanelSideLayout : int
{static} + AlertDialog_listItemLayout : int
{static} + AlertDialog_listLayout : int
{static} + AlertDialog_multiChoiceItemLayout : int
{static} + AlertDialog_showTitle : int
{static} + AlertDialog_singleChoiceItemLayout : int
{static} + AppBarLayout : int[]
{static} + AppBarLayout_android_background : int
{static} + AppBarLayout_android_touchscreenBlocksFocus : int
{static} + AppBarLayout_android_keyboardNavigationCluster : int
{static} + AppBarLayout_elevation : int
{static} + AppBarLayout_expanded : int
{static} + AppBarLayoutStates : int[]
{static} + AppBarLayoutStates_state_collapsed : int
{static} + AppBarLayoutStates_state_collapsible : int
{static} + AppBarLayout_Layout : int[]
{static} + AppBarLayout_Layout_layout_scrollFlags : int
{static} + AppBarLayout_Layout_layout_scrollInterpolator : int
{static} + AppCompatImageView : int[]
{static} + AppCompatImageView_android_src : int
{static} + AppCompatImageView_srcCompat : int
{static} + AppCompatImageView_tint : int
{static} + AppCompatImageView_tintMode : int
{static} + AppCompatSeekBar : int[]
{static} + AppCompatSeekBar_android_thumb : int
{static} + AppCompatSeekBar_tickMark : int
{static} + AppCompatSeekBar_tickMarkTint : int
{static} + AppCompatSeekBar_tickMarkTintMode : int
{static} + AppCompatTextHelper : int[]
{static} + AppCompatTextHelper_android_textAppearance : int
{static} + AppCompatTextHelper_android_drawableTop : int
{static} + AppCompatTextHelper_android_drawableBottom : int
{static} + AppCompatTextHelper_android_drawableLeft : int
{static} + AppCompatTextHelper_android_drawableRight : int
{static} + AppCompatTextHelper_android_drawableStart : int
{static} + AppCompatTextHelper_android_drawableEnd : int
{static} + AppCompatTextView : int[]
{static} + AppCompatTextView_android_textAppearance : int
{static} + AppCompatTextView_autoSizeMaxTextSize : int
{static} + AppCompatTextView_autoSizeMinTextSize : int
{static} + AppCompatTextView_autoSizePresetSizes : int
{static} + AppCompatTextView_autoSizeStepGranularity : int
{static} + AppCompatTextView_autoSizeTextType : int
{static} + AppCompatTextView_fontFamily : int
{static} + AppCompatTextView_textAllCaps : int
{static} + AppCompatTheme : int[]
{static} + AppCompatTheme_android_windowIsFloating : int
{static} + AppCompatTheme_android_windowAnimationStyle : int
{static} + AppCompatTheme_actionBarDivider : int
{static} + AppCompatTheme_actionBarItemBackground : int
{static} + AppCompatTheme_actionBarPopupTheme : int
{static} + AppCompatTheme_actionBarSize : int
{static} + AppCompatTheme_actionBarSplitStyle : int
{static} + AppCompatTheme_actionBarStyle : int
{static} + AppCompatTheme_actionBarTabBarStyle : int
{static} + AppCompatTheme_actionBarTabStyle : int
{static} + AppCompatTheme_actionBarTabTextStyle : int
{static} + AppCompatTheme_actionBarTheme : int
{static} + AppCompatTheme_actionBarWidgetTheme : int
{static} + AppCompatTheme_actionButtonStyle : int
{static} + AppCompatTheme_actionDropDownStyle : int
{static} + AppCompatTheme_actionMenuTextAppearance : int
{static} + AppCompatTheme_actionMenuTextColor : int
{static} + AppCompatTheme_actionModeBackground : int
{static} + AppCompatTheme_actionModeCloseButtonStyle : int
{static} + AppCompatTheme_actionModeCloseDrawable : int
{static} + AppCompatTheme_actionModeCopyDrawable : int
{static} + AppCompatTheme_actionModeCutDrawable : int
{static} + AppCompatTheme_actionModeFindDrawable : int
{static} + AppCompatTheme_actionModePasteDrawable : int
{static} + AppCompatTheme_actionModePopupWindowStyle : int
{static} + AppCompatTheme_actionModeSelectAllDrawable : int
{static} + AppCompatTheme_actionModeShareDrawable : int
{static} + AppCompatTheme_actionModeSplitBackground : int
{static} + AppCompatTheme_actionModeStyle : int
{static} + AppCompatTheme_actionModeWebSearchDrawable : int
{static} + AppCompatTheme_actionOverflowButtonStyle : int
{static} + AppCompatTheme_actionOverflowMenuStyle : int
{static} + AppCompatTheme_activityChooserViewStyle : int
{static} + AppCompatTheme_alertDialogButtonGroupStyle : int
{static} + AppCompatTheme_alertDialogCenterButtons : int
{static} + AppCompatTheme_alertDialogStyle : int
{static} + AppCompatTheme_alertDialogTheme : int
{static} + AppCompatTheme_autoCompleteTextViewStyle : int
{static} + AppCompatTheme_borderlessButtonStyle : int
{static} + AppCompatTheme_buttonBarButtonStyle : int
{static} + AppCompatTheme_buttonBarNegativeButtonStyle : int
{static} + AppCompatTheme_buttonBarNeutralButtonStyle : int
{static} + AppCompatTheme_buttonBarPositiveButtonStyle : int
{static} + AppCompatTheme_buttonBarStyle : int
{static} + AppCompatTheme_buttonStyle : int
{static} + AppCompatTheme_buttonStyleSmall : int
{static} + AppCompatTheme_checkboxStyle : int
{static} + AppCompatTheme_checkedTextViewStyle : int
{static} + AppCompatTheme_colorAccent : int
{static} + AppCompatTheme_colorBackgroundFloating : int
{static} + AppCompatTheme_colorButtonNormal : int
{static} + AppCompatTheme_colorControlActivated : int
{static} + AppCompatTheme_colorControlHighlight : int
{static} + AppCompatTheme_colorControlNormal : int
{static} + AppCompatTheme_colorError : int
{static} + AppCompatTheme_colorPrimary : int
{static} + AppCompatTheme_colorPrimaryDark : int
{static} + AppCompatTheme_colorSwitchThumbNormal : int
{static} + AppCompatTheme_controlBackground : int
{static} + AppCompatTheme_dialogPreferredPadding : int
{static} + AppCompatTheme_dialogTheme : int
{static} + AppCompatTheme_dividerHorizontal : int
{static} + AppCompatTheme_dividerVertical : int
{static} + AppCompatTheme_dropDownListViewStyle : int
{static} + AppCompatTheme_dropdownListPreferredItemHeight : int
{static} + AppCompatTheme_editTextBackground : int
{static} + AppCompatTheme_editTextColor : int
{static} + AppCompatTheme_editTextStyle : int
{static} + AppCompatTheme_homeAsUpIndicator : int
{static} + AppCompatTheme_imageButtonStyle : int
{static} + AppCompatTheme_listChoiceBackgroundIndicator : int
{static} + AppCompatTheme_listDividerAlertDialog : int
{static} + AppCompatTheme_listMenuViewStyle : int
{static} + AppCompatTheme_listPopupWindowStyle : int
{static} + AppCompatTheme_listPreferredItemHeight : int
{static} + AppCompatTheme_listPreferredItemHeightLarge : int
{static} + AppCompatTheme_listPreferredItemHeightSmall : int
{static} + AppCompatTheme_listPreferredItemPaddingLeft : int
{static} + AppCompatTheme_listPreferredItemPaddingRight : int
{static} + AppCompatTheme_panelBackground : int
{static} + AppCompatTheme_panelMenuListTheme : int
{static} + AppCompatTheme_panelMenuListWidth : int
{static} + AppCompatTheme_popupMenuStyle : int
{static} + AppCompatTheme_popupWindowStyle : int
{static} + AppCompatTheme_radioButtonStyle : int
{static} + AppCompatTheme_ratingBarStyle : int
{static} + AppCompatTheme_ratingBarStyleIndicator : int
{static} + AppCompatTheme_ratingBarStyleSmall : int
{static} + AppCompatTheme_searchViewStyle : int
{static} + AppCompatTheme_seekBarStyle : int
{static} + AppCompatTheme_selectableItemBackground : int
{static} + AppCompatTheme_selectableItemBackgroundBorderless : int
{static} + AppCompatTheme_spinnerDropDownItemStyle : int
{static} + AppCompatTheme_spinnerStyle : int
{static} + AppCompatTheme_switchStyle : int
{static} + AppCompatTheme_textAppearanceLargePopupMenu : int
{static} + AppCompatTheme_textAppearanceListItem : int
{static} + AppCompatTheme_textAppearanceListItemSecondary : int
{static} + AppCompatTheme_textAppearanceListItemSmall : int
{static} + AppCompatTheme_textAppearancePopupMenuHeader : int
{static} + AppCompatTheme_textAppearanceSearchResultSubtitle : int
{static} + AppCompatTheme_textAppearanceSearchResultTitle : int
{static} + AppCompatTheme_textAppearanceSmallPopupMenu : int
{static} + AppCompatTheme_textColorAlertDialogListItem : int
{static} + AppCompatTheme_textColorSearchUrl : int
{static} + AppCompatTheme_toolbarNavigationButtonStyle : int
{static} + AppCompatTheme_toolbarStyle : int
{static} + AppCompatTheme_tooltipForegroundColor : int
{static} + AppCompatTheme_tooltipFrameBackground : int
{static} + AppCompatTheme_viewInflaterClass : int
{static} + AppCompatTheme_windowActionBar : int
{static} + AppCompatTheme_windowActionBarOverlay : int
{static} + AppCompatTheme_windowActionModeOverlay : int
{static} + AppCompatTheme_windowFixedHeightMajor : int
{static} + AppCompatTheme_windowFixedHeightMinor : int
{static} + AppCompatTheme_windowFixedWidthMajor : int
{static} + AppCompatTheme_windowFixedWidthMinor : int
{static} + AppCompatTheme_windowMinWidthMajor : int
{static} + AppCompatTheme_windowMinWidthMinor : int
{static} + AppCompatTheme_windowNoTitle : int
{static} + BottomNavigationView : int[]
{static} + BottomNavigationView_elevation : int
{static} + BottomNavigationView_itemBackground : int
{static} + BottomNavigationView_itemIconTint : int
{static} + BottomNavigationView_itemTextColor : int
{static} + BottomNavigationView_menu : int
{static} + BottomSheetBehavior_Layout : int[]
{static} + BottomSheetBehavior_Layout_behavior_hideable : int
{static} + BottomSheetBehavior_Layout_behavior_peekHeight : int
{static} + BottomSheetBehavior_Layout_behavior_skipCollapsed : int
{static} + ButtonBarLayout : int[]
{static} + ButtonBarLayout_allowStacking : int
{static} + CardView : int[]
{static} + CardView_android_minWidth : int
{static} + CardView_android_minHeight : int
{static} + CardView_cardBackgroundColor : int
{static} + CardView_cardCornerRadius : int
{static} + CardView_cardElevation : int
{static} + CardView_cardMaxElevation : int
{static} + CardView_cardPreventCornerOverlap : int
{static} + CardView_cardUseCompatPadding : int
{static} + CardView_contentPadding : int
{static} + CardView_contentPaddingBottom : int
{static} + CardView_contentPaddingLeft : int
{static} + CardView_contentPaddingRight : int
{static} + CardView_contentPaddingTop : int
{static} + CollapsingToolbarLayout : int[]
{static} + CollapsingToolbarLayout_collapsedTitleGravity : int
{static} + CollapsingToolbarLayout_collapsedTitleTextAppearance : int
{static} + CollapsingToolbarLayout_contentScrim : int
{static} + CollapsingToolbarLayout_expandedTitleGravity : int
{static} + CollapsingToolbarLayout_expandedTitleMargin : int
{static} + CollapsingToolbarLayout_expandedTitleMarginBottom : int
{static} + CollapsingToolbarLayout_expandedTitleMarginEnd : int
{static} + CollapsingToolbarLayout_expandedTitleMarginStart : int
{static} + CollapsingToolbarLayout_expandedTitleMarginTop : int
{static} + CollapsingToolbarLayout_expandedTitleTextAppearance : int
{static} + CollapsingToolbarLayout_scrimAnimationDuration : int
{static} + CollapsingToolbarLayout_scrimVisibleHeightTrigger : int
{static} + CollapsingToolbarLayout_statusBarScrim : int
{static} + CollapsingToolbarLayout_title : int
{static} + CollapsingToolbarLayout_titleEnabled : int
{static} + CollapsingToolbarLayout_toolbarId : int
{static} + CollapsingToolbarLayout_Layout : int[]
{static} + CollapsingToolbarLayout_Layout_layout_collapseMode : int
{static} + CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier : int
{static} + ColorStateListItem : int[]
{static} + ColorStateListItem_android_color : int
{static} + ColorStateListItem_android_alpha : int
{static} + ColorStateListItem_alpha : int
{static} + CompoundButton : int[]
{static} + CompoundButton_android_button : int
{static} + CompoundButton_buttonTint : int
{static} + CompoundButton_buttonTintMode : int
{static} + ConstraintLayout_Layout : int[]
{static} + ConstraintLayout_Layout_android_orientation : int
{static} + ConstraintLayout_Layout_android_maxWidth : int
{static} + ConstraintLayout_Layout_android_maxHeight : int
{static} + ConstraintLayout_Layout_android_minWidth : int
{static} + ConstraintLayout_Layout_android_minHeight : int
{static} + ConstraintLayout_Layout_barrierAllowsGoneWidgets : int
{static} + ConstraintLayout_Layout_barrierDirection : int
{static} + ConstraintLayout_Layout_chainUseRtl : int
{static} + ConstraintLayout_Layout_constraintSet : int
{static} + ConstraintLayout_Layout_constraint_referenced_ids : int
{static} + ConstraintLayout_Layout_layout_constrainedHeight : int
{static} + ConstraintLayout_Layout_layout_constrainedWidth : int
{static} + ConstraintLayout_Layout_layout_constraintBaseline_creator : int
{static} + ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf : int
{static} + ConstraintLayout_Layout_layout_constraintBottom_creator : int
{static} + ConstraintLayout_Layout_layout_constraintBottom_toBottomOf : int
{static} + ConstraintLayout_Layout_layout_constraintBottom_toTopOf : int
{static} + ConstraintLayout_Layout_layout_constraintCircle : int
{static} + ConstraintLayout_Layout_layout_constraintCircleAngle : int
{static} + ConstraintLayout_Layout_layout_constraintCircleRadius : int
{static} + ConstraintLayout_Layout_layout_constraintDimensionRatio : int
{static} + ConstraintLayout_Layout_layout_constraintEnd_toEndOf : int
{static} + ConstraintLayout_Layout_layout_constraintEnd_toStartOf : int
{static} + ConstraintLayout_Layout_layout_constraintGuide_begin : int
{static} + ConstraintLayout_Layout_layout_constraintGuide_end : int
{static} + ConstraintLayout_Layout_layout_constraintGuide_percent : int
{static} + ConstraintLayout_Layout_layout_constraintHeight_default : int
{static} + ConstraintLayout_Layout_layout_constraintHeight_max : int
{static} + ConstraintLayout_Layout_layout_constraintHeight_min : int
{static} + ConstraintLayout_Layout_layout_constraintHeight_percent : int
{static} + ConstraintLayout_Layout_layout_constraintHorizontal_bias : int
{static} + ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle : int
{static} + ConstraintLayout_Layout_layout_constraintHorizontal_weight : int
{static} + ConstraintLayout_Layout_layout_constraintLeft_creator : int
{static} + ConstraintLayout_Layout_layout_constraintLeft_toLeftOf : int
{static} + ConstraintLayout_Layout_layout_constraintLeft_toRightOf : int
{static} + ConstraintLayout_Layout_layout_constraintRight_creator : int
{static} + ConstraintLayout_Layout_layout_constraintRight_toLeftOf : int
{static} + ConstraintLayout_Layout_layout_constraintRight_toRightOf : int
{static} + ConstraintLayout_Layout_layout_constraintStart_toEndOf : int
{static} + ConstraintLayout_Layout_layout_constraintStart_toStartOf : int
{static} + ConstraintLayout_Layout_layout_constraintTop_creator : int
{static} + ConstraintLayout_Layout_layout_constraintTop_toBottomOf : int
{static} + ConstraintLayout_Layout_layout_constraintTop_toTopOf : int
{static} + ConstraintLayout_Layout_layout_constraintVertical_bias : int
{static} + ConstraintLayout_Layout_layout_constraintVertical_chainStyle : int
{static} + ConstraintLayout_Layout_layout_constraintVertical_weight : int
{static} + ConstraintLayout_Layout_layout_constraintWidth_default : int
{static} + ConstraintLayout_Layout_layout_constraintWidth_max : int
{static} + ConstraintLayout_Layout_layout_constraintWidth_min : int
{static} + ConstraintLayout_Layout_layout_constraintWidth_percent : int
{static} + ConstraintLayout_Layout_layout_editor_absoluteX : int
{static} + ConstraintLayout_Layout_layout_editor_absoluteY : int
{static} + ConstraintLayout_Layout_layout_goneMarginBottom : int
{static} + ConstraintLayout_Layout_layout_goneMarginEnd : int
{static} + ConstraintLayout_Layout_layout_goneMarginLeft : int
{static} + ConstraintLayout_Layout_layout_goneMarginRight : int
{static} + ConstraintLayout_Layout_layout_goneMarginStart : int
{static} + ConstraintLayout_Layout_layout_goneMarginTop : int
{static} + ConstraintLayout_Layout_layout_optimizationLevel : int
{static} + ConstraintLayout_placeholder : int[]
{static} + ConstraintLayout_placeholder_content : int
{static} + ConstraintLayout_placeholder_emptyVisibility : int
{static} + ConstraintSet : int[]
{static} + ConstraintSet_android_orientation : int
{static} + ConstraintSet_android_id : int
{static} + ConstraintSet_android_visibility : int
{static} + ConstraintSet_android_layout_width : int
{static} + ConstraintSet_android_layout_height : int
{static} + ConstraintSet_android_layout_marginLeft : int
{static} + ConstraintSet_android_layout_marginTop : int
{static} + ConstraintSet_android_layout_marginRight : int
{static} + ConstraintSet_android_layout_marginBottom : int
{static} + ConstraintSet_android_alpha : int
{static} + ConstraintSet_android_transformPivotX : int
{static} + ConstraintSet_android_transformPivotY : int
{static} + ConstraintSet_android_translationX : int
{static} + ConstraintSet_android_translationY : int
{static} + ConstraintSet_android_scaleX : int
{static} + ConstraintSet_android_scaleY : int
{static} + ConstraintSet_android_rotation : int
{static} + ConstraintSet_android_rotationX : int
{static} + ConstraintSet_android_rotationY : int
{static} + ConstraintSet_android_layout_marginStart : int
{static} + ConstraintSet_android_layout_marginEnd : int
{static} + ConstraintSet_android_translationZ : int
{static} + ConstraintSet_android_elevation : int
{static} + ConstraintSet_layout_constrainedHeight : int
{static} + ConstraintSet_layout_constrainedWidth : int
{static} + ConstraintSet_layout_constraintBaseline_creator : int
{static} + ConstraintSet_layout_constraintBaseline_toBaselineOf : int
{static} + ConstraintSet_layout_constraintBottom_creator : int
{static} + ConstraintSet_layout_constraintBottom_toBottomOf : int
{static} + ConstraintSet_layout_constraintBottom_toTopOf : int
{static} + ConstraintSet_layout_constraintCircle : int
{static} + ConstraintSet_layout_constraintCircleAngle : int
{static} + ConstraintSet_layout_constraintCircleRadius : int
{static} + ConstraintSet_layout_constraintDimensionRatio : int
{static} + ConstraintSet_layout_constraintEnd_toEndOf : int
{static} + ConstraintSet_layout_constraintEnd_toStartOf : int
{static} + ConstraintSet_layout_constraintGuide_begin : int
{static} + ConstraintSet_layout_constraintGuide_end : int
{static} + ConstraintSet_layout_constraintGuide_percent : int
{static} + ConstraintSet_layout_constraintHeight_default : int
{static} + ConstraintSet_layout_constraintHeight_max : int
{static} + ConstraintSet_layout_constraintHeight_min : int
{static} + ConstraintSet_layout_constraintHeight_percent : int
{static} + ConstraintSet_layout_constraintHorizontal_bias : int
{static} + ConstraintSet_layout_constraintHorizontal_chainStyle : int
{static} + ConstraintSet_layout_constraintHorizontal_weight : int
{static} + ConstraintSet_layout_constraintLeft_creator : int
{static} + ConstraintSet_layout_constraintLeft_toLeftOf : int
{static} + ConstraintSet_layout_constraintLeft_toRightOf : int
{static} + ConstraintSet_layout_constraintRight_creator : int
{static} + ConstraintSet_layout_constraintRight_toLeftOf : int
{static} + ConstraintSet_layout_constraintRight_toRightOf : int
{static} + ConstraintSet_layout_constraintStart_toEndOf : int
{static} + ConstraintSet_layout_constraintStart_toStartOf : int
{static} + ConstraintSet_layout_constraintTop_creator : int
{static} + ConstraintSet_layout_constraintTop_toBottomOf : int
{static} + ConstraintSet_layout_constraintTop_toTopOf : int
{static} + ConstraintSet_layout_constraintVertical_bias : int
{static} + ConstraintSet_layout_constraintVertical_chainStyle : int
{static} + ConstraintSet_layout_constraintVertical_weight : int
{static} + ConstraintSet_layout_constraintWidth_default : int
{static} + ConstraintSet_layout_constraintWidth_max : int
{static} + ConstraintSet_layout_constraintWidth_min : int
{static} + ConstraintSet_layout_constraintWidth_percent : int
{static} + ConstraintSet_layout_editor_absoluteX : int
{static} + ConstraintSet_layout_editor_absoluteY : int
{static} + ConstraintSet_layout_goneMarginBottom : int
{static} + ConstraintSet_layout_goneMarginEnd : int
{static} + ConstraintSet_layout_goneMarginLeft : int
{static} + ConstraintSet_layout_goneMarginRight : int
{static} + ConstraintSet_layout_goneMarginStart : int
{static} + ConstraintSet_layout_goneMarginTop : 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} + DesignTheme : int[]
{static} + DesignTheme_bottomSheetDialogTheme : int
{static} + DesignTheme_bottomSheetStyle : int
{static} + DesignTheme_textColorError : int
{static} + DrawerArrowToggle : int[]
{static} + DrawerArrowToggle_arrowHeadLength : int
{static} + DrawerArrowToggle_arrowShaftLength : int
{static} + DrawerArrowToggle_barLength : int
{static} + DrawerArrowToggle_color : int
{static} + DrawerArrowToggle_drawableSize : int
{static} + DrawerArrowToggle_gapBetweenBars : int
{static} + DrawerArrowToggle_spinBars : int
{static} + DrawerArrowToggle_thickness : int
{static} + FloatingActionButton : int[]
{static} + FloatingActionButton_backgroundTint : int
{static} + FloatingActionButton_backgroundTintMode : int
{static} + FloatingActionButton_borderWidth : int
{static} + FloatingActionButton_elevation : int
{static} + FloatingActionButton_fabCustomSize : int
{static} + FloatingActionButton_fabSize : int
{static} + FloatingActionButton_pressedTranslationZ : int
{static} + FloatingActionButton_rippleColor : int
{static} + FloatingActionButton_useCompatPadding : int
{static} + FloatingActionButton_Behavior_Layout : int[]
{static} + FloatingActionButton_Behavior_Layout_behavior_autoHide : 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_font : int
{static} + FontFamilyFont_fontStyle : int
{static} + FontFamilyFont_fontWeight : int
{static} + ForegroundLinearLayout : int[]
{static} + ForegroundLinearLayout_android_foreground : int
{static} + ForegroundLinearLayout_android_foregroundGravity : int
{static} + ForegroundLinearLayout_foregroundInsidePadding : int
{static} + FragmentNavigator : int[]
{static} + FragmentNavigator_android_name : int
{static} + LinearConstraintLayout : int[]
{static} + LinearConstraintLayout_android_orientation : int
{static} + LinearLayoutCompat : int[]
{static} + LinearLayoutCompat_android_gravity : int
{static} + LinearLayoutCompat_android_orientation : int
{static} + LinearLayoutCompat_android_baselineAligned : int
{static} + LinearLayoutCompat_android_baselineAlignedChildIndex : int
{static} + LinearLayoutCompat_android_weightSum : int
{static} + LinearLayoutCompat_divider : int
{static} + LinearLayoutCompat_dividerPadding : int
{static} + LinearLayoutCompat_measureWithLargestChild : int
{static} + LinearLayoutCompat_showDividers : int
{static} + LinearLayoutCompat_Layout : int[]
{static} + LinearLayoutCompat_Layout_android_layout_gravity : int
{static} + LinearLayoutCompat_Layout_android_layout_width : int
{static} + LinearLayoutCompat_Layout_android_layout_height : int
{static} + LinearLayoutCompat_Layout_android_layout_weight : int
{static} + ListPopupWindow : int[]
{static} + ListPopupWindow_android_dropDownHorizontalOffset : int
{static} + ListPopupWindow_android_dropDownVerticalOffset : int
{static} + MenuGroup : int[]
{static} + MenuGroup_android_enabled : int
{static} + MenuGroup_android_id : int
{static} + MenuGroup_android_visible : int
{static} + MenuGroup_android_menuCategory : int
{static} + MenuGroup_android_orderInCategory : int
{static} + MenuGroup_android_checkableBehavior : int
{static} + MenuItem : int[]
{static} + MenuItem_android_icon : int
{static} + MenuItem_android_enabled : int
{static} + MenuItem_android_id : int
{static} + MenuItem_android_checked : int
{static} + MenuItem_android_visible : int
{static} + MenuItem_android_menuCategory : int
{static} + MenuItem_android_orderInCategory : int
{static} + MenuItem_android_title : int
{static} + MenuItem_android_titleCondensed : int
{static} + MenuItem_android_alphabeticShortcut : int
{static} + MenuItem_android_numericShortcut : int
{static} + MenuItem_android_checkable : int
{static} + MenuItem_android_onClick : int
{static} + MenuItem_actionLayout : int
{static} + MenuItem_actionProviderClass : int
{static} + MenuItem_actionViewClass : int
{static} + MenuItem_alphabeticModifiers : int
{static} + MenuItem_contentDescription : int
{static} + MenuItem_iconTint : int
{static} + MenuItem_iconTintMode : int
{static} + MenuItem_numericModifiers : int
{static} + MenuItem_showAsAction : int
{static} + MenuItem_tooltipText : int
{static} + MenuView : int[]
{static} + MenuView_android_windowAnimationStyle : int
{static} + MenuView_android_itemTextAppearance : int
{static} + MenuView_android_horizontalDivider : int
{static} + MenuView_android_verticalDivider : int
{static} + MenuView_android_headerBackground : int
{static} + MenuView_android_itemBackground : int
{static} + MenuView_android_itemIconDisabledAlpha : int
{static} + MenuView_preserveIconSpacing : int
{static} + MenuView_subMenuArrow : int
{static} + NavAction : int[]
{static} + NavAction_android_id : int
{static} + NavAction_clearTask : int
{static} + NavAction_destination : int
{static} + NavAction_enterAnim : int
{static} + NavAction_exitAnim : int
{static} + NavAction_launchDocument : int
{static} + NavAction_launchSingleTop : int
{static} + NavAction_popEnterAnim : int
{static} + NavAction_popExitAnim : int
{static} + NavAction_popUpTo : int
{static} + NavAction_popUpToInclusive : int
{static} + NavArgument : int[]
{static} + NavArgument_android_name : int
{static} + NavArgument_android_defaultValue : int
{static} + NavArgument_argType : int
{static} + NavArgument_nullable : int
{static} + NavDeepLink : int[]
{static} + NavDeepLink_android_autoVerify : int
{static} + NavDeepLink_uri : int
{static} + NavGraphNavigator : int[]
{static} + NavGraphNavigator_startDestination : int
{static} + NavHostFragment : int[]
{static} + NavHostFragment_defaultNavHost : int
{static} + NavHostFragment_navGraph : int
{static} + NavInclude : int[]
{static} + NavInclude_graph : int
{static} + NavigationView : int[]
{static} + NavigationView_android_background : int
{static} + NavigationView_android_fitsSystemWindows : int
{static} + NavigationView_android_maxWidth : int
{static} + NavigationView_elevation : int
{static} + NavigationView_headerLayout : int
{static} + NavigationView_itemBackground : int
{static} + NavigationView_itemIconTint : int
{static} + NavigationView_itemTextAppearance : int
{static} + NavigationView_itemTextColor : int
{static} + NavigationView_menu : int
{static} + Navigator : int[]
{static} + Navigator_android_label : int
{static} + Navigator_android_id : int
{static} + PopupWindow : int[]
{static} + PopupWindow_android_popupBackground : int
{static} + PopupWindow_android_popupAnimationStyle : int
{static} + PopupWindow_overlapAnchor : int
{static} + PopupWindowBackgroundState : int[]
{static} + PopupWindowBackgroundState_state_above_anchor : int
{static} + RecycleListView : int[]
{static} + RecycleListView_paddingBottomNoButtons : int
{static} + RecycleListView_paddingTopNoTitle : int
{static} + RecyclerView : int[]
{static} + RecyclerView_android_orientation : int
{static} + RecyclerView_android_descendantFocusability : int
{static} + RecyclerView_fastScrollEnabled : int
{static} + RecyclerView_fastScrollHorizontalThumbDrawable : int
{static} + RecyclerView_fastScrollHorizontalTrackDrawable : int
{static} + RecyclerView_fastScrollVerticalThumbDrawable : int
{static} + RecyclerView_fastScrollVerticalTrackDrawable : int
{static} + RecyclerView_layoutManager : int
{static} + RecyclerView_reverseLayout : int
{static} + RecyclerView_spanCount : int
{static} + RecyclerView_stackFromEnd : int
{static} + ScrimInsetsFrameLayout : int[]
{static} + ScrimInsetsFrameLayout_insetForeground : int
{static} + ScrollingViewBehavior_Layout : int[]
{static} + ScrollingViewBehavior_Layout_behavior_overlapTop : int
{static} + SearchView : int[]
{static} + SearchView_android_focusable : int
{static} + SearchView_android_maxWidth : int
{static} + SearchView_android_inputType : int
{static} + SearchView_android_imeOptions : int
{static} + SearchView_closeIcon : int
{static} + SearchView_commitIcon : int
{static} + SearchView_defaultQueryHint : int
{static} + SearchView_goIcon : int
{static} + SearchView_iconifiedByDefault : int
{static} + SearchView_layout : int
{static} + SearchView_queryBackground : int
{static} + SearchView_queryHint : int
{static} + SearchView_searchHintIcon : int
{static} + SearchView_searchIcon : int
{static} + SearchView_submitBackground : int
{static} + SearchView_suggestionRowLayout : int
{static} + SearchView_voiceIcon : int
{static} + SnackbarLayout : int[]
{static} + SnackbarLayout_android_maxWidth : int
{static} + SnackbarLayout_elevation : int
{static} + SnackbarLayout_maxActionInlineWidth : int
{static} + Spinner : int[]
{static} + Spinner_android_entries : int
{static} + Spinner_android_popupBackground : int
{static} + Spinner_android_prompt : int
{static} + Spinner_android_dropDownWidth : int
{static} + Spinner_popupTheme : int
{static} + SwitchCompat : int[]
{static} + SwitchCompat_android_textOn : int
{static} + SwitchCompat_android_textOff : int
{static} + SwitchCompat_android_thumb : int
{static} + SwitchCompat_showText : int
{static} + SwitchCompat_splitTrack : int
{static} + SwitchCompat_switchMinWidth : int
{static} + SwitchCompat_switchPadding : int
{static} + SwitchCompat_switchTextAppearance : int
{static} + SwitchCompat_thumbTextPadding : int
{static} + SwitchCompat_thumbTint : int
{static} + SwitchCompat_thumbTintMode : int
{static} + SwitchCompat_track : int
{static} + SwitchCompat_trackTint : int
{static} + SwitchCompat_trackTintMode : int
{static} + TabItem : int[]
{static} + TabItem_android_icon : int
{static} + TabItem_android_layout : int
{static} + TabItem_android_text : int
{static} + TabLayout : int[]
{static} + TabLayout_tabBackground : int
{static} + TabLayout_tabContentStart : int
{static} + TabLayout_tabGravity : int
{static} + TabLayout_tabIndicatorColor : int
{static} + TabLayout_tabIndicatorHeight : int
{static} + TabLayout_tabMaxWidth : int
{static} + TabLayout_tabMinWidth : int
{static} + TabLayout_tabMode : int
{static} + TabLayout_tabPadding : int
{static} + TabLayout_tabPaddingBottom : int
{static} + TabLayout_tabPaddingEnd : int
{static} + TabLayout_tabPaddingStart : int
{static} + TabLayout_tabPaddingTop : int
{static} + TabLayout_tabSelectedTextColor : int
{static} + TabLayout_tabTextAppearance : int
{static} + TabLayout_tabTextColor : int
{static} + TextAppearance : int[]
{static} + TextAppearance_android_textSize : int
{static} + TextAppearance_android_typeface : int
{static} + TextAppearance_android_textStyle : int
{static} + TextAppearance_android_textColor : int
{static} + TextAppearance_android_textColorHint : int
{static} + TextAppearance_android_textColorLink : int
{static} + TextAppearance_android_shadowColor : int
{static} + TextAppearance_android_shadowDx : int
{static} + TextAppearance_android_shadowDy : int
{static} + TextAppearance_android_shadowRadius : int
{static} + TextAppearance_android_fontFamily : int
{static} + TextAppearance_fontFamily : int
{static} + TextAppearance_textAllCaps : int
{static} + TextInputLayout : int[]
{static} + TextInputLayout_android_textColorHint : int
{static} + TextInputLayout_android_hint : int
{static} + TextInputLayout_counterEnabled : int
{static} + TextInputLayout_counterMaxLength : int
{static} + TextInputLayout_counterOverflowTextAppearance : int
{static} + TextInputLayout_counterTextAppearance : int
{static} + TextInputLayout_errorEnabled : int
{static} + TextInputLayout_errorTextAppearance : int
{static} + TextInputLayout_hintAnimationEnabled : int
{static} + TextInputLayout_hintEnabled : int
{static} + TextInputLayout_hintTextAppearance : int
{static} + TextInputLayout_passwordToggleContentDescription : int
{static} + TextInputLayout_passwordToggleDrawable : int
{static} + TextInputLayout_passwordToggleEnabled : int
{static} + TextInputLayout_passwordToggleTint : int
{static} + TextInputLayout_passwordToggleTintMode : int
{static} + Toolbar : int[]
{static} + Toolbar_android_gravity : int
{static} + Toolbar_android_minHeight : int
{static} + Toolbar_buttonGravity : int
{static} + Toolbar_collapseContentDescription : int
{static} + Toolbar_collapseIcon : int
{static} + Toolbar_contentInsetEnd : int
{static} + Toolbar_contentInsetEndWithActions : int
{static} + Toolbar_contentInsetLeft : int
{static} + Toolbar_contentInsetRight : int
{static} + Toolbar_contentInsetStart : int
{static} + Toolbar_contentInsetStartWithNavigation : int
{static} + Toolbar_logo : int
{static} + Toolbar_logoDescription : int
{static} + Toolbar_maxButtonHeight : int
{static} + Toolbar_navigationContentDescription : int
{static} + Toolbar_navigationIcon : int
{static} + Toolbar_popupTheme : int
{static} + Toolbar_subtitle : int
{static} + Toolbar_subtitleTextAppearance : int
{static} + Toolbar_subtitleTextColor : int
{static} + Toolbar_title : int
{static} + Toolbar_titleMargin : int
{static} + Toolbar_titleMarginBottom : int
{static} + Toolbar_titleMarginEnd : int
{static} + Toolbar_titleMarginStart : int
{static} + Toolbar_titleMarginTop : int
{static} + Toolbar_titleMargins : int
{static} + Toolbar_titleTextAppearance : int
{static} + Toolbar_titleTextColor : int
{static} + View : int[]
{static} + View_android_theme : int
{static} + View_android_focusable : int
{static} + View_paddingEnd : int
{static} + View_paddingStart : int
{static} + View_theme : int
{static} + ViewBackgroundHelper : int[]
{static} + ViewBackgroundHelper_android_background : int
{static} + ViewBackgroundHelper_backgroundTint : int
{static} + ViewBackgroundHelper_backgroundTintMode : int
{static} + ViewStubCompat : int[]
{static} + ViewStubCompat_android_id : int
{static} + ViewStubCompat_android_layout : int
{static} + ViewStubCompat_android_inflatedId : int
}
}
R +-down- anim
R +-down- animator
R +-down- attr
R +-down- bool
R +-down- color
R +-down- dimen
R +-down- drawable
R +-down- id
R +-down- integer
R +-down- layout
R +-down- menu
R +-down- mipmap
R +-down- navigation
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
| false | true | false | false | class |
509743ccaa16860795d97f51761e239a19d001e8 | 95a4cab78f56bdb2299d3dc9ab4834ed033f6b38 | /src/Twitter/Navigation/Navigation.plantuml | 773a78288adf11331494b6e91a1bc0ce305e0b54 | [] | 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,177 | plantuml | @startuml
title __NAVIGATION's Class Diagram__\n
package Twitter {
package Twitter.Navigation {
class GoToNextScene {
+ GoToNextScene()
+ goToScene()
}
}
}
package Twitter {
package Twitter.Navigation {
class GoToRootScene {
+ GoToRootScene()
+ goToScene()
}
}
}
package Twitter {
package Twitter.Navigation {
interface NavigationStrategy {
{abstract} + goToScene()
}
}
}
package Twitter {
package Twitter.Navigation {
enum WINDOWS {
LOGIN
HOME
MAIN
FEED
}
}
}
GoToNextScene -up-|> NavigationStrategy
GoToNextScene o-- WindowsNavigator : windowsNavigator
GoToNextScene o-- MainWindow : mainWindow
GoToRootScene -up-|> NavigationStrategy
GoToRootScene o-- MainWindow : mainWindow
GoToRootScene o-- WindowsNavigator : windowsNavigator
NavigationStrategy +-down- WINDOWS
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
98e5e60cb488fbad9bafeebda60e499b884c4dcb | 461857cf2d894c61c1e887d19363c94a28fd9a49 | /docs/diagrams/src/BCSC_OIDC_Flow.puml | 5cd8b8731a9f7f1c532596ac4c8fd6fabe95a9ba | [
"Apache-2.0"
] | permissive | paulshrimpton-BC/healthgateway | a060deae4222fb5c14e4540f7c5664936daa3833 | 8d91d8f74644b62d59bd25c55320cb75f2725b24 | refs/heads/master | 2020-08-21T18:44:02.764494 | 2019-10-09T19:59:51 | 2019-10-09T19:59:51 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 632 | puml | @startuml BCSC_OIDC_Flow
autonumber
actor Citizen
Citizen -> Browser
Browser <-> HealthGateway : Load HealthGateway App
Citizen -> Browser : Select Login With BCSC
Browser -> KeyCloak : Authentication Request (idp_hint=bcsc, client_id)
KeyCloak -> IAS : Authenticate User (client_id, client_secret)
Browser <-> IAS : Authenticate User
IAS -> KeyCloak : Return ID_Token
KeyCloak -> Browser : Returns code token
Browser <-> KeyCloak : Exchange Code for access (bearer) Token
Browser <-> KeyCloak : Retrieve user info
Browser --> Browser : Store token in LocalStorage (session)
@enduml
| false | true | false | false | usecase |
697138bd04e54e423598842032ec52c9ab45753a | 87b13699a92fe26bd2974254727e6859f3ae32f3 | /src/csheets/userstories/ipc07_01/select_game_and_partner/i130399/select_game_and_partner_ipc_07_01.puml | 148b05c694d8ea88916a0c1dffb72d97aa2ebf2a | [] | 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 | 2,119 | puml | @startuml doc-files/select_game_and_partner_ipc_07_01.png
actor User
participant "SelectGameAction" as sga
participant "PlayerInfo" as playerInfo
participant "ChoosePartner" as cp
participant "SelectGameController" as sgc
participant "Player" as player
participant "GameScene" as scene
participant "ActiveGamesPanel" as agp
participant "<<Service>>\nNetworkService" as netw
participant "<<Service>>\nNetworkSendService" as netws
participant "SearchPartnersServer" as server
User -> sga : actionPerformed()
sga -> playerInfo : showDialog()
User -> playerInfo : chooseGame();
playerInfo -> scene : showDialog();
User -> playerInfo : chooseName();
playerInfo -> sgc : setPlayerName(name);
sgc -> player : setName(name);
User -> playerInfo : chooseImage();
playerInfo -> sgc : setPlayerImage(image);
sgc -> player : setPlayerImage(image);
playerInfo -> cp : showDialog(lc);
cp -> sgc : lc=searchInstances();
sgc->netw : lc=serachIntances();
netw -> netws : lc=searchActiveIntances();
cp -> sgc : startGameServer(gamescene, player, this);
sgc->netw : startGameServer(dialog, player, partnersDialog);
create server
netw -> server : create(dialog, player, partnersDialog);
server->server : run();
User <-- cp : show active clients
alt client that wants to connect
User -> cp : chooseClient();
cp -> sgc : establishConnection(address);
sgc -> netw : establishConnectionToUser(address);
netw -> netws : establishConnectionToUser(address);
cp->sgc : sendUserInfo(player);
netw->netws : sendUserInfo(player);
cp -> scene : setPlayerData(player);
cp ->sgc : activeGame(game);
sgc -> agp : activeGame(game);
cp -> scene : setVisible(true);
end alt
alt client that receives the connection
server->server : waitToReceiveOtherPlayerInfo();
server->netw : establishConnetction(address);
server->server : run();
server->server : waitForMessage();
cp->sgc : sendUserInfo(player);
netw->netws : sendUserInfo(player);
server -> scene : setPlayerData(player);
server ->sgc : activeGame(game);
sgc -> agp : activeGame(game);
server -> scene : setVisible(true);
end alt
@enduml | false | true | false | false | usecase |
b3c79189c7d65deabbb82cff881c6af4a038747a | 77184a0639bb9540530dfe0c3827fd4c3f3ed3a4 | /docs/STLDD/class_diagram.plantuml | 95c8eddc2d8ebf6451cac048e26697ee2f6043ab | [] | no_license | ockka/ETSN05-Group2 | f82eafcf3f659d70280b593317d4cbb3a0d9382b | c60f4f7ad06f7260aa7b7095652612c59c2f573c | refs/heads/master | 2021-05-29T20:38:22.033035 | 2015-10-14T14:17:20 | 2015-10-14T14:17:20 | 41,856,887 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,099 | plantuml | skinparam classAttributeIconSize 0
package "activity" #DDDDDD {
class MyDevicesActivity
class SensorDeviceActivity
class LightBulbActivity
class DeviceActivity
}
package "network" #DDDDDD {
class NetworkManager
interface NetworkManagerApi
package "data" #DDDDDD {
class DataAboutDevice
class DeviceData
class DeviceDataList
class DeviceStatus
class ToggledStateResponse
}
}
package "adapter" #DDDDDD {
class DeviceListAdapter
}
package "model" #DDDDDD {
class Device
class LightBulb
class SensorDevice
}
class NetworkManager{
+void toggle(Device, boolean, Callback<DeviceStatus>)
+void getToggledState(Device, Callback<DataAboutDevice>)
+void detectDevices(List<Device>, Callback<List<DataAboutDevice>>)
+void getTemperature(Device, Callback<List<DeviceData>>)
+void getPressure(Device, Callback<List<DeviceData>>)
+void getHumidity(Device, Callback<List<DeviceData>>)
+void getMagnetic(Device, Callback<List<DeviceData>>)
+void getGyroscopic(Device, Callback<List<DeviceData>>)
+void getAccelerometer(Device, Callback<List<DeviceData>>)
+void getAllSensorValues(Device, Callback<List<DeviceData>>)
+void getColor(Device, Callback<List<DeviceData>>)
+void setColor(Device, Color, Callback<DeviceStatus>)
}
interface NetworkManagerApi{
~void getDataAboutAllDevices(Callback);
~void getDeviceData(long deviceId, String startDate, String endDate, Callback);
~void getDeviceDataColor(long deviceId, Callback);
~void getDeviceDataSensor(ong deviceId, String sensorType, String startDate, String endDate, Callback);
~void putDeviceStatus(DeviceStatus, Callback);
~void putDeviceValue(DeviceStatus, Callback);
~void getDataAboutDevice(long deviceId, Callback);
}
class DeviceListAdapter {
+DeviceListaAdapter(Context, int, List)
}
class MyDevicesActivity{
-Device chosen;
-Toast toast;
-int duration;
+void getDevices(View)
+void controlDevice(View)
-Callback createCallback()
-void saveList(List)
-void detectDevices()
-void controlDevice(Device)
}
class SensorDeviceActivity{
-TextView temperature
-TextView pressure
-TextView humidity
-TextView magnetic
-TextView gyroscopic
-TextView accelerometer
-Switch switch
-Button getAll
-Button clearAll
-void getTemperature()
-void getPressure()
-void getHumidity()
-void getMagnetic()
-void getGyroscopic()
-void getAccelerometer()
-void getAll()
-void clearAll()
}
class LightBulbActivity{
-EditText red
-EditText green
-EditText blue
-EditText white
-Switch lightBulbSwitch;
-Toast toast
-int duration;
-void init()
+void getValues(View v)
+void setValues(View v)
}
abstract class DeviceActivity{
#Device device
}
abstract class Device{
#long id;
#String macAddress
+String getMacAddress()
+long getId()
+{abstract} String getName()
}
class SensorDevice{
+String getName()
}
class LightBulb{
+String getName()
}
DeviceActivity <|-- SensorDeviceActivity
DeviceActivity <|-- LightBulbActivity
Device <|-- SensorDevice
Device <|-- LightBulb
MyDevicesActivity "1" *-- "1" DeviceListAdapter
DeviceListAdapter "1" o-- "*" Device
| false | true | false | false | class |
881fa305bfea699e0993e082e1e87b23df1467f5 | 23f88cbe0116ffa007db659dc96cfb451fc4b242 | /src/string_Decorator.puml | 958070c939b423d95fc2f9f2f4e99d65df9870fa | [] | no_license | c16318/java_Decorator | 5db7985e73d66de8563cd69539315089a1d0c2d9 | 8f0eff05e96ab568d6b95ecbdba3f48151c276b2 | refs/heads/master | 2021-01-20T14:22:47.601250 | 2017-05-12T10:09:26 | 2017-05-12T10:09:26 | 90,595,868 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 484 | puml | @startuml
class Display {
getColumns()
getRows()
getRowText()
show()
}
class StringDisplay{
string
getColumns()
getRows()
getRowText()
}
Border : display
class SideBorder{
borderChar
getColumns()
getRows()
getRowText()
}
class FullBorder{
getColumns()
getRows()
getRowText()
makeLine()
}
Display <|-- StringDisplay
Display <|-- Border
Border <|-- SideBorder
Border <|-- FullBorder
Border o--> Display
@enduml
| false | true | false | false | class |
0b49b65f55e12858b6acefc6f5473dfc7eff8686 | 913dcaaad8e91ba178a593f909d08f271c25b737 | /sequenceDiagram1.puml | db2672fa25a9de03dfc8c84edb4b4b982213424f | [] | no_license | oli-clarke/plantUML-training | 7bb525b157b5506fa58c3295a40ad15f8dedadd4 | 1b243afa0b3526835018c6313bf2995a6b512c3c | refs/heads/master | 2020-07-17T15:46:36.715647 | 2019-09-03T15:15:22 | 2019-09-03T15:15:22 | 206,047,589 | 0 | 0 | null | 2019-09-03T10:25:04 | 2019-09-03T10:07:49 | null | UTF-8 | PlantUML | false | false | 371 | puml | @startuml
actor User
participant LoginForm
participant LoginController
participant AuthenticationService
database Database
User -> LoginForm : login
LoginForm -> LoginController : login
group backend
LoginController -> AuthenticationService : authenticate
AuthenticationService -/ Database : createSession
User <-- AuthenticationService : token
end
@enduml | false | true | false | false | sequence |
941106597b87f49ef5bf6604993a642df266af46 | ad574151088c8b468af1ecf10f6a2df83c1dd8d3 | /doc/db.puml | 6361c2458559625a62f8bd8a3af4864b342e1ba0 | [] | no_license | cankill/TransferProcessor | f3d8bef84f59f7814ac9f910886423c918d5cda6 | bf52ce745d41d566d690c185443e44b1565e0523 | refs/heads/master | 2020-09-22T10:15:08.203469 | 2019-12-10T11:45:27 | 2019-12-10T11:45:27 | 225,152,315 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 1,537 | puml | @startuml
' uncomment the line below if you're using computer with a retina display
' skinparam dpi 300
!define Table(name,desc) class name as "desc" << (T,#FFAAAA) >>
' we use bold for primary key
' green color for unique
' and underscore for not_null
!define primary_key(x) <b>x</b>
!define unique(x) <color:green>x</color>
!define not_null(x) <u>x</u>
' other tags available:
' <i></i>
' <back:COLOR></color>, where color is a color name or html color code
' (#FFAACC)
' see: http://plantuml.com/classes.html#More
hide methods
hide stereotypes
' entities
Table(user, "User") {
primary_key(id) User.Id
name String
email String
phone String
}
Table(account, "Account") {
primary_key(id) Account.Id
not_null(userId) String
currency Currency
balance BigDecimal
not_null(hold) Hold.Id
}
Table(hold, "Hold") {
primary_key(id) Hold.Id
not_null(transactionId) Transaction.Id
not_null(amount) BigDecimal
not_null(status) TransactionStatus
}
Table(transaction, "Transaction") {
primary_key(id) Transaction.Id
parentId Transaction.Id
from Account.Id
to Account.Id
not_null(amount) BigDecimal
not_null(type) TransactionType
not_null(dateTime) LocalDateTime
not_null(status) TransactionStatus
children Transaction.Id
}
user "1" <-- "0..N" account : "userId"
account "1" --> "0..N" hold : "holdId"
transaction "1" <-- "1" hold: "transactionId"
transaction "0..N" --> "1" transaction: "parentId"
transaction "1" --> "0..N" transaction: "children"
@enduml
| false | true | false | false | sequence |
754ec8299c850878f5d5c4c58dc2ce14b6f0401a | d443b3378237db1a4fddeeaa04ebc2625b9da23a | /doc/Button_Released.puml | fc51afcd29ba75ec8c9cb3e7bf1f06e3770bde1d | [] | no_license | HomeMadeBots/Button_Events | 838cbc884b158e3c43be5cec7808d46045dacaba | ea466135554a14263d24312cfd72026cf7b19b71 | refs/heads/main | 2023-08-06T06:10:12.717644 | 2021-09-21T19:31:43 | 2021-09-21T19:31:43 | 392,969,970 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 119 | puml | @startuml
class Button_Released <<Event_Interface>>
{
This event is sent when a push button is released.
}
@enduml
| false | true | false | false | class |
38fc23fb81328b9b7765bcbab4e7fadf576dc540 | 4c5d25e670d887c43e6cab8a1b8658ec62c17f36 | /src/main/java/service/service.plantuml | 5f6062b9826dff49f32f0cbe907970316dd36b0a | [] | no_license | RichardKovacik/bankDAO | e8fba1f74da6110ca6bb82e2fb74789fb7eabc02 | 65caf7429d76efaede5b36120f3074a478da5586 | refs/heads/main | 2023-06-27T20:40:56.671572 | 2021-07-20T15:00:38 | 2021-07-20T15:00:38 | 385,254,693 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 755 | plantuml | @startuml
title __SERVICE's Class Diagram__\n
namespace service {
class service.KlientService {
+ KlientService()
+ getKlientPodlaId()
+ getZoznamVsetkych()
+ uloz()
+ zmaz()
+ zmen()
}
}
namespace service {
class service.UcetService {
+ UcetService()
+ getUcetPodlaId()
+ getZoznamVsetkych()
+ uloz()
+ zmaz()
+ zmen()
}
}
service.KlientService o-- dao.KlientDao : klientDao
service.UcetService o-- dao.UcetDao : ucetDao
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
8288c8b0f5a742ff160d75ce9e8b8abf83011f46 | 180b9a8842f55d1d3762ab2984e117b5e15eecf4 | /src/main/java/com/example/lbycpeifinalproject/misc/misc.plantuml | f258ba979c05b9cdf7b4e4ebd10942c53cc3875f | [] | no_license | kfcampit/LBYCPEI-FinalProject | 9c4c5fbe8f95794fdccf0653365e75faa950e39a | 98fa61bade0318ff8b81a96ee0752c6fadd6f734 | refs/heads/main | 2023-08-14T22:43:40.156552 | 2021-09-25T07:40:26 | 2021-09-25T07:40:26 | 399,302,949 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 3,685 | plantuml | @startuml
title __MISC's Class Diagram__\n
namespace com.example.lbycpeifinalproject {
namespace misc {
class com.example.lbycpeifinalproject.misc.CartController {
+ MAX_NUM : int
+ cart : CartObject[]
+ numberCartItems : int
+ loadCart()
+ updateCart()
- readAll()
}
}
}
namespace com.example.lbycpeifinalproject {
namespace misc {
interface com.example.lbycpeifinalproject.misc.CartInterface {
{abstract} + getId()
{abstract} + getQuantity()
{abstract} + setId()
{abstract} + setQuantity()
}
}
}
namespace com.example.lbycpeifinalproject {
namespace misc {
class com.example.lbycpeifinalproject.misc.CartObject {
- id : int
- quantity : int
+ getId()
+ getQuantity()
+ setId()
+ setQuantity()
}
}
}
namespace com.example.lbycpeifinalproject {
namespace misc {
class com.example.lbycpeifinalproject.misc.DatabaseController {
+ MAX_NUM : int
+ numberProducts : int
+ products : ProductObject[]
+ loadDatabase()
+ updateDatabase()
- readAll()
}
}
}
namespace com.example.lbycpeifinalproject {
namespace misc {
interface com.example.lbycpeifinalproject.misc.ProductInterface {
{abstract} + getCategory()
{abstract} + getDescription()
{abstract} + getId()
{abstract} + getImageFileName()
{abstract} + getName()
{abstract} + getPrice()
{abstract} + getQuantityInStock()
{abstract} + getRating()
{abstract} + setCategory()
{abstract} + setDescription()
{abstract} + setId()
{abstract} + setImageFileName()
{abstract} + setName()
{abstract} + setPrice()
{abstract} + setQuantityInStock()
{abstract} + setRating()
}
}
}
namespace com.example.lbycpeifinalproject {
namespace misc {
class com.example.lbycpeifinalproject.misc.ProductObject {
+ category : String[]
+ imageFileName : String[]
- description : String
- id : int
- name : String
- price : double
- quantityInStock : int
- rating : double
+ getCategory()
+ getDescription()
+ getId()
+ getImageFileName()
+ getName()
+ getPrice()
+ getQuantityInStock()
+ getRating()
+ setCategory()
+ setDescription()
+ setId()
+ setImageFileName()
+ setName()
+ setPrice()
+ setQuantityInStock()
+ setRating()
}
}
}
com.example.lbycpeifinalproject.misc.CartObject .up.|> com.example.lbycpeifinalproject.misc.CartInterface
com.example.lbycpeifinalproject.misc.ProductObject .up.|> com.example.lbycpeifinalproject.misc.ProductInterface
com.example.lbycpeifinalproject.misc.CartObject -up-|> com.example.lbycpeifinalproject.misc.CartController
com.example.lbycpeifinalproject.misc.ProductObject -up-|> com.example.lbycpeifinalproject.misc.DatabaseController
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
f1a1cbd3ac7521a7f2ce7fa65704536a1f961d25 | 922c17c800bee31feb2679e8c9ec5262c959ca75 | /src/main/java/com/ayoungya/patternDesign/structual/adapter/AdapterUML.puml | c8fc219b12475cec8a199c5892294d19b0033842 | [] | no_license | AyoungYa/java-tips | 9dd20a3abd7dc1e03820a1067eaeb4c83cb9bd98 | 39834dcfe4acd4b006d46b2070fbb80d1e1d06e9 | refs/heads/master | 2022-12-22T16:09:29.874270 | 2020-07-22T01:06:36 | 2020-07-22T01:06:36 | 81,182,318 | 1 | 0 | null | 2022-12-16T02:16:55 | 2017-02-07T07:58:57 | Java | UTF-8 | PlantUML | false | false | 201 | puml | @startuml
abstract class Target{
+ request()
}
abstract class Adapter
class Adaptee{
+ specificRequest()
}
Client --right-> Target
Adapter --up-|> Target
Adapter --left-|> Adaptee
@enduml | false | true | false | false | class |
354817146969802ea8091c8a6ee3a007046ef4e8 | 0d521a8e4ef68a2ef8ceaf74f2be71eff3a5d18c | /plantuml/sequence_diagram_car_checkout.plantuml | c897bdfa457893c9e6a044bd6bda34c19d332f10 | [] | no_license | gmvist/parking | 464e92ce0165adfab9ea2f0ab20b6e6b4ffc421e | 4373555be4987c26cbde7dd9e69b639503e2d709 | refs/heads/master | 2021-05-11T21:03:15.307784 | 2018-01-25T09:15:09 | 2018-01-25T09:15:43 | 117,458,141 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 410 | plantuml | @startuml
actor API_Client
activate IParking
API_Client --> IParking : request car checkout
activate IParkingSlot
IParking --> IParkingSlot : getArrivalTime()
activate ICar
IParkingSlot --> ICar : releaseCar()
ICar --> IParkingSlot : unpark()
deactivate ICar
IParkingSlot --> IParking : parking slot free
deactivate IParkingSlot
IParking --> API_Client : generate bill
deactivate IParking
@enduml | false | true | false | false | sequence |
0d165eacb76a626c07e5a549ae5cb6d355b6e1c3 | aa9620300bc8488f53437e0f5faab824225aab73 | /ibex_pres/import_seq_six.plantuml | b66b742da9fa83582cba9ed131cb690ee5e06fc3 | [
"BSD-3-Clause"
] | permissive | atavory/atavory.github.io | 94daa1b05141ff5c6e9ebfb5055fc87cfd333ca3 | 43d98b45150411d83ab75a92a6d4ab9226927ef0 | refs/heads/master | 2021-01-19T06:15:43.197765 | 2019-11-18T10:58:38 | 2019-11-18T10:58:38 | 100,634,235 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 606 | plantuml | @startuml
skinparam monochrome true
skinparam shadowing false
actor user
autonumber 1 "<font color=grey>"
user -[#grey]> runtime: import ibex.sklearn.linear_model
runtime -[#grey]> ibex: import ibex
runtime -[#grey]> ibex.sklearn: import ibex.sklearn
ibex.sklearn -[#grey]> ibex.sklearn: register sys.metapath
runtime -[#grey]> loader: import ibex.sklearn.linear_model
autonumber 6 "<font color=black>"
loader -[#black]> sklearn.linear_model: __dir__
autonumber 7 "<font color=grey>"
sklearn.linear_model -[#grey]> loader: members
loader -[#grey]> loader: inspect
loader -[#grey]> loader: wrap
@enduml
| false | true | false | false | sequence |
5a547188bb8254c82a8749f9a1ffaa563c08bc76 | 2dbbb35ee1c60c428317f805da9634baa2cae46e | /doc/conference-data-model.puml | cb2c4d9751fa0ce76f0f157f2ffb8e9c7199ee8a | [] | no_license | boltho17/pgr200-eksamen | 05ac506918cae3d2cb42e4533c7685a397e8f1f3 | 683afecdbcbe439185791b11f2eddd75830e0d7f | refs/heads/master | 2020-04-05T00:10:16.422622 | 2018-11-13T00:15:03 | 2018-11-13T00:15:03 | 156,386,099 | 1 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 239 | puml | @startuml
class Talks {
title
description
topic
}
class Days {
date
}
Conference -down- "*" Days
Conference -down- "*" Tracks
Days -down- "*" Timeslots
Tracks -down- "*" Timeslots
Timeslots -left- "0..1" Talks
@enduml
| false | true | false | false | class |
c17f06952a4d8700dcb158163db03b1cc870384f | 4f4913977a463b89502c9aa661d4e54ef0792121 | /cinehub/src/main/java/com/unisa/cinehub/data/entity/entity.plantuml | 450737c776b49528673b0d3e79c0cf493081b0b1 | [
"Unlicense"
] | permissive | x-mariachiara/CineHub | 3472c816ecc0101b2f9af8253384c41003a3e7bf | be90bcfa8f3e5d62a3f3a064a693040adb9274f7 | refs/heads/main | 2023-03-21T03:11:22.309767 | 2021-03-10T15:11:33 | 2021-03-10T15:11:33 | 300,381,268 | 3 | 1 | null | 2021-01-29T16:58:38 | 2020-10-01T18:22:23 | null | UTF-8 | PlantUML | false | false | 13,998 | plantuml | @startuml
title ENTITY's Class Diagram\n
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Cast {
- nome: String
- cognome: String
- ruoli: Collection<Ruolo>
+ getNome(): String
+ getCognome(): String
+ getRuoli(): Collection<Ruolo>
+ setNome(nome: String): void
+ setCognome(cognome: String): void
+ setRuoli(ruoli: Collection<Ruoli>): void
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Film {
- listaRecensioni: List<Recensioni>
+ getListaRecensioni(): List<Recensioni>
+ setListaRecensioni(listaRecensioni: List<Recensioni>): void
+ getMediaVoti(): Double
+ aggiungiRecensione(recensione: Recensione): void
+ rimuoviRecensione(recensione: Recensione): void
+ getListaRecensioni(): List<Recensioni>
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Genere {
- nomeGenere: NomeGenere
- mediaCollegati: Set<Media>
+ getNomeGenere(): NomeGenere
+ getMediaCollegati(): Set<Media>
+ setNomeGenere(nomeGenere: NomeGenere): void
+ setMediaCollegati(mediaCollegati: Set<Media>): void
+ getTuttiGeneri(): Set<Genere>
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
abstract class com.unisa.cinehub.data.entity.Media {
- titolo: String
- annoUscita: Integer
- sinossi: String
- linkTrailer: String
- linkLocandina: String
- mediaVoti: Double
- generi: Set<Genere>
- ruoli: Collection<Ruolo>
- visibile: Boolean
+ getTitolo(): String
+ getAnnoUscita(): Integer
+ getSinossi(): String
+ getLinkTrailer(): String
+ getLinkLocandina(): String
+ getMediaVoti(): Double
+ getGeneri(): Set<Genere>
+ getRuoli(): Collection<Ruoli>
+ getVisibile(): Boolean
+ setTitolo(titolo: String): void
+ setAnnoUscita(annoUscita: Integer): void
+ setSinossi(sinossi: String): void
+ setLinkTrailer(linkTrailer: String): void
+ setLinkLocandina(linkLocandina: String): void
+ setMediaVoti(mediaVoti: Double): void
+ setGeneri(generi: Set<Genere>): void
+ setRuoli(ruoli: Collection<Ruolo>): void
+ setVisibile(Boolean visibile): void
+ checkMedia(media: Media): boolean
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.MiPiace {
- tipo: boolean
- createdAt: Timestamp
- recensoreId: String
- recensioneId: Long
- recensore: Recensore
- recensione: Recensione
+ isTipo(): boolean
+ getCreatedAt(): Timestamp
+ getRecensoreId(): String
+ getRecensioneId(): Long
+ getRecensore(): Recensore
+ getRecensione(): Recensione
+ setTipo(tipo: Tipo): void
+ setCreatedAt(createdAt: Timestamp): void
+ setRecensoreId(recensoreId: String): void
+ setRecensioneId(recensioneId: Long): void
+ setRecensore(recensore: Recensore): void
+ setRecensione(recensione: Recensione): void
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Moderatore {
- tipo: Tipo
+ getTipo()
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Puntata {
- titolo: String
- numeroPuntata: Integer
- sinossi: String
- stagioneId: StagioneID
- stagione: Stagione
- listaRecensioni: List<Recensione>
- mediaVoti: Double
- visibile: Boolean
+ getTitolo(): String
+ getNumeroPuntata(): Integer
+ getSinossi(): String
+ getStagioneID(): StagioneID
+ getStagione(): Stagione
+ getListaRecensioni(): List<Recensione>
+ getMediaVoti(): Double
+ getVisibile(): Boolean
+ setTitolo(titolo: String): void
+ setNumeroPuntata(numeroPuntata: Integer): void
+ setSinossi(sinossi: String): void
+ setStagioneID(stagioneID: StagioneID): void
+ setStagione(stagione: Stagione): void
+ setListaRecensioni(listaRecensioni: List<Recensione>): void
+ setMediaVoti(mediaVoti: Double): void
+ setVisibile(Boolean visibile): void
+ aggiungiRecensione(recensione: Recensione): void
+ rimuoviRecensioen(recensione: Recensione): void
+ checkPuntata(p: Puntata): boolean
- calcolaMediaVoti(): Double
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
interface com.unisa.cinehub.data.entity.Recensibile {
{abstract} + aggiungiRecensione(recensione: Recensione): void
{abstract} + getListaRecensioni(): List<Recensione>
{abstract} + getMediaVoti(): Double
{abstract} + rimuoviRecensione(recensione: Recensione): void
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Recensione {
- createdAt: Timestamp
- contenuto: String
- punteggio: Integer
- recensore: Recensore
- listaSegnalazioni: List<Segnalazione>
- listaMiPiace: List<MiPiace>
- listaRisposte: List<Recensione>
- padre: Recensione
- film: Film
- puntata: Puntata
+ getCreatedAt(): Timestamp
+ getContenuto(): String
+ getPunteggio(): Integer
+ getRecensore(): Recensore
+ getListaSegnalazioni(): List<Segnalazione>
+ getListaMiPiace(): List<MiPiace>
+ getListaRisposte(): List<Recensione>
+ getPadre(): Recensione
+ getFilm(): Film
+ getPuntata(): Puntata
+ setCreatedAt(createdAt: Timestamp): void
+ setContenuto(contenuto: String): void
+ setPunteggio(punteggio: Integer): void
+ setRecensore(recensore: Recensore): void
+ setListaSegnalazioni(listaSegnalazioni: List<Segnalazione>): void
+ setListaMiPiace(listaMiPiace: List<MiPiace>): void
+ setListaRisposte(listaRisposte: List<Recensioen>): void
+ setPadre(padre: Recensione): void
+ setFilm(film: Film): void
+ setPuntata(puntata: Puntata): void
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Recensore {
- listaRecensioni: List<Recensione>
- listaSegnalazioni: List<Segnalazione>
- listaMiPiace: List<MiPiace>
+ getListaRecensioni(): List<Recensione>
+ getListaSegnalazioni(): List<Segnalazione>
+ getListaMiPiace(): List<MiPiace>
+ setListaRecensioni(listaRecensione: List<Recensione>): void
+ setListaSegnalazioni(listaSegnalazioni: List<Segnalazione>): void
+ setListaMiPiace(listaMiPiace: List<MiPiace>): void
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.ResponsabileCatalogo {
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Ruolo {
- tipo : Tipo
- castId : Long
- mediaId : Long
- cast : Cast
- media : Media
+ getTipo(): Tipo
+ getCastId(): Long
+ getMediaId(): Long
+ getCast(): Cast
+ getMedia(): Media
+ setTipo(tipo: Tipo): void
+ setCastId(castId: Long): void
+ setMediaId(mediaId: Long): void
+ setCast(cast: Cast): void
+ setMedia(media: Media): void
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Segnalazione {
- createdAt: Timestamp
- segnalatoreId: String
- recensoreId: String
- recensioneId: Long
- recensore: Recensore
- recensione: Recensione
+ getCreatedAt(): Timestamp
+ getSegnalatoreId(): String
+ getRecensoreId(): String
+ getRecensioneId(): Long
+ getRecensore(): Recensore
+ getRecensione(): Recensione
+ setCreatedAt(createdAt: Timestamp): void
+ setSegnalatoreId(segnalatoreId: String): void
+ setRecensoreId(recensoreId: String): void
+ setRecensioneId(recensioneId: Long): void
+ setRecensore(recensore: Recensore): void
+ setRecensione(recensione: Recensione): void
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.SerieTv {
- stagioni : Collection<Stagione>
+ getStagioni(): Stagione stagione
+ setStagioni(stagioni: Stagione): void
+ calcolaMediaVoti(): void
- calcolaMediaVotiStagione(Stagione stagione): Double
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
class com.unisa.cinehub.data.entity.Stagione {
- numeroStagione: Integer
- serieTvId: Long
- puntate: Collection<Puntata>
- serieTv: SerieTv
+ getNumeroStagione(): Integer
+ getSerieTvId(): Long
+ getPuntate(): Collection<Puntata>
+ getSerieTv(): SerieTv
+ setNumeroStagione(numeroStagione: Integer): void
+ setSerieTvId(serieTvId: Long): void
+ setPuntate(puntate: Collection<Puntata>): void
+ setSerieTv(serietv: SerieTv): void
}
}
}
}
namespace com.unisa.cinehub {
namespace data {
namespace entity {
abstract class com.unisa.cinehub.data.entity.Utente {
- email: String
- nome: String
- cognome: String
- dataNascita: LocalDate
- username: String
- password: String
- isBannato: Boolean
- isActive: Boolean
+ getEmail(): String
+ getNome(): String
+ getCognome(): String
+ getDataNascita(): LocalDate
+ getUsername(): String
+ getPassword(): String
+ getBannato(): Boolean
+ getActive(): Boolean
+ setEmail(email: String): void
+ setNome(nome: String): void
+ setCognome(cognome: String): void
+ setDataNascita(dataNascita: LocalDate): void
+ setUsername(username: String): void
+ setPassword(password: String): void
+ setBannato(bannato: Boolean): void
+ setActive(active: Boolean): void
}
}
}
}
com.unisa.cinehub.data.entity.Film .up.|> com.unisa.cinehub.data.entity.Recensibile
com.unisa.cinehub.data.entity.Film -up-|> com.unisa.cinehub.data.entity.Media
com.unisa.cinehub.data.entity.MiPiace -- com.unisa.cinehub.data.entity.Recensione
com.unisa.cinehub.data.entity.MiPiace -- com.unisa.cinehub.data.entity.Recensore
com.unisa.cinehub.data.entity.Moderatore -up-|> com.unisa.cinehub.data.entity.Utente
com.unisa.cinehub.data.entity.Puntata .up.|> com.unisa.cinehub.data.entity.Recensibile
com.unisa.cinehub.data.entity.Puntata --* com.unisa.cinehub.data.entity.Stagione
com.unisa.cinehub.data.entity.Recensione -- com.unisa.cinehub.data.entity.Film
com.unisa.cinehub.data.entity.Recensione o-- com.unisa.cinehub.data.entity.Recensione
com.unisa.cinehub.data.entity.Recensione -- com.unisa.cinehub.data.entity.Puntata
com.unisa.cinehub.data.entity.Recensione --o com.unisa.cinehub.data.entity.Recensore
com.unisa.cinehub.data.entity.Media o-- com.unisa.cinehub.data.entity.Genere
com.unisa.cinehub.data.entity.Recensore -up-|> com.unisa.cinehub.data.entity.Utente
com.unisa.cinehub.data.entity.ResponsabileCatalogo -up-|> com.unisa.cinehub.data.entity.Utente
com.unisa.cinehub.data.entity.Ruolo --o com.unisa.cinehub.data.entity.Cast
com.unisa.cinehub.data.entity.Ruolo --o com.unisa.cinehub.data.entity.Media
com.unisa.cinehub.data.entity.Segnalazione -- com.unisa.cinehub.data.entity.Recensione
com.unisa.cinehub.data.entity.Segnalazione -- com.unisa.cinehub.data.entity.Recensore
com.unisa.cinehub.data.entity.SerieTv -up-|> com.unisa.cinehub.data.entity.Media
com.unisa.cinehub.data.entity.Stagione --* com.unisa.cinehub.data.entity.SerieTv
right footer
PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it)
For more information about this tool, please contact philippe.mesmeur@gmail.com
endfooter
@enduml
| false | true | false | false | class |
938a5bbffccc5ef350db33bb4cea1d5cf0233db8 | a88d29694a11438fe70f76a5a17071e9aecd86b6 | /uml/algoritmo.puml | cc9e1ca05f279e40ae0864eb5048b230e30bf52e | [] | no_license | predicador37/dieta-clips | 8aa04147ef3c3aea19e675165c17449aeb16ef38 | c0f5b30bdcc604fb99b34dd3037648300a7464bb | refs/heads/master | 2020-07-20T01:38:51.672478 | 2017-02-01T18:14:12 | 2017-02-01T18:14:12 | 73,750,316 | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 2,268 | puml | @startuml
[*] --> hidratos_1
hidratos_1:grupo 3
hidratos_1: hidratos < 0.5 rcd
hidratos_1: proteinas < 0.05 rcd
hidratos_1: 0.02 rcd < grasas-mono < 0.05 rcd
hidratos_1 --> hidratos_2
hidratos_2: grupo 3
hidratos_2: hidratos < 0.45 rcd
hidratos_2: proteinas < 0.06 rcd
hidratos_2: grasas-mono < 0.12 rcd
hidratos_2 --> hidratos_3
hidratos_3: grupos 3,6
hidratos_3: 0.45 * 0.5 rcd < hidratos < 0.45 rcd
hidratos_3: proteinas < 0.07 rcd
hidratos_3: grasas < 0.35 * 0.2 rcd
hidratos_3 --> hidratos_4
hidratos_4: grupos 3,6
hidratos_4: hidratos < 0.45 rcd
hidratos_4: proteinas < 0.075 rcd
hidratos_4 --> hidratos_5
hidratos_5: grupos 3,6
hidratos_5: hidratos < 0.45 rcd
hidratos_5: proteinas < 0.08 rcd
hidratos_5 --> hidratos_6
hidratos_6: grupos 3,6
hidratos_6: 0.40 rcd < hidratos < 0.45 rcd
hidratos_6: proteinas < 0.08 rcd
hidratos_3: grasas < 0.35 * 0.3 rcd
hidratos_6 --> verduras_1
verduras_1: grupo 4
verduras_1: hidratos < 0.48 rcd
verduras_1: proteinas < 0.09 rcd
verduras_1 --> verduras_2
verduras_2: grupo 4
verduras_2: hidratos < 0.49 rcd
verduras_2: proteinas < 0.1 rcd
verduras_2 --> verduras_3
verduras_3: grupo 4
verduras_3: hidratos < 0.5 rcd
verduras_3: proteinas < 0.11 rcd
verduras_3 --> frutas_1
frutas_1: grupo 5
frutas_1: hidratos < 0.52 rcd
frutas_1: proteinas < 0.12 rcd
frutas_1: grasas-mono < 0.13 rcd
frutas_1: grasas < 0.35 * 0.55 rcd
frutas_1 --> frutas_2
frutas_2: grupo 5
frutas_2: hidratos < 0.54 rcd
frutas_2: proteinas < 0.13 rcd
frutas_2: grasas-mono < 0.13 rcd
frutas_2: grasas < 0.35 * 0.55 rcd
frutas_2 --> lacteos_1
lacteos_1: grupo 1
lacteos_1: hidratos < 0.56 rcd
lacteos_1: proteinas < 0.14 rcd
lacteos_1: grasas < 0.35 * 0.6 rcd
lacteos_1 --> lacteos_2
lacteos_2: grupo 1
lacteos_2: proteinas < 0.14 rcd
lacteos_2: grasas < 0.35 * 0.6 rcd
lacteos_2 --> proteinas_1
proteinas_1: grupo 2
proteinas_1: proteinas < 0.15 rcd
proteinas_1: grasas < 0.35 * 0.63 rcd
proteinas_1 --> proteinas_2
proteinas_2: grupo 2
proteinas_2: proteinas < 0.16 rcd
proteinas_2: grasas < 0.35 * 0.8 rcd
proteinas_2 --> grasas_1
grasas_1: grupo 7
grasas_1: 0.14 rcd < grasas-mono < 0.21 rcd
grasas_1 --> grasas_2
grasas_2: grupo 7
grasas_2: 0.14 rcd < grasas-mono < 0.21 rcd
grasas_2 --> otro
otro: max (alimentos)
otro --> [*]
@end
| false | true | false | false | state |
af518593df716878bb8e73291f0a20b34d3e7b23 | 99fd128e25c1aef4813198b9594d1366b6e23943 | /Techs/software-craft/know-design/design-pattern/creational-patterns/factory/abstract_factory/abstract_factory_class.puml | 3e1d08f2abab5414c1adaddecdf74df84dffc967 | [] | 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 | 749 | puml | @startuml
class Client {
}
class AbstractFactory {
{abstract} CreateProductA()
{abstract} CreateProductB()
}
Client -> AbstractFactory
class ConcreteFactory1 {
CreateProductA()
CreateProductB()
}
class ConcreteFactory2 {
CreateProductA()
CreateProductB()
}
AbstractFactory <|.. ConcreteFactory1
AbstractFactory <|.. ConcreteFactory2
' Product Series
class AbstractProductA {
}
AbstractProductA <|.. ProductA1
AbstractProductA <|.. ProductA2
class AbstractProductB {
}
AbstractProductB <|.. ProductB1
AbstractProductB <|.. ProductB2
ConcreteFactory1 --> ProductA1
ConcreteFactory1 --> ProductB1
ConcreteFactory2 --> ProductA2
ConcreteFactory2 --> ProductB2
Client --> AbstractProductA
Client --> AbstractProductB
@enduml
| false | true | false | false | class |
d5169bf076759401677eb93e6c4b7f94d545c5f0 | ddd27ef7207e3b508ba557b6f5ca1b2bd172a734 | /app/UML/QuinnConcUseCase2.puml | 243cd06a7b4307ccc8175c893344c1b01de4fe1e | [] | no_license | QRP0002/Wireless_Quote | 7c095f66043b7780f03d624be2fe7956b3369a27 | 0b4762a69db0ebada3d518573e7618a0e57f0368 | refs/heads/master | 2020-06-04T02:48:51.629364 | 2015-05-01T12:49:49 | 2015-05-01T12:49:49 | 33,549,841 | 0 | 0 | null | 2015-04-16T20:57:50 | 2015-04-07T14:57:28 | Java | UTF-8 | PlantUML | false | false | 778 | puml | @startuml
Employee -> SystemHomePage : login()
activate Employee
activate SystemHomePage
SystemHomePage -> SystemHomePageController : onCreate()
activate SystemHomePageController
SystemHomePageController -> LoginTextBox : onCreate
activate LoginTextBox
SystemHomePageController -> LoginTextBox : Display fields
Employee -> LoginTextBox : Enter username and password
Employee -> LoginTextBox : Submit Information
LoginTextBox --> SystemHomePageController : submitInfo()
deactivate LoginTextBox
SystemHomePageController -> ServerList : verifyUser()
activate ServerList
ServerList --> SystemHomePageController : login(False)
deactivate ServerList
SystemHomePageController --> SystemHomePage : createFailure(True)
SystemHomePage --> Employee : Display Invalid Information
@enduml | false | true | false | false | sequence |
28bdb95915272e287384ef2a13b8a153df098414 | 3a0926879880ab4c969d1ece367bec474406c8dc | /server/docs/er.plantuml | 49baf9b624ebd3987c56282f5ab2a776bc77f2b4 | [
"MIT"
] | permissive | lighthou/AuthOut | 15798048c648c88bfe8959db163342f3b40f06c6 | 13c02faa7d40c0592b1a81c34ada53a5f913fe6c | refs/heads/master | 2020-04-21T23:19:29.510990 | 2018-10-26T05:31:40 | 2018-10-26T05:31:40 | null | 0 | 0 | null | null | null | null | UTF-8 | PlantUML | false | false | 865 | plantuml | @startuml
entity Child {
* id
--
* status
* first_name
* last_name
* date_of_birth
}
entity Parent {
* id
--
* email
* first_name
* last_name
* date_of_birth
* mobile_number
* image_id
}
entity Institution {
* id
--
* name
* street_address
* suburb
* state
* postcode
}
entity Entry {
* id
--
* date
* time
* status
}
entity Account {
* id
* username
--
* password ( Hash )
* access_level
}
' Child can have 1 or more parents
' Parent can have multiple children
Child }|--{ Parent : Guardian
Parent }o--{ Child : Trusted Guardian
Child ||--{ Institution : Goes to / Has
' Parent can share their children with other people
'Parent }o--o{ Parent : Trusts
' Entry has exactly 1 Parent and 1 Child
Entry ||-- Institution : contains
Entry ||-- Parent : contains
Entry ||-- Child : contains
@enduml | false | true | false | false | sequence |
589c3a6b2db1f00a8d8a6c159d586c5e372aab27 | 9d2eda8a3c0d4699d9106f0275edc5c704320f3b | /docs/UseCase.puml | 221657230ad0e058341f719aa80fa8aaab077043 | [] | no_license | baoch254/nyla-fashion | ded991f4380c3b5a4922e18b20166272079fcdbb | 8eab280e946b5d600ba1b33d0119db36175fee8b | refs/heads/main | 2023-05-04T05:19:51.144588 | 2021-05-05T13:25:39 | 2021-05-05T13:25:39 | 352,676,773 | 0 | 0 | null | 2021-03-29T16:17:41 | 2021-03-29T14:40:45 | TypeScript | UTF-8 | PlantUML | false | false | 1,871 | puml | @startuml
note "'Manage' usually include create, update, delete (or banned), read" as term1
' Configuration
left to right direction
' Actors
package Customer {
:Guest: as Guest
:Customer: as Cuz
}
:Administrator: as Admin
' Extends
Guest <|- Cuz
rectangle "Sober E-commerce" {
' Mgmt Functions
package "Mgmt" {
(Manage customer) as (customer.mgmt)
(Manage user) as (user.mgmt)
(Manage category) as (category.mgmt)
(Manage collection) as (collection.mgmt)
(Manage product) as (product.mgmt)
(Manage order) as (order.mgmt)
(Manage promotion) as (promotion.mgmt)
(Manage blog) as (blog.mgmt)
(Manage subscription) as (subscription.mgmt)
(Manage email) as (email.mgmt)
}
' Functions
package "Features" {
(Login|Logout) as (login.logout)
(Register) as (register)
(Chatting) as (chatting)
(Subscribe news) as (subscribe.news)
(Browsing product) as (browsing.product)
(Check Out) as (check.out)
(Tracking order) as (tracking.order)
(My order) as (my.order)
(Cancelling order) as (cancelling.order)
(Payment) as (payment)
}
' Relative functions
(my.order) <. (cancelling.order): extend
(check.out) .> (payment): include
' Directions
' Admin
Admin --> (customer.mgmt)
Admin --> (user.mgmt)
Admin --> (category.mgmt)
Admin --> (collection.mgmt)
Admin --> (product.mgmt)
Admin --> (promotion.mgmt)
Admin --> (blog.mgmt)
Admin --> (subscription.mgmt)
Admin --> (order.mgmt)
Admin --> (email.mgmt)
' Guest
(subscribe.news) <-- Guest
(browsing.product) <-- Guest
(check.out) <-- Guest
(tracking.order) <-- Guest
(payment) <-- Guest
(register) <-- Guest
' Customer
(my.order) <-- Cuz
(cancelling.order) <-- Cuz
' Both
Admin --> (chatting)
(chatting) <-- Guest
Admin --> (login.logout)
(login.logout) <-- Cuz
}
@enduml
| false | true | false | false | uml-unknown |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.