1 5 package org.objectweb.speedo.pobjects.unilog; 6 7 import java.util.Collection ; 8 9 12 public class Competition 13 { 14 private int id; 15 private String name; 16 private int specialLength; 17 private long dateStart; 18 private int dateFinish; 19 private int liaison1Length; 20 private int liaison2Length; 21 private Collection checkpoints; 22 private Collection vehicules; 23 24 27 public int getLiaison1Length() 28 { 29 return liaison1Length; 30 } 31 34 public void setLiaison1Length(int liaison1Length) 35 { 36 this.liaison1Length = liaison1Length; 37 } 38 41 public int getLiaison2Length() 42 { 43 return liaison2Length; 44 } 45 48 public void setLiaison2Length(int liaison2Length) 49 { 50 this.liaison2Length = liaison2Length; 51 } 52 55 public String getName() 56 { 57 return name; 58 } 59 62 public void setName(String name) 63 { 64 this.name = name; 65 } 66 69 public int getSpecialLength() 70 { 71 return specialLength; 72 } 73 76 public void setSpecialLength(int specialLength) 77 { 78 this.specialLength = specialLength; 79 } 80 83 public Collection getVehicules() 84 { 85 return vehicules; 86 } 87 90 public void setVehicules(Collection vehiculeCompetitions) 91 { 92 this.vehicules = vehiculeCompetitions; 93 } 94 } 95 | Popular Tags |