01: /*
02: * Created on 14-Feb-2006
03: */
04: package uk.org.ponder.rsf.components;
05:
06: /** An interface to be called during the fixup stage, once the component
07: * has reached its proper place in the tree. Typically used to infer
08: * default values for any fields that have still not been set, and set IDs
09: * on parts of composite components.
10: * @author Antranig Basman (antranig@caret.cam.ac.uk)
11: *
12: */
13:
14: public interface FixableComponent {
15: public void fixupComponent();
16: }
|