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
    void finishedParsingTriples()
    Called when conversion of loaded RDF triples into OWL axioms finishes.
    void ruleTransformationNotification​(java.lang.String axiom, java.lang.String message)
    Called when a problem is encountered during the conversion of OWL axioms into rules.
    void startedParsingTriples()
    Called when conversion of loaded RDF triples into OWL axioms starts.
    void triplesParsingNotification​(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 occurred
      message - describes the problem encountered