Revision 47378 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/FeatureRule.java

View differences:

FeatureRule.java
38 38
 */
39 39
public interface FeatureRule extends Persistent{
40 40
	
41
        public static final int CHECK_WHEN_FINISH_EDITING = 1;
42
        public static final int CHECK_WHEN_INSERT_OR_UPDATE_FEATURE = 2;
43
        public static final int CHECK_WHEN_USER_EDIT_FEATURE = 4;        
44
        
41 45
	/**
42 46
	 * Returns the rule name
43 47
	 * 
......
85 89
	 * 		true if this rule should be applied when editing is being finished, otherwise false.
86 90
	 */
87 91
	public boolean checkAtFinishEditing();
92
        
93
        public boolean checkWhen(int mask);
88 94
}

Also available in: Unified diff