diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2017-05-26 10:26:03 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-05-26 10:26:03 +0300 |
commit | a2bfb4343b2ba533e253f1eda87bccf82e745d6a (patch) | |
tree | d31155e3f1cd52ef08ec5ffe4c698855f5a4a42f | |
parent | 3e15c61ac505a28d1cfbc4aabb83dbd5297dab43 (diff) | |
download | vaadin-framework-a2bfb4343b2ba533e253f1eda87bccf82e745d6a.tar.gz vaadin-framework-a2bfb4343b2ba533e253f1eda87bccf82e745d6a.zip |
Fix @since tags from #9208 to point to 8.0.7 (#9440)
-rw-r--r-- | server/src/main/java/com/vaadin/ui/Grid.java | 21 |
1 files 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<T> extends AbstractListing<T> 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<T> dataCommunicator) { this(new PropertySet<T>() { @@ -2097,17 +2097,19 @@ public class Grid<T> extends AbstractListing<T> 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 <code>null</code> * @param dataCommunicator * the data communicator to use, not<code>null</code> - * @since 8.0.6 + * @since 8.0.7 */ protected Grid(Class<T> beanType, DataCommunicator<T> dataCommunicator) { this(BeanPropertySet.get(beanType), dataCommunicator); @@ -2143,9 +2145,10 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents, * the property set implementation to use, not <code>null</code>. * @param dataCommunicator * the data communicator to use, not<code>null</code> - * @since 8.0.6 + * @since 8.0.7 */ - protected Grid(PropertySet<T> propertySet, DataCommunicator<T> dataCommunicator) { + protected Grid(PropertySet<T> propertySet, + DataCommunicator<T> dataCommunicator) { super(dataCommunicator); registerRpc(new GridServerRpcImpl()); setDefaultHeaderRow(appendHeaderRow()); |