01: package org.claros.mini.models;
02:
03: import org.apache.struts.action.ActionForm;
04:
05: /**
06: * Form bean for a Struts application.
07: * Users may access 1 field on this form:
08: * <ul>
09: * <li>msg - [your comment here]
10: * </ul>
11: * @version 1.0
12: * @author
13: */
14: public class MailboxFormBean extends ActionForm {
15: private int[] msg = null;
16: private String fid = null;
17:
18: /**
19: * @return
20: */
21: public String getFid() {
22: return fid;
23: }
24:
25: /**
26: * @return
27: */
28: public int[] getMsg() {
29: return msg;
30: }
31:
32: /**
33: * @param string
34: */
35: public void setFid(String string) {
36: fid = string;
37: }
38:
39: /**
40: * @param is
41: */
42: public void setMsg(int[] is) {
43: msg = is;
44: }
45:
46: }
|