Revision 17826 trunk/extensions/extRasterTools-SE/src/org/gvsig/rastertools/colortable/data/ColorTableData.java

View differences:

ColorTableData.java
49 49
		setOption("colorTable", colorTable);
50 50
	}
51 51

  
52
	/**
53
	 * @return the hasChanged
54
	 */
55
	public boolean isChanged() {
56
		Boolean n = (Boolean) options.get("changed");
57
		if (n != null)
58
			return n.booleanValue();
59
		return false;
60
	}
61
	
62 52
	public double getMinim() {
63 53
		Double d = (Double) options.get("minim");
64 54
		if (d != null)
......
93 83
	}
94 84

  
95 85
	/**
96
	 * @param hasChanged the hasChanged to set
97
	 */
98
	public void setHasChanged(boolean changed) {
99
		setOption("changed", new Boolean(changed));
100
	}
101
	
102
	/**
103 86
	 * @return the interpolated value
104 87
	 */
105 88
	public boolean isInterpolated() {

Also available in: Unified diff