java.lang.Object
java.io.Writer
javax.faces.context.ResponseWriter
- public abstract class ResponseWriter
- extends java.io.Writer
- Version:
- $Revision: 169646 $ $Date: 2005-05-11 11:34:57 -0400 (Wed, 11 May 2005) $
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ResponseWriter
public ResponseWriter()
getContentType
public abstract java.lang.String getContentType()
getCharacterEncoding
public abstract java.lang.String getCharacterEncoding()
flush
public abstract void flush()
throws java.io.IOException
- Description copied from class:
java.io.Writer
- This method forces any data that may have been buffered to be written
to the underlying output device. Please note that the host environment
might perform its own buffering unbeknowst to Java. In that case, a
write made (for example, to a disk drive) might be cached in OS
buffers instead of actually being written to disk.
startDocument
public abstract void startDocument()
throws java.io.IOException
endDocument
public abstract void endDocument()
throws java.io.IOException
startElement
public abstract void startElement(java.lang.String name,
javax.faces.component.UIComponent component)
throws java.io.IOException
endElement
public abstract void endElement(java.lang.String name)
throws java.io.IOException
writeAttribute
public abstract void writeAttribute(java.lang.String name,
java.lang.Object value,
java.lang.String property)
throws java.io.IOException
writeURIAttribute
public abstract void writeURIAttribute(java.lang.String name,
java.lang.Object value,
java.lang.String property)
throws java.io.IOException
writeComment
public abstract void writeComment(java.lang.Object comment)
throws java.io.IOException
writeText
public abstract void writeText(java.lang.Object text,
java.lang.String property)
throws java.io.IOException
writeText
public abstract void writeText(char[] text,
int off,
int len)
throws java.io.IOException
cloneWithWriter
public abstract ResponseWriter cloneWithWriter(java.io.Writer writer)