01: /*
02: * Created on Nov 24, 2005
03: */
04: package uk.org.ponder.rsf.view;
05:
06: import uk.org.ponder.springutil.XMLFactoryBean;
07:
08: /** A bean which will load an XML-specified components tree into a
09: * "proto-container" UIBranchContainer component root.
10: * <p>Disused - used only in test.
11: * @author Antranig Basman (antranig@caret.cam.ac.uk)
12: *
13: */
14: public class XMLComponentFactoryBean extends XMLFactoryBean {
15: public XMLComponentFactoryBean() {
16: setObjectType(ViewRoot.class);
17: }
18: }
|