/*
 * GUI.java
 *
 * Created on October 15, 2002, 1:13 AM
 */

package wcwww;

/**
 *
 * @author  gustavo
 */
public class GUI extends javax.swing.JFrame {
    
    /** Creates new form GUI */
    public GUI() {
        initComponents();
    }
    
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
     */
    private void initComponents() {//GEN-BEGIN:initComponents
        gUIExtractor = new wcwww.extractor.vista.GUI();
        gUIProcesamiento = new wcwww.procesador.vista.GUI();

        getContentPane().setLayout(new java.awt.GridLayout(1, 2));

        addWindowListener(new java.awt.event.WindowAdapter() {
            public void windowClosing(java.awt.event.WindowEvent evt) {
                exitForm(evt);
            }
        });

        getContentPane().add(gUIExtractor);

        getContentPane().add(gUIProcesamiento);

        pack();
        java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
        setSize(new java.awt.Dimension(723, 325));
        setLocation((screenSize.width-723)/2,(screenSize.height-325)/2);
    }//GEN-END:initComponents
    
    /** Exit the Application */
    private void exitForm(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_exitForm
        System.exit(0);
    }//GEN-LAST:event_exitForm
    
    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        new GUI().show();
        
    }
    
    
    // Variables declaration - do not modify//GEN-BEGIN:variables
    private wcwww.procesador.vista.GUI gUIProcesamiento;
    private wcwww.extractor.vista.GUI gUIExtractor;
    // End of variables declaration//GEN-END:variables
    
}
