Skip to content

Commit 77d4fd7

Browse files
committed
Javadoc
1 parent 5d1b027 commit 77d4fd7

41 files changed

Lines changed: 121 additions & 121 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/org/apache/commons/io/RandomAccessFileMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public void accept(final Path file, final IOConsumer<IORandomAccessFile> consume
175175
* This method allocates and releases the {@link RandomAccessFile} given to the function.
176176
* </p>
177177
*
178-
* @param <T> the return type of the function.
178+
* @param <T> The return type of the function.
179179
* @param file the file specifying the {@link RandomAccessFile} to open.
180180
* @param function the function to apply.
181181
* @return the function's result value.

src/main/java/org/apache/commons/io/build/AbstractOrigin.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@
343343
* </li>
344344
* </ul>
345345
*
346-
* @param <T> the type produced by the builder.
347-
* @param <B> the concrete builder subclass type.
346+
* @param <T> The type produced by the builder.
347+
* @param <B> The concrete builder subclass type.
348348
* @since 2.12.0
349349
*/
350350
public abstract class AbstractOrigin<T, B extends AbstractOrigin<T, B>> extends AbstractSupplier<T, B> {
@@ -356,8 +356,8 @@ public abstract class AbstractOrigin<T, B extends AbstractOrigin<T, B>> extends
356356
* instead.
357357
* </p>
358358
*
359-
* @param <T> the type of instances to build.
360-
* @param <B> the type of builder subclass.
359+
* @param <T> The type of instances to build.
360+
* @param <B> The type of builder subclass.
361361
*/
362362
public abstract static class AbstractRandomAccessFileOrigin<T extends RandomAccessFile, B extends AbstractRandomAccessFileOrigin<T, B>>
363363
extends AbstractOrigin<T, B> {

src/main/java/org/apache/commons/io/build/AbstractOriginSupplier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
/**
4646
* Abstracts <em>building</em> an instance of type {@code T} where {@code T} is unbounded from a wrapped {@linkplain AbstractOrigin origin}.
4747
*
48-
* @param <T> the type of instances to build.
49-
* @param <B> the type of builder subclass.
48+
* @param <T> The type of instances to build.
49+
* @param <B> The type of builder subclass.
5050
* @since 2.12.0
5151
*/
5252
public abstract class AbstractOriginSupplier<T, B extends AbstractOriginSupplier<T, B>> extends AbstractSupplier<T, B> {

src/main/java/org/apache/commons/io/build/AbstractStreamBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
* buffer size checker, a buffer size default, buffer size maximum, Charset, Charset default, default size checker, and open options. A subclass may use all,
4141
* some, or none of these properties in building instances of {@code T}.
4242
*
43-
* @param <T> the type of instances to build.
44-
* @param <B> the type of builder subclass.
43+
* @param <T> The type of instances to build.
44+
* @param <B> The type of builder subclass.
4545
* @since 2.12.0
4646
*/
4747
public abstract class AbstractStreamBuilder<T, B extends AbstractStreamBuilder<T, B>> extends AbstractOriginSupplier<T, B> {

src/main/java/org/apache/commons/io/build/AbstractSupplier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ public void test() {
118118
}
119119
* </pre>
120120
*
121-
* @param <T> the type of instances to build.
122-
* @param <B> the type of builder subclass.
121+
* @param <T> The type of instances to build.
122+
* @param <B> The type of builder subclass.
123123
* @see IOSupplier
124124
* @since 2.12.0
125125
*/

src/main/java/org/apache/commons/io/channels/FilterByteChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* {@link Builder}.
4343
* </p>
4444
*
45-
* @param <C> the {@link ByteChannel} type.
45+
* @param <C> The {@link ByteChannel} type.
4646
* @see FilterInputStream
4747
* @see FilterOutputStream
4848
* @see FilterReader

src/main/java/org/apache/commons/io/channels/FilterChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* {@link Builder}.
4343
* </p>
4444
*
45-
* @param <C> the {@link Channel} type.
45+
* @param <C> The {@link Channel} type.
4646
* @see FilterInputStream
4747
* @see FilterOutputStream
4848
* @see FilterReader

src/main/java/org/apache/commons/io/channels/FilterReadableByteChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* advanced instances through the {@link Builder}.
4343
* </p>
4444
*
45-
* @param <C> the {@link ReadableByteChannel} type.
45+
* @param <C> The {@link ReadableByteChannel} type.
4646
* @see FilterInputStream
4747
* @see FilterOutputStream
4848
* @see FilterReader

src/main/java/org/apache/commons/io/channels/FilterSeekableByteChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* advanced instances through the {@link Builder}.
4242
* </p>
4343
*
44-
* @param <C> the {@link SeekableByteChannel} type.
44+
* @param <C> The {@link SeekableByteChannel} type.
4545
* @see FilterInputStream
4646
* @see FilterOutputStream
4747
* @see FilterReader

src/main/java/org/apache/commons/io/channels/FilterWritableByteChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* advanced instances through the {@link Builder}.
4343
* </p>
4444
*
45-
* @param <C> the {@link WritableByteChannel} type.
45+
* @param <C> The {@link WritableByteChannel} type.
4646
* @see FilterInputStream
4747
* @see FilterOutputStream
4848
* @see FilterReader

0 commit comments

Comments
 (0)