KickJava   Java API By Example, From Geeks To Geeks.

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


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: OntDocManagerVocab.java,v $
8  * Revision $Revision: 1.4 $
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/ont-manager.rdf
33  * @author Auto-generated by jena.schemagen on 13 Aug 2004 15:35
34  */

35 public class OntDocManagerVocab {
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://jena.hpl.hp.com/schemas/2003/03/ont-manager#";
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
50     // Vocabulary properties
51
///////////////////////////
52

53     /** <p>The representation language used by the ontology document</p> */
54     public static final Property language = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#language" );
55     
56     /** <p>The public URI that is used to refer to the ontology document</p> */
57     public static final Property publicURI = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#publicURI" );
58     
59     /** <p>The prefix string that is used when writing qnames in the ontology's namespace</p> */
60     public static final Property prefix = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#prefix" );
61     
62     /** <p>Boolean flag for whether new ontology models will include the pre-declared
63      * namespace prefixes</p>
64      */

65     public static final Property useDeclaredNsPrefixes = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#useDeclaredNsPrefixes" );
66     
67     /** <p>Specifies URL that will never be loaded as the result of processing an imports
68      * statement</p>
69      */

70     public static final Property ignoreImport = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#ignoreImport" );
71     
72     /** <p>If true, this property denotes that the document manager should process the
73      * imports closure of documents</p>
74      */

75     public static final Property processImports = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#processImports" );
76     
77     /** <p>If true, this property denotes that loaded models should be cached for re-use</p> */
78     public static final Property cacheModels = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#cacheModels" );
79     
80     /** <p>The resolvable URL that an alternative copy of the ontology document may be
81      * fetched from</p>
82      */

83     public static final Property altURL = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#altURL" );
84     
85
86     // Vocabulary classes
87
///////////////////////////
88

89     /** <p>A class of node that specifies document metadata for the DocumentManager</p> */
90     public static final Resource OntologySpec = m_model.createResource( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#OntologySpec" );
91     
92     /** <p>A node that specifies behavioural options for the document manager</p> */
93     public static final Resource DocumentManagerPolicy = m_model.createResource( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#DocumentManagerPolicy" );
94     
95
96     // Vocabulary individuals
97
///////////////////////////
98

99 }
100
101 /*
102     (c) Copyright 2002, 2003, 2004, 2005 Hewlett-Packard Development Company, LP
103     All rights reserved.
104
105     Redistribution and use in source and binary forms, with or without
106     modification, are permitted provided that the following conditions
107     are met:
108
109     1. Redistributions of source code must retain the above copyright
110        notice, this list of conditions and the following disclaimer.
111
112     2. Redistributions in binary form must reproduce the above copyright
113        notice, this list of conditions and the following disclaimer in the
114        documentation and/or other materials provided with the distribution.
115
116     3. The name of the author may not be used to endorse or promote products
117        derived from this software without specific prior written permission.
118
119     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
120     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
121     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
122     IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
123     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
124     NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
125     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
126     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
127     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
128     THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
129 */

130
131
Popular Tags