Interface IColumnAccessor<T>

Type Parameters:
T - type of the bean used as a row object
All Known Subinterfaces:
IColumnPropertyAccessor<T>
All Known Implementing Classes:
BlinkingGlazedListExample.TupleColumnPropertyAccessor, ExtendedReflectiveColumnPropertyAccessor, GroupByColumnAccessor, HierarchicalReflectiveColumnPropertyAccessor, ReflectiveColumnPropertyAccessor

public interface IColumnAccessor<T>
Maps the properties from the row object to the corresponding columns.
  • Method Details

    • getDataValue

      Object getDataValue(T rowObject, int columnIndex)
    • setDataValue

      void setDataValue(T rowObject, int columnIndex, Object newValue)
    • getColumnCount

      int getColumnCount()