Inner Classes
public class SaxHandler extends Asn1XerSaxHandler { Asn1XerSaxHandler mElemSaxHandler; StringBuffer mCurrElemValue; SaxHandler() { <code ..> } public void startElement (String namespaceURI, String localName, String qName, Attributes atts) throws SAXException { <code ..> } public void characters (char[] ch, int start, int length) throws SAXException { <code ..>public void endElement (String namespaceURI, String localName, String qName) throws SAXException { <code ..> } }This is an implementation of a standard SAX content handler class. As the XML parser software parses messages, the methods within this class are invoked with the parsed content. The startElement method is invoked after a start element tag (<tag>) is parsed. The characters method is invoked one or more times to pass the content between tags into the application. The endElement method is invoked when an end element tag (</tag>) is encountered.
Objective Systems, Inc.102 Pickering Way, Suite #506Exton, Pennsylvania 19341 http://www.obj-sys.com Phone: (484) 875-9841 Toll-free: (877) 307-6855 (US only) Fax: (484) 875-9830 info@obj-sys.com |