Uses of Interface
org.extex.interpreter.Interpreter

Packages that use Interpreter
org.extex This package contains ExTeX – an implementation of a typesetting engine based on the concepts of TeX
org.extex.engine.typesetter This package contains the typesetter support of 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.interpreter.observer.start This package contains definitions for the start observer. 
org.extex.interpreter.observer.stop This package contains definitions for the stop observer. 
org.extex.main.tex This package contains some support classes for the ExTeX main program. 
org.extex.typesetter.tex   
 

Uses of Interpreter in org.extex
 

Methods in org.extex that return Interpreter
protected  Interpreter ExTeX.makeInterpreter(Configuration config, OutputStreamFactory outFactory, ResourceFinder finder, java.lang.String jobname)
          Create a new interpreter.
 Interpreter ExTeX.run()
          Run the program with the parameters already stored in the properties.
 

Methods in org.extex with parameters of type Interpreter
protected  boolean ExTeX.initializeStreams(Interpreter interpreter, java.util.Properties prop)
          Initialize the input streams.
protected  Context ExTeX.loadFormat(java.lang.String fmt, Interpreter interpreter, ResourceFinder finder, java.lang.String jobname, Configuration config, OutputStreamFactory outFactory, TokenFactory tokenFactory)
          Load a format if a non-empty name of a format is given.
protected  Context ExTeX.makeContext(Configuration config, TokenFactory tokenFactory, CoreFontFactory fontFactory, Interpreter interpreter, ResourceFinder finder, java.lang.String jobname, OutputStreamFactory outFactory)
          Prepare the context according to its configuration.
protected  Typesetter ExTeX.makeTypesetter(Interpreter interpreter, Configuration config, OutputStreamFactory outFactory, ResourceFinder finder, CoreFontFactory fontFactory)
          Create a new typesetter.
 

Uses of Interpreter in org.extex.engine.typesetter
 

Methods in org.extex.engine.typesetter with parameters of type Interpreter
 OutputRoutine OutputRoutineFactory.newInstance(Interpreter interpreter)
          Create a new output routine.
 Typesetter TypesetterFactory.newInstance(java.lang.String type, Context context, BackendDriver backend, Interpreter interpreter)
          Get an instance of a typesetter.
 

Uses of Interpreter in org.extex.interpreter
 

Methods in org.extex.interpreter that return Interpreter
 Interpreter InterpreterFactory.newInstance(java.util.Properties properties, OutputStreamFactory outFactory)
          Get a instance for the interface Interpreter.
 

Uses of Interpreter in org.extex.interpreter.max
 

Classes in org.extex.interpreter.max that implement Interpreter
 class Max
          This is a reference implementation for a MAcro eXpander.
 class Moritz
          This class provides the layer above the input streams and the tokenizer.
 class StringSource
          This class provides a token source which is fed from a string.
 

Uses of Interpreter in org.extex.interpreter.observer.start
 

Methods in org.extex.interpreter.observer.start with parameters of type Interpreter
 void StartObserver.update(Interpreter interpreter)
          This method is meant to be invoked just after the start has occurred.
 void StartObserverList.update(Interpreter interpreter)
          Invoke all observers on the list to inform them of the start operation.
 

Uses of Interpreter in org.extex.interpreter.observer.stop
 

Methods in org.extex.interpreter.observer.stop with parameters of type Interpreter
 void StopObserver.update(Interpreter interpreter)
          This method is meant to be invoked just before the engine is stopping.
 void StopObserverList.update(Interpreter interpreter)
          This method is meant to be invoked just before the engine is stopping.
 

Uses of Interpreter in org.extex.main.tex
 

Methods in org.extex.main.tex that return Interpreter
protected  Interpreter TeX.makeInterpreter(Configuration config, OutputStreamFactory outFactory, ResourceFinder finder, java.lang.String jobname)
          Create a new interpreter.
 

Methods in org.extex.main.tex with parameters of type Interpreter
protected  boolean TeX.initializeStreams(Interpreter interpreter, java.util.Properties properties)
          Initialize the input streams.
 

Constructors in org.extex.main.tex with parameters of type Interpreter
TeXInputReader(java.util.logging.Logger logger, java.lang.String charset, Interpreter interpreter)
          Creates a new object.
 

Uses of Interpreter in org.extex.typesetter.tex
 

Constructors in org.extex.typesetter.tex with parameters of type Interpreter
TeXOutputRoutine(Interpreter interpreter)
          Creates a new object.