Using the getParent() method, is it possible for a Classic Tag to access a Simple Tag parent?
For example:
================
Consider a
JSP page that contains the following code:
10. <x:outer>
11. <x:middle>
12. <x.inner></x.inner>
13. </x:middle>
14. </x:outer>
Assuming the following implementation details...
1. x:outer is implemented by OuterTag.java, which extends SimpleTagSupport.
2. x:middle is implemented by MiddleTag.java, which extends BodyTagSupport and has a body-content of tagdependent.
3. x:inner is implemented by InnerTag.java, which extends BodyTagSupport and has a body-content of tagdependent.
================
Can MiddleTag can get a reference to OuterTag by calling TagSupport.getParent() method?