//FetaVocabulary.java

package org.biomoby.client.rdf.vocabulary;
import com.hp.hpl.jena.rdf.model.*;
/**
 * 
 * @author Eddie
 * <p>created Nov 10, 2005
 * <p>This class encapsulates the vocabulary DC that is OWL-DL. Comes from Protege.
 */
public class DC_PROTEGE {

	    public static String getURI()
	    {
	        return "http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl#";
	    }

	    private static Model m_model;
		public static final Property publisher;
	    public static final String NS = "http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl#";
	    public static final Property creator;
	    public static final Property format;
	    public static final Property identifier;

	    static 
	    {
	        m_model = ModelFactory.createDefaultModel();
	        publisher = m_model.createProperty(NS+ "publisher");
	        creator = m_model.createProperty(NS+ "creator");
	        identifier = m_model.createProperty(NS+ "identifier");
	        format = m_model.createProperty(NS+ "format");
	        
	    }
	}
