From a2bfb4343b2ba533e253f1eda87bccf82e745d6a Mon Sep 17 00:00:00 2001 From: Pekka Hyvönen Date: Fri, 26 May 2017 10:26:03 +0300 Subject: Fix @since tags from #9208 to point to 8.0.7 (#9440) --- server/src/main/java/com/vaadin/ui/Grid.java | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/server/src/main/java/com/vaadin/ui/Grid.java b/server/src/main/java/com/vaadin/ui/Grid.java index 080c2fb4f1..a22e349573 100644 --- a/server/src/main/java/com/vaadin/ui/Grid.java +++ b/server/src/main/java/com/vaadin/ui/Grid.java @@ -2062,7 +2062,7 @@ public class Grid extends AbstractListing implements HasComponents, * the custom data communicator to set * @see #Grid() * @see #Grid(PropertySet, DataCommunicator) - * @since 8.0.6 + * @since 8.0.7 */ protected Grid(DataCommunicator dataCommunicator) { this(new PropertySet() { @@ -2097,17 +2097,19 @@ public class Grid extends AbstractListing implements HasComponents, } /** - * Creates a new grid that uses custom data communicator and provided bean type - * - * It uses reflection of the provided bean type to automatically set up an initial set of columns. - * All columns will be configured using the same {@link Object#toString()} renderer that is used - * by {@link #addColumn(ValueProvider)}. + * Creates a new grid that uses custom data communicator and provided bean + * type + * + * It uses reflection of the provided bean type to automatically set up an + * initial set of columns. All columns will be configured using the same + * {@link Object#toString()} renderer that is used by + * {@link #addColumn(ValueProvider)}. * * @param beanType * the bean type to use, not null * @param dataCommunicator * the data communicator to use, notnull - * @since 8.0.6 + * @since 8.0.7 */ protected Grid(Class beanType, DataCommunicator dataCommunicator) { this(BeanPropertySet.get(beanType), dataCommunicator); @@ -2143,9 +2145,10 @@ public class Grid extends AbstractListing implements HasComponents, * the property set implementation to use, not null. * @param dataCommunicator * the data communicator to use, notnull - * @since 8.0.6 + * @since 8.0.7 */ - protected Grid(PropertySet propertySet, DataCommunicator dataCommunicator) { + protected Grid(PropertySet propertySet, + DataCommunicator dataCommunicator) { super(dataCommunicator); registerRpc(new GridServerRpcImpl()); setDefaultHeaderRow(appendHeaderRow()); -- cgit v1.2.3