View Javadoc

1   /*
2    * This class was automatically generated with 
3    * <a href="http://www.castor.org">Castor 0.9.4.3</a>, using an XML
4    * Schema.
5    * $Id: DEFINITIONSItem.java,v 1.14 2007/01/04 16:26:13 clq2 Exp $
6    */
7   
8   package org.astrogrid.registry.beans.resource.votable;
9   
10    //---------------------------------/
11   //- Imported classes and packages -/
12  //---------------------------------/
13  
14  import java.io.Serializable;
15  import org.exolab.castor.xml.Marshaller;
16  import org.exolab.castor.xml.Unmarshaller;
17  
18  /***
19   * Class DEFINITIONSItem.
20   * 
21   * @version $Revision: 1.14 $ $Date: 2007/01/04 16:26:13 $
22   */
23  public class DEFINITIONSItem implements java.io.Serializable {
24  
25  
26        //--------------------------/
27       //- Class/Member Variables -/
28      //--------------------------/
29  
30      /***
31       * Field _COOSYS
32       */
33      private org.astrogrid.registry.beans.resource.votable.COOSYS _COOSYS;
34  
35      /***
36       * Field _PARAM
37       */
38      private org.astrogrid.registry.beans.resource.votable.PARAM _PARAM;
39  
40  
41        //----------------/
42       //- Constructors -/
43      //----------------/
44  
45      public DEFINITIONSItem() {
46          super();
47      } //-- org.astrogrid.registry.beans.resource.votable.DEFINITIONSItem()
48  
49  
50        //-----------/
51       //- Methods -/
52      //-----------/
53  
54      /***
55       * Returns the value of field 'COOSYS'.
56       * 
57       * @return the value of field 'COOSYS'.
58       */
59      public org.astrogrid.registry.beans.resource.votable.COOSYS getCOOSYS()
60      {
61          return this._COOSYS;
62      } //-- org.astrogrid.registry.beans.resource.votable.COOSYS getCOOSYS() 
63  
64      /***
65       * Returns the value of field 'PARAM'.
66       * 
67       * @return the value of field 'PARAM'.
68       */
69      public org.astrogrid.registry.beans.resource.votable.PARAM getPARAM()
70      {
71          return this._PARAM;
72      } //-- org.astrogrid.registry.beans.resource.votable.PARAM getPARAM() 
73  
74      /***
75       * Sets the value of field 'COOSYS'.
76       * 
77       * @param COOSYS the value of field 'COOSYS'.
78       */
79      public void setCOOSYS(org.astrogrid.registry.beans.resource.votable.COOSYS COOSYS)
80      {
81          this._COOSYS = COOSYS;
82      } //-- void setCOOSYS(org.astrogrid.registry.beans.resource.votable.COOSYS) 
83  
84      /***
85       * Sets the value of field 'PARAM'.
86       * 
87       * @param PARAM the value of field 'PARAM'.
88       */
89      public void setPARAM(org.astrogrid.registry.beans.resource.votable.PARAM PARAM)
90      {
91          this._PARAM = PARAM;
92      } //-- void setPARAM(org.astrogrid.registry.beans.resource.votable.PARAM) 
93  
94  }