KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > speedo > pobjects > unilog > Checkpoint


1 /*
2  * Created on 22 nov. 2004
3  *
4  */

5 package org.objectweb.speedo.pobjects.unilog;
6
7 import java.util.Collection JavaDoc;
8
9 /**
10  * @author unilog31
11  */

12 public class Checkpoint
13 {
14   long id;
15   Competition competition;
16   String JavaDoc name;
17   long order;
18   long distance;
19   long xpix;
20   long ypix;
21   Collection JavaDoc times;
22   /**
23    * @return Returns the id.
24    */

25   public long getId()
26   {
27     return id;
28   }
29   /**
30    * @param id The id to set.
31    */

32   public void setId(long id)
33   {
34     this.id = id;
35   }
36   /**
37    * @return Returns the name.
38    */

39   public String JavaDoc getName()
40   {
41     return name;
42   }
43   /**
44    * @param name The name to set.
45    */

46   public void setName(String JavaDoc name)
47   {
48     this.name = name;
49   }
50   /**
51    * @return Returns the order.
52    */

53   public long getOrder()
54   {
55     return order;
56   }
57   /**
58    * @param order The order to set.
59    */

60   public void setOrder(long order)
61   {
62     this.order = order;
63   }
64   /**
65    * @return Returns the xpix.
66    */

67   public long getXpix()
68   {
69     return xpix;
70   }
71   /**
72    * @param xpix The xpix to set.
73    */

74   public void setXpix(long xpix)
75   {
76     this.xpix = xpix;
77   }
78   /**
79    * @return Returns the ypix.
80    */

81   public long getYpix()
82   {
83     return ypix;
84   }
85   /**
86    * @param ypix The ypix to set.
87    */

88   public void setYpix(long ypix)
89   {
90     this.ypix = ypix;
91   }
92 }
93
Popular Tags