Goals

qdxml
Interface DocHandler

All Known Implementing Classes:
Settings

public interface DocHandler

An interface to facilitate parsing an XML document

Written Originally by: Steven R. Brandt and adopted by J.J. Sestrich

Author:
Steven R. Brandt, J.J. Sestrich

Method Summary
 void endDocument()
           
 void endElement(java.lang.String tag)
           
 void startDocument()
           
 void startElement(java.lang.String tag, java.util.Hashtable h)
           
 void text(java.lang.String str)
           
 

Method Detail

startElement

void startElement(java.lang.String tag,
                  java.util.Hashtable h)
                  throws java.lang.Exception
Throws:
java.lang.Exception

endElement

void endElement(java.lang.String tag)
                throws java.lang.Exception
Throws:
java.lang.Exception

startDocument

void startDocument()
                   throws java.lang.Exception
Throws:
java.lang.Exception

endDocument

void endDocument()
                 throws java.lang.Exception
Throws:
java.lang.Exception

text

void text(java.lang.String str)
          throws java.lang.Exception
Throws:
java.lang.Exception

SourceForge.net Logo