01: package org.garret.rdf;
02:
03: /**
04: * Predefined names of type and properties
05: */
06: public class Symbols {
07: public static final String RDFS = "http://www.w3.org/2000/01/rdf-schema#";
08: public static final String RDF = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
09: public static final String NS = "http://www.perst.org#";
10:
11: public static final String Metatype = NS + "Metaclass";
12: public static final String Type = RDFS + "Class";
13: public static final String Subtype = RDFS + "subClassOf";
14: public static final String Thing = NS + "thing";
15: public static final String Rectangle = NS + "rectangle";
16: public static final String Point = NS + "point";
17: public static final String Keyword = NS + "keyword";
18: public static final String Uri = RDF + "about";
19: public static final String Ref = RDF + "resource";
20: public static final String Timestamp = NS + "timestamp";
21: }
|