33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
|
package fr.iutfbleau.projetIHM2022FI2.Graphic.View;
|
||
|
|
||
|
import javax.swing.JButton;
|
||
|
import javax.swing.JLabel;
|
||
|
import javax.swing.JPanel;
|
||
|
|
||
|
import java.awt.GridLayout;
|
||
|
import fr.iutfbleau.projetIHM2022FI2.API.Groupe;
|
||
|
import fr.iutfbleau.projetIHM2022FI2.Graphic.Model;
|
||
|
import fr.iutfbleau.projetIHM2022FI2.Graphic.Controller.ObservateurChangeGroupe;
|
||
|
|
||
|
|
||
|
public class FenetreGroupe extends JPanel{
|
||
|
private Groupe g;
|
||
|
public FenetreGroupe(Groupe g, Model m){
|
||
|
super(new GridLayout(15, 1));
|
||
|
this.g=g;
|
||
|
JButton bout=new JButton("point point");
|
||
|
bout.addActionListener(new ObservateurChangeGroupe(m, this.g.getPointPoint()));
|
||
|
this.add(bout);
|
||
|
this.add(new JLabel(g.getName()));
|
||
|
this.add(new JLabel("id= "+String.valueOf(g.getId())));
|
||
|
this.add(new JLabel("min= "+String.valueOf(g.getMin())));
|
||
|
this.add(new JLabel("max= "+String.valueOf(g.getMax())));
|
||
|
this.add(new JLabel("Sous groupe"));
|
||
|
for(Groupe gr: g.getSousGroupes()){
|
||
|
JButton b=new JButton(gr.getName());
|
||
|
b.addActionListener(new ObservateurChangeGroupe(m, gr));
|
||
|
this.add(b);
|
||
|
}
|
||
|
}
|
||
|
}
|