Kanzi framework  3.9.1
Java API
MessageArguments Class Reference

MessageArguments is the base class for arguments passed in messages. More...

Inheritance diagram for MessageArguments:
[legend]

Public Member Functions

 MessageArguments ()
 Constructs a new MessageArguments object.
 
boolean isHandled ()
 Returns whether the message is handled. More...
 
void setHandled (boolean handled)
 Sets the handling status for a message. More...
 

Detailed Description

MessageArguments is the base class for arguments passed in messages.

An instance of MessageArguments together with an instance of MessageType forms a Kanzi message. In Kanzi when you dispatch a message, you dispatch a message of certain type and arguments.

Member Function Documentation

◆ isHandled()

boolean isHandled ( )

Returns whether the message is handled.

Returns
If the message is handled, true, otherwise false.

◆ setHandled()

void setHandled ( boolean  handled)

Sets the handling status for a message.

Parameters
handledThe new handling status.