Revision 14426 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/rendering/IVectorialUniqueValueLegend.java

View differences:

IVectorialUniqueValueLegend.java
45 45

  
46 46

  
47 47
/**
48
 * Interfaz de leyenda de valores ?nicos.
48
 * Interface for the legend with unique values.
49
 * 
49 50
 */
50 51
public interface IVectorialUniqueValueLegend extends IClassifiedVectorLegend {
51 52
    /**
52
     * Establece el s?mbolo para el valor que se pasa como par?metro
53
     * Establishes the symbol for the value which is the argument of the function. 
53 54
     *
54
     * @param id ?ndice.
55
     * @param symbol s?mbolo.
55
     * @param id index.
56
     * @param symbol symbol.
56 57
     */
57 58
    void setValueSymbolByID(int id, ISymbol symbol);
58 59

  
59 60

  
60 61
    /**
61
     * Devuelve un s?mbolo a partir del ID. Mira en el m_ArrayKeys  el elemento
62
     * ID, y con esa clave recupera el FSymbol por valor
63
     *
62
     * Returns the symbols starting from an ID. It looks in m_ArrayKeys for the
63
     * element ID and with this key obtains the FSymbol. 
64
     
64 65
     * @param key ID.
65 66
     *
66
     * @return s?mbolo que corresponde a ese ID.
67
     * @return symbol associated with the ID
67 68
     */
68 69

  
69 70
    // public FSymbol getSymbolByID(int ID);
70 71

  
71 72
    /**
72
     * Devuelve un s?mbolo a partir de su clave.
73
     * Returns the symbols starting from its key.
73 74
     *
74 75
     * @param key ID.
75 76
     *
76
     * @return s?mbolo que corresponde a ese ID.
77
     * @return symbol associated with the key.
77 78
     */
78 79
    public ISymbol getSymbolByValue(Value key);
79 80
}

Also available in: Unified diff