Interface IEventFilter

All Known Implementing Classes:
TextRegionEventFilter

public interface IEventFilter
This is an interface which helps to filter events.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    accept(IEventData data, EventType type)
    This method checks an event and decides whether it should be processed further (corresponds to true return value), or filtered out (corresponds to false return value).
  • Method Details

    • accept

      boolean accept (IEventData data, EventType type)
      This method checks an event and decides whether it should be processed further (corresponds to true return value), or filtered out (corresponds to false return value).
      Parameters:
      data - event data
      type - event type
      Returns:
      true to process event further, false to filter event out