The following methods are called
Extend this class to create a message observer and override the methods for the events of interest. (If you implement the MessageObserver
interface, you have to define all of the methods in it. This abstract class defines empty methods for them all, so you only have to define methods for events you care about.)
Create a message observer using the extended class and then register it with a message using the message's addMessageObserver(MessageObserver observer)
method.
|
|
|
|
|
|
|
|