Uses of Class
standup.profiling.Options

Packages that use Options
standup.clouds This package provides the implementation for the STANDUP user interface. 
standup.joke This package provides joke generation functionality and all its related data structures. 
standup.lexicon This package provides classes and interfaces that handle access and manipulation of the STANDUP lexicon. 
standup.profiling This package provides facilities for an arbitrary profileable application to be configurable through user profiles, a collection of files which can be loaded and saved to a specific folder. 
 

Uses of Options in standup.clouds
 

Subclasses of Options in standup.clouds
 class OptionsCloudFrontend
           
 

Methods in standup.clouds with parameters of type Options
 String OptionsCloudFrontend.getDiffString(Options options)
           
 boolean ProfileCloudFrontend.setOptions(Options incomingOptions)
           
 void OptionsGUICloudFrontend.setOptions(Options profile)
           
 

Constructors in standup.clouds with parameters of type Options
ProfileCloudFrontend(Options options)
           
 

Uses of Options in standup.joke
 

Subclasses of Options in standup.joke
 class OptionsJokeGeneration
          A Options representing the various settings relating to joke generation.
 

Methods in standup.joke with parameters of type Options
 String OptionsJokeGeneration.getDiffString(Options options)
           
 boolean ProfileJokeGeneration.setOptions(Options incomingOptions)
           
 void OptionsGUIJokeGeneration.setOptions(Options profile)
           
 

Uses of Options in standup.lexicon
 

Subclasses of Options in standup.lexicon
 class OptionsLexicon
          A subclass of Options that stores user-specific settings for a ProfileLexicon.
 

Methods in standup.lexicon that return Options
 Options OptionsGUILexicon.getEditedOptions()
           
 

Methods in standup.lexicon with parameters of type Options
 String OptionsLexicon.getDiffString(Options options)
          Returns a String that reports the difference between this instance and the given Options.
 boolean ProfileLexicon.setOptions(Options incomingOptions)
           
 void OptionsGUILexicon.setOptions(Options options)
           
 

Constructors in standup.lexicon with parameters of type Options
ProfileLexicon(Options options)
           
 

Uses of Options in standup.profiling
 

Fields in standup.profiling declared as Options
private  Options Profile.options
           
 

Fields in standup.profiling with type parameters of type Options
private  Hashtable<String,Options> OptionsPackage.optionsHashtable
          Contains a cache of instantiated options.
 

Methods in standup.profiling that return Options
abstract  Options Profile.createDefaultOptions()
          Returns an appropriate instance of Options with default values, i.e.
abstract  Options OptionsGUI.getEditedOptions()
          This method returns an instance of Options that contains all the choices and selections made in the current GUI elements.
 Options Profile.getOptions()
          Returns the Options contained within this Profile.
 Options OptionsPackage.getOptions(String xmlTag)
           
abstract  Options Profile.loadOptions(Element element)
          Returns an appropriate instance of Options whose values are taken from the given XML Element.
private static Options OptionsPackage.reflectionDefaultInstance(String optionsClassName)
           
private static Options OptionsPackage.reflectionElementInstance(String optionsClassName, Element element)
           
 

Methods in standup.profiling that return types with arguments of type Options
 Collection<Options> OptionsPackage.getAllOptions()
          Returns all Options in this OptionsPackage.
 

Methods in standup.profiling with parameters of type Options
abstract  String Options.getDiffString(Options options)
          Returns a String that reports the difference between this instance and the given Options.
 boolean Profile.setOptions(Options options)
          Makes the given Options the one used within this Profile.
 void OptionsPackage.setOptions(Options options)
          Adds the given Options to this OptionsPackage.
abstract  void OptionsGUI.setOptions(Options options)
          This method sets all the values of the GUI elements in this OptionsGUI, e.g.
 

Constructors in standup.profiling with parameters of type Options
Profile(Options options)
          Constructor where the Options are directly provided as an argument.
 

Constructor parameters in standup.profiling with type arguments of type Options
OptionsPackage(Set<Options> optionsSet)
          Constructor for an options package from an existing set of Options.