Interface FastRowFilter<M>

All Known Implementing Classes:
MessageRowFilter, RawPacketRowFilter

public interface FastRowFilter<M>
This interface defines a replacement for javax.swing.RowFilter, for use with FastTableRowSorter.
Author:
Andrew Pavlin, KA2DDO
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    include(M model, int index)
    Returns true if the specified entry should be shown; returns false if the entry should be hidden.
  • Method Details

    • include

      boolean include(M model, int index)
      Returns true if the specified entry should be shown; returns false if the entry should be hidden.
      Parameters:
      model - the model object containing all the data to be filtered
      index - the int index into the model specifying which record should be tested
      Returns:
      true if the record should be shown