BaseCommand: source documentation

This commit is contained in:
Sebastian Kaspari 2010-03-09 19:55:16 +01:00
parent d5e72638d1
commit 3dc268219d
1 changed files with 8 additions and 0 deletions

View File

@ -31,6 +31,14 @@ import org.yaaic.model.Server;
*/
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);
/**