summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorelmot <elmot@vaadin.com>2015-05-29 18:13:33 +0300
committerVaadin Code Review <review@vaadin.com>2015-06-01 06:24:32 +0000
commit4932cecca53b25149ec18dd811c89997ee43e8d9 (patch)
treea99c7a51e0c064728974404b334766e654b2b729
parent5b92ec790e3d3949992275d54ee8ac61ad94c157 (diff)
downloadvaadin-framework-4932cecca53b25149ec18dd811c89997ee43e8d9.tar.gz
vaadin-framework-4932cecca53b25149ec18dd811c89997ee43e8d9.zip
Fix for javadocs
Change-Id: Id8cec85e279907795947e0b0e98649fde6eecb2d
-rw-r--r--server/src/com/vaadin/ui/Grid.java44
1 files changed, 22 insertions, 22 deletions
diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java
index 00ed4a190d..c061a81b73 100644
--- a/server/src/com/vaadin/ui/Grid.java
+++ b/server/src/com/vaadin/ui/Grid.java
@@ -794,7 +794,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Marks an item as selected.
*
- * @param itemIds
+ * @param itemId
* the itemId to mark as selected; <code>null</code> for
* deselect
* @return <code>true</code> if the selection state changed.
@@ -1944,7 +1944,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Removes the row at the given position.
*
- * @param index
+ * @param rowIndex
* the position of the row
*
* @throws IllegalArgumentException
@@ -2441,7 +2441,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
private Converter<?, Object> converter;
/**
- * A check for allowing the {@link #Column(Grid, GridColumnState)
+ * A check for allowing the {@link #Column(Grid, GridColumnState, Object)
* constructor} to call {@link #setConverter(Converter)} with a
* <code>null</code>, even if model and renderer aren't compatible.
*/
@@ -3101,7 +3101,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
*
* @throws IllegalArgumentException
* if there is no column for the provided property id
- * @throws BindException
+ * @throws FieldGroup.BindException
* if no field has been configured and there is a problem
* building or binding
*/
@@ -3272,12 +3272,12 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
}
/**
- * An abstract base class for server-side Grid renderers.
- * {@link com.vaadin.client.widget.grid.Renderer Grid renderers}. This class
- * currently extends the AbstractGridExtension superclass, but this fact
- * should be regarded as an implementation detail and subject to change in a
- * future major or minor Vaadin revision.
- *
+ * An abstract base class for server-side
+ * {@link com.vaadin.ui.renderers.Renderer Grid renderers}. This class
+ * currently extends the AbstractExtension superclass, but this fact should
+ * be regarded as an implementation detail and subject to change in a future
+ * major or minor Vaadin revision.
+ *
* @param <T>
* the type this renderer knows how to present
*/
@@ -3348,7 +3348,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
* is desired. For instance, a {@code Renderer<Date>} could first turn a
* date value into a formatted string and return
* {@code encode(dateString, String.class)}.
- *
+ *
* @param value
* the value to be encoded
* @param type
@@ -3363,7 +3363,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* An abstract base class for server-side Grid extensions.
- *
+ *
* @since 7.5
*/
public static abstract class AbstractGridExtension extends
@@ -3378,7 +3378,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Constructs a new Grid extension and extends given Grid.
- *
+ *
* @param grid
* a grid instance
*/
@@ -3537,7 +3537,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
* in Grid() constructor, or <code>false</code> if the user has set their
* own Container.
*
- * @see #setContainerDataSource()
+ * @see #setContainerDataSource(Indexed)
* @see #Grid()
*/
private boolean defaultContainer = true;
@@ -4513,7 +4513,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
* @throws IllegalArgumentException
* if {@code rows} is zero or less
* @throws IllegalArgumentException
- * if {@code rows} is {@link Double#isInifinite(double)
+ * if {@code rows} is {@link Double#isInfinite(double)
* infinite}
* @throws IllegalArgumentException
* if {@code rows} is {@link Double#isNaN(double) NaN}
@@ -4759,7 +4759,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
* {@link SelectionModel.Single} and {@link SelectionModel.Multi} are
* supported.
*
- * @param itemIds
+ * @param itemId
* the itemId to mark as selected
* @return <code>true</code> if the selection state changed,
* <code>false</code> if the itemId already was selected
@@ -4852,10 +4852,10 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
* {@link SelectionModel SelectionModels} would be able to inform Grid of
* these events.
*
- * @param addedSelections
- * the selections that were added by this event
- * @param removedSelections
- * the selections that were removed by this event
+ * @param newSelection
+ * the selection that was added by this event
+ * @param oldSelection
+ * the selection that was removed by this event
*/
public void fireSelectionEvent(Collection<Object> oldSelection,
Collection<Object> newSelection) {
@@ -5235,7 +5235,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Removes the row at the given position from the header section.
*
- * @param index
+ * @param rowIndex
* the position of the row
*
* @throws IllegalArgumentException
@@ -5382,7 +5382,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* Removes the row at the given position from the footer section.
*
- * @param index
+ * @param rowIndex
* the position of the row
*
* @throws IllegalArgumentException