summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorMarkus Koivisto <markus@vaadin.com>2015-10-09 20:29:57 +0300
committerMarkus Koivisto <markus@vaadin.com>2015-10-09 20:29:57 +0300
commite5634deaa77cdcebc577a1f04d146b960b3b54d1 (patch)
tree6dfad594c821a37a7bc5dd36e2e06a6bef36a58a /server
parent2732b77278001c11fd5059fb89f19587302cb033 (diff)
downloadvaadin-framework-e5634deaa77cdcebc577a1f04d146b960b3b54d1.tar.gz
vaadin-framework-e5634deaa77cdcebc577a1f04d146b960b3b54d1.zip
Fix empty @since for 7.6.alpha7
Change-Id: I97e36b388ce0002363a8022eed41d425f12b822d
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/server/VaadinService.java16
-rw-r--r--server/src/com/vaadin/server/VaadinSession.java2
-rw-r--r--server/src/com/vaadin/ui/Grid.java4
3 files changed, 11 insertions, 11 deletions
diff --git a/server/src/com/vaadin/server/VaadinService.java b/server/src/com/vaadin/server/VaadinService.java
index 09704838b6..740371aec1 100644
--- a/server/src/com/vaadin/server/VaadinService.java
+++ b/server/src/com/vaadin/server/VaadinService.java
@@ -1660,7 +1660,7 @@ public abstract class VaadinService implements Serializable {
/**
* Checks whether Atmosphere is avilable for use
*
- * @since
+ * @since 7.6
* @return true if Atmosphere is available, false otherwise
*/
protected boolean isAtmosphereAvailable() {
@@ -1920,7 +1920,7 @@ public abstract class VaadinService implements Serializable {
* <p>
* By default stores the VaadinSession in the underlying HTTP session.
*
- * @since
+ * @since 7.6
* @param session
* the VaadinSession to store
* @param wrappedSession
@@ -1939,7 +1939,7 @@ public abstract class VaadinService implements Serializable {
* <p>
* Called by {@link #storeSession(VaadinSession, WrappedSession)}
*
- * @since
+ * @since 7.6
* @param wrappedSession
* the underlying HTTP session
* @param session
@@ -1954,7 +1954,7 @@ public abstract class VaadinService implements Serializable {
* Called when the VaadinSession should be loaded from the underlying HTTP
* session
*
- * @since
+ * @since 7.6
* @param wrappedSession
* the underlying HTTP session
* @return the VaadinSession in the HTTP session or null if not found
@@ -1978,7 +1978,7 @@ public abstract class VaadinService implements Serializable {
*
* @param wrappedSession
* the underlying HTTP session
- * @since
+ * @since 7.6
* @return the VaadinSession or null if no session was found
*/
protected VaadinSession readFromHttpSession(WrappedSession wrappedSession) {
@@ -1990,7 +1990,7 @@ public abstract class VaadinService implements Serializable {
* Called when the VaadinSession should be removed from the underlying HTTP
* session
*
- * @since
+ * @since 7.6
* @param wrappedSession
* the underlying HTTP session
*/
@@ -2003,7 +2003,7 @@ public abstract class VaadinService implements Serializable {
* Performs the actual removal of the VaadinSession from the underlying HTTP
* session after sanity checks have been performed
*
- * @since
+ * @since 7.6
* @param wrappedSession
* the underlying HTTP session
*/
@@ -2016,7 +2016,7 @@ public abstract class VaadinService implements Serializable {
* Returns the name used for storing the VaadinSession in the underlying
* HTTP session
*
- * @since
+ * @since 7.6
* @return the attribute name used for storing the VaadinSession
*/
protected String getSessionAttributeName() {
diff --git a/server/src/com/vaadin/server/VaadinSession.java b/server/src/com/vaadin/server/VaadinSession.java
index f5e400bb3a..ab24694964 100644
--- a/server/src/com/vaadin/server/VaadinSession.java
+++ b/server/src/com/vaadin/server/VaadinSession.java
@@ -1440,7 +1440,7 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable {
* <p>
* Called internally by the framework.
*
- * @since
+ * @since 7.6
* @param wrappedSession
* the session this VaadinSession is stored in
* @param vaadinService
diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java
index 4e0dadb47c..6e1520e028 100644
--- a/server/src/com/vaadin/ui/Grid.java
+++ b/server/src/com/vaadin/ui/Grid.java
@@ -3716,7 +3716,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
/**
* Sets whether this column can be resized by the user.
*
- * @since
+ * @since 7.6
* @param resizable
* {@code true} if this column should be resizable,
* {@code false} otherwise
@@ -3737,7 +3737,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
* {@link #setWidth(double)} and {@link #setWidthUndefined()} regardless
* of the returned value.
*
- * @since
+ * @since 7.6
* @return {@code true} if this column is resizable, {@code false}
* otherwise
*/