summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2017-05-08 13:40:02 +0300
committerTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2017-05-08 14:46:35 +0300
commitf961ea1d766996a551b5f2bf2aa7929ead0f0466 (patch)
treeb61573c569c309b6a7790b9a592865c975b52156 /server
parent1e6344421b5a88519abdba5fe1443014b1577ca7 (diff)
downloadvaadin-framework-8.0.6.tar.gz
vaadin-framework-8.0.6.zip
Add since tags for 8.0.68.0.6
Diffstat (limited to 'server')
-rw-r--r--server/src/main/java/com/vaadin/data/provider/DataCommunicator.java22
-rw-r--r--server/src/main/java/com/vaadin/server/VaadinSession.java1
2 files changed, 12 insertions, 11 deletions
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 08e11b96b5..88974715cd 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<T> extends AbstractExtension {
* Set the range of rows to push for next response.
*
* @param pushRows
- * @since
+ * @since 8.0.6
*/
protected void setPushRows(Range pushRows) {
this.pushRows = pushRows;
@@ -235,7 +235,7 @@ public class DataCommunicator<T> extends AbstractExtension {
* Get the current range of rows to push in the next response.
*
* @return the range of rows to push
- * @since
+ * @since 8.0.6
*/
protected Range getPushRows() {
return pushRows;
@@ -245,7 +245,7 @@ public class DataCommunicator<T> extends AbstractExtension {
* Get the object used for filtering in this data communicator.
*
* @return the filter object of this data communicator
- * @since
+ * @since 8.0.6
*/
protected Object getFilter() {
return filter;
@@ -255,7 +255,7 @@ public class DataCommunicator<T> extends AbstractExtension {
* Get the client rpc interface for this data communicator.
*
* @return the client rpc interface for this data communicator
- * @since
+ * @since 8.0.6
*/
protected DataCommunicatorClientRpc getClientRpc() {
return rpc;
@@ -272,7 +272,7 @@ public class DataCommunicator<T> extends AbstractExtension {
* the index of the first cached row
* @param cacheSize
* the number of cached rows
- * @since
+ * @since 8.0.6
*/
protected void onRequestRows(int firstRowIndex, int numberOfRows,
int firstCachedRowIndex, int cacheSize) {
@@ -285,7 +285,7 @@ public class DataCommunicator<T> extends AbstractExtension {
*
* @param keys
* the keys of the rows that have been dropped
- * @since
+ * @since 8.0.6
*/
protected void onDropRows(JsonArray keys) {
for (int i = 0; i < keys.length(); ++i) {
@@ -309,7 +309,7 @@ public class DataCommunicator<T> extends AbstractExtension {
*
* @param initial
* {@code true} if initial data load, {@code false} if not
- * @since
+ * @since 8.0.6
*/
protected void sendDataToClient(boolean initial) {
if (getDataProvider() == null) {
@@ -437,7 +437,7 @@ public class DataCommunicator<T> extends AbstractExtension {
* Returns the active data handler.
*
* @return the active data handler
- * @since
+ * @since 8.0.6
*/
protected ActiveDataHandler getActiveDataHandler() {
return handler;
@@ -505,7 +505,7 @@ public class DataCommunicator<T> extends AbstractExtension {
* Returns the currently set updated data.
*
* @return the set of data that should be updated on the next response
- * @since
+ * @since 8.0.6
*/
protected Set<T> getUpdatedData() {
return updatedData;
@@ -526,7 +526,7 @@ public class DataCommunicator<T> extends AbstractExtension {
* Returns the {@link Comparator} to use with in-memory sorting.
*
* @return comparator used to sort data
- * @since
+ * @since 8.0.6
*/
public Comparator<T> getInMemorySorting() {
return inMemorySorting;
@@ -548,7 +548,7 @@ public class DataCommunicator<T> extends AbstractExtension {
* Returns the {@link QuerySortOrder} to use with backend sorting.
*
* @return list of sort order information to pass to a query
- * @since
+ * @since 8.0.6
*/
public List<QuerySortOrder> 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 46a11d3826..1fe2dc0044 100644
--- a/server/src/main/java/com/vaadin/server/VaadinSession.java
+++ b/server/src/main/java/com/vaadin/server/VaadinSession.java
@@ -1424,6 +1424,7 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable {
* establishing a push connection with the client.
*
* @return the push connection identifier string
+ * @since 8.0.6
*/
public String getPushId() {
assert hasLock();