Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / rendering / symbols / ISymbol_v2.java @ 41398

History | View | Annotate | Download (439 Bytes)

1
package org.gvsig.fmap.mapcontext.rendering.symbols;
2

    
3
public interface ISymbol_v2 extends ISymbol {
4

    
5
    /**
6
     * Set the id ob the symbol (the basename of file).
7
     * This attribute is not persistent.
8
     *
9
     * @param id
10
     */
11
    public void setID(String id);
12

    
13
    /**
14
     * Get the id ob the symbol (the basename of file).
15
     * This attribute is not persistent.
16
     *
17
     * @param id
18
     */
19
    public String getID();
20
}