1 /*
2 * Created on May 9, 2003
3 *
4 * To change the template for this generated file go to
5 * Window>Preferences>Java>Code Generation>Code and Comments
6 */
7 package com.mlw.fps.model.business.vo.stats;
8
9 import java.util.Date;
10
11 import com.mlw.fps.model.business.vo.Map;
12
13 /***
14 * @author mwilson
15 *
16 * To change the template for this generated type comment go to
17 * Window>Preferences>Java>Code Generation>Code and Comments
18 */
19 public class GameStats
20 {
21 private String pk;
22 private Date startDate;
23 private Map map;
24 /***
25 *
26 */
27 public GameStats(String pk, Date startDate, Map map)
28 {
29 this.pk = pk;
30 this.startDate = startDate;
31 this.map = map;
32 }
33
34 /***
35 * @return
36 */
37 public Map getMap()
38 {
39 return map;
40 }
41
42 /***
43 * @return
44 */
45 public Date getStartDate()
46 {
47 return startDate;
48 }
49
50 /***
51 * @param map
52 */
53 public void setMap(Map map)
54 {
55 this.map= map;
56 }
57
58 /***
59 * @param date
60 */
61 public void setStartDate(Date date)
62 {
63 startDate= date;
64 }
65
66 /***
67 * @return
68 */
69 public String getPk()
70 {
71 return pk;
72 }
73
74 /***
75 * @param string
76 */
77 public void setPk(String string)
78 {
79 pk= string;
80 }
81
82 }
This page was automatically generated by Maven