Summary: updated {FileSet,PatternSet}.set{Include,Excludes}() API docs to say 
that they append to the list of 'cludes, rather than set it.

----- stephan
Generic Unix Computer Guy
[EMAIL PROTECTED] - http://www.einsurance.de
Office: +49 (89) �552 92 862 Handy: �+49 (179) 211 97 67
"...control is a degree of inhibition, and a system which is perfectly
inhibited is completely frozen." -- Alan W. Watts
Index: src/main/org/apache/tools/ant/types/PatternSet.java
===================================================================
RCS file: /home/cvspublic/jakarta-ant/src/main/org/apache/tools/ant/types/PatternSet.java,v
retrieving revision 1.19
diff -u -r1.19 PatternSet.java
--- src/main/org/apache/tools/ant/types/PatternSet.java	26 Jan 2002 20:16:22 -0000	1.19
+++ src/main/org/apache/tools/ant/types/PatternSet.java	26 Mar 2002 20:49:01 -0000
@@ -205,8 +205,8 @@
     }
 
     /**
-     * Sets the set of include patterns. Patterns may be separated by a comma
-     * or a space.
+     * Appends <code>includes</code> to the current list of include patterns. 
+     * Patterns may be separated by a comma or a space.
      *
      * @param includes the string containing the include patterns
      */
@@ -223,8 +223,8 @@
     }
 
     /**
-     * Sets the set of exclude patterns. Patterns may be separated by a comma
-     * or a space.
+     * Appends <code>excludes</code> to the current list of exclude patterns. 
+     * Patterns may be separated by a comma or a space.
      *
      * @param excludes the string containing the exclude patterns
      */
Index: src/main/org/apache/tools/ant/types/FileSet.java
===================================================================
RCS file: /home/cvspublic/jakarta-ant/src/main/org/apache/tools/ant/types/FileSet.java,v
retrieving revision 1.22
diff -u -r1.22 FileSet.java
--- src/main/org/apache/tools/ant/types/FileSet.java	26 Jan 2002 20:16:22 -0000	1.22
+++ src/main/org/apache/tools/ant/types/FileSet.java	26 Mar 2002 20:49:01 -0000
@@ -180,8 +180,8 @@
     }
     
     /**
-     * Sets the set of include patterns. Patterns may be separated by a comma
-     * or a space.
+     * Appends <code>includes</code> to the current list of include patterns. 
+     * Patterns may be separated by a comma or a space.
      *
      * @param includes the string containing the include patterns
      */
@@ -194,8 +194,8 @@
     }
 
     /**
-     * Sets the set of exclude patterns. Patterns may be separated by a comma
-     * or a space.
+     * Appends <code>excludes</code> to the current list of exclude patterns. 
+     * Patterns may be separated by a comma or a space.
      *
      * @param excludes the string containing the exclude patterns
      */
--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to