Package totalcross.xml

A good XML tokenizer.

See:
          Description

Interface Summary
AttributeList.Filter interface to filter each attribute before to enter it in this AttributeList
XmlReadable XmlReadable abstracts any sequential resource that can be passed to an XmlReader.
 

Class Summary
AttributeList This class describes the attributes attached to a start-tag.
ContentHandler Receive notification of the logical content of a document.
DumpXml Dumb Xml class used only to dump to the Debug Console the contents of a XML.
XmlReadableByteArray Make an XmlReadable from a byte array.
XmlReadableFile Make an XmlReadable from a File Example: XmlReader rdr = new XmlReader(); rdr.setContentHandler(...); File f = new File(...); rdr.parse(new XmlReadableFile(f));
XmlReadablePDBFile Make an XmlReadable from a PDBFile Example: XmlReader rdr = new XmlReader(); rdr.setContentHandler(...); rdr.parse(new XmlReadablePDBFile("HtmlSampleDB.memo.DATA",1));
XmlReadablePort Make an XmlReadable from a PortConnector Example: XmlReader rdr = new XmlReader(); rdr.setContentHandler(...); rdr.parse(new XmlReadablePort(PortConnector.DEFAULT, 19200));
XmlReadableSocket An XmlReadableSocket HAS-A Socket stream that takes care of the HTTP Headers and starts reading at the message-body.
XmlReadableString Make an XmlReadable from a String.
XmlReader Used to read HTML or XML documents, reporting events to handlers (for example, ContentHandler).
XmlTokenizer A Tokenizer for XML input.
 

Exception Summary
SyntaxException Exception thrown by the XmlTokenizer when a syntax error is found.
 

Package totalcross.xml Description

A good XML tokenizer.