org.yasl.xmlobjects
Interface ElementHandler

All Known Implementing Classes:
org.yasl.xmlobjects.impl.BaseElementHandler

public interface ElementHandler

Interface to handler for a tag.

Version:
1.0
Author:
Jeff Chapman

Method Summary
 void handleEndElement()
          Method called when the close tag instance is encountered.
 void handleStartElement(Attributes atts)
          Method called when an open tag instance is encountered.
 

Method Detail

handleStartElement

public void handleStartElement(Attributes atts)
                        throws SAXException
Method called when an open tag instance is encountered.

Parameters:
atts - Attributes
Throws:
SAXException

handleEndElement

public void handleEndElement()
                      throws SAXException
Method called when the close tag instance is encountered.

Throws:
SAXException