-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgebouw.puml
73 lines (43 loc) · 1.19 KB
/
gebouw.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
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
@startuml
!include https://raw.githubusercontent.com/FrankKooij/model/master/opmaak.iuml
hide circle
hide empty members
hide stereotype
hide <<enumeration>>
'' hide attributes
hide methods
hide namespace
'' -------------------------------------------------------------------------------------------------
'' hide AbstractObject
'' =================================================================================================
'' title Concept-BMGI
namespace NEN3610 {
'' note "obv discussie van 26 mei 2021" as versie
Constructie <|-- Gebouw
Constructie <|-- Kunstwerk
abstract class Constructie <<Objecttype>> {
}
abstract class Gebouw <<Objecttype>> {
}
abstract class Kunstwerk <<Objecttype>> {
}
}
namespace gebouwendomein {
class Gebouw <<Objecttype>> {
}
class Gebouwdeel <<Objecttype>> {
}
NEN3610.Gebouw <|-- Gebouw
NEN3610.Constructie <|-- Gebouwdeel
Gebouw *- Gebouwdeel
}
namespace kunstwerkendomein {
class Kunstwerkdeel <<Objecttype>> {
}
class Kunstwerk <<Objecttype>> {
}
NEN3610.Kunstwerk <|-- Kunstwerk
NEN3610.Constructie <|-- Kunstwerkdeel
Kunstwerk *- Kunstwerkdeel
}
@enduml