KickJava   Java API By Example, From Geeks To Geeks.

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


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

5
6 /* CVS $Id: DC_11.java,v 1.5 2005/02/21 12:21:30 andy_seaborne Exp $ */
7 package com.hp.hpl.jena.vocabulary;
8  
9 import com.hp.hpl.jena.rdf.model.*;
10  
11 /**
12  * Vocabulary definitions from file:vocabularies/dublin-core_11.xml
13  * @author Auto-generated by schemagen on 13 May 2003 08:51
14  */

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

24     public static String JavaDoc getURI() {return NS;}
25     
26     /** <p>The namespace of the vocabalary as a resource</p> */
27     public static final Resource NAMESPACE = m_model.createResource( NS );
28     
29     /** <p>A name given to the resource.</p> */
30     public static final Property title = m_model.createProperty( "http://purl.org/dc/elements/1.1/title" );
31     
32     /** <p>An entity primarily responsible for making the content of the resource.</p> */
33     public static final Property creator = m_model.createProperty( "http://purl.org/dc/elements/1.1/creator" );
34     
35     /** <p>The topic of the content of the resource.</p> */
36     public static final Property subject = m_model.createProperty( "http://purl.org/dc/elements/1.1/subject" );
37     
38     /** <p>An account of the content of the resource.</p> */
39     public static final Property description = m_model.createProperty( "http://purl.org/dc/elements/1.1/description" );
40     
41     /** <p>An entity responsible for making the resource available</p> */
42     public static final Property publisher = m_model.createProperty( "http://purl.org/dc/elements/1.1/publisher" );
43     
44     /** <p>An entity responsible for making contributions to the content of the resource.</p> */
45     public static final Property contributor = m_model.createProperty( "http://purl.org/dc/elements/1.1/contributor" );
46     
47     /** <p>A date associated with an event in the life cycle of the resource.</p> */
48     public static final Property date = m_model.createProperty( "http://purl.org/dc/elements/1.1/date" );
49     
50     /** <p>The nature or genre of the content of the resource.</p> */
51     public static final Property type = m_model.createProperty( "http://purl.org/dc/elements/1.1/type" );
52     
53     /** <p>The physical or digital manifestation of the resource.</p> */
54     public static final Property format = m_model.createProperty( "http://purl.org/dc/elements/1.1/format" );
55     
56     /** <p>An unambiguous reference to the resource within a given context.</p> */
57     public static final Property identifier = m_model.createProperty( "http://purl.org/dc/elements/1.1/identifier" );
58     
59     /** <p>A reference to a resource from which the present resource is derived.</p> */
60     public static final Property source = m_model.createProperty( "http://purl.org/dc/elements/1.1/source" );
61     
62     /** <p>A language of the intellectual content of the resource.</p> */
63     public static final Property language = m_model.createProperty( "http://purl.org/dc/elements/1.1/language" );
64     
65     /** <p>A reference to a related resource.</p> */
66     public static final Property relation = m_model.createProperty( "http://purl.org/dc/elements/1.1/relation" );
67     
68     /** <p>The extent or scope of the content of the resource.</p> */
69     public static final Property coverage = m_model.createProperty( "http://purl.org/dc/elements/1.1/coverage" );
70     
71     /** <p>Information about rights held in and over the resource.</p> */
72     public static final Property rights = m_model.createProperty( "http://purl.org/dc/elements/1.1/rights" );
73     
74 }
75
76
77 /*
78  * (c) Copyright 2003, 2004, 2005 Hewlett-Packard Development Company, LP
79  * All rights reserved.
80  *
81  * Redistribution and use in source and binary forms, with or without
82  * modification, are permitted provided that the following conditions
83  * are met:
84  * 1. Redistributions of source code must retain the above copyright
85  * notice, this list of conditions and the following disclaimer.
86  * 2. Redistributions in binary form must reproduce the above copyright
87  * notice, this list of conditions and the following disclaimer in the
88  * documentation and/or other materials provided with the distribution.
89  * 3. The name of the author may not be used to endorse or promote products
90  * derived from this software without specific prior written permission.
91
92  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
93  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
94  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
95  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
96  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
98  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
99  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
100  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
101  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
102  */

103
Popular Tags