src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/ParameterizedRowOperation.java
branchJDK-8188051-branch
changeset 56997 c9cbac2979fb
parent 56797 fb523d4d9185
--- a/src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/ParameterizedRowOperation.java	Thu Jul 12 15:23:13 2018 -0400
+++ b/src/jdk.incubator.adba/share/classes/jdk/incubator/sql2/ParameterizedRowOperation.java	Sat Oct 20 08:17:38 2018 -0400
@@ -39,27 +39,67 @@
 
   // Covariant overrides
   
+  /**
+   * {@inheritDoc}
+   * 
+   * @return this {@code ParameterizedRowOperation}
+   */
   @Override
   public ParameterizedRowOperation<T> onError(Consumer<Throwable> handler);
   
+  /**
+   * {@inheritDoc}
+   * 
+   * @return this {@code ParameterizedRowOperation}
+   */
   @Override
   public ParameterizedRowOperation<T> fetchSize(long rows) throws IllegalArgumentException;
   
+  /**
+   * {@inheritDoc}
+   * 
+   * @return this {@code ParameterizedRowOperation}
+   */
   @Override
   public <A, S extends T> ParameterizedRowOperation<T> collect(Collector<? super Result.RowColumn, A, S> c);
 
+  /**
+   * {@inheritDoc}
+   * 
+   * @return this {@code ParameterizedRowOperation}
+   */
   @Override
   public ParameterizedRowOperation<T> set(String id, Object value, SqlType type);
 
+  /**
+   * {@inheritDoc}
+   * 
+   * @return this {@code ParameterizedRowOperation}
+   */
   @Override
   public ParameterizedRowOperation<T> set(String id, CompletionStage<?> source, SqlType type);
 
+  /**
+   * {@inheritDoc}
+   * 
+   * @return this {@code ParameterizedRowOperation}
+   */
   @Override
   public ParameterizedRowOperation<T> set(String id, CompletionStage<?> source);
 
+  /**
+   * {@inheritDoc}
+   * 
+   * @return this {@code ParameterizedRowOperation}
+   */
   @Override
   public ParameterizedRowOperation<T> set(String id, Object value);
 
+  /**
+   * {@inheritDoc}
+   * 
+   * @return this {@code ParameterizedRowOperation}
+   */
   @Override
   public ParameterizedRowOperation<T> timeout(Duration minTime);