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.String
getComponentPrefix()
Returns the component prefix when the event currently being executed forms part of a deployed component i.e.WebFormEventOwner
getOwner()
Returns the object that owns the event currently being executed.boolean
isComponent()
Returnstrue
if 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:
getOwner
in interfaceEventContext
- Returns:
- event owner object
- Since:
- V4.4
-
isComponent
boolean isComponent()Returnstrue
if 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, ornull
otherwise.- Returns:
- component prefix
- Since:
- V4.4
-