API JAVA : Find the type of workitem childs
Hello,
i try to get the type of the workitems child from a Parent.
i can find the references with this code :
IWorkItemReferences references =
wiServer.resolveWorkItemReferences(currentWorkItem, null);
List<IReference> listChilds = references.getReferences(WorkItemEndPoints.CHILD_WORK_ITEMS);
But i don't know how catch the type of this workitems child from the reference list.
Thanks for your help..
antoine
|
One answer
Hello,
Maybe something like this : for(IReference ref : listChilds) { if(ref.isItemReference()) { Regards, Sylvain |
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.