diff --git a/src/fr/iutfbleau/papillon/BtnSupprimer.java b/src/fr/iutfbleau/papillon/BtnSupprimer.java deleted file mode 100644 index bc20e66..0000000 --- a/src/fr/iutfbleau/papillon/BtnSupprimer.java +++ /dev/null @@ -1,49 +0,0 @@ -// package fr.iutfbleau.papillon; - -import java.util.ArrayList; -import java.util.List; -import javax.swing.*; -import java.awt.*; -import java.awt.event.*; - -public class BtnSupprimer extends JButton implements ActionListener{ - private GestionRappel ges; - private Main main; - - public BtnSupprimer(Main main){ - super("Supprimer"); - this.main = main; - setPreferredSize(new Dimension(120,25)); - addActionListener(this); - } - public void actionPerformed(ActionEvent e){ - - if(e.getSource()==this){ - - ges = new GestionRappel(); - int count = 0; - List listRpl = new ArrayList<>(); - PanelRappel pr; - - listRpl = main.getPanelRpl(); - for(int i = 0; i