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

ca.odell.glazedlists.impl.beans.BeanFunction Maven / Gradle / Ivy

/* Glazed Lists                                                 (c) 2003-2006 */
/* http://publicobject.com/glazedlists/                      publicobject.com,*/
/*                                                     O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.impl.beans;

import ca.odell.glazedlists.FunctionList;

/**
 * A {@link FunctionList.Function} that uses a {@link BeanProperty} to produce
 * the result of the function.
 *
 * @author James Lemieux
 */
public class BeanFunction implements FunctionList.Function {

    /** The {@link BeanProperty} that is capable of extracting the function's value from source objects. */
    private final BeanProperty property;

    /**
     * Create a new JavaBean property function that produces its value by
     * extracting a property from source objects. This should be accessed from the
     * {@link ca.odell.glazedlists.GlazedLists GlazedLists} tool factory.
     */
    public BeanFunction(Class beanClass, String propertyName) {
        this.property = new BeanProperty(beanClass, propertyName, true, false);
    }

    /** @inheritDoc */
    public V evaluate(E sourceValue) {
        return (V) property.get(sourceValue);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy