Author: jeremias
Date: Fri Jun 24 06:05:35 2005
New Revision: 201613
URL: http://svn.apache.org/viewcvs?rev=201613&view=rev
Log:
Javadoc fixes only.
Modified:
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/AndFileFilter.java
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/OrFileFilter.java
Modified:
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/AndFileFilter.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/AndFileFilter.java?rev=201613&r1=201612&r2=201613&view=diff
==============================================================================
---
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/AndFileFilter.java
(original)
+++
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/AndFileFilter.java
Fri Jun 24 06:05:35 2005
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2004 The Apache Software Foundation.
+ * Copyright 2002-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@
import java.util.List;
/**
- * A [EMAIL PROTECTED] FileFilter} providing conditional AND logic across a
list of
+ * A [EMAIL PROTECTED] java.io.FileFilter} providing conditional AND logic
across a list of
* file filters. This filter returns <code>true</code> if all filters in the
* list return <code>true</code>. Otherwise, it returns <code>false</code>.
* Checking of the file filter list stops when the first filter returns
@@ -51,6 +51,7 @@
/**
* Constructs a new instance of <code>AndFileFilter</code>
* with the specified list of filters.
+ * @param fileFilters a List of IOFileFilter instances
* @since Commons IO 1.1
*/
public AndFileFilter(final List fileFilters) {
@@ -74,21 +75,21 @@
}
/**
- * @{inheritDoc}
+ * [EMAIL PROTECTED]
*/
public void addFileFilter(final IOFileFilter ioFileFilter) {
this.fileFilters.add(ioFileFilter);
}
/**
- * @{inheritDoc}
+ * [EMAIL PROTECTED]
*/
public List getFileFilters() {
return Collections.unmodifiableList(this.fileFilters);
}
/**
- * @{inheritDoc}
+ * [EMAIL PROTECTED]
*/
public boolean removeFileFilter(final IOFileFilter ioFileFilter) {
return this.fileFilters.remove(ioFileFilter);
@@ -102,7 +103,7 @@
}
/**
- * @{inheritDoc}
+ * [EMAIL PROTECTED]
*/
public boolean accept(final File file) {
if (this.fileFilters.size() == 0) {
@@ -118,7 +119,7 @@
}
/**
- * @{inheritDoc}
+ * [EMAIL PROTECTED]
*/
public boolean accept(final File file, final String name) {
if (this.fileFilters.size() == 0) {
Modified:
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/OrFileFilter.java
URL:
http://svn.apache.org/viewcvs/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/OrFileFilter.java?rev=201613&r1=201612&r2=201613&view=diff
==============================================================================
---
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/OrFileFilter.java
(original)
+++
jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/filefilter/OrFileFilter.java
Fri Jun 24 06:05:35 2005
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2004 The Apache Software Foundation.
+ * Copyright 2002-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@
import java.util.List;
/**
- * A [EMAIL PROTECTED] FileFilter} providing conditional OR logic across a
list of
+ * A [EMAIL PROTECTED] java.io.FileFilter} providing conditional OR logic
across a list of
* file filters. This filter returns <code>true</code> if any filters in the
* list return <code>true</code>. Otherwise, it returns <code>false</code>.
* Checking of the file filter list stops when the first filter returns
@@ -52,7 +52,7 @@
* Constructs a new instance of <code>OrFileFilter</code>
* with the specified filters.
*
- * @param fileFileter the file filters for this filter
+ * @param fileFilters the file filters for this filter
* @since Commons IO 1.1
*/
public OrFileFilter(final List fileFilters) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]