/*
* Project: AMODA - Abstract Modeled Application
* Class: de.gulden.framework.amoda.environment.ant.Src
* Version: snapshot-beautyj-1.1
*
* Date: 2004-09-29
*
* This is a snapshot version of the AMODA 0.2 development branch,
* it is not released as a seperate version.
* For AMODA, see http://amoda.berlios.de/.
*
* This is licensed under the GNU Lesser General Public License (LGPL)
* and comes with NO WARRANTY.
*
* Author: Jens Gulden
* Email: amoda@jensgulden.de
*/
package de.gulden.framework.amoda.environment.ant;
import de.gulden.framework.amoda.environment.commandline.*;
import java.io.*;
import java.util.*;
/**
* Class Src.
*
* @author Jens Gulden
* @version snapshot-beautyj-1.1
*/
public class Src {
// ------------------------------------------------------------------------
// --- field ---
// ------------------------------------------------------------------------
protected File path;
// ------------------------------------------------------------------------
// --- methods ---
// ------------------------------------------------------------------------
public File getPath() {
return path;
}
public void setPath(File _path) {
path = _path;
}
} // end Src
|