Uses of Interface
org.eclipse.actf.util.logging.IReporter

Packages that use IReporter
org.eclipse.actf.core   
org.eclipse.actf.util.logging   
org.eclipse.actf.validation.reports   
org.eclipse.actf.validation.validators   
 

Uses of IReporter in org.eclipse.actf.core
 

Methods in org.eclipse.actf.core that return IReporter
protected  IReporter ActfCorePlugin.getTracer()
           
 

Uses of IReporter in org.eclipse.actf.util.logging
 

Classes in org.eclipse.actf.util.logging that implement IReporter
 class AbstractReporter
          base implementation of a Reporter.
 class PrintWriterReporter
          implementation to generate report records to the specified PrintWriter object.
 

Methods in org.eclipse.actf.util.logging that return IReporter
static IReporter AbstractReporter.getReporter(int traceLevel, String traceStream)
          utility method to construct reporters
static IReporter LoggingUtil.getTracer()
          returns the active tracer
 

Methods in org.eclipse.actf.util.logging with parameters of type IReporter
static void LoggingUtil.setTracer(IReporter reporter)
          set the trcer with the given reporter
 

Uses of IReporter in org.eclipse.actf.validation.reports
 

Classes in org.eclipse.actf.validation.reports that implement IReporter
 class ValidationReporter
          used to store logged records for later retrieval.
 

Uses of IReporter in org.eclipse.actf.validation.validators
 

Methods in org.eclipse.actf.validation.validators that return IReporter
 IReporter AccessibilityValidationContext.getReporter()
          convenience method for obtaining the reporter associated with this context.
 

Methods in org.eclipse.actf.validation.validators with parameters of type IReporter
 void AccessibilityValidationContext.setReporter(IReporter reporter)
          set the reporter for this context.
 

Constructors in org.eclipse.actf.validation.validators with parameters of type IReporter
AccessibilityValidationContext(IModel arch, ICodeProcessor codeProc, IReporter reporter, INodeLocator locator, Set validatedComps, Map componentMap)