Optimisations
This commit is contained in:
parent
401abac380
commit
5bd3247003
@ -11,8 +11,8 @@ public class HomeView extends JPanel {
|
|||||||
JLabel texte = getTitre();
|
JLabel texte = getTitre();
|
||||||
|
|
||||||
//Récupération des boutons créés dans la classe Boutons
|
//Récupération des boutons créés dans la classe Boutons
|
||||||
JButton choisirGrille = choisirGrille(this.window);
|
JButton choisirGrille = choisirGrille();
|
||||||
JButton importerGrille = importerGrille(this.window);
|
JButton importerGrille = importerGrille();
|
||||||
|
|
||||||
// Création du panel pour le texte
|
// Création du panel pour le texte
|
||||||
JPanel panelTexte = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0));
|
JPanel panelTexte = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0));
|
||||||
@ -39,7 +39,7 @@ public class HomeView extends JPanel {
|
|||||||
return texte;
|
return texte;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Button choisirGrille(Window window) {
|
private Button choisirGrille() {
|
||||||
JPanel panel = new JPanel();
|
JPanel panel = new JPanel();
|
||||||
Button choisirGrille = new Button("Générer une grille", new Dimension(250, 50));
|
Button choisirGrille = new Button("Générer une grille", new Dimension(250, 50));
|
||||||
|
|
||||||
@ -93,7 +93,7 @@ public class HomeView extends JPanel {
|
|||||||
return choisirGrille;
|
return choisirGrille;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Button importerGrille(Window window) {
|
private Button importerGrille() {
|
||||||
JPanel panel = new JPanel();
|
JPanel panel = new JPanel();
|
||||||
Button importerGrille = new Button("Importer une grille", new Dimension(250, 50));
|
Button importerGrille = new Button("Importer une grille", new Dimension(250, 50));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user