01: package uk.org.ponder.saxalizer;
02:
03: /** A class which can accept a SAX attribute list (and oneday
04: * comments, with SAX 2) that arrive from a SAX stream implements
05: * this interface.
06: */
07:
08: public interface SAXalizableAttrs extends SAXalizable {
09: /** Return an array of methods suitable for reporting attributes
10: * attached to the tag corresponding to this node in the SAX stream.
11: * @return The array of method specifications.
12: */
13: SAXAccessMethodSpec[] getSAXSetAttrMethods();
14: // SAXAccessMethodSpec[] getSAXGetAttrMethods();
15:
16: // void setComment(String comment);
17: // String getComment();
18: }
|