| java.lang.Object org.blojsom.event.Event
All known Subclasses: org.blojsom.plugin.admin.event.EntryEvent, org.blojsom.plugin.admin.event.ProcessRequestEvent, org.blojsom.plugin.admin.event.AuthorizationEvent, org.blojsom.plugin.admin.event.UserEvent, org.blojsom.plugin.admin.event.CategoryEvent, org.blojsom.plugin.response.event.ResponseSubmissionEvent,
Event | public class Event (Code) | | Event
author: David Czarnecki since: blojsom 3.0 version: $Id: Event.java,v 1.2 2007/01/17 02:35:17 czarneckid Exp $ |
Constructor Summary | |
public | Event(Object source, Date timestamp) Create a new event. |
_eventHandled | protected boolean _eventHandled(Code) | | |
Event | public Event(Object source, Date timestamp)(Code) | | Create a new event.
Parameters: source - Source of the event Parameters: timestamp - Event timestamp |
getSource | public Object getSource()(Code) | | Retrieve the source of the event
Event source |
getTimestamp | public Date getTimestamp()(Code) | | Retrieve the timestamp when the event occurred
Event timestamp |
isEventHandled | public boolean isEventHandled()(Code) | | Check to see if the event has already been handled or not
true if the event has been handled, false otherwise |
setEventHandled | public void setEventHandled(boolean eventHandled)(Code) | | Set whether or not the event has been handled
Parameters: eventHandled - true if the event has been handled, fasle otherwise |
|
|