package log;

/**
  * A filter that can be used to view only selected LogEntries.
  *
  * @see LogEntry
  * @see LogInputStream
  *
  * @author Steffen Zschaler
  * @version 2.0 14/07/1999
  * @since v2.0
  */
public interface LogEntryFilter {

  /**
    * Return whether or not the given LogEntry belongs to the set of visible LogEntries.
    *
    * @override Always
    */
  public boolean accept (LogEntry le);
}