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

View differences:

NewSHPFeature.java
1 1
package org.gvsig.data.datastores.vectorial.file.shp_util;
2 2

  
3
import java.text.DateFormat;
4
import java.text.ParseException;
5
import java.util.Date;
6 3
import java.util.List;
7 4
import java.util.Locale;
8 5

  
......
75 72
				try {
76 73
					if (dbf_ds.getFieldCount() < i)
77 74
						return;
78
				} catch (DriverException e1) {
75
				} catch (BaseReadException e1) {
79 76
					throw new ReadException(dbf_ds.getName(), e1.getMessage());
80 77
				}
81 78

  
......
83 80
				int ind = 0;
84 81
				try {
85 82
					ind = dbf_ds.getFieldIndexByName(desc_fname);
86
				} catch (DriverException e1) {
83
				} catch (BaseReadException e1) {
87 84
					throw new ReadException(dbf_ds.getName(), e1.getMessage());
88 85
				}
89 86

  
......
97 94
					if (value instanceof String) {
98 95
						value = ((String) value).trim();
99 96
					}
100
				} catch (DriverException e1) {
97
				} catch (BaseReadException e1) {
101 98
					throw new ReadException(dbf_ds.getName(), e1.getMessage());
102 99
				}
103 100

  
......
132 129

  
133 130
	}
134 131

  
135
	@Override
132
	// @Override
136 133
	protected Feature cloneFeature() throws DataException {
137 134
		// TODO Auto-generated method stub
138 135
		return null;

Also available in: Unified diff