Skip to content

Commit 30bf8b4

Browse files
author
Stephen Colebourne
committed
Javadoc
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@418642 13f79535-47bb-0310-9956-ffa450edef68
1 parent eff3910 commit 30bf8b4

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/java/org/apache/commons/io/filefilter/WildcardFileFilter.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* </pre>
3030
*
3131
* @author Jason Anderson
32-
* @version $Revision: 155419 $ $Date$
32+
* @version $Revision: 155419 $ $Date: 2006-06-26 00:19:58 +0100 (Mon, 26 Jun 2006) $
3333
* @since Commons IO 1.3
3434
*/
3535
public class WildcardFileFilter extends AbstractFileFilter {
@@ -66,6 +66,9 @@ public WildcardFileFilter(String wildcard, IOCase caseSensitivity) {
6666

6767
/**
6868
* Construct a new case-sensitive wildcard filter for an array of wildcards.
69+
* <p>
70+
* The array is not cloned, so could be changed after constructing the
71+
* instance. This would be inadvisable however.
6972
*
7073
* @param wildcards the array of wildcards to match
7174
* @throws IllegalArgumentException if the pattern array is null
@@ -76,6 +79,9 @@ public WildcardFileFilter(String[] wildcards) {
7679

7780
/**
7881
* Construct a new wildcard filter for an array of wildcards specifying case-sensitivity.
82+
* <p>
83+
* The array is not cloned, so could be changed after constructing the
84+
* instance. This would be inadvisable however.
7985
*
8086
* @param wildcards the array of wildcards to match, not null
8187
* @param caseSensitivity how to handle case sensitivity, null means case-sensitive

0 commit comments

Comments
 (0)