summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2015-10-04 11:12:12 +0300
committerHenri Sara <hesara@vaadin.com>2015-10-04 11:12:12 +0300
commita97534f4c2588e68ecc2584d77db482a5277d599 (patch)
tree99d9c13e0ac3a104beacd30d0ce46a849c5260c7 /server
parent3a54e10ce78ad537697c68ad5c03ba1c382435d9 (diff)
downloadvaadin-framework-a97534f4c2588e68ecc2584d77db482a5277d599.tar.gz
vaadin-framework-a97534f4c2588e68ecc2584d77db482a5277d599.zip
Add @since for 7.5.7 changes
Change-Id: I253c6074167bae60149a5f2f0d22c6de160978d4
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/server/Constants.java9
-rw-r--r--server/src/com/vaadin/ui/GridLayout.java1
-rw-r--r--server/src/com/vaadin/ui/declarative/DesignContext.java2
-rw-r--r--server/src/com/vaadin/ui/declarative/DesignFormatter.java4
4 files changed, 12 insertions, 4 deletions
diff --git a/server/src/com/vaadin/server/Constants.java b/server/src/com/vaadin/server/Constants.java
index 857f2481d5..f897b016eb 100644
--- a/server/src/com/vaadin/server/Constants.java
+++ b/server/src/com/vaadin/server/Constants.java
@@ -16,6 +16,7 @@
package com.vaadin.server;
import com.vaadin.shared.communication.PushMode;
+import com.vaadin.ui.declarative.DesignContext;
/**
* TODO Document me!
@@ -138,6 +139,14 @@ public interface Constants {
static final String SERVLET_PARAMETER_SYNC_ID_CHECK = "syncIdCheck";
static final String SERVLET_PARAMETER_SENDURLSASPARAMETERS = "sendUrlsAsParameters";
static final String SERVLET_PARAMETER_PUSH_SUSPEND_TIMEOUT_LONGPOLLING = "pushLongPollingSuspendTimeout";
+ /**
+ * Name of system or context property to write declarative syntax with the
+ * old "v-" prefix or with the new "vaadin-" prefix. The default value
+ * depends on the Vaadin branch used.
+ *
+ * @see DesignContext
+ * @since 7.5.7
+ */
static final String SERVLET_PARAMETER_LEGACY_DESIGN_PREFIX = "legacyDesignPrefix";
// Configurable parameter names
diff --git a/server/src/com/vaadin/ui/GridLayout.java b/server/src/com/vaadin/ui/GridLayout.java
index 8837ad71d1..7eb870d1f8 100644
--- a/server/src/com/vaadin/ui/GridLayout.java
+++ b/server/src/com/vaadin/ui/GridLayout.java
@@ -1603,7 +1603,6 @@ public class GridLayout extends AbstractLayout implements
* info about number of columns and rows if there are absolutely no
* components in the {@link GridLayout}
*
- * @since
* @param design
* @param designContext
*/
diff --git a/server/src/com/vaadin/ui/declarative/DesignContext.java b/server/src/com/vaadin/ui/declarative/DesignContext.java
index 39a30de534..d72ec77d4a 100644
--- a/server/src/com/vaadin/ui/declarative/DesignContext.java
+++ b/server/src/com/vaadin/ui/declarative/DesignContext.java
@@ -437,7 +437,7 @@ public class DesignContext implements Serializable {
* {@link Constants#SERVLET_PARAMETER_LEGACY_DESIGN_PREFIX} can be used to
* switch to the legacy prefix.
*
- * @since
+ * @since 7.5.7
* @return true to use the legacy prefix, false by default
*/
protected boolean isLegacyPrefixEnabled() {
diff --git a/server/src/com/vaadin/ui/declarative/DesignFormatter.java b/server/src/com/vaadin/ui/declarative/DesignFormatter.java
index db901329cb..ca537ad59c 100644
--- a/server/src/com/vaadin/ui/declarative/DesignFormatter.java
+++ b/server/src/com/vaadin/ui/declarative/DesignFormatter.java
@@ -378,7 +378,7 @@ public class DesignFormatter implements Serializable {
* option items in {@link AbstractSelect}) when dumping to HTML format
* </p>
*
- * @since
+ * @since 7.5.7
* @param input
* String to be encoded
* @return String with &amp;,&lt; and &gt; replaced with their HTML entities
@@ -403,7 +403,7 @@ public class DesignFormatter implements Serializable {
* unencodes more characters than {@link #encodeForTextNode(String)} encodes
* </p>
*
- * @since
+ * @since 7.5.7
* @param input
* @return
*/