Statistics
| Revision:

root / org.gvsig.legend.heatmap / trunk / org.gvsig.legend.heatmap.lib / org.gvsig.legend.heatmap.lib.api / src / main / java / org / gvsig / legend / heatmap / lib / api / HeatmapLegend.java @ 1717

History | View | Annotate | Download (242 Bytes)

1
package org.gvsig.legend.heatmap.lib.api;
2

    
3
import org.gvsig.fmap.mapcontext.rendering.legend.IVectorLegend;
4

    
5
public interface HeatmapLegend extends IVectorLegend {
6

    
7
    public int getDistance();
8
    public void setDistance(int distance);
9
}
10

    
11