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