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