diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2014-12-08 09:50:15 +0200 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2014-12-08 09:50:15 +0200 |
commit | 912c90eee32699d1cf62789de0b3a055151fd483 (patch) | |
tree | e1678396bf2161bd65690e560d789519dcfa1705 | |
parent | a44f7cbfd83d180f3dd437f0aeb04906ab19dad6 (diff) | |
download | vaadin-framework-912c90eee32699d1cf62789de0b3a055151fd483.tar.gz vaadin-framework-912c90eee32699d1cf62789de0b3a055151fd483.zip |
Fix appendHeaderRow and appendFooterRow JavaDoc (#13334)
Change-Id: Ib6d3b3f9ff38e6ec96b3b395794d7dee2e84cc0a
-rw-r--r-- | server/src/com/vaadin/ui/Grid.java | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java index 34d8a16807..aff0fe0e8a 100644 --- a/server/src/com/vaadin/ui/Grid.java +++ b/server/src/com/vaadin/ui/Grid.java @@ -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(); |