FileDocCategorySizeDatePackage
TimeZoneTag.javaAPI DocGlassfish v2 API4243Sat May 05 19:17:56 BST 2007org.apache.taglibs.standard.tag.el.fmt

TimeZoneTag

public class TimeZoneTag extends org.apache.taglibs.standard.tag.common.fmt.TimeZoneSupport

A handler for <timeZone> that accepts attributes as Strings and evaluates them as expressions at runtime.

author
Shawn Bayern
author
Jan Luehe

Fields Summary
private String
value_
Constructors Summary
public TimeZoneTag()
Constructs a new TimeZoneTag. As with TagSupport, subclasses should not provide other constructors and are expected to call the superclass constructor

        super();
        init();
    
Methods Summary
public intdoStartTag()


        // evaluate any expressions we were passed, once per invocation
        evaluateExpressions();

	// chain to the parent implementation
	return super.doStartTag();
    
private voidevaluateExpressions()


	// 'value' attribute (mandatory)
	value = ExpressionEvaluatorManager.evaluate(
	    "value", value_, Object.class, this, pageContext);
    
private voidinit()

        // null implies "no expression"
	value_ = null;
    
public voidrelease()

        super.release();
        init();
    
public voidsetValue(java.lang.String value_)

        this.value_ = value_;