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