01: /*
02: * Created on 17-Sep-2006
03: */
04: package uk.org.ponder.rsf.producers;
05:
06: import uk.org.ponder.rsf.components.UIContainer;
07:
08: /** A basic "producer" with no specific seed component. Hence accepts a
09: * 2nd argument indicating the desired client ID. This is suitable,
10: * for example, for accepting the page body from a main ViewProducer.
11: *
12: * @author Antranig Basman (amb26@ponder.org.uk)
13: *
14: */
15:
16: public interface BasicProducer {
17: public void fillComponents(UIContainer parent, String clientID);
18: }
|