270271272273274275276277
if (dlgDialog.OK_Button()) { Ville ville = dlgDialog.renvoiVille(); getVilleDao().insert(ville); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }
293294295296297298299300
ville = dlgDialog.renvoiVille(); getVilleDao().update(ville); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }
457458459460461462463464
aDialog.setLocation((p.x + 450), (p.y + 200)); aDialog.pack(); aDialog.setVisible(true); } catch (NullPointerException exc) { throw new PrjException(exc.getMessage()); } }
191192193194195196197198
if (dlgDialog.OK_Button()) { Etat etat = dlgDialog.renvoiEtat(); getEtatDao().insert(etat); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }
214215216217218219220221
etat = dlgDialog.renvoiEtat(); getEtatDao().update(etat); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }
190191192193194195196197
if (dlgDialog.OK_Button()) { ModeleVoiture modeleVoiture = dlgDialog.renvoiModeleVoiture(); getModeleVoitureDao().insert(modeleVoiture); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }
213214215216217218219220
modeleVoiture = dlgDialog.renvoiModeleVoiture(); getModeleVoitureDao().update(modeleVoiture); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }
195196197198199200201202
if (dlgDialog.OK_Button()) { MotifFinContrat motifFinContrat = dlgDialog.renvoiMotifFinContrat(); getMotifFinContratDao().insert(motifFinContrat); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }
218219220221222223224225
motifFinContrat = dlgDialog.renvoiMotifFinContrat(); getMotifFinContratDao().update(motifFinContrat); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }
192193194195196197198199
if (dlgDialog.OK_Button()) { Contrat contrat = dlgDialog.renvoiContrat(); getContratDao().insert(contrat); } } catch (PrjException e) { throw new PrjException(e.RetourMessage()); } }