1 17 18 19 package com.hp.hpl.jena.vocabulary; 22 23 24 import com.hp.hpl.jena.rdf.model.*; 27 28 29 30 31 35 public class OntDocManagerVocab { 36 37 private static Model m_model = ModelFactory.createDefaultModel(); 38 39 40 public static final String NS = "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#"; 41 42 44 public static String getURI() {return NS;} 45 46 47 public static final Resource NAMESPACE = m_model.createResource( NS ); 48 49 50 53 54 public static final Property language = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#language" ); 55 56 57 public static final Property publicURI = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#publicURI" ); 58 59 60 public static final Property prefix = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#prefix" ); 61 62 65 public static final Property useDeclaredNsPrefixes = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#useDeclaredNsPrefixes" ); 66 67 70 public static final Property ignoreImport = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#ignoreImport" ); 71 72 75 public static final Property processImports = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#processImports" ); 76 77 78 public static final Property cacheModels = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#cacheModels" ); 79 80 83 public static final Property altURL = m_model.createProperty( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#altURL" ); 84 85 86 89 90 public static final Resource OntologySpec = m_model.createResource( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#OntologySpec" ); 91 92 93 public static final Resource DocumentManagerPolicy = m_model.createResource( "http://jena.hpl.hp.com/schemas/2003/03/ont-manager#DocumentManagerPolicy" ); 94 95 96 99 } 100 101 130 131 | Popular Tags |