summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2015-08-26 16:47:19 +0300
committerJohannes Dahlström <johannesd@vaadin.com>2015-08-26 16:47:19 +0300
commitb6f2bb0ceeb2e903e3c457f480ebd66450597644 (patch)
treefaeed90e9b6aaed997570a454622729270fcd1aa
parenta5506fd68b81a9b1e53d88a1880b66a8a50eb148 (diff)
downloadvaadin-framework-b6f2bb0ceeb2e903e3c457f480ebd66450597644.tar.gz
vaadin-framework-b6f2bb0ceeb2e903e3c457f480ebd66450597644.zip
Fix empty @since tags for 7.6.0.alpha47.6.0.alpha4
Change-Id: I9f223ec2d49a4a851f5e5808cc325c52717191ee
-rw-r--r--client/src/com/vaadin/client/ComputedStyle.java4
-rw-r--r--client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java2
-rw-r--r--client/src/com/vaadin/client/data/AbstractRemoteDataSource.java2
-rw-r--r--client/src/com/vaadin/client/widgets/Grid.java2
-rw-r--r--server/src/com/vaadin/data/DataGenerator.java2
-rw-r--r--server/src/com/vaadin/data/RpcDataProviderExtension.java12
-rw-r--r--server/src/com/vaadin/server/communication/AtmospherePushConnection.java2
-rw-r--r--server/src/com/vaadin/ui/Grid.java12
-rw-r--r--shared/src/com/vaadin/shared/data/DataProviderRpc.java2
-rw-r--r--shared/src/com/vaadin/shared/data/DataRequestRpc.java2
10 files changed, 21 insertions, 21 deletions
diff --git a/client/src/com/vaadin/client/ComputedStyle.java b/client/src/com/vaadin/client/ComputedStyle.java
index 676d18d245..66404eeeed 100644
--- a/client/src/com/vaadin/client/ComputedStyle.java
+++ b/client/src/com/vaadin/client/ComputedStyle.java
@@ -335,7 +335,7 @@ public class ComputedStyle {
/**
* Returns the sum of the top and bottom margin
*
- * @since
+ * @since 7.6
* @return the sum of the top and bottom margin
*/
public double getMarginHeight() {
@@ -348,7 +348,7 @@ public class ComputedStyle {
/**
* Returns the sum of the top and bottom margin
*
- * @since
+ * @since 7.6
* @return the sum of the left and right margin
*/
public double getMarginWidth() {
diff --git a/client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java b/client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java
index 79838f3252..78aaebaca1 100644
--- a/client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java
+++ b/client/src/com/vaadin/client/connectors/RpcDataSourceConnector.java
@@ -229,7 +229,7 @@ public class RpcDataSourceConnector extends AbstractExtensionConnector {
/**
* Updates row data based on row key.
*
- * @since
+ * @since 7.6
* @param row
* new row object
*/
diff --git a/client/src/com/vaadin/client/data/AbstractRemoteDataSource.java b/client/src/com/vaadin/client/data/AbstractRemoteDataSource.java
index 256bc5ff6a..2438bec8df 100644
--- a/client/src/com/vaadin/client/data/AbstractRemoteDataSource.java
+++ b/client/src/com/vaadin/client/data/AbstractRemoteDataSource.java
@@ -360,7 +360,7 @@ public abstract class AbstractRemoteDataSource<T> implements DataSource<T> {
* dropped from the cache. DataSource no longer has anything in the given
* index.
*
- * @since
+ * @since 7.6
* @param rowIndex
* the index of the dropped row
* @param removed
diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java
index 580d0da72b..45d14fac30 100644
--- a/client/src/com/vaadin/client/widgets/Grid.java
+++ b/client/src/com/vaadin/client/widgets/Grid.java
@@ -8302,7 +8302,7 @@ public class Grid<T> extends ResizeComposite implements
* Returns a CellReference for the cell to which the given element belongs
* to.
*
- * @since
+ * @since 7.6
* @param element
* Element to find from the cell's content.
* @return CellReference or <code>null</code> if cell was not found.
diff --git a/server/src/com/vaadin/data/DataGenerator.java b/server/src/com/vaadin/data/DataGenerator.java
index f025623a3e..a5333b8523 100644
--- a/server/src/com/vaadin/data/DataGenerator.java
+++ b/server/src/com/vaadin/data/DataGenerator.java
@@ -29,7 +29,7 @@ import elemental.json.JsonObject;
* {@link AbstractRenderer} implements this interface to provide encoded data to
* client for {@link Renderer}s automatically.
*
- * @since
+ * @since 7.6
* @author Vaadin Ltd
*/
public interface DataGenerator extends Serializable {
diff --git a/server/src/com/vaadin/data/RpcDataProviderExtension.java b/server/src/com/vaadin/data/RpcDataProviderExtension.java
index 2ec100eba6..f5d712f6b2 100644
--- a/server/src/com/vaadin/data/RpcDataProviderExtension.java
+++ b/server/src/com/vaadin/data/RpcDataProviderExtension.java
@@ -243,7 +243,7 @@ public class RpcDataProviderExtension extends AbstractExtension {
/**
* {@inheritDoc}
*
- * @since
+ * @since 7.6
*/
@Override
public void generateData(Object itemId, Item item, JsonObject rowData) {
@@ -253,7 +253,7 @@ public class RpcDataProviderExtension extends AbstractExtension {
/**
* Removes all inactive item id to key mapping from the key mapper.
*
- * @since
+ * @since 7.6
*/
public void dropInactiveItems() {
Collection<Object> active = activeItemHandler.getActiveItemIds();
@@ -270,7 +270,7 @@ public class RpcDataProviderExtension extends AbstractExtension {
/**
* Class for keeping track of current items and ValueChangeListeners.
*
- * @since
+ * @since 7.6
*/
private class ActiveItemHandler implements Serializable {
@@ -545,7 +545,7 @@ public class RpcDataProviderExtension extends AbstractExtension {
/**
* {@inheritDoc}
*
- * @since
+ * @since 7.6
*/
@Override
public void generateData(Object itemId, Item item, JsonObject rowData) {
@@ -823,7 +823,7 @@ public class RpcDataProviderExtension extends AbstractExtension {
* DataGenerators are called when sending row data to client. If given
* DataGenerator is already added, this method does nothing.
*
- * @since
+ * @since 7.6
* @param generator
* generator to add
*/
@@ -836,7 +836,7 @@ public class RpcDataProviderExtension extends AbstractExtension {
* {@code RpcDataProviderExtension}. If given DataGenerator is not added to
* this data provider, this method does nothing.
*
- * @since
+ * @since 7.6
* @param generator
* generator to remove
*/
diff --git a/server/src/com/vaadin/server/communication/AtmospherePushConnection.java b/server/src/com/vaadin/server/communication/AtmospherePushConnection.java
index e1bc8e212b..05e4f6479f 100644
--- a/server/src/com/vaadin/server/communication/AtmospherePushConnection.java
+++ b/server/src/com/vaadin/server/communication/AtmospherePushConnection.java
@@ -359,7 +359,7 @@ public class AtmospherePushConnection implements PushConnection {
* Internal method used for reconfiguring loggers to show all Atmosphere log
* messages in the console.
*
- * @since
+ * @since 7.6
*/
public static void enableAtmosphereDebugLogging() {
Level level = Level.FINEST;
diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java
index c7ad9632fa..cea89d24e8 100644
--- a/server/src/com/vaadin/ui/Grid.java
+++ b/server/src/com/vaadin/ui/Grid.java
@@ -1574,7 +1574,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
*
* @see Grid#setRowDescriptionGenerator(CellDescriptionGenerator)
*
- * @since
+ * @since 7.6
*/
public interface RowDescriptionGenerator extends Serializable {
@@ -1598,7 +1598,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
*
* @see Grid#setCellDescriptionGenerator(CellDescriptionGenerator)
*
- * @since
+ * @since 7.6
*/
public interface CellDescriptionGenerator extends Serializable {
@@ -5877,7 +5877,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
*
* @see #setRowDescriptionGenerator(RowDescriptionGenerator)
*
- * @since
+ * @since 7.6
*/
public void setCellDescriptionGenerator(CellDescriptionGenerator generator) {
cellDescriptionGenerator = generator;
@@ -5891,7 +5891,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
*
* @return the description generator or {@code null} if no generator is set
*
- * @since
+ * @since 7.6
*/
public CellDescriptionGenerator getCellDescriptionGenerator() {
return cellDescriptionGenerator;
@@ -5911,7 +5911,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
*
* @see #setCellDescriptionGenerator(CellDescriptionGenerator)
*
- * @since
+ * @since 7.6
*/
public void setRowDescriptionGenerator(RowDescriptionGenerator generator) {
rowDescriptionGenerator = generator;
@@ -5925,7 +5925,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier,
*
* @return the description generator or {@code} null if no generator is set
*
- * @since
+ * @since 7.6
*/
public RowDescriptionGenerator getRowDescriptionGenerator() {
return rowDescriptionGenerator;
diff --git a/shared/src/com/vaadin/shared/data/DataProviderRpc.java b/shared/src/com/vaadin/shared/data/DataProviderRpc.java
index bddbdd113d..28e50d9747 100644
--- a/shared/src/com/vaadin/shared/data/DataProviderRpc.java
+++ b/shared/src/com/vaadin/shared/data/DataProviderRpc.java
@@ -97,7 +97,7 @@ public interface DataProviderRpc extends ClientRpc {
* Informs the client that a row has updated. The client-side DataSource
* will map the given data to correct index if it should be in the cache.
*
- * @since
+ * @since 7.6
* @param row
* the updated row data
*/
diff --git a/shared/src/com/vaadin/shared/data/DataRequestRpc.java b/shared/src/com/vaadin/shared/data/DataRequestRpc.java
index 041e92d05c..b66965fae9 100644
--- a/shared/src/com/vaadin/shared/data/DataRequestRpc.java
+++ b/shared/src/com/vaadin/shared/data/DataRequestRpc.java
@@ -63,7 +63,7 @@ public interface DataRequestRpc extends ServerRpc {
/**
* Informs the server that items have been dropped from the client cache.
*
- * @since
+ * @since 7.6
* @param rowKeys
* array of dropped keys mapping to items
*/