You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2020/12/25 15:47:26 UTC

[groovy] branch master updated: Tweak javadoc

This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new aa0e10c  Tweak javadoc
aa0e10c is described below

commit aa0e10cdc5f2ca312a8e219acc6ccd19a0344d35
Author: Daniel Sun <su...@apache.org>
AuthorDate: Fri Dec 25 23:47:13 2020 +0800

    Tweak javadoc
---
 .../groovy/ginq/provider/collection/runtime/WindowDefinition.java      | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/WindowDefinition.java b/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/WindowDefinition.java
index f05939f..9fdff9a 100644
--- a/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/WindowDefinition.java
+++ b/subprojects/groovy-ginq/src/main/groovy/org/apache/groovy/ginq/provider/collection/runtime/WindowDefinition.java
@@ -129,6 +129,7 @@ public interface WindowDefinition<T, U extends Comparable<? super U>> {
      * Get the id of window definition
      *
      * @return the id of window definition
+     * @since 4.0.0
      */
     String getId();
 
@@ -136,6 +137,8 @@ public interface WindowDefinition<T, U extends Comparable<? super U>> {
      * Set the id of window definition
      *
      * @param id the id of window definition
+     * @return self, i.e. current {@link WindowDefinition} instance
+     * @since 4.0.0
      */
     WindowDefinition<T, U> setId(String id);
 }