FileDocCategorySizeDatePackage
ELContextEvent.javaAPI DocGlassfish v2 API1735Fri Feb 17 14:04:50 GMT 2006javax.el

ELContextEvent

public class ELContextEvent extends EventObject
An event which indicates that an {@link ELContext} has been created. The source object is the ELContext that was created.
see
ELContext
see
ELContextListener
since
JSP 2.1

Fields Summary
Constructors Summary
public ELContextEvent(ELContext source)
Constructs an ELContextEvent object to indicate that an ELContext has been created.

param
source the ELContext that was created.

        super(source);
    
Methods Summary
public javax.el.ELContextgetELContext()
Returns the ELContext that was created. This is a type-safe equivalent of the {@link #getSource} method.

return
the ELContext that was created.

        return (ELContext) getSource();