]> source.dussan.org Git - vaadin-framework.git/commitdiff
Update @since tags for 8.0
authorHenri Sara <hesara@vaadin.com>
Wed, 14 Sep 2016 13:53:22 +0000 (16:53 +0300)
committerHenri Sara <hesara@vaadin.com>
Wed, 14 Sep 2016 13:56:59 +0000 (16:56 +0300)
Change-Id: Iec8a81424e1cae9c3dc6c760732e0d48c4a38af2

client/src/main/java/com/vaadin/client/ui/VComboBox.java
client/src/main/java/com/vaadin/client/ui/combobox/ComboBoxConnector.java
server/src/main/java/com/vaadin/ui/AbstractSingleSelect.java
server/src/test/java/com/vaadin/data/BinderTestBase.java
shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxServerRpc.java
shared/src/main/java/com/vaadin/shared/ui/combobox/ComboBoxState.java

index 623393f549de1d38020ce8f6f52640a1b3e42f37..b19f9944ba6c4bb2d379b04a7d9bb14ffe716018 100644 (file)
@@ -1329,7 +1329,7 @@ public class VComboBox extends Composite implements Field, KeyDownHandler,
      * This class is still subject to change and should not be considered as
      * public stable API.
      *
-     * @since
+     * @since 8.0
      */
     public class DataReceivedHandler {
 
index 7cc1ea73229e7d9b2cb537ce252efba0a67a9164..96fa5ea3cd7782d7b7cab9ace1efc55449457e8c 100644 (file)
@@ -133,7 +133,7 @@ public class ComboBoxConnector
      * This method is for internal use only and may be removed in future
      * versions.
      *
-     * @since
+     * @since 8.0
      * @param itemValue
      *            user entered string value for the new item
      */
@@ -148,7 +148,7 @@ public class ComboBoxConnector
      * This method is for internal use only and may be removed in future
      * versions.
      *
-     * @since
+     * @since 8.0
      * @param filter
      *            the current filter string
      */
@@ -166,7 +166,7 @@ public class ComboBoxConnector
      * This method is for internal use only and may be removed in future
      * versions.
      *
-     * @since
+     * @since 8.0
      * @param page
      *            the page number to get or -1 to let the server/connector
      *            decide based on current selection (possibly loading more data
@@ -196,7 +196,7 @@ public class ComboBoxConnector
      * This method is for internal use only and may be removed in future
      * versions.
      *
-     * @since
+     * @since 8.0
      * @param selectionKey
      *            the current selected item key
      */
@@ -216,7 +216,7 @@ public class ComboBoxConnector
      * This method is for internal use only and may be removed in future
      * versions.
      *
-     * @since
+     * @since 8.0
      */
     public void sendFocusEvent() {
         boolean registeredListeners = hasEventListener(EventId.FOCUS);
@@ -235,7 +235,7 @@ public class ComboBoxConnector
      * This method is for internal use only and may be removed in future
      * versions.
      *
-     * @since
+     * @since 8.0
      */
     public void sendBlurEvent() {
         boolean registeredListeners = hasEventListener(EventId.BLUR);
index fa683eb3059a62949fb089102732bbfabb24146d..257e1c9da8ab9fe8ee76c3fab7b8fbee370b3f02 100644 (file)
@@ -39,7 +39,7 @@ import com.vaadin.util.ReflectTools;
  *
  * @see com.vaadin.shared.data.selection.SelectionModel.Single
  *
- * @since
+ * @since 8.0
  */
 public abstract class AbstractSingleSelect<T> extends
         AbstractListing<T, AbstractSingleSelect<T>.AbstractSingleSelection> {
index 978475cebb911870df1c4f0ea2d04dad2c2672ef..b5a1c3a2be41394140db46a029df492f2a63d565 100644 (file)
@@ -25,7 +25,7 @@ import com.vaadin.ui.TextField;
  *
  * @author Vaadin Ltd.
  *
- * @since
+ * @since 8.0
  */
 public abstract class BinderTestBase<BINDER extends Binder<ITEM>, ITEM> {
 
index 16b33b2cd4f8b1a5fc4de60083c4842ad714e906..a24e6c9c402eed6e388c2b2ce1874d2259b71533 100644 (file)
@@ -20,7 +20,7 @@ import com.vaadin.shared.communication.ServerRpc;
 /**
  * Client to server RPC interface for ComboBox.
  *
- * @since
+ * @since 8.0
  */
 public interface ComboBoxServerRpc extends ServerRpc {
     /**
index feb77722b736f57673ea5f19bffef8e7e977594b..154735ce26697dcc47d8702bb71bf384a518f34f 100644 (file)
@@ -36,7 +36,7 @@ public class ComboBoxState extends AbstractSingleSelectState {
      * NativeSelect - the user can not enter any text and clicking the text
      * field opens the drop down with options.
      *
-     * @since
+     * @since 8.0
      */
     @DelegateToWidget
     public boolean textInputAllowed = true;