donaldp 02/02/17 02:00:00
Modified: proposal/myrmidon/src/java/org/apache/myrmidon/framework
AbstractMatchingTask.java
Log:
Add accessor for underlying fileset object
Revision Changes Path
1.3 +9 -1
jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/framework/AbstractMatchingTask.java
Index: AbstractMatchingTask.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/framework/AbstractMatchingTask.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- AbstractMatchingTask.java 14 Feb 2002 10:42:13 -0000 1.2
+++ AbstractMatchingTask.java 17 Feb 2002 10:00:00 -0000 1.3
@@ -15,12 +15,20 @@
* should fullfill similar requirements.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.2 $ $Date: 2002/02/14 10:42:13 $
+ * @version $Revision: 1.3 $ $Date: 2002/02/17 10:00:00 $
*/
public abstract class AbstractMatchingTask
extends AbstractTask
{
private FileSet m_fileset = new FileSet();
+
+ /**
+ * Retrieve fileset for Matching task.
+ */
+ protected FileSet getFileSet()
+ {
+ return m_fileset;
+ }
/**
* The attribute that contains a list of itesm to be included.
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>