Revision 2585 org.gvsig.raster/trunk/org.gvsig.raster/org.gvsig.raster.swing/org.gvsig.raster.swing.impl/src/main/java/org/gvsig/raster/swing/impl/canvas/layer/function/DefaultLogaritmicExponentialLine.java

View differences:

DefaultLogaritmicExponentialLine.java
113 113
	 * ( 0.0 a -1.0) - Funcion exponencial con aproximacion al centro
114 114
	 * (-1.0 a -2.0) - Funcion exponencial con aproximacion al borde
115 115
	 */
116
	@SuppressWarnings("unchecked")
117 116
	private void recalcList() {
118 117
		double x, y = 0.0;
119 118

  
......
216 215
		return false;
217 216
	}
218 217

  
219
	/*
220
	 * (non-Javadoc)
221
	 * @see org.gvsig.raster.beans.canvas.layers.functions.StraightLine#mouseMoved(java.awt.event.MouseEvent)
222
	 */
223 218
	public boolean mouseMoved(MouseEvent e) {
224 219
		return true;
225 220
	}
226 221

  
227
	/*
228
	 * (non-Javadoc)
229
	 * @see org.gvsig.raster.beans.canvas.layers.functions.StraightLine#mousePressed(java.awt.event.MouseEvent)
230
	 */
231 222
	public boolean mousePressed(MouseEvent e) {
232 223
		return mouseDragged(e);
233 224
	}
234 225

  
235
	/*
236
	 * (non-Javadoc)
237
	 * @see org.gvsig.raster.beans.canvas.layers.functions.StraightLine#mouseReleased(java.awt.event.MouseEvent)
238
	 */
239 226
	public boolean mouseReleased(MouseEvent e) {
240 227
		setInfoPoint(null);
241 228
		return true;
242 229
	}
243 230
	
244
	/*
245
	 * (non-Javadoc)
246
	 * @see org.gvsig.raster.swing.gcanvas.LogaritmicExponentialLine#isLogaritmical()
247
	 */
248 231
	public boolean isLogaritmical() {
249 232
		return (valueFunction > 0.0);
250 233
	}
251 234

  
252
	/*
253
	 * (non-Javadoc)
254
	 * @see org.gvsig.raster.swing.gcanvas.LogaritmicExponentialLine#isExponencial()
255
	 */
256 235
	public boolean isExponencial() {
257 236
		return (valueFunction < 0.0);
258 237
	}
259 238
	
260
	/*
261
	 * (non-Javadoc)
262
	 * @see org.gvsig.raster.beans.canvas.layers.functions.StraightLine#getFunctionType()
263
	 */
264 239
	public int getFunctionType() {
265 240
		return 1;
266 241
	}
267 242
	
268
	/*
269
	 * (non-Javadoc)
270
	 * @see org.gvsig.raster.beans.canvas.layers.functions.StraightLine#getValueFunction()
271
	 */
272 243
	public double getValueFunction() {
273 244
		return valueFunction;
274 245
	}

Also available in: Unified diff