FileDocCategorySizeDatePackage
ServletContextEvent.javaAPI DocApache Tomcat 6.0.141533Fri Jul 20 04:20:32 BST 2007javax.servlet

ServletContextEvent

public class ServletContextEvent extends EventObject
This is the event class for notifications about changes to the servlet context of a web application.
see
ServletContextListener
since
v 2.3

Fields Summary
Constructors Summary
public ServletContextEvent(ServletContext source)
Construct a ServletContextEvent from the given context.

param
source - the ServletContext that is sending the event.

	super(source);
    
Methods Summary
public javax.servlet.ServletContextgetServletContext()
Return the ServletContext that changed.

return
the ServletContext that sent the event.

 
	return (ServletContext) super.getSource();