-
A feature request:
I'd like to be able to specify dependencies between arguments.
For instance,
1) Only one of the two arguments will be accepted
E.g., flags --client and --server should not allowed at the same time
The following should generate an error:
java myProgram --server --client
2) If one parameter is given, it must take another
E.q., The...
2009-01-26 14:34:12 UTC in Java Simple Argument Parser
-
I realised I could submit this to the tracker .. So I'll simply copy this message to the tracker ;)
2009-01-26 14:33:41 UTC in Java Simple Argument Parser
-
A feature request:
I'd like to be able to specify dependencies between arguments.
For instance,
1) Only one of the two arguments will be accepted
E.g., flags --client and --server should not allowed at the same time
The following should generate an error:
java myProgram --server --client
2) If one parameter is given, it must take another
E.q., The --server argument...
2009-01-26 14:30:28 UTC in Java Simple Argument Parser