diff options
author | Mika Murtojarvi <mika@vaadin.com> | 2015-09-08 11:38:55 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-09-08 09:39:06 +0000 |
commit | 82a03223478784b04951d4fccd38552e48469814 (patch) | |
tree | 4bdc1dba89128a420162473b72c70f9163b3653b | |
parent | 97d11191e6a2256d79876c6b7acdc68c24722cf9 (diff) | |
download | vaadin-framework-82a03223478784b04951d4fccd38552e48469814.tar.gz vaadin-framework-82a03223478784b04951d4fccd38552e48469814.zip |
Update @since tags for 7.6.
Change-Id: I69df09f371aae61f9e1ef741814f6e3016510fe2
18 files changed, 23 insertions, 26 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConnection.java b/client/src/com/vaadin/client/ApplicationConnection.java index 6e20908274..01fe13a6ff 100644 --- a/client/src/com/vaadin/client/ApplicationConnection.java +++ b/client/src/com/vaadin/client/ApplicationConnection.java @@ -1511,7 +1511,7 @@ public class ApplicationConnection implements HasHandlers { * Checks if the application is in the {@link ApplicationState#RUNNING} * state. * - * @since + * @since 7.6 * @return true if the application is in the running state, false otherwise */ public boolean isApplicationRunning() { diff --git a/client/src/com/vaadin/client/WidgetUtil.java b/client/src/com/vaadin/client/WidgetUtil.java index 9f7fdbdb6b..188b433558 100644 --- a/client/src/com/vaadin/client/WidgetUtil.java +++ b/client/src/com/vaadin/client/WidgetUtil.java @@ -68,7 +68,7 @@ public class WidgetUtil { * Redirects the browser to the given url or refreshes the page if url is * null * - * @since + * @since 7.6 * @param url * The url to redirect to or null to refresh */ diff --git a/client/src/com/vaadin/client/communication/DefaultConnectionStateHandler.java b/client/src/com/vaadin/client/communication/DefaultConnectionStateHandler.java index 03fa436a57..ce65203a69 100644 --- a/client/src/com/vaadin/client/communication/DefaultConnectionStateHandler.java +++ b/client/src/com/vaadin/client/communication/DefaultConnectionStateHandler.java @@ -467,9 +467,6 @@ public class DefaultConnectionStateHandler implements ConnectionStateHandler { } } - /** - * @since - */ private void endRequest() { getConnection().getMessageSender().endRequest(); } diff --git a/client/src/com/vaadin/client/connectors/AbstractSelectionModelConnector.java b/client/src/com/vaadin/client/connectors/AbstractSelectionModelConnector.java index 8ca2292bc5..3a96f0f03b 100644 --- a/client/src/com/vaadin/client/connectors/AbstractSelectionModelConnector.java +++ b/client/src/com/vaadin/client/connectors/AbstractSelectionModelConnector.java @@ -28,7 +28,7 @@ import elemental.json.JsonObject; /** * Base class for all selection model connectors. * - * @since + * @since 7.6 * @author Vaadin Ltd */ public abstract class AbstractSelectionModelConnector<T extends SelectionModel<JsonObject>> diff --git a/client/src/com/vaadin/client/connectors/GridConnector.java b/client/src/com/vaadin/client/connectors/GridConnector.java index 1070a46287..a00e7f5a10 100644 --- a/client/src/com/vaadin/client/connectors/GridConnector.java +++ b/client/src/com/vaadin/client/connectors/GridConnector.java @@ -1183,7 +1183,7 @@ public class GridConnector extends AbstractHasComponentsConnector implements /** * Creates a concatenation of all columns errors for Editor. * - * @since + * @since 7.6 * @return displayed error string */ private String getColumnErrors() { diff --git a/client/src/com/vaadin/client/connectors/MultiSelectionModelConnector.java b/client/src/com/vaadin/client/connectors/MultiSelectionModelConnector.java index e4ad50e7ac..04c56a5b44 100644 --- a/client/src/com/vaadin/client/connectors/MultiSelectionModelConnector.java +++ b/client/src/com/vaadin/client/connectors/MultiSelectionModelConnector.java @@ -53,7 +53,7 @@ import elemental.json.JsonObject; /** * Connector for server-side {@link MultiSelectionModel}. * - * @since + * @since 7.6 * @author Vaadin Ltd */ @Connect(MultiSelectionModel.class) diff --git a/client/src/com/vaadin/client/connectors/SingleSelectionModelConnector.java b/client/src/com/vaadin/client/connectors/SingleSelectionModelConnector.java index 7c66903c2c..b963014256 100644 --- a/client/src/com/vaadin/client/connectors/SingleSelectionModelConnector.java +++ b/client/src/com/vaadin/client/connectors/SingleSelectionModelConnector.java @@ -34,7 +34,7 @@ import elemental.json.JsonObject; /** * Connector for server-side {@link SingleSelectionModel}. * - * @since + * @since 7.6 * @author Vaadin Ltd */ @Connect(SingleSelectionModel.class) diff --git a/client/src/com/vaadin/client/widget/grid/DefaultEditorEventHandler.java b/client/src/com/vaadin/client/widget/grid/DefaultEditorEventHandler.java index 8270ea4b04..a5b0b5e961 100644 --- a/client/src/com/vaadin/client/widget/grid/DefaultEditorEventHandler.java +++ b/client/src/com/vaadin/client/widget/grid/DefaultEditorEventHandler.java @@ -30,7 +30,7 @@ import com.vaadin.client.widgets.Grid.EditorDomEvent; * The default handler for Grid editor events. Offers several overridable * protected methods for easier customization. * - * @since + * @since 7.6 * @author Vaadin Ltd */ public class DefaultEditorEventHandler<T> implements Editor.EventHandler<T> { diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java index 9204c905e3..4e5aa869ba 100644 --- a/client/src/com/vaadin/client/widgets/Grid.java +++ b/client/src/com/vaadin/client/widgets/Grid.java @@ -1125,7 +1125,7 @@ public class Grid<T> extends ResizeComposite implements * native event, contains a {@link CellReference} instance specifying which * cell the event originated from. * - * @since + * @since 7.6 * @param <T> * The row type of the grid */ @@ -1170,7 +1170,7 @@ public class Grid<T> extends ResizeComposite implements * A wrapper for native DOM events related to the {@link Editor Grid editor} * . * - * @since + * @since 7.6 * @param <T> * the row type of the grid */ @@ -1227,7 +1227,7 @@ public class Grid<T> extends ResizeComposite implements * An editor UI for Grid rows. A single Grid row at a time can be opened for * editing. * - * @since + * @since 7.6 * @param <T> * the row type of the grid */ @@ -1243,7 +1243,7 @@ public class Grid<T> extends ResizeComposite implements * A handler for events related to the Grid editor. Responsible for * opening, moving or closing the editor based on the received event. * - * @since + * @since 7.6 * @author Vaadin Ltd * @param <T> * the row type of the grid @@ -2137,7 +2137,7 @@ public class Grid<T> extends ResizeComposite implements /** * Sets the event handler for this Editor. * - * @since + * @since 7.6 * @param handler * the new event handler */ @@ -2148,7 +2148,7 @@ public class Grid<T> extends ResizeComposite implements /** * Returns the event handler of this Editor. * - * @since + * @since 7.6 * @return the current event handler */ public EventHandler<T> getEventHandler() { @@ -4594,7 +4594,7 @@ public class Grid<T> extends ResizeComposite implements /** * Returns the current header caption for this column * - * @since + * @since 7.6 * @return the header caption string */ public String getHeaderCaption() { diff --git a/server/src/com/vaadin/server/communication/PushHandler.java b/server/src/com/vaadin/server/communication/PushHandler.java index 994415a0b4..b2fc096a85 100644 --- a/server/src/com/vaadin/server/communication/PushHandler.java +++ b/server/src/com/vaadin/server/communication/PushHandler.java @@ -178,7 +178,7 @@ public class PushHandler { /** * Suspends the given resource * - * @since + * @since 7.6 * @param resource * the resource to suspend */ diff --git a/server/src/com/vaadin/server/communication/PushRequestHandler.java b/server/src/com/vaadin/server/communication/PushRequestHandler.java index c44fcd9ef3..84b81c8963 100644 --- a/server/src/com/vaadin/server/communication/PushRequestHandler.java +++ b/server/src/com/vaadin/server/communication/PushRequestHandler.java @@ -125,7 +125,7 @@ public class PushRequestHandler implements RequestHandler, * customize the {@link PushHandler}, e.g. to dynamically decide the suspend * timeout. * - * @since + * @since 7.6 * @param service * the vaadin service * @return the push handler to use for this service diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java index 215df3a6a3..f762fe0664 100644 --- a/server/src/com/vaadin/ui/Grid.java +++ b/server/src/com/vaadin/ui/Grid.java @@ -3898,7 +3898,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, /** * Resends the row data for given item id to the client. * - * @since + * @since 7.6 * @param itemId * row to refresh */ diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java index e51b1a78a7..b0a3b9ffde 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java @@ -131,7 +131,7 @@ public class GridState extends TabIndexState { /** * The key that tells whether row is selected. * - * @since + * @since 7.6 */ public static final String JSONKEY_SELECTED = "s"; diff --git a/shared/src/com/vaadin/shared/ui/grid/selection/MultiSelectionModelServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/selection/MultiSelectionModelServerRpc.java index e7324552f4..1ddecb31e4 100644 --- a/shared/src/com/vaadin/shared/ui/grid/selection/MultiSelectionModelServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/selection/MultiSelectionModelServerRpc.java @@ -22,7 +22,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * ServerRpc for MultiSelectionModel. * - * @since + * @since 7.6 * @author Vaadin Ltd */ public interface MultiSelectionModelServerRpc extends ServerRpc { diff --git a/shared/src/com/vaadin/shared/ui/grid/selection/MultiSelectionModelState.java b/shared/src/com/vaadin/shared/ui/grid/selection/MultiSelectionModelState.java index 3ffd0d0f93..3d56b65793 100644 --- a/shared/src/com/vaadin/shared/ui/grid/selection/MultiSelectionModelState.java +++ b/shared/src/com/vaadin/shared/ui/grid/selection/MultiSelectionModelState.java @@ -20,7 +20,7 @@ import com.vaadin.shared.communication.SharedState; /** * SharedState object for MultiSelectionModel. * - * @since + * @since 7.6 * @author Vaadin Ltd */ public class MultiSelectionModelState extends SharedState { diff --git a/shared/src/com/vaadin/shared/ui/grid/selection/SingleSelectionModelServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/selection/SingleSelectionModelServerRpc.java index 3e2a8ec847..ff8e7c424b 100644 --- a/shared/src/com/vaadin/shared/ui/grid/selection/SingleSelectionModelServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/selection/SingleSelectionModelServerRpc.java @@ -20,7 +20,7 @@ import com.vaadin.shared.communication.ServerRpc; /** * ServerRpc for SingleSelectionModel. * - * @since + * @since 7.6 * @author Vaadin Ltd */ public interface SingleSelectionModelServerRpc extends ServerRpc { diff --git a/shared/src/com/vaadin/shared/ui/grid/selection/SingleSelectionModelState.java b/shared/src/com/vaadin/shared/ui/grid/selection/SingleSelectionModelState.java index 300a849a64..be8770a94e 100644 --- a/shared/src/com/vaadin/shared/ui/grid/selection/SingleSelectionModelState.java +++ b/shared/src/com/vaadin/shared/ui/grid/selection/SingleSelectionModelState.java @@ -20,7 +20,7 @@ import com.vaadin.shared.communication.SharedState; /** * SharedState object for SingleSelectionModel. * - * @since + * @since 7.6 * @author Vaadin Ltd */ public class SingleSelectionModelState extends SharedState { diff --git a/shared/src/com/vaadin/shared/ui/upload/UploadServerRpc.java b/shared/src/com/vaadin/shared/ui/upload/UploadServerRpc.java index b353057ab3..5a5a1378d1 100644 --- a/shared/src/com/vaadin/shared/ui/upload/UploadServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/upload/UploadServerRpc.java @@ -31,7 +31,7 @@ public interface UploadServerRpc extends ServerRpc { * Called to poll the server to see if any changes have been made e.g. when * starting upload * - * @since + * @since 7.6 */ void poll(); |