19 lines
305 B
Java
19 lines
305 B
Java
|
|
public class Voiture implements Vehicule{
|
|
private String type;
|
|
private int roues;
|
|
|
|
public Voiture(){
|
|
this.type = "voiture";
|
|
this.roues = 4;
|
|
}
|
|
|
|
public int nbRoues(){
|
|
return this.roues;
|
|
}
|
|
|
|
public String sorte(){
|
|
return this.type;
|
|
}
|
|
}
|
|
|