From 3e7d6c8e5f336b46e8bab74f23db511c261fdf49 Mon Sep 17 00:00:00 2001 From: Markus Koivisto Date: Mon, 12 Oct 2015 16:30:22 +0300 Subject: [PATCH] Fix empty @since for 7.6.0.alpha7 Change-Id: I8045727400c795fca78561c1a4c859595f7c53af --- .../client/widget/grid/events/ColumnResizeEvent.java | 2 +- .../widget/grid/events/ColumnResizeHandler.java | 2 +- client/src/com/vaadin/client/widgets/Grid.java | 2 +- server/src/com/vaadin/ui/Grid.java | 12 ++++++------ 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/client/src/com/vaadin/client/widget/grid/events/ColumnResizeEvent.java b/client/src/com/vaadin/client/widget/grid/events/ColumnResizeEvent.java index bb61ec021d..f5c8c0fa83 100644 --- a/client/src/com/vaadin/client/widget/grid/events/ColumnResizeEvent.java +++ b/client/src/com/vaadin/client/widget/grid/events/ColumnResizeEvent.java @@ -24,7 +24,7 @@ import com.vaadin.client.widgets.Grid.Column; * @param * The row type of the grid. The row type is the POJO type from where * the data is retrieved into the column cells. - * @since + * @since 7.6 * @author Vaadin Ltd */ public class ColumnResizeEvent extends GwtEvent> { diff --git a/client/src/com/vaadin/client/widget/grid/events/ColumnResizeHandler.java b/client/src/com/vaadin/client/widget/grid/events/ColumnResizeHandler.java index a1bbef4dab..a66dbf7bd2 100644 --- a/client/src/com/vaadin/client/widget/grid/events/ColumnResizeHandler.java +++ b/client/src/com/vaadin/client/widget/grid/events/ColumnResizeHandler.java @@ -24,7 +24,7 @@ import com.google.gwt.event.shared.EventHandler; * @param * The row type of the grid. The row type is the POJO type from where * the data is retrieved into the column cells. - * @since + * @since 7.6 * @author Vaadin Ltd */ public interface ColumnResizeHandler extends EventHandler { diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java index 501e68b5fe..9916d085de 100644 --- a/client/src/com/vaadin/client/widgets/Grid.java +++ b/client/src/com/vaadin/client/widgets/Grid.java @@ -7931,7 +7931,7 @@ public class Grid extends ResizeComposite implements * Register a column resize handler to this Grid. The event for this handler * is fired when the Grid's columns are resized. * - * @since + * @since 7.6 * @param handler * the handler for the event * @return the registration for the event diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java index f98943c350..7179ddf0a2 100644 --- a/server/src/com/vaadin/ui/Grid.java +++ b/server/src/com/vaadin/ui/Grid.java @@ -302,7 +302,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, * the client. Details components are detached and forgotten when client * informs that it has dropped the corresponding item. * - * @since + * @since 7.6 */ private final static class DetailComponentManager extends AbstractGridExtension implements DataGenerator { @@ -802,7 +802,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, /** * An event listener for column resize events in the Grid. * - * @since + * @since 7.6 */ public interface ColumnResizeListener extends Serializable { @@ -819,7 +819,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, * An event that is fired when a column is resized, either programmatically * or by the user. * - * @since + * @since 7.6 */ public static class ColumnResizeEvent extends Component.Event { @@ -3352,7 +3352,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, /** * Returns whether this column has an undefined width. * - * @since + * @since 7.6 * @return whether the width is undefined * @throws IllegalStateException * if the column is no longer attached to any grid @@ -4355,7 +4355,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, * Informs the parent Grid that this Extension wants to add a child * component to it. * - * @since + * @since 7.6 * @param c * component */ @@ -4367,7 +4367,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, * Informs the parent Grid that this Extension wants to remove a child * component from it. * - * @since + * @since 7.6 * @param c * component */ -- 2.39.5