Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / rendering / UniqueValueLegend.java @ 322

History | View | Annotate | Download (470 Bytes)

1
/* Generated by Together */
2

    
3
package com.iver.cit.gvsig.fmap.rendering;
4

    
5
import com.iver.cit.gvsig.fmap.rendering.styling.FStyle2D;
6

    
7

    
8

    
9
public interface UniqueValueLegend extends ClassifiedLegend {
10
    /**
11
     * Establece el s?mbolo para el valor que se pasa como par?metro 
12
     */
13
    void setValueSymbol(Object value, FStyle2D symbol);
14

    
15
    /**
16
     * Cambia el valor oldValue-?simo del array de valores
17
     */
18
    void changeValue(int oldValue, Object newValue);
19
}