KickJava   Java API By Example, From Geeks To Geeks.

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


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

5
6 /* CVS $Id: LocationMappingVocab.java,v 1.3 2005/02/21 12:21:31 andy_seaborne Exp $ */
7
8 package com.hp.hpl.jena.vocabulary;
9 import com.hp.hpl.jena.rdf.model.*;
10  
11 /**
12  * Vocabulary definitions from Vocabularies/location-mapping-rdfs.n3
13  */

14
15 public class LocationMappingVocab {
16     /** <p>The namespace of the vocabalary as a string ({@value})</p> */
17     public static final String JavaDoc NS = "http://jena.hpl.hp.com/2004/08/location-mapping#";
18     
19     /** <p>The namespace of the vocabalary as a string</p>
20      * @see #NS */

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

69
Popular Tags