1 5 package org.objectweb.speedo.pobjects.unilog; 6 7 11 public class Time 12 { 13 14 private String number; 15 private long time; 16 private Checkpoint checkpoint; 17 long xpix; 18 long ypix; 19 22 public Checkpoint getCheckpoint() 23 { 24 return checkpoint; 25 } 26 29 public void setCheckpoint(Checkpoint checkpoint) 30 { 31 this.checkpoint = checkpoint; 32 } 33 36 public String getNumber() 37 { 38 return number; 39 } 40 43 public void setNumber(String number) 44 { 45 this.number = number; 46 } 47 50 public long getTime() 51 { 52 return time; 53 } 54 57 public void setTime(long time) 58 { 59 this.time = time; 60 } 61 64 public long getXpix() 65 { 66 return xpix; 67 } 68 71 public void setXpix(long xpix) 72 { 73 this.xpix = xpix; 74 } 75 78 public long getYpix() 79 { 80 return ypix; 81 } 82 85 public void setYpix(long ypix) 86 { 87 this.ypix = ypix; 88 } 89 } 90 | Popular Tags |