donaldp 02/01/27 01:37:06
Added: proposal/myrmidon/src/java/org/apache/myrmidon/framework
FileSet.java
Log:
Add a basic class for fileset
Revision Changes Path
1.1
jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/framework/FileSet.java
Index: FileSet.java
===================================================================
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.myrmidon.framework;
import java.io.File;
/**
* A FileSet represents a set of files selected by patterns with a
* specified root.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @version $Revision: 1.1 $ $Date: 2002/01/27 09:37:06 $
*/
public class FileSet
extends AbstractFileSet
{
private File m_dir;
/**
* Specify the base directory at which the file set is rooted.
*/
public final void setDir( File dir )
{
m_dir = dir;
}
public final File getDir()
{
return m_dir;
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>