Package org.strecks.controller.impl

Examples of org.strecks.controller.impl.SimpleBindableForm


  public void testValidBindingForm3() throws Exception
  {
    HttpServletRequest request = createMock(HttpServletRequest.class);

    FormWrapper delegate = new ValidateBindFormWrapper();
    SimpleBindableForm simpleBindableForm = new SimpleBindableForm();

    ControllerRequestProcessor processor = new ControllerRequestProcessor();
    processor.setFormHandler(delegate);

    assert processor.postProcessActionForm(request, null, simpleBindableForm) instanceof WrappingForm;
View Full Code Here

TOP

Related Classes of org.strecks.controller.impl.SimpleBindableForm

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.