fireVetoableChange(propertyName, new Double(oldValue), new Double(newValue));
}
protected final void fireVetoableChange(String propertyName, int oldValue, int newValue)
throws PropertyVetoException {
VetoableChangeSupport aVetoSupport = this.vetoSupport;
if (aVetoSupport == null) {
return;
}
aVetoSupport.fireVetoableChange(propertyName, oldValue, newValue);
}