Searched refs:perform (Results 1 - 19 of 19) sorted by relevance

/owl-s/src/org/mindswap/owls/process/
H A DForEach.java18 public void setListValue(Perform perform, Parameter parameter); argument
H A DProduce.java20 public void addBinding(Output output, Perform perform, Parameter param); argument
H A DValueOf.java13 public void setPerform(Perform perform); argument
H A DResult.java26 public void addBinding(Output output, Perform perform, Parameter param); argument
H A DPerform.java26 public void addBinding(Input input, Perform perform, Parameter param); argument
H A DProcess.java202 * Returns the perform to which this process is possibly bound. Attention: This is only a in-memory
204 * @return the perform to which this process is bound. null, if the process is not bound to any perform
209 * Sets the perform to which this process is bound. Attention: This is only a in-memory
211 * @param perform the perform to which this process is bound
213 public void setPerform(Perform perform); argument
/owl-s/src/impl/owls/process/constructs/
H A DControlConstructImpl.java76 Perform perform = (Perform) cc;
78 // get bindings for flows to this perform
79 bindings.addBindingWithoutDuplicate((BindingList)perform.getBindings());
81 // get bindings for flows going out of this perform
82 OWLIndividualList list = perform.getIncomingProperties(OWLS.Process.fromProcess);
H A DForEachImpl.java48 public void setListValue(Perform perform, Parameter parameter) { argument
50 valueOf.setPerform(perform);
H A DProduceImpl.java57 public void addBinding(Output output, Perform perform, Parameter param) { argument
59 valueOf.setPerform(perform);
H A DPerformImpl.java43 public void addBinding(Input input, Perform perform, Parameter param) { argument
45 valueOf.setPerform(perform);
/owl-s/src/examples/
H A DForEachExample.java85 // perform the process by passing the loop variable
86 Perform perform = ont.createPerform();
87 perform.setProcess(process);
88 perform.addBinding(process.getInput(), Perform.TheParentPerform, loopVar);
90 forEach.setComponent(perform);
/owl-s/src/org/mindswap/owls/process/execution/
H A DProcessExecutionEngine.java112 * Execute the given perform construct. Perform shoud contain all the necessary input
115 * @param perform
119 public ValueMap execute(Perform perform) throws Exception; argument
/owl-s/src/impl/owls/process/
H A DValueOfImpl.java38 public void setPerform(Perform perform) { argument
39 setProperty(OWLS.Process.fromProcess, perform);
H A DResultImpl.java57 public void addBinding(Output output, Perform perform, Parameter param) { argument
59 valueOf.setPerform(perform);
H A DProcessImpl.java305 public void setPerform(Perform perform) { argument
306 if(hasProperty(OWLS_Extensions.Process.hasPerform, perform))
309 setProperty(OWLS_Extensions.Process.hasPerform, perform);
310 if (perform != null)
311 perform.setProcess(this);
/owl-s/src/org/mindswap/owls/io/
H A DPresentationSyntaxWriter.java344 private void writePerform(Perform perform){ argument
345 Process process = perform.getProcess();
346 String str = qname(perform) + " :: perform " + qname(process) + "(";
349 BindingList bindings = perform.getBindings();
/owl-s/src/impl/owls/
H A DOWLSTranslator_1_0.java393 Perform perform = outputOnt.createPerform();
396 perform.setProcess(process);
398 return perform;
601 Perform perform = getCachedPerform(process, process2);
603 // add binding to the perform
604 perform.addBinding((Input) param1, Perform.TheParentPerform, (Input) param2);
614 result.addBinding((Output) param1, perform, (Output) param2);
618 Perform perform = getCachedPerform(process, process1);
620 // add binding to the perform
621 perform
[all...]
/owl-s/src/impl/owls/process/execution/
H A DProcessExecutionEngineImpl.java393 Perform perform = valueOf.getPerform();
395 ValueMap performResult = (ValueMap) performResults.get(perform);
397 executionFailed( "Perform " + perform + " cannot be found!" );
/owl-s/lib/jena/
H A Dantlr-2.7.5.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement.java package antlr ...

Completed in 28 milliseconds