Uses of Interface
edu.rice.cs.drjava.config.ParseStrategy

Packages that use ParseStrategy
edu.rice.cs.drjava.config This package contains the code that allows for dynamically modifying the configuration options in DrJava. 
 

Uses of ParseStrategy in edu.rice.cs.drjava.config
 

Classes in edu.rice.cs.drjava.config that implement ParseStrategy
 class BooleanOption
          Class defining all configuration options with values of type Boolean.
 class ColorOption
          Class defining all configuration options with values of type Color.
 class FileOption
          Class representing all configuration options with values of type File.
 class FontOption
          Class defining all configuration entries of type Font
 class ForcedChoiceOption
          Class defining a configuration option that requires a choice between mutually-exclusive possible values.
 class IntegerOption
          Class defining all configuration options with values of type Integer.
 class KeyStrokeOption
          Class representing all configuration options with values of type KeyStroke.
 class LongOption
          Class defining all configuration options with values of type Long.
 class NonNegativeIntegerOption
          Class defining all configuration options with values of type NonNegativeInteger.
 class Option<T>
          An instance of this class represents a configurable option in DrJava that has static type T.
 class OptionParser<T>
          The association of an OptionName with the ability to parse something to type T; the intended type parameterization is covariant: if U extends T, then OptionParser extends OptionParser.
 class StringOption
          Class representing all configuration options with values of type String.
 class VectorOption<T>
          Abstract class defining behavior shared by all configuration options with values of type Vector.
 

Fields in edu.rice.cs.drjava.config declared as ParseStrategy
protected  ParseStrategy<T> VectorOption.parser