Revision 4297

View differences:

trunk/extensions/extGeoProcessing/src/com/iver/gvsig/geoprocessing/gui/operationpanels/GeoProcessingOperationSelectorPanel.java
138 138
		jLabel.setText(PluginServices.getText(this,
139 139
				"Elija_una_herramienta_de_analisis")
140 140
				+ ":");
141
		jLabel.setBounds(6, 7, 200, 15);
141
		jLabel.setBounds(6, 7, 200, 21);
142 142
		this.add(jLabel, null);
143 143
		this.add(getBufferRadioButton(), null);
144 144
		this.add(getClipRadioButton(), null);
......
179 179
			bufferRadioButton = new JRadioButton();
180 180
			bufferRadioButton.setText(PluginServices.getText(this,
181 181
					"Area_de_influencia"));
182
			bufferRadioButton.setBounds(6, 29, 130, 23);
182
			bufferRadioButton.setBounds(6, 30, 130, 21);
183 183
		}
184 184
		return bufferRadioButton;
185 185
	}
186 186

  
187 187
	/**
188
	 * This method initializes clipRadioButton
189
	 * 
190
	 * @return javax.swing.JRadioButton
191
	 */
192
	private JRadioButton getClipRadioButton() {
193
		if (clipRadioButton == null) {
194
			clipRadioButton = new JRadioButton();
195
			clipRadioButton.setText(PluginServices.getText(this, "Recortar"));
196
			clipRadioButton.setBounds(6, 53, 130, 21);
197
		}
198
		return clipRadioButton;
199
	}
200

  
201
	/**
188 202
	 * This method initializes dissolveRadioButton
189 203
	 * 
190 204
	 * @return javax.swing.JRadioButton
......
194 208
			dissolveRadioButton = new JRadioButton();
195 209
			dissolveRadioButton.setText(PluginServices
196 210
					.getText(this, "Disolver"));
197
			dissolveRadioButton.setBounds(6, 75, 67, 23);
211
			dissolveRadioButton.setBounds(6, 76, 130, 21);
198 212
		}
199 213
		return dissolveRadioButton;
200 214
	}
......
208 222
		if (mergeRadioButton == null) {
209 223
			mergeRadioButton = new JRadioButton();
210 224
			mergeRadioButton.setText(PluginServices.getText(this, "Juntar"));
211
			mergeRadioButton.setBounds(6, 98, 78, 23);
225
			mergeRadioButton.setBounds(6, 99, 130, 21);
212 226
		}
213 227
		return mergeRadioButton;
214 228
	}
......
223 237
			intersectRadioButton = new JRadioButton();
224 238
			intersectRadioButton.setText(PluginServices.getText(this,
225 239
					"Interseccion"));
226
			intersectRadioButton.setBounds(6, 121, 143, 23);
240
			intersectRadioButton.setBounds(6, 122, 130, 21);
227 241
		}
228 242
		return intersectRadioButton;
229 243
	}
......
237 251
		if (unionRadioButton == null) {
238 252
			unionRadioButton = new JRadioButton();
239 253
			unionRadioButton.setText(PluginServices.getText(this, "Union"));
240
			unionRadioButton.setBounds(6, 144, 74, 23);
254
			unionRadioButton.setBounds(6, 145, 130, 21);
241 255
		}
242 256
		return unionRadioButton;
243 257
	}
......
252 266
			spatialJoinRadioButton = new JRadioButton();
253 267
			spatialJoinRadioButton.setText(PluginServices.getText(this,
254 268
					"Enlace_espacial"));
255
			spatialJoinRadioButton.setBounds(6, 167, 106, 23);
269
			spatialJoinRadioButton.setBounds(6, 168, 130, 21);
256 270
		}
257 271
		return spatialJoinRadioButton;
258 272
	}
259 273

  
260 274
	/**
261
	 * This method initializes clipRadioButton
262
	 * 
263
	 * @return javax.swing.JRadioButton
264
	 */
265
	private JRadioButton getClipRadioButton() {
266
		if (clipRadioButton == null) {
267
			clipRadioButton = new JRadioButton();
268
			clipRadioButton.setText(PluginServices.getText(this, "Recortar"));
269
			clipRadioButton.setBounds(6, 52, 79, 23);
270
		}
271
		return clipRadioButton;
272
	}
273

  
274
	/**
275 275
	 * This method initializes convexHullRadioButton	
276 276
	 * 	
277 277
	 * @return javax.swing.JRadioButton	
......
279 279
	private JRadioButton getConvexHullRadioButton() {
280 280
		if (convexHullRadioButton == null) {
281 281
			convexHullRadioButton = new JRadioButton();
282
			convexHullRadioButton.setBounds(new java.awt.Rectangle(6,197,116,21));
282
			convexHullRadioButton.setBounds(6,191,130,21);
283 283
			convexHullRadioButton.setText(PluginServices.getText(this,
284 284
					"Convex_Hull"));
285 285
			
......
296 296
	private JRadioButton getDifferenceRadioButton() {
297 297
		if (differenceRadioButton == null) {
298 298
			differenceRadioButton = new JRadioButton();
299
			differenceRadioButton.setBounds(new java.awt.Rectangle(6,221,95,24));
299
			differenceRadioButton.setBounds(6,214,130,21);
300 300
			differenceRadioButton.setText(PluginServices.getText(this,
301 301
			"Difference"));
302 302
		}

Also available in: Unified diff