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 SummaryModifier 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- 
startedParsingTriplesvoid startedParsingTriples()Called when conversion of loaded RDF triples into OWL axioms starts.
- 
triplesParsingNotificationvoid 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
 
- 
finishedParsingTriplesvoid finishedParsingTriples()Called when conversion of loaded RDF triples into OWL axioms finishes.
- 
ruleTransformationNotificationvoid 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 occurred
- message- describes the problem encountered
 
 
-