1 4 package org.objectweb.speedo.pobjects.unilog; 5 6 import java.util.Collection ; 7 8 11 public class Vehicle 12 { 13 int id; 14 Team team; 15 String number; 16 String type; 17 String brand; 18 String category; 19 boolean isIritrack; 20 String group; 21 String classe; 22 Collection personnes; 23 Collection competitions; 24 25 26 public String getBrand() { 27 return brand; 28 } 29 public void setBrand(String brand) { 30 this.brand = brand; 31 } 32 public String getCategory() { 33 return category; 34 } 35 public void setCategory(String category) { 36 this.category = category; 37 } 38 public String getClasse() { 39 return classe; 40 } 41 public void setClasse(String classe) { 42 this.classe = classe; 43 } 44 public Collection getCompetitions() { 45 return competitions; 46 } 47 public void setCompetitions(Collection competitions) { 48 this.competitions = competitions; 49 } 50 public String getGroup() { 51 return group; 52 } 53 public void setGroup(String group) { 54 this.group = group; 55 } 56 public int getId() { 57 return id; 58 } 59 public void setId(int id) { 60 this.id = id; 61 } 62 public boolean isIritrack() { 63 return isIritrack; 64 } 65 public void setIritrack(boolean isIritrack) { 66 this.isIritrack = isIritrack; 67 } 68 public String getNumber() { 69 return number; 70 } 71 public void setNumber(String number) { 72 this.number = number; 73 } 74 public Collection getPersonnes() { 75 return personnes; 76 } 77 public void setPersonnes(Collection personnes) { 78 this.personnes = personnes; 79 } 80 public Team getTeam() { 81 return team; 82 } 83 public void setTeam(Team team) { 84 this.team = team; 85 } 86 public String getType() { 87 return type; 88 } 89 public void setType(String type) { 90 this.type = type; 91 } 92 } 93 | Popular Tags |