// If an expression was set, then OK to continue
continueProcessing = true;
} else {
// No expression set, see if element is in a select element
try {
SelectState s = pageContext.peekSelectState();
// Embedded in a select - ok to continue
continueProcessing = true;
} catch (EmptyStackException ese) {
// Not embedded in a select element
continueProcessing = false;