|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.tooling.model.HasGradleProjectorg.gradle.plugins.ide.idea.model.Project
org.gradle.tooling.model.BuildableElement
org.gradle.tooling.model.eclipse.EclipseProject
org.gradle.tooling.model.eclipse.HierarchicalEclipseProject
org.gradle.tooling.model.HierarchicalElement
org.gradle.tooling.model.BuildableProject
org.gradle.tooling.model.HierarchicalProject
org.gradle.tooling.model.Element
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 HierarchicalEclipseProject | |
---|---|
getChildren, getLinkedResources, getParent, getProjectDependencies, getSourceDirectories |
Methods inherited from interface BuildableProject | |
---|---|
getTasks |
Methods inherited from class Project | |
---|---|
configure, equals, getDefaultResourceName, hashCode, load, store |
Methods inherited from interface BuildableElement | |
---|---|
getTasks |
Methods inherited from interface Element | |
---|---|
getDescription, getName |
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