Uses of Class
de.dante.extex.scanner.type.CatcodeException

Packages that use CatcodeException
de.dante.extex This package contains ExTeX – an implementation of a typesetting engine based on the concepts of TeX
de.dante.extex.interpreter.primitives.hyphen This package contains the primitives for hyphenations in ExTeX. 
de.dante.extex.interpreter.type.glue This package contains the basic glue data types for ExTeX. 
de.dante.extex.interpreter.type.muskip This package contains math unit data types for ExTeX. 
de.dante.extex.interpreter.type.scaled This package contains the scaled data type for ExTeX. 
de.dante.extex.interpreter.type.tokens This package contains the basic tokens data types for ExTeX. 
de.dante.extex.scanner.type This package contains the types for the scanner of ExTeX. 
de.dante.extex.scanner.type.token This package contains the token types for the scanner of ExTeX. 
de.dante.extex.typesetter.output This package contains the binding of the output routine to the interpreter. 
 

Uses of CatcodeException in de.dante.extex
 

Methods in de.dante.extex that throw CatcodeException
protected  Typesetter ExTeX.makeTypesetter(Interpreter interpreter, Configuration config, OutputStreamFactory outFactory, ResourceFinder finder, FontFactory fontFactory)
          Create a new typesetter.
 

Uses of CatcodeException in de.dante.extex.interpreter.primitives.hyphen
 

Methods in de.dante.extex.interpreter.primitives.hyphen that throw CatcodeException
protected  UnicodeCharList HyphenationPrimitive.collectWord(Context context, TokenSource source, Token token)
          Collect all characters that make up a word.
protected  UnicodeCharList Hyphenation.collectWord(Context context, TokenSource source, Token token)
          Collect all characters that make up a word.
 

Uses of CatcodeException in de.dante.extex.interpreter.type.glue
 

Methods in de.dante.extex.interpreter.type.glue that throw CatcodeException
 Tokens GlueComponent.toToks(TokenFactory factory)
          Determine the printable representation of the object and return it as a list of Tokens.
 void GlueComponent.toToks(Tokens toks, TokenFactory factory, char c1, char c2)
          Determine the printable representation of the object and return it as a list of Tokens.
 

Uses of CatcodeException in de.dante.extex.interpreter.type.muskip
 

Methods in de.dante.extex.interpreter.type.muskip that throw CatcodeException
 void Mudimen.toToks(Tokens toks, TokenFactory factory, char c1, char c2)
          Determine the printable representation of the object and return it as a list of Tokens.
 

Uses of CatcodeException in de.dante.extex.interpreter.type.scaled
 

Methods in de.dante.extex.interpreter.type.scaled that throw CatcodeException
 void ScaledNumber.toToks(Tokens toks, TokenFactory factory)
          Determine the printable representation of the object and return it as a list of Tokens.
 

Uses of CatcodeException in de.dante.extex.interpreter.type.tokens
 

Methods in de.dante.extex.interpreter.type.tokens that throw CatcodeException
 void Tokens.add(TokenFactory factory, java.lang.CharSequence s)
          Add all characters from the given String to the list of Tokens.
 void Tokens.show(Context context, Tokens toks)
           
 

Uses of CatcodeException in de.dante.extex.scanner.type
 

Subclasses of CatcodeException in de.dante.extex.scanner.type
 class CatcodeVisitorException
          This exception is thrown when something in the context of catcode creation or access goes wrong.
 class CatcodeWrongLengthException
          This exception is thrown when a value is encountered which has the wrong number of characters in it.
 

Methods in de.dante.extex.scanner.type that throw CatcodeException
static Catcode Catcode.toCatcode(int theCode)
          Return a catcode for a given numerical value.
 

Uses of CatcodeException in de.dante.extex.scanner.type.token
 

Methods in de.dante.extex.scanner.type.token that throw CatcodeException
 Token TokenFactoryImpl.createToken(Catcode code, int c, java.lang.String namespace)
           
 Token TokenFactoryImpl.createToken(Catcode code, UnicodeChar esc, java.lang.String value, java.lang.String namespace)
           
 Token TokenFactoryImpl.createToken(Catcode code, UnicodeChar c, java.lang.String namespace)
           
 java.lang.Object TokenFactoryImpl.visitActive(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object oNamespace)
          Active characters are cached.
 java.lang.Object TokenFactoryImpl.visitEscape(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object oNamespace)
           
 java.lang.Object TokenFactoryImpl.visitLeftBrace(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
          A left brace token is expected to take a single character only.
 java.lang.Object TokenFactoryImpl.visitLetter(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
          A letter token is expected to take a single character only.
 java.lang.Object TokenFactoryImpl.visitMacroParam(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
           
 java.lang.Object TokenFactoryImpl.visitMathShift(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
           
 java.lang.Object TokenFactoryImpl.visitOther(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
           
 java.lang.Object TokenFactoryImpl.visitRightBrace(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
           
 java.lang.Object TokenFactoryImpl.visitSubMark(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
           
 java.lang.Object TokenFactoryImpl.visitSupMark(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
           
 java.lang.Object TokenFactoryImpl.visitTabMark(java.lang.Object oValue, java.lang.Object oChar, java.lang.Object ignore)
           
 Token TokenFactory.createToken(Catcode code, UnicodeChar esc, java.lang.String value, java.lang.String namespace)
          Get an instance of a token with a given Catcode and value.
 Token TokenFactory.createToken(Catcode code, int c, java.lang.String namespace)
          Create a new Token of the appropriate kind.
 Token TokenFactory.createToken(Catcode code, UnicodeChar c, java.lang.String namespace)
          Get an instance of a token with a given Catcode and Unicode character value.
 

Uses of CatcodeException in de.dante.extex.typesetter.output
 

Constructors in de.dante.extex.typesetter.output that throw CatcodeException
TeXOutputRoutine(Interpreter interpreter)
          Creates a new object.