Crossfire JXClient, Trunk
R20561
|
A Command instance and its arguments. More...
Public Member Functions | |
CommandExec (@Nullable final Command command, @NotNull final String args) | |
Creates a new instance. More... | |
boolean | equals (@Nullable final Object obj) |
String | getArgs () |
Returns the command arguments. More... | |
Command | getCommand () |
Returns the command to execute or. More... | |
int | hashCode () |
String | toString () |
Private Attributes | |
final String | args |
The command arguments. More... | |
final Command | command |
The command to execute or. More... | |
A Command instance and its arguments.
Definition at line 31 of file CommandExec.java.
com.realtime.crossfire.jxclient.commands.CommandExec.CommandExec | ( | @Nullable final Command | command, |
@NotNull final String | args | ||
) |
Creates a new instance.
command | the command to execute or null |
args | the command arguments |
Definition at line 50 of file CommandExec.java.
References com.realtime.crossfire.jxclient.commands.CommandExec.args, and com.realtime.crossfire.jxclient.commands.CommandExec.command.
Referenced by com.realtime.crossfire.jxclient.commands.CommandExec.equals().
boolean com.realtime.crossfire.jxclient.commands.CommandExec.equals | ( | @Nullable final Object | obj | ) |
Definition at line 85 of file CommandExec.java.
References com.realtime.crossfire.jxclient.commands.CommandExec.args, com.realtime.crossfire.jxclient.commands.CommandExec.command, and com.realtime.crossfire.jxclient.commands.CommandExec.CommandExec().
String com.realtime.crossfire.jxclient.commands.CommandExec.getArgs | ( | ) |
Returns the command arguments.
Definition at line 69 of file CommandExec.java.
References com.realtime.crossfire.jxclient.commands.CommandExec.args.
Command com.realtime.crossfire.jxclient.commands.CommandExec.getCommand | ( | ) |
Returns the command to execute or.
to execute as "ncom".
Definition at line 60 of file CommandExec.java.
References com.realtime.crossfire.jxclient.commands.CommandExec.command.
int com.realtime.crossfire.jxclient.commands.CommandExec.hashCode | ( | ) |
Definition at line 77 of file CommandExec.java.
String com.realtime.crossfire.jxclient.commands.CommandExec.toString | ( | ) |
Definition at line 98 of file CommandExec.java.
References com.realtime.crossfire.jxclient.commands.CommandExec.args.
|
private |
The command arguments.
Definition at line 43 of file CommandExec.java.
Referenced by com.realtime.crossfire.jxclient.commands.CommandExec.CommandExec(), com.realtime.crossfire.jxclient.commands.CommandExec.equals(), com.realtime.crossfire.jxclient.commands.CommandExec.getArgs(), and com.realtime.crossfire.jxclient.commands.CommandExec.toString().
|
private |
The command to execute or.
to send as "ncom".
Definition at line 37 of file CommandExec.java.
Referenced by com.realtime.crossfire.jxclient.commands.CommandExec.CommandExec(), com.realtime.crossfire.jxclient.commands.CommandExec.equals(), and com.realtime.crossfire.jxclient.commands.CommandExec.getCommand().