Revision 44871 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/feature/FeatureStoreNotification.java

View differences:

FeatureStoreNotification.java
23 23
 */
24 24
package org.gvsig.fmap.dal.feature;
25 25

  
26
import java.util.Iterator;
26 27
import org.gvsig.fmap.dal.DataSet;
27 28
import org.gvsig.fmap.dal.DataStoreNotification;
29
import org.gvsig.fmap.dal.feature.FeatureType.FeatureTypeChanged;
28 30
import org.gvsig.tools.undo.command.Command;
29 31

  
30 32
public interface FeatureStoreNotification extends DataStoreNotification {
......
65 67
	public static final String AFTER_INSERT = "after_Insert_Feature";
66 68

  
67 69
	public static final String LOAD_FINISHED = "Load_Finished";
70
  
68 71
	public static final String TRANSFORM_CHANGE = "Transform_Change";
69 72

  
70 73
    /**
......
100 103
	public Command getCommand();
101 104

  
102 105
	public EditableFeatureType getFeatureType();
106
  
107
  public boolean isSelectionCompromised();
108

  
109
  public Iterator<FeatureReference> getDeletedsFeatures();
110
  
111
  public Iterator<Feature> getInsertedsFeatures();
112
  
113
  public Iterator<Feature> getUpdatedsFeatures();
114
  
115
  public Iterator<FeatureTypeChanged> getChangedsFeatureTypes();
116
  
103 117
}

Also available in: Unified diff