Framework Professional Edition Package


Package com.prosyst.util.xml

The com.prosyst.util.xml package contains classes that can read and parse a XML document.

See:
          Description

Interface Summary
ExTagListener The XMLReader invokes methods of this listener either when the tag is just opened or when the tag is just closed.
Tag  
TagListener This interface is used while parsing xml files.
 

Class Summary
TagClass Class corresponding to one XML tag, containing its tag name, attributes, content string and tree of the sub tags.
XMLParser Class used for reading of xml files, creating tree structure of 'TagClass' for each xml tag.
XMLReader Class used for reading of xml files, creating tree structure of 'TagClass' for each xml tag.
XmlSerializer XmlSerializer is an utility class, that simplifies creation of XML files.
XMLUtil Class with utility methods for extracting attributes from xml tags
 

Package com.prosyst.util.xml Description

The com.prosyst.util.xml package contains classes that can read and parse a XML document. Through the XMLReader class you can read a XML from an input stream or through a reader. To get aware of every read tag, you should pass a TagListener implementation as an argument in the chosen read method of XMLReader. When the end of a tag is reached, the TagListener will received an instance of TagClass that represents this tag. To read the name, content, attributes and a child tag at a specific index, you can use TagClass and XMLUtil. With XMLUtil you can also replace a tag. You cannot create new XMLs with the XML utilities.


Framework Professional Edition Package


Copyright © 1999-2007 ProSyst Software GmbH. All Rights Reserved