01: package hero.util;
02:
03: import java.io.Serializable;
04: import java.util.*;
05:
06: public final class Projects implements Serializable,
07: java.lang.Cloneable {
08:
09: // --------------------------------------------------- Instance Variables
10:
11: /**
12: * The nodes
13: */
14: private Collection projects;
15:
16: // ----------------------------------------------------------- properties
17:
18: /**
19: * Get the projects
20: *@return Collection
21: */
22: public Collection getProject() {
23: return (projects);
24: }
25:
26: /**
27: * Set the projects.
28: * @param projects
29: */
30: public void setProject(Collection projects) {
31: this .projects = projects;
32: }
33:
34: public Projects() {
35: }
36:
37: public Object clone() throws java.lang.CloneNotSupportedException {
38: return super.clone();
39: }
40:
41: }
|