Skip to the content.

Home / cs-notes / Design / Design Patterns / Behavioral Patterns / Command

@startuml

class Client {

}

class Invoker {

}

interface Command {
    + execute()
    + undo()
    + redo()
}

class CocreteCommand {

}

Client ..> CocreteCommand
CocreteCommand ..up|> Command

Client -> Invoker
Invoker o-> Command

CocreteCommand --> CocreteReceiver

@enduml

Examples