A handler for the <remove> tag, which removes the variable identified by 'var' (and 'scope', if present).
Constructs a new handler. As with TagSupport, subclasses should not provide other constructors and are expected to call the superclass constructor. // tag attribute //********************************************************************* // Construction and initialization super(); init();
// tag attribute //********************************************************************* // Construction and initialization super(); init();
if (!scopeSpecified) pageContext.removeAttribute(var); else pageContext.removeAttribute(var, scope); return EVAL_PAGE;
var = null; scope = PageContext.PAGE_SCOPE; scopeSpecified = false;
super.release(); init();
this.scope = Util.getScope(scope); scopeSpecified = true;
this.var = var;