Revision 44077 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/src/test/java/org/gvsig/fmap/dal/feature/DummyFeatureType.java

View differences:

DummyFeatureType.java
18 18
 * Use it directly or extend it and overwrite the methods you need.
19 19
 * This class is maintained as part of the DAL API.
20 20
 */
21

  
22

  
23 21
public class DummyFeatureType implements FeatureType {
24 22

  
25 23
    @Override
......
392 390
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
393 391
    }
394 392

  
393
    @Override
394
    public String getDefaultTimeAttributeName() {
395
        return null;
396
    }
397

  
398
    @Override
399
    public int getDefaultTimeAttributeIndex() {
400
        return -1;
401
    }
402

  
395 403
}

Also available in: Unified diff