Revision 1766 org.gvsig.legend.heatmap/trunk/org.gvsig.legend.heatmap/org.gvsig.legend.heatmap.lib/org.gvsig.legend.heatmap.lib.api/src/main/java/org/gvsig/legend/heatmap/lib/api/HeatmapLegend.java

View differences:

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

  
3
import java.awt.Color;
3 4
import org.gvsig.fmap.mapcontext.rendering.legend.IVectorLegend;
4 5

  
5 6
public interface HeatmapLegend extends IVectorLegend {
6 7

  
7 8
    public int getDistance();
9

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

  
12
    public void setColorTable(Color[] colorTable);
11 13

  
14
    public void setColorTable(int numColor, Color first, Color last);
15

  
16
    public Color[] getColorTable();
17

  
18
    public boolean useRamp();
19
    
20
    public String getFieldName();
21
    
22
    public void setFieldName(String fieldName);
23
    
24
    public int getColorTableHotColorAlpha();
25

  
26
    public void setColorTableHotColorAlpha(int colorTableHotColorAlpha);
27

  
28
    public int getColorTableColdColorAlpha();
29

  
30
    public void setColorTableColdColorAlpha(int colorTableColdColorAlpha);
31

  
32
    public boolean useAlphaInColorTable();
33

  
34
    public boolean setUseAlphaInColorTable(boolean use);
35
}

Also available in: Unified diff