Revision 162 org.gvsig.raster/trunk/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.impl/src/main/java/org/gvsig/raster/impl/store/serializer/ColorInterpretationRmfSerializer.java

View differences:

ColorInterpretationRmfSerializer.java
27 27

  
28 28
import org.gvsig.fmap.dal.coverage.exception.ParsingException;
29 29
import org.gvsig.fmap.dal.coverage.store.props.ColorInterpretation;
30
import org.gvsig.raster.impl.store.properties.DatasetColorInterpretation;
30
import org.gvsig.raster.impl.store.properties.DataStoreColorInterpretation;
31 31
import org.gvsig.raster.impl.store.rmf.ClassSerializer;
32 32
import org.gvsig.tools.ToolsLocator;
33 33
import org.gvsig.tools.extensionpoint.ExtensionPoint;
......
70 70
	 * Constructor. Asigna la tabla a serializar.
71 71
	 * @param ColorTable tabla a convertir en XML
72 72
	 */
73
	public ColorInterpretationRmfSerializer(DatasetColorInterpretation datasetCI) {
73
	public ColorInterpretationRmfSerializer(DataStoreColorInterpretation datasetCI) {
74 74
		this.datasetCI = datasetCI;
75 75
	}
76 76

  
......
86 86
	 */
87 87
	public void read(String xml) throws ParsingException {
88 88
		String cInterp = null;
89
		datasetCI = new DatasetColorInterpretation();
89
		datasetCI = new DataStoreColorInterpretation();
90 90
		int band = 0;
91 91

  
92 92
		KXmlParser parser = new KXmlParser();

Also available in: Unified diff