org.swrlapi.drools.owl.classes.CE 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.classes;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.swrlapi.drools.owl.core.OO;
import org.swrlapi.drools.swrl.BA;
/**
* This interface represents an OWL class expression in a Drools knowledge base.
*
* We do not have an extractor associated with class expressions because our OWL 2 RL reasoner does not create new class
* expressions during reasoning. Hence, we can simply keep track of the originally supplied class expressions using its
* ID, which we keep track of using the {@link org.swrlapi.core.OWLObjectResolver} class.
*
* @see org.semanticweb.owlapi.model.OWLClassExpression
*/
public interface CE extends OO, BA
{
@NonNull String getceid();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy