Update Class Diagram authored by Kovács Gergely Zsolt's avatar Kovács Gergely Zsolt
......@@ -30,7 +30,7 @@ package Model.Common {
}
Simulation --|> Singleton
Simulation --> Park
Simulation ---> MaintenanceDispatcher
Simulation --> MaintenanceDispatcher
class Park {
- balance : int
......@@ -40,6 +40,7 @@ package Model.Common {
+ GetBalance() : int
+ GetEntryFee() : int
+ GetBuildings() : Building[]
+ GetEntrance() : Building
+ ModifyBalance(int)
+ AddBuilding(Building)
+ SetEntryFee(int)
......@@ -192,7 +193,7 @@ package Model.People {
+ GetProperties() {override}
}
MaintenanceGuy --|> Staff
MaintenanceDispatcher *-- "-maintainers\n*" MaintenanceGuy
MaintenanceDispatcher *--- "-maintainers\n*\n" MaintenanceGuy
}
......
......