Method Summary |
|
abstract public Object | findAttribute(String name) Finds an attribute in all scopes. |
abstract public Object | getAttribute(String name) Gets the named page attribute. |
abstract public Object | getAttribute(String name, int scope) Gets an attribute in a given scope. |
abstract public Enumeration | getAttributeNames() Return an enumeration of all the attribute names. |
abstract public Enumeration | getAttributeNamesInScope(int scope) Lists attribute names in a given scope. |
abstract public int | getAttributesScope(String name) Returns the scope for an attribute. |
abstract public ELContext | getELContext() |
abstract public ExpressionEvaluator | getExpressionEvaluator() Returns an expression evaluator for creating JSP EL expressions. |
abstract public JspWriter | getOut() Returns the current output for the page. |
abstract public VariableResolver | getVariableResolver() Returns a variable resolver for evaluating JSP EL expressions. |
public JspWriter | popBody() Internal routine to support BodyTags. |
public JspWriter | pushBody(Writer writer) Internal routine to support BodyTags. |
abstract public void | removeAttribute(String name) Removes the named page attribute. |
abstract public void | removeAttribute(String name, int scope) Removes an attribute in a given scope. |
abstract public void | setAttribute(String name, Object attribute) Sets the named page attribute. |
abstract public void | setAttribute(String name, Object o, int scope) Sets an attribute in a given scope. |