Searched refs:value (Results 1 - 25 of 74) sorted by relevance

123

/owl-s/src/impl/owl/
H A DWrappedIndividual.java69 public boolean hasProperty(OWLProperty prop, OWLValue value) { argument
70 return individual.hasProperty(prop, value);
86 OWLObject value = individual.getProperty(prop);
87 return (value == null) ? null : value.castTo(result);
91 OWLObject value = individual.getProperty(prop);
92 return (value == null) ? null : value.castTo(result);
96 OWLDataValue value = individual.getProperty(prop);
97 return (value
160 setProperty(OWLDataProperty prop, String value) argument
164 setProperty(OWLDataProperty prop, Object value) argument
168 setProperty(OWLDataProperty prop, OWLDataValue value) argument
172 addProperty(OWLDataProperty prop, OWLDataValue value) argument
176 addProperty(OWLDataProperty prop, Object value) argument
180 addProperty(OWLDataProperty prop, String value) argument
192 addProperty(OWLObjectProperty prop, OWLIndividual value) argument
196 setProperty(OWLObjectProperty prop, OWLIndividual value) argument
299 addAnnotation(URI prop, OWLDataValue value) argument
306 addAnnotation(URI prop, String value) argument
313 addAnnotation(URI prop, String value, String lang) argument
320 setAnnotation(URI prop, OWLDataValue value) argument
327 setAnnotation(URI prop, String value) argument
334 setAnnotation(URI prop, String value, String lang) argument
[all...]
/owl-s/src/org/mindswap/owl/
H A DEntityFactory.java49 public static OWLDataValue createDataValue(String value) { argument
50 return factory.createDataValue(value);
53 public static OWLDataValue createDataValue(String value, String language) { argument
54 return factory.createDataValue(value, language);
57 public static OWLDataValue createDataValue(Object value, URI datatypeURI) { argument
58 return factory.createDataValue(value, datatypeURI);
61 public static OWLDataValue createDataValue(Object value) { argument
62 return factory.createDataValue(value);
H A DOWLIndividual.java42 * Return true if a value for the given property exists.
50 * Return true if the given value for the property exists.
55 public boolean hasProperty(OWLProperty prop, OWLValue value); argument
58 * Get the value for the given object property. If the resource has more than one value for this property
76 * Get the value for the given datatype property. If the resource has more than one value for this property
77 * with different language identifiers than the returned value will be determined according to the
86 * Get the value for the given property URI with the specified language identifier. If the value
123 setProperty(OWLDataProperty prop, String value) argument
133 setProperty(OWLDataProperty prop, Object value) argument
142 setProperty(OWLDataProperty prop, OWLDataValue value) argument
144 addProperty(OWLDataProperty prop, OWLDataValue value) argument
146 addProperty(OWLDataProperty prop, String value) argument
148 addProperty(OWLDataProperty prop, Object value) argument
154 addProperty(OWLObjectProperty prop, OWLIndividual value) argument
156 setProperty(OWLObjectProperty prop, OWLIndividual value) argument
[all...]
H A DOWLEntity.java48 * Return the URI for this resource. If this resource is anonymous then null value will be returned
92 * Set the value of rdfs:label for this resource. Empty language identifier will be used.
106 public void addAnnotation(URI property, OWLDataValue value); argument
108 public void addAnnotation(URI property, String value); argument
110 public void addAnnotation(URI property, String value, String lang); argument
112 public void setAnnotation(URI property, OWLDataValue value); argument
114 public void setAnnotation(URI property, String value); argument
116 public void setAnnotation(URI property, String value, String lang); argument
/owl-s/src/org/mindswap/owls/process/execution/
H A DDefaultProcessMonitor.java40 OWLValue value = inputs.getValue( input );
41 if( value == null )
42 value = input.getConstantValue();
43 if( value == null )
45 else if( value.isDataValue() )
46 out.println( value );
48 OWLIndividual ind = (OWLIndividual) value;
52 out.println( value );
65 OWLValue value = outputs.getValue( output );
66 if( value
[all...]
/owl-s/src/impl/jena/
H A DOWLEntityImpl.java77 OWLDataValue value = getAnnotation(RDFS.label);
78 return (value == null) ? null : value.getLexicalValue();
85 OWLDataValue value = getAnnotation(RDFS.label, lang);
86 return (value == null) ? null : value.getLexicalValue();
140 public void addAnnotation(URI propURI, OWLDataValue value) { argument
143 resource.addProperty(prop, (Literal) value.getImplementation());
149 public void addAnnotation(URI propURI, String value) { argument
150 addAnnotation(propURI, value, "");
156 addAnnotation(URI propURI, String value, String lang) argument
163 setAnnotation(URI propURI, OWLDataValue value) argument
174 setAnnotation(URI propURI, String value) argument
181 setAnnotation(URI propURI, String value, String lang) argument
[all...]
H A DOWLIndividualImpl.java108 public void setProperty(OWLDataProperty prop, String value) { argument
109 ontology.setProperty(this, prop, value);
112 public void setProperty(OWLDataProperty prop, Object value) { argument
113 ontology.setProperty(this, prop, value);
116 public void setProperty(OWLDataProperty prop, OWLDataValue value) { argument
117 ontology.setProperty(this, prop, value);
120 public void addProperty(OWLDataProperty prop, OWLDataValue value) { argument
121 ontology.addProperty(this, prop, value);
125 public void addProperty(OWLDataProperty prop, String value) { argument
126 ontology.addProperty(this, prop, value);
129 addProperty(OWLDataProperty prop, Object value) argument
142 addProperty(OWLObjectProperty prop, OWLIndividual value) argument
146 setProperty(OWLObjectProperty prop, OWLIndividual value) argument
154 hasProperty(OWLProperty prop, OWLValue value) argument
[all...]
H A DOWLKnowledgeBaseImpl.java360 public OWLDataValue createDataValue(String value) { argument
361 return baseOntology.createDataValue(value);
364 public OWLDataValue createDataValue(String value, String language) { argument
365 return baseOntology.createDataValue(value, language);
368 public OWLDataValue createDataValue(Object value, URI datatypeURI) { argument
369 return baseOntology.createDataValue(value, datatypeURI);
372 public OWLDataValue createDataValue(Object value) { argument
373 return baseOntology.createDataValue(value);
385 public void setProperty(OWLIndividual ind, OWLDataProperty prop, String value) { argument
386 baseOntology.setProperty(ind, prop, value);
389 setProperty(OWLIndividual ind, OWLDataProperty prop, Object value) argument
393 setProperty(OWLIndividual ind, OWLDataProperty prop, OWLDataValue value) argument
398 addProperty(OWLIndividual ind, OWLProperty prop, OWLValue value) argument
402 addProperty(OWLIndividual ind, OWLDataProperty prop, OWLDataValue value) argument
406 addProperty(OWLIndividual ind, OWLDataProperty prop, String value) argument
410 addProperty(OWLIndividual ind, OWLDataProperty prop, Object value) argument
422 addProperty(OWLIndividual ind, OWLObjectProperty prop, OWLIndividual value) argument
426 setProperty(OWLIndividual ind, OWLObjectProperty prop, OWLIndividual value) argument
[all...]
H A DOWLOntologyImpl.java216 public OWLDataValue createDataValue(String value) { argument
217 return new OWLDataValueImpl(ontModel.createLiteral(value));
220 public OWLDataValue createDataValue(String value, String language) { argument
221 return new OWLDataValueImpl(ontModel.createLiteral(value, language));
224 public OWLDataValue createDataValue(Object value, URI datatypeURI) { argument
226 return new OWLDataValueImpl(ontModel.createLiteral(value.toString(), true));
228 return new OWLDataValueImpl(ontModel.createTypedLiteral(value, datatypeURI.toString()));
231 public OWLDataValue createDataValue(Object value) { argument
232 if(value instanceof OWLDataValue )
233 return (OWLDataValue) value;
331 setProperty(OWLIndividual ind, OWLDataProperty prop, String value) argument
335 setProperty(OWLIndividual ind, OWLDataProperty prop, Object value) argument
339 setProperty(OWLIndividual ind, OWLDataProperty prop, OWLDataValue value) argument
349 addProperty(OWLIndividual ind, OWLProperty prop, OWLValue value) argument
358 addProperty(OWLIndividual ind, OWLDataProperty prop, OWLDataValue value) argument
367 addProperty(OWLIndividual ind, OWLDataProperty prop, String value) argument
371 addProperty(OWLIndividual ind, OWLDataProperty prop, Object value) argument
383 removeProperty(OWLIndividual ind, OWLProperty prop, OWLValue value) argument
396 addProperty(OWLIndividual ind, OWLObjectProperty prop, OWLIndividual value) argument
404 setProperty(OWLIndividual ind, OWLObjectProperty prop, OWLIndividual value) argument
[all...]
/owl-s/src/org/mindswap/wsdl/
H A DWSDLParameter.java30 private Object value; field in class:WSDLParameter
38 public WSDLParameter (String name, QName type, Object value) argument
42 setValue(value);
53 public void setValue( Object value) { this.value = value; } argument
54 public Object getValue() { return value; }
/owl-s/src/org/mindswap/owls/process/
H A DValueRewriter.java46 public String rewrite(String value, URI sourceC, URI targetC); argument
H A DForEach.java16 public void setListValue(ValueOf value); argument
/owl-s/src/org/mindswap/owls/profile/
H A DServiceParameter.java38 public void setParameter(OWLIndividual value); argument
/owl-s/src/impl/swrl/
H A DSWRLDataValueImpl.java22 public SWRLDataValueImpl(OWLDataValue value) { argument
23 super((Literal) value.getImplementation());
/owl-s/src/impl/owls/process/binding/
H A DBindingImpl.java28 ParameterValue value =
31 if(value == null) {
57 // if(value == null)
58 // value = (ParameterValue) getProperty(OWLS.Process.valueForm);
60 // if(value == null)
61 // value = (ParameterValue) getPropertyAs(OWLS.Process.valueType, ParameterValue.class);
63 // if(value == null)
64 // value = (ParameterValue) getPropertyAs(OWLS.Process.valueSpecifier, ValueOf.class);
66 // if(value == null)
67 // value
[all...]
/owl-s/src/impl/owls/process/
H A DValueDataImpl.java22 private OWLValue value; field in class:ValueDataImpl
24 public ValueDataImpl( OWLValue value ) {
25 this.value = value;
29 return value;
/owl-s/src/impl/owl/list/
H A DRDFListImpl.java105 OWLValue value = getProperty( vocabulary.firstD() );
106 if( value == null )
107 value = getProperty( vocabulary.first() );
109 return value;
112 public void setFirst(OWLValue value) { argument
116 if (value == null)
118 else if (value instanceof OWLDataValue )
119 setProperty(vocabulary.firstD(), (OWLDataValue) value );
121 setProperty(vocabulary.first(), (OWLIndividual) value );
174 public RDFList insertAt(int index, OWLValue value) { argument
185 remove(OWLValue value) argument
244 set(int index, OWLValue value) argument
[all...]
/owl-s/src/impl/owls/grounding/
H A DJavaClassTransformator.java48 protected OWLIndividual getIndividual(OWLValue value) { argument
49 if (value.isDataValue())
52 return (OWLIndividual) value.castTo(OWLIndividual.class);
/owl-s/src/impl/owls/profile/
H A DServiceParameterImpl.java69 public void setParameter(OWLIndividual value) { argument
70 setProperty(OWLS.Profile.sParameter, value);
/owl-s/lib/axis/
H A Djaxrpc.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/xml/ javax/xml/messaging/ javax/xml/namespace/ javax/ ...
/owl-s/src/org/mindswap/query/
H A DValueMap.java60 * Set the value of the given variable to a plain string. This is equivalent to
62 * <code>setValue( var, EntityFactory.createDataValue( value ) )</code>.
65 * @param value
67 public void setDataValue(Variable var, String value) { argument
68 setValue( var, EntityFactory.createDataValue( value ) );
72 * Set the value of the given variable
75 * @param value
77 public void setValue(Variable var, OWLValue value) { argument
78 if(var == null) throw new NullPointerException("ValueMap cannot set a value for null variable");
79 if(value
[all...]
/owl-s/src/examples/
H A DExecutionMonitor.java122 OWLValue value = inputs.getValue( input );
123 if( value.isDataValue() )
124 println( value.toString() );
126 OWLIndividual ind = (OWLIndividual) value;
130 println( value.toString() );
157 OWLValue value = outputs.getValue( output );
158 if( value.isDataValue() )
159 println( value.toString() );
161 OWLIndividual ind = (OWLIndividual) value;
165 println( value
[all...]
/owl-s/lib/
H A Dupnp.jar ... userData public void setValue (java.lang.String) String value public void setValue (int) int value public java.lang
/owl-s/src/org/mindswap/utils/
H A DXSLTEngine.java68 String value = parameters.getStringValue( param );
69 transformer.setParameter( param.getLocalName(), value );
70 transformer.setParameter( param.getURI().toString(), value );
/owl-s/src/impl/owls/process/parameter/
H A DParameterImpl.java135 public void setConstantValue(OWLValue value) { argument
136 if( value.isDataValue() )
137 setProperty(OWLS.Process.valueData, (OWLDataValue) value);
139 setProperty(OWLS.Process.valueData, ((OWLIndividual) value).toRDF(false));

Completed in 124 milliseconds

123