use of org.jbpm.process.core.context.swimlane.Swimlane in project jbpm by kiegroup.
the class RuleFlowProcessFactory method swimlane.
public RuleFlowProcessFactory swimlane(String name) {
Swimlane swimlane = new Swimlane();
swimlane.setName(name);
getRuleFlowProcess().getSwimlaneContext().addSwimlane(swimlane);
return this;
}
Aggregations