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,12 +1,12 @@
@startuml
package com.iluwatar.twin {
abstract class GameItem {
+ GameItem()
+ click() {abstract}
+ doDraw() {abstract}
+ draw()
class App {
+ App()
+ main(args : String[]) {static}
- waiting() {static}
}
class BallItem {
- LOGGER : Logger {static}
- isSuspended : boolean
- twin : BallThread
+ BallItem()
@ -15,10 +15,12 @@ package com.iluwatar.twin {
+ move()
+ setTwin(twin : BallThread)
}
class App {
+ App()
+ main(args : String[]) {static}
- waiting() {static}
abstract class GameItem {
- LOGGER : Logger {static}
+ GameItem()
+ click() {abstract}
+ doDraw() {abstract}
+ draw()
}
}
BallItem --|> GameItem