mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-08-18 04:28:04 +00:00
#1113 Add uml-reverse-mapper plugin
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
@startuml
|
||||
package com.iluwatar.subclasssandbox {
|
||||
class App {
|
||||
- LOGGER : Logger {static}
|
||||
+ App()
|
||||
+ main(args : String[]) {static}
|
||||
}
|
||||
class GroundDive {
|
||||
+ GroundDive()
|
||||
# activate()
|
||||
}
|
||||
class SkyLaunch {
|
||||
+ SkyLaunch()
|
||||
# activate()
|
||||
}
|
||||
abstract class Superpower {
|
||||
# logger : Logger
|
||||
+ Superpower()
|
||||
# activate() {abstract}
|
||||
# move(x : double, y : double, z : double)
|
||||
# playSound(soundName : String, volumn : int)
|
||||
# spawnParticles(particleType : String, count : int)
|
||||
}
|
||||
}
|
||||
GroundDive --|> Superpower
|
||||
SkyLaunch --|> Superpower
|
||||
@enduml
|
||||
Reference in New Issue
Block a user