bp
Class Event

java.lang.Object
  extended by bp.Event
All Implemented Interfaces:
EventFilterInterface, java.lang.Iterable<Event>
Direct Known Subclasses:
Test1.E1, Test1.E2

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

A base class for events


Constructor Summary
Event()
           
 
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

Event

public Event()
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.

iterator

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