01: package com.xoetrope.pm;
02:
03: import java.util.Hashtable;
04: import java.util.Vector;
05:
06: /**
07: * A class to model an assignable set of objects participating in a project
08: *
09: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
10: * the GNU Public License (GPL), please see license.txt for more details. If
11: * you make commercial use of this software you must purchase a commercial
12: * license from Xoetrope.</p>
13: * <p> $Revision: 1.2 $</p>
14: */
15: public class ProjectGroup extends ProjectManagementObject implements
16: Cloneable {
17: protected Hashtable attributes;
18: protected Vector contents;
19:
20: public ProjectGroup() {
21: super ("ProjectGroup");
22: }
23:
24: }
|