Package org.strecks.controller

Examples of org.strecks.controller.ActionCreatorImpl


  }

  @Test
  public void testCreationAction() throws Exception
  {
    ActionCreator actionCreator = new ActionCreatorImpl();
    Action action = actionCreator.createAction(NavigableFormSubmitBean.class);
    NavigableSubmitController controller = (NavigableSubmitController) action;
    assert controller.getBeanSource() != null;
    assert controller.getNavigationHolder() != null;
  }
View Full Code Here


{

  @Test
  public void testCreationAction() throws Exception
  {
    ActionCreator actionCreator = new ActionCreatorImpl();
    Action action = actionCreator.createAction(NavigableReadOnlyBean.class);
    NavigableController controller = (NavigableController) action;
    assert controller.getBeanSource() != null;
    assert controller.getNavigationHolder() != null;
  }
View Full Code Here

    actionCreator = newActionCreator();
  }

  protected ActionCreator newActionCreator()
  {
    return new ActionCreatorImpl();
  }
View Full Code Here

TOP

Related Classes of org.strecks.controller.ActionCreatorImpl

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.