Skip to content

Commit

Permalink
added missing class
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Fernandez committed Apr 3, 2012
1 parent 5070a4d commit 271faa0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/de/fuberlin/wiwiss/pubby/vocab/RDF.java
@@ -0,0 +1,19 @@
package de.fuberlin.wiwiss.pubby.vocab;

import com.hp.hpl.jena.rdf.model.Model;
import com.hp.hpl.jena.rdf.model.ModelFactory;
import com.hp.hpl.jena.rdf.model.Property;

/**
* Some vocabulary definitions from http://www.w3.org/1999/02/22-rdf-syntax-ns#
* @author Sergio Fernández (sergio.fernandez@fundacionctic.org)
*/
public class RDF {

private final static String NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";

private static Model m_model = ModelFactory.createDefaultModel();

public static final Property type = m_model.createProperty(NS+"type");

}

0 comments on commit 271faa0

Please sign in to comment.