JSPTemplates

org.tp23.jsp
Interface ObjectJspWriter

All Known Implementing Classes:
ObjectJspWriterImpl

public interface ObjectJspWriter

Interface for the kind of pointless writer that forwards to a StringWriter.

Author:
Paul Hinds

Method Summary
 void clear()
           
 void clearBuffer()
           
 void close()
           
 void ensureOpen()
           
 void flush()
           
 void flushBuffer()
           
 int getBufferSize()
           
 Destination getDestination()
           
 int getRemaining()
           
 void init(Destination destination, int sz, boolean autoFlush)
           
 void initOut()
           
 boolean isAutoFlush()
           
 void newLine()
           
 void print(boolean b)
           
 void print(char c)
           
 void print(char[] s)
           
 void print(double d)
           
 void print(float f)
           
 void print(int i)
           
 void print(long l)
           
 void print(java.lang.Object obj)
           
 void print(java.lang.String s)
           
 void println()
           
 void println(boolean x)
           
 void println(char x)
           
 void println(char[] x)
           
 void println(double x)
           
 void println(float x)
           
 void println(int x)
           
 void println(long x)
           
 void println(java.lang.Object x)
           
 void println(java.lang.String x)
           
 void recycle()
           
 void write(char[] buf)
           
 void write(char[] cbuf, int off, int len)
           
 void write(int c)
           
 void write(java.lang.String s)
           
 void write(java.lang.String s, int off, int len)
           
 

Method Detail

getRemaining

public int getRemaining()

getDestination

public Destination getDestination()

clear

public void clear()
           throws java.io.IOException

clearBuffer

public void clearBuffer()
                 throws java.io.IOException

flush

public void flush()
           throws java.io.IOException

close

public void close()
           throws java.io.IOException

write

public void write(int c)
           throws java.io.IOException

write

public void write(char[] cbuf,
                  int off,
                  int len)
           throws java.io.IOException

write

public void write(char[] buf)
           throws java.io.IOException

write

public void write(java.lang.String s,
                  int off,
                  int len)
           throws java.io.IOException

write

public void write(java.lang.String s)
           throws java.io.IOException

newLine

public void newLine()
             throws java.io.IOException

print

public void print(boolean b)
           throws java.io.IOException

print

public void print(char c)
           throws java.io.IOException

print

public void print(int i)
           throws java.io.IOException

print

public void print(long l)
           throws java.io.IOException

print

public void print(float f)
           throws java.io.IOException

print

public void print(double d)
           throws java.io.IOException

print

public void print(char[] s)
           throws java.io.IOException

print

public void print(java.lang.String s)
           throws java.io.IOException

print

public void print(java.lang.Object obj)
           throws java.io.IOException

println

public void println()
             throws java.io.IOException

println

public void println(boolean x)
             throws java.io.IOException

println

public void println(char x)
             throws java.io.IOException

println

public void println(int x)
             throws java.io.IOException

println

public void println(long x)
             throws java.io.IOException

println

public void println(float x)
             throws java.io.IOException

println

public void println(double x)
             throws java.io.IOException

println

public void println(char[] x)
             throws java.io.IOException

println

public void println(java.lang.String x)
             throws java.io.IOException

println

public void println(java.lang.Object x)
             throws java.io.IOException

flushBuffer

public void flushBuffer()
                 throws java.io.IOException

initOut

public void initOut()
             throws java.io.IOException

ensureOpen

public void ensureOpen()
                throws java.io.IOException

init

public void init(Destination destination,
                 int sz,
                 boolean autoFlush)
          throws java.io.IOException

recycle

public void recycle()

getBufferSize

public int getBufferSize()

isAutoFlush

public boolean isAutoFlush()

JSPTemplates