I don't understand the difference between these methods.
Here's what the JavaDoc says:
setLine(String) = Line to split into several commandline arguments.
setValue(String) = Sets a single commandline argument.
My confusion is that I see them being used interchangeably in the code I'm updating. An example:
Commandline commandline;
commandline = new Commandline(new File(jarUtilsDir,"signtool.exe").getAbsolutePath());
commandline.createArgument().setLine("--verbosity");
commandline.createArgument().setValue("-1");
commandline.createArgument().setLine("-o");
Maybe I just need an explanation of how these are supposed to be used.