~aleteoryx/muditaos

ref: 76dfa98656ced9f73b291e80e26be3b2b325de97 muditaos/module-apps/apps-common/notifications/doc/notifications_model_structure.puml -rw-r--r-- 749 bytes
76dfa986 — Wojtek Rzepecki [EGD-7666] Fix alarms time zones 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@startuml
skinparam BackgroundColor F0F0F0

skinparam linetype ortho

node "GUI Model View Porvider" {
    class ListItem
    class ListView
    class InternalModel
    class Provider

    ListView "use"-l--> Provider
    ListView "use"--> ListItem
}
class "NotificationsChangedParams" as params

node "Notification ListItems"{
    class "NotificationListItem" as notifLI
    class "NotificationWithEventCounter" as notifCounter
    class "NotificationWithOnOffButton" as notifButton

    notifLI <|-- notifCounter
    notifLI <|-- notifButton
}

node "Notifications Model"{
    class "NotificationsModel" as model
}

model "create"*..-> notifLI
model "use"-d--> params

Provider <|-- model
InternalModel <|-- model
ListItem <|-- notifLI



@enduml