uk.org.ownage.dmdirc.parser.callbacks
Class CallbackOnChannelUserModeChanged
java.lang.Object
uk.org.ownage.dmdirc.parser.callbacks.CallbackObject
uk.org.ownage.dmdirc.parser.callbacks.CallbackObjectSpecific
uk.org.ownage.dmdirc.parser.callbacks.CallbackOnChannelUserModeChanged
public class CallbackOnChannelUserModeChanged
- extends CallbackObjectSpecific
Callback to all objects implementing the IChannelUserModeChanged Interface.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CallbackOnChannelUserModeChanged
public CallbackOnChannelUserModeChanged(IRCParser parser,
CallbackManager manager)
- Create a new instance of the Callback Object
- Parameters:
parser
- IRCParser That owns this callbackmanager
- CallbackManager that is in charge of this callback
call
public boolean call(ChannelInfo cChannel,
ChannelClientInfo cChangedClient,
ChannelClientInfo cSetByClient,
java.lang.String sHost,
java.lang.String sMode)
- Callback to all objects implementing the IChannelUserModeChanged Interface.
- Parameters:
cChannel
- Channel where modes were changedcChangedClient
- Client being changedcSetByClient
- Client chaning the modes (null if server)sMode
- String representing mode change (ie +o)sHost
- Host doing the mode changing (User host or server name)
- Returns:
- true if a callback was called, else false
- See Also:
IChannelUserModeChanged