Module io.github.mmm.ui.api.core
Package io.github.mmm.ui.api.attribute
Interface AttributeWriteValueForUser<V>
-
- Type Parameters:
V
- type of thevalue
.
- All Superinterfaces:
AttributeReadValue<V>
- All Known Subinterfaces:
UiAbstractChoice<O,V>
,UiAbstractCompositeInput<C,V>
,UiAbstractInput<V>
,UiAbstractMultiChoice<V>
,UiAbstractSingleChoice<V>
,UiBigDecimalInput
,UiBigIntegerInput
,UiBindableWidget<V>
,UiCheckbox
,UiCheckboxChoice<V>
,UiColorInput
,UiComboBox<V>
,UiCompositeInput<V>
,UiDataTable<R>
,UiDateInput
,UiDateTimeInput
,UiDoubleInput
,UiFormGroup<V>
,UiFormPanel<V>
,UiHorizontalInput<V>
,UiHtmlEditor
,UiInput<V>
,UiIntegerInput
,UiIntegerSlider
,UiLongInput
,UiLongSlider
,UiMultiComboBox<V>
,UiNumberInput<V>
,UiNumericInput<V>
,UiPasswordInput
,UiRadioButton
,UiRadioChoice<V>
,UiSlider<V>
,UiStringInput
,UiTextArea
,UiTextInput
,UiTextualInput<V>
,UiTimeInput
,UiValidatableWidget<V>
,UiValueBinding<V>
,UiValuedComposite<C,V>
,UiVerticalInput<V>
- All Known Implementing Classes:
FxAbstractChoice
,FxActiveValidatableWidget
,FxCheckbox
,FxComboBox
,FxCompositeInput
,FxDataTable
,FxFormGroup
,FxFormGroup
,FxFormPanel
,FxFormPanel
,FxHorizontalInput
,FxInput
,FxPasswordInput
,FxRadioButton
,FxRadioChoice
,FxStringInput
,FxTextArea
,FxTextInput
,FxTextualInput
,FxValuedComposite
,TestAbstractChoice
,TestAbstractRadioButton
,TestAbstractSingleChoice
,TestActiveValidatableWidget
,TestCheckbox
,TestComboBox
,TestDataList
,TestFormGroup
,TestFormPanel
,TestInput
,TestPasswordInput
,TestRadioButton
,TestRadioChoice
,TestSelectionInput
,TestStringInput
,TestTextArea
,TestTextInput
,TestTextualInput
,TestValuedComposite
,TvmAbstractTextArea
,TvmBooleanInput
,TvmCheckbox
,TvmComboBoxDataList
,TvmComboBoxSelect
,TvmHtmlInput
,TvmHtmlSelect
,TvmInput
,TvmLabelledInput
,TvmPasswordInput
,TvmRadioButton
,TvmRadioChoice
,TvmStringInput
,TvmTextArea
,TvmTextInput
,TvmTextualInput
,TvmValuedComposite
,UiBindingReceiverImpl
,UiCustomCompositeInput
,UiCustomEditor
,UiCustomFormPanel
,UiCustomHorizontalInput
,UiCustomInput
,UiCustomValidatableWidget
,UiCustomValuedComposite
public interface AttributeWriteValueForUser<V> extends AttributeReadValue<V>
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setValue(V value, boolean forUser)
-
Methods inherited from interface io.github.mmm.ui.api.attribute.AttributeReadValue
getValue
-
-
-
-
Method Detail
-
setValue
void setValue(V value, boolean forUser)
- Parameters:
value
- thevalue
to set.forUser
- -true
toset the value on behalf of the end-user
,false
otherwise (to set programmatically).
-
-