Package org.gradle.tooling.events.task
Interface TaskOperationDescriptor
- All Superinterfaces:
- OperationDescriptor
Describes a task operation for which an event has occurred.
- Since:
- 2.5
- 
Method SummaryModifier and TypeMethodDescriptionSet<? extends OperationDescriptor> Returns the dependencies of the task (other tasks and transforms), if available.Returns the identifier of the plugin that registered this task, if available.Returns the path of the task.Methods inherited from interface org.gradle.tooling.events.OperationDescriptorgetDisplayName, getName, getParent
- 
Method Details- 
getTaskPathString getTaskPath()Returns the path of the task.
- 
getDependenciesReturns the dependencies of the task (other tasks and transforms), if available.- Throws:
- UnsupportedMethodException- For Gradle versions older than 5.1, where this method is not supported.
- Since:
- 5.1
 
- 
getOriginPluginReturns the identifier of the plugin that registered this task, if available.- Returns:
- the origin plugin; nullif unknown
- Throws:
- UnsupportedMethodException- For Gradle versions older than 5.1, where this method is not supported.
- Since:
- 5.1
 
 
-