From 17bd9beaf7f358a44e5bf36a5855fe6727d506dc Mon Sep 17 00:00:00 2001 From: Federico Igne Date: Tue, 10 May 2022 18:17:06 +0100 Subject: [pagoda] Move project to Scala This commit includes a few changes: - The repository still uses Maven to manage dependency but it is now a Scala project. - The code has been ported from OWLAPI 3.4.10 to 5.1.20 - A proof of concept program using both RSAComb and PAGOdA has been added. --- src/uk/ac/ox/cs/pagoda/util/Namespace.java | 34 ------------------------------ 1 file changed, 34 deletions(-) delete mode 100644 src/uk/ac/ox/cs/pagoda/util/Namespace.java (limited to 'src/uk/ac/ox/cs/pagoda/util/Namespace.java') diff --git a/src/uk/ac/ox/cs/pagoda/util/Namespace.java b/src/uk/ac/ox/cs/pagoda/util/Namespace.java deleted file mode 100644 index 07c8ebd..0000000 --- a/src/uk/ac/ox/cs/pagoda/util/Namespace.java +++ /dev/null @@ -1,34 +0,0 @@ -package uk.ac.ox.cs.pagoda.util; - -public class Namespace { - - public static final String RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"; - public static final String RDFS_NS = "http://www.w3.org/2000/01/rdf-schema#"; - public static final String OWL_NS = "http://www.w3.org/2002/07/owl#"; - public static final String XSD_NS = "http://www.w3.org/2001/XMLSchema#"; - public static final String SWRL_NS = "http://www.w3.org/2003/11/swrl#"; - public static final String SWRLB_NS = "http://www.w3.org/2003/11/swrlb#"; - public static final String SWRLX_NS = "http://www.w3.org/2003/11/swrlx#"; - public static final String RULEML_NS = "http://www.w3.org/2003/11/ruleml#"; - - public static final String RDF_TYPE_QUOTED = "<" + RDF_NS + "type>"; - public static final String RDF_TYPE = RDF_NS + "type"; - public static final String RDF_TYPE_ABBR = "rdf:type"; - - public static final String EQUALITY = OWL_NS + "sameAs"; - public static final String EQUALITY_QUOTED = "<" + EQUALITY + ">"; - public static final String EQUALITY_ABBR = "owl:sameAs"; - - public static final String INEQUALITY = OWL_NS + "differentFrom"; - public static final String INEQUALITY_ABBR = "owl:differentFrom"; - public static final String INEQUALITY_QUOTED = "<" + INEQUALITY + ">"; - - public static final String RDF_PLAIN_LITERAL = RDF_NS + "PlainLiteral"; - public static final String XSD_STRING = XSD_NS + "string"; - - public static final String PAGODA_ANONY = "http://www.cs.ox.ac.uk/PAGOdA/skolemised#"; - public static final String PAGODA_AUX = "http://www.cs.ox.ac.uk/PAGOdA/auxiliary#"; - public static final String KARMA_ANONY = "http://www.cs.ox.ac.uk/KARMA/anonymous"; - public static final String PAGODA_ORIGINAL = PAGODA_AUX + "Original"; - -} -- cgit v1.2.3