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

org.coode.suggestor.impl.InRangeFillerSanctionRule Maven / Gradle / Ivy

/**
 * Date: Dec 17, 2007
 *
 * code made available under Mozilla Public License (http://www.mozilla.org/MPL/MPL-1.1.html)
 *
 * copyright 2007, The University of Manchester
 *
 * @author Nick Drummond, The University Of Manchester, Bio Health Informatics Group
 */
package org.coode.suggestor.impl;

import org.coode.suggestor.api.FillerSanctionRule;
import org.coode.suggestor.api.FillerSuggestor;
import org.coode.suggestor.util.ReasonerHelper;
import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLDataProperty;
import org.semanticweb.owlapi.model.OWLDataRange;
import org.semanticweb.owlapi.model.OWLObjectPropertyExpression;

/** Checks if the filler is in the asserted range. */
public class InRangeFillerSanctionRule implements FillerSanctionRule {
    private ReasonerHelper reasonerHelper;

    @Override
    public void setSuggestor(FillerSuggestor fs) {
        reasonerHelper = new ReasonerHelper(fs.getReasoner());
    }

    @Override
    public boolean meetsSanction(OWLClassExpression c, OWLObjectPropertyExpression p,
            OWLClassExpression f) {
        return reasonerHelper.isInAssertedRange(p, f);
    }

    @Override
    public boolean meetsSanction(OWLClassExpression c, OWLDataProperty p, OWLDataRange f) {
        return reasonerHelper.isInAssertedRange(p, f);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy