Update URM Version to 1.4.4 and regenerated all puml files
This commit is contained in:
@ -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
|
Reference in New Issue
Block a user