Interface IManagedInputWidgetDescriptionFactory
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ManagedUiActionDescriptionFactory
public interface IManagedInputWidgetDescriptionFactory extends java.io.Serializable
Factory for creation of instances ofIManagedInputWidgetDescription
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IManagedInputWidgetDescription
createComboBoxInputField(java.lang.String labels, java.lang.String[] values)
IManagedInputWidgetDescription
createMultilineTextInputField(java.lang.String label)
IManagedInputWidgetDescription
createTextInputField(java.lang.String label)
-
-
-
Method Detail
-
createTextInputField
IManagedInputWidgetDescription createTextInputField(java.lang.String label)
- Returns:
- a text input field with given label
-
createMultilineTextInputField
IManagedInputWidgetDescription createMultilineTextInputField(java.lang.String label)
- Returns:
- a multiline input field with given label
-
createComboBoxInputField
IManagedInputWidgetDescription createComboBoxInputField(java.lang.String labels, java.lang.String[] values)
- Returns:
- a combo box input field with given label and specified list of selectable values.
-
-