|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use FixedCount | |
|---|---|
| org.extex.backend.documentWriter | This package contains the backends of |
| org.extex.core.count | This package contains the basic count data types for ExTeX. |
| org.extex.engine.typesetter.page | This package contains the backend support for pages of the core engine of
|
| org.extex.font | This package contains the core data types for fonts in ExTeX. |
| org.extex.font.format | |
| org.extex.font.format.afm | This package contains the definitions and implementations for the AFM (Type1) font handling in ExTeX. |
| 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.font.format.vf.command | This package contains the definitions and implementations for the VF-commands handling in ExTeX. |
| org.extex.font.format.xtf | This package contains the definitions and implementations for the TTF/OTF font handling in ExTeX. |
| 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.scanner.stream | This package contains the stream definitions and implementations supported for the scanner. |
| org.extex.typesetter | This package contains the typesetter definitions for ExTeX. |
| org.extex.typesetter.impl | This package contains an implmentation of a typesetter and its associated classes. |
| org.extex.typesetter.listMaker | This package contains implementations for list makers of several kind. |
| org.extex.typesetter.listMaker.math | This package contains implementations for math list makers. |
| org.extex.typesetter.tc.font | |
| org.extex.typesetter.tc.font.impl | |
| org.extex.typesetter.type.page | This package contains type definitions for the pages and supporting classes. |
| Uses of FixedCount in org.extex.backend.documentWriter |
|---|
| Methods in org.extex.backend.documentWriter that return FixedCount | |
|---|---|
FixedCount |
DocumentWriterOptions.getCountOption(java.lang.String name)
Getter for a count register. |
| Uses of FixedCount in org.extex.core.count |
|---|
| Classes in org.extex.core.count that implement FixedCount | |
|---|---|
class |
Count
This class represents a long integer value. |
class |
CountConstant
This class provides an implementation of a Count where no methods modifying the contents are available. |
| Fields in org.extex.core.count declared as FixedCount | |
|---|---|
static FixedCount |
Count.ONE
The constant ONE contains the count register with the value 1. |
static FixedCount |
Count.THOUSAND
The constant THOUSAND contains the count register with the value 1000. |
static FixedCount |
Count.ZERO
The constant ZERO contains the count register with the value 0. |
| Methods in org.extex.core.count with parameters of type FixedCount | |
|---|---|
void |
Count.add(FixedCount val)
Add a Count to the value. |
void |
Count.divide(FixedCount denom)
Divide the value by a denominator. |
boolean |
CountConstant.eq(FixedCount count)
Compare the value for equality. |
boolean |
FixedCount.eq(FixedCount count)
Compare the value for equality. |
boolean |
Count.eq(FixedCount count)
Compare the value for equality. |
boolean |
CountConstant.ge(FixedCount count)
Compare the value for a greater or equal value. |
boolean |
FixedCount.ge(FixedCount count)
Compare the value for a greater or equal value. |
boolean |
Count.ge(FixedCount count)
Compare the value for a greater or equal value. |
boolean |
CountConstant.gt(FixedCount count)
Compare the value for a greater value. |
boolean |
FixedCount.gt(FixedCount count)
Compare the value for a greater value. |
boolean |
Count.gt(FixedCount count)
Compare the value for a greater value. |
boolean |
CountConstant.le(FixedCount count)
Compare the value for a less or equal value. |
boolean |
FixedCount.le(FixedCount count)
Compare the value for a less or equal value. |
boolean |
Count.le(FixedCount count)
Compare the value for a less or equal value. |
boolean |
CountConstant.lt(FixedCount count)
Compare the value for a lesser value. |
boolean |
FixedCount.lt(FixedCount count)
Compare the value for a lesser value. |
boolean |
Count.lt(FixedCount count)
Compare the value for a lesser value. |
void |
Count.multiply(FixedCount factor)
Multiply the value with a factor. |
boolean |
CountConstant.ne(FixedCount count)
Compare the value for non-equality. |
boolean |
FixedCount.ne(FixedCount count)
Compare the value for non-equality. |
boolean |
Count.ne(FixedCount count)
Compare the value for non-equality. |
void |
Count.set(FixedCount c)
Setter for the value. |
| Constructors in org.extex.core.count with parameters of type FixedCount | |
|---|---|
Count(FixedCount count)
Creates a new object. |
|
CountConstant(FixedCount value)
Creates a new object. |
|
| Uses of FixedCount in org.extex.engine.typesetter.page |
|---|
| Methods in org.extex.engine.typesetter.page that return FixedCount | |
|---|---|
FixedCount[] |
PageImpl.getPageNo()
Getter for the array of page numbers. |
| Constructors in org.extex.engine.typesetter.page with parameters of type FixedCount | |
|---|---|
PageImpl(NodeList nodes,
FixedCount[] pageNo)
Creates a new object. |
|
| Uses of FixedCount in org.extex.font |
|---|
| Methods in org.extex.font that return FixedCount | |
|---|---|
FixedCount |
FontKey.getCount(java.lang.String key)
Returns the value for the key or null, if no key exists
in the map. |
FixedCount |
ExtexFont.getScaleFactor()
Returns the scale factor of the font. |
| Methods in org.extex.font that return types with arguments of type FixedCount | |
|---|---|
protected java.util.Map<java.lang.String,FixedCount> |
FontKey.getCountMap()
Returns the countMap. |
| Methods in org.extex.font with parameters of type FixedCount | |
|---|---|
protected void |
FontKey.put(java.lang.String key,
FixedCount value)
Put an key values pair on the map. |
| Uses of FixedCount in org.extex.font.format |
|---|
| Methods in org.extex.font.format that return FixedCount | |
|---|---|
FixedCount |
NullExtexFont.getScaleFactor()
Returns the scale factor of the font. |
| Uses of FixedCount in org.extex.font.format.afm |
|---|
| Methods in org.extex.font.format.afm that return FixedCount | |
|---|---|
FixedCount |
LoadableAfmFont.getScaleFactor()
Returns the scale factor of the font. |
| Uses of FixedCount in org.extex.font.format.tfm |
|---|
| Methods in org.extex.font.format.tfm that return FixedCount | |
|---|---|
FixedCount |
LoadableTfmFont.getScaleFactor()
Returns the scale factor of the font. |
| Uses of FixedCount in org.extex.font.format.vf |
|---|
| Methods in org.extex.font.format.vf that return FixedCount | |
|---|---|
FixedCount |
LoadableVfFont.getScaleFactor()
Returns the scale factor of the font. |
| Uses of FixedCount in org.extex.font.format.vf.command |
|---|
| Methods in org.extex.font.format.vf.command that return FixedCount | |
|---|---|
FixedCount |
VfCommandFontDef.getScalefactorAsCount()
Return the scalefactor as Count. |
| Uses of FixedCount in org.extex.font.format.xtf |
|---|
| Methods in org.extex.font.format.xtf that return FixedCount | |
|---|---|
FixedCount |
LoadableXtfFont.getScaleFactor()
Returns the scale factor of the font. Returns allways 0. |
| Uses of FixedCount in org.extex.interpreter.context |
|---|
| Methods in org.extex.interpreter.context that return FixedCount | |
|---|---|
FixedCount |
Context.getSfcode(UnicodeChar uc)
Getter for the space factor code of a character. |
| Uses of FixedCount in org.extex.interpreter.max.context |
|---|
| Methods in org.extex.interpreter.max.context that return FixedCount | |
|---|---|
FixedCount |
ContextImpl.getCountOption(java.lang.String name)
Getter for a count register. |
FixedCount |
GroupImpl.getSfcode(UnicodeChar c)
Getter for the space factor code of a character. |
FixedCount |
Group.getSfcode(UnicodeChar uc)
Getter for the space factor code of a character. |
FixedCount |
ContextImpl.getSfcode(UnicodeChar uc)
Getter for the space factor code of a character. |
| Uses of FixedCount in org.extex.scanner.stream |
|---|
| Methods in org.extex.scanner.stream that return FixedCount | |
|---|---|
FixedCount |
TokenStreamOptions.getCountOption(java.lang.String name)
Getter for a count register. |
| Uses of FixedCount in org.extex.typesetter |
|---|
| Methods in org.extex.typesetter that return FixedCount | |
|---|---|
FixedCount |
TypesetterOptions.getCountOption(java.lang.String name)
Getter for a count register. |
FixedCount |
PageContext.getCountOption(java.lang.String name)
Getter for a count register. |
| Methods in org.extex.typesetter with parameters of type FixedCount | |
|---|---|
void |
ListMaker.addSpace(TypesettingContext typesettingContext,
FixedCount spacefactor)
Add a space node to the list. |
void |
ListMaker.setSpacefactor(FixedCount sf)
Setter for the space factor. |
void |
ListManager.setSpacefactor(FixedCount spaceFactor)
Setter for the space factor |
| Uses of FixedCount in org.extex.typesetter.impl |
|---|
| Methods in org.extex.typesetter.impl with parameters of type FixedCount | |
|---|---|
void |
TypesetterImpl.addSpace(TypesettingContext typesettingContext,
FixedCount spacefactor)
Add a space node to the list. |
void |
NullTypesetterImpl.addSpace(TypesettingContext typesettingContext,
FixedCount spacefactor)
Add a space node to the list. |
void |
TypesetterImpl.setSpacefactor(FixedCount sf)
Setter for the space factor. |
void |
NullTypesetterImpl.setSpacefactor(FixedCount sf)
Setter for the space factor. |
| Uses of FixedCount in org.extex.typesetter.listMaker |
|---|
| Methods in org.extex.typesetter.listMaker with parameters of type FixedCount | |
|---|---|
void |
HorizontalListMaker.addSpace(TypesettingContext context,
FixedCount sfCount)
Add a space node to the list. |
void |
InnerVerticalListMaker.addSpace(TypesettingContext typesettingContext,
FixedCount spacefactor)
Add a space node to the list. |
void |
AbstractListMaker.setSpacefactor(FixedCount sf)
Setter for the space factor. |
void |
HorizontalListMaker.setSpacefactor(FixedCount f)
Setter for the space factor. |
| Uses of FixedCount in org.extex.typesetter.listMaker.math |
|---|
| Methods in org.extex.typesetter.listMaker.math with parameters of type FixedCount | |
|---|---|
void |
MathListMaker.addSpace(TypesettingContext typesettingContext,
FixedCount spacefactor)
Spaces are ignored in math mode. |
| Uses of FixedCount in org.extex.typesetter.tc.font |
|---|
| Methods in org.extex.typesetter.tc.font that return FixedCount | |
|---|---|
FixedCount |
Font.getScaleFactor()
Returns the scale factor of the font. |
| Uses of FixedCount in org.extex.typesetter.tc.font.impl |
|---|
| Methods in org.extex.typesetter.tc.font.impl that return FixedCount | |
|---|---|
FixedCount |
NullFont.getScaleFactor()
Returns the scale factor of the font. |
| Uses of FixedCount in org.extex.typesetter.type.page |
|---|
| Methods in org.extex.typesetter.type.page that return FixedCount | |
|---|---|
FixedCount[] |
Page.getPageNo()
Getter for the array of page numbers. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||