01: /*
02: * Created on Oct 15, 2004
03: */
04: package uk.org.ponder.saxalizer;
05:
06: /**
07: * Classes implementing this tag interface agree to have default
08: * accessor information inferred EVEN IF they already implement one of the
09: * SAXalizable &c interfaces. Any publically available fields not already
10: * mapped through the static accessor interfaces will be added to the
11: * class' mapping info.
12: * @author Antranig Basman (antranig@caret.cam.ac.uk)
13: *
14: */
15: public interface DefaultInferrible {
16:
17: }
|