be.objectify.led.PropertySetterConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectify-led Show documentation
Show all versions of objectify-led Show documentation
objectify-led is a small Java library for binding object or class properties at runtime using annotations, reducing boilerplate code.
Values can be taken from the System, from properties files, any arbitrary source in fact, and automatically set on properties.
package be.objectify.led;
/**
* Controls behaviour of the property setter.
*
* @author Steve Chaloner ([email protected]).
*/
public class PropertySetterConfiguration
{
private boolean allowFinalSetting = false;
public boolean isAllowFinalSetting()
{
return allowFinalSetting;
}
public void setAllowFinalSetting(boolean allowFinalSetting)
{
this.allowFinalSetting = allowFinalSetting;
}
}