public static interface PropertyHelper.PropertySetter extends PropertyHelper.Delegate
Can be used to store properties in a different storage than the project instance (like local properties for example).
| Modifier and Type | Method and Description | 
|---|---|
| boolean | set(String property,
   Object value,
   PropertyHelper propertyHelper)Set a property. | 
| boolean | setNew(String property,
      Object value,
      PropertyHelper propertyHelper)Set a *new" property. | 
boolean set(String property, Object value, PropertyHelper propertyHelper)
May replace the value of an existing property.
property - the property's String "identifier".value - the value to set.propertyHelper - the invoking PropertyHelper.boolean setNew(String property, Object value, PropertyHelper propertyHelper)
Should not replace the value of an existing property.
property - the property's String "identifier".value - the value to set.propertyHelper - the invoking PropertyHelper.