Home » apache-tomcat-6.0.26-src » javax » servlet » jsp » tagext » [javadoc | source]
javax.servlet.jsp.tagext
public interface: DynamicAttributes [javadoc | source] For a tag to declare that it accepts dynamic attributes, it must implement this interface. The entry for the tag in the Tag Library Descriptor must also be configured to indicate dynamic attributes are accepted.
For any attribute that is not declared in the Tag Library Descriptor for this tag, instead of getting an error at translation time, the setDynamicAttribute() method is called, with the name and value of the attribute. It is the responsibility of the tag to remember the names and values of the dynamic attributes.
Method from javax.servlet.jsp.tagext.DynamicAttributes Summary:
setDynamicAttribute
Method from javax.servlet.jsp.tagext.DynamicAttributes Detail:
 public  void setDynamicAttribute(String uri,
    String localName,
    Object value) throws JspException
    Called when a tag declared to accept dynamic attributes is passed an attribute that is not declared in the Tag Library Descriptor.