001 /** ===================================================================== 002 * 003 * File Name : $Id: FaultType.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: FaultType.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/FaultType.java,v 1.1.1.1 2007/06/01 08:33:26 cb Exp $ 036 * 037 * Log : $Log: FaultType.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 048 public class FaultType implements IsSerializable { 049 050 /** 051 * This is the english description of the FaultType 052 */ 053 054 private String en_description; 055 056 /** 057 * This is the spanish description of the FaultType 058 */ 059 060 private String sp_description; 061 062 /** 063 * This is the primary identifier of the FaultType 064 */ 065 066 private String id; 067 068 public String getEn_description() { 069 return en_description; 070 } 071 072 public void setEn_description(String en_description) { 073 this.en_description = en_description; 074 } 075 076 public String getSp_description() { 077 return sp_description; 078 } 079 080 public void setSp_description(String sp_description) { 081 this.sp_description = sp_description; 082 } 083 084 public String getId() { 085 return id; 086 } 087 088 public void setId(String id) { 089 this.id = id; 090 } 091 }