Searched refs:getURI (Results 1 - 25 of 48) sorted by relevance

12

/owl-s/src/org/mindswap/owl/
H A DOWLType.java36 public URI getURI(); method in interface:OWLType
H A DOWLOntology.java16 public URI getURI(); method in interface:OWLOntology
H A DOWLEntity.java52 public URI getURI(); method in interface:OWLEntity
/owl-s/src/org/mindswap/owl/vocabulary/
H A DDRS.java14 public final static URI getURI() { return URI.create(ns); } method in class:DRS
H A DKIF.java14 public final static URI getURI() { return URI.create(ns); } method in class:KIF
H A DDC.java22 public final static URI getURI() { return URI.create(ns); } method in class:DC
H A DRDF.java41 public final static URI getURI() { return URI.create(ns); } method in class:RDF
H A DRDFS.java38 public final static URI getURI() { return URI.create(ns); } method in class:RDFS
H A DOWL.java42 public final static URI getURI() { return URI.create(ns); } method in class:OWL
/owl-s/src/org/mindswap/owls/process/
H A DPerform.java18 owls.createPerform(OWLS.Process.TheParentPerform.getURI());
20 owls.createPerform(OWLS.Process.ThisPerform.getURI());
/owl-s/src/impl/jena/
H A DOWLDataTypeImpl.java50 * @see org.mindswap.owl.OWLType#getURI()
52 public URI getURI() { method in class:OWLDataTypeImpl
85 URI uri = getURI();
H A DOWLWriterImpl.java94 aOntNode.addImport(model.getResource(aOnt.getURI().toString()));
150 if (theOntology.getURI() != null) {
155 else theModel.getOntology(theOntology.getURI().toString());
171 if (theOntology.getURI() == null)
173 else aOntNode = theModel.createOntology(theOntology.getURI().toString());
182 if (aOnt.getURI() != null)
183 aOntNode.addImport(theModel.getResource(aOnt.getURI().toString()));
H A DOWLConverters.java114 URI uri = entity.getURI();
133 URI uri = entity.getURI();
142 URI uri = entity.getURI();
161 URI uri = entity.getURI();
190 URI uri = entity.getURI();
209 URI uri = entity.getURI();
218 URI uri = entity.getURI();
227 URI uri = entity.getURI();
239 URI uri = entity.getURI();
H A DOWLEntityImpl.java54 public URI getURI() { method in class:OWLEntityImpl
57 return URI.create(resource.getURI());
63 return URIUtils.getLocalName(resource.getURI());
69 return kb.getQNames().shortForm( resource.getURI() );
250 URI uri = getURI();
259 URI uri = getURI();
H A DRDQLParser.java83 URI pred = new URI( t.getPredicate().getURI() );
84 if( pred.toString().equals( RDF.type.getURI() ) ) {
88 OWLClass c = ont.createClass( new URI( t.getObject().getURI() ) );
101 OWLDataProperty dp = ont.createDataProperty( p.getURI() ) ;
111 OWLObjectProperty op = ont.createObjectProperty( p.getURI() ) ;
189 value = ont.createDataValue( URI.create( lit.getURI() ) );
222 node.getURI() ) );
H A DOWLReaderImpl.java97 addIgnoredOntology(URI.create(OWL.getURI()));
98 addIgnoredOntology(URI.create(RDF.getURI()));
99 addIgnoredOntology(URI.create(RDFS.getURI()));
/owl-s/src/impl/owl/
H A DOWLIndividualListImpl.java53 if(r.getURI().equals(uri))
/owl-s/src/org/mindswap/owls/io/
H A DBaseExpressionWriter.java139 print( ind.getURI() );
153 print( cls.getURI() );
157 print( prop.getURI() );
H A DPresentationSyntaxWriter.java112 return qnames.shortForm( entity.getURI() );
217 String defaultNS = qnames.getURI( "" );
225 String uri = qnames.getURI( prefix );
290 out.print(" - " + qname(type.getURI()));
310 out.print(" - " + qname(type.getURI()));
330 out.print(" - " + qname(type.getURI()));
559 out.print(" - " + qname(type.getURI()));
/owl-s/src/impl/owls/process/parameter/
H A DParameterImpl.java71 setProperty(OWLS.Process.parameterType, type.getURI());
106 String str = getLabel() + " " + getParamType() + " " + getURI();
/owl-s/src/org/mindswap/utils/
H A DRDFUtils.java36 "<rdf:RDF xmlns:rdf=\"" + RDF.getURI() + "\">" +
H A DXSLTEngine.java70 transformer.setParameter( param.getURI().toString(), value );
H A DQNameProvider.java137 public String getURI(String prefix) { method in class:QNameProvider
148 String currentUri = getURI(prefix);
226 String uri = getURI(prefix);
/owl-s/src/impl/owls/
H A DOWLSTranslator_1_0.java122 outputOnt = OWLFactory.createOntology(ont.getURI());
227 translated = outputOnt.createInstance(owlClass, ind.getURI());
243 newInd = outputOnt.createInstance(owlClass, ind.getURI());
670 URI typeURI = inputOnt.getProperty(paramInfo, OWLS_1_0.Process.parameterType).getURI();
693 if ((!profileInputURIs.contains(param.getURI())) && (paramInfo.getProperties().size() <= 1)) {
726 System.out.println(" Process " + process.getURI() + "\n" +
728 param.getURI() + "\n" +
832 "\n in profile: " + profile.getURI() + ")");
837 if (refersTo.getURI() != null) {
838 profileInputURIs.add(refersTo.getURI());
[all...]
/owl-s/src/examples/
H A DOWLSValidator.java93 out.printBold("Service: ").printLink(service.getURI().toString());

Completed in 4676 milliseconds

12