@Option(name = "-readFromFolder",usage = "specifies a folder containing files to read")
private String folderName;
The way it works now is that the user has specifies the folder -readFromFolder=/home
I want them to be able to say -readFromFolder
and set a default for which to look into, like ${user.home}
Something that works like this, but I ca't figure out the syntax
@Option(name = "-readFromFolder",usage = "specifies a folder containing files to read")
private String folderName (default=${user.home});