charset option

This commit is contained in:
Jindra Petřík
2024-01-21 16:38:52 +01:00
parent 4a481cabf7
commit efad2dd65a

View File

@@ -75,13 +75,19 @@ public class Main {
paramLabel = "<key>=<value>[,<key>=<value>...]",
converter = ConfigConverter.class,
description = {
"Sets configuration values for this session.",
"Set configuration values for this session.",
"Use command 'config' to list available configuration settings. "
},
scope = ScopeType.INHERIT
)
)
private Map<String, String> configs = new HashMap<>();
@Option(
names = "--charset",
description = "Set desired character set for reading/writing SWF files with SWF version <= 5",
scope = ScopeType.INHERIT
)
String charset = null;
/*@Parameters(paramLabel = "FILE", description = "one or more files to open in GUI")
private File[] files; */