blob: 96dcd0122139393f9073bb6d0db47a329405ec25 (
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
|
package cz.crcs.ectester.common.cli;
import org.apache.commons.cli.CommandLineParser;
import org.apache.commons.cli.Options;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public class ParserOptions {
private CommandLineParser parser;
private Options options;
private String description;
public ParserOptions(CommandLineParser parser, Options options, String description) {
this.parser = parser;
this.options = options;
this.description = description;
}
public CommandLineParser getParser() {
return parser;
}
public Options getOptions() {
return options;
}
public String getDescription() {
return description;
}
}
|