Originally posted by Sai Prasad:
Can you help me understand why javax.servlet.jsp.HttpJspPage interface extends both javax.servlet.Servlet and javax.servlet.jsp.JspPage interfaces? If you notice, JspPage also extends the Servlet interface. Thanks.
Hi Prasad
HttpJspPage extends from JspPage, and JspPage extends from Servlet. Hence HttpJspPage, by OO definition, extends both JspPage and Servlet.
I'm not sure I understand your confusion?
Mark