summaryrefslogtreecommitdiffstats
path: root/client/src
diff options
context:
space:
mode:
authorPekka Hyvönen <pekka@vaadin.com>2017-02-07 13:00:53 +0200
committerGitHub <noreply@github.com>2017-02-07 13:00:53 +0200
commit1d6fcdc54309a93613c3ece32d2058d6f6a4ce65 (patch)
treeb982817b48d87062c38978cf7048f32d57ca441d /client/src
parent8dc5d8d2f292ff18b9a989058a3b4d400008ed90 (diff)
downloadvaadin-framework-1d6fcdc54309a93613c3ece32d2058d6f6a4ce65.tar.gz
vaadin-framework-1d6fcdc54309a93613c3ece32d2058d6f6a4ce65.zip
Update missing since tags for 7.7.7 (#8474)7.7.7
* Add missing since tags for 7.7.7
Diffstat (limited to 'client/src')
-rw-r--r--client/src/main/java/com/vaadin/client/widget/grid/selection/HasUserSelectionAllowed.java2
-rwxr-xr-xclient/src/main/java/com/vaadin/client/widgets/Grid.java2
2 files changed, 4 insertions, 0 deletions
diff --git a/client/src/main/java/com/vaadin/client/widget/grid/selection/HasUserSelectionAllowed.java b/client/src/main/java/com/vaadin/client/widget/grid/selection/HasUserSelectionAllowed.java
index de4eda36ca..d097ad02a7 100644
--- a/client/src/main/java/com/vaadin/client/widget/grid/selection/HasUserSelectionAllowed.java
+++ b/client/src/main/java/com/vaadin/client/widget/grid/selection/HasUserSelectionAllowed.java
@@ -21,6 +21,8 @@ package com.vaadin.client.widget.grid.selection;
*
* @param <T>
* Grid's row type
+ *
+ * @since 7.7.7
*/
public interface HasUserSelectionAllowed<T> extends SelectionModel<T> {
diff --git a/client/src/main/java/com/vaadin/client/widgets/Grid.java b/client/src/main/java/com/vaadin/client/widgets/Grid.java
index 7ef2167f1c..44c627776d 100755
--- a/client/src/main/java/com/vaadin/client/widgets/Grid.java
+++ b/client/src/main/java/com/vaadin/client/widgets/Grid.java
@@ -3086,6 +3086,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
* @param userSelectionAllowed
* <code>true</code> if the user is allowed to change the
* selection, <code>false</code> otherwise
+ * @since 7.7.7
*/
public void setUserSelectionAllowed(boolean userSelectionAllowed) {
if (userSelectionAllowed == this.userSelectionAllowed) {
@@ -9249,6 +9250,7 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>,
*
* @return <code>true</code> if selection by the user is allowed by the
* selection model (the default), <code>false</code> otherwise
+ * @since 7.7.7
*/
public boolean isUserSelectionAllowed() {
if (!(getSelectionModel() instanceof HasUserSelectionAllowed)) {