-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomponent_hierarchy.puml
33 lines (31 loc) · 1.16 KB
/
component_hierarchy.puml
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
@startuml
Counter <|-- Component
enable_shared_from_this <|-- Component
UserData <|-- Component
Component <|-- CoreComponent
RecalculateTarget <|-- CoreComponent
CoreComponent <|-- ActionableComponent
ActionableComponent <|-- EditTextComponent
ActionableComponent <|-- PagerComponent
ActionableComponent <|-- ScrollableComponent
ScrollableComponent <|-- MultiChildScrollableComponent
MultiChildScrollableComponent <|-- GridSequenceComponent
MultiChildScrollableComponent <|-- SequenceComponent
ScrollableComponent <|-- ScrollViewComponent
ActionableComponent <|-- TouchableComponent
TouchableComponent <|-- TouchWrapperComponent
TouchableComponent <|-- VectorGraphicComponent
CoreComponent <|-- ContainerComponent
CoreComponent <|-- FrameComponent
CoreComponent <|-- ImageComponent
CoreComponent <|-- TextComponent
CoreComponent <|-- VideoComponent
CoreComponent : layout()
CoreComponent : ensureLayout(bool)
CoreComponent : processLayoutChanges()
ContainerComponent : processLayoutChanges()
MultiChildScrollableComponent : processLayoutChanges()
GridSequenceComponent : processLayoutChanges()
PagerComponent : processLayoutChanges()
VectorGraphicComponent : processLayoutChanges()
@enduml