Package Interfaz

Examples of Interfaz.InterfazEquipo


        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                JFrame frame = new javax.swing.JFrame("Equipo");
                frame.setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
                InterfazEquipo interfaz=new InterfazEquipo();
                frame.getContentPane().add(interfaz);
                frame.pack();
                frame.setVisible(true);
                //interfaz.set_Editable(false);
            }
View Full Code Here

TOP

Related Classes of Interfaz.InterfazEquipo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.