We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--- config: class: hideEmptyMembersBox: true --- classDiagram class Command{ presenter execute() unexecute() } class RotateCommand{ degrees degrees:() rotateBy:() } class zoomOutCommand { cacheForm } class CommandStack~ReadWriteStream~ class CommandManager { stack presenter undo() redo() rotateLeft() rotateRight() flipHorizontally() flipVertically() zoomIn() zoomOut() } Command <|-- FlipHCommand Command <|-- FlipVCommand Command <|-- RotateCommand Command <|-- ZoomInCommand Command <|-- ZoomOutCommand AppCommandStack --> "0..n" AppCommand AppCommandManager --> "1" AppCommandStack