diff options
Diffstat (limited to 'shared')
8 files changed, 24 insertions, 5 deletions
diff --git a/shared/src/com/vaadin/shared/ApplicationConstants.java b/shared/src/com/vaadin/shared/ApplicationConstants.java index 55d2dae946..e5da716eb3 100644 --- a/shared/src/com/vaadin/shared/ApplicationConstants.java +++ b/shared/src/com/vaadin/shared/ApplicationConstants.java @@ -135,6 +135,8 @@ public class ApplicationConstants implements Serializable { /** * The name of the parameter used to transmit the id of the client to server * messages. + * + * @since 7.6 */ public static final String CLIENT_TO_SERVER_ID = "clientId"; @@ -151,6 +153,8 @@ public class ApplicationConstants implements Serializable { /** * The name of the parameter used for sending the widget set version to the * server + * + * @since 7.6 */ public static final String WIDGETSET_VERSION_ID = "wsver"; diff --git a/shared/src/com/vaadin/shared/ContextClickRpc.java b/shared/src/com/vaadin/shared/ContextClickRpc.java index 2dd045f426..2152de0863 100644 --- a/shared/src/com/vaadin/shared/ContextClickRpc.java +++ b/shared/src/com/vaadin/shared/ContextClickRpc.java @@ -20,7 +20,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * Client-to-server RPC interface for context click events * - * @since + * @since 7.6 * @author Vaadin Ltd */ public interface ContextClickRpc extends ServerRpc { diff --git a/shared/src/com/vaadin/shared/VBrowserDetails.java b/shared/src/com/vaadin/shared/VBrowserDetails.java index d0de8ffb9f..a7426d2022 100644 --- a/shared/src/com/vaadin/shared/VBrowserDetails.java +++ b/shared/src/com/vaadin/shared/VBrowserDetails.java @@ -391,6 +391,7 @@ public class VBrowserDetails implements Serializable { /** * Tests if the browser is Edge. * + * @since 7.5.3 * @return true if it is Edge, false otherwise */ public boolean isEdge() { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridConstants.java b/shared/src/com/vaadin/shared/ui/grid/GridConstants.java index ba4a677b5f..0f1af94456 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridConstants.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridConstants.java @@ -28,6 +28,8 @@ public final class GridConstants implements Serializable { /** * Enum describing different sections of Grid. + * + * @since 7.6 */ public enum Section { HEADER, BODY, FOOTER diff --git a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java index 283c09e67b..b129cbf051 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java @@ -48,7 +48,7 @@ public interface GridServerRpc extends ServerRpc { /** * Informs the server that a context click has happened inside of Grid. * - * @since + * @since 7.6 * @param rowIndex * index of clicked row in Grid section * @param rowKey diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java index b0a3b9ffde..4ed878f1cb 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java @@ -105,6 +105,7 @@ public class GridState extends TabIndexState { /** * The key in which a row's description can be found * + * @since 7.6 * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String) */ public static final String JSONKEY_ROWDESCRIPTION = "rd"; @@ -112,6 +113,7 @@ public class GridState extends TabIndexState { /** * The key in which a cell's description can be found * + * @since 7.6 * @see com.vaadin.shared.data.DataProviderRpc#setRowData(int, String) */ public static final String JSONKEY_CELLDESCRIPTION = "cd"; @@ -169,11 +171,19 @@ public class GridState extends TabIndexState { /** The enabled state of the editor interface */ public boolean editorEnabled = false; - /** Buffered editor mode */ + /** + * Buffered editor mode + * + * @since 7.6 + */ @DelegateToWidget public boolean editorBuffered = true; - /** Whether rows and/or cells have generated descriptions (tooltips) */ + /** + * Whether rows and/or cells have generated descriptions (tooltips) + * + * @since 7.6 + */ public boolean hasDescriptions; /** The caption for the save button in the editor */ diff --git a/shared/src/com/vaadin/shared/ui/table/TableConstants.java b/shared/src/com/vaadin/shared/ui/table/TableConstants.java index 9117729eb1..3a11e0a69a 100644 --- a/shared/src/com/vaadin/shared/ui/table/TableConstants.java +++ b/shared/src/com/vaadin/shared/ui/table/TableConstants.java @@ -20,6 +20,8 @@ import java.io.Serializable; public class TableConstants implements Serializable { /** * Enum describing different sections of Table. + * + * @since 7.6 */ public enum Section { HEADER, BODY, FOOTER diff --git a/shared/src/com/vaadin/shared/ui/table/TableServerRpc.java b/shared/src/com/vaadin/shared/ui/table/TableServerRpc.java index bfd6f544ef..13d494afb7 100644 --- a/shared/src/com/vaadin/shared/ui/table/TableServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/table/TableServerRpc.java @@ -22,7 +22,7 @@ import com.vaadin.shared.ui.table.TableConstants.Section; /** * Client-to-server RPC interface for the Table component * - * @since + * @since 7.6 * @author Vaadin Ltd */ public interface TableServerRpc extends ServerRpc { |