Revision 37595 branches/v2_0_0_prep/libraries/libFMap_dal/src/org/gvsig/fmap/dal/feature/impl/undo/FeatureCommandsStack.java

View differences:

FeatureCommandsStack.java
8 8

  
9 9
public interface FeatureCommandsStack extends UndoRedoCommandStack {
10 10

  
11
    public void insert(Feature feature);
11
    public void insert(Feature feature) throws DataException;
12 12

  
13
    public void update(Feature feature, Feature oldFeature);
13
    public void update(Feature feature, Feature oldFeature) throws DataException;
14 14

  
15
    public void delete(Feature feature);
15
    public void delete(Feature feature) throws DataException;
16 16

  
17
//    public void insert(FeatureType featureType);
18

  
19 17
    public void update(FeatureType featureType, FeatureType oldFeatureType);
20 18

  
21
//    public void delete(FeatureType featureType);
22

  
23 19
    public void select(DefaultFeatureReferenceSelection selection,
24 20
            FeatureReference reference);
25 21

  

Also available in: Unified diff