Interface TransformOperationDescriptor
- All Superinterfaces:
OperationDescriptor
Describes a transform operation for which an event has occurred.
- Since:
- 5.1
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Describes the subject (artifact or file) of a transform operation.static interface
Describes the transformer of a transform operation. -
Method Summary
Modifier and TypeMethodDescriptionSet<? extends OperationDescriptor>
Returns the dependencies (other transforms and tasks) of this transform operation.Returns the subject of this transform operation.Returns the display name of this transform operation.Methods inherited from interface org.gradle.tooling.events.OperationDescriptor
getDisplayName, getName, getParent
-
Method Details
-
getTransformer
TransformOperationDescriptor.TransformerDescriptor getTransformer()Returns the display name of this transform operation. -
getSubject
TransformOperationDescriptor.SubjectDescriptor getSubject()Returns the subject of this transform operation. -
getDependencies
Set<? extends OperationDescriptor> getDependencies()Returns the dependencies (other transforms and tasks) of this transform operation.
-