|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ProjectDescriptor
A ProjectDescriptor
declares the configuration required to create and evaluate a Project
.
A ProjectDescriptor
is created when you add a project to the build from the settings script, using Settings.include(String[])
or Settings.includeFlat(String[])
. You can access the descriptors using one of
the lookup methods on the Settings
object.
Method Summary | |
---|---|
java.io.File |
getBuildFile()
Returns the build file for this project. |
java.lang.String |
getBuildFileName()
Returns the name of the build file for this project. |
java.util.Set<ProjectDescriptor> |
getChildren()
Returns the children of this project, if any. |
java.lang.String |
getName()
Returns the name of this project. |
ProjectDescriptor |
getParent()
Returns the parent of this project, if any. |
java.lang.String |
getPath()
Returns the path of this project. |
java.io.File |
getProjectDir()
Returns the project directory of this project. |
void |
setBuildFileName(java.lang.String name)
Sets the name of the build file. |
void |
setName(java.lang.String name)
Sets the name of this project. |
void |
setProjectDir(java.io.File dir)
Sets the project directory of this project. |
Method Detail |
---|
java.lang.String getName()
void setName(java.lang.String name)
name
- The new name for the project. Should not be nulljava.io.File getProjectDir()
void setProjectDir(java.io.File dir)
dir
- The new project directory. Should not be null.java.lang.String getBuildFileName()
void setBuildFileName(java.lang.String name)
name
- The build file name. Should not be null.java.io.File getBuildFile()
ProjectDescriptor getParent()
java.util.Set<ProjectDescriptor> getChildren()
java.lang.String getPath()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |