01: /*
02: * EJBQLConnectionEditor.java
03: *
04: * Created on March 27, 2007, 1:18 PM
05: */
06:
07: package it.businesslogic.ireport.connection.gui;
08:
09: import it.businesslogic.ireport.IReportConnection;
10: import it.businesslogic.ireport.IReportConnectionEditor;
11: import it.businesslogic.ireport.connection.QueryExecuterConnection;
12:
13: /**
14: *
15: * @author gtoffoli
16: */
17: public class QueryExecuterConnectionEditor extends javax.swing.JPanel
18: implements IReportConnectionEditor {
19:
20: private IReportConnection iReportConnection = null;
21: private boolean init = false;
22:
23: /** Creates new form EJBQLConnectionEditor */
24: public QueryExecuterConnectionEditor() {
25: initComponents();
26: applyI18n();
27: }
28:
29: /** This method is called from within the constructor to
30: * initialize the form.
31: * WARNING: Do NOT modify this code. The content of this method is
32: * always regenerated by the Form Editor.
33: */
34: // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
35: private void initComponents() {
36: java.awt.GridBagConstraints gridBagConstraints;
37:
38: jPanelEJBQL = new javax.swing.JPanel();
39:
40: setLayout(new java.awt.BorderLayout());
41:
42: jPanelEJBQL.setLayout(new java.awt.GridBagLayout());
43:
44: add(jPanelEJBQL, java.awt.BorderLayout.CENTER);
45:
46: }// </editor-fold>//GEN-END:initComponents
47:
48: // Variables declaration - do not modify//GEN-BEGIN:variables
49: private javax.swing.JPanel jPanelEJBQL;
50:
51: // End of variables declaration//GEN-END:variables
52:
53: public void setIReportConnection(IReportConnection c) {
54:
55: this .iReportConnection = c;
56:
57: }
58:
59: public IReportConnection getIReportConnection() {
60:
61: return new QueryExecuterConnection();
62: }
63:
64: public void applyI18n() {
65:
66: }
67:
68: }
|