1 5 6 package com.hp.hpl.jena.vocabulary; 7 8 import com.hp.hpl.jena.rdf.model.*; 9 10 12 13 public class DC_10 { 14 15 protected static final String uri = 16 "http://purl.org/dc/elements/1.0/"; 17 18 21 public static String getURI() 22 { 23 return uri; 24 } 25 26 private static Property cp( String ln ) 27 { return ResourceFactory.createProperty( uri, ln ); } 28 29 public static final Property contributor = cp( "contributor" ); 30 public static final Property coverage = cp( "coverage" ); 31 public static final Property creator = cp( "creator" ); 32 public static final Property date = cp( "date" ); 33 public static final Property description = cp( "description" ); 34 public static final Property format = cp( "format" ); 35 public static final Property identifier = cp( "identifier" ); 36 public static final Property language = cp( "language" ); 37 public static final Property publisher = cp( "publisher" ); 38 public static final Property relation = cp( "relation" ); 39 public static final Property rights = cp( "rights" ); 40 public static final Property source = cp( "source" ); 41 public static final Property subject = cp( "subject" ); 42 public static final Property title = cp( "title" ); 43 public static final Property type = cp( "type" ); 44 } 45 46 47 48 49 75 | Popular Tags |