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() { } }