Uses of Interface
org.extex.language.Language

Packages that use Language
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.language This package contains classes and implementations which describe a language. 
org.extex.language.hyphenation.base This package contains the base hyphenation table implementation. 
org.extex.language.hyphenation.liang This package contains a implementation for an hyphenation engine. 
org.extex.language.impl This package contains implementations which describe a language. 
org.extex.typesetter.tc This package contains the declarations for a typesetting context. 
org.extex.unit.tex.hyphen This package contains the primitives for hyphenations in ExTeX. 
 

Uses of Language in org.extex.interpreter.context
 

Methods in org.extex.interpreter.context that return Language
 Language Context.getLanguage(java.lang.String language)
          Getter for the hyphenation record for a given language.
 

Methods in org.extex.interpreter.context with parameters of type Language
 void Context.set(Language language, boolean global)
          Setter for the language in the current typesetting context.
 

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

Methods in org.extex.interpreter.max.context that return Language
 Language ContextImpl.getLanguage(java.lang.String language)
          Getter for the hyphenation record for a given language.
 

Methods in org.extex.interpreter.max.context with parameters of type Language
 void ContextImpl.set(Language language, boolean global)
          Setter for the language in the current typesetting context.
 

Uses of Language in org.extex.language
 

Subinterfaces of Language in org.extex.language
 interface ModifiableLanguage
          This interface extends the interface Language with the ability to receive a LigatureBuilder.
 

Methods in org.extex.language that return Language
 Language LanguageManager.getLanguage(java.lang.String index)
          Return the Language for a given name.
 

Uses of Language in org.extex.language.hyphenation.base
 

Classes in org.extex.language.hyphenation.base that implement Language
 class BaseHyphenationTable
          This class stores the values for hyphenations and hyphenates words.
 

Uses of Language in org.extex.language.hyphenation.liang
 

Classes in org.extex.language.hyphenation.liang that implement Language
 class CompressedLiangsHyphenationTable
          This class implements Liang's algorithm for hyphenation with a compressed hyphenation tree.
 class LiangsHyphenationTable
          This class stores the values for hyphenations and hyphenates words.
 

Uses of Language in org.extex.language.impl
 

Subinterfaces of Language in org.extex.language.impl
 interface ManagedLanguage
          This interface describes a Language which has a creator assigned.
 

Classes in org.extex.language.impl that implement Language
 class FutureLanguage
          This class implements the future pattern for a language object.
 

Methods in org.extex.language.impl that return Language
protected  Language LoadingLanguageManager.createLanguage(java.lang.String name)
          Create a new language and put it into the table.
protected  Language BaseLanguageManager.createLanguage(java.lang.String name)
          Create a new language and put it into the table.
 Language LoadingLanguageManager.createLanguageInstance(java.lang.String name)
          Create a new instance for the given index if required.
 Language LanguageCreator.createLanguageInstance(java.lang.String name)
          Create a new instance for the given index if required.
 Language BaseLanguageManager.getLanguage(java.lang.String name)
          Return the Language for a given name.
 Language LoadingLanguageManager.loadLanguageInstance(java.lang.String name)
          Load or create a new instance for the given index if required.
 Language LanguageCreator.loadLanguageInstance(java.lang.String name)
          Load or create a new instance for the given index if required.
 

Methods in org.extex.language.impl that return types with arguments of type Language
protected  java.util.Map<java.lang.String,Language> BaseLanguageManager.getTables()
          Getter for the tables.
 

Methods in org.extex.language.impl with parameters of type Language
protected  boolean LoadingLanguageManager.saveTable(java.lang.String name, Language value)
          Try to save the hyphenation table by other means.
 

Uses of Language in org.extex.typesetter.tc
 

Methods in org.extex.typesetter.tc that return Language
 Language TypesettingContextImpl.getLanguage()
          Getter for the hyphenation table.
 Language TypesettingContext.getLanguage()
          Getter for the hyphenation table.
 

Methods in org.extex.typesetter.tc with parameters of type Language
 TypesettingContext TypesettingContextFactory.newInstance(TypesettingContext context, Language language)
          Factory method to acquire an instance of the TypesettingContext with a new value for the language.
 void TypesettingContextImpl.setLanguage(Language language)
          Setter for the hyphenation table.
 void ModifiableTypesettingContext.setLanguage(Language language)
          Setter for the hyphenation table.
 

Uses of Language in org.extex.unit.tex.hyphen
 

Methods in org.extex.unit.tex.hyphen that return Language
protected  Language AbstractHyphenationCode.getHyphenationTable(Context context)
          Getter for the current hyphenation table.