Class ManagedUiActionDescriptionFactory
- java.lang.Object
-
- ch.systemsx.cisd.openbis.generic.shared.basic.dto.ManagedUiActionDescriptionFactory
-
- All Implemented Interfaces:
IManagedInputWidgetDescriptionFactory
,java.io.Serializable
public class ManagedUiActionDescriptionFactory extends java.lang.Object implements IManagedInputWidgetDescriptionFactory, java.io.Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ManagedUiActionDescriptionFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IManagedInputWidgetDescription
createComboBoxInputField(java.lang.String label, java.lang.String[] values)
IManagedInputWidgetDescription
createMultilineTextInputField(java.lang.String label)
IManagedInputWidgetDescription
createTextInputField(java.lang.String label)
-
-
-
Method Detail
-
createTextInputField
public IManagedInputWidgetDescription createTextInputField(java.lang.String label)
- Specified by:
createTextInputField
in interfaceIManagedInputWidgetDescriptionFactory
- Returns:
- a text input field with given label
-
createMultilineTextInputField
public IManagedInputWidgetDescription createMultilineTextInputField(java.lang.String label)
- Specified by:
createMultilineTextInputField
in interfaceIManagedInputWidgetDescriptionFactory
- Returns:
- a multiline input field with given label
-
createComboBoxInputField
public IManagedInputWidgetDescription createComboBoxInputField(java.lang.String label, java.lang.String[] values)
- Specified by:
createComboBoxInputField
in interfaceIManagedInputWidgetDescriptionFactory
- Returns:
- a combo box input field with given label and specified list of selectable values.
-
-