bp.eventSets
Class EventFilterForEmptySet

java.lang.Object
  extended by bp.eventSets.EventFilterForEmptySet
All Implemented Interfaces:
EventFilterInterface, java.lang.Iterable<Event>

public class EventFilterForEmptySet
extends java.lang.Object
implements EventFilterInterface, java.lang.Iterable<Event>

A filter that doesn't match any object.


Constructor Summary
EventFilterForEmptySet()
           
 
Method Summary
 boolean contains(java.lang.Object o)
          A function that implements the filtering logic.
 java.util.Iterator<Event> iterator()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EventFilterForEmptySet

public EventFilterForEmptySet()
Method Detail

contains

public boolean contains(java.lang.Object o)
Description copied from interface: EventFilterInterface
A function that implements the filtering logic.

Specified by:
contains in interface EventFilterInterface
Parameters:
o - A candidate object to be tested for matching the criteria of the filter.
Returns:
true if the object matches the criteria of the filter.
See Also:
EventFilterInterface.contains(java.lang.Object)

iterator

public java.util.Iterator<Event> iterator()
Specified by:
iterator in interface java.lang.Iterable<Event>