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)) {