1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-03 17:41:57 +02:00

EssentialsUpdate WIP

This commit is contained in:
snowleo
2011-10-12 03:14:07 +02:00
parent 9ec398b39b
commit 860d446d28
169 changed files with 13835 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
package f00f.net.irc.martyr.commands;
import f00f.net.irc.martyr.OutCommand;
/**
* Implements a WHOIS command, to query details about a user.
*
*/
public class WhoisCommand implements OutCommand
{
private static final String WHOIS = "WHOIS";
private String target;
/**
* @param target the nick or mask that you wish to know about.
*/
public WhoisCommand( String target )
{
this.target = target;
}
/**
* @return "WHOIS"
*/
public String getIrcIdentifier()
{
return WHOIS;
}
/**
* Simply returns the string given in the constructor.
*/
public String render()
{
return WHOIS + " " + target;
}
}