/owl-s/src/org/mindswap/owls/process/execution/ |
H A D | ProcessMonitor.java | 32 * modify the contents of the inputs. setMonitorFilter function can be used to
37 * @param inputs
39 public void executionStarted(Process process, ValueMap inputs);
argument 48 * @param inputs
51 public void executionFinished(Process process, ValueMap inputs, ValueMap outputs);
argument 56 * additional inputs. There is no such support at the moment. The execution engine
|
H A D | SimpleThreadedMonitor.java | 24 public void executionFinished(Process process, ValueMap inputs, ValueMap outputs) {
argument 25 super.executionFinished(process, inputs, outputs);
29 public void executionStarted(Process process, ValueMap inputs) {
argument 30 super.executionStarted(process, inputs);
|
H A D | SimpleProcessMonitor.java | 28 public void executionStarted(Process process, ValueMap inputs) {
argument 33 public void executionFinished(Process process, ValueMap inputs, ValueMap outputs) {
argument
|
H A D | AbstractMonitor.java | 34 public void executionFinished(Process process, ValueMap inputs, ValueMap outputs) {
argument 43 public void executionStarted(Process process, ValueMap inputs) {
argument
|
H A D | DefaultProcessMonitor.java | 34 public void executionStarted(Process process, ValueMap inputs) {
argument 40 OWLValue value = inputs.getValue( input );
59 public void executionFinished(Process process, ValueMap inputs, ValueMap outputs) {
argument
|
/owl-s/src/impl/owls/process/ |
H A D | ProcessImpl.java | 104 public void addInputs(InputList inputs) {
argument 105 for (int i = 0; i < inputs.size(); i++)
106 addInput(inputs.inputAt(i));
197 InputList inputs = getInputs();
198 return inputs.isEmpty() ? null : inputs.inputAt(0);
202 InputList inputs = getInputs();
203 return inputs.inputAt(i);
207 InputList inputs = getInputs();
208 return (Input) inputs [all...] |
/owl-s/src/org/mindswap/shop/ |
H A D | SHOPTranslator.java | 87 InputList inputs = process.getInputs();
88 for(int i = 0; i < inputs.size(); i++) {
89 Parameter p = inputs.parameterAt(i);
109 InputList inputs = process.getInputs();
110 for(int i = 0; i < inputs.size(); i++) {
111 Parameter p = inputs.parameterAt(i);
|
/owl-s/src/org/mindswap/wsdl/ |
H A D | WSDLOperation.java | 47 private Vector inputs = new Vector();
field in class:WSDLOperation 63 for(int i = 0; i < inputs.size(); i++) {
64 WSDLParameter in = (WSDLParameter) inputs.get(i);
85 public Vector getInputs() { return inputs; }
87 void addInput(String name, QName type) { inputs.add(new WSDLParameter(name, type)); }
112 for(Iterator i = inputs./*values().*/iterator(); i.hasNext(); ) {
212 for(Iterator i = inputs.iterator(); i.hasNext(); ) {
|
/owl-s/src/impl/owls/ |
H A D | OWLSListFactoryImpl.java | 99 InputList inputs = new InputListImpl(list);
100 Collections.sort( inputs, comprator );
101 return inputs;
|
/owl-s/src/org/mindswap/utils/ |
H A D | ProcessUtils.java | 36 * Returns a map from inputs to a set of values which
48 * Given a partial input binding, returns a map from inputs to a set of values which
51 * There is no entry in the map for the inputs
63 * Given a partial input binding, returns a map from inputs to a set of values which
65 * allowed values that are not in the KB). There is no entry in the map for the inputs
96 InputList inputs = process.getInputs();
97 for(int i = 0; i < inputs.size(); i++) {
98 Input input = inputs.inputAt( i );
|
/owl-s/src/org/mindswap/owls/process/ |
H A D | Process.java | 87 public void addInputs(InputList inputs);
argument 93 public void addOutputs(OutputList inputs);
argument 112 * Get the inputs of this process. An empty list is returned if there are no inputs.
156 * Get all the parameters of this process. This list includes inputs, outputs and local parameters.
224 * Removes all inputs from the process by breaking the property <code>process:hasInput</code>
225 * The inputs themselves are not touched at all.
265 * Deletes all inputs of this process from the ontology
|
/owl-s/src/impl/owls/profile/ |
H A D | ProfileImpl.java | 110 public void addInputs(InputList inputs) {
argument 111 for (int i = 0; i < inputs.size(); i++)
112 addInput(inputs.inputAt(i));
406 InputList inputs = getInputs();
407 for (int index = 0; index < inputs.size(); index++)
408 inputs.individualAt(index).delete();
|
/owl-s/src/org/mindswap/owls/profile/ |
H A D | Profile.java | 153 public void addInputs(InputList inputs);
argument 155 public void addOutputs(OutputList inputs);
argument 162 * Get the inputs for this profile.
290 * Removes all inputs from the process by breaking the property <code>process:hasInput</code>
291 * The inputs themselves are not touched at all.
331 * Deletes all inputs of this process from the ontology
|
/owl-s/src/examples/ |
H A D | ExecutionMonitor.java | 116 public void executionStarted(Process process, ValueMap inputs) {
argument 122 OWLValue value = inputs.getValue( input );
149 public void executionFinished(Process process, ValueMap inputs, ValueMap outputs) {
argument
|
H A D | WSDL2OWLS.java | 620 TableModel inputs = inputTable.getModel();
621 for(int i = 0; i < inputs.getRowCount(); i++) {
623 String paramName = (String) inputs.getValueAt(i, 2);
624 String paramType = (String) inputs.getValueAt(i, 3);
625 String xsltTransformation = (String) inputs.getValueAt(i, 4);
|
/owl-s/src/impl/owls/process/execution/ |
H A D | ProcessExecutionEngineImpl.java | 216 protected void executionStarted(Process process, ValueMap inputs) {
argument 221 monitor.executionStarted(process, inputs);
225 protected void executionFinished(Process process, ValueMap inputs, ValueMap outputs) {
argument 229 monitor.executionFinished(process, inputs, outputs);
303 protected ValueMap executeProcess(Process process, ValueMap inputs) {
argument 306 executionStarted( process, inputs );
311 checkPreconditions( process, inputs );
315 result = executeAtomicProcess((AtomicProcess) process, inputs);
318 result = executeCompositeProcess((CompositeProcess) process, inputs);
332 executionFinished( process, inputs, resul [all...] |
/owl-s/src/org/mindswap/owls/io/ |
H A D | PresentationSyntaxWriter.java | 282 InputList inputs = process.getInputs();
283 if (inputs.size()>0)
285 printIndented("inputs: (" );
286 for(int i = 0; i < inputs.size(); i++) {
287 Input input = (Input)inputs.get(i);
291 if (i<inputs.size()-1)
|
/owl-s/lib/axis/ |
H A D | axis.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/axis/ org/apache/axis/attachments/ ... |