|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ContentVocab.java | - | 100% | 100% | 100% |
|
1 | /* CVS $Id: $ */ | |
2 | package photospace.meta.rdf; | |
3 | import com.hp.hpl.jena.rdf.model.*; | |
4 | ||
5 | /** | |
6 | * Vocabulary definitions from file:C:\photospace\project/etc/rdf/content.rdf | |
7 | * @author Auto-generated by schemagen on 19 Nov 2004 13:41 | |
8 | */ | |
9 | public class ContentVocab { | |
10 | /** <p>The RDF model that holds the vocabulary terms</p> */ | |
11 | private static Model m_model = ModelFactory.createDefaultModel(); | |
12 | ||
13 | /** <p>The namespace of the vocabalary as a string ({@value})</p> */ | |
14 | public static final String NS = "http://www.w3.org/2000/PhotoRDF/content-1-0#"; | |
15 | ||
16 | /** <p>The namespace of the vocabalary as a string</p> | |
17 | * @see #NS */ | |
18 | 10 | public static String getURI() {return NS;} |
19 | ||
20 | /** <p>The namespace of the vocabalary as a resource</p> */ | |
21 | public static final Resource NAMESPACE = m_model.createResource( NS ); | |
22 | ||
23 | public static final Resource KEYWORDS = m_model.createResource( "http://www.w3.org/2000/PhotoRDF/content-1-0#Keywords" ); | |
24 | ||
25 | } |
|