01: /*
02: * Created on Aug 8, 2004
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package com.pk.preferences;
08:
09: import javax.swing.JPanel;
10: import javax.swing.JTextArea;
11:
12: /**
13: * @author Chris Taylor
14: *
15: */
16: public class ConnectionConfigPanel extends JPanel {
17: /**
18: *
19: */
20: private static final long serialVersionUID = 8715965417429455084L;
21: JTextArea txtName = new JTextArea();
22: JTextArea txtDriver = new JTextArea();
23: JTextArea txtDialect = new JTextArea();
24: JTextArea txtURL = new JTextArea();
25: }
|