Package com.nevelex.app.args

Re-usable Command Pattern implementation for processing command-line arguments passed to a Java Application.

See:
          Description

Interface Summary
ArgumentCommand Base command-line argument command object.
ArgumentConsumer Interface defining specific methods called on the argument consumer before and after the ArgumentProcessor's processing of arguments.
 

Class Summary
ArgumentProcessor SINGLETON object used to processes the consumption of every command-line argument passed in to an application.
 

Exception Summary
ArgumentException The base exception used for command-line argument exceptions.
InvalidArgumentException Exception thrown when the command-line argument was supplied with all of its required parameters.
MissingArgumentException Exception thrown when the command-line argument list is missing a required argument.
UnknownArgumentException Exception thrown when the command-line argument is not recognized.
 

Package com.nevelex.app.args Description

Re-usable Command Pattern implementation for processing command-line arguments passed to a Java Application.