summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2014-07-02 09:39:09 +0300
committerLeif Åstrand <leif@vaadin.com>2014-07-03 06:50:15 +0000
commitff8efe1b94b077c24085962db733fbb26f213484 (patch)
tree3586dc6753441dd97e44a6ca1f9b62c82d84be64 /server
parentb258e2b7dd6ae0948ab14c3a2776bc4a8429ea97 (diff)
downloadvaadin-framework-ff8efe1b94b077c24085962db733fbb26f213484.tar.gz
vaadin-framework-ff8efe1b94b077c24085962db733fbb26f213484.zip
Add missing @since 7.3 to javadoc
Change-Id: I62610ef647fbbb5a7cfae25ac5c7628f78f2c6ff
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/server/DefaultDeploymentConfiguration.java2
-rw-r--r--server/src/com/vaadin/server/DeploymentConfiguration.java2
-rw-r--r--server/src/com/vaadin/server/VaadinPortletRequest.java4
-rw-r--r--server/src/com/vaadin/ui/UI.java2
-rw-r--r--server/src/com/vaadin/ui/themes/ValoTheme.java2
5 files changed, 7 insertions, 5 deletions
diff --git a/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java b/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java
index 97790e7c0c..fd14c3cd3f 100644
--- a/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java
+++ b/server/src/com/vaadin/server/DefaultDeploymentConfiguration.java
@@ -53,6 +53,8 @@ public class DefaultDeploymentConfiguration implements DeploymentConfiguration {
/**
* Default value for {@link #isSyncIdCheckEnabled()} = {@value} .
+ *
+ * @since 7.3
*/
public static final boolean DEFAULT_SYNC_ID_CHECK = true;
diff --git a/server/src/com/vaadin/server/DeploymentConfiguration.java b/server/src/com/vaadin/server/DeploymentConfiguration.java
index 50d84812ea..fcfeecc31f 100644
--- a/server/src/com/vaadin/server/DeploymentConfiguration.java
+++ b/server/src/com/vaadin/server/DeploymentConfiguration.java
@@ -89,7 +89,7 @@ public interface DeploymentConfiguration extends Serializable {
* gracefully handle situations when the client sends a message to a
* connector that has recently been removed on the server.
*
- * @since
+ * @since 7.3
* @return <code>true</code> if sync id checking is enabled;
* <code>false</code> otherwise
*/
diff --git a/server/src/com/vaadin/server/VaadinPortletRequest.java b/server/src/com/vaadin/server/VaadinPortletRequest.java
index e1b521d57f..93e06d7f45 100644
--- a/server/src/com/vaadin/server/VaadinPortletRequest.java
+++ b/server/src/com/vaadin/server/VaadinPortletRequest.java
@@ -247,7 +247,7 @@ public class VaadinPortletRequest extends PortletRequestWrapper implements
*
* @return the current portlet request instance if available, otherwise
* <code>null</code>
- *
+ * @since 7.3
*/
public static PortletRequest getCurrentPortletRequest() {
return VaadinPortletService.getCurrentPortletRequest();
@@ -262,7 +262,7 @@ public class VaadinPortletRequest extends PortletRequestWrapper implements
*
* @return the current Vaadin portlet request instance if available,
* otherwise <code>null</code>
- *
+ * @since 7.3
*/
public static VaadinPortletRequest getCurrent() {
return VaadinPortletService.getCurrentRequest();
diff --git a/server/src/com/vaadin/ui/UI.java b/server/src/com/vaadin/ui/UI.java
index 4bde8a95b3..6f27a13826 100644
--- a/server/src/com/vaadin/ui/UI.java
+++ b/server/src/com/vaadin/ui/UI.java
@@ -1152,7 +1152,7 @@ public abstract class UI extends AbstractSingleComponentContainer implements
* CSS file will be removed even if there are other UIs on the page which
* are still using it.
*
- * @since
+ * @since 7.3
* @param theme
* The new theme name
*/
diff --git a/server/src/com/vaadin/ui/themes/ValoTheme.java b/server/src/com/vaadin/ui/themes/ValoTheme.java
index 51e2e283f2..63fa13dce4 100644
--- a/server/src/com/vaadin/ui/themes/ValoTheme.java
+++ b/server/src/com/vaadin/ui/themes/ValoTheme.java
@@ -38,7 +38,7 @@ import com.vaadin.ui.Table.ColumnHeaderMode;
*
* TODO link to Sass API documentation
*
- * @since 7.3.0
+ * @since 7.3
* @author Vaadin Ltd
*/
public class ValoTheme {