2020-11-21 16:28:55 +01:00
|
|
|
import javax.swing.*;
|
2020-11-22 15:55:26 +01:00
|
|
|
/**
|
|
|
|
|
* La classe principale du logiciel AppThinker.
|
|
|
|
|
* @author V.BOULANGER
|
|
|
|
|
*/
|
2020-11-21 15:01:19 +01:00
|
|
|
public class AppThinker {
|
|
|
|
|
//JavaDoc tags : @param @return @throws @author @version @see @since @serial @deprecated
|
|
|
|
|
|
|
|
|
|
/**
|
2020-11-22 15:55:26 +01:00
|
|
|
* La méthode principale exécutée
|
2020-11-21 15:01:19 +01:00
|
|
|
* @param args Les arguments de la méthode principale.
|
|
|
|
|
*/
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
AppThinkerWindow window = new AppThinkerWindow();
|
|
|
|
|
window.setVisible(true);
|
|
|
|
|
}
|
|
|
|
|
}
|