blob: ddad5e2631c663c132fc59b2751a648b1527c52e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
package bjc.utils.cli;
/**
* A class for a command that delegates to another command
*
* @author ben
*
*/
class DelegatingCommand implements ICommand {
// The command to delegate to
private ICommand delegate;
/**
* Create a new command that delegates to another command
*
* @param delegate
* The command to delegate to
*/
public DelegatingCommand(ICommand delegate) {
this.delegate = delegate;
}
@Override
public ICommand aliased() {
return new DelegatingCommand(delegate);
}
@Override
public ICommandHandler getHandler() {
return delegate.getHandler();
}
@Override
public ICommandHelp getHelp() {
return delegate.getHelp();
}
@Override
public boolean isAlias() {
return true;
}
}
|