Revision 8832

View differences:

branches/v10/extensions/extWFS2/src/com/iver/cit/gvsig/fmap/layers/FLyrWFS.java
74 74
 *
75 75
 * $Id$
76 76
 * $Log$
77
 * Revision 1.10.2.6  2006-11-16 15:38:51  jorpiell
77
 * Revision 1.10.2.7  2006-11-16 17:15:59  jorpiell
78
 * Ya se almacena y se recupera en un gvp un filtro
79
 *
80
 * Revision 1.10.2.6  2006/11/16 15:38:51  jorpiell
78 81
 * Se han modificado los metodos para guargar y crear un XML a partir de una capa WFS.
79 82
 *
80 83
 * Revision 1.10.2.5  2006/11/15 00:08:20  jjdelcerro
......
578 581
        //Projection
579 582
        xml.putProperty("projection",getProjection().getAbrev());
580 583
        
584
        //Filter
585
        xml.putProperty("filterEncoding",getAttributesQuery());
586
        
581 587
        return xml;
582 588
	}
583 589
	
......
629 635
		 //Projection
630 636
		if (xml.contains("projection")){
631 637
			setProjection(CRSFactory.getCRS(xml.getStringProperty("projection")));
632
		}              
638
		}  
633 639
		
640
        //Filter
641
		if (xml.contains("filterEncoding")){
642
			setAttributesQuery(xml.getStringProperty("filterEncoding"));
643
		}          
644
		
634 645
		// Layer fields
635 646
		FMapWFSDriver driver;
636 647
		try {

Also available in: Unified diff