diff options
Diffstat (limited to 'Bachelorizer.puml')
-rw-r--r-- | Bachelorizer.puml | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/Bachelorizer.puml b/Bachelorizer.puml deleted file mode 100644 index 65d4429..0000000 --- a/Bachelorizer.puml +++ /dev/null @@ -1,45 +0,0 @@ -@startuml -abstract class Person { - +name -} - -abstract class Employee { - +ssn -} - -class Tap { -} - -enum VipRole { - DEAN - RESEARCHER - RESEARCH_ASSISTANT -} - -class Vip { - +VipRole role -} - -class Student { -} - -Person <|-- Employee -Employee <|-- Tap -Employee <|-- Vip -Person <|-- Student - -abstract class Org { - +name -} - -class Institute { -} - -class Faculty { - +address -} - -Org <|-- Institute -Org <|-- Faculty -Institute <|-- Faculty -@enduml |