Skip to content

Commit 53371a2

Browse files
committed
Javadoc
1 parent c8e7252 commit 53371a2

17 files changed

+40
-40
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public AgeFileFilter(final long cutoffMillis, final boolean acceptOlder) {
173173
}
174174

175175
/**
176-
* Checks to see if the last modification of the file matches cutoff favorably.
176+
* Tests to see if the last modification of the file matches cutoff favorably.
177177
* <p>
178178
* If last modification time equals cutoff and newer files are required, file <strong>IS NOT</strong> selected. If last
179179
* modification time equals cutoff and older files are required, file <strong>IS</strong> selected.
@@ -188,7 +188,7 @@ public boolean accept(final File file) {
188188
}
189189

190190
/**
191-
* Checks to see if the last modification of the file matches cutoff favorably.
191+
* Tests to see if the last modification of the file matches cutoff favorably.
192192
* <p>
193193
* If last modification time equals cutoff and newer files are required, file <strong>IS NOT</strong> selected. If last
194194
* modification time equals cutoff and older files are required, file <strong>IS</strong> selected.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected CanExecuteFileFilter() {
7575
}
7676

7777
/**
78-
* Checks to see if the file can be executed.
78+
* Tests to see if the file can be executed.
7979
*
8080
* @param file the File to check.
8181
* @return {@code true} if the file can be executed, otherwise {@code false}.
@@ -86,7 +86,7 @@ public boolean accept(final File file) {
8686
}
8787

8888
/**
89-
* Checks to see if the file can be executed.
89+
* Tests to see if the file can be executed.
9090
*
9191
* @param file the File to check.
9292
* @param attributes the path's basic attributes (may be null).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected CanReadFileFilter() {
8585
}
8686

8787
/**
88-
* Checks to see if the file can be read.
88+
* Tests to see if the file can be read.
8989
*
9090
* @param file the File to check.
9191
* @return {@code true} if the file can be read, otherwise {@code false}.
@@ -96,7 +96,7 @@ public boolean accept(final File file) {
9696
}
9797

9898
/**
99-
* Checks to see if the file can be read.
99+
* Tests to see if the file can be read.
100100
*
101101
* @param file the File to check.
102102
* @param attributes the path's basic attributes (may be null).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected CanWriteFileFilter() {
7373
}
7474

7575
/**
76-
* Checks to see if the file can be written to.
76+
* Tests to see if the file can be written to.
7777
*
7878
* @param file the File to check
7979
* @return {@code true} if the file can be written to, otherwise {@code false}.
@@ -84,7 +84,7 @@ public boolean accept(final File file) {
8484
}
8585

8686
/**
87-
* Checks to see if the file can be written to.
87+
* Tests to see if the file can be written to.
8888
*
8989
* @param file the File to check
9090
* @param attributes the path's basic attributes (may be null).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public DelegateFileFilter(final FilenameFilter fileNameFilter) {
6565
}
6666

6767
/**
68-
* Checks the filter.
68+
* Tests the filter.
6969
*
7070
* @param file the file to check
7171
* @return true if the filter matches
@@ -79,7 +79,7 @@ public boolean accept(final File file) {
7979
}
8080

8181
/**
82-
* Checks the filter.
82+
* Tests the filter.
8383
*
8484
* @param dir the directory
8585
* @param name the file name in the directory

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected DirectoryFileFilter() {
9090
}
9191

9292
/**
93-
* Checks to see if the file is a directory.
93+
* Tests to see if the file is a directory.
9494
*
9595
* @param file the File to check
9696
* @return true if the file is a directory
@@ -101,7 +101,7 @@ public boolean accept(final File file) {
101101
}
102102

103103
/**
104-
* Checks to see if the file is a directory.
104+
* Tests to see if the file is a directory.
105105
*
106106
* @param file the File to check
107107
* @param attributes the path's basic attributes (may be null).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected EmptyFileFilter() {
9797
}
9898

9999
/**
100-
* Checks to see if the file is empty.
100+
* Tests to see if the file is empty.
101101
*
102102
* @param file the file or directory to check
103103
* @return {@code true} if the file or directory is <em>empty</em>, otherwise {@code false}.
@@ -115,7 +115,7 @@ public boolean accept(final File file) {
115115
}
116116

117117
/**
118-
* Checks to see if the file is empty.
118+
* Tests to see if the file is empty.
119119
*
120120
* @param file the file or directory to check
121121
* @param attributes the path's basic attributes (may be null).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected FileFileFilter() {
9090
}
9191

9292
/**
93-
* Checks to see if the file is a file.
93+
* Tests to see if the file is a file.
9494
*
9595
* @param file the File to check
9696
* @return true if the file is a file
@@ -101,7 +101,7 @@ public boolean accept(final File file) {
101101
}
102102

103103
/**
104-
* Checks to see if the file is a file.
104+
* Tests to see if the file is a file.
105105
*
106106
* @param file the File to check
107107
* @param attributes the path's basic attributes (may be null).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ protected HiddenFileFilter() {
9393
}
9494

9595
/**
96-
* Checks to see if the file is hidden.
96+
* Tests to see if the file is hidden.
9797
*
9898
* @param file the File to check
9999
* @return {@code true} if the file is
@@ -105,7 +105,7 @@ public boolean accept(final File file) {
105105
}
106106

107107
/**
108-
* Checks to see if the file is hidden.
108+
* Tests to see if the file is hidden.
109109
*
110110
* @param file the File to check
111111
* @param attributes the path's basic attributes (may be null).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public NameFileFilter(final String[] names, final IOCase ioCase) {
156156
}
157157

158158
/**
159-
* Checks to see if the file name matches.
159+
* Tests to see if the file name matches.
160160
*
161161
* @param file the File to check
162162
* @return true if the file name matches
@@ -167,7 +167,7 @@ public boolean accept(final File file) {
167167
}
168168

169169
/**
170-
* Checks to see if the file name matches.
170+
* Tests to see if the file name matches.
171171
*
172172
* @param dir the File directory (ignored)
173173
* @param name the file name

0 commit comments

Comments
 (0)