ar.com.ktulu.util.command
Class CommandData

java.lang.Object
  |
  +--ar.com.ktulu.util.command.CommandData

public class CommandData
extends java.lang.Object

Used to store the parsed input of the client. It has a data member for the service requested and an array for the arguments to that service.

Author:
Luis Parravicini

Field Summary
 java.lang.String[] params
          The arguments to the command.
 java.lang.String word
          The command name.
 
Constructor Summary
CommandData()
           
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

word

public java.lang.String word
The command name.


params

public java.lang.String[] params
The arguments to the command.

Constructor Detail

CommandData

public CommandData()
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object