debut sauvegarde des modif

This commit is contained in:
martins 2022-11-13 19:58:10 +01:00
parent 323c6e43e2
commit c3d4688cd3
4 changed files with 18 additions and 4 deletions

View File

@ -25,8 +25,9 @@ public class ObservateurFenetre implements WindowListener{
@Override
public void windowClosing(WindowEvent e) {
JFrame fenetre= (JFrame) e.getSource();
int confirmation = JOptionPane.showConfirmDialog(fenetre.getContentPane(), "Etes-vous sûr de vouloir fermer la fenetre ?", "Quitter", JOptionPane.YES_NO_OPTION);
if(confirmation != JOptionPane.OK_OPTION) return;
int confirmation = JOptionPane.showConfirmDialog(fenetre.getContentPane(), "Voulez vous auvegarder Avant de quitter?", "Quitter", JOptionPane.YES_NO_OPTION);
if(confirmation != JOptionPane.OK_OPTION);
fenetre.dispose();
}

View File

@ -87,7 +87,7 @@ public class ObservateurModifGroupe implements ActionListener{
}
if(e.getActionCommand()=="renomer"){
String nouveau=JOptionPane.showInputDialog(m.getFenetre(), "Rentrer le nouveau Nom");
this.groupe.setName(nouveau);
m.rename(nouveau, this.groupe);
m.showGroupe(this.groupe);
}
if(e.getActionCommand()=="ajouter"){
@ -98,7 +98,7 @@ public class ObservateurModifGroupe implements ActionListener{
JOptionPane.showMessageDialog(m.getFenetre(), "Il y a trop d'etudiant pour le groupe", "erreur", JOptionPane.ERROR_MESSAGE);
}
for(Etudiant et:ajout){
this.groupe.addEtudiant(et);
m.addEtudiant(this.groupe, et);
}
m.showGroupe(this.groupe);
}

View File

@ -229,4 +229,12 @@ public class Model{
AbstractGroupeFactory agf=new AbstractGroupeFactoryNP(g);
agf.createGroupe(g, name, min, max);
}
public void rename(String name, Groupe g){
g.setName(name);
}
public void addEtudiant(Groupg g, Etudiant e){
g.addEtudiant(e);
}
}

View File

@ -0,0 +1,5 @@
package fr.iutfbleau.projetIHM2022FI2.Graphic.Util;
public class Sauvegarde {
public Sauvegarde(){}
}