com.ebasetech.xi.api
Interface EventContext

All Known Subinterfaces:
WebFormEventContext

public interface EventContext

Provides context information about an Ebase event.

Since:
V4.4

Method Summary
 java.lang.String getEventDescription()
          Returns a description of the event currently being executed.
 EventOwner getOwner()
          Returns the object that owns the event currently being executed.
 void stopExecution()
          Immediately stops processing of the current script and the current event.
 

Method Detail

getOwner

EventOwner getOwner()
Returns the object that owns the event currently being executed. This will be one of:

Returns:
event owner objects
Since:
V4.4

getEventDescription

java.lang.String getEventDescription()
Returns a description of the event currently being executed.

Since:
V4.4

stopExecution

void stopExecution()
Immediately stops processing of the current script and the current event. No further script statements are executed, and when executing a web form the current page is displayed to the user.

Since:
V4.4
See Also:
MessageContainer.addErrorMessage(String, boolean)