|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | 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[])#include(String[]) or Settings#includeFlat(String[])#includeFlat(String[]). You can access the descriptors using one of the lookup methods on the Settings object.
Method Summary | |
---|---|
File
|
getBuildFile()
Returns the build file for this project. |
String
|
getBuildFileName()
Returns the name of the build file for this project. |
Set
|
getChildren()
Returns the children of this project, if any. |
String
|
getName()
Returns the name of this project. |
ProjectDescriptor
|
getParent()
Returns the parent of this project, if any. |
String
|
getPath()
Returns the path of this project. |
File
|
getProjectDir()
Returns the project directory of this project. |
void
|
setBuildFileName(String name)
Sets the name of the build file. |
void
|
setName(String name)
Sets the name of this project. |
void
|
setProjectDir(File dir)
Sets the project directory of this project. |
Method Detail |
---|
public File getBuildFile()
public String getBuildFileName()
public Set getChildren()
public String getName()
public ProjectDescriptor getParent()
public String getPath()
public File getProjectDir()
public void setBuildFileName(String name)
name
- The build file name. Should not be null.
public void setName(String name)
name
- The new name for the project. Should not be null
public void setProjectDir(File dir)
dir
- The new project directory. Should not be null.
Gradle API 1.12