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