Package org.strecks.action

Examples of org.strecks.action.NavigableFormAction


  @Override
  protected ViewAdapter executeAction(Object actionBean, ActionContext context)
  {

    NavigableFormAction action = (NavigableFormAction) actionBean;

    ActionForm form = context.getForm();

    boolean hasErrors = hasErrors(context);
    action.setInputError(hasErrors);

    if (form instanceof BindingForm && !hasErrors)
    {
      BindingForm bindingForm = (BindingForm) form;
      bindingForm.setBindOutwards(true);
    }

    action.execute();

    if (form instanceof BindingForm)
    {
      BindingForm validBindingForm = (BindingForm) form;
View Full Code Here

TOP

Related Classes of org.strecks.action.NavigableFormAction

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.