| java.lang.Object org.apache.xerces.xinclude.XIncludeTextReader org.apache.xerces.xinclude.XInclude11TextReader
XInclude11TextReader | public class XInclude11TextReader extends XIncludeTextReader (Code) | | This class is used for reading resources requested in <include> elements in
XML 1.1 entities, when the parse attribute of the <include> element is "text".
Using this class will open the location, detect the encoding, and discard the
byte order mark, if applicable.
author: Michael Glavassevich, IBM version: $Id: XInclude11TextReader.java 447243 2006-09-18 05:15:27Z mrglavas $ See Also: XIncludeHandler |
Method Summary | |
protected boolean | isValid(int ch) Returns true if the specified character is a valid XML character
as per the rules of XML 1.1. |
XInclude11TextReader | public XInclude11TextReader(XMLInputSource source, XIncludeHandler handler, int bufferSize) throws IOException(Code) | | Construct the XIncludeReader using the XMLInputSource and XIncludeHandler.
Parameters: source - The XMLInputSource to use. Parameters: handler - The XIncludeHandler to use. Parameters: bufferSize - The size of this text reader's buffer. |
isValid | protected boolean isValid(int ch)(Code) | | Returns true if the specified character is a valid XML character
as per the rules of XML 1.1.
Parameters: ch - The character to check. |
|
|