| org.jboss.mq.xml.XElementConsumer
XElementConsumer | public interface XElementConsumer (Code) | | XMLRecordConsumer Interface defines the method signatures used to notify the
consumer object of parsing errors, document starts, record reads, and
document ends.
author: Hiram Chirino (Cojonudo14@hotmail.com) version: $Revision: 57198 $ |
Method Summary | |
public void | documentEndEvent() Signals that the END of the XML document has been reached. | public void | documentStartEvent() Signals that the START of the XML document has been reached. | public void | recordReadEvent(XElement o) Signals that a record object, an xml element, has been fully read in. |
documentEndEvent | public void documentEndEvent() throws Exception(Code) | | Signals that the END of the XML document has been reached.
exception: Exception - Description of Exception |
documentStartEvent | public void documentStartEvent() throws Exception(Code) | | Signals that the START of the XML document has been reached.
exception: Exception - Description of Exception |
recordReadEvent | public void recordReadEvent(XElement o) throws Exception(Code) | | Signals that a record object, an xml element, has been fully read in.
Parameters: o - Description of Parameter exception: Exception - Description of Exception |
|
|