use of org.kie.dmn.core.ast.DecisionNodeImpl in project drools-wb by kiegroup.
the class AbstractDMNTest method getDecisionNode.
protected DecisionNode getDecisionNode(DMNType dmnType, String name) {
TDecision decision = new TDecision();
decision.setName(name);
DecisionNode toReturn = new DecisionNodeImpl(decision, dmnType);
return toReturn;
}
Aggregations