Uses of Interface
edu.cmu.sei.aadl.modelsupport.errorreporting.ParseErrorReporter

Packages that use ParseErrorReporter
edu.cmu.sei.aadl.modelsupport.errorreporting   
 

Uses of ParseErrorReporter in edu.cmu.sei.aadl.modelsupport.errorreporting
 

Classes in edu.cmu.sei.aadl.modelsupport.errorreporting that implement ParseErrorReporter
 class AbstractParseErrorReporter
          Base implementation that insures messages counts are updated.
 class ChainedParseErrorReporter
           
 class LogParseErrorReporter
          An implementation of edu.cmu.sei.aadl.model.pluginsupport.ParseErrorReporter that reports errors to the Eclipse "error" log.
 class MarkerParseErrorReporter
          An implementation of edu.cmu.sei.aadl.model.pluginsupport.ParseErrorReporter that reports errors as markers on the aadl text files.
 class NullParseErrorReporter
          An implementation of edu.cmu.sei.aadl.model.pluginsupport.ParseErrorReporter that silently discards all reported errors.
 class QueuingParserErrorReporter
          An implementation of edu.cmu.sei.aadl.model.pluginsupport.ParseErrorReporter that reports errors by storing them in a queue that can be retreived by calling QueuingParserErrorReporter.getErrors().
 class WriterParseErrorReporter
          An implementation of edu.cmu.sei.aadl.model.pluginsupport.ParseErrorReporter that outputs the messages to a Java Writer.
 

Methods in edu.cmu.sei.aadl.modelsupport.errorreporting that return ParseErrorReporter
 ParseErrorReporter ParseErrorReporterManager.getReporter(org.eclipse.core.resources.IResource aadlRsrc)
          Get the error reporter that is associated with AADL Text file named by the given filename.
 ParseErrorReporter WriterParseErrorReporter.Factory.getReporterFor(org.eclipse.core.resources.IResource aadlRsrc)
          The given AADL IResource is allowed to be null.
 ParseErrorReporter LogParseErrorReporter.Factory.getReporterFor(org.eclipse.core.resources.IResource aadlRsrc)
          The given AADL IResource is allowed to be null.
 ParseErrorReporter ChainedParseErrorReporter.Factory.getReporterFor(org.eclipse.core.resources.IResource aadlRsrc)
           
 ParseErrorReporter ParseErrorReporterFactory.getReporterFor(org.eclipse.core.resources.IResource aadlRsrc)
          Obtain an error reporter to use for the AADL text file associated with the given IResource.
 ParseErrorReporter MarkerParseErrorReporter.Factory.getReporterFor(org.eclipse.core.resources.IResource aadlRsrc)