Searched refs:param (Results 1 - 25 of 38) sorted by relevance

12

/owl-s/src/org/mindswap/owls/grounding/
H A DMessageMap.java36 public void setOWLSParameter(Parameter param); argument
37 public void setGroundingParameter(String param); argument
38 public void setTransformation(String param); argument
/owl-s/src/impl/owls/process/binding/
H A DInputBindingImpl.java20 public void setParameter(Parameter param) { argument
21 if( param == null )
24 if( param instanceof Input )
25 setProperty(OWLS.Process.toParam, param);
H A DOutputBindingImpl.java18 * @param resource
24 public void setParameter(Parameter param) { argument
25 if(param instanceof Output)
26 setProperty(OWLS.Process.toParam, param);
H A DBindingListImpl.java37 public Binding getBindingFor(Parameter param) { argument
41 if( binding.getParameter().equals( param ) )
/owl-s/src/org/mindswap/owls/process/
H A DBinding.java13 public void setParameter(Parameter param); argument
H A DBindingList.java14 public Binding getBindingFor(Parameter param); argument
H A DProduce.java20 public void addBinding(Output output, Perform perform, Parameter param); argument
H A DValueOf.java16 public void setParameter(Parameter param); 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
/owl-s/src/org/mindswap/utils/
H A DXSLTEngine.java67 Parameter param = (Parameter) i.next();
68 String value = parameters.getStringValue( param );
69 transformer.setParameter( param.getLocalName(), value );
70 transformer.setParameter( param.getURI().toString(), value );
/owl-s/src/impl/owls/grounding/
H A DAtomicGroundingImpl.java54 Parameter param = map.getOWLSParameter();
55 if(param instanceof Input)
57 else if(param instanceof Output)
H A DUPnPMessageMapImpl.java61 public void setOWLSParameter(Parameter param) { argument
62 setProperty(OWLS.Grounding.owlsParameter, param);
H A DWSDLMessageMapImpl.java60 public void setOWLSParameter(Parameter param) { argument
61 setProperty(OWLS.Grounding.owlsParameter, param);
H A DJavaAtomicGroundingImpl.java54 * @param ind
189 Parameter param = getOWLSOutput();
190 if (param == null)
192 if(param.getParamType().isDataType())
193 results.setValue(param, EntityFactory.createDataValue(result));
195 results.setValue(param, transformResult(result));
242 JavaParameter param = getInputParamter(index);
243 if (param == null)
246 return param.getOWLSParameter();
251 JavaParameter param
[all...]
H A DWSDLAtomicGroundingImpl.java156 Parameter param = mp.getOWLSParameter();
158 OWLValue value = values.getValue(param);
160 value = param.getConstantValue();
163 throw new ExecutionException("Value of input parameter '" + param + "' is not set!");
176 throw new ExecutionException("Cannot apply XSLT transformation to data value '" + value + "' for input parameter '" + param + "'");
195 Parameter param = outputs.outputAt(i);
196 MessageMap mp = outputMapList.getMessageMap(param);
221 "'" + param + "'");
224 if(param.getParamType().isDataType())
225 results.setValue(param, EntityFactor
[all...]
H A DUPnPAtomicGroundingImpl.java144 Parameter param = mp.getOWLSParameter();
146 Object value = values.getValue(param);
174 Parameter param = mp.getOWLSParameter();
184 if(param.getParamType().isDataType())
185 results.setValue(param, EntityFactory.createDataValue( outputValue ) );
187 results.setValue(param, kb.parseLiteral( outputValue.toString() ));
/owl-s/src/org/mindswap/wsdl/
H A DWSDLOperation.java113 WSDLParameter param = (WSDLParameter) i.next();
114 s += param.getName() + ":" + param.getType().getLocalPart();
120 WSDLParameter param = (WSDLParameter) i.next();
121 s += param.getName() + ":" + param.getType().getLocalPart();
213 WSDLParameter param = (WSDLParameter) i.next();
214 Object paramValue = param.getValue();
218 SOAPElement soapElement = soapBody.addChildElement(URIUtils.getLocalName(param.getName()), "");
228 "u:" + param
[all...]
/owl-s/src/org/mindswap/owls/process/execution/
H A DThreadedProcessExecutionListener.java44 * @param processName a string indicating the name of the executed process
50 * @param processName a string indicating the name of the executed process
56 * @param processName a string indicating the name of the executed process
62 * @param processName a string indicating the name of the executed process
68 * @param the AtomicProcess whose execution started
74 * @param the AtomicProcess whose execution ended
80 * @param process an instance of process indicating the executed process
81 * @param param the parameter which was set during the execution
82 * @param valu
84 parameterValueSet(Process process, Parameter param, String value) argument
[all...]
/owl-s/src/examples/
H A DServiceParameterExample.java71 ServiceParameter param = (ServiceParameter) i.next();
73 System.out.println(" Name : " + trimString( param.getName() ));
74 System.out.println(" Value : " + param.getParameter());
H A DOWLSExtensions.java67 ServiceParameter param = (ServiceParameter) i.next();
69 System.out.println(" Name : " + param.getName());
70 System.out.println(" Value : " + param.getParameter());
89 * @param ind
114 * @param ind
/owl-s/src/impl/owls/process/
H A DValueOfImpl.java52 public void setParameter(Parameter param) { argument
53 setProperty(OWLS.Process.theVar, param);
H A DProcessImpl.java146 public void addParameter(Parameter param) { argument
147 if(param instanceof Input)
148 addInput((Input) param);
149 else if(param instanceof Output)
150 addOutput((Output) param);
151 else if(param instanceof Local)
152 addLocal((Local) param);
154 addProperty(OWLS.Process.hasParameter, param);
H A DResultImpl.java57 public void addBinding(Output output, Perform perform, Parameter param) { argument
60 valueOf.setParameter(param);
/owl-s/src/impl/owls/process/constructs/
H A DProduceImpl.java57 public void addBinding(Output output, Perform perform, Parameter param) { argument
60 valueOf.setParameter(param);

Completed in 131 milliseconds

12