Methods Summary |
---|
protected void | debug(java.lang.String message)Displays a debug message tagged with the listener ID.
context.debug("[" + id + "] " + message);
|
public void | debug(java.lang.String message, java.lang.Throwable t)Displays a debug message and exception tagged with the listener ID.
context.debug("[" + id + "] " + message, t);
|
public com.aelitis.azureus.core.messenger.ClientMessageContext | getContext()Returns the context for this listener.
return context;
|
public java.lang.String | getId()Returns the unique ID for this listener.
return id;
|
public abstract void | handleMessage(BrowserMessage message)Handles the given message, usually by parsing the parameters
and calling the appropriate operation.
|
public void | setContext(com.aelitis.azureus.core.messenger.ClientMessageContext context)Sets the context for this listener. Called by its dispatcher when attached.
if ( this.context == null ) {
this.context = context;
}
|