コード例 #1
0
ファイル: Util.java プロジェクト: UQdeco2800/farmsim
 /**
  * echos the input to console out.
  *
  * @param parameters the input to be echoed.
  */
 private void echo(String[] parameters) {
   Console.getInstance().println(Arrays.toString(parameters));
 }
コード例 #2
0
ファイル: Util.java プロジェクト: UQdeco2800/farmsim
 /** generates help text and displays it to the consoles output. */
 private void help() {
   Console.getInstance().commandHelp();
 }
コード例 #3
0
ファイル: Util.java プロジェクト: UQdeco2800/farmsim
 /** clears the console output. */
 private void clear() {
   Console.getInstance().clear();
 }