01: /*
02: * Created on 1 Aug 2007
03: */
04: package uk.org.ponder.rsf.components;
05:
06: public class UIParameterHolder extends UIComponent {
07: /** A list of key/value pairs which should represent EL bindings
08: * ({@link UIELBinding}). Note that the bindings which are added to a
09: * UICommand's list will ONLY be submitted if the command is the submitting
10: * control.
11: */
12: public ParameterList parameters = new ParameterList();
13:
14: /** Add the supplied parameter to the parameter list stored */
15: public UIParameterHolder addParameter(UIParameter param) {
16: parameters.add(param);
17: return this;
18: }
19: }
|