Update URM Version to 1.4.4 and regenerated all puml files

This commit is contained in:
NooBxGockeL
2016-11-26 12:51:06 +01:00
parent 8574e06966
commit 7d995056ff
85 changed files with 1885 additions and 1742 deletions

View File

@ -1,27 +1,14 @@
@startuml
package com.iluwatar.factorykit {
class Spear {
+ Spear()
+ toString() : String
}
class App {
- LOGGER : Logger {static}
+ 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
}
class Bow {
+ Bow()
+ toString() : String
@ -29,6 +16,20 @@ package com.iluwatar.factorykit {
interface Builder {
+ add(WeaponType, Supplier<Weapon>) {abstract}
}
class Spear {
+ Spear()
+ toString() : String
}
class Sword {
+ Sword()
+ toString() : String
}
interface Weapon {
}
interface WeaponFactory {
+ create(WeaponType) : Weapon {abstract}
+ factory(consumer : Consumer<Builder>) : WeaponFactory {static}
}
enum WeaponType {
+ AXE {static}
+ BOW {static}
@ -38,8 +39,8 @@ package com.iluwatar.factorykit {
+ values() : WeaponType[] {static}
}
}
Spear ..|> Weapon
Axe ..|> Weapon
Sword ..|> Weapon
Bow ..|> Weapon
Spear ..|> Weapon
Sword ..|> Weapon
@enduml