All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.com.hp.hpl.jena.n3.turtle.test.TurtleTestVocab Maven / Gradle / Ivy

Go to download

Jena is a Java framework for building Semantic Web applications. It provides a programmatic environment for RDF, RDFS and OWL, SPARQL and includes a rule-based inference engine.

There is a newer version: 2.6.4
Show newest version
package com.hp.hpl.jena.n3.turtle.test ;

/* CVS $Id: TurtleTestVocab.java,v 1.1 2006/12/09 20:39:46 andy_seaborne Exp $ */
 
import com.hp.hpl.jena.rdf.model.*;
 
/**
 * Vocabulary definitions from TurtleTestVocab.ttl 
 * @author Auto-generated by schemagen on 22 Dec 2005 15:02 
 */
public class TurtleTestVocab {
    /** 

The RDF model that holds the vocabulary terms

*/ private static Model m_model = ModelFactory.createDefaultModel(); /**

The namespace of the vocabulary as a string

*/ public static final String NS = "http://jena.hpl.hp.com/2005/12/test-turtle#"; /**

The namespace of the vocabulary as a string

* @see #NS */ public static String getURI() {return NS;} /**

The namespace of the vocabulary as a resource

*/ public static final Resource NAMESPACE = m_model.createResource( NS ); /**

Declare a IRI for the test input

*/ public static final Property inputIRI = m_model.createProperty( "http://jena.hpl.hp.com/2005/12/test-turtle#inputIRI" ); /**

Output of a test

*/ public static final Property output = m_model.createProperty( "http://jena.hpl.hp.com/2005/12/test-turtle#output" ); /**

Input to a test

*/ public static final Property input = m_model.createProperty( "http://jena.hpl.hp.com/2005/12/test-turtle#input" ); public static final Resource TestInOut = m_model.createResource( "http://jena.hpl.hp.com/2005/12/test-turtle#TestInOut" ); public static final Resource TestBadSyntax = m_model.createResource( "http://jena.hpl.hp.com/2005/12/test-turtle#TestBadSyntax" ); public static final Resource TestSyntax = m_model.createResource( "http://jena.hpl.hp.com/2005/12/test-turtle#TestSyntax" ); public static final Resource Test = m_model.createResource( "http://jena.hpl.hp.com/2005/12/test-turtle#Test" ); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy