1 5 6 package com.hp.hpl.jena.vocabulary; 7 8 import com.hp.hpl.jena.rdf.model.*; 9 10 12 public class TestManifest { 13 14 protected static final String uri ="http://jena.hpl.hp.com/2003/03/test-manifest#"; 15 16 19 public static String getURI() { 20 return uri; 21 } 22 23 public static final Resource ManifestEntry = ResourceFactory.createResource(uri + "ManifestEntry" ); 24 public static final Resource Manifest = ResourceFactory.createResource(uri + "Manifest" ); 25 public static final Property action = ResourceFactory.createProperty(uri + "action" ); 26 public static final Property result = ResourceFactory.createProperty(uri + "result" ); 27 public static final Property name = ResourceFactory.createProperty(uri + "name" ); 28 public static final Property entries = ResourceFactory.createProperty(uri + "entries" ); 29 30 } 31 32 33 59 | Popular Tags |