Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/12/2011, 20:38
fcosun
 
Fecha de Ingreso: octubre-2011
Mensajes: 153
Antigüedad: 13 años, 2 meses
Puntos: 7
Jtable con un boton en cada fila.

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 original
  1. import java.awt.*;
  2. import javax.swing.*;
  3.  
  4. public class nuevo10 extends JFrame {
  5.  
  6.     JTable table;
  7.    
  8.     public nuevo10(){
  9.         setLayout(new FlowLayout());
  10.        
  11.         String[] columnNames = {"Nombre", "Color", "Sexo", "Boton"};
  12.    
  13.        
  14.         JButton miboton1 = new JButton();
  15.        
  16.         Object[][] data = {
  17.             {"Lucy", "Azul", "Mujer"},
  18.             {"Bob esponja", "Verde", "Hombre"},
  19.             {"Patricio", "Rojo", "Hombre"},
  20.             {"Goku", "Amarillo", "Hombre"},    
  21.         };
  22.        
  23.        
  24.         table = new JTable(data, columnNames);
  25.         table.setPreferredScrollableViewportSize(new Dimension(500,50));
  26.         table.setFillsViewportHeight(true);
  27.        
  28.         JScrollPane scrollPane = new JScrollPane(table);
  29.         add(scrollPane);
  30.        
  31.     }
  32.    
  33.    
  34.      public static void main(String args[]) {
  35.      nuevo10 gui = new nuevo10();
  36.      gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  37.      gui.setSize(600,200);
  38.      gui.setVisible(true);
  39.      gui.setTitle("Mi primera tabla");
  40.      
  41.      }
  42.  
  43. }
__________________
Mi mail: [email protected]