* Called to check if the conditional meets the criteria defined by this
* state.
*/
public boolean satisfiedBy(Object conditional) {
if (conditional instanceof DecimalToken) {
DecimalToken t = (DecimalToken) conditional;
if ((t.getValue() >= iv_lowNum) && (t.getValue() <= iv_highNum)) {
return true;
}
}
return false;