package jutil; import java.io.*; /** * Command implementations should be declared as * inner classes of the CommandConsole extension. */ public interface Command extends Serializable { String execute(String arg) throws AppError; // String undo() throws AppError; }