Uses of Interface
org.extex.resource.ResourceFinder

Packages that use ResourceFinder
org.extex This package contains ExTeX – an implementation of a typesetting engine based on the concepts of TeX
org.extex.backend This package contains the backends of ExTeX
org.extex.backend.documentWriter.itextpdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.postscript This package contains a DocumentWriter to produce PostScript and Encapsulated PostScript. 
org.extex.backend.documentWriter.postscript.converter This package contains converters for the a PostScript DocumentWriter. 
org.extex.engine This package contains the core engine of ExTeX
org.extex.engine.backend This package contains the backend support of the core engine of ExTeX
org.extex.font This package contains the core data types for fonts in ExTeX. 
org.extex.font.format.afm This package contains the definitions and implementations for the AFM (Type1) font handling in ExTeX. 
org.extex.font.format.texencoding This package contains the definitions and implementations for the font-enc-file. 
org.extex.font.format.tfm This package contains the definitions and implementations for the TFM-font-metric handling in ExTeX. 
org.extex.font.format.vf This package contains the definitions and implementations for the VF-font-metric handling in ExTeX. 
org.extex.framework This package contains some classes and interfaces for dealing with components in general. 
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.language This package contains classes and implementations which describe a language. 
org.extex.language.impl This package contains implementations which describe a language. 
org.extex.main.tex This package contains some support classes for the ExTeX main program. 
org.extex.resource This package contains some classes and interfaces for dealing with searching for resources like files. 
org.extex.unit.extex   
org.extex.unit.omega.ocp This package contains primitives defined in Omega. 
org.extex.unit.omega.ocp.util This package contains utilities for OCPs. 
org.extex.unit.omega.translation This package contains primitives defined in Omega for tranlations. 
 

Uses of ResourceFinder in org.extex
 

Methods in org.extex that return ResourceFinder
protected  ResourceFinder ExTeX.makeResourceFinder(Configuration config)
          Create a ResourceFinder.
 

Methods in org.extex with parameters of type ResourceFinder
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  BackendDriver ExTeX.makeBackend(Configuration config, OutputStreamFactory outFactory, DocumentWriterOptions options, ResourceFinder finder, CoreFontFactory fontFactory)
          Create a new document writer.
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  CoreFontFactory ExTeX.makeFontFactory(Configuration config, ResourceFinder finder)
          Create a new font factory.
protected  Interpreter ExTeX.makeInterpreter(Configuration config, OutputStreamFactory outFactory, ResourceFinder finder, java.lang.String jobname)
          Create a new interpreter.
protected  LanguageManager ExTeX.makeLanguageManager(Configuration config, OutputStreamFactory outFactory, ResourceFinder finder)
          Prepare the hyphenation manager according to its configuration.
protected  TokenStreamFactory ExTeX.makeTokenStreamFactory(Configuration config, ResourceFinder finder)
          Create a TokenStreamFactory.
protected  Typesetter ExTeX.makeTypesetter(Interpreter interpreter, Configuration config, OutputStreamFactory outFactory, ResourceFinder finder, CoreFontFactory fontFactory)
          Create a new typesetter.
 

Uses of ResourceFinder in org.extex.backend
 

Methods in org.extex.backend with parameters of type ResourceFinder
 void BackendDriverImpl.setResourceFinder(ResourceFinder f)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.backend.documentWriter.itextpdf
 

Methods in org.extex.backend.documentWriter.itextpdf with parameters of type ResourceFinder
 void TwoPassDocumentWriter.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.backend.documentWriter.postscript
 

Methods in org.extex.backend.documentWriter.postscript with parameters of type ResourceFinder
 void AbstractPostscriptWriter.setResourceFinder(ResourceFinder resourceFinder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.backend.documentWriter.postscript.converter
 

Methods in org.extex.backend.documentWriter.postscript.converter with parameters of type ResourceFinder
 void AbstractConverter.setResourceFinder(ResourceFinder resourceFinder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.engine
 

Constructors in org.extex.engine with parameters of type ResourceFinder
ResourceFinderInjector(ResourceFinder finder)
          Creates a new object.
 

Uses of ResourceFinder in org.extex.engine.backend
 

Methods in org.extex.engine.backend with parameters of type ResourceFinder
 BackendDriver BackendFactory.newInstance(java.lang.String type, OutputStreamFactory outFactory, ResourceFinder finder, java.util.Properties properties, java.lang.String creator, CoreFontFactory fontFactory, ColorConverter colorConverter)
          Acquire an instance of a back-end driver.
 

Uses of ResourceFinder in org.extex.font
 

Subinterfaces of ResourceFinder in org.extex.font
 interface CoreFontFactory
          This interface describes the features of a font factory needed by the core.
 interface FontFactory
          This interface describes a factory to manage fonts.
 

Classes in org.extex.font that implement ResourceFinder
 class FontFactoryImpl
          Factory to load a font.
 

Methods in org.extex.font with parameters of type ResourceFinder
 void FontFactoryImpl.setResourceFinder(ResourceFinder finder)
           
 

Uses of ResourceFinder in org.extex.font.format.afm
 

Methods in org.extex.font.format.afm with parameters of type ResourceFinder
 void LoadableAfmFont.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.font.format.texencoding
 

Constructors in org.extex.font.format.texencoding with parameters of type ResourceFinder
EncFactory(ResourceFinder afinder)
          Create a new object.
 

Uses of ResourceFinder in org.extex.font.format.tfm
 

Methods in org.extex.font.format.tfm with parameters of type ResourceFinder
 java.util.Map<java.lang.Integer,UnicodeChar> U2tFactory.loadT2u(java.lang.String name, ResourceFinder finder)
          Returns the t2u map, or null, if the property file is not found.
 java.util.Map<UnicodeChar,java.lang.Integer> U2tFactory.loadU2t(java.lang.String name, ResourceFinder finder)
          Returns the u2t map, or null, if the property file is not found.
 void LoadableTfmFont.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.font.format.vf
 

Methods in org.extex.font.format.vf with parameters of type ResourceFinder
 void LoadableVfFont.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.framework
 

Methods in org.extex.framework that return ResourceFinder
 ResourceFinder AbstractFactory.getResourceFinder()
          Getter for resourceFinder.
 

Methods in org.extex.framework with parameters of type ResourceFinder
 void AbstractFactory.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.interpreter
 

Methods in org.extex.interpreter with parameters of type ResourceFinder
 void LoadUnit.define(Configuration configuration, TokenFactory tokenFactory, Context context, Typesetter typesetter, java.util.logging.Logger outputLogger, OutputStreamFactory outputFactory, ResourceFinder resourcefinder)
          Scan a configuration and define the primitives found.
static void LoadUnit.loadUnit(Configuration configuration, Context context, TokenSource source, Typesetter typesetter, java.util.logging.Logger logger, OutputStreamFactory outputFactory, ResourceFinder resourcefinder)
          Prepare the primitives according to their configuration.
 void Interpreter.loadUnit(java.lang.String name, ResourceFinder finder)
          Load a unit.
 

Uses of ResourceFinder in org.extex.interpreter.max
 

Methods in org.extex.interpreter.max with parameters of type ResourceFinder
 void Max.loadUnit(java.lang.String name, ResourceFinder resourceFinder)
          Load a unit.
 

Uses of ResourceFinder in org.extex.language
 

Methods in org.extex.language with parameters of type ResourceFinder
 LanguageManager LanguageManagerFactory.newInstance(java.lang.String type, OutputStreamFactory outFactory, ResourceFinder finder)
          Get an instance of a LanguageManager.
 

Uses of ResourceFinder in org.extex.language.impl
 

Methods in org.extex.language.impl with parameters of type ResourceFinder
 void LoadingLanguageManager.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.main.tex
 

Classes in org.extex.main.tex that implement ResourceFinder
 class ResourceFinderImpl
          This ResourceFinder queries the user for the name of the file to use and tries to find it via its parent.
 

Methods in org.extex.main.tex with parameters of type ResourceFinder
protected  BackendDriver TeX.makeBackend(Configuration config, OutputStreamFactory outFactory, DocumentWriterOptions options, ResourceFinder finder, CoreFontFactory fontFactory)
          Create a new document writer.
protected  Interpreter TeX.makeInterpreter(Configuration config, OutputStreamFactory outFactory, ResourceFinder finder, java.lang.String jobname)
          Create a new interpreter.
protected  TokenStreamFactory TeX.makeTokenStreamFactory(Configuration config, ResourceFinder finder)
          Create a TokenStreamFactory.
 void ResourceFinderImpl.setParent(ResourceFinder parent)
          Setter for the parent resource finder.
 

Uses of ResourceFinder in org.extex.resource
 

Classes in org.extex.resource that implement ResourceFinder
 class AbstractFinder
          This the abstract base class to provide the infrastructure for resource finders.
 class ClasspathArchiveFinder
          This resource finder utilizes the Java class finder to search in the class path for index files and resolve a resource via those.
 class ClasspathFinder
          This resource finder utilizes the Java class finder to search in the class path.
 class FileFinder
          This file finder searches for the file in different directories and with several extensions.
 class FileFinderRPath
          This file finder search recursively in a directory.
 class LsrFinder
          This resource finder searches a file in a ls-R file database as present in a texmf tree.
 class ResourceFinderList
          This class provides a means to combine several resource finders to be queried as one.
 

Methods in org.extex.resource that return ResourceFinder
 ResourceFinder ResourceFinderFactory.createResourceFinder(Configuration config, java.util.logging.Logger logger, java.util.Properties properties, InteractionIndicator provider)
          Get an instance of a resource finder.
 

Methods in org.extex.resource with parameters of type ResourceFinder
 boolean ResourceFinderList.add(ResourceFinder finder)
          
 void ResourceFinderList.setParent(ResourceFinder theParent)
          Setter for the parent resource finder.
 void RecursiveFinder.setParent(ResourceFinder parent)
          Setter for the parent finder.
 void ResourceAware.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.unit.extex
 

Methods in org.extex.unit.extex with parameters of type ResourceFinder
 void EnsureLoaded.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.unit.omega.ocp
 

Methods in org.extex.unit.omega.ocp with parameters of type ResourceFinder
 void OcpPrimitive.setResourceFinder(ResourceFinder resourceFinder)
          Setter for the resource finder.
 

Uses of ResourceFinder in org.extex.unit.omega.ocp.util
 

Methods in org.extex.unit.omega.ocp.util with parameters of type ResourceFinder
static Ocp Ocp.load(java.lang.String resource, ResourceFinder finder)
          This is a factory method for OCPs.
static Ocp OcpUtil.scanOcp(Context context, TokenSource source, Typesetter typesetter, ResourceFinder finder)
          Get an ocp.
 

Uses of ResourceFinder in org.extex.unit.omega.translation
 

Methods in org.extex.unit.omega.translation with parameters of type ResourceFinder
 void InputTranslation.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 void DefaultOutputTranslation.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.
 void DefaultInputTranslation.setResourceFinder(ResourceFinder finder)
          Setter for the resource finder.