Uses of Class
org.extex.typesetter.type.math.MathClass

Packages that use MathClass
org.extex.base.parser This package contains parsers for ExTeX
org.extex.typesetter.type.math This package contains math data types for ExTeX. 
org.extex.typesetter.type.noad This package contains the data structures for Noads. 
 

Uses of MathClass in org.extex.base.parser
 

Methods in org.extex.base.parser that return MathClass
 MathClass MathClassParser.parse(Context context, TokenSource source, Typesetter typesetter)
          Parse a math class.
 

Uses of MathClass in org.extex.typesetter.type.math
 

Fields in org.extex.typesetter.type.math declared as MathClass
static MathClass MathClass.BINARY
          The field BINARY contains the instance representing the binary class.
static MathClass MathClass.CLOSING
          The field CLOSING contains the instance representing the closing class.
static MathClass MathClass.LARGE
          The field LARGE contains the instance representing the large class.
static MathClass MathClass.OPENING
          The field OPENING contains the instance representing the opening class.
static MathClass MathClass.ORDINARY
          The field ORDINARY contains the instance representing the ordinary class.
static MathClass MathClass.PUNCTATION
          The field PUNCTUATION contains the instance representing the punctation class.
static MathClass MathClass.RELATION
          The field RELATION contains the instance representing the relation class.
static MathClass MathClass.VARIABLE
          The field VARIABLE contains the instance representing the variable width class.
 

Methods in org.extex.typesetter.type.math that return MathClass
 MathClass MathDelimiter.getMathClass()
          Getter for mathClass.
 MathClass MathCode.getMathClass()
          Getter for mathClass.
static MathClass MathClass.getMathClass(int n)
          Factory method for the math class which maps the TeX encoding into the appropriate instance.
 

Constructors in org.extex.typesetter.type.math with parameters of type MathClass
MathCode(MathClass mathClass, MathGlyph mathGlyph)
          Creates a new object.
MathDelimiter(MathClass mathClass, MathGlyph smallChar, MathGlyph largeChar)
          Creates a new object.
 

Uses of MathClass in org.extex.typesetter.type.noad
 

Methods in org.extex.typesetter.type.noad with parameters of type MathClass
 Noad NoadFactory.getNoad(MathClass mathClass, MathGlyph glyph, TypesettingContext tc)
          Provides an instance of a Noad of the appropriate type.