Interface OWLSupportMonitor
public interface OWLSupportMonitor
This callback interface can be passed to a
DataStoreConnection to receive notifications about
problems occurring while the loaded RDF triples are converted into OWL axioms, and while OWL axioms
are converted into datalog rules.-
Method Summary
Modifier and Type Method Description voidfinishedParsingTriples()Called when conversion of loaded RDF triples into OWL axioms finishes.voidruleTransformationNotification(java.lang.String axiom, java.lang.String message)Called when a problem is encountered during the conversion of OWL axioms into rules.voidstartedParsingTriples()Called when conversion of loaded RDF triples into OWL axioms starts.voidtriplesParsingNotification(java.lang.String message)Called when a problem is encountered during conversion of loaded RDF triples into OWL axioms.
-
Method Details
-
startedParsingTriples
void startedParsingTriples()Called when conversion of loaded RDF triples into OWL axioms starts. -
triplesParsingNotification
void triplesParsingNotification(java.lang.String message)Called when a problem is encountered during conversion of loaded RDF triples into OWL axioms.- Parameters:
message- describes the problem encountered
-
finishedParsingTriples
void finishedParsingTriples()Called when conversion of loaded RDF triples into OWL axioms finishes. -
ruleTransformationNotification
void ruleTransformationNotification(java.lang.String axiom, java.lang.String message)Called when a problem is encountered during the conversion of OWL axioms into rules.- Parameters:
axiom- identifies the OWL axiom that was being processed when the problem occurredmessage- describes the problem encountered
-