本文介绍了如何使用纯Java API查找针对类别值归档的工作项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用以下代码,发现已针对类别对象归档,但无法找到该值.请帮忙.
I am using below code and found filed against category object but there I am not able to find the value. Please help.
IProjectAreaHandle projectAreaHandle = workItem.getProjectArea();
IAttribute someAttribute = workItemClient.findAttribute(projectAreaHandle, IWorkItem.CATEGORY_PROPERTY,
monitor);
IAttributeHandle iAttributeHandle = (IAttributeHandle) someAttribute;
IAttribute iAttribute = (IAttribute) repo
.itemManager().fetchCompleteItem(
iAttributeHandle, IItemManager.DEFAULT ,monitor);
Object value = workItem.getValue(iAttribute);
推荐答案
下面的代码将有助于找出针对属性值的文件:
Below code will help to find out the filed against attribute value :
ICategoryHandle iCategoryHandle = workItem.getCategory();
ICategory iCategory1 = (ICategory) repo
.itemManager().fetchCompleteItem(
iCategoryHandle, IItemManager.DEFAULT ,monitor);
return iCategory1.getName();
这篇关于如何使用纯Java API查找针对类别值归档的工作项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!