1 5 6 package com.hp.hpl.jena.vocabulary; 7 8 import com.hp.hpl.jena.rdf.model.*; 9 10 12 public class TestQuery { 13 14 protected static final String uri ="http://jena.hpl.hp.com/2003/03/test-query#"; 15 16 19 public static String getURI() { 20 return uri; 21 } 22 23 public static final Resource QueryTest = ResourceFactory.createResource( uri + "QueryTest" ); 24 public static final Property query = ResourceFactory.createProperty( uri + "query" ); 25 public static final Property data = ResourceFactory.createProperty( uri + "data" ); 26 27 } 28 29 55 | Popular Tags |