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