static
boolean
|
areAllBitsSet(int intVal, int bits)
Returns whether all the specified bits in intVal are set.
|
Object
|
clone()
Clone the current WebEvent .
|
String
|
getArgumentName(int id)
Returns the argument name with the specified id at index 0.
|
String
|
getArgumentName(int id, int index)
Returns the argument name with the specified id at the
specified index .
|
String
|
getArgumentValue(int argumentID)
Returns the current value of the argument.
|
String
|
getArgumentValue(int argumentID, int index)
Returns the current value of the argument.
|
int
|
getArgumentValueCount(int argumentID)
Returns the number of values at different indices for the argument.
|
Enumeration
|
getArguments()
|
String
|
getDeprecatedMessage()
Returns the deprecation message.
|
String
|
getFlatState()
|
int
|
getHandlerType()
|
String
|
getHiddenInputs(int paramType, int howMuchChildState)
|
int
|
getID()
Returns the event id of the current WebEvent .
|
String
|
getName()
Returns the name of the current WebEvent .
|
WebComponent
|
getSource()
Returns the event source, a WebComponent object which knows
how to generate and handle this event.
|
String
|
getSourcePath()
Returns the path of a WebComponent which knows how to generate
and handle this WebEvent.
|
String
|
getTargetWindow()
returns the target specified for this event
|
String
|
getURLLink(int paramType)
|
String
|
getURLLink()
|
String
|
getURLParameters(int paramType)
|
String
|
getURLParameters()
|
String
|
getURLParameters(int paramType, int howMuchChildState)
|
void
|
init(EventInfo info)
|
void
|
initFromKeys(RequestKeys keys)
Initialize the event with the given request keys
|
boolean
|
initFromXML(String xml)
This method is deprecated.
GenericWebEvent is not responsible for parsing the xml from the events-definition, instead
use the EventHandlersCatalog to parse the XML and create this instance passing
an EventInfo class as part of the constructor.
|
boolean
|
initFromXML(Element node)
This method is deprecated.
GenericWebEvent is not responsible for parsing the xml from the events-definition, instead
use the EventHandlersCatalog to parse the XML and create this instance passing
an EventInfo class as part of the constructor.
|
static
boolean
|
isAnyBitSet(int intVal, int bits)
Returns whether any of the specified bits in intVal are set.
|
void
|
putArgument(int id, String name, String value)
|
void
|
putArgument(int id, String name)
|
void
|
putArgument(int id, String name, int required)
|
void
|
setArgumentValue(int id, String value)
Sets a value to the argument with the specified id at
index 0.
|
void
|
setArgumentValue(int id, int index, String value)
Sets a value to the argument with the specified id at the
specified index .
|
void
|
setDeprecationMessage(String message)
Sets a deprecation message.
|
void
|
setHandlerType(int type)
|
void
|
setID(int id)
Sets an event id to the current WebEvent .
|
void
|
setName(String name)
Sets a name to the current WebEvent .
|
void
|
setSource(WebComponent source)
Sets a WebComponent instance which knows how to generate
and handle this WebEvent.
|
void
|
setSourcePath(String source)
Sets the path of a WebComponent which knows how to generate
and handle this WebEvent.
|
void
|
setTargetWindow(String target)
Sets the target attribute for this event.
|
String
|
toString()
|
void
|
validateRequiredArguments()
Checks to see if all the required arguments specified have an argument,
if not, an IllegalArgumentException is thrown.
|