diff options
author | Henrik Paul <henrik@vaadin.com> | 2014-07-08 12:04:56 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-07-08 09:32:58 +0000 |
commit | 07ef5c9d52c7e30ca5197fe43dbf301178c81a9d (patch) | |
tree | 47db0c48dd64e8bdf78a7e4f7e820aaee5e623d5 /shared | |
parent | 770b5b5aced652cd7eed9d49e6c477908a9d7efb (diff) | |
download | vaadin-framework-07ef5c9d52c7e30ca5197fe43dbf301178c81a9d.tar.gz vaadin-framework-07ef5c9d52c7e30ca5197fe43dbf301178c81a9d.zip |
Removes the version number from @since in Grid classes (#13334)
Change-Id: I36192c46b359b8307c5bb1faf71c3b9a20e77fb8
Diffstat (limited to 'shared')
14 files changed, 14 insertions, 14 deletions
diff --git a/shared/src/com/vaadin/shared/data/DataProviderRpc.java b/shared/src/com/vaadin/shared/data/DataProviderRpc.java index 43469914e5..bfd9505c04 100644 --- a/shared/src/com/vaadin/shared/data/DataProviderRpc.java +++ b/shared/src/com/vaadin/shared/data/DataProviderRpc.java @@ -21,7 +21,7 @@ import com.vaadin.shared.communication.ClientRpc; /** * RPC interface used for pushing container data to the client. * - * @since 7.2 + * @since * @author Vaadin Ltd */ public interface DataProviderRpc extends ClientRpc { diff --git a/shared/src/com/vaadin/shared/data/DataProviderState.java b/shared/src/com/vaadin/shared/data/DataProviderState.java index 2eabe0b0e1..13331c2a64 100644 --- a/shared/src/com/vaadin/shared/data/DataProviderState.java +++ b/shared/src/com/vaadin/shared/data/DataProviderState.java @@ -21,7 +21,7 @@ import com.vaadin.shared.communication.SharedState; /** * Shared state used by client-side data sources. * - * @since 7.2 + * @since * @author Vaadin Ltd */ public class DataProviderState extends SharedState { diff --git a/shared/src/com/vaadin/shared/data/DataRequestRpc.java b/shared/src/com/vaadin/shared/data/DataRequestRpc.java index b2a3e6d2ba..80f320e356 100644 --- a/shared/src/com/vaadin/shared/data/DataRequestRpc.java +++ b/shared/src/com/vaadin/shared/data/DataRequestRpc.java @@ -21,7 +21,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * RPC interface used for requesting container data to the client. * - * @since 7.2 + * @since * @author Vaadin Ltd */ public interface DataRequestRpc extends ServerRpc { diff --git a/shared/src/com/vaadin/shared/ui/grid/ColumnGroupRowState.java b/shared/src/com/vaadin/shared/ui/grid/ColumnGroupRowState.java index a8e0f87457..d3d5ea2495 100644 --- a/shared/src/com/vaadin/shared/ui/grid/ColumnGroupRowState.java +++ b/shared/src/com/vaadin/shared/ui/grid/ColumnGroupRowState.java @@ -23,7 +23,7 @@ import java.util.List; /** * The column group row data shared between the server and client * - * @since 7.2 + * @since * @author Vaadin Ltd */ public class ColumnGroupRowState implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/grid/ColumnGroupState.java b/shared/src/com/vaadin/shared/ui/grid/ColumnGroupState.java index 3992b6611f..8c2bde851b 100644 --- a/shared/src/com/vaadin/shared/ui/grid/ColumnGroupState.java +++ b/shared/src/com/vaadin/shared/ui/grid/ColumnGroupState.java @@ -23,7 +23,7 @@ import java.util.List; /** * The column group data shared between the server and the client * - * @since 7.2 + * @since * @author Vaadin Ltd */ public class ColumnGroupState implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java index 00cc93d371..24a9996d40 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java @@ -20,7 +20,7 @@ import com.vaadin.shared.communication.ClientRpc; /** * Server-to-client RPC interface for the Grid component. * - * @since 7.2 + * @since * @author Vaadin Ltd */ public interface GridClientRpc extends ClientRpc { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java b/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java index d1df08c294..b9bae35db6 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java @@ -23,7 +23,7 @@ import com.vaadin.shared.Connector; * Column state DTO for transferring column properties from the server to the * client * - * @since 7.2 + * @since * @author Vaadin Ltd */ public class GridColumnState implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridConstants.java b/shared/src/com/vaadin/shared/ui/grid/GridConstants.java index 8b264bf426..b098946346 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridConstants.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridConstants.java @@ -21,7 +21,7 @@ import java.io.Serializable; * Container class for common constants and default values used by the Grid * component. * - * @since 7.2 + * @since * @author Vaadin Ltd */ public final class GridConstants implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java index b763174e53..eec7b39482 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java @@ -22,7 +22,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * Client-to-server RPC interface for the Grid component * - * @since 7.4 + * @since * @author Vaadin Ltd */ public interface GridServerRpc extends ServerRpc { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java index 3dcf7764ac..f71fe0929a 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java @@ -25,7 +25,7 @@ import com.vaadin.shared.annotations.DelegateToWidget; /** * The shared state for the {@link com.vaadin.ui.components.grid.Grid} component * - * @since 7.2 + * @since * @author Vaadin Ltd */ public class GridState extends AbstractComponentState { diff --git a/shared/src/com/vaadin/shared/ui/grid/HeightMode.java b/shared/src/com/vaadin/shared/ui/grid/HeightMode.java index 0146e53e73..09c46b039e 100644 --- a/shared/src/com/vaadin/shared/ui/grid/HeightMode.java +++ b/shared/src/com/vaadin/shared/ui/grid/HeightMode.java @@ -21,7 +21,7 @@ package com.vaadin.shared.ui.grid; * {@link com.vaadin.ui.components.grid.Grid server}) / * {@link com.vaadin.client.ui.grid.Escalator Escalator}. * - * @since 7.2 + * @since * @author Vaadin Ltd * @see com.vaadin.client.ui.grid.Grid#setHeightMode(HeightMode) * @see com.vaadin.ui.components.grid.Grid#setHeightMode(HeightMode) diff --git a/shared/src/com/vaadin/shared/ui/grid/Range.java b/shared/src/com/vaadin/shared/ui/grid/Range.java index c28502256c..a1d4d86103 100644 --- a/shared/src/com/vaadin/shared/ui/grid/Range.java +++ b/shared/src/com/vaadin/shared/ui/grid/Range.java @@ -27,7 +27,7 @@ import java.io.Serializable; * The range is considered {@link #isEmpty() empty} if the start is the same as * the end. * - * @since 7.2 + * @since * @author Vaadin Ltd */ public final class Range implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/grid/ScrollDestination.java b/shared/src/com/vaadin/shared/ui/grid/ScrollDestination.java index decc2fab5f..5fd69de612 100644 --- a/shared/src/com/vaadin/shared/ui/grid/ScrollDestination.java +++ b/shared/src/com/vaadin/shared/ui/grid/ScrollDestination.java @@ -19,7 +19,7 @@ package com.vaadin.shared.ui.grid; * Enumeration, specifying the destinations that are supported when scrolling * rows or columns into view. * - * @since 7.2 + * @since * @author Vaadin Ltd */ public enum ScrollDestination { diff --git a/shared/src/com/vaadin/shared/ui/grid/SortDirection.java b/shared/src/com/vaadin/shared/ui/grid/SortDirection.java index 3a1828992e..1a7c29f8a7 100644 --- a/shared/src/com/vaadin/shared/ui/grid/SortDirection.java +++ b/shared/src/com/vaadin/shared/ui/grid/SortDirection.java @@ -18,7 +18,7 @@ package com.vaadin.shared.ui.grid; /** * Describes sorting direction for a Grid column * - * @since 7.4 + * @since * @author Vaadin Ltd */ public enum SortDirection { |