本文整理汇总了Java中org.kuali.rice.kew.engine.node.NodeGraphContext.getResultNodeInstance方法的典型用法代码示例。如果您正苦于以下问题:Java NodeGraphContext.getResultNodeInstance方法的具体用法?Java NodeGraphContext.getResultNodeInstance怎么用?Java NodeGraphContext.getResultNodeInstance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.kuali.rice.kew.engine.node.NodeGraphContext
的用法示例。
在下文中一共展示了NodeGraphContext.getResultNodeInstance方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: searchNodeGraphBackward
import org.kuali.rice.kew.engine.node.NodeGraphContext; //导入方法依赖的package包/类
private void searchNodeGraphBackward(NodeGraphContext context, NodeMatcher matcher, RouteNodeInstance previousNodeInstance, Collection nodeInstances) {
if (nodeInstances == null) {
return;
}
for (Iterator iterator = nodeInstances.iterator(); iterator.hasNext();) {
RouteNodeInstance nodeInstance = (RouteNodeInstance) iterator.next();
context.setPreviousNodeInstance(previousNodeInstance);
context.setCurrentNodeInstance(nodeInstance);
searchNodeGraphBackward(context, matcher);
if (context.getResultNodeInstance() != null) {
// we've located the node instance we're searching for, we're done
break;
}
}
}
示例2: determineExactPath
import org.kuali.rice.kew.engine.node.NodeGraphContext; //导入方法依赖的package包/类
private List determineExactPath(NodeGraphContext context, int searchDirection, Collection<RouteNodeInstance> startingNodeInstances) {
List<RouteNodeInstance> exactPath = new ArrayList<RouteNodeInstance>();
if (context.getResultNodeInstance() == null) {
exactPath.addAll(context.getVisited().values());
} else {
determineExactPath(exactPath, new HashMap<String, RouteNodeInstance>(), startingNodeInstances, context.getResultNodeInstance());
}
if (NodeGraphSearchCriteria.SEARCH_DIRECTION_FORWARD == searchDirection) {
Collections.sort(exactPath, NODE_INSTANCE_BACKWARD_SORT);
} else {
Collections.sort(exactPath, NODE_INSTANCE_FORWARD_SORT);
}
return exactPath;
}