Package com.sun.faces.el

Examples of com.sun.faces.el.ELContextImpl


                           "ConfigureListener.contextDestroyed({0})",
                           context.getServletContextName());
            }


            ELContext elctx = new ELContextImpl(initContext.getApplication().getELResolver());
            elctx.putContext(FacesContext.class, initContext);
            initContext.setELContext(elctx);
            Application app = initContext.getApplication();
            app.publishEvent(initContext,
                    PreDestroyApplicationEvent.class,
                    Application.class,
View Full Code Here


  public FacesContextImpl(ExternalContext ec, Lifecycle lifecycle) {
    super(ec, lifecycle);
  }
 
    public ELContext getELContext() {
      ELContextImpl elContext = (ELContextImpl) super.getELContext();
        elContext.setFunctionMapper(new FacesFunctionMapper());
        return elContext;
    }
View Full Code Here

TOP

Related Classes of com.sun.faces.el.ELContextImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.