UML generation: Mark the urm-maven-plugin execution to be ignored in Eclipse and recreate all .puml files

This commit is contained in:
Ilkka Seppälä
2016-09-18 17:51:09 +03:00
parent b030cd4eba
commit 6026eedd51
78 changed files with 1676 additions and 1609 deletions

View File

@ -13,14 +13,6 @@ package com.iluwatar.model.view.controller {
+ setNourishment(nourishment : Nourishment)
+ toString() : String
}
class App {
+ App()
+ main(args : String[]) {static}
}
class GiantView {
+ GiantView()
+ displayGiant(giant : GiantModel)
}
class GiantController {
- giant : GiantModel
- view : GiantView
@ -33,6 +25,23 @@ package com.iluwatar.model.view.controller {
+ setNourishment(nourishment : Nourishment)
+ updateView()
}
class GiantView {
+ GiantView()
+ displayGiant(giant : GiantModel)
}
class App {
+ App()
+ main(args : String[]) {static}
}
enum Health {
+ DEAD {static}
+ HEALTHY {static}
+ WOUNDED {static}
- title : String
+ toString() : String
+ valueOf(name : String) : Health {static}
+ values() : Health[] {static}
}
enum Nourishment {
+ HUNGRY {static}
+ SATURATED {static}
@ -51,15 +60,6 @@ package com.iluwatar.model.view.controller {
+ valueOf(name : String) : Fatigue {static}
+ values() : Fatigue[] {static}
}
enum Health {
+ DEAD {static}
+ HEALTHY {static}
+ WOUNDED {static}
- title : String
+ toString() : String
+ valueOf(name : String) : Health {static}
+ values() : Health[] {static}
}
}
GiantModel --> "-nourishment" Nourishment
GiantController --> "-giant" GiantModel