01: package com.hp.hpl.jena.vocabulary;
02:
03: /* CVS $Id: TestManifest.java,v 1.10 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.n3
09: * @author Auto-generated by schemagen on 09 Jan 2007 13:50
10: */
11: public class TestManifest {
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://www.w3.org/2001/sw/DataAccess/tests/test-manifest#";
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>The test statusThe expected outcome</p> */
28: public static final Property result = m_model
29: .createProperty("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result");
30:
31: /** <p>Action to perform</p> */
32: public static final Property action = m_model
33: .createProperty("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action");
34:
35: /** <p>Optional name of this entry</p> */
36: public static final Property name = m_model
37: .createProperty("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name");
38:
39: /** <p>Connects the manifest resource to rdf:type list of entries</p> */
40: public static final Property entries = m_model
41: .createProperty("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries");
42:
43: /** <p>Connects the manifest resource to rdf:type list of manifests</p> */
44: public static final Property include = m_model
45: .createProperty("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#include");
46:
47: /** <p>A type of test specifically for query evaluation testing. Query evaluation
48: * tests are required to have an associated input dataset, a query, and an expected
49: * output dataset.</p>
50: */
51: public static final Resource QueryEvaluationTest = m_model
52: .createResource("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#QueryEvaluationTest");
53:
54: /** <p>A type of test specifically for syntax testing. Syntax tests are not required
55: * to have an associated result, only an action. Negative syntax tests are tests
56: * of which the result should be a parser error.</p>
57: */
58: public static final Resource NegativeSyntaxTest = m_model
59: .createResource("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#NegativeSyntaxTest");
60:
61: /** <p>A type of test specifically for syntax testing. Syntax tests are not required
62: * to have an associated result, only an action.</p>
63: */
64: public static final Resource PositiveSyntaxTest = m_model
65: .createResource("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#PositiveSyntaxTest");
66:
67: /** <p>One entry in rdf:type list of entries</p> */
68: public static final Resource ManifestEntry = m_model
69: .createResource("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#ManifestEntry");
70:
71: /** <p>The class of manifests</p> */
72: public static final Resource Manifest = m_model
73: .createResource("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest");
74:
75: public static final Resource accepted = m_model
76: .createResource("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#accepted");
77:
78: public static final Resource proposed = m_model
79: .createResource("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed");
80:
81: public static final Resource rejected = m_model
82: .createResource("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#rejected");
83:
84: }
|