JComboBox terminus2 = new JComboBox();
AutoCompleteSupport support2 = AutoCompleteSupport.install(
terminus2, GlazedLists.eventListOf(stations));
Station station1 = new Station();
Station station2 = new Station();
//Message contenant deux chaînes de caractères et les deux listes déroulantes
Object[] message = new Object[] { "Station de départ : ", terminus1,
"Station d'arrivée : ", terminus2 };
//Lance la pop-up de modification contenant le message
int r = JOptionPane.showConfirmDialog(null, message,
"Ajouter des terminus", JOptionPane.OK_CANCEL_OPTION);
//Si l'utilisateur a cliqué sur le bouton "OK"
if (r == JOptionPane.OK_OPTION) {
station1.setName(terminus1.getSelectedItem().toString());
station2.setName(terminus2.getSelectedItem().toString());
station1=controller.copyStation(station1);
station2=controller.copyStation(station2);
if(station1!=null && station2!=null)
{
temp.getStations().add(station1);