Uses of Class
org.extex.core.scaled.ScaledNumber

Packages that use ScaledNumber
org.extex.base.parser This package contains parsers for ExTeX
org.extex.core.scaled This package contains the scaled data type for ExTeX. 
 

Uses of ScaledNumber in org.extex.base.parser
 

Methods in org.extex.base.parser that return ScaledNumber
static ScaledNumber ScaledNumberParser.scanScaledNumber(Context context, TokenSource source, Typesetter typesetter)
          Parses a token stream for a float and returns it as fixed point number.
 

Uses of ScaledNumber in org.extex.core.scaled
 

Methods in org.extex.core.scaled with parameters of type ScaledNumber
 void ScaledNumber.add(ScaledNumber scaled)
          Add a number to the current one.
 boolean ScaledNumber.eq(ScaledNumber d)
          Compares the current instance with another ScaledNumber for equality.
 boolean ScaledNumber.ge(ScaledNumber d)
          Compares the current instance with another ScaledNumber.
 boolean ScaledNumber.le(ScaledNumber d)
          Compares the current instance with another ScaledNumber.
 boolean ScaledNumber.lt(ScaledNumber d)
          Compares the current instance with another ScaledNumber.
 void ScaledNumber.set(ScaledNumber scaled)
          Setter for the value
 void ScaledNumber.subtract(ScaledNumber scaled)
          Subtract a number from the current one.