package command; /** Command interface: every action is an object */ public interface Command { void execute(); void undo(); String getDescription(); }