Interface IHTTPOutputActivity

  • All Known Subinterfaces:
    IHTTPOutput
    All Known Implementing Classes:
    JspWrapper

    public interface IHTTPOutputActivity
    This interface abstracts from the output character stream used to construct HTML output for a web interface.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String _rcsid  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void flush()
      Flush the stream
      void newLine()
      Write a newline
      void print​(boolean b)
      Write a boolean
      void print​(char c)
      Write a char
      void print​(char[] c)
      Write an array of chars
      void print​(double d)
      Write a double
      void print​(float f)
      Write a float
      void print​(int i)
      Write an int
      void print​(long l)
      Write a long
      void print​(java.lang.Object o)
      Write an object
      void print​(java.lang.String s)
      Write a string
      void println​(boolean b)
      Write a boolean
      void println​(char c)
      Write a char
      void println​(char[] c)
      Write an array of chars
      void println​(double d)
      Write a double
      void println​(float f)
      Write a float
      void println​(int i)
      Write an int
      void println​(long l)
      Write a long
      void println​(java.lang.Object o)
      Write an object
      void println​(java.lang.String s)
      Write a string
    • Method Detail

      • flush

        void flush()
            throws java.io.IOException
        Flush the stream
        Throws:
        java.io.IOException
      • newLine

        void newLine()
              throws java.io.IOException
        Write a newline
        Throws:
        java.io.IOException
      • print

        void print​(boolean b)
            throws java.io.IOException
        Write a boolean
        Throws:
        java.io.IOException
      • print

        void print​(char c)
            throws java.io.IOException
        Write a char
        Throws:
        java.io.IOException
      • print

        void print​(char[] c)
            throws java.io.IOException
        Write an array of chars
        Throws:
        java.io.IOException
      • print

        void print​(double d)
            throws java.io.IOException
        Write a double
        Throws:
        java.io.IOException
      • print

        void print​(float f)
            throws java.io.IOException
        Write a float
        Throws:
        java.io.IOException
      • print

        void print​(int i)
            throws java.io.IOException
        Write an int
        Throws:
        java.io.IOException
      • print

        void print​(long l)
            throws java.io.IOException
        Write a long
        Throws:
        java.io.IOException
      • print

        void print​(java.lang.Object o)
            throws java.io.IOException
        Write an object
        Throws:
        java.io.IOException
      • print

        void print​(java.lang.String s)
            throws java.io.IOException
        Write a string
        Throws:
        java.io.IOException
      • println

        void println​(boolean b)
              throws java.io.IOException
        Write a boolean
        Throws:
        java.io.IOException
      • println

        void println​(char c)
              throws java.io.IOException
        Write a char
        Throws:
        java.io.IOException
      • println

        void println​(char[] c)
              throws java.io.IOException
        Write an array of chars
        Throws:
        java.io.IOException
      • println

        void println​(double d)
              throws java.io.IOException
        Write a double
        Throws:
        java.io.IOException
      • println

        void println​(float f)
              throws java.io.IOException
        Write a float
        Throws:
        java.io.IOException
      • println

        void println​(int i)
              throws java.io.IOException
        Write an int
        Throws:
        java.io.IOException
      • println

        void println​(long l)
              throws java.io.IOException
        Write a long
        Throws:
        java.io.IOException
      • println

        void println​(java.lang.Object o)
              throws java.io.IOException
        Write an object
        Throws:
        java.io.IOException
      • println

        void println​(java.lang.String s)
              throws java.io.IOException
        Write a string
        Throws:
        java.io.IOException