Package com.esri.gpt.framework.jsf

Examples of com.esri.gpt.framework.jsf.PageContext


@Override
public void encodeBegin(FacesContext context) throws IOException {
  super.encodeBegin(context);

  try {
    PageContext pageContext = PageContext.extract();
   
    if (pageContext!=null && pageContext.getPrepareView().length()>0) {
      // infoke action listener
      MethodBinding binding = context.getApplication().createMethodBinding(
        pageContext.getPrepareView(), null);
      binding.invoke(context, null);
    }
   
  } catch (Throwable t) {
    MessageBroker messageBroker =
View Full Code Here

TOP

Related Classes of com.esri.gpt.framework.jsf.PageContext

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.