* The blinking resolver decides how the cell should blink i.e what styles
* should be applied depending on the update. This one returns a green color
* label when the value goee up, a red one otherwise.
*/
private IBlinkingCellResolver getBlinkResolver() {
return new BlinkingCellResolver() {
private String[] configLabels = new String[1];
public String[] resolve(Object oldValue, Object newValue) {
double old = ((Double) oldValue).doubleValue();
double latest = ((Double) newValue).doubleValue();