org.swrlapi.drools.owl.dataranges.DRVisitor 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;
/**
* A visitor that can visit a Drools representation of OWL data ranges, represented by
* {@link org.swrlapi.drools.owl.dataranges.DR}s.
*
* It is modeled on the OWLAPI's {@link org.semanticweb.owlapi.model.OWLDataRangeVisitor}.
*
* @see org.swrlapi.drools.owl.dataranges.DR
* @see org.semanticweb.owlapi.model.OWLDataRangeVisitor
*/
public interface DRVisitor
{
void visit(D dr);
void visit(DCO dr);
void visit(DIO dr);
void visit(DOO dr);
void visit(DUO dr);
void visit(DRR drr);
void visit(DTR dtr);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy