1 5 6 7 8 package com.hp.hpl.jena.vocabulary; 9 import com.hp.hpl.jena.rdf.model.*; 10 11 14 15 public class LocationMappingVocab { 16 17 public static final String NS = "http://jena.hpl.hp.com/2004/08/location-mapping#"; 18 19 21 public static String getURI() {return NS;} 22 23 24 public static final Resource NAMESPACE = ResourceFactory.createResource( NS ); 25 26 27 public static final Property name = ResourceFactory.createProperty( "http://jena.hpl.hp.com/2004/08/location-mapping#name" ); 28 29 public static final Property altPrefix = ResourceFactory.createProperty( "http://jena.hpl.hp.com/2004/08/location-mapping#altPrefix" ); 30 31 public static final Property mapping = ResourceFactory.createProperty( "http://jena.hpl.hp.com/2004/08/location-mapping#mapping" ); 32 33 34 public static final Property prefix = ResourceFactory.createProperty( "http://jena.hpl.hp.com/2004/08/location-mapping#prefix" ); 35 36 public static final Property altName = ResourceFactory.createProperty( "http://jena.hpl.hp.com/2004/08/location-mapping#altName" ); 37 38 public static final Resource LocationMapping = ResourceFactory.createResource( "http://jena.hpl.hp.com/2004/08/location-mapping#LocationMapping" ); 39 40 } 41 42 69 | Popular Tags |