-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathclasses.dot
113 lines (98 loc) · 1.52 KB
/
classes.dot
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
digraph FabricClasses {
label = "Fabric Class Inheritances"
rankdir = "TB"
subgraph cluster_binaries {
label = "Executables"
"fabric"
"fabric-http"
}
subgraph cluster_generics {
label = "Generics"
"Object"
"EventEmitter"
}
subgraph cluster_core {
label = "@fabric/core"
"Actor"
"Block"
"Bitcoin"
"Chain"
"Channel"
"Contract"
"Environment"
"Key"
"Lightning"
"Message"
"Peer"
"Reader"
"Service"
"Signer"
"Transaction"
"Tree"
"Wallet"
subgraph cluster_http {
label = "@fabric/http"
"Component"
"Remote"
"Site"
"HTTPClient"
"HTTPServer"
subgraph cluster_components {
label = "Components"
"FabricComponent"
}
}
}
subgraph cluster_candidates {
label = "Candidates"
"App"
"CLI"
}
subgraph cluster_legacy {
label = "Legacy"
"Entity"
}
"Actor" -> {
"Block"
"Chain"
"Message"
"Service"
"Signer"
"Transaction"
"Tree"
"Remote"
"HTTPClient"
}
"App" -> {
"CLI"
}
"CLI" -> {
"fabric"
"fabric-http"
}
"Contract" -> {
"Distribution"
"Federation"
}
"Entity" -> "Environment"
"EventEmitter" -> {
"Actor"
"Entity"
"Reader"
}
"Object" -> "EventEmitter"
"Object" -> "Key"
"Service" -> {
"App"
"Bitcoin"
"Channel"
"Contract"
"Lightning"
"Peer"
"Wallet"
"Site"
"HTTPServer"
"Component"
"FabricComponent"
}
}