1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-26 02:42:16 -05:00

BaseHandler now uses conversations instead of channels

This commit is contained in:
Sebastian Kaspari 2010-03-10 20:58:11 +01:00
parent 046342dcd2
commit d30360b606

View File

@ -21,7 +21,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
package org.yaaic.command; package org.yaaic.command;
import org.yaaic.irc.IRCService; import org.yaaic.irc.IRCService;
import org.yaaic.model.Channel; import org.yaaic.model.Conversation;
import org.yaaic.model.Server; import org.yaaic.model.Server;
/** /**
@ -40,7 +40,7 @@ public abstract class BaseHandler
* @param service The service with all server connections * @param service The service with all server connections
* @throws CommandException if command couldn't be executed * @throws CommandException if command couldn't be executed
*/ */
public abstract void execute(String[] params, Server server, Channel channel, IRCService service) throws CommandException; public abstract void execute(String[] params, Server server, Conversation conversation, IRCService service) throws CommandException;
/** /**
* Get the usage description for this command * Get the usage description for this command