operationData instanceof ???
I have developed a pre-condition plug-in and checked it when delivered. The following code snippet is used:
public void run(AdvisableOperation operation,
IProcessConfigurationElement advisorConfiguration,
IAdvisorInfoCollector collector, IProgressMonitor monitor)
throws TeamRepositoryException {
Object operationData = operation.getOperationData();
if (!(operationData instanceof DeliverOperationData))
{
return;
}
... ...
}
Now I want to develop a "plug-in to check when the change set is modified", but I don’t know what the question mark should be, thank you
if (!(operationData instanceof ???))
{
return;
}
Thank you.
|
One answer
David Lafreniere (4.8k●7)
| answered May 14 '21, 10:51 a.m.
FORUM MODERATOR / JAZZ DEVELOPER edited May 14 '21, 10:53 a.m. It depends on what you mean by 'change set is modified'.
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.