01: /*
02: * Created on 12 Jul 2007
03: */
04: package uk.org.ponder.rsf.producers;
05:
06: /** A signature suitable for a producer implementing an exterior "layout" -
07: * see http://www2.caret.cam.ac.uk/rsfwiki/Wiki.jsp?page=OuterPageTemplates.
08: *
09: * @author Antranig Basman (antranig@caret.cam.ac.uk)
10: *
11: */
12:
13: public interface LayoutProducer extends NullaryProducer {
14: /** Receive the producer from the framework which will deliver the
15: * page-specific component tree */
16:
17: public void setPageProducer(NullaryProducer pageproducer);
18: }
|