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