1 5 6 7 package com.hp.hpl.jena.vocabulary; 8 9 import com.hp.hpl.jena.rdf.model.*; 10 11 15 public class DC_11 { 16 17 private static Model m_model = ModelFactory.createDefaultModel(); 18 19 20 public static final String NS = "http://purl.org/dc/elements/1.1/"; 21 22 24 public static String getURI() {return NS;} 25 26 27 public static final Resource NAMESPACE = m_model.createResource( NS ); 28 29 30 public static final Property title = m_model.createProperty( "http://purl.org/dc/elements/1.1/title" ); 31 32 33 public static final Property creator = m_model.createProperty( "http://purl.org/dc/elements/1.1/creator" ); 34 35 36 public static final Property subject = m_model.createProperty( "http://purl.org/dc/elements/1.1/subject" ); 37 38 39 public static final Property description = m_model.createProperty( "http://purl.org/dc/elements/1.1/description" ); 40 41 42 public static final Property publisher = m_model.createProperty( "http://purl.org/dc/elements/1.1/publisher" ); 43 44 45 public static final Property contributor = m_model.createProperty( "http://purl.org/dc/elements/1.1/contributor" ); 46 47 48 public static final Property date = m_model.createProperty( "http://purl.org/dc/elements/1.1/date" ); 49 50 51 public static final Property type = m_model.createProperty( "http://purl.org/dc/elements/1.1/type" ); 52 53 54 public static final Property format = m_model.createProperty( "http://purl.org/dc/elements/1.1/format" ); 55 56 57 public static final Property identifier = m_model.createProperty( "http://purl.org/dc/elements/1.1/identifier" ); 58 59 60 public static final Property source = m_model.createProperty( "http://purl.org/dc/elements/1.1/source" ); 61 62 63 public static final Property language = m_model.createProperty( "http://purl.org/dc/elements/1.1/language" ); 64 65 66 public static final Property relation = m_model.createProperty( "http://purl.org/dc/elements/1.1/relation" ); 67 68 69 public static final Property coverage = m_model.createProperty( "http://purl.org/dc/elements/1.1/coverage" ); 70 71 72 public static final Property rights = m_model.createProperty( "http://purl.org/dc/elements/1.1/rights" ); 73 74 } 75 76 77 103 | Popular Tags |