/owl-s/src/org/mindswap/owls/grounding/ |
H A D | MessageMap.java | 36 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 D | InputBindingImpl.java | 20 public void setParameter(Parameter param) {
argument 21 if( param == null )
24 if( param instanceof Input )
25 setProperty(OWLS.Process.toParam, param);
|
H A D | OutputBindingImpl.java | 18 * @param resource
24 public void setParameter(Parameter param) {
argument 25 if(param instanceof Output)
26 setProperty(OWLS.Process.toParam, param);
|
H A D | BindingListImpl.java | 37 public Binding getBindingFor(Parameter param) {
argument 41 if( binding.getParameter().equals( param ) )
|
/owl-s/src/org/mindswap/owls/process/ |
H A D | Binding.java | 13 public void setParameter(Parameter param);
argument
|
H A D | BindingList.java | 14 public Binding getBindingFor(Parameter param);
argument
|
H A D | Produce.java | 20 public void addBinding(Output output, Perform perform, Parameter param);
argument
|
H A D | ValueOf.java | 16 public void setParameter(Parameter param);
argument
|
H A D | Result.java | 26 public void addBinding(Output output, Perform perform, Parameter param);
argument
|
H A D | Perform.java | 26 public void addBinding(Input input, Perform perform, Parameter param);
argument
|
/owl-s/src/org/mindswap/utils/ |
H A D | XSLTEngine.java | 67 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 D | AtomicGroundingImpl.java | 54 Parameter param = map.getOWLSParameter();
55 if(param instanceof Input)
57 else if(param instanceof Output)
|
H A D | UPnPMessageMapImpl.java | 61 public void setOWLSParameter(Parameter param) {
argument 62 setProperty(OWLS.Grounding.owlsParameter, param);
|
H A D | WSDLMessageMapImpl.java | 60 public void setOWLSParameter(Parameter param) {
argument 61 setProperty(OWLS.Grounding.owlsParameter, param);
|
H A D | JavaAtomicGroundingImpl.java | 54 * @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 D | WSDLAtomicGroundingImpl.java | 156 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 D | UPnPAtomicGroundingImpl.java | 144 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 D | WSDLOperation.java | 113 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 D | ThreadedProcessExecutionListener.java | 44 * @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 D | ServiceParameterExample.java | 71 ServiceParameter param = (ServiceParameter) i.next();
73 System.out.println(" Name : " + trimString( param.getName() ));
74 System.out.println(" Value : " + param.getParameter());
|
H A D | OWLSExtensions.java | 67 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 D | ValueOfImpl.java | 52 public void setParameter(Parameter param) {
argument 53 setProperty(OWLS.Process.theVar, param);
|
H A D | ProcessImpl.java | 146 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 D | ResultImpl.java | 57 public void addBinding(Output output, Perform perform, Parameter param) {
argument 60 valueOf.setParameter(param);
|
/owl-s/src/impl/owls/process/constructs/ |
H A D | ProduceImpl.java | 57 public void addBinding(Output output, Perform perform, Parameter param) {
argument 60 valueOf.setParameter(param);
|