writing to string attribute of a work item
One answer
Hi,
I want to write an information (system date) in a custom attribute of a work item. Can you provide a java API example for this?
The attribute I will use is string attribute.
Thank you,
The general pattern for setting attributes is:
workItem.setValue(IAttribute attribute, Object value)
where the attribute is retrieved using
IAttribute attribute= workItemClient.findAttribute(workItem.getProjectArea(), "your attribute id", monitor);