public void setConstantValue(String constantValue) throws ProfileException {
String oldConstantValue = this.constantValue;
try {
vetoableChangeSupport.fireVetoableChange("constantValue", oldConstantValue, constantValue);
} catch (Exception e) {
throw new ProfileException(null, e);
}
this.constantValue = constantValue;
propertyChangeSupport.firePropertyChange("constantValue", oldConstantValue, constantValue);
}