All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.protege.webprotege.object.OWLObjectPropertyExpressionSelector Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.object;

import org.semanticweb.owlapi.model.EntityType;
import org.semanticweb.owlapi.model.OWLObjectProperty;
import org.semanticweb.owlapi.model.OWLObjectPropertyExpression;

import javax.inject.Inject;
import java.util.Comparator;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 04/02/15
 */
public class OWLObjectPropertyExpressionSelector extends OWLEntitySelector {

    @Inject
    public OWLObjectPropertyExpressionSelector(Comparator entityComparator) {
        super(EntityType.OBJECT_PROPERTY, entityComparator);
    }

    @Override
    protected OWLObjectPropertyExpression toType(OWLObjectProperty entity) {
        return entity;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy