En fait je voudrais que ces fonctions soient accessibles par d'autres classes dans mon projet. Les mettre en static m'a paru etre la seule solution. S'il y en a une autre, je suis tout ouies.
 
j'ai par exemple besoin de ma fonction exitApplication dont le code est le suivant:
 
public void exitApplication()
 {
 	try {
     	// Beep
     	Toolkit.getDefaultToolkit().beep();
     	// Show a confirmation dialog
     	int reply = JOptionPane.showConfirmDialog(this,  
                                                "Do you really want to exit?",  
                                                "Nuera CallFlow Studio 1.0 - Exit" ,  
                                                JOptionPane.YES_NO_OPTION,  
                                                JOptionPane.QUESTION_MESSAGE);
   // If the confirmation was affirmative, handle exiting.
   if (reply == JOptionPane.YES_OPTION)
   {
       this.setVisible(false);    // hide the Frame
       this.dispose();            // free the system resources
       System.exit(0);            // close the application
       
   }
 	} catch (Exception e) {
 	}
 }
 
Et j'ai donc besoin de 'this' pour afficher la boite de dialogue.
Voila en gros mon probleme.
 
Merci en tout cas.