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,33 +1,33 @@
@startuml
package com.iluwatar.factorykit {
interface Builder {
+ add(WeaponType, Supplier<Weapon>) {abstract}
}
class Spear {
+ Spear()
+ toString() : String
}
class Bow {
+ Bow()
class App {
+ App()
+ main(args : String[]) {static}
}
interface Weapon {
}
interface WeaponFactory {
+ create(WeaponType) : Weapon {abstract}
+ factory(consumer : Consumer<Builder>) : WeaponFactory {static}
}
class Axe {
+ Axe()
+ toString() : String
}
class Sword {
+ Sword()
+ toString() : String
}
interface Weapon {
}
class App {
+ App()
+ main(args : String[]) {static}
}
class Axe {
+ Axe()
class Bow {
+ Bow()
+ toString() : String
}
interface WeaponFactory {
+ create(WeaponType) : Weapon {abstract}
+ factory(consumer : Consumer<Builder>) : WeaponFactory {static}
interface Builder {
+ add(WeaponType, Supplier<Weapon>) {abstract}
}
enum WeaponType {
+ AXE {static}
@ -39,7 +39,7 @@ package com.iluwatar.factorykit {
}
}
Spear ..|> Weapon
Bow ..|> Weapon
Sword ..|> Weapon
Axe ..|> Weapon
Sword ..|> Weapon
Bow ..|> Weapon
@enduml