Uses of Class
com.taco.text.AbstractStringToObjectConverter

Packages that use AbstractStringToObjectConverter
com.taco.swinger.text2gui Provides converters from text to Swing components, layouts, and models. 
com.taco.text Provides converters to and from text, and other text processing and formatting capabilities. 
 

Uses of AbstractStringToObjectConverter in com.taco.swinger.text2gui
 

Subclasses of AbstractStringToObjectConverter in com.taco.swinger.text2gui
 class StringToBorderLayoutConstraintConverter
          A converter from strings to constraints used for BorderLayout, such as BorderLayout.NORTH.
 class StringToCloseOperationConverter
          A converter from strings to closing operation identifiers.
 class StringToColorConverter
          A converter from strings to colors, using Color.decode().
 class StringToCursorConverter
          A converter from strings to cursors.
 class StringToFontConverter
          An implementation of IStringToObjectConverter that converts strings to fonts using Font.decode().
 class StringToKeyCodeConverter
          A converter from strings to key codes.
 class StringToKeyStrokeConverter
          A converter from strings to instances of KeyStroke.
 class StringToLayerConverter
          A converter from strings to layer identifiers.
 class StringToSelectionModeConverter
          A converter from strings to selection modes used by JList and JTable.
 class StringToSwingConstantConverter
          A converter from strings to SwingConstants.
 

Uses of AbstractStringToObjectConverter in com.taco.text
 

Subclasses of AbstractStringToObjectConverter in com.taco.text
 class MappedStringToObjectConverter
          A simple implementation of IStringToObjectConverter that looks up strings to be converted in a map, and returns the mapped value.
 class StringToBeanShellInstanceConverter
          A converter from a string that specifies an instance of an object to an object.
 class StringToBooleanConverter
          A converter from strings to instances of Boolean.
 class StringToCharacterConverter
          A string to object converter that converts strings into instances of Character.
 class StringToClassConverter
          An implementation of IStringToObjectConverter that converts a string, interpreted as a fully qualified class name, into a class object.
 class StringToDoubleConverter
          A string to object converter that converts number strings into instances of Double.
 class StringToFloatConverter
          A string to object converter that converts number strings into instances of Float.
 class StringToInstanceConverter
          An implementation of IStringToObjectConverter that converts a string, interpreted as a fully qualified class name, into a new instance of the class denoted by s by interpreting the string as a Java literal or using reflection to create an instance of an object.
 class StringToIntegerConverter
          A string to object converter that converts number strings into instances of Integer.
 class StringToLocaleConverter
          A converter from strings to instances of Locale.
 class StringToLongConverter
          A string to object converter that converts number strings into instances of Long.
 class StringToPatternConverter
          An implementation of IStringToObjectConverter that converts a double-quoted regex string into an instance of Pattern.