Uses of Interface
javax.servlet.ServletConfig

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

Uses of ServletConfig in javax.servlet
 

Classes in javax.servlet that implement ServletConfig
 class GenericServlet
          The GenericServlet class implements the Servlet interface and, for convenience, the ServletConfig interface.
 

Methods in javax.servlet that return ServletConfig
 ServletConfig Servlet.getServletConfig()
          Returns a ServletConfig object, which contains any initialization parameters and startup configuration for this servlet.
 ServletConfig GenericServlet.getServletConfig()
          Returns a servletConfig object containing any startup configuration information for this servlet.
 

Methods in javax.servlet with parameters of type ServletConfig
 void Servlet.init(ServletConfig config)
          Called by the web server when the Servlet is placed into service.
 void GenericServlet.init(ServletConfig config)
          Initializes the servlet and logs the initialization.
 

Uses of ServletConfig in javax.servlet.http
 

Classes in javax.servlet.http that implement ServletConfig
 class HttpServlet
          An abstract class that simplifies writing HTTP servlets.