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

All Superinterfaces:
ICallbackInterface
All Known Implementing Classes:
Server

public interface IPrivateNotice
extends ICallbackInterface

Called when a person sends a notice to you. sHost is the hostname of the person sending the notice. (Can be a server or a person)
cClient is null if user is a server, or not on any common channel.


Method Summary
 void onPrivateNotice(IRCParser tParser, java.lang.String sMessage, java.lang.String sHost)
          Called when a person sends a notice to you.
 

Method Detail

onPrivateNotice

void onPrivateNotice(IRCParser tParser,
                     java.lang.String sMessage,
                     java.lang.String sHost)
Called when a person sends a notice to you. sHost is the hostname of the person sending the notice. (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 - Notice contents
sHost - Hostname of sender (or servername)
See Also:
ProcessMessage.callPrivateNotice(java.lang.String, java.lang.String)