try {
Object r = ExpressionEvaluatorManager.evaluate(
"test", test, Boolean.class, this, pageContext);
if (r == null)
throw new NullAttributeException("if", "test");
else
return (((Boolean) r).booleanValue());
} catch (JspException ex) {
throw new JspTagException(ex.toString(), ex);
}