Revision 39059 branches/v2_0_0_prep/libraries/libFMap_mapcontext/src/org/gvsig/fmap/mapcontext/layers/FLyrDefault.java

View differences:

FLyrDefault.java
53 53
import org.cresques.cts.IProjection;
54 54
import org.gvsig.fmap.dal.DataTypes;
55 55
import org.gvsig.fmap.dal.exception.ReadException;
56
import org.gvsig.fmap.geom.primitive.Envelope;
56 57
import org.gvsig.fmap.mapcontext.MapContext;
57 58
import org.gvsig.fmap.mapcontext.MapContextLocator;
58 59
import org.gvsig.fmap.mapcontext.exceptions.LoadLayerException;
......
100 101
 * @see FLayer
101 102
 * @see FLayerStatus
102 103
 */
103
public abstract class FLyrDefault extends AbstractDisposable implements FLayer,
104
public abstract class FLyrDefault extends AbstractDisposable implements FLayer, FLayerHidesArea,
104 105
		LayerListener {
105 106
	/**
106 107
	 * Useful for debug the problems during the implementation.
......
1038 1039
	public String toString() {
1039 1040
		return super.toString() + ": " + getName();
1040 1041
	}
1042
	
1043
	public boolean hidesThisArea(Envelope area) {
1044
		return false;
1045
	}
1041 1046
}

Also available in: Unified diff