Examples of MethodExpressionMethodBinding


Examples of org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding

    FacesBean bean)
  {
    super.setProperties(bean);
    setProperty(bean, UIXSingleStep.MAX_STEP_KEY, _maxStep);
    if (_nextActionListener != null)
      bean.setProperty(UIXSingleStep.NEXT_ACTION_LISTENER_KEY, new MethodExpressionMethodBinding(_nextActionListener));
    if (_previousActionListener != null)
      bean.setProperty(UIXSingleStep.PREVIOUS_ACTION_LISTENER_KEY, new MethodExpressionMethodBinding(_previousActionListener));
    if (_nextAction != null)
      bean.setProperty(UIXSingleStep.NEXT_ACTION_KEY, new MethodExpressionMethodBinding(_nextAction));
    setProperty(bean, UIXSingleStep.SELECTED_STEP_KEY, _selectedStep);
    if (_previousAction != null)
      bean.setProperty(UIXSingleStep.PREVIOUS_ACTION_KEY, new MethodExpressionMethodBinding(_previousAction));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.