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 @ 45527

History | View | Annotate | Download (559 Bytes)

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

    
3
import org.gvsig.fmap.dal.feature.Feature;
4

    
5
public interface ISymbol_v2 extends ISymbol {
6

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

    
15
    /**
16
     * Get the id ob the symbol (the basename of file).This attribute is not persistent.
17
     * @return
18
     */
19
    public String getID();
20
    
21
    public Feature getFeature();
22
    
23
    public void setFeature(Feature feature);
24
    
25
}