Revision 9739

View differences:

trunk/extensions/extWFS2/.classpath
18 18
	<classpathentry kind="lib" path="/_fwAndami/lib/log4j-1.2.8.jar"/>
19 19
	<classpathentry sourcepath="/libUI" kind="lib" path="/_fwAndami/lib/beans.jar"/>
20 20
	<classpathentry combineaccessrules="false" kind="src" path="/libIverUtiles"/>
21
	<classpathentry kind="lib" path="/libExceptions/dist/gvsig-exceptions.jar"/>
21 22
	<classpathentry kind="lib" path="/appgvSIG/lib/zql.jar"/>
22 23
	<classpathentry kind="output" path="bin"/>
23 24
</classpath>
trunk/extensions/extWFS2/src-test/com/iver/cit/gvsig/gui/panels/FieldsTableTest.java
2 2

  
3 3
import java.awt.Component;
4 4
import java.io.File;
5
import java.io.IOException;
5 6
import java.util.Vector;
6 7

  
7 8
import javax.swing.JFrame;
......
11 12
import org.gvsig.remoteClient.gml.factories.XMLElementsFactory;
12 13
import org.gvsig.remoteClient.gml.schemas.XMLElement;
13 14
import org.gvsig.remoteClient.gml.schemas.XMLSchemaParser;
15
import org.xmlpull.v1.XmlPullParserException;
14 16

  
15 17
import com.iver.cit.gvsig.gui.panels.fieldsTree.FieldsTreeTable;
16 18
import com.iver.cit.gvsig.gui.panels.fieldsTree.TreeTableModelWithCheckBoxes;
......
59 61
 *
60 62
 * $Id$
61 63
 * $Log$
62
 * Revision 1.1  2006-12-26 09:10:37  ppiqueras
64
 * Revision 1.2  2007-01-16 08:47:49  csanchez
65
 * Sistema de Warnings y Excepciones adaptado a BasicException
66
 *
67
 * Revision 1.1  2006/12/26 09:10:37  ppiqueras
63 68
 * Cambiado "atttibutes" en todas las aparaciones en atributos, métodos, clases o comentarios por "fields". (Sólo a aquellas que afectan a clases dentro del proyecto extWFS2).
64 69
 *
65 70
 * Revision 1.7  2006/11/01 17:29:08  jorpiell
......
132 137

  
133 138
	private Vector describeFeatureType(){
134 139
		XMLSchemaParser schemaParser = new XMLSchemaParser();
135
		schemaParser.parse(new File(gmlFile),"ms");
140
		try {
141
			schemaParser.parse(new File(gmlFile),"ms");
142
		} catch (XmlPullParserException e) {
143
			// TODO Auto-generated catch block
144
			e.printStackTrace();
145
		} catch (IOException e) {
146
			// TODO Auto-generated catch block
147
			e.printStackTrace();
148
		}
136 149
		XMLElement entity = XMLElementsFactory.getElement("Blyr");
137 150
		if (entity != null){
138 151
				Vector vector = new Vector();
trunk/extensions/extWFS2/src/com/iver/cit/gvsig/fmap/drivers/wfs/WFSFeaturesIterator.java
1 1
package com.iver.cit.gvsig.fmap.drivers.wfs;
2 2

  
3 3
import org.cresques.cts.ICoordTrans;
4
import org.gvsig.remoteClient.gml.GMLException;
5 4
import org.gvsig.remoteClient.gml.IGMLFeaturesIterator;
5
import org.gvsig.remoteClient.gml.exceptions.GMLException;
6 6

  
7 7
import com.iver.cit.gvsig.fmap.DriverException;
8 8
import com.iver.cit.gvsig.fmap.core.IFeature;
......
54 54
 *
55 55
 * $Id$
56 56
 * $Log$
57
 * Revision 1.4  2006-12-26 09:19:23  ppiqueras
57
 * Revision 1.5  2007-01-16 08:47:49  csanchez
58
 * Sistema de Warnings y Excepciones adaptado a BasicException
59
 *
60
 * Revision 1.4  2006/12/26 09:19:23  ppiqueras
58 61
 * Cambiado "atttibutes" en todas las aparaciones en atributos, métodos, clases, paquetes o comentarios por "fields". (Sólo a aquellas que afectan a clases dentro del proyecto extWFS2).
59 62
 *
60 63
 * Revision 1.3  2006/10/02 09:09:45  jorpiell

Also available in: Unified diff