You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2004/10/26 01:28:30 UTC

cvs commit: jakarta-commons/io/src/java/org/apache/commons/io WildcardUtils.java

scolebourne    2004/10/25 16:28:30

  Modified:    io/src/java/org/apache/commons/io/filefilter
                        ConditionalFileFilter.java WildcardFilter.java
                        AndFileFilter.java OrFileFilter.java
               io/src/java/org/apache/commons/io WildcardUtils.java
  Log:
  Add since tags
  
  Revision  Changes    Path
  1.3       +6 -2      jakarta-commons/io/src/java/org/apache/commons/io/filefilter/ConditionalFileFilter.java
  
  Index: ConditionalFileFilter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/ConditionalFileFilter.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ConditionalFileFilter.java	25 Oct 2004 22:53:26 -0000	1.2
  +++ ConditionalFileFilter.java	25 Oct 2004 23:28:29 -0000	1.3
  @@ -20,7 +20,7 @@
   /**
    * Defines operations for conditional file filters.
    *
  - * @since Commons IO 1.0
  + * @since Commons IO 1.1
    * @version $Revision$ $Date$
    *
    * @author Steven Caswell
  @@ -32,6 +32,7 @@
        * the list.
        *
        * @param ioFileFilter the filter to be added
  +     * @since Commons IO 1.1
        */
       public void addFileFilter(IOFileFilter ioFileFilter);
   
  @@ -39,6 +40,7 @@
        * Returns this conditional file filter's list of file filters.
        *
        * @return the file filter list
  +     * @since Commons IO 1.1
        */
       public List getFileFilters();
   
  @@ -48,6 +50,7 @@
        * @param ioFileFilter filter to be removed
        * @return <code>true</code> if the filter was found in the list,
        * <code>false</code> otherwise
  +     * @since Commons IO 1.1
        */
       public boolean removeFileFilter(IOFileFilter ioFileFilter);
   
  @@ -56,6 +59,7 @@
        * file filters on this filter.
        *
        * @param fileFilters the list of filters
  +     * @since Commons IO 1.1
        */
       public void setFileFilters(List fileFilters);
   
  
  
  
  1.4       +2 -0      jakarta-commons/io/src/java/org/apache/commons/io/filefilter/WildcardFilter.java
  
  Index: WildcardFilter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/WildcardFilter.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- WildcardFilter.java	25 Oct 2004 22:55:28 -0000	1.3
  +++ WildcardFilter.java	25 Oct 2004 23:28:29 -0000	1.4
  @@ -22,6 +22,8 @@
    * </pre>
    *
    * @author Jason Anderson
  + * @version $Revision$ $Date$
  + * @since Commons IO 1.1
    */
   public class WildcardFilter extends AbstractFileFilter {
   
  
  
  
  1.11      +3 -1      jakarta-commons/io/src/java/org/apache/commons/io/filefilter/AndFileFilter.java
  
  Index: AndFileFilter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/AndFileFilter.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- AndFileFilter.java	25 Oct 2004 22:53:26 -0000	1.10
  +++ AndFileFilter.java	25 Oct 2004 23:28:29 -0000	1.11
  @@ -42,6 +42,7 @@
   
       /**
        * Constructs a new instance of <code>AndFileFilter</code>.
  +     * @since Commons IO 1.1
        */
       public AndFileFilter() {
           this.fileFilters = new ArrayList();
  @@ -50,6 +51,7 @@
       /**
        * Constructs a new instance of <code>AndFileFilter</code>
        * with the specified list of filters.
  +     * @since Commons IO 1.1
        */
       public AndFileFilter(final List fileFilters) {
           this.fileFilters = new ArrayList(fileFilters);
  
  
  
  1.11      +3 -1      jakarta-commons/io/src/java/org/apache/commons/io/filefilter/OrFileFilter.java
  
  Index: OrFileFilter.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/filefilter/OrFileFilter.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- OrFileFilter.java	25 Oct 2004 22:53:26 -0000	1.10
  +++ OrFileFilter.java	25 Oct 2004 23:28:30 -0000	1.11
  @@ -42,6 +42,7 @@
   
       /**
        * Constructs a new instance of <code>OrFileFilter</code>.
  +     * @since Commons IO 1.1
        */
       public OrFileFilter() {
           this.fileFilters = new ArrayList();
  @@ -52,6 +53,7 @@
        * with the specified filters.
        *
        * @param fileFileter the file filters for this filter
  +     * @since Commons IO 1.1
        */
       public OrFileFilter(final List fileFilters) {
           this.fileFilters = new ArrayList(fileFilters);
  
  
  
  1.2       +4 -0      jakarta-commons/io/src/java/org/apache/commons/io/WildcardUtils.java
  
  Index: WildcardUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/io/src/java/org/apache/commons/io/WildcardUtils.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- WildcardUtils.java	25 Oct 2004 22:55:28 -0000	1.1
  +++ WildcardUtils.java	25 Oct 2004 23:28:30 -0000	1.2
  @@ -20,6 +20,10 @@
   /**
    * An implementation of Wildcard logic, as seen on command lines 
    * on UNIX and DOS.
  + * 
  + * @author Henri Yandell
  + * @version $Revision$ $Date$
  + * @since Commons IO 1.1
    */
   public class WildcardUtils {
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org