return new OFlow(_context.getOProcess(),_context.getCurrent());
}
private void compileLinkDecls(OFlow oflow, FlowActivity flowAct) {
for (Link link : flowAct.getLinks()) {
OLink olink = new OLink(_context.getOProcess());
olink.name = link.getLinkName();
declareLink(oflow, olink);
}
}