We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b4844e commit b261767Copy full SHA for b261767
2 files changed
doc/images/state_class.png
1.62 KB
doc/plantuml/state.puml
@@ -13,11 +13,14 @@ Washing --> Off : turnOff()
13
@startuml
14
15
abstract class State {
16
+ #stateName
17
{abstract} turnOn() : State
18
{abstract} turnOff() : State
19
{abstract} wash() : State
20
{abstract} openDoor() : State
21
{abstract} closeDoor() : State
22
+ getStateName() : String
23
+ toString() : String
24
}
25
26
@enduml
0 commit comments