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 AttributesattributesStringlocalNameStringqNameStringuri
-
Constructor Summary
Constructors Constructor Description StartElementEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidreplay(ContentHandler handler)Replay the last SAX event onto the supplied SAXContentHandlerinstance.voidset(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 org.smooks.api.SmooksException
Description copied from interface:SAXEventReplayReplay the last SAX event onto the supplied SAXContentHandlerinstance.- Specified by:
replayin interfaceSAXEventReplay- Parameters:
handler- The handler on whic to replay the last event.- Throws:
org.smooks.api.SmooksException- Error replaying last event.
-
-