val = this.test.getValue(expressionContext);
} catch (Exception e) {
throw new SAXParseException(e.getMessage(), getLocation(), e);
} catch (Error err) {
throw new SAXParseException(err.getMessage(), getLocation(),
new ErrorHolder(err));
}
boolean result = false;
if (val instanceof Boolean) {
result = ((Boolean) val).booleanValue();
} else {