2024-04-16 22:39:23 +02:00
|
|
|
import javax.swing.JOptionPane;
|
|
|
|
|
|
|
|
/**
|
2024-04-29 16:26:16 +02:00
|
|
|
* La classe GMHowToCreateDialogManager est un gestionnaire de dialogue qui affiche des instructions
|
2024-04-16 22:39:23 +02:00
|
|
|
* sur la manière de créer une grille dans une boîte de dialogue.
|
|
|
|
* Elle implémente l'interface DialogManager.
|
|
|
|
* @version 1.0
|
|
|
|
* @author Moncef STITI
|
|
|
|
* @author Marco ORFAO
|
|
|
|
*/
|
2024-04-29 16:26:16 +02:00
|
|
|
public class GMHowToCreateDialogManager implements DialogManager {
|
2024-04-16 22:39:23 +02:00
|
|
|
|
2024-05-02 18:36:37 +02:00
|
|
|
/**
|
|
|
|
* Constructeur par défaut de GMHowToCreateDialogManager.
|
|
|
|
*/
|
|
|
|
public GMHowToCreateDialogManager() {
|
|
|
|
// Ce constructeur est laissé vide intentionnellement
|
|
|
|
}
|
|
|
|
|
2024-04-16 22:39:23 +02:00
|
|
|
/**
|
|
|
|
* Méthode pour afficher la boîte de dialogue avec les instructions de création de grille.
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public void showDialog() {
|
2024-04-29 16:26:16 +02:00
|
|
|
GMHowToCreateView howToCreateGrid = new GMHowToCreateView();
|
2024-04-16 22:39:23 +02:00
|
|
|
JOptionPane.showMessageDialog(null, howToCreateGrid, "Comment créer une grille ?", JOptionPane.PLAIN_MESSAGE);
|
|
|
|
}
|
|
|
|
}
|