sigmlstream.xml
Interface XMLUnitStreamHandler


public interface XMLUnitStreamHandler

Interface to be implemented by an object that is able to handle an event stream representing an XML document as a sequence of unit descriptors.


Method Summary
 void notifyBeginXMLUnitStream()
          Notifies this handler that the sequence of XML unit descriptors is about to start.
 void notifyEndXMLUnitStream()
          Notifies this handler that the stream of XML unit descriptors is now complete.
 void notifyXMLUnit(java.util.ArrayList<XMLUnitEvent> uevt)
          Notifies this handler that the next XML unit is as described by the given list of unit events.
 

Method Detail

notifyBeginXMLUnitStream

void notifyBeginXMLUnitStream()
Notifies this handler that the sequence of XML unit descriptors is about to start.


notifyXMLUnit

void notifyXMLUnit(java.util.ArrayList<XMLUnitEvent> uevt)
Notifies this handler that the next XML unit is as described by the given list of unit events.


notifyEndXMLUnitStream

void notifyEndXMLUnitStream()
Notifies this handler that the stream of XML unit descriptors is now complete.