Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.editing.app / org.gvsig.editing.app.mainplugin / src / main / java / org / gvsig / editing / gui / cad / panels / PostGISpanel.java @ 40557

History | View | Annotate | Download (2.21 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.editing.gui.cad.panels;
25

    
26
import jwizardcomponent.JWizardComponents;
27
import jwizardcomponent.JWizardPanel;
28
public class PostGISpanel extends JWizardPanel {
29

    
30
        public PostGISpanel(JWizardComponents wizardComponents) {
31
                super(wizardComponents);
32
        // initialize();
33

    
34
        }
35

    
36
    // /**
37
    // *
38
    // */
39
    // private static final long serialVersionUID = 1L;
40
    // private ConnectionPanel jPanelConex = null;
41
    //
42
    // /**
43
    // * This method initializes this
44
    // *
45
    // */
46
    // private void initialize() {
47
    // this.setSize(new java.awt.Dimension(408,284));
48
    // this.add(getJPanelConex(), null);
49
    //
50
    // }
51
    //
52
    // /**
53
    // * This method initializes jPanelConex
54
    // *
55
    // * @return javax.swing.JPanel
56
    // */
57
    // private ConnectionPanel getJPanelConex() {
58
    // if (jPanelConex == null) {
59
    // jPanelConex = new ConnectionPanel();
60
    // String[] drvAux = new String[1];
61
    // drvAux[0] = "PostGIS JDBC Driver";
62
    // jPanelConex.setDrivers(drvAux);
63
    // jPanelConex.setPreferredSize(new java.awt.Dimension(400,300));
64
    // }
65
    // return jPanelConex;
66
    // }
67
    //
68
    // public ConnectionSettings getConnSettings() {
69
    // return getJPanelConex().getConnectionSettings();
70
    // }
71

    
72
}  //  @jve:decl-index=0:visual-constraint="10,10"