Package org.eclipse.tycho
Class BuildOutputDirectory
- java.lang.Object
-
- org.eclipse.tycho.BuildOutputDirectory
-
public class BuildOutputDirectory extends java.lang.Object
Represents the build output directory of a Maven project (aka "target folder").
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.File
location
-
Constructor Summary
Constructors Constructor Description BuildOutputDirectory(java.io.File location)
BuildOutputDirectory(java.lang.String directory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.File
getChild(java.lang.String path)
Convenience method for obtaining an file/folder in the build output directory.java.io.File
getLocation()
Returns the location of the build output directory.
-
-
-
Method Detail
-
getLocation
public java.io.File getLocation()
Returns the location of the build output directory.- Returns:
- never
null
-
getChild
public java.io.File getChild(java.lang.String path)
Convenience method for obtaining an file/folder in the build output directory.- Returns:
- The file or folder at the given
path
relative to the build output directory.
-
-