Revision 21927 branches/Mobile_Compatible_Hito_1/libFMap_mobile_shp_driver/src-file/org/gvsig/data/datastores/vectorial/file/shp_util/DBFDataSource.java

View differences:

DBFDataSource.java
4 4

  
5 5
public interface DBFDataSource {
6 6

  
7
	int getFieldCount() throws DriverException;
7
	int getFieldCount() throws BaseReadException;
8 8

  
9
	int getFieldType(int i) throws DriverException;
9
	int getFieldType(int i) throws BaseReadException;
10 10

  
11
	String getFieldName(int i) throws DriverException;
11
	String getFieldName(int i) throws BaseReadException;
12 12

  
13
	int getFieldWidth(int i) throws DriverException;
13
	int getFieldWidth(int i) throws BaseReadException;
14 14

  
15 15
	String getName();
16 16

  
17
	int getFieldIndexByName(String desc_fname) throws DriverException;
17
	int getFieldIndexByName(String desc_fname) throws BaseReadException;
18 18

  
19
	Object getFieldValue(long i, int ind) throws DriverException;
19
	Object getFieldValue(long i, int ind) throws BaseReadException;
20 20

  
21 21
}

Also available in: Unified diff