diff options
-rw-r--r-- | client/src/com/vaadin/client/ui/dd/DragHandle.java | 2 | ||||
-rw-r--r-- | client/src/com/vaadin/client/widgets/Grid.java | 4 | ||||
-rw-r--r-- | server/src/com/vaadin/server/VaadinService.java | 16 | ||||
-rw-r--r-- | server/src/com/vaadin/server/VaadinSession.java | 2 | ||||
-rw-r--r-- | server/src/com/vaadin/ui/Grid.java | 4 | ||||
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java | 2 | ||||
-rw-r--r-- | shared/src/com/vaadin/shared/ui/tree/TreeServerRpc.java | 2 |
7 files changed, 16 insertions, 16 deletions
diff --git a/client/src/com/vaadin/client/ui/dd/DragHandle.java b/client/src/com/vaadin/client/ui/dd/DragHandle.java index ef4f94d18f..77184e14af 100644 --- a/client/src/com/vaadin/client/ui/dd/DragHandle.java +++ b/client/src/com/vaadin/client/ui/dd/DragHandle.java @@ -32,7 +32,7 @@ import com.vaadin.client.ui.dd.DragAndDropHandler.DragAndDropCallback; * general, event-providing interface that this component is based on, see * {@link DragAndDropHandler}. * - * @since + * @since 7.6 */ public class DragHandle { diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java index d31548eabd..501e68b5fe 100644 --- a/client/src/com/vaadin/client/widgets/Grid.java +++ b/client/src/com/vaadin/client/widgets/Grid.java @@ -4859,7 +4859,7 @@ public class Grid<T> extends ResizeComposite implements /** * Sets whether this column can be resized by the user. * - * @since + * @since 7.6 * * @param resizable * {@code true} if this column should be resizable, @@ -4883,7 +4883,7 @@ public class Grid<T> extends ResizeComposite implements * {@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 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 */ diff --git a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java index efcb9427b0..336e8097c0 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java @@ -93,7 +93,7 @@ public interface GridServerRpc extends ServerRpc { /** * Informs the server that a column has been resized by the user. * - * @since + * @since 7.6 * @param id * the id of the column * @param pixels diff --git a/shared/src/com/vaadin/shared/ui/tree/TreeServerRpc.java b/shared/src/com/vaadin/shared/ui/tree/TreeServerRpc.java index e9ccdb57c6..76b33aa8c3 100644 --- a/shared/src/com/vaadin/shared/ui/tree/TreeServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/tree/TreeServerRpc.java @@ -21,7 +21,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * Client-to-server RPC interface for the Tree component * - * @since + * @since 7.6 * @author Vaadin Ltd */ public interface TreeServerRpc extends ServerRpc { |