Interface OutputHandler

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void write​(java.lang.String line)
      Write a single line of input, excluding the newline at the end.
      void writeLine​(java.lang.String line)
      Write a single line of input, including the newline at the end.
    • Method Detail

      • write

        void write​(java.lang.String line)
            throws java.io.IOException
        Write a single line of input, excluding the newline at the end.
        Parameters:
        line - the line
        Throws:
        java.io.IOException
      • writeLine

        void writeLine​(java.lang.String line)
                throws java.io.IOException
        Write a single line of input, including the newline at the end.
        Parameters:
        line - the line
        Throws:
        java.io.IOException