Interface ConsoleListener


public interface ConsoleListener
Listener that is called when a string should be written to the console.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    put(String message, boolean isError)
    Output the message to the console.
    void
    putln(String message, boolean isError)
     
  • Method Details

    • put

      void put(String message, boolean isError)
      Output the message to the console.
      Parameters:
      message - to output
      isError - true if this is an error message
    • putln

      void putln(String message, boolean isError)