01: package com.hp.hpl.jena.n3.turtle.test;
02:
03: /* CVS $Id: TurtleTestVocab.java,v 1.1 2006/12/09 20:39:46 andy_seaborne Exp $ */
04:
05: import com.hp.hpl.jena.rdf.model.*;
06:
07: /**
08: * Vocabulary definitions from TurtleTestVocab.ttl
09: * @author Auto-generated by schemagen on 22 Dec 2005 15:02
10: */
11: public class TurtleTestVocab {
12: /** <p>The RDF model that holds the vocabulary terms</p> */
13: private static Model m_model = ModelFactory.createDefaultModel();
14:
15: /** <p>The namespace of the vocabulary as a string</p> */
16: public static final String NS = "http://jena.hpl.hp.com/2005/12/test-turtle#";
17:
18: /** <p>The namespace of the vocabulary as a string</p>
19: * @see #NS */
20: public static String getURI() {
21: return NS;
22: }
23:
24: /** <p>The namespace of the vocabulary as a resource</p> */
25: public static final Resource NAMESPACE = m_model.createResource(NS);
26:
27: /** <p>Declare a IRI for the test input</p> */
28: public static final Property inputIRI = m_model
29: .createProperty("http://jena.hpl.hp.com/2005/12/test-turtle#inputIRI");
30:
31: /** <p>Output of a test</p> */
32: public static final Property output = m_model
33: .createProperty("http://jena.hpl.hp.com/2005/12/test-turtle#output");
34:
35: /** <p>Input to a test</p> */
36: public static final Property input = m_model
37: .createProperty("http://jena.hpl.hp.com/2005/12/test-turtle#input");
38:
39: public static final Resource TestInOut = m_model
40: .createResource("http://jena.hpl.hp.com/2005/12/test-turtle#TestInOut");
41:
42: public static final Resource TestBadSyntax = m_model
43: .createResource("http://jena.hpl.hp.com/2005/12/test-turtle#TestBadSyntax");
44:
45: public static final Resource TestSyntax = m_model
46: .createResource("http://jena.hpl.hp.com/2005/12/test-turtle#TestSyntax");
47:
48: public static final Resource Test = m_model
49: .createResource("http://jena.hpl.hp.com/2005/12/test-turtle#Test");
50:
51: }
|