001    /** =====================================================================       
002    *
003    *  File Name : $Id: FDBSystem.java,v 1.2 2007/08/20 14:51:41 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: FDBSystem.java,v 1.2 2007/08/20 14:51:41 cb Exp $
032    *
033    *     @Author    : $Author: cb $
034    *
035    *     Header     : $Header: /opt/INGsrc/src/CVS/softproj/FaultDatabase/src/FaultDatabase/FaultDatabase/src/GWTApplication/client/FDBSystem.java,v 1.2 2007/08/20 14:51:41 cb Exp $
036    *
037    *     Log        : $Log: FDBSystem.java,v $
038    *     Log        : Revision 1.2  2007/08/20 14:51:41  cb
039    *     Log        : Added javadoc
040    *     Log        :
041    *     Log        : Revision 1.1.1.1  2007/06/01 08:33:26  cb
042    *     Log        : Imported using TkCVS
043    *     Log        :
044    *
045    * =====================================================================*/
046    
047    package GWTApplication.client;
048    
049    import com.google.gwt.user.client.rpc.*;
050    
051    public class FDBSystem implements IsSerializable {
052        
053        /**
054         * This is the english description of the FDBSystem
055         */
056        
057        private String en_description;
058    
059        /**
060         * This is the spanish description of the FDBSystem 
061         */
062    
063        private String sp_description;
064    
065        /**
066         * This is the primary identifier of the FDBSystem 
067         */
068    
069        private String id;
070    
071        /**
072         * Gets the English description of the system
073         * @return String English description of the system. 
074         */
075        
076        public String getEn_description() {
077            return en_description;
078        }
079    
080        /**
081         * Sets the English description of the system
082         * @param en_description English description of the system. 
083         */
084    
085        public void setEn_description(String en_description) {
086            this.en_description = en_description;
087        }
088    
089        /**
090         * Gets the Spanish description of the system
091         * @return String Spanish description of the system. 
092         */
093    
094        public String getSp_description() {
095            return sp_description;
096        }
097    
098        /**
099         * Sets the Spanish description of the system
100         * @param sp_description Spanish description of the system. 
101         */
102        
103        public void setSp_description(String sp_description) {
104            this.sp_description = sp_description;
105        }
106    
107        /**
108         * Gets the primary key which is associated with the system
109         * @return The primary key 
110        */
111         
112        public String getId() {
113            return id;
114        }
115    
116        /**
117         * Sets the primary key which is associated with the system
118         * @param id The primary key 
119         */
120        
121        public void setId(String id) {
122            this.id = id;
123        }
124    }