01: package com.hp.hpl.jena.vocabulary;
02:
03: /* CVS $Id: TestManifestX.java,v 1.1 2007/03/23 11:59:43 andy_seaborne Exp $ */
04:
05: import com.hp.hpl.jena.rdf.model.*;
06:
07: /**
08: * Vocabulary definitions from test-manifest-x.n3
09: * @author Auto-generated by schemagen on 09 Jan 2007 14:03
10: */
11: public class TestManifestX {
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/05/test-manifest-extra#";
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>Default type of a test</p> */
28: public static final Property defaultTestType = m_model
29: .createProperty("http://jena.hpl.hp.com/2005/05/test-manifest-extra#defaultTestType");
30:
31: /** <p>Include another manifest file.</p> */
32: public static final Property include = m_model
33: .createProperty("http://jena.hpl.hp.com/2005/05/test-manifest-extra#include");
34:
35: /** <p>Whether to create a text index</p> */
36: public static final Property textIndex = m_model
37: .createProperty("http://jena.hpl.hp.com/2005/05/test-manifest-extra#textIndex");
38:
39: /** <p>Syntax of the query</p> */
40: public static final Property dataSyntax = m_model
41: .createProperty("http://jena.hpl.hp.com/2005/05/test-manifest-extra#dataSyntax");
42:
43: /** <p>Syntax of the query</p> */
44: public static final Property querySyntax = m_model
45: .createProperty("http://jena.hpl.hp.com/2005/05/test-manifest-extra#querySyntax");
46:
47: /** <p>Query test not to be run</p> */
48: public static final Resource TestSurpressed = m_model
49: .createResource("http://jena.hpl.hp.com/2005/05/test-manifest-extra#TestSurpressed");
50:
51: /** <p>Query serialization tests</p> */
52: public static final Resource TestSerialization = m_model
53: .createResource("http://jena.hpl.hp.com/2005/05/test-manifest-extra#TestSerialization");
54:
55: /** <p>Syntax tests which expect a parse failure</p> */
56: public static final Resource TestBadSyntax = m_model
57: .createResource("http://jena.hpl.hp.com/2005/05/test-manifest-extra#TestBadSyntax");
58:
59: /** <p>Syntax tests (query)</p> */
60: public static final Resource TestSyntax = m_model
61: .createResource("http://jena.hpl.hp.com/2005/05/test-manifest-extra#TestSyntax");
62:
63: /** <p>The class of test that are Query tests (query, data, results)</p> */
64: public static final Resource TestQuery = m_model
65: .createResource("http://jena.hpl.hp.com/2005/05/test-manifest-extra#TestQuery");
66:
67: }
|