001: /*
002: * Created on 17 nov. 2004
003: */
004: package org.objectweb.speedo.pobjects.unilog;
005:
006: import java.util.Collection;
007:
008: /**
009: * @author unilog31
010: */
011: public class Vehicle {
012: int id;
013: Team team;
014: String number;
015: String type;
016: String brand;
017: String category;
018: boolean isIritrack;
019: String group;
020: String classe;
021: Collection personnes;
022: Collection competitions;
023:
024: public String getBrand() {
025: return brand;
026: }
027:
028: public void setBrand(String brand) {
029: this .brand = brand;
030: }
031:
032: public String getCategory() {
033: return category;
034: }
035:
036: public void setCategory(String category) {
037: this .category = category;
038: }
039:
040: public String getClasse() {
041: return classe;
042: }
043:
044: public void setClasse(String classe) {
045: this .classe = classe;
046: }
047:
048: public Collection getCompetitions() {
049: return competitions;
050: }
051:
052: public void setCompetitions(Collection competitions) {
053: this .competitions = competitions;
054: }
055:
056: public String getGroup() {
057: return group;
058: }
059:
060: public void setGroup(String group) {
061: this .group = group;
062: }
063:
064: public int getId() {
065: return id;
066: }
067:
068: public void setId(int id) {
069: this .id = id;
070: }
071:
072: public boolean isIritrack() {
073: return isIritrack;
074: }
075:
076: public void setIritrack(boolean isIritrack) {
077: this .isIritrack = isIritrack;
078: }
079:
080: public String getNumber() {
081: return number;
082: }
083:
084: public void setNumber(String number) {
085: this .number = number;
086: }
087:
088: public Collection getPersonnes() {
089: return personnes;
090: }
091:
092: public void setPersonnes(Collection personnes) {
093: this .personnes = personnes;
094: }
095:
096: public Team getTeam() {
097: return team;
098: }
099:
100: public void setTeam(Team team) {
101: this .team = team;
102: }
103:
104: public String getType() {
105: return type;
106: }
107:
108: public void setType(String type) {
109: this.type = type;
110: }
111: }
|