Como puedo colocar un JButton en cada fila de la tabla JTable
Tengo este codigo normal sin el button en la fila.
Porfavor.
Código Java:
Ver originalimport java.awt.*;
import javax.swing.*;
public class nuevo10
extends JFrame {
public nuevo10(){
String[] columnNames
= {"Nombre",
"Color",
"Sexo",
"Boton"};
{"Lucy", "Azul", "Mujer"},
{"Bob esponja", "Verde", "Hombre"},
{"Patricio", "Rojo", "Hombre"},
{"Goku", "Amarillo", "Hombre"},
};
table
= new JTable(data, columnNames
); table.
setPreferredScrollableViewportSize(new Dimension(500,
50)); table.setFillsViewportHeight(true);
add(scrollPane);
}
public static void main
(String args
[]) { nuevo10 gui = new nuevo10();
gui.
setDefaultCloseOperation(JFrame.
EXIT_ON_CLOSE); gui.setSize(600,200);
gui.setVisible(true);
gui.setTitle("Mi primera tabla");
}
}