1 10 package com.hp.hpl.jena.vocabulary; 11 12 import com.hp.hpl.jena.rdf.model.*; 13 14 20 public class OWLTest { 21 22 23 private static Model m_model = ModelFactory.createDefaultModel(); 24 25 26 public static final String NS = "http://www.w3.org/2002/03owlt/testOntology#"; 27 28 30 public static String getURI() {return NS;} 31 32 33 public static final Resource NAMESPACE = m_model.createResource( NS ); 34 35 38 public static final Property feature = m_model.createProperty( "http://www.w3.org/2002/03owlt/testOntology#feature" ); 39 40 43 public static final Property usedDatatype = m_model.createProperty( "http://www.w3.org/2002/03owlt/testOntology#usedDatatype" ); 44 45 48 public static final Property supportedDatatype = m_model.createProperty( "http://www.w3.org/2002/03owlt/testOntology#supportedDatatype" ); 49 50 53 public static final Property importedPremiseDocument = m_model.createProperty( "http://www.w3.org/2002/03owlt/testOntology#importedPremiseDocument" ); 54 55 56 public static final Property level = m_model.createProperty( "http://www.w3.org/2002/03owlt/testOntology#level" ); 57 58 59 public static final Resource Lite = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#Lite" ); 60 61 public static final Resource DL = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#DL" ); 62 63 public static final Resource Full = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#Full" ); 64 65 68 public static final Property issueNumber = m_model.createProperty( "http://www.w3.org/2002/03owlt/testOntology#issueNumber" ); 69 public static final Property size = m_model.createProperty( "http://www.w3.org/2002/03owlt/testOntology#size" ); 70 public static final Resource Large = m_model.createProperty( "http://www.w3.org/2002/03owlt/testOntology#Large" ); 71 72 public static final Resource Test = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#Test" ); 73 74 75 public static final Resource PositiveEntailmentTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#PositiveEntailmentTest" ); 76 77 78 public static final Resource NegativeEntailmentTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#NegativeEntailmentTest" ); 79 80 81 public static final Resource TrueTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#TrueTest" ); 82 83 84 public static final Resource OWLforOWLTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#OWLforOWLTest" ); 85 86 90 public static final Resource ImportLevelTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#ImportLevelTest" ); 91 92 96 public static final Resource NotOwlFeatureTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#NotOwlFeatureTest" ); 97 98 99 public static final Resource ImportEntailmentTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#ImportEntailmentTest" ); 100 101 102 public static final Resource InconsistencyTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#InconsistencyTest" ); 103 104 105 public static final Resource ConsistencyTest = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#ConsistencyTest" ); 106 107 108 public static final Resource Issue = m_model.createResource( "http://www.w3.org/2002/03owlt/testOntology#Issue" ); 109 110 } 111 112 | Popular Tags |