Interface IFilter

All Known Implementing Classes:
FilterController, IzFilter

public interface IFilter
Filter interface implemented by the filter component.
Author:
Christopher Mindus
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the current filter text, never null!
    void
    Sets the listener.
    boolean
    Sets a new text for the filter.
  • Method Details

    • setListener

      void setListener(IFilterListener listener)
      Sets the listener.
    • setText

      boolean setText(String text)
      Sets a new text for the filter.
      Parameters:
      text - The new text to set.
      Returns:
      true for changes, false for none.
    • getText

      String getText()
      Gets the current filter text, never null!
      Returns:
      The filter text, or empty string if filter is disposed of.