Revision 4729 trunk/extensions/extGeoreferencing/src/com/iver/cit/gvsig/gui/panels/GeorefOptionsPanel.java

View differences:

GeorefOptionsPanel.java
34 34
	private JLabel lAlgoritmo = null;
35 35
	private JComboBox cbAlgoritmo = null;
36 36
	private JPanel jPanel = null;
37
	private JPanel jPanel1 = null;
37 38
	
38 39
	/**
39 40
	 * This is the default constructor
......
160 161
	 */    
161 162
	private JPanel getJPanel() {
162 163
		if (jPanel == null) {
164
			GridBagConstraints gridBagConstraints = new GridBagConstraints();
165
			gridBagConstraints.gridx = 0;
166
			gridBagConstraints.gridy = 0;
163 167
			jPanel = new JPanel();
168
			jPanel.setLayout(new GridBagLayout());
164 169
			jPanel.setPreferredSize(new java.awt.Dimension(370,75));
170
			jPanel.add(getJPanel1(), gridBagConstraints);
165 171
		}
166 172
		return jPanel;
167 173
	}
......
177 183
	public void actionPerformed(java.awt.event.ActionEvent e) {
178 184
		
179 185
	}
186

  
187
	/**
188
	 * This method initializes jPanel1	
189
	 * 	
190
	 * @return javax.swing.JPanel	
191
	 */
192
	private JPanel getJPanel1() {
193
		if (jPanel1 == null) {
194
			jPanel1 = new OptionsPanel(this.grd);
195
		}
196
		return jPanel1;
197
	}
180 198
 }

Also available in: Unified diff