|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.tooling.model.BuildableElementorg.gradle.tooling.model.HierarchicalElement
org.gradle.plugins.ide.idea.model.Project
org.gradle.tooling.model.HasGradleProject
org.gradle.tooling.model.eclipse.EclipseProject
org.gradle.tooling.model.BuildableProject
org.gradle.tooling.model.Element
org.gradle.tooling.model.eclipse.HierarchicalEclipseProject
org.gradle.tooling.model.HierarchicalProject
public interface EclipseProject extends BuildableProject, HasGradleProject, HierarchicalEclipseProject
The complete model of an Eclipse project.
Note that the names of Eclipse projects are unique, and can be used as an identifier for the project.
Method Summary | |
---|---|
DomainObjectSet
|
getChildren()
{@inheritDoc} |
DomainObjectSet
|
getClasspath()
Returns the external dependencies which make up the classpath of this project. |
GradleProject
|
getGradleProject()
The gradle project that is associated with this project. |
EclipseProject
|
getParent()
{@inheritDoc} |
DomainObjectSet
|
getTasks()
Deprected because eclipse project does not have any tasks associated. |
Methods inherited from interface HasGradleProject | |
---|---|
getGradleProject |
Methods inherited from interface BuildableProject | |
---|---|
getTasks |
Methods inherited from interface HierarchicalEclipseProject | |
---|---|
getChildren, getLinkedResources, getParent, getProjectDependencies, getSourceDirectories |
Methods inherited from interface HierarchicalElement | |
---|---|
getChildren, getParent |
Methods inherited from interface HierarchicalProject | |
---|---|
getChildren, getParent |
Method Detail |
---|
public DomainObjectSet getChildren()
public DomainObjectSet getClasspath()
public GradleProject getGradleProject()
See HasGradleProject
public EclipseProject getParent()
@Deprecated public DomainObjectSet getTasks()
Please use getGradleProject().getTasks() instead.
Groovy Documentation