forked from andrawaag/EnsemblLinksetExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDul.java
20 lines (14 loc) · 797 Bytes
/
Dul.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* CVS $Id: $ */
import com.hp.hpl.jena.rdf.model.*;
public class Dul {
/** <p>The RDF model that holds the vocabulary terms</p> */
private static final Model m_model = ModelFactory.createDefaultModel();
/** <p>The namespace of the vocabulary as a string</p> */
public static final String NS = "\"http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#";
/** <p>The namespace of the vocabulary as a string</p>
* @see #NS */
public static String getURI() {return NS;}
/** <p>The namespace of the vocabulary as a resource</p> */
public static final Resource NAMESPACE = m_model.createResource( NS );
public static final Property expresses = m_model.createProperty("http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#expresses");
}