diff options
Diffstat (limited to 'client')
9 files changed, 14 insertions, 17 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() { |