I want to set acceptance criteria for a Story in RTC through Java API. I do not see any options on work item to set it. Let me know what is the best way to set the value.
acceptance criteria is a field..
you need to get the attribute handle for the Acceptance Criteria field
IAttribute ata = workItemCommon.findAttribute(projectArea,
"com.ibm.team.apt.attribute.acceptance", monitor);
workItem.setValue(ata, value)
( working copy of course)
Comments
acceptance criteria is a field..
you need to get the attribute handle for the Acceptance Criteria field
IAttribute ata = workItemCommon.findAttribute(projectArea,
"com.ibm.team.apt.attribute.acceptance", monitor);
workItem.setValue(ata, value)
( working copy of course)