01: package org.claros.intouch.webdisk.models;
02:
03: import java.io.File;
04: import java.util.TreeSet;
05:
06: public class ClarosWebDskFolder extends ClarosWebDskObject {
07: private TreeSet contents = new TreeSet();
08:
09: public ClarosWebDskFolder(File tmp) {
10: super (tmp);
11: }
12:
13: public TreeSet getContents() {
14: return contents;
15: }
16:
17: public void setContents(TreeSet contents) {
18: this.contents = contents;
19: }
20:
21: }
|