01: package uk.org.ponder.saxalizer;
02:
03: /** The user of the <code>SAXalizer</code> class
04: * calls the <code>produceSubTree method supplies a callback object
05: * to be notified of the root object created as a result of the
06: * SAX parsing process. That callback implements this interface,
07: */
08:
09: interface SAXalizerCallback {
10: /** @param results The object created as a result of SAXalizing a SAX
11: * event stream.*/
12: void productionComplete(Object results);
13: }
|