1 18 19 20 package org.apache.struts.action; 21 22 23 import org.apache.struts.config.FormBeanConfig; 24 25 26 41 public class ActionFormBean extends FormBeanConfig { 42 43 44 47 public ActionFormBean() { 48 49 super(); 50 51 } 52 53 54 60 public ActionFormBean(String name, String type) { 61 62 super(); 63 setName(name); 64 setType(type); 65 66 } 67 68 69 } 70 | Popular Tags |