Package com.ebasetech.xi.api
Interface WebFormEventContext
- All Superinterfaces:
 EventContext
public interface WebFormEventContext extends EventContext
The 
WebFormEventContext interface provides context information about an Ebase event executed by an interactive form.- Since:
 - V4.4
 
- 
Method Summary
Modifier and Type Method Description java.lang.StringgetComponentPrefix()Returns the component prefix when the event currently being executed forms part of a deployed component i.e.WebFormEventOwnergetOwner()Returns the object that owns the event currently being executed.booleanisComponent()Returnstrueif the event currently being executed forms part of a deployed component i.e.Methods inherited from interface com.ebasetech.xi.api.EventContext
getEventDescription, stopExecution 
- 
Method Details
- 
getOwner
WebFormEventOwner getOwner()Returns the object that owns the event currently being executed. This will be one of:- Specified by:
 getOwnerin interfaceEventContext- Returns:
 - event owner object
 - Since:
 - V4.4
 
 - 
isComponent
boolean isComponent()Returnstrueif the event currently being executed forms part of a deployed component i.e. the control or page that is the event owner forms part of a deployed component, otherwise returnsfalse.- Since:
 - V4.4
 
 - 
getComponentPrefix
java.lang.String getComponentPrefix()Returns the component prefix when the event currently being executed forms part of a deployed component i.e. the control or page that is the event owner forms part of a deployed component, ornullotherwise.- Returns:
 - component prefix
 - Since:
 - V4.4
 
 
 -