01: package uk.org.ponder.saxalizer;
02:
03: /** An object which can return a SAX attribute list (and oneday
04: * comments, with SAX 2) to be written to a SAX stream
05: * implements this interface.
06: */
07:
08: public interface DeSAXalizableAttrs extends DeSAXalizable {
09: /** Return an array of methods for querying the attributes
10: * of an object to be written to a SAX stream.
11: * @return The array of method specifications.
12: */
13: SAXAccessMethodSpec[] getSAXGetAttrMethods();
14:
15: }
|