org.kalmeo.util.xml
Interface LightXmlParserHandler


public interface LightXmlParserHandler

Author:
bbeaulant

Method Summary
 void characters(java.lang.String characters, boolean isCDATA)
          Receive notification of character data inside an element.
 void endDocument()
          Receive notification of the end of the document.
 void endElement(java.lang.String name)
          Receive notification of the end of an element.
 void startDocument()
          Receive notification of the beginning of the document.
 void startElement(java.lang.String name, java.util.Hashtable attributes)
          Receive notification of the start of an element.
 

Method Detail

startDocument

void startDocument()
Receive notification of the beginning of the document.


startElement

void startElement(java.lang.String name,
                  java.util.Hashtable attributes)
Receive notification of the start of an element.

Parameters:
name -
attributes -

endElement

void endElement(java.lang.String name)
Receive notification of the end of an element.

Parameters:
name -

characters

void characters(java.lang.String characters,
                boolean isCDATA)
Receive notification of character data inside an element.

Parameters:
characters -
isCDATA -

endDocument

void endDocument()
Receive notification of the end of the document.



Copyright © 2007-2008 Kalmeo. All Rights Reserved.