
org.swrlapi.drools.owl.axioms.DroolsUnaryIndividualAxiom 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.swrlapi.drools.owl.core.DroolsUnaryObject;
abstract class DroolsUnaryIndividualAxiom extends DroolsUnaryObject implements A
{
private static final long serialVersionUID = 1L;
protected DroolsUnaryIndividualAxiom(@NonNull String individualID)
{
super(individualID);
}
@NonNull public String getiid()
{
return getT1();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy