Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / java / org / gvsig / fmap / dal / expressionevaluator / FeatureSymbolTable.java @ 44397

History | View | Annotate | Download (621 Bytes)

1
package org.gvsig.fmap.dal.expressionevaluator;
2

    
3
import org.gvsig.expressionevaluator.MutableSymbolTable;
4
import org.gvsig.expressionevaluator.SymbolTable;
5
import org.gvsig.fmap.dal.feature.Feature;
6

    
7
/**
8
 *
9
 * @author jjdelcerro
10
 */
11
public interface FeatureSymbolTable extends SymbolTable {
12
 
13
    public void setFeature(Feature feature);
14
    
15
    @Override
16
    public FeatureSymbolTable clone() throws CloneNotSupportedException;
17
    
18
    /**
19
     * Utility method that creates a mutable symbol table whose table 
20
     * delegated to this.
21
     * 
22
     * @return 
23
     */
24
    public MutableSymbolTable createParent();
25

    
26
}