public interface ItsNatEvent extends ItsNatUserData
Any org.w3c.dom.events.Event
object managed by ItsNat
implements this interface.
Current implementation inherits from java.util.EventObject
.
Modifier and Type | Method and Description |
---|---|
ClientDocument |
getClientDocument()
Returns the associated client document target of this event.
|
int |
getCommMode()
Returns the communication mode used to send this event.
|
java.lang.Object |
getExtraParam(java.lang.String name)
Returns the remote value carried alongside this event with the specified name.
|
java.lang.Object[] |
getExtraParamMultiple(java.lang.String name)
Returns the remote values carried alongside this event with the specified name in case of multiple values.
|
ItsNatDocument |
getItsNatDocument()
Returns the associated ItsNat document target of this event.
|
ItsNatEventListenerChain |
getItsNatEventListenerChain()
Returns the event listener chain flow control object associated to this event.
|
ItsNatServletRequest |
getItsNatServletRequest()
Returns the associated ItsNat Servlet Request of this event.
|
ItsNatServletResponse |
getItsNatServletResponse()
Returns the associated ItsNat Servlet Response of this event.
|
void |
setExtraParam(java.lang.String name,
java.lang.Object value)
Sets the specified name and value as a remote browser data carried by this event.
|
containsUserValueName, getUserValue, getUserValueNames, removeUserValue, setUserValue
ItsNatServletRequest getItsNatServletRequest()
ItsNatServletResponse getItsNatServletResponse()
ItsNatDocument getItsNatDocument()
ItsNatServletRequest.getItsNatDocument()
ClientDocument getClientDocument()
getItsNatDocument()
is null too.ItsNatServletRequest.getClientDocument()
int getCommMode()
java.lang.Object getExtraParam(java.lang.String name)
Usually these name/value pairs are declared using ParamTransport
objects.
Current implementation calls: ServletRequest.getParameter(String)
with
the specified name, if the name/value pair was not set calling
setExtraParam(String,Object)
.
name
- the name to search for.java.lang.Object[] getExtraParamMultiple(java.lang.String name)
Usually these name/value pairs are declared using ParamTransport
objects.
Current implementation calls: ServletRequest.getParameterValues(String)
with
the specified name, if the name/value pair was not set calling
setExtraParam(String,Object)
.
name
- the name to search for.getExtraParam(String)
void setExtraParam(java.lang.String name, java.lang.Object value)
This method may be useful to simulate data transportation from the browser
in an event directly (locally) dispatched to the server DOM calling
ItsNatDocument.dispatchEventLocally(EventTarget,Event)
.
name
- the name of the value.value
- the value associated the specified name.ItsNatEventListenerChain getItsNatEventListenerChain()
Copyright © 2007 Innowhere Software Services S.L. All Rights Reserved.