org.eclipse.actf.validation.events
Interface IReportListener

All Known Implementing Classes:
ReportAdapter

public interface IReportListener

register with a validation launcher to receive notifications of various stages of a validation reporting process.

Author:
Mike Squillace

Method Summary
 void creationContextCompleted(ReportEvent e)
          call-back indicating that a creation context has ended.
 void creationContextStarted(ReportEvent e)
          call-back indicating that a creation context for an instantiated element has begun.
 void reportCompleted(ReportEvent e)
          call-back indicating that a validation report has ended.
 void reportStarted(ReportEvent e)
          call-back indicating that a validation report has been started.
 

Method Detail

reportStarted

void reportStarted(ReportEvent e)
call-back indicating that a validation report has been started. Validation reports are started only after the creation contexts have been created.

Parameters:
e -

reportCompleted

void reportCompleted(ReportEvent e)
call-back indicating that a validation report has ended. Other creation contexts and reports may follow a validation report.

Parameters:
e -

creationContextStarted

void creationContextStarted(ReportEvent e)
call-back indicating that a creation context for an instantiated element has begun. After a set of creation contexts has been processed, a validation report typically follows.

Parameters:
e -

creationContextCompleted

void creationContextCompleted(ReportEvent e)
call-back indicating that a creation context has ended. Creation contexts are typically followed by a validation report.

Parameters:
e -