Package org.seefan.prism.test.vo

Examples of org.seefan.prism.test.vo.TestForm


import org.seefan.prism.test.vo.TestForm;

public class DemoObjectAction extends ActionBase {

  public void load(HttpServletRequest request) {
    TestForm test = new TestForm();
    test.setId(new Random().nextInt());
    test.setName("随机" + new Random().nextGaussian());
    request.setAttribute("init", test);
  }
View Full Code Here

TOP

Related Classes of org.seefan.prism.test.vo.TestForm

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.