From: Pekka Hyvönen Date: Fri, 26 May 2017 07:06:13 +0000 (+0300) Subject: Fix `@since` tags from #9206 to 8.0.7 X-Git-Tag: 8.1.0.beta2~28 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=be058cbf57ee75c29b84657962b3442c4b3243c1;p=vaadin-framework.git Fix `@since` tags from #9206 to 8.0.7 --- 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) {