public class Station{ private String nom; public Station(String s){ this.nom = s; } public String toString(){ return "Station : "+this.nom; } }