Package org.apache.shale.test.el

Examples of org.apache.shale.test.el.MockELContext


    public ELContext getELContext() {

        if (this.elContext == null) {

            // Initialize a new ELContext
            this.elContext = new MockELContext();
            this.elContext.putContext(FacesContext.class, this);

            // Notify interested listeners that this ELContext was created
            ELContextListener[] listeners = getApplication().getELContextListeners();
            if ((listeners != null) && (listeners.length > 0)) {
View Full Code Here

TOP

Related Classes of org.apache.shale.test.el.MockELContext

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.