org.gradle.tooling.model
Interface Task

All Known Subinterfaces:
EclipseTask

public interface Task

Represents a task which is executable by Gradle.


Method Summary
 String getDescription()
          Returns the description of this task.
 String getName()
          Returns the name of this task.
 String getPath()
          Returns the path of this task.
 Project getProject()
          Returns the project which this task belongs to.
 

Method Detail

getPath

String getPath()
Returns the path of this task. This is a fully qualified unique name for this task.


getName

String getName()
Returns the name of this task. Note that the name is not necessarily a unique identifier for the task.

Returns:
The name.

getDescription

String getDescription()
Returns the description of this task.

Returns:
The description. May be null.

getProject

Project getProject()
Returns the project which this task belongs to.

Returns:
The project.