Package org.strecks.controller

Examples of org.strecks.controller.ActionCreator


  }

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


  }

  @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

TOP

Related Classes of org.strecks.controller.ActionCreator

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.