be.objectify.led.PropertySorter 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;
import java.util.List;
/**
* Allows for user-defined property sorting.
*
* @author Steve Chaloner ([email protected]).
*/
public interface PropertySorter
{
/**
* Sort the list of properties into the required order.
*
* @param properties the properties
*/
void sort(List properties);
}