Revision 34634

View differences:

branches/dal_time_support/libraries/libFMap_mapcontext/src-test/org/gvsig/fmap/mapcontext/persistence/DummyDBFeatureStore.java
1 1
package org.gvsig.fmap.mapcontext.persistence;
2 2

  
3
import java.util.Collection;
3 4
import java.util.Iterator;
4 5
import java.util.List;
5 6
import java.util.Set;
......
28 29
import org.gvsig.fmap.dal.feature.NewFeatureStoreParameters;
29 30
import org.gvsig.fmap.dal.feature.exception.NeedEditingModeException;
30 31
import org.gvsig.fmap.geom.primitive.Envelope;
32
import org.gvsig.timesupport.Interval;
31 33
import org.gvsig.tools.ToolsLocator;
32 34
import org.gvsig.tools.dynobject.DynClass;
33 35
import org.gvsig.tools.dynobject.DynObject;
......
559 561
        // TODO Auto-generated method stub
560 562
        return 0;
561 563
    }
564

  
565
    public Interval getInterval() {
566
        // TODO Auto-generated method stub
567
        return null;
568
    }
569

  
570
    public Collection getInstants() {
571
        // TODO Auto-generated method stub
572
        return null;
573
    }
574

  
575
    public Collection getInstants(Interval interval) {
576
        // TODO Auto-generated method stub
577
        return null;
578
    }
562 579
}
branches/dal_time_support/libraries/libFMap_mapcontext/src-test/org/gvsig/fmap/mapcontext/persistence/DummyFileFeatureStore.java
1 1
package org.gvsig.fmap.mapcontext.persistence;
2 2

  
3 3
import java.text.DateFormat;
4
import java.util.Collection;
4 5
import java.util.Iterator;
5 6
import java.util.List;
6 7
import java.util.Set;
......
17 18
import org.gvsig.fmap.dal.feature.EditableFeatureType;
18 19
import org.gvsig.fmap.dal.feature.Feature;
19 20
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
21
import org.gvsig.fmap.dal.feature.FeatureAttributeGetter;
20 22
import org.gvsig.fmap.dal.feature.FeatureCache;
21 23
import org.gvsig.fmap.dal.feature.FeatureIndex;
22 24
import org.gvsig.fmap.dal.feature.FeatureIndexes;
......
33 35
import org.gvsig.fmap.dal.feature.exception.NeedEditingModeException;
34 36
import org.gvsig.fmap.geom.Geometry;
35 37
import org.gvsig.fmap.geom.primitive.Envelope;
38
import org.gvsig.timesupport.Interval;
36 39
import org.gvsig.tools.ToolsLocator;
37 40
import org.gvsig.tools.dataTypes.CoercionException;
38 41
import org.gvsig.tools.dataTypes.DataType;
......
365 368
            return 0;
366 369
        }
367 370

  
371
        public boolean isTime() {
372
            // TODO Auto-generated method stub
373
            return false;
374
        }
375

  
376
        public FeatureAttributeGetter getFeatureAttributeGetter() {
377
            // TODO Auto-generated method stub
378
            return null;
379
        }
380

  
381
        public void setFeatureAttributeGetter(
382
            FeatureAttributeGetter featureAttributeGetter) {
383
            // TODO Auto-generated method stub
384
            
385
        }
386

  
368 387
	}
369 388

  
370 389
	public static class DummyFeatureType implements FeatureType {
......
747 766
			
748 767
		}
749 768

  
769
        public FeatureAttributeDescriptor getDefaultTimelAttribute() {
770
            // TODO Auto-generated method stub
771
            return null;
772
        }
773

  
750 774
	}
751 775

  
752 776
	private String name = "[empty]";
......
1264 1288
        // TODO Auto-generated method stub
1265 1289
        return 0;
1266 1290
    }
1291

  
1292
    public Interval getInterval() {
1293
        // TODO Auto-generated method stub
1294
        return null;
1295
    }
1296

  
1297
    public Collection getInstants() {
1298
        // TODO Auto-generated method stub
1299
        return null;
1300
    }
1301

  
1302
    public Collection getInstants(Interval interval) {
1303
        // TODO Auto-generated method stub
1304
        return null;
1305
    }
1267 1306
}

Also available in: Unified diff