View Javadoc
1   package calculator.command;
2   
3   public interface CLICommand {
4       boolean execute(String args);
5   }