Revision 20419 trunk/libraries/libDataSource/src/org/gvsig/data/vectorial/IFeatureStore.java

View differences:

IFeatureStore.java
10 10

  
11 11
public interface IFeatureStore extends IDataStore{
12 12

  
13
	public IDataCollection getDataCollection(IFeatureType type, String filter, String order) throws ReadException, IsNotFeatureSettingException;
13
	public IDataCollection getDataCollection(IFeatureType type, String filter, String order) throws ReadException;
14 14

  
15 15
	/**
16 16
	 * Para la carga en background
......
18 18
	public void getDataCollection(IFeatureType type, String filter, String order,IObserver observer);
19 19
	public void getDataCollection(IObserver observer);
20 20

  
21
	public IFeature getFeatureByID(IFeatureID id) throws ReadException, IsNotFeatureSettingException;
21
	public IFeature getFeatureByID(IFeatureID id) throws ReadException;
22 22
//	public IFeature getFeatureByPosition(long position);
23 23

  
24 24

  
25 25
	public List getFeatureTypes();
26 26
	public IFeature createFeature(IFeatureType type) throws IsNotFeatureSettingException;
27 27

  
28
	public IFeature createDefaultFeature(boolean defaultValues) throws IsNotFeatureSettingException;
28
	public IFeature createDefaultFeature(boolean defaultValues);
29 29
	public IFeatureType getDefaultFeatureType();
30 30

  
31 31
	public void update(IFeature feature);

Also available in: Unified diff