package main; /** * The standard interface for any command * * @author Maurice Laveaux */ public interface ICommand { /** * Execute all the steps to complete this Command. */ public void execute(); }