|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xml.serializer.dom3.DOMOutputImpl
final class DOMOutputImpl
This is a copy of the Xerces-2J class org.apache.xerces.dom.DOMOutputImpl.java This class represents an output destination for data. This interface allows an application to encapsulate information about an output destination in a single object, which may include a URI, a byte stream (possibly with a specifiedencoding), a base URI, and/or a character stream. The exact definitions of a byte stream and a character stream are binding dependent. The application is expected to provide objects that implement this interface whenever such objects are needed. The application can either provide its own objects that implement this interface, or it can use the generic factory method DOMImplementationLS.createLSOutput() to create objects that implement this interface. The DOMSerializer will use the LSOutput object to determine where to serialize the output to. The DOMSerializer will look at the different outputs specified in the LSOutput in the following order to know which one to output to, the first one that data can be output to will be used: 1.LSOutput.characterStream 2.LSOutput.byteStream 3.LSOutput.systemId LSOutput objects belong to the application. The DOM implementation will never modify them (though it may make copies and modify the copies, if necessary).
Field Summary | |
---|---|
private java.io.OutputStream |
fByteStream
|
private java.io.Writer |
fCharStream
|
private java.lang.String |
fEncoding
|
private java.lang.String |
fSystemId
|
Constructor Summary | |
---|---|
DOMOutputImpl()
Default Constructor |
Method Summary | |
---|---|
java.io.OutputStream |
getByteStream()
Depending on the language binding in use, this attribute may not be available. |
java.io.Writer |
getCharacterStream()
An attribute of a language and binding dependent type that represents a writable stream of bytes. |
java.lang.String |
getEncoding()
The character encoding, if known. |
java.lang.String |
getSystemId()
The system identifier, a URI reference [IETF RFC 2396], for this output destination. |
void |
setByteStream(java.io.OutputStream byteStream)
Depending on the language binding in use, this attribute may not be available. |
void |
setCharacterStream(java.io.Writer characterStream)
An attribute of a language and binding dependent type that represents a writable stream of bytes. |
void |
setEncoding(java.lang.String encoding)
The character encoding, if known. |
void |
setSystemId(java.lang.String systemId)
The system identifier, a URI reference [IETF RFC 2396], for this output destination. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private java.io.Writer fCharStream
private java.io.OutputStream fByteStream
private java.lang.String fSystemId
private java.lang.String fEncoding
Constructor Detail |
---|
DOMOutputImpl()
Method Detail |
---|
public java.io.Writer getCharacterStream()
getCharacterStream
in interface org.w3c.dom.ls.LSOutput
public void setCharacterStream(java.io.Writer characterStream)
setCharacterStream
in interface org.w3c.dom.ls.LSOutput
public java.io.OutputStream getByteStream()
getByteStream
in interface org.w3c.dom.ls.LSOutput
public void setByteStream(java.io.OutputStream byteStream)
setByteStream
in interface org.w3c.dom.ls.LSOutput
public java.lang.String getSystemId()
getSystemId
in interface org.w3c.dom.ls.LSOutput
public void setSystemId(java.lang.String systemId)
setSystemId
in interface org.w3c.dom.ls.LSOutput
public java.lang.String getEncoding()
getEncoding
in interface org.w3c.dom.ls.LSOutput
public void setEncoding(java.lang.String encoding)
setEncoding
in interface org.w3c.dom.ls.LSOutput
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |