edu.stanford.protege.webprotege.place.OWLObjectPropertyItem Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.place;
import org.semanticweb.owlapi.model.OWLObjectProperty;
/**
* @author Matthew Horridge, Stanford University, Bio-Medical Informatics Research Group, Date: 20/05/2014
*/
public class OWLObjectPropertyItem extends Item {
private static final Type TYPE = new Type("ObjectProperty");
public OWLObjectPropertyItem(OWLObjectProperty item) {
super(item);
}
public static Type getType() {
return TYPE;
}
@Override
public Type getAssociatedType() {
return TYPE;
}
@Override
public String getItemRendering() {
return getItem().toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy