01: package com.xoetrope.pm;
02:
03: import java.net.URI;
04:
05: /**
06: * A structure for modelling a contact person or location
07: *
08: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
09: * the GNU Public License (GPL), please see license.txt for more details. If
10: * you make commercial use of this software you must purchase a commercial
11: * license from Xoetrope.</p>
12: * <p> $Revision: 1.2 $</p>
13: */
14: public class Contact extends ProjectManagementObject implements
15: Cloneable {
16: protected Person contactPerson;
17: protected TelephoneNumber contactNumber;
18: protected Address contactAddress;
19: protected URI emailAddress;
20: protected long role;
21:
22: public Contact() {
23: super ("contact");
24: }
25:
26: }
|