Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.faces.context
Class ResponseWriter  view ResponseWriter download ResponseWriter.java

java.lang.Object
  extended byjava.io.Writer
      extended byjavax.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) $

Field Summary
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
ResponseWriter()
           
 
Method Summary
abstract  ResponseWriter cloneWithWriter(java.io.Writer writer)
           
abstract  void endDocument()
           
abstract  void endElement(java.lang.String name)
           
abstract  void flush()
          This method forces any data that may have been buffered to be written to the underlying output device.
abstract  java.lang.String getCharacterEncoding()
           
abstract  java.lang.String getContentType()
           
abstract  void startDocument()
           
abstract  void startElement(java.lang.String name, javax.faces.component.UIComponent component)
           
abstract  void writeAttribute(java.lang.String name, java.lang.Object value, java.lang.String property)
           
abstract  void writeComment(java.lang.Object comment)
           
abstract  void writeText(char[] text, int off, int len)
           
abstract  void writeText(java.lang.Object text, java.lang.String property)
           
abstract  void writeURIAttribute(java.lang.String name, java.lang.Object value, java.lang.String property)
           
 
Methods inherited from class java.io.Writer
close, write, write, write, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ResponseWriter

public ResponseWriter()
Method Detail

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)