1 5 package org.objectweb.speedo.pobjects.unilog; 6 7 import java.util.Calendar ; 8 9 13 public class Personne 14 { 15 private int id; 16 private String lastname; 17 private String firstname; 18 private String nation; 19 private Calendar birth; 20 private Vehicle vehicle; 21 24 public Calendar getBirth() 25 { 26 return birth; 27 } 28 31 public void setBirth(Calendar birth) 32 { 33 this.birth = birth; 34 } 35 38 public String getFirstname() 39 { 40 return firstname; 41 } 42 45 public void setFirstname(String firstname) 46 { 47 this.firstname = firstname; 48 } 49 52 public int getId() 53 { 54 return id; 55 } 56 59 public void setId(int id) 60 { 61 this.id = id; 62 } 63 66 public String getLastname() 67 { 68 return lastname; 69 } 70 73 public void setLastname(String lastname) 74 { 75 this.lastname = lastname; 76 } 77 80 public String getNation() 81 { 82 return nation; 83 } 84 87 public void setNation(String nation) 88 { 89 this.nation = nation; 90 } 91 94 public Vehicle getVehicle() 95 { 96 return vehicle; 97 } 98 101 public void setVehicle(Vehicle vehicle) 102 { 103 this.vehicle = vehicle; 104 } 105 } 106 | Popular Tags |