Searched defs:fileURI (Results 1 - 8 of 8) sorted by relevance

/owl-s/src/examples/
H A DTranslator.java48 public void translate(String fileURI, Writer out) throws Exception { argument
49 URI uri = new URI(fileURI);
H A DOWLSValidator.java61 public boolean validate(String fileURI) throws Exception { argument
62 return validate(fileURI, new PrintWriter(System.out));
65 public boolean validate(String fileURI, PrintWriter output) throws Exception { argument
66 return validate(fileURI, output, false);
69 public boolean validate(String fileURI, PrintWriter output, boolean isHTML) throws Exception { argument
70 return validate(fileURI, new OutputFormatter(output, isHTML));
73 public boolean validate(String fileURI, OutputFormatter out) throws Exception { argument
74 URI uri = new URI(fileURI);
/owl-s/src/impl/owl/
H A DOWLCacheImpl.java126 * @param fileURI
129 public InputSource getCachedFile(String fileURI) { argument
135 if(fileURI.endsWith("#")) fileURI = fileURI.substring(0, fileURI.length() - 1);
137 String localFileName = cache.getProperty(fileURI);
147 System.err.println("INFO: Using cached file " + file + " for URI " + fileURI);
162 * @param fileURI URI for the remote file
165 public void addCachedFile(String fileURI, Fil argument
[all...]
/owl-s/src/org/mindswap/owl/
H A DOWLCache.java85 * @param fileURI
88 public InputSource getCachedFile(String fileURI); argument
94 * @param fileURI URI for the remote file
97 public void addCachedFile(String fileURI, File localFile); argument
117 * @see addCachedFile(String fileURI, File localFile)
H A DOWLKnowledgeBase.java78 * @param fileURI Physical URI of the onotlogy
81 public OWLOntology createOntology(URI uri, URI fileURI); argument
89 * @param fileURI
93 public OWLOntology createOntology(URI uri, URI fileURI, Object implementation); argument
/owl-s/src/impl/jena/
H A DOWLOntologyImpl.java63 private URI fileURI; field in class:OWLOntologyImpl
71 public OWLOntologyImpl(OWLKnowledgeBase kb, URI uri, URI fileURI, Model jenaModel) { argument
76 this.fileURI = fileURI;
121 URI fileURI = ontology.getFileURI();
122 if( fileURI != null && !imports.containsKey( fileURI )) {
123 imports.put( fileURI, ontology );
245 return fileURI;
315 this.fileURI
[all...]
H A DOWLKnowledgeBaseImpl.java132 public OWLOntology createOntology(URI uri, URI fileURI) { argument
133 return createOntology(uri, fileURI, ModelFactory.createDefaultModel());
136 public OWLOntology createOntology(URI uri, URI fileURI, Object implementation) { argument
137 OWLOntology ont = createOntologyWithoutLoading(uri, fileURI, (Model) implementation);
142 protected OWLOntology createOntologyWithoutLoading(URI uri, URI fileURI, Model model) { argument
143 OWLOntology ont = new OWLOntologyImpl(this, uri, fileURI, model);
/owl-s/lib/pellet/
H A Dpellet.jarcom/ com/lre/ com/lre/graph/ com/lre/graph/Edge.class Edge.java package com.lre ...

Completed in 32 milliseconds