Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / FeatureRule.java @ 24496

History | View | Annotate | Download (358 Bytes)

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

    
3
import org.gvsig.fmap.dal.exceptions.DataException;
4

    
5
public interface FeatureRule {
6
        public String getName();
7
        public String getDescription();
8
        public void validate(Feature feature, FeatureStore featureStore)
9
                        throws DataException;
10
        public boolean checkAtUpdate();
11
        public boolean checkAtFinishEdition();
12
}