本文整理了Java中org.embl.ebi.escience.scufl.Processor.getIterationStrategy()
方法的一些代码示例,展示了Processor.getIterationStrategy()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Processor.getIterationStrategy()
方法的具体详情如下:
包路径:org.embl.ebi.escience.scufl.Processor
类名称:Processor
方法名:getIterationStrategy
暂无
代码示例来源:origin: uk.org.mygrid.taverna.scufl.scufl-ui-components/iteration-strategy-editor
public void attachToModel(Processor p) {
setIterationStrategy(p.getIterationStrategy());
}
代码示例来源:origin: net.sf.taverna.t2/compatibility-impl
private void setIterationStrategy(
org.embl.ebi.escience.scufl.Processor t1Processor,
Processor t2Processor) {
IterationStrategyStackImpl iterationStrategyStack = (IterationStrategyStackImpl) t2Processor
.getIterationStrategy();
IterationStrategy t1IterationStrategy = t1Processor
.getIterationStrategy();
IterationStrategyImpl t2IterationStrategy = new IterationStrategyImpl();
if (t1IterationStrategy == null) {
t1IterationStrategy = new IterationStrategy(t1Processor) {
public void normalize() {}
};
}
addIterationNode((MutableTreeNode) t1IterationStrategy.getTreeModel()
.getRoot(), t2IterationStrategy, t2IterationStrategy
.getTerminalNode(), t2Processor);
iterationStrategyStack.clear();
iterationStrategyStack.addStrategy(t2IterationStrategy);
}
代码示例来源:origin: net.sf.taverna.t2/cyclone-impl
private void setIterationStrategy(
org.embl.ebi.escience.scufl.Processor t1Processor,
Processor t2Processor) {
IterationStrategyStackImpl iterationStrategyStack = (IterationStrategyStackImpl) t2Processor
.getIterationStrategy();
IterationStrategy t1IterationStrategy = t1Processor
.getIterationStrategy();
IterationStrategyImpl t2IterationStrategy = new IterationStrategyImpl();
if (t1IterationStrategy == null) {
t1IterationStrategy = new IterationStrategy(t1Processor);
}
addIterationNode((MutableTreeNode) t1IterationStrategy.getTreeModel()
.getRoot(), t2IterationStrategy, t2IterationStrategy
.getTerminal(), t2Processor);
iterationStrategyStack.clear();
iterationStrategyStack.addStrategy(t2IterationStrategy);
}
代码示例来源:origin: uk.org.mygrid.taverna/taverna-enactor
if (getProcessor().getIterationStrategy() == null) {
.getIterationStrategy()));
if (getProcessor().getIterationStrategy() == null) {
rootNode = getProcessor().getIterationStrategy().buildIterator(
iteratorNodeMap);
} catch (IntrospectionException ie) {
内容来源于网络,如有侵权,请联系作者删除!