diff options
author | Artur Signell <artur@vaadin.com> | 2015-01-08 08:59:50 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2015-01-08 09:00:07 +0200 |
commit | 50dac79cb624931a661ce4d4b59458f9f5e0c524 (patch) | |
tree | 388b7701586934e662394d5315931cea3080e4f3 /shared/src | |
parent | 395955d960a716fa8bf2318c3f92e167c93b4f6c (diff) | |
download | vaadin-framework-50dac79cb624931a661ce4d4b59458f9f5e0c524.tar.gz vaadin-framework-50dac79cb624931a661ce4d4b59458f9f5e0c524.zip |
Update @since for 7.4
Change-Id: I00401560e345c82a5d967cd71d611605d9b96d92
Diffstat (limited to 'shared/src')
17 files changed, 18 insertions, 18 deletions
diff --git a/shared/src/com/vaadin/shared/annotations/NoLayout.java b/shared/src/com/vaadin/shared/annotations/NoLayout.java index 78ff1e2984..b77729cdcc 100644 --- a/shared/src/com/vaadin/shared/annotations/NoLayout.java +++ b/shared/src/com/vaadin/shared/annotations/NoLayout.java @@ -32,7 +32,7 @@ import java.lang.annotation.Target; * the potential of causing sizes to change with appropriate style definitions * in the application theme. * - * @since + * @since 7.4 * * @author Vaadin Ltd */ diff --git a/shared/src/com/vaadin/shared/data/DataProviderRpc.java b/shared/src/com/vaadin/shared/data/DataProviderRpc.java index 3e5dd9a332..4bf4f3af5b 100644 --- a/shared/src/com/vaadin/shared/data/DataProviderRpc.java +++ b/shared/src/com/vaadin/shared/data/DataProviderRpc.java @@ -22,7 +22,7 @@ import com.vaadin.shared.communication.ClientRpc; /** * RPC interface used for pushing container data to the client. * - * @since + * @since 7.4 * @author Vaadin Ltd */ public interface DataProviderRpc extends ClientRpc { diff --git a/shared/src/com/vaadin/shared/data/DataRequestRpc.java b/shared/src/com/vaadin/shared/data/DataRequestRpc.java index 637a353447..773a82fa9a 100644 --- a/shared/src/com/vaadin/shared/data/DataRequestRpc.java +++ b/shared/src/com/vaadin/shared/data/DataRequestRpc.java @@ -22,7 +22,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * RPC interface used for requesting container data to the client. * - * @since + * @since 7.4 * @author Vaadin Ltd */ public interface DataRequestRpc extends ServerRpc { diff --git a/shared/src/com/vaadin/shared/data/sort/SortDirection.java b/shared/src/com/vaadin/shared/data/sort/SortDirection.java index 043b363226..cd572087d7 100644 --- a/shared/src/com/vaadin/shared/data/sort/SortDirection.java +++ b/shared/src/com/vaadin/shared/data/sort/SortDirection.java @@ -20,7 +20,7 @@ import java.io.Serializable; /** * Describes sorting direction. * - * @since + * @since 7.4 * @author Vaadin Ltd */ public enum SortDirection 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 2ef0dfc3f8..79e6c9a89f 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 + * @since 7.4 * @author Vaadin Ltd */ public class ColumnGroupState implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java b/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java index c083252754..bff5d95c6c 100644 --- a/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java @@ -20,7 +20,7 @@ import com.vaadin.shared.communication.ClientRpc; /** * An RPC interface for the grid editor server-to-client communications. * - * @since + * @since 7.4 * @author Vaadin Ltd */ public interface EditorClientRpc extends ClientRpc { diff --git a/shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java index 57df691547..8637e34606 100644 --- a/shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/EditorServerRpc.java @@ -20,7 +20,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * An RPC interface for the grid editor client-to-server communications. * - * @since + * @since 7.4 * @author Vaadin Ltd */ public interface EditorServerRpc extends ServerRpc { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java index ade9e87f36..ed849cb361 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 + * @since 7.4 * @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 c69b02231e..070d146736 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 + * @since 7.4 * @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 61cf7f6ef0..994b109204 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 + * @since 7.4 * @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 141b1ed9ca..37cbb295f6 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java @@ -23,7 +23,7 @@ import com.vaadin.shared.data.sort.SortDirection; /** * Client-to-server RPC interface for the Grid component * - * @since + * @since 7.4 * @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 1f98431caf..2b18d5b642 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java @@ -26,7 +26,7 @@ import com.vaadin.shared.data.sort.SortDirection; /** * The shared state for the {@link com.vaadin.ui.components.grid.Grid} component * - * @since + * @since 7.4 * @author Vaadin Ltd */ public class GridState extends AbstractComponentState { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridStaticCellType.java b/shared/src/com/vaadin/shared/ui/grid/GridStaticCellType.java index eae4bc8da4..c646717d2c 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridStaticCellType.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridStaticCellType.java @@ -18,7 +18,7 @@ package com.vaadin.shared.ui.grid; /** * Enumeration, specifying the content type of a Cell in a GridStaticSection. * - * @since + * @since 7.4 * @author Vaadin Ltd */ public enum GridStaticCellType { @@ -36,4 +36,4 @@ public enum GridStaticCellType { * Widget content */ WIDGET; -}
\ No newline at end of file +} diff --git a/shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java b/shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java index 88539913d1..a3c485af08 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java @@ -27,7 +27,7 @@ import com.vaadin.shared.Connector; /** * Shared state for Grid headers and footers. * - * @since + * @since 7.4 * @author Vaadin Ltd */ public class GridStaticSectionState implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/grid/HeightMode.java b/shared/src/com/vaadin/shared/ui/grid/HeightMode.java index 228fcbf0f4..4cd19a01b1 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 + * @since 7.4 * @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 6be9e04cbc..21e70d3dbf 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 + * @since 7.4 * @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 43d5fcc21b..64cf070e46 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 + * @since 7.4 * @author Vaadin Ltd */ public enum ScrollDestination { |