Uses of Interface
de.dante.extex.interpreter.type.count.FixedCount

Packages that use FixedCount
de.dante.extex.backend.documentWriter This package contains the backends of ExTeX which are responsible for writing the constructed pages to an appropriate file. 
de.dante.extex.interpreter.context.impl This package contains a reference implementation for the Context
de.dante.extex.interpreter.expression.term   
de.dante.extex.interpreter.type.count This package contains the basic count data types for ExTeX. 
de.dante.extex.scanner.stream This package contains the stream definitions and implementations supported for the scanner. 
de.dante.extex.typesetter This package contains the typesetter definitions for ExTeX. 
de.dante.extex.typesetter.impl This package contains an implmentation of a typesetter and its associated classes. 
de.dante.extex.typesetter.listMaker This package contains implementations for list makers of several kind. 
de.dante.extex.typesetter.type.page This package contains type definitions for the pages and supporting classes. 
 

Uses of FixedCount in de.dante.extex.backend.documentWriter
 

Methods in de.dante.extex.backend.documentWriter that return FixedCount
 FixedCount DocumentWriterOptions.getCountOption(java.lang.String name)
          Getter for a count register.
 

Uses of FixedCount in de.dante.extex.interpreter.context.impl
 

Methods in de.dante.extex.interpreter.context.impl that return FixedCount
 FixedCount ContextImpl.getCountOption(java.lang.String name)
           
 

Uses of FixedCount in de.dante.extex.interpreter.expression.term
 

Classes in de.dante.extex.interpreter.expression.term that implement FixedCount
 class TCount
          This class encapsulates a long value for the use in the expression evaluator.
 

Uses of FixedCount in de.dante.extex.interpreter.type.count
 

Classes in de.dante.extex.interpreter.type.count that implement FixedCount
 class Count
          This class represents a long integer value.
 class ImmutableCount
          This class provides an implementation of a Count where all methods modifying the contents are redefined to produce an exception.
 

Methods in de.dante.extex.interpreter.type.count with parameters of type FixedCount
 boolean FixedCount.eq(FixedCount count)
          Compare the value for equality.
 boolean FixedCount.ge(FixedCount count)
          Compare the value for a greater or equal value.
 boolean FixedCount.gt(FixedCount count)
          Compare the value for a greater value.
 boolean FixedCount.le(FixedCount count)
          Compare the value for a less or equal value.
 boolean FixedCount.lt(FixedCount count)
          Compare the value for a lesser value.
 boolean FixedCount.ne(FixedCount count)
          Compare the value for non-equality.
 boolean Count.eq(FixedCount count)
           
 boolean Count.ge(FixedCount count)
           
 boolean Count.gt(FixedCount count)
           
 boolean Count.le(FixedCount count)
           
 boolean Count.lt(FixedCount count)
           
 boolean Count.ne(FixedCount count)
           
 

Constructors in de.dante.extex.interpreter.type.count with parameters of type FixedCount
ImmutableCount(FixedCount value)
          Creates a new object.
Count(FixedCount count)
          Creates a new object.
 

Uses of FixedCount in de.dante.extex.scanner.stream
 

Methods in de.dante.extex.scanner.stream that return FixedCount
 FixedCount TokenStreamOptions.getCountOption(java.lang.String name)
          Getter for a count register.
 

Uses of FixedCount in de.dante.extex.typesetter
 

Methods in de.dante.extex.typesetter that return FixedCount
 FixedCount TypesetterOptions.getCountOption(java.lang.String name)
          Getter for a count register.
 

Methods in de.dante.extex.typesetter with parameters of type FixedCount
 void ListMaker.setSpacefactor(FixedCount sf)
          Setter for the space factor.
 

Uses of FixedCount in de.dante.extex.typesetter.impl
 

Methods in de.dante.extex.typesetter.impl with parameters of type FixedCount
 void TypesetterImpl.setSpacefactor(FixedCount sf)
           
 void NullTypesetterImpl.setSpacefactor(FixedCount f)
           
 

Uses of FixedCount in de.dante.extex.typesetter.listMaker
 

Methods in de.dante.extex.typesetter.listMaker with parameters of type FixedCount
 void ListManager.setSpacefactor(FixedCount spaceFactor)
          Setter for the space factor
 void HorizontalListMaker.setSpacefactor(FixedCount f)
           
 void AbstractListMaker.setSpacefactor(FixedCount f)
           
 

Uses of FixedCount in de.dante.extex.typesetter.type.page
 

Methods in de.dante.extex.typesetter.type.page that return FixedCount
 FixedCount[] PageImpl.getPageNo()
           
 FixedCount[] Page.getPageNo()
          Getter for the array of page numbers.
 

Constructors in de.dante.extex.typesetter.type.page with parameters of type FixedCount
PageImpl(NodeList nodes, FixedCount[] pageNo)
          Creates a new object.