コード例 #1
0
 private void remplirDelegationArrivee() {
   listDelegationsArrivee =
       villeDAO.afficheDelegation(cb_GouvernoratArrivee.getSelectedItem().toString());
   for (Ville ville : listDelegationsArrivee) {
     cb_DelegationArrivee.addItem(ville.getDelegation());
   }
 }
コード例 #2
0
 private void remplirDelegationDepart() {
   listDelegationsDepart =
       villeDAO.afficheDelegation(cb_GouvernoratDepart.getSelectedItem().toString());
   for (Ville ville : listDelegationsDepart) {
     cb_DelegationDepart.addItem(ville.getDelegation());
   }
 }
コード例 #3
0
 private void remplirLocaliteArrivee() {
   ListLocalitesArrivee =
       villeDAO.afficheLocalite(
           cb_GouvernoratArrivee.getSelectedItem().toString(),
           cb_DelegationArrivee.getSelectedItem().toString());
   for (Ville ville : ListLocalitesArrivee) {
     cb_LocaliteArrivee.addItem(ville.getLocalite());
   }
 }
コード例 #4
0
 private void remplirLocaliteDepart() {
   ListLocalitesDepart =
       villeDAO.afficheLocalite(
           cb_GouvernoratDepart.getSelectedItem().toString(),
           cb_DelegationDepart.getSelectedItem().toString());
   for (Ville ville : ListLocalitesDepart) {
     cb_LocaliteDepart.addItem(ville.getLocalite());
   }
 }
コード例 #5
0
 private void remplirGouvernoratDepart() {
   listGouvernoratsDepart = villeDAO.afficheGouvernorat();
   for (Ville ville : listGouvernoratsDepart) {
     cb_GouvernoratDepart.addItem(ville.getGouvernorat());
   }
 }
コード例 #6
0
 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
コード例 #7
0
 private void remplirGouvernoratArrivee() {
   listGouvernoratsArrivee = villeDAO.afficheGouvernorat();
   for (Ville ville : listGouvernoratsArrivee) {
     cb_GouvernoratArrivee.addItem(ville.getGouvernorat());
   }
 }