org.semanticweb.owl.validation
Interface SpeciesValidatorReporter

All Known Implementing Classes:
HTMLFragmentReporter, ValidatorLogger

public interface SpeciesValidatorReporter

This class provides functionality for reporting the progress of a species validator.

Version:
$Id: SpeciesValidatorReporter.java,v 1.2 2004/03/05 17:34:48 sean_bechhofer Exp $

Method Summary
 void done(String level)
           
 void explain(int l, int code, String str)
          Inform as to why the validator considers the ontology to be in a particular species.
 void message(String str)
          General information message.
 void ontology(OWLOntology ontology)
           
 

Method Detail

ontology

public void ontology(OWLOntology ontology)

done

public void done(String level)

message

public void message(String str)
General information message.


explain

public void explain(int l,
                    int code,
                    String str)
Inform as to why the validator considers the ontology to be in a particular species. Includes a possible code providing further detailed information along with a message for human consumption.

Parameters:
l - an int value encoding the species
str - a String value


WonderWeb