| uk.org.ponder.rsf.view.ComponentProducer
ComponentProducer | public interface ComponentProducer (Code) | | A "static", that is, application scope component producer. The common
arguments are supplied to give the producer as good a chance as possible
of not requiring any request-scope dependencies.
|
Method Summary | |
public void | fillComponents(UIContainer tofill, ViewParameters viewparams, ComponentChecker checker) Parameters: tofill - The container into which produced components will be inserted. Parameters: viewparams - The view parameters specifying the currently rendering view Parameters: checker - A ComponentChecker (actually an interface into a ViewTemplate)that can be used by the producer to "short-circuit" the production of potentially expensive components if they are not present in the chosentemplate for this view. |
fillComponents | public void fillComponents(UIContainer tofill, ViewParameters viewparams, ComponentChecker checker)(Code) | | Parameters: tofill - The container into which produced components will be inserted. Parameters: viewparams - The view parameters specifying the currently rendering view Parameters: checker - A ComponentChecker (actually an interface into a ViewTemplate)that can be used by the producer to "short-circuit" the production of potentially expensive components if they are not present in the chosentemplate for this view. Since the IKAT algorithm cannot run at this time, itis currently only economic to check components that are present at the rootlevel of the template, but these are the most likely to be expensive. |
|
|