Class StartElementEvent
- java.lang.Object
-
- org.smooks.engine.delivery.replay.StartElementEvent
-
- All Implemented Interfaces:
SAXEventReplay
public class StartElementEvent extends Object implements SAXEventReplay
End element event replay.- Author:
- tom.fennelly@gmail.com
-
-
Field Summary
Fields Modifier and Type Field Description Attributes
attributes
String
localName
String
qName
String
uri
-
Constructor Summary
Constructors Constructor Description StartElementEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
replay(ContentHandler handler)
Replay the last SAX event onto the supplied SAXContentHandler
instance.void
set(String uri, String localName, String qName, Attributes atts)
-
-
-
Field Detail
-
uri
public String uri
-
localName
public String localName
-
qName
public String qName
-
attributes
public Attributes attributes
-
-
Method Detail
-
set
public void set(String uri, String localName, String qName, Attributes atts)
-
replay
public void replay(ContentHandler handler) throws SmooksException
Description copied from interface:SAXEventReplay
Replay the last SAX event onto the supplied SAXContentHandler
instance.- Specified by:
replay
in interfaceSAXEventReplay
- Parameters:
handler
- The handler on whic to replay the last event.- Throws:
SmooksException
- Error replaying last event.
-
-