| Class | Description |
|---|---|
| XML | This is a class that contains constants used by this (com.neokernel.xml) namespace. |
| XMLFileParser | This class extends the XMLParser, allowing XML files to be parsed. |
| XMLParser |
This class parses min xml into one of 4 kinds of tokens: XML.EMPTY_ELEMENT_TAG, XML.START_TAG, XML.END_TAG, and XML.ELEMENT_CONTENT. The XMLParser is instantiated with a source and characters will be read from this source via a Stream. Successive calls to the nextToken() method will return the next parsed tokens from the stream. Some options can be set, to ignore whitespace or to decode XML 1.0 escape codes in the XML.ELEMENT_CONTENT tokens. |
| XMLParserException | This exception is thrown by XMLParser when there is a problem. |
| XMLPropsList |
XMLPropsList is an agent that provides persistent storage of Props in XML format. It includes methods for loading Props from an XML file, writing Props to an XML file, and parsing streams of XML data to obtain additional props. XMLPropsList supports the following Props entries:
|
| XMLPropsList.ScheduledTask | |
| XMLRequestAgent | This is an abstract implementation of RequestAgent with convenience methods for producing streamed XML-based responses of indeterminate length. |
| XMLToken | This class represents a XML element returned by the nextElementContent method in XMLParser. |