org.swrlapi.drools.owl.axioms.A Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi-drools-engine Show documentation
Show all versions of swrlapi-drools-engine Show documentation
Drools implementation of SWRLAPI-based SWRL rule engine
package org.swrlapi.drools.owl.axioms;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.swrlapi.drools.extractors.DroolsOWLAxiomExtractor;
import org.swrlapi.drools.owl.core.OO;
import org.swrlapi.exceptions.TargetSWRLRuleEngineException;
/**
* This interface represents an OWL axiom in Drools.
*
* @see org.semanticweb.owlapi.model.OWLAxiom
*/
public interface A extends OO
{
@NonNull OWLAxiom extract(@NonNull DroolsOWLAxiomExtractor extractor) throws TargetSWRLRuleEngineException;
void visit(@NonNull AVisitor visitor);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy