Hi, I have a problem.
I'm wanting to generate tlds for my tags while extending classes from
another library.
When I move sources from my library directly into my project,
the classes started to pass the ClassTagPredicate. If they remain in
the jar, then they don't pass ClassTagPredicate and I get only headers
in my generated tld.
Example situation:
x.jar contains a class:
public class ComplexTagSupport extends SimpleTagSupport {
...
}
in project:
/**
* @jsp.tag name="page" etc..
*/
public class PageTag extends ComplexTagSupport {
}
If I change PageTag to extend SimpleTagSupport or simply move the
ComplexTagSupport class into the project, it works fine, but this
is not desired.
Any help would be appreciated.
-ian