textbender.g.xml.sax
Class StartElementEvent

java.lang.Object
  extended by StartElementEvent
All Implemented Interfaces:
SAXEvent

public class StartElementEvent
extends Object
implements SAXEvent

Persistent capture of a SAX startElement() event.

See Also:
ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)

Constructor Summary
StartElementEvent(String uri, String localName, String qName, Attributes atts)
          Creates a StartElementEvent.
 
Method Summary
 Attributes atts()
           
 String localName()
           
 String qName()
           
 void send(ContentHandler handler)
          Sends this event to the specified content handler.
 String uri()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StartElementEvent

public StartElementEvent(String uri,
                         String localName,
                         String qName,
                         Attributes atts)
Creates a StartElementEvent.

Method Detail

uri

public String uri()

localName

public String localName()

qName

public String qName()

atts

public Attributes atts()

send

public void send(ContentHandler handler)
          throws SAXException
Description copied from interface: SAXEvent
Sends this event to the specified content handler.

Specified by:
send in interface SAXEvent
Throws:
SAXException