Revision 41638 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
269 269
        this.dateFormat = dateFormat;
270 270
        return this;
271 271
    }
272

  
273
    public EditableFeatureAttributeDescriptor setIsIndexed(boolean isIndexed) {
274
        this.indexed = isIndexed;
275
        return this;
276
    }
272 277
    
278
    public EditableFeatureAttributeDescriptor setAllowIndexDuplicateds(boolean allowDuplicateds) {
279
        this.allowIndexDuplicateds = allowDuplicateds;
280
        return this;
281
    }
282

  
283
    public EditableFeatureAttributeDescriptor setIsIndexAscending(boolean ascending) {
284
        this.isIndexAscending = ascending;
285
        return this;
286
    }
273 287
    
274 288
}

Also available in: Unified diff