]> source.dussan.org Git - vaadin-framework.git/commitdiff
Add reference to Column.setId in javadocs of methods accepting col ids (#8360)
authorLeif Åstrand <legioth@gmail.com>
Mon, 30 Jan 2017 13:25:38 +0000 (15:25 +0200)
committerDenis <denis@vaadin.com>
Mon, 30 Jan 2017 13:25:38 +0000 (15:25 +0200)
server/src/main/java/com/vaadin/ui/Grid.java
server/src/main/java/com/vaadin/ui/components/grid/FooterRow.java
server/src/main/java/com/vaadin/ui/components/grid/HeaderRow.java
server/src/main/java/com/vaadin/ui/components/grid/StaticSection.java

index 93afdc2d24e08e33877c7f05584f11f5e96cbb4f..7aed70461e64cd56faeec7c2f45494e364da920b 100644 (file)
@@ -2020,6 +2020,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
     /**
      * Gets a {@link Column} of this grid by its identifying string.
      *
+     * @see Column#setId(String)
+     *
      * @param columnId
      *            the identifier of the column to get
      * @return the column corresponding to the given column identifier
@@ -2860,9 +2862,9 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
     /**
      * Sets the sort order to use, given a {@link GridSortOrderBuilder}.
      * Shorthand for {@code setSortOrder(builder.build())}.
-     * 
+     *
      * @see GridSortOrderBuilder
-     * 
+     *
      * @param builder
      *            the sort builder to retrieve the sort order from
      * @throws NullPointerException
@@ -3188,6 +3190,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
     /**
      * Sets a user-defined identifier for given column.
      *
+     * @see Column#setId(String)
+     *
      * @param column
      *            the column
      * @param id
index 8d6bd70bf154fbe28b42e94362c92d69469dba79..23971c3b36b4374dd5fccddd725048c563016f58 100644 (file)
@@ -19,6 +19,7 @@ import java.io.Serializable;
 import java.util.Set;
 
 import com.vaadin.ui.Grid;
+import com.vaadin.ui.Grid.Column;
 
 /**
  * A footer row in a Grid.
@@ -31,6 +32,8 @@ public interface FooterRow extends Serializable {
     /**
      * Returns the cell on this row corresponding to the given column id.
      *
+     * @see Column#setId(String)
+     *
      * @param columnId
      *            the id of the column whose footer cell to get, not null
      * @return the footer cell
index 19bcb4d1112781a7d501fdb4391542ac17234424..e07c44ba0e39b628db76fe18894847129c089ca6 100644 (file)
@@ -19,6 +19,7 @@ import java.io.Serializable;
 import java.util.Set;
 
 import com.vaadin.ui.Grid;
+import com.vaadin.ui.Grid.Column;
 
 /**
  * A header row in a Grid.
@@ -31,6 +32,8 @@ public interface HeaderRow extends Serializable {
     /**
      * Returns the cell on this row corresponding to the given column id.
      *
+     * @see Column#setId(String)
+     *
      * @param columnId
      *            the id of the column whose header cell to get, not null
      * @return the header cell
index a28b971d7aa1d10f7fab9d030510acb3af8fdb74..b621f09ad031e5c943cdec37c89df25892d116fe 100644 (file)
@@ -173,6 +173,8 @@ public abstract class StaticSection<ROW extends StaticSection.StaticRow<?>>
          * Returns the cell in this section that corresponds to the given column
          * id.
          *
+         * @see Column#setId(String)
+         *
          * @param columnId
          *            the id of the column
          * @return the cell for the given column