]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix appendHeaderRow and appendFooterRow JavaDoc (#13334)
authorTeemu Suo-Anttila <teemusa@vaadin.com>
Mon, 8 Dec 2014 07:50:15 +0000 (09:50 +0200)
committerTeemu Suo-Anttila <teemusa@vaadin.com>
Mon, 8 Dec 2014 07:50:15 +0000 (09:50 +0200)
Change-Id: Ib6d3b3f9ff38e6ec96b3b395794d7dee2e84cc0a

server/src/com/vaadin/ui/Grid.java

index 34d8a168074a4abf9a3de332be2153757ba89cc5..aff0fe0e8a8336e4c9d512214df69670e4439470 100644 (file)
@@ -74,7 +74,6 @@ import com.vaadin.shared.ui.grid.HeightMode;
 import com.vaadin.shared.ui.grid.ScrollDestination;
 import com.vaadin.shared.ui.grid.SortDirection;
 import com.vaadin.shared.ui.grid.SortEventOriginator;
-import com.vaadin.ui.Grid.StaticSection.StaticRow;
 import com.vaadin.ui.components.grid.Renderer;
 import com.vaadin.ui.components.grid.SortOrderChangeEvent;
 import com.vaadin.ui.components.grid.SortOrderChangeListener;
@@ -3217,10 +3216,10 @@ public class Grid extends AbstractComponent implements SelectionChangeNotifier,
      * Adds a new row at the bottom of the header section.
      * 
      * @return the new row
-     * @see #prependRow()
-     * @see #addRowAt(int)
-     * @see #removeRow(StaticRow)
-     * @see #removeRow(int)
+     * @see #prependHeaderRow()
+     * @see #addHeaderRowAt(int)
+     * @see #removeHeaderRow(HeaderRow)
+     * @see #removeHeaderRow(int)
      */
     public HeaderRow appendHeaderRow() {
         return header.appendRow();
@@ -3375,10 +3374,10 @@ public class Grid extends AbstractComponent implements SelectionChangeNotifier,
      * Adds a new row at the bottom of the footer section.
      * 
      * @return the new row
-     * @see #prependRow()
-     * @see #addRowAt(int)
-     * @see #removeRow(StaticRow)
-     * @see #removeRow(int)
+     * @see #prependFooterRow()
+     * @see #addFooterRowAt(int)
+     * @see #removeFooterRow(FooterRow)
+     * @see #removeFooterRow(int)
      */
     public FooterRow appendFooterRow() {
         return footer.appendRow();