Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Feb 22, 2025
1 parent d3e51a9 commit a93b30c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/main/java/org/apache/commons/io/build/AbstractOrigin.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public abstract static class AbstractRandomAccessFileOrigin<T extends RandomAcce
* Starting from this origin, you can everything except a Path and a File.
* </p>
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public AbstractRandomAccessFileOrigin(final T origin) {
super(origin);
Expand Down Expand Up @@ -150,7 +150,7 @@ public static class ByteArrayOrigin extends AbstractOrigin<byte[], ByteArrayOrig
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public ByteArrayOrigin(final byte[] origin) {
super(origin);
Expand Down Expand Up @@ -193,7 +193,7 @@ public static class CharSequenceOrigin extends AbstractOrigin<CharSequence, Char
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public CharSequenceOrigin(final CharSequence origin) {
super(origin);
Expand Down Expand Up @@ -258,7 +258,7 @@ public static class FileOrigin extends AbstractOrigin<File, FileOrigin> {
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public FileOrigin(final File origin) {
super(origin);
Expand Down Expand Up @@ -295,7 +295,7 @@ public static class InputStreamOrigin extends AbstractOrigin<InputStream, InputS
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public InputStreamOrigin(final InputStream origin) {
super(origin);
Expand Down Expand Up @@ -335,7 +335,7 @@ public static class IORandomAccessFileOrigin extends AbstractRandomAccessFileOri
/**
* A {@link RandomAccessFile} origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public IORandomAccessFileOrigin(final IORandomAccessFile origin) {
super(origin);
Expand Down Expand Up @@ -365,7 +365,7 @@ public static class OutputStreamOrigin extends AbstractOrigin<OutputStream, Outp
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public OutputStreamOrigin(final OutputStream origin) {
super(origin);
Expand Down Expand Up @@ -406,7 +406,7 @@ public static class PathOrigin extends AbstractOrigin<Path, PathOrigin> {
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public PathOrigin(final Path origin) {
super(origin);
Expand Down Expand Up @@ -445,7 +445,7 @@ public static class RandomAccessFileOrigin extends AbstractRandomAccessFileOrigi
* Starting from this origin, you can everything except a Path and a File.
* </p>
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public RandomAccessFileOrigin(final RandomAccessFile origin) {
super(origin);
Expand All @@ -464,7 +464,7 @@ public static class ReaderOrigin extends AbstractOrigin<Reader, ReaderOrigin> {
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public ReaderOrigin(final Reader origin) {
super(origin);
Expand Down Expand Up @@ -523,7 +523,7 @@ public static class URIOrigin extends AbstractOrigin<URI, URIOrigin> {
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public URIOrigin(final URI origin) {
super(origin);
Expand Down Expand Up @@ -565,7 +565,7 @@ public static class WriterOrigin extends AbstractOrigin<Writer, WriterOrigin> {
/**
* Constructs a new instance for the given origin.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
public WriterOrigin(final Writer origin) {
super(origin);
Expand Down Expand Up @@ -607,7 +607,7 @@ public Writer getWriter(final Charset charset, final OpenOption... options) thro
/**
* Constructs a new instance for subclasses.
*
* @param origin The origin.
* @param origin The origin, not null.
*/
protected AbstractOrigin(final T origin) {
this.origin = Objects.requireNonNull(origin, "origin");
Expand Down

0 comments on commit a93b30c

Please sign in to comment.