summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorMika Murtojarvi <mika@vaadin.com>2015-09-08 12:09:35 +0300
committerVaadin Code Review <review@vaadin.com>2015-09-08 09:49:58 +0000
commit357c23f22f6f2e26c1ac246d5a2b6f428f534873 (patch)
tree5233004232d2af2817b7f1b5e04d383cb9a0ab58 /server
parent82a03223478784b04951d4fccd38552e48469814 (diff)
downloadvaadin-framework-357c23f22f6f2e26c1ac246d5a2b6f428f534873.tar.gz
vaadin-framework-357c23f22f6f2e26c1ac246d5a2b6f428f534873.zip
Update @since tags to 7.6.
Change-Id: I4a8911968fc2c324f8862d28b938834fa0309b85
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/ui/Window.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/server/src/com/vaadin/ui/Window.java b/server/src/com/vaadin/ui/Window.java
index fd5565f900..653a7d471c 100644
--- a/server/src/com/vaadin/ui/Window.java
+++ b/server/src/com/vaadin/ui/Window.java
@@ -898,7 +898,7 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier,
* Adds a close shortcut - pressing this key while holding down all (if any)
* modifiers specified while this Window is in focus will close the Window.
*
- * @since
+ * @since 7.6
* @param keyCode
* the keycode for invoking the shortcut
* @param modifiers
@@ -922,7 +922,7 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier,
* Removes a close shortcut previously added with
* {@link #addCloseShortcut(int, int...)}.
*
- * @since
+ * @since 7.6
* @param keyCode
* the keycode for invoking the shortcut
* @param modifiers
@@ -945,7 +945,7 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier,
* they may require. For more fine-grained control over shortcuts, use
* {@link #removeCloseShortcut(int, int...)}.
*
- * @since
+ * @since 7.6
*/
public void removeAllCloseShortcuts() {
for (CloseShortcut shortcut : closeShortcuts) {
@@ -957,7 +957,7 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier,
/**
* Checks if a close window shortcut key has already been registered.
*
- * @since
+ * @since 7.6
* @param keyCode
* the keycode for invoking the shortcut
* @param modifiers
@@ -981,7 +981,7 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier,
* check if a certain combination of keys has been registered as a close
* shortcut, use the {@link #hasCloseShortcut(int, int...)} method instead.
*
- * @since
+ * @since 7.6
* @return an unmodifiable Collection of CloseShortcut objects.
*/
public Collection<CloseShortcut> getCloseShortcuts() {