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 2 fields on this form:
08: * <ul>
09: * <li>folderName - [your comment here]
10: * <li>id - [your comment here]
11: * </ul>
12: * @version 1.0
13: * @author
14: */
15: public class FolderFormBean extends ActionForm {
16:
17: private String folderName = null;
18: private String id = null;
19:
20: /**
21: * Get folderName
22: * @return String
23: */
24: public String getFolderName() {
25: return folderName;
26: }
27:
28: /**
29: * Set folderName
30: * @param <code>String</code>
31: */
32: public void setFolderName(String f) {
33: this .folderName = f;
34: }
35:
36: /**
37: * Get id
38: * @return String
39: */
40: public String getId() {
41: return id;
42: }
43:
44: /**
45: * Set id
46: * @param <code>String</code>
47: */
48: public void setId(String i) {
49: this.id = i;
50: }
51:
52: }
|