summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2015-03-26 11:27:21 +0200
committerLeif Åstrand <leif@vaadin.com>2015-03-26 11:27:21 +0200
commiteb3406247e397c23d447bf4fd84a5052a0488876 (patch)
tree69531c22d028d32d95fcb74fc61d4bba651b949b /server
parentda95f395add4916d0544858c87b448ddc5d03881 (diff)
downloadvaadin-framework-eb3406247e397c23d447bf4fd84a5052a0488876.tar.gz
vaadin-framework-eb3406247e397c23d447bf4fd84a5052a0488876.zip
Update all empty since tags published in alpha1
Change-Id: I1afce7e69beb9a61354fd82fcda194d4277dfd36
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/data/RpcDataProviderExtension.java6
-rw-r--r--server/src/com/vaadin/ui/Grid.java38
2 files changed, 22 insertions, 22 deletions
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