Uses of Class
com.ohrasys.app.AppOption

Uses of AppOption in com.ohrasys.app
 

Fields in com.ohrasys.app declared as AppOption
protected  AppOption[] AbstractAppController.options
          Command line options
 

Methods in com.ohrasys.app that return AppOption
static AppOption AppOption.findListOption(AppOption[] options)
          Returns a list type application option if one exists in the list provided.
static AppOption AppOption.findOption(java.lang.String name, AppOption[] options)
          Returns an option with the given name.
static AppOption AppOption.getFlag(java.lang.String name)
          Creates a new flag type option.
static AppOption AppOption.getList()
          Creates a new list type option.
static AppOption AppOption.getOption(java.lang.String name)
          Returns a named option having one value.
static AppOption AppOption.getOption(java.lang.String name, int numvalues)
          Returns a named option having a finite number of values.
static AppOption[] AppOption.parseCLArgs(java.lang.String[] args, AppOption[] templates)
          Parses the command line arguments of an application and compares those options against a list of expected options.
 

Methods in com.ohrasys.app with parameters of type AppOption
static AppOption AppOption.findListOption(AppOption[] options)
          Returns a list type application option if one exists in the list provided.
static AppOption AppOption.findOption(java.lang.String name, AppOption[] options)
          Returns an option with the given name.
static AppOption[] AppOption.parseCLArgs(java.lang.String[] args, AppOption[] templates)
          Parses the command line arguments of an application and compares those options against a list of expected options.
 

Constructors in com.ohrasys.app with parameters of type AppOption
AbstractAppController(AbstractAppModel model, AbstractAppView view, AppOption[] options)
          Creates a new AppController object.