Revision 13300 trunk/extensions/extRasterTools-SE/src/org/gvsig/fmap/raster/layers/FLyrRasterSE.java

View differences:

FLyrRasterSE.java
94 94
 * @author Nacho Brodin (nachobrodin@gmail.com)
95 95
 */
96 96
public class FLyrRasterSE extends FLyrDefault
97
	implements IRasterProperties, IRasterDataset, InfoByPoint, Classifiable, IRasterOperations {
97
	implements IRasterProperties, IRasterDataset, InfoByPoint, Classifiable, IRasterOperations, IRasterLayerActions {
98 98
	public static double          noDataDefault      = -99999;
99 99
	boolean                       isPrinting         = false;
100 100
	boolean                       mustTileDraw       = false;
......
120 120
	//private IClassifiedLegend     legend             = null;
121 121
	private LayerChangeSupport    layerChangeSupport = new LayerChangeSupport();
122 122
	public double                 noDataValue        = -99999;
123
	
123 124
	/**
124 125
	 * Lista de transformaciones afines que son aplicadas. Esta lista es simplemente un
125 126
	 * historico que no se utiliza. Es posible utilizarlo para recuperar transformaciones
......
1182 1183
		affineTransformList.clear();
1183 1184
		affineTransformList.add(this.getAffineTransform());
1184 1185
	}
1186

  
1187
	/*
1188
	 * (non-Javadoc)
1189
	 * @see org.gvsig.fmap.raster.layers.IRasterLayerActions#isActionEnabled(int)
1190
	 */
1191
	public boolean isActionEnabled(int action) {
1192
		return true;
1193
	}
1185 1194
}

Also available in: Unified diff