Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jakarta-commons Wiki" for change notification.
The following page has been changed by KenTanaka: http://wiki.apache.org/jakarta-commons/CLI The comment on the change is: Added documentation correction for Usage Scenarios ------------------------------------------------------------------------------ The Usage Scenarios documentation shows the PosixParser being used for the Ant example. This won't work. Either the BasicParser or GnuParser should be used for this example. + The [http://jakarta.apache.org/commons/cli/usage.html Usage Scenarios] documentation gives an API usage example for the Ant '''logfile''' option of: + + {{{Option logfile = OptionBuilder.withArgName( "file" )}}}[[BR]] + {{{ .hasArg()}}}[[BR]] + {{{ .withDescription( "use given file for log" )}}}[[BR]] + {{{ .create( "}}}''file''{{{" );}}} + + This should instead be: + + {{{Option logfile = OptionBuilder.withArgName( "file" )}}}[[BR]] + {{{ .hasArg()}}}[[BR]] + {{{ .withDescription( "use given file for log" )}}}[[BR]] + {{{ .create( "}}}'''logfile'''{{{" );}}} + --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
