
org.swrlapi.drools.owl.axioms.DA 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.checkerframework.dataflow.qual.SideEffectFree;
import org.swrlapi.drools.owl.core.DroolsUnaryObject;
import org.swrlapi.drools.owl.core.OE;
/**
* Base class representing an OWL declaration axiom.
*
* @see org.semanticweb.owlapi.model.OWLDeclarationAxiom
*/
abstract class DA extends DroolsUnaryObject implements A
{
private static final long serialVersionUID = 1L;
DA(@NonNull T1 entity)
{
super(entity);
}
@NonNull public T1 getE()
{
return getT1();
}
@NonNull @SideEffectFree @Override public String toString()
{
return getE().toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy