KickJava   Java API By Example, From Geeks To Geeks.

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


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

5 package org.objectweb.speedo.pobjects.unilog;
6
7 /**
8  * @author unilog31
9  *
10  */

11 public class Time
12 {
13   
14   private String JavaDoc number;
15   private long time;
16   private Checkpoint checkpoint;
17   long xpix;
18   long ypix;
19   /**
20    * @return Returns the checkpoint.
21    */

22   public Checkpoint getCheckpoint()
23   {
24     return checkpoint;
25   }
26   /**
27    * @param checkpoint The checkpoint to set.
28    */

29   public void setCheckpoint(Checkpoint checkpoint)
30   {
31     this.checkpoint = checkpoint;
32   }
33   /**
34    * @return Returns the number.
35    */

36   public String JavaDoc getNumber()
37   {
38     return number;
39   }
40   /**
41    * @param number The number to set.
42    */

43   public void setNumber(String JavaDoc number)
44   {
45     this.number = number;
46   }
47   /**
48    * @return Returns the time.
49    */

50   public long getTime()
51   {
52     return time;
53   }
54   /**
55    * @param time The time to set.
56    */

57   public void setTime(long time)
58   {
59     this.time = time;
60   }
61   /**
62    * @return Returns the xpix.
63    */

64   public long getXpix()
65   {
66     return xpix;
67   }
68   /**
69    * @param xpix The xpix to set.
70    */

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

78   public long getYpix()
79   {
80     return ypix;
81   }
82   /**
83    * @param ypix The ypix to set.
84    */

85   public void setYpix(long ypix)
86   {
87     this.ypix = ypix;
88   }
89 }
90
Popular Tags