1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

BaseCommand: source documentation

This commit is contained in:
Sebastian Kaspari 2010-03-09 19:55:16 +01:00
parent d5e72638d1
commit 3dc268219d

View File

@ -31,6 +31,14 @@ import org.yaaic.model.Server;
*/ */
public abstract class BaseCommand public abstract class BaseCommand
{ {
/**
* Execute the command
*
* @param params The params given (0 is the command itself)
* @param server The server object
* @param channel The channel object or null if no channel is selected
* @param service The service with all server connections
*/
public abstract void execute(String[] params, Server server, Channel channel, IRCService service); public abstract void execute(String[] params, Server server, Channel channel, IRCService service);
/** /**