01: /*
02: * Created on 22 nov. 2004
03: *
04: */
05: package org.objectweb.speedo.pobjects.unilog;
06:
07: import java.util.Collection;
08:
09: /**
10: * @author unilog31
11: */
12: public class Checkpoint {
13: long id;
14: Competition competition;
15: String name;
16: long order;
17: long distance;
18: long xpix;
19: long ypix;
20: Collection times;
21:
22: /**
23: * @return Returns the id.
24: */
25: public long getId() {
26: return id;
27: }
28:
29: /**
30: * @param id The id to set.
31: */
32: public void setId(long id) {
33: this .id = id;
34: }
35:
36: /**
37: * @return Returns the name.
38: */
39: public String getName() {
40: return name;
41: }
42:
43: /**
44: * @param name The name to set.
45: */
46: public void setName(String name) {
47: this .name = name;
48: }
49:
50: /**
51: * @return Returns the order.
52: */
53: public long getOrder() {
54: return order;
55: }
56:
57: /**
58: * @param order The order to set.
59: */
60: public void setOrder(long order) {
61: this .order = order;
62: }
63:
64: /**
65: * @return Returns the xpix.
66: */
67: public long getXpix() {
68: return xpix;
69: }
70:
71: /**
72: * @param xpix The xpix to set.
73: */
74: public void setXpix(long xpix) {
75: this .xpix = xpix;
76: }
77:
78: /**
79: * @return Returns the ypix.
80: */
81: public long getYpix() {
82: return ypix;
83: }
84:
85: /**
86: * @param ypix The ypix to set.
87: */
88: public void setYpix(long ypix) {
89: this.ypix = ypix;
90: }
91: }
|