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