Interface IFilter

All Known Implementing Classes:
FilterController, IzFilter

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

    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 Link icon

    • setListener Link icon

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

      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 Link icon

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