001 /** ===================================================================== 002 * 003 * File Name : $Id: Person.java,v 1.2 2008/01/15 11:08:15 cb Exp $ 004 * 005 * Description 006 * ----------- 007 * 008 * See javadoc comment 009 * 010 * ===================================================================== 011 * 012 * @Author : Craige Bevil 013 * Control Software Group 014 * Isaac Newton Group of Telescopes 015 * 016 * ===================================================================== 017 * 018 * Modification Log 019 * 020 * Vers Date Author Reason 021 * ---- ---- ------ ------ 022 * 1 C.Bevil First Release 023 * 024 * Commissioning Notes 025 * ------------------- 026 * 027 * None 028 * 029 * ===================================================================== 030 * 031 * @Version : $Id: Person.java,v 1.2 2008/01/15 11:08:15 cb Exp $ 032 * 033 * @Author : $Author: cb $ 034 * 035 * Header : $Header: /opt/INGsrc/src/CVS/softproj/FaultDatabase/src/FaultDatabase/FaultDatabase/src/GWTApplication/client/Person.java,v 1.2 2008/01/15 11:08:15 cb Exp $ 036 * 037 * Log : $Log: Person.java,v $ 038 * Log : Revision 1.2 2008/01/15 11:08:15 cb 039 * Log : Ran through PMD and sorted out the javadoc so that we could export the 040 * Log : javadoc to the javadoc repository. 041 * Log : 042 * Log : Revision 1.1.1.1 2007/06/01 08:33:26 cb 043 * Log : Imported using TkCVS 044 * Log : 045 * 046 * =====================================================================*/ 047 048 package GWTApplication.client; 049 050 import com.google.gwt.user.client.rpc.*; 051 052 /** 053 * This is a entity class which is used to hold the details of a person. 054 * @author Craige Bevil 055 * @version $Id: Person.java,v 1.2 2008/01/15 11:08:15 cb Exp $ 056 */ 057 058 public class Person implements IsSerializable { 059 060 /** 061 * This is the surname of the TO 062 */ 063 064 private String Surname; 065 066 /** 067 * The christian name of the TO 068 */ 069 070 private String Name; 071 072 /** 073 * Email address 074 */ 075 076 private String EmailAddress; 077 078 public String getSurname() { 079 return Surname; 080 } 081 082 public void setSurname(String Surname) { 083 this.Surname = Surname; 084 } 085 086 public String getName() { 087 return Name; 088 } 089 090 public void setName(String Name) { 091 this.Name = Name; 092 } 093 094 public String getEmailAddress() { 095 return EmailAddress; 096 } 097 098 public void setEmailAddress(String EmailAddress) { 099 this.EmailAddress = EmailAddress; 100 } 101 }