Uses of Interface
javax.servlet.ServletConfig

Packages that use ServletConfig
javax.servlet   
javax.servlet.http   
javax.servlet.jsp   
 

Uses of ServletConfig in javax.servlet
 

Classes in javax.servlet that implement ServletConfig
 class GenericServlet
          Defines a generic, protocol-independent servlet.
 

Methods in javax.servlet that return ServletConfig
 ServletConfig Servlet.getServletConfig()
          Returns a ServletConfig object, which contains initialization and startup parameters for this servlet.
 ServletConfig GenericServlet.getServletConfig()
          Returns a ServletConfig object, which gives a servlet its initialization parameters.
 

Methods in javax.servlet with parameters of type ServletConfig
 void Servlet.init(ServletConfig config)
          Initializes the servlet and places it into service.
 void GenericServlet.init(ServletConfig config)
          Initializes this servlet.
 

Uses of ServletConfig in javax.servlet.http
 

Classes in javax.servlet.http that implement ServletConfig
 class HttpServlet
          Provides an abstract class that you can subclass to create an HTTP servlet, which receives requests from and sends responses to a Web site.
 

Uses of ServletConfig in javax.servlet.jsp
 

Methods in javax.servlet.jsp that return ServletConfig
abstract  ServletConfig PageContext.getServletConfig()