getopt-0.3

Uses of Interface
jrowe.getopt.Option

Packages that use Option
jrowe.getopt This is a package to parse command-line options. 
 

Uses of Option in jrowe.getopt
 

Classes in jrowe.getopt that implement Option
 class DefaultOption
          This is the default implementation of an Option.
 

Methods in jrowe.getopt that return Option
 Option OptionMethod.getOption()
          Returns the Option to which this functionality belongs.
 Option AbstractOptionMethod.getOption()
          Returns the Option to which this functionality belongs.
 Option Option.createNewInstance()
          Creates an Option of the same class as this Option.
 Option DefaultGetOptions.remove(String optionName)
          Removes an Option from the list of parseable options.
 Option DefaultGetOptions.get(String optionName)
          Returns an Option from the list of parseable options.
 Option DefaultGetOptions.get(char optionChar)
          Returns an Option from the list of parseable options.
 Option DefaultGetOptions.OptionRecord.getOption()
          Returns the Option property.
 Option GetOptions.remove(String optionName)
          Removes an Option from the list of parseable options.
 Option GetOptions.get(String optionName)
          Returns an Option from the list of parseable options.
 Option DefaultOption.createNewInstance()
          Creates an Option of the same class as this Option.
 

Methods in jrowe.getopt with parameters of type Option
protected  void AbstractOptionMethod.setOption(Option option)
          Sets the Option to which this functionality belongs.
 void DefaultGetOptions.add(Option option)
          Adds an Option to the list of parseable options.
 void DefaultGetOptions.remove(Option option)
          Removes an Option from the list of parseable options.
protected  Object DefaultGetOptions.getArg(Option opt, String optID, String token)
          Parses and returns the argument that ought to be assigned to the given option.
 void DefaultGetOptions.OptionRecord.setOption(Option option)
          Sets the Option property.
 void GetOptions.add(Option option)
          Adds an Option to the list of parseable options.
 void GetOptions.remove(Option option)
          Removes an Option from the list of parseable options.
 

Constructors in jrowe.getopt with parameters of type Option
AbstractOptionMethod.AbstractOptionMethod(Option option)
          Creates an OptionMethod with the given properties.
 


getopt-0.3