Examples of OWLAxiomChange


Examples of org.semanticweb.owl.model.OWLAxiomChange


    protected boolean isMetricInvalidated(List<? extends OWLOntologyChange> changes) {
        for(OWLOntologyChange change : changes) {
            if(change.isAxiomChange()) {
                OWLAxiomChange axChg = (OWLAxiomChange) change;
                if(axChg.getAxiom() instanceof OWLImportsDeclaration) {
                    return true;
                }
            }
        }
        return false;
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLAxiomChange

            @Nonnull List<? extends OWLOntologyChange> changes)
            throws OWLException {
        entities.clear();
        for (OWLOntologyChange change : changes) {
            if (change.isAxiomChange()) {
                OWLAxiomChange axiomChange = (OWLAxiomChange) change;
                entities.addAll(axiomChange.getSignature());
            }
        }
        ontologiesChanged();
    }
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLAxiomChange

    public void ontologiesChanged(List<? extends OWLOntologyChange> changes) throws OWLException {
        entities.clear();
        for (OWLOntologyChange change : changes) {
            if (change.isAxiomChange()) {
                OWLAxiomChange axiomChange = (OWLAxiomChange) change;
                entities.addAll(axiomChange.getEntities());
            }
        }
        ontologiesChanged();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.