Files
java-design-patterns/subclass-sandbox/etc/subclass-sandbox.urm.puml
T
Marcel Ribeiro-Dantas f79782bea9 fix: Fix minor typos (#2619)
Signed-off-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io>
Co-authored-by: Ilkka Seppälä <iluwatar@users.noreply.github.com>
2023-10-14 18:59:21 +03:00

27 lines
588 B
Plaintext

@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, volume : int)
# spawnParticles(particleType : String, count : int)
}
}
GroundDive --|> Superpower
SkyLaunch --|> Superpower
@enduml