net.n3.nanoxml |
|
Java Source File Name | Type | Comment |
CDATAReader.java | Class | This reader reads data from another reader until the end of a CDATA section
(]]>) has been encountered. |
ContentReader.java | Class | This reader reads data from another reader until a new element has
been encountered. |
IXMLBuilder.java | Interface | NanoXML uses IXMLBuilder to construct the XML data structure it retrieved
from its data source. |
IXMLElement.java | Interface | IXMLElement is an XML element. |
IXMLEntityResolver.java | Interface | An IXMLEntityResolver resolves entities. |
IXMLParser.java | Interface | IXMLParser is the core parser of NanoXML. |
IXMLReader.java | Interface | IXMLReader reads the data to be parsed. |
IXMLValidator.java | Interface | IXMLValidator processes the DTD and handles entity references. |
NonValidator.java | Class | NonValidator is a concrete implementation of IXMLValidator which processes
the DTD and handles entity definitions. |
PIReader.java | Class | This reader reads data from another reader until the end of a processing
instruction (?>) has been encountered. |
StdXMLBuilder.java | Class | StdXMLBuilder is a concrete implementation of IXMLBuilder which creates a
tree of IXMLElement from an XML data source. |
StdXMLParser.java | Class | StdXMLParser is the core parser of NanoXML. |
StdXMLReader.java | Class | StdXMLReader reads the data to be parsed. |
ValidatorPlugin.java | Class | ValidatorPlugin allows the application to insert additional validators into
NanoXML. |
XMLAttribute.java | Class | An attribute in an XML element. |
XMLElement.java | Class | XMLElement is an XML element. |
XMLEntityResolver.java | Class | An XMLEntityResolver resolves entities. |
XMLException.java | Class | An XMLException is thrown when an exception occurred while processing the
XML data. |
XMLParseException.java | Class | An XMLParseException is thrown when the XML passed to the XML parser is not
well-formed. |
XMLParserFactory.java | Class | Creates an XML parser. |
XMLUtil.java | Class | Utility methods for NanoXML. |
XMLValidationException.java | Class | An XMLValidationException is thrown when the XML passed to the XML parser is
well-formed but not valid. |
XMLWriter.java | Class | An XMLWriter writes XML data to a stream. |