Skip to content

Commit f49469c

Browse files
author
Stephen Colebourne
committed
Add since tags
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@140622 13f79535-47bb-0310-9956-ffa450edef68
1 parent b2de2a9 commit f49469c

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

src/java/org/apache/commons/io/WildcardUtils.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
/**
2121
* An implementation of Wildcard logic, as seen on command lines
2222
* on UNIX and DOS.
23+
*
24+
* @author Henri Yandell
25+
* @version $Revision: 1.2 $ $Date: 2004/10/25 23:28:30 $
26+
* @since Commons IO 1.1
2327
*/
2428
public class WildcardUtils {
2529

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* <code>false</code>.
3030
*
3131
* @since Commons IO 1.0
32-
* @version $Revision: 1.10 $ $Date: 2004/10/25 22:53:26 $
32+
* @version $Revision: 1.11 $ $Date: 2004/10/25 23:28:29 $
3333
*
3434
* @author Steven Caswell
3535
*/
@@ -42,6 +42,7 @@ public class AndFileFilter
4242

4343
/**
4444
* Constructs a new instance of <code>AndFileFilter</code>.
45+
* @since Commons IO 1.1
4546
*/
4647
public AndFileFilter() {
4748
this.fileFilters = new ArrayList();
@@ -50,6 +51,7 @@ public AndFileFilter() {
5051
/**
5152
* Constructs a new instance of <code>AndFileFilter</code>
5253
* with the specified list of filters.
54+
* @since Commons IO 1.1
5355
*/
5456
public AndFileFilter(final List fileFilters) {
5557
this.fileFilters = new ArrayList(fileFilters);

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
/**
2121
* Defines operations for conditional file filters.
2222
*
23-
* @since Commons IO 1.0
24-
* @version $Revision: 1.2 $ $Date: 2004/10/25 22:53:26 $
23+
* @since Commons IO 1.1
24+
* @version $Revision: 1.3 $ $Date: 2004/10/25 23:28:29 $
2525
*
2626
* @author Steven Caswell
2727
*/
@@ -32,13 +32,15 @@ public interface ConditionalFileFilter {
3232
* the list.
3333
*
3434
* @param ioFileFilter the filter to be added
35+
* @since Commons IO 1.1
3536
*/
3637
public void addFileFilter(IOFileFilter ioFileFilter);
3738

3839
/**
3940
* Returns this conditional file filter's list of file filters.
4041
*
4142
* @return the file filter list
43+
* @since Commons IO 1.1
4244
*/
4345
public List getFileFilters();
4446

@@ -48,6 +50,7 @@ public interface ConditionalFileFilter {
4850
* @param ioFileFilter filter to be removed
4951
* @return <code>true</code> if the filter was found in the list,
5052
* <code>false</code> otherwise
53+
* @since Commons IO 1.1
5154
*/
5255
public boolean removeFileFilter(IOFileFilter ioFileFilter);
5356

@@ -56,6 +59,7 @@ public interface ConditionalFileFilter {
5659
* file filters on this filter.
5760
*
5861
* @param fileFilters the list of filters
62+
* @since Commons IO 1.1
5963
*/
6064
public void setFileFilters(List fileFilters);
6165

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* <code>true</code>.
3030
*
3131
* @since Commons IO 1.0
32-
* @version $Revision: 1.10 $ $Date: 2004/10/25 22:53:26 $
32+
* @version $Revision: 1.11 $ $Date: 2004/10/25 23:28:30 $
3333
*
3434
* @author Steven Caswell
3535
*/
@@ -42,6 +42,7 @@ public class OrFileFilter
4242

4343
/**
4444
* Constructs a new instance of <code>OrFileFilter</code>.
45+
* @since Commons IO 1.1
4546
*/
4647
public OrFileFilter() {
4748
this.fileFilters = new ArrayList();
@@ -52,6 +53,7 @@ public OrFileFilter() {
5253
* with the specified filters.
5354
*
5455
* @param fileFileter the file filters for this filter
56+
* @since Commons IO 1.1
5557
*/
5658
public OrFileFilter(final List fileFilters) {
5759
this.fileFilters = new ArrayList(fileFilters);

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
* </pre>
2323
*
2424
* @author Jason Anderson
25+
* @version $Revision: 1.4 $ $Date: 2004/10/25 23:28:29 $
26+
* @since Commons IO 1.1
2527
*/
2628
public class WildcardFilter extends AbstractFileFilter {
2729

0 commit comments

Comments
 (0)