Revision 46097 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

View differences:

DefaultEditableFeatureAttributeDescriptor.java
247 247
        return this;
248 248
    }
249 249

  
250
    @Override
250 251
    public EditableFeatureAttributeDescriptor setIsPrimaryKey(
251 252
            boolean isPrimaryKey) {
252
        updateStrongChanges(this.primaryKey, primaryKey);
253
        updateStrongChanges(this.primaryKey, isPrimaryKey);
253 254
        this.primaryKey = isPrimaryKey;
254 255
        return this;
255 256
    }
256 257

  
258
    @Override
257 259
    public EditableFeatureAttributeDescriptor setIsReadOnly(boolean isReadOnly) {
258
        updateStrongChanges(this.readOnly, readOnly);
260
        updateStrongChanges(this.readOnly, isReadOnly);
259 261
        this.readOnly = isReadOnly;
260 262
        return this;
261 263
    }

Also available in: Unified diff