Revision 12472

View differences:

branches/v10/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/XTypes.java
2 2
 * Created on 26-oct-2005
3 3
 *
4 4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 * 
5
 *
6 6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 * 
7
 *
8 8
 * This program is free software; you can redistribute it and/or
9 9
 * modify it under the terms of the GNU General Public License
10 10
 * as published by the Free Software Foundation; either version 2
11 11
 * of the License, or (at your option) any later version.
12
 *  
12
 *
13 13
 * This program is distributed in the hope that it will be useful,
14 14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 16
 * GNU General Public License for more details.
17
 * 
17
 *
18 18
 * You should have received a copy of the GNU General Public License
19 19
 * along with this program; if not, write to the Free Software
20 20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21
 *  
21
 *
22 22
 * For more information, contact:
23 23
 *
24 24
 *  Generalitat Valenciana
......
30 30
 *      +34 963862235
31 31
 *   gvsig@gva.es
32 32
 *      www.gvsig.gva.es
33
 * 
33
 *
34 34
 *    or
35
 * 
35
 *
36 36
 *   IVER T.I. S.A
37 37
 *   Salamanca 50
38 38
 *   46005 Valencia
39 39
 *   Spain
40
 * 
40
 *
41 41
 *   +34 963163400
42 42
 *   dac@iver.es
43 43
 */
......
66 66
import com.hardcode.gdbms.engine.values.ValueFactory;
67 67

  
68 68
public class XTypes {
69
	public final static double NUM_msSecs2000 = 9.466776E11; 
69
	public final static double NUM_msSecs2000 = 9.466776E11;
70 70
	public final static int POINT2D = 100;
71 71

  
72 72
	public final static int LINE2D = 101;
......
197 197
		case Types.INTEGER:
198 198
			IntValue vInt = (IntValue) val;
199 199
			rs.updateInt(fieldId, vInt.getValue());
200
			break;
200 201
		case Types.SMALLINT:
201 202
			ShortValue vShort = (ShortValue) val;
202 203
			rs.updateShort(fieldId, vShort.shortValue());
......
213 214
		case Types.DATE:
214 215
			DateValue vDate = (DateValue) val;
215 216
			rs.updateDate(fieldId, vDate.getValue());
217
			break;
216 218
		case Types.TIME:
217 219
			TimeValue vTime = (TimeValue) val;
218 220
			rs.updateTime(fieldId, vTime.getValue());

Also available in: Unified diff