01: /*
02: * (c) Copyright 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
03: * [See end of file]
04: */
05:
06: /* CVS $Id: LocationMappingVocab.java,v 1.6 2008/01/02 12:07:29 andy_seaborne Exp $ */
07:
08: package com.hp.hpl.jena.vocabulary;
09:
10: import com.hp.hpl.jena.rdf.model.*;
11:
12: /**
13: * Vocabulary definitions from Vocabularies/location-mapping-rdfs.n3
14: */
15:
16: public class LocationMappingVocab {
17: /** <p>The namespace of the vocabalary as a string ({@value})</p> */
18: public static final String NS = "http://jena.hpl.hp.com/2004/08/location-mapping#";
19:
20: /** <p>The namespace of the vocabalary as a string</p>
21: * @see #NS */
22: public static String getURI() {
23: return NS;
24: }
25:
26: /** <p>The namespace of the vocabalary as a resource</p> */
27: public static final Resource NAMESPACE = ResourceFactory
28: .createResource(NS);
29:
30: /** <p>Range is a STRING, not a URI, to allow for any symbols</p> */
31: public static final Property name = ResourceFactory
32: .createProperty("http://jena.hpl.hp.com/2004/08/location-mapping#name");
33:
34: public static final Property altPrefix = ResourceFactory
35: .createProperty("http://jena.hpl.hp.com/2004/08/location-mapping#altPrefix");
36:
37: public static final Property mapping = ResourceFactory
38: .createProperty("http://jena.hpl.hp.com/2004/08/location-mapping#mapping");
39:
40: /** <p>Range is a STRING, not a URI, to allow for any symbols</p> */
41: public static final Property prefix = ResourceFactory
42: .createProperty("http://jena.hpl.hp.com/2004/08/location-mapping#prefix");
43:
44: public static final Property altName = ResourceFactory
45: .createProperty("http://jena.hpl.hp.com/2004/08/location-mapping#altName");
46:
47: public static final Resource LocationMapping = ResourceFactory
48: .createResource("http://jena.hpl.hp.com/2004/08/location-mapping#LocationMapping");
49:
50: }
51:
52: /*
53: * (c) Copyright 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
54: * All rights reserved.
55: *
56: * Redistribution and use in source and binary forms, with or without
57: * modification, are permitted provided that the following conditions
58: * are met:
59: * 1. Redistributions of source code must retain the above copyright
60: * notice, this list of conditions and the following disclaimer.
61: * 2. Redistributions in binary form must reproduce the above copyright
62: * notice, this list of conditions and the following disclaimer in the
63: * documentation and/or other materials provided with the distribution.
64: * 3. The name of the author may not be used to endorse or promote products
65: * derived from this software without specific prior written permission.
66:
67: * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
68: * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
69: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
70: * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
71: * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
72: * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
73: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
74: * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
75: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
76: * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
77: *
78: */
|