package class8_1_RemoteControl_lambda_start.other; /** * This class defines the generic Command interface * Any concrete command must be capable of this generic behavior * @author hornick, yoder * * Winter 2014-2015 yoder: Removed undo and name to support lambdas. */ public interface Command { public boolean execute(); // do the work }