Revision 18975

View differences:

trunk/extensions/extGeoreferencing/src/org/gvsig/georeferencing/ui/launcher/AlgorithmSelectionPanel.java
92 92
	}
93 93
	
94 94
	/**
95
	 * Obtiene el radio but?n de la selecci?n sin cartograf?a de referencia
95
	 * Obtiene el radio but?n de la selecci?n de transformaci?n af?n
96 96
	 * @return JRadioButton
97 97
	 */
98 98
	public JRadioButton getAffine() {
......
105 105
	}
106 106
	
107 107
	/**
108
	 * Obtiene el radio but?n de la selecci?n con cartograf?a de referencia
108
	 * Obtiene el radio but?n de la selecci?n de transformaci?n polinomial
109 109
	 * @return JRadioButton
110 110
	 */
111 111
	public JRadioButton getPolynomial() {
......
149 149
		getDegreeList().setEnabled(getPolynomial().isSelected());
150 150
		getInterpolationMethod().setEnabled(getPolynomial().isSelected());
151 151
	}
152
	
153 152

  
154 153
	//-------Consulta de propiedades seleccionadas---------
155 154
	
......
233 232
		case Georeferencing.AFFINE: 
234 233
				getAffine().setSelected(true);
235 234
				getPolynomial().setSelected(false);
235
				actionPerformed(new ActionEvent(getAffine(), 0, ""));
236 236
				break;
237 237
		case Georeferencing.POLYNOMIAL:
238 238
				getPolynomial().setSelected(true);
239 239
				getAffine().setSelected(false);
240
				actionPerformed(new ActionEvent(getPolynomial(), 0, ""));
240 241
				break;
241 242
		}
242 243
	}

Also available in: Unified diff