From 87e7887bc02f1e4c7cddbb981d3b042d83e7c41e Mon Sep 17 00:00:00 2001 From: Teemu Suo-Anttila Date: Mon, 8 May 2017 13:40:02 +0300 Subject: Add since tags for 8.0.6 --- .../com/vaadin/data/provider/DataCommunicator.java | 22 +++++++++++----------- .../main/java/com/vaadin/server/VaadinSession.java | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'server/src') diff --git a/server/src/main/java/com/vaadin/data/provider/DataCommunicator.java b/server/src/main/java/com/vaadin/data/provider/DataCommunicator.java index ffdd79f36e..ad95bfa592 100644 --- a/server/src/main/java/com/vaadin/data/provider/DataCommunicator.java +++ b/server/src/main/java/com/vaadin/data/provider/DataCommunicator.java @@ -225,7 +225,7 @@ public class DataCommunicator extends AbstractExtension { * Set the range of rows to push for next response. * * @param pushRows - * @since 8.1 + * @since 8.0.6 */ protected void setPushRows(Range pushRows) { this.pushRows = pushRows; @@ -235,7 +235,7 @@ public class DataCommunicator extends AbstractExtension { * Get the current range of rows to push in the next response. * * @return the range of rows to push - * @since 8.1 + * @since 8.0.6 */ protected Range getPushRows() { return pushRows; @@ -245,7 +245,7 @@ public class DataCommunicator extends AbstractExtension { * Get the object used for filtering in this data communicator. * * @return the filter object of this data communicator - * @since 8.1 + * @since 8.0.6 */ protected Object getFilter() { return filter; @@ -255,7 +255,7 @@ public class DataCommunicator extends AbstractExtension { * Get the client rpc interface for this data communicator. * * @return the client rpc interface for this data communicator - * @since 8.1 + * @since 8.0.6 */ protected DataCommunicatorClientRpc getClientRpc() { return rpc; @@ -272,7 +272,7 @@ public class DataCommunicator extends AbstractExtension { * the index of the first cached row * @param cacheSize * the number of cached rows - * @since 8.1 + * @since 8.0.6 */ protected void onRequestRows(int firstRowIndex, int numberOfRows, int firstCachedRowIndex, int cacheSize) { @@ -285,7 +285,7 @@ public class DataCommunicator extends AbstractExtension { * * @param keys * the keys of the rows that have been dropped - * @since 8.1 + * @since 8.0.6 */ protected void onDropRows(JsonArray keys) { for (int i = 0; i < keys.length(); ++i) { @@ -309,7 +309,7 @@ public class DataCommunicator extends AbstractExtension { * * @param initial * {@code true} if initial data load, {@code false} if not - * @since 8.1 + * @since 8.0.6 */ protected void sendDataToClient(boolean initial) { if (getDataProvider() == null) { @@ -437,7 +437,7 @@ public class DataCommunicator extends AbstractExtension { * Returns the active data handler. * * @return the active data handler - * @since 8.1 + * @since 8.0.6 */ protected ActiveDataHandler getActiveDataHandler() { return handler; @@ -508,7 +508,7 @@ public class DataCommunicator extends AbstractExtension { * Returns the currently set updated data. * * @return the set of data that should be updated on the next response - * @since 8.1 + * @since 8.0.6 */ protected Set getUpdatedData() { return updatedData; @@ -529,7 +529,7 @@ public class DataCommunicator extends AbstractExtension { * Returns the {@link Comparator} to use with in-memory sorting. * * @return comparator used to sort data - * @since 8.1 + * @since 8.0.6 */ public Comparator getInMemorySorting() { return inMemorySorting; @@ -551,7 +551,7 @@ public class DataCommunicator extends AbstractExtension { * Returns the {@link QuerySortOrder} to use with backend sorting. * * @return list of sort order information to pass to a query - * @since 8.1 + * @since 8.0.6 */ public List getBackEndSorting() { return backEndSorting; diff --git a/server/src/main/java/com/vaadin/server/VaadinSession.java b/server/src/main/java/com/vaadin/server/VaadinSession.java index ac22e80601..c1995516de 100644 --- a/server/src/main/java/com/vaadin/server/VaadinSession.java +++ b/server/src/main/java/com/vaadin/server/VaadinSession.java @@ -1425,7 +1425,7 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable { * * @return the push connection identifier string * - * @since 8.1 + * @since 8.0.6 */ public String getPushId() { assert hasLock(); -- cgit v1.2.3