aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/test/java/com/vaadin/data/BinderInstanceFieldTest.java
Commit message (Collapse)AuthorAgeFilesLines
* Remove copyright headers from test code (#10770)Teemu Suo-Anttila2018-03-281-15/+0
|
* Update copyright year (#10761)Ilia Motornyi2018-03-271-1/+1
|
* Extract AbstractBeanPropertyDefinition and PropertyFilterDefinition (#10344)Aleksi Hietanen2017-11-211-1/+0
| | | | | This commit extracts the private nested class AbstractBeanPropertyDefinition from BeanPropertySet to a public class of package com.vaadin.data. Additionally, the nested protected class PropertyFilterDefinition is extracted from NestedBeanPropertyDefinition to a public class in package com.vaadin.data.
* Improve nested property support for Binder (#9925)Olli Tietäväinen2017-11-141-0/+198
| | | Fixes #9210
* Use static import of Assert in tests (#10126)Ahmed Ashour2017-10-031-34/+35
| | | | Also removes dependency on junit.framework.TestCase .
* Improve Binder value change handling with bean validation (#9988)Teemu Suo-Anttila2017-09-251-5/+9
| | | | | | | Changed values are now only applied to the bean when they pass both field and bean validation. Any change that breaks validation will be pending and is attempted to apply when another change event comes. This patch also makes the order of status change event handler and listener call order. This addresses some of the issues raised in #9955.
* Only throw from Binder.bindInstanceFields if there are no bindings at all ↵8.1.0.beta2Artur2017-06-151-6/+7
| | | | | (#9487) Fixes #8986
* Make bindInstanceFields not bind fields already bound using functions (#8998)Artur2017-04-031-0/+23
| | | Fixes #8858
* Throw if there are no automatically bound fields via bindInstanceFields. (#8481)Denis2017-02-081-6/+38
| | | | | | * Throw if there are no automatically bound fields via bindInstanceFields. Fixes #8362
* Integrate BeanBinder functionality into Binder (#8096)Leif Åstrand2017-01-121-0/+388
* Integrate BeanBinder functionality into Binder