Exemplo n.º 1
0
 /**
  * echos the input to console out.
  *
  * @param parameters the input to be echoed.
  */
 private void echo(String[] parameters) {
   Console.getInstance().println(Arrays.toString(parameters));
 }
Exemplo n.º 2
0
 /** generates help text and displays it to the consoles output. */
 private void help() {
   Console.getInstance().commandHelp();
 }
Exemplo n.º 3
0
 /** clears the console output. */
 private void clear() {
   Console.getInstance().clear();
 }