aboutsummaryrefslogtreecommitdiff
path: root/src/org
diff options
context:
space:
mode:
authorRncLsn <rnc.lsn@gmail.com>2015-05-28 10:29:11 +0100
committerRncLsn <rnc.lsn@gmail.com>2015-05-28 10:29:11 +0100
commit2e069a4966e6305194c4168d6fc5c406123d7f64 (patch)
treedc70e541b78494ac13f899db2831422b28fc5f72 /src/org
parentc9c8d03e957fa56df5dc1304f7a81dfa61b7b70e (diff)
downloadACQuA-2e069a4966e6305194c4168d6fc5c406123d7f64.tar.gz
ACQuA-2e069a4966e6305194c4168d6fc5c406123d7f64.zip
NOT-WORKING: trying to add query-dependent Skolemisation.
Diffstat (limited to 'src/org')
-rw-r--r--src/org/semanticweb/simpleETL/SimpleETL.java13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/org/semanticweb/simpleETL/SimpleETL.java b/src/org/semanticweb/simpleETL/SimpleETL.java
index 8dcd87a..5907b7b 100644
--- a/src/org/semanticweb/simpleETL/SimpleETL.java
+++ b/src/org/semanticweb/simpleETL/SimpleETL.java
@@ -1,16 +1,16 @@
1package org.semanticweb.simpleETL; 1package org.semanticweb.simpleETL;
2import java.io.File;
3import java.io.FileInputStream;
4import java.io.FileOutputStream;
5import java.util.regex.Pattern;
6 2
7import org.openrdf.rio.RDFParser; 3import org.openrdf.rio.RDFParser;
8import org.openrdf.rio.RDFWriter; 4import org.openrdf.rio.RDFWriter;
9import org.openrdf.rio.rdfxml.RDFXMLParser; 5import org.openrdf.rio.rdfxml.RDFXMLParser;
10import org.openrdf.rio.turtle.TurtleWriter; 6import org.openrdf.rio.turtle.TurtleWriter;
11
12import uk.ac.ox.cs.pagoda.util.Utility; 7import uk.ac.ox.cs.pagoda.util.Utility;
13 8
9import java.io.File;
10import java.io.FileInputStream;
11import java.io.FileOutputStream;
12import java.util.regex.Pattern;
13
14public class SimpleETL { 14public class SimpleETL {
15 15
16 protected final static String m_prefix_LUBM = "http://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl#"; 16 protected final static String m_prefix_LUBM = "http://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl#";
@@ -67,8 +67,7 @@ public class SimpleETL {
67 finally { 67 finally {
68 fos.close(); 68 fos.close();
69 } 69 }
70 Utility.logInfo("SimpleETL rewriting DONE", 70 Utility.logInfo("SimpleETL rewriting DONE: additional ontology data is saved in " + m_fileToExport + ".");
71 "additional ontology data is saved in " + m_fileToExport + ".");
72 } 71 }
73 72
74 public String getExportedFile() { 73 public String getExportedFile() {