public boolean hasName(String s) {
return false;
}
public Option getCommand() {
return new CommandBuilder()
.withName("Xjcrlog")
.withDescription(getShortDescription())
.withChildren(new GroupBuilder()
.withName("Options:")
.withOption(new CommandBuilder()
.withName("sysout")
.withDescription("enable logging to the stdout")
.create())
.withOption(new ArgumentBuilder()
.withName("file=<file>")
.withDescription("log to the specified file")
.withMinimum(1)
.withMaximum(1)
.create())
.withOption(new CommandBuilder()
.withName("return")
.withDescription("enable logging of return values")
.create())
.withOption(new CommandBuilder()
.withName("caller")
.withDescription("enable logging of the caller")
.create())
.withOption(new CommandBuilder()
.withName("exception")
.withDescription("enable logging of exceptions")
.create())
.withOption(new CommandBuilder()
.withName("stream")
.withDescription("enable logging of streams")
.create())
/*
.withOption(new CommandBuilder()