import java.awt.event.*;

class ExecutarCadastroCliente 
{
   public static void main( String args[] )
   {
      CadastroCliente app = new CadastroCliente();

      app.addWindowListener(
         new WindowAdapter() {
            public void windowClosing( WindowEvent e )
            {
               System.exit( 0 );
            }
         }
      );
   }}
