I was wondering if anyone could clarify the intended use of the TagData class for me.
Namely, JSP 1.1 spec in section 6.2 says:
TagData: The attribute/value information for a tag instance. Used at translation-time only.However, javadoc for the TagData class seems to imply that there is some use for it
at runtime:
This class is cloneable so implementations can create a static instance and then just clone it before adding the request-time expressions.Which one is right? The spec saying that its a compile-time only class or the javadoc
indicating that it can be used at runtime?
Thanks,
-Misha
