Package org.eclipse.tycho
Interface BuildDirectory
-
- All Known Implementing Classes:
BuildOutputDirectory
public interface BuildDirectory
-
-
Method Summary
All Methods Instance Methods Abstract 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.java.io.File
getOutputDirectory()
java.io.File
getP2AgentDirectory()
java.io.File
getTestOutputDirectory()
-
-
-
Method Detail
-
getLocation
java.io.File getLocation()
Returns the location of the build output directory.- Returns:
- never
null
-
getChild
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.
-
getOutputDirectory
java.io.File getOutputDirectory()
- Returns:
- the directory where compiled application classes are placed.
-
getTestOutputDirectory
java.io.File getTestOutputDirectory()
- Returns:
- the directory where compiled test classes are placed.
-
getP2AgentDirectory
java.io.File getP2AgentDirectory()
- Returns:
- the directory used for the P2 agent
-
-