01: package com.xoetrope.pm;
02:
03: /**
04: * A structure for managing information about a person
05: *
06: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
07: * the GNU Public License (GPL), please see license.txt for more details. If
08: * you make commercial use of this software you must purchase a commercial
09: * license from Xoetrope.</p>
10: * <p> $Revision: 1.2 $</p>
11: */
12: public class Person extends ProjectManagementObject implements
13: Cloneable {
14: public Person() {
15: super ("Person");
16: }
17: }
|