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>attachFile - [your comment here]
10: * </ul>
11: * @version 1.0
12: * @author
13: */
14: public class AttachmentFormBean extends ActionForm {
15:
16: private org.apache.struts.upload.FormFile attachFile = null;
17:
18: /**
19: * Get attachFile
20: * @return org.apache.struts.upload.FormFile[]
21: */
22: public org.apache.struts.upload.FormFile getAttachFile() {
23: return attachFile;
24: }
25:
26: /**
27: * Set attachFile
28: * @param <code>org.apache.struts.upload.FormFile[]</code>
29: */
30: public void setAttachFile(org.apache.struts.upload.FormFile a) {
31: this.attachFile = a;
32: }
33:
34: }
|