Menu dificil

Olá;

O código abaixo gera um form com um MENU chamado SAIR gostaria que quando o usuário clicasse sobre ele o form fosse fechado e a aplicação encerrada. Um colega me passou o código abaixo mas está dando erro.

D:\JavaProject\Siscom\Siscom\src\Siscom\Siscom.java:62: <identifier> expected
MSair.addActionListener(menu);

/*
 * Siscom.java
 *
 * Created on 7 de Março de 2005, 14:06
 */

package Siscom;

/**
 *
 * @author  gilberto
 */

import java.awt.event.*;
public class Siscom extends javax.swing.JFrame {
    
    /** Creates new form Siscom */
    public Siscom() {
        initComponents();
    }
    
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
     */
    private void initComponents() {
        mainMenu = new javax.swing.JMenuBar();
        MSair = new javax.swing.JMenu();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
        setTitle("SISCOM - Sistema de gest\u00e3o comercial");
        setName("frmSiscom");
        MSair.setMnemonic('S');
        MSair.setLabel("Sair");
        mainMenu.add(MSair);

        setJMenuBar(mainMenu);

        java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
        setBounds((screenSize.width-600)/2, (screenSize.height-400)/2, 600, 400);
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new Siscom().setVisible(true);
            }
        });
    }
    
    // Variables declaration - do not modify
    private javax.swing.JMenu MSair;
    private javax.swing.JMenuBar mainMenu;
    // End of variables declaration
    
    // Criando gerenciadores de eventos para o menu
    evtMenu menu = new evtMenu(); // Eventos do menu principal
    MSair.addActionListener(menu);
    
    // Classe interna para eventos do menu
    private class evtMenu implements ActionListener{
        private String value;
        public void actionPerformed(ActionEvent evt){
            if(evt.getSource() == MSair){
                System.exit(0);
            }
        }
    }
}

Alguém ajuda.

NetBeans 4.01EA2
Java 5.0

Valeu

ola … tentei mexer no seu codigo mas nao consegui pelo eclipse

mas eh assi no listener do window

	addWindowListener(new WindowAdapter(){public void windowClosing(WindowEvent e){System.exit(0);}});

Desculpe mas esse código coloca onde ?

Valeu.

Meu Deus pra q tanta complicacao rsr
E por isso q eu gosto dos meus simples e funcionais codigos rsr

Bem e so vc colocar o evento direto no JMenuItem, tp…

seuJMenItem.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent e ) { System.exit( 0 ); } } );

Usando esse codigo, vc so precisa importar o pacote java.awt.event.*; no cabecalho, nem precisa implementar ela na declaracao de classe!!

Espero ter ajudado!!

Abracao e t+