From: <emm...@us...> - 2009-01-28 13:48:57
|
Revision: 4418 http://fudaa.svn.sourceforge.net/fudaa/?rev=4418&view=rev Author: emmanuel_martin Date: 2009-01-28 13:48:55 +0000 (Wed, 28 Jan 2009) Log Message: ----------- correction d'un bug dans l'export GML Modified Paths: -------------- branches/FudaaModeleur_TC1Bis/fudaa_devel/ctulu/src/org/fudaa/ctulu/gis/gml/GISGMLZoneExporter.java Modified: branches/FudaaModeleur_TC1Bis/fudaa_devel/ctulu/src/org/fudaa/ctulu/gis/gml/GISGMLZoneExporter.java =================================================================== --- branches/FudaaModeleur_TC1Bis/fudaa_devel/ctulu/src/org/fudaa/ctulu/gis/gml/GISGMLZoneExporter.java 2009-01-28 11:58:49 UTC (rev 4417) +++ branches/FudaaModeleur_TC1Bis/fudaa_devel/ctulu/src/org/fudaa/ctulu/gis/gml/GISGMLZoneExporter.java 2009-01-28 13:48:55 UTC (rev 4418) @@ -128,12 +128,18 @@ throws IOException, SchemaException, IllegalAttributeException { out_ = _dest; store_ = null; + _zone.prepareExport(); process(_prog, _zone); } private void process(final ProgressionInterface _prog, final GISDataModel _zone) throws IOException, SchemaException, IllegalAttributeException { + /* + * Pour que les z atomiques soient exporter correctement, il faut que + * prepareExport() est \xE9t\xE9 appel\xE9 sur la GISZoneCollection dans le + * GISDataModel. + */ stop_ = false; final TObjectIntHashMap attIdx = new TObjectIntHashMap(_zone.getNbAttributes()); final AttributeType[] atts = createAttributes(_zone, attIdx); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |