1 package net.mlw.fball.bo;
2
3 /***
4 * @author Matthew L. Wilson
5 * @version $Revision: 1.2 $ $Date: 2004/04/01 21:51:07 $
6 */
7 public class PointBasedLeague extends League
8 {
9 private static final Double DOUBLE_ZERO = new Double(0);
10
11 private Double passingYards = DOUBLE_ZERO;
12 private Double passingTouchdowns = DOUBLE_ZERO;
13 private Double passingInterceptions = DOUBLE_ZERO;
14
15 private Double rushingYards = DOUBLE_ZERO;
16 private Double rushingTouchdowns = DOUBLE_ZERO;
17
18 private Double receivingRecptions = DOUBLE_ZERO;
19 private Double receivingYards = DOUBLE_ZERO;
20 private Double receivingTouchdowns = DOUBLE_ZERO;
21
22 private Double returnTouchdowns = DOUBLE_ZERO;
23 private Double twoPointConversion = DOUBLE_ZERO;
24 private Double fumblesLost = DOUBLE_ZERO;
25
26 private Double fieldGoalRange0To19 = DOUBLE_ZERO;
27 private Double fieldGoalRange20To29 = DOUBLE_ZERO;
28 private Double fieldGoalRange30To39 = DOUBLE_ZERO;
29 private Double fieldGoalRange40To49 = DOUBLE_ZERO;
30 private Double fieldGoalRange50Plus = DOUBLE_ZERO;
31 private Double extraPointMade = DOUBLE_ZERO;
32
33 /***
34 * @return Returns the extraPointMade.
35 */
36 public Double getExtraPointMade()
37 {
38 return extraPointMade;
39 }
40
41 /***
42 * @param extraPointMade The extraPointMade to set.
43 */
44 public void setExtraPointMade(Double extraPointMade)
45 {
46 this.extraPointMade = extraPointMade;
47 }
48
49 /***
50 * @return Returns the fieldGoalRange0To19.
51 */
52 public Double getFieldGoalRange0To19()
53 {
54 return fieldGoalRange0To19;
55 }
56
57 /***
58 * @param fieldGoalRange0To19 The fieldGoalRange0To19 to set.
59 */
60 public void setFieldGoalRange0To19(Double fieldGoalRange0To19)
61 {
62 this.fieldGoalRange0To19 = fieldGoalRange0To19;
63 }
64
65 /***
66 * @return Returns the fieldGoalRange20To29.
67 */
68 public Double getFieldGoalRange20To29()
69 {
70 return fieldGoalRange20To29;
71 }
72
73 /***
74 * @param fieldGoalRange20To29 The fieldGoalRange20To29 to set.
75 */
76 public void setFieldGoalRange20To29(Double fieldGoalRange20To29)
77 {
78 this.fieldGoalRange20To29 = fieldGoalRange20To29;
79 }
80
81 /***
82 * @return Returns the fieldGoalRange30To39.
83 */
84 public Double getFieldGoalRange30To39()
85 {
86 return fieldGoalRange30To39;
87 }
88
89 /***
90 * @param fieldGoalRange30To39 The fieldGoalRange30To39 to set.
91 */
92 public void setFieldGoalRange30To39(Double fieldGoalRange30To39)
93 {
94 this.fieldGoalRange30To39 = fieldGoalRange30To39;
95 }
96
97 /***
98 * @return Returns the fieldGoalRange40To49.
99 */
100 public Double getFieldGoalRange40To49()
101 {
102 return fieldGoalRange40To49;
103 }
104
105 /***
106 * @param fieldGoalRange40To49 The fieldGoalRange40To49 to set.
107 */
108 public void setFieldGoalRange40To49(Double fieldGoalRange40To49)
109 {
110 this.fieldGoalRange40To49 = fieldGoalRange40To49;
111 }
112
113 /***
114 * @return Returns the fieldGoalRange50Plus.
115 */
116 public Double getFieldGoalRange50Plus()
117 {
118 return fieldGoalRange50Plus;
119 }
120
121 /***
122 * @param fieldGoalRange50Plus The fieldGoalRange50Plus to set.
123 */
124 public void setFieldGoalRange50Plus(Double fieldGoalRange50Plus)
125 {
126 this.fieldGoalRange50Plus = fieldGoalRange50Plus;
127 }
128
129 /***
130 * @return Returns the fumblesLost.
131 */
132 public Double getFumblesLost()
133 {
134 return fumblesLost;
135 }
136
137 /***
138 * @param fumblesLost The fumblesLost to set.
139 */
140 public void setFumblesLost(Double fumblesLost)
141 {
142 this.fumblesLost = fumblesLost;
143 }
144
145 /***
146 * @return Returns the passingInterceptions.
147 */
148 public Double getPassingInterceptions()
149 {
150 return passingInterceptions;
151 }
152
153 /***
154 * @param passingInterceptions The passingInterceptions to set.
155 */
156 public void setPassingInterceptions(Double passingInterceptions)
157 {
158 this.passingInterceptions = passingInterceptions;
159 }
160
161 /***
162 * @return Returns the passingTouchdowns.
163 */
164 public Double getPassingTouchdowns()
165 {
166 return passingTouchdowns;
167 }
168
169 /***
170 * @param passingTouchdowns The passingTouchdowns to set.
171 */
172 public void setPassingTouchdowns(Double passingTouchdowns)
173 {
174 this.passingTouchdowns = passingTouchdowns;
175 }
176
177 /***
178 * @return Returns the passingYards.
179 */
180 public Double getPassingYards()
181 {
182 return passingYards;
183 }
184
185 /***
186 * @param passingYards The passingYards to set.
187 */
188 public void setPassingYards(Double passingYards)
189 {
190 this.passingYards = passingYards;
191 }
192
193 /***
194 * @return Returns the receivingRecptions.
195 */
196 public Double getReceivingRecptions()
197 {
198 return receivingRecptions;
199 }
200
201 /***
202 * @param receivingRecptions The receivingRecptions to set.
203 */
204 public void setReceivingRecptions(Double receivingRecptions)
205 {
206 this.receivingRecptions = receivingRecptions;
207 }
208
209 /***
210 * @return Returns the receivingTouchdowns.
211 */
212 public Double getReceivingTouchdowns()
213 {
214 return receivingTouchdowns;
215 }
216
217 /***
218 * @param receivingTouchdowns The receivingTouchdowns to set.
219 */
220 public void setReceivingTouchdowns(Double receivingTouchdowns)
221 {
222 this.receivingTouchdowns = receivingTouchdowns;
223 }
224
225 /***
226 * @return Returns the receivingYards.
227 */
228 public Double getReceivingYards()
229 {
230 return receivingYards;
231 }
232
233 /***
234 * @param receivingYards The receivingYards to set.
235 */
236 public void setReceivingYards(Double receivingYards)
237 {
238 this.receivingYards = receivingYards;
239 }
240
241 /***
242 * @return Returns the returnTouchdowns.
243 */
244 public Double getReturnTouchdowns()
245 {
246 return returnTouchdowns;
247 }
248
249 /***
250 * @param returnTouchdowns The returnTouchdowns to set.
251 */
252 public void setReturnTouchdowns(Double returnTouchdowns)
253 {
254 this.returnTouchdowns = returnTouchdowns;
255 }
256
257 /***
258 * @return Returns the rushingTouchdowns.
259 */
260 public Double getRushingTouchdowns()
261 {
262 return rushingTouchdowns;
263 }
264
265 /***
266 * @param rushingTouchdowns The rushingTouchdowns to set.
267 */
268 public void setRushingTouchdowns(Double rushingTouchdowns)
269 {
270 this.rushingTouchdowns = rushingTouchdowns;
271 }
272
273 /***
274 * @return Returns the rushingYards.
275 */
276 public Double getRushingYards()
277 {
278 return rushingYards;
279 }
280
281 /***
282 * @param rushingYards The rushingYards to set.
283 */
284 public void setRushingYards(Double rushingYards)
285 {
286 this.rushingYards = rushingYards;
287 }
288
289 /***
290 * @return Returns the twoPointConversion.
291 */
292 public Double getTwoPointConversion()
293 {
294 return twoPointConversion;
295 }
296
297 /***
298 * @param twoPointConversion The twoPointConversion to set.
299 */
300 public void setTwoPointConversion(Double twoPointConversion)
301 {
302 this.twoPointConversion = twoPointConversion;
303 }
304
305 }
This page was automatically generated by Maven