summaryrefslogtreecommitdiff
path: root/tests/pyreverse/data/classes_colorized.puml
blob: 25c0f34e977e2e262d1b72b5a773666663e697a1 (plain)
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
@startuml classes_colorized
set namespaceSeparator none
class "Ancestor" as data.clientmodule_test.Ancestor #aliceblue {
  attr : str
  cls_member
  get_value()
  set_value(value)
}
class "<color:red>CustomException</color>" as data.suppliermodule_test.CustomException #aliceblue {
}
class "DoNothing" as data.suppliermodule_test.DoNothing #aliceblue {
}
class "DoNothing2" as data.suppliermodule_test.DoNothing2 #aliceblue {
}
class "DoSomething" as data.suppliermodule_test.DoSomething #aliceblue {
  my_int : Optional[int]
  my_int_2 : Optional[int]
  my_string : str
  do_it(new_int: int) -> int
}
class "Interface" as data.suppliermodule_test.Interface #aliceblue {
  get_value()
  set_value(value)
}
class "Specialization" as data.clientmodule_test.Specialization #aliceblue {
  TYPE : str
  relation
  relation2
  top : str
}
data.clientmodule_test.Specialization --|> data.clientmodule_test.Ancestor
data.clientmodule_test.Ancestor ..|> data.suppliermodule_test.Interface
data.suppliermodule_test.DoNothing --* data.clientmodule_test.Ancestor : cls_member
data.suppliermodule_test.DoNothing --* data.clientmodule_test.Specialization : relation
data.suppliermodule_test.DoNothing2 --* data.clientmodule_test.Specialization : relation2
@enduml