Uses of Interface
org.extex.interpreter.ErrorHandler

Packages that use ErrorHandler
org.extex This package contains ExTeX – an implementation of a typesetting engine based on the concepts of TeX
org.extex.engine This package contains the core engine of ExTeX
org.extex.interpreter This package contains the macro expansion engine and all supporting classes. 
org.extex.interpreter.max This package contains the macro expansion engine and supporting classes. 
org.extex.main.tex This package contains some support classes for the ExTeX main program. 
 

Uses of ErrorHandler in org.extex
 

Methods in org.extex with parameters of type ErrorHandler
 void ExTeX.setErrorHandler(ErrorHandler handler)
          Setter for errorHandler.
 

Uses of ErrorHandler in org.extex.engine
 

Methods in org.extex.engine that return ErrorHandler
 ErrorHandler ErrorHandlerFactory.newInstance(java.lang.String type)
          Get an instance of an error handler.
 

Uses of ErrorHandler in org.extex.interpreter
 

Methods in org.extex.interpreter that return ErrorHandler
 ErrorHandler Interpreter.getErrorHandler()
          Getter for the error handler.
 

Methods in org.extex.interpreter with parameters of type ErrorHandler
 void Interpreter.setErrorHandler(ErrorHandler handler)
          Setter for the error handler.
 

Uses of ErrorHandler in org.extex.interpreter.max
 

Methods in org.extex.interpreter.max that return ErrorHandler
 ErrorHandler Max.getErrorHandler()
          Getter for the error handler.
 

Methods in org.extex.interpreter.max with parameters of type ErrorHandler
 void Max.setErrorHandler(ErrorHandler handler)
          Setter for the error handler.
 

Uses of ErrorHandler in org.extex.main.tex
 

Classes in org.extex.main.tex that implement ErrorHandler
 class ErrorHandlerImpl
          This is a simple implementation of the error handler interacting with the user on the command line like TeX does.
 class ErrorHandlerTeXImpl
          This is the error handler in TeX compatibility mode: the message is presented in a TeX-compatible way.