| java.lang.Object uk.org.ponder.rsf.components.UIComponent uk.org.ponder.rsf.components.UIBound uk.org.ponder.rsf.components.UIBoundString uk.org.ponder.rsf.components.UIInput
UIInput | public class UIInput extends UIBoundString (Code) | | Input of a single String-typed value. May
peer, in HTML, for example, with <input type="text" or with
<textarea>.
since: RSF-0.5 author: Antranig Basman (antranig@caret.cam.ac.uk) |
Constructor Summary | |
public | UIInput() |
Method Summary | |
public static UIInput | make(UIContainer parent, String ID, String binding, String initvalue) Construct a new UIInput component with the specified container as parent.
Parameters: parent - Parent container to which the component is to be added. Parameters: ID - (RSF) ID of this component. Parameters: binding - An EL expression to be used as the value binding for thecontained String value. | public static UIInput | make(UIContainer parent, String ID, String binding) | public static UIInput | make(String valuebinding) |
make | public static UIInput make(UIContainer parent, String ID, String binding, String initvalue)(Code) | | Construct a new UIInput component with the specified container as parent.
Parameters: parent - Parent container to which the component is to be added. Parameters: ID - (RSF) ID of this component. Parameters: binding - An EL expression to be used as the value binding for thecontained String value. May be null . Parameters: initvalue - An initial value for the bound value. May be leftnull . If neither this field norbinding is set. the value present in the templatewill be used. The constructed UIInput component. |
make | public static UIInput make(String valuebinding)(Code) | | A "bare" constructor suitable for the selection member of a single
selection control (UIInput);
|
|
|