nettoyage + lisibilité code + changement structure

This commit is contained in:
2026-01-26 06:39:49 -05:00
parent 25f8dcdc76
commit b97b9cef69
17 changed files with 794 additions and 396 deletions

View File

@@ -1,6 +1,27 @@
package fr.iut_fbleau.Avalam;
/**
* La classe <code>Main</code>
*
* Point dentrée du programme.
* Lance linterface graphique principale (<code>AvalamWindow</code>).
*/
public class Main {
//Attributs
//Constructeur
public Main() {
}
//Méthodes
/**
* Méthode principale : démarre lapplication.
*
* @param args arguments de la ligne de commande (non utilisés)
*/
public static void main(String[] args) {
new AvalamWindow();
}