/*
 * Main.java
 *
 * Created on 21 de Outubro de 2006, 11:43
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package javaabstrato;

/**
 *
 * @author awolf
 */
public class Main {
    
    /** Creates a new instance of Main */
    public Main() {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
       MenuPrincipal menu = new MenuPrincipal();
       menu.setVisible(true);
    }
    
}
