diff options
author | Leif Åstrand <leif@vaadin.com> | 2015-03-26 11:27:21 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2015-03-26 11:27:21 +0200 |
commit | eb3406247e397c23d447bf4fd84a5052a0488876 (patch) | |
tree | 69531c22d028d32d95fcb74fc61d4bba651b949b | |
parent | da95f395add4916d0544858c87b448ddc5d03881 (diff) | |
download | vaadin-framework-eb3406247e397c23d447bf4fd84a5052a0488876.tar.gz vaadin-framework-eb3406247e397c23d447bf4fd84a5052a0488876.zip |
Update all empty since tags published in alpha1
Change-Id: I1afce7e69beb9a61354fd82fcda194d4277dfd36
19 files changed, 60 insertions, 60 deletions
diff --git a/client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java b/client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java index e8c7ee5286..627ee74eca 100644 --- a/client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java +++ b/client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java @@ -48,7 +48,7 @@ public class RpcDataSourceConnector extends AbstractExtensionConnector { * A callback interface to let {@link GridConnector} know that detail * visibilities might have changed. * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ interface DetailsListener { diff --git a/client/src/com/vaadin/client/data/AbstractRemoteDataSource.java b/client/src/com/vaadin/client/data/AbstractRemoteDataSource.java index 152b66f2ca..88977d85ec 100644 --- a/client/src/com/vaadin/client/data/AbstractRemoteDataSource.java +++ b/client/src/com/vaadin/client/data/AbstractRemoteDataSource.java @@ -341,7 +341,7 @@ public abstract class AbstractRemoteDataSource<T> implements DataSource<T> { * A hook that can be overridden to do something whenever a row is dropped * from the cache. * - * @since + * @since 7.5.0 * @param rowIndex * the index of the dropped row */ diff --git a/client/src/com/vaadin/client/widget/escalator/RowContainer.java b/client/src/com/vaadin/client/widget/escalator/RowContainer.java index b7aae1f4f3..abab25046c 100644 --- a/client/src/com/vaadin/client/widget/escalator/RowContainer.java +++ b/client/src/com/vaadin/client/widget/escalator/RowContainer.java @@ -39,7 +39,7 @@ public interface RowContainer { * <p> * The body section can contain both rows and spacers. * - * @since + * @since 7.5.0 * @author Vaadin Ltd * @see com.vaadin.client.widgets.Escalator#getBody() */ diff --git a/client/src/com/vaadin/client/widget/escalator/Spacer.java b/client/src/com/vaadin/client/widget/escalator/Spacer.java index 1e9985d6c1..6ccef88f0d 100644 --- a/client/src/com/vaadin/client/widget/escalator/Spacer.java +++ b/client/src/com/vaadin/client/widget/escalator/Spacer.java @@ -21,7 +21,7 @@ import com.google.gwt.dom.client.Element; * A representation of a spacer element in a * {@link com.vaadin.client.widget.escalator.RowContainer.BodyRowContainer}. * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ public interface Spacer { diff --git a/client/src/com/vaadin/client/widget/escalator/SpacerUpdater.java b/client/src/com/vaadin/client/widget/escalator/SpacerUpdater.java index 01d715fdd0..49adefd536 100644 --- a/client/src/com/vaadin/client/widget/escalator/SpacerUpdater.java +++ b/client/src/com/vaadin/client/widget/escalator/SpacerUpdater.java @@ -23,7 +23,7 @@ import com.vaadin.client.widget.escalator.RowContainer.BodyRowContainer; * The updater is responsible for making sure all elements are properly * constructed and cleaned up. * - * @since + * @since 7.5.0 * @author Vaadin Ltd * @see Spacer * @see BodyRowContainer diff --git a/client/src/com/vaadin/client/widget/grid/AutoScroller.java b/client/src/com/vaadin/client/widget/grid/AutoScroller.java index 83d8bf0b62..f2e44196ec 100644 --- a/client/src/com/vaadin/client/widget/grid/AutoScroller.java +++ b/client/src/com/vaadin/client/widget/grid/AutoScroller.java @@ -34,7 +34,7 @@ import com.vaadin.client.widgets.Grid; * Grid when the cursor is close enough the edge of the body of the grid, * depending on the scroll direction chosen. * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ public class AutoScroller { diff --git a/client/src/com/vaadin/client/widget/grid/CellReference.java b/client/src/com/vaadin/client/widget/grid/CellReference.java index 2e50480646..e783cb92ae 100644 --- a/client/src/com/vaadin/client/widget/grid/CellReference.java +++ b/client/src/com/vaadin/client/widget/grid/CellReference.java @@ -105,7 +105,7 @@ public class CellReference<T> { * Gets the index of the cell in the DOM. The difference to * {@link #getColumnIndex()} is caused by hidden columns. * - * @since + * @since 7.5.0 * @return the index of the column in the DOM */ public int getColumnIndexDOM() { diff --git a/client/src/com/vaadin/client/widget/grid/DetailsGenerator.java b/client/src/com/vaadin/client/widget/grid/DetailsGenerator.java index 103bf96291..b9427091a7 100644 --- a/client/src/com/vaadin/client/widget/grid/DetailsGenerator.java +++ b/client/src/com/vaadin/client/widget/grid/DetailsGenerator.java @@ -20,7 +20,7 @@ import com.google.gwt.user.client.ui.Widget; /** * A callback interface for generating details for a particular row in Grid. * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ public interface DetailsGenerator { diff --git a/client/src/com/vaadin/client/widget/grid/events/ColumnReorderEvent.java b/client/src/com/vaadin/client/widget/grid/events/ColumnReorderEvent.java index c72da0c48e..1712871089 100644 --- a/client/src/com/vaadin/client/widget/grid/events/ColumnReorderEvent.java +++ b/client/src/com/vaadin/client/widget/grid/events/ColumnReorderEvent.java @@ -23,7 +23,7 @@ import com.google.gwt.event.shared.GwtEvent; * @param <T> * 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.5.0 * @author Vaadin Ltd */ public class ColumnReorderEvent<T> extends GwtEvent<ColumnReorderHandler<T>> { diff --git a/client/src/com/vaadin/client/widget/grid/events/ColumnReorderHandler.java b/client/src/com/vaadin/client/widget/grid/events/ColumnReorderHandler.java index 4733ed8bc0..29c476058e 100644 --- a/client/src/com/vaadin/client/widget/grid/events/ColumnReorderHandler.java +++ b/client/src/com/vaadin/client/widget/grid/events/ColumnReorderHandler.java @@ -24,7 +24,7 @@ import com.google.gwt.event.shared.EventHandler; * @param <T> * 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.5.0 * @author Vaadin Ltd */ public interface ColumnReorderHandler<T> extends EventHandler { diff --git a/client/src/com/vaadin/client/widget/grid/events/ColumnVisibilityChangeEvent.java b/client/src/com/vaadin/client/widget/grid/events/ColumnVisibilityChangeEvent.java index 4c25f7a61b..63b788bcf2 100644 --- a/client/src/com/vaadin/client/widget/grid/events/ColumnVisibilityChangeEvent.java +++ b/client/src/com/vaadin/client/widget/grid/events/ColumnVisibilityChangeEvent.java @@ -25,7 +25,7 @@ import com.vaadin.client.widgets.Grid.Column; * @param <T> * 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.5.0 * @author Vaadin Ltd */ public class ColumnVisibilityChangeEvent<T> extends diff --git a/client/src/com/vaadin/client/widget/grid/events/ColumnVisibilityChangeHandler.java b/client/src/com/vaadin/client/widget/grid/events/ColumnVisibilityChangeHandler.java index 10a7660954..542fe4e3c1 100644 --- a/client/src/com/vaadin/client/widget/grid/events/ColumnVisibilityChangeHandler.java +++ b/client/src/com/vaadin/client/widget/grid/events/ColumnVisibilityChangeHandler.java @@ -23,7 +23,7 @@ import com.google.gwt.event.shared.EventHandler; * * @param<T> 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.5.0 * @author Vaadin Ltd */ public interface ColumnVisibilityChangeHandler<T> extends EventHandler { diff --git a/client/src/com/vaadin/client/widgets/Escalator.java b/client/src/com/vaadin/client/widgets/Escalator.java index 87f19d2ded..2b3a254b52 100644 --- a/client/src/com/vaadin/client/widgets/Escalator.java +++ b/client/src/com/vaadin/client/widgets/Escalator.java @@ -5824,7 +5824,7 @@ public class Escalator extends Widget implements RequiresResize, * Returns the scroll width for the escalator. Note that this is not * necessary the same as {@code Element.scrollWidth} in the DOM. * - * @since + * @since 7.5.0 * @return the scroll width in pixels */ public double getScrollWidth() { @@ -5835,7 +5835,7 @@ public class Escalator extends Widget implements RequiresResize, * Returns the scroll height for the escalator. Note that this is not * necessary the same as {@code Element.scrollHeight} in the DOM. * - * @since + * @since 7.5.0 * @return the scroll height in pixels */ public double getScrollHeight() { diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java index 5ed2f2f949..8316cb8b45 100644 --- a/client/src/com/vaadin/client/widgets/Grid.java +++ b/client/src/com/vaadin/client/widgets/Grid.java @@ -653,7 +653,7 @@ public class Grid<T> extends ResizeComposite implements /** * Returns <code>true</code> if this row contains spanned cells. * - * @since + * @since 7.5.0 * @return does this row contain spanned cells */ public boolean hasSpannedCells() { @@ -3121,7 +3121,7 @@ public class Grid<T> extends ResizeComposite implements * column hiding toggles and custom widgets become visible once the sidebar * has been opened. * - * @since + * @since 7.5.0 */ private static class Sidebar extends Composite { @@ -4262,7 +4262,7 @@ public class Grid<T> extends ResizeComposite implements * Hides or shows the column. By default columns are visible before * explicitly hiding them. * - * @since + * @since 7.5.0 * @param hidden * <code>true</code> to hide the column, <code>false</code> * to show @@ -4307,7 +4307,7 @@ public class Grid<T> extends ResizeComposite implements /** * Is this column hidden. Default is {@code false}. * - * @since + * @since 7.5.0 * @return <code>true</code> if the column is currently hidden, * <code>false</code> otherwise */ @@ -4322,7 +4322,7 @@ public class Grid<T> extends ResizeComposite implements * <em>Note:</em> it is still possible to hide the column * programmatically using {@link #setHidden(boolean)}. * - * @since + * @since 7.5.0 * @param hidable * <code>true</code> if the user can hide this column, * <code>false</code> if not @@ -4341,7 +4341,7 @@ public class Grid<T> extends ResizeComposite implements * <em>Note:</em> the column can be programmatically hidden using * {@link #setHidden(boolean)} regardless of the returned value. * - * @since + * @since 7.5.0 * @return <code>true</code> if the user can hide the column, * <code>false</code> if not */ @@ -5349,7 +5349,7 @@ public class Grid<T> extends ResizeComposite implements * <p> * No {@link Column#isHidden() hidden} columns included. * - * @since + * @since 7.5.0 * @return A unmodifiable list of the currently visible columns in the grid */ public List<Column<?, T>> getVisibleColumns() { @@ -5989,7 +5989,7 @@ public class Grid<T> extends ResizeComposite implements /** * Sets the horizontal scroll offset * - * @since + * @since 7.5.0 * @param px * the number of pixels this grid should be scrolled right */ @@ -6009,7 +6009,7 @@ public class Grid<T> extends ResizeComposite implements /** * Returns the height of the scrollable area in pixels. * - * @since + * @since 7.5.0 * @return the height of the scrollable area in pixels */ public double getScrollHeight() { @@ -6019,7 +6019,7 @@ public class Grid<T> extends ResizeComposite implements /** * Returns the width of the scrollable area in pixels. * - * @since + * @since 7.5.0 * @return the width of the scrollable area in pixels. */ public double getScrollWidth() { @@ -7051,7 +7051,7 @@ public class Grid<T> extends ResizeComposite implements * Register a column reorder handler to this Grid. The event for this * handler is fired when the Grid's columns are reordered. * - * @since + * @since 7.5.0 * @param handler * the handler for the event * @return the registration for the event @@ -7065,7 +7065,7 @@ public class Grid<T> extends ResizeComposite implements * Register a column visibility change handler to this Grid. The event for * this handler is fired when the Grid's columns change visibility. * - * @since + * @since 7.5.0 * @param handler * the handler for the event * @return the registration for the event @@ -7129,7 +7129,7 @@ public class Grid<T> extends ResizeComposite implements /** * Returns whether columns can be reordered with drag and drop. * - * @since + * @since 7.5.0 * @return <code>true</code> if columns can be reordered, false otherwise */ public boolean isColumnReorderingAllowed() { @@ -7139,7 +7139,7 @@ public class Grid<T> extends ResizeComposite implements /** * Sets whether column reordering with drag and drop is allowed or not. * - * @since + * @since 7.5.0 * @param columnReorderingAllowed * specifies whether column reordering is allowed */ @@ -7572,7 +7572,7 @@ public class Grid<T> extends ResizeComposite implements * <p> * The currently opened row details will be re-rendered. * - * @since + * @since 7.5.0 * @param detailsGenerator * the details generator to set * @throws IllegalArgumentException @@ -7595,7 +7595,7 @@ public class Grid<T> extends ResizeComposite implements /** * Gets the current details generator for row details. * - * @since + * @since 7.5.0 * @return the detailsGenerator the current details generator */ public DetailsGenerator getDetailsGenerator() { @@ -7608,7 +7608,7 @@ public class Grid<T> extends ResizeComposite implements * This method does nothing if trying to set show already-visible details, * or hide already-hidden details. * - * @since + * @since 7.5.0 * @param rowIndex * the index of the affected row * @param visible @@ -7651,7 +7651,7 @@ public class Grid<T> extends ResizeComposite implements /** * Check whether the details for a row is visible or not. * - * @since + * @since 7.5.0 * @param rowIndex * the index of the row for which to check details * @return <code>true</code> iff the details for the given row is visible @@ -7680,7 +7680,7 @@ public class Grid<T> extends ResizeComposite implements * The grid's sidebar shows the column hiding options for those columns that * have been set as {@link Column#setHidable(boolean) hidable}. * - * @since + * @since 7.5.0 * @return the sidebar widget for this grid */ private Sidebar getSidebar() { diff --git a/server/src/com/vaadin/data/RpcDataProviderExtension.java b/server/src/com/vaadin/data/RpcDataProviderExtension.java index a21a81244a..217b2fe392 100644 --- a/server/src/com/vaadin/data/RpcDataProviderExtension.java +++ b/server/src/com/vaadin/data/RpcDataProviderExtension.java @@ -588,7 +588,7 @@ public class RpcDataProviderExtension extends AbstractExtension { * A class that makes detail component related internal communication * possible between {@link RpcDataProviderExtension} and grid. * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ public static final class DetailComponentManager implements Serializable { @@ -1357,7 +1357,7 @@ public class RpcDataProviderExtension extends AbstractExtension { * If that row is currently in the client side's cache, this information * will be sent over to the client. * - * @since + * @since 7.5.0 * @param itemId * the id of the item of which to change the details visibility * @param visible @@ -1401,7 +1401,7 @@ public class RpcDataProviderExtension extends AbstractExtension { /** * Checks whether the details for a row is marked as visible. * - * @since + * @since 7.5.0 * @param itemId * the id of the item of which to check the visibility * @return <code>true</code> iff the detials are visible for the item. This diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java index 62b3a74f05..69fbb41fc2 100644 --- a/server/src/com/vaadin/ui/Grid.java +++ b/server/src/com/vaadin/ui/Grid.java @@ -170,7 +170,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * An event listener for column visibility change events in the Grid. * - * @since + * @since 7.5.0 */ public interface ColumnVisibilityChangeListener extends Serializable { /** @@ -184,7 +184,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * An event that is fired when a column's visibility changes. * - * @since + * @since 7.5.0 */ public static class ColumnVisibilityChangeEvent extends Component.Event { @@ -248,7 +248,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * A callback interface for generating details for a particular row in Grid. * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ public interface DetailsGenerator extends Serializable { @@ -452,7 +452,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * An event listener for column reorder events in the Grid. * - * @since + * @since 7.5.0 */ public interface ColumnReorderListener extends Serializable { /** @@ -467,7 +467,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * An event that is fired when the columns are reordered. * - * @since + * @since 7.5.0 */ public static class ColumnReorderEvent extends Component.Event { @@ -2834,7 +2834,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, * Hides or shows the column. By default columns are visible before * explicitly hiding them. * - * @since + * @since 7.5.0 * @param hidden * <code>true</code> to hide the column, <code>false</code> * to show @@ -2850,7 +2850,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * Is this column hidden. Default is {@code false}. * - * @since + * @since 7.5.0 * @return <code>true</code> if the column is currently hidden, * <code>false</code> otherwise */ @@ -2865,7 +2865,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, * <em>Note:</em> it is still possible to hide the column * programmatically using {@link #setHidden(boolean)} * - * @since + * @since 7.5.0 * @param hidable * <code>true</code> iff the column may be hidable by the * user via UI interaction @@ -2882,7 +2882,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, * <em>Note:</em> the column can be programmatically hidden using * {@link #setHidden(boolean)} regardless of the returned value. * - * @since + * @since 7.5.0 * @return <code>true</code> if the user can hide the column, * <code>false</code> if not */ @@ -3803,7 +3803,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, * Returns whether column reordering is allowed. Default value is * <code>false</code>. * - * @since + * @since 7.5.0 * @return true if reordering is allowed */ public boolean isColumnReorderingAllowed() { @@ -3814,7 +3814,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, * Sets whether or not column reordering is allowed. Default value is * <code>false</code>. * - * @since + * @since 7.5.0 * @param columnReorderingAllowed * specifies whether column reordering is allowed */ @@ -4399,7 +4399,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * Registers a new column reorder listener. * - * @since + * @since 7.5.0 * @param listener * the listener to register */ @@ -4410,7 +4410,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * Removes a previously registered column reorder listener. * - * @since + * @since 7.5.0 * @param listener * the listener to remove */ @@ -5486,7 +5486,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * Registers a new column visibility change listener * - * @since + * @since 7.5.0 * @param listener * the listener to register */ @@ -5499,7 +5499,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * Removes a previously registered column visibility change listener * - * @since + * @since 7.5.0 * @param listener * the listener to remove */ @@ -5520,7 +5520,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, * <p> * The currently opened row details will be re-rendered. * - * @since + * @since 7.5.0 * @param detailsGenerator * the details generator to set * @throws IllegalArgumentException @@ -5545,7 +5545,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * Gets the current details generator for row details. * - * @since + * @since 7.5.0 * @return the detailsGenerator the current details generator */ public DetailsGenerator getDetailsGenerator() { @@ -5555,7 +5555,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * Shows or hides the details for a specific item. * - * @since + * @since 7.5.0 * @param itemId * the id of the item for which to set details visibility * @param visible @@ -5569,7 +5569,7 @@ public class Grid extends AbstractComponent implements SelectionNotifier, /** * Checks whether details are visible for the given item. * - * @since + * @since 7.5.0 * @param itemId * the id of the item for which to check details visibility * @return <code>true</code> iff the details are visible diff --git a/shared/src/com/vaadin/shared/ui/grid/DetailsConnectorChange.java b/shared/src/com/vaadin/shared/ui/grid/DetailsConnectorChange.java index 171a7738a6..8b64d22423 100644 --- a/shared/src/com/vaadin/shared/ui/grid/DetailsConnectorChange.java +++ b/shared/src/com/vaadin/shared/ui/grid/DetailsConnectorChange.java @@ -24,7 +24,7 @@ import com.vaadin.shared.Connector; * A description of an indexing modification for a connector. This is used by * Grid for internal bookkeeping updates. * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ public class DetailsConnectorChange implements Serializable { diff --git a/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java index 98e7fac567..d4707f9ba5 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridClientRpc.java @@ -61,7 +61,7 @@ public interface GridClientRpc extends ClientRpc { * Informs the GridConnector on how the indexing of details connectors has * changed. * - * @since + * @since 7.5.0 * @param connectorChanges * the indexing changes of details connectors * @param fetchId diff --git a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java index 2b2308fe84..dca55c11c4 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridServerRpc.java @@ -51,7 +51,7 @@ public interface GridServerRpc extends ServerRpc { /** * Informs the server that the columns of the Grid have been reordered. * - * @since + * @since 7.5.0 * @param newColumnOrder * a list of column ids in the new order * @param oldColumnOrder @@ -70,7 +70,7 @@ public interface GridServerRpc extends ServerRpc { * , and that is too late to change the hierarchy. So we need this * round-trip to work around that limitation. * - * @since + * @since 7.5.0 * @param fetchId * an unique identifier for the request * @see com.vaadin.ui.Grid#setDetailsVisible(Object, boolean) @@ -80,7 +80,7 @@ public interface GridServerRpc extends ServerRpc { /** * Informs the server that the column's visibility has been changed. * - * @since + * @since 7.5.0 * @param id * the id of the column * @param hidden |