com.swath
Interface EventIfc

All Known Implementing Classes:
com.swath.event.SwathEvent, UserDefinedEvent

public interface EventIfc

This is the Event interface.

Since:
SWATH 1.7

Method Summary
 java.lang.String getClassName()
          Gets the event class name.
 boolean isEventClass(java.lang.Class eventClass)
          Indicates if this event matches a given event class.
 boolean isUserDefined()
          Indicates if this event is user defined or not.
 

Method Detail

isEventClass

public boolean isEventClass(java.lang.Class eventClass)
Indicates if this event matches a given event class.

Parameters:
eventClass - The event class.
Returns:
true if this event is of the same class, otherwise false.
Since:
SWATH 1.7

isUserDefined

public boolean isUserDefined()
Indicates if this event is user defined or not.

Returns:
true if user defined, otherwise false.
Since:
SWATH 1.7

getClassName

public java.lang.String getClassName()
Gets the event class name.

Returns:
The class name.
Since:
SWATH 1.7