1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
private void jButton9ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
String nom = jTextField1.getText();
int num = Integer.parseInt(jTextField2.getText()) ;
String type = (String)jComboBox2.getSelectedItem();
String email = jTextField3.getText();
String groupe =(String) jComboBox1.getSelectedItem();
Contact ctc = new Contact(nom,type,email,groupe,num );
//je recupère le champ nom du contact que je met dans une jList
items.addElement(ctc.getName());
Fonctions.sauverContactDansListe(listeContacts, ctc);
//je sauve ensuite le contact dans le fichier binaire.
Fonctions.sauverContactDansFichier(fichierContacts, ctc);
} |
Partager