001: /*
002: * (c) Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
003: * [See end of file]
004: */
005:
006: /* CVS $Id: DC_11.java,v 1.8 2008/01/02 12:07:29 andy_seaborne Exp $ */
007: package com.hp.hpl.jena.vocabulary;
008:
009: import com.hp.hpl.jena.rdf.model.*;
010:
011: /**
012: * Vocabulary definitions from file:vocabularies/dublin-core_11.xml
013: * @author Auto-generated by schemagen on 13 May 2003 08:51
014: */
015: public class DC_11 {
016: /** <p>The RDF model that holds the vocabulary terms</p> */
017: private static Model m_model = ModelFactory.createDefaultModel();
018:
019: /** <p>The namespace of the vocabalary as a string ({@value})</p> */
020: public static final String NS = "http://purl.org/dc/elements/1.1/";
021:
022: /** <p>The namespace of the vocabalary as a string</p>
023: * @see #NS */
024: public static String getURI() {
025: return NS;
026: }
027:
028: /** <p>The namespace of the vocabalary as a resource</p> */
029: public static final Resource NAMESPACE = m_model.createResource(NS);
030:
031: /** <p>A name given to the resource.</p> */
032: public static final Property title = m_model
033: .createProperty("http://purl.org/dc/elements/1.1/title");
034:
035: /** <p>An entity primarily responsible for making the content of the resource.</p> */
036: public static final Property creator = m_model
037: .createProperty("http://purl.org/dc/elements/1.1/creator");
038:
039: /** <p>The topic of the content of the resource.</p> */
040: public static final Property subject = m_model
041: .createProperty("http://purl.org/dc/elements/1.1/subject");
042:
043: /** <p>An account of the content of the resource.</p> */
044: public static final Property description = m_model
045: .createProperty("http://purl.org/dc/elements/1.1/description");
046:
047: /** <p>An entity responsible for making the resource available</p> */
048: public static final Property publisher = m_model
049: .createProperty("http://purl.org/dc/elements/1.1/publisher");
050:
051: /** <p>An entity responsible for making contributions to the content of the resource.</p> */
052: public static final Property contributor = m_model
053: .createProperty("http://purl.org/dc/elements/1.1/contributor");
054:
055: /** <p>A date associated with an event in the life cycle of the resource.</p> */
056: public static final Property date = m_model
057: .createProperty("http://purl.org/dc/elements/1.1/date");
058:
059: /** <p>The nature or genre of the content of the resource.</p> */
060: public static final Property type = m_model
061: .createProperty("http://purl.org/dc/elements/1.1/type");
062:
063: /** <p>The physical or digital manifestation of the resource.</p> */
064: public static final Property format = m_model
065: .createProperty("http://purl.org/dc/elements/1.1/format");
066:
067: /** <p>An unambiguous reference to the resource within a given context.</p> */
068: public static final Property identifier = m_model
069: .createProperty("http://purl.org/dc/elements/1.1/identifier");
070:
071: /** <p>A reference to a resource from which the present resource is derived.</p> */
072: public static final Property source = m_model
073: .createProperty("http://purl.org/dc/elements/1.1/source");
074:
075: /** <p>A language of the intellectual content of the resource.</p> */
076: public static final Property language = m_model
077: .createProperty("http://purl.org/dc/elements/1.1/language");
078:
079: /** <p>A reference to a related resource.</p> */
080: public static final Property relation = m_model
081: .createProperty("http://purl.org/dc/elements/1.1/relation");
082:
083: /** <p>The extent or scope of the content of the resource.</p> */
084: public static final Property coverage = m_model
085: .createProperty("http://purl.org/dc/elements/1.1/coverage");
086:
087: /** <p>Information about rights held in and over the resource.</p> */
088: public static final Property rights = m_model
089: .createProperty("http://purl.org/dc/elements/1.1/rights");
090:
091: }
092:
093: /*
094: * (c) Copyright 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
095: * All rights reserved.
096: *
097: * Redistribution and use in source and binary forms, with or without
098: * modification, are permitted provided that the following conditions
099: * are met:
100: * 1. Redistributions of source code must retain the above copyright
101: * notice, this list of conditions and the following disclaimer.
102: * 2. Redistributions in binary form must reproduce the above copyright
103: * notice, this list of conditions and the following disclaimer in the
104: * documentation and/or other materials provided with the distribution.
105: * 3. The name of the author may not be used to endorse or promote products
106: * derived from this software without specific prior written permission.
107:
108: * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
109: * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
110: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
111: * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
112: * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
113: * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
114: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
115: * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
116: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
117: * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
118: */
|