From be058cbf57ee75c29b84657962b3442c4b3243c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pekka=20Hyv=C3=B6nen?= Date: Fri, 26 May 2017 10:06:13 +0300 Subject: [PATCH] Fix `@since` tags from #9206 to 8.0.7 --- server/src/main/java/com/vaadin/ui/Grid.java | 20 +++++++++++--------- 1 file changed, 11 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 3db529ddf5..d5bdfe45e8 100644 --- a/server/src/main/java/com/vaadin/ui/Grid.java +++ b/server/src/main/java/com/vaadin/ui/Grid.java @@ -2013,7 +2013,7 @@ public class Grid extends AbstractListing implements HasComponents, /** * Gets the DataGenerator for this Column. - * + * * @return data generator */ private DataGenerator getDataGenerator() { @@ -2121,17 +2121,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)); @@ -2146,7 +2148,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() { @@ -2194,7 +2196,7 @@ 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) { -- 2.39.5