| |
|
| java.lang.Object org.apache.xerces.xni.parser.XMLInputSource org.apache.xerces.util.SAXInputSource
SAXInputSource | final public class SAXInputSource extends XMLInputSource (Code) | | An XMLInputSource analogue to javax.xml.transform.sax.SAXSource .
version: $Id: SAXInputSource.java 447241 2006-09-18 05:12:57Z mrglavas $ |
SAXInputSource | public SAXInputSource()(Code) | | |
setByteStream | public void setByteStream(InputStream byteStream)(Code) | | Sets the byte stream. If the byte stream is not already opened
when this object is instantiated, then the code that opens the
stream should also set the byte stream on this object. Also, if
the encoding is auto-detected, then the encoding should also be
set on this object.
Parameters: byteStream - The new byte stream. |
setCharacterStream | public void setCharacterStream(Reader charStream)(Code) | | Sets the character stream. If the character stream is not already
opened when this object is instantiated, then the code that opens
the stream should also set the character stream on this object.
Also, the encoding of the byte stream used by the reader should
also be set on this object, if known.
Parameters: charStream - The new character stream. See Also: SAXInputSource.setEncoding |
setEncoding | public void setEncoding(String encoding)(Code) | | Sets the encoding of the stream.
Parameters: encoding - The new encoding. |
setPublicId | public void setPublicId(String publicId)(Code) | | Sets the public identifier.
Parameters: publicId - The new public identifier. |
setSystemId | public void setSystemId(String systemId)(Code) | | Sets the system identifier.
Parameters: systemId - The new system identifier. |
|
|
|