Revision 43638

View differences:

trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.impl/src/main/java/org/gvsig/fmap/dal/feature/impl/DefaultEditableFeatureAttributeDescriptor.java
287 287

  
288 288
    public EditableFeatureAttributeDescriptor setIsIndexed(boolean isIndexed) {
289 289
        this.indexed = isIndexed;
290
        if (!isComputed()) {
291
            hasStrongChanges = true;
292
        }
290 293
        return this;
291 294
    }
292 295
    
293 296
    public EditableFeatureAttributeDescriptor setAllowIndexDuplicateds(boolean allowDuplicateds) {
294 297
        this.allowIndexDuplicateds = allowDuplicateds;
298
        if (!isComputed()) {
299
            hasStrongChanges = true;
300
        }
295 301
        return this;
296 302
    }
297 303

  
298 304
    public EditableFeatureAttributeDescriptor setIsIndexAscending(boolean ascending) {
299 305
        this.isIndexAscending = ascending;
306
        if (!isComputed()) {
307
            hasStrongChanges = true;
308
        }
300 309
        return this;
301 310
    }
302 311
    

Also available in: Unified diff