Skip to content

Commit b467896

Browse files
committed
Javadoc
1 parent 61216e5 commit b467896

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/main/java/org/apache/commons/io/filefilter/AndFileFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import java.util.stream.Stream;
3030

3131
/**
32-
* A {@link FileFilter} providing conditional AND logic across a list of
32+
* A {@link ConditionalFileFilter} providing conditional AND logic across a list of
3333
* file filters. This filter returns {@code true} if all filters in the
3434
* list return {@code true}. Otherwise, it returns {@code false}.
3535
* Checking of the file filter list stops when the first filter returns

src/main/java/org/apache/commons/io/filefilter/CanExecuteFileFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.nio.file.attribute.BasicFileAttributes;
2525

2626
/**
27-
* This filter accepts {@link File}s that can be executed.
27+
* This filter accepts {@link File}s that are executable.
2828
* <p>
2929
* Example, showing how to print out a list of the
3030
* current directory's <em>executable</em> files:

src/main/java/org/apache/commons/io/filefilter/CanReadFileFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.nio.file.attribute.BasicFileAttributes;
2525

2626
/**
27-
* This filter accepts {@link File}s that can be read.
27+
* This filter accepts {@link File}s that are readable.
2828
* <p>
2929
* Example, showing how to print out a list of the current directory's <em>readable</em> files:
3030
* </p>

src/main/java/org/apache/commons/io/filefilter/CanWriteFileFilter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.nio.file.attribute.BasicFileAttributes;
2525

2626
/**
27-
* This filter accepts {@link File}s that can be written to.
27+
* This filter accepts {@link File}s that are writable.
2828
* <p>
2929
* Example, showing how to print out a list of the current directory's <em>writable</em> files:
3030
* </p>
@@ -54,6 +54,7 @@
5454
* <em>Serialization is deprecated and will be removed in 3.0.</em>
5555
* </p>
5656
*
57+
* @see Files#isWritable(Path)
5758
* @since 1.3
5859
*/
5960
public class CanWriteFileFilter extends AbstractFileFilter implements Serializable {

0 commit comments

Comments
 (0)