All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class javax.servlet.jsp.JspWriter

java.lang.Object
   |
   +----java.io.Writer
           |
           +----javax.servlet.jsp.JspWriter

public abstract class JspWriter
extends Writer

Variable Index

 o autoFlush
 o bufferSize
 o DEFAULT_BUFFER
XXX
 o NO_BUFFER
XXX

Constructor Index

 o JspWriter(int, boolean)
XXX

Method Index

 o clear()
XXX
 o clearBuffer()
XXX
 o close()
XXX
 o flush()
XXX
 o getBufferSize()
XXX
 o getRemaining()
XXX
 o isAutoFlush()
XXX
 o newLine()
XXX
 o print(boolean)
XXX
 o print(char)
XXX
 o print(char[])
XXX
 o print(double)
XXX
 o print(float)
XXX
 o print(int)
XXX
 o print(long)
XXX
 o print(Object)
XXX
 o print(String)
XXX
 o println()
XXX
 o println(boolean)
XXX
 o println(char)
XXX
 o println(char[])
XXX
 o println(double)
XXX
 o println(float)
XXX
 o println(int)
XXX
 o println(long)
XXX
 o println(Object)
XXX
 o println(String)
XXX

Variables

 o autoFlush
 protected boolean autoFlush
 o bufferSize
 protected int bufferSize
 o DEFAULT_BUFFER
 public static int DEFAULT_BUFFER
XXX

 o NO_BUFFER
 public static int NO_BUFFER
XXX

Constructors

 o JspWriter
 protected JspWriter(int bufferSize,
                     boolean autoFlush)
XXX

Parameters:
bufferSize - XXX
autoFlush - XXX

Methods

 o clear
 public abstract void clear() throws IOException
XXX

Throws: IOException
XXX
 o clearBuffer
 public abstract void clearBuffer() throws IOException
XXX

Throws: IOException
XXX
 o close
 public abstract void close() throws IOException
XXX

Throws: IOException
XXX
Overrides:
close in class Writer
 o flush
 public abstract void flush() throws IOException
XXX

Throws: IOException
XXX
Overrides:
flush in class Writer
 o getBufferSize
 public int getBufferSize()
XXX

Returns:
XXX
Throws: IOException
XXX
 o getRemaining
 public abstract int getRemaining()
XXX

Returns:
XXX
Throws: IOException
XXX
 o newLine
 public abstract void newLine() throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(boolean value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(char value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(int value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(long value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(float value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(double value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(char value[]) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(String value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o print
 public abstract void print(Object value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println() throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(boolean value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(char value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(int value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(long value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(float value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(double value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(char value[]) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(String value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o println
 public abstract void println(Object value) throws IOException
XXX

Parameters:
value - XXX
Throws: IOException
XXX
 o isAutoFlush
 public boolean isAutoFlush()
XXX

Returns:
whether this JspWriter automatically flushes the buffer when it fills up.
Throws: IOException
XXX

All Packages  Class Hierarchy  This Package  Previous  Next  Index