package class8_1_Lab_Command_inClass_start; /** * This class defines the generic Command interface * Any concrete command must be capable of this generic behavior * * @author hornick */ public interface Command { public void execute(); // do the work public void unexecute(); // or undo whatever the work was }