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

RequestEncodingTag

public class RequestEncodingTag extends org.apache.taglibs.standard.tag.common.fmt.RequestEncodingSupport

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

author
Jan Luehe

Fields Summary
private String
value_
Constructors Summary
public RequestEncodingTag()
Constructs a new RequestEncodingTag. 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()

        /* 
         * Note: we don't check for type mismatches here; we assume
         * the expression evaluator will return the expected type
         * (by virtue of knowledge we give it about what that type is).
         * A ClassCastException here is truly unexpected, so we let it
         * propagate up.
         */

	if (value_ != null) {
	    value = (String) ExpressionEvaluatorManager.evaluate(
	        "value", value_, String.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_;