Code:
public void setValue(T newValue) throws PropertyVetoException {
T old = value;
//veto.fireVetoableChange(value,old,newValue);
veto.fireVetoableChange("value",
new ? (old),
new ? (newValue));
value = newValue;
changes.firePropertyChange(name, old, value);
}
Comment