* Called to check if the conditional meets the criteria defined by this
* state.
*/
public boolean satisfiedBy(Object conditional) {
if (conditional instanceof SymbolToken) {
SymbolToken t = (SymbolToken) conditional;
if (t.getChar() == iv_symbolChar) {
return true;
}
}
return false;