org.eclipse.actf.validation.events
Class ReportAdapter

java.lang.Object
  extended by org.eclipse.actf.validation.events.ReportAdapter
All Implemented Interfaces:
IReportListener

public class ReportAdapter
extends Object
implements IReportListener

convenience class for implementing report listener

Author:
Mike Squillace

Constructor Summary
ReportAdapter()
           
 
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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ReportAdapter

public ReportAdapter()
Method Detail

reportStarted

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

Specified by:
reportStarted in interface IReportListener

reportCompleted

public void reportCompleted(ReportEvent e)
Description copied from interface: IReportListener
call-back indicating that a validation report has ended. Other creation contexts and reports may follow a validation report.

Specified by:
reportCompleted in interface IReportListener

creationContextStarted

public void creationContextStarted(ReportEvent e)
Description copied from interface: IReportListener
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.

Specified by:
creationContextStarted in interface IReportListener

creationContextCompleted

public void creationContextCompleted(ReportEvent e)
Description copied from interface: IReportListener
call-back indicating that a creation context has ended. Creation contexts are typically followed by a validation report.

Specified by:
creationContextCompleted in interface IReportListener