
org.swrlapi.drools.owl.dataranges.DCO 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.dataranges;
import org.checkerframework.checker.nullness.qual.NonNull;
// TODO Data complement of data range not implemented
/**
* Class representing an OWL data complement of data range
*
* @see org.semanticweb.owlapi.model.OWLDataComplementOf
*/
public class DCO implements DR
{
private static final long serialVersionUID = 1L;
@NonNull private final String drid;
@NonNull private final String complementDataRangeID;
public DCO(@NonNull String drid, @NonNull String complementDataRangeID)
{
this.drid = drid;
this.complementDataRangeID = complementDataRangeID;
}
@NonNull @Override public String getdrid()
{
return this.drid;
}
@NonNull public String getComplementDataRangeID()
{
return this.complementDataRangeID;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy