diff options
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/util/Namespace.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/util/Namespace.java | 34 |
1 files changed, 0 insertions, 34 deletions
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 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.util; | ||
| 2 | |||
| 3 | public class Namespace { | ||
| 4 | |||
| 5 | public static final String RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"; | ||
| 6 | public static final String RDFS_NS = "http://www.w3.org/2000/01/rdf-schema#"; | ||
| 7 | public static final String OWL_NS = "http://www.w3.org/2002/07/owl#"; | ||
| 8 | public static final String XSD_NS = "http://www.w3.org/2001/XMLSchema#"; | ||
| 9 | public static final String SWRL_NS = "http://www.w3.org/2003/11/swrl#"; | ||
| 10 | public static final String SWRLB_NS = "http://www.w3.org/2003/11/swrlb#"; | ||
| 11 | public static final String SWRLX_NS = "http://www.w3.org/2003/11/swrlx#"; | ||
| 12 | public static final String RULEML_NS = "http://www.w3.org/2003/11/ruleml#"; | ||
| 13 | |||
| 14 | public static final String RDF_TYPE_QUOTED = "<" + RDF_NS + "type>"; | ||
| 15 | public static final String RDF_TYPE = RDF_NS + "type"; | ||
| 16 | public static final String RDF_TYPE_ABBR = "rdf:type"; | ||
| 17 | |||
| 18 | public static final String EQUALITY = OWL_NS + "sameAs"; | ||
| 19 | public static final String EQUALITY_QUOTED = "<" + EQUALITY + ">"; | ||
| 20 | public static final String EQUALITY_ABBR = "owl:sameAs"; | ||
| 21 | |||
| 22 | public static final String INEQUALITY = OWL_NS + "differentFrom"; | ||
| 23 | public static final String INEQUALITY_ABBR = "owl:differentFrom"; | ||
| 24 | public static final String INEQUALITY_QUOTED = "<" + INEQUALITY + ">"; | ||
| 25 | |||
| 26 | public static final String RDF_PLAIN_LITERAL = RDF_NS + "PlainLiteral"; | ||
| 27 | public static final String XSD_STRING = XSD_NS + "string"; | ||
| 28 | |||
| 29 | public static final String PAGODA_ANONY = "http://www.cs.ox.ac.uk/PAGOdA/skolemised#"; | ||
| 30 | public static final String PAGODA_AUX = "http://www.cs.ox.ac.uk/PAGOdA/auxiliary#"; | ||
| 31 | public static final String KARMA_ANONY = "http://www.cs.ox.ac.uk/KARMA/anonymous"; | ||
| 32 | public static final String PAGODA_ORIGINAL = PAGODA_AUX + "Original"; | ||
| 33 | |||
| 34 | } | ||
