| |
|
| org.araneaframework.uilib.form.control.BaseControl org.araneaframework.uilib.form.control.StringArrayRequestControl org.araneaframework.uilib.form.control.StringRequestControl org.araneaframework.uilib.form.control.EmptyStringNullableControl org.araneaframework.uilib.form.control.StringValueControl org.araneaframework.uilib.form.control.TextControl
All known Subclasses: org.araneaframework.uilib.form.control.AutoCompleteTextControl,
Constructor Summary | |
public | TextControl() Empty. | public | TextControl(TextType textType) Makes a text control with specific type. | public | TextControl(Long minLength, Long maxLength) Makes a text control with specific type and minimum and maximum length constraints. | public | TextControl(Long minLength, Long maxLength, boolean trimValue) Makes a text control with specific type and minimum and maximum length constraints. | public | TextControl(TextType textType, Long minLength, Long maxLength) Makes a text control with specific type and minimum and maximum length constraints. |
TextControl | public TextControl()(Code) | | Empty.
|
TextControl | public TextControl(TextType textType)(Code) | | Makes a text control with specific type.
Parameters: textType - specific type. |
TextControl | public TextControl(Long minLength, Long maxLength)(Code) | | Makes a text control with specific type and minimum and maximum length constraints.
Parameters: minLength - minimum permitted length. Parameters: maxLength - maximum permitted length. |
TextControl | public TextControl(Long minLength, Long maxLength, boolean trimValue)(Code) | | Makes a text control with specific type and minimum and maximum length constraints.
Parameters: minLength - minimum permitted length. Parameters: maxLength - maximum permitted length. Parameters: trimValue - whether the value from request will be trimmed. |
TextControl | public TextControl(TextType textType, Long minLength, Long maxLength)(Code) | | Makes a text control with specific type and minimum and maximum length constraints.
Parameters: textType - specific type. Parameters: minLength - minimum permitted length. Parameters: maxLength - maximum permitted length. |
getViewModel | public Object getViewModel()(Code) | | Returns
ViewModel .
ViewModel. |
setTextType | public void setTextType(TextType textType)(Code) | | Sets the specific text type.
Parameters: textType - the specific text type. |
validateNotNull | protected void validateNotNull()(Code) | | In case text control type is other than
TextType.TEXT makes custom checks.
|
|
|
|