01: /*
02: * Created on 2004-okt-12
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.drftpd.slave.async;
08:
09: /**
10: * @author mog
11: *
12: * To change the template for this generated type comment go to
13: * Window>Preferences>Java>Code Generation>Code and Comments
14: */
15: public class AsyncCommandArgument extends AsyncCommand {
16: protected String _args;
17:
18: public AsyncCommandArgument(String index, String name, String args) {
19: super (index, name);
20: _args = args;
21: }
22:
23: public String getArgs() {
24: return _args;
25: }
26:
27: public String toString() {
28: return getClass().getName() + "[index=" + getIndex() + ",name="
29: + getName() + ",args=" + getArgs() + "]";
30: }
31: }
|