mirror of
https://github.com/essentials/Essentials.git
synced 2025-10-03 17:41:57 +02:00
EssentialsUpdate WIP
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user