add
Adds an item to this Choice menu. @param item the item to be added @exception NullPointerException if the item's value is equal tonull
Choice
null
7374757677787980818283
//Crée une liste déroulante vierge station = new JComboBox(); //Liste déroulante contenant "semaine" ou "week-end" Choice period = new Choice(); period.addItem("Semaine"); period.addItem("Week-end"); Line tempLine = new Line(); Station tempStation = new Station();
7475767778798081828384
station = new JComboBox(); //Liste déroulante contenant "semaine" ou "week-end" Choice period = new Choice(); period.addItem("Semaine"); period.addItem("Week-end"); Line tempLine = new Line(); Station tempStation = new Station(); //Crée un message contenant des chaînes de caractères et les listes déroulantes