Statistics
| Revision:

root / org.gvsig.expressionfield / trunk / org.gvsig.expressionfield / src / main / java / org / gvsig / expressionfield / project / documents / table / gui / FeatureContainer.java @ 22

History | View | Annotate | Download (374 Bytes)

1
package org.gvsig.expressionfield.project.documents.table.gui;
2

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

    
5
public class FeatureContainer {
6
private Feature feature = null;
7

    
8
public Feature getFeature() {
9
        return feature;
10
}
11

    
12
public void setFeature(Feature feature) {
13
        this.feature = feature;
14
}
15

    
16
public boolean containsFeature() {
17
        return feature!=null;
18
}
19
}