diff options
Diffstat (limited to 'server/src')
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 { |