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

@ -1,17 +1,17 @@
@startuml
package com.iluwatar.templatemethod {
class SubtleMethod {
+ SubtleMethod()
# confuseTarget(target : String)
# pickTarget() : String
# stealTheItem(target : String)
}
class HitAndRunMethod {
+ HitAndRunMethod()
# confuseTarget(target : String)
# pickTarget() : String
# stealTheItem(target : String)
}
class HalflingThief {
- method : StealingMethod
+ HalflingThief(method : StealingMethod)
+ changeMethod(method : StealingMethod)
+ steal()
}
abstract class StealingMethod {
+ StealingMethod()
# confuseTarget(String) {abstract}
@ -19,18 +19,18 @@ package com.iluwatar.templatemethod {
+ steal()
# stealTheItem(String) {abstract}
}
class SubtleMethod {
+ SubtleMethod()
# confuseTarget(target : String)
# pickTarget() : String
# stealTheItem(target : String)
}
class App {
+ App()
+ main(args : String[]) {static}
}
class HalflingThief {
- method : StealingMethod
+ HalflingThief(method : StealingMethod)
+ changeMethod(method : StealingMethod)
+ steal()
}
}
HalflingThief --> "-method" StealingMethod
SubtleMethod --|> StealingMethod
HitAndRunMethod --|> StealingMethod
SubtleMethod --|> StealingMethod
@enduml