Revision 8525

View differences:

trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/gml/GMLReader.java
64 64
 *
65 65
 * $Id$
66 66
 * $Log$
67
 * Revision 1.1  2006-08-10 12:00:49  jorpiell
67
 * Revision 1.2  2006-11-06 12:15:11  jorpiell
68
 * A?adido un constructor con un par?metro booleano que se usar? para abrir gml's sin validar el esquema
69
 *
70
 * Revision 1.1  2006/08/10 12:00:49  jorpiell
68 71
 * Primer commit del driver de Gml
69 72
 *
70 73
 *
......
103 106
	}
104 107
	
105 108
	/**
109
	 * Constructor
110
	 * @param file
111
	 * GML File to read
112
	 * @param factory
113
	 * Geometries factory that is used to create the parsed 
114
	 * GML geometries
115
	 * @param mustValidate
116
	 * To validate or not validate the schemas
117
	 * @throws Exception 
118
	 * @throws FileNotFoundException
119
	 * When the file is not found
120
	 */
121
	public GMLReader(File file,IGeometriesFactory factory,boolean mustValidate) throws Exception{
122
		this(file,factory);
123
	}
124
	
125
	/**
106 126
	 * Initializes the XMLSchemaParser, tries to parse  the GML header 
107 127
	 * to obtain the GML version and parses all the needed schemas
108 128
	 * @param factory

Also available in: Unified diff