Interface IHTTPOutputActivity
-
- All Known Subinterfaces:
IHTTPOutput
- All Known Implementing Classes:
JspWrapper
public interface IHTTPOutputActivityThis 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 voidflush()Flush the streamvoidnewLine()Write a newlinevoidprint(boolean b)Write a booleanvoidprint(char c)Write a charvoidprint(char[] c)Write an array of charsvoidprint(double d)Write a doublevoidprint(float f)Write a floatvoidprint(int i)Write an intvoidprint(long l)Write a longvoidprint(java.lang.Object o)Write an objectvoidprint(java.lang.String s)Write a stringvoidprintln(boolean b)Write a booleanvoidprintln(char c)Write a charvoidprintln(char[] c)Write an array of charsvoidprintln(double d)Write a doublevoidprintln(float f)Write a floatvoidprintln(int i)Write an intvoidprintln(long l)Write a longvoidprintln(java.lang.Object o)Write an objectvoidprintln(java.lang.String s)Write a string
-
-
-
Field Detail
-
_rcsid
static final java.lang.String _rcsid
- See Also:
- Constant Field Values
-
-
Method Detail
-
flush
void flush() throws java.io.IOExceptionFlush the stream- Throws:
java.io.IOException
-
newLine
void newLine() throws java.io.IOExceptionWrite a newline- Throws:
java.io.IOException
-
print
void print(boolean b) throws java.io.IOExceptionWrite a boolean- Throws:
java.io.IOException
-
print
void print(char c) throws java.io.IOExceptionWrite a char- Throws:
java.io.IOException
-
print
void print(char[] c) throws java.io.IOExceptionWrite an array of chars- Throws:
java.io.IOException
-
print
void print(double d) throws java.io.IOExceptionWrite a double- Throws:
java.io.IOException
-
print
void print(float f) throws java.io.IOExceptionWrite a float- Throws:
java.io.IOException
-
print
void print(int i) throws java.io.IOExceptionWrite an int- Throws:
java.io.IOException
-
print
void print(long l) throws java.io.IOExceptionWrite a long- Throws:
java.io.IOException
-
print
void print(java.lang.Object o) throws java.io.IOExceptionWrite an object- Throws:
java.io.IOException
-
print
void print(java.lang.String s) throws java.io.IOExceptionWrite a string- Throws:
java.io.IOException
-
println
void println(boolean b) throws java.io.IOExceptionWrite a boolean- Throws:
java.io.IOException
-
println
void println(char c) throws java.io.IOExceptionWrite a char- Throws:
java.io.IOException
-
println
void println(char[] c) throws java.io.IOExceptionWrite an array of chars- Throws:
java.io.IOException
-
println
void println(double d) throws java.io.IOExceptionWrite a double- Throws:
java.io.IOException
-
println
void println(float f) throws java.io.IOExceptionWrite a float- Throws:
java.io.IOException
-
println
void println(int i) throws java.io.IOExceptionWrite an int- Throws:
java.io.IOException
-
println
void println(long l) throws java.io.IOExceptionWrite a long- Throws:
java.io.IOException
-
println
void println(java.lang.Object o) throws java.io.IOExceptionWrite an object- Throws:
java.io.IOException
-
println
void println(java.lang.String s) throws java.io.IOExceptionWrite a string- Throws:
java.io.IOException
-
-