Interface InternalOperationDescriptor
-
- All Superinterfaces:
InternalProtocolInterface
- All Known Subinterfaces:
InternalJvmTestDescriptor,InternalProjectConfigurationDescriptor,InternalTaskDescriptor,InternalTaskWithExtraInfoDescriptor,InternalTestDescriptor,InternalTestOutputDescriptor,InternalTransformDescriptor,InternalWorkItemDescriptor
public interface InternalOperationDescriptor extends InternalProtocolInterface
DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.- Since:
- 2.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDisplayName()Returns a human consumable display name for the operation.java.lang.ObjectgetId()Returns an id that uniquely identifies the operation.java.lang.StringgetName()Returns the name of the operation, relative to its parent.java.lang.ObjectgetParentId()Returns the id of the parent of the operation, if any.
-
-
-
Method Detail
-
getId
java.lang.Object getId()
Returns an id that uniquely identifies the operation.
-
getName
java.lang.String getName()
Returns the name of the operation, relative to its parent. This name should generally uniquely identify to a human each child operation of a given operation.
-
getDisplayName
java.lang.String getDisplayName()
Returns a human consumable display name for the operation. This display name should generally provide enough context to uniquely identify the operation to a human.- Returns:
- The display name of the operation
-
getParentId
java.lang.Object getParentId()
Returns the id of the parent of the operation, if any.- Returns:
- The id of the parent of the operation, can be null
-
-