org.gradle.tooling.model
Interface Task

All Known Subinterfaces:
EclipseTask, GradleTask

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.
 Element getProject()
          Returns the element 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

Element getProject()
Returns the element which this task belongs to.

Returns:
The element.