KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > hp > hpl > jena > vocabulary > OWL


1 /*****************************************************************************
2  * Source code information
3  * -----------------------
4  * Package Jena 2
5  * Web site http://jena.sourceforge.net
6  * Created 13 Aug 2004 15:35
7  * Filename $RCSfile: OWL.java,v $
8  * Revision $Revision: 1.15 $
9  * Release status @releaseStatus@ $State: Exp $
10  *
11  * Last modified on $Date: 2005/02/21 12:21:32 $
12  * by $Author: andy_seaborne $
13  *
14  * (c) Copyright 2002, 2003, 2004, 2005 Hewlett-Packard Development Company, LP
15  * (see footer for full conditions)
16  *****************************************************************************/

17
18
19 // Package
20
///////////////////////////////////////
21
package com.hp.hpl.jena.vocabulary;
22
23
24 // Imports
25
///////////////////////////////////////
26
import com.hp.hpl.jena.rdf.model.*;
27
28
29
30
31 /**
32  * Vocabulary definitions from file:vocabularies/owl.owl
33  * @author Auto-generated by jena.schemagen on 13 Aug 2004 15:35
34  */

35 public class OWL {
36     /** <p>The RDF model that holds the vocabulary terms</p> */
37     private static Model m_model = ModelFactory.createDefaultModel();
38     
39     /** <p>The namespace of the vocabulary as a string ({@value})</p> */
40     public static final String JavaDoc NS = "http://www.w3.org/2002/07/owl#";
41     
42     /** <p>The namespace of the vocabulary as a string</p>
43      * @see #NS */

44     public static String JavaDoc getURI() {return NS;}
45     
46     /** <p>The namespace of the vocabulary as a resource</p> */
47     public static final Resource NAMESPACE = m_model.createResource( NS );
48     
49     /** A resource that denotes the OWL-full sublanguage of OWL */
50     public static final Resource FULL_LANG = m_model.getResource( getURI() );
51     
52     /** A resource, not officially sanctioned by WebOnt, that denotes the OWL-DL sublanguage of OWL */
53     public static final Resource DL_LANG = m_model.getResource( "http://www.w3.org/TR/owl-features/#term_OWLDL" );
54     
55     /** A resource, not officially sanctioned by WebOnt, that denotes the OWL-Lite sublanguage of OWL */
56     public static final Resource LITE_LANG = m_model.getResource( "http://www.w3.org/TR/owl-features/#term_OWLLite" );
57
58     // Vocabulary properties
59
///////////////////////////
60

61     public static final Property maxCardinality = m_model.createProperty( "http://www.w3.org/2002/07/owl#maxCardinality" );
62     
63     public static final Property versionInfo = m_model.createProperty( "http://www.w3.org/2002/07/owl#versionInfo" );
64     
65     public static final Property equivalentClass = m_model.createProperty( "http://www.w3.org/2002/07/owl#equivalentClass" );
66     
67     public static final Property distinctMembers = m_model.createProperty( "http://www.w3.org/2002/07/owl#distinctMembers" );
68     
69     public static final Property oneOf = m_model.createProperty( "http://www.w3.org/2002/07/owl#oneOf" );
70     
71     public static final Property sameAs = m_model.createProperty( "http://www.w3.org/2002/07/owl#sameAs" );
72     
73     public static final Property incompatibleWith = m_model.createProperty( "http://www.w3.org/2002/07/owl#incompatibleWith" );
74     
75     public static final Property minCardinality = m_model.createProperty( "http://www.w3.org/2002/07/owl#minCardinality" );
76     
77     public static final Property complementOf = m_model.createProperty( "http://www.w3.org/2002/07/owl#complementOf" );
78     
79     public static final Property onProperty = m_model.createProperty( "http://www.w3.org/2002/07/owl#onProperty" );
80     
81     public static final Property equivalentProperty = m_model.createProperty( "http://www.w3.org/2002/07/owl#equivalentProperty" );
82     
83     public static final Property inverseOf = m_model.createProperty( "http://www.w3.org/2002/07/owl#inverseOf" );
84     
85     public static final Property backwardCompatibleWith = m_model.createProperty( "http://www.w3.org/2002/07/owl#backwardCompatibleWith" );
86     
87     public static final Property differentFrom = m_model.createProperty( "http://www.w3.org/2002/07/owl#differentFrom" );
88     
89     public static final Property priorVersion = m_model.createProperty( "http://www.w3.org/2002/07/owl#priorVersion" );
90     
91     public static final Property imports = m_model.createProperty( "http://www.w3.org/2002/07/owl#imports" );
92     
93     public static final Property allValuesFrom = m_model.createProperty( "http://www.w3.org/2002/07/owl#allValuesFrom" );
94     
95     public static final Property unionOf = m_model.createProperty( "http://www.w3.org/2002/07/owl#unionOf" );
96     
97     public static final Property hasValue = m_model.createProperty( "http://www.w3.org/2002/07/owl#hasValue" );
98     
99     public static final Property someValuesFrom = m_model.createProperty( "http://www.w3.org/2002/07/owl#someValuesFrom" );
100     
101     public static final Property disjointWith = m_model.createProperty( "http://www.w3.org/2002/07/owl#disjointWith" );
102     
103     public static final Property cardinality = m_model.createProperty( "http://www.w3.org/2002/07/owl#cardinality" );
104     
105     public static final Property intersectionOf = m_model.createProperty( "http://www.w3.org/2002/07/owl#intersectionOf" );
106     
107
108     // Vocabulary classes
109
///////////////////////////
110

111     public static final Resource Thing = m_model.createResource( "http://www.w3.org/2002/07/owl#Thing" );
112     
113     public static final Resource DataRange = m_model.createResource( "http://www.w3.org/2002/07/owl#DataRange" );
114     
115     public static final Resource Ontology = m_model.createResource( "http://www.w3.org/2002/07/owl#Ontology" );
116     
117     public static final Resource DeprecatedClass = m_model.createResource( "http://www.w3.org/2002/07/owl#DeprecatedClass" );
118     
119     public static final Resource AllDifferent = m_model.createResource( "http://www.w3.org/2002/07/owl#AllDifferent" );
120     
121     public static final Resource DatatypeProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#DatatypeProperty" );
122     
123     public static final Resource SymmetricProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#SymmetricProperty" );
124     
125     public static final Resource TransitiveProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#TransitiveProperty" );
126     
127     public static final Resource DeprecatedProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#DeprecatedProperty" );
128     
129     public static final Resource AnnotationProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#AnnotationProperty" );
130     
131     public static final Resource Restriction = m_model.createResource( "http://www.w3.org/2002/07/owl#Restriction" );
132     
133     public static final Resource Class = m_model.createResource( "http://www.w3.org/2002/07/owl#Class" );
134     
135     public static final Resource OntologyProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#OntologyProperty" );
136     
137     public static final Resource ObjectProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#ObjectProperty" );
138     
139     public static final Resource FunctionalProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#FunctionalProperty" );
140     
141     public static final Resource InverseFunctionalProperty = m_model.createResource( "http://www.w3.org/2002/07/owl#InverseFunctionalProperty" );
142     
143     public static final Resource Nothing = m_model.createResource( "http://www.w3.org/2002/07/owl#Nothing" );
144     
145
146     // Vocabulary individuals
147
///////////////////////////
148

149 }
150
151 /*
152     (c) Copyright 2002, 2003, 2004, 2005 Hewlett-Packard Development Company, LP
153     All rights reserved.
154
155     Redistribution and use in source and binary forms, with or without
156     modification, are permitted provided that the following conditions
157     are met:
158
159     1. Redistributions of source code must retain the above copyright
160        notice, this list of conditions and the following disclaimer.
161
162     2. Redistributions in binary form must reproduce the above copyright
163        notice, this list of conditions and the following disclaimer in the
164        documentation and/or other materials provided with the distribution.
165
166     3. The name of the author may not be used to endorse or promote products
167        derived from this software without specific prior written permission.
168
169     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
170     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
171     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
172     IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
173     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
174     NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
175     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
176     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
177     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
178     THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
179 */

180
181
Popular Tags