org.swrlapi.drools.owl.axioms.DroolsBinaryClassesAxiom 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.DroolsBinaryObject;
abstract class DroolsBinaryClassesAxiom extends DroolsBinaryObject implements A
{
private static final long serialVersionUID = 1L;
protected DroolsBinaryClassesAxiom(@NonNull String class1ID, @NonNull String class2ID)
{
super(class1ID, class2ID);
}
@NonNull public String getc1id()
{
return getT1();
}
@NonNull public String getc2id()
{
return getT2();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy