]> source.dussan.org Git - vaadin-framework.git/commitdiff
Missing @since for 7.4
authorLeif Åstrand <leif@vaadin.com>
Thu, 18 Dec 2014 13:53:31 +0000 (15:53 +0200)
committerLeif Åstrand <leif@vaadin.com>
Thu, 18 Dec 2014 13:53:31 +0000 (15:53 +0200)
Change-Id: I8fdf0c264febf2ab9ae0f230f6bb357ef57be9ec

16 files changed:
client/src/com/vaadin/client/ApplicationConfiguration.java
client/src/com/vaadin/client/Util.java
server/src/com/vaadin/annotations/Viewport.java
server/src/com/vaadin/annotations/ViewportGeneratorClass.java
server/src/com/vaadin/data/fieldgroup/DefaultFieldGroupFieldFactory.java
server/src/com/vaadin/data/util/AbstractInMemoryContainer.java
server/src/com/vaadin/data/util/BeanItem.java
server/src/com/vaadin/data/util/BeanUtil.java
server/src/com/vaadin/server/AbstractDeploymentConfiguration.java
server/src/com/vaadin/server/BrowserWindowOpener.java
server/src/com/vaadin/server/DeploymentConfiguration.java
server/src/com/vaadin/server/ViewportGenerator.java
server/src/com/vaadin/ui/AbstractComponent.java
server/src/com/vaadin/ui/AbstractSelect.java
server/src/com/vaadin/ui/Calendar.java
server/src/com/vaadin/util/ReflectTools.java

index 4865e38a4a95105def4dafd24d0a3cb3047ea1d5..0ef37df13072f5837ae84fc2b9f6b34a7a760d2d 100644 (file)
@@ -491,6 +491,8 @@ public class ApplicationConfiguration implements EntryPoint {
     /**
      * Return Atmosphere version.
      * 
+     * @since 7.4
+     * 
      * @return Atmosphere version.
      */
     public String getAtmosphereVersion() {
@@ -500,6 +502,8 @@ public class ApplicationConfiguration implements EntryPoint {
     /**
      * Return Atmosphere JS version.
      * 
+     * @since 7.4
+     * 
      * @return Atmosphere JS version.
      */
     public String getAtmosphereJSVersion() {
index 1cdd8fb458e3631d43dad924502a02da4ae689f8..585045ddd55ea001aace1c5346453ea0a993eeb5 100644 (file)
@@ -1264,6 +1264,8 @@ public class Util {
     /**
      * Gets currently focused element and checks if it's editable
      * 
+     * @since 7.4
+     * 
      * @return true if focused element is editable
      */
     public static boolean isFocusedElementEditable() {
index 67acae8c23767289fc8d4136c56a3eef4707a608..c5b0abd56f3d79542daf2a7298826481761838ae 100644 (file)
@@ -29,6 +29,8 @@ import java.lang.annotation.Target;
  * If you want to dynamically provide different viewport values for different
  * browser, you should use {@link ViewportGeneratorClass} instead.
  * 
+ * @since 7.4
+ * 
  * @author Vaadin Ltd
  */
 @Target(ElementType.TYPE)
index 7565ad7baeb2ae46474387f34996dec5c188e666..aec7ac07e62a2ccc92c71c4f7b6f7ae91c0692f1 100644 (file)
@@ -34,6 +34,8 @@ import com.vaadin.server.ViewportGenerator;
  * 
  * @see ViewportGenerator
  * 
+ * @since 7.4
+ * 
  * @author Vaadin Ltd
  */
 @Target(ElementType.TYPE)
index 9c2e4b2f83f2313ffe03f2de8a74db157bfa5626..98fed3ad01305dc1eb1e351cd84fbbe60ec24a10 100644 (file)
@@ -52,6 +52,13 @@ public class DefaultFieldGroupFieldFactory implements FieldGroupFieldFactory {
     protected DefaultFieldGroupFieldFactory() {
     }
 
+    /**
+     * Gets the singleton instance.
+     * 
+     * @since 7.4
+     * 
+     * @return the singleton instance
+     */
     public static DefaultFieldGroupFieldFactory get() {
         return INSTANCE;
     }
index b19cddb021fdca9cd8ed51c5ec053403322df424..27168694e669f6cc5be373b3d508224323746605 100644 (file)
@@ -897,10 +897,12 @@ public abstract class AbstractInMemoryContainer<ITEMIDTYPE, PROPERTYIDCLASS, ITE
     /**
      * Notify item set change listeners that an item has been added to the
      * container.
-     * 
+     * <p>
      * Unless subclasses specify otherwise, the default notification indicates a
      * full refresh.
      * 
+     * @since 7.4
+     * 
      * @param postion
      *            position of the added item in the view (if visible)
      * @param itemId
@@ -915,10 +917,12 @@ public abstract class AbstractInMemoryContainer<ITEMIDTYPE, PROPERTYIDCLASS, ITE
     /**
      * Notify item set change listeners that an item has been removed from the
      * container.
-     * 
+     * <p>
      * Unless subclasses specify otherwise, the default notification indicates a
      * full refresh.
      * 
+     * @since 7.4
+     * 
      * @param postion
      *            position of the removed item in the view prior to removal (if
      *            was visible)
index 1be8b70f47fdd0b3362e70111bdaf38d76676f90..71f51c3febfb2d4e219141aa34df5b0ee14be795 100644 (file)
@@ -74,6 +74,8 @@ public class BeanItem<BT> extends PropertysetItem {
      * <code>are</code> methods are not supported.
      * </p>
      * 
+     * @since 7.4
+     * 
      * @param bean
      *            the Java Bean to copy properties from.
      * @param beanClass
index e2f85a765c3078b6e39ff4968f4b5bb7f1cbdcc1..1356cf5359f2a29dac7ad6010e9f4193a2993671 100644 (file)
@@ -27,6 +27,8 @@ import java.util.List;
 /**
  * Utility class for Java Beans information access.
  * 
+ * @since 7.4
+ * 
  * @author Vaadin Ltd
  */
 public final class BeanUtil implements Serializable {
index 43d4570d900ed7ea287b35f12a552a6989a91c36..2554e421c85b374414e34d9a003d83ee414db19e 100644 (file)
@@ -19,6 +19,8 @@ package com.vaadin.server;
  * An abstract base class for DeploymentConfiguration implementations. This
  * class provides default implementation for common config properties.
  * 
+ * @since 7.4
+ * 
  * @author Vaadin Ltd
  */
 public abstract class AbstractDeploymentConfiguration implements
index 8cc1faa728357c100f0b11c866dfa1201ff43218..c1b8cbe91e4bbabdf9d632c80d0dfb6611ed8ab0 100644 (file)
@@ -130,6 +130,8 @@ public class BrowserWindowOpener extends AbstractExtension {
      * be opened in a new browser window/tab when the extended component is
      * clicked.
      * 
+     * @since 7.4
+     * 
      * @param url
      *            URL to open
      */
@@ -142,6 +144,8 @@ public class BrowserWindowOpener extends AbstractExtension {
      * {@code resource} will be opened in a new browser window/tab when the
      * extended component is clicked.
      * 
+     * @since 7.4
+     * 
      * @param resource
      *            resource to open
      */
@@ -152,6 +156,8 @@ public class BrowserWindowOpener extends AbstractExtension {
     /**
      * Returns the resource for this instance.
      * 
+     * @since 7.4
+     * 
      * @return resource to open browser window
      */
     public Resource getResource() {
@@ -163,6 +169,8 @@ public class BrowserWindowOpener extends AbstractExtension {
      * {@code null} if this instance is not URL resource based (a non URL based
      * resource has been set for it).
      * 
+     * @since 7.4
+     * 
      * @return URL to open in the new browser window/tab when the extended
      *         component is clicked
      */
index 3124729773e2eed3d202fbbefdf37b53712648b6..3c20518c39bc3725448df245b8c62db0921aff9a 100644 (file)
@@ -166,12 +166,16 @@ public interface DeploymentConfiguration extends Serializable {
      * Gets UI class configuration option value.
      * 
      * @return UI class name
+     * 
+     * @since 7.4
      */
     public String getUIClassName();
 
     /**
      * Gets UI provider class configuration option value.
      * 
+     * @since 7.4
+     * 
      * @return UI class name
      */
     public String getUIProviderClassName();
@@ -180,17 +184,23 @@ public interface DeploymentConfiguration extends Serializable {
      * Gets Widgetset configuration option value. {@code defaultValue} is
      * returned if widgetset parameter is not configured.
      * 
+     * @since 7.4
+     * 
      * @return UI class name
      */
     public String getWidgetset(String defaultValue);
 
     /**
      * Gets resources path configuration option value.
+     * 
+     * @since 7.4
      */
     public String getResourcesPath();
 
     /**
      * Gets class loader configuration option value.
+     * 
+     * @since 7.4
      */
     public String getClassLoaderName();
 
index b9b577693931afa2e17f41c773404030a046b6ff..33cc1341afead74e9e6a08fb135a6978dc8b8322 100644 (file)
@@ -22,6 +22,8 @@ import java.io.Serializable;
  * 
  * @see ViewportGenerator
  * 
+ * @since 7.4
+ * 
  * @author Vaadin Ltd
  */
 public interface ViewportGenerator extends Serializable {
index 46ad9a9c16f99377823d5fbc12e7e28acd90d446..735fb15fd8c4c0237048df931f4c10450961418b 100644 (file)
@@ -1189,6 +1189,8 @@ public abstract class AbstractComponent extends AbstractClientConnector
      * methods. Typically these are handled in a custom way in the overridden
      * versions of the above methods
      * 
+     * @since 7.4
+     * 
      * @return the collection of attributes that are not handled by the basic
      *         implementation
      */
index 1a3eeb88a38eab365e3d5ba8ef445b9459caf4cf..d5e47b22863740cbc589fbd6699372e69c740392 100644 (file)
@@ -1729,6 +1729,8 @@ public abstract class AbstractSelect extends AbstractField<Object> implements
 
     /**
      * Removes orphaned ids from selection.
+     * 
+     * @since 7.4
      */
     protected void adjustSelection() {
         Object value = getValue();
index 72ff6eb0e0a86ac9db1cd02489c85968d78df711..5b5c390fa1a887c2dff423741c62006cf33c685b 100644 (file)
@@ -918,7 +918,7 @@ public class Calendar extends AbstractComponent implements
      * 
      * @return true if the client is allowed to click events
      * @see #isClientChangeAllowed()
-     * @deprecated Override {@link #fireEventClick(Integer)} instead.
+     * @deprecated As of 7.4, override {@link #fireEventClick(Integer)} instead.
      */
     @Deprecated
     protected boolean isEventClickAllowed() {
index fa34a670bf35ed3b4829de872dd22ba890a45435..2e2d3fe23849b7fbc679d4e24e3819d1dac2caf4 100644 (file)
@@ -187,6 +187,9 @@ public class ReflectTools implements Serializable {
         field.set(object, value);
     }
 
+    /**
+     * @since 7.4
+     */
     public static Class<?> convertPrimitiveType(Class<?> type) {
         // Gets the return type from get method
         if (type.isPrimitive()) {