FileDocCategorySizeDatePackage
XInclude11TextReader.javaAPI DocJava SE 5 API4046Fri Aug 26 14:55:56 BST 2005com.sun.org.apache.xerces.internal.xinclude

XInclude11TextReader

public class XInclude11TextReader extends XIncludeTextReader
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,v 1.1 2003/11/17 04:49:18 mrglavas Exp $
see
XIncludeHandler

Fields Summary
Constructors Summary
public XInclude11TextReader(XMLInputSource source, XIncludeHandler handler)
Construct the XIncludeReader using the XMLInputSource and XIncludeHandler.

param
source The XMLInputSource to use.
param
handler The XIncludeHandler to use.

        super(source, handler);
    
Methods Summary
protected booleanisValid(int ch)
Returns true if the specified character is a valid XML character as per the rules of XML 1.1.

param
ch The character to check.

        return XML11Char.isXML11Valid(ch);