* Called to check if the conditional meets the criteria defined by this
* state.
*/
public boolean satisfiedBy(Object conditional) {
if (conditional instanceof TextToken) {
TextToken t = (TextToken) conditional;
String text = t.getText();
if (!iv_isCaseSensitive) {
text = text.toLowerCase();
}
if (iv_textSet.contains(text)) {