public void minMaxUpdated(MinMaxPanel source) {
if (emitter == null) {
return;
}
Range range = (Range) controlToData.get(source);
if (range != null) {
range.setMax(source.getMax());
range.setMin(source.getMin());
range.setEnabled(source.getEnabled());
} else {
throw new RuntimeException("No data set specified for the GUI source");
}
}