]> source.dussan.org Git - vaadin-framework.git/commitdiff
Update @since tags to 7.6.
authorMika Murtojarvi <mika@vaadin.com>
Tue, 8 Sep 2015 09:09:35 +0000 (12:09 +0300)
committerVaadin Code Review <review@vaadin.com>
Tue, 8 Sep 2015 09:49:58 +0000 (09:49 +0000)
Change-Id: I4a8911968fc2c324f8862d28b938834fa0309b85

server/src/com/vaadin/ui/Window.java

index fd5565f9007850d159bedadb3a8e37afb6b4f527..653a7d471c9001edbdbbef43aef11e95e5ef197a 100644 (file)
@@ -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() {