13 lines
265 B
Java
13 lines
265 B
Java
package org.apache.struts.action;
|
|
|
|
import org.apache.struts.config.FormBeanConfig;
|
|
|
|
public class ActionFormBean extends FormBeanConfig {
|
|
public ActionFormBean() {}
|
|
|
|
public ActionFormBean(String name, String type) {
|
|
setName(name);
|
|
setType(type);
|
|
}
|
|
}
|