]> source.dussan.org Git - vaadin-framework.git/commitdiff
Use correct version in since for Grid row height methods (#9824)
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>
Wed, 16 Aug 2017 10:36:44 +0000 (13:36 +0300)
committerHenri Sara <henri.sara@gmail.com>
Wed, 16 Aug 2017 10:36:44 +0000 (13:36 +0300)
Related to #9425.

server/src/main/java/com/vaadin/ui/Grid.java
shared/src/main/java/com/vaadin/shared/ui/grid/GridState.java

index 1aca35d3ecd9f3742db9e1ccce97dcfe5510e1ca..2828742ee6de3d72ccd6e7e2d296a81f035e24a9 100644 (file)
@@ -3040,7 +3040,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      * 
      * @param rowHeight
      *            The height of a row in pixels or -1 for automatic calculation
-     * @since 8.1.2
+     * @since 8.2
      */
     public void setBodyRowHeight(double rowHeight) {
         getState().bodyRowHeight = rowHeight;
@@ -3053,7 +3053,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      *
      * @param rowHeight
      *            The height of a row in pixels or -1 for automatic calculation
-     * @since 8.1.2
+     * @since 8.2
      */
     public void setHeaderRowHeight(double rowHeight) {
         getState().headerRowHeight = rowHeight;
@@ -3066,7 +3066,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      *
      * @param rowHeight
      *            The height of a row in pixels or -1 for automatic calculation
-     * @since 8.1.2
+     * @since 8.2
      */
     public void setFooterRowHeight(double rowHeight) {
         getState().footerRowHeight = rowHeight;
@@ -3093,7 +3093,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      * calculation mode.
      *
      * @return body row height
-     * @since 8.1.2
+     * @since 8.2
      */
     public double getBodyRowHeight() {
         return getState(false).bodyRowHeight;
@@ -3104,7 +3104,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      * calculation mode.
      *
      * @return header row height
-     * @since 8.1.2
+     * @since 8.2
      */
     public double getHeaderRowHeight() {
         return getState(false).headerRowHeight;
@@ -3115,7 +3115,7 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      * calculation mode.
      *
      * @return footer row height
-     * @since 8.1.2
+     * @since 8.2
      */
     public double getFooterRowHeight() {
         return getState(false).footerRowHeight;
index f2ebd903b27cb0d0ba6a5a18e8d2fffe14bae335..9a8fb531056926dd26c498a96a5dd343421df680 100644 (file)
@@ -150,7 +150,7 @@ public class GridState extends AbstractSingleSelectState {
      * Explicit body row height in pixels for grid rows, or -1 to calculate
      * automatically based on the theme.
      *
-     * @since 8.1.2
+     * @since 8.2
      */
     public double bodyRowHeight = -1;
 
@@ -158,7 +158,7 @@ public class GridState extends AbstractSingleSelectState {
      * Explicit body row height in pixels for grid rows, or -1 to calculate
      * automatically based on the theme.
      *
-     * @since 8.1.2
+     * @since 8.2
      */
     public double headerRowHeight = -1;
 
@@ -166,7 +166,7 @@ public class GridState extends AbstractSingleSelectState {
      * Explicit body row height in pixels for grid rows, or -1 to calculate
      * automatically based on the theme.
      *
-     * @since 8.1.2
+     * @since 8.2
      */
     public double footerRowHeight = -1;
 }