/*
 * ArrayEditor_n.java
 *
 * Created on October 26, 2007, 5:23 PM
 */

package usda.weru.mcrew.gui;

/**
 *
 * @author  Joseph Levin
 */
public class ArrayEditor_n extends javax.swing.JFrame{
    private static final long serialVersionUID = 1L;
    
    /**
     * Creates new form ArrayEditor_n
     */
    public ArrayEditor_n() {
        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.
     */
    // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
    private void initComponents() {
        g_pane = new javax.swing.JPanel();
        g_table = new com.klg.jclass.table.JCTable();
        g_cancelButton = new javax.swing.JButton();
        g_okButton = new javax.swing.JButton();

        setAlwaysOnTop(true);
        setBackground(new java.awt.Color(255, 255, 255));
        setResizable(false);
        setUndecorated(true);
        addFocusListener(new java.awt.event.FocusAdapter() {
            public void focusLost(java.awt.event.FocusEvent evt) {
                formFocusLost(evt);
            }
        });

        g_pane.setBorder(new javax.swing.border.SoftBevelBorder(javax.swing.border.BevelBorder.RAISED));
        g_pane.setMaximumSize(new java.awt.Dimension(32767, 150));
        g_pane.setPreferredSize(new java.awt.Dimension(0, 0));
        g_table.setBorder(javax.swing.BorderFactory.createEtchedBorder());
        g_table.setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));

        g_cancelButton.setFont(new java.awt.Font("Tahoma", 0, 10));
        g_cancelButton.setText("Cancel");
        g_cancelButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                g_cancelButtonActionPerformed(evt);
            }
        });

        g_okButton.setFont(new java.awt.Font("Tahoma", 0, 10));
        g_okButton.setText("Ok");
        g_okButton.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                g_okButtonActionPerformed(evt);
            }
        });

        javax.swing.GroupLayout g_paneLayout = new javax.swing.GroupLayout(g_pane);
        g_pane.setLayout(g_paneLayout);
        g_paneLayout.setHorizontalGroup(
            g_paneLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addComponent(g_okButton, javax.swing.GroupLayout.DEFAULT_SIZE, 65, Short.MAX_VALUE)
            .addComponent(g_cancelButton, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
            .addComponent(g_table, javax.swing.GroupLayout.DEFAULT_SIZE, 65, Short.MAX_VALUE)
        );
        g_paneLayout.setVerticalGroup(
            g_paneLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, g_paneLayout.createSequentialGroup()
                .addComponent(g_table, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                .addGap(0, 0, 0)
                .addComponent(g_okButton)
                .addGap(0, 0, 0)
                .addComponent(g_cancelButton))
        );

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addComponent(g_pane, javax.swing.GroupLayout.DEFAULT_SIZE, 71, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addComponent(g_pane, javax.swing.GroupLayout.DEFAULT_SIZE, 52, Short.MAX_VALUE)
        );
    }// </editor-fold>//GEN-END:initComponents

    private void formFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_formFocusLost
        focusLost(evt);
    }//GEN-LAST:event_formFocusLost
    
    protected void focusLost(java.awt.event.FocusEvent evt) {

    }
    
    private void g_okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_g_okButtonActionPerformed
        okButtonActionPerformed(evt);
    }//GEN-LAST:event_g_okButtonActionPerformed
    
    private void g_cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_g_cancelButtonActionPerformed
        cancelButtonActionPerformed(evt);
    }//GEN-LAST:event_g_cancelButtonActionPerformed
    
    protected void okButtonActionPerformed(java.awt.event.ActionEvent evt) {
        
    }
    
    protected void cancelButtonActionPerformed(java.awt.event.ActionEvent evt) {
        
    }
    // Variables declaration - do not modify//GEN-BEGIN:variables
    protected javax.swing.JButton g_cancelButton;
    protected javax.swing.JButton g_okButton;
    protected javax.swing.JPanel g_pane;
    protected com.klg.jclass.table.JCTable g_table;
    // End of variables declaration//GEN-END:variables
    

}
