KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > joseki > vocabulary > JosekiModule


1 /*
2  * (c) Copyright 2003, 2004 Hewlett-Packard Development Company, LP
3  * [See end of file]
4  */

5
6 package org.joseki.vocabulary ;
7  
8 import com.hp.hpl.jena.rdf.model.*;
9  
10 /**
11  * Vocabulary definitions from etc/joseki-module.n3
12  * @author Auto-generated by schemagen on 20 Jun 2003 15:22
13  */

14 public class JosekiModule {
15     /** <p>The RDF model that holds the vocabulary terms</p> */
16     private static Model m_model = ModelFactory.createDefaultModel();
17     
18     /** <p>The namespace of the vocabalary as a string ({@value})</p> */
19     public static final String JavaDoc NS = "http://joseki.org/2003/06/module#";
20     
21     /** <p>The namespace of the vocabalary as a string</p>
22      * @see #NS */

23     public static String JavaDoc getURI() {return NS;}
24     
25     /** <p>The namespace of the vocabalary as a resource</p> */
26     public static final Resource NAMESPACE = m_model.createResource( NS );
27     
28     /** <p>module</p> */
29     public static final Property module = m_model.createProperty( "http://joseki.org/2003/06/module#module" );
30     
31     /** <p>URI of the interface for the binding.</p> */
32     public static final Property interface_ = m_model.createProperty( "http://joseki.org/2003/06/module#interface" );
33     
34     /** <p>Identifies the implementation to use</p> */
35     public static final Property implementation = m_model.createProperty( "http://joseki.org/2003/06/module#implementation" );
36     
37     /** <p>Load Java class</p> */
38     public static final Property className = m_model.createProperty( "http://joseki.org/2003/06/module#className" );
39     
40     public static final Resource Module = m_model.createResource( "http://joseki.org/2003/06/module#Module" );
41     
42     public static final Resource ModuleBinding = m_model.createResource( "http://joseki.org/2003/06/module#ModuleBinding" );
43     
44 }
45
46
47 /*
48  * (c) Copyright 2003, 2004 Hewlett-Packard Development Company, LP
49  * All rights reserved.
50  *
51  * Redistribution and use in source and binary forms, with or without
52  * modification, are permitted provided that the following conditions
53  * are met:
54  * 1. Redistributions of source code must retain the above copyright
55  * notice, this list of conditions and the following disclaimer.
56  * 2. Redistributions in binary form must reproduce the above copyright
57  * notice, this list of conditions and the following disclaimer in the
58  * documentation and/or other materials provided with the distribution.
59  * 3. The name of the author may not be used to endorse or promote products
60  * derived from this software without specific prior written permission.
61  *
62  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
63  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
64  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
65  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
66  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
67  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
68  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
69  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
70  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
71  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
72  */

73
Popular Tags