Lines Matching defs:cc
272 ControlConstruct cc = process.getComposedOf();
273 if( cc != null )
274 writeConstruct( cc, true );
409 // private void writeConstruct(ControlConstruct cc) {
410 // writeConstruct(cc, false);
413 private void writeConstruct(ControlConstruct cc, boolean block) {
414 if(cc instanceof Perform)
417 writePerform((Perform) cc);
423 else if(cc instanceof Sequence)
425 writeComponents( ((Sequence) cc).getComponents(), ";" );
427 else if(cc instanceof AnyOrder)
429 writeComponents( ((AnyOrder) cc).getComponents(), "||;" );
431 else if(cc instanceof Choice)
433 writeComponents( ((Choice) cc).getComponents(), ";?" );
435 else if(cc instanceof Split)
437 writeComponents( ((Split) cc).getComponents(), "||<" );
439 else if(cc instanceof SplitJoin)
441 writeComponents( ((SplitJoin) cc).getComponents(), "||>" );
443 else if(cc instanceof IfThenElse)
446 writeIfThenElse((IfThenElse) cc);
452 else if(cc instanceof Produce)
455 writeProduce((Produce) cc);
462 out.println( "<< Unknown Control Construct " + cc.getConstructName() + " >>" );
468 ControlConstruct cc = (ControlConstruct) i.next();
469 writeConstruct( cc, false );