com.vaadin.flow.component.internal.
Class AbstractFieldSupport<C extends Component & HasValue<AbstractField.ComponentValueChangeEvent<C,T>,T>,T>
Type Parameters:
C
- the value change source type
T
- the value type
All Implemented Interfaces:
Encapsulates all the logic required for a typical field implementation. This
reduces the risk of implementing logic changes in AbstractField
but
not in AbstractCompositeField
, or vice versa.
For internal use only. May be renamed or removed in a future release.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAbstractFieldSupport
(C component, T defaultValue, SerializableBiPredicate<T, T> valueEquals, SerializableConsumer<T> setPresentationValue) Creates a new field support.
-
Method Summary
Modifier and TypeMethodDescriptionaddValueChangeListener
(HasValue.ValueChangeListener<? super AbstractField.ComponentValueChangeEvent<C, T>> listener) Delegate method for
HasValue.addValueChangeListener(com.vaadin.flow.component.HasValue.ValueChangeListener)
Delegate method for
HasValue.getEmptyValue()
.getValue()
Delegate method for
HasValue.getValue()
.void
setModelValue
(T newModelValue, boolean fromClient) Delegate method corresponding to
AbstractField.setModelValue(Object, boolean)
.void
Delegate method for
HasValue.setValue(Object)
.boolean
valueEquals
(T value1, T value2) Delegate method corresponding to
AbstractField.valueEquals(Object, Object)
.
-
Constructor Details
-
AbstractFieldSupport
public AbstractFieldSupport(C component, T defaultValue, SerializableBiPredicate<T, T> valueEquals, SerializableConsumer<T> setPresentationValue) Creates a new field support.
Parameters:
component
- the owning field componentdefaultValue
- the default field valuevalueEquals
- a callback for comparing valuessetPresentationValue
- a callback for setting presentation values
-
-
Method Details
-
addValueChangeListener
public Registration addValueChangeListener(HasValue.ValueChangeListener<? super AbstractField.ComponentValueChangeEvent<C, T>> listener) Delegate method for
HasValue.addValueChangeListener(com.vaadin.flow.component.HasValue.ValueChangeListener)
Parameters:
listener
- the listener to addReturns:
a registration for the listener
-
getValue
Delegate method for
HasValue.getValue()
.Returns:
the field value
-
getEmptyValue
Delegate method for
HasValue.getEmptyValue()
.Returns:
the empty value of this field
-
setValue
Delegate method for
HasValue.setValue(Object)
.Parameters:
value
- the value to set -
valueEquals
Delegate method corresponding to
AbstractField.valueEquals(Object, Object)
.Parameters:
value1
- the first instancevalue2
- the second instanceReturns:
true
if the instances are equal; otherwisefalse
-
setModelValue
Delegate method corresponding to
AbstractField.setModelValue(Object, boolean)
.Parameters:
newModelValue
- the new internal value to usefromClient
-true
if the new value originates from the client; otherwisefalse
-