Package org.gradle.tooling.model
Interface HasGradleProject
- All Superinterfaces:
ProjectModel
- All Known Subinterfaces:
EclipseProject
,HierarchicalEclipseProject
,IdeaModule
An element that is associated with a Gradle project. Via the Gradle project you can access (list, run, etc.) Gradle tasks.
-
Method Summary
Modifier and TypeMethodDescriptionThe associated Gradle project.Returns the identifier for the project that this model is associated with.
-
Method Details
-
getProjectIdentifier
ProjectIdentifier getProjectIdentifier()Returns the identifier for the project that this model is associated with.- Specified by:
getProjectIdentifier
in interfaceProjectModel
- Since:
- 3.3
-
getGradleProject
GradleProject getGradleProject()The associated Gradle project. Via the gradle project you can access (list, run, etc.) Gradle tasks.
-