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

be.objectify.led.PropertySorter 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;

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy