Cross Reference: DC.java
xref
: /
owl-s
/
src
/
org
/
mindswap
/
owl
/
vocabulary
/
DC.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
2
ronwalf
/*
2
ronwalf
* Created on 08.09.2005
2
ronwalf
*/
2
ronwalf
package
org
.
mindswap
.
owl
.
vocabulary
;
2
ronwalf
2
ronwalf
import
java
.
net
.
URI
;
2
ronwalf
2
ronwalf
import
org
.
mindswap
.
owl
.
EntityFactory
;
2
ronwalf
import
org
.
mindswap
.
owl
.
OWLDataProperty
;
2
ronwalf
import
org
.
mindswap
.
utils
.
URIUtils
;
2
ronwalf
2
ronwalf
/**
2
ronwalf
* Class with static references to the Dublin Core (DC) ontology.
2
ronwalf
*
38
daenzerorama
*
@author
Michael Daenzer (University of Zurich)
2
ronwalf
*
@see
<a href="
http://dublincore.org/
">Dublin Core Metadata Initiative</a>
2
ronwalf
*
@see
<a href="
http://dublincore.org/2003/03/24/dces
#">Dublin Core Ontology</a>
2
ronwalf
*/
2
ronwalf
public
class
DC
{
2
ronwalf
public
final
static
String
ns
=
"
http://purl.org/dc/elements/1.1.owl
#"
;
2
ronwalf
2
ronwalf
public
final
static
URI
getURI
() {
return
URI
.
create
(
ns
); }
2
ronwalf
2
ronwalf
public
final
static
OWLDataProperty
creator
=
2
ronwalf
EntityFactory
.
createDataProperty
(
URIUtils
.
createURI
(
ns
+
"creator"
));
2
ronwalf
public
final
static
OWLDataProperty
contributor
=
2
ronwalf
EntityFactory
.
createDataProperty
(
URIUtils
.
createURI
(
ns
+
"contributor"
));
2
ronwalf
public
final
static
OWLDataProperty
date
=
2
ronwalf
EntityFactory
.
createDataProperty
(
URIUtils
.
createURI
(
ns
+
"date"
));
2
ronwalf
public
final
static
OWLDataProperty
rights
=
2
ronwalf
EntityFactory
.
createDataProperty
(
URIUtils
.
createURI
(
ns
+
"rights"
));
2
ronwalf
2
ronwalf
}