COSE DA FARE:

- mettere applet in JAR e "firmarlo".
- tasto "browse" per la scelta del profilo?
- TRADURTRE I POSSIBILI ERRORI SULLA SICUREZZA??


Vari & Eventuali
- non riesco a uccidere l'ExpolorerThread. Pecccch?  Anche se chiudo il suo std.in! thrGrp?
- provare a usarlo sulle SUN!!!!


JAVADOC:
  
      /**
       *
       */

  /** ... **/
  @author author-name
  @version version number of class 

  @see string 
  @see URL 
  @see classname#methodname 
  {@link classname#methodname}    {@link SOMA.gui.Inizio#load()}

  <pre> Window win = new Window(parent); </pre>

  @param paramName description           (descrizione di un parametro)
  @return description                    (descrizione del valore di ritorno)
  @exception exceptionName description   (descrizione dell'eccezione)


        Thread esecutore = new Thread ("MammaCara") {
            public void run() {
              x.....azioni
            } //run
        }; //esecutore (Thread)
        esecutore.start();


        Thread esecutore = new Thread ("MammaCara") {
            public void run() {
              x.....azioni
              SwingUtilities.invokeLater (new Runnable () {
                  public void run () {
                    x.....azioni su GUI
                  } //run
              }); //invokeLater
            } //run
        }; //esecutore (Thread)
        esecutore.start();
        OiDialogoi.mostraMessaggio (Lingua.frase("x....frase"), mioFrame);



     import java.security.*;
        if(System.getSecurityManager() != null)
          AccessController.checkPermission(new PlaceAccessPermission(destination));
        try {
          AccessController.doPrivileged (new PrivilegedAction () {
            public Object run() {
              x....
              return null;
            } //run
          }); //doPrivileged
        }
        catch (AccessControlException e) {
          throw new Exception("Place Access Permission Denied.");
        }
        catch (PrivilegedActionException e) {
          throw e.getException();
        }
