summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/src/com/vaadin/client/ui/ui/UIConnector.java2
-rw-r--r--client/src/com/vaadin/client/widget/grid/EventCellReference.java8
-rw-r--r--client/src/com/vaadin/client/widgets/Grid.java6
-rw-r--r--server/src/com/vaadin/ui/Grid.java2
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java2
5 files changed, 10 insertions, 10 deletions
diff --git a/client/src/com/vaadin/client/ui/ui/UIConnector.java b/client/src/com/vaadin/client/ui/ui/UIConnector.java
index 26ccff1191..264b2de0e1 100644
--- a/client/src/com/vaadin/client/ui/ui/UIConnector.java
+++ b/client/src/com/vaadin/client/ui/ui/UIConnector.java
@@ -814,7 +814,7 @@ public class UIConnector extends AbstractSingleComponentContainerConnector
* Sends a request to the server to print a design to the console for the
* given component.
*
- * @since
+ * @since 7.5
* @param connector
* the component connector to output a declarative design for
*/
diff --git a/client/src/com/vaadin/client/widget/grid/EventCellReference.java b/client/src/com/vaadin/client/widget/grid/EventCellReference.java
index 98878339d1..854d91920b 100644
--- a/client/src/com/vaadin/client/widget/grid/EventCellReference.java
+++ b/client/src/com/vaadin/client/widget/grid/EventCellReference.java
@@ -80,7 +80,7 @@ public class EventCellReference<T> extends CellReference<T> {
/**
* Is the cell reference for a cell in the header of the Grid.
*
- * @since
+ * @since 7.5
* @return <code>true</true> if referenced cell is in the header,
* <code>false</code> if not
*/
@@ -91,7 +91,7 @@ public class EventCellReference<T> extends CellReference<T> {
/**
* Is the cell reference for a cell in the body of the Grid.
*
- * @since
+ * @since 7.5
* @return <code>true</true> if referenced cell is in the body,
* <code>false</code> if not
*/
@@ -102,7 +102,7 @@ public class EventCellReference<T> extends CellReference<T> {
/**
* Is the cell reference for a cell in the footer of the Grid.
*
- * @since
+ * @since 7.5
* @return <code>true</true> if referenced cell is in the footer,
* <code>false</code> if not
*/
@@ -113,7 +113,7 @@ public class EventCellReference<T> extends CellReference<T> {
/**
* Gets the Grid section where the referenced cell is.
*
- * @since
+ * @since 7.5
* @return grid section
*/
public Section getSection() {
diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java
index 1fed0574dd..22a0ae27fb 100644
--- a/client/src/com/vaadin/client/widgets/Grid.java
+++ b/client/src/com/vaadin/client/widgets/Grid.java
@@ -1287,7 +1287,7 @@ public class Grid<T> extends ResizeComposite implements
* @throws IllegalStateException
* if this editor is already in edit mode
*
- * @since
+ * @since 7.5
*/
public void editRow(int rowIndex, int columnIndex) {
if (!enabled) {
@@ -1496,7 +1496,7 @@ public class Grid<T> extends ResizeComposite implements
* Opens the editor overlay over the table row indicated by
* {@link #getRow()}.
*
- * @since
+ * @since 7.5
*/
protected void showOverlay() {
@@ -7872,7 +7872,7 @@ public class Grid<T> extends ResizeComposite implements
* <p>
* Note: This cell reference will be updated when firing the next event.
*
- * @since
+ * @since 7.5
* @return event cell reference
*/
public EventCellReference<T> getEventCell() {
diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java
index 73d3a91176..00ed4a190d 100644
--- a/server/src/com/vaadin/ui/Grid.java
+++ b/server/src/com/vaadin/ui/Grid.java
@@ -3364,7 +3364,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
/**
* An abstract base class for server-side Grid extensions.
*
- * @since
+ * @since 7.5
*/
public static abstract class AbstractGridExtension extends
AbstractExtension {
diff --git a/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java b/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
index 9ca0a0a1bb..b6f17661d0 100644
--- a/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
+++ b/shared/src/com/vaadin/shared/ui/ui/DebugWindowServerRpc.java
@@ -51,7 +51,7 @@ public interface DebugWindowServerRpc extends ServerRpc {
* Sends a request to the server to print a design to the console for the
* given component.
*
- * @since
+ * @since 7.5
* @param connector
* the component connector to output a declarative design for
*/