summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorHenrik Paul <henrik@vaadin.com>2014-06-04 10:18:17 +0300
committerHenrik Paul <henrik@vaadin.com>2014-06-04 10:18:17 +0300
commit3ce5d15593646533b7cfcaa841ceff262e16c551 (patch)
treed0c254ff9fa603455f886fd0c8664696310b2f9d /server
parentcd9eb7cd9945ef623c5169903e4f884395fcc821 (diff)
downloadvaadin-framework-3ce5d15593646533b7cfcaa841ceff262e16c551.tar.gz
vaadin-framework-3ce5d15593646533b7cfcaa841ceff262e16c551.zip
Changes @since 7.4.0 to @since 7.4
Change-Id: Id932dcd42b95cf30f3f04e9058c2740574463b71
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/ui/components/grid/selection/AbstractSelectionModel.java2
-rw-r--r--server/src/com/vaadin/ui/components/grid/selection/MultiSelectionModel.java2
-rw-r--r--server/src/com/vaadin/ui/components/grid/selection/NoSelectionModel.java2
-rw-r--r--server/src/com/vaadin/ui/components/grid/selection/SelectionChangeEvent.java2
-rw-r--r--server/src/com/vaadin/ui/components/grid/selection/SelectionChangeListener.java2
-rw-r--r--server/src/com/vaadin/ui/components/grid/selection/SelectionChangeNotifier.java2
-rw-r--r--server/src/com/vaadin/ui/components/grid/selection/SelectionModel.java2
-rw-r--r--server/src/com/vaadin/ui/components/grid/selection/SingleSelectionModel.java2
8 files changed, 8 insertions, 8 deletions
diff --git a/server/src/com/vaadin/ui/components/grid/selection/AbstractSelectionModel.java b/server/src/com/vaadin/ui/components/grid/selection/AbstractSelectionModel.java
index 705f361a73..246ef599b3 100644
--- a/server/src/com/vaadin/ui/components/grid/selection/AbstractSelectionModel.java
+++ b/server/src/com/vaadin/ui/components/grid/selection/AbstractSelectionModel.java
@@ -25,7 +25,7 @@ import com.vaadin.ui.components.grid.Grid;
* A base class for SelectionModels that contains some of the logic that is
* reusable.
*
- * @since 7.4.0
+ * @since 7.4
* @author Vaadin Ltd
*/
public abstract class AbstractSelectionModel implements SelectionModel {
diff --git a/server/src/com/vaadin/ui/components/grid/selection/MultiSelectionModel.java b/server/src/com/vaadin/ui/components/grid/selection/MultiSelectionModel.java
index f87f69843d..a196d6ea8c 100644
--- a/server/src/com/vaadin/ui/components/grid/selection/MultiSelectionModel.java
+++ b/server/src/com/vaadin/ui/components/grid/selection/MultiSelectionModel.java
@@ -25,7 +25,7 @@ import com.vaadin.data.Container.Indexed;
/**
* A default implementation of a {@link SelectionModel.Multi}
*
- * @since 7.4.0
+ * @since 7.4
* @author Vaadin Ltd
*/
public class MultiSelectionModel extends AbstractSelectionModel implements
diff --git a/server/src/com/vaadin/ui/components/grid/selection/NoSelectionModel.java b/server/src/com/vaadin/ui/components/grid/selection/NoSelectionModel.java
index eaf5fb830e..ff5573b522 100644
--- a/server/src/com/vaadin/ui/components/grid/selection/NoSelectionModel.java
+++ b/server/src/com/vaadin/ui/components/grid/selection/NoSelectionModel.java
@@ -23,7 +23,7 @@ import com.vaadin.ui.components.grid.Grid;
/**
* A default implementation for a {@link SelectionModel.None}
*
- * @since 7.4.0
+ * @since 7.4
* @author Vaadin Ltd
*/
public class NoSelectionModel implements SelectionModel.None {
diff --git a/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeEvent.java b/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeEvent.java
index bfc024a1f8..cecdca80df 100644
--- a/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeEvent.java
+++ b/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeEvent.java
@@ -27,7 +27,7 @@ import com.vaadin.ui.components.grid.Grid;
* An event that specifies what in a selection has changed, and where the
* selection took place.
*
- * @since 7.4.0
+ * @since 7.4
* @author Vaadin Ltd
*/
public class SelectionChangeEvent extends EventObject {
diff --git a/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeListener.java b/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeListener.java
index a8306c206c..18fb53e19c 100644
--- a/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeListener.java
+++ b/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeListener.java
@@ -21,7 +21,7 @@ import java.io.Serializable;
* The listener interface for receiving {@link SelectionChangeEvent
* SelectionChangeEvents}.
*
- * @since 7.4.0
+ * @since 7.4
* @author Vaadin Ltd
*/
public interface SelectionChangeListener extends Serializable {
diff --git a/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeNotifier.java b/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeNotifier.java
index 9302b3c0e2..1a3f0920db 100644
--- a/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeNotifier.java
+++ b/server/src/com/vaadin/ui/components/grid/selection/SelectionChangeNotifier.java
@@ -21,7 +21,7 @@ import java.io.Serializable;
* The interface for adding and removing listeners for
* {@link SelectionChangeEvent SelectionChangeEvents}.
*
- * @since 7.4.0
+ * @since 7.4
* @author Vaadin Ltd
*/
public interface SelectionChangeNotifier extends Serializable {
diff --git a/server/src/com/vaadin/ui/components/grid/selection/SelectionModel.java b/server/src/com/vaadin/ui/components/grid/selection/SelectionModel.java
index 4ffcc7aa4b..2862b8188c 100644
--- a/server/src/com/vaadin/ui/components/grid/selection/SelectionModel.java
+++ b/server/src/com/vaadin/ui/components/grid/selection/SelectionModel.java
@@ -23,7 +23,7 @@ import com.vaadin.ui.components.grid.Grid;
/**
* The server-side interface that controls Grid's selection state.
*
- * @since 7.4.0
+ * @since 7.4
* @author Vaadin Ltd
*/
public interface SelectionModel extends Serializable {
diff --git a/server/src/com/vaadin/ui/components/grid/selection/SingleSelectionModel.java b/server/src/com/vaadin/ui/components/grid/selection/SingleSelectionModel.java
index 3cd87e6219..6eaf8d9883 100644
--- a/server/src/com/vaadin/ui/components/grid/selection/SingleSelectionModel.java
+++ b/server/src/com/vaadin/ui/components/grid/selection/SingleSelectionModel.java
@@ -21,7 +21,7 @@ import java.util.Collections;
/**
* A default implementation of a {@link SelectionModel.Single}
*
- * @since 7.4.0
+ * @since 7.4
* @author Vaadin Ltd
*/
public class SingleSelectionModel extends AbstractSelectionModel implements