
edu.stanford.protege.webprotege.entity.OWLPropertyData Maven / Gradle / Ivy
package edu.stanford.protege.webprotege.entity;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.semanticweb.owlapi.model.OWLProperty;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 03/12/2012
*/
public abstract class OWLPropertyData extends OWLEntityData {
@JsonIgnore
public abstract boolean isOWLAnnotationProperty();
@Override
public OWLProperty getEntity() {
return (OWLProperty) super.getEntity();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy