This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathuml_class_dependencies.txt
115 lines (90 loc) · 1.82 KB
/
uml_class_dependencies.txt
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@startuml
'no shadow
skinparam shadowing false
'size of picture
skinparam dpi 100
'color
skinparam package {
BackgroundColor AliceBlue
ArrowColor CornflowerBlue
BorderColor CornflowerBlue
}
skinparam component {
BackgroundColor AliceBlue
ArrowColor CornflowerBlue
BorderColor CornflowerBlue
}
skinparam note {
BackgroundColor AliceBlue
ArrowColor CornflowerBlue
BorderColor CornflowerBlue
}
skinparam stereotypeCBackgroundColor OldLace
title ee-outliers - Class Dependencies
package "app" {
[outliers]
}
package "app/helpers" {
[analyzer]
[es]
[housekeeping]
[logging]
[notifier]
[outlier]
[settings]
[singleton]
[singletons]
[watchers]
[utils]
}
package "app/analyzers" {
[metrics]
[simplequery]
[terms]
[word2vec]
}
[outliers] --> [singletons]
[outliers] --> [utils]
[outliers] --> [housekeeping]
[outliers] --> [watchers]
[outliers] --> [simplequery]
[outliers] --> [word2vec]
[outliers] --> [terms]
[outliers] --> [metrics]
[singletons] --> [settings]
[singletons] --> [logging]
[singletons] --> [es]
[settings] --> [singleton]
[utils] --> [singletons]
[outlier] --> [singletons]
[outlier] --> [utils]
[logging] --> [singleton]
[housekeeping] --> [singletons]
[housekeeping] --> [watchers]
[es] --> [singleton]
[es] --> [notifier]
[es] --> [utils]
[es] --> [logging]
[es] --> [outlier]
[analyzer] --> [singletons]
[analyzer] --> [utils]
[analyzer] --> [outlier]
[metrics] --> [singletons]
[metrics] --> [utils]
[metrics] --> [analyzer]
[simplequery] --> [singletons]
[simplequery] --> [analyzer]
[terms] --> [singletons]
[terms] --> [utils]
[terms] --> [analyzer]
[word2vec] --> [utils]
[word2vec] --> [singletons]
[word2vec] --> [analyzer]
note as N1
<b>Legend:</b>
An arrow indicates that
the starting class
imports the destination
class
end note
@enduml