001 /** =====================================================================
002 *
003 * File Name : $Id: Solution.java,v 1.1.1.1 2007/06/01 08:33:26 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 10 May 2007 C.Bevil First Release
023 *
024 * Commissioning Notes
025 * -------------------
026 *
027 * None
028 *
029 * =====================================================================
030 *
031 * @Version : $Id: Solution.java,v 1.1.1.1 2007/06/01 08:33:26 cb Exp $
032 *
033 * @Author : $Author: cb $
034 *
035 * Header : $Header: /opt/INGsrc/src/CVS/softproj/FaultDatabase/src/FaultDatabase/FaultDatabase/src/GWTApplication/client/Solution.java,v 1.1.1.1 2007/06/01 08:33:26 cb Exp $
036 *
037 * Log : $Log: Solution.java,v $
038 * Log : Revision 1.1.1.1 2007/06/01 08:33:26 cb
039 * Log : Imported using TkCVS
040 * Log :
041 *
042 * =====================================================================*/
043
044 package GWTApplication.client;
045
046 import com.google.gwt.user.client.rpc.*;
047 import java.util.*;
048
049 public class Solution implements IsSerializable {
050
051 /**
052 * This is the christian name of the person that entered the
053 * solution
054 */
055
056 public String enteredByName;
057
058 /**
059 * This is the surname of the person that entered the
060 * solution
061 */
062
063 public String enteredBySurname;
064
065 /**
066 * This is the amount of time which was spent on the solution
067 */
068
069 public String timeSpent;
070
071 /**
072 * This is the email address of the person that entered the
073 * details of the solution
074 */
075
076 public String enteredByEmail;
077
078 /**
079 * This is the fault number which this solution is associated with
080 */
081
082 public int id;
083
084 /**
085 * This is the description of the solution which was entered
086 */
087
088 public String description;
089
090 /**
091 * This is the time at which the solution was entered into the
092 * database in HH:MM
093 */
094
095 public String timeEntered;
096
097 /**
098 * This is the date that the entry was made in DD/MM/YYYY
099 */
100
101 public String dateEntered;
102
103 /**
104 * This is the time when the entry was made into the database
105 */
106
107 public Date timeOfInitialEntry;
108
109 }