javax.faces.context
Class ResponseWriter
java.lang.Object
java.io.Writer
javax.faces.context.ResponseWriter
- All Implemented Interfaces:
- java.io.Closeable, java.io.Flushable, java.lang.Appendable
- Direct Known Subclasses:
- ResponseWriterWrapper
public abstract class ResponseWriter
- extends java.io.Writer
see Javadoc of JSF Specification
- Version:
- $Revision: 805756 $ $Date: 2009-08-19 06:37:24 -0500 (Wed, 19 Aug 2009) $
- Author:
- Manfred Geiler (latest modification by $Author: cjhoward $)
Fields inherited from class java.io.Writer |
lock |
Method Summary |
abstract ResponseWriter |
cloneWithWriter(java.io.Writer writer)
|
void |
endCDATA()
|
abstract void |
endDocument()
|
abstract void |
endElement(java.lang.String name)
|
abstract void |
flush()
|
abstract java.lang.String |
getCharacterEncoding()
|
abstract java.lang.String |
getContentType()
|
void |
startCDATA()
|
abstract void |
startDocument()
|
abstract void |
startElement(java.lang.String name,
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)
|
void |
writeText(java.lang.Object object,
UIComponent component,
java.lang.String string)
|
abstract void |
writeURIAttribute(java.lang.String name,
java.lang.Object value,
java.lang.String property)
|
Methods inherited from class java.io.Writer |
append, append, append, close, write, write, write, write, write |
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
- Specified by:
flush
in interface java.io.Flushable
- Specified by:
flush
in class java.io.Writer
- Throws:
java.io.IOException
startDocument
public abstract void startDocument()
throws java.io.IOException
- Throws:
java.io.IOException
endDocument
public abstract void endDocument()
throws java.io.IOException
- Throws:
java.io.IOException
startElement
public abstract void startElement(java.lang.String name,
UIComponent component)
throws java.io.IOException
- Throws:
java.io.IOException
endElement
public abstract void endElement(java.lang.String name)
throws java.io.IOException
- Throws:
java.io.IOException
startCDATA
public void startCDATA()
throws java.io.IOException
- Throws:
java.io.IOException
endCDATA
public void endCDATA()
throws java.io.IOException
- 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
- 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
- Throws:
java.io.IOException
writeComment
public abstract void writeComment(java.lang.Object comment)
throws java.io.IOException
- Throws:
java.io.IOException
writeText
public abstract void writeText(java.lang.Object text,
java.lang.String property)
throws java.io.IOException
- Throws:
java.io.IOException
writeText
public abstract void writeText(char[] text,
int off,
int len)
throws java.io.IOException
- Throws:
java.io.IOException
cloneWithWriter
public abstract ResponseWriter cloneWithWriter(java.io.Writer writer)
writeText
public void writeText(java.lang.Object object,
UIComponent component,
java.lang.String string)
throws java.io.IOException
- Throws:
java.io.IOException
- Since:
- 1.2
Copyright © 2010 The Apache Software Foundation. All Rights Reserved.