_mathContext = null;
} else if (intValue > 0) {
// If the precision is > 0, create a MathContext with
// the specified precision (to be used with a
// BigDecimal for rounding purposes).
_mathContext = new MathContext(intToken.intValue());
} else {
throw new IllegalActionException(this,
"Precision must be an integer "
+ "greater than or equal to 0.");
}