Interface ITableCellComparator

All Superinterfaces:
Serializable

public interface ITableCellComparator extends Serializable
Interface for objects that can be used to sort rows of a table.
Since:
5.0
Author:
O. Kerpershoek
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    compare(TableCell cell1, TableCell cell2)
    The compare method should compare two cells and return the result as integer.
  • Method Details

    • compare

      int compare(TableCell cell1, TableCell cell2)
      The compare method should compare two cells and return the result as integer.
      Parameters:
      cell1 - The first cell that should be compared.
      cell2 - The second cell that should be compared.
      Returns:
      Integer containing the compare result.