uk.org.ownage.dmdirc.parser.callbacks.interfaces
Interface IUnknownAction

All Superinterfaces:
ICallbackInterface

public interface IUnknownAction
extends ICallbackInterface

Called when a person sends an action not aimed specifically at you or a channel (ie $*). sHost is the hostname of the person sending the message. (Can be a server or a person)
cClient is null if user is a server, or not on any common channel.


Method Summary
 void onUnknownAction(IRCParser tParser, java.lang.String sMessage, java.lang.String sTarget, java.lang.String sHost)
          Called when a person sends an action not aimed specifically at you or a channel (ie $*).
 

Method Detail

onUnknownAction

void onUnknownAction(IRCParser tParser,
                     java.lang.String sMessage,
                     java.lang.String sTarget,
                     java.lang.String sHost)
Called when a person sends an action not aimed specifically at you or a channel (ie $*). sHost is the hostname of the person sending the message. (Can be a server or a person)
cClient is null if user is a server, or not on any common channel.

Parameters:
tParser - Reference to the parser object that made the callback.
sMessage - Action contents
sTarget - Actual target of action
sHost - Hostname of sender (or servername)
See Also:
ProcessMessage.callUnknownAction(java.lang.String, java.lang.String, java.lang.String)