~aleteoryx/muditaos

ref: b95894a8abc10cddf0b58dda4b2569b01eec0d7e muditaos/module-apps/apps-common/notifications/doc/notifications_model_structure.puml -rw-r--r-- 749 bytes
b95894a8 — Lefucjusz [MOS-1064] Fix no input language selected for French/Spanish 2 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