Package com.tech.app

Class App

  • All Implemented Interfaces:
    java.lang.Runnable

    public class App
    extends java.lang.Object
    implements java.lang.Runnable
    Classe qui crée l'application et qui la fait tourner.
    • Constructor Summary

      Constructors 
      Constructor Description
      App()  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static void main​(java.lang.String[] args)  
      void run()
      Méthode dans laquelle on crée la fenêtre principale.
      void start()
      Méthode qui initialise l'application et lance la méthode run().
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • App

        public App()
    • Method Detail

      • run

        public void run()
        Méthode dans laquelle on crée la fenêtre principale.
        Specified by:
        run in interface java.lang.Runnable
      • start

        public void start()
        Méthode qui initialise l'application et lance la méthode run().
      • main

        public static void main​(java.lang.String[] args)