gpt4 book ai didi

java - 如何使用链接源引用获取工作项 ID?

转载 作者:太空宇宙 更新时间:2023-11-04 10:36:48 28 4
gpt4 key购买 nike

我使用下面的代码来获取工作项的父项和子项,并且获得了链接引用,现在我想从对象中获取工作项 ID。请帮忙

IReference reference = linkManager.referenceFactory().createReferenceToItem(workItem 
.getItemHandle());
ILinkQueryPage page;
ILinkQueryPage page1;

page = linkManager.findLinksByTarget("com.ibm.team.workitem.linktype.parentworkitem", reference, monitor);

ILinkCollection linkCollection = page.getLinks();


Collection childWI = linkCollection.getLinksById("com.ibm.team.workitem.linktype.parentworkitem");

System.out.println(childWI);

最佳答案

ILinkCollection linkCollection = page.getLinks(); 
Collection childWI = linkCollection.getLinksById(...)

这意味着您拥有 ILink 集合。

seen here ,很容易解析到 WorkItem 的链接:

for (ILink l : links) {
IItemHandle linkHandle = (IItemHandle) l.getTargetRef().resolve();
if (linkHandle instanceof IWorkItemHandle) {
IWorkItem aWorkItem = (IWorkItem) teamRepository.itemManager().fetchCompleteItem(linkHandle, IItemManager.DEFAULT, monitor);
}
}

每个 WorkItem 都有一个 getId() 方法来访问其 ID。

关于java - 如何使用链接源引用获取工作项 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49377743/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com