Re: Custom Tags - abstract class

2005-09-23 Thread Shailendramani
don't use super() in your SetupVarsTag class since abstract classes cannot be instantiated. Regards Shailendra Mani - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Saturday, September 24, 2005 2:08 AM Subject: Custom Tags - abstract class > Good morning, > > I am pretty new to

Re: Custom Tags - abstract class

2005-09-23 Thread pikeboo
Sorry but I found the issue, in fact when calling the constructor the pageContext attribute from TagSupport is null at that time. We can only use pageContext on the doStartTag method. Thanks Quoting [EMAIL PROTECTED]: > Good morning, > > I am pretty new to JSTL and Custom Tags and I have an issue

Custom Tags - abstract class

2005-09-23 Thread pikeboo
Good morning, I am pretty new to JSTL and Custom Tags and I have an issue which I cannot solve. I created several custom tags classes that extends TagSupport and everything works fine. In order to centralize some similar code I want to create an abstract class: abstract public class BdCustomTag