001package headfirst.command.simpleremote; 002 003public interface Command { 004 public void execute(); 005}