Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.base/src/org/eclipse/etrice/generator/base/cli/HelpFormatter.java')
-rw-r--r--plugins/org.eclipse.etrice.generator.base/src/org/eclipse/etrice/generator/base/cli/HelpFormatter.java15
1 files changed, 9 insertions, 6 deletions
diff --git a/plugins/org.eclipse.etrice.generator.base/src/org/eclipse/etrice/generator/base/cli/HelpFormatter.java b/plugins/org.eclipse.etrice.generator.base/src/org/eclipse/etrice/generator/base/cli/HelpFormatter.java
index 777930841..bc2f9782c 100644
--- a/plugins/org.eclipse.etrice.generator.base/src/org/eclipse/etrice/generator/base/cli/HelpFormatter.java
+++ b/plugins/org.eclipse.etrice.generator.base/src/org/eclipse/etrice/generator/base/cli/HelpFormatter.java
@@ -19,6 +19,7 @@ import java.util.Formatter;
import org.eclipse.etrice.generator.base.args.Option;
import org.eclipse.etrice.generator.base.args.Options;
+import org.eclipse.etrice.generator.base.args.StringListOption;
/**
* Simple implementation for command line help formatting.
@@ -29,16 +30,18 @@ public class HelpFormatter implements IHelpFormatter {
}
@Override
- public String getHelp(Options options) {
+ public String getHelp(Options options, StringListOption defaultOption) {
try(Formatter formatter = new Formatter()) {
- formatter.format("Usage: [options] files...%n");
+ formatter.format("Usage: [options] %s...%n", defaultOption.getName());
formatter.format("Options:%n");
for(Option<?> opt: options) {
- String optStr = "-" + opt.getName();
- if(!opt.getType().equals(Boolean.class)) {
- optStr += " <" + opt.getParameterName() + ">";
+ if(opt != defaultOption) {
+ String optStr = "-" + opt.getName();
+ if(!opt.getType().equals(Boolean.class)) {
+ optStr += " <" + opt.getArgumentName() + ">";
+ }
+ formatter.format(" %-30s %s%n", optStr, opt.getDescription());
}
- formatter.format(" %-30s %s%n", optStr, opt.getDescription());
}
return formatter.toString();
}

Back to the top