org.semanticweb.owlapi.model
Interface OWLOntologyLoaderListener


public interface OWLOntologyLoaderListener

Author: Matthew Horridge
The University Of Manchester
Bio-Health Informatics Group
Date: 14-Apr-2008

Receives notification of ontology loading starting and finishing from a manager.


Nested Class Summary
static class OWLOntologyLoaderListener.LoadingEvent
           
static class OWLOntologyLoaderListener.LoadingFinishedEvent
          Describes the situation when the loading process for an ontology has finished.
static class OWLOntologyLoaderListener.LoadingStartedEvent
           
 
Method Summary
 void finishedLoadingOntology(OWLOntologyLoaderListener.LoadingFinishedEvent event)
          Called when the process of loading an ontology has finished.
 void startedLoadingOntology(OWLOntologyLoaderListener.LoadingStartedEvent event)
          Called when the process of attempting to load an ontology starts.
 

Method Detail

startedLoadingOntology

void startedLoadingOntology(OWLOntologyLoaderListener.LoadingStartedEvent event)
Called when the process of attempting to load an ontology starts.

Parameters:
event - The loading started event that describes the ontologt that is being loaded.

finishedLoadingOntology

void finishedLoadingOntology(OWLOntologyLoaderListener.LoadingFinishedEvent event)
Called when the process of loading an ontology has finished. This method will be called regardless of whether the ontology could be loaded or not - it merely indicates that the process of attempting to load an ontology has finished.

Parameters:
event - The loading finished event that describes the ontology that was loaded.