Skip to content

Latest commit

 

History

History

command

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Command

It follows the single responsibility principle. Each Command Class performs specific actions.

It follows Open/Closed Principle since it is easy to add new commands.

It also allows undo features easily introduced by uncle bob. Undo

It also allows queing of commands.

It executes any methods in single command by setting up what command it will handle.