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,23 +1,34 @@
@startuml
package com.iluwatar.front.controller {
class ArcherView {
+ ArcherView()
+ display()
}
interface View {
+ display() {abstract}
}
class CatapultView {
+ CatapultView()
+ display()
class App {
+ App()
+ main(args : String[]) {static}
}
class ArcherCommand {
+ ArcherCommand()
+ process()
}
class App {
+ App()
+ main(args : String[]) {static}
class ArcherView {
- LOGGER : Logger {static}
+ ArcherView()
+ display()
}
class CatapultCommand {
+ CatapultCommand()
+ process()
}
class CatapultView {
- LOGGER : Logger {static}
+ CatapultView()
+ display()
}
interface Command {
+ process() {abstract}
}
class ErrorView {
- LOGGER : Logger {static}
+ ErrorView()
+ display()
}
class FrontController {
+ FrontController()
@ -29,22 +40,14 @@ package com.iluwatar.front.controller {
+ UnknownCommand()
+ process()
}
class ErrorView {
+ ErrorView()
+ display()
}
class CatapultCommand {
+ CatapultCommand()
+ process()
}
interface Command {
+ process() {abstract}
interface View {
+ display() {abstract}
}
}
ArcherView ..|> View
CatapultView ..|> View
ArcherCommand ..|> Command
UnknownCommand ..|> Command
ErrorView ..|> View
ArcherView ..|> View
CatapultCommand ..|> Command
CatapultView ..|> View
ErrorView ..|> View
UnknownCommand ..|> Command
@enduml