Package org.springframework.tests.sample.beans

Examples of org.springframework.tests.sample.beans.GenericBean


    this.tag.setParent(this.parentTag);
    this.tag.setPageContext(getPageContext());
  }

  public void testWithJavaEnum() throws Exception {
    GenericBean testBean = new GenericBean();
    testBean.setCustomEnum(CustomEnum.VALUE_1);
    getPageContext().getRequest().setAttribute("testBean", testBean);
    String selectName = "testBean.customEnum";
    getPageContext().setAttribute(SelectTag.LIST_VALUE_PAGE_ATTRIBUTE, new BindStatus(getRequestContext(), selectName, false));

    this.tag.setValue("VALUE_1");
View Full Code Here

TOP

Related Classes of org.springframework.tests.sample.beans.GenericBean

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.