1 /*
2 * Created on 2004/12/17
3 */
4 package org.ieee.shinobu.demo.velocity.ben;
5
6 import java.io.Serializable;
7
8 import org.apache.struts.action.ActionForm;
9
10 /***
11 * @author shinobu
12 */
13 public class BenActionForm extends ActionForm implements Serializable {
14
15 private String foo = null;
16
17 /***
18 * @return Returns the foo.
19 */
20 public String getFoo() {
21 return this.foo;
22 }
23 /***
24 * @param foo The foo to set.
25 */
26 public void setFoo(String foo) {
27 this.foo = foo;
28 }
29 }