net.n3.nanoxml |
|
Java Source File Name | Type | Comment |
ContentReader.java | Class | This reader reads data from another reader until a certain string is encountered. |
IXMLBuilder.java | Interface | NanoXML uses IXMLBuilder to construct the XML data structure it retrieved from its data source. |
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 processes the DTD and handles entity definitions. |
StdXMLBuilder.java | Class | StdXMLBuilder is a concrete implementation of IXMLBuilder which creates a tree of XMLElement 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. |
XIncludeXMLBuilder.java | Class | |
XMLBuilderFactory.java | Class | |
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. |