1
2
3
4
5
6
7
8 package org.astrogrid.registry.beans.resource.votable;
9
10
11
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
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
43
44
45 public DEFINITIONSItem() {
46 super();
47 }
48
49
50
51
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 }
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 }
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 }
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 }
93
94 }