/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package Capitulo_6.Cajero2;

import javax.swing.JFrame;

/**
 *
 * @author felix
 */
public class prueba_teclado extends JFrame{
    private TecladoNumerico a;
    
    prueba_teclado() {
        a = new TecladoNumerico();
        this.add(a);
        this.setSize(300, 400);
        this.setVisible(true);
        
    }
    
    static public void main(String args[]){
        new prueba_teclado();
    }
    
}
