ca.odell.glazedlists.impl.beans.BeanFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glazedlists_java15 Show documentation
Show all versions of glazedlists_java15 Show documentation
Event-driven lists for dynamically filtered and sorted tables
/* 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 comparator 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) this.property.get(sourceValue);
}
}