A handler for <setTimeZone> that accepts attributes as Strings and evaluates them as expressions at runtime.
Constructs a new TimeZoneTag. As with TagSupport, subclasses should not provide other constructors and are expected to call the superclass constructor super(); init();
super(); init();
// evaluate any expressions we were passed, once per invocation evaluateExpressions(); // chain to the parent implementation return super.doStartTag();
// 'value' attribute (mandatory) value = ExpressionEvaluatorManager.evaluate( "value", value_, Object.class, this, pageContext);
// null implies "no expression" value_ = null;
super.release(); init();
this.value_ = value_;