1 package org.apache.turbine.services.intake;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import java.util.Date;
23
24 public class RequiredFalseGroupTestObject
25 {
26 private String stringRF;
27 private Integer integerRF = null;
28 private int intRF;
29 private Date dateRF;
30
31 /***
32 * @return the dateRF
33 */
34 public Date getDateRF()
35 {
36 return dateRF;
37 }
38
39 /***
40 * @param dateRF the dateRF to set
41 */
42 public void setDateRF(Date dateRF)
43 {
44 this.dateRF = dateRF;
45 }
46
47 /***
48 * @return the integerRF
49 */
50 public Integer getIntegerRF()
51 {
52 return integerRF;
53 }
54
55 /***
56 * @param integerRF the integerRF to set
57 */
58 public void setIntegerRF(Integer integerRF)
59 {
60 this.integerRF = integerRF;
61 }
62
63 /***
64 * @return the intRF
65 */
66 public int getIntRF()
67 {
68 return intRF;
69 }
70
71 /***
72 * @param intRF the intRF to set
73 */
74 public void setIntRF(int intRF)
75 {
76 this.intRF = intRF;
77 }
78
79 /***
80 * @return the stringRF
81 */
82 public String getStringRF()
83 {
84 return stringRF;
85 }
86
87 /***
88 * @param stringRF the stringRF to set
89 */
90 public void setStringRF(String stringRF)
91 {
92 this.stringRF = stringRF;
93 }
94 }