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

package Ventana;

import javax.swing.JFrame;

/**
 *
 * @author felix
 */
public class PruebaLienzo2 extends JFrame {
    public PruebaLienzo2() {
        super("Prueba Lienzo");
        Lienzo2 miLienzo = new Lienzo2();
        add(miLienzo);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setVisible(true);
        pack();
    }
    
    static public void main(String args[]) {
        new PruebaLienzo2();
    }

}
