/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package borrame;

import javax.swing.JFrame;

/**
 *
 * @author felix
 */
public class PruebaBotones extends JFrame{
    
    public PruebaBotones() {
        super("Prueba mis botones");
        String nombres[] = {"a", "b", "c"};
        SeleccionPanel misBotones = new SeleccionPanel("Herramientas", nombres, 3);
        add(misBotones);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setVisible(true);
        pack();
    }
    
    static public void main(String args[]) {
        new PruebaBotones();
    }

}
