added getActualFile() to return a file reference

Former-commit-id: 0c04828262c08a962766240275afb340293bd0dd
This commit is contained in:
Jeremy Long
2014-01-28 05:24:54 -05:00
parent 7a64b84c5f
commit cb25fc03f9

View File

@@ -145,6 +145,15 @@ public class Dependency implements Comparable<Dependency> {
return this.actualFilePath;
}
/**
* Gets a reference to the File object.
*
* @return the File object.
*/
public File getActualFile() {
return new File(this.actualFilePath);
}
/**
* Sets the file path of the dependency.
*