Package rs.baselib.util
Interface IValueProvider
- All Known Implementing Classes:
BeanValueProvider
public interface IValueProvider
Interface for an object that can retrieve a certain
property from an object. ValueProviders serve as supporting
objects e.g. when comparing objects or providing
cell labels in a table.
- Author:
- ralph
-
Method Summary
Modifier and Type Method Description java.lang.ObjectgetValue(java.lang.Object o)Return the value for the given object.
-
Method Details
-
getValue
java.lang.Object getValue(java.lang.Object o)Return the value for the given object.- Parameters:
o- the object- Returns:
- the value from the object.
-