001: /*
002: * Created on 17 nov. 2004
003: *
004: */
005: package org.objectweb.speedo.pobjects.unilog;
006:
007: import java.util.Calendar;
008:
009: /**
010: * @author unilog31
011: *
012: */
013: public class Personne {
014: private int id;
015: private String lastname;
016: private String firstname;
017: private String nation;
018: private Calendar birth;
019: private Vehicle vehicle;
020:
021: /**
022: * @return Returns the birth.
023: */
024: public Calendar getBirth() {
025: return birth;
026: }
027:
028: /**
029: * @param birth The birth to set.
030: */
031: public void setBirth(Calendar birth) {
032: this .birth = birth;
033: }
034:
035: /**
036: * @return Returns the firstname.
037: */
038: public String getFirstname() {
039: return firstname;
040: }
041:
042: /**
043: * @param firstname The firstname to set.
044: */
045: public void setFirstname(String firstname) {
046: this .firstname = firstname;
047: }
048:
049: /**
050: * @return Returns the id.
051: */
052: public int getId() {
053: return id;
054: }
055:
056: /**
057: * @param id The id to set.
058: */
059: public void setId(int id) {
060: this .id = id;
061: }
062:
063: /**
064: * @return Returns the lastname.
065: */
066: public String getLastname() {
067: return lastname;
068: }
069:
070: /**
071: * @param lastname The lastname to set.
072: */
073: public void setLastname(String lastname) {
074: this .lastname = lastname;
075: }
076:
077: /**
078: * @return Returns the nation.
079: */
080: public String getNation() {
081: return nation;
082: }
083:
084: /**
085: * @param nation The nation to set.
086: */
087: public void setNation(String nation) {
088: this .nation = nation;
089: }
090:
091: /**
092: * @return Returns the vehicle.
093: */
094: public Vehicle getVehicle() {
095: return vehicle;
096: }
097:
098: /**
099: * @param vehicle The vehicle to set.
100: */
101: public void setVehicle(Vehicle vehicle) {
102: this.vehicle = vehicle;
103: }
104: }
|