Revision 10963 trunk/extensions/extRasterTools-SE/src/org/gvsig/rastertools/histogram/HistogramProcess.java

View differences:

HistogramProcess.java
14 14
	
15 15
	public void run() {
16 16
		try {
17
			iHistogramable.getHistogram();
17
			iHistogramable.getHistogram().getHistogram();
18
			
18 19
		} catch (HistogramException e) {
19 20
			// TODO Auto-generated catch block
20 21
			e.printStackTrace();
......
51 52
	public String getTitle() {
52 53
		return "Calculando histograma";
53 54
	}
55

  
56
	/*
57
	 * (non-Javadoc)
58
	 * @see org.gvsig.gui.beans.incrementabletask.IIncrementable#canceled()
59
	 */
60
	public void canceled() {
61
		this.suspend();
62
	}
63

  
64
	/*
65
	 * (non-Javadoc)
66
	 * @see org.gvsig.gui.beans.incrementabletask.IIncrementable#closed()
67
	 */
68
	public void closed() {
69
		this.suspend();
70
	}
71

  
72
	/*
73
	 * (non-Javadoc)
74
	 * @see org.gvsig.gui.beans.incrementabletask.IIncrementable#resumed()
75
	 */
76
	public void resumed() {
77
		this.resume();
78
	}
79

  
80
	/*
81
	 * (non-Javadoc)
82
	 * @see org.gvsig.gui.beans.incrementabletask.IIncrementable#suspended()
83
	 */
84
	public void suspended() {
85
		this.suspend();
86
	}
54 87
}

Also available in: Unified diff