Searched defs:cc (Results 1 - 11 of 11) sorted by relevance

/owl-s/src/impl/owls/process/constructs/
H A DControlConstructImpl.java74 private BindingList getBindingsRecursively(ControlConstruct cc, BindingList bindings) { argument
75 if (cc instanceof Perform) {
76 Perform perform = (Perform) cc;
89 Iterator<ControlConstruct> ccs = cc.getConstructs().iterator();
H A DIfThenElseImpl.java42 public void setThen(ControlConstruct cc) { argument
43 setProperty(OWLS.Process.thenP, cc);
46 public void setElse(ControlConstruct cc) { argument
47 setProperty(OWLS.Process.elseP, cc);
/owl-s/src/org/mindswap/owls/process/
H A DCompositeProcess.java47 * @param cc the control construct this composite process is composed of
49 public void setComposedOf(ControlConstruct cc); argument
H A DIfThenElse.java47 * @param cc the control construct on which the if then part consists
49 public void setThen(ControlConstruct cc); argument
68 * @param cc the control construct on which the else part consists
70 public void setElse(ControlConstruct cc); argument
/owl-s/src/impl/owls/process/execution/
H A DThreadedProcessExecutionEngineImpl.java66 protected void executeConstruct(ControlConstruct cc) { argument
73 super.executeConstruct(cc);
H A DProcessExecutionEngineImpl.java504 protected void executeConstruct(ControlConstruct cc) { argument
505 if(cc instanceof Perform)
506 executePerform((Perform) cc);
507 else if(cc instanceof Sequence)
508 executeSequence((Sequence) cc);
509 else if(cc instanceof AnyOrder)
510 executeAnyOrder((AnyOrder) cc);
511 else if(cc instanceof Choice)
512 executeChoice((Choice) cc);
513 else if(cc instanceo
531 executeSequence(Sequence cc) argument
541 executeAnyOrder(AnyOrder cc) argument
579 executeRepeatWhile(RepeatWhile cc) argument
587 executeRepeatUntil(RepeatUntil cc) argument
597 executeForEach(ForEach cc) argument
676 ControlConstruct cc; field in class:ProcessExecutionEngineImpl.ProcessExecutionThread
678 ProcessExecutionThread(ControlConstruct cc) argument
[all...]
/owl-s/src/org/mindswap/owls/io/
H A DPresentationSyntaxWriter.java272 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) { argument
414 if(cc instanceof Perform)
417 writePerform((Perform) cc);
423 else if(cc instanceof Sequence)
425 writeComponents( ((Sequence) cc)
[all...]
/owl-s/src/impl/owls/
H A DOWLSTranslator_1_0.java212 ControlConstruct cc = (ControlConstruct) i.next();
213 if(cc instanceof Perform && ((Perform) cc).getProcess().equals(ind)) {
214 return (Perform) cc;
363 ControlConstruct cc = null;
365 cc = createPerform(ccInfo);
367 cc = createSequence(ccInfo);
369 cc = createSequence(ccInfo);
371 cc = createSplit(ccInfo);
373 cc
547 createComponents(ControlConstruct cc, OWLIndividual ccInfo) argument
[all...]
/owl-s/src/impl/jena/
H A DOWLModelImpl.java1609 public ControlConstructList createControlConstructList(ControlConstruct cc) { argument
1610 RDFList list = createList( OWLS.CCList, cc );
1614 public ControlConstructBag createControlConstructBag(ControlConstruct cc) { argument
1615 RDFList list = createList( OWLS.CCBag, cc );
/owl-s/lib/jena/
H A Dicu4j_3_4.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...
H A Djena.jarcom/ com/hp/ com/hp/hpl/ com/hp/hpl/jena/ com/hp/hpl/jena/datatypes/ com/hp/hpl/jena/ ...

Completed in 145 milliseconds