src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/RowCountOperation.java
branchJDK-8188051-branch
changeset 56997 c9cbac2979fb
parent 56832 4f7713e6a308
--- a/src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/RowCountOperation.java	Thu Jul 12 15:23:13 2018 -0400
+++ b/src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/RowCountOperation.java	Sat Oct 20 08:17:38 2018 -0400
@@ -41,14 +41,24 @@
    * 
    * @param function processes the count produced by executing this
    * {@link Operation} and returns the result
-   * @return this {@link RowCountOperation}
+   * @return this {@code RowCountOperation}
    * @throws IllegalStateException if this method has been called previously
    */
   public RowCountOperation<T> apply(Function<Result.RowCount, ? extends T> function);
 
+  /**
+   * {@inheritDoc} 
+   * 
+   * @return this {@code RowCountOperation}
+   */
   @Override
   public RowCountOperation<T> onError(Consumer<Throwable> handler);
 
+  /**
+   * {@inheritDoc} 
+   * 
+   * @return this {@code RowCountOperation}
+   */
   @Override
   public RowCountOperation<T> timeout(Duration minTime);