package org.pasif.gui;
import java.awt.Component;
import java.awt.Dimension;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import javax.swing.ActionMap;
import javax.swing.BorderFactory;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JInternalFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import org.jdesktop.application.Action;
import org.jdesktop.application.Application;
import org.jdesktop.application.ResourceMap;
import org.jdesktop.layout.GroupLayout;
import org.jdesktop.layout.LayoutStyle;
import org.pas.log.LogHandlerImpl;
public class QuartzSetting extends javax.swing.JInternalFrame {
private static final long serialVersionUID = 1L;
private LogHandlerImpl log;
public QuartzSetting(LogHandlerImpl log) {
initComponents();
this.log = log;
}
@Action
public void exit() {
dispose();
}
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel2 = new JPanel();
jPanel1 = new JPanel();
jLabel16 = new JLabel();
dbUrl = new JTextField();
jLabel20 = new JLabel();
dbUserName = new JTextField();
jLabel21 = new JLabel();
dbPassword = new JPasswordField();
jLabel22 = new JLabel();
dbType = new JComboBox();
jLabel12 = new JLabel();
dbName = new JTextField();
jLabel23 = new JLabel();
dbName1 = new JTextField();
jPanel4 = new JPanel();
jLabel3 = new JLabel();
sqlText = new JTextField();
jPanel3 = new JPanel();
jLabel13 = new JLabel();
exportPath = new JTextField();
jPanel6 = new JPanel();
jPanel5 = new JPanel();
jLabel14 = new JLabel();
host = new JTextField();
jLabel15 = new JLabel();
port = new JTextField();
jPanel7 = new JPanel();
jLabel2 = new JLabel();
jTextField1 = new JTextField();
jLabel4 = new JLabel();
jTextField2 = new JTextField();
jLabel5 = new JLabel();
jTextField3 = new JTextField();
jLabel6 = new JLabel();
jTextField4 = new JTextField();
jLabel7 = new JLabel();
jTextField5 = new JTextField();
jLabel8 = new JLabel();
jTextField6 = new JTextField();
jButton4 = new JButton();
jButton2 = new JButton();
jButton1 = new JButton();
jButton3 = new JButton();
setClosable(true);
setIconifiable(true);
setMaximizable(true);
ResourceMap resourceMap = Application.getInstance(Client.class).getContext().getResourceMap(QuartzSetting.class);
setTitle(resourceMap.getString("Form.title")); // NOI18N
setName("Form"); // NOI18N
addPropertyChangeListener(new PropertyChangeListener() {
public void propertyChange(PropertyChangeEvent evt) {
formPropertyChange(evt);
}
});
jPanel2.setBorder(BorderFactory.createTitledBorder(resourceMap.getString("jPanel2.border.title"))); // NOI18N
jPanel2.setName("jPanel2"); // NOI18N
jPanel1.setBorder(BorderFactory.createTitledBorder(resourceMap.getString("jPanel1.border.title"))); // NOI18N
jPanel1.setName("jPanel1"); // NOI18N
jLabel16.setText(resourceMap.getString("jLabel16.text")); // NOI18N
jLabel16.setName("jLabel16"); // NOI18N
dbUrl.setText(resourceMap.getString("dbUrl.text")); // NOI18N
dbUrl.setName("dbUrl"); // NOI18N
dbUrl.setPreferredSize(new Dimension(75, 20));
jLabel20.setText(resourceMap.getString("jLabel20.text")); // NOI18N
jLabel20.setName("jLabel20"); // NOI18N
dbUserName.setText(resourceMap.getString("dbUserName.text")); // NOI18N
dbUserName.setName("dbUserName"); // NOI18N
jLabel21.setText(resourceMap.getString("jLabel21.text")); // NOI18N
jLabel21.setName("jLabel21"); // NOI18N
dbPassword.setText(resourceMap.getString("dbPassword.text")); // NOI18N
dbPassword.setName("dbPassword"); // NOI18N
jLabel22.setText(resourceMap.getString("jLabel22.text")); // NOI18N
jLabel22.setName("jLabel22"); // NOI18N
dbType.setModel(new DefaultComboBoxModel(new String[] { "ORACLE" ,"MySQL"}));
dbType.setName("dbType"); // NOI18N
jLabel12.setText(resourceMap.getString("jLabel12.text")); // NOI18N
jLabel12.setName("jLabel12"); // NOI18N
dbName.setText(resourceMap.getString("dbName.text")); // NOI18N
dbName.setName("dbName"); // NOI18N
jLabel23.setText(resourceMap.getString("jLabel23.text")); // NOI18N
jLabel23.setName("jLabel23"); // NOI18N
dbName1.setText(resourceMap.getString("dbName1.text")); // NOI18N
dbName1.setName("dbName1"); // NOI18N
GroupLayout jPanel1Layout = new GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel1Layout.createSequentialGroup()
.addContainerGap()
.add(jPanel1Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel1Layout.createSequentialGroup()
.add(jLabel22)
.addPreferredGap(LayoutStyle.RELATED)
.add(dbType, GroupLayout.PREFERRED_SIZE, 80, GroupLayout.PREFERRED_SIZE))
.add(jPanel1Layout.createSequentialGroup()
.add(jLabel12)
.add(18, 18, 18)
.add(dbName, GroupLayout.DEFAULT_SIZE, 88, Short.MAX_VALUE)))
.addPreferredGap(LayoutStyle.UNRELATED)
.add(jPanel1Layout.createParallelGroup(GroupLayout.LEADING)
.add(jLabel16)
.add(jLabel20))
.addPreferredGap(LayoutStyle.RELATED)
.add(jPanel1Layout.createParallelGroup(GroupLayout.TRAILING)
.add(dbUrl, GroupLayout.PREFERRED_SIZE, 106, GroupLayout.PREFERRED_SIZE)
.add(dbUserName, GroupLayout.DEFAULT_SIZE, 110, Short.MAX_VALUE))
.addPreferredGap(LayoutStyle.UNRELATED)
.add(jPanel1Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel1Layout.createSequentialGroup()
.add(jLabel21)
.add(18, 18, 18)
.add(dbPassword, GroupLayout.PREFERRED_SIZE, 85, GroupLayout.PREFERRED_SIZE))
.add(jPanel1Layout.createSequentialGroup()
.add(jLabel23)
.addPreferredGap(LayoutStyle.RELATED)
.add(dbName1, GroupLayout.DEFAULT_SIZE, 89, Short.MAX_VALUE)))
.addContainerGap())
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel1Layout.createSequentialGroup()
.add(jPanel1Layout.createParallelGroup(GroupLayout.BASELINE)
.add(jLabel22)
.add(jLabel16)
.add(dbUrl, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel23)
.add(dbType, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(dbName1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addPreferredGap(LayoutStyle.UNRELATED)
.add(jPanel1Layout.createParallelGroup(GroupLayout.BASELINE)
.add(jLabel12)
.add(dbName, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel20)
.add(dbUserName, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel21)
.add(dbPassword, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addContainerGap())
);
jPanel4.setBorder(BorderFactory.createTitledBorder(resourceMap.getString("jPanel4.border.title"))); // NOI18N
jPanel4.setName("jPanel4"); // NOI18N
jLabel3.setText(resourceMap.getString("jLabel3.text")); // NOI18N
jLabel3.setName("jLabel3"); // NOI18N
sqlText.setText(resourceMap.getString("sqlText.text")); // NOI18N
sqlText.setName("sqlText"); // NOI18N
GroupLayout jPanel4Layout = new GroupLayout(jPanel4);
jPanel4.setLayout(jPanel4Layout);
jPanel4Layout.setHorizontalGroup(
jPanel4Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel4Layout.createSequentialGroup()
.add(jLabel3)
.addPreferredGap(LayoutStyle.RELATED)
.add(sqlText, GroupLayout.DEFAULT_SIZE, 471, Short.MAX_VALUE)
.addContainerGap())
);
jPanel4Layout.setVerticalGroup(
jPanel4Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel4Layout.createParallelGroup(GroupLayout.BASELINE)
.add(jLabel3)
.add(sqlText, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
);
jPanel3.setBorder(BorderFactory.createTitledBorder(resourceMap.getString("jPanel3.border.title"))); // NOI18N
jPanel3.setName("jPanel3"); // NOI18N
jLabel13.setText(resourceMap.getString("jLabel13.text")); // NOI18N
jLabel13.setName("jLabel13"); // NOI18N
exportPath.setText(resourceMap.getString("exportPath.text")); // NOI18N
exportPath.setName("exportPath"); // NOI18N
GroupLayout jPanel3Layout = new GroupLayout(jPanel3);
jPanel3.setLayout(jPanel3Layout);
jPanel3Layout.setHorizontalGroup(
jPanel3Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel3Layout.createSequentialGroup()
.addContainerGap()
.add(jLabel13)
.addPreferredGap(LayoutStyle.RELATED)
.add(exportPath, GroupLayout.DEFAULT_SIZE, 407, Short.MAX_VALUE)
.addContainerGap())
);
jPanel3Layout.setVerticalGroup(
jPanel3Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel3Layout.createParallelGroup(GroupLayout.BASELINE)
.add(jLabel13)
.add(exportPath, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
);
GroupLayout jPanel2Layout = new GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel2Layout.createSequentialGroup()
.addContainerGap()
.add(jPanel2Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel3, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.add(jPanel4, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.add(jPanel1, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addContainerGap())
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel2Layout.createSequentialGroup()
.add(jPanel1, GroupLayout.PREFERRED_SIZE, 91, GroupLayout.PREFERRED_SIZE)
.addPreferredGap(LayoutStyle.RELATED)
.add(jPanel4, GroupLayout.PREFERRED_SIZE, 54, GroupLayout.PREFERRED_SIZE)
.addPreferredGap(LayoutStyle.UNRELATED)
.add(jPanel3, GroupLayout.PREFERRED_SIZE, 55, GroupLayout.PREFERRED_SIZE)
.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel6.setBorder(BorderFactory.createTitledBorder(resourceMap.getString("jPanel6.border.title"))); // NOI18N
jPanel6.setName("jPanel6"); // NOI18N
jPanel5.setBorder(BorderFactory.createTitledBorder(resourceMap.getString("jPanel5.border.title"))); // NOI18N
jPanel5.setName("jPanel5"); // NOI18N
jLabel14.setText(resourceMap.getString("jLabel14.text")); // NOI18N
jLabel14.setName("jLabel14"); // NOI18N
host.setText(resourceMap.getString("host.text")); // NOI18N
host.setName("host"); // NOI18N
jLabel15.setText(resourceMap.getString("jLabel15.text")); // NOI18N
jLabel15.setName("jLabel15"); // NOI18N
port.setText(resourceMap.getString("port.text")); // NOI18N
port.setName("port"); // NOI18N
GroupLayout jPanel5Layout = new GroupLayout(jPanel5);
jPanel5.setLayout(jPanel5Layout);
jPanel5Layout.setHorizontalGroup(
jPanel5Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel5Layout.createSequentialGroup()
.addContainerGap()
.add(jLabel14)
.addPreferredGap(LayoutStyle.RELATED)
.add(host, GroupLayout.PREFERRED_SIZE, 170, GroupLayout.PREFERRED_SIZE)
.add(18, 18, 18)
.add(jLabel15)
.addPreferredGap(LayoutStyle.RELATED)
.add(port, GroupLayout.PREFERRED_SIZE, 104, GroupLayout.PREFERRED_SIZE)
.addContainerGap(109, Short.MAX_VALUE))
);
jPanel5Layout.setVerticalGroup(
jPanel5Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel5Layout.createParallelGroup(GroupLayout.BASELINE)
.add(jLabel14)
.add(host, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel15)
.add(port, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
);
GroupLayout jPanel6Layout = new GroupLayout(jPanel6);
jPanel6.setLayout(jPanel6Layout);
jPanel6Layout.setHorizontalGroup(
jPanel6Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel6Layout.createSequentialGroup()
.addContainerGap()
.add(jPanel5, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addContainerGap())
);
jPanel6Layout.setVerticalGroup(
jPanel6Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel6Layout.createSequentialGroup()
.add(jPanel5, GroupLayout.PREFERRED_SIZE, 54, GroupLayout.PREFERRED_SIZE)
.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel7.setBorder(BorderFactory.createTitledBorder(resourceMap.getString("jPanel7.border.title"))); // NOI18N
jPanel7.setName("jPanel7"); // NOI18N
jLabel2.setText(resourceMap.getString("jLabel2.text")); // NOI18N
jLabel2.setName("jLabel2"); // NOI18N
jTextField1.setText(resourceMap.getString("jTextField1.text")); // NOI18N
jTextField1.setName("jTextField1"); // NOI18N
jLabel4.setText(resourceMap.getString("jLabel4.text")); // NOI18N
jLabel4.setName("jLabel4"); // NOI18N
jTextField2.setText(resourceMap.getString("jTextField2.text")); // NOI18N
jTextField2.setName("jTextField2"); // NOI18N
jLabel5.setText(resourceMap.getString("jLabel5.text")); // NOI18N
jLabel5.setName("jLabel5"); // NOI18N
jTextField3.setText(resourceMap.getString("jTextField3.text")); // NOI18N
jTextField3.setName("jTextField3"); // NOI18N
jLabel6.setText(resourceMap.getString("jLabel6.text")); // NOI18N
jLabel6.setName("jLabel6"); // NOI18N
jTextField4.setText(resourceMap.getString("jTextField4.text")); // NOI18N
jTextField4.setName("jTextField4"); // NOI18N
jLabel7.setText(resourceMap.getString("jLabel7.text")); // NOI18N
jLabel7.setName("jLabel7"); // NOI18N
jTextField5.setText(resourceMap.getString("jTextField5.text")); // NOI18N
jTextField5.setName("jTextField5"); // NOI18N
jLabel8.setText(resourceMap.getString("jLabel8.text")); // NOI18N
jLabel8.setName("jLabel8"); // NOI18N
jTextField6.setText(resourceMap.getString("jTextField6.text")); // NOI18N
jTextField6.setName("jTextField6"); // NOI18N
GroupLayout jPanel7Layout = new GroupLayout(jPanel7);
jPanel7.setLayout(jPanel7Layout);
jPanel7Layout.setHorizontalGroup(
jPanel7Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel7Layout.createSequentialGroup()
.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.add(jLabel2)
.addPreferredGap(LayoutStyle.RELATED)
.add(jTextField1, GroupLayout.PREFERRED_SIZE, 60, GroupLayout.PREFERRED_SIZE)
.addPreferredGap(LayoutStyle.RELATED)
.add(jLabel4)
.addPreferredGap(LayoutStyle.RELATED)
.add(jTextField2, GroupLayout.PREFERRED_SIZE, 60, GroupLayout.PREFERRED_SIZE)
.addPreferredGap(LayoutStyle.RELATED)
.add(jLabel5)
.addPreferredGap(LayoutStyle.RELATED)
.add(jTextField3, GroupLayout.PREFERRED_SIZE, 60, GroupLayout.PREFERRED_SIZE)
.addPreferredGap(LayoutStyle.RELATED)
.add(jLabel6)
.addPreferredGap(LayoutStyle.RELATED)
.add(jTextField4, GroupLayout.PREFERRED_SIZE, 60, GroupLayout.PREFERRED_SIZE)
.addPreferredGap(LayoutStyle.RELATED)
.add(jLabel7)
.addPreferredGap(LayoutStyle.RELATED)
.add(jTextField5, GroupLayout.PREFERRED_SIZE, 60, GroupLayout.PREFERRED_SIZE)
.addPreferredGap(LayoutStyle.RELATED)
.add(jLabel8)
.addPreferredGap(LayoutStyle.RELATED)
.add(jTextField6, GroupLayout.PREFERRED_SIZE, 60, GroupLayout.PREFERRED_SIZE))
);
jPanel7Layout.setVerticalGroup(
jPanel7Layout.createParallelGroup(GroupLayout.LEADING)
.add(jPanel7Layout.createSequentialGroup()
.add(jPanel7Layout.createParallelGroup(GroupLayout.BASELINE)
.add(jLabel2)
.add(jTextField1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel4)
.add(jTextField2, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel5)
.add(jTextField3, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel6)
.add(jTextField4, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel7)
.add(jTextField5, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)
.add(jLabel8)
.add(jTextField6, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))
.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel7Layout.linkSize(new Component[] {jLabel2, jTextField1}, GroupLayout.VERTICAL);
jButton4.setText(resourceMap.getString("jButton4.text")); // NOI18N
jButton4.setName("jButton4"); // NOI18N
ActionMap actionMap = Application.getInstance(Client.class).getContext().getActionMap(QuartzSetting.class, this);
jButton2.setAction(actionMap.get("exit")); // NOI18N
jButton2.setText(resourceMap.getString("jButton2.text")); // NOI18N
jButton2.setName("jButton2"); // NOI18N
jButton1.setText(resourceMap.getString("jButton1.text")); // NOI18N
jButton1.setName("jButton1"); // NOI18N
jButton3.setText(resourceMap.getString("jButton3.text")); // NOI18N
jButton3.setName("jButton3"); // NOI18N
GroupLayout layout = new GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.addContainerGap()
.add(layout.createParallelGroup(GroupLayout.LEADING)
.add(GroupLayout.TRAILING, layout.createSequentialGroup()
.add(jButton3)
.addPreferredGap(LayoutStyle.RELATED)
.add(jButton4)
.addPreferredGap(LayoutStyle.RELATED)
.add(jButton1)
.addPreferredGap(LayoutStyle.RELATED)
.add(jButton2))
.add(jPanel7, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.add(jPanel6, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.add(jPanel2, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(GroupLayout.LEADING)
.add(layout.createSequentialGroup()
.addContainerGap()
.add(jPanel2, GroupLayout.DEFAULT_SIZE, 247, Short.MAX_VALUE)
.addPreferredGap(LayoutStyle.RELATED)
.add(jPanel6, GroupLayout.DEFAULT_SIZE, 89, Short.MAX_VALUE)
.addPreferredGap(LayoutStyle.RELATED)
.add(jPanel7, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.add(18, 18, 18)
.add(layout.createParallelGroup(GroupLayout.BASELINE)
.add(jButton2)
.add(jButton1)
.add(jButton4)
.add(jButton3))
.add(20, 20, 20))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void formPropertyChange(PropertyChangeEvent evt) {//GEN-FIRST:event_formPropertyChange
if (evt.getPropertyName().equals("icon") && evt.getOldValue().equals(Boolean.FALSE) && evt.getNewValue().equals(Boolean.TRUE)) {
JInternalFrame j = (JInternalFrame) evt.getSource();
j.setVisible(true);
j.moveToFront();
}
}//GEN-LAST:event_formPropertyChange
// Variables declaration - do not modify//GEN-BEGIN:variables
private JTextField dbName;
private JTextField dbName1;
private JPasswordField dbPassword;
private JComboBox dbType;
private JTextField dbUrl;
private JTextField dbUserName;
private JTextField exportPath;
private JTextField host;
private JButton jButton1;
private JButton jButton2;
private JButton jButton3;
private JButton jButton4;
private JLabel jLabel12;
private JLabel jLabel13;
private JLabel jLabel14;
private JLabel jLabel15;
private JLabel jLabel16;
private JLabel jLabel2;
private JLabel jLabel20;
private JLabel jLabel21;
private JLabel jLabel22;
private JLabel jLabel23;
private JLabel jLabel3;
private JLabel jLabel4;
private JLabel jLabel5;
private JLabel jLabel6;
private JLabel jLabel7;
private JLabel jLabel8;
private JPanel jPanel1;
private JPanel jPanel2;
private JPanel jPanel3;
private JPanel jPanel4;
private JPanel jPanel5;
private JPanel jPanel6;
private JPanel jPanel7;
private JTextField jTextField1;
private JTextField jTextField2;
private JTextField jTextField3;
private JTextField jTextField4;
private JTextField jTextField5;
private JTextField jTextField6;
private JTextField port;
private JTextField sqlText;
// End of variables declaration//GEN-END:variables
}