Uses of Interface
org.extex.scanner.type.file.OutFile

Packages that use OutFile
org.extex.base.type.file This package contains the basic file data types for ExTeX
org.extex.interpreter.context This package contains the container for data in the interpreter. 
org.extex.interpreter.max.context This package contains a reference implementation for the Context
org.extex.interpreter.type This package contains the basic data types for ExTeX. 
org.extex.typesetter This package contains the typesetter definitions for ExTeX. 
org.extex.unit.tex.file This package contains primitives to handle files. 
org.extex.unit.tex.file.nodes This package contains node types used for handling delayed file operations. 
 

Uses of OutFile in org.extex.base.type.file
 

Classes in org.extex.base.type.file that implement OutFile
 class ExecuteFile
          This is a class presenting itself as an OutFile which sends the tokens written to it to the underlying operating system for the execution in a shell.
 class LogFile
          This implementation of an OutFile encapsulates a Logger.
 class OutputFile
          This class holds an output file onto which tokens can be written.
 class UserAndLogFile
          This implementation of an OutFile encapsulates a Logger.
 

Uses of OutFile in org.extex.interpreter.context
 

Methods in org.extex.interpreter.context that return OutFile
 OutFile ContextFile.getOutFile(java.lang.String name)
          Getter for an output file descriptor.
 

Methods in org.extex.interpreter.context with parameters of type OutFile
 void ContextFile.setOutFile(java.lang.String name, OutFile file, boolean global)
          Setter for a outfile descriptor.
 

Uses of OutFile in org.extex.interpreter.max.context
 

Methods in org.extex.interpreter.max.context that return OutFile
 OutFile GroupImpl.getOutFile(java.lang.String name)
          Getter for the output file descriptor.
 OutFile Group.getOutFile(java.lang.String name)
          Getter for the output file descriptor.
 OutFile ContextImpl.getOutFile(java.lang.String name)
          Getter for an output file descriptor.
 

Methods in org.extex.interpreter.max.context with parameters of type OutFile
 void GroupImpl.setOutFile(java.lang.String name, OutFile file, boolean global)
          Setter for the output file for a given name.
 void Group.setOutFile(java.lang.String name, OutFile file, boolean global)
          Setter for the output file for a given name.
 void ContextImpl.setOutFile(java.lang.String name, OutFile file, boolean global)
          Setter for a output file descriptor.
 

Uses of OutFile in org.extex.interpreter.type
 

Methods in org.extex.interpreter.type that return OutFile
 OutFile TokensWriter.write(java.lang.String key, Tokens toks, Context context)
          Immediately write some tokens to a write register.
 

Uses of OutFile in org.extex.typesetter
 

Methods in org.extex.typesetter that return OutFile
 OutFile PageContext.getOutFile(java.lang.String key)
          Getter for an output file descriptor.
 

Methods in org.extex.typesetter with parameters of type OutFile
 void PageContext.setOutFile(java.lang.String key, OutFile file, boolean global)
          Setter for a outfile descriptor.
 

Uses of OutFile in org.extex.unit.tex.file
 

Methods in org.extex.unit.tex.file that return OutFile
 OutFile Write.write(java.lang.String key, Tokens toks, Context context)
          Immediately write some tokens to a write register.
 

Uses of OutFile in org.extex.unit.tex.file.nodes
 

Constructors in org.extex.unit.tex.file.nodes with parameters of type OutFile
WhatsItOpenNode(java.lang.String theKey, OutFile outFile, java.lang.String encoding, TokenStreamFactory factory)
          Creates a new object.