private void remplirDelegationArrivee() { listDelegationsArrivee = villeDAO.afficheDelegation(cb_GouvernoratArrivee.getSelectedItem().toString()); for (Ville ville : listDelegationsArrivee) { cb_DelegationArrivee.addItem(ville.getDelegation()); } }
private void remplirDelegationDepart() { listDelegationsDepart = villeDAO.afficheDelegation(cb_GouvernoratDepart.getSelectedItem().toString()); for (Ville ville : listDelegationsDepart) { cb_DelegationDepart.addItem(ville.getDelegation()); } }
private void remplirLocaliteArrivee() { ListLocalitesArrivee = villeDAO.afficheLocalite( cb_GouvernoratArrivee.getSelectedItem().toString(), cb_DelegationArrivee.getSelectedItem().toString()); for (Ville ville : ListLocalitesArrivee) { cb_LocaliteArrivee.addItem(ville.getLocalite()); } }
private void remplirLocaliteDepart() { ListLocalitesDepart = villeDAO.afficheLocalite( cb_GouvernoratDepart.getSelectedItem().toString(), cb_DelegationDepart.getSelectedItem().toString()); for (Ville ville : ListLocalitesDepart) { cb_LocaliteDepart.addItem(ville.getLocalite()); } }
private void remplirGouvernoratDepart() { listGouvernoratsDepart = villeDAO.afficheGouvernorat(); for (Ville ville : listGouvernoratsDepart) { cb_GouvernoratDepart.addItem(ville.getGouvernorat()); } }
private void boutton_LocaliserActionPerformed( java.awt.event.ActionEvent evt) { // GEN-FIRST:event_boutton_LocaliserActionPerformed Ville depart = new Ville(), arrivee = new Ville(); depart.setGouvernorat(cb_GouvernoratDepart.getSelectedItem().toString()); depart.setDelegation(cb_DelegationDepart.getSelectedItem().toString()); depart.setLatitude(villeDAO.localiserVille_nom(depart.getGouvernorat()).getLatitude()); depart.setLongitude(villeDAO.localiserVille_nom(depart.getGouvernorat()).getLongitude()); arrivee.setGouvernorat(cb_GouvernoratArrivee.getSelectedItem().toString()); arrivee.setDelegation(cb_DelegationArrivee.getSelectedItem().toString()); arrivee.setLatitude(villeDAO.localiserVille_nom(arrivee.getGouvernorat()).getLatitude()); arrivee.setLongitude(villeDAO.localiserVille_nom(arrivee.getGouvernorat()).getLongitude()); Navigateur.main(depart, arrivee); } // GEN-LAST:event_boutton_LocaliserActionPerformed
private void remplirGouvernoratArrivee() { listGouvernoratsArrivee = villeDAO.afficheGouvernorat(); for (Ville ville : listGouvernoratsArrivee) { cb_GouvernoratArrivee.addItem(ville.getGouvernorat()); } }