tbennett 2004/04/17 12:02:05
Modified: merlin/composition/api/src/java/org/apache/avalon/composition/model
FilesetModel.java
Log:
modifed the return type of the getIncludes method from File[] to ArrayList
Revision Changes Path
1.2 +6 -4
avalon/merlin/composition/api/src/java/org/apache/avalon/composition/model/FilesetModel.java
Index: FilesetModel.java
===================================================================
RCS file:
/home/cvs/avalon/merlin/composition/api/src/java/org/apache/avalon/composition/model/FilesetModel.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- FilesetModel.java 17 Apr 2004 17:37:28 -0000 1.1
+++ FilesetModel.java 17 Apr 2004 19:02:05 -0000 1.2
@@ -18,6 +18,7 @@
package org.apache.avalon.composition.model;
import java.io.File;
+import java.util.ArrayList;
import org.apache.avalon.composition.data.ExcludeDirective;
import org.apache.avalon.composition.data.IncludeDirective;
@@ -76,13 +77,14 @@
* results of the fileset resolution. This array will contain
* fully qualified filenames based on the base directory anchor.
*
- * @return an array of files to include in the classpath
+ * @return an array list of <code>File</code> objects
+ * to include in the classpath
*/
- File[] getIncludes();
+ ArrayList getIncludes();
/**
* Resolves the specified include and exclude directives from
* the base directory anchor and produces an array of files
* to include in the classpath.
*/
- void resolveFileset();
+ void resolveFileset() throws IllegalStateException;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]