Uses of Class
com.vaadin.data.Binder
-
Packages that use Binder Package Description com.vaadin.data com.vaadin.ui.components.grid -
-
Uses of Binder in com.vaadin.data
Subclasses of Binder in com.vaadin.data Modifier and Type Class Description class
BeanValidationBinder<BEAN>
Methods in com.vaadin.data that return Binder Modifier and Type Method Description protected Binder<BEAN>
Binder.BindingBuilderImpl. getBinder()
Returns theBinder
connected to thisBinding
instance.protected Binder<BEAN>
Binder.BindingImpl. getBinder()
Returns theBinder
connected to thisBinding
instance.Binder<BEAN>
BinderValidationStatus. getBinder()
Gets the source binder of the status.Binder<?>
StatusChangeEvent. getBinder()
Gets the binder.Binder<?>
StatusChangeEvent. getSource()
static <BEAN> Binder<BEAN>
Binder. withPropertySet(PropertySet<BEAN> propertySet)
Creates a binder using a customPropertySet
implementation for finding and resolving property names forbindInstanceFields(Object)
,bind(HasValue, String)
andBinder.BindingBuilder.bind(String)
.Binder<BEAN>
Binder. withValidator(Validator<? super BEAN> validator)
Adds an bean level validator.Binder<BEAN>
Binder. withValidator(SerializablePredicate<BEAN> predicate, ErrorMessageProvider errorMessageProvider)
A convenience method to add a validator to this binder using theValidator.from(SerializablePredicate, ErrorMessageProvider)
factory method.Binder<BEAN>
Binder. withValidator(SerializablePredicate<BEAN> predicate, String message)
A convenience method to add a validator to this binder using theValidator.from(SerializablePredicate, String)
factory method.Methods in com.vaadin.data with parameters of type Binder Modifier and Type Method Description static <BEAN> BinderValidationStatus<BEAN>
BinderValidationStatus. createUnresolvedStatus(Binder<BEAN> source)
Convenience method for creating a unresolved validation status for the given binder.Constructors in com.vaadin.data with parameters of type Binder Constructor Description BinderValidationStatus(Binder<BEAN> source, List<BindingValidationStatus<?>> bindingStatuses, List<ValidationResult> binderStatuses)
Creates a new binder validation status for the given binder and validation results.BindingBuilderImpl(Binder<BEAN> binder, HasValue<FIELDVALUE> field, Converter<FIELDVALUE,TARGET> converterValidatorChain, BindingValidationStatusHandler statusHandler)
Creates a new binding builder associated with the given field.StatusChangeEvent(Binder<?> binder, boolean hasValidationErrors)
Create a new status change event for givenbinder
, storing information of whether the change that triggered this event caused validation errors. -
Uses of Binder in com.vaadin.ui.components.grid
Methods in com.vaadin.ui.components.grid that return Binder Modifier and Type Method Description Binder<T>
Editor. getBinder()
Returns the underlying Binder from Editor.Binder<T>
EditorImpl. getBinder()
Methods in com.vaadin.ui.components.grid with parameters of type Binder Modifier and Type Method Description Editor<T>
Editor. setBinder(Binder<T> binder)
Sets the underlying Binder to this Editor.Editor<T>
EditorImpl. setBinder(Binder<T> binder)
-