Revision 24017 branches/v2_0_0_prep/libraries/libFMap_data/src/org/gvsig/fmap/data/feature/impl/AbstractFeatureExplorer.java

View differences:

AbstractFeatureExplorer.java
36 36
import org.gvsig.fmap.data.feature.exceptions.XMLInitializeException;
37 37

  
38 38
import com.iver.utiles.XMLEntity;
39
import com.iver.utiles.XMLException;
39 40

  
40 41
public abstract class AbstractFeatureExplorer implements
41 42
		FeatureExplorer {
......
72 73

  
73 74
	}
74 75

  
75
	public XMLEntity getXMLEntity() {
76
	public XMLEntity getXMLEntity() throws XMLException {
76 77
		XMLEntity xml = new XMLEntity();
77
		XMLEntity paramsXML = this.parameters.getXMLEntity();
78
		XMLEntity paramsXML;
79
		paramsXML = this.parameters.getXMLEntity();
78 80
		xml.putProperty("dataExplorerName", this.getName());
79 81
		paramsXML.putProperty("type", "parameters");
80 82

  

Also available in: Unified diff