All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.objectify.led.PropertySetterConfiguration Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.6
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy