[Resolvido] Evento de seleção de celula na JTable

Quero adicionar um evento na JTable que ao selecionar um novo item eu possa jogar os dados dele no formulário, consegui fazer usando o clique do mouse, mas se o cara tentar selecionar pelo teclado não vai.

Vlw…

Vê se isto ajuda.
http://www.exampledepot.com/egs/javax.swing.table/SelEvent.html

Esse link ta off

Abri normalmente…
Mesmo assim, segue

SelectionListener listener = new SelectionListener(table);
table.getSelectionModel().addListSelectionListener(listener);
table.getColumnModel().getSelectionModel()
    .addListSelectionListener(listener);

public class SelectionListener implements ListSelectionListener {
    JTable table;

    // It is necessary to keep the table since it is not possible
    // to determine the table from the event's source
    SelectionListener(JTable table) {
        this.table = table;
    }
    public void valueChanged(ListSelectionEvent e) {
        // If cell selection is enabled, both row and column change events are fired
        if (e.getSource() == table.getSelectionModel()
              && table.getRowSelectionAllowed()) {
            // Column selection changed
            int first = e.getFirstIndex();
            int last = e.getLastIndex();
        } else if (e.getSource() == table.getColumnModel().getSelectionModel()
               && table.getColumnSelectionAllowed() ){
            // Row selection changed
            int first = e.getFirstIndex();
            int last = e.getLastIndex();
        }

        if (e.getValueIsAdjusting()) {
            // The mouse button has not yet been released
        }
    }
}

Vlw cara certim!