java-getopt icon indicating copy to clipboard operation
java-getopt copied to clipboard

A Java option processor 100% compatible with the GNU C Library getopt

Results 9 java-getopt issues
Sort by recently updated
recently updated
newest added

May be all my changes are not necessary (sorry for the numerous source reformatting due to my IDEs and emacs rules which remove spaces, tabs and others) but seems to...

I'm trying to create an OSGi bundle from my source code that uses this library. And it fails with this message ``` [ERROR] Bundle group:artifact:bundle:1.0.0.alpha01-SNAPSHOT : Class in different directory...

Considering the fact that your great API is supposed to be used in a lot of different contexts like web service (Tomcat, Jetty, ...) as well as applications/other APIs it...

This commit fixes a null pointer exception in Getopt. To reproduce the problem, apply the below diff to GetoptDemo.java, and then run GetoptDemo with a -W command-line argument, such as:...

I've done several things for this pull request: - deleted the JavaDoc as it can easily be regenerated with `ant javadoc` or `make docs` - deleted *.class files as these...

The package name has been added to GetoptDemo.java, to adhere to the Java Language Specification recommendations. Although the practice is not mandatory, it is the defacto standard. Without this some...

I like how the Java docs include an example of how to use getopt, it's incredibly helpful in understanding how to apply getopt to my projects. Could we add an...