2020-05-03 14:24:13 +02:00

33 lines
598 B
Java
Executable File

package journey;
public class Trajet {
private String nom;
private Integer nombrePoints;
private int tabDistance[];
public int getTabDistance[]() {
return this.tabDistance[];
}
public void setTabDistance[](final int value) {
this.tabDistance[] = value;
}
public String getNom() {
return this.nom;
}
public void setNom(final String value) {
this.nom = value;
}
public Integer getNombrePoints() {
return this.nombrePoints;
}
public void sommeDistance() {
}
}