Interface IRowContentProvider

All Known Implementing Classes:
AbstractSelectableRow
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public interface IRowContentProvider
Interface IRowContentProvider. An interface for objects that are able to initialize an arbitrary row control with values on demand.
  • Method Summary

    Modifier and Type Method Description
    void refresh​(CompositeTable sender, int currentObjectOffset, org.eclipse.swt.widgets.Control row)
    Method refresh.
  • Method Details

    • refresh

      void refresh​(CompositeTable sender, int currentObjectOffset, org.eclipse.swt.widgets.Control row)
      Method refresh. Requests receiver to refresh the currentRowInTable with data to edit.
      Parameters:
      sender - The CompositeTable sending the message.
      currentObjectOffset - The 0-based row number that is offset in the data structure of the table's top row.
      row - The row control to fill with data. This will be a copy of your prototype row object.