RE: Subclass of Servlet: Inherited method is not visible

2008-01-23 Thread pichota
MAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 23, 2008 12:24 PM > To: users@tomcat.apache.org > Subject: Subclass of Servlet: Inherited method is not visible > > Hi, > > The following schematically describes my setup. Basically, there are two > servlets, one

RE: Subclass of Servlet: Inherited method is not visible

2008-01-23 Thread Reich, Matthias
users@tomcat.apache.org Subject: Subclass of Servlet: Inherited method is not visible Hi, The following schematically describes my setup. Basically, there are two servlets, one being a subclass of the other: public class ServletA extends ParameterMethodResolvingServlet { public void init() { ... } p

Subclass of Servlet: Inherited method is not visible

2008-01-23 Thread pichota
Hi, The following schematically describes my setup. Basically, there are two servlets, one being a subclass of the other: public class ServletA extends ParameterMethodResolvingServlet { public void init() { ... } public void methodA() { ... } } public class ServletB extends ServletA { publ