DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=28774>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=28774

[PATCH] Use of Jakarta Commons CLI library for command line processing





------- Additional Comments From [EMAIL PROTECTED]  2004-05-05 23:10 -------
Some observations on Commons CLI:-

While there are exclusive groups of options, there are no inclusive groups; e.g.
XML and XSLT.

There seems to be no way to control the order of option output in the
HelpFormatter, though the header and footer texts are very useful for clarifying
such issues.  The virtue of HelpFormatter is that usage/help text is generated
directly from the Options object.

Eclipse complains about the (very useful) code structure

options.addOption(OptionBuilder.withLongOpt("xml-file")
       .hasArg().withArgName("file")
       .withDescription("XML input file")
       .create("xml"));

Reply via email to